Index: branches/BNC_LM/GPSS/gpssDecoder.cpp
===================================================================
--- branches/BNC_LM/GPSS/gpssDecoder.cpp	(revision 3570)
+++ branches/BNC_LM/GPSS/gpssDecoder.cpp	(revision 3570)
@@ -0,0 +1,146 @@
+
+/* -------------------------------------------------------------------------
+ * BKG NTRIP Client
+ * -------------------------------------------------------------------------
+ *
+ * Class:      gpssDecoder
+ *
+ * Purpose:    Decode Data in GPSS Format
+ *
+ * Author:     L. Mervart
+ *
+ * Created:    20-Dec-2008
+ *
+ * Changes:    
+ *
+ * -----------------------------------------------------------------------*/
+
+#include "gpssDecoder.h"
+#include "bncapp.h"
+
+using namespace std;
+
+struct t_epochHeader {
+  double t_epoch;
+  int    n_svs;
+};
+
+// Cyclic Redundancy Check
+////////////////////////////////////////////////////////////////////////////
+unsigned short cal_crc(unsigned char *buf, int num) {
+  unsigned short polynomial = 0x8408;
+  unsigned short crc = 0;
+  int i;
+  while ( num-- ) {
+    crc = ( crc & 0xFF00 ) | ( *buf++^( crc & 0x00FF ) );
+    for( i=0; i<8; i++ ){
+      if( crc & 0x0001 ){
+        crc >>= 1;
+        crc ^= polynomial;
+      }
+      else{
+        crc >>= 1;
+      }
+    }
+  }
+  return (crc);
+}
+
+// Constructor
+////////////////////////////////////////////////////////////////////////////
+gpssDecoder::gpssDecoder() : GPSDecoder() {
+  connect(this, SIGNAL(newGPSEph(gpsephemeris*)), 
+          (bncApp*) qApp, SLOT(slotNewGPSEph(gpsephemeris*)));
+}
+
+// Destructor
+////////////////////////////////////////////////////////////////////////////
+gpssDecoder::~gpssDecoder() {
+}
+
+// 
+////////////////////////////////////////////////////////////////////////////
+t_irc gpssDecoder::Decode(char* data, int dataLen, vector<string>& errmsg) {
+
+  errmsg.clear();
+
+  _buffer += QByteArray(data, dataLen);
+
+  bool obsFound = false;
+  bool ephFound = false;
+  int iBeg;
+  while ( (iBeg = _buffer.indexOf(0x02)) != -1) {
+    _buffer = _buffer.mid(iBeg);
+
+    int recordSize;
+    int crc;
+   
+    // Observations
+    // ------------
+    if      (_buffer.length() > 0 && char(_buffer[1]) == 0x00) {
+
+      int reqLength = 2 + sizeof(recordSize) + sizeof(t_epochHeader);
+
+      if (_buffer.length() >= reqLength) {
+        t_epochHeader epochHdr;
+        memcpy(&epochHdr, _buffer.data() + 2 + sizeof(recordSize), 
+               sizeof(epochHdr));
+        
+        reqLength += epochHdr.n_svs * sizeof(t_obs) + sizeof(crc) + 1;
+
+        if (_buffer.length() >= reqLength) {
+
+          int checkLen = 2 + sizeof(recordSize) + sizeof(t_epochHeader) + 
+                         epochHdr.n_svs * sizeof(t_obs);
+          memcpy(&crc, _buffer.data() + checkLen, sizeof(crc));
+          int crcCal = cal_crc((unsigned char*) _buffer.data(), checkLen);
+
+          if (crc == crcCal) {
+            for (int is = 0; is < epochHdr.n_svs; is++) {
+              obsFound = true;
+              t_obs obs;
+              memcpy(&obs, _buffer.data() + 2 + sizeof(recordSize) + 
+                     sizeof(epochHdr) + is * sizeof(t_obs), sizeof(t_obs));
+              _obsList.push_back(obs);
+            }
+          }
+        }
+      }
+      _buffer = _buffer.mid(reqLength);
+    }
+
+    // Ephemeris
+    // ---------
+    else if (_buffer.length() > 0 && char(_buffer[1]) == 0x01) {
+      int reqLength = 2 + sizeof(recordSize) + sizeof(gpsephemeris) +
+                      sizeof(crc) + 1;
+
+      if (_buffer.length() >= reqLength) {
+
+        int checkLen = 2 + sizeof(recordSize) + sizeof(gpsephemeris);
+        memcpy(&crc, _buffer.data() + checkLen, sizeof(crc));
+        int crcCal = cal_crc((unsigned char*) _buffer.data(), checkLen);
+
+        if (crc == crcCal) {
+          ephFound = true;
+          gpsephemeris* gpsEph = new gpsephemeris;
+          memcpy(gpsEph, _buffer.data() + 2 + sizeof(recordSize), 
+                 sizeof(gpsephemeris));
+          emit newGPSEph(gpsEph);
+        }
+      }
+      _buffer = _buffer.mid(reqLength);
+    }
+
+    else {
+      _buffer == _buffer.mid(1);
+    }
+  }
+
+  if (obsFound || ephFound) {
+    return success;
+  }
+  else {
+    return failure;
+  }
+}
Index: branches/BNC_LM/GPSS/gpssDecoder.h
===================================================================
--- branches/BNC_LM/GPSS/gpssDecoder.h	(revision 3570)
+++ branches/BNC_LM/GPSS/gpssDecoder.h	(revision 3570)
@@ -0,0 +1,27 @@
+
+#ifndef GPSSDECODER_H
+#define GPSSDECODER_H
+
+#include <QtCore>
+
+#include "RTCM/GPSDecoder.h"
+#include "rtcm3torinex.h"
+
+class gpssDecoder : public QObject, public GPSDecoder {
+Q_OBJECT
+
+ public:
+  gpssDecoder();
+  virtual ~gpssDecoder();
+  virtual t_irc Decode(char* data, int dataLen, std::vector<std::string>& errmsg);
+
+ signals:
+  void newMessage(QByteArray msg, bool showOnScreen);
+  void newGPSEph(gpsephemeris* gpseph);
+
+ private:
+  QByteArray _buffer;
+} ;
+
+#endif
+
Index: branches/BNC_LM/GPSS/hassDecoder.cpp
===================================================================
--- branches/BNC_LM/GPSS/hassDecoder.cpp	(revision 3570)
+++ branches/BNC_LM/GPSS/hassDecoder.cpp	(revision 3570)
@@ -0,0 +1,101 @@
+
+/* -------------------------------------------------------------------------
+ * BKG NTRIP Client
+ * -------------------------------------------------------------------------
+ *
+ * Class:      hassDecoder
+ *
+ * Purpose:    Decode Data (PPP Corrections) in HASS Format
+ *
+ * Author:     L. Mervart
+ *
+ * Created:    19-Nov-2011
+ *
+ * Changes:    
+ *
+ * -----------------------------------------------------------------------*/
+
+#include "hassDecoder.h"
+#include "bnctime.h"
+
+using namespace std;
+
+// Constructor
+////////////////////////////////////////////////////////////////////////////
+hassDecoder::hassDecoder(const QString& staID) : RTCM3coDecoder(staID) {
+  _GPSweeks = -1.0;
+}
+
+// Destructor
+////////////////////////////////////////////////////////////////////////////
+hassDecoder::~hassDecoder() {
+}
+
+// 
+////////////////////////////////////////////////////////////////////////////
+t_irc hassDecoder::Decode(char* data, int dataLen, vector<string>& errmsg) {
+
+  errmsg.clear();
+
+  _buffer += QByteArray(data, dataLen);
+
+  bool corrFound = false;
+  int indexEOL = -1;
+  while ( (indexEOL = _buffer.indexOf('\n')) != -1) {
+    QByteArray line = _buffer.left(indexEOL-1);
+    _buffer = _buffer.mid(indexEOL);
+
+    if (QString(line).split(QRegExp("\\s+")).count() != 11) {
+      continue;
+    }
+    else {
+      corrFound = true;
+    }
+
+    QTextStream in(line, QIODevice::ReadOnly | QIODevice::Text);
+    int     mjd, IOD;
+    double  daySec;
+    double  deltaX, deltaY, deltaZ, deltaClk;
+    double  rateDeltaX, rateDeltaY, rateDeltaZ;
+    QString prn;
+    
+    in >> mjd >> daySec >> prn >> IOD >> deltaX >> deltaY >> deltaZ
+       >> deltaClk >> rateDeltaX >> rateDeltaY >> rateDeltaZ;
+
+    bncTime tt; 
+    tt.setmjd(daySec, mjd);
+
+    _GPSweeks = tt.gpssec();
+    long coTime = tt.gpsw() * 7*24*3600 + long(floor(_GPSweeks+0.5));
+
+    QString corrLine;
+
+    int updateInterval =  0;
+    int messageType = 0;
+    if      (prn[0] == 'G') {
+      messageType = -COTYPE_GPSCOMBINED;
+    }
+    else if (prn[0] == 'R') {
+      messageType = -COTYPE_GLONASSCOMBINED;
+    }
+
+    corrLine.sprintf("%d %d %d %.1f %s"
+                     "   %3d"
+                     "   %8.3f %8.3f %8.3f %8.3f"
+                     "   %10.5f %10.5f %10.5f %10.5f"
+                     "   %10.5f",
+                     messageType, updateInterval, tt.gpsw(), _GPSweeks,
+                     prn.toAscii().data(), IOD, 
+                     deltaClk, deltaX, deltaY, deltaZ, 
+                     0.0, rateDeltaX, rateDeltaY, rateDeltaZ, 0.0);
+    
+    printLine(corrLine, coTime);
+  }
+
+  if (corrFound) {
+    return success;
+  }
+  else {
+    return failure;
+  }
+}
Index: branches/BNC_LM/GPSS/hassDecoder.h
===================================================================
--- branches/BNC_LM/GPSS/hassDecoder.h	(revision 3570)
+++ branches/BNC_LM/GPSS/hassDecoder.h	(revision 3570)
@@ -0,0 +1,21 @@
+
+#ifndef HASSDECODER_H
+#define HASSDECODER_H
+
+#include <QtCore>
+
+#include "RTCM3/RTCM3coDecoder.h"
+
+class hassDecoder : public RTCM3coDecoder {
+Q_OBJECT
+
+ public:
+  hassDecoder(const QString& staID);
+  virtual ~hassDecoder();
+  virtual t_irc Decode(char* data, int dataLen, std::vector<std::string>& errmsg);
+
+ private:
+} ;
+
+#endif
+
Index: branches/BNC_LM/IGS_05.ATX
===================================================================
--- branches/BNC_LM/IGS_05.ATX	(revision 3570)
+++ branches/BNC_LM/IGS_05.ATX	(revision 3570)
@@ -0,0 +1,19329 @@
+     1.4            M                                       ANTEX VERSION / SYST
+A                                                           PCV TYPE / REFANT   
+########################################################### COMMENT             
+Satellite antenna corrections:                              COMMENT             
+  - estimated from more than 10 years of IGS data           COMMENT             
+  - mean of GFZ and TUM results                             COMMENT             
+  - solutions aligned to IGb00                              COMMENT             
+  - satellite-specific z-offsets (trend-corrected to        COMMENT             
+    2000.0)                                                 COMMENT             
+  - block-specific x- and y-offsets (manufacturer           COMMENT             
+    information)                                            COMMENT             
+  - block-specific nadir-dependent patterns                 COMMENT             
+    (L1 and L2 PCVs were set to the ionosphere-free PCVs)   COMMENT             
+  - no azimuth-dependent corrections                        COMMENT             
+  - GLONASS values consistently estimated from about 15     COMMENT             
+    months of data by CODE                                  COMMENT             
+                                                            COMMENT             
+Receiver antenna corrections:                               COMMENT             
+  - absolute elevation- and azimuth-dependent corrections   COMMENT             
+    from robot calibrations in the field performed by       COMMENT             
+    Geo++ GmbH (http://gnpcvdb.geopp.de)                    COMMENT             
+  - elevation-dependent corrections from relative field     COMMENT             
+    calibrations performed by NGS; converted to absolute    COMMENT             
+    corrections by adding                                   COMMENT             
+      d_offset (AOAD/M_T_abs - AOAD/M_T_rel)  and           COMMENT             
+      d_pattern (AOAD/M_T_abs - AOAD/M_T_rel)               COMMENT             
+    (http://www.ngs.noaa.gov/ANTCAL)                        COMMENT             
+  - IMPORTANT hint:                                         COMMENT             
+    If no corrections are available for a combination of an COMMENT             
+    antenna with one specific radome, the values for the    COMMENT             
+    corresponding antenna without a radome (radome code:    COMMENT             
+    NONE) are used within the IGS.                          COMMENT             
+                                                            COMMENT             
+References:                                                 COMMENT             
+  Rothacher M, Schmid R (2010) ANTEX: The Antenna Exchange  COMMENT             
+  Format, Version 1.4 (ftp://igs.org/igscb/station/general/ COMMENT             
+  antex14.txt)                                              COMMENT             
+  Schmid R, Steigenberger P, Gendt G, Ge M, Rothacher M     COMMENT             
+  (2007) Generation of a consistent absolute phase center   COMMENT             
+  correction model for GPS receiver and satellite antennas. COMMENT             
+  J Geod 81(12): 781-798, DOI: 10.1007/s00190-007-0148-y    COMMENT             
+                                                            COMMENT             
+Changes:                                                    COMMENT             
+  week 1617  Added R714 (R17), R722 (R14), R727 (R03)       COMMENT             
+             Decommission date: R715 (R14), R718 (R17),     COMMENT             
+                   R722 (R03), R727 (R04)                   COMMENT             
+             Corrected date: G010                           COMMENT             
+  week 1604  Added R736 (R09), R737 (R12), R738 (R16),      COMMENT             
+                   R722 (R03), R727 (R04), R733 (R06),      COMMENT             
+                   R736 (R16)                               COMMENT             
+             Decommission date: R714 (R06), R722 (R09),     COMMENT             
+                   R727 (R03), R733 (R04), R736 (R16)       COMMENT             
+  week 1602  z-offset and PCVs UPDATED: G062                COMMENT             
+             Added LEIAR25.R4      NONE                     COMMENT             
+                   LEIAR25.R4      LEIT                     COMMENT             
+                   LEIAR25.R4      SCIT                     COMMENT             
+                   NOV750.R4       NONE                     COMMENT             
+                   NOV750.R4       NOVS                     COMMENT             
+             ANTEX format version: 1.3 --> 1.4              COMMENT             
+  week 1597  Added JAV_GRANT-G3T   NONE                     COMMENT             
+                   JAV_RINGANT_G3T NONE                     COMMENT             
+                   JAVRINGANT_DM   NONE                     COMMENT             
+  week 1585  Added G062                                     COMMENT             
+             Decommission date: G035 (G25)                  COMMENT             
+  week 1581  Added R714 (R06)                               COMMENT             
+             Decommission date: R701                        COMMENT             
+  week 1580  Added LEIAR10         NONE                     COMMENT             
+  week 1575  Added R731, R732, R735                         COMMENT             
+             Decommission date: R713, R714, R726            COMMENT             
+             Added LEIAS10         NONE                     COMMENT             
+                   LEIGS09         NONE                     COMMENT             
+                   LEIMNA950GG     NONE                     COMMENT             
+  week 1570  Added G035 (G25)                               COMMENT             
+             Decommission date: G025                        COMMENT             
+  week 1569  Added TRMR8_GNSS      NONE                     COMMENT             
+                   TRMR8_GNSS3     NONE                     COMMENT             
+  week 1568  Added LEIAR25.R3      NONE                     COMMENT             
+                   LEIAR25.R3      LEIT                     COMMENT             
+                   LEIGS15         NONE                     COMMENT             
+  week 1567  Added TPSCR.G3        SCIS                     COMMENT             
+                   TRM57970.00     NONE                     COMMENT             
+  week 1563  Added R730, R733, R734                         COMMENT             
+             Decommission date: R711, R795, R796            COMMENT             
+  week 1552  Added TRM59800.00     SCIT                     COMMENT             
+                   TRM59800.80     SCIT                     COMMENT             
+             Corrected name: ASH701975.01AGP NONE           COMMENT             
+  week 1545  Added G050                                     COMMENT             
+  week 1544  Added TPSCR.G3        NONE                     COMMENT             
+                   TRM59800.80     NONE                     COMMENT             
+                   TRM59800.80     SCIS                     COMMENT             
+             Decommission date: G035                        COMMENT             
+  week 1542  z-offset UPDATED: R714                         COMMENT             
+  week 1525  Added G049                                     COMMENT             
+             Decommission date: G037 (G01)                  COMMENT             
+  week 1521  Added ASH701945C_M    PFAN                     COMMENT             
+                   LEIAT504        OLGA                     COMMENT             
+                   TRM59800.00     NONE                     COMMENT             
+                   TRM59800.00     SCIS                     COMMENT             
+  week 1515  Added LEIATX1230+GNSS NONE                     COMMENT             
+                   LEIAX1203+GNSS  NONE                     COMMENT             
+             Corrected COSPAR ID: R728, R729                COMMENT             
+  week 1514  Added R727, R728, R729                         COMMENT             
+             Decommission date: R789, R794, R797            COMMENT             
+  week 1509  Added LEIAR25         NONE                     COMMENT             
+                   LEIAR25         LEIT                     COMMENT             
+  week 1502  Added G037 (G01)                               COMMENT             
+             Decommission date: G032                        COMMENT             
+             Corrected date: G060                           COMMENT             
+             Corrected COSPAR ID: R718, R720                COMMENT             
+             Comment added: R711                            COMMENT             
+  week 1499  Added R724, R725, R726                         COMMENT             
+             Decommission date: R783, R792, R798 (R22)      COMMENT             
+             Added NOV702          NONE                     COMMENT             
+  week 1480  Added TPSCR.G3        TPSH                     COMMENT             
+                   TPSCR3_GGD      OLGA                     COMMENT             
+                   TPSCR3_GGD      PFAN                     COMMENT             
+                   TRM29659.00     OLGA                     COMMENT             
+                   TRM29659.00     SNOW                     COMMENT             
+                   TRM57971.00     NONE                     COMMENT             
+             Correction values UPDATED:                     COMMENT             
+                   LEIAT302-GP     NONE                     COMMENT             
+                   LEIAT303        NONE                     COMMENT             
+                   TRM23903.00     NONE                     COMMENT             
+                   TRM33429.20+GP  TCWD                     COMMENT             
+                   TRM55971.00     TZGD                     COMMENT             
+  week 1473  Added SEN67157596+CR  NONE                     COMMENT             
+  week 1472  Added ASH701933C_M    SCIS                     COMMENT             
+                   ASH701933C_M    SCIT                     COMMENT             
+                   MPL_WAAS_2224NW NONE                     COMMENT             
+                   MPL_WAAS_2225NW NONE                     COMMENT             
+                   TPSG3_A1        NONE                     COMMENT             
+                   TPSG3_A1        TPSD                     COMMENT             
+  week 1471  Added G048                                     COMMENT             
+             Decommission date: G037                        COMMENT             
+  week 1467  Added R721, R722, R723, R798 (R22)             COMMENT             
+             Decommission date: R791                        COMMENT             
+  week 1461  Added G057                                     COMMENT             
+  week 1455  Added R718, R719, R720                         COMMENT             
+             Decommission date: R787, R793, R798            COMMENT             
+  week 1454  Added NOV702GG        NONE                     COMMENT             
+  week 1451  Added G055                                     COMMENT             
+             Decommission date: G015, G029                  COMMENT             
+  week 1421  Added R715, R716, R717                         COMMENT             
+             Corrected date: G023 (G32)                     COMMENT             
+             Added LEIAT504GG      NONE                     COMMENT             
+                   LEIAT504GG      LEIS                     COMMENT             
+                   LEIAT504GG      SCIS                     COMMENT             
+                   LEIAT504GG      SCIT                     COMMENT             
+                   LEIATX1230      NONE                     COMMENT             
+                   LEIATX1230GG    NONE                     COMMENT             
+  week 1402  Added G023 (G32), G058                         COMMENT             
+             Corrected date: R713, R788, R794, R795         COMMENT             
+                                                            COMMENT             
+Compiled by Ralf Schmid (TUM), e-mail: schmid@bv.tum.de     COMMENT             
+########################################################### COMMENT             
+                                                            END OF HEADER       
+                                                            START OF ANTENNA    
+BLOCK IIA           G01                 G032      1992-079A TYPE / SERIAL NO    
+                    GFZ/TUM                  0    20-APR-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  1992    11    22     0     0    0.0000000                 VALID FROM          
+  2008    10    16    23    59   59.9999999                 VALID UNTIL         
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+    279.00      0.00   2201.00                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+    279.00      0.00   2201.00                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK IIA           G01                 G037      1993-032A TYPE / SERIAL NO    
+                    GFZ/TUM                  0    21-OCT-08 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2008    10    23     0     0    0.0000000                 VALID FROM          
+  2009     1     6    23    59   59.9999999                 VALID UNTIL         
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+    279.00      0.00   2220.00                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+    279.00      0.00   2220.00                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK IIR-M         G01                 G049      2009-014A TYPE / SERIAL NO    
+                    CODE/GFZ                 0    30-MAR-09 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2009     3    24     0     0    0.0000000                 VALID FROM          
+IGS05_1617                                                  SINEX CODE          
+ATTENTION! PRELIMINARY VALUES!                              COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.00      0.00    700.00                              NORTH / EAST / UP   
+   NOAZI   10.70   10.10    8.00    4.60    0.50   -3.80   -7.50   -9.70  -10.30   -9.50   -7.40   -4.10    0.30    6.00   12.10
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.00      0.00    700.00                              NORTH / EAST / UP   
+   NOAZI   10.70   10.10    8.00    4.60    0.50   -3.80   -7.50   -9.70  -10.30   -9.50   -7.40   -4.10    0.30    6.00   12.10
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK II            G02                 G013      1989-044A TYPE / SERIAL NO    
+                    GFZ/TUM                  0    20-APR-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  1989     6    10     0     0    0.0000000                 VALID FROM          
+  2004     5    12    23    59   59.9999999                 VALID UNTIL         
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+    279.00      0.00   2530.00                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+    279.00      0.00   2530.00                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK IIR-B         G02                 G061      2004-045A TYPE / SERIAL NO    
+                    GFZ/TUM                  0    20-APR-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2004    11     6     0     0    0.0000000                 VALID FROM          
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+      0.00      0.00    614.00                              NORTH / EAST / UP   
+   NOAZI   10.70   10.10    8.00    4.60    0.50   -3.80   -7.50   -9.70  -10.30   -9.50   -7.40   -4.10    0.30    6.00   12.10
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.00      0.00    614.00                              NORTH / EAST / UP   
+   NOAZI   10.70   10.10    8.00    4.60    0.50   -3.80   -7.50   -9.70  -10.30   -9.50   -7.40   -4.10    0.30    6.00   12.10
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK I             G03                 G011      1985-093A TYPE / SERIAL NO    
+                    GFZ/TUM                  0    20-APR-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  1985    10     9     0     0    0.0000000                 VALID FROM          
+  1994     4    17    23    59   59.9999999                 VALID UNTIL         
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+    210.00      0.00   1686.00                              NORTH / EAST / UP   
+   NOAZI   -1.00   -2.60   -1.20   -0.90    0.50    1.40    2.00    2.00    1.70    0.50   -0.10   -0.60   -0.70   -0.60   -0.30
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+    210.00      0.00   1686.00                              NORTH / EAST / UP   
+   NOAZI   -1.00   -2.60   -1.20   -0.90    0.50    1.40    2.00    2.00    1.70    0.50   -0.10   -0.60   -0.70   -0.60   -0.30
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK IIA           G03                 G033      1996-019A TYPE / SERIAL NO    
+                    GFZ/TUM                  0    20-APR-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  1996     3    28     0     0    0.0000000                 VALID FROM          
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+    279.00      0.00   2619.00                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+    279.00      0.00   2619.00                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK IIA           G04                 G034      1993-068A TYPE / SERIAL NO    
+                    GFZ/TUM                  0    20-APR-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  1993    10    26     0     0    0.0000000                 VALID FROM          
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+    279.00      0.00   2279.00                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+    279.00      0.00   2279.00                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK IIA           G05                 G035      1993-054A TYPE / SERIAL NO    
+                    GFZ/TUM                  0    20-APR-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  1993     8    30     0     0    0.0000000                 VALID FROM          
+  2009     6     8    23    59   59.9999999                 VALID UNTIL         
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+    279.00      0.00   2463.00                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+    279.00      0.00   2463.00                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK IIR-M         G05                 G050      2009-043A TYPE / SERIAL NO    
+                    CODE/GFZ                 0    18-AUG-09 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2009     8    17     0     0    0.0000000                 VALID FROM          
+IGS05_1617                                                  SINEX CODE          
+ATTENTION! PRELIMINARY VALUES!                              COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.00      0.00    700.00                              NORTH / EAST / UP   
+   NOAZI   10.70   10.10    8.00    4.60    0.50   -3.80   -7.50   -9.70  -10.30   -9.50   -7.40   -4.10    0.30    6.00   12.10
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.00      0.00    700.00                              NORTH / EAST / UP   
+   NOAZI   10.70   10.10    8.00    4.60    0.50   -3.80   -7.50   -9.70  -10.30   -9.50   -7.40   -4.10    0.30    6.00   12.10
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK IIA           G06                 G036      1994-016A TYPE / SERIAL NO    
+                    GFZ/TUM                  0    20-APR-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  1994     3    10     0     0    0.0000000                 VALID FROM          
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+    279.00      0.00   2676.00                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+    279.00      0.00   2676.00                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK IIA           G07                 G037      1993-032A TYPE / SERIAL NO    
+                    GFZ/TUM                  0    20-APR-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  1993     5    13     0     0    0.0000000                 VALID FROM          
+  2008     1    14    23    59   59.9999999                 VALID UNTIL         
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+    279.00      0.00   2220.00                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+    279.00      0.00   2220.00                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK IIR-M         G07                 G048      2008-012A TYPE / SERIAL NO    
+                    CODE/GFZ                 0    17-MAR-08 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2008     3    15     0     0    0.0000000                 VALID FROM          
+IGS05_1617                                                  SINEX CODE          
+ATTENTION! PRELIMINARY VALUES!                              COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.00      0.00    700.00                              NORTH / EAST / UP   
+   NOAZI   10.70   10.10    8.00    4.60    0.50   -3.80   -7.50   -9.70  -10.30   -9.50   -7.40   -4.10    0.30    6.00   12.10
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.00      0.00    700.00                              NORTH / EAST / UP   
+   NOAZI   10.70   10.10    8.00    4.60    0.50   -3.80   -7.50   -9.70  -10.30   -9.50   -7.40   -4.10    0.30    6.00   12.10
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK IIA           G08                 G038      1997-067A TYPE / SERIAL NO    
+                    GFZ/TUM                  0    20-APR-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  1997    11     6     0     0    0.0000000                 VALID FROM          
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+    279.00      0.00   2405.00                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+    279.00      0.00   2405.00                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK IIA           G09                 G039      1993-042A TYPE / SERIAL NO    
+                    GFZ/TUM                  0    20-APR-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  1993     6    26     0     0    0.0000000                 VALID FROM          
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+    279.00      0.00   2340.00                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+    279.00      0.00   2340.00                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK IIA           G10                 G040      1996-041A TYPE / SERIAL NO    
+                    GFZ/TUM                  0    20-APR-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  1996     7    16     0     0    0.0000000                 VALID FROM          
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+    279.00      0.00   2389.00                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+    279.00      0.00   2389.00                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK IIR-A         G11                 G046      1999-055A TYPE / SERIAL NO    
+                    GFZ/TUM                  0    20-APR-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  1999    10     7     0     0    0.0000000                 VALID FROM          
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+      0.00      0.00    971.00                              NORTH / EAST / UP   
+   NOAZI   -6.10   -5.20   -3.30   -1.00    1.40    3.50    4.70    4.90    4.10    2.80    0.80   -1.00   -2.10   -2.10   -1.40
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.00      0.00    971.00                              NORTH / EAST / UP   
+   NOAZI   -6.10   -5.20   -3.30   -1.00    1.40    3.50    4.70    4.90    4.10    2.80    0.80   -1.00   -2.10   -2.10   -1.40
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK I             G12                 G010      1984-097A TYPE / SERIAL NO    
+                    GFZ/TUM                  0    20-APR-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  1984     9     8     0     0    0.0000000                 VALID FROM          
+  1996     3    26    23    59   59.9999999                 VALID UNTIL         
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+    210.00      0.00   1748.00                              NORTH / EAST / UP   
+   NOAZI   -1.00   -2.60   -1.20   -0.90    0.50    1.40    2.00    2.00    1.70    0.50   -0.10   -0.60   -0.70   -0.60   -0.30
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+    210.00      0.00   1748.00                              NORTH / EAST / UP   
+   NOAZI   -1.00   -2.60   -1.20   -0.90    0.50    1.40    2.00    2.00    1.70    0.50   -0.10   -0.60   -0.70   -0.60   -0.30
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK IIR-M         G12                 G058      2006-052A TYPE / SERIAL NO    
+                    CODE/GFZ                 0    23-NOV-06 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2006    11    17     0     0    0.0000000                 VALID FROM          
+IGS05_1617                                                  SINEX CODE          
+ATTENTION! PRELIMINARY VALUES!                              COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.00      0.00    700.00                              NORTH / EAST / UP   
+   NOAZI   10.70   10.10    8.00    4.60    0.50   -3.80   -7.50   -9.70  -10.30   -9.50   -7.40   -4.10    0.30    6.00   12.10
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.00      0.00    700.00                              NORTH / EAST / UP   
+   NOAZI   10.70   10.10    8.00    4.60    0.50   -3.80   -7.50   -9.70  -10.30   -9.50   -7.40   -4.10    0.30    6.00   12.10
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK I             G13                 G009      1984-059A TYPE / SERIAL NO    
+                    GFZ/TUM                  0    20-APR-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  1984     6    13     0     0    0.0000000                 VALID FROM          
+  1994     6    20    23    59   59.9999999                 VALID UNTIL         
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+    210.00      0.00   1741.00                              NORTH / EAST / UP   
+   NOAZI   -1.00   -2.60   -1.20   -0.90    0.50    1.40    2.00    2.00    1.70    0.50   -0.10   -0.60   -0.70   -0.60   -0.30
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+    210.00      0.00   1741.00                              NORTH / EAST / UP   
+   NOAZI   -1.00   -2.60   -1.20   -0.90    0.50    1.40    2.00    2.00    1.70    0.50   -0.10   -0.60   -0.70   -0.60   -0.30
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK IIR-A         G13                 G043      1997-035A TYPE / SERIAL NO    
+                    GFZ/TUM                  0    20-APR-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  1997     7    23     0     0    0.0000000                 VALID FROM          
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+      0.00      0.00   1203.00                              NORTH / EAST / UP   
+   NOAZI   -6.10   -5.20   -3.30   -1.00    1.40    3.50    4.70    4.90    4.10    2.80    0.80   -1.00   -2.10   -2.10   -1.40
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.00      0.00   1203.00                              NORTH / EAST / UP   
+   NOAZI   -6.10   -5.20   -3.30   -1.00    1.40    3.50    4.70    4.90    4.10    2.80    0.80   -1.00   -2.10   -2.10   -1.40
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK II            G14                 G014      1989-013A TYPE / SERIAL NO    
+                    GFZ/TUM                  0    20-APR-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  1989     2    14     0     0    0.0000000                 VALID FROM          
+  2000     4    17    23    59   59.9999999                 VALID UNTIL         
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+    279.00      0.00   2644.00                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+    279.00      0.00   2644.00                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK IIR-A         G14                 G041      2000-071A TYPE / SERIAL NO    
+                    GFZ/TUM                  0    20-APR-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2000    11    10     0     0    0.0000000                 VALID FROM          
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+      0.00      0.00   1178.00                              NORTH / EAST / UP   
+   NOAZI   -6.10   -5.20   -3.30   -1.00    1.40    3.50    4.70    4.90    4.10    2.80    0.80   -1.00   -2.10   -2.10   -1.40
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.00      0.00   1178.00                              NORTH / EAST / UP   
+   NOAZI   -6.10   -5.20   -3.30   -1.00    1.40    3.50    4.70    4.90    4.10    2.80    0.80   -1.00   -2.10   -2.10   -1.40
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK II            G15                 G015      1990-088A TYPE / SERIAL NO    
+                    GFZ/TUM                  0    20-APR-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  1990    10     1     0     0    0.0000000                 VALID FROM          
+  2007     3    14    23    59   59.9999999                 VALID UNTIL         
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+    279.00      0.00   2312.00                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+    279.00      0.00   2312.00                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK IIR-M         G15                 G055      2007-047A TYPE / SERIAL NO    
+                    CODE/GFZ                 0    30-OCT-07 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2007    10    17     0     0    0.0000000                 VALID FROM          
+IGS05_1617                                                  SINEX CODE          
+ATTENTION! PRELIMINARY VALUES!                              COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.00      0.00    700.00                              NORTH / EAST / UP   
+   NOAZI   10.70   10.10    8.00    4.60    0.50   -3.80   -7.50   -9.70  -10.30   -9.50   -7.40   -4.10    0.30    6.00   12.10
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.00      0.00    700.00                              NORTH / EAST / UP   
+   NOAZI   10.70   10.10    8.00    4.60    0.50   -3.80   -7.50   -9.70  -10.30   -9.50   -7.40   -4.10    0.30    6.00   12.10
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK II            G16                 G016      1989-064A TYPE / SERIAL NO    
+                    GFZ/TUM                  0    20-APR-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  1989     8    18     0     0    0.0000000                 VALID FROM          
+  2000    10    13    23    59   59.9999999                 VALID UNTIL         
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+    279.00      0.00   2364.00                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+    279.00      0.00   2364.00                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK IIR-A         G16                 G056      2003-005A TYPE / SERIAL NO    
+                    GFZ/TUM                  0    20-APR-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2003     1    29     0     0    0.0000000                 VALID FROM          
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+      0.00      0.00   1307.00                              NORTH / EAST / UP   
+   NOAZI   -6.10   -5.20   -3.30   -1.00    1.40    3.50    4.70    4.90    4.10    2.80    0.80   -1.00   -2.10   -2.10   -1.40
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.00      0.00   1307.00                              NORTH / EAST / UP   
+   NOAZI   -6.10   -5.20   -3.30   -1.00    1.40    3.50    4.70    4.90    4.10    2.80    0.80   -1.00   -2.10   -2.10   -1.40
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK II            G17                 G017      1989-097A TYPE / SERIAL NO    
+                    GFZ/TUM                  0    20-APR-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  1989    12    11     0     0    0.0000000                 VALID FROM          
+  2005     2    23    23    59   59.9999999                 VALID UNTIL         
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+    279.00      0.00   2253.00                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+    279.00      0.00   2253.00                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK IIR-M         G17                 G053      2005-038A TYPE / SERIAL NO    
+                    GFZ/TUM                  0    09-JAN-06 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2005     9    26     0     0    0.0000000                 VALID FROM          
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+      0.00      0.00    645.00                              NORTH / EAST / UP   
+   NOAZI   10.70   10.10    8.00    4.60    0.50   -3.80   -7.50   -9.70  -10.30   -9.50   -7.40   -4.10    0.30    6.00   12.10
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.00      0.00    645.00                              NORTH / EAST / UP   
+   NOAZI   10.70   10.10    8.00    4.60    0.50   -3.80   -7.50   -9.70  -10.30   -9.50   -7.40   -4.10    0.30    6.00   12.10
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK II            G18                 G018      1990-008A TYPE / SERIAL NO    
+                    GFZ/TUM                  0    20-APR-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  1990     1    24     0     0    0.0000000                 VALID FROM          
+  2000     8    18    23    59   59.9999999                 VALID UNTIL         
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+    279.00      0.00   2389.00                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+    279.00      0.00   2389.00                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK IIR-A         G18                 G054      2001-004A TYPE / SERIAL NO    
+                    GFZ/TUM                  0    20-APR-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2001     1    30     0     0    0.0000000                 VALID FROM          
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+      0.00      0.00   1133.00                              NORTH / EAST / UP   
+   NOAZI   -6.10   -5.20   -3.30   -1.00    1.40    3.50    4.70    4.90    4.10    2.80    0.80   -1.00   -2.10   -2.10   -1.40
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.00      0.00   1133.00                              NORTH / EAST / UP   
+   NOAZI   -6.10   -5.20   -3.30   -1.00    1.40    3.50    4.70    4.90    4.10    2.80    0.80   -1.00   -2.10   -2.10   -1.40
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK II            G19                 G019      1989-085A TYPE / SERIAL NO    
+                    GFZ/TUM                  0    20-APR-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  1989    10    21     0     0    0.0000000                 VALID FROM          
+  2001     9    13    23    59   59.9999999                 VALID UNTIL         
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+    279.00      0.00   2744.00                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+    279.00      0.00   2744.00                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK IIR-B         G19                 G059      2004-009A TYPE / SERIAL NO    
+                    GFZ/TUM                  0    20-APR-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2004     3    20     0     0    0.0000000                 VALID FROM          
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+      0.00      0.00    668.00                              NORTH / EAST / UP   
+   NOAZI   10.70   10.10    8.00    4.60    0.50   -3.80   -7.50   -9.70  -10.30   -9.50   -7.40   -4.10    0.30    6.00   12.10
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.00      0.00    668.00                              NORTH / EAST / UP   
+   NOAZI   10.70   10.10    8.00    4.60    0.50   -3.80   -7.50   -9.70  -10.30   -9.50   -7.40   -4.10    0.30    6.00   12.10
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK II            G20                 G020      1990-025A TYPE / SERIAL NO    
+                    GFZ/TUM                  0    20-APR-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  1990     3    26     0     0    0.0000000                 VALID FROM          
+  1996    12    13    23    59   59.9999999                 VALID UNTIL         
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+    279.00      0.00   2416.00                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+    279.00      0.00   2416.00                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK IIR-A         G20                 G051      2000-025A TYPE / SERIAL NO    
+                    GFZ/TUM                  0    20-APR-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2000     5    11     0     0    0.0000000                 VALID FROM          
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+      0.00      0.00   1154.00                              NORTH / EAST / UP   
+   NOAZI   -6.10   -5.20   -3.30   -1.00    1.40    3.50    4.70    4.90    4.10    2.80    0.80   -1.00   -2.10   -2.10   -1.40
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.00      0.00   1154.00                              NORTH / EAST / UP   
+   NOAZI   -6.10   -5.20   -3.30   -1.00    1.40    3.50    4.70    4.90    4.10    2.80    0.80   -1.00   -2.10   -2.10   -1.40
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK II            G21                 G021      1990-068A TYPE / SERIAL NO    
+                    GFZ/TUM                  0    20-APR-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  1990     8     2     0     0    0.0000000                 VALID FROM          
+  2003     1    27    23    59   59.9999999                 VALID UNTIL         
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+    279.00      0.00   2344.00                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+    279.00      0.00   2344.00                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK IIR-A         G21                 G045      2003-010A TYPE / SERIAL NO    
+                    GFZ/TUM                  0    20-APR-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2003     3    31     0     0    0.0000000                 VALID FROM          
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+      0.00      0.00   1300.00                              NORTH / EAST / UP   
+   NOAZI   -6.10   -5.20   -3.30   -1.00    1.40    3.50    4.70    4.90    4.10    2.80    0.80   -1.00   -2.10   -2.10   -1.40
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.00      0.00   1300.00                              NORTH / EAST / UP   
+   NOAZI   -6.10   -5.20   -3.30   -1.00    1.40    3.50    4.70    4.90    4.10    2.80    0.80   -1.00   -2.10   -2.10   -1.40
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK IIA           G22                 G022      1993-007A TYPE / SERIAL NO    
+                    GFZ/TUM                  0    20-APR-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  1993     2     3     0     0    0.0000000                 VALID FROM          
+  2003     8     6    23    59   59.9999999                 VALID UNTIL         
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+    279.00      0.00   2267.00                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+    279.00      0.00   2267.00                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK IIR-B         G22                 G047      2003-058A TYPE / SERIAL NO    
+                    GFZ/TUM                  0    20-APR-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2003    12    21     0     0    0.0000000                 VALID FROM          
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+      0.00      0.00    792.00                              NORTH / EAST / UP   
+   NOAZI   10.70   10.10    8.00    4.60    0.50   -3.80   -7.50   -9.70  -10.30   -9.50   -7.40   -4.10    0.30    6.00   12.10
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.00      0.00    792.00                              NORTH / EAST / UP   
+   NOAZI   10.70   10.10    8.00    4.60    0.50   -3.80   -7.50   -9.70  -10.30   -9.50   -7.40   -4.10    0.30    6.00   12.10
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK IIA           G23                 G023      1990-103A TYPE / SERIAL NO    
+                    GFZ/TUM                  0    20-APR-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  1990    11    26     0     0    0.0000000                 VALID FROM          
+  2004     2    22    23    59   59.9999999                 VALID UNTIL         
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+    279.00      0.00   2575.00                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+    279.00      0.00   2575.00                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK IIR-B         G23                 G060      2004-023A TYPE / SERIAL NO    
+                    GFZ/TUM                  0    20-APR-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2004     6    23     0     0    0.0000000                 VALID FROM          
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+      0.00      0.00    602.00                              NORTH / EAST / UP   
+   NOAZI   10.70   10.10    8.00    4.60    0.50   -3.80   -7.50   -9.70  -10.30   -9.50   -7.40   -4.10    0.30    6.00   12.10
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.00      0.00    602.00                              NORTH / EAST / UP   
+   NOAZI   10.70   10.10    8.00    4.60    0.50   -3.80   -7.50   -9.70  -10.30   -9.50   -7.40   -4.10    0.30    6.00   12.10
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK IIA           G24                 G024      1991-047A TYPE / SERIAL NO    
+                    GFZ/TUM                  0    20-APR-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  1991     7     4     0     0    0.0000000                 VALID FROM          
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+    279.00      0.00   2455.00                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+    279.00      0.00   2455.00                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK IIA           G25                 G025      1992-009A TYPE / SERIAL NO    
+                    GFZ/TUM                  0    20-APR-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  1992     2    23     0     0    0.0000000                 VALID FROM          
+  2010     2     8    23    59   59.9999999                 VALID UNTIL         
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+    279.00      0.00   2295.00                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+    279.00      0.00   2295.00                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK IIA           G25                 G035      1993-054A TYPE / SERIAL NO    
+                    GFZ/TUM                  0    12-FEB-10 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2010     2     9     0     0    0.0000000                 VALID FROM          
+  2010     5    27    23    59   59.9999999                 VALID UNTIL         
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+    279.00      0.00   2463.00                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+    279.00      0.00   2463.00                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK IIF           G25                 G062      2010-022A TYPE / SERIAL NO    
+                    ESOC/IGN                 0    23-SEP-10 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2010     5    28     0     0    0.0000000                 VALID FROM          
+IGS05_1617                                                  SINEX CODE          
+Z-OFFSET UPDATE IN GPS WEEK 1602: 1093.0 mm --> 1407.0 mm   COMMENT             
+PCV UPDATE IN GPS WEEK 1602: ALL VALUES WERE ZERO BEFORE    COMMENT             
+   G01                                                      START OF FREQUENCY  
+    394.00      0.00   1407.00                              NORTH / EAST / UP   
+   NOAZI    4.40    3.30    2.10    0.80   -0.30   -1.40   -2.20   -2.90   -3.20   -3.00   -2.40   -1.20    0.60    2.10    3.30
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+    394.00      0.00   1407.00                              NORTH / EAST / UP   
+   NOAZI    4.40    3.30    2.10    0.80   -0.30   -1.40   -2.20   -2.90   -3.20   -3.00   -2.40   -1.20    0.60    2.10    3.30
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK IIA           G26                 G026      1992-039A TYPE / SERIAL NO    
+                    GFZ/TUM                  0    20-APR-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  1992     7     7     0     0    0.0000000                 VALID FROM          
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+    279.00      0.00   2307.00                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+    279.00      0.00   2307.00                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK IIA           G27                 G027      1992-058A TYPE / SERIAL NO    
+                    GFZ/TUM                  0    20-APR-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  1992     9     9     0     0    0.0000000                 VALID FROM          
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+    279.00      0.00   2472.00                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+    279.00      0.00   2472.00                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK IIA           G28                 G028      1992-019A TYPE / SERIAL NO    
+                    GFZ/TUM                  0    20-APR-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  1992     4    10     0     0    0.0000000                 VALID FROM          
+  1997     8    15    23    59   59.9999999                 VALID UNTIL         
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+    279.00      0.00   2205.00                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+    279.00      0.00   2205.00                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK IIR-A         G28                 G044      2000-040A TYPE / SERIAL NO    
+                    GFZ/TUM                  0    20-APR-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2000     7    16     0     0    0.0000000                 VALID FROM          
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+      0.00      0.00    911.00                              NORTH / EAST / UP   
+   NOAZI   -6.10   -5.20   -3.30   -1.00    1.40    3.50    4.70    4.90    4.10    2.80    0.80   -1.00   -2.10   -2.10   -1.40
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.00      0.00    911.00                              NORTH / EAST / UP   
+   NOAZI   -6.10   -5.20   -3.30   -1.00    1.40    3.50    4.70    4.90    4.10    2.80    0.80   -1.00   -2.10   -2.10   -1.40
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK IIA           G29                 G029      1992-089A TYPE / SERIAL NO    
+                    GFZ/TUM                  0    20-APR-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  1992    12    18     0     0    0.0000000                 VALID FROM          
+  2007    10    23    23    59   59.9999999                 VALID UNTIL         
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+    279.00      0.00   2352.00                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+    279.00      0.00   2352.00                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK IIR-M         G29                 G057      2007-062A TYPE / SERIAL NO    
+                    CODE/GFZ                 0    07-JAN-08 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2007    12    20     0     0    0.0000000                 VALID FROM          
+IGS05_1617                                                  SINEX CODE          
+ATTENTION! PRELIMINARY VALUES!                              COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.00      0.00    700.00                              NORTH / EAST / UP   
+   NOAZI   10.70   10.10    8.00    4.60    0.50   -3.80   -7.50   -9.70  -10.30   -9.50   -7.40   -4.10    0.30    6.00   12.10
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.00      0.00    700.00                              NORTH / EAST / UP   
+   NOAZI   10.70   10.10    8.00    4.60    0.50   -3.80   -7.50   -9.70  -10.30   -9.50   -7.40   -4.10    0.30    6.00   12.10
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK IIA           G30                 G030      1996-056A TYPE / SERIAL NO    
+                    GFZ/TUM                  0    20-APR-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  1996     9    12     0     0    0.0000000                 VALID FROM          
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+    279.00      0.00   2466.00                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+    279.00      0.00   2466.00                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK IIA           G31                 G031      1993-017A TYPE / SERIAL NO    
+                    GFZ/TUM                  0    20-APR-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  1993     3    30     0     0    0.0000000                 VALID FROM          
+  2005    10    24    23    59   59.9999999                 VALID UNTIL         
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+    279.00      0.00   2107.00                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+    279.00      0.00   2107.00                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK IIR-M         G31                 G052      2006-042A TYPE / SERIAL NO    
+                    CODE/GFZ                 0    06-NOV-06 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2006     9    25     0     0    0.0000000                 VALID FROM          
+IGS05_1617                                                  SINEX CODE          
+ATTENTION! PRELIMINARY VALUES!                              COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.00      0.00    750.00                              NORTH / EAST / UP   
+   NOAZI   10.70   10.10    8.00    4.60    0.50   -3.80   -7.50   -9.70  -10.30   -9.50   -7.40   -4.10    0.30    6.00   12.10
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.00      0.00    750.00                              NORTH / EAST / UP   
+   NOAZI   10.70   10.10    8.00    4.60    0.50   -3.80   -7.50   -9.70  -10.30   -9.50   -7.40   -4.10    0.30    6.00   12.10
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK IIA           G32                 G023      1990-103A TYPE / SERIAL NO    
+                    GFZ/TUM                  0    23-NOV-06 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2006    12     2     0     0    0.0000000                 VALID FROM          
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+    279.00      0.00   2575.00                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+    279.00      0.00   2575.00                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS             R01                 R796      2004-053A TYPE / SERIAL NO    
+                    CODE                     0    23-AUG-06 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2004    12    26     0     0    0.0000000                 VALID FROM          
+  2009    12    13    23    59   59.9999999                 VALID UNTIL         
+IGS05_1617                                                  SINEX CODE          
+   R01                                                      START OF FREQUENCY  
+      0.00      0.00   1944.40                              NORTH / EAST / UP   
+   NOAZI    2.70    0.30   -0.10   -0.50   -0.80   -0.80   -0.50   -0.20   -0.30   -0.20   -0.20    0.10   -0.10   -0.10    0.70
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+      0.00      0.00   1944.40                              NORTH / EAST / UP   
+   NOAZI    2.70    0.30   -0.10   -0.50   -0.80   -0.80   -0.50   -0.20   -0.30   -0.20   -0.20    0.10   -0.10   -0.10    0.70
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS-M           R01                 R730      2009-070A TYPE / SERIAL NO    
+                    CODE                     0    22-DEC-09 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2009    12    14     0     0    0.0000000                 VALID FROM          
+IGS05_1617                                                  SINEX CODE          
+ATTENTION! PRELIMINARY VALUES!                              COMMENT             
+   R01                                                      START OF FREQUENCY  
+   -545.00      0.00   2300.00                              NORTH / EAST / UP   
+   NOAZI    2.70    0.30   -0.10   -0.50   -0.80   -0.80   -0.50   -0.20   -0.30   -0.20   -0.20    0.10   -0.10   -0.10    0.70
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+   -545.00      0.00   2300.00                              NORTH / EAST / UP   
+   NOAZI    2.70    0.30   -0.10   -0.50   -0.80   -0.80   -0.50   -0.20   -0.30   -0.20   -0.20    0.10   -0.10   -0.10    0.70
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS             R02                 R794      2003-056B TYPE / SERIAL NO    
+                    CODE                     0    23-NOV-06 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2003    12    10     0     0    0.0000000                 VALID FROM          
+  2008    12    24    23    59   59.9999999                 VALID UNTIL         
+IGS05_1617                                                  SINEX CODE          
+   R01                                                      START OF FREQUENCY  
+      0.00      0.00   1957.70                              NORTH / EAST / UP   
+   NOAZI    2.70    0.30   -0.10   -0.50   -0.80   -0.80   -0.50   -0.20   -0.30   -0.20   -0.20    0.10   -0.10   -0.10    0.70
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+      0.00      0.00   1957.70                              NORTH / EAST / UP   
+   NOAZI    2.70    0.30   -0.10   -0.50   -0.80   -0.80   -0.50   -0.20   -0.30   -0.20   -0.20    0.10   -0.10   -0.10    0.70
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS-M           R02                 R728      2008-067C TYPE / SERIAL NO    
+                    CODE                     0    09-JAN-09 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2008    12    25     0     0    0.0000000                 VALID FROM          
+IGS05_1617                                                  SINEX CODE          
+ATTENTION! PRELIMINARY VALUES!                              COMMENT             
+   R01                                                      START OF FREQUENCY  
+   -545.00      0.00   2300.00                              NORTH / EAST / UP   
+   NOAZI    2.70    0.30   -0.10   -0.50   -0.80   -0.80   -0.50   -0.20   -0.30   -0.20   -0.20    0.10   -0.10   -0.10    0.70
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+   -545.00      0.00   2300.00                              NORTH / EAST / UP   
+   NOAZI    2.70    0.30   -0.10   -0.50   -0.80   -0.80   -0.50   -0.20   -0.30   -0.20   -0.20    0.10   -0.10   -0.10    0.70
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS             R03                 R789      2001-053B TYPE / SERIAL NO    
+                    CODE                     0    23-AUG-06 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2001    12     1     0     0    0.0000000                 VALID FROM          
+  2008    12    24    23    59   59.9999999                 VALID UNTIL         
+IGS05_1617                                                  SINEX CODE          
+   R01                                                      START OF FREQUENCY  
+      0.00      0.00   2004.60                              NORTH / EAST / UP   
+   NOAZI    2.70    0.30   -0.10   -0.50   -0.80   -0.80   -0.50   -0.20   -0.30   -0.20   -0.20    0.10   -0.10   -0.10    0.70
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+      0.00      0.00   2004.60                              NORTH / EAST / UP   
+   NOAZI    2.70    0.30   -0.10   -0.50   -0.80   -0.80   -0.50   -0.20   -0.30   -0.20   -0.20    0.10   -0.10   -0.10    0.70
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS-M           R03                 R727      2008-067A TYPE / SERIAL NO    
+                    CODE                     0    09-JAN-09 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2008    12    25     0     0    0.0000000                 VALID FROM          
+  2010     9    30    23    59   59.9999999                 VALID UNTIL         
+IGS05_1617                                                  SINEX CODE          
+ATTENTION! PRELIMINARY VALUES!                              COMMENT             
+   R01                                                      START OF FREQUENCY  
+   -545.00      0.00   2300.00                              NORTH / EAST / UP   
+   NOAZI    2.70    0.30   -0.10   -0.50   -0.80   -0.80   -0.50   -0.20   -0.30   -0.20   -0.20    0.10   -0.10   -0.10    0.70
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+   -545.00      0.00   2300.00                              NORTH / EAST / UP   
+   NOAZI    2.70    0.30   -0.10   -0.50   -0.80   -0.80   -0.50   -0.20   -0.30   -0.20   -0.20    0.10   -0.10   -0.10    0.70
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS-M           R03                 R722      2007-065B TYPE / SERIAL NO    
+                    CODE                     0    04-OCT-10 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2010    10     1     0     0    0.0000000                 VALID FROM          
+  2010    12    15    23    59   59.9999999                 VALID UNTIL         
+IGS05_1617                                                  SINEX CODE          
+ATTENTION! PRELIMINARY VALUES!                              COMMENT             
+   R01                                                      START OF FREQUENCY  
+   -545.00      0.00   2300.00                              NORTH / EAST / UP   
+   NOAZI    2.70    0.30   -0.10   -0.50   -0.80   -0.80   -0.50   -0.20   -0.30   -0.20   -0.20    0.10   -0.10   -0.10    0.70
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+   -545.00      0.00   2300.00                              NORTH / EAST / UP   
+   NOAZI    2.70    0.30   -0.10   -0.50   -0.80   -0.80   -0.50   -0.20   -0.30   -0.20   -0.20    0.10   -0.10   -0.10    0.70
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS-M           R03                 R727      2008-067A TYPE / SERIAL NO    
+                    CODE                     0    04-JAN-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2010    12    16     0     0    0.0000000                 VALID FROM          
+IGS05_1617                                                  SINEX CODE          
+ATTENTION! PRELIMINARY VALUES!                              COMMENT             
+   R01                                                      START OF FREQUENCY  
+   -545.00      0.00   2300.00                              NORTH / EAST / UP   
+   NOAZI    2.70    0.30   -0.10   -0.50   -0.80   -0.80   -0.50   -0.20   -0.30   -0.20   -0.20    0.10   -0.10   -0.10    0.70
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+   -545.00      0.00   2300.00                              NORTH / EAST / UP   
+   NOAZI    2.70    0.30   -0.10   -0.50   -0.80   -0.80   -0.50   -0.20   -0.30   -0.20   -0.20    0.10   -0.10   -0.10    0.70
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS             R04                 R795      2003-056C TYPE / SERIAL NO    
+                    CODE                     0    23-NOV-06 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2003    12    10     0     0    0.0000000                 VALID FROM          
+  2009    12    13    23    59   59.9999999                 VALID UNTIL         
+IGS05_1617                                                  SINEX CODE          
+   R01                                                      START OF FREQUENCY  
+      0.00      0.00   2006.10                              NORTH / EAST / UP   
+   NOAZI    2.70    0.30   -0.10   -0.50   -0.80   -0.80   -0.50   -0.20   -0.30   -0.20   -0.20    0.10   -0.10   -0.10    0.70
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+      0.00      0.00   2006.10                              NORTH / EAST / UP   
+   NOAZI    2.70    0.30   -0.10   -0.50   -0.80   -0.80   -0.50   -0.20   -0.30   -0.20   -0.20    0.10   -0.10   -0.10    0.70
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS-M           R04                 R733      2009-070B TYPE / SERIAL NO    
+                    CODE                     0    22-DEC-09 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2009    12    14     0     0    0.0000000                 VALID FROM          
+  2010     9    30    23    59   59.9999999                 VALID UNTIL         
+IGS05_1617                                                  SINEX CODE          
+ATTENTION! PRELIMINARY VALUES!                              COMMENT             
+   R01                                                      START OF FREQUENCY  
+   -545.00      0.00   2300.00                              NORTH / EAST / UP   
+   NOAZI    2.70    0.30   -0.10   -0.50   -0.80   -0.80   -0.50   -0.20   -0.30   -0.20   -0.20    0.10   -0.10   -0.10    0.70
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+   -545.00      0.00   2300.00                              NORTH / EAST / UP   
+   NOAZI    2.70    0.30   -0.10   -0.50   -0.80   -0.80   -0.50   -0.20   -0.30   -0.20   -0.20    0.10   -0.10   -0.10    0.70
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS-M           R04                 R727      2008-067A TYPE / SERIAL NO    
+                    CODE                     0    04-OCT-10 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2010    10     1     0     0    0.0000000                 VALID FROM          
+  2010    12    15    23    59   59.9999999                 VALID UNTIL         
+IGS05_1617                                                  SINEX CODE          
+ATTENTION! PRELIMINARY VALUES!                              COMMENT             
+   R01                                                      START OF FREQUENCY  
+   -545.00      0.00   2300.00                              NORTH / EAST / UP   
+   NOAZI    2.70    0.30   -0.10   -0.50   -0.80   -0.80   -0.50   -0.20   -0.30   -0.20   -0.20    0.10   -0.10   -0.10    0.70
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+   -545.00      0.00   2300.00                              NORTH / EAST / UP   
+   NOAZI    2.70    0.30   -0.10   -0.50   -0.80   -0.80   -0.50   -0.20   -0.30   -0.20   -0.20    0.10   -0.10   -0.10    0.70
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS             R05                 R711      2001-053A TYPE / SERIAL NO    
+                    CODE                     0    23-AUG-06 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2001    12     1     0     0    0.0000000                 VALID FROM          
+  2009    12    13    23    59   59.9999999                 VALID UNTIL         
+IGS05_1617                                                  SINEX CODE          
+GLONASS-M PROTOTYPE, WITH INFERRED GLONASS DIMENSIONS?      COMMENT             
+   R01                                                      START OF FREQUENCY  
+      0.00      0.00   1914.10                              NORTH / EAST / UP   
+   NOAZI    2.70    0.30   -0.10   -0.50   -0.80   -0.80   -0.50   -0.20   -0.30   -0.20   -0.20    0.10   -0.10   -0.10    0.70
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+      0.00      0.00   1914.10                              NORTH / EAST / UP   
+   NOAZI    2.70    0.30   -0.10   -0.50   -0.80   -0.80   -0.50   -0.20   -0.30   -0.20   -0.20    0.10   -0.10   -0.10    0.70
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS-M           R05                 R734      2009-070C TYPE / SERIAL NO    
+                    CODE                     0    22-DEC-09 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2009    12    14     0     0    0.0000000                 VALID FROM          
+IGS05_1617                                                  SINEX CODE          
+ATTENTION! PRELIMINARY VALUES!                              COMMENT             
+   R01                                                      START OF FREQUENCY  
+   -545.00      0.00   2300.00                              NORTH / EAST / UP   
+   NOAZI    2.70    0.30   -0.10   -0.50   -0.80   -0.80   -0.50   -0.20   -0.30   -0.20   -0.20    0.10   -0.10   -0.10    0.70
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+   -545.00      0.00   2300.00                              NORTH / EAST / UP   
+   NOAZI    2.70    0.30   -0.10   -0.50   -0.80   -0.80   -0.50   -0.20   -0.30   -0.20   -0.20    0.10   -0.10   -0.10    0.70
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS-M           R06                 R701      2003-056A TYPE / SERIAL NO    
+                    CODE                     0    23-AUG-06 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2003    12    10     0     0    0.0000000                 VALID FROM          
+  2010     4    27    23    59   59.9999999                 VALID UNTIL         
+IGS05_1617                                                  SINEX CODE          
+   R01                                                      START OF FREQUENCY  
+   -545.00      0.00   2194.70                              NORTH / EAST / UP   
+   NOAZI    2.70    0.30   -0.10   -0.50   -0.80   -0.80   -0.50   -0.20   -0.30   -0.20   -0.20    0.10   -0.10   -0.10    0.70
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+   -545.00      0.00   2194.70                              NORTH / EAST / UP   
+   NOAZI    2.70    0.30   -0.10   -0.50   -0.80   -0.80   -0.50   -0.20   -0.30   -0.20   -0.20    0.10   -0.10   -0.10    0.70
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS-M           R06                 R714      2005-050A TYPE / SERIAL NO    
+                    CODE/ESOC                0    30-APR-10 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2010     4    28     0     0    0.0000000                 VALID FROM          
+  2010     9    30    23    59   59.9999999                 VALID UNTIL         
+IGS05_1617                                                  SINEX CODE          
+   R01                                                      START OF FREQUENCY  
+   -545.00      0.00   1916.80                              NORTH / EAST / UP   
+   NOAZI    2.70    0.30   -0.10   -0.50   -0.80   -0.80   -0.50   -0.20   -0.30   -0.20   -0.20    0.10   -0.10   -0.10    0.70
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+   -545.00      0.00   1916.80                              NORTH / EAST / UP   
+   NOAZI    2.70    0.30   -0.10   -0.50   -0.80   -0.80   -0.50   -0.20   -0.30   -0.20   -0.20    0.10   -0.10   -0.10    0.70
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS-M           R06                 R733      2009-070B TYPE / SERIAL NO    
+                    CODE                     0    04-OCT-10 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2010    10     1     0     0    0.0000000                 VALID FROM          
+IGS05_1617                                                  SINEX CODE          
+ATTENTION! PRELIMINARY VALUES!                              COMMENT             
+   R01                                                      START OF FREQUENCY  
+   -545.00      0.00   2300.00                              NORTH / EAST / UP   
+   NOAZI    2.70    0.30   -0.10   -0.50   -0.80   -0.80   -0.50   -0.20   -0.30   -0.20   -0.20    0.10   -0.10   -0.10    0.70
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+   -545.00      0.00   2300.00                              NORTH / EAST / UP   
+   NOAZI    2.70    0.30   -0.10   -0.50   -0.80   -0.80   -0.50   -0.20   -0.30   -0.20   -0.20    0.10   -0.10   -0.10    0.70
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS-M           R07                 R712      2004-053B TYPE / SERIAL NO    
+                    CODE                     0    23-AUG-06 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2004    12    26     0     0    0.0000000                 VALID FROM          
+IGS05_1617                                                  SINEX CODE          
+   R01                                                      START OF FREQUENCY  
+   -545.00      0.00   2323.20                              NORTH / EAST / UP   
+   NOAZI    2.70    0.30   -0.10   -0.50   -0.80   -0.80   -0.50   -0.20   -0.30   -0.20   -0.20    0.10   -0.10   -0.10    0.70
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+   -545.00      0.00   2323.20                              NORTH / EAST / UP   
+   NOAZI    2.70    0.30   -0.10   -0.50   -0.80   -0.80   -0.50   -0.20   -0.30   -0.20   -0.20    0.10   -0.10   -0.10    0.70
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS             R08                 R797      2004-053C TYPE / SERIAL NO    
+                    CODE                     0    23-AUG-06 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2004    12    26     0     0    0.0000000                 VALID FROM          
+  2008    12    24    23    59   59.9999999                 VALID UNTIL         
+IGS05_1617                                                  SINEX CODE          
+   R01                                                      START OF FREQUENCY  
+      0.00      0.00   1853.40                              NORTH / EAST / UP   
+   NOAZI    2.70    0.30   -0.10   -0.50   -0.80   -0.80   -0.50   -0.20   -0.30   -0.20   -0.20    0.10   -0.10   -0.10    0.70
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+      0.00      0.00   1853.40                              NORTH / EAST / UP   
+   NOAZI    2.70    0.30   -0.10   -0.50   -0.80   -0.80   -0.50   -0.20   -0.30   -0.20   -0.20    0.10   -0.10   -0.10    0.70
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS-M           R08                 R729      2008-067B TYPE / SERIAL NO    
+                    CODE                     0    09-JAN-09 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2008    12    25     0     0    0.0000000                 VALID FROM          
+IGS05_1617                                                  SINEX CODE          
+ATTENTION! PRELIMINARY VALUES!                              COMMENT             
+   R01                                                      START OF FREQUENCY  
+   -545.00      0.00   2300.00                              NORTH / EAST / UP   
+   NOAZI    2.70    0.30   -0.10   -0.50   -0.80   -0.80   -0.50   -0.20   -0.30   -0.20   -0.20    0.10   -0.10   -0.10    0.70
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+   -545.00      0.00   2300.00                              NORTH / EAST / UP   
+   NOAZI    2.70    0.30   -0.10   -0.50   -0.80   -0.80   -0.50   -0.20   -0.30   -0.20   -0.20    0.10   -0.10   -0.10    0.70
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS-M           R09                 R722      2007-065B TYPE / SERIAL NO    
+                    CODE                     0    20-FEB-08 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2007    12    25     0     0    0.0000000                 VALID FROM          
+  2010     9    30    23    59   59.9999999                 VALID UNTIL         
+IGS05_1617                                                  SINEX CODE          
+ATTENTION! PRELIMINARY VALUES!                              COMMENT             
+   R01                                                      START OF FREQUENCY  
+   -545.00      0.00   2300.00                              NORTH / EAST / UP   
+   NOAZI    2.70    0.30   -0.10   -0.50   -0.80   -0.80   -0.50   -0.20   -0.30   -0.20   -0.20    0.10   -0.10   -0.10    0.70
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+   -545.00      0.00   2300.00                              NORTH / EAST / UP   
+   NOAZI    2.70    0.30   -0.10   -0.50   -0.80   -0.80   -0.50   -0.20   -0.30   -0.20   -0.20    0.10   -0.10   -0.10    0.70
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS-M           R09                 R736      2010-041C TYPE / SERIAL NO    
+                    CODE                     0    04-OCT-10 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2010    10     1     0     0    0.0000000                 VALID FROM          
+IGS05_1617                                                  SINEX CODE          
+ATTENTION! PRELIMINARY VALUES!                              COMMENT             
+   R01                                                      START OF FREQUENCY  
+   -545.00      0.00   2300.00                              NORTH / EAST / UP   
+   NOAZI    2.70    0.30   -0.10   -0.50   -0.80   -0.80   -0.50   -0.20   -0.30   -0.20   -0.20    0.10   -0.10   -0.10    0.70
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+   -545.00      0.00   2300.00                              NORTH / EAST / UP   
+   NOAZI    2.70    0.30   -0.10   -0.50   -0.80   -0.80   -0.50   -0.20   -0.30   -0.20   -0.20    0.10   -0.10   -0.10    0.70
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS-M           R10                 R717      2006-062B TYPE / SERIAL NO    
+                    CODE                     0    22-MAR-07 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2006    12    25     0     0    0.0000000                 VALID FROM          
+IGS05_1617                                                  SINEX CODE          
+ATTENTION! PRELIMINARY VALUES!                              COMMENT             
+   R01                                                      START OF FREQUENCY  
+   -545.00      0.00   2300.00                              NORTH / EAST / UP   
+   NOAZI    2.70    0.30   -0.10   -0.50   -0.80   -0.80   -0.50   -0.20   -0.30   -0.20   -0.20    0.10   -0.10   -0.10    0.70
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+   -545.00      0.00   2300.00                              NORTH / EAST / UP   
+   NOAZI    2.70    0.30   -0.10   -0.50   -0.80   -0.80   -0.50   -0.20   -0.30   -0.20   -0.20    0.10   -0.10   -0.10    0.70
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS-M           R11                 R723      2007-065C TYPE / SERIAL NO    
+                    CODE                     0    20-FEB-08 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2007    12    25     0     0    0.0000000                 VALID FROM          
+IGS05_1617                                                  SINEX CODE          
+ATTENTION! PRELIMINARY VALUES!                              COMMENT             
+   R01                                                      START OF FREQUENCY  
+   -545.00      0.00   2300.00                              NORTH / EAST / UP   
+   NOAZI    2.70    0.30   -0.10   -0.50   -0.80   -0.80   -0.50   -0.20   -0.30   -0.20   -0.20    0.10   -0.10   -0.10    0.70
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+   -545.00      0.00   2300.00                              NORTH / EAST / UP   
+   NOAZI    2.70    0.30   -0.10   -0.50   -0.80   -0.80   -0.50   -0.20   -0.30   -0.20   -0.20    0.10   -0.10   -0.10    0.70
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS-M           R12                 R737      2010-041B TYPE / SERIAL NO    
+                    CODE                     0    04-OCT-10 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2010     9     2     0     0    0.0000000                 VALID FROM          
+IGS05_1617                                                  SINEX CODE          
+ATTENTION! PRELIMINARY VALUES!                              COMMENT             
+   R01                                                      START OF FREQUENCY  
+   -545.00      0.00   2300.00                              NORTH / EAST / UP   
+   NOAZI    2.70    0.30   -0.10   -0.50   -0.80   -0.80   -0.50   -0.20   -0.30   -0.20   -0.20    0.10   -0.10   -0.10    0.70
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+   -545.00      0.00   2300.00                              NORTH / EAST / UP   
+   NOAZI    2.70    0.30   -0.10   -0.50   -0.80   -0.80   -0.50   -0.20   -0.30   -0.20   -0.20    0.10   -0.10   -0.10    0.70
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS-M           R13                 R721      2007-065A TYPE / SERIAL NO    
+                    CODE                     0    20-FEB-08 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2007    12    25     0     0    0.0000000                 VALID FROM          
+IGS05_1617                                                  SINEX CODE          
+ATTENTION! PRELIMINARY VALUES!                              COMMENT             
+   R01                                                      START OF FREQUENCY  
+   -545.00      0.00   2300.00                              NORTH / EAST / UP   
+   NOAZI    2.70    0.30   -0.10   -0.50   -0.80   -0.80   -0.50   -0.20   -0.30   -0.20   -0.20    0.10   -0.10   -0.10    0.70
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+   -545.00      0.00   2300.00                              NORTH / EAST / UP   
+   NOAZI    2.70    0.30   -0.10   -0.50   -0.80   -0.80   -0.50   -0.20   -0.30   -0.20   -0.20    0.10   -0.10   -0.10    0.70
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS-M           R14                 R715      2006-062C TYPE / SERIAL NO    
+                    CODE                     0    22-MAR-07 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2006    12    25     0     0    0.0000000                 VALID FROM          
+  2010    12    15    23    59   59.9999999                 VALID UNTIL         
+IGS05_1617                                                  SINEX CODE          
+ATTENTION! PRELIMINARY VALUES!                              COMMENT             
+   R01                                                      START OF FREQUENCY  
+   -545.00      0.00   2300.00                              NORTH / EAST / UP   
+   NOAZI    2.70    0.30   -0.10   -0.50   -0.80   -0.80   -0.50   -0.20   -0.30   -0.20   -0.20    0.10   -0.10   -0.10    0.70
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+   -545.00      0.00   2300.00                              NORTH / EAST / UP   
+   NOAZI    2.70    0.30   -0.10   -0.50   -0.80   -0.80   -0.50   -0.20   -0.30   -0.20   -0.20    0.10   -0.10   -0.10    0.70
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS-M           R14                 R722      2007-065B TYPE / SERIAL NO    
+                    CODE                     0    04-JAN-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2010    12    16     0     0    0.0000000                 VALID FROM          
+IGS05_1617                                                  SINEX CODE          
+ATTENTION! PRELIMINARY VALUES!                              COMMENT             
+   R01                                                      START OF FREQUENCY  
+   -545.00      0.00   2300.00                              NORTH / EAST / UP   
+   NOAZI    2.70    0.30   -0.10   -0.50   -0.80   -0.80   -0.50   -0.20   -0.30   -0.20   -0.20    0.10   -0.10   -0.10    0.70
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+   -545.00      0.00   2300.00                              NORTH / EAST / UP   
+   NOAZI    2.70    0.30   -0.10   -0.50   -0.80   -0.80   -0.50   -0.20   -0.30   -0.20   -0.20    0.10   -0.10   -0.10    0.70
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS-M           R15                 R716      2006-062A TYPE / SERIAL NO    
+                    CODE                     0    22-MAR-07 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2006    12    25     0     0    0.0000000                 VALID FROM          
+IGS05_1617                                                  SINEX CODE          
+ATTENTION! PRELIMINARY VALUES!                              COMMENT             
+   R01                                                      START OF FREQUENCY  
+   -545.00      0.00   2300.00                              NORTH / EAST / UP   
+   NOAZI    2.70    0.30   -0.10   -0.50   -0.80   -0.80   -0.50   -0.20   -0.30   -0.20   -0.20    0.10   -0.10   -0.10    0.70
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+   -545.00      0.00   2300.00                              NORTH / EAST / UP   
+   NOAZI    2.70    0.30   -0.10   -0.50   -0.80   -0.80   -0.50   -0.20   -0.30   -0.20   -0.20    0.10   -0.10   -0.10    0.70
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS-M           R16                 R736      2010-041C TYPE / SERIAL NO    
+                    CODE                     0    04-OCT-10 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2010     9     2     0     0    0.0000000                 VALID FROM          
+  2010     9    30    23    59   59.9999999                 VALID UNTIL         
+IGS05_1617                                                  SINEX CODE          
+ATTENTION! PRELIMINARY VALUES!                              COMMENT             
+   R01                                                      START OF FREQUENCY  
+   -545.00      0.00   2300.00                              NORTH / EAST / UP   
+   NOAZI    2.70    0.30   -0.10   -0.50   -0.80   -0.80   -0.50   -0.20   -0.30   -0.20   -0.20    0.10   -0.10   -0.10    0.70
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+   -545.00      0.00   2300.00                              NORTH / EAST / UP   
+   NOAZI    2.70    0.30   -0.10   -0.50   -0.80   -0.80   -0.50   -0.20   -0.30   -0.20   -0.20    0.10   -0.10   -0.10    0.70
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS-M           R16                 R738      2010-041A TYPE / SERIAL NO    
+                    CODE                     0    04-OCT-10 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2010    10     1     0     0    0.0000000                 VALID FROM          
+IGS05_1617                                                  SINEX CODE          
+ATTENTION! PRELIMINARY VALUES!                              COMMENT             
+   R01                                                      START OF FREQUENCY  
+   -545.00      0.00   2300.00                              NORTH / EAST / UP   
+   NOAZI    2.70    0.30   -0.10   -0.50   -0.80   -0.80   -0.50   -0.20   -0.30   -0.20   -0.20    0.10   -0.10   -0.10    0.70
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+   -545.00      0.00   2300.00                              NORTH / EAST / UP   
+   NOAZI    2.70    0.30   -0.10   -0.50   -0.80   -0.80   -0.50   -0.20   -0.30   -0.20   -0.20    0.10   -0.10   -0.10    0.70
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS             R17                 R787      2000-063A TYPE / SERIAL NO    
+                    CODE                     0    23-AUG-06 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2000    10    13     0     0    0.0000000                 VALID FROM          
+  2007    10    25    23    59   59.9999999                 VALID UNTIL         
+IGS05_1617                                                  SINEX CODE          
+   R01                                                      START OF FREQUENCY  
+      0.00      0.00   2055.90                              NORTH / EAST / UP   
+   NOAZI    2.70    0.30   -0.10   -0.50   -0.80   -0.80   -0.50   -0.20   -0.30   -0.20   -0.20    0.10   -0.10   -0.10    0.70
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+      0.00      0.00   2055.90                              NORTH / EAST / UP   
+   NOAZI    2.70    0.30   -0.10   -0.50   -0.80   -0.80   -0.50   -0.20   -0.30   -0.20   -0.20    0.10   -0.10   -0.10    0.70
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS-M           R17                 R718      2007-052C TYPE / SERIAL NO    
+                    CODE                     0    30-NOV-07 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2007    10    26     0     0    0.0000000                 VALID FROM          
+  2010    12    15    23    59   59.9999999                 VALID UNTIL         
+IGS05_1617                                                  SINEX CODE          
+ATTENTION! PRELIMINARY VALUES!                              COMMENT             
+   R01                                                      START OF FREQUENCY  
+   -545.00      0.00   2300.00                              NORTH / EAST / UP   
+   NOAZI    2.70    0.30   -0.10   -0.50   -0.80   -0.80   -0.50   -0.20   -0.30   -0.20   -0.20    0.10   -0.10   -0.10    0.70
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+   -545.00      0.00   2300.00                              NORTH / EAST / UP   
+   NOAZI    2.70    0.30   -0.10   -0.50   -0.80   -0.80   -0.50   -0.20   -0.30   -0.20   -0.20    0.10   -0.10   -0.10    0.70
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS-M           R17                 R714      2005-050A TYPE / SERIAL NO    
+                    CODE/ESOC                0    04-JAN-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2010    12    16     0     0    0.0000000                 VALID FROM          
+IGS05_1617                                                  SINEX CODE          
+   R01                                                      START OF FREQUENCY  
+   -545.00      0.00   1916.80                              NORTH / EAST / UP   
+   NOAZI    2.70    0.30   -0.10   -0.50   -0.80   -0.80   -0.50   -0.20   -0.30   -0.20   -0.20    0.10   -0.10   -0.10    0.70
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+   -545.00      0.00   1916.80                              NORTH / EAST / UP   
+   NOAZI    2.70    0.30   -0.10   -0.50   -0.80   -0.80   -0.50   -0.20   -0.30   -0.20   -0.20    0.10   -0.10   -0.10    0.70
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS             R18                 R783      2000-063C TYPE / SERIAL NO    
+                    CODE                     0    23-AUG-06 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2000    10    13     0     0    0.0000000                 VALID FROM          
+  2008     9    24    23    59   59.9999999                 VALID UNTIL         
+IGS05_1617                                                  SINEX CODE          
+   R01                                                      START OF FREQUENCY  
+      0.00      0.00   1927.40                              NORTH / EAST / UP   
+   NOAZI    2.70    0.30   -0.10   -0.50   -0.80   -0.80   -0.50   -0.20   -0.30   -0.20   -0.20    0.10   -0.10   -0.10    0.70
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+      0.00      0.00   1927.40                              NORTH / EAST / UP   
+   NOAZI    2.70    0.30   -0.10   -0.50   -0.80   -0.80   -0.50   -0.20   -0.30   -0.20   -0.20    0.10   -0.10   -0.10    0.70
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS-M           R18                 R724      2008-046A TYPE / SERIAL NO    
+                    CODE                     0    30-SEP-08 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2008     9    25     0     0    0.0000000                 VALID FROM          
+IGS05_1617                                                  SINEX CODE          
+ATTENTION! PRELIMINARY VALUES!                              COMMENT             
+   R01                                                      START OF FREQUENCY  
+   -545.00      0.00   2300.00                              NORTH / EAST / UP   
+   NOAZI    2.70    0.30   -0.10   -0.50   -0.80   -0.80   -0.50   -0.20   -0.30   -0.20   -0.20    0.10   -0.10   -0.10    0.70
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+   -545.00      0.00   2300.00                              NORTH / EAST / UP   
+   NOAZI    2.70    0.30   -0.10   -0.50   -0.80   -0.80   -0.50   -0.20   -0.30   -0.20   -0.20    0.10   -0.10   -0.10    0.70
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS             R19                 R798      2005-050C TYPE / SERIAL NO    
+                    CODE                     0    23-AUG-06 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2005    12    25     0     0    0.0000000                 VALID FROM          
+  2007    10    25    23    59   59.9999999                 VALID UNTIL         
+IGS05_1617                                                  SINEX CODE          
+   R01                                                      START OF FREQUENCY  
+      0.00      0.00   2039.00                              NORTH / EAST / UP   
+   NOAZI    2.70    0.30   -0.10   -0.50   -0.80   -0.80   -0.50   -0.20   -0.30   -0.20   -0.20    0.10   -0.10   -0.10    0.70
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+      0.00      0.00   2039.00                              NORTH / EAST / UP   
+   NOAZI    2.70    0.30   -0.10   -0.50   -0.80   -0.80   -0.50   -0.20   -0.30   -0.20   -0.20    0.10   -0.10   -0.10    0.70
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS-M           R19                 R720      2007-052A TYPE / SERIAL NO    
+                    CODE                     0    30-NOV-07 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2007    10    26     0     0    0.0000000                 VALID FROM          
+IGS05_1617                                                  SINEX CODE          
+ATTENTION! PRELIMINARY VALUES!                              COMMENT             
+   R01                                                      START OF FREQUENCY  
+   -545.00      0.00   2300.00                              NORTH / EAST / UP   
+   NOAZI    2.70    0.30   -0.10   -0.50   -0.80   -0.80   -0.50   -0.20   -0.30   -0.20   -0.20    0.10   -0.10   -0.10    0.70
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+   -545.00      0.00   2300.00                              NORTH / EAST / UP   
+   NOAZI    2.70    0.30   -0.10   -0.50   -0.80   -0.80   -0.50   -0.20   -0.30   -0.20   -0.20    0.10   -0.10   -0.10    0.70
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS             R20                 R793      2002-060B TYPE / SERIAL NO    
+                    CODE                     0    23-AUG-06 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2006     2    28     0     0    0.0000000                 VALID FROM          
+  2007    10    25    23    59   59.9999999                 VALID UNTIL         
+IGS05_1617                                                  SINEX CODE          
+   R01                                                      START OF FREQUENCY  
+      0.00      0.00   2002.20                              NORTH / EAST / UP   
+   NOAZI    2.70    0.30   -0.10   -0.50   -0.80   -0.80   -0.50   -0.20   -0.30   -0.20   -0.20    0.10   -0.10   -0.10    0.70
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+      0.00      0.00   2002.20                              NORTH / EAST / UP   
+   NOAZI    2.70    0.30   -0.10   -0.50   -0.80   -0.80   -0.50   -0.20   -0.30   -0.20   -0.20    0.10   -0.10   -0.10    0.70
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS-M           R20                 R719      2007-052B TYPE / SERIAL NO    
+                    CODE                     0    30-NOV-07 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2007    10    26     0     0    0.0000000                 VALID FROM          
+IGS05_1617                                                  SINEX CODE          
+ATTENTION! PRELIMINARY VALUES!                              COMMENT             
+   R01                                                      START OF FREQUENCY  
+   -545.00      0.00   2300.00                              NORTH / EAST / UP   
+   NOAZI    2.70    0.30   -0.10   -0.50   -0.80   -0.80   -0.50   -0.20   -0.30   -0.20   -0.20    0.10   -0.10   -0.10    0.70
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+   -545.00      0.00   2300.00                              NORTH / EAST / UP   
+   NOAZI    2.70    0.30   -0.10   -0.50   -0.80   -0.80   -0.50   -0.20   -0.30   -0.20   -0.20    0.10   -0.10   -0.10    0.70
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS             R21                 R792      2002-060C TYPE / SERIAL NO    
+                    CODE                     0    23-AUG-06 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2002    12    25     0     0    0.0000000                 VALID FROM          
+  2008     9    24    23    59   59.9999999                 VALID UNTIL         
+IGS05_1617                                                  SINEX CODE          
+   R01                                                      START OF FREQUENCY  
+      0.00      0.00   1975.40                              NORTH / EAST / UP   
+   NOAZI    2.70    0.30   -0.10   -0.50   -0.80   -0.80   -0.50   -0.20   -0.30   -0.20   -0.20    0.10   -0.10   -0.10    0.70
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+      0.00      0.00   1975.40                              NORTH / EAST / UP   
+   NOAZI    2.70    0.30   -0.10   -0.50   -0.80   -0.80   -0.50   -0.20   -0.30   -0.20   -0.20    0.10   -0.10   -0.10    0.70
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS-M           R21                 R725      2008-046B TYPE / SERIAL NO    
+                    CODE                     0    30-SEP-08 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2008     9    25     0     0    0.0000000                 VALID FROM          
+IGS05_1617                                                  SINEX CODE          
+ATTENTION! PRELIMINARY VALUES!                              COMMENT             
+   R01                                                      START OF FREQUENCY  
+   -545.00      0.00   2300.00                              NORTH / EAST / UP   
+   NOAZI    2.70    0.30   -0.10   -0.50   -0.80   -0.80   -0.50   -0.20   -0.30   -0.20   -0.20    0.10   -0.10   -0.10    0.70
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+   -545.00      0.00   2300.00                              NORTH / EAST / UP   
+   NOAZI    2.70    0.30   -0.10   -0.50   -0.80   -0.80   -0.50   -0.20   -0.30   -0.20   -0.20    0.10   -0.10   -0.10    0.70
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS             R22                 R791      2002-060A TYPE / SERIAL NO    
+                    CODE                     0    23-AUG-06 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2002    12    25     0     0    0.0000000                 VALID FROM          
+  2007    10    25    23    59   59.9999999                 VALID UNTIL         
+IGS05_1617                                                  SINEX CODE          
+   R01                                                      START OF FREQUENCY  
+      0.00      0.00   2000.90                              NORTH / EAST / UP   
+   NOAZI    2.70    0.30   -0.10   -0.50   -0.80   -0.80   -0.50   -0.20   -0.30   -0.20   -0.20    0.10   -0.10   -0.10    0.70
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+      0.00      0.00   2000.90                              NORTH / EAST / UP   
+   NOAZI    2.70    0.30   -0.10   -0.50   -0.80   -0.80   -0.50   -0.20   -0.30   -0.20   -0.20    0.10   -0.10   -0.10    0.70
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS             R22                 R798      2005-050C TYPE / SERIAL NO    
+                    CODE                     0    20-FEB-08 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2007    10    26     0     0    0.0000000                 VALID FROM          
+  2008     9    24    23    59   59.9999999                 VALID UNTIL         
+IGS05_1617                                                  SINEX CODE          
+   R01                                                      START OF FREQUENCY  
+      0.00      0.00   2039.00                              NORTH / EAST / UP   
+   NOAZI    2.70    0.30   -0.10   -0.50   -0.80   -0.80   -0.50   -0.20   -0.30   -0.20   -0.20    0.10   -0.10   -0.10    0.70
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+      0.00      0.00   2039.00                              NORTH / EAST / UP   
+   NOAZI    2.70    0.30   -0.10   -0.50   -0.80   -0.80   -0.50   -0.20   -0.30   -0.20   -0.20    0.10   -0.10   -0.10    0.70
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS-M           R22                 R726      2008-046C TYPE / SERIAL NO    
+                    CODE                     0    30-SEP-08 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2008     9    25     0     0    0.0000000                 VALID FROM          
+  2010     2    28    23    59   59.9999999                 VALID UNTIL         
+IGS05_1617                                                  SINEX CODE          
+ATTENTION! PRELIMINARY VALUES!                              COMMENT             
+   R01                                                      START OF FREQUENCY  
+   -545.00      0.00   2300.00                              NORTH / EAST / UP   
+   NOAZI    2.70    0.30   -0.10   -0.50   -0.80   -0.80   -0.50   -0.20   -0.30   -0.20   -0.20    0.10   -0.10   -0.10    0.70
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+   -545.00      0.00   2300.00                              NORTH / EAST / UP   
+   NOAZI    2.70    0.30   -0.10   -0.50   -0.80   -0.80   -0.50   -0.20   -0.30   -0.20   -0.20    0.10   -0.10   -0.10    0.70
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS-M           R22                 R731      2010-007A TYPE / SERIAL NO    
+                    CODE                     0    19-MAR-10 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2010     3     1     0     0    0.0000000                 VALID FROM          
+IGS05_1617                                                  SINEX CODE          
+ATTENTION! PRELIMINARY VALUES!                              COMMENT             
+   R01                                                      START OF FREQUENCY  
+   -545.00      0.00   2300.00                              NORTH / EAST / UP   
+   NOAZI    2.70    0.30   -0.10   -0.50   -0.80   -0.80   -0.50   -0.20   -0.30   -0.20   -0.20    0.10   -0.10   -0.10    0.70
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+   -545.00      0.00   2300.00                              NORTH / EAST / UP   
+   NOAZI    2.70    0.30   -0.10   -0.50   -0.80   -0.80   -0.50   -0.20   -0.30   -0.20   -0.20    0.10   -0.10   -0.10    0.70
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS             R23                 R793      2002-060B TYPE / SERIAL NO    
+                    CODE                     0    23-AUG-06 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2002    12    25     0     0    0.0000000                 VALID FROM          
+  2006     2    27    23    59   59.9999999                 VALID UNTIL         
+IGS05_1617                                                  SINEX CODE          
+   R01                                                      START OF FREQUENCY  
+      0.00      0.00   2002.20                              NORTH / EAST / UP   
+   NOAZI    2.70    0.30   -0.10   -0.50   -0.80   -0.80   -0.50   -0.20   -0.30   -0.20   -0.20    0.10   -0.10   -0.10    0.70
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+      0.00      0.00   2002.20                              NORTH / EAST / UP   
+   NOAZI    2.70    0.30   -0.10   -0.50   -0.80   -0.80   -0.50   -0.20   -0.30   -0.20   -0.20    0.10   -0.10   -0.10    0.70
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS-M           R23                 R714      2005-050A TYPE / SERIAL NO    
+                    CODE/ESOC                0    26-JUL-09 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2006     2    28     0     0    0.0000000                 VALID FROM          
+  2010     3    18    23    59   59.9999999                 VALID UNTIL         
+IGS05_1617                                                  SINEX CODE          
+Z-OFFSET UPDATE IN GPS WEEK 1542: 2277.2 mm --> 1916.8 mm   COMMENT             
+   R01                                                      START OF FREQUENCY  
+   -545.00      0.00   1916.80                              NORTH / EAST / UP   
+   NOAZI    2.70    0.30   -0.10   -0.50   -0.80   -0.80   -0.50   -0.20   -0.30   -0.20   -0.20    0.10   -0.10   -0.10    0.70
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+   -545.00      0.00   1916.80                              NORTH / EAST / UP   
+   NOAZI    2.70    0.30   -0.10   -0.50   -0.80   -0.80   -0.50   -0.20   -0.30   -0.20   -0.20    0.10   -0.10   -0.10    0.70
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS-M           R23                 R732      2010-007C TYPE / SERIAL NO    
+                    CODE                     0    19-MAR-10 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2010     3    19     0     0    0.0000000                 VALID FROM          
+IGS05_1617                                                  SINEX CODE          
+ATTENTION! PRELIMINARY VALUES!                              COMMENT             
+   R01                                                      START OF FREQUENCY  
+   -545.00      0.00   2300.00                              NORTH / EAST / UP   
+   NOAZI    2.70    0.30   -0.10   -0.50   -0.80   -0.80   -0.50   -0.20   -0.30   -0.20   -0.20    0.10   -0.10   -0.10    0.70
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+   -545.00      0.00   2300.00                              NORTH / EAST / UP   
+   NOAZI    2.70    0.30   -0.10   -0.50   -0.80   -0.80   -0.50   -0.20   -0.30   -0.20   -0.20    0.10   -0.10   -0.10    0.70
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS             R24                 R788      2000-063B TYPE / SERIAL NO    
+                    CODE                     0    23-NOV-06 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2000    10    13     0     0    0.0000000                 VALID FROM          
+  2005    12    24    23    59   59.9999999                 VALID UNTIL         
+IGS05_1617                                                  SINEX CODE          
+   R01                                                      START OF FREQUENCY  
+      0.00      0.00   2073.80                              NORTH / EAST / UP   
+   NOAZI    2.70    0.30   -0.10   -0.50   -0.80   -0.80   -0.50   -0.20   -0.30   -0.20   -0.20    0.10   -0.10   -0.10    0.70
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+      0.00      0.00   2073.80                              NORTH / EAST / UP   
+   NOAZI    2.70    0.30   -0.10   -0.50   -0.80   -0.80   -0.50   -0.20   -0.30   -0.20   -0.20    0.10   -0.10   -0.10    0.70
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS-M           R24                 R713      2005-050B TYPE / SERIAL NO    
+                    CODE                     0    23-NOV-06 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2005    12    25     0     0    0.0000000                 VALID FROM          
+  2010     2    28    23    59   59.9999999                 VALID UNTIL         
+IGS05_1617                                                  SINEX CODE          
+   R01                                                      START OF FREQUENCY  
+   -545.00      0.00   2325.30                              NORTH / EAST / UP   
+   NOAZI    2.70    0.30   -0.10   -0.50   -0.80   -0.80   -0.50   -0.20   -0.30   -0.20   -0.20    0.10   -0.10   -0.10    0.70
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+   -545.00      0.00   2325.30                              NORTH / EAST / UP   
+   NOAZI    2.70    0.30   -0.10   -0.50   -0.80   -0.80   -0.50   -0.20   -0.30   -0.20   -0.20    0.10   -0.10   -0.10    0.70
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS-M           R24                 R735      2010-007B TYPE / SERIAL NO    
+                    CODE                     0    19-MAR-10 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2010     3     1     0     0    0.0000000                 VALID FROM          
+IGS05_1617                                                  SINEX CODE          
+ATTENTION! PRELIMINARY VALUES!                              COMMENT             
+   R01                                                      START OF FREQUENCY  
+   -545.00      0.00   2300.00                              NORTH / EAST / UP   
+   NOAZI    2.70    0.30   -0.10   -0.50   -0.80   -0.80   -0.50   -0.20   -0.30   -0.20   -0.20    0.10   -0.10   -0.10    0.70
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+   -545.00      0.00   2300.00                              NORTH / EAST / UP   
+   NOAZI    2.70    0.30   -0.10   -0.50   -0.80   -0.80   -0.50   -0.20   -0.30   -0.20   -0.20    0.10   -0.10   -0.10    0.70
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+3S-02-TSADM     NONE                                        TYPE / SERIAL NO    
+CONVERTED           NGS/TUM                  0    25-MAR-04 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+      2.30      3.14    253.74                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.24   -0.72   -1.47   -2.28   -3.19   -4.05   -4.69   -5.07   -5.00   -4.54   -3.56   -2.07   -0.04    2.70    6.27   10.79
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.70      3.58    283.66                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.03   -0.22   -0.70   -1.22   -1.72   -2.33   -2.71   -3.05   -3.03   -2.75   -1.93   -0.68    0.85    2.67    4.79    7.16
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+3S-02-TSATE     NONE                                        TYPE / SERIAL NO    
+CONVERTED           IGEX/TUM                 0    20-APR-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+      0.60     -0.46    152.24                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.24   -0.92   -1.97   -3.28   -4.69   -6.05   -7.19   -7.97   -8.30   -8.14   -7.46   -6.27   -4.54   -2.20    0.87    4.79
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.10     -0.62    163.06                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.13   -0.52   -1.10   -1.82   -2.62   -3.43   -4.21   -4.85   -5.23   -5.25   -4.83   -3.98   -2.75   -1.23    0.59    2.86
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+AERAT2775_43    NONE                                        TYPE / SERIAL NO    
+CONVERTED           NGS/TUM                  0    16-APR-03 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+      2.90     -1.06     69.54                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.14   -0.32   -0.67   -1.28   -1.99   -2.65   -3.39   -3.87   -4.10   -4.14   -3.76   -3.07   -1.94   -0.10    2.47    6.09
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.30     -0.42     86.16                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.83   -1.52   -2.30   -3.12   -3.92   -4.73   -5.61   -6.25   -6.83   -6.95   -6.53   -5.68   -4.15   -2.03    0.89    4.66
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+AERAT2775_43    SPKE                                        TYPE / SERIAL NO    
+FIELD               NGS/TUM                  3    10-AUG-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      2.50     -1.66     69.14                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.34   -0.42   -0.67   -0.98   -1.29   -1.75   -2.19   -2.67   -2.90   -2.94   -2.86   -2.27   -1.44    0.10    2.67    6.39
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.50     -0.52     88.16                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.33   -0.72   -1.20   -1.82   -2.42   -3.23   -3.91   -4.55   -5.03   -5.05   -4.73   -3.88   -2.65   -0.93    1.39    4.36
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+AOAD/M_B        NONE                                        TYPE / SERIAL NO    
+CONVERTED           TUM                      0    27-JAN-03 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+      0.60     -0.46     59.24                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.24   -0.92   -1.97   -3.28   -4.69   -6.05   -7.19   -7.97   -8.30   -8.14   -7.46   -6.27   -4.54   -2.20    0.87    4.79    9.56   14.88
+     0.0    0.00   -0.28   -1.01   -2.12   -3.49   -4.95   -6.35   -7.52   -8.32   -8.63   -8.43   -7.72   -6.51   -4.78   -2.47    0.58    4.48    9.16   14.25
+     5.0    0.00   -0.28   -1.01   -2.12   -3.48   -4.94   -6.34   -7.50   -8.30   -8.62   -8.42   -7.70   -6.48   -4.75   -2.42    0.63    4.53    9.23   14.33
+    10.0    0.00   -0.28   -1.01   -2.11   -3.46   -4.92   -6.32   -7.48   -8.27   -8.59   -8.39   -7.68   -6.46   -4.72   -2.38    0.69    4.60    9.32   14.45
+    15.0    0.00   -0.27   -1.00   -2.10   -3.45   -4.90   -6.29   -7.46   -8.25   -8.57   -8.37   -7.65   -6.43   -4.68   -2.33    0.75    4.69    9.43   14.61
+    20.0    0.00   -0.27   -0.99   -2.08   -3.43   -4.88   -6.27   -7.43   -8.22   -8.54   -8.35   -7.63   -6.40   -4.64   -2.28    0.83    4.78    9.56   14.80
+    25.0    0.00   -0.27   -0.98   -2.07   -3.41   -4.85   -6.24   -7.39   -8.19   -8.51   -8.32   -7.60   -6.37   -4.60   -2.22    0.90    4.89    9.71   15.02
+    30.0    0.00   -0.26   -0.98   -2.06   -3.39   -4.83   -6.21   -7.36   -8.15   -8.48   -8.29   -7.57   -6.33   -4.55   -2.15    0.99    5.00    9.87   15.25
+    35.0    0.00   -0.26   -0.97   -2.04   -3.37   -4.80   -6.17   -7.32   -8.11   -8.44   -8.25   -7.54   -6.29   -4.50   -2.09    1.08    5.12   10.03   15.48
+    40.0    0.00   -0.26   -0.96   -2.02   -3.34   -4.77   -6.13   -7.28   -8.07   -8.40   -8.21   -7.50   -6.25   -4.45   -2.02    1.17    5.25   10.19   15.70
+    45.0    0.00   -0.25   -0.95   -2.01   -3.32   -4.74   -6.10   -7.24   -8.03   -8.35   -8.17   -7.45   -6.20   -4.40   -1.95    1.26    5.36   10.34   15.89
+    50.0    0.00   -0.25   -0.94   -1.99   -3.29   -4.70   -6.06   -7.19   -7.98   -8.31   -8.12   -7.40   -6.15   -4.34   -1.88    1.34    5.46   10.46   16.05
+    55.0    0.00   -0.24   -0.93   -1.97   -3.27   -4.67   -6.02   -7.15   -7.93   -8.25   -8.07   -7.35   -6.10   -4.28   -1.82    1.41    5.54   10.55   16.15
+    60.0    0.00   -0.24   -0.92   -1.95   -3.24   -4.64   -5.98   -7.10   -7.88   -8.20   -8.01   -7.30   -6.04   -4.23   -1.76    1.47    5.59   10.60   16.20
+    65.0    0.00   -0.24   -0.91   -1.94   -3.22   -4.60   -5.94   -7.06   -7.83   -8.15   -7.96   -7.24   -5.99   -4.18   -1.72    1.50    5.61   10.60   16.20
+    70.0    0.00   -0.23   -0.90   -1.92   -3.19   -4.57   -5.90   -7.02   -7.79   -8.10   -7.91   -7.19   -5.94   -4.14   -1.70    1.50    5.60   10.57   16.14
+    75.0    0.00   -0.23   -0.89   -1.91   -3.17   -4.55   -5.87   -6.98   -7.75   -8.06   -7.87   -7.15   -5.91   -4.12   -1.70    1.48    5.55   10.50   16.04
+    80.0    0.00   -0.23   -0.88   -1.89   -3.16   -4.53   -5.84   -6.95   -7.72   -8.03   -7.83   -7.12   -5.89   -4.11   -1.71    1.44    5.47   10.39   15.91
+    85.0    0.00   -0.22   -0.87   -1.88   -3.14   -4.51   -5.82   -6.93   -7.69   -8.00   -7.81   -7.10   -5.88   -4.13   -1.75    1.36    5.36   10.25   15.74
+    90.0    0.00   -0.22   -0.87   -1.87   -3.13   -4.49   -5.81   -6.92   -7.68   -7.99   -7.80   -7.10   -5.90   -4.16   -1.82    1.27    5.24   10.09   15.56
+    95.0    0.00   -0.22   -0.86   -1.87   -3.12   -4.49   -5.80   -6.91   -7.68   -7.99   -7.81   -7.12   -5.93   -4.21   -1.90    1.16    5.10    9.92   15.37
+   100.0    0.00   -0.21   -0.86   -1.87   -3.12   -4.48   -5.80   -6.91   -7.68   -8.01   -7.84   -7.16   -5.98   -4.29   -1.99    1.04    4.96    9.76   15.18
+   105.0    0.00   -0.21   -0.86   -1.86   -3.12   -4.49   -5.81   -6.93   -7.70   -8.04   -7.88   -7.21   -6.05   -4.37   -2.09    0.93    4.82    9.60   15.00
+   110.0    0.00   -0.21   -0.86   -1.87   -3.13   -4.50   -5.82   -6.95   -7.73   -8.07   -7.93   -7.28   -6.13   -4.47   -2.20    0.81    4.69    9.46   14.84
+   115.0    0.00   -0.21   -0.86   -1.87   -3.13   -4.51   -5.84   -6.97   -7.76   -8.12   -7.99   -7.35   -6.22   -4.56   -2.30    0.71    4.59    9.34   14.71
+   120.0    0.00   -0.21   -0.86   -1.87   -3.15   -4.53   -5.87   -7.00   -7.80   -8.17   -8.05   -7.43   -6.31   -4.66   -2.39    0.62    4.50    9.24   14.60
+   125.0    0.00   -0.21   -0.86   -1.88   -3.16   -4.55   -5.89   -7.04   -7.85   -8.22   -8.12   -7.51   -6.39   -4.74   -2.47    0.55    4.44    9.18   14.52
+   130.0    0.00   -0.21   -0.86   -1.89   -3.17   -4.57   -5.92   -7.07   -7.89   -8.27   -8.18   -7.58   -6.47   -4.81   -2.53    0.51    4.40    9.13   14.47
+   135.0    0.00   -0.21   -0.86   -1.90   -3.19   -4.60   -5.95   -7.11   -7.93   -8.32   -8.23   -7.64   -6.53   -4.87   -2.57    0.47    4.37    9.11   14.44
+   140.0    0.00   -0.21   -0.87   -1.91   -3.21   -4.62   -5.98   -7.14   -7.96   -8.36   -8.28   -7.69   -6.58   -4.91   -2.60    0.46    4.37    9.10   14.43
+   145.0    0.00   -0.21   -0.87   -1.91   -3.22   -4.64   -6.01   -7.17   -8.00   -8.39   -8.31   -7.72   -6.61   -4.93   -2.62    0.45    4.36    9.10   14.44
+   150.0    0.00   -0.21   -0.87   -1.92   -3.24   -4.66   -6.04   -7.20   -8.02   -8.42   -8.33   -7.74   -6.63   -4.94   -2.62    0.45    4.37    9.10   14.45
+   155.0    0.00   -0.21   -0.87   -1.93   -3.25   -4.68   -6.06   -7.22   -8.05   -8.44   -8.35   -7.75   -6.63   -4.94   -2.62    0.46    4.36    9.10   14.46
+   160.0    0.00   -0.21   -0.88   -1.93   -3.26   -4.69   -6.07   -7.24   -8.06   -8.45   -8.35   -7.75   -6.62   -4.94   -2.61    0.45    4.36    9.09   14.46
+   165.0    0.00   -0.21   -0.88   -1.94   -3.27   -4.70   -6.09   -7.25   -8.07   -8.46   -8.35   -7.74   -6.61   -4.93   -2.61    0.45    4.34    9.08   14.46
+   170.0    0.00   -0.21   -0.88   -1.94   -3.27   -4.71   -6.10   -7.26   -8.08   -8.46   -8.35   -7.73   -6.60   -4.92   -2.61    0.43    4.32    9.05   14.44
+   175.0    0.00   -0.21   -0.88   -1.94   -3.27   -4.71   -6.10   -7.27   -8.08   -8.46   -8.34   -7.72   -6.59   -4.91   -2.61    0.42    4.29    9.02   14.41
+   180.0    0.00   -0.21   -0.88   -1.94   -3.27   -4.71   -6.10   -7.27   -8.08   -8.46   -8.34   -7.71   -6.57   -4.90   -2.62    0.40    4.26    9.00   14.38
+   185.0    0.00   -0.21   -0.88   -1.93   -3.26   -4.70   -6.09   -7.26   -8.08   -8.45   -8.33   -7.70   -6.56   -4.90   -2.62    0.38    4.24    8.98   14.35
+   190.0    0.00   -0.21   -0.87   -1.93   -3.25   -4.69   -6.08   -7.25   -8.07   -8.44   -8.32   -7.69   -6.55   -4.89   -2.62    0.38    4.24    8.98   14.33
+   195.0    0.00   -0.21   -0.87   -1.92   -3.24   -4.68   -6.07   -7.24   -8.06   -8.43   -8.30   -7.67   -6.54   -4.88   -2.61    0.39    4.26    9.00   14.33
+   200.0    0.00   -0.21   -0.87   -1.92   -3.23   -4.67   -6.05   -7.22   -8.04   -8.41   -8.29   -7.65   -6.52   -4.86   -2.59    0.42    4.30    9.06   14.37
+   205.0    0.00   -0.21   -0.87   -1.91   -3.22   -4.65   -6.03   -7.20   -8.02   -8.39   -8.26   -7.62   -6.48   -4.82   -2.55    0.47    4.38    9.15   14.44
+   210.0    0.00   -0.21   -0.87   -1.90   -3.21   -4.63   -6.01   -7.18   -8.00   -8.36   -8.23   -7.58   -6.44   -4.77   -2.49    0.55    4.48    9.28   14.55
+   215.0    0.00   -0.21   -0.87   -1.90   -3.20   -4.61   -5.99   -7.15   -7.97   -8.33   -8.18   -7.53   -6.38   -4.70   -2.41    0.65    4.61    9.43   14.69
+   220.0    0.00   -0.21   -0.87   -1.89   -3.19   -4.60   -5.97   -7.13   -7.93   -8.28   -8.13   -7.47   -6.31   -4.62   -2.31    0.78    4.77    9.61   14.87
+   225.0    0.00   -0.21   -0.87   -1.89   -3.18   -4.58   -5.94   -7.10   -7.89   -8.24   -8.07   -7.40   -6.22   -4.52   -2.19    0.91    4.93    9.80   15.07
+   230.0    0.00   -0.21   -0.87   -1.89   -3.17   -4.57   -5.92   -7.07   -7.85   -8.18   -8.01   -7.32   -6.13   -4.41   -2.07    1.06    5.10    9.98   15.28
+   235.0    0.00   -0.22   -0.87   -1.89   -3.16   -4.56   -5.90   -7.03   -7.81   -8.13   -7.94   -7.24   -6.03   -4.30   -1.94    1.20    5.25   10.15   15.47
+   240.0    0.00   -0.22   -0.87   -1.89   -3.16   -4.55   -5.88   -7.01   -7.77   -8.07   -7.87   -7.16   -5.94   -4.19   -1.82    1.33    5.39   10.29   15.63
+   245.0    0.00   -0.22   -0.87   -1.89   -3.16   -4.54   -5.87   -6.98   -7.73   -8.02   -7.81   -7.08   -5.86   -4.10   -1.71    1.44    5.49   10.39   15.74
+   250.0    0.00   -0.22   -0.88   -1.90   -3.17   -4.54   -5.86   -6.96   -7.70   -7.98   -7.76   -7.02   -5.79   -4.01   -1.62    1.53    5.56   10.44   15.79
+   255.0    0.00   -0.23   -0.88   -1.90   -3.17   -4.54   -5.86   -6.95   -7.68   -7.95   -7.72   -6.98   -5.73   -3.96   -1.56    1.58    5.58   10.43   15.78
+   260.0    0.00   -0.23   -0.89   -1.91   -3.18   -4.55   -5.86   -6.94   -7.66   -7.93   -7.70   -6.96   -5.71   -3.92   -1.53    1.59    5.57   10.37   15.71
+   265.0    0.00   -0.23   -0.90   -1.92   -3.19   -4.56   -5.86   -6.94   -7.66   -7.93   -7.70   -6.96   -5.70   -3.92   -1.53    1.57    5.51   10.26   15.58
+   270.0    0.00   -0.24   -0.91   -1.94   -3.21   -4.58   -5.88   -6.95   -7.67   -7.94   -7.71   -6.98   -5.73   -3.94   -1.56    1.52    5.41   10.11   15.40
+   275.0    0.00   -0.24   -0.92   -1.95   -3.23   -4.60   -5.90   -6.97   -7.69   -7.96   -7.74   -7.02   -5.77   -4.00   -1.62    1.44    5.28    9.93   15.20
+   280.0    0.00   -0.25   -0.93   -1.97   -3.25   -4.62   -5.93   -7.00   -7.72   -8.00   -7.79   -7.07   -5.84   -4.07   -1.71    1.33    5.14    9.74   14.98
+   285.0    0.00   -0.25   -0.94   -1.98   -3.27   -4.65   -5.96   -7.04   -7.77   -8.06   -7.86   -7.15   -5.92   -4.16   -1.81    1.21    4.99    9.55   14.77
+   290.0    0.00   -0.25   -0.95   -2.00   -3.30   -4.69   -6.00   -7.09   -7.82   -8.12   -7.93   -7.23   -6.01   -4.26   -1.92    1.08    4.84    9.38   14.58
+   295.0    0.00   -0.26   -0.96   -2.02   -3.33   -4.72   -6.04   -7.14   -7.88   -8.19   -8.00   -7.31   -6.11   -4.36   -2.04    0.96    4.70    9.23   14.43
+   300.0    0.00   -0.26   -0.97   -2.04   -3.35   -4.76   -6.09   -7.19   -7.95   -8.26   -8.08   -7.40   -6.20   -4.47   -2.15    0.83    4.58    9.10   14.31
+   305.0    0.00   -0.26   -0.98   -2.05   -3.38   -4.79   -6.14   -7.25   -8.01   -8.33   -8.16   -7.48   -6.29   -4.57   -2.26    0.73    4.47    9.01   14.22
+   310.0    0.00   -0.27   -0.98   -2.07   -3.40   -4.83   -6.18   -7.31   -8.08   -8.40   -8.23   -7.56   -6.37   -4.66   -2.35    0.63    4.40    8.96   14.17
+   315.0    0.00   -0.27   -0.99   -2.08   -3.43   -4.86   -6.23   -7.36   -8.14   -8.47   -8.30   -7.62   -6.44   -4.73   -2.43    0.56    4.34    8.93   14.15
+   320.0    0.00   -0.27   -1.00   -2.10   -3.45   -4.89   -6.27   -7.41   -8.19   -8.52   -8.35   -7.67   -6.49   -4.79   -2.49    0.50    4.31    8.92   14.15
+   325.0    0.00   -0.28   -1.01   -2.11   -3.46   -4.92   -6.30   -7.45   -8.24   -8.57   -8.39   -7.71   -6.53   -4.83   -2.54    0.47    4.29    8.93   14.15
+   330.0    0.00   -0.28   -1.01   -2.12   -3.48   -4.94   -6.33   -7.49   -8.28   -8.61   -8.43   -7.74   -6.56   -4.86   -2.56    0.45    4.29    8.95   14.16
+   335.0    0.00   -0.28   -1.02   -2.13   -3.49   -4.95   -6.35   -7.51   -8.31   -8.63   -8.45   -7.76   -6.57   -4.87   -2.57    0.45    4.31    8.98   14.16
+   340.0    0.00   -0.28   -1.02   -2.13   -3.50   -4.96   -6.36   -7.53   -8.33   -8.65   -8.46   -7.77   -6.57   -4.87   -2.57    0.46    4.33    9.01   14.16
+   345.0    0.00   -0.28   -1.02   -2.13   -3.50   -4.97   -6.37   -7.54   -8.33   -8.66   -8.46   -7.76   -6.57   -4.86   -2.56    0.48    4.36    9.04   14.16
+   350.0    0.00   -0.28   -1.02   -2.13   -3.50   -4.97   -6.37   -7.54   -8.34   -8.66   -8.46   -7.75   -6.55   -4.84   -2.53    0.51    4.39    9.07   14.17
+   355.0    0.00   -0.28   -1.02   -2.13   -3.49   -4.96   -6.37   -7.54   -8.33   -8.65   -8.45   -7.74   -6.53   -4.81   -2.50    0.54    4.43    9.11   14.20
+   360.0    0.00   -0.28   -1.01   -2.12   -3.49   -4.95   -6.35   -7.52   -8.32   -8.63   -8.43   -7.72   -6.51   -4.78   -2.47    0.58    4.48    9.16   14.25
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.10     -0.62     88.06                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.13   -0.52   -1.10   -1.82   -2.62   -3.43   -4.21   -4.85   -5.23   -5.25   -4.83   -3.98   -2.75   -1.23    0.59    2.86    5.83    9.66
+     0.0    0.00   -0.12   -0.48   -1.03   -1.72   -2.49   -3.29   -4.07   -4.73   -5.15   -5.20   -4.83   -4.05   -2.92   -1.50    0.25    2.53    5.61    9.51
+     5.0    0.00   -0.11   -0.47   -1.03   -1.71   -2.48   -3.29   -4.06   -4.72   -5.13   -5.20   -4.83   -4.05   -2.93   -1.51    0.25    2.54    5.58    9.37
+    10.0    0.00   -0.11   -0.47   -1.02   -1.71   -2.48   -3.28   -4.05   -4.71   -5.12   -5.19   -4.83   -4.06   -2.93   -1.51    0.26    2.55    5.55    9.26
+    15.0    0.00   -0.11   -0.46   -1.01   -1.71   -2.48   -3.28   -4.05   -4.70   -5.11   -5.17   -4.82   -4.05   -2.93   -1.50    0.27    2.55    5.53    9.17
+    20.0    0.00   -0.10   -0.45   -1.01   -1.70   -2.48   -3.28   -4.04   -4.69   -5.10   -5.16   -4.81   -4.04   -2.92   -1.48    0.29    2.57    5.52    9.12
+    25.0    0.00   -0.10   -0.45   -1.00   -1.70   -2.47   -3.28   -4.04   -4.68   -5.08   -5.14   -4.79   -4.02   -2.89   -1.45    0.32    2.59    5.52    9.12
+    30.0    0.00   -0.10   -0.44   -1.00   -1.69   -2.47   -3.27   -4.03   -4.67   -5.07   -5.13   -4.77   -3.99   -2.86   -1.41    0.36    2.61    5.53    9.16
+    35.0    0.00   -0.09   -0.44   -0.99   -1.69   -2.47   -3.27   -4.03   -4.66   -5.06   -5.11   -4.75   -3.96   -2.81   -1.36    0.41    2.65    5.57    9.23
+    40.0    0.00   -0.09   -0.44   -0.99   -1.68   -2.46   -3.27   -4.03   -4.66   -5.05   -5.10   -4.72   -3.92   -2.76   -1.30    0.47    2.69    5.61    9.34
+    45.0    0.00   -0.09   -0.43   -0.98   -1.68   -2.46   -3.26   -4.02   -4.66   -5.05   -5.09   -4.70   -3.88   -2.70   -1.23    0.53    2.74    5.66    9.47
+    50.0    0.00   -0.09   -0.43   -0.98   -1.67   -2.46   -3.26   -4.03   -4.66   -5.05   -5.08   -4.68   -3.84   -2.65   -1.17    0.59    2.79    5.72    9.60
+    55.0    0.00   -0.09   -0.43   -0.98   -1.67   -2.45   -3.26   -4.03   -4.66   -5.05   -5.07   -4.66   -3.81   -2.59   -1.11    0.65    2.84    5.77    9.73
+    60.0    0.00   -0.09   -0.43   -0.98   -1.67   -2.46   -3.27   -4.04   -4.67   -5.06   -5.07   -4.64   -3.77   -2.55   -1.05    0.70    2.88    5.81    9.83
+    65.0    0.00   -0.09   -0.43   -0.98   -1.67   -2.46   -3.27   -4.05   -4.69   -5.07   -5.07   -4.63   -3.75   -2.51   -1.02    0.74    2.91    5.84    9.91
+    70.0    0.00   -0.09   -0.43   -0.98   -1.68   -2.47   -3.29   -4.06   -4.70   -5.08   -5.08   -4.63   -3.74   -2.49   -0.99    0.75    2.92    5.85    9.95
+    75.0    0.00   -0.09   -0.43   -0.99   -1.69   -2.48   -3.30   -4.08   -4.72   -5.10   -5.09   -4.63   -3.74   -2.49   -0.99    0.76    2.92    5.85    9.96
+    80.0    0.00   -0.09   -0.44   -0.99   -1.70   -2.50   -3.32   -4.11   -4.74   -5.12   -5.11   -4.64   -3.74   -2.50   -1.00    0.74    2.90    5.82    9.93
+    85.0    0.00   -0.10   -0.44   -1.00   -1.71   -2.52   -3.35   -4.13   -4.77   -5.14   -5.12   -4.66   -3.76   -2.52   -1.03    0.71    2.86    5.78    9.86
+    90.0    0.00   -0.10   -0.45   -1.02   -1.73   -2.54   -3.37   -4.16   -4.79   -5.16   -5.14   -4.68   -3.79   -2.56   -1.07    0.66    2.82    5.73    9.78
+    95.0    0.00   -0.10   -0.46   -1.03   -1.75   -2.57   -3.40   -4.19   -4.82   -5.18   -5.16   -4.70   -3.82   -2.60   -1.12    0.61    2.77    5.67    9.68
+   100.0    0.00   -0.10   -0.47   -1.05   -1.78   -2.59   -3.43   -4.22   -4.84   -5.20   -5.18   -4.73   -3.86   -2.65   -1.18    0.56    2.72    5.61    9.58
+   105.0    0.00   -0.11   -0.48   -1.06   -1.80   -2.62   -3.46   -4.24   -4.87   -5.22   -5.20   -4.75   -3.90   -2.70   -1.23    0.52    2.68    5.56    9.48
+   110.0    0.00   -0.11   -0.49   -1.08   -1.82   -2.65   -3.49   -4.27   -4.89   -5.24   -5.22   -4.78   -3.93   -2.74   -1.27    0.48    2.66    5.53    9.40
+   115.0    0.00   -0.12   -0.50   -1.10   -1.85   -2.68   -3.52   -4.29   -4.90   -5.25   -5.24   -4.80   -3.96   -2.77   -1.30    0.46    2.65    5.51    9.33
+   120.0    0.00   -0.12   -0.51   -1.11   -1.87   -2.70   -3.54   -4.31   -4.92   -5.26   -5.25   -4.83   -3.99   -2.79   -1.31    0.46    2.66    5.51    9.29
+   125.0    0.00   -0.12   -0.52   -1.13   -1.89   -2.72   -3.56   -4.32   -4.93   -5.27   -5.26   -4.84   -4.00   -2.80   -1.31    0.48    2.69    5.53    9.26
+   130.0    0.00   -0.13   -0.52   -1.14   -1.91   -2.74   -3.57   -4.33   -4.93   -5.28   -5.28   -4.86   -4.01   -2.80   -1.29    0.52    2.73    5.57    9.26
+   135.0    0.00   -0.13   -0.53   -1.15   -1.92   -2.75   -3.58   -4.34   -4.94   -5.29   -5.29   -4.87   -4.02   -2.79   -1.26    0.57    2.79    5.61    9.27
+   140.0    0.00   -0.13   -0.54   -1.16   -1.93   -2.76   -3.59   -4.34   -4.94   -5.29   -5.30   -4.87   -4.02   -2.78   -1.22    0.62    2.85    5.66    9.28
+   145.0    0.00   -0.14   -0.55   -1.17   -1.94   -2.77   -3.59   -4.34   -4.95   -5.30   -5.30   -4.88   -4.01   -2.75   -1.18    0.67    2.91    5.71    9.29
+   150.0    0.00   -0.14   -0.55   -1.18   -1.95   -2.77   -3.59   -4.34   -4.95   -5.31   -5.31   -4.89   -4.01   -2.74   -1.15    0.72    2.95    5.75    9.30
+   155.0    0.00   -0.14   -0.56   -1.18   -1.95   -2.77   -3.59   -4.34   -4.95   -5.32   -5.32   -4.89   -4.01   -2.72   -1.12    0.75    2.99    5.78    9.30
+   160.0    0.00   -0.15   -0.56   -1.18   -1.95   -2.77   -3.59   -4.34   -4.96   -5.33   -5.34   -4.90   -4.01   -2.72   -1.11    0.76    3.00    5.79    9.28
+   165.0    0.00   -0.15   -0.56   -1.18   -1.94   -2.76   -3.58   -4.34   -4.96   -5.34   -5.35   -4.91   -4.01   -2.72   -1.12    0.76    3.00    5.79    9.26
+   170.0    0.00   -0.15   -0.56   -1.18   -1.94   -2.75   -3.57   -4.34   -4.97   -5.35   -5.36   -4.92   -4.02   -2.73   -1.14    0.73    2.97    5.77    9.23
+   175.0    0.00   -0.15   -0.57   -1.18   -1.93   -2.74   -3.57   -4.34   -4.98   -5.36   -5.37   -4.93   -4.03   -2.75   -1.17    0.69    2.93    5.74    9.20
+   180.0    0.00   -0.16   -0.57   -1.18   -1.92   -2.74   -3.56   -4.34   -4.98   -5.37   -5.38   -4.94   -4.04   -2.77   -1.21    0.63    2.88    5.71    9.17
+   185.0    0.00   -0.16   -0.57   -1.17   -1.91   -2.73   -3.56   -4.35   -4.99   -5.38   -5.38   -4.94   -4.05   -2.79   -1.25    0.58    2.83    5.69    9.16
+   190.0    0.00   -0.16   -0.57   -1.17   -1.90   -2.72   -3.56   -4.35   -5.00   -5.39   -5.39   -4.93   -4.05   -2.81   -1.29    0.53    2.79    5.68    9.18
+   195.0    0.00   -0.16   -0.56   -1.16   -1.90   -2.71   -3.55   -4.35   -5.01   -5.39   -5.38   -4.92   -4.04   -2.81   -1.31    0.49    2.76    5.69    9.22
+   200.0    0.00   -0.16   -0.56   -1.16   -1.89   -2.70   -3.55   -4.35   -5.01   -5.39   -5.37   -4.91   -4.02   -2.80   -1.32    0.48    2.76    5.72    9.30
+   205.0    0.00   -0.16   -0.56   -1.16   -1.88   -2.70   -3.55   -4.35   -5.01   -5.39   -5.36   -4.88   -3.99   -2.78   -1.30    0.49    2.79    5.79    9.40
+   210.0    0.00   -0.16   -0.56   -1.15   -1.88   -2.69   -3.54   -4.35   -5.01   -5.38   -5.34   -4.86   -3.96   -2.74   -1.27    0.53    2.85    5.88    9.53
+   215.0    0.00   -0.17   -0.56   -1.15   -1.88   -2.69   -3.54   -4.35   -5.01   -5.37   -5.32   -4.83   -3.92   -2.70   -1.21    0.60    2.93    5.99    9.69
+   220.0    0.00   -0.17   -0.57   -1.15   -1.87   -2.69   -3.54   -4.35   -5.00   -5.36   -5.31   -4.80   -3.88   -2.64   -1.14    0.69    3.04    6.13    9.85
+   225.0    0.00   -0.17   -0.57   -1.15   -1.87   -2.69   -3.54   -4.34   -4.99   -5.35   -5.29   -4.78   -3.85   -2.59   -1.06    0.79    3.17    6.27   10.02
+   230.0    0.00   -0.17   -0.57   -1.15   -1.88   -2.69   -3.53   -4.33   -4.98   -5.34   -5.28   -4.76   -3.82   -2.54   -0.98    0.90    3.30    6.41   10.17
+   235.0    0.00   -0.17   -0.57   -1.16   -1.88   -2.69   -3.53   -4.33   -4.97   -5.32   -5.27   -4.76   -3.81   -2.50   -0.91    1.01    3.43    6.54   10.30
+   240.0    0.00   -0.17   -0.57   -1.16   -1.88   -2.69   -3.52   -4.32   -4.96   -5.32   -5.27   -4.76   -3.81   -2.48   -0.85    1.11    3.55    6.65   10.40
+   245.0    0.00   -0.17   -0.58   -1.17   -1.89   -2.69   -3.52   -4.31   -4.95   -5.31   -5.28   -4.78   -3.82   -2.48   -0.82    1.18    3.64    6.72   10.45
+   250.0    0.00   -0.17   -0.58   -1.17   -1.89   -2.69   -3.52   -4.30   -4.93   -5.31   -5.29   -4.81   -3.86   -2.50   -0.80    1.23    3.69    6.76   10.46
+   255.0    0.00   -0.17   -0.58   -1.18   -1.90   -2.69   -3.51   -4.29   -4.92   -5.30   -5.30   -4.84   -3.90   -2.54   -0.82    1.24    3.71    6.75   10.43
+   260.0    0.00   -0.17   -0.58   -1.18   -1.90   -2.70   -3.51   -4.27   -4.91   -5.30   -5.32   -4.88   -3.96   -2.59   -0.86    1.22    3.69    6.70   10.36
+   265.0    0.00   -0.17   -0.58   -1.18   -1.91   -2.70   -3.50   -4.26   -4.90   -5.30   -5.34   -4.92   -4.02   -2.66   -0.92    1.16    3.63    6.61   10.26
+   270.0    0.00   -0.17   -0.58   -1.19   -1.91   -2.70   -3.50   -4.25   -4.89   -5.30   -5.36   -4.96   -4.08   -2.73   -0.99    1.08    3.53    6.49   10.15
+   275.0    0.00   -0.17   -0.58   -1.19   -1.91   -2.70   -3.49   -4.24   -4.88   -5.29   -5.37   -4.99   -4.13   -2.80   -1.08    0.98    3.41    6.35   10.04
+   280.0    0.00   -0.17   -0.58   -1.19   -1.91   -2.69   -3.48   -4.23   -4.87   -5.29   -5.37   -5.02   -4.17   -2.86   -1.16    0.86    3.26    6.20    9.93
+   285.0    0.00   -0.17   -0.58   -1.18   -1.91   -2.69   -3.47   -4.22   -4.86   -5.28   -5.37   -5.03   -4.20   -2.92   -1.25    0.74    3.11    6.05    9.85
+   290.0    0.00   -0.16   -0.58   -1.18   -1.90   -2.68   -3.46   -4.21   -4.85   -5.27   -5.37   -5.03   -4.21   -2.95   -1.33    0.62    2.96    5.90    9.79
+   295.0    0.00   -0.16   -0.57   -1.17   -1.89   -2.67   -3.45   -4.20   -4.84   -5.26   -5.35   -5.02   -4.21   -2.98   -1.39    0.51    2.82    5.78    9.77
+   300.0    0.00   -0.16   -0.57   -1.16   -1.88   -2.65   -3.44   -4.19   -4.83   -5.25   -5.34   -4.99   -4.19   -2.98   -1.44    0.42    2.69    5.68    9.78
+   305.0    0.00   -0.16   -0.56   -1.15   -1.87   -2.64   -3.42   -4.18   -4.82   -5.24   -5.32   -4.97   -4.17   -2.98   -1.47    0.34    2.59    5.61    9.82
+   310.0    0.00   -0.15   -0.56   -1.14   -1.85   -2.62   -3.41   -4.16   -4.81   -5.23   -5.30   -4.94   -4.14   -2.96   -1.49    0.28    2.51    5.57    9.87
+   315.0    0.00   -0.15   -0.55   -1.13   -1.83   -2.60   -3.39   -4.15   -4.80   -5.21   -5.28   -4.91   -4.10   -2.94   -1.49    0.24    2.46    5.55    9.94
+   320.0    0.00   -0.15   -0.54   -1.12   -1.82   -2.58   -3.38   -4.14   -4.79   -5.20   -5.26   -4.88   -4.07   -2.91   -1.49    0.22    2.43    5.55   10.00
+   325.0    0.00   -0.14   -0.53   -1.11   -1.80   -2.57   -3.36   -4.13   -4.78   -5.19   -5.24   -4.86   -4.04   -2.89   -1.49    0.21    2.43    5.57   10.04
+   330.0    0.00   -0.14   -0.53   -1.10   -1.79   -2.55   -3.34   -4.12   -4.77   -5.19   -5.23   -4.84   -4.02   -2.88   -1.48    0.21    2.43    5.60   10.06
+   335.0    0.00   -0.14   -0.52   -1.08   -1.77   -2.53   -3.33   -4.11   -4.77   -5.18   -5.22   -4.83   -4.01   -2.87   -1.48    0.21    2.45    5.62   10.04
+   340.0    0.00   -0.13   -0.51   -1.07   -1.76   -2.52   -3.32   -4.10   -4.76   -5.17   -5.22   -4.82   -4.01   -2.87   -1.48    0.22    2.47    5.64    9.99
+   345.0    0.00   -0.13   -0.50   -1.06   -1.75   -2.51   -3.31   -4.09   -4.75   -5.17   -5.22   -4.82   -4.01   -2.87   -1.48    0.23    2.49    5.65    9.90
+   350.0    0.00   -0.12   -0.49   -1.05   -1.74   -2.50   -3.30   -4.08   -4.74   -5.16   -5.21   -4.83   -4.02   -2.89   -1.49    0.24    2.51    5.65    9.79
+   355.0    0.00   -0.12   -0.49   -1.04   -1.73   -2.49   -3.29   -4.07   -4.73   -5.15   -5.21   -4.83   -4.03   -2.90   -1.50    0.24    2.52    5.63    9.65
+   360.0    0.00   -0.12   -0.48   -1.03   -1.72   -2.49   -3.29   -4.07   -4.73   -5.15   -5.20   -4.83   -4.05   -2.92   -1.50    0.25    2.53    5.61    9.51
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+AOAD/M_T        NONE                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               1    27-JAN-03 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+      0.60     -0.46     91.24                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.24   -0.92   -1.97   -3.28   -4.69   -6.05   -7.19   -7.97   -8.30   -8.14   -7.46   -6.27   -4.54   -2.20    0.87    4.79    9.56   14.88
+     0.0    0.00   -0.28   -1.01   -2.12   -3.49   -4.95   -6.35   -7.52   -8.32   -8.63   -8.43   -7.72   -6.51   -4.78   -2.47    0.58    4.48    9.16   14.25
+     5.0    0.00   -0.28   -1.01   -2.12   -3.48   -4.94   -6.34   -7.50   -8.30   -8.62   -8.42   -7.70   -6.48   -4.75   -2.42    0.63    4.53    9.23   14.33
+    10.0    0.00   -0.28   -1.01   -2.11   -3.46   -4.92   -6.32   -7.48   -8.27   -8.59   -8.39   -7.68   -6.46   -4.72   -2.38    0.69    4.60    9.32   14.45
+    15.0    0.00   -0.27   -1.00   -2.10   -3.45   -4.90   -6.29   -7.46   -8.25   -8.57   -8.37   -7.65   -6.43   -4.68   -2.33    0.75    4.69    9.43   14.61
+    20.0    0.00   -0.27   -0.99   -2.08   -3.43   -4.88   -6.27   -7.43   -8.22   -8.54   -8.35   -7.63   -6.40   -4.64   -2.28    0.83    4.78    9.56   14.80
+    25.0    0.00   -0.27   -0.98   -2.07   -3.41   -4.85   -6.24   -7.39   -8.19   -8.51   -8.32   -7.60   -6.37   -4.60   -2.22    0.90    4.89    9.71   15.02
+    30.0    0.00   -0.26   -0.98   -2.06   -3.39   -4.83   -6.21   -7.36   -8.15   -8.48   -8.29   -7.57   -6.33   -4.55   -2.15    0.99    5.00    9.87   15.25
+    35.0    0.00   -0.26   -0.97   -2.04   -3.37   -4.80   -6.17   -7.32   -8.11   -8.44   -8.25   -7.54   -6.29   -4.50   -2.09    1.08    5.12   10.03   15.48
+    40.0    0.00   -0.26   -0.96   -2.02   -3.34   -4.77   -6.13   -7.28   -8.07   -8.40   -8.21   -7.50   -6.25   -4.45   -2.02    1.17    5.25   10.19   15.70
+    45.0    0.00   -0.25   -0.95   -2.01   -3.32   -4.74   -6.10   -7.24   -8.03   -8.35   -8.17   -7.45   -6.20   -4.40   -1.95    1.26    5.36   10.34   15.89
+    50.0    0.00   -0.25   -0.94   -1.99   -3.29   -4.70   -6.06   -7.19   -7.98   -8.31   -8.12   -7.40   -6.15   -4.34   -1.88    1.34    5.46   10.46   16.05
+    55.0    0.00   -0.24   -0.93   -1.97   -3.27   -4.67   -6.02   -7.15   -7.93   -8.25   -8.07   -7.35   -6.10   -4.28   -1.82    1.41    5.54   10.55   16.15
+    60.0    0.00   -0.24   -0.92   -1.95   -3.24   -4.64   -5.98   -7.10   -7.88   -8.20   -8.01   -7.30   -6.04   -4.23   -1.76    1.47    5.59   10.60   16.20
+    65.0    0.00   -0.24   -0.91   -1.94   -3.22   -4.60   -5.94   -7.06   -7.83   -8.15   -7.96   -7.24   -5.99   -4.18   -1.72    1.50    5.61   10.60   16.20
+    70.0    0.00   -0.23   -0.90   -1.92   -3.19   -4.57   -5.90   -7.02   -7.79   -8.10   -7.91   -7.19   -5.94   -4.14   -1.70    1.50    5.60   10.57   16.14
+    75.0    0.00   -0.23   -0.89   -1.91   -3.17   -4.55   -5.87   -6.98   -7.75   -8.06   -7.87   -7.15   -5.91   -4.12   -1.70    1.48    5.55   10.50   16.04
+    80.0    0.00   -0.23   -0.88   -1.89   -3.16   -4.53   -5.84   -6.95   -7.72   -8.03   -7.83   -7.12   -5.89   -4.11   -1.71    1.44    5.47   10.39   15.91
+    85.0    0.00   -0.22   -0.87   -1.88   -3.14   -4.51   -5.82   -6.93   -7.69   -8.00   -7.81   -7.10   -5.88   -4.13   -1.75    1.36    5.36   10.25   15.74
+    90.0    0.00   -0.22   -0.87   -1.87   -3.13   -4.49   -5.81   -6.92   -7.68   -7.99   -7.80   -7.10   -5.90   -4.16   -1.82    1.27    5.24   10.09   15.56
+    95.0    0.00   -0.22   -0.86   -1.87   -3.12   -4.49   -5.80   -6.91   -7.68   -7.99   -7.81   -7.12   -5.93   -4.21   -1.90    1.16    5.10    9.92   15.37
+   100.0    0.00   -0.21   -0.86   -1.87   -3.12   -4.48   -5.80   -6.91   -7.68   -8.01   -7.84   -7.16   -5.98   -4.29   -1.99    1.04    4.96    9.76   15.18
+   105.0    0.00   -0.21   -0.86   -1.86   -3.12   -4.49   -5.81   -6.93   -7.70   -8.04   -7.88   -7.21   -6.05   -4.37   -2.09    0.93    4.82    9.60   15.00
+   110.0    0.00   -0.21   -0.86   -1.87   -3.13   -4.50   -5.82   -6.95   -7.73   -8.07   -7.93   -7.28   -6.13   -4.47   -2.20    0.81    4.69    9.46   14.84
+   115.0    0.00   -0.21   -0.86   -1.87   -3.13   -4.51   -5.84   -6.97   -7.76   -8.12   -7.99   -7.35   -6.22   -4.56   -2.30    0.71    4.59    9.34   14.71
+   120.0    0.00   -0.21   -0.86   -1.87   -3.15   -4.53   -5.87   -7.00   -7.80   -8.17   -8.05   -7.43   -6.31   -4.66   -2.39    0.62    4.50    9.24   14.60
+   125.0    0.00   -0.21   -0.86   -1.88   -3.16   -4.55   -5.89   -7.04   -7.85   -8.22   -8.12   -7.51   -6.39   -4.74   -2.47    0.55    4.44    9.18   14.52
+   130.0    0.00   -0.21   -0.86   -1.89   -3.17   -4.57   -5.92   -7.07   -7.89   -8.27   -8.18   -7.58   -6.47   -4.81   -2.53    0.51    4.40    9.13   14.47
+   135.0    0.00   -0.21   -0.86   -1.90   -3.19   -4.60   -5.95   -7.11   -7.93   -8.32   -8.23   -7.64   -6.53   -4.87   -2.57    0.47    4.37    9.11   14.44
+   140.0    0.00   -0.21   -0.87   -1.91   -3.21   -4.62   -5.98   -7.14   -7.96   -8.36   -8.28   -7.69   -6.58   -4.91   -2.60    0.46    4.37    9.10   14.43
+   145.0    0.00   -0.21   -0.87   -1.91   -3.22   -4.64   -6.01   -7.17   -8.00   -8.39   -8.31   -7.72   -6.61   -4.93   -2.62    0.45    4.36    9.10   14.44
+   150.0    0.00   -0.21   -0.87   -1.92   -3.24   -4.66   -6.04   -7.20   -8.02   -8.42   -8.33   -7.74   -6.63   -4.94   -2.62    0.45    4.37    9.10   14.45
+   155.0    0.00   -0.21   -0.87   -1.93   -3.25   -4.68   -6.06   -7.22   -8.05   -8.44   -8.35   -7.75   -6.63   -4.94   -2.62    0.46    4.36    9.10   14.46
+   160.0    0.00   -0.21   -0.88   -1.93   -3.26   -4.69   -6.07   -7.24   -8.06   -8.45   -8.35   -7.75   -6.62   -4.94   -2.61    0.45    4.36    9.09   14.46
+   165.0    0.00   -0.21   -0.88   -1.94   -3.27   -4.70   -6.09   -7.25   -8.07   -8.46   -8.35   -7.74   -6.61   -4.93   -2.61    0.45    4.34    9.08   14.46
+   170.0    0.00   -0.21   -0.88   -1.94   -3.27   -4.71   -6.10   -7.26   -8.08   -8.46   -8.35   -7.73   -6.60   -4.92   -2.61    0.43    4.32    9.05   14.44
+   175.0    0.00   -0.21   -0.88   -1.94   -3.27   -4.71   -6.10   -7.27   -8.08   -8.46   -8.34   -7.72   -6.59   -4.91   -2.61    0.42    4.29    9.02   14.41
+   180.0    0.00   -0.21   -0.88   -1.94   -3.27   -4.71   -6.10   -7.27   -8.08   -8.46   -8.34   -7.71   -6.57   -4.90   -2.62    0.40    4.26    9.00   14.38
+   185.0    0.00   -0.21   -0.88   -1.93   -3.26   -4.70   -6.09   -7.26   -8.08   -8.45   -8.33   -7.70   -6.56   -4.90   -2.62    0.38    4.24    8.98   14.35
+   190.0    0.00   -0.21   -0.87   -1.93   -3.25   -4.69   -6.08   -7.25   -8.07   -8.44   -8.32   -7.69   -6.55   -4.89   -2.62    0.38    4.24    8.98   14.33
+   195.0    0.00   -0.21   -0.87   -1.92   -3.24   -4.68   -6.07   -7.24   -8.06   -8.43   -8.30   -7.67   -6.54   -4.88   -2.61    0.39    4.26    9.00   14.33
+   200.0    0.00   -0.21   -0.87   -1.92   -3.23   -4.67   -6.05   -7.22   -8.04   -8.41   -8.29   -7.65   -6.52   -4.86   -2.59    0.42    4.30    9.06   14.37
+   205.0    0.00   -0.21   -0.87   -1.91   -3.22   -4.65   -6.03   -7.20   -8.02   -8.39   -8.26   -7.62   -6.48   -4.82   -2.55    0.47    4.38    9.15   14.44
+   210.0    0.00   -0.21   -0.87   -1.90   -3.21   -4.63   -6.01   -7.18   -8.00   -8.36   -8.23   -7.58   -6.44   -4.77   -2.49    0.55    4.48    9.28   14.55
+   215.0    0.00   -0.21   -0.87   -1.90   -3.20   -4.61   -5.99   -7.15   -7.97   -8.33   -8.18   -7.53   -6.38   -4.70   -2.41    0.65    4.61    9.43   14.69
+   220.0    0.00   -0.21   -0.87   -1.89   -3.19   -4.60   -5.97   -7.13   -7.93   -8.28   -8.13   -7.47   -6.31   -4.62   -2.31    0.78    4.77    9.61   14.87
+   225.0    0.00   -0.21   -0.87   -1.89   -3.18   -4.58   -5.94   -7.10   -7.89   -8.24   -8.07   -7.40   -6.22   -4.52   -2.19    0.91    4.93    9.80   15.07
+   230.0    0.00   -0.21   -0.87   -1.89   -3.17   -4.57   -5.92   -7.07   -7.85   -8.18   -8.01   -7.32   -6.13   -4.41   -2.07    1.06    5.10    9.98   15.28
+   235.0    0.00   -0.22   -0.87   -1.89   -3.16   -4.56   -5.90   -7.03   -7.81   -8.13   -7.94   -7.24   -6.03   -4.30   -1.94    1.20    5.25   10.15   15.47
+   240.0    0.00   -0.22   -0.87   -1.89   -3.16   -4.55   -5.88   -7.01   -7.77   -8.07   -7.87   -7.16   -5.94   -4.19   -1.82    1.33    5.39   10.29   15.63
+   245.0    0.00   -0.22   -0.87   -1.89   -3.16   -4.54   -5.87   -6.98   -7.73   -8.02   -7.81   -7.08   -5.86   -4.10   -1.71    1.44    5.49   10.39   15.74
+   250.0    0.00   -0.22   -0.88   -1.90   -3.17   -4.54   -5.86   -6.96   -7.70   -7.98   -7.76   -7.02   -5.79   -4.01   -1.62    1.53    5.56   10.44   15.79
+   255.0    0.00   -0.23   -0.88   -1.90   -3.17   -4.54   -5.86   -6.95   -7.68   -7.95   -7.72   -6.98   -5.73   -3.96   -1.56    1.58    5.58   10.43   15.78
+   260.0    0.00   -0.23   -0.89   -1.91   -3.18   -4.55   -5.86   -6.94   -7.66   -7.93   -7.70   -6.96   -5.71   -3.92   -1.53    1.59    5.57   10.37   15.71
+   265.0    0.00   -0.23   -0.90   -1.92   -3.19   -4.56   -5.86   -6.94   -7.66   -7.93   -7.70   -6.96   -5.70   -3.92   -1.53    1.57    5.51   10.26   15.58
+   270.0    0.00   -0.24   -0.91   -1.94   -3.21   -4.58   -5.88   -6.95   -7.67   -7.94   -7.71   -6.98   -5.73   -3.94   -1.56    1.52    5.41   10.11   15.40
+   275.0    0.00   -0.24   -0.92   -1.95   -3.23   -4.60   -5.90   -6.97   -7.69   -7.96   -7.74   -7.02   -5.77   -4.00   -1.62    1.44    5.28    9.93   15.20
+   280.0    0.00   -0.25   -0.93   -1.97   -3.25   -4.62   -5.93   -7.00   -7.72   -8.00   -7.79   -7.07   -5.84   -4.07   -1.71    1.33    5.14    9.74   14.98
+   285.0    0.00   -0.25   -0.94   -1.98   -3.27   -4.65   -5.96   -7.04   -7.77   -8.06   -7.86   -7.15   -5.92   -4.16   -1.81    1.21    4.99    9.55   14.77
+   290.0    0.00   -0.25   -0.95   -2.00   -3.30   -4.69   -6.00   -7.09   -7.82   -8.12   -7.93   -7.23   -6.01   -4.26   -1.92    1.08    4.84    9.38   14.58
+   295.0    0.00   -0.26   -0.96   -2.02   -3.33   -4.72   -6.04   -7.14   -7.88   -8.19   -8.00   -7.31   -6.11   -4.36   -2.04    0.96    4.70    9.23   14.43
+   300.0    0.00   -0.26   -0.97   -2.04   -3.35   -4.76   -6.09   -7.19   -7.95   -8.26   -8.08   -7.40   -6.20   -4.47   -2.15    0.83    4.58    9.10   14.31
+   305.0    0.00   -0.26   -0.98   -2.05   -3.38   -4.79   -6.14   -7.25   -8.01   -8.33   -8.16   -7.48   -6.29   -4.57   -2.26    0.73    4.47    9.01   14.22
+   310.0    0.00   -0.27   -0.98   -2.07   -3.40   -4.83   -6.18   -7.31   -8.08   -8.40   -8.23   -7.56   -6.37   -4.66   -2.35    0.63    4.40    8.96   14.17
+   315.0    0.00   -0.27   -0.99   -2.08   -3.43   -4.86   -6.23   -7.36   -8.14   -8.47   -8.30   -7.62   -6.44   -4.73   -2.43    0.56    4.34    8.93   14.15
+   320.0    0.00   -0.27   -1.00   -2.10   -3.45   -4.89   -6.27   -7.41   -8.19   -8.52   -8.35   -7.67   -6.49   -4.79   -2.49    0.50    4.31    8.92   14.15
+   325.0    0.00   -0.28   -1.01   -2.11   -3.46   -4.92   -6.30   -7.45   -8.24   -8.57   -8.39   -7.71   -6.53   -4.83   -2.54    0.47    4.29    8.93   14.15
+   330.0    0.00   -0.28   -1.01   -2.12   -3.48   -4.94   -6.33   -7.49   -8.28   -8.61   -8.43   -7.74   -6.56   -4.86   -2.56    0.45    4.29    8.95   14.16
+   335.0    0.00   -0.28   -1.02   -2.13   -3.49   -4.95   -6.35   -7.51   -8.31   -8.63   -8.45   -7.76   -6.57   -4.87   -2.57    0.45    4.31    8.98   14.16
+   340.0    0.00   -0.28   -1.02   -2.13   -3.50   -4.96   -6.36   -7.53   -8.33   -8.65   -8.46   -7.77   -6.57   -4.87   -2.57    0.46    4.33    9.01   14.16
+   345.0    0.00   -0.28   -1.02   -2.13   -3.50   -4.97   -6.37   -7.54   -8.33   -8.66   -8.46   -7.76   -6.57   -4.86   -2.56    0.48    4.36    9.04   14.16
+   350.0    0.00   -0.28   -1.02   -2.13   -3.50   -4.97   -6.37   -7.54   -8.34   -8.66   -8.46   -7.75   -6.55   -4.84   -2.53    0.51    4.39    9.07   14.17
+   355.0    0.00   -0.28   -1.02   -2.13   -3.49   -4.96   -6.37   -7.54   -8.33   -8.65   -8.45   -7.74   -6.53   -4.81   -2.50    0.54    4.43    9.11   14.20
+   360.0    0.00   -0.28   -1.01   -2.12   -3.49   -4.95   -6.35   -7.52   -8.32   -8.63   -8.43   -7.72   -6.51   -4.78   -2.47    0.58    4.48    9.16   14.25
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.10     -0.62    120.06                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.13   -0.52   -1.10   -1.82   -2.62   -3.43   -4.21   -4.85   -5.23   -5.25   -4.83   -3.98   -2.75   -1.23    0.59    2.86    5.83    9.66
+     0.0    0.00   -0.12   -0.48   -1.03   -1.72   -2.49   -3.29   -4.07   -4.73   -5.15   -5.20   -4.83   -4.05   -2.92   -1.50    0.25    2.53    5.61    9.51
+     5.0    0.00   -0.11   -0.47   -1.03   -1.71   -2.48   -3.29   -4.06   -4.72   -5.13   -5.20   -4.83   -4.05   -2.93   -1.51    0.25    2.54    5.58    9.37
+    10.0    0.00   -0.11   -0.47   -1.02   -1.71   -2.48   -3.28   -4.05   -4.71   -5.12   -5.19   -4.83   -4.06   -2.93   -1.51    0.26    2.55    5.55    9.26
+    15.0    0.00   -0.11   -0.46   -1.01   -1.71   -2.48   -3.28   -4.05   -4.70   -5.11   -5.17   -4.82   -4.05   -2.93   -1.50    0.27    2.55    5.53    9.17
+    20.0    0.00   -0.10   -0.45   -1.01   -1.70   -2.48   -3.28   -4.04   -4.69   -5.10   -5.16   -4.81   -4.04   -2.92   -1.48    0.29    2.57    5.52    9.12
+    25.0    0.00   -0.10   -0.45   -1.00   -1.70   -2.47   -3.28   -4.04   -4.68   -5.08   -5.14   -4.79   -4.02   -2.89   -1.45    0.32    2.59    5.52    9.12
+    30.0    0.00   -0.10   -0.44   -1.00   -1.69   -2.47   -3.27   -4.03   -4.67   -5.07   -5.13   -4.77   -3.99   -2.86   -1.41    0.36    2.61    5.53    9.16
+    35.0    0.00   -0.09   -0.44   -0.99   -1.69   -2.47   -3.27   -4.03   -4.66   -5.06   -5.11   -4.75   -3.96   -2.81   -1.36    0.41    2.65    5.57    9.23
+    40.0    0.00   -0.09   -0.44   -0.99   -1.68   -2.46   -3.27   -4.03   -4.66   -5.05   -5.10   -4.72   -3.92   -2.76   -1.30    0.47    2.69    5.61    9.34
+    45.0    0.00   -0.09   -0.43   -0.98   -1.68   -2.46   -3.26   -4.02   -4.66   -5.05   -5.09   -4.70   -3.88   -2.70   -1.23    0.53    2.74    5.66    9.47
+    50.0    0.00   -0.09   -0.43   -0.98   -1.67   -2.46   -3.26   -4.03   -4.66   -5.05   -5.08   -4.68   -3.84   -2.65   -1.17    0.59    2.79    5.72    9.60
+    55.0    0.00   -0.09   -0.43   -0.98   -1.67   -2.45   -3.26   -4.03   -4.66   -5.05   -5.07   -4.66   -3.81   -2.59   -1.11    0.65    2.84    5.77    9.73
+    60.0    0.00   -0.09   -0.43   -0.98   -1.67   -2.46   -3.27   -4.04   -4.67   -5.06   -5.07   -4.64   -3.77   -2.55   -1.05    0.70    2.88    5.81    9.83
+    65.0    0.00   -0.09   -0.43   -0.98   -1.67   -2.46   -3.27   -4.05   -4.69   -5.07   -5.07   -4.63   -3.75   -2.51   -1.02    0.74    2.91    5.84    9.91
+    70.0    0.00   -0.09   -0.43   -0.98   -1.68   -2.47   -3.29   -4.06   -4.70   -5.08   -5.08   -4.63   -3.74   -2.49   -0.99    0.75    2.92    5.85    9.95
+    75.0    0.00   -0.09   -0.43   -0.99   -1.69   -2.48   -3.30   -4.08   -4.72   -5.10   -5.09   -4.63   -3.74   -2.49   -0.99    0.76    2.92    5.85    9.96
+    80.0    0.00   -0.09   -0.44   -0.99   -1.70   -2.50   -3.32   -4.11   -4.74   -5.12   -5.11   -4.64   -3.74   -2.50   -1.00    0.74    2.90    5.82    9.93
+    85.0    0.00   -0.10   -0.44   -1.00   -1.71   -2.52   -3.35   -4.13   -4.77   -5.14   -5.12   -4.66   -3.76   -2.52   -1.03    0.71    2.86    5.78    9.86
+    90.0    0.00   -0.10   -0.45   -1.02   -1.73   -2.54   -3.37   -4.16   -4.79   -5.16   -5.14   -4.68   -3.79   -2.56   -1.07    0.66    2.82    5.73    9.78
+    95.0    0.00   -0.10   -0.46   -1.03   -1.75   -2.57   -3.40   -4.19   -4.82   -5.18   -5.16   -4.70   -3.82   -2.60   -1.12    0.61    2.77    5.67    9.68
+   100.0    0.00   -0.10   -0.47   -1.05   -1.78   -2.59   -3.43   -4.22   -4.84   -5.20   -5.18   -4.73   -3.86   -2.65   -1.18    0.56    2.72    5.61    9.58
+   105.0    0.00   -0.11   -0.48   -1.06   -1.80   -2.62   -3.46   -4.24   -4.87   -5.22   -5.20   -4.75   -3.90   -2.70   -1.23    0.52    2.68    5.56    9.48
+   110.0    0.00   -0.11   -0.49   -1.08   -1.82   -2.65   -3.49   -4.27   -4.89   -5.24   -5.22   -4.78   -3.93   -2.74   -1.27    0.48    2.66    5.53    9.40
+   115.0    0.00   -0.12   -0.50   -1.10   -1.85   -2.68   -3.52   -4.29   -4.90   -5.25   -5.24   -4.80   -3.96   -2.77   -1.30    0.46    2.65    5.51    9.33
+   120.0    0.00   -0.12   -0.51   -1.11   -1.87   -2.70   -3.54   -4.31   -4.92   -5.26   -5.25   -4.83   -3.99   -2.79   -1.31    0.46    2.66    5.51    9.29
+   125.0    0.00   -0.12   -0.52   -1.13   -1.89   -2.72   -3.56   -4.32   -4.93   -5.27   -5.26   -4.84   -4.00   -2.80   -1.31    0.48    2.69    5.53    9.26
+   130.0    0.00   -0.13   -0.52   -1.14   -1.91   -2.74   -3.57   -4.33   -4.93   -5.28   -5.28   -4.86   -4.01   -2.80   -1.29    0.52    2.73    5.57    9.26
+   135.0    0.00   -0.13   -0.53   -1.15   -1.92   -2.75   -3.58   -4.34   -4.94   -5.29   -5.29   -4.87   -4.02   -2.79   -1.26    0.57    2.79    5.61    9.27
+   140.0    0.00   -0.13   -0.54   -1.16   -1.93   -2.76   -3.59   -4.34   -4.94   -5.29   -5.30   -4.87   -4.02   -2.78   -1.22    0.62    2.85    5.66    9.28
+   145.0    0.00   -0.14   -0.55   -1.17   -1.94   -2.77   -3.59   -4.34   -4.95   -5.30   -5.30   -4.88   -4.01   -2.75   -1.18    0.67    2.91    5.71    9.29
+   150.0    0.00   -0.14   -0.55   -1.18   -1.95   -2.77   -3.59   -4.34   -4.95   -5.31   -5.31   -4.89   -4.01   -2.74   -1.15    0.72    2.95    5.75    9.30
+   155.0    0.00   -0.14   -0.56   -1.18   -1.95   -2.77   -3.59   -4.34   -4.95   -5.32   -5.32   -4.89   -4.01   -2.72   -1.12    0.75    2.99    5.78    9.30
+   160.0    0.00   -0.15   -0.56   -1.18   -1.95   -2.77   -3.59   -4.34   -4.96   -5.33   -5.34   -4.90   -4.01   -2.72   -1.11    0.76    3.00    5.79    9.28
+   165.0    0.00   -0.15   -0.56   -1.18   -1.94   -2.76   -3.58   -4.34   -4.96   -5.34   -5.35   -4.91   -4.01   -2.72   -1.12    0.76    3.00    5.79    9.26
+   170.0    0.00   -0.15   -0.56   -1.18   -1.94   -2.75   -3.57   -4.34   -4.97   -5.35   -5.36   -4.92   -4.02   -2.73   -1.14    0.73    2.97    5.77    9.23
+   175.0    0.00   -0.15   -0.57   -1.18   -1.93   -2.74   -3.57   -4.34   -4.98   -5.36   -5.37   -4.93   -4.03   -2.75   -1.17    0.69    2.93    5.74    9.20
+   180.0    0.00   -0.16   -0.57   -1.18   -1.92   -2.74   -3.56   -4.34   -4.98   -5.37   -5.38   -4.94   -4.04   -2.77   -1.21    0.63    2.88    5.71    9.17
+   185.0    0.00   -0.16   -0.57   -1.17   -1.91   -2.73   -3.56   -4.35   -4.99   -5.38   -5.38   -4.94   -4.05   -2.79   -1.25    0.58    2.83    5.69    9.16
+   190.0    0.00   -0.16   -0.57   -1.17   -1.90   -2.72   -3.56   -4.35   -5.00   -5.39   -5.39   -4.93   -4.05   -2.81   -1.29    0.53    2.79    5.68    9.18
+   195.0    0.00   -0.16   -0.56   -1.16   -1.90   -2.71   -3.55   -4.35   -5.01   -5.39   -5.38   -4.92   -4.04   -2.81   -1.31    0.49    2.76    5.69    9.22
+   200.0    0.00   -0.16   -0.56   -1.16   -1.89   -2.70   -3.55   -4.35   -5.01   -5.39   -5.37   -4.91   -4.02   -2.80   -1.32    0.48    2.76    5.72    9.30
+   205.0    0.00   -0.16   -0.56   -1.16   -1.88   -2.70   -3.55   -4.35   -5.01   -5.39   -5.36   -4.88   -3.99   -2.78   -1.30    0.49    2.79    5.79    9.40
+   210.0    0.00   -0.16   -0.56   -1.15   -1.88   -2.69   -3.54   -4.35   -5.01   -5.38   -5.34   -4.86   -3.96   -2.74   -1.27    0.53    2.85    5.88    9.53
+   215.0    0.00   -0.17   -0.56   -1.15   -1.88   -2.69   -3.54   -4.35   -5.01   -5.37   -5.32   -4.83   -3.92   -2.70   -1.21    0.60    2.93    5.99    9.69
+   220.0    0.00   -0.17   -0.57   -1.15   -1.87   -2.69   -3.54   -4.35   -5.00   -5.36   -5.31   -4.80   -3.88   -2.64   -1.14    0.69    3.04    6.13    9.85
+   225.0    0.00   -0.17   -0.57   -1.15   -1.87   -2.69   -3.54   -4.34   -4.99   -5.35   -5.29   -4.78   -3.85   -2.59   -1.06    0.79    3.17    6.27   10.02
+   230.0    0.00   -0.17   -0.57   -1.15   -1.88   -2.69   -3.53   -4.33   -4.98   -5.34   -5.28   -4.76   -3.82   -2.54   -0.98    0.90    3.30    6.41   10.17
+   235.0    0.00   -0.17   -0.57   -1.16   -1.88   -2.69   -3.53   -4.33   -4.97   -5.32   -5.27   -4.76   -3.81   -2.50   -0.91    1.01    3.43    6.54   10.30
+   240.0    0.00   -0.17   -0.57   -1.16   -1.88   -2.69   -3.52   -4.32   -4.96   -5.32   -5.27   -4.76   -3.81   -2.48   -0.85    1.11    3.55    6.65   10.40
+   245.0    0.00   -0.17   -0.58   -1.17   -1.89   -2.69   -3.52   -4.31   -4.95   -5.31   -5.28   -4.78   -3.82   -2.48   -0.82    1.18    3.64    6.72   10.45
+   250.0    0.00   -0.17   -0.58   -1.17   -1.89   -2.69   -3.52   -4.30   -4.93   -5.31   -5.29   -4.81   -3.86   -2.50   -0.80    1.23    3.69    6.76   10.46
+   255.0    0.00   -0.17   -0.58   -1.18   -1.90   -2.69   -3.51   -4.29   -4.92   -5.30   -5.30   -4.84   -3.90   -2.54   -0.82    1.24    3.71    6.75   10.43
+   260.0    0.00   -0.17   -0.58   -1.18   -1.90   -2.70   -3.51   -4.27   -4.91   -5.30   -5.32   -4.88   -3.96   -2.59   -0.86    1.22    3.69    6.70   10.36
+   265.0    0.00   -0.17   -0.58   -1.18   -1.91   -2.70   -3.50   -4.26   -4.90   -5.30   -5.34   -4.92   -4.02   -2.66   -0.92    1.16    3.63    6.61   10.26
+   270.0    0.00   -0.17   -0.58   -1.19   -1.91   -2.70   -3.50   -4.25   -4.89   -5.30   -5.36   -4.96   -4.08   -2.73   -0.99    1.08    3.53    6.49   10.15
+   275.0    0.00   -0.17   -0.58   -1.19   -1.91   -2.70   -3.49   -4.24   -4.88   -5.29   -5.37   -4.99   -4.13   -2.80   -1.08    0.98    3.41    6.35   10.04
+   280.0    0.00   -0.17   -0.58   -1.19   -1.91   -2.69   -3.48   -4.23   -4.87   -5.29   -5.37   -5.02   -4.17   -2.86   -1.16    0.86    3.26    6.20    9.93
+   285.0    0.00   -0.17   -0.58   -1.18   -1.91   -2.69   -3.47   -4.22   -4.86   -5.28   -5.37   -5.03   -4.20   -2.92   -1.25    0.74    3.11    6.05    9.85
+   290.0    0.00   -0.16   -0.58   -1.18   -1.90   -2.68   -3.46   -4.21   -4.85   -5.27   -5.37   -5.03   -4.21   -2.95   -1.33    0.62    2.96    5.90    9.79
+   295.0    0.00   -0.16   -0.57   -1.17   -1.89   -2.67   -3.45   -4.20   -4.84   -5.26   -5.35   -5.02   -4.21   -2.98   -1.39    0.51    2.82    5.78    9.77
+   300.0    0.00   -0.16   -0.57   -1.16   -1.88   -2.65   -3.44   -4.19   -4.83   -5.25   -5.34   -4.99   -4.19   -2.98   -1.44    0.42    2.69    5.68    9.78
+   305.0    0.00   -0.16   -0.56   -1.15   -1.87   -2.64   -3.42   -4.18   -4.82   -5.24   -5.32   -4.97   -4.17   -2.98   -1.47    0.34    2.59    5.61    9.82
+   310.0    0.00   -0.15   -0.56   -1.14   -1.85   -2.62   -3.41   -4.16   -4.81   -5.23   -5.30   -4.94   -4.14   -2.96   -1.49    0.28    2.51    5.57    9.87
+   315.0    0.00   -0.15   -0.55   -1.13   -1.83   -2.60   -3.39   -4.15   -4.80   -5.21   -5.28   -4.91   -4.10   -2.94   -1.49    0.24    2.46    5.55    9.94
+   320.0    0.00   -0.15   -0.54   -1.12   -1.82   -2.58   -3.38   -4.14   -4.79   -5.20   -5.26   -4.88   -4.07   -2.91   -1.49    0.22    2.43    5.55   10.00
+   325.0    0.00   -0.14   -0.53   -1.11   -1.80   -2.57   -3.36   -4.13   -4.78   -5.19   -5.24   -4.86   -4.04   -2.89   -1.49    0.21    2.43    5.57   10.04
+   330.0    0.00   -0.14   -0.53   -1.10   -1.79   -2.55   -3.34   -4.12   -4.77   -5.19   -5.23   -4.84   -4.02   -2.88   -1.48    0.21    2.43    5.60   10.06
+   335.0    0.00   -0.14   -0.52   -1.08   -1.77   -2.53   -3.33   -4.11   -4.77   -5.18   -5.22   -4.83   -4.01   -2.87   -1.48    0.21    2.45    5.62   10.04
+   340.0    0.00   -0.13   -0.51   -1.07   -1.76   -2.52   -3.32   -4.10   -4.76   -5.17   -5.22   -4.82   -4.01   -2.87   -1.48    0.22    2.47    5.64    9.99
+   345.0    0.00   -0.13   -0.50   -1.06   -1.75   -2.51   -3.31   -4.09   -4.75   -5.17   -5.22   -4.82   -4.01   -2.87   -1.48    0.23    2.49    5.65    9.90
+   350.0    0.00   -0.12   -0.49   -1.05   -1.74   -2.50   -3.30   -4.08   -4.74   -5.16   -5.21   -4.83   -4.02   -2.89   -1.49    0.24    2.51    5.65    9.79
+   355.0    0.00   -0.12   -0.49   -1.04   -1.73   -2.49   -3.29   -4.07   -4.73   -5.15   -5.21   -4.83   -4.03   -2.90   -1.50    0.24    2.52    5.63    9.65
+   360.0    0.00   -0.12   -0.48   -1.03   -1.72   -2.49   -3.29   -4.07   -4.73   -5.15   -5.20   -4.83   -4.05   -2.92   -1.50    0.25    2.53    5.61    9.51
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+AOAD/M_TA_NGS   NONE                                        TYPE / SERIAL NO    
+COPIED              TUM                      0    27-JAN-03 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+COPIED FROM AOAD/M_T                                        COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.60     -0.46     91.24                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.24   -0.92   -1.97   -3.28   -4.69   -6.05   -7.19   -7.97   -8.30   -8.14   -7.46   -6.27   -4.54   -2.20    0.87    4.79    9.56   14.88
+     0.0    0.00   -0.28   -1.01   -2.12   -3.49   -4.95   -6.35   -7.52   -8.32   -8.63   -8.43   -7.72   -6.51   -4.78   -2.47    0.58    4.48    9.16   14.25
+     5.0    0.00   -0.28   -1.01   -2.12   -3.48   -4.94   -6.34   -7.50   -8.30   -8.62   -8.42   -7.70   -6.48   -4.75   -2.42    0.63    4.53    9.23   14.33
+    10.0    0.00   -0.28   -1.01   -2.11   -3.46   -4.92   -6.32   -7.48   -8.27   -8.59   -8.39   -7.68   -6.46   -4.72   -2.38    0.69    4.60    9.32   14.45
+    15.0    0.00   -0.27   -1.00   -2.10   -3.45   -4.90   -6.29   -7.46   -8.25   -8.57   -8.37   -7.65   -6.43   -4.68   -2.33    0.75    4.69    9.43   14.61
+    20.0    0.00   -0.27   -0.99   -2.08   -3.43   -4.88   -6.27   -7.43   -8.22   -8.54   -8.35   -7.63   -6.40   -4.64   -2.28    0.83    4.78    9.56   14.80
+    25.0    0.00   -0.27   -0.98   -2.07   -3.41   -4.85   -6.24   -7.39   -8.19   -8.51   -8.32   -7.60   -6.37   -4.60   -2.22    0.90    4.89    9.71   15.02
+    30.0    0.00   -0.26   -0.98   -2.06   -3.39   -4.83   -6.21   -7.36   -8.15   -8.48   -8.29   -7.57   -6.33   -4.55   -2.15    0.99    5.00    9.87   15.25
+    35.0    0.00   -0.26   -0.97   -2.04   -3.37   -4.80   -6.17   -7.32   -8.11   -8.44   -8.25   -7.54   -6.29   -4.50   -2.09    1.08    5.12   10.03   15.48
+    40.0    0.00   -0.26   -0.96   -2.02   -3.34   -4.77   -6.13   -7.28   -8.07   -8.40   -8.21   -7.50   -6.25   -4.45   -2.02    1.17    5.25   10.19   15.70
+    45.0    0.00   -0.25   -0.95   -2.01   -3.32   -4.74   -6.10   -7.24   -8.03   -8.35   -8.17   -7.45   -6.20   -4.40   -1.95    1.26    5.36   10.34   15.89
+    50.0    0.00   -0.25   -0.94   -1.99   -3.29   -4.70   -6.06   -7.19   -7.98   -8.31   -8.12   -7.40   -6.15   -4.34   -1.88    1.34    5.46   10.46   16.05
+    55.0    0.00   -0.24   -0.93   -1.97   -3.27   -4.67   -6.02   -7.15   -7.93   -8.25   -8.07   -7.35   -6.10   -4.28   -1.82    1.41    5.54   10.55   16.15
+    60.0    0.00   -0.24   -0.92   -1.95   -3.24   -4.64   -5.98   -7.10   -7.88   -8.20   -8.01   -7.30   -6.04   -4.23   -1.76    1.47    5.59   10.60   16.20
+    65.0    0.00   -0.24   -0.91   -1.94   -3.22   -4.60   -5.94   -7.06   -7.83   -8.15   -7.96   -7.24   -5.99   -4.18   -1.72    1.50    5.61   10.60   16.20
+    70.0    0.00   -0.23   -0.90   -1.92   -3.19   -4.57   -5.90   -7.02   -7.79   -8.10   -7.91   -7.19   -5.94   -4.14   -1.70    1.50    5.60   10.57   16.14
+    75.0    0.00   -0.23   -0.89   -1.91   -3.17   -4.55   -5.87   -6.98   -7.75   -8.06   -7.87   -7.15   -5.91   -4.12   -1.70    1.48    5.55   10.50   16.04
+    80.0    0.00   -0.23   -0.88   -1.89   -3.16   -4.53   -5.84   -6.95   -7.72   -8.03   -7.83   -7.12   -5.89   -4.11   -1.71    1.44    5.47   10.39   15.91
+    85.0    0.00   -0.22   -0.87   -1.88   -3.14   -4.51   -5.82   -6.93   -7.69   -8.00   -7.81   -7.10   -5.88   -4.13   -1.75    1.36    5.36   10.25   15.74
+    90.0    0.00   -0.22   -0.87   -1.87   -3.13   -4.49   -5.81   -6.92   -7.68   -7.99   -7.80   -7.10   -5.90   -4.16   -1.82    1.27    5.24   10.09   15.56
+    95.0    0.00   -0.22   -0.86   -1.87   -3.12   -4.49   -5.80   -6.91   -7.68   -7.99   -7.81   -7.12   -5.93   -4.21   -1.90    1.16    5.10    9.92   15.37
+   100.0    0.00   -0.21   -0.86   -1.87   -3.12   -4.48   -5.80   -6.91   -7.68   -8.01   -7.84   -7.16   -5.98   -4.29   -1.99    1.04    4.96    9.76   15.18
+   105.0    0.00   -0.21   -0.86   -1.86   -3.12   -4.49   -5.81   -6.93   -7.70   -8.04   -7.88   -7.21   -6.05   -4.37   -2.09    0.93    4.82    9.60   15.00
+   110.0    0.00   -0.21   -0.86   -1.87   -3.13   -4.50   -5.82   -6.95   -7.73   -8.07   -7.93   -7.28   -6.13   -4.47   -2.20    0.81    4.69    9.46   14.84
+   115.0    0.00   -0.21   -0.86   -1.87   -3.13   -4.51   -5.84   -6.97   -7.76   -8.12   -7.99   -7.35   -6.22   -4.56   -2.30    0.71    4.59    9.34   14.71
+   120.0    0.00   -0.21   -0.86   -1.87   -3.15   -4.53   -5.87   -7.00   -7.80   -8.17   -8.05   -7.43   -6.31   -4.66   -2.39    0.62    4.50    9.24   14.60
+   125.0    0.00   -0.21   -0.86   -1.88   -3.16   -4.55   -5.89   -7.04   -7.85   -8.22   -8.12   -7.51   -6.39   -4.74   -2.47    0.55    4.44    9.18   14.52
+   130.0    0.00   -0.21   -0.86   -1.89   -3.17   -4.57   -5.92   -7.07   -7.89   -8.27   -8.18   -7.58   -6.47   -4.81   -2.53    0.51    4.40    9.13   14.47
+   135.0    0.00   -0.21   -0.86   -1.90   -3.19   -4.60   -5.95   -7.11   -7.93   -8.32   -8.23   -7.64   -6.53   -4.87   -2.57    0.47    4.37    9.11   14.44
+   140.0    0.00   -0.21   -0.87   -1.91   -3.21   -4.62   -5.98   -7.14   -7.96   -8.36   -8.28   -7.69   -6.58   -4.91   -2.60    0.46    4.37    9.10   14.43
+   145.0    0.00   -0.21   -0.87   -1.91   -3.22   -4.64   -6.01   -7.17   -8.00   -8.39   -8.31   -7.72   -6.61   -4.93   -2.62    0.45    4.36    9.10   14.44
+   150.0    0.00   -0.21   -0.87   -1.92   -3.24   -4.66   -6.04   -7.20   -8.02   -8.42   -8.33   -7.74   -6.63   -4.94   -2.62    0.45    4.37    9.10   14.45
+   155.0    0.00   -0.21   -0.87   -1.93   -3.25   -4.68   -6.06   -7.22   -8.05   -8.44   -8.35   -7.75   -6.63   -4.94   -2.62    0.46    4.36    9.10   14.46
+   160.0    0.00   -0.21   -0.88   -1.93   -3.26   -4.69   -6.07   -7.24   -8.06   -8.45   -8.35   -7.75   -6.62   -4.94   -2.61    0.45    4.36    9.09   14.46
+   165.0    0.00   -0.21   -0.88   -1.94   -3.27   -4.70   -6.09   -7.25   -8.07   -8.46   -8.35   -7.74   -6.61   -4.93   -2.61    0.45    4.34    9.08   14.46
+   170.0    0.00   -0.21   -0.88   -1.94   -3.27   -4.71   -6.10   -7.26   -8.08   -8.46   -8.35   -7.73   -6.60   -4.92   -2.61    0.43    4.32    9.05   14.44
+   175.0    0.00   -0.21   -0.88   -1.94   -3.27   -4.71   -6.10   -7.27   -8.08   -8.46   -8.34   -7.72   -6.59   -4.91   -2.61    0.42    4.29    9.02   14.41
+   180.0    0.00   -0.21   -0.88   -1.94   -3.27   -4.71   -6.10   -7.27   -8.08   -8.46   -8.34   -7.71   -6.57   -4.90   -2.62    0.40    4.26    9.00   14.38
+   185.0    0.00   -0.21   -0.88   -1.93   -3.26   -4.70   -6.09   -7.26   -8.08   -8.45   -8.33   -7.70   -6.56   -4.90   -2.62    0.38    4.24    8.98   14.35
+   190.0    0.00   -0.21   -0.87   -1.93   -3.25   -4.69   -6.08   -7.25   -8.07   -8.44   -8.32   -7.69   -6.55   -4.89   -2.62    0.38    4.24    8.98   14.33
+   195.0    0.00   -0.21   -0.87   -1.92   -3.24   -4.68   -6.07   -7.24   -8.06   -8.43   -8.30   -7.67   -6.54   -4.88   -2.61    0.39    4.26    9.00   14.33
+   200.0    0.00   -0.21   -0.87   -1.92   -3.23   -4.67   -6.05   -7.22   -8.04   -8.41   -8.29   -7.65   -6.52   -4.86   -2.59    0.42    4.30    9.06   14.37
+   205.0    0.00   -0.21   -0.87   -1.91   -3.22   -4.65   -6.03   -7.20   -8.02   -8.39   -8.26   -7.62   -6.48   -4.82   -2.55    0.47    4.38    9.15   14.44
+   210.0    0.00   -0.21   -0.87   -1.90   -3.21   -4.63   -6.01   -7.18   -8.00   -8.36   -8.23   -7.58   -6.44   -4.77   -2.49    0.55    4.48    9.28   14.55
+   215.0    0.00   -0.21   -0.87   -1.90   -3.20   -4.61   -5.99   -7.15   -7.97   -8.33   -8.18   -7.53   -6.38   -4.70   -2.41    0.65    4.61    9.43   14.69
+   220.0    0.00   -0.21   -0.87   -1.89   -3.19   -4.60   -5.97   -7.13   -7.93   -8.28   -8.13   -7.47   -6.31   -4.62   -2.31    0.78    4.77    9.61   14.87
+   225.0    0.00   -0.21   -0.87   -1.89   -3.18   -4.58   -5.94   -7.10   -7.89   -8.24   -8.07   -7.40   -6.22   -4.52   -2.19    0.91    4.93    9.80   15.07
+   230.0    0.00   -0.21   -0.87   -1.89   -3.17   -4.57   -5.92   -7.07   -7.85   -8.18   -8.01   -7.32   -6.13   -4.41   -2.07    1.06    5.10    9.98   15.28
+   235.0    0.00   -0.22   -0.87   -1.89   -3.16   -4.56   -5.90   -7.03   -7.81   -8.13   -7.94   -7.24   -6.03   -4.30   -1.94    1.20    5.25   10.15   15.47
+   240.0    0.00   -0.22   -0.87   -1.89   -3.16   -4.55   -5.88   -7.01   -7.77   -8.07   -7.87   -7.16   -5.94   -4.19   -1.82    1.33    5.39   10.29   15.63
+   245.0    0.00   -0.22   -0.87   -1.89   -3.16   -4.54   -5.87   -6.98   -7.73   -8.02   -7.81   -7.08   -5.86   -4.10   -1.71    1.44    5.49   10.39   15.74
+   250.0    0.00   -0.22   -0.88   -1.90   -3.17   -4.54   -5.86   -6.96   -7.70   -7.98   -7.76   -7.02   -5.79   -4.01   -1.62    1.53    5.56   10.44   15.79
+   255.0    0.00   -0.23   -0.88   -1.90   -3.17   -4.54   -5.86   -6.95   -7.68   -7.95   -7.72   -6.98   -5.73   -3.96   -1.56    1.58    5.58   10.43   15.78
+   260.0    0.00   -0.23   -0.89   -1.91   -3.18   -4.55   -5.86   -6.94   -7.66   -7.93   -7.70   -6.96   -5.71   -3.92   -1.53    1.59    5.57   10.37   15.71
+   265.0    0.00   -0.23   -0.90   -1.92   -3.19   -4.56   -5.86   -6.94   -7.66   -7.93   -7.70   -6.96   -5.70   -3.92   -1.53    1.57    5.51   10.26   15.58
+   270.0    0.00   -0.24   -0.91   -1.94   -3.21   -4.58   -5.88   -6.95   -7.67   -7.94   -7.71   -6.98   -5.73   -3.94   -1.56    1.52    5.41   10.11   15.40
+   275.0    0.00   -0.24   -0.92   -1.95   -3.23   -4.60   -5.90   -6.97   -7.69   -7.96   -7.74   -7.02   -5.77   -4.00   -1.62    1.44    5.28    9.93   15.20
+   280.0    0.00   -0.25   -0.93   -1.97   -3.25   -4.62   -5.93   -7.00   -7.72   -8.00   -7.79   -7.07   -5.84   -4.07   -1.71    1.33    5.14    9.74   14.98
+   285.0    0.00   -0.25   -0.94   -1.98   -3.27   -4.65   -5.96   -7.04   -7.77   -8.06   -7.86   -7.15   -5.92   -4.16   -1.81    1.21    4.99    9.55   14.77
+   290.0    0.00   -0.25   -0.95   -2.00   -3.30   -4.69   -6.00   -7.09   -7.82   -8.12   -7.93   -7.23   -6.01   -4.26   -1.92    1.08    4.84    9.38   14.58
+   295.0    0.00   -0.26   -0.96   -2.02   -3.33   -4.72   -6.04   -7.14   -7.88   -8.19   -8.00   -7.31   -6.11   -4.36   -2.04    0.96    4.70    9.23   14.43
+   300.0    0.00   -0.26   -0.97   -2.04   -3.35   -4.76   -6.09   -7.19   -7.95   -8.26   -8.08   -7.40   -6.20   -4.47   -2.15    0.83    4.58    9.10   14.31
+   305.0    0.00   -0.26   -0.98   -2.05   -3.38   -4.79   -6.14   -7.25   -8.01   -8.33   -8.16   -7.48   -6.29   -4.57   -2.26    0.73    4.47    9.01   14.22
+   310.0    0.00   -0.27   -0.98   -2.07   -3.40   -4.83   -6.18   -7.31   -8.08   -8.40   -8.23   -7.56   -6.37   -4.66   -2.35    0.63    4.40    8.96   14.17
+   315.0    0.00   -0.27   -0.99   -2.08   -3.43   -4.86   -6.23   -7.36   -8.14   -8.47   -8.30   -7.62   -6.44   -4.73   -2.43    0.56    4.34    8.93   14.15
+   320.0    0.00   -0.27   -1.00   -2.10   -3.45   -4.89   -6.27   -7.41   -8.19   -8.52   -8.35   -7.67   -6.49   -4.79   -2.49    0.50    4.31    8.92   14.15
+   325.0    0.00   -0.28   -1.01   -2.11   -3.46   -4.92   -6.30   -7.45   -8.24   -8.57   -8.39   -7.71   -6.53   -4.83   -2.54    0.47    4.29    8.93   14.15
+   330.0    0.00   -0.28   -1.01   -2.12   -3.48   -4.94   -6.33   -7.49   -8.28   -8.61   -8.43   -7.74   -6.56   -4.86   -2.56    0.45    4.29    8.95   14.16
+   335.0    0.00   -0.28   -1.02   -2.13   -3.49   -4.95   -6.35   -7.51   -8.31   -8.63   -8.45   -7.76   -6.57   -4.87   -2.57    0.45    4.31    8.98   14.16
+   340.0    0.00   -0.28   -1.02   -2.13   -3.50   -4.96   -6.36   -7.53   -8.33   -8.65   -8.46   -7.77   -6.57   -4.87   -2.57    0.46    4.33    9.01   14.16
+   345.0    0.00   -0.28   -1.02   -2.13   -3.50   -4.97   -6.37   -7.54   -8.33   -8.66   -8.46   -7.76   -6.57   -4.86   -2.56    0.48    4.36    9.04   14.16
+   350.0    0.00   -0.28   -1.02   -2.13   -3.50   -4.97   -6.37   -7.54   -8.34   -8.66   -8.46   -7.75   -6.55   -4.84   -2.53    0.51    4.39    9.07   14.17
+   355.0    0.00   -0.28   -1.02   -2.13   -3.49   -4.96   -6.37   -7.54   -8.33   -8.65   -8.45   -7.74   -6.53   -4.81   -2.50    0.54    4.43    9.11   14.20
+   360.0    0.00   -0.28   -1.01   -2.12   -3.49   -4.95   -6.35   -7.52   -8.32   -8.63   -8.43   -7.72   -6.51   -4.78   -2.47    0.58    4.48    9.16   14.25
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.10     -0.62    120.06                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.13   -0.52   -1.10   -1.82   -2.62   -3.43   -4.21   -4.85   -5.23   -5.25   -4.83   -3.98   -2.75   -1.23    0.59    2.86    5.83    9.66
+     0.0    0.00   -0.12   -0.48   -1.03   -1.72   -2.49   -3.29   -4.07   -4.73   -5.15   -5.20   -4.83   -4.05   -2.92   -1.50    0.25    2.53    5.61    9.51
+     5.0    0.00   -0.11   -0.47   -1.03   -1.71   -2.48   -3.29   -4.06   -4.72   -5.13   -5.20   -4.83   -4.05   -2.93   -1.51    0.25    2.54    5.58    9.37
+    10.0    0.00   -0.11   -0.47   -1.02   -1.71   -2.48   -3.28   -4.05   -4.71   -5.12   -5.19   -4.83   -4.06   -2.93   -1.51    0.26    2.55    5.55    9.26
+    15.0    0.00   -0.11   -0.46   -1.01   -1.71   -2.48   -3.28   -4.05   -4.70   -5.11   -5.17   -4.82   -4.05   -2.93   -1.50    0.27    2.55    5.53    9.17
+    20.0    0.00   -0.10   -0.45   -1.01   -1.70   -2.48   -3.28   -4.04   -4.69   -5.10   -5.16   -4.81   -4.04   -2.92   -1.48    0.29    2.57    5.52    9.12
+    25.0    0.00   -0.10   -0.45   -1.00   -1.70   -2.47   -3.28   -4.04   -4.68   -5.08   -5.14   -4.79   -4.02   -2.89   -1.45    0.32    2.59    5.52    9.12
+    30.0    0.00   -0.10   -0.44   -1.00   -1.69   -2.47   -3.27   -4.03   -4.67   -5.07   -5.13   -4.77   -3.99   -2.86   -1.41    0.36    2.61    5.53    9.16
+    35.0    0.00   -0.09   -0.44   -0.99   -1.69   -2.47   -3.27   -4.03   -4.66   -5.06   -5.11   -4.75   -3.96   -2.81   -1.36    0.41    2.65    5.57    9.23
+    40.0    0.00   -0.09   -0.44   -0.99   -1.68   -2.46   -3.27   -4.03   -4.66   -5.05   -5.10   -4.72   -3.92   -2.76   -1.30    0.47    2.69    5.61    9.34
+    45.0    0.00   -0.09   -0.43   -0.98   -1.68   -2.46   -3.26   -4.02   -4.66   -5.05   -5.09   -4.70   -3.88   -2.70   -1.23    0.53    2.74    5.66    9.47
+    50.0    0.00   -0.09   -0.43   -0.98   -1.67   -2.46   -3.26   -4.03   -4.66   -5.05   -5.08   -4.68   -3.84   -2.65   -1.17    0.59    2.79    5.72    9.60
+    55.0    0.00   -0.09   -0.43   -0.98   -1.67   -2.45   -3.26   -4.03   -4.66   -5.05   -5.07   -4.66   -3.81   -2.59   -1.11    0.65    2.84    5.77    9.73
+    60.0    0.00   -0.09   -0.43   -0.98   -1.67   -2.46   -3.27   -4.04   -4.67   -5.06   -5.07   -4.64   -3.77   -2.55   -1.05    0.70    2.88    5.81    9.83
+    65.0    0.00   -0.09   -0.43   -0.98   -1.67   -2.46   -3.27   -4.05   -4.69   -5.07   -5.07   -4.63   -3.75   -2.51   -1.02    0.74    2.91    5.84    9.91
+    70.0    0.00   -0.09   -0.43   -0.98   -1.68   -2.47   -3.29   -4.06   -4.70   -5.08   -5.08   -4.63   -3.74   -2.49   -0.99    0.75    2.92    5.85    9.95
+    75.0    0.00   -0.09   -0.43   -0.99   -1.69   -2.48   -3.30   -4.08   -4.72   -5.10   -5.09   -4.63   -3.74   -2.49   -0.99    0.76    2.92    5.85    9.96
+    80.0    0.00   -0.09   -0.44   -0.99   -1.70   -2.50   -3.32   -4.11   -4.74   -5.12   -5.11   -4.64   -3.74   -2.50   -1.00    0.74    2.90    5.82    9.93
+    85.0    0.00   -0.10   -0.44   -1.00   -1.71   -2.52   -3.35   -4.13   -4.77   -5.14   -5.12   -4.66   -3.76   -2.52   -1.03    0.71    2.86    5.78    9.86
+    90.0    0.00   -0.10   -0.45   -1.02   -1.73   -2.54   -3.37   -4.16   -4.79   -5.16   -5.14   -4.68   -3.79   -2.56   -1.07    0.66    2.82    5.73    9.78
+    95.0    0.00   -0.10   -0.46   -1.03   -1.75   -2.57   -3.40   -4.19   -4.82   -5.18   -5.16   -4.70   -3.82   -2.60   -1.12    0.61    2.77    5.67    9.68
+   100.0    0.00   -0.10   -0.47   -1.05   -1.78   -2.59   -3.43   -4.22   -4.84   -5.20   -5.18   -4.73   -3.86   -2.65   -1.18    0.56    2.72    5.61    9.58
+   105.0    0.00   -0.11   -0.48   -1.06   -1.80   -2.62   -3.46   -4.24   -4.87   -5.22   -5.20   -4.75   -3.90   -2.70   -1.23    0.52    2.68    5.56    9.48
+   110.0    0.00   -0.11   -0.49   -1.08   -1.82   -2.65   -3.49   -4.27   -4.89   -5.24   -5.22   -4.78   -3.93   -2.74   -1.27    0.48    2.66    5.53    9.40
+   115.0    0.00   -0.12   -0.50   -1.10   -1.85   -2.68   -3.52   -4.29   -4.90   -5.25   -5.24   -4.80   -3.96   -2.77   -1.30    0.46    2.65    5.51    9.33
+   120.0    0.00   -0.12   -0.51   -1.11   -1.87   -2.70   -3.54   -4.31   -4.92   -5.26   -5.25   -4.83   -3.99   -2.79   -1.31    0.46    2.66    5.51    9.29
+   125.0    0.00   -0.12   -0.52   -1.13   -1.89   -2.72   -3.56   -4.32   -4.93   -5.27   -5.26   -4.84   -4.00   -2.80   -1.31    0.48    2.69    5.53    9.26
+   130.0    0.00   -0.13   -0.52   -1.14   -1.91   -2.74   -3.57   -4.33   -4.93   -5.28   -5.28   -4.86   -4.01   -2.80   -1.29    0.52    2.73    5.57    9.26
+   135.0    0.00   -0.13   -0.53   -1.15   -1.92   -2.75   -3.58   -4.34   -4.94   -5.29   -5.29   -4.87   -4.02   -2.79   -1.26    0.57    2.79    5.61    9.27
+   140.0    0.00   -0.13   -0.54   -1.16   -1.93   -2.76   -3.59   -4.34   -4.94   -5.29   -5.30   -4.87   -4.02   -2.78   -1.22    0.62    2.85    5.66    9.28
+   145.0    0.00   -0.14   -0.55   -1.17   -1.94   -2.77   -3.59   -4.34   -4.95   -5.30   -5.30   -4.88   -4.01   -2.75   -1.18    0.67    2.91    5.71    9.29
+   150.0    0.00   -0.14   -0.55   -1.18   -1.95   -2.77   -3.59   -4.34   -4.95   -5.31   -5.31   -4.89   -4.01   -2.74   -1.15    0.72    2.95    5.75    9.30
+   155.0    0.00   -0.14   -0.56   -1.18   -1.95   -2.77   -3.59   -4.34   -4.95   -5.32   -5.32   -4.89   -4.01   -2.72   -1.12    0.75    2.99    5.78    9.30
+   160.0    0.00   -0.15   -0.56   -1.18   -1.95   -2.77   -3.59   -4.34   -4.96   -5.33   -5.34   -4.90   -4.01   -2.72   -1.11    0.76    3.00    5.79    9.28
+   165.0    0.00   -0.15   -0.56   -1.18   -1.94   -2.76   -3.58   -4.34   -4.96   -5.34   -5.35   -4.91   -4.01   -2.72   -1.12    0.76    3.00    5.79    9.26
+   170.0    0.00   -0.15   -0.56   -1.18   -1.94   -2.75   -3.57   -4.34   -4.97   -5.35   -5.36   -4.92   -4.02   -2.73   -1.14    0.73    2.97    5.77    9.23
+   175.0    0.00   -0.15   -0.57   -1.18   -1.93   -2.74   -3.57   -4.34   -4.98   -5.36   -5.37   -4.93   -4.03   -2.75   -1.17    0.69    2.93    5.74    9.20
+   180.0    0.00   -0.16   -0.57   -1.18   -1.92   -2.74   -3.56   -4.34   -4.98   -5.37   -5.38   -4.94   -4.04   -2.77   -1.21    0.63    2.88    5.71    9.17
+   185.0    0.00   -0.16   -0.57   -1.17   -1.91   -2.73   -3.56   -4.35   -4.99   -5.38   -5.38   -4.94   -4.05   -2.79   -1.25    0.58    2.83    5.69    9.16
+   190.0    0.00   -0.16   -0.57   -1.17   -1.90   -2.72   -3.56   -4.35   -5.00   -5.39   -5.39   -4.93   -4.05   -2.81   -1.29    0.53    2.79    5.68    9.18
+   195.0    0.00   -0.16   -0.56   -1.16   -1.90   -2.71   -3.55   -4.35   -5.01   -5.39   -5.38   -4.92   -4.04   -2.81   -1.31    0.49    2.76    5.69    9.22
+   200.0    0.00   -0.16   -0.56   -1.16   -1.89   -2.70   -3.55   -4.35   -5.01   -5.39   -5.37   -4.91   -4.02   -2.80   -1.32    0.48    2.76    5.72    9.30
+   205.0    0.00   -0.16   -0.56   -1.16   -1.88   -2.70   -3.55   -4.35   -5.01   -5.39   -5.36   -4.88   -3.99   -2.78   -1.30    0.49    2.79    5.79    9.40
+   210.0    0.00   -0.16   -0.56   -1.15   -1.88   -2.69   -3.54   -4.35   -5.01   -5.38   -5.34   -4.86   -3.96   -2.74   -1.27    0.53    2.85    5.88    9.53
+   215.0    0.00   -0.17   -0.56   -1.15   -1.88   -2.69   -3.54   -4.35   -5.01   -5.37   -5.32   -4.83   -3.92   -2.70   -1.21    0.60    2.93    5.99    9.69
+   220.0    0.00   -0.17   -0.57   -1.15   -1.87   -2.69   -3.54   -4.35   -5.00   -5.36   -5.31   -4.80   -3.88   -2.64   -1.14    0.69    3.04    6.13    9.85
+   225.0    0.00   -0.17   -0.57   -1.15   -1.87   -2.69   -3.54   -4.34   -4.99   -5.35   -5.29   -4.78   -3.85   -2.59   -1.06    0.79    3.17    6.27   10.02
+   230.0    0.00   -0.17   -0.57   -1.15   -1.88   -2.69   -3.53   -4.33   -4.98   -5.34   -5.28   -4.76   -3.82   -2.54   -0.98    0.90    3.30    6.41   10.17
+   235.0    0.00   -0.17   -0.57   -1.16   -1.88   -2.69   -3.53   -4.33   -4.97   -5.32   -5.27   -4.76   -3.81   -2.50   -0.91    1.01    3.43    6.54   10.30
+   240.0    0.00   -0.17   -0.57   -1.16   -1.88   -2.69   -3.52   -4.32   -4.96   -5.32   -5.27   -4.76   -3.81   -2.48   -0.85    1.11    3.55    6.65   10.40
+   245.0    0.00   -0.17   -0.58   -1.17   -1.89   -2.69   -3.52   -4.31   -4.95   -5.31   -5.28   -4.78   -3.82   -2.48   -0.82    1.18    3.64    6.72   10.45
+   250.0    0.00   -0.17   -0.58   -1.17   -1.89   -2.69   -3.52   -4.30   -4.93   -5.31   -5.29   -4.81   -3.86   -2.50   -0.80    1.23    3.69    6.76   10.46
+   255.0    0.00   -0.17   -0.58   -1.18   -1.90   -2.69   -3.51   -4.29   -4.92   -5.30   -5.30   -4.84   -3.90   -2.54   -0.82    1.24    3.71    6.75   10.43
+   260.0    0.00   -0.17   -0.58   -1.18   -1.90   -2.70   -3.51   -4.27   -4.91   -5.30   -5.32   -4.88   -3.96   -2.59   -0.86    1.22    3.69    6.70   10.36
+   265.0    0.00   -0.17   -0.58   -1.18   -1.91   -2.70   -3.50   -4.26   -4.90   -5.30   -5.34   -4.92   -4.02   -2.66   -0.92    1.16    3.63    6.61   10.26
+   270.0    0.00   -0.17   -0.58   -1.19   -1.91   -2.70   -3.50   -4.25   -4.89   -5.30   -5.36   -4.96   -4.08   -2.73   -0.99    1.08    3.53    6.49   10.15
+   275.0    0.00   -0.17   -0.58   -1.19   -1.91   -2.70   -3.49   -4.24   -4.88   -5.29   -5.37   -4.99   -4.13   -2.80   -1.08    0.98    3.41    6.35   10.04
+   280.0    0.00   -0.17   -0.58   -1.19   -1.91   -2.69   -3.48   -4.23   -4.87   -5.29   -5.37   -5.02   -4.17   -2.86   -1.16    0.86    3.26    6.20    9.93
+   285.0    0.00   -0.17   -0.58   -1.18   -1.91   -2.69   -3.47   -4.22   -4.86   -5.28   -5.37   -5.03   -4.20   -2.92   -1.25    0.74    3.11    6.05    9.85
+   290.0    0.00   -0.16   -0.58   -1.18   -1.90   -2.68   -3.46   -4.21   -4.85   -5.27   -5.37   -5.03   -4.21   -2.95   -1.33    0.62    2.96    5.90    9.79
+   295.0    0.00   -0.16   -0.57   -1.17   -1.89   -2.67   -3.45   -4.20   -4.84   -5.26   -5.35   -5.02   -4.21   -2.98   -1.39    0.51    2.82    5.78    9.77
+   300.0    0.00   -0.16   -0.57   -1.16   -1.88   -2.65   -3.44   -4.19   -4.83   -5.25   -5.34   -4.99   -4.19   -2.98   -1.44    0.42    2.69    5.68    9.78
+   305.0    0.00   -0.16   -0.56   -1.15   -1.87   -2.64   -3.42   -4.18   -4.82   -5.24   -5.32   -4.97   -4.17   -2.98   -1.47    0.34    2.59    5.61    9.82
+   310.0    0.00   -0.15   -0.56   -1.14   -1.85   -2.62   -3.41   -4.16   -4.81   -5.23   -5.30   -4.94   -4.14   -2.96   -1.49    0.28    2.51    5.57    9.87
+   315.0    0.00   -0.15   -0.55   -1.13   -1.83   -2.60   -3.39   -4.15   -4.80   -5.21   -5.28   -4.91   -4.10   -2.94   -1.49    0.24    2.46    5.55    9.94
+   320.0    0.00   -0.15   -0.54   -1.12   -1.82   -2.58   -3.38   -4.14   -4.79   -5.20   -5.26   -4.88   -4.07   -2.91   -1.49    0.22    2.43    5.55   10.00
+   325.0    0.00   -0.14   -0.53   -1.11   -1.80   -2.57   -3.36   -4.13   -4.78   -5.19   -5.24   -4.86   -4.04   -2.89   -1.49    0.21    2.43    5.57   10.04
+   330.0    0.00   -0.14   -0.53   -1.10   -1.79   -2.55   -3.34   -4.12   -4.77   -5.19   -5.23   -4.84   -4.02   -2.88   -1.48    0.21    2.43    5.60   10.06
+   335.0    0.00   -0.14   -0.52   -1.08   -1.77   -2.53   -3.33   -4.11   -4.77   -5.18   -5.22   -4.83   -4.01   -2.87   -1.48    0.21    2.45    5.62   10.04
+   340.0    0.00   -0.13   -0.51   -1.07   -1.76   -2.52   -3.32   -4.10   -4.76   -5.17   -5.22   -4.82   -4.01   -2.87   -1.48    0.22    2.47    5.64    9.99
+   345.0    0.00   -0.13   -0.50   -1.06   -1.75   -2.51   -3.31   -4.09   -4.75   -5.17   -5.22   -4.82   -4.01   -2.87   -1.48    0.23    2.49    5.65    9.90
+   350.0    0.00   -0.12   -0.49   -1.05   -1.74   -2.50   -3.30   -4.08   -4.74   -5.16   -5.21   -4.83   -4.02   -2.89   -1.49    0.24    2.51    5.65    9.79
+   355.0    0.00   -0.12   -0.49   -1.04   -1.73   -2.49   -3.29   -4.07   -4.73   -5.15   -5.21   -4.83   -4.03   -2.90   -1.50    0.24    2.52    5.63    9.65
+   360.0    0.00   -0.12   -0.48   -1.03   -1.72   -2.49   -3.29   -4.07   -4.73   -5.15   -5.20   -4.83   -4.05   -2.92   -1.50    0.25    2.53    5.61    9.51
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH700228A      NONE                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               7    11-AUG-06 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+     -2.38     -1.08     58.50                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.23   -0.84   -1.67   -2.53   -3.30   -3.96   -4.58   -5.17   -5.66   -5.87   -5.58   -4.66   -3.18   -1.31    0.71    2.81    5.19    8.25
+     0.0    0.00    0.03   -0.29   -0.81   -1.37   -1.88   -2.38   -2.94   -3.61   -4.29   -4.75   -4.73   -4.06   -2.79   -1.14    0.68    2.65    5.13    8.69
+     5.0    0.00    0.03   -0.29   -0.80   -1.35   -1.86   -2.36   -2.92   -3.59   -4.26   -4.72   -4.69   -4.02   -2.73   -1.04    0.85    2.92    5.53    9.23
+    10.0    0.00    0.02   -0.30   -0.81   -1.36   -1.87   -2.36   -2.93   -3.59   -4.26   -4.71   -4.67   -3.98   -2.67   -0.94    1.00    3.17    5.87    9.67
+    15.0    0.00    0.01   -0.31   -0.82   -1.38   -1.90   -2.40   -2.97   -3.63   -4.28   -4.70   -4.64   -3.93   -2.60   -0.83    1.17    3.39    6.16   10.00
+    20.0    0.00    0.00   -0.33   -0.86   -1.42   -1.95   -2.46   -3.03   -3.68   -4.30   -4.70   -4.60   -3.86   -2.50   -0.70    1.35    3.63    6.43   10.25
+    25.0    0.00   -0.01   -0.36   -0.90   -1.48   -2.02   -2.55   -3.11   -3.74   -4.33   -4.68   -4.54   -3.76   -2.36   -0.52    1.56    3.88    6.69   10.43
+    30.0    0.00   -0.03   -0.40   -0.96   -1.56   -2.12   -2.65   -3.21   -3.81   -4.36   -4.65   -4.46   -3.63   -2.19   -0.31    1.81    4.15    6.94   10.57
+    35.0    0.00   -0.05   -0.44   -1.02   -1.65   -2.23   -2.77   -3.32   -3.89   -4.39   -4.62   -4.36   -3.48   -1.99   -0.07    2.09    4.45    7.19   10.68
+    40.0    0.00   -0.07   -0.49   -1.10   -1.76   -2.36   -2.92   -3.45   -3.99   -4.43   -4.59   -4.26   -3.32   -1.79    0.18    2.37    4.74    7.44   10.77
+    45.0    0.00   -0.09   -0.54   -1.19   -1.88   -2.51   -3.07   -3.60   -4.10   -4.48   -4.57   -4.18   -3.18   -1.59    0.41    2.65    5.02    7.67   10.84
+    50.0    0.00   -0.12   -0.60   -1.29   -2.02   -2.68   -3.25   -3.77   -4.23   -4.56   -4.58   -4.13   -3.07   -1.43    0.61    2.87    5.26    7.85   10.89
+    55.0    0.00   -0.14   -0.66   -1.39   -2.16   -2.86   -3.45   -3.96   -4.39   -4.67   -4.64   -4.12   -3.01   -1.34    0.74    3.03    5.42    7.97   10.88
+    60.0    0.00   -0.17   -0.72   -1.50   -2.31   -3.05   -3.66   -4.17   -4.59   -4.83   -4.75   -4.18   -3.03   -1.33    0.78    3.09    5.49    8.01   10.81
+    65.0    0.00   -0.20   -0.79   -1.61   -2.48   -3.25   -3.89   -4.42   -4.82   -5.03   -4.92   -4.32   -3.14   -1.42    0.71    3.03    5.43    7.93   10.67
+    70.0    0.00   -0.23   -0.86   -1.73   -2.64   -3.46   -4.14   -4.68   -5.09   -5.29   -5.16   -4.55   -3.35   -1.62    0.51    2.84    5.24    7.73   10.44
+    75.0    0.00   -0.25   -0.92   -1.84   -2.81   -3.68   -4.40   -4.97   -5.39   -5.60   -5.47   -4.85   -3.66   -1.92    0.20    2.53    4.93    7.42   10.13
+    80.0    0.00   -0.28   -0.99   -1.95   -2.97   -3.89   -4.66   -5.27   -5.72   -5.95   -5.84   -5.23   -4.05   -2.33   -0.22    2.09    4.49    7.00    9.73
+    85.0    0.00   -0.31   -1.05   -2.06   -3.13   -4.10   -4.92   -5.57   -6.06   -6.33   -6.25   -5.67   -4.52   -2.83   -0.74    1.56    3.96    6.49    9.27
+    90.0    0.00   -0.33   -1.11   -2.16   -3.27   -4.30   -5.16   -5.87   -6.41   -6.73   -6.69   -6.15   -5.04   -3.38   -1.32    0.95    3.35    5.92    8.77
+    95.0    0.00   -0.35   -1.16   -2.25   -3.41   -4.47   -5.39   -6.15   -6.75   -7.12   -7.13   -6.64   -5.57   -3.95   -1.93    0.32    2.72    5.32    8.25
+   100.0    0.00   -0.38   -1.21   -2.33   -3.52   -4.63   -5.59   -6.40   -7.05   -7.48   -7.55   -7.12   -6.10   -4.52   -2.54   -0.31    2.09    4.73    7.73
+   105.0    0.00   -0.40   -1.25   -2.40   -3.61   -4.75   -5.75   -6.60   -7.31   -7.80   -7.93   -7.55   -6.57   -5.05   -3.10   -0.91    1.49    4.16    7.22
+   110.0    0.00   -0.41   -1.29   -2.45   -3.68   -4.84   -5.86   -6.76   -7.51   -8.05   -8.23   -7.91   -6.98   -5.49   -3.59   -1.43    0.96    3.65    6.75
+   115.0    0.00   -0.43   -1.32   -2.48   -3.72   -4.89   -5.93   -6.85   -7.63   -8.22   -8.45   -8.17   -7.28   -5.83   -3.97   -1.84    0.52    3.21    6.32
+   120.0    0.00   -0.44   -1.33   -2.50   -3.74   -4.90   -5.94   -6.87   -7.68   -8.30   -8.56   -8.31   -7.46   -6.05   -4.22   -2.14    0.18    2.84    5.93
+   125.0    0.00   -0.45   -1.34   -2.50   -3.73   -4.87   -5.90   -6.82   -7.64   -8.28   -8.56   -8.33   -7.50   -6.11   -4.33   -2.30   -0.04    2.56    5.60
+   130.0    0.00   -0.46   -1.35   -2.49   -3.69   -4.80   -5.80   -6.71   -7.52   -8.16   -8.45   -8.23   -7.40   -6.03   -4.28   -2.31   -0.13    2.38    5.33
+   135.0    0.00   -0.46   -1.34   -2.46   -3.62   -4.70   -5.66   -6.53   -7.32   -7.95   -8.23   -8.00   -7.16   -5.80   -4.08   -2.18   -0.10    2.31    5.14
+   140.0    0.00   -0.46   -1.33   -2.42   -3.54   -4.56   -5.47   -6.30   -7.05   -7.65   -7.91   -7.66   -6.80   -5.43   -3.74   -1.91    0.06    2.34    5.05
+   145.0    0.00   -0.46   -1.32   -2.37   -3.44   -4.40   -5.24   -6.01   -6.73   -7.29   -7.51   -7.22   -6.34   -4.96   -3.29   -1.52    0.34    2.48    5.08
+   150.0    0.00   -0.46   -1.29   -2.31   -3.32   -4.21   -4.99   -5.70   -6.36   -6.87   -7.06   -6.73   -5.81   -4.40   -2.74   -1.03    0.73    2.75    5.26
+   155.0    0.00   -0.46   -1.27   -2.24   -3.19   -4.02   -4.72   -5.36   -5.96   -6.43   -6.57   -6.20   -5.23   -3.80   -2.13   -0.46    1.22    3.15    5.60
+   160.0    0.00   -0.45   -1.24   -2.17   -3.06   -3.82   -4.44   -5.02   -5.56   -5.98   -6.08   -5.66   -4.65   -3.18   -1.49    0.17    1.80    3.67    6.12
+   165.0    0.00   -0.44   -1.21   -2.10   -2.94   -3.62   -4.18   -4.68   -5.17   -5.54   -5.61   -5.15   -4.10   -2.58   -0.86    0.81    2.43    4.29    6.80
+   170.0    0.00   -0.44   -1.18   -2.03   -2.81   -3.43   -3.92   -4.37   -4.80   -5.14   -5.17   -4.69   -3.61   -2.04   -0.27    1.45    3.10    5.01    7.64
+   175.0    0.00   -0.43   -1.15   -1.97   -2.70   -3.27   -3.70   -4.09   -4.48   -4.79   -4.80   -4.30   -3.19   -1.58    0.25    2.04    3.78    5.78    8.58
+   180.0    0.00   -0.42   -1.12   -1.91   -2.60   -3.12   -3.50   -3.85   -4.21   -4.50   -4.51   -4.00   -2.87   -1.21    0.69    2.58    4.42    6.56    9.56
+   185.0    0.00   -0.41   -1.09   -1.85   -2.52   -3.01   -3.35   -3.66   -4.00   -4.28   -4.29   -3.79   -2.65   -0.95    1.03    3.02    5.00    7.30   10.52
+   190.0    0.00   -0.39   -1.06   -1.81   -2.46   -2.92   -3.24   -3.53   -3.85   -4.13   -4.15   -3.67   -2.53   -0.80    1.25    3.37    5.49    7.94   11.39
+   195.0    0.00   -0.38   -1.04   -1.78   -2.42   -2.87   -3.18   -3.45   -3.77   -4.06   -4.10   -3.63   -2.50   -0.75    1.38    3.60    5.85    8.46   12.07
+   200.0    0.00   -0.37   -1.02   -1.75   -2.39   -2.85   -3.16   -3.43   -3.75   -4.05   -4.11   -3.67   -2.55   -0.78    1.40    3.72    6.08    8.80   12.53
+   205.0    0.00   -0.36   -1.00   -1.74   -2.39   -2.86   -3.18   -3.47   -3.79   -4.10   -4.18   -3.76   -2.65   -0.88    1.35    3.74    6.18    8.95   12.72
+   210.0    0.00   -0.35   -0.99   -1.73   -2.40   -2.89   -3.24   -3.54   -3.88   -4.20   -4.30   -3.89   -2.80   -1.02    1.23    3.66    6.13    8.90   12.64
+   215.0    0.00   -0.34   -0.98   -1.74   -2.43   -2.95   -3.33   -3.66   -4.01   -4.34   -4.44   -4.05   -2.97   -1.19    1.06    3.50    5.96    8.67   12.29
+   220.0    0.00   -0.33   -0.97   -1.74   -2.47   -3.03   -3.45   -3.81   -4.18   -4.51   -4.61   -4.23   -3.15   -1.38    0.87    3.28    5.69    8.30   11.73
+   225.0    0.00   -0.31   -0.96   -1.76   -2.52   -3.13   -3.59   -3.98   -4.37   -4.70   -4.80   -4.41   -3.33   -1.57    0.65    3.02    5.36    7.82   11.02
+   230.0    0.00   -0.30   -0.95   -1.77   -2.57   -3.23   -3.74   -4.16   -4.57   -4.90   -4.99   -4.59   -3.52   -1.77    0.42    2.74    4.98    7.28   10.24
+   235.0    0.00   -0.29   -0.94   -1.79   -2.63   -3.33   -3.89   -4.35   -4.78   -5.11   -5.19   -4.78   -3.71   -1.98    0.18    2.44    4.58    6.74    9.47
+   240.0    0.00   -0.28   -0.94   -1.80   -2.68   -3.44   -4.04   -4.55   -4.99   -5.33   -5.40   -4.98   -3.91   -2.20   -0.08    2.13    4.19    6.23    8.77
+   245.0    0.00   -0.27   -0.93   -1.82   -2.73   -3.53   -4.18   -4.73   -5.20   -5.55   -5.63   -5.20   -4.13   -2.44   -0.35    1.80    3.82    5.78    8.20
+   250.0    0.00   -0.25   -0.92   -1.82   -2.77   -3.62   -4.32   -4.90   -5.41   -5.78   -5.86   -5.44   -4.39   -2.72   -0.66    1.47    3.47    5.41    7.78
+   255.0    0.00   -0.24   -0.90   -1.83   -2.80   -3.69   -4.43   -5.06   -5.61   -6.00   -6.11   -5.71   -4.67   -3.03   -1.00    1.12    3.13    5.11    7.52
+   260.0    0.00   -0.22   -0.89   -1.82   -2.82   -3.74   -4.53   -5.20   -5.79   -6.23   -6.36   -6.00   -4.99   -3.38   -1.37    0.75    2.80    4.87    7.37
+   265.0    0.00   -0.21   -0.87   -1.81   -2.83   -3.78   -4.60   -5.32   -5.96   -6.44   -6.62   -6.30   -5.34   -3.76   -1.77    0.36    2.47    4.66    7.31
+   270.0    0.00   -0.19   -0.85   -1.79   -2.82   -3.79   -4.65   -5.42   -6.10   -6.64   -6.88   -6.60   -5.69   -4.16   -2.20   -0.06    2.12    4.44    7.27
+   275.0    0.00   -0.18   -0.82   -1.76   -2.80   -3.79   -4.67   -5.48   -6.22   -6.82   -7.11   -6.89   -6.03   -4.55   -2.62   -0.48    1.75    4.19    7.20
+   280.0    0.00   -0.16   -0.80   -1.73   -2.76   -3.76   -4.67   -5.51   -6.30   -6.95   -7.31   -7.15   -6.35   -4.92   -3.03   -0.90    1.36    3.90    7.06
+   285.0    0.00   -0.14   -0.76   -1.69   -2.71   -3.71   -4.63   -5.50   -6.33   -7.04   -7.46   -7.36   -6.61   -5.23   -3.39   -1.30    0.96    3.55    6.81
+   290.0    0.00   -0.13   -0.73   -1.63   -2.65   -3.64   -4.56   -5.46   -6.32   -7.08   -7.54   -7.49   -6.79   -5.46   -3.68   -1.65    0.57    3.16    6.46
+   295.0    0.00   -0.11   -0.69   -1.58   -2.57   -3.54   -4.47   -5.37   -6.26   -7.05   -7.55   -7.54   -6.88   -5.60   -3.88   -1.92    0.22    2.75    6.03
+   300.0    0.00   -0.09   -0.65   -1.51   -2.48   -3.43   -4.34   -5.24   -6.14   -6.95   -7.48   -7.50   -6.87   -5.63   -3.97   -2.10   -0.07    2.36    5.56
+   305.0    0.00   -0.08   -0.61   -1.44   -2.38   -3.30   -4.18   -5.07   -5.97   -6.79   -7.34   -7.37   -6.75   -5.55   -3.95   -2.18   -0.27    2.02    5.11
+   310.0    0.00   -0.06   -0.57   -1.37   -2.27   -3.15   -4.00   -4.87   -5.76   -6.58   -7.12   -7.15   -6.55   -5.37   -3.82   -2.15   -0.37    1.78    4.72
+   315.0    0.00   -0.04   -0.53   -1.30   -2.16   -3.00   -3.81   -4.64   -5.51   -6.31   -6.85   -6.87   -6.27   -5.10   -3.60   -2.00   -0.35    1.66    4.47
+   320.0    0.00   -0.03   -0.49   -1.22   -2.04   -2.83   -3.60   -4.39   -5.23   -6.01   -6.53   -6.55   -5.94   -4.78   -3.30   -1.77   -0.21    1.68    4.39
+   325.0    0.00   -0.01   -0.45   -1.15   -1.92   -2.67   -3.39   -4.14   -4.94   -5.70   -6.20   -6.21   -5.59   -4.42   -2.96   -1.46    0.04    1.85    4.51
+   330.0    0.00    0.00   -0.41   -1.08   -1.81   -2.51   -3.18   -3.88   -4.65   -5.39   -5.88   -5.87   -5.23   -4.06   -2.60   -1.11    0.37    2.16    4.82
+   335.0    0.00    0.01   -0.38   -1.01   -1.70   -2.36   -2.98   -3.65   -4.38   -5.10   -5.57   -5.55   -4.91   -3.72   -2.24   -0.74    0.76    2.59    5.30
+   340.0    0.00    0.02   -0.35   -0.95   -1.61   -2.22   -2.80   -3.43   -4.14   -4.84   -5.31   -5.28   -4.63   -3.42   -1.92   -0.37    1.18    3.08    5.92
+   345.0    0.00    0.02   -0.33   -0.90   -1.52   -2.10   -2.65   -3.25   -3.94   -4.63   -5.09   -5.06   -4.41   -3.18   -1.64   -0.04    1.60    3.62    6.63
+   350.0    0.00    0.03   -0.31   -0.86   -1.45   -2.00   -2.53   -3.11   -3.79   -4.47   -4.93   -4.90   -4.24   -3.00   -1.43    0.24    1.99    4.16    7.35
+   355.0    0.00    0.03   -0.30   -0.83   -1.40   -1.93   -2.44   -3.01   -3.68   -4.36   -4.82   -4.79   -4.13   -2.88   -1.26    0.48    2.34    4.67    8.06
+   360.0    0.00    0.03   -0.29   -0.81   -1.37   -1.88   -2.38   -2.94   -3.61   -4.29   -4.75   -4.73   -4.06   -2.79   -1.14    0.68    2.65    5.13    8.69
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -3.13      1.82     64.77                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.18   -0.68   -1.33   -1.98   -2.51   -2.89   -3.21   -3.57   -4.03   -4.51   -4.79   -4.59   -3.65   -1.92    0.40    2.82    4.75    5.65
+     0.0    0.00   -0.19   -0.77   -1.54   -2.29   -2.88   -3.30   -3.69   -4.20   -4.91   -5.70   -6.27   -6.26   -5.42   -3.75   -1.55    0.73    2.77    4.65
+     5.0    0.00   -0.19   -0.75   -1.50   -2.22   -2.77   -3.17   -3.52   -3.98   -4.62   -5.31   -5.79   -5.68   -4.75   -3.01   -0.75    1.59    3.67    5.62
+    10.0    0.00   -0.19   -0.73   -1.45   -2.13   -2.66   -3.02   -3.33   -3.74   -4.30   -4.91   -5.28   -5.07   -4.05   -2.23    0.10    2.48    4.58    6.55
+    15.0    0.00   -0.18   -0.70   -1.39   -2.04   -2.53   -2.86   -3.13   -3.49   -3.98   -4.50   -4.77   -4.47   -3.35   -1.44    0.95    3.37    5.47    7.43
+    20.0    0.00   -0.18   -0.68   -1.33   -1.94   -2.40   -2.70   -2.94   -3.25   -3.68   -4.11   -4.29   -3.89   -2.68   -0.69    1.77    4.22    6.32    8.23
+    25.0    0.00   -0.17   -0.65   -1.27   -1.85   -2.28   -2.55   -2.76   -3.03   -3.40   -3.75   -3.85   -3.37   -2.08   -0.02    2.51    5.01    7.09    8.94
+    30.0    0.00   -0.17   -0.62   -1.21   -1.76   -2.16   -2.41   -2.60   -2.84   -3.15   -3.44   -3.47   -2.92   -1.57    0.56    3.15    5.70    7.78    9.53
+    35.0    0.00   -0.16   -0.60   -1.15   -1.67   -2.05   -2.29   -2.46   -2.67   -2.94   -3.19   -3.16   -2.56   -1.16    1.02    3.67    6.26    8.35   10.01
+    40.0    0.00   -0.16   -0.57   -1.10   -1.60   -1.96   -2.19   -2.35   -2.54   -2.78   -2.98   -2.92   -2.29   -0.87    1.34    4.04    6.69    8.79   10.35
+    45.0    0.00   -0.15   -0.55   -1.06   -1.53   -1.89   -2.11   -2.27   -2.44   -2.66   -2.83   -2.75   -2.11   -0.69    1.53    4.27    6.96    9.09   10.54
+    50.0    0.00   -0.15   -0.54   -1.02   -1.48   -1.83   -2.06   -2.22   -2.38   -2.57   -2.73   -2.64   -2.02   -0.62    1.59    4.34    7.09    9.24   10.58
+    55.0    0.00   -0.15   -0.52   -1.00   -1.45   -1.80   -2.03   -2.19   -2.34   -2.52   -2.67   -2.59   -2.00   -0.65    1.52    4.28    7.06    9.23   10.47
+    60.0    0.00   -0.15   -0.51   -0.98   -1.43   -1.78   -2.02   -2.18   -2.33   -2.51   -2.65   -2.58   -2.04   -0.76    1.36    4.09    6.90    9.09   10.19
+    65.0    0.00   -0.15   -0.51   -0.97   -1.42   -1.78   -2.03   -2.19   -2.34   -2.51   -2.66   -2.62   -2.14   -0.93    1.11    3.80    6.62    8.81    9.78
+    70.0    0.00   -0.15   -0.51   -0.97   -1.43   -1.80   -2.05   -2.23   -2.38   -2.55   -2.71   -2.70   -2.28   -1.16    0.79    3.43    6.23    8.42    9.25
+    75.0    0.00   -0.15   -0.52   -0.98   -1.45   -1.83   -2.10   -2.28   -2.44   -2.62   -2.79   -2.82   -2.46   -1.44    0.42    2.99    5.77    7.93    8.63
+    80.0    0.00   -0.16   -0.53   -1.00   -1.48   -1.87   -2.15   -2.35   -2.53   -2.71   -2.90   -2.97   -2.68   -1.74    0.01    2.50    5.24    7.38    7.95
+    85.0    0.00   -0.16   -0.54   -1.03   -1.52   -1.93   -2.23   -2.45   -2.64   -2.85   -3.06   -3.16   -2.93   -2.08   -0.42    1.98    4.66    6.78    7.25
+    90.0    0.00   -0.17   -0.56   -1.06   -1.57   -1.99   -2.31   -2.56   -2.78   -3.02   -3.26   -3.40   -3.22   -2.44   -0.88    1.43    4.06    6.16    6.58
+    95.0    0.00   -0.18   -0.58   -1.10   -1.62   -2.07   -2.41   -2.69   -2.95   -3.23   -3.51   -3.69   -3.55   -2.84   -1.36    0.87    3.45    5.54    5.94
+   100.0    0.00   -0.19   -0.61   -1.15   -1.69   -2.15   -2.53   -2.84   -3.15   -3.47   -3.80   -4.02   -3.92   -3.26   -1.85    0.30    2.83    4.93    5.36
+   105.0    0.00   -0.19   -0.63   -1.20   -1.76   -2.25   -2.65   -3.01   -3.37   -3.76   -4.14   -4.39   -4.32   -3.70   -2.36   -0.27    2.22    4.35    4.85
+   110.0    0.00   -0.20   -0.66   -1.25   -1.83   -2.35   -2.79   -3.19   -3.62   -4.08   -4.51   -4.80   -4.76   -4.17   -2.87   -0.84    1.63    3.81    4.40
+   115.0    0.00   -0.21   -0.69   -1.30   -1.91   -2.45   -2.93   -3.39   -3.88   -4.42   -4.91   -5.24   -5.22   -4.65   -3.38   -1.39    1.07    3.29    4.00
+   120.0    0.00   -0.22   -0.72   -1.36   -1.99   -2.56   -3.07   -3.58   -4.15   -4.76   -5.33   -5.70   -5.69   -5.13   -3.87   -1.90    0.55    2.82    3.63
+   125.0    0.00   -0.23   -0.76   -1.41   -2.07   -2.66   -3.21   -3.78   -4.42   -5.11   -5.74   -6.15   -6.16   -5.60   -4.34   -2.37    0.08    2.39    3.28
+   130.0    0.00   -0.24   -0.78   -1.47   -2.15   -2.77   -3.35   -3.96   -4.67   -5.43   -6.13   -6.58   -6.61   -6.03   -4.76   -2.78   -0.31    2.02    2.95
+   135.0    0.00   -0.25   -0.81   -1.52   -2.23   -2.86   -3.47   -4.13   -4.90   -5.72   -6.48   -6.98   -7.01   -6.42   -5.11   -3.09   -0.61    1.72    2.64
+   140.0    0.00   -0.26   -0.84   -1.57   -2.30   -2.96   -3.59   -4.28   -5.09   -5.97   -6.79   -7.32   -7.35   -6.73   -5.37   -3.31   -0.79    1.52    2.38
+   145.0    0.00   -0.26   -0.86   -1.61   -2.36   -3.04   -3.68   -4.40   -5.24   -6.17   -7.02   -7.59   -7.62   -6.96   -5.53   -3.40   -0.85    1.43    2.19
+   150.0    0.00   -0.27   -0.88   -1.65   -2.42   -3.11   -3.76   -4.49   -5.35   -6.30   -7.19   -7.77   -7.80   -7.09   -5.58   -3.35   -0.75    1.49    2.13
+   155.0    0.00   -0.27   -0.89   -1.68   -2.47   -3.17   -3.82   -4.55   -5.41   -6.37   -7.28   -7.87   -7.89   -7.12   -5.50   -3.17   -0.51    1.71    2.23
+   160.0    0.00   -0.27   -0.90   -1.71   -2.50   -3.21   -3.87   -4.57   -5.42   -6.38   -7.29   -7.88   -7.86   -7.02   -5.29   -2.84   -0.10    2.10    2.54
+   165.0    0.00   -0.27   -0.91   -1.73   -2.53   -3.24   -3.88   -4.57   -5.39   -6.32   -7.21   -7.79   -7.74   -6.82   -4.97   -2.38    0.44    2.66    3.07
+   170.0    0.00   -0.27   -0.91   -1.73   -2.55   -3.26   -3.88   -4.54   -5.31   -6.21   -7.07   -7.61   -7.51   -6.50   -4.53   -1.80    1.12    3.38    3.84
+   175.0    0.00   -0.27   -0.91   -1.73   -2.55   -3.26   -3.86   -4.48   -5.20   -6.04   -6.86   -7.35   -7.19   -6.09   -3.99   -1.14    1.90    4.23    4.80
+   180.0    0.00   -0.26   -0.90   -1.72   -2.54   -3.24   -3.82   -4.39   -5.06   -5.83   -6.58   -7.02   -6.79   -5.60   -3.38   -0.40    2.74    5.16    5.92
+   185.0    0.00   -0.25   -0.88   -1.70   -2.52   -3.21   -3.76   -4.29   -4.88   -5.58   -6.26   -6.63   -6.33   -5.05   -2.73    0.37    3.60    6.13    7.13
+   190.0    0.00   -0.25   -0.86   -1.67   -2.48   -3.16   -3.69   -4.16   -4.68   -5.30   -5.90   -6.20   -5.82   -4.46   -2.05    1.14    4.45    7.08    8.32
+   195.0    0.00   -0.24   -0.84   -1.63   -2.43   -3.09   -3.59   -4.01   -4.46   -5.00   -5.51   -5.73   -5.28   -3.85   -1.37    1.87    5.24    7.94    9.42
+   200.0    0.00   -0.23   -0.81   -1.59   -2.37   -3.01   -3.48   -3.85   -4.23   -4.68   -5.11   -5.25   -4.74   -3.25   -0.72    2.55    5.93    8.67   10.32
+   205.0    0.00   -0.22   -0.78   -1.53   -2.30   -2.92   -3.35   -3.67   -3.98   -4.35   -4.70   -4.77   -4.21   -2.68   -0.13    3.15    6.51    9.22   10.96
+   210.0    0.00   -0.20   -0.74   -1.48   -2.22   -2.82   -3.22   -3.48   -3.72   -4.01   -4.29   -4.31   -3.70   -2.16    0.40    3.65    6.94    9.57   11.30
+   215.0    0.00   -0.19   -0.71   -1.42   -2.13   -2.70   -3.07   -3.29   -3.47   -3.69   -3.91   -3.88   -3.25   -1.70    0.84    4.03    7.22    9.71   11.31
+   220.0    0.00   -0.18   -0.67   -1.35   -2.04   -2.59   -2.92   -3.09   -3.22   -3.38   -3.54   -3.48   -2.85   -1.31    1.18    4.29    7.36    9.65   11.01
+   225.0    0.00   -0.17   -0.64   -1.29   -1.96   -2.47   -2.78   -2.91   -2.98   -3.09   -3.22   -3.14   -2.51   -1.02    1.41    4.44    7.35    9.42   10.46
+   230.0    0.00   -0.16   -0.61   -1.23   -1.87   -2.36   -2.64   -2.73   -2.77   -2.84   -2.94   -2.86   -2.25   -0.81    1.55    4.46    7.22    9.05    9.72
+   235.0    0.00   -0.15   -0.57   -1.18   -1.79   -2.26   -2.51   -2.58   -2.58   -2.63   -2.71   -2.63   -2.07   -0.69    1.58    4.38    6.98    8.58    8.87
+   240.0    0.00   -0.14   -0.55   -1.13   -1.72   -2.17   -2.40   -2.45   -2.43   -2.46   -2.53   -2.48   -1.96   -0.65    1.51    4.20    6.66    8.05    7.99
+   245.0    0.00   -0.13   -0.52   -1.09   -1.66   -2.10   -2.32   -2.35   -2.32   -2.34   -2.42   -2.39   -1.92   -0.70    1.36    3.94    6.27    7.50    7.16
+   250.0    0.00   -0.12   -0.51   -1.05   -1.62   -2.04   -2.25   -2.29   -2.25   -2.27   -2.36   -2.36   -1.95   -0.82    1.14    3.60    5.84    6.96    6.44
+   255.0    0.00   -0.12   -0.49   -1.03   -1.59   -2.01   -2.22   -2.26   -2.23   -2.26   -2.37   -2.40   -2.05   -1.01    0.84    3.20    5.36    6.43    5.84
+   260.0    0.00   -0.11   -0.49   -1.02   -1.57   -1.99   -2.21   -2.26   -2.25   -2.30   -2.43   -2.50   -2.21   -1.25    0.49    2.75    4.85    5.93    5.36
+   265.0    0.00   -0.11   -0.49   -1.02   -1.58   -2.00   -2.23   -2.30   -2.32   -2.39   -2.56   -2.66   -2.42   -1.54    0.09    2.25    4.31    5.44    5.00
+   270.0    0.00   -0.11   -0.49   -1.03   -1.59   -2.03   -2.28   -2.37   -2.42   -2.54   -2.74   -2.88   -2.69   -1.88   -0.34    1.72    3.74    4.95    4.70
+   275.0    0.00   -0.11   -0.50   -1.06   -1.63   -2.08   -2.35   -2.47   -2.56   -2.72   -2.97   -3.15   -3.01   -2.26   -0.81    1.16    3.15    4.44    4.42
+   280.0    0.00   -0.12   -0.52   -1.09   -1.68   -2.15   -2.44   -2.59   -2.73   -2.95   -3.25   -3.48   -3.37   -2.68   -1.30    0.59    2.53    3.91    4.12
+   285.0    0.00   -0.12   -0.54   -1.13   -1.74   -2.23   -2.54   -2.74   -2.93   -3.21   -3.57   -3.85   -3.78   -3.14   -1.82   -0.01    1.90    3.33    3.76
+   290.0    0.00   -0.13   -0.56   -1.18   -1.81   -2.32   -2.66   -2.89   -3.14   -3.50   -3.93   -4.26   -4.23   -3.62   -2.36   -0.60    1.25    2.72    3.31
+   295.0    0.00   -0.13   -0.59   -1.23   -1.89   -2.42   -2.78   -3.06   -3.37   -3.80   -4.31   -4.70   -4.72   -4.13   -2.90   -1.20    0.61    2.08    2.79
+   300.0    0.00   -0.14   -0.61   -1.28   -1.97   -2.52   -2.91   -3.23   -3.60   -4.12   -4.71   -5.17   -5.22   -4.65   -3.44   -1.78   -0.02    1.44    2.22
+   305.0    0.00   -0.15   -0.64   -1.34   -2.05   -2.62   -3.04   -3.40   -3.83   -4.43   -5.11   -5.64   -5.73   -5.18   -3.97   -2.32   -0.60    0.83    1.64
+   310.0    0.00   -0.16   -0.67   -1.40   -2.13   -2.73   -3.17   -3.56   -4.06   -4.73   -5.50   -6.10   -6.23   -5.68   -4.47   -2.82   -1.12    0.28    1.11
+   315.0    0.00   -0.16   -0.70   -1.45   -2.21   -2.82   -3.28   -3.71   -4.26   -5.01   -5.85   -6.52   -6.69   -6.15   -4.92   -3.25   -1.55   -0.17    0.66
+   320.0    0.00   -0.17   -0.73   -1.50   -2.28   -2.91   -3.39   -3.84   -4.44   -5.25   -6.16   -6.89   -7.09   -6.55   -5.29   -3.60   -1.88   -0.48    0.37
+   325.0    0.00   -0.18   -0.75   -1.54   -2.34   -2.98   -3.47   -3.95   -4.58   -5.44   -6.41   -7.18   -7.41   -6.86   -5.57   -3.83   -2.07   -0.64    0.27
+   330.0    0.00   -0.18   -0.77   -1.58   -2.38   -3.03   -3.53   -4.02   -4.68   -5.57   -6.58   -7.38   -7.63   -7.07   -5.74   -3.94   -2.11   -0.62    0.38
+   335.0    0.00   -0.19   -0.78   -1.60   -2.41   -3.07   -3.57   -4.06   -4.73   -5.63   -6.65   -7.48   -7.72   -7.14   -5.76   -3.90   -2.00   -0.42    0.70
+   340.0    0.00   -0.19   -0.79   -1.61   -2.42   -3.08   -3.58   -4.07   -4.72   -5.62   -6.64   -7.45   -7.68   -7.07   -5.64   -3.72   -1.73   -0.05    1.23
+   345.0    0.00   -0.19   -0.79   -1.61   -2.42   -3.06   -3.55   -4.03   -4.67   -5.54   -6.53   -7.31   -7.50   -6.85   -5.37   -3.38   -1.31    0.48    1.93
+   350.0    0.00   -0.19   -0.79   -1.60   -2.39   -3.03   -3.50   -3.95   -4.56   -5.39   -6.32   -7.05   -7.19   -6.49   -4.96   -2.89   -0.74    1.15    2.76
+   355.0    0.00   -0.19   -0.78   -1.57   -2.35   -2.96   -3.41   -3.83   -4.40   -5.18   -6.04   -6.70   -6.77   -6.00   -4.41   -2.28   -0.06    1.92    3.68
+   360.0    0.00   -0.19   -0.77   -1.54   -2.29   -2.88   -3.30   -3.69   -4.20   -4.91   -5.70   -6.27   -6.26   -5.42   -3.75   -1.55    0.73    2.77    4.65
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH700228B      NONE                                        TYPE / SERIAL NO    
+CONVERTED           TUM                      0    16-APR-03 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+      1.10     -0.16     61.14                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.14   -0.42   -0.77   -1.48   -2.59   -3.95   -4.79   -4.97   -5.00   -5.14   -4.66   -3.67   -2.24   -0.70    1.57    5.69
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -1.30      0.18     71.26                              NORTH / EAST / UP   
+   NOAZI    0.00    0.27    0.58    0.40   -0.22   -0.82   -1.23   -1.91   -2.75   -3.23   -3.35   -3.13   -2.48   -0.95    1.17    2.19    1.06
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH700228C      NONE                                        TYPE / SERIAL NO    
+CONVERTED           TUM                      0    16-APR-03 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+      1.10     -0.16     61.14                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.14   -0.42   -0.77   -1.48   -2.59   -3.95   -4.79   -4.97   -5.00   -5.14   -4.66   -3.67   -2.24   -0.70    1.57    5.69
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -1.30      0.18     71.26                              NORTH / EAST / UP   
+   NOAZI    0.00    0.27    0.58    0.40   -0.22   -0.82   -1.23   -1.91   -2.75   -3.23   -3.35   -3.13   -2.48   -0.95    1.17    2.19    1.06
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH700228D      NONE                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               4    11-AUG-06 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+     -2.06     -1.28     61.22                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.23   -0.86   -1.71   -2.61   -3.41   -4.07   -4.64   -5.13   -5.52   -5.68   -5.44   -4.69   -3.40   -1.68    0.32    2.55    5.10    8.13
+     0.0    0.00    0.06   -0.29   -0.89   -1.57   -2.20   -2.74   -3.19   -3.58   -3.85   -3.90   -3.59   -2.82   -1.60   -0.01    1.85    3.94    6.36    9.22
+     5.0    0.00    0.06   -0.27   -0.84   -1.50   -2.13   -2.67   -3.15   -3.57   -3.89   -3.98   -3.70   -2.96   -1.76   -0.17    1.70    3.81    6.25    9.08
+    10.0    0.00    0.06   -0.25   -0.81   -1.45   -2.07   -2.64   -3.15   -3.62   -3.98   -4.12   -3.88   -3.18   -2.00   -0.42    1.44    3.56    5.99    8.80
+    15.0    0.00    0.06   -0.24   -0.78   -1.42   -2.04   -2.62   -3.18   -3.69   -4.11   -4.29   -4.09   -3.42   -2.26   -0.71    1.14    3.25    5.68    8.48
+    20.0    0.00    0.06   -0.24   -0.77   -1.40   -2.03   -2.63   -3.22   -3.79   -4.25   -4.46   -4.29   -3.64   -2.51   -0.97    0.86    2.96    5.38    8.20
+    25.0    0.00    0.05   -0.24   -0.77   -1.40   -2.03   -2.66   -3.28   -3.88   -4.37   -4.61   -4.46   -3.81   -2.69   -1.17    0.65    2.74    5.17    8.03
+    30.0    0.00    0.04   -0.26   -0.78   -1.41   -2.06   -2.70   -3.35   -3.96   -4.47   -4.71   -4.56   -3.91   -2.79   -1.27    0.55    2.66    5.12    8.03
+    35.0    0.00    0.03   -0.28   -0.81   -1.45   -2.10   -2.76   -3.41   -4.03   -4.53   -4.76   -4.59   -3.92   -2.78   -1.25    0.60    2.73    5.24    8.22
+    40.0    0.00    0.01   -0.31   -0.86   -1.50   -2.17   -2.83   -3.48   -4.08   -4.56   -4.76   -4.55   -3.85   -2.68   -1.10    0.79    2.98    5.56    8.59
+    45.0    0.00   -0.01   -0.35   -0.92   -1.58   -2.26   -2.91   -3.55   -4.13   -4.56   -4.72   -4.46   -3.71   -2.49   -0.86    1.11    3.39    6.04    9.11
+    50.0    0.00   -0.03   -0.40   -0.99   -1.68   -2.36   -3.02   -3.64   -4.18   -4.56   -4.66   -4.35   -3.54   -2.25   -0.54    1.52    3.90    6.63    9.72
+    55.0    0.00   -0.05   -0.45   -1.08   -1.79   -2.50   -3.15   -3.75   -4.25   -4.58   -4.62   -4.24   -3.38   -2.01   -0.21    1.96    4.45    7.27   10.37
+    60.0    0.00   -0.08   -0.51   -1.18   -1.93   -2.66   -3.32   -3.89   -4.35   -4.63   -4.62   -4.18   -3.25   -1.81    0.09    2.37    4.98    7.88   10.98
+    65.0    0.00   -0.11   -0.58   -1.29   -2.08   -2.84   -3.51   -4.07   -4.51   -4.75   -4.68   -4.20   -3.21   -1.69    0.30    2.70    5.41    8.38   11.48
+    70.0    0.00   -0.14   -0.65   -1.41   -2.25   -3.04   -3.73   -4.30   -4.72   -4.94   -4.84   -4.32   -3.28   -1.69    0.38    2.87    5.68    8.72   11.83
+    75.0    0.00   -0.17   -0.73   -1.54   -2.43   -3.27   -3.99   -4.57   -5.00   -5.21   -5.10   -4.55   -3.48   -1.85    0.29    2.84    5.72    8.83   11.99
+    80.0    0.00   -0.20   -0.81   -1.67   -2.61   -3.50   -4.27   -4.88   -5.33   -5.56   -5.46   -4.91   -3.82   -2.17    0.00    2.59    5.52    8.69   11.95
+    85.0    0.00   -0.23   -0.89   -1.80   -2.80   -3.75   -4.56   -5.22   -5.71   -5.97   -5.91   -5.38   -4.29   -2.64   -0.47    2.12    5.06    8.29   11.71
+    90.0    0.00   -0.27   -0.97   -1.94   -2.99   -3.99   -4.85   -5.56   -6.11   -6.44   -6.42   -5.93   -4.88   -3.25   -1.11    1.45    4.37    7.67   11.28
+    95.0    0.00   -0.30   -1.04   -2.06   -3.17   -4.22   -5.13   -5.91   -6.52   -6.92   -6.97   -6.54   -5.53   -3.95   -1.87    0.62    3.50    6.85   10.70
+   100.0    0.00   -0.33   -1.11   -2.18   -3.33   -4.42   -5.39   -6.23   -6.91   -7.39   -7.52   -7.16   -6.22   -4.70   -2.71   -0.31    2.50    5.89   10.00
+   105.0    0.00   -0.36   -1.18   -2.29   -3.48   -4.61   -5.62   -6.50   -7.26   -7.81   -8.03   -7.75   -6.88   -5.44   -3.55   -1.27    1.46    4.86    9.20
+   110.0    0.00   -0.39   -1.24   -2.38   -3.60   -4.75   -5.79   -6.72   -7.53   -8.17   -8.46   -8.26   -7.47   -6.12   -4.33   -2.18    0.44    3.83    8.36
+   115.0    0.00   -0.41   -1.29   -2.46   -3.70   -4.86   -5.91   -6.86   -7.72   -8.42   -8.78   -8.66   -7.94   -6.67   -4.98   -2.96   -0.47    2.87    7.52
+   120.0    0.00   -0.43   -1.34   -2.52   -3.76   -4.93   -5.97   -6.93   -7.81   -8.55   -8.97   -8.90   -8.25   -7.05   -5.46   -3.56   -1.21    2.02    6.70
+   125.0    0.00   -0.45   -1.38   -2.57   -3.80   -4.95   -5.97   -6.91   -7.79   -8.55   -9.01   -8.98   -8.37   -7.23   -5.71   -3.93   -1.72    1.36    5.94
+   130.0    0.00   -0.47   -1.40   -2.59   -3.81   -4.92   -5.91   -6.81   -7.67   -8.42   -8.89   -8.88   -8.30   -7.18   -5.72   -4.04   -1.99    0.90    5.30
+   135.0    0.00   -0.48   -1.42   -2.60   -3.80   -4.86   -5.79   -6.63   -7.45   -8.17   -8.62   -8.61   -8.03   -6.92   -5.50   -3.89   -1.99    0.68    4.81
+   140.0    0.00   -0.50   -1.43   -2.60   -3.75   -4.77   -5.62   -6.39   -7.13   -7.80   -8.22   -8.18   -7.58   -6.47   -5.05   -3.49   -1.73    0.71    4.50
+   145.0    0.00   -0.50   -1.44   -2.58   -3.69   -4.64   -5.41   -6.10   -6.75   -7.34   -7.70   -7.62   -6.98   -5.84   -4.42   -2.90   -1.24    0.97    4.41
+   150.0    0.00   -0.51   -1.43   -2.54   -3.61   -4.49   -5.18   -5.76   -6.32   -6.82   -7.10   -6.97   -6.28   -5.11   -3.65   -2.14   -0.56    1.45    4.55
+   155.0    0.00   -0.51   -1.42   -2.50   -3.51   -4.32   -4.92   -5.40   -5.86   -6.26   -6.46   -6.26   -5.53   -4.31   -2.82   -1.28    0.25    2.11    4.92
+   160.0    0.00   -0.51   -1.40   -2.45   -3.41   -4.14   -4.65   -5.04   -5.38   -5.69   -5.82   -5.56   -4.78   -3.51   -1.97   -0.39    1.15    2.92    5.52
+   165.0    0.00   -0.51   -1.38   -2.39   -3.30   -3.96   -4.39   -4.68   -4.92   -5.14   -5.20   -4.89   -4.07   -2.76   -1.16    0.48    2.06    3.82    6.29
+   170.0    0.00   -0.50   -1.35   -2.33   -3.18   -3.79   -4.13   -4.33   -4.50   -4.64   -4.64   -4.29   -3.45   -2.11   -0.45    1.28    2.95    4.76    7.19
+   175.0    0.00   -0.50   -1.32   -2.26   -3.07   -3.62   -3.90   -4.02   -4.12   -4.20   -4.16   -3.80   -2.96   -1.59    0.13    1.97    3.77    5.67    8.15
+   180.0    0.00   -0.49   -1.29   -2.20   -2.96   -3.46   -3.69   -3.76   -3.80   -3.84   -3.79   -3.44   -2.60   -1.22    0.57    2.52    4.47    6.52    9.09
+   185.0    0.00   -0.48   -1.26   -2.13   -2.87   -3.33   -3.51   -3.54   -3.55   -3.58   -3.53   -3.20   -2.38   -0.99    0.86    2.93    5.04    7.25    9.93
+   190.0    0.00   -0.47   -1.23   -2.07   -2.78   -3.22   -3.38   -3.38   -3.38   -3.41   -3.38   -3.09   -2.29   -0.90    1.01    3.20    5.47    7.83   10.61
+   195.0    0.00   -0.45   -1.20   -2.02   -2.71   -3.13   -3.28   -3.28   -3.28   -3.33   -3.34   -3.09   -2.32   -0.92    1.05    3.35    5.76    8.24   11.08
+   200.0    0.00   -0.44   -1.17   -1.98   -2.66   -3.08   -3.23   -3.25   -3.26   -3.34   -3.39   -3.17   -2.43   -1.02    1.00    3.41    5.92    8.48   11.33
+   205.0    0.00   -0.43   -1.14   -1.94   -2.62   -3.05   -3.23   -3.27   -3.32   -3.43   -3.51   -3.32   -2.60   -1.17    0.91    3.39    5.98    8.56   11.35
+   210.0    0.00   -0.41   -1.11   -1.91   -2.60   -3.06   -3.27   -3.35   -3.43   -3.58   -3.68   -3.51   -2.78   -1.33    0.79    3.33    5.96    8.52   11.19
+   215.0    0.00   -0.40   -1.09   -1.89   -2.60   -3.09   -3.35   -3.47   -3.60   -3.77   -3.88   -3.71   -2.96   -1.48    0.68    3.25    5.88    8.38   10.90
+   220.0    0.00   -0.39   -1.07   -1.88   -2.62   -3.15   -3.46   -3.64   -3.80   -3.99   -4.10   -3.90   -3.12   -1.60    0.58    3.15    5.76    8.19   10.53
+   225.0    0.00   -0.37   -1.05   -1.87   -2.64   -3.23   -3.60   -3.84   -4.04   -4.23   -4.32   -4.07   -3.25   -1.70    0.49    3.06    5.63    7.97   10.16
+   230.0    0.00   -0.36   -1.03   -1.87   -2.68   -3.32   -3.76   -4.06   -4.29   -4.48   -4.53   -4.23   -3.36   -1.78    0.41    2.95    5.48    7.76    9.83
+   235.0    0.00   -0.34   -1.02   -1.88   -2.73   -3.43   -3.93   -4.28   -4.54   -4.73   -4.74   -4.38   -3.46   -1.87    0.31    2.81    5.31    7.56    9.59
+   240.0    0.00   -0.33   -1.01   -1.89   -2.78   -3.54   -4.11   -4.51   -4.80   -4.97   -4.94   -4.54   -3.58   -1.98    0.17    2.63    5.10    7.37    9.42
+   245.0    0.00   -0.31   -0.99   -1.89   -2.83   -3.65   -4.28   -4.74   -5.05   -5.22   -5.16   -4.72   -3.74   -2.15   -0.04    2.38    4.85    7.18    9.33
+   250.0    0.00   -0.30   -0.98   -1.90   -2.88   -3.75   -4.44   -4.95   -5.30   -5.48   -5.40   -4.94   -3.96   -2.40   -0.34    2.04    4.53    6.96    9.26
+   255.0    0.00   -0.28   -0.97   -1.91   -2.92   -3.84   -4.59   -5.15   -5.54   -5.74   -5.67   -5.22   -4.26   -2.75   -0.75    1.59    4.11    6.66    9.17
+   260.0    0.00   -0.27   -0.95   -1.91   -2.95   -3.91   -4.71   -5.32   -5.76   -6.01   -5.98   -5.56   -4.65   -3.20   -1.27    1.04    3.59    6.27    8.98
+   265.0    0.00   -0.25   -0.94   -1.91   -2.97   -3.97   -4.81   -5.48   -5.98   -6.28   -6.32   -5.96   -5.12   -3.75   -1.88    0.39    2.96    5.76    8.66
+   270.0    0.00   -0.24   -0.92   -1.90   -2.98   -4.01   -4.89   -5.61   -6.18   -6.56   -6.68   -6.41   -5.64   -4.35   -2.55   -0.33    2.24    5.11    8.17
+   275.0    0.00   -0.22   -0.90   -1.89   -2.98   -4.03   -4.95   -5.72   -6.36   -6.83   -7.04   -6.87   -6.19   -4.98   -3.25   -1.09    1.46    4.35    7.51
+   280.0    0.00   -0.20   -0.88   -1.87   -2.97   -4.03   -4.97   -5.80   -6.51   -7.08   -7.39   -7.31   -6.72   -5.58   -3.93   -1.84    0.65    3.52    6.71
+   285.0    0.00   -0.18   -0.85   -1.84   -2.94   -4.01   -4.97   -5.84   -6.62   -7.28   -7.69   -7.70   -7.18   -6.11   -4.52   -2.52   -0.13    2.66    5.82
+   290.0    0.00   -0.17   -0.82   -1.80   -2.90   -3.97   -4.94   -5.84   -6.69   -7.42   -7.91   -7.99   -7.54   -6.51   -4.99   -3.08   -0.82    1.84    4.94
+   295.0    0.00   -0.15   -0.79   -1.76   -2.85   -3.90   -4.88   -5.81   -6.69   -7.48   -8.03   -8.16   -7.74   -6.74   -5.28   -3.48   -1.36    1.15    4.14
+   300.0    0.00   -0.13   -0.76   -1.71   -2.78   -3.82   -4.79   -5.72   -6.63   -7.45   -8.03   -8.17   -7.76   -6.78   -5.37   -3.67   -1.70    0.64    3.53
+   305.0    0.00   -0.11   -0.72   -1.66   -2.70   -3.72   -4.67   -5.59   -6.49   -7.31   -7.89   -8.02   -7.59   -6.62   -5.24   -3.63   -1.81    0.39    3.18
+   310.0    0.00   -0.09   -0.68   -1.59   -2.61   -3.60   -4.52   -5.41   -6.29   -7.08   -7.62   -7.71   -7.24   -6.25   -4.90   -3.37   -1.66    0.41    3.14
+   315.0    0.00   -0.07   -0.64   -1.53   -2.52   -3.47   -4.35   -5.19   -6.02   -6.75   -7.23   -7.26   -6.74   -5.72   -4.38   -2.90   -1.27    0.72    3.41
+   320.0    0.00   -0.05   -0.60   -1.46   -2.41   -3.32   -4.15   -4.94   -5.69   -6.35   -6.75   -6.70   -6.12   -5.07   -3.72   -2.26   -0.67    1.29    3.98
+   325.0    0.00   -0.04   -0.56   -1.38   -2.30   -3.17   -3.94   -4.66   -5.34   -5.90   -6.21   -6.09   -5.44   -4.34   -2.98   -1.51    0.08    2.05    4.78
+   330.0    0.00   -0.02   -0.51   -1.30   -2.19   -3.01   -3.73   -4.37   -4.96   -5.44   -5.66   -5.45   -4.75   -3.61   -2.22   -0.71    0.92    2.94    5.71
+   335.0    0.00    0.00   -0.47   -1.23   -2.07   -2.85   -3.51   -4.09   -4.60   -5.00   -5.13   -4.86   -4.11   -2.93   -1.50    0.06    1.77    3.87    6.69
+   340.0    0.00    0.01   -0.43   -1.15   -1.96   -2.69   -3.31   -3.83   -4.28   -4.60   -4.67   -4.35   -3.57   -2.36   -0.88    0.75    2.54    4.73    7.60
+   345.0    0.00    0.03   -0.39   -1.08   -1.85   -2.55   -3.12   -3.60   -4.00   -4.27   -4.31   -3.96   -3.15   -1.93   -0.41    1.29    3.19    5.46    8.35
+   350.0    0.00    0.04   -0.35   -1.01   -1.74   -2.41   -2.96   -3.42   -3.79   -4.04   -4.05   -3.70   -2.89   -1.66   -0.10    1.66    3.64    5.99    8.89
+   355.0    0.00    0.05   -0.32   -0.95   -1.65   -2.30   -2.84   -3.28   -3.65   -3.90   -3.92   -3.58   -2.79   -1.55    0.03    1.84    3.89    6.29    9.17
+   360.0    0.00    0.06   -0.29   -0.89   -1.57   -2.20   -2.74   -3.19   -3.58   -3.85   -3.90   -3.59   -2.82   -1.60   -0.01    1.85    3.94    6.36    9.22
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -3.43      2.05     67.09                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.13   -0.49   -1.00   -1.55   -2.08   -2.54   -2.96   -3.37   -3.81   -4.22   -4.46   -4.29   -3.51   -2.01    0.09    2.42    4.42    5.53
+     0.0    0.00   -0.01   -0.32   -0.87   -1.54   -2.23   -2.87   -3.47   -4.10   -4.81   -5.56   -6.18   -6.35   -5.76   -4.26   -1.97    0.65    2.91    4.09
+     5.0    0.00    0.00   -0.31   -0.84   -1.49   -2.14   -2.73   -3.27   -3.83   -4.46   -5.13   -5.66   -5.76   -5.11   -3.56   -1.27    1.30    3.47    4.63
+    10.0    0.00    0.00   -0.29   -0.80   -1.42   -2.03   -2.57   -3.05   -3.53   -4.08   -4.66   -5.09   -5.10   -4.37   -2.79   -0.51    1.97    4.04    5.18
+    15.0    0.00    0.01   -0.27   -0.76   -1.35   -1.92   -2.40   -2.81   -3.22   -3.69   -4.17   -4.51   -4.41   -3.60   -1.98    0.27    2.66    4.61    5.75
+    20.0    0.00    0.01   -0.25   -0.72   -1.28   -1.80   -2.23   -2.58   -2.92   -3.30   -3.70   -3.94   -3.74   -2.85   -1.18    1.04    3.34    5.18    6.33
+    25.0    0.00    0.01   -0.24   -0.68   -1.20   -1.68   -2.06   -2.35   -2.63   -2.95   -3.27   -3.42   -3.13   -2.15   -0.45    1.76    3.98    5.74    6.94
+    30.0    0.00    0.02   -0.22   -0.65   -1.13   -1.58   -1.91   -2.15   -2.37   -2.63   -2.89   -2.96   -2.60   -1.56    0.19    2.39    4.57    6.29    7.55
+    35.0    0.00    0.02   -0.21   -0.61   -1.07   -1.48   -1.77   -1.97   -2.16   -2.37   -2.57   -2.60   -2.17   -1.08    0.70    2.91    5.08    6.81    8.15
+    40.0    0.00    0.02   -0.20   -0.58   -1.02   -1.40   -1.66   -1.83   -1.98   -2.17   -2.34   -2.33   -1.87   -0.75    1.05    3.30    5.51    7.28    8.71
+    45.0    0.00    0.02   -0.19   -0.56   -0.97   -1.33   -1.58   -1.73   -1.86   -2.03   -2.18   -2.16   -1.70   -0.57    1.26    3.54    5.83    7.70    9.21
+    50.0    0.00    0.02   -0.19   -0.54   -0.94   -1.28   -1.52   -1.67   -1.79   -1.95   -2.11   -2.09   -1.64   -0.53    1.31    3.65    6.05    8.04    9.61
+    55.0    0.00    0.01   -0.19   -0.53   -0.92   -1.26   -1.49   -1.64   -1.77   -1.93   -2.10   -2.11   -1.70   -0.62    1.22    3.63    6.15    8.29    9.89
+    60.0    0.00    0.01   -0.19   -0.53   -0.91   -1.25   -1.49   -1.65   -1.79   -1.97   -2.16   -2.20   -1.85   -0.82    1.01    3.47    6.13    8.43   10.04
+    65.0    0.00    0.00   -0.19   -0.53   -0.91   -1.26   -1.51   -1.69   -1.85   -2.05   -2.27   -2.36   -2.07   -1.10    0.70    3.21    6.00    8.44   10.04
+    70.0    0.00    0.00   -0.20   -0.54   -0.92   -1.28   -1.55   -1.75   -1.94   -2.16   -2.41   -2.55   -2.33   -1.45    0.30    2.84    5.74    8.32    9.90
+    75.0    0.00   -0.01   -0.22   -0.55   -0.94   -1.31   -1.61   -1.84   -2.05   -2.31   -2.59   -2.78   -2.63   -1.83   -0.15    2.39    5.37    8.06    9.62
+    80.0    0.00   -0.02   -0.23   -0.57   -0.97   -1.35   -1.67   -1.93   -2.18   -2.47   -2.78   -3.02   -2.94   -2.23   -0.64    1.86    4.89    7.68    9.22
+    85.0    0.00   -0.03   -0.25   -0.60   -1.00   -1.40   -1.74   -2.04   -2.33   -2.64   -2.98   -3.26   -3.25   -2.63   -1.14    1.29    4.32    7.16    8.72
+    90.0    0.00   -0.05   -0.27   -0.63   -1.04   -1.45   -1.82   -2.15   -2.48   -2.82   -3.19   -3.50   -3.55   -3.02   -1.65    0.68    3.67    6.55    8.15
+    95.0    0.00   -0.06   -0.30   -0.66   -1.08   -1.50   -1.90   -2.27   -2.63   -3.01   -3.41   -3.74   -3.83   -3.39   -2.14    0.06    2.97    5.86    7.52
+   100.0    0.00   -0.07   -0.33   -0.70   -1.13   -1.56   -1.99   -2.39   -2.79   -3.20   -3.62   -3.97   -4.09   -3.73   -2.59   -0.54    2.25    5.11    6.85
+   105.0    0.00   -0.09   -0.36   -0.74   -1.18   -1.63   -2.07   -2.51   -2.95   -3.40   -3.83   -4.19   -4.33   -4.03   -3.01   -1.11    1.54    4.35    6.17
+   110.0    0.00   -0.11   -0.39   -0.79   -1.24   -1.70   -2.17   -2.64   -3.12   -3.60   -4.05   -4.41   -4.56   -4.29   -3.37   -1.62    0.89    3.62    5.49
+   115.0    0.00   -0.12   -0.43   -0.84   -1.30   -1.78   -2.27   -2.77   -3.29   -3.81   -4.28   -4.63   -4.77   -4.52   -3.67   -2.04    0.32    2.94    4.84
+   120.0    0.00   -0.14   -0.46   -0.90   -1.37   -1.87   -2.38   -2.92   -3.48   -4.02   -4.51   -4.86   -4.98   -4.72   -3.90   -2.37   -0.15    2.37    4.23
+   125.0    0.00   -0.16   -0.50   -0.95   -1.45   -1.96   -2.50   -3.07   -3.66   -4.25   -4.75   -5.09   -5.18   -4.89   -4.07   -2.59   -0.47    1.91    3.69
+   130.0    0.00   -0.17   -0.54   -1.01   -1.53   -2.07   -2.63   -3.23   -3.86   -4.47   -4.99   -5.32   -5.38   -5.04   -4.19   -2.71   -0.66    1.61    3.24
+   135.0    0.00   -0.19   -0.58   -1.08   -1.62   -2.18   -2.76   -3.40   -4.06   -4.70   -5.24   -5.57   -5.58   -5.18   -4.26   -2.73   -0.70    1.47    2.92
+   140.0    0.00   -0.20   -0.61   -1.14   -1.71   -2.29   -2.91   -3.57   -4.26   -4.93   -5.48   -5.81   -5.79   -5.32   -4.29   -2.68   -0.60    1.50    2.74
+   145.0    0.00   -0.22   -0.65   -1.20   -1.80   -2.41   -3.05   -3.74   -4.45   -5.15   -5.72   -6.05   -6.00   -5.45   -4.30   -2.56   -0.39    1.68    2.74
+   150.0    0.00   -0.23   -0.68   -1.26   -1.89   -2.53   -3.19   -3.90   -4.63   -5.34   -5.94   -6.27   -6.20   -5.58   -4.31   -2.39   -0.09    2.01    2.91
+   155.0    0.00   -0.25   -0.72   -1.32   -1.97   -2.64   -3.33   -4.04   -4.79   -5.52   -6.13   -6.48   -6.40   -5.71   -4.31   -2.21    0.27    2.46    3.25
+   160.0    0.00   -0.26   -0.74   -1.37   -2.05   -2.74   -3.44   -4.17   -4.92   -5.65   -6.28   -6.65   -6.57   -5.83   -4.31   -2.02    0.67    3.00    3.77
+   165.0    0.00   -0.27   -0.77   -1.41   -2.11   -2.82   -3.54   -4.26   -5.01   -5.74   -6.37   -6.77   -6.70   -5.93   -4.30   -1.83    1.08    3.59    4.42
+   170.0    0.00   -0.28   -0.79   -1.45   -2.16   -2.89   -3.61   -4.32   -5.05   -5.77   -6.41   -6.82   -6.77   -5.99   -4.27   -1.64    1.49    4.21    5.17
+   175.0    0.00   -0.28   -0.80   -1.47   -2.20   -2.93   -3.64   -4.34   -5.05   -5.75   -6.39   -6.81   -6.77   -5.98   -4.20   -1.44    1.88    4.82    5.97
+   180.0    0.00   -0.29   -0.81   -1.48   -2.21   -2.94   -3.64   -4.32   -4.99   -5.67   -6.29   -6.71   -6.69   -5.90   -4.08   -1.21    2.27    5.41    6.77
+   185.0    0.00   -0.29   -0.82   -1.49   -2.21   -2.93   -3.61   -4.25   -4.89   -5.52   -6.12   -6.53   -6.51   -5.71   -3.87   -0.94    2.66    5.95    7.52
+   190.0    0.00   -0.29   -0.82   -1.48   -2.20   -2.90   -3.54   -4.15   -4.73   -5.32   -5.88   -6.26   -6.22   -5.42   -3.56   -0.60    3.05    6.44    8.18
+   195.0    0.00   -0.29   -0.81   -1.47   -2.16   -2.84   -3.45   -4.01   -4.54   -5.07   -5.57   -5.91   -5.84   -5.01   -3.14   -0.18    3.46    6.87    8.71
+   200.0    0.00   -0.29   -0.80   -1.44   -2.12   -2.76   -3.33   -3.84   -4.31   -4.78   -5.21   -5.49   -5.36   -4.50   -2.62    0.31    3.90    7.25    9.09
+   205.0    0.00   -0.29   -0.79   -1.41   -2.06   -2.67   -3.19   -3.65   -4.06   -4.46   -4.82   -5.02   -4.81   -3.89   -2.00    0.89    4.37    7.58    9.34
+   210.0    0.00   -0.28   -0.77   -1.37   -1.99   -2.56   -3.04   -3.44   -3.79   -4.12   -4.40   -4.51   -4.22   -3.23   -1.31    1.52    4.86    7.87    9.45
+   215.0    0.00   -0.27   -0.75   -1.33   -1.92   -2.45   -2.89   -3.24   -3.52   -3.78   -3.98   -4.00   -3.61   -2.54   -0.59    2.18    5.35    8.11    9.46
+   220.0    0.00   -0.27   -0.72   -1.29   -1.85   -2.35   -2.74   -3.03   -3.26   -3.45   -3.57   -3.50   -3.01   -1.86    0.11    2.82    5.82    8.32    9.39
+   225.0    0.00   -0.26   -0.70   -1.24   -1.78   -2.24   -2.59   -2.84   -3.02   -3.14   -3.19   -3.03   -2.46   -1.24    0.77    3.42    6.25    8.47    9.26
+   230.0    0.00   -0.25   -0.68   -1.20   -1.71   -2.15   -2.46   -2.67   -2.79   -2.87   -2.85   -2.63   -1.98   -0.70    1.32    3.92    6.59    8.57    9.10
+   235.0    0.00   -0.24   -0.65   -1.15   -1.65   -2.06   -2.35   -2.51   -2.60   -2.63   -2.57   -2.29   -1.60   -0.27    1.75    4.29    6.81    8.59    8.92
+   240.0    0.00   -0.23   -0.63   -1.11   -1.59   -1.99   -2.25   -2.39   -2.44   -2.44   -2.35   -2.04   -1.32    0.02    2.03    4.50    6.90    8.51    8.72
+   245.0    0.00   -0.22   -0.60   -1.08   -1.55   -1.92   -2.17   -2.28   -2.31   -2.29   -2.19   -1.88   -1.16    0.16    2.14    4.53    6.82    8.32    8.49
+   250.0    0.00   -0.20   -0.58   -1.04   -1.50   -1.87   -2.10   -2.21   -2.23   -2.20   -2.10   -1.81   -1.11    0.17    2.09    4.40    6.59    8.01    8.21
+   255.0    0.00   -0.19   -0.56   -1.02   -1.47   -1.83   -2.06   -2.16   -2.18   -2.16   -2.09   -1.82   -1.17    0.06    1.89    4.11    6.19    7.56    7.86
+   260.0    0.00   -0.18   -0.54   -0.99   -1.44   -1.81   -2.03   -2.13   -2.17   -2.17   -2.13   -1.92   -1.32   -0.16    1.58    3.68    5.65    6.98    7.41
+   265.0    0.00   -0.17   -0.52   -0.97   -1.42   -1.79   -2.02   -2.14   -2.19   -2.24   -2.24   -2.08   -1.55   -0.47    1.17    3.14    5.00    6.28    6.86
+   270.0    0.00   -0.16   -0.50   -0.95   -1.41   -1.79   -2.03   -2.17   -2.26   -2.35   -2.41   -2.31   -1.84   -0.84    0.70    2.54    4.26    5.48    6.19
+   275.0    0.00   -0.15   -0.49   -0.94   -1.41   -1.79   -2.06   -2.22   -2.36   -2.51   -2.64   -2.60   -2.19   -1.25    0.19    1.89    3.47    4.61    5.42
+   280.0    0.00   -0.14   -0.47   -0.93   -1.41   -1.81   -2.10   -2.31   -2.50   -2.72   -2.91   -2.93   -2.57   -1.69   -0.33    1.24    2.67    3.71    4.57
+   285.0    0.00   -0.13   -0.46   -0.92   -1.41   -1.84   -2.16   -2.41   -2.67   -2.96   -3.23   -3.31   -2.99   -2.15   -0.87    0.60    1.89    2.83    3.69
+   290.0    0.00   -0.12   -0.45   -0.92   -1.43   -1.87   -2.23   -2.54   -2.87   -3.25   -3.59   -3.72   -3.44   -2.63   -1.40   -0.02    1.15    1.99    2.82
+   295.0    0.00   -0.11   -0.44   -0.92   -1.45   -1.92   -2.32   -2.69   -3.10   -3.56   -3.98   -4.16   -3.92   -3.13   -1.93   -0.61    0.49    1.25    2.03
+   300.0    0.00   -0.10   -0.43   -0.93   -1.47   -1.98   -2.43   -2.86   -3.35   -3.89   -4.38   -4.63   -4.42   -3.65   -2.46   -1.16   -0.10    0.62    1.35
+   305.0    0.00   -0.09   -0.43   -0.93   -1.50   -2.04   -2.54   -3.04   -3.60   -4.23   -4.80   -5.11   -4.93   -4.19   -2.99   -1.68   -0.59    0.15    0.83
+   310.0    0.00   -0.08   -0.42   -0.94   -1.53   -2.11   -2.65   -3.22   -3.85   -4.56   -5.21   -5.58   -5.46   -4.73   -3.52   -2.15   -0.98   -0.17    0.49
+   315.0    0.00   -0.08   -0.41   -0.95   -1.56   -2.18   -2.77   -3.39   -4.09   -4.87   -5.59   -6.04   -5.97   -5.27   -4.04   -2.59   -1.28   -0.33    0.35
+   320.0    0.00   -0.07   -0.41   -0.95   -1.59   -2.24   -2.88   -3.55   -4.31   -5.14   -5.93   -6.45   -6.44   -5.78   -4.52   -2.96   -1.47   -0.34    0.39
+   325.0    0.00   -0.06   -0.40   -0.96   -1.62   -2.30   -2.98   -3.69   -4.48   -5.37   -6.21   -6.80   -6.86   -6.23   -4.95   -3.26   -1.56   -0.21    0.60
+   330.0    0.00   -0.05   -0.39   -0.96   -1.64   -2.35   -3.05   -3.79   -4.61   -5.52   -6.42   -7.06   -7.19   -6.61   -5.29   -3.47   -1.55    0.04    0.95
+   335.0    0.00   -0.05   -0.39   -0.96   -1.65   -2.38   -3.10   -3.85   -4.68   -5.61   -6.53   -7.22   -7.41   -6.86   -5.52   -3.57   -1.43    0.39    1.40
+   340.0    0.00   -0.04   -0.38   -0.95   -1.66   -2.39   -3.12   -3.87   -4.69   -5.61   -6.53   -7.26   -7.49   -6.97   -5.60   -3.54   -1.20    0.82    1.91
+   345.0    0.00   -0.03   -0.36   -0.94   -1.65   -2.39   -3.11   -3.84   -4.63   -5.52   -6.44   -7.17   -7.43   -6.92   -5.52   -3.36   -0.88    1.30    2.45
+   350.0    0.00   -0.02   -0.35   -0.92   -1.62   -2.36   -3.06   -3.76   -4.51   -5.36   -6.24   -6.95   -7.21   -6.69   -5.26   -3.03   -0.45    1.81    3.00
+   355.0    0.00   -0.02   -0.34   -0.90   -1.59   -2.30   -2.98   -3.64   -4.33   -5.11   -5.94   -6.62   -6.84   -6.30   -4.84   -2.56    0.06    2.35    3.55
+   360.0    0.00   -0.01   -0.32   -0.87   -1.54   -2.23   -2.87   -3.47   -4.10   -4.81   -5.56   -6.18   -6.35   -5.76   -4.26   -1.97    0.65    2.91    4.09
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH700228E      NONE                                        TYPE / SERIAL NO    
+FIELD               NGS/TUM                  2    10-AUG-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+     -2.60     -0.36     65.44                              NORTH / EAST / UP   
+   NOAZI    0.00    0.56    0.48   -0.17   -1.28   -2.49   -3.65   -4.69   -5.37   -5.70   -5.54   -5.16   -4.37   -3.34   -2.10   -0.73    0.89
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -2.00      4.28     68.76                              NORTH / EAST / UP   
+   NOAZI    0.00   -1.13   -2.02   -2.70   -3.32   -3.92   -4.53   -5.21   -5.75   -6.23   -6.45   -6.23   -5.68   -4.75   -3.33   -1.31    1.46
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH700699.L1    NONE                                        TYPE / SERIAL NO    
+CONVERTED           IGEX/TUM                 0    27-JAN-03 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     1                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+      0.60     -0.46     32.74                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.24   -0.92   -1.97   -3.28   -4.69   -6.05   -7.19   -7.97   -8.30   -8.14   -7.46   -6.27   -4.54   -2.20    0.87    4.79    9.56   14.88
+   G01                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH700700.A     NONE                                        TYPE / SERIAL NO    
+FIELD               NGS/TUM                  2    10-AUG-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+     -1.10     -1.76     23.14                              NORTH / EAST / UP   
+   NOAZI    0.00    0.66    0.68    0.43   -0.18   -0.99   -1.85   -2.49   -2.97   -3.10   -3.04   -2.56   -1.77   -0.74    0.70    2.57    4.99
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      1.30     -2.52     42.16                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.63   -0.92   -1.10   -1.22   -1.42   -1.53   -1.71   -2.05   -2.23   -2.45   -2.43   -2.28   -2.05   -1.83   -1.51   -0.84
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH700700.B     NONE                                        TYPE / SERIAL NO    
+FIELD               NGS/TUM                  3    10-AUG-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+     -1.20     -1.96     32.74                              NORTH / EAST / UP   
+   NOAZI    0.00    0.56    0.58    0.33   -0.28   -0.99   -1.75   -2.39   -2.87   -3.00   -2.94   -2.46   -1.87   -0.84    0.50    2.17    4.49
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      1.00     -2.62     51.46                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.63   -1.02   -1.30   -1.42   -1.62   -1.83   -2.21   -2.45   -2.73   -2.95   -2.93   -2.78   -2.55   -2.33   -2.11   -1.64
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH700700.C     NONE                                        TYPE / SERIAL NO    
+FIELD               NGS/TUM                  3    10-AUG-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+     -1.20     -1.96     32.74                              NORTH / EAST / UP   
+   NOAZI    0.00    0.56    0.58    0.33   -0.28   -0.99   -1.75   -2.39   -2.87   -3.00   -2.94   -2.46   -1.87   -0.84    0.50    2.17    4.49
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      1.00     -2.62     51.46                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.63   -1.02   -1.30   -1.42   -1.62   -1.83   -2.21   -2.45   -2.73   -2.95   -2.93   -2.78   -2.55   -2.33   -2.11   -1.64
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH700718A      NONE                                        TYPE / SERIAL NO    
+CONVERTED           TUM                      0    16-APR-03 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+      4.00      0.54     68.54                              NORTH / EAST / UP   
+   NOAZI    0.00    1.06    1.98    2.63    2.92    3.01    2.75    2.21    1.63    0.90    0.26   -0.36   -0.87   -1.04   -0.80    0.27    2.39
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      3.00     -1.92     55.46                              NORTH / EAST / UP   
+   NOAZI    0.00   -2.53   -4.52   -6.30   -7.72   -9.02  -10.23  -11.21  -12.05  -12.53  -12.65  -12.13  -10.98   -9.05   -6.43   -2.91    2.06
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH700718B      NONE                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               8    11-AUG-06 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+     -1.67     -0.47     69.48                              NORTH / EAST / UP   
+   NOAZI    0.00    0.06    0.20    0.37    0.49    0.48    0.34    0.07   -0.33   -0.82   -1.38   -1.93   -2.36   -2.45   -2.00   -0.91    0.75    2.64    4.21
+     0.0    0.00   -0.02   -0.12   -0.29   -0.53   -0.88   -1.37   -2.05   -2.93   -3.95   -4.99   -5.87   -6.40   -6.43   -5.89   -4.78   -3.25   -1.62   -0.42
+     5.0    0.00   -0.04   -0.13   -0.25   -0.44   -0.74   -1.19   -1.85   -2.71   -3.74   -4.82   -5.76   -6.39   -6.53   -6.09   -5.07   -3.61   -2.03   -0.84
+    10.0    0.00   -0.06   -0.12   -0.20   -0.33   -0.57   -0.98   -1.60   -2.44   -3.47   -4.56   -5.55   -6.26   -6.50   -6.15   -5.20   -3.79   -2.23   -1.05
+    15.0    0.00   -0.08   -0.12   -0.14   -0.20   -0.37   -0.73   -1.31   -2.12   -3.12   -4.22   -5.25   -6.01   -6.33   -6.06   -5.17   -3.78   -2.22   -1.04
+    20.0    0.00   -0.10   -0.10   -0.06   -0.05   -0.16   -0.46   -0.99   -1.76   -2.73   -3.80   -4.84   -5.65   -6.03   -5.82   -4.96   -3.57   -2.01   -0.82
+    25.0    0.00   -0.11   -0.08    0.02    0.10    0.07   -0.17   -0.64   -1.36   -2.28   -3.32   -4.35   -5.19   -5.60   -5.42   -4.57   -3.18   -1.61   -0.41
+    30.0    0.00   -0.12   -0.06    0.10    0.26    0.30    0.13   -0.28   -0.93   -1.79   -2.79   -3.79   -4.62   -5.05   -4.89   -4.04   -2.63   -1.04    0.18
+    35.0    0.00   -0.13   -0.04    0.18    0.42    0.53    0.44    0.10   -0.49   -1.28   -2.21   -3.17   -3.98   -4.41   -4.23   -3.36   -1.92   -0.31    0.92
+    40.0    0.00   -0.15   -0.03    0.26    0.57    0.76    0.74    0.47   -0.04   -0.75   -1.61   -2.51   -3.28   -3.68   -3.47   -2.56   -1.09    0.56    1.82
+    45.0    0.00   -0.16   -0.02    0.32    0.70    0.97    1.02    0.83    0.41   -0.22   -1.00   -1.83   -2.54   -2.89   -2.64   -1.68   -0.15    1.54    2.85
+    50.0    0.00   -0.17   -0.01    0.38    0.82    1.16    1.29    1.18    0.84    0.30   -0.40   -1.15   -1.79   -2.08   -1.76   -0.72    0.88    2.63    4.01
+    55.0    0.00   -0.19   -0.01    0.41    0.91    1.31    1.52    1.49    1.24    0.79    0.18   -0.49   -1.05   -1.26   -0.85    0.27    1.96    3.80    5.27
+    60.0    0.00   -0.20   -0.02    0.43    0.97    1.43    1.71    1.76    1.60    1.24    0.72    0.13   -0.35   -0.46    0.04    1.27    3.08    5.02    6.62
+    65.0    0.00   -0.22   -0.04    0.42    0.99    1.50    1.84    1.98    1.90    1.63    1.20    0.70    0.30    0.28    0.89    2.24    4.18    6.27    8.01
+    70.0    0.00   -0.23   -0.07    0.39    0.98    1.53    1.92    2.13    2.14    1.95    1.61    1.19    0.88    0.95    1.68    3.16    5.24    7.48    9.40
+    75.0    0.00   -0.25   -0.11    0.34    0.92    1.49    1.93    2.20    2.29    2.19    1.93    1.59    1.37    1.53    2.37    3.98    6.21    8.62   10.73
+    80.0    0.00   -0.27   -0.15    0.26    0.83    1.40    1.87    2.19    2.35    2.32    2.14    1.88    1.74    2.00    2.93    4.67    7.05    9.63   11.92
+    85.0    0.00   -0.29   -0.21    0.16    0.69    1.25    1.74    2.10    2.31    2.35    2.24    2.06    1.99    2.33    3.36    5.20    7.71   10.45   12.89
+    90.0    0.00   -0.31   -0.27    0.04    0.52    1.05    1.52    1.91    2.16    2.27    2.23    2.11    2.11    2.51    3.61    5.54    8.15   11.01   13.57
+    95.0    0.00   -0.32   -0.34   -0.09    0.32    0.79    1.24    1.63    1.91    2.07    2.08    2.02    2.08    2.54    3.68    5.66    8.34   11.28   13.92
+   100.0    0.00   -0.34   -0.41   -0.24    0.09    0.49    0.90    1.27    1.57    1.75    1.81    1.80    1.91    2.39    3.55    5.55    8.25   11.22   13.88
+   105.0    0.00   -0.36   -0.48   -0.40   -0.16    0.16    0.51    0.84    1.13    1.33    1.42    1.45    1.58    2.08    3.23    5.20    7.87   10.83   13.44
+   110.0    0.00   -0.37   -0.55   -0.56   -0.42   -0.19    0.08    0.37    0.62    0.82    0.91    0.96    1.10    1.59    2.71    4.62    7.23   10.12   12.63
+   115.0    0.00   -0.38   -0.62   -0.71   -0.68   -0.55   -0.36   -0.15    0.06    0.23    0.32    0.36    0.50    0.96    2.01    3.83    6.33    9.12   11.49
+   120.0    0.00   -0.38   -0.68   -0.85   -0.92   -0.90   -0.81   -0.67   -0.53   -0.41   -0.35   -0.33   -0.22    0.19    1.16    2.86    5.23    7.88   10.08
+   125.0    0.00   -0.39   -0.72   -0.98   -1.14   -1.22   -1.23   -1.18   -1.12   -1.07   -1.07   -1.09   -1.03   -0.68    0.19    1.76    3.98    6.48    8.50
+   130.0    0.00   -0.38   -0.76   -1.08   -1.34   -1.51   -1.61   -1.66   -1.69   -1.73   -1.80   -1.89   -1.89   -1.63   -0.86    0.57    2.64    4.99    6.84
+   135.0    0.00   -0.38   -0.78   -1.16   -1.49   -1.75   -1.94   -2.08   -2.21   -2.34   -2.51   -2.69   -2.77   -2.59   -1.94   -0.64    1.28    3.50    5.20
+   140.0    0.00   -0.36   -0.78   -1.21   -1.59   -1.92   -2.19   -2.43   -2.65   -2.90   -3.17   -3.45   -3.62   -3.54   -3.00   -1.83   -0.04    2.06    3.67
+   145.0    0.00   -0.34   -0.77   -1.22   -1.65   -2.03   -2.37   -2.68   -3.01   -3.36   -3.75   -4.13   -4.41   -4.43   -4.00   -2.95   -1.27    0.74    2.30
+   150.0    0.00   -0.32   -0.74   -1.20   -1.65   -2.06   -2.45   -2.84   -3.25   -3.72   -4.22   -4.71   -5.09   -5.21   -4.88   -3.94   -2.36   -0.41    1.14
+   155.0    0.00   -0.29   -0.69   -1.14   -1.59   -2.02   -2.45   -2.89   -3.39   -3.95   -4.56   -5.16   -5.65   -5.86   -5.63   -4.78   -3.28   -1.37    0.21
+   160.0    0.00   -0.25   -0.62   -1.04   -1.48   -1.91   -2.35   -2.84   -3.40   -4.05   -4.76   -5.46   -6.04   -6.35   -6.20   -5.45   -4.02   -2.13   -0.48
+   165.0    0.00   -0.21   -0.53   -0.91   -1.32   -1.73   -2.18   -2.69   -3.30   -4.02   -4.82   -5.60   -6.27   -6.66   -6.60   -5.92   -4.56   -2.69   -0.96
+   170.0    0.00   -0.16   -0.42   -0.75   -1.11   -1.49   -1.93   -2.45   -3.10   -3.88   -4.73   -5.59   -6.33   -6.80   -6.81   -6.21   -4.91   -3.06   -1.25
+   175.0    0.00   -0.11   -0.31   -0.56   -0.86   -1.20   -1.61   -2.14   -2.81   -3.62   -4.52   -5.43   -6.23   -6.76   -6.85   -6.32   -5.08   -3.26   -1.38
+   180.0    0.00   -0.05   -0.18   -0.35   -0.57   -0.86   -1.25   -1.77   -2.44   -3.27   -4.20   -5.15   -6.00   -6.58   -6.73   -6.26   -5.08   -3.30   -1.37
+   185.0    0.00    0.00   -0.03   -0.12   -0.26   -0.49   -0.85   -1.35   -2.02   -2.85   -3.80   -4.77   -5.64   -6.27   -6.47   -6.06   -4.94   -3.20   -1.26
+   190.0    0.00    0.06    0.11    0.12    0.06   -0.11   -0.42   -0.90   -1.57   -2.39   -3.33   -4.31   -5.21   -5.87   -6.10   -5.73   -4.65   -2.97   -1.05
+   195.0    0.00    0.12    0.27    0.38    0.40    0.29    0.02   -0.45   -1.09   -1.90   -2.83   -3.81   -4.71   -5.39   -5.64   -5.29   -4.25   -2.62   -0.74
+   200.0    0.00    0.19    0.42    0.63    0.74    0.69    0.45    0.01   -0.61   -1.40   -2.32   -3.28   -4.19   -4.86   -5.11   -4.76   -3.74   -2.16   -0.34
+   205.0    0.00    0.25    0.57    0.88    1.08    1.09    0.88    0.46   -0.15   -0.92   -1.81   -2.75   -3.65   -4.31   -4.54   -4.17   -3.15   -1.60    0.16
+   210.0    0.00    0.30    0.72    1.12    1.40    1.46    1.28    0.88    0.29   -0.45   -1.31   -2.24   -3.11   -3.75   -3.95   -3.53   -2.47   -0.94    0.75
+   215.0    0.00    0.36    0.86    1.35    1.70    1.81    1.66    1.27    0.71   -0.01   -0.85   -1.75   -2.59   -3.20   -3.34   -2.85   -1.75   -0.22    1.42
+   220.0    0.00    0.41    0.98    1.56    1.97    2.13    2.00    1.63    1.08    0.39   -0.41   -1.28   -2.09   -2.65   -2.73   -2.16   -0.99    0.56    2.16
+   225.0    0.00    0.46    1.10    1.74    2.21    2.40    2.30    1.94    1.41    0.75   -0.02   -0.85   -1.62   -2.12   -2.12   -1.47   -0.23    1.35    2.93
+   230.0    0.00    0.50    1.20    1.90    2.42    2.64    2.55    2.21    1.70    1.08    0.35   -0.44   -1.16   -1.60   -1.53   -0.80    0.52    2.13    3.69
+   235.0    0.00    0.53    1.28    2.03    2.58    2.82    2.75    2.43    1.94    1.36    0.68   -0.06   -0.72   -1.10   -0.96   -0.16    1.22    2.87    4.42
+   240.0    0.00    0.56    1.35    2.13    2.70    2.96    2.89    2.59    2.13    1.59    0.96    0.29   -0.31   -0.63   -0.43    0.44    1.87    3.53    5.08
+   245.0    0.00    0.59    1.39    2.19    2.78    3.04    2.98    2.69    2.27    1.77    1.21    0.61    0.07   -0.19    0.06    0.97    2.43    4.10    5.64
+   250.0    0.00    0.60    1.42    2.22    2.80    3.06    3.00    2.73    2.35    1.90    1.41    0.88    0.41    0.21    0.50    1.43    2.89    4.56    6.09
+   255.0    0.00    0.61    1.42    2.21    2.78    3.03    2.97    2.71    2.36    1.97    1.55    1.09    0.70    0.55    0.88    1.82    3.27    4.92    6.43
+   260.0    0.00    0.61    1.41    2.17    2.71    2.94    2.87    2.62    2.31    1.97    1.62    1.24    0.92    0.82    1.18    2.12    3.56    5.19    6.66
+   265.0    0.00    0.61    1.38    2.10    2.60    2.79    2.71    2.48    2.19    1.90    1.61    1.31    1.05    1.01    1.40    2.34    3.77    5.38    6.82
+   270.0    0.00    0.59    1.33    2.00    2.45    2.60    2.50    2.26    2.00    1.76    1.52    1.29    1.10    1.11    1.53    2.49    3.92    5.52    6.92
+   275.0    0.00    0.58    1.26    1.87    2.26    2.36    2.24    1.99    1.74    1.53    1.34    1.16    1.03    1.10    1.57    2.56    4.02    5.63    7.00
+   280.0    0.00    0.55    1.18    1.72    2.03    2.09    1.93    1.67    1.43    1.23    1.07    0.94    0.87    1.00    1.52    2.57    4.07    5.72    7.07
+   285.0    0.00    0.52    1.09    1.55    1.79    1.78    1.58    1.31    1.05    0.86    0.71    0.61    0.59    0.79    1.39    2.51    4.09    5.80    7.15
+   290.0    0.00    0.49    0.99    1.36    1.52    1.45    1.21    0.91    0.63    0.42    0.28    0.19    0.22    0.48    1.17    2.40    4.07    5.86    7.23
+   295.0    0.00    0.45    0.88    1.17    1.25    1.11    0.83    0.48    0.17   -0.06   -0.23   -0.31   -0.25    0.09    0.88    2.22    4.01    5.89    7.29
+   300.0    0.00    0.41    0.77    0.97    0.97    0.77    0.44    0.05   -0.30   -0.58   -0.78   -0.87   -0.78   -0.37    0.52    1.97    3.88    5.87    7.30
+   305.0    0.00    0.37    0.66    0.78    0.70    0.44    0.05   -0.38   -0.78   -1.12   -1.37   -1.48   -1.37   -0.89    0.09    1.66    3.68    5.76    7.23
+   310.0    0.00    0.33    0.54    0.59    0.44    0.12   -0.31   -0.79   -1.25   -1.66   -1.96   -2.11   -1.99   -1.46   -0.39    1.27    3.38    5.54    7.04
+   315.0    0.00    0.29    0.44    0.41    0.20   -0.17   -0.64   -1.17   -1.70   -2.17   -2.55   -2.74   -2.62   -2.06   -0.93    0.80    2.98    5.18    6.70
+   320.0    0.00    0.25    0.33    0.24   -0.02   -0.43   -0.94   -1.51   -2.10   -2.65   -3.10   -3.35   -3.25   -2.67   -1.51    0.26    2.46    4.68    6.20
+   325.0    0.00    0.21    0.24    0.10   -0.21   -0.65   -1.18   -1.80   -2.45   -3.08   -3.61   -3.92   -3.86   -3.29   -2.12   -0.35    1.83    4.03    5.53
+   330.0    0.00    0.17    0.15   -0.03   -0.36   -0.82   -1.38   -2.03   -2.74   -3.45   -4.06   -4.44   -4.43   -3.89   -2.75   -1.02    1.11    3.25    4.72
+   335.0    0.00    0.13    0.08   -0.13   -0.48   -0.95   -1.52   -2.20   -2.96   -3.74   -4.44   -4.90   -4.95   -4.47   -3.38   -1.73    0.32    2.38    3.80
+   340.0    0.00    0.09    0.02   -0.21   -0.56   -1.03   -1.60   -2.30   -3.10   -3.95   -4.73   -5.27   -5.41   -5.01   -4.01   -2.44   -0.50    1.46    2.83
+   345.0    0.00    0.06   -0.03   -0.27   -0.61   -1.06   -1.62   -2.33   -3.17   -4.08   -4.93   -5.57   -5.80   -5.49   -4.59   -3.14   -1.31    0.55    1.87
+   350.0    0.00    0.03   -0.07   -0.29   -0.62   -1.04   -1.59   -2.30   -3.16   -4.12   -5.05   -5.77   -6.10   -5.90   -5.11   -3.78   -2.07   -0.30    0.97
+   355.0    0.00    0.00   -0.10   -0.30   -0.59   -0.98   -1.50   -2.20   -3.08   -4.07   -5.06   -5.87   -6.30   -6.22   -5.55   -4.34   -2.73   -1.04    0.19
+   360.0    0.00   -0.02   -0.12   -0.29   -0.53   -0.88   -1.37   -2.05   -2.93   -3.95   -4.99   -5.87   -6.40   -6.43   -5.89   -4.78   -3.25   -1.62   -0.42
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.91     -1.34     50.21                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.21   -0.87   -2.00   -3.54   -5.31   -7.00   -8.27   -8.91   -8.88   -8.38   -7.64   -6.76   -5.57   -3.62   -0.40    4.29   10.04   15.70
+     0.0    0.00   -0.38   -1.32   -2.76   -4.61   -6.68   -8.70  -10.37  -11.44  -11.86  -11.75  -11.36  -10.81   -9.97   -8.38   -5.39   -0.58    5.80   12.46
+     5.0    0.00   -0.38   -1.33   -2.79   -4.68   -6.78   -8.82  -10.48  -11.55  -11.96  -11.85  -11.46  -10.92  -10.08   -8.49   -5.54   -0.81    5.44   11.99
+    10.0    0.00   -0.37   -1.32   -2.81   -4.71   -6.83   -8.87  -10.53  -11.57  -11.96  -11.85  -11.46  -10.91  -10.07   -8.47   -5.52   -0.85    5.27   11.68
+    15.0    0.00   -0.36   -1.31   -2.80   -4.71   -6.83   -8.87  -10.50  -11.51  -11.88  -11.74  -11.34  -10.79   -9.92   -8.30   -5.34   -0.71    5.29   11.53
+    20.0    0.00   -0.34   -1.28   -2.76   -4.67   -6.78   -8.80  -10.40  -11.38  -11.70  -11.54  -11.12  -10.54   -9.65   -7.98   -4.98   -0.38    5.51   11.56
+    25.0    0.00   -0.33   -1.24   -2.70   -4.59   -6.69   -8.68  -10.24  -11.17  -11.45  -11.25  -10.80  -10.19   -9.25   -7.52   -4.47    0.13    5.91   11.75
+    30.0    0.00   -0.31   -1.19   -2.63   -4.49   -6.55   -8.51  -10.03  -10.90  -11.13  -10.88  -10.39   -9.74   -8.74   -6.93   -3.82    0.79    6.47   12.11
+    35.0    0.00   -0.28   -1.14   -2.53   -4.35   -6.37   -8.29   -9.75  -10.57  -10.74  -10.44   -9.90   -9.20   -8.14   -6.25   -3.06    1.57    7.18   12.64
+    40.0    0.00   -0.26   -1.07   -2.41   -4.18   -6.16   -8.02   -9.44  -10.20  -10.31   -9.95   -9.35   -8.59   -7.45   -5.48   -2.21    2.45    8.01   13.31
+    45.0    0.00   -0.23   -0.99   -2.28   -3.99   -5.91   -7.72   -9.08   -9.78   -9.83   -9.41   -8.75   -7.93   -6.72   -4.66   -1.31    3.39    8.92   14.12
+    50.0    0.00   -0.20   -0.91   -2.13   -3.78   -5.65   -7.40   -8.70   -9.34   -9.32   -8.83   -8.12   -7.23   -5.95   -3.81   -0.39    4.36    9.89   15.05
+    55.0    0.00   -0.17   -0.83   -1.98   -3.56   -5.36   -7.05   -8.29   -8.87   -8.78   -8.24   -7.46   -6.52   -5.17   -2.97    0.52    5.33   10.89   16.07
+    60.0    0.00   -0.14   -0.74   -1.83   -3.33   -5.06   -6.69   -7.87   -8.38   -8.24   -7.64   -6.80   -5.81   -4.41   -2.15    1.40    6.28   11.90   17.16
+    65.0    0.00   -0.11   -0.66   -1.67   -3.11   -4.77   -6.33   -7.44   -7.90   -7.70   -7.04   -6.16   -5.12   -3.68   -1.37    2.23    7.18   12.89   18.27
+    70.0    0.00   -0.09   -0.58   -1.53   -2.89   -4.48   -5.97   -7.03   -7.42   -7.17   -6.46   -5.54   -4.47   -3.00   -0.66    3.00    8.02   13.83   19.35
+    75.0    0.00   -0.06   -0.50   -1.39   -2.68   -4.21   -5.64   -6.63   -6.97   -6.66   -5.92   -4.97   -3.87   -2.38   -0.01    3.69    8.77   14.68   20.35
+    80.0    0.00   -0.04   -0.44   -1.26   -2.50   -3.96   -5.33   -6.27   -6.56   -6.21   -5.43   -4.45   -3.34   -1.84    0.54    4.28    9.42   15.42   21.23
+    85.0    0.00   -0.02   -0.38   -1.16   -2.34   -3.75   -5.07   -5.96   -6.20   -5.81   -5.01   -4.02   -2.90   -1.40    1.00    4.76    9.94   16.02   21.92
+    90.0    0.00    0.00   -0.33   -1.07   -2.21   -3.58   -4.86   -5.70   -5.91   -5.49   -4.67   -3.67   -2.56   -1.05    1.35    5.12   10.32   16.43   22.38
+    95.0    0.00    0.02   -0.29   -1.00   -2.12   -3.46   -4.71   -5.52   -5.70   -5.27   -4.43   -3.44   -2.32   -0.82    1.58    5.33   10.52   16.62   22.56
+   100.0    0.00    0.03   -0.27   -0.97   -2.06   -3.39   -4.62   -5.42   -5.59   -5.15   -4.31   -3.32   -2.21   -0.71    1.67    5.39   10.54   16.58   22.46
+   105.0    0.00    0.03   -0.26   -0.95   -2.05   -3.38   -4.61   -5.41   -5.58   -5.14   -4.31   -3.32   -2.22   -0.74    1.61    5.28   10.34   16.29   22.05
+   110.0    0.00    0.03   -0.26   -0.96   -2.08   -3.42   -4.67   -5.49   -5.67   -5.26   -4.44   -3.47   -2.37   -0.91    1.39    4.98    9.93   15.74   21.35
+   115.0    0.00    0.03   -0.27   -1.00   -2.15   -3.52   -4.80   -5.66   -5.88   -5.49   -4.71   -3.75   -2.67   -1.23    1.02    4.50    9.31   14.95   20.40
+   120.0    0.00    0.02   -0.30   -1.07   -2.25   -3.67   -5.01   -5.91   -6.19   -5.85   -5.10   -4.16   -3.10   -1.69    0.48    3.85    8.49   13.95   19.23
+   125.0    0.00    0.01   -0.34   -1.15   -2.39   -3.88   -5.27   -6.25   -6.59   -6.31   -5.60   -4.70   -3.66   -2.29   -0.19    3.04    7.50   12.77   17.91
+   130.0    0.00    0.00   -0.39   -1.25   -2.56   -4.12   -5.59   -6.65   -7.07   -6.86   -6.22   -5.35   -4.34   -3.02   -1.00    2.10    6.38   11.48   16.49
+   135.0    0.00   -0.02   -0.45   -1.38   -2.76   -4.39   -5.95   -7.10   -7.61   -7.49   -6.91   -6.09   -5.11   -3.84   -1.90    1.06    5.18   10.13   15.05
+   140.0    0.00   -0.03   -0.52   -1.51   -2.97   -4.69   -6.35   -7.59   -8.20   -8.18   -7.67   -6.90   -5.96   -4.72   -2.86   -0.02    3.96    8.78   13.65
+   145.0    0.00   -0.06   -0.59   -1.65   -3.19   -5.01   -6.75   -8.10   -8.82   -8.89   -8.46   -7.75   -6.84   -5.64   -3.84   -1.09    2.77    7.49   12.33
+   150.0    0.00   -0.08   -0.66   -1.80   -3.43   -5.33   -7.17   -8.61   -9.44   -9.61   -9.26   -8.60   -7.73   -6.56   -4.80   -2.12    1.66    6.32   11.15
+   155.0    0.00   -0.10   -0.74   -1.95   -3.66   -5.64   -7.57   -9.12  -10.04  -10.30  -10.03   -9.43   -8.58   -7.43   -5.69   -3.04    0.69    5.30   10.12
+   160.0    0.00   -0.13   -0.82   -2.09   -3.88   -5.94   -7.96   -9.59  -10.60  -10.95  -10.75  -10.19   -9.37   -8.21   -6.47   -3.83   -0.13    4.46    9.27
+   165.0    0.00   -0.15   -0.89   -2.23   -4.09   -6.23   -8.32  -10.02  -11.11  -11.53  -11.39  -10.86  -10.04   -8.87   -7.11   -4.46   -0.75    3.83    8.60
+   170.0    0.00   -0.17   -0.96   -2.36   -4.28   -6.48   -8.63  -10.39  -11.54  -12.01  -11.91  -11.40  -10.59   -9.39   -7.59   -4.90   -1.17    3.39    8.12
+   175.0    0.00   -0.20   -1.02   -2.47   -4.44   -6.70   -8.89  -10.70  -11.89  -12.39  -12.31  -11.81  -10.98   -9.75   -7.91   -5.17   -1.40    3.16    7.82
+   180.0    0.00   -0.22   -1.08   -2.57   -4.58   -6.87   -9.10  -10.93  -12.13  -12.64  -12.56  -12.05  -11.20   -9.94   -8.04   -5.25   -1.44    3.11    7.70
+   185.0    0.00   -0.24   -1.12   -2.65   -4.69   -7.00   -9.24  -11.08  -12.27  -12.77  -12.67  -12.13  -11.25   -9.95   -8.01   -5.16   -1.31    3.24    7.75
+   190.0    0.00   -0.25   -1.16   -2.71   -4.76   -7.08   -9.32  -11.14  -12.30  -12.76  -12.62  -12.04  -11.13   -9.80   -7.82   -4.92   -1.03    3.54    7.98
+   195.0    0.00   -0.27   -1.19   -2.74   -4.80   -7.11   -9.33  -11.11  -12.22  -12.62  -12.42  -11.80  -10.86   -9.50   -7.48   -4.54   -0.60    3.98    8.38
+   200.0    0.00   -0.28   -1.21   -2.75   -4.80   -7.08   -9.26  -10.99  -12.03  -12.35  -12.09  -11.42  -10.44   -9.07   -7.02   -4.04   -0.05    4.55    8.96
+   205.0    0.00   -0.29   -1.21   -2.74   -4.76   -7.01   -9.13  -10.79  -11.74  -11.98  -11.63  -10.91   -9.91   -8.52   -6.46   -3.44    0.60    5.26    9.70
+   210.0    0.00   -0.30   -1.21   -2.71   -4.69   -6.88   -8.94  -10.51  -11.37  -11.51  -11.09  -10.31   -9.28   -7.88   -5.81   -2.75    1.35    6.09   10.61
+   215.0    0.00   -0.30   -1.19   -2.66   -4.59   -6.71   -8.69  -10.17  -10.93  -10.97  -10.47   -9.64   -8.59   -7.18   -5.09   -1.99    2.18    7.02   11.65
+   220.0    0.00   -0.30   -1.17   -2.59   -4.45   -6.51   -8.40   -9.78  -10.45  -10.39   -9.80   -8.92   -7.85   -6.44   -4.33   -1.18    3.08    8.03   12.82
+   225.0    0.00   -0.30   -1.14   -2.51   -4.30   -6.27   -8.07   -9.36   -9.93   -9.78   -9.12   -8.19   -7.10   -5.67   -3.54   -0.32    4.03    9.11   14.06
+   230.0    0.00   -0.30   -1.11   -2.41   -4.13   -6.01   -7.72   -8.92   -9.40   -9.17   -8.45   -7.47   -6.35   -4.90   -2.73    0.55    5.01   10.22   15.35
+   235.0    0.00   -0.29   -1.06   -2.31   -3.94   -5.74   -7.36   -8.48   -8.88   -8.58   -7.80   -6.79   -5.64   -4.16   -1.94    1.41    5.98   11.33   16.63
+   240.0    0.00   -0.29   -1.02   -2.20   -3.75   -5.46   -7.01   -8.05   -8.39   -8.03   -7.20   -6.15   -4.97   -3.45   -1.19    2.24    6.91   12.40   17.86
+   245.0    0.00   -0.29   -0.98   -2.09   -3.56   -5.19   -6.67   -7.65   -7.94   -7.54   -6.67   -5.58   -4.36   -2.81   -0.50    3.00    7.77   13.39   19.00
+   250.0    0.00   -0.28   -0.93   -1.98   -3.38   -4.94   -6.35   -7.29   -7.54   -7.11   -6.21   -5.09   -3.83   -2.25    0.11    3.67    8.53   14.26   20.00
+   255.0    0.00   -0.27   -0.89   -1.88   -3.21   -4.70   -6.07   -6.97   -7.20   -6.75   -5.83   -4.68   -3.40   -1.78    0.60    4.21    9.15   14.99   20.85
+   260.0    0.00   -0.27   -0.85   -1.79   -3.05   -4.50   -5.83   -6.71   -6.93   -6.47   -5.53   -4.36   -3.06   -1.43    0.97    4.60    9.61   15.55   21.52
+   265.0    0.00   -0.27   -0.82   -1.71   -2.92   -4.32   -5.63   -6.50   -6.72   -6.27   -5.32   -4.14   -2.83   -1.21    1.18    4.83    9.89   15.94   22.00
+   270.0    0.00   -0.26   -0.80   -1.64   -2.82   -4.18   -5.47   -6.35   -6.58   -6.14   -5.19   -4.01   -2.72   -1.12    1.24    4.88    9.99   16.15   22.32
+   275.0    0.00   -0.26   -0.78   -1.60   -2.74   -4.08   -5.37   -6.26   -6.51   -6.08   -5.15   -3.99   -2.72   -1.16    1.15    4.77    9.92   16.19   22.46
+   280.0    0.00   -0.26   -0.77   -1.57   -2.69   -4.03   -5.31   -6.22   -6.50   -6.10   -5.19   -4.06   -2.83   -1.34    0.90    4.49    9.69   16.09   22.47
+   285.0    0.00   -0.27   -0.77   -1.56   -2.67   -4.01   -5.31   -6.24   -6.55   -6.18   -5.31   -4.22   -3.06   -1.65    0.52    4.08    9.33   15.85   22.34
+   290.0    0.00   -0.27   -0.78   -1.57   -2.69   -4.03   -5.35   -6.32   -6.67   -6.34   -5.52   -4.48   -3.39   -2.06    0.03    3.55    8.85   15.51   22.10
+   295.0    0.00   -0.28   -0.79   -1.60   -2.73   -4.09   -5.44   -6.45   -6.84   -6.56   -5.80   -4.82   -3.81   -2.58   -0.57    2.93    8.29   15.08   21.76
+   300.0    0.00   -0.29   -0.82   -1.65   -2.81   -4.20   -5.58   -6.63   -7.07   -6.85   -6.15   -5.25   -4.32   -3.17   -1.23    2.25    7.66   14.57   21.33
+   305.0    0.00   -0.30   -0.85   -1.72   -2.91   -4.34   -5.76   -6.86   -7.36   -7.21   -6.57   -5.74   -4.89   -3.82   -1.94    1.52    6.99   13.99   20.82
+   310.0    0.00   -0.31   -0.89   -1.80   -3.03   -4.51   -5.98   -7.13   -7.70   -7.61   -7.05   -6.30   -5.52   -4.51   -2.67    0.77    6.27   13.36   20.24
+   315.0    0.00   -0.32   -0.94   -1.89   -3.18   -4.71   -6.24   -7.45   -8.08   -8.07   -7.58   -6.90   -6.17   -5.21   -3.41    0.02    5.54   12.66   19.57
+   320.0    0.00   -0.33   -0.99   -2.00   -3.35   -4.94   -6.52   -7.80   -8.50   -8.56   -8.15   -7.52   -6.85   -5.92   -4.15   -0.74    4.77   11.92   18.83
+   325.0    0.00   -0.34   -1.04   -2.11   -3.52   -5.18   -6.83   -8.17   -8.94   -9.08   -8.73   -8.16   -7.52   -6.62   -4.87   -1.48    4.00   11.12   18.03
+   330.0    0.00   -0.35   -1.09   -2.22   -3.71   -5.43   -7.15   -8.55   -9.40   -9.60   -9.31   -8.79   -8.17   -7.29   -5.55   -2.21    3.21   10.28   17.18
+   335.0    0.00   -0.36   -1.14   -2.33   -3.89   -5.68   -7.47   -8.94   -9.84  -10.11   -9.87   -9.39   -8.79   -7.91   -6.20   -2.91    2.44    9.42   16.31
+   340.0    0.00   -0.37   -1.19   -2.44   -4.07   -5.93   -7.78   -9.31  -10.27  -10.59  -10.40   -9.94   -9.35   -8.49   -6.80   -3.57    1.68    8.56   15.42
+   345.0    0.00   -0.38   -1.24   -2.54   -4.23   -6.16   -8.07   -9.64  -10.65  -11.02  -10.86  -10.43   -9.85   -8.99   -7.33   -4.16    0.97    7.74   14.57
+   350.0    0.00   -0.38   -1.27   -2.63   -4.38   -6.37   -8.32   -9.94  -10.98  -11.38  -11.25  -10.83  -10.27   -9.42   -7.78   -4.68    0.34    6.98   13.77
+   355.0    0.00   -0.38   -1.30   -2.70   -4.51   -6.54   -8.54  -10.19  -11.25  -11.66  -11.55  -11.15  -10.59   -9.75   -8.14   -5.10   -0.19    6.32   13.06
+   360.0    0.00   -0.38   -1.32   -2.76   -4.61   -6.68   -8.70  -10.37  -11.44  -11.86  -11.75  -11.36  -10.81   -9.97   -8.38   -5.39   -0.58    5.80   12.46
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH700829.2     SNOW                                        TYPE / SERIAL NO    
+FIELD               NGS/TUM                  7    10-AUG-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+     -0.60     -1.26     68.94                              NORTH / EAST / UP   
+   NOAZI    0.00    1.36    2.58    3.53    4.22    4.61    4.65    4.51    4.23    3.80    3.46    3.14    2.93    2.96    3.40    4.57    6.79
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.80     -2.22     51.86                              NORTH / EAST / UP   
+   NOAZI    0.00   -2.43   -4.42   -6.10   -7.52   -8.82   -9.93  -10.81  -11.55  -11.93  -11.85  -11.13   -9.78   -7.75   -4.93   -1.11    3.86
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH700829.3     SNOW                                        TYPE / SERIAL NO    
+FIELD               NGS/TUM                  7    11-JUL-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+     -0.60     -1.26     68.94                              NORTH / EAST / UP   
+   NOAZI    0.00    1.36    2.58    3.53    4.22    4.61    4.65    4.51    4.23    3.80    3.46    3.14    2.93    2.96    3.40    4.57    6.79
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.80     -2.22     51.86                              NORTH / EAST / UP   
+   NOAZI    0.00   -2.43   -4.42   -6.10   -7.52   -8.82   -9.93  -10.81  -11.55  -11.93  -11.85  -11.13   -9.78   -7.75   -4.93   -1.11    3.86
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH700829.A     SNOW                                        TYPE / SERIAL NO    
+FIELD               NGS/TUM                  7    10-AUG-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+     -0.60     -1.26     68.94                              NORTH / EAST / UP   
+   NOAZI    0.00    1.36    2.58    3.53    4.22    4.61    4.65    4.51    4.23    3.80    3.46    3.14    2.93    2.96    3.40    4.57    6.79
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.80     -2.22     51.86                              NORTH / EAST / UP   
+   NOAZI    0.00   -2.43   -4.42   -6.10   -7.52   -8.82   -9.93  -10.81  -11.55  -11.93  -11.85  -11.13   -9.78   -7.75   -4.93   -1.11    3.86
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH700829.A1    SNOW                                        TYPE / SERIAL NO    
+FIELD               NGS/TUM                  7    10-AUG-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+     -0.60     -1.26     68.94                              NORTH / EAST / UP   
+   NOAZI    0.00    1.36    2.58    3.53    4.22    4.61    4.65    4.51    4.23    3.80    3.46    3.14    2.93    2.96    3.40    4.57    6.79
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.80     -2.22     51.86                              NORTH / EAST / UP   
+   NOAZI    0.00   -2.43   -4.42   -6.10   -7.52   -8.82   -9.93  -10.81  -11.55  -11.93  -11.85  -11.13   -9.78   -7.75   -4.93   -1.11    3.86
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH700936A_M    NONE                                        TYPE / SERIAL NO    
+COPIED              TUM                      0    27-JAN-03 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+COPIED FROM AOAD/M_T                                        COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.60     -0.46     91.24                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.24   -0.92   -1.97   -3.28   -4.69   -6.05   -7.19   -7.97   -8.30   -8.14   -7.46   -6.27   -4.54   -2.20    0.87    4.79    9.56   14.88
+     0.0    0.00   -0.28   -1.01   -2.12   -3.49   -4.95   -6.35   -7.52   -8.32   -8.63   -8.43   -7.72   -6.51   -4.78   -2.47    0.58    4.48    9.16   14.25
+     5.0    0.00   -0.28   -1.01   -2.12   -3.48   -4.94   -6.34   -7.50   -8.30   -8.62   -8.42   -7.70   -6.48   -4.75   -2.42    0.63    4.53    9.23   14.33
+    10.0    0.00   -0.28   -1.01   -2.11   -3.46   -4.92   -6.32   -7.48   -8.27   -8.59   -8.39   -7.68   -6.46   -4.72   -2.38    0.69    4.60    9.32   14.45
+    15.0    0.00   -0.27   -1.00   -2.10   -3.45   -4.90   -6.29   -7.46   -8.25   -8.57   -8.37   -7.65   -6.43   -4.68   -2.33    0.75    4.69    9.43   14.61
+    20.0    0.00   -0.27   -0.99   -2.08   -3.43   -4.88   -6.27   -7.43   -8.22   -8.54   -8.35   -7.63   -6.40   -4.64   -2.28    0.83    4.78    9.56   14.80
+    25.0    0.00   -0.27   -0.98   -2.07   -3.41   -4.85   -6.24   -7.39   -8.19   -8.51   -8.32   -7.60   -6.37   -4.60   -2.22    0.90    4.89    9.71   15.02
+    30.0    0.00   -0.26   -0.98   -2.06   -3.39   -4.83   -6.21   -7.36   -8.15   -8.48   -8.29   -7.57   -6.33   -4.55   -2.15    0.99    5.00    9.87   15.25
+    35.0    0.00   -0.26   -0.97   -2.04   -3.37   -4.80   -6.17   -7.32   -8.11   -8.44   -8.25   -7.54   -6.29   -4.50   -2.09    1.08    5.12   10.03   15.48
+    40.0    0.00   -0.26   -0.96   -2.02   -3.34   -4.77   -6.13   -7.28   -8.07   -8.40   -8.21   -7.50   -6.25   -4.45   -2.02    1.17    5.25   10.19   15.70
+    45.0    0.00   -0.25   -0.95   -2.01   -3.32   -4.74   -6.10   -7.24   -8.03   -8.35   -8.17   -7.45   -6.20   -4.40   -1.95    1.26    5.36   10.34   15.89
+    50.0    0.00   -0.25   -0.94   -1.99   -3.29   -4.70   -6.06   -7.19   -7.98   -8.31   -8.12   -7.40   -6.15   -4.34   -1.88    1.34    5.46   10.46   16.05
+    55.0    0.00   -0.24   -0.93   -1.97   -3.27   -4.67   -6.02   -7.15   -7.93   -8.25   -8.07   -7.35   -6.10   -4.28   -1.82    1.41    5.54   10.55   16.15
+    60.0    0.00   -0.24   -0.92   -1.95   -3.24   -4.64   -5.98   -7.10   -7.88   -8.20   -8.01   -7.30   -6.04   -4.23   -1.76    1.47    5.59   10.60   16.20
+    65.0    0.00   -0.24   -0.91   -1.94   -3.22   -4.60   -5.94   -7.06   -7.83   -8.15   -7.96   -7.24   -5.99   -4.18   -1.72    1.50    5.61   10.60   16.20
+    70.0    0.00   -0.23   -0.90   -1.92   -3.19   -4.57   -5.90   -7.02   -7.79   -8.10   -7.91   -7.19   -5.94   -4.14   -1.70    1.50    5.60   10.57   16.14
+    75.0    0.00   -0.23   -0.89   -1.91   -3.17   -4.55   -5.87   -6.98   -7.75   -8.06   -7.87   -7.15   -5.91   -4.12   -1.70    1.48    5.55   10.50   16.04
+    80.0    0.00   -0.23   -0.88   -1.89   -3.16   -4.53   -5.84   -6.95   -7.72   -8.03   -7.83   -7.12   -5.89   -4.11   -1.71    1.44    5.47   10.39   15.91
+    85.0    0.00   -0.22   -0.87   -1.88   -3.14   -4.51   -5.82   -6.93   -7.69   -8.00   -7.81   -7.10   -5.88   -4.13   -1.75    1.36    5.36   10.25   15.74
+    90.0    0.00   -0.22   -0.87   -1.87   -3.13   -4.49   -5.81   -6.92   -7.68   -7.99   -7.80   -7.10   -5.90   -4.16   -1.82    1.27    5.24   10.09   15.56
+    95.0    0.00   -0.22   -0.86   -1.87   -3.12   -4.49   -5.80   -6.91   -7.68   -7.99   -7.81   -7.12   -5.93   -4.21   -1.90    1.16    5.10    9.92   15.37
+   100.0    0.00   -0.21   -0.86   -1.87   -3.12   -4.48   -5.80   -6.91   -7.68   -8.01   -7.84   -7.16   -5.98   -4.29   -1.99    1.04    4.96    9.76   15.18
+   105.0    0.00   -0.21   -0.86   -1.86   -3.12   -4.49   -5.81   -6.93   -7.70   -8.04   -7.88   -7.21   -6.05   -4.37   -2.09    0.93    4.82    9.60   15.00
+   110.0    0.00   -0.21   -0.86   -1.87   -3.13   -4.50   -5.82   -6.95   -7.73   -8.07   -7.93   -7.28   -6.13   -4.47   -2.20    0.81    4.69    9.46   14.84
+   115.0    0.00   -0.21   -0.86   -1.87   -3.13   -4.51   -5.84   -6.97   -7.76   -8.12   -7.99   -7.35   -6.22   -4.56   -2.30    0.71    4.59    9.34   14.71
+   120.0    0.00   -0.21   -0.86   -1.87   -3.15   -4.53   -5.87   -7.00   -7.80   -8.17   -8.05   -7.43   -6.31   -4.66   -2.39    0.62    4.50    9.24   14.60
+   125.0    0.00   -0.21   -0.86   -1.88   -3.16   -4.55   -5.89   -7.04   -7.85   -8.22   -8.12   -7.51   -6.39   -4.74   -2.47    0.55    4.44    9.18   14.52
+   130.0    0.00   -0.21   -0.86   -1.89   -3.17   -4.57   -5.92   -7.07   -7.89   -8.27   -8.18   -7.58   -6.47   -4.81   -2.53    0.51    4.40    9.13   14.47
+   135.0    0.00   -0.21   -0.86   -1.90   -3.19   -4.60   -5.95   -7.11   -7.93   -8.32   -8.23   -7.64   -6.53   -4.87   -2.57    0.47    4.37    9.11   14.44
+   140.0    0.00   -0.21   -0.87   -1.91   -3.21   -4.62   -5.98   -7.14   -7.96   -8.36   -8.28   -7.69   -6.58   -4.91   -2.60    0.46    4.37    9.10   14.43
+   145.0    0.00   -0.21   -0.87   -1.91   -3.22   -4.64   -6.01   -7.17   -8.00   -8.39   -8.31   -7.72   -6.61   -4.93   -2.62    0.45    4.36    9.10   14.44
+   150.0    0.00   -0.21   -0.87   -1.92   -3.24   -4.66   -6.04   -7.20   -8.02   -8.42   -8.33   -7.74   -6.63   -4.94   -2.62    0.45    4.37    9.10   14.45
+   155.0    0.00   -0.21   -0.87   -1.93   -3.25   -4.68   -6.06   -7.22   -8.05   -8.44   -8.35   -7.75   -6.63   -4.94   -2.62    0.46    4.36    9.10   14.46
+   160.0    0.00   -0.21   -0.88   -1.93   -3.26   -4.69   -6.07   -7.24   -8.06   -8.45   -8.35   -7.75   -6.62   -4.94   -2.61    0.45    4.36    9.09   14.46
+   165.0    0.00   -0.21   -0.88   -1.94   -3.27   -4.70   -6.09   -7.25   -8.07   -8.46   -8.35   -7.74   -6.61   -4.93   -2.61    0.45    4.34    9.08   14.46
+   170.0    0.00   -0.21   -0.88   -1.94   -3.27   -4.71   -6.10   -7.26   -8.08   -8.46   -8.35   -7.73   -6.60   -4.92   -2.61    0.43    4.32    9.05   14.44
+   175.0    0.00   -0.21   -0.88   -1.94   -3.27   -4.71   -6.10   -7.27   -8.08   -8.46   -8.34   -7.72   -6.59   -4.91   -2.61    0.42    4.29    9.02   14.41
+   180.0    0.00   -0.21   -0.88   -1.94   -3.27   -4.71   -6.10   -7.27   -8.08   -8.46   -8.34   -7.71   -6.57   -4.90   -2.62    0.40    4.26    9.00   14.38
+   185.0    0.00   -0.21   -0.88   -1.93   -3.26   -4.70   -6.09   -7.26   -8.08   -8.45   -8.33   -7.70   -6.56   -4.90   -2.62    0.38    4.24    8.98   14.35
+   190.0    0.00   -0.21   -0.87   -1.93   -3.25   -4.69   -6.08   -7.25   -8.07   -8.44   -8.32   -7.69   -6.55   -4.89   -2.62    0.38    4.24    8.98   14.33
+   195.0    0.00   -0.21   -0.87   -1.92   -3.24   -4.68   -6.07   -7.24   -8.06   -8.43   -8.30   -7.67   -6.54   -4.88   -2.61    0.39    4.26    9.00   14.33
+   200.0    0.00   -0.21   -0.87   -1.92   -3.23   -4.67   -6.05   -7.22   -8.04   -8.41   -8.29   -7.65   -6.52   -4.86   -2.59    0.42    4.30    9.06   14.37
+   205.0    0.00   -0.21   -0.87   -1.91   -3.22   -4.65   -6.03   -7.20   -8.02   -8.39   -8.26   -7.62   -6.48   -4.82   -2.55    0.47    4.38    9.15   14.44
+   210.0    0.00   -0.21   -0.87   -1.90   -3.21   -4.63   -6.01   -7.18   -8.00   -8.36   -8.23   -7.58   -6.44   -4.77   -2.49    0.55    4.48    9.28   14.55
+   215.0    0.00   -0.21   -0.87   -1.90   -3.20   -4.61   -5.99   -7.15   -7.97   -8.33   -8.18   -7.53   -6.38   -4.70   -2.41    0.65    4.61    9.43   14.69
+   220.0    0.00   -0.21   -0.87   -1.89   -3.19   -4.60   -5.97   -7.13   -7.93   -8.28   -8.13   -7.47   -6.31   -4.62   -2.31    0.78    4.77    9.61   14.87
+   225.0    0.00   -0.21   -0.87   -1.89   -3.18   -4.58   -5.94   -7.10   -7.89   -8.24   -8.07   -7.40   -6.22   -4.52   -2.19    0.91    4.93    9.80   15.07
+   230.0    0.00   -0.21   -0.87   -1.89   -3.17   -4.57   -5.92   -7.07   -7.85   -8.18   -8.01   -7.32   -6.13   -4.41   -2.07    1.06    5.10    9.98   15.28
+   235.0    0.00   -0.22   -0.87   -1.89   -3.16   -4.56   -5.90   -7.03   -7.81   -8.13   -7.94   -7.24   -6.03   -4.30   -1.94    1.20    5.25   10.15   15.47
+   240.0    0.00   -0.22   -0.87   -1.89   -3.16   -4.55   -5.88   -7.01   -7.77   -8.07   -7.87   -7.16   -5.94   -4.19   -1.82    1.33    5.39   10.29   15.63
+   245.0    0.00   -0.22   -0.87   -1.89   -3.16   -4.54   -5.87   -6.98   -7.73   -8.02   -7.81   -7.08   -5.86   -4.10   -1.71    1.44    5.49   10.39   15.74
+   250.0    0.00   -0.22   -0.88   -1.90   -3.17   -4.54   -5.86   -6.96   -7.70   -7.98   -7.76   -7.02   -5.79   -4.01   -1.62    1.53    5.56   10.44   15.79
+   255.0    0.00   -0.23   -0.88   -1.90   -3.17   -4.54   -5.86   -6.95   -7.68   -7.95   -7.72   -6.98   -5.73   -3.96   -1.56    1.58    5.58   10.43   15.78
+   260.0    0.00   -0.23   -0.89   -1.91   -3.18   -4.55   -5.86   -6.94   -7.66   -7.93   -7.70   -6.96   -5.71   -3.92   -1.53    1.59    5.57   10.37   15.71
+   265.0    0.00   -0.23   -0.90   -1.92   -3.19   -4.56   -5.86   -6.94   -7.66   -7.93   -7.70   -6.96   -5.70   -3.92   -1.53    1.57    5.51   10.26   15.58
+   270.0    0.00   -0.24   -0.91   -1.94   -3.21   -4.58   -5.88   -6.95   -7.67   -7.94   -7.71   -6.98   -5.73   -3.94   -1.56    1.52    5.41   10.11   15.40
+   275.0    0.00   -0.24   -0.92   -1.95   -3.23   -4.60   -5.90   -6.97   -7.69   -7.96   -7.74   -7.02   -5.77   -4.00   -1.62    1.44    5.28    9.93   15.20
+   280.0    0.00   -0.25   -0.93   -1.97   -3.25   -4.62   -5.93   -7.00   -7.72   -8.00   -7.79   -7.07   -5.84   -4.07   -1.71    1.33    5.14    9.74   14.98
+   285.0    0.00   -0.25   -0.94   -1.98   -3.27   -4.65   -5.96   -7.04   -7.77   -8.06   -7.86   -7.15   -5.92   -4.16   -1.81    1.21    4.99    9.55   14.77
+   290.0    0.00   -0.25   -0.95   -2.00   -3.30   -4.69   -6.00   -7.09   -7.82   -8.12   -7.93   -7.23   -6.01   -4.26   -1.92    1.08    4.84    9.38   14.58
+   295.0    0.00   -0.26   -0.96   -2.02   -3.33   -4.72   -6.04   -7.14   -7.88   -8.19   -8.00   -7.31   -6.11   -4.36   -2.04    0.96    4.70    9.23   14.43
+   300.0    0.00   -0.26   -0.97   -2.04   -3.35   -4.76   -6.09   -7.19   -7.95   -8.26   -8.08   -7.40   -6.20   -4.47   -2.15    0.83    4.58    9.10   14.31
+   305.0    0.00   -0.26   -0.98   -2.05   -3.38   -4.79   -6.14   -7.25   -8.01   -8.33   -8.16   -7.48   -6.29   -4.57   -2.26    0.73    4.47    9.01   14.22
+   310.0    0.00   -0.27   -0.98   -2.07   -3.40   -4.83   -6.18   -7.31   -8.08   -8.40   -8.23   -7.56   -6.37   -4.66   -2.35    0.63    4.40    8.96   14.17
+   315.0    0.00   -0.27   -0.99   -2.08   -3.43   -4.86   -6.23   -7.36   -8.14   -8.47   -8.30   -7.62   -6.44   -4.73   -2.43    0.56    4.34    8.93   14.15
+   320.0    0.00   -0.27   -1.00   -2.10   -3.45   -4.89   -6.27   -7.41   -8.19   -8.52   -8.35   -7.67   -6.49   -4.79   -2.49    0.50    4.31    8.92   14.15
+   325.0    0.00   -0.28   -1.01   -2.11   -3.46   -4.92   -6.30   -7.45   -8.24   -8.57   -8.39   -7.71   -6.53   -4.83   -2.54    0.47    4.29    8.93   14.15
+   330.0    0.00   -0.28   -1.01   -2.12   -3.48   -4.94   -6.33   -7.49   -8.28   -8.61   -8.43   -7.74   -6.56   -4.86   -2.56    0.45    4.29    8.95   14.16
+   335.0    0.00   -0.28   -1.02   -2.13   -3.49   -4.95   -6.35   -7.51   -8.31   -8.63   -8.45   -7.76   -6.57   -4.87   -2.57    0.45    4.31    8.98   14.16
+   340.0    0.00   -0.28   -1.02   -2.13   -3.50   -4.96   -6.36   -7.53   -8.33   -8.65   -8.46   -7.77   -6.57   -4.87   -2.57    0.46    4.33    9.01   14.16
+   345.0    0.00   -0.28   -1.02   -2.13   -3.50   -4.97   -6.37   -7.54   -8.33   -8.66   -8.46   -7.76   -6.57   -4.86   -2.56    0.48    4.36    9.04   14.16
+   350.0    0.00   -0.28   -1.02   -2.13   -3.50   -4.97   -6.37   -7.54   -8.34   -8.66   -8.46   -7.75   -6.55   -4.84   -2.53    0.51    4.39    9.07   14.17
+   355.0    0.00   -0.28   -1.02   -2.13   -3.49   -4.96   -6.37   -7.54   -8.33   -8.65   -8.45   -7.74   -6.53   -4.81   -2.50    0.54    4.43    9.11   14.20
+   360.0    0.00   -0.28   -1.01   -2.12   -3.49   -4.95   -6.35   -7.52   -8.32   -8.63   -8.43   -7.72   -6.51   -4.78   -2.47    0.58    4.48    9.16   14.25
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.10     -0.62    120.06                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.13   -0.52   -1.10   -1.82   -2.62   -3.43   -4.21   -4.85   -5.23   -5.25   -4.83   -3.98   -2.75   -1.23    0.59    2.86    5.83    9.66
+     0.0    0.00   -0.12   -0.48   -1.03   -1.72   -2.49   -3.29   -4.07   -4.73   -5.15   -5.20   -4.83   -4.05   -2.92   -1.50    0.25    2.53    5.61    9.51
+     5.0    0.00   -0.11   -0.47   -1.03   -1.71   -2.48   -3.29   -4.06   -4.72   -5.13   -5.20   -4.83   -4.05   -2.93   -1.51    0.25    2.54    5.58    9.37
+    10.0    0.00   -0.11   -0.47   -1.02   -1.71   -2.48   -3.28   -4.05   -4.71   -5.12   -5.19   -4.83   -4.06   -2.93   -1.51    0.26    2.55    5.55    9.26
+    15.0    0.00   -0.11   -0.46   -1.01   -1.71   -2.48   -3.28   -4.05   -4.70   -5.11   -5.17   -4.82   -4.05   -2.93   -1.50    0.27    2.55    5.53    9.17
+    20.0    0.00   -0.10   -0.45   -1.01   -1.70   -2.48   -3.28   -4.04   -4.69   -5.10   -5.16   -4.81   -4.04   -2.92   -1.48    0.29    2.57    5.52    9.12
+    25.0    0.00   -0.10   -0.45   -1.00   -1.70   -2.47   -3.28   -4.04   -4.68   -5.08   -5.14   -4.79   -4.02   -2.89   -1.45    0.32    2.59    5.52    9.12
+    30.0    0.00   -0.10   -0.44   -1.00   -1.69   -2.47   -3.27   -4.03   -4.67   -5.07   -5.13   -4.77   -3.99   -2.86   -1.41    0.36    2.61    5.53    9.16
+    35.0    0.00   -0.09   -0.44   -0.99   -1.69   -2.47   -3.27   -4.03   -4.66   -5.06   -5.11   -4.75   -3.96   -2.81   -1.36    0.41    2.65    5.57    9.23
+    40.0    0.00   -0.09   -0.44   -0.99   -1.68   -2.46   -3.27   -4.03   -4.66   -5.05   -5.10   -4.72   -3.92   -2.76   -1.30    0.47    2.69    5.61    9.34
+    45.0    0.00   -0.09   -0.43   -0.98   -1.68   -2.46   -3.26   -4.02   -4.66   -5.05   -5.09   -4.70   -3.88   -2.70   -1.23    0.53    2.74    5.66    9.47
+    50.0    0.00   -0.09   -0.43   -0.98   -1.67   -2.46   -3.26   -4.03   -4.66   -5.05   -5.08   -4.68   -3.84   -2.65   -1.17    0.59    2.79    5.72    9.60
+    55.0    0.00   -0.09   -0.43   -0.98   -1.67   -2.45   -3.26   -4.03   -4.66   -5.05   -5.07   -4.66   -3.81   -2.59   -1.11    0.65    2.84    5.77    9.73
+    60.0    0.00   -0.09   -0.43   -0.98   -1.67   -2.46   -3.27   -4.04   -4.67   -5.06   -5.07   -4.64   -3.77   -2.55   -1.05    0.70    2.88    5.81    9.83
+    65.0    0.00   -0.09   -0.43   -0.98   -1.67   -2.46   -3.27   -4.05   -4.69   -5.07   -5.07   -4.63   -3.75   -2.51   -1.02    0.74    2.91    5.84    9.91
+    70.0    0.00   -0.09   -0.43   -0.98   -1.68   -2.47   -3.29   -4.06   -4.70   -5.08   -5.08   -4.63   -3.74   -2.49   -0.99    0.75    2.92    5.85    9.95
+    75.0    0.00   -0.09   -0.43   -0.99   -1.69   -2.48   -3.30   -4.08   -4.72   -5.10   -5.09   -4.63   -3.74   -2.49   -0.99    0.76    2.92    5.85    9.96
+    80.0    0.00   -0.09   -0.44   -0.99   -1.70   -2.50   -3.32   -4.11   -4.74   -5.12   -5.11   -4.64   -3.74   -2.50   -1.00    0.74    2.90    5.82    9.93
+    85.0    0.00   -0.10   -0.44   -1.00   -1.71   -2.52   -3.35   -4.13   -4.77   -5.14   -5.12   -4.66   -3.76   -2.52   -1.03    0.71    2.86    5.78    9.86
+    90.0    0.00   -0.10   -0.45   -1.02   -1.73   -2.54   -3.37   -4.16   -4.79   -5.16   -5.14   -4.68   -3.79   -2.56   -1.07    0.66    2.82    5.73    9.78
+    95.0    0.00   -0.10   -0.46   -1.03   -1.75   -2.57   -3.40   -4.19   -4.82   -5.18   -5.16   -4.70   -3.82   -2.60   -1.12    0.61    2.77    5.67    9.68
+   100.0    0.00   -0.10   -0.47   -1.05   -1.78   -2.59   -3.43   -4.22   -4.84   -5.20   -5.18   -4.73   -3.86   -2.65   -1.18    0.56    2.72    5.61    9.58
+   105.0    0.00   -0.11   -0.48   -1.06   -1.80   -2.62   -3.46   -4.24   -4.87   -5.22   -5.20   -4.75   -3.90   -2.70   -1.23    0.52    2.68    5.56    9.48
+   110.0    0.00   -0.11   -0.49   -1.08   -1.82   -2.65   -3.49   -4.27   -4.89   -5.24   -5.22   -4.78   -3.93   -2.74   -1.27    0.48    2.66    5.53    9.40
+   115.0    0.00   -0.12   -0.50   -1.10   -1.85   -2.68   -3.52   -4.29   -4.90   -5.25   -5.24   -4.80   -3.96   -2.77   -1.30    0.46    2.65    5.51    9.33
+   120.0    0.00   -0.12   -0.51   -1.11   -1.87   -2.70   -3.54   -4.31   -4.92   -5.26   -5.25   -4.83   -3.99   -2.79   -1.31    0.46    2.66    5.51    9.29
+   125.0    0.00   -0.12   -0.52   -1.13   -1.89   -2.72   -3.56   -4.32   -4.93   -5.27   -5.26   -4.84   -4.00   -2.80   -1.31    0.48    2.69    5.53    9.26
+   130.0    0.00   -0.13   -0.52   -1.14   -1.91   -2.74   -3.57   -4.33   -4.93   -5.28   -5.28   -4.86   -4.01   -2.80   -1.29    0.52    2.73    5.57    9.26
+   135.0    0.00   -0.13   -0.53   -1.15   -1.92   -2.75   -3.58   -4.34   -4.94   -5.29   -5.29   -4.87   -4.02   -2.79   -1.26    0.57    2.79    5.61    9.27
+   140.0    0.00   -0.13   -0.54   -1.16   -1.93   -2.76   -3.59   -4.34   -4.94   -5.29   -5.30   -4.87   -4.02   -2.78   -1.22    0.62    2.85    5.66    9.28
+   145.0    0.00   -0.14   -0.55   -1.17   -1.94   -2.77   -3.59   -4.34   -4.95   -5.30   -5.30   -4.88   -4.01   -2.75   -1.18    0.67    2.91    5.71    9.29
+   150.0    0.00   -0.14   -0.55   -1.18   -1.95   -2.77   -3.59   -4.34   -4.95   -5.31   -5.31   -4.89   -4.01   -2.74   -1.15    0.72    2.95    5.75    9.30
+   155.0    0.00   -0.14   -0.56   -1.18   -1.95   -2.77   -3.59   -4.34   -4.95   -5.32   -5.32   -4.89   -4.01   -2.72   -1.12    0.75    2.99    5.78    9.30
+   160.0    0.00   -0.15   -0.56   -1.18   -1.95   -2.77   -3.59   -4.34   -4.96   -5.33   -5.34   -4.90   -4.01   -2.72   -1.11    0.76    3.00    5.79    9.28
+   165.0    0.00   -0.15   -0.56   -1.18   -1.94   -2.76   -3.58   -4.34   -4.96   -5.34   -5.35   -4.91   -4.01   -2.72   -1.12    0.76    3.00    5.79    9.26
+   170.0    0.00   -0.15   -0.56   -1.18   -1.94   -2.75   -3.57   -4.34   -4.97   -5.35   -5.36   -4.92   -4.02   -2.73   -1.14    0.73    2.97    5.77    9.23
+   175.0    0.00   -0.15   -0.57   -1.18   -1.93   -2.74   -3.57   -4.34   -4.98   -5.36   -5.37   -4.93   -4.03   -2.75   -1.17    0.69    2.93    5.74    9.20
+   180.0    0.00   -0.16   -0.57   -1.18   -1.92   -2.74   -3.56   -4.34   -4.98   -5.37   -5.38   -4.94   -4.04   -2.77   -1.21    0.63    2.88    5.71    9.17
+   185.0    0.00   -0.16   -0.57   -1.17   -1.91   -2.73   -3.56   -4.35   -4.99   -5.38   -5.38   -4.94   -4.05   -2.79   -1.25    0.58    2.83    5.69    9.16
+   190.0    0.00   -0.16   -0.57   -1.17   -1.90   -2.72   -3.56   -4.35   -5.00   -5.39   -5.39   -4.93   -4.05   -2.81   -1.29    0.53    2.79    5.68    9.18
+   195.0    0.00   -0.16   -0.56   -1.16   -1.90   -2.71   -3.55   -4.35   -5.01   -5.39   -5.38   -4.92   -4.04   -2.81   -1.31    0.49    2.76    5.69    9.22
+   200.0    0.00   -0.16   -0.56   -1.16   -1.89   -2.70   -3.55   -4.35   -5.01   -5.39   -5.37   -4.91   -4.02   -2.80   -1.32    0.48    2.76    5.72    9.30
+   205.0    0.00   -0.16   -0.56   -1.16   -1.88   -2.70   -3.55   -4.35   -5.01   -5.39   -5.36   -4.88   -3.99   -2.78   -1.30    0.49    2.79    5.79    9.40
+   210.0    0.00   -0.16   -0.56   -1.15   -1.88   -2.69   -3.54   -4.35   -5.01   -5.38   -5.34   -4.86   -3.96   -2.74   -1.27    0.53    2.85    5.88    9.53
+   215.0    0.00   -0.17   -0.56   -1.15   -1.88   -2.69   -3.54   -4.35   -5.01   -5.37   -5.32   -4.83   -3.92   -2.70   -1.21    0.60    2.93    5.99    9.69
+   220.0    0.00   -0.17   -0.57   -1.15   -1.87   -2.69   -3.54   -4.35   -5.00   -5.36   -5.31   -4.80   -3.88   -2.64   -1.14    0.69    3.04    6.13    9.85
+   225.0    0.00   -0.17   -0.57   -1.15   -1.87   -2.69   -3.54   -4.34   -4.99   -5.35   -5.29   -4.78   -3.85   -2.59   -1.06    0.79    3.17    6.27   10.02
+   230.0    0.00   -0.17   -0.57   -1.15   -1.88   -2.69   -3.53   -4.33   -4.98   -5.34   -5.28   -4.76   -3.82   -2.54   -0.98    0.90    3.30    6.41   10.17
+   235.0    0.00   -0.17   -0.57   -1.16   -1.88   -2.69   -3.53   -4.33   -4.97   -5.32   -5.27   -4.76   -3.81   -2.50   -0.91    1.01    3.43    6.54   10.30
+   240.0    0.00   -0.17   -0.57   -1.16   -1.88   -2.69   -3.52   -4.32   -4.96   -5.32   -5.27   -4.76   -3.81   -2.48   -0.85    1.11    3.55    6.65   10.40
+   245.0    0.00   -0.17   -0.58   -1.17   -1.89   -2.69   -3.52   -4.31   -4.95   -5.31   -5.28   -4.78   -3.82   -2.48   -0.82    1.18    3.64    6.72   10.45
+   250.0    0.00   -0.17   -0.58   -1.17   -1.89   -2.69   -3.52   -4.30   -4.93   -5.31   -5.29   -4.81   -3.86   -2.50   -0.80    1.23    3.69    6.76   10.46
+   255.0    0.00   -0.17   -0.58   -1.18   -1.90   -2.69   -3.51   -4.29   -4.92   -5.30   -5.30   -4.84   -3.90   -2.54   -0.82    1.24    3.71    6.75   10.43
+   260.0    0.00   -0.17   -0.58   -1.18   -1.90   -2.70   -3.51   -4.27   -4.91   -5.30   -5.32   -4.88   -3.96   -2.59   -0.86    1.22    3.69    6.70   10.36
+   265.0    0.00   -0.17   -0.58   -1.18   -1.91   -2.70   -3.50   -4.26   -4.90   -5.30   -5.34   -4.92   -4.02   -2.66   -0.92    1.16    3.63    6.61   10.26
+   270.0    0.00   -0.17   -0.58   -1.19   -1.91   -2.70   -3.50   -4.25   -4.89   -5.30   -5.36   -4.96   -4.08   -2.73   -0.99    1.08    3.53    6.49   10.15
+   275.0    0.00   -0.17   -0.58   -1.19   -1.91   -2.70   -3.49   -4.24   -4.88   -5.29   -5.37   -4.99   -4.13   -2.80   -1.08    0.98    3.41    6.35   10.04
+   280.0    0.00   -0.17   -0.58   -1.19   -1.91   -2.69   -3.48   -4.23   -4.87   -5.29   -5.37   -5.02   -4.17   -2.86   -1.16    0.86    3.26    6.20    9.93
+   285.0    0.00   -0.17   -0.58   -1.18   -1.91   -2.69   -3.47   -4.22   -4.86   -5.28   -5.37   -5.03   -4.20   -2.92   -1.25    0.74    3.11    6.05    9.85
+   290.0    0.00   -0.16   -0.58   -1.18   -1.90   -2.68   -3.46   -4.21   -4.85   -5.27   -5.37   -5.03   -4.21   -2.95   -1.33    0.62    2.96    5.90    9.79
+   295.0    0.00   -0.16   -0.57   -1.17   -1.89   -2.67   -3.45   -4.20   -4.84   -5.26   -5.35   -5.02   -4.21   -2.98   -1.39    0.51    2.82    5.78    9.77
+   300.0    0.00   -0.16   -0.57   -1.16   -1.88   -2.65   -3.44   -4.19   -4.83   -5.25   -5.34   -4.99   -4.19   -2.98   -1.44    0.42    2.69    5.68    9.78
+   305.0    0.00   -0.16   -0.56   -1.15   -1.87   -2.64   -3.42   -4.18   -4.82   -5.24   -5.32   -4.97   -4.17   -2.98   -1.47    0.34    2.59    5.61    9.82
+   310.0    0.00   -0.15   -0.56   -1.14   -1.85   -2.62   -3.41   -4.16   -4.81   -5.23   -5.30   -4.94   -4.14   -2.96   -1.49    0.28    2.51    5.57    9.87
+   315.0    0.00   -0.15   -0.55   -1.13   -1.83   -2.60   -3.39   -4.15   -4.80   -5.21   -5.28   -4.91   -4.10   -2.94   -1.49    0.24    2.46    5.55    9.94
+   320.0    0.00   -0.15   -0.54   -1.12   -1.82   -2.58   -3.38   -4.14   -4.79   -5.20   -5.26   -4.88   -4.07   -2.91   -1.49    0.22    2.43    5.55   10.00
+   325.0    0.00   -0.14   -0.53   -1.11   -1.80   -2.57   -3.36   -4.13   -4.78   -5.19   -5.24   -4.86   -4.04   -2.89   -1.49    0.21    2.43    5.57   10.04
+   330.0    0.00   -0.14   -0.53   -1.10   -1.79   -2.55   -3.34   -4.12   -4.77   -5.19   -5.23   -4.84   -4.02   -2.88   -1.48    0.21    2.43    5.60   10.06
+   335.0    0.00   -0.14   -0.52   -1.08   -1.77   -2.53   -3.33   -4.11   -4.77   -5.18   -5.22   -4.83   -4.01   -2.87   -1.48    0.21    2.45    5.62   10.04
+   340.0    0.00   -0.13   -0.51   -1.07   -1.76   -2.52   -3.32   -4.10   -4.76   -5.17   -5.22   -4.82   -4.01   -2.87   -1.48    0.22    2.47    5.64    9.99
+   345.0    0.00   -0.13   -0.50   -1.06   -1.75   -2.51   -3.31   -4.09   -4.75   -5.17   -5.22   -4.82   -4.01   -2.87   -1.48    0.23    2.49    5.65    9.90
+   350.0    0.00   -0.12   -0.49   -1.05   -1.74   -2.50   -3.30   -4.08   -4.74   -5.16   -5.21   -4.83   -4.02   -2.89   -1.49    0.24    2.51    5.65    9.79
+   355.0    0.00   -0.12   -0.49   -1.04   -1.73   -2.49   -3.29   -4.07   -4.73   -5.15   -5.21   -4.83   -4.03   -2.90   -1.50    0.24    2.52    5.63    9.65
+   360.0    0.00   -0.12   -0.48   -1.03   -1.72   -2.49   -3.29   -4.07   -4.73   -5.15   -5.20   -4.83   -4.05   -2.92   -1.50    0.25    2.53    5.61    9.51
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH700936A_M    SNOW                                        TYPE / SERIAL NO    
+FIELD               NGS/TUM                  4    20-APR-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.90     -0.66     89.34                              NORTH / EAST / UP   
+   NOAZI    0.00    0.76    0.58   -0.27   -1.68   -3.29   -4.85   -6.29   -7.27   -7.70   -7.44   -6.66   -5.17   -3.04   -0.40    3.07    7.29
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.80     -0.12    117.66                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.03   -0.22   -0.60   -1.22   -1.92   -2.63   -3.41   -4.15   -4.63   -4.75   -4.43   -3.58   -2.35   -0.53    1.69    4.76
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH700936B_M    NONE                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               1    27-JAN-03 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+      0.20      0.01     90.95                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.23   -0.89   -1.96   -3.32   -4.83   -6.31   -7.56   -8.41   -8.78   -8.64   -8.01   -6.90   -5.26   -2.96    0.15    4.17    8.98   14.16
+     0.0    0.00   -0.23   -0.92   -2.04   -3.49   -5.09   -6.62   -7.87   -8.68   -8.96   -8.75   -8.11   -7.03   -5.43   -3.09    0.14    4.29    8.98   13.44
+     5.0    0.00   -0.23   -0.92   -2.04   -3.48   -5.09   -6.63   -7.88   -8.68   -8.97   -8.77   -8.12   -7.03   -5.42   -3.09    0.12    4.22    8.89   13.42
+    10.0    0.00   -0.22   -0.91   -2.03   -3.48   -5.08   -6.62   -7.88   -8.69   -8.99   -8.79   -8.14   -7.04   -5.41   -3.09    0.10    4.15    8.80   13.43
+    15.0    0.00   -0.22   -0.90   -2.02   -3.46   -5.06   -6.61   -7.88   -8.70   -9.01   -8.82   -8.16   -7.05   -5.41   -3.09    0.07    4.09    8.73   13.48
+    20.0    0.00   -0.21   -0.90   -2.01   -3.44   -5.04   -6.59   -7.87   -8.71   -9.04   -8.86   -8.20   -7.07   -5.41   -3.08    0.05    4.04    8.69   13.56
+    25.0    0.00   -0.21   -0.89   -1.99   -3.42   -5.01   -6.56   -7.85   -8.71   -9.07   -8.90   -8.24   -7.10   -5.42   -3.08    0.05    4.02    8.70   13.69
+    30.0    0.00   -0.21   -0.88   -1.97   -3.39   -4.98   -6.53   -7.83   -8.71   -9.09   -8.93   -8.28   -7.13   -5.43   -3.08    0.06    4.04    8.75   13.85
+    35.0    0.00   -0.20   -0.87   -1.95   -3.36   -4.94   -6.49   -7.80   -8.70   -9.09   -8.96   -8.31   -7.16   -5.45   -3.08    0.08    4.09    8.85   14.05
+    40.0    0.00   -0.20   -0.86   -1.93   -3.33   -4.90   -6.44   -7.76   -8.67   -9.08   -8.97   -8.33   -7.17   -5.46   -3.07    0.12    4.17    8.99   14.26
+    45.0    0.00   -0.20   -0.85   -1.92   -3.30   -4.86   -6.40   -7.71   -8.63   -9.05   -8.95   -8.32   -7.17   -5.46   -3.06    0.16    4.27    9.16   14.48
+    50.0    0.00   -0.19   -0.84   -1.90   -3.27   -4.82   -6.35   -7.66   -8.58   -9.00   -8.91   -8.29   -7.15   -5.45   -3.04    0.21    4.38    9.35   14.69
+    55.0    0.00   -0.19   -0.83   -1.88   -3.25   -4.78   -6.30   -7.60   -8.51   -8.94   -8.84   -8.23   -7.11   -5.42   -3.02    0.26    4.49    9.53   14.88
+    60.0    0.00   -0.19   -0.82   -1.86   -3.22   -4.75   -6.26   -7.54   -8.44   -8.85   -8.75   -8.15   -7.05   -5.38   -2.99    0.30    4.59    9.69   15.04
+    65.0    0.00   -0.18   -0.81   -1.85   -3.20   -4.72   -6.21   -7.49   -8.37   -8.76   -8.65   -8.05   -6.97   -5.33   -2.97    0.34    4.66    9.82   15.16
+    70.0    0.00   -0.18   -0.81   -1.84   -3.18   -4.69   -6.17   -7.43   -8.29   -8.67   -8.54   -7.95   -6.89   -5.28   -2.94    0.36    4.71    9.90   15.23
+    75.0    0.00   -0.18   -0.81   -1.83   -3.17   -4.67   -6.14   -7.38   -8.22   -8.58   -8.44   -7.84   -6.80   -5.22   -2.91    0.37    4.73    9.93   15.24
+    80.0    0.00   -0.18   -0.80   -1.82   -3.16   -4.65   -6.11   -7.34   -8.17   -8.50   -8.35   -7.76   -6.72   -5.17   -2.89    0.37    4.72    9.92   15.19
+    85.0    0.00   -0.18   -0.80   -1.82   -3.15   -4.64   -6.09   -7.31   -8.12   -8.45   -8.29   -7.69   -6.67   -5.13   -2.87    0.36    4.68    9.85   15.10
+    90.0    0.00   -0.18   -0.80   -1.82   -3.14   -4.63   -6.07   -7.28   -8.09   -8.41   -8.25   -7.66   -6.64   -5.11   -2.86    0.35    4.63    9.75   14.96
+    95.0    0.00   -0.18   -0.80   -1.82   -3.14   -4.62   -6.06   -7.26   -8.07   -8.40   -8.24   -7.65   -6.63   -5.10   -2.86    0.32    4.55    9.62   14.80
+   100.0    0.00   -0.18   -0.80   -1.82   -3.14   -4.62   -6.05   -7.25   -8.06   -8.40   -8.26   -7.68   -6.65   -5.11   -2.86    0.29    4.47    9.46   14.63
+   105.0    0.00   -0.18   -0.81   -1.83   -3.15   -4.62   -6.05   -7.25   -8.07   -8.42   -8.30   -7.73   -6.69   -5.13   -2.88    0.26    4.38    9.31   14.47
+   110.0    0.00   -0.19   -0.81   -1.83   -3.15   -4.62   -6.05   -7.25   -8.08   -8.46   -8.35   -7.79   -6.75   -5.17   -2.90    0.23    4.29    9.15   14.33
+   115.0    0.00   -0.19   -0.82   -1.84   -3.16   -4.63   -6.05   -7.26   -8.10   -8.49   -8.41   -7.85   -6.81   -5.21   -2.92    0.19    4.20    9.01   14.22
+   120.0    0.00   -0.19   -0.82   -1.85   -3.17   -4.64   -6.06   -7.27   -8.12   -8.53   -8.46   -7.92   -6.87   -5.25   -2.95    0.15    4.12    8.89   14.16
+   125.0    0.00   -0.19   -0.83   -1.86   -3.19   -4.65   -6.08   -7.28   -8.14   -8.56   -8.51   -7.97   -6.91   -5.28   -2.98    0.11    4.05    8.80   14.14
+   130.0    0.00   -0.20   -0.84   -1.87   -3.20   -4.67   -6.09   -7.30   -8.16   -8.59   -8.54   -8.00   -6.94   -5.31   -3.01    0.07    3.99    8.74   14.16
+   135.0    0.00   -0.20   -0.85   -1.89   -3.22   -4.69   -6.12   -7.33   -8.19   -8.61   -8.56   -8.02   -6.96   -5.33   -3.03    0.03    3.94    8.71   14.22
+   140.0    0.00   -0.20   -0.85   -1.90   -3.24   -4.71   -6.15   -7.36   -8.21   -8.62   -8.56   -8.02   -6.96   -5.34   -3.05    0.00    3.91    8.71   14.29
+   145.0    0.00   -0.21   -0.86   -1.91   -3.26   -4.74   -6.18   -7.39   -8.24   -8.64   -8.57   -8.01   -6.95   -5.34   -3.07   -0.03    3.90    8.73   14.37
+   150.0    0.00   -0.21   -0.87   -1.93   -3.28   -4.77   -6.21   -7.43   -8.27   -8.66   -8.57   -8.00   -6.95   -5.35   -3.09   -0.05    3.89    8.75   14.42
+   155.0    0.00   -0.22   -0.88   -1.94   -3.30   -4.80   -6.25   -7.47   -8.30   -8.68   -8.57   -8.00   -6.94   -5.35   -3.11   -0.06    3.90    8.78   14.45
+   160.0    0.00   -0.22   -0.89   -1.95   -3.31   -4.82   -6.28   -7.51   -8.34   -8.71   -8.59   -8.01   -6.95   -5.37   -3.13   -0.07    3.91    8.81   14.42
+   165.0    0.00   -0.22   -0.89   -1.96   -3.33   -4.84   -6.32   -7.55   -8.39   -8.75   -8.63   -8.03   -6.98   -5.39   -3.15   -0.08    3.92    8.82   14.35
+   170.0    0.00   -0.23   -0.90   -1.97   -3.34   -4.86   -6.35   -7.59   -8.44   -8.80   -8.67   -8.08   -7.02   -5.43   -3.17   -0.09    3.93    8.80   14.22
+   175.0    0.00   -0.23   -0.91   -1.98   -3.35   -4.88   -6.37   -7.62   -8.48   -8.86   -8.73   -8.13   -7.07   -5.47   -3.20   -0.10    3.92    8.76   14.06
+   180.0    0.00   -0.24   -0.91   -1.98   -3.35   -4.88   -6.38   -7.65   -8.53   -8.91   -8.80   -8.20   -7.12   -5.51   -3.23   -0.12    3.90    8.70   13.87
+   185.0    0.00   -0.24   -0.92   -1.99   -3.36   -4.89   -6.39   -7.67   -8.57   -8.97   -8.86   -8.26   -7.18   -5.55   -3.26   -0.14    3.86    8.62   13.68
+   190.0    0.00   -0.24   -0.92   -1.99   -3.36   -4.88   -6.39   -7.69   -8.59   -9.01   -8.92   -8.32   -7.22   -5.58   -3.28   -0.17    3.82    8.52   13.51
+   195.0    0.00   -0.25   -0.93   -1.99   -3.35   -4.88   -6.39   -7.69   -8.61   -9.04   -8.96   -8.36   -7.25   -5.60   -3.29   -0.19    3.76    8.43   13.40
+   200.0    0.00   -0.25   -0.93   -1.99   -3.35   -4.87   -6.38   -7.68   -8.61   -9.06   -8.98   -8.38   -7.26   -5.60   -3.30   -0.21    3.70    8.35   13.34
+   205.0    0.00   -0.25   -0.93   -1.99   -3.35   -4.86   -6.36   -7.66   -8.60   -9.06   -8.98   -8.37   -7.25   -5.58   -3.28   -0.23    3.66    8.30   13.37
+   210.0    0.00   -0.25   -0.94   -2.00   -3.34   -4.85   -6.34   -7.64   -8.58   -9.04   -8.96   -8.35   -7.22   -5.54   -3.25   -0.22    3.64    8.30   13.47
+   215.0    0.00   -0.26   -0.94   -2.00   -3.34   -4.83   -6.32   -7.61   -8.55   -9.00   -8.92   -8.30   -7.16   -5.49   -3.21   -0.20    3.66    8.35   13.65
+   220.0    0.00   -0.26   -0.94   -2.00   -3.34   -4.82   -6.30   -7.58   -8.51   -8.95   -8.86   -8.24   -7.09   -5.42   -3.14   -0.14    3.71    8.45   13.89
+   225.0    0.00   -0.26   -0.95   -2.00   -3.33   -4.82   -6.28   -7.55   -8.46   -8.89   -8.80   -8.17   -7.02   -5.34   -3.06   -0.06    3.81    8.60   14.17
+   230.0    0.00   -0.26   -0.95   -2.00   -3.33   -4.81   -6.26   -7.52   -8.41   -8.83   -8.73   -8.10   -6.95   -5.26   -2.97    0.05    3.95    8.79   14.46
+   235.0    0.00   -0.26   -0.95   -2.00   -3.33   -4.80   -6.24   -7.48   -8.36   -8.78   -8.67   -8.03   -6.88   -5.19   -2.88    0.18    4.12    9.01   14.72
+   240.0    0.00   -0.26   -0.95   -2.01   -3.33   -4.80   -6.23   -7.45   -8.32   -8.72   -8.61   -7.98   -6.82   -5.12   -2.78    0.32    4.31    9.23   14.94
+   245.0    0.00   -0.26   -0.95   -2.01   -3.33   -4.79   -6.21   -7.43   -8.28   -8.67   -8.56   -7.93   -6.78   -5.06   -2.69    0.46    4.50    9.43   15.09
+   250.0    0.00   -0.26   -0.95   -2.01   -3.33   -4.79   -6.20   -7.41   -8.25   -8.64   -8.52   -7.89   -6.74   -5.01   -2.60    0.59    4.67    9.60   15.16
+   255.0    0.00   -0.27   -0.95   -2.01   -3.33   -4.78   -6.19   -7.39   -8.23   -8.61   -8.49   -7.86   -6.71   -4.97   -2.54    0.70    4.80    9.70   15.14
+   260.0    0.00   -0.27   -0.95   -2.00   -3.33   -4.78   -6.19   -7.38   -8.21   -8.59   -8.47   -7.84   -6.68   -4.93   -2.49    0.76    4.87    9.73   15.04
+   265.0    0.00   -0.26   -0.95   -2.00   -3.32   -4.77   -6.18   -7.37   -8.20   -8.57   -8.45   -7.82   -6.65   -4.90   -2.45    0.79    4.88    9.69   14.87
+   270.0    0.00   -0.26   -0.95   -2.00   -3.32   -4.77   -6.18   -7.37   -8.20   -8.57   -8.44   -7.79   -6.62   -4.87   -2.45    0.77    4.82    9.57   14.66
+   275.0    0.00   -0.26   -0.95   -2.00   -3.31   -4.77   -6.18   -7.38   -8.21   -8.58   -8.43   -7.77   -6.59   -4.85   -2.46    0.71    4.70    9.40   14.42
+   280.0    0.00   -0.26   -0.94   -1.99   -3.31   -4.77   -6.19   -7.40   -8.23   -8.59   -8.42   -7.74   -6.56   -4.84   -2.49    0.61    4.54    9.19   14.18
+   285.0    0.00   -0.26   -0.94   -1.99   -3.31   -4.77   -6.21   -7.42   -8.26   -8.61   -8.42   -7.72   -6.53   -4.83   -2.53    0.49    4.35    8.96   13.96
+   290.0    0.00   -0.26   -0.94   -1.99   -3.31   -4.78   -6.22   -7.45   -8.30   -8.63   -8.43   -7.70   -6.50   -4.83   -2.59    0.36    4.15    8.74   13.77
+   295.0    0.00   -0.26   -0.94   -1.98   -3.31   -4.79   -6.25   -7.49   -8.34   -8.67   -8.44   -7.70   -6.49   -4.84   -2.65    0.23    3.97    8.55   13.63
+   300.0    0.00   -0.26   -0.94   -1.98   -3.32   -4.80   -6.28   -7.53   -8.38   -8.70   -8.46   -7.70   -6.50   -4.86   -2.72    0.11    3.82    8.42   13.55
+   305.0    0.00   -0.26   -0.93   -1.99   -3.33   -4.82   -6.31   -7.57   -8.43   -8.75   -8.49   -7.73   -6.52   -4.90   -2.79    0.02    3.73    8.35   13.51
+   310.0    0.00   -0.25   -0.93   -1.99   -3.34   -4.85   -6.34   -7.62   -8.47   -8.79   -8.53   -7.76   -6.56   -4.96   -2.86   -0.04    3.69    8.35   13.50
+   315.0    0.00   -0.25   -0.93   -1.99   -3.35   -4.87   -6.38   -7.66   -8.52   -8.83   -8.57   -7.81   -6.62   -5.02   -2.91   -0.07    3.71    8.40   13.53
+   320.0    0.00   -0.25   -0.93   -2.00   -3.37   -4.90   -6.42   -7.70   -8.56   -8.87   -8.62   -7.86   -6.69   -5.10   -2.97   -0.07    3.78    8.51   13.56
+   325.0    0.00   -0.25   -0.93   -2.01   -3.39   -4.93   -6.45   -7.74   -8.59   -8.90   -8.65   -7.92   -6.76   -5.17   -3.01   -0.04    3.89    8.64   13.60
+   330.0    0.00   -0.25   -0.93   -2.01   -3.41   -4.96   -6.49   -7.77   -8.62   -8.92   -8.69   -7.97   -6.84   -5.25   -3.04    0.00    4.01    8.78   13.62
+   335.0    0.00   -0.24   -0.93   -2.02   -3.43   -4.99   -6.52   -7.80   -8.64   -8.94   -8.71   -8.02   -6.90   -5.31   -3.07    0.05    4.13    8.91   13.62
+   340.0    0.00   -0.24   -0.93   -2.03   -3.44   -5.02   -6.55   -7.82   -8.65   -8.95   -8.73   -8.05   -6.96   -5.36   -3.08    0.10    4.23    9.01   13.61
+   345.0    0.00   -0.24   -0.93   -2.04   -3.46   -5.04   -6.58   -7.84   -8.66   -8.95   -8.74   -8.08   -6.99   -5.40   -3.09    0.13    4.30    9.07   13.57
+   350.0    0.00   -0.24   -0.93   -2.04   -3.47   -5.06   -6.60   -7.86   -8.66   -8.95   -8.74   -8.09   -7.02   -5.42   -3.10    0.15    4.33    9.08   13.53
+   355.0    0.00   -0.23   -0.93   -2.04   -3.48   -5.08   -6.61   -7.87   -8.67   -8.96   -8.75   -8.10   -7.03   -5.43   -3.10    0.16    4.33    9.04   13.48
+   360.0    0.00   -0.23   -0.92   -2.04   -3.49   -5.09   -6.62   -7.87   -8.68   -8.96   -8.75   -8.11   -7.03   -5.43   -3.09    0.14    4.29    8.98   13.44
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.11      0.45    119.92                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.18   -0.69   -1.40   -2.21   -3.02   -3.79   -4.51   -5.13   -5.57   -5.69   -5.36   -4.54   -3.27   -1.66    0.23    2.50    5.42    9.26
+     0.0    0.00   -0.22   -0.74   -1.44   -2.20   -2.96   -3.72   -4.48   -5.19   -5.74   -5.93   -5.60   -4.73   -3.40   -1.75    0.15    2.42    5.31    8.93
+     5.0    0.00   -0.21   -0.73   -1.44   -2.22   -2.99   -3.75   -4.51   -5.21   -5.75   -5.93   -5.61   -4.73   -3.40   -1.75    0.14    2.37    5.25    8.95
+    10.0    0.00   -0.21   -0.73   -1.44   -2.23   -3.01   -3.78   -4.52   -5.22   -5.74   -5.92   -5.60   -4.73   -3.39   -1.73    0.15    2.36    5.21    9.00
+    15.0    0.00   -0.20   -0.72   -1.44   -2.24   -3.03   -3.80   -4.53   -5.21   -5.72   -5.90   -5.59   -4.72   -3.37   -1.70    0.19    2.38    5.21    9.07
+    20.0    0.00   -0.19   -0.71   -1.44   -2.24   -3.04   -3.80   -4.53   -5.18   -5.69   -5.87   -5.57   -4.71   -3.35   -1.66    0.24    2.44    5.26    9.16
+    25.0    0.00   -0.19   -0.70   -1.43   -2.25   -3.05   -3.81   -4.51   -5.15   -5.64   -5.83   -5.54   -4.69   -3.33   -1.62    0.31    2.52    5.34    9.27
+    30.0    0.00   -0.18   -0.69   -1.42   -2.24   -3.05   -3.81   -4.50   -5.12   -5.60   -5.78   -5.50   -4.67   -3.31   -1.59    0.38    2.63    5.46    9.40
+    35.0    0.00   -0.17   -0.68   -1.41   -2.24   -3.05   -3.80   -4.49   -5.09   -5.55   -5.73   -5.46   -4.64   -3.30   -1.56    0.44    2.73    5.60    9.55
+    40.0    0.00   -0.17   -0.66   -1.40   -2.23   -3.05   -3.81   -4.49   -5.08   -5.52   -5.68   -5.41   -4.61   -3.28   -1.54    0.48    2.83    5.74    9.71
+    45.0    0.00   -0.16   -0.65   -1.38   -2.22   -3.05   -3.82   -4.49   -5.07   -5.49   -5.63   -5.36   -4.57   -3.27   -1.55    0.50    2.89    5.88    9.87
+    50.0    0.00   -0.15   -0.64   -1.36   -2.21   -3.05   -3.83   -4.52   -5.08   -5.48   -5.59   -5.30   -4.53   -3.27   -1.58    0.47    2.93    6.01   10.03
+    55.0    0.00   -0.15   -0.62   -1.35   -2.20   -3.06   -3.85   -4.55   -5.11   -5.48   -5.56   -5.26   -4.50   -3.27   -1.63    0.42    2.93    6.11   10.18
+    60.0    0.00   -0.14   -0.61   -1.33   -2.18   -3.06   -3.88   -4.59   -5.16   -5.50   -5.55   -5.22   -4.47   -3.28   -1.69    0.34    2.90    6.18   10.32
+    65.0    0.00   -0.13   -0.60   -1.31   -2.17   -3.07   -3.91   -4.64   -5.21   -5.53   -5.55   -5.19   -4.45   -3.30   -1.76    0.25    2.85    6.22   10.42
+    70.0    0.00   -0.13   -0.59   -1.30   -2.16   -3.07   -3.94   -4.70   -5.27   -5.58   -5.56   -5.19   -4.44   -3.33   -1.83    0.15    2.79    6.24   10.48
+    75.0    0.00   -0.12   -0.58   -1.29   -2.15   -3.07   -3.96   -4.74   -5.33   -5.63   -5.59   -5.20   -4.45   -3.36   -1.90    0.07    2.73    6.24   10.50
+    80.0    0.00   -0.12   -0.57   -1.27   -2.14   -3.07   -3.98   -4.78   -5.38   -5.68   -5.64   -5.22   -4.47   -3.39   -1.95    0.01    2.69    6.22   10.46
+    85.0    0.00   -0.12   -0.56   -1.26   -2.13   -3.06   -3.99   -4.80   -5.42   -5.74   -5.69   -5.27   -4.50   -3.42   -1.97   -0.01    2.66    6.18   10.36
+    90.0    0.00   -0.12   -0.56   -1.26   -2.12   -3.06   -3.98   -4.82   -5.45   -5.78   -5.75   -5.33   -4.54   -3.43   -1.96    0.01    2.67    6.14   10.22
+    95.0    0.00   -0.11   -0.56   -1.26   -2.12   -3.05   -3.97   -4.81   -5.46   -5.82   -5.81   -5.39   -4.59   -3.44   -1.92    0.07    2.70    6.09   10.05
+   100.0    0.00   -0.11   -0.56   -1.26   -2.11   -3.04   -3.96   -4.80   -5.46   -5.85   -5.86   -5.45   -4.63   -3.43   -1.86    0.16    2.76    6.03    9.86
+   105.0    0.00   -0.11   -0.56   -1.26   -2.12   -3.03   -3.94   -4.77   -5.45   -5.87   -5.91   -5.51   -4.66   -3.40   -1.77    0.27    2.82    5.98    9.67
+   110.0    0.00   -0.11   -0.57   -1.27   -2.13   -3.03   -3.92   -4.75   -5.43   -5.87   -5.94   -5.55   -4.68   -3.36   -1.66    0.40    2.89    5.92    9.51
+   115.0    0.00   -0.12   -0.58   -1.29   -2.14   -3.03   -3.91   -4.72   -5.40   -5.86   -5.96   -5.58   -4.68   -3.30   -1.55    0.52    2.95    5.86    9.39
+   120.0    0.00   -0.12   -0.59   -1.31   -2.16   -3.04   -3.90   -4.69   -5.37   -5.84   -5.96   -5.58   -4.66   -3.25   -1.45    0.62    2.99    5.81    9.33
+   125.0    0.00   -0.12   -0.60   -1.33   -2.19   -3.06   -3.90   -4.67   -5.34   -5.82   -5.94   -5.58   -4.64   -3.19   -1.37    0.70    3.01    5.77    9.33
+   130.0    0.00   -0.12   -0.61   -1.35   -2.21   -3.09   -3.91   -4.66   -5.32   -5.79   -5.92   -5.55   -4.61   -3.14   -1.31    0.74    3.01    5.74    9.39
+   135.0    0.00   -0.13   -0.62   -1.37   -2.25   -3.11   -3.92   -4.65   -5.29   -5.75   -5.88   -5.52   -4.58   -3.11   -1.28    0.75    2.99    5.73    9.49
+   140.0    0.00   -0.13   -0.63   -1.40   -2.28   -3.14   -3.94   -4.65   -5.27   -5.72   -5.84   -5.49   -4.56   -3.11   -1.30    0.72    2.95    5.72    9.61
+   145.0    0.00   -0.13   -0.64   -1.42   -2.30   -3.17   -3.96   -4.65   -5.25   -5.68   -5.81   -5.46   -4.55   -3.13   -1.34    0.66    2.90    5.74    9.73
+   150.0    0.00   -0.14   -0.65   -1.44   -2.33   -3.20   -3.98   -4.66   -5.24   -5.65   -5.77   -5.44   -4.56   -3.17   -1.41    0.58    2.86    5.75    9.82
+   155.0    0.00   -0.14   -0.66   -1.45   -2.34   -3.21   -3.99   -4.66   -5.22   -5.63   -5.75   -5.43   -4.59   -3.24   -1.51    0.48    2.80    5.77    9.86
+   160.0    0.00   -0.15   -0.67   -1.46   -2.35   -3.22   -3.99   -4.66   -5.21   -5.61   -5.73   -5.43   -4.62   -3.32   -1.62    0.38    2.75    5.78    9.83
+   165.0    0.00   -0.15   -0.67   -1.46   -2.35   -3.22   -3.99   -4.65   -5.21   -5.60   -5.73   -5.45   -4.67   -3.40   -1.73    0.28    2.70    5.76    9.71
+   170.0    0.00   -0.15   -0.67   -1.45   -2.34   -3.21   -3.98   -4.65   -5.20   -5.60   -5.73   -5.47   -4.72   -3.48   -1.84    0.18    2.64    5.71    9.52
+   175.0    0.00   -0.16   -0.67   -1.45   -2.32   -3.18   -3.96   -4.63   -5.20   -5.60   -5.74   -5.48   -4.75   -3.55   -1.93    0.09    2.57    5.64    9.27
+   180.0    0.00   -0.16   -0.67   -1.43   -2.30   -3.15   -3.93   -4.62   -5.20   -5.61   -5.75   -5.49   -4.78   -3.60   -2.00    0.01    2.49    5.53    8.98
+   185.0    0.00   -0.16   -0.67   -1.42   -2.27   -3.11   -3.90   -4.60   -5.20   -5.62   -5.76   -5.49   -4.78   -3.61   -2.04   -0.06    2.40    5.39    8.68
+   190.0    0.00   -0.16   -0.67   -1.40   -2.23   -3.07   -3.86   -4.59   -5.20   -5.63   -5.76   -5.48   -4.75   -3.60   -2.06   -0.13    2.29    5.23    8.41
+   195.0    0.00   -0.17   -0.66   -1.38   -2.20   -3.03   -3.83   -4.57   -5.20   -5.63   -5.75   -5.44   -4.70   -3.55   -2.05   -0.17    2.19    5.08    8.19
+   200.0    0.00   -0.17   -0.66   -1.36   -2.16   -2.99   -3.79   -4.54   -5.19   -5.63   -5.73   -5.40   -4.63   -3.48   -2.02   -0.21    2.09    4.93    8.05
+   205.0    0.00   -0.17   -0.66   -1.35   -2.13   -2.95   -3.75   -4.52   -5.18   -5.62   -5.70   -5.34   -4.54   -3.40   -1.97   -0.22    2.01    4.83    8.00
+   210.0    0.00   -0.18   -0.66   -1.33   -2.11   -2.91   -3.72   -4.49   -5.16   -5.59   -5.66   -5.27   -4.45   -3.30   -1.90   -0.21    1.95    4.76    8.05
+   215.0    0.00   -0.18   -0.66   -1.33   -2.09   -2.88   -3.69   -4.46   -5.13   -5.56   -5.61   -5.21   -4.37   -3.21   -1.82   -0.17    1.94    4.75    8.19
+   220.0    0.00   -0.18   -0.66   -1.32   -2.08   -2.86   -3.66   -4.43   -5.09   -5.52   -5.57   -5.15   -4.30   -3.13   -1.74   -0.11    1.97    4.79    8.39
+   225.0    0.00   -0.19   -0.67   -1.33   -2.07   -2.85   -3.63   -4.39   -5.05   -5.47   -5.52   -5.11   -4.25   -3.07   -1.66   -0.03    2.04    4.87    8.64
+   230.0    0.00   -0.19   -0.67   -1.33   -2.08   -2.85   -3.62   -4.36   -5.00   -5.42   -5.48   -5.08   -4.23   -3.03   -1.59    0.07    2.15    4.99    8.89
+   235.0    0.00   -0.20   -0.68   -1.35   -2.09   -2.85   -3.60   -4.32   -4.95   -5.38   -5.45   -5.08   -4.23   -3.01   -1.53    0.18    2.28    5.12    9.12
+   240.0    0.00   -0.20   -0.69   -1.37   -2.11   -2.87   -3.60   -4.30   -4.91   -5.33   -5.43   -5.09   -4.26   -3.01   -1.47    0.29    2.41    5.24    9.30
+   245.0    0.00   -0.21   -0.71   -1.39   -2.14   -2.89   -3.61   -4.28   -4.87   -5.30   -5.42   -5.11   -4.30   -3.03   -1.44    0.39    2.53    5.33    9.42
+   250.0    0.00   -0.22   -0.72   -1.41   -2.17   -2.92   -3.62   -4.27   -4.85   -5.28   -5.42   -5.14   -4.35   -3.06   -1.41    0.46    2.61    5.38    9.46
+   255.0    0.00   -0.22   -0.74   -1.44   -2.21   -2.95   -3.64   -4.27   -4.83   -5.26   -5.43   -5.18   -4.39   -3.09   -1.41    0.50    2.64    5.36    9.44
+   260.0    0.00   -0.23   -0.75   -1.46   -2.24   -2.99   -3.67   -4.28   -4.83   -5.27   -5.45   -5.21   -4.43   -3.12   -1.41    0.51    2.62    5.29    9.35
+   265.0    0.00   -0.23   -0.76   -1.49   -2.27   -3.02   -3.70   -4.30   -4.85   -5.28   -5.46   -5.23   -4.45   -3.14   -1.43    0.48    2.55    5.16    9.23
+   270.0    0.00   -0.24   -0.78   -1.51   -2.30   -3.05   -3.73   -4.33   -4.87   -5.29   -5.48   -5.24   -4.46   -3.14   -1.45    0.42    2.43    4.99    9.08
+   275.0    0.00   -0.24   -0.79   -1.52   -2.32   -3.08   -3.75   -4.35   -4.89   -5.32   -5.49   -5.24   -4.45   -3.14   -1.47    0.34    2.28    4.81    8.94
+   280.0    0.00   -0.24   -0.79   -1.53   -2.33   -3.09   -3.77   -4.38   -4.92   -5.34   -5.50   -5.23   -4.43   -3.13   -1.50    0.24    2.13    4.64    8.81
+   285.0    0.00   -0.25   -0.80   -1.54   -2.34   -3.09   -3.77   -4.39   -4.94   -5.36   -5.51   -5.22   -4.40   -3.11   -1.53    0.15    1.99    4.50    8.73
+   290.0    0.00   -0.25   -0.80   -1.54   -2.33   -3.08   -3.77   -4.39   -4.96   -5.38   -5.51   -5.20   -4.37   -3.09   -1.55    0.07    1.88    4.41    8.68
+   295.0    0.00   -0.25   -0.81   -1.54   -2.32   -3.06   -3.75   -4.39   -4.97   -5.39   -5.52   -5.19   -4.34   -3.07   -1.57    0.02    1.82    4.39    8.67
+   300.0    0.00   -0.25   -0.80   -1.53   -2.30   -3.03   -3.72   -4.37   -4.96   -5.40   -5.52   -5.18   -4.33   -3.06   -1.58   -0.01    1.82    4.44    8.70
+   305.0    0.00   -0.25   -0.80   -1.52   -2.27   -2.99   -3.68   -4.34   -4.96   -5.41   -5.54   -5.19   -4.33   -3.07   -1.59    0.00    1.87    4.55    8.75
+   310.0    0.00   -0.25   -0.80   -1.50   -2.24   -2.95   -3.64   -4.31   -4.95   -5.42   -5.55   -5.21   -4.34   -3.08   -1.60    0.03    1.97    4.71    8.82
+   315.0    0.00   -0.25   -0.79   -1.49   -2.21   -2.91   -3.60   -4.28   -4.94   -5.43   -5.58   -5.24   -4.38   -3.11   -1.60    0.08    2.10    4.90    8.88
+   320.0    0.00   -0.25   -0.79   -1.48   -2.19   -2.88   -3.57   -4.26   -4.93   -5.45   -5.61   -5.28   -4.42   -3.15   -1.61    0.13    2.25    5.09    8.93
+   325.0    0.00   -0.25   -0.78   -1.46   -2.17   -2.86   -3.54   -4.25   -4.94   -5.47   -5.65   -5.33   -4.48   -3.19   -1.62    0.18    2.38    5.26    8.96
+   330.0    0.00   -0.24   -0.78   -1.45   -2.16   -2.84   -3.54   -4.26   -4.96   -5.50   -5.70   -5.39   -4.53   -3.24   -1.64    0.22    2.49    5.40    8.98
+   335.0    0.00   -0.24   -0.77   -1.44   -2.15   -2.84   -3.54   -4.27   -4.99   -5.54   -5.75   -5.44   -4.59   -3.28   -1.66    0.24    2.56    5.49    8.98
+   340.0    0.00   -0.24   -0.76   -1.44   -2.15   -2.85   -3.56   -4.30   -5.03   -5.59   -5.80   -5.49   -4.63   -3.32   -1.68    0.25    2.59    5.53    8.96
+   345.0    0.00   -0.23   -0.76   -1.44   -2.16   -2.87   -3.59   -4.34   -5.07   -5.64   -5.84   -5.53   -4.67   -3.35   -1.71    0.23    2.58    5.52    8.94
+   350.0    0.00   -0.23   -0.75   -1.44   -2.17   -2.90   -3.63   -4.39   -5.12   -5.68   -5.88   -5.57   -4.70   -3.38   -1.73    0.20    2.54    5.46    8.92
+   355.0    0.00   -0.22   -0.75   -1.44   -2.18   -2.93   -3.67   -4.44   -5.16   -5.71   -5.91   -5.59   -4.72   -3.39   -1.75    0.17    2.48    5.39    8.92
+   360.0    0.00   -0.22   -0.74   -1.44   -2.20   -2.96   -3.72   -4.48   -5.19   -5.74   -5.93   -5.60   -4.73   -3.40   -1.75    0.15    2.42    5.31    8.93
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH700936B_M    SNOW                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               3    20-APR-05 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+      0.18     -0.20     89.61                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.24   -0.93   -2.01   -3.39   -4.94   -6.50   -7.90   -8.97   -9.54   -9.49   -8.74   -7.30   -5.19   -2.46    0.87    4.83    9.38   14.38
+     0.0    0.00   -0.24   -0.95   -2.07   -3.52   -5.15   -6.79   -8.22   -9.25   -9.72   -9.55   -8.74   -7.33   -5.36   -2.79    0.46    4.45    9.05   13.78
+     5.0    0.00   -0.24   -0.94   -2.07   -3.51   -5.14   -6.77   -8.21   -9.25   -9.73   -9.57   -8.76   -7.35   -5.37   -2.80    0.44    4.41    9.01   13.78
+    10.0    0.00   -0.24   -0.94   -2.06   -3.50   -5.12   -6.76   -8.20   -9.24   -9.74   -9.60   -8.80   -7.38   -5.39   -2.81    0.43    4.38    8.98   13.84
+    15.0    0.00   -0.23   -0.93   -2.05   -3.48   -5.10   -6.73   -8.18   -9.24   -9.76   -9.63   -8.84   -7.42   -5.41   -2.81    0.43    4.38    8.99   13.96
+    20.0    0.00   -0.23   -0.93   -2.04   -3.47   -5.08   -6.70   -8.15   -9.23   -9.77   -9.67   -8.89   -7.46   -5.43   -2.80    0.45    4.40    9.04   14.13
+    25.0    0.00   -0.23   -0.92   -2.03   -3.45   -5.05   -6.67   -8.12   -9.22   -9.79   -9.71   -8.94   -7.50   -5.44   -2.77    0.51    4.47    9.12   14.33
+    30.0    0.00   -0.23   -0.92   -2.01   -3.42   -5.01   -6.63   -8.09   -9.20   -9.79   -9.74   -8.99   -7.54   -5.44   -2.73    0.59    4.56    9.24   14.54
+    35.0    0.00   -0.22   -0.91   -2.00   -3.40   -4.98   -6.58   -8.04   -9.17   -9.79   -9.76   -9.02   -7.56   -5.42   -2.66    0.69    4.69    9.38   14.74
+    40.0    0.00   -0.22   -0.90   -1.99   -3.37   -4.94   -6.54   -7.99   -9.13   -9.77   -9.77   -9.04   -7.57   -5.39   -2.58    0.82    4.85    9.54   14.91
+    45.0    0.00   -0.22   -0.90   -1.97   -3.35   -4.90   -6.48   -7.93   -9.08   -9.73   -9.75   -9.03   -7.55   -5.35   -2.49    0.96    5.01    9.70   15.04
+    50.0    0.00   -0.22   -0.89   -1.96   -3.32   -4.86   -6.43   -7.87   -9.01   -9.67   -9.71   -9.00   -7.52   -5.29   -2.39    1.10    5.18    9.85   15.13
+    55.0    0.00   -0.21   -0.88   -1.94   -3.30   -4.82   -6.37   -7.80   -8.93   -9.60   -9.64   -8.95   -7.46   -5.22   -2.29    1.24    5.33    9.98   15.18
+    60.0    0.00   -0.21   -0.88   -1.93   -3.27   -4.78   -6.32   -7.73   -8.85   -9.52   -9.56   -8.87   -7.39   -5.14   -2.20    1.35    5.45   10.08   15.18
+    65.0    0.00   -0.21   -0.87   -1.92   -3.25   -4.75   -6.27   -7.66   -8.77   -9.42   -9.47   -8.78   -7.31   -5.07   -2.12    1.44    5.55   10.15   15.16
+    70.0    0.00   -0.21   -0.87   -1.91   -3.23   -4.72   -6.22   -7.60   -8.69   -9.33   -9.37   -8.69   -7.23   -5.00   -2.07    1.49    5.60   10.19   15.12
+    75.0    0.00   -0.21   -0.86   -1.90   -3.22   -4.69   -6.18   -7.55   -8.62   -9.25   -9.27   -8.59   -7.15   -4.95   -2.04    1.51    5.62   10.19   15.06
+    80.0    0.00   -0.21   -0.86   -1.89   -3.20   -4.67   -6.16   -7.51   -8.57   -9.18   -9.19   -8.51   -7.08   -4.91   -2.03    1.49    5.59   10.17   15.00
+    85.0    0.00   -0.21   -0.86   -1.89   -3.20   -4.66   -6.14   -7.48   -8.53   -9.13   -9.13   -8.45   -7.04   -4.89   -2.04    1.45    5.54   10.11   14.94
+    90.0    0.00   -0.21   -0.86   -1.88   -3.19   -4.65   -6.13   -7.47   -8.51   -9.10   -9.10   -8.42   -7.01   -4.88   -2.08    1.38    5.45   10.04   14.88
+    95.0    0.00   -0.21   -0.86   -1.88   -3.19   -4.65   -6.13   -7.47   -8.51   -9.10   -9.09   -8.41   -7.01   -4.90   -2.13    1.30    5.35    9.94   14.80
+   100.0    0.00   -0.21   -0.86   -1.89   -3.20   -4.66   -6.15   -7.49   -8.53   -9.12   -9.11   -8.42   -7.02   -4.93   -2.19    1.21    5.23    9.82   14.72
+   105.0    0.00   -0.21   -0.86   -1.89   -3.20   -4.68   -6.17   -7.52   -8.57   -9.16   -9.15   -8.45   -7.06   -4.98   -2.25    1.11    5.11    9.69   14.62
+   110.0    0.00   -0.21   -0.86   -1.90   -3.21   -4.69   -6.19   -7.56   -8.62   -9.21   -9.20   -8.50   -7.10   -5.03   -2.31    1.02    4.99    9.56   14.50
+   115.0    0.00   -0.21   -0.87   -1.91   -3.23   -4.72   -6.23   -7.60   -8.67   -9.27   -9.26   -8.56   -7.15   -5.08   -2.37    0.94    4.88    9.42   14.37
+   120.0    0.00   -0.21   -0.87   -1.92   -3.25   -4.74   -6.26   -7.64   -8.72   -9.32   -9.31   -8.61   -7.20   -5.12   -2.43    0.87    4.77    9.29   14.24
+   125.0    0.00   -0.21   -0.88   -1.93   -3.27   -4.77   -6.30   -7.69   -8.77   -9.37   -9.37   -8.66   -7.25   -5.16   -2.47    0.81    4.68    9.17   14.11
+   130.0    0.00   -0.22   -0.89   -1.94   -3.29   -4.80   -6.33   -7.72   -8.81   -9.41   -9.40   -8.70   -7.28   -5.20   -2.51    0.75    4.60    9.06   14.00
+   135.0    0.00   -0.22   -0.89   -1.95   -3.31   -4.83   -6.37   -7.76   -8.84   -9.44   -9.43   -8.72   -7.31   -5.23   -2.54    0.71    4.54    8.97   13.92
+   140.0    0.00   -0.22   -0.90   -1.97   -3.33   -4.86   -6.40   -7.79   -8.86   -9.46   -9.44   -8.74   -7.33   -5.25   -2.57    0.67    4.49    8.91   13.87
+   145.0    0.00   -0.23   -0.91   -1.98   -3.35   -4.89   -6.43   -7.82   -8.88   -9.47   -9.45   -8.74   -7.34   -5.27   -2.60    0.64    4.45    8.87   13.85
+   150.0    0.00   -0.23   -0.92   -2.00   -3.38   -4.92   -6.46   -7.84   -8.90   -9.47   -9.45   -8.74   -7.35   -5.29   -2.63    0.61    4.42    8.85   13.87
+   155.0    0.00   -0.23   -0.92   -2.01   -3.40   -4.94   -6.49   -7.87   -8.91   -9.48   -9.45   -8.75   -7.36   -5.31   -2.65    0.58    4.40    8.85   13.90
+   160.0    0.00   -0.23   -0.93   -2.03   -3.42   -4.97   -6.52   -7.89   -8.93   -9.49   -9.45   -8.76   -7.38   -5.34   -2.68    0.56    4.39    8.85   13.95
+   165.0    0.00   -0.24   -0.94   -2.04   -3.44   -4.99   -6.54   -7.91   -8.95   -9.51   -9.47   -8.77   -7.40   -5.37   -2.71    0.53    4.38    8.86   13.99
+   170.0    0.00   -0.24   -0.94   -2.05   -3.45   -5.01   -6.56   -7.94   -8.97   -9.53   -9.50   -8.80   -7.43   -5.40   -2.75    0.51    4.36    8.86   14.02
+   175.0    0.00   -0.24   -0.95   -2.06   -3.46   -5.03   -6.58   -7.96   -9.00   -9.56   -9.53   -8.84   -7.47   -5.44   -2.78    0.49    4.35    8.86   14.02
+   180.0    0.00   -0.25   -0.95   -2.06   -3.47   -5.04   -6.60   -7.98   -9.03   -9.60   -9.58   -8.89   -7.52   -5.48   -2.81    0.46    4.33    8.84   14.00
+   185.0    0.00   -0.25   -0.96   -2.07   -3.48   -5.04   -6.61   -8.00   -9.06   -9.64   -9.63   -8.94   -7.57   -5.51   -2.83    0.45    4.32    8.82   13.97
+   190.0    0.00   -0.25   -0.96   -2.07   -3.48   -5.04   -6.61   -8.01   -9.08   -9.68   -9.67   -8.99   -7.61   -5.55   -2.85    0.43    4.31    8.80   13.93
+   195.0    0.00   -0.25   -0.96   -2.07   -3.48   -5.04   -6.61   -8.02   -9.10   -9.70   -9.71   -9.03   -7.64   -5.57   -2.87    0.42    4.30    8.79   13.91
+   200.0    0.00   -0.25   -0.97   -2.07   -3.47   -5.03   -6.60   -8.01   -9.11   -9.72   -9.73   -9.06   -7.66   -5.59   -2.87    0.43    4.31    8.81   13.92
+   205.0    0.00   -0.25   -0.97   -2.07   -3.46   -5.02   -6.58   -8.00   -9.10   -9.72   -9.74   -9.06   -7.67   -5.59   -2.87    0.45    4.35    8.87   13.98
+   210.0    0.00   -0.26   -0.97   -2.07   -3.46   -5.00   -6.57   -7.98   -9.08   -9.71   -9.73   -9.06   -7.66   -5.57   -2.85    0.48    4.42    8.97   14.10
+   215.0    0.00   -0.26   -0.97   -2.06   -3.45   -4.99   -6.54   -7.96   -9.06   -9.68   -9.70   -9.03   -7.63   -5.54   -2.81    0.54    4.52    9.12   14.29
+   220.0    0.00   -0.26   -0.97   -2.06   -3.44   -4.97   -6.52   -7.93   -9.02   -9.65   -9.66   -8.98   -7.59   -5.50   -2.75    0.63    4.65    9.32   14.53
+   225.0    0.00   -0.26   -0.97   -2.06   -3.43   -4.95   -6.50   -7.90   -8.98   -9.60   -9.61   -8.92   -7.53   -5.43   -2.67    0.74    4.82    9.56   14.80
+   230.0    0.00   -0.26   -0.97   -2.05   -3.42   -4.94   -6.48   -7.87   -8.94   -9.55   -9.55   -8.86   -7.45   -5.35   -2.58    0.87    5.02    9.82   15.09
+   235.0    0.00   -0.26   -0.97   -2.05   -3.41   -4.93   -6.46   -7.84   -8.91   -9.50   -9.49   -8.79   -7.38   -5.26   -2.46    1.03    5.23   10.08   15.36
+   240.0    0.00   -0.26   -0.97   -2.05   -3.41   -4.92   -6.44   -7.82   -8.87   -9.46   -9.43   -8.72   -7.29   -5.16   -2.33    1.20    5.44   10.32   15.57
+   245.0    0.00   -0.26   -0.97   -2.05   -3.40   -4.91   -6.43   -7.80   -8.85   -9.42   -9.38   -8.65   -7.21   -5.05   -2.20    1.37    5.63   10.51   15.70
+   250.0    0.00   -0.26   -0.97   -2.05   -3.40   -4.91   -6.43   -7.79   -8.83   -9.39   -9.34   -8.60   -7.13   -4.95   -2.06    1.53    5.80   10.64   15.73
+   255.0    0.00   -0.26   -0.96   -2.04   -3.40   -4.91   -6.43   -7.79   -8.83   -9.38   -9.32   -8.55   -7.06   -4.84   -1.93    1.66    5.91   10.69   15.66
+   260.0    0.00   -0.26   -0.96   -2.04   -3.40   -4.91   -6.43   -7.79   -8.83   -9.38   -9.30   -8.52   -6.99   -4.75   -1.82    1.77    5.97   10.65   15.48
+   265.0    0.00   -0.26   -0.96   -2.04   -3.40   -4.91   -6.44   -7.80   -8.84   -9.39   -9.30   -8.49   -6.94   -4.67   -1.73    1.83    5.96   10.53   15.23
+   270.0    0.00   -0.26   -0.96   -2.04   -3.40   -4.92   -6.45   -7.82   -8.86   -9.40   -9.30   -8.48   -6.90   -4.61   -1.68    1.84    5.88   10.33   14.92
+   275.0    0.00   -0.26   -0.96   -2.05   -3.41   -4.93   -6.46   -7.84   -8.88   -9.42   -9.32   -8.47   -6.88   -4.58   -1.66    1.80    5.75   10.09   14.60
+   280.0    0.00   -0.26   -0.96   -2.05   -3.41   -4.94   -6.47   -7.86   -8.91   -9.45   -9.33   -8.48   -6.87   -4.57   -1.68    1.72    5.58    9.83   14.29
+   285.0    0.00   -0.26   -0.96   -2.05   -3.42   -4.95   -6.49   -7.89   -8.94   -9.48   -9.36   -8.49   -6.87   -4.59   -1.73    1.60    5.38    9.56   14.03
+   290.0    0.00   -0.26   -0.96   -2.05   -3.42   -4.96   -6.51   -7.91   -8.98   -9.51   -9.38   -8.51   -6.89   -4.63   -1.82    1.45    5.17    9.32   13.85
+   295.0    0.00   -0.26   -0.96   -2.05   -3.43   -4.97   -6.54   -7.95   -9.01   -9.55   -9.41   -8.53   -6.93   -4.69   -1.93    1.29    4.96    9.13   13.75
+   300.0    0.00   -0.26   -0.96   -2.05   -3.44   -4.99   -6.56   -7.98   -9.05   -9.58   -9.44   -8.56   -6.97   -4.77   -2.05    1.13    4.79    9.00   13.74
+   305.0    0.00   -0.26   -0.96   -2.06   -3.45   -5.01   -6.59   -8.01   -9.08   -9.61   -9.47   -8.59   -7.02   -4.85   -2.17    0.97    4.65    8.93   13.79
+   310.0    0.00   -0.26   -0.96   -2.06   -3.46   -5.03   -6.62   -8.05   -9.11   -9.64   -9.49   -8.63   -7.08   -4.94   -2.30    0.84    4.55    8.91   13.89
+   315.0    0.00   -0.25   -0.96   -2.06   -3.47   -5.05   -6.65   -8.08   -9.15   -9.67   -9.52   -8.66   -7.13   -5.03   -2.41    0.73    4.49    8.95   14.01
+   320.0    0.00   -0.25   -0.96   -2.07   -3.48   -5.07   -6.68   -8.11   -9.18   -9.69   -9.53   -8.68   -7.18   -5.11   -2.51    0.65    4.47    9.01   14.11
+   325.0    0.00   -0.25   -0.96   -2.07   -3.49   -5.09   -6.71   -8.14   -9.20   -9.70   -9.55   -8.70   -7.22   -5.18   -2.59    0.60    4.48    9.08   14.19
+   330.0    0.00   -0.25   -0.96   -2.07   -3.50   -5.11   -6.73   -8.17   -9.22   -9.72   -9.55   -8.72   -7.26   -5.23   -2.64    0.57    4.50    9.15   14.22
+   335.0    0.00   -0.25   -0.96   -2.08   -3.51   -5.13   -6.75   -8.19   -9.24   -9.72   -9.55   -8.72   -7.28   -5.27   -2.69    0.55    4.52    9.20   14.19
+   340.0    0.00   -0.25   -0.96   -2.08   -3.52   -5.14   -6.77   -8.21   -9.25   -9.72   -9.55   -8.73   -7.29   -5.30   -2.72    0.53    4.54    9.22   14.12
+   345.0    0.00   -0.25   -0.96   -2.08   -3.52   -5.15   -6.78   -8.22   -9.25   -9.72   -9.55   -8.72   -7.30   -5.32   -2.74    0.52    4.54    9.21   14.03
+   350.0    0.00   -0.24   -0.95   -2.08   -3.52   -5.15   -6.79   -8.22   -9.25   -9.72   -9.54   -8.72   -7.31   -5.33   -2.76    0.50    4.52    9.17   13.92
+   355.0    0.00   -0.24   -0.95   -2.08   -3.52   -5.15   -6.79   -8.22   -9.25   -9.72   -9.54   -8.73   -7.32   -5.35   -2.78    0.48    4.49    9.11   13.83
+   360.0    0.00   -0.24   -0.95   -2.07   -3.52   -5.15   -6.79   -8.22   -9.25   -9.72   -9.55   -8.74   -7.33   -5.36   -2.79    0.46    4.45    9.05   13.78
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.01      0.44    119.32                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.13   -0.50   -1.05   -1.70   -2.41   -3.17   -3.93   -4.67   -5.26   -5.57   -5.46   -4.83   -3.68   -2.03    0.08    2.69    5.89    9.75
+     0.0    0.00   -0.13   -0.48   -1.00   -1.63   -2.34   -3.12   -3.94   -4.72   -5.34   -5.65   -5.54   -4.94   -3.88   -2.38   -0.38    2.30    5.85   10.27
+     5.0    0.00   -0.12   -0.48   -1.00   -1.64   -2.36   -3.13   -3.94   -4.71   -5.33   -5.65   -5.55   -4.97   -3.90   -2.38   -0.36    2.31    5.80   10.12
+    10.0    0.00   -0.12   -0.48   -1.01   -1.65   -2.37   -3.14   -3.94   -4.70   -5.32   -5.65   -5.56   -4.98   -3.92   -2.38   -0.34    2.32    5.77   10.01
+    15.0    0.00   -0.12   -0.48   -1.02   -1.67   -2.38   -3.14   -3.93   -4.69   -5.31   -5.64   -5.56   -4.99   -3.92   -2.37   -0.32    2.34    5.75    9.94
+    20.0    0.00   -0.12   -0.48   -1.02   -1.67   -2.39   -3.15   -3.93   -4.68   -5.29   -5.63   -5.56   -4.99   -3.91   -2.34   -0.29    2.36    5.75    9.93
+    25.0    0.00   -0.12   -0.48   -1.03   -1.68   -2.39   -3.15   -3.92   -4.66   -5.28   -5.62   -5.54   -4.97   -3.88   -2.30   -0.24    2.40    5.78    9.96
+    30.0    0.00   -0.12   -0.48   -1.03   -1.68   -2.40   -3.15   -3.91   -4.65   -5.26   -5.59   -5.51   -4.93   -3.83   -2.25   -0.18    2.45    5.83   10.02
+    35.0    0.00   -0.12   -0.48   -1.03   -1.69   -2.40   -3.15   -3.91   -4.64   -5.24   -5.57   -5.48   -4.88   -3.78   -2.18   -0.11    2.52    5.89   10.11
+    40.0    0.00   -0.12   -0.48   -1.03   -1.69   -2.40   -3.15   -3.90   -4.63   -5.22   -5.54   -5.44   -4.83   -3.71   -2.11   -0.03    2.61    5.97   10.19
+    45.0    0.00   -0.12   -0.48   -1.03   -1.69   -2.40   -3.15   -3.90   -4.62   -5.21   -5.51   -5.39   -4.78   -3.64   -2.03    0.06    2.70    6.06   10.26
+    50.0    0.00   -0.12   -0.48   -1.03   -1.69   -2.41   -3.15   -3.91   -4.62   -5.19   -5.48   -5.36   -4.72   -3.58   -1.95    0.15    2.80    6.15   10.30
+    55.0    0.00   -0.12   -0.48   -1.03   -1.69   -2.41   -3.16   -3.91   -4.62   -5.19   -5.46   -5.32   -4.68   -3.53   -1.89    0.24    2.90    6.23   10.29
+    60.0    0.00   -0.11   -0.48   -1.03   -1.70   -2.42   -3.17   -3.93   -4.63   -5.18   -5.45   -5.30   -4.66   -3.49   -1.83    0.31    3.00    6.30   10.25
+    65.0    0.00   -0.11   -0.48   -1.03   -1.70   -2.43   -3.19   -3.94   -4.64   -5.19   -5.45   -5.30   -4.65   -3.47   -1.79    0.38    3.08    6.36   10.17
+    70.0    0.00   -0.11   -0.48   -1.03   -1.70   -2.44   -3.20   -3.96   -4.66   -5.20   -5.46   -5.30   -4.65   -3.47   -1.78    0.43    3.15    6.40   10.07
+    75.0    0.00   -0.11   -0.48   -1.03   -1.71   -2.45   -3.22   -3.99   -4.68   -5.22   -5.48   -5.32   -4.67   -3.49   -1.77    0.46    3.20    6.42    9.95
+    80.0    0.00   -0.11   -0.48   -1.03   -1.72   -2.47   -3.25   -4.01   -4.71   -5.25   -5.50   -5.35   -4.70   -3.52   -1.78    0.47    3.23    6.42    9.83
+    85.0    0.00   -0.11   -0.48   -1.04   -1.73   -2.48   -3.27   -4.04   -4.74   -5.27   -5.53   -5.39   -4.74   -3.55   -1.80    0.47    3.24    6.40    9.72
+    90.0    0.00   -0.11   -0.48   -1.04   -1.73   -2.50   -3.29   -4.06   -4.76   -5.30   -5.56   -5.42   -4.78   -3.58   -1.83    0.46    3.23    6.36    9.63
+    95.0    0.00   -0.11   -0.48   -1.04   -1.74   -2.51   -3.31   -4.08   -4.79   -5.33   -5.60   -5.46   -4.81   -3.61   -1.85    0.45    3.21    6.31    9.55
+   100.0    0.00   -0.11   -0.48   -1.05   -1.75   -2.52   -3.32   -4.10   -4.81   -5.35   -5.62   -5.49   -4.84   -3.63   -1.86    0.43    3.17    6.25    9.50
+   105.0    0.00   -0.11   -0.48   -1.05   -1.76   -2.53   -3.33   -4.11   -4.82   -5.37   -5.64   -5.50   -4.85   -3.63   -1.85    0.42    3.12    6.18    9.46
+   110.0    0.00   -0.11   -0.48   -1.05   -1.76   -2.54   -3.34   -4.12   -4.83   -5.38   -5.66   -5.51   -4.85   -3.61   -1.84    0.41    3.07    6.10    9.44
+   115.0    0.00   -0.11   -0.48   -1.06   -1.76   -2.54   -3.34   -4.12   -4.83   -5.39   -5.66   -5.52   -4.84   -3.59   -1.81    0.41    3.02    6.01    9.42
+   120.0    0.00   -0.11   -0.48   -1.06   -1.77   -2.54   -3.33   -4.11   -4.82   -5.38   -5.66   -5.51   -4.82   -3.56   -1.78    0.42    2.98    5.94    9.40
+   125.0    0.00   -0.11   -0.48   -1.06   -1.77   -2.53   -3.32   -4.09   -4.81   -5.38   -5.66   -5.50   -4.80   -3.52   -1.74    0.43    2.94    5.86    9.38
+   130.0    0.00   -0.12   -0.49   -1.06   -1.76   -2.53   -3.31   -4.08   -4.79   -5.36   -5.65   -5.49   -4.78   -3.49   -1.71    0.44    2.91    5.80    9.36
+   135.0    0.00   -0.12   -0.49   -1.06   -1.76   -2.52   -3.29   -4.06   -4.77   -5.35   -5.64   -5.49   -4.77   -3.47   -1.69    0.44    2.88    5.75    9.32
+   140.0    0.00   -0.12   -0.49   -1.06   -1.76   -2.51   -3.28   -4.04   -4.75   -5.34   -5.64   -5.49   -4.76   -3.46   -1.68    0.44    2.87    5.71    9.28
+   145.0    0.00   -0.12   -0.49   -1.06   -1.75   -2.50   -3.26   -4.02   -4.74   -5.33   -5.64   -5.49   -4.78   -3.48   -1.70    0.43    2.85    5.69    9.24
+   150.0    0.00   -0.12   -0.49   -1.06   -1.75   -2.49   -3.25   -4.01   -4.73   -5.32   -5.64   -5.51   -4.80   -3.51   -1.73    0.40    2.83    5.67    9.19
+   155.0    0.00   -0.12   -0.49   -1.06   -1.75   -2.49   -3.24   -4.00   -4.72   -5.33   -5.65   -5.53   -4.84   -3.56   -1.78    0.36    2.81    5.66    9.13
+   160.0    0.00   -0.12   -0.50   -1.06   -1.75   -2.48   -3.24   -4.00   -4.72   -5.33   -5.67   -5.56   -4.88   -3.62   -1.85    0.31    2.78    5.65    9.08
+   165.0    0.00   -0.13   -0.50   -1.06   -1.74   -2.48   -3.24   -4.00   -4.73   -5.35   -5.69   -5.59   -4.93   -3.68   -1.93    0.23    2.74    5.64    9.02
+   170.0    0.00   -0.13   -0.50   -1.06   -1.74   -2.48   -3.24   -4.01   -4.75   -5.36   -5.71   -5.62   -4.98   -3.75   -2.01    0.16    2.69    5.61    8.96
+   175.0    0.00   -0.13   -0.50   -1.07   -1.74   -2.48   -3.24   -4.01   -4.76   -5.38   -5.73   -5.65   -5.02   -3.82   -2.09    0.07    2.62    5.58    8.90
+   180.0    0.00   -0.13   -0.51   -1.07   -1.74   -2.48   -3.24   -4.02   -4.78   -5.40   -5.75   -5.67   -5.05   -3.87   -2.16   -0.01    2.55    5.54    8.85
+   185.0    0.00   -0.13   -0.51   -1.07   -1.74   -2.48   -3.24   -4.03   -4.79   -5.42   -5.77   -5.69   -5.08   -3.91   -2.23   -0.09    2.48    5.49    8.82
+   190.0    0.00   -0.14   -0.51   -1.07   -1.74   -2.47   -3.24   -4.03   -4.80   -5.42   -5.77   -5.69   -5.08   -3.93   -2.27   -0.15    2.41    5.44    8.80
+   195.0    0.00   -0.14   -0.52   -1.07   -1.74   -2.47   -3.24   -4.03   -4.79   -5.42   -5.77   -5.68   -5.08   -3.93   -2.30   -0.20    2.36    5.40    8.81
+   200.0    0.00   -0.14   -0.52   -1.08   -1.74   -2.46   -3.23   -4.02   -4.78   -5.41   -5.75   -5.67   -5.06   -3.92   -2.30   -0.23    2.32    5.38    8.86
+   205.0    0.00   -0.14   -0.53   -1.08   -1.74   -2.46   -3.22   -4.01   -4.77   -5.39   -5.73   -5.64   -5.03   -3.89   -2.28   -0.23    2.31    5.39    8.95
+   210.0    0.00   -0.15   -0.53   -1.08   -1.74   -2.45   -3.20   -3.98   -4.74   -5.36   -5.70   -5.60   -4.99   -3.86   -2.25   -0.20    2.33    5.43    9.08
+   215.0    0.00   -0.15   -0.53   -1.09   -1.74   -2.44   -3.19   -3.95   -4.70   -5.32   -5.65   -5.56   -4.95   -3.81   -2.20   -0.15    2.38    5.51    9.25
+   220.0    0.00   -0.15   -0.54   -1.09   -1.74   -2.44   -3.17   -3.92   -4.66   -5.27   -5.61   -5.51   -4.90   -3.76   -2.14   -0.08    2.47    5.62    9.46
+   225.0    0.00   -0.15   -0.54   -1.10   -1.74   -2.43   -3.15   -3.89   -4.61   -5.22   -5.56   -5.47   -4.85   -3.70   -2.07    0.02    2.58    5.76    9.67
+   230.0    0.00   -0.15   -0.55   -1.10   -1.75   -2.43   -3.13   -3.86   -4.57   -5.17   -5.50   -5.42   -4.81   -3.65   -1.99    0.12    2.72    5.92    9.88
+   235.0    0.00   -0.16   -0.55   -1.11   -1.75   -2.43   -3.12   -3.83   -4.53   -5.12   -5.45   -5.38   -4.77   -3.60   -1.91    0.24    2.86    6.09   10.07
+   240.0    0.00   -0.16   -0.55   -1.11   -1.76   -2.43   -3.11   -3.81   -4.49   -5.07   -5.41   -5.34   -4.73   -3.55   -1.84    0.35    3.00    6.23   10.21
+   245.0    0.00   -0.16   -0.55   -1.12   -1.76   -2.43   -3.11   -3.79   -4.46   -5.03   -5.37   -5.30   -4.70   -3.51   -1.77    0.45    3.13    6.35   10.28
+   250.0    0.00   -0.16   -0.56   -1.12   -1.76   -2.43   -3.10   -3.78   -4.44   -5.01   -5.34   -5.27   -4.67   -3.47   -1.71    0.54    3.23    6.43   10.28
+   255.0    0.00   -0.16   -0.56   -1.12   -1.76   -2.43   -3.10   -3.78   -4.43   -4.99   -5.32   -5.26   -4.65   -3.45   -1.67    0.60    3.30    6.46   10.21
+   260.0    0.00   -0.16   -0.55   -1.11   -1.76   -2.43   -3.10   -3.78   -4.43   -4.99   -5.32   -5.25   -4.65   -3.43   -1.65    0.63    3.33    6.44   10.06
+   265.0    0.00   -0.16   -0.55   -1.11   -1.75   -2.43   -3.10   -3.78   -4.43   -4.99   -5.32   -5.25   -4.65   -3.43   -1.64    0.63    3.31    6.36    9.87
+   270.0    0.00   -0.16   -0.55   -1.10   -1.74   -2.42   -3.10   -3.79   -4.45   -5.01   -5.34   -5.27   -4.66   -3.45   -1.66    0.60    3.25    6.25    9.65
+   275.0    0.00   -0.16   -0.54   -1.09   -1.73   -2.41   -3.10   -3.80   -4.47   -5.04   -5.36   -5.29   -4.68   -3.47   -1.70    0.54    3.15    6.10    9.43
+   280.0    0.00   -0.15   -0.54   -1.08   -1.71   -2.39   -3.09   -3.81   -4.49   -5.07   -5.40   -5.32   -4.70   -3.50   -1.76    0.44    3.02    5.95    9.25
+   285.0    0.00   -0.15   -0.53   -1.07   -1.70   -2.37   -3.08   -3.81   -4.52   -5.11   -5.44   -5.35   -4.73   -3.54   -1.83    0.33    2.87    5.80    9.13
+   290.0    0.00   -0.15   -0.52   -1.05   -1.67   -2.35   -3.07   -3.82   -4.55   -5.15   -5.48   -5.38   -4.76   -3.59   -1.91    0.20    2.72    5.67    9.09
+   295.0    0.00   -0.15   -0.51   -1.03   -1.65   -2.33   -3.06   -3.83   -4.58   -5.19   -5.52   -5.42   -4.79   -3.64   -2.00    0.07    2.57    5.58    9.14
+   300.0    0.00   -0.15   -0.51   -1.02   -1.63   -2.31   -3.05   -3.83   -4.60   -5.23   -5.56   -5.45   -4.82   -3.68   -2.09   -0.06    2.44    5.52    9.27
+   305.0    0.00   -0.14   -0.50   -1.00   -1.61   -2.29   -3.04   -3.84   -4.63   -5.26   -5.59   -5.47   -4.84   -3.72   -2.16   -0.18    2.32    5.51    9.48
+   310.0    0.00   -0.14   -0.49   -0.99   -1.59   -2.27   -3.03   -3.85   -4.65   -5.29   -5.61   -5.48   -4.85   -3.75   -2.23   -0.28    2.24    5.54    9.74
+   315.0    0.00   -0.14   -0.49   -0.98   -1.57   -2.26   -3.02   -3.85   -4.67   -5.32   -5.63   -5.49   -4.86   -3.77   -2.28   -0.36    2.18    5.60   10.02
+   320.0    0.00   -0.14   -0.48   -0.97   -1.56   -2.25   -3.02   -3.86   -4.68   -5.33   -5.64   -5.50   -4.86   -3.79   -2.32   -0.41    2.16    5.68   10.29
+   325.0    0.00   -0.13   -0.48   -0.97   -1.56   -2.25   -3.03   -3.87   -4.70   -5.35   -5.65   -5.49   -4.86   -3.79   -2.35   -0.45    2.15    5.76   10.52
+   330.0    0.00   -0.13   -0.47   -0.96   -1.56   -2.25   -3.03   -3.89   -4.71   -5.35   -5.65   -5.49   -4.86   -3.80   -2.36   -0.46    2.17    5.84   10.69
+   335.0    0.00   -0.13   -0.47   -0.96   -1.56   -2.26   -3.05   -3.90   -4.72   -5.36   -5.65   -5.49   -4.86   -3.80   -2.37   -0.46    2.19    5.90   10.78
+   340.0    0.00   -0.13   -0.47   -0.97   -1.57   -2.27   -3.06   -3.91   -4.72   -5.36   -5.65   -5.49   -4.86   -3.81   -2.37   -0.45    2.22    5.93   10.78
+   345.0    0.00   -0.13   -0.47   -0.97   -1.58   -2.29   -3.08   -3.92   -4.73   -5.36   -5.65   -5.50   -4.87   -3.82   -2.37   -0.43    2.24    5.94   10.72
+   350.0    0.00   -0.13   -0.47   -0.98   -1.60   -2.31   -3.09   -3.93   -4.73   -5.35   -5.65   -5.51   -4.89   -3.84   -2.37   -0.41    2.27    5.92   10.59
+   355.0    0.00   -0.13   -0.47   -0.99   -1.61   -2.32   -3.11   -3.93   -4.72   -5.35   -5.65   -5.52   -4.92   -3.86   -2.38   -0.39    2.29    5.89   10.44
+   360.0    0.00   -0.13   -0.48   -1.00   -1.63   -2.34   -3.12   -3.94   -4.72   -5.34   -5.65   -5.54   -4.94   -3.88   -2.38   -0.38    2.30    5.85   10.27
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH700936C_M    NONE                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               1    27-JAN-03 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+     -0.56      0.24     91.91                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.23   -0.92   -1.98   -3.32   -4.79   -6.22   -7.43   -8.27   -8.64   -8.51   -7.88   -6.73   -5.04   -2.71    0.38    4.29    8.96   14.03
+     0.0    0.00   -0.23   -0.93   -2.03   -3.41   -4.93   -6.40   -7.62   -8.47   -8.84   -8.72   -8.12   -7.02   -5.36   -3.00    0.18    4.20    8.86   13.59
+     5.0    0.00   -0.23   -0.92   -2.02   -3.40   -4.92   -6.39   -7.62   -8.47   -8.85   -8.73   -8.12   -7.01   -5.34   -2.98    0.19    4.21    8.88   13.67
+    10.0    0.00   -0.23   -0.92   -2.01   -3.39   -4.90   -6.37   -7.61   -8.47   -8.85   -8.73   -8.12   -7.00   -5.31   -2.95    0.22    4.24    8.93   13.82
+    15.0    0.00   -0.23   -0.91   -1.99   -3.37   -4.88   -6.36   -7.60   -8.46   -8.85   -8.73   -8.11   -6.97   -5.28   -2.91    0.26    4.28    9.00   14.01
+    20.0    0.00   -0.22   -0.90   -1.98   -3.35   -4.86   -6.33   -7.58   -8.46   -8.85   -8.72   -8.09   -6.94   -5.23   -2.86    0.31    4.34    9.10   14.22
+    25.0    0.00   -0.22   -0.90   -1.97   -3.33   -4.84   -6.31   -7.57   -8.44   -8.84   -8.71   -8.07   -6.90   -5.18   -2.79    0.38    4.41    9.20   14.42
+    30.0    0.00   -0.22   -0.89   -1.95   -3.31   -4.81   -6.29   -7.55   -8.43   -8.83   -8.70   -8.04   -6.86   -5.11   -2.72    0.46    4.49    9.30   14.59
+    35.0    0.00   -0.22   -0.88   -1.94   -3.29   -4.79   -6.26   -7.53   -8.42   -8.82   -8.69   -8.01   -6.81   -5.05   -2.64    0.54    4.56    9.38   14.70
+    40.0    0.00   -0.21   -0.87   -1.92   -3.26   -4.76   -6.24   -7.51   -8.41   -8.81   -8.66   -7.97   -6.75   -4.98   -2.56    0.61    4.63    9.44   14.75
+    45.0    0.00   -0.21   -0.87   -1.91   -3.25   -4.74   -6.22   -7.49   -8.39   -8.79   -8.64   -7.93   -6.70   -4.91   -2.50    0.67    4.68    9.47   14.75
+    50.0    0.00   -0.21   -0.86   -1.90   -3.23   -4.72   -6.19   -7.47   -8.36   -8.76   -8.60   -7.89   -6.64   -4.85   -2.44    0.71    4.70    9.47   14.68
+    55.0    0.00   -0.21   -0.86   -1.89   -3.21   -4.69   -6.17   -7.44   -8.33   -8.73   -8.56   -7.84   -6.60   -4.81   -2.41    0.73    4.71    9.44   14.58
+    60.0    0.00   -0.21   -0.85   -1.88   -3.20   -4.67   -6.14   -7.41   -8.30   -8.68   -8.52   -7.80   -6.56   -4.79   -2.40    0.73    4.69    9.39   14.44
+    65.0    0.00   -0.21   -0.85   -1.88   -3.19   -4.66   -6.11   -7.37   -8.25   -8.64   -8.47   -7.76   -6.54   -4.79   -2.42    0.70    4.65    9.34   14.30
+    70.0    0.00   -0.21   -0.85   -1.87   -3.18   -4.64   -6.09   -7.33   -8.21   -8.59   -8.42   -7.73   -6.53   -4.80   -2.46    0.65    4.61    9.28   14.17
+    75.0    0.00   -0.21   -0.85   -1.87   -3.17   -4.63   -6.06   -7.30   -8.16   -8.54   -8.38   -7.71   -6.54   -4.84   -2.51    0.59    4.56    9.22   14.05
+    80.0    0.00   -0.21   -0.85   -1.87   -3.17   -4.62   -6.04   -7.26   -8.12   -8.50   -8.35   -7.70   -6.55   -4.88   -2.57    0.53    4.51    9.18   13.95
+    85.0    0.00   -0.21   -0.85   -1.87   -3.17   -4.61   -6.03   -7.24   -8.09   -8.46   -8.33   -7.70   -6.58   -4.93   -2.63    0.47    4.46    9.14   13.88
+    90.0    0.00   -0.21   -0.86   -1.88   -3.17   -4.61   -6.02   -7.22   -8.06   -8.44   -8.32   -7.71   -6.61   -4.98   -2.69    0.42    4.42    9.11   13.83
+    95.0    0.00   -0.21   -0.86   -1.88   -3.18   -4.62   -6.02   -7.22   -8.06   -8.44   -8.33   -7.73   -6.64   -5.02   -2.73    0.39    4.39    9.08   13.81
+   100.0    0.00   -0.21   -0.87   -1.89   -3.19   -4.63   -6.03   -7.22   -8.07   -8.45   -8.35   -7.75   -6.67   -5.04   -2.75    0.36    4.36    9.05   13.80
+   105.0    0.00   -0.22   -0.87   -1.90   -3.21   -4.64   -6.05   -7.24   -8.09   -8.48   -8.37   -7.78   -6.68   -5.05   -2.76    0.35    4.34    9.02   13.80
+   110.0    0.00   -0.22   -0.88   -1.91   -3.22   -4.66   -6.07   -7.27   -8.12   -8.51   -8.41   -7.80   -6.69   -5.05   -2.75    0.34    4.31    8.98   13.81
+   115.0    0.00   -0.22   -0.88   -1.92   -3.24   -4.69   -6.10   -7.31   -8.16   -8.55   -8.44   -7.82   -6.69   -5.03   -2.73    0.34    4.27    8.93   13.83
+   120.0    0.00   -0.22   -0.89   -1.94   -3.26   -4.71   -6.13   -7.34   -8.20   -8.59   -8.47   -7.83   -6.69   -5.01   -2.71    0.33    4.22    8.87   13.85
+   125.0    0.00   -0.22   -0.90   -1.95   -3.28   -4.73   -6.16   -7.38   -8.23   -8.62   -8.49   -7.84   -6.67   -4.99   -2.70    0.32    4.17    8.81   13.87
+   130.0    0.00   -0.23   -0.90   -1.96   -3.29   -4.76   -6.19   -7.41   -8.27   -8.65   -8.51   -7.84   -6.66   -4.97   -2.69    0.29    4.10    8.74   13.90
+   135.0    0.00   -0.23   -0.91   -1.97   -3.31   -4.78   -6.21   -7.43   -8.29   -8.67   -8.52   -7.84   -6.66   -4.97   -2.70    0.25    4.04    8.67   13.92
+   140.0    0.00   -0.23   -0.91   -1.98   -3.32   -4.79   -6.22   -7.45   -8.30   -8.68   -8.53   -7.85   -6.66   -4.97   -2.73    0.21    3.97    8.61   13.94
+   145.0    0.00   -0.23   -0.92   -1.99   -3.33   -4.80   -6.24   -7.45   -8.31   -8.68   -8.53   -7.86   -6.68   -5.00   -2.76    0.16    3.91    8.56   13.95
+   150.0    0.00   -0.24   -0.92   -2.00   -3.34   -4.81   -6.24   -7.46   -8.31   -8.68   -8.54   -7.87   -6.70   -5.03   -2.80    0.11    3.86    8.52   13.95
+   155.0    0.00   -0.24   -0.93   -2.00   -3.35   -4.82   -6.25   -7.46   -8.30   -8.68   -8.54   -7.89   -6.73   -5.07   -2.84    0.07    3.83    8.49   13.93
+   160.0    0.00   -0.24   -0.93   -2.01   -3.35   -4.83   -6.25   -7.46   -8.30   -8.68   -8.55   -7.91   -6.77   -5.11   -2.88    0.05    3.81    8.47   13.88
+   165.0    0.00   -0.24   -0.94   -2.01   -3.36   -4.83   -6.25   -7.46   -8.31   -8.69   -8.57   -7.94   -6.80   -5.15   -2.90    0.04    3.81    8.45   13.82
+   170.0    0.00   -0.24   -0.94   -2.02   -3.37   -4.84   -6.26   -7.47   -8.31   -8.70   -8.59   -7.96   -6.83   -5.17   -2.91    0.06    3.83    8.45   13.75
+   175.0    0.00   -0.25   -0.94   -2.02   -3.37   -4.85   -6.27   -7.48   -8.32   -8.72   -8.60   -7.98   -6.85   -5.18   -2.90    0.08    3.86    8.45   13.67
+   180.0    0.00   -0.25   -0.95   -2.03   -3.38   -4.85   -6.28   -7.49   -8.34   -8.73   -8.62   -7.99   -6.86   -5.17   -2.88    0.12    3.90    8.45   13.61
+   185.0    0.00   -0.25   -0.95   -2.03   -3.38   -4.86   -6.29   -7.50   -8.35   -8.74   -8.62   -7.99   -6.85   -5.15   -2.84    0.16    3.94    8.47   13.57
+   190.0    0.00   -0.25   -0.95   -2.03   -3.39   -4.87   -6.30   -7.51   -8.35   -8.74   -8.61   -7.98   -6.82   -5.12   -2.81    0.21    3.98    8.49   13.56
+   195.0    0.00   -0.25   -0.95   -2.03   -3.39   -4.87   -6.30   -7.51   -8.35   -8.72   -8.59   -7.95   -6.79   -5.08   -2.77    0.24    4.02    8.53   13.61
+   200.0    0.00   -0.25   -0.95   -2.03   -3.39   -4.87   -6.30   -7.50   -8.33   -8.70   -8.56   -7.91   -6.75   -5.05   -2.74    0.27    4.05    8.59   13.71
+   205.0    0.00   -0.25   -0.95   -2.03   -3.39   -4.87   -6.29   -7.48   -8.30   -8.66   -8.51   -7.87   -6.71   -5.02   -2.72    0.29    4.09    8.67   13.85
+   210.0    0.00   -0.25   -0.95   -2.03   -3.39   -4.86   -6.27   -7.45   -8.26   -8.61   -8.46   -7.82   -6.68   -5.01   -2.72    0.30    4.13    8.76   14.03
+   215.0    0.00   -0.25   -0.95   -2.03   -3.38   -4.84   -6.25   -7.41   -8.21   -8.55   -8.40   -7.78   -6.66   -5.01   -2.73    0.30    4.17    8.87   14.22
+   220.0    0.00   -0.25   -0.95   -2.02   -3.37   -4.83   -6.22   -7.37   -8.15   -8.49   -8.35   -7.75   -6.66   -5.02   -2.74    0.31    4.22    8.98   14.40
+   225.0    0.00   -0.25   -0.94   -2.02   -3.36   -4.81   -6.18   -7.32   -8.09   -8.43   -8.31   -7.73   -6.66   -5.04   -2.76    0.32    4.28    9.09   14.55
+   230.0    0.00   -0.25   -0.94   -2.01   -3.35   -4.78   -6.15   -7.28   -8.05   -8.39   -8.29   -7.73   -6.68   -5.07   -2.77    0.34    4.34    9.18   14.64
+   235.0    0.00   -0.25   -0.94   -2.01   -3.34   -4.76   -6.12   -7.24   -8.01   -8.37   -8.28   -7.74   -6.71   -5.09   -2.76    0.38    4.41    9.25   14.66
+   240.0    0.00   -0.25   -0.94   -2.00   -3.33   -4.75   -6.10   -7.22   -8.00   -8.37   -8.30   -7.77   -6.73   -5.09   -2.74    0.44    4.48    9.29   14.60
+   245.0    0.00   -0.25   -0.94   -2.00   -3.32   -4.74   -6.09   -7.21   -8.00   -8.38   -8.33   -7.80   -6.75   -5.09   -2.69    0.51    4.54    9.29   14.47
+   250.0    0.00   -0.25   -0.94   -1.99   -3.31   -4.73   -6.08   -7.22   -8.02   -8.42   -8.37   -7.84   -6.76   -5.06   -2.63    0.59    4.59    9.25   14.28
+   255.0    0.00   -0.25   -0.93   -1.99   -3.31   -4.73   -6.09   -7.24   -8.06   -8.47   -8.42   -7.87   -6.76   -5.01   -2.56    0.66    4.62    9.18   14.05
+   260.0    0.00   -0.25   -0.93   -1.99   -3.31   -4.74   -6.11   -7.27   -8.11   -8.52   -8.46   -7.89   -6.74   -4.95   -2.48    0.73    4.63    9.09   13.82
+   265.0    0.00   -0.25   -0.93   -1.99   -3.31   -4.75   -6.13   -7.31   -8.16   -8.57   -8.50   -7.89   -6.70   -4.89   -2.40    0.78    4.62    8.98   13.62
+   270.0    0.00   -0.25   -0.93   -1.99   -3.32   -4.76   -6.16   -7.35   -8.21   -8.62   -8.53   -7.89   -6.66   -4.82   -2.33    0.81    4.58    8.88   13.47
+   275.0    0.00   -0.25   -0.93   -1.99   -3.32   -4.77   -6.18   -7.39   -8.25   -8.66   -8.54   -7.86   -6.61   -4.75   -2.29    0.80    4.52    8.80   13.41
+   280.0    0.00   -0.25   -0.93   -2.00   -3.33   -4.79   -6.21   -7.42   -8.28   -8.68   -8.54   -7.83   -6.56   -4.71   -2.27    0.77    4.46    8.74   13.42
+   285.0    0.00   -0.25   -0.93   -2.00   -3.34   -4.80   -6.23   -7.44   -8.30   -8.68   -8.52   -7.80   -6.51   -4.68   -2.29    0.72    4.39    8.72   13.53
+   290.0    0.00   -0.25   -0.94   -2.00   -3.35   -4.81   -6.24   -7.46   -8.30   -8.67   -8.49   -7.76   -6.49   -4.68   -2.33    0.65    4.33    8.74   13.70
+   295.0    0.00   -0.25   -0.94   -2.01   -3.35   -4.82   -6.25   -7.46   -8.30   -8.65   -8.46   -7.73   -6.48   -4.71   -2.40    0.56    4.28    8.79   13.91
+   300.0    0.00   -0.25   -0.94   -2.01   -3.36   -4.84   -6.26   -7.46   -8.29   -8.63   -8.44   -7.71   -6.49   -4.76   -2.48    0.47    4.24    8.87   14.14
+   305.0    0.00   -0.25   -0.94   -2.02   -3.37   -4.85   -6.27   -7.46   -8.27   -8.61   -8.42   -7.71   -6.52   -4.83   -2.58    0.39    4.22    8.96   14.35
+   310.0    0.00   -0.25   -0.94   -2.02   -3.38   -4.86   -6.27   -7.46   -8.27   -8.59   -8.41   -7.73   -6.57   -4.92   -2.68    0.32    4.22    9.05   14.50
+   315.0    0.00   -0.24   -0.94   -2.03   -3.39   -4.87   -6.28   -7.47   -8.26   -8.59   -8.41   -7.76   -6.63   -5.00   -2.77    0.26    4.23    9.13   14.58
+   320.0    0.00   -0.24   -0.94   -2.03   -3.40   -4.88   -6.30   -7.48   -8.27   -8.60   -8.43   -7.80   -6.70   -5.09   -2.85    0.22    4.24    9.18   14.58
+   325.0    0.00   -0.24   -0.95   -2.04   -3.41   -4.89   -6.31   -7.49   -8.29   -8.62   -8.47   -7.85   -6.77   -5.17   -2.91    0.19    4.26    9.19   14.50
+   330.0    0.00   -0.24   -0.95   -2.04   -3.41   -4.90   -6.33   -7.51   -8.31   -8.65   -8.51   -7.91   -6.84   -5.24   -2.96    0.18    4.27    9.18   14.36
+   335.0    0.00   -0.24   -0.94   -2.04   -3.42   -4.92   -6.35   -7.54   -8.34   -8.69   -8.56   -7.96   -6.89   -5.29   -2.99    0.17    4.27    9.13   14.17
+   340.0    0.00   -0.24   -0.94   -2.04   -3.43   -4.93   -6.37   -7.56   -8.38   -8.73   -8.60   -8.01   -6.94   -5.33   -3.01    0.17    4.26    9.06   13.97
+   345.0    0.00   -0.24   -0.94   -2.04   -3.43   -4.94   -6.38   -7.59   -8.41   -8.77   -8.65   -8.05   -6.98   -5.35   -3.02    0.17    4.25    8.99   13.78
+   350.0    0.00   -0.24   -0.94   -2.04   -3.43   -4.94   -6.39   -7.61   -8.44   -8.80   -8.68   -8.09   -7.00   -5.36   -3.02    0.17    4.23    8.93   13.65
+   355.0    0.00   -0.23   -0.93   -2.03   -3.42   -4.94   -6.40   -7.62   -8.46   -8.83   -8.71   -8.11   -7.02   -5.36   -3.01    0.17    4.21    8.88   13.58
+   360.0    0.00   -0.23   -0.93   -2.03   -3.41   -4.93   -6.40   -7.62   -8.47   -8.84   -8.72   -8.12   -7.02   -5.36   -3.00    0.18    4.20    8.86   13.59
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.00     -0.30    121.43                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.15   -0.58   -1.22   -2.00   -2.84   -3.69   -4.49   -5.16   -5.59   -5.65   -5.24   -4.37   -3.09   -1.49    0.39    2.64    5.49    9.11
+     0.0    0.00   -0.22   -0.67   -1.27   -1.97   -2.74   -3.61   -4.50   -5.31   -5.84   -5.93   -5.51   -4.61   -3.36   -1.84    0.03    2.47    5.70    9.56
+     5.0    0.00   -0.21   -0.66   -1.26   -1.96   -2.75   -3.62   -4.51   -5.30   -5.83   -5.92   -5.49   -4.58   -3.31   -1.75    0.16    2.60    5.75    9.48
+    10.0    0.00   -0.20   -0.65   -1.25   -1.96   -2.76   -3.62   -4.51   -5.29   -5.81   -5.90   -5.47   -4.56   -3.25   -1.64    0.31    2.74    5.82    9.43
+    15.0    0.00   -0.20   -0.63   -1.24   -1.96   -2.76   -3.63   -4.50   -5.27   -5.79   -5.88   -5.46   -4.54   -3.20   -1.53    0.46    2.89    5.88    9.38
+    20.0    0.00   -0.19   -0.62   -1.23   -1.95   -2.76   -3.62   -4.49   -5.25   -5.76   -5.86   -5.45   -4.52   -3.14   -1.42    0.62    3.04    5.94    9.32
+    25.0    0.00   -0.18   -0.61   -1.21   -1.95   -2.76   -3.62   -4.48   -5.24   -5.74   -5.85   -5.44   -4.50   -3.09   -1.31    0.77    3.17    5.99    9.26
+    30.0    0.00   -0.17   -0.59   -1.20   -1.94   -2.76   -3.62   -4.47   -5.22   -5.73   -5.84   -5.44   -4.48   -3.04   -1.21    0.90    3.28    6.01    9.18
+    35.0    0.00   -0.16   -0.58   -1.19   -1.94   -2.76   -3.62   -4.47   -5.21   -5.71   -5.83   -5.43   -4.47   -3.00   -1.13    1.00    3.36    6.02    9.10
+    40.0    0.00   -0.15   -0.56   -1.18   -1.93   -2.76   -3.63   -4.47   -5.20   -5.70   -5.81   -5.41   -4.45   -2.96   -1.08    1.06    3.40    6.00    9.01
+    45.0    0.00   -0.14   -0.55   -1.17   -1.93   -2.77   -3.64   -4.47   -5.19   -5.68   -5.79   -5.39   -4.43   -2.94   -1.05    1.09    3.41    5.96    8.93
+    50.0    0.00   -0.14   -0.54   -1.16   -1.93   -2.78   -3.65   -4.48   -5.19   -5.66   -5.76   -5.36   -4.41   -2.93   -1.05    1.08    3.39    5.92    8.86
+    55.0    0.00   -0.13   -0.53   -1.15   -1.93   -2.79   -3.66   -4.49   -5.18   -5.63   -5.72   -5.33   -4.39   -2.94   -1.08    1.04    3.35    5.88    8.82
+    60.0    0.00   -0.12   -0.52   -1.14   -1.93   -2.80   -3.68   -4.49   -5.17   -5.60   -5.68   -5.29   -4.38   -2.96   -1.14    0.97    3.29    5.85    8.81
+    65.0    0.00   -0.11   -0.51   -1.14   -1.93   -2.81   -3.69   -4.50   -5.16   -5.57   -5.63   -5.25   -4.37   -3.00   -1.21    0.88    3.23    5.83    8.82
+    70.0    0.00   -0.11   -0.50   -1.13   -1.94   -2.83   -3.71   -4.50   -5.14   -5.53   -5.58   -5.21   -4.37   -3.05   -1.30    0.79    3.17    5.84    8.85
+    75.0    0.00   -0.10   -0.49   -1.13   -1.95   -2.84   -3.72   -4.50   -5.12   -5.49   -5.53   -5.18   -4.37   -3.10   -1.39    0.70    3.12    5.86    8.89
+    80.0    0.00   -0.10   -0.49   -1.13   -1.95   -2.85   -3.73   -4.50   -5.10   -5.45   -5.49   -5.16   -4.39   -3.16   -1.48    0.62    3.09    5.89    8.93
+    85.0    0.00   -0.09   -0.48   -1.13   -1.96   -2.86   -3.73   -4.49   -5.07   -5.42   -5.46   -5.14   -4.41   -3.21   -1.55    0.56    3.08    5.92    8.95
+    90.0    0.00   -0.09   -0.48   -1.14   -1.97   -2.87   -3.74   -4.49   -5.05   -5.39   -5.44   -5.14   -4.43   -3.26   -1.60    0.52    3.07    5.95    8.96
+    95.0    0.00   -0.08   -0.48   -1.14   -1.98   -2.88   -3.74   -4.48   -5.04   -5.38   -5.44   -5.15   -4.45   -3.29   -1.63    0.50    3.06    5.95    8.95
+   100.0    0.00   -0.08   -0.48   -1.15   -1.99   -2.89   -3.74   -4.47   -5.03   -5.37   -5.44   -5.17   -4.48   -3.31   -1.64    0.50    3.05    5.93    8.93
+   105.0    0.00   -0.08   -0.48   -1.15   -2.00   -2.90   -3.74   -4.47   -5.03   -5.38   -5.47   -5.20   -4.49   -3.31   -1.63    0.50    3.03    5.87    8.90
+   110.0    0.00   -0.08   -0.48   -1.16   -2.01   -2.91   -3.75   -4.47   -5.04   -5.40   -5.49   -5.23   -4.51   -3.30   -1.61    0.50    2.98    5.78    8.88
+   115.0    0.00   -0.08   -0.49   -1.17   -2.03   -2.92   -3.76   -4.48   -5.05   -5.43   -5.53   -5.25   -4.51   -3.28   -1.58    0.49    2.90    5.67    8.87
+   120.0    0.00   -0.08   -0.49   -1.19   -2.04   -2.93   -3.77   -4.49   -5.07   -5.45   -5.56   -5.28   -4.51   -3.25   -1.55    0.47    2.80    5.53    8.88
+   125.0    0.00   -0.08   -0.50   -1.20   -2.06   -2.95   -3.78   -4.50   -5.08   -5.48   -5.59   -5.30   -4.50   -3.22   -1.53    0.43    2.67    5.38    8.92
+   130.0    0.00   -0.08   -0.50   -1.21   -2.08   -2.97   -3.80   -4.51   -5.10   -5.50   -5.61   -5.31   -4.49   -3.19   -1.53    0.38    2.53    5.22    8.98
+   135.0    0.00   -0.08   -0.51   -1.22   -2.09   -2.99   -3.81   -4.53   -5.12   -5.52   -5.63   -5.31   -4.47   -3.17   -1.53    0.31    2.39    5.07    9.04
+   140.0    0.00   -0.08   -0.51   -1.23   -2.11   -3.00   -3.83   -4.54   -5.13   -5.53   -5.63   -5.30   -4.46   -3.15   -1.54    0.24    2.25    4.94    9.10
+   145.0    0.00   -0.08   -0.52   -1.24   -2.12   -3.02   -3.84   -4.55   -5.13   -5.53   -5.62   -5.28   -4.44   -3.14   -1.55    0.17    2.13    4.83    9.12
+   150.0    0.00   -0.08   -0.52   -1.25   -2.13   -3.03   -3.85   -4.56   -5.13   -5.52   -5.61   -5.26   -4.42   -3.13   -1.57    0.12    2.05    4.74    9.10
+   155.0    0.00   -0.08   -0.52   -1.25   -2.14   -3.04   -3.86   -4.56   -5.13   -5.51   -5.59   -5.24   -4.40   -3.12   -1.58    0.09    2.00    4.67    9.03
+   160.0    0.00   -0.08   -0.52   -1.26   -2.14   -3.04   -3.87   -4.56   -5.12   -5.49   -5.57   -5.22   -4.39   -3.12   -1.58    0.09    1.99    4.63    8.89
+   165.0    0.00   -0.09   -0.53   -1.25   -2.14   -3.04   -3.86   -4.56   -5.12   -5.48   -5.55   -5.20   -4.37   -3.11   -1.57    0.11    2.02    4.62    8.69
+   170.0    0.00   -0.09   -0.52   -1.25   -2.13   -3.03   -3.86   -4.56   -5.11   -5.47   -5.53   -5.18   -4.36   -3.10   -1.55    0.16    2.08    4.62    8.47
+   175.0    0.00   -0.09   -0.52   -1.24   -2.12   -3.02   -3.85   -4.56   -5.11   -5.47   -5.52   -5.17   -4.34   -3.08   -1.51    0.22    2.16    4.64    8.23
+   180.0    0.00   -0.09   -0.52   -1.23   -2.10   -3.00   -3.83   -4.55   -5.12   -5.47   -5.52   -5.16   -4.33   -3.06   -1.47    0.29    2.26    4.68    8.02
+   185.0    0.00   -0.10   -0.52   -1.21   -2.07   -2.97   -3.82   -4.55   -5.12   -5.48   -5.53   -5.16   -4.31   -3.03   -1.43    0.36    2.35    4.74    7.86
+   190.0    0.00   -0.10   -0.51   -1.20   -2.04   -2.94   -3.79   -4.54   -5.13   -5.50   -5.54   -5.15   -4.30   -3.01   -1.40    0.42    2.44    4.81    7.79
+   195.0    0.00   -0.10   -0.51   -1.18   -2.01   -2.90   -3.77   -4.54   -5.15   -5.52   -5.55   -5.15   -4.28   -2.99   -1.37    0.46    2.51    4.90    7.82
+   200.0    0.00   -0.11   -0.51   -1.16   -1.98   -2.87   -3.74   -4.53   -5.16   -5.54   -5.56   -5.15   -4.27   -2.97   -1.36    0.48    2.55    5.00    7.96
+   205.0    0.00   -0.11   -0.51   -1.15   -1.95   -2.83   -3.71   -4.52   -5.17   -5.56   -5.58   -5.15   -4.25   -2.95   -1.36    0.47    2.57    5.10    8.20
+   210.0    0.00   -0.11   -0.51   -1.13   -1.92   -2.79   -3.68   -4.51   -5.18   -5.57   -5.59   -5.15   -4.24   -2.95   -1.37    0.45    2.58    5.21    8.50
+   215.0    0.00   -0.12   -0.51   -1.12   -1.89   -2.76   -3.65   -4.49   -5.18   -5.59   -5.60   -5.14   -4.23   -2.94   -1.39    0.41    2.56    5.30    8.84
+   220.0    0.00   -0.13   -0.51   -1.11   -1.87   -2.73   -3.63   -4.48   -5.18   -5.60   -5.60   -5.14   -4.22   -2.94   -1.41    0.37    2.54    5.39    9.18
+   225.0    0.00   -0.13   -0.52   -1.11   -1.86   -2.71   -3.61   -4.47   -5.18   -5.60   -5.61   -5.13   -4.20   -2.93   -1.42    0.33    2.51    5.45    9.46
+   230.0    0.00   -0.14   -0.53   -1.12   -1.86   -2.70   -3.60   -4.46   -5.18   -5.60   -5.60   -5.12   -4.19   -2.92   -1.43    0.31    2.49    5.48    9.65
+   235.0    0.00   -0.15   -0.54   -1.13   -1.86   -2.70   -3.60   -4.46   -5.18   -5.60   -5.59   -5.10   -4.17   -2.90   -1.41    0.31    2.48    5.49    9.73
+   240.0    0.00   -0.15   -0.55   -1.14   -1.87   -2.71   -3.60   -4.46   -5.18   -5.59   -5.58   -5.09   -4.14   -2.87   -1.39    0.33    2.48    5.46    9.69
+   245.0    0.00   -0.16   -0.57   -1.16   -1.89   -2.73   -3.61   -4.47   -5.18   -5.59   -5.57   -5.06   -4.11   -2.83   -1.34    0.37    2.49    5.41    9.55
+   250.0    0.00   -0.17   -0.58   -1.18   -1.92   -2.75   -3.63   -4.48   -5.18   -5.58   -5.55   -5.04   -4.08   -2.79   -1.28    0.42    2.51    5.34    9.32
+   255.0    0.00   -0.18   -0.60   -1.21   -1.95   -2.78   -3.66   -4.50   -5.18   -5.57   -5.54   -5.02   -4.05   -2.74   -1.22    0.49    2.54    5.26    9.05
+   260.0    0.00   -0.19   -0.62   -1.23   -1.98   -2.81   -3.68   -4.51   -5.18   -5.56   -5.52   -4.99   -4.01   -2.70   -1.17    0.55    2.57    5.20    8.78
+   265.0    0.00   -0.20   -0.64   -1.26   -2.01   -2.84   -3.70   -4.52   -5.19   -5.55   -5.50   -4.97   -3.99   -2.67   -1.12    0.60    2.60    5.16    8.55
+   270.0    0.00   -0.21   -0.66   -1.29   -2.04   -2.87   -3.72   -4.53   -5.19   -5.55   -5.49   -4.95   -3.97   -2.65   -1.10    0.63    2.63    5.14    8.41
+   275.0    0.00   -0.21   -0.67   -1.31   -2.06   -2.88   -3.73   -4.53   -5.18   -5.54   -5.48   -4.95   -3.97   -2.65   -1.11    0.63    2.65    5.17    8.38
+   280.0    0.00   -0.22   -0.69   -1.33   -2.08   -2.89   -3.73   -4.53   -5.17   -5.53   -5.48   -4.95   -3.99   -2.68   -1.14    0.60    2.66    5.23    8.47
+   285.0    0.00   -0.23   -0.70   -1.34   -2.09   -2.90   -3.72   -4.52   -5.16   -5.53   -5.49   -4.97   -4.02   -2.74   -1.21    0.55    2.66    5.33    8.67
+   290.0    0.00   -0.23   -0.71   -1.36   -2.09   -2.89   -3.71   -4.50   -5.15   -5.53   -5.50   -5.01   -4.08   -2.81   -1.30    0.47    2.65    5.45    8.96
+   295.0    0.00   -0.24   -0.72   -1.36   -2.09   -2.87   -3.68   -4.47   -5.14   -5.53   -5.53   -5.06   -4.15   -2.91   -1.41    0.37    2.62    5.58    9.30
+   300.0    0.00   -0.24   -0.73   -1.37   -2.08   -2.85   -3.65   -4.44   -5.12   -5.55   -5.57   -5.12   -4.23   -3.01   -1.53    0.26    2.59    5.71    9.66
+   305.0    0.00   -0.25   -0.74   -1.37   -2.07   -2.82   -3.62   -4.42   -5.12   -5.57   -5.61   -5.18   -4.32   -3.12   -1.66    0.14    2.54    5.82    9.99
+   310.0    0.00   -0.25   -0.74   -1.36   -2.06   -2.80   -3.59   -4.40   -5.12   -5.60   -5.67   -5.26   -4.40   -3.22   -1.78    0.03    2.49    5.90   10.26
+   315.0    0.00   -0.25   -0.74   -1.36   -2.04   -2.77   -3.56   -4.38   -5.13   -5.63   -5.72   -5.33   -4.49   -3.32   -1.88   -0.07    2.44    5.95   10.44
+   320.0    0.00   -0.25   -0.74   -1.35   -2.02   -2.75   -3.54   -4.37   -5.14   -5.67   -5.78   -5.40   -4.56   -3.40   -1.97   -0.15    2.38    5.96   10.54
+   325.0    0.00   -0.25   -0.73   -1.34   -2.01   -2.73   -3.53   -4.38   -5.17   -5.71   -5.84   -5.45   -4.62   -3.45   -2.03   -0.22    2.33    5.94   10.53
+   330.0    0.00   -0.25   -0.73   -1.33   -1.99   -2.72   -3.53   -4.39   -5.19   -5.75   -5.88   -5.50   -4.66   -3.49   -2.07   -0.26    2.28    5.89   10.45
+   335.0    0.00   -0.25   -0.72   -1.32   -1.98   -2.71   -3.53   -4.41   -5.22   -5.79   -5.92   -5.53   -4.68   -3.51   -2.08   -0.28    2.25    5.83   10.31
+   340.0    0.00   -0.24   -0.71   -1.31   -1.98   -2.71   -3.54   -4.43   -5.25   -5.82   -5.94   -5.54   -4.68   -3.50   -2.07   -0.27    2.24    5.76   10.14
+   345.0    0.00   -0.24   -0.71   -1.30   -1.97   -2.72   -3.56   -4.45   -5.28   -5.84   -5.96   -5.55   -4.68   -3.48   -2.04   -0.24    2.26    5.71    9.97
+   350.0    0.00   -0.23   -0.70   -1.29   -1.97   -2.73   -3.58   -4.47   -5.30   -5.85   -5.96   -5.54   -4.66   -3.45   -1.99   -0.17    2.30    5.68    9.81
+   355.0    0.00   -0.23   -0.68   -1.28   -1.97   -2.74   -3.59   -4.49   -5.31   -5.85   -5.95   -5.52   -4.63   -3.41   -1.92   -0.09    2.37    5.68    9.67
+   360.0    0.00   -0.22   -0.67   -1.27   -1.97   -2.74   -3.61   -4.50   -5.31   -5.84   -5.93   -5.51   -4.61   -3.36   -1.84    0.03    2.47    5.70    9.56
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH700936C_M    SNOW                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               4    20-APR-05 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+     -0.12     -0.46     90.36                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.22   -0.85   -1.87   -3.20   -4.72   -6.27   -7.68   -8.76   -9.33   -9.27   -8.54   -7.14   -5.10   -2.46    0.78    4.63    9.05   13.83
+     0.0    0.00   -0.25   -0.93   -2.00   -3.37   -4.92   -6.48   -7.86   -8.87   -9.35   -9.23   -8.48   -7.13   -5.21   -2.71    0.46    4.33    8.82   13.57
+     5.0    0.00   -0.25   -0.92   -1.98   -3.35   -4.91   -6.48   -7.87   -8.89   -9.38   -9.25   -8.48   -7.13   -5.22   -2.74    0.39    4.24    8.74   13.56
+    10.0    0.00   -0.24   -0.91   -1.97   -3.33   -4.89   -6.47   -7.88   -8.91   -9.41   -9.27   -8.50   -7.14   -5.23   -2.77    0.33    4.15    8.67   13.58
+    15.0    0.00   -0.24   -0.90   -1.95   -3.31   -4.87   -6.47   -7.89   -8.94   -9.44   -9.30   -8.51   -7.14   -5.23   -2.79    0.28    4.08    8.62   13.64
+    20.0    0.00   -0.23   -0.89   -1.93   -3.29   -4.85   -6.46   -7.90   -8.96   -9.47   -9.33   -8.53   -7.14   -5.23   -2.79    0.25    4.04    8.60   13.71
+    25.0    0.00   -0.23   -0.88   -1.91   -3.27   -4.83   -6.44   -7.90   -8.98   -9.50   -9.37   -8.56   -7.15   -5.22   -2.78    0.26    4.04    8.62   13.79
+    30.0    0.00   -0.22   -0.86   -1.89   -3.24   -4.80   -6.42   -7.90   -9.00   -9.54   -9.40   -8.59   -7.16   -5.20   -2.74    0.31    4.08    8.67   13.88
+    35.0    0.00   -0.22   -0.85   -1.87   -3.21   -4.77   -6.40   -7.88   -9.01   -9.56   -9.44   -8.62   -7.16   -5.17   -2.68    0.38    4.16    8.74   13.95
+    40.0    0.00   -0.21   -0.84   -1.85   -3.18   -4.74   -6.37   -7.86   -9.00   -9.58   -9.47   -8.64   -7.17   -5.14   -2.61    0.49    4.28    8.84   14.02
+    45.0    0.00   -0.20   -0.82   -1.82   -3.15   -4.70   -6.33   -7.83   -8.99   -9.58   -9.49   -8.66   -7.17   -5.10   -2.52    0.62    4.42    8.96   14.07
+    50.0    0.00   -0.20   -0.81   -1.80   -3.12   -4.66   -6.28   -7.79   -8.96   -9.57   -9.49   -8.67   -7.16   -5.06   -2.43    0.75    4.57    9.08   14.10
+    55.0    0.00   -0.19   -0.80   -1.78   -3.09   -4.62   -6.24   -7.74   -8.92   -9.54   -9.48   -8.66   -7.15   -5.02   -2.35    0.88    4.72    9.21   14.13
+    60.0    0.00   -0.19   -0.79   -1.76   -3.06   -4.58   -6.19   -7.69   -8.86   -9.50   -9.45   -8.64   -7.13   -4.98   -2.27    1.00    4.86    9.32   14.15
+    65.0    0.00   -0.19   -0.78   -1.75   -3.03   -4.54   -6.13   -7.63   -8.80   -9.44   -9.40   -8.61   -7.10   -4.94   -2.21    1.09    4.98    9.41   14.16
+    70.0    0.00   -0.18   -0.77   -1.73   -3.01   -4.51   -6.09   -7.57   -8.73   -9.38   -9.35   -8.58   -7.08   -4.92   -2.16    1.16    5.06    9.48   14.17
+    75.0    0.00   -0.18   -0.76   -1.72   -2.99   -4.48   -6.04   -7.51   -8.66   -9.31   -9.29   -8.54   -7.05   -4.90   -2.13    1.21    5.12    9.53   14.17
+    80.0    0.00   -0.17   -0.76   -1.71   -2.98   -4.45   -6.01   -7.46   -8.60   -9.24   -9.23   -8.50   -7.03   -4.89   -2.13    1.22    5.14    9.55   14.17
+    85.0    0.00   -0.17   -0.75   -1.71   -2.97   -4.44   -5.98   -7.42   -8.55   -9.19   -9.19   -8.46   -7.01   -4.89   -2.13    1.22    5.14    9.54   14.15
+    90.0    0.00   -0.17   -0.75   -1.70   -2.96   -4.43   -5.96   -7.39   -8.52   -9.15   -9.15   -8.44   -7.01   -4.90   -2.15    1.19    5.11    9.51   14.12
+    95.0    0.00   -0.17   -0.75   -1.70   -2.96   -4.43   -5.96   -7.38   -8.50   -9.13   -9.14   -8.43   -7.01   -4.91   -2.18    1.16    5.07    9.46   14.07
+   100.0    0.00   -0.17   -0.75   -1.70   -2.97   -4.44   -5.96   -7.38   -8.50   -9.13   -9.13   -8.44   -7.03   -4.94   -2.22    1.11    5.02    9.40   14.02
+   105.0    0.00   -0.17   -0.75   -1.71   -2.98   -4.45   -5.98   -7.40   -8.51   -9.14   -9.15   -8.46   -7.06   -4.98   -2.26    1.07    4.96    9.34   13.95
+   110.0    0.00   -0.16   -0.75   -1.71   -2.99   -4.47   -6.00   -7.42   -8.53   -9.16   -9.18   -8.49   -7.10   -5.02   -2.30    1.02    4.91    9.28   13.89
+   115.0    0.00   -0.17   -0.75   -1.72   -3.00   -4.49   -6.03   -7.45   -8.56   -9.19   -9.21   -8.53   -7.14   -5.07   -2.35    0.97    4.86    9.22   13.83
+   120.0    0.00   -0.17   -0.75   -1.73   -3.02   -4.51   -6.05   -7.48   -8.59   -9.23   -9.24   -8.57   -7.18   -5.11   -2.39    0.93    4.82    9.19   13.80
+   125.0    0.00   -0.17   -0.76   -1.74   -3.03   -4.53   -6.08   -7.50   -8.62   -9.25   -9.27   -8.60   -7.22   -5.15   -2.44    0.89    4.79    9.16   13.79
+   130.0    0.00   -0.17   -0.76   -1.75   -3.05   -4.55   -6.10   -7.53   -8.64   -9.27   -9.29   -8.63   -7.25   -5.19   -2.48    0.85    4.76    9.16   13.81
+   135.0    0.00   -0.17   -0.77   -1.76   -3.06   -4.57   -6.12   -7.55   -8.65   -9.28   -9.30   -8.64   -7.27   -5.22   -2.52    0.82    4.75    9.17   13.85
+   140.0    0.00   -0.17   -0.77   -1.77   -3.08   -4.59   -6.14   -7.56   -8.66   -9.28   -9.30   -8.64   -7.28   -5.24   -2.55    0.79    4.74    9.19   13.92
+   145.0    0.00   -0.17   -0.78   -1.78   -3.09   -4.60   -6.15   -7.57   -8.66   -9.27   -9.28   -8.63   -7.28   -5.26   -2.57    0.77    4.73    9.21   13.99
+   150.0    0.00   -0.18   -0.79   -1.79   -3.10   -4.61   -6.16   -7.57   -8.66   -9.26   -9.27   -8.61   -7.27   -5.26   -2.58    0.75    4.72    9.22   14.06
+   155.0    0.00   -0.18   -0.79   -1.80   -3.12   -4.63   -6.18   -7.58   -8.66   -9.25   -9.25   -8.59   -7.25   -5.25   -2.58    0.74    4.70    9.22   14.09
+   160.0    0.00   -0.18   -0.80   -1.81   -3.13   -4.64   -6.19   -7.59   -8.66   -9.25   -9.24   -8.57   -7.24   -5.23   -2.58    0.73    4.68    9.20   14.09
+   165.0    0.00   -0.18   -0.80   -1.82   -3.14   -4.66   -6.21   -7.60   -8.67   -9.25   -9.24   -8.56   -7.22   -5.22   -2.56    0.73    4.65    9.14   14.03
+   170.0    0.00   -0.19   -0.81   -1.83   -3.16   -4.68   -6.23   -7.63   -8.69   -9.27   -9.25   -8.57   -7.21   -5.20   -2.55    0.72    4.60    9.05   13.92
+   175.0    0.00   -0.19   -0.82   -1.84   -3.17   -4.69   -6.25   -7.65   -8.72   -9.30   -9.27   -8.58   -7.21   -5.19   -2.54    0.70    4.54    8.93   13.77
+   180.0    0.00   -0.19   -0.82   -1.85   -3.18   -4.71   -6.27   -7.68   -8.76   -9.34   -9.31   -8.61   -7.22   -5.18   -2.54    0.68    4.46    8.79   13.59
+   185.0    0.00   -0.20   -0.83   -1.86   -3.20   -4.73   -6.30   -7.72   -8.80   -9.39   -9.36   -8.64   -7.24   -5.19   -2.55    0.65    4.38    8.64   13.40
+   190.0    0.00   -0.20   -0.84   -1.87   -3.21   -4.75   -6.32   -7.75   -8.84   -9.43   -9.40   -8.68   -7.27   -5.21   -2.56    0.61    4.29    8.50   13.23
+   195.0    0.00   -0.20   -0.84   -1.88   -3.22   -4.77   -6.34   -7.78   -8.87   -9.47   -9.45   -8.72   -7.30   -5.24   -2.60    0.55    4.20    8.38   13.11
+   200.0    0.00   -0.21   -0.85   -1.88   -3.23   -4.78   -6.36   -7.79   -8.90   -9.50   -9.48   -8.76   -7.34   -5.27   -2.64    0.50    4.14    8.31   13.06
+   205.0    0.00   -0.21   -0.86   -1.89   -3.24   -4.79   -6.37   -7.80   -8.91   -9.52   -9.50   -8.78   -7.37   -5.31   -2.68    0.46    4.09    8.29   13.09
+   210.0    0.00   -0.22   -0.86   -1.90   -3.25   -4.79   -6.37   -7.80   -8.90   -9.51   -9.50   -8.80   -7.40   -5.35   -2.72    0.43    4.09    8.34   13.21
+   215.0    0.00   -0.22   -0.87   -1.91   -3.25   -4.79   -6.36   -7.78   -8.88   -9.49   -9.49   -8.80   -7.41   -5.37   -2.75    0.42    4.13    8.45   13.40
+   220.0    0.00   -0.22   -0.87   -1.91   -3.25   -4.78   -6.34   -7.76   -8.85   -9.46   -9.46   -8.78   -7.41   -5.39   -2.75    0.45    4.22    8.62   13.64
+   225.0    0.00   -0.23   -0.88   -1.91   -3.25   -4.78   -6.32   -7.73   -8.81   -9.41   -9.42   -8.76   -7.40   -5.38   -2.73    0.51    4.36    8.84   13.92
+   230.0    0.00   -0.23   -0.88   -1.92   -3.25   -4.77   -6.30   -7.69   -8.76   -9.36   -9.38   -8.72   -7.38   -5.35   -2.68    0.61    4.54    9.10   14.19
+   235.0    0.00   -0.23   -0.89   -1.92   -3.25   -4.75   -6.28   -7.66   -8.72   -9.32   -9.33   -8.68   -7.34   -5.31   -2.60    0.75    4.75    9.36   14.43
+   240.0    0.00   -0.24   -0.89   -1.92   -3.25   -4.74   -6.26   -7.63   -8.68   -9.27   -9.29   -8.64   -7.29   -5.24   -2.50    0.91    4.97    9.60   14.60
+   245.0    0.00   -0.24   -0.90   -1.93   -3.25   -4.74   -6.24   -7.61   -8.65   -9.24   -9.25   -8.59   -7.23   -5.15   -2.37    1.09    5.18    9.80   14.68
+   250.0    0.00   -0.24   -0.90   -1.93   -3.25   -4.73   -6.24   -7.59   -8.64   -9.22   -9.22   -8.55   -7.17   -5.06   -2.24    1.26    5.37    9.94   14.67
+   255.0    0.00   -0.25   -0.91   -1.93   -3.25   -4.73   -6.23   -7.59   -8.63   -9.21   -9.20   -8.52   -7.11   -4.97   -2.11    1.41    5.51   10.01   14.57
+   260.0    0.00   -0.25   -0.91   -1.94   -3.25   -4.73   -6.24   -7.59   -8.64   -9.22   -9.19   -8.49   -7.05   -4.88   -2.00    1.52    5.59   10.00   14.39
+   265.0    0.00   -0.25   -0.92   -1.94   -3.26   -4.74   -6.25   -7.61   -8.65   -9.23   -9.19   -8.46   -6.99   -4.80   -1.92    1.59    5.61    9.93   14.17
+   270.0    0.00   -0.26   -0.92   -1.95   -3.27   -4.75   -6.26   -7.63   -8.67   -9.24   -9.19   -8.43   -6.95   -4.74   -1.87    1.61    5.56    9.79   13.93
+   275.0    0.00   -0.26   -0.93   -1.96   -3.28   -4.77   -6.28   -7.65   -8.70   -9.25   -9.18   -8.41   -6.91   -4.70   -1.85    1.56    5.44    9.60   13.71
+   280.0    0.00   -0.26   -0.93   -1.97   -3.29   -4.78   -6.30   -7.68   -8.72   -9.26   -9.18   -8.39   -6.88   -4.69   -1.88    1.47    5.28    9.40   13.53
+   285.0    0.00   -0.26   -0.94   -1.97   -3.30   -4.80   -6.32   -7.70   -8.74   -9.27   -9.17   -8.36   -6.86   -4.70   -1.94    1.34    5.09    9.20   13.40
+   290.0    0.00   -0.26   -0.94   -1.98   -3.31   -4.82   -6.35   -7.72   -8.75   -9.27   -9.15   -8.34   -6.85   -4.72   -2.03    1.19    4.89    9.02   13.35
+   295.0    0.00   -0.27   -0.95   -1.99   -3.33   -4.84   -6.37   -7.74   -8.76   -9.27   -9.14   -8.33   -6.85   -4.77   -2.13    1.02    4.71    8.88   13.36
+   300.0    0.00   -0.27   -0.95   -2.00   -3.34   -4.85   -6.39   -7.75   -8.77   -9.26   -9.12   -8.31   -6.86   -4.82   -2.24    0.87    4.55    8.78   13.43
+   305.0    0.00   -0.27   -0.95   -2.01   -3.35   -4.87   -6.40   -7.76   -8.77   -9.25   -9.11   -8.31   -6.88   -4.88   -2.34    0.74    4.43    8.74   13.54
+   310.0    0.00   -0.27   -0.96   -2.02   -3.36   -4.88   -6.42   -7.77   -8.77   -9.24   -9.10   -8.31   -6.90   -4.94   -2.43    0.65    4.36    8.74   13.67
+   315.0    0.00   -0.27   -0.96   -2.02   -3.37   -4.90   -6.43   -7.78   -8.77   -9.24   -9.10   -8.32   -6.93   -4.99   -2.50    0.59    4.34    8.78   13.78
+   320.0    0.00   -0.27   -0.96   -2.03   -3.38   -4.91   -6.44   -7.79   -8.77   -9.24   -9.10   -8.33   -6.97   -5.04   -2.55    0.56    4.35    8.84   13.87
+   325.0    0.00   -0.27   -0.96   -2.03   -3.39   -4.92   -6.45   -7.80   -8.78   -9.25   -9.11   -8.35   -7.00   -5.08   -2.58    0.56    4.39    8.91   13.92
+   330.0    0.00   -0.27   -0.96   -2.03   -3.39   -4.93   -6.46   -7.81   -8.79   -9.25   -9.12   -8.38   -7.03   -5.11   -2.59    0.57    4.44    8.97   13.93
+   335.0    0.00   -0.27   -0.96   -2.03   -3.40   -4.93   -6.47   -7.82   -8.80   -9.27   -9.14   -8.40   -7.06   -5.13   -2.60    0.59    4.48    9.01   13.90
+   340.0    0.00   -0.26   -0.96   -2.03   -3.40   -4.93   -6.47   -7.82   -8.81   -9.28   -9.16   -8.42   -7.08   -5.15   -2.61    0.60    4.51    9.03   13.83
+   345.0    0.00   -0.26   -0.95   -2.02   -3.39   -4.93   -6.48   -7.83   -8.82   -9.30   -9.18   -8.44   -7.10   -5.17   -2.62    0.60    4.51    9.01   13.75
+   350.0    0.00   -0.26   -0.95   -2.02   -3.39   -4.93   -6.48   -7.84   -8.84   -9.31   -9.19   -8.45   -7.12   -5.19   -2.64    0.57    4.48    8.97   13.67
+   355.0    0.00   -0.26   -0.94   -2.01   -3.38   -4.92   -6.48   -7.85   -8.85   -9.33   -9.21   -8.47   -7.12   -5.20   -2.67    0.52    4.42    8.90   13.60
+   360.0    0.00   -0.25   -0.93   -2.00   -3.37   -4.92   -6.48   -7.86   -8.87   -9.35   -9.23   -8.48   -7.13   -5.21   -2.71    0.46    4.33    8.82   13.57
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.45      0.43    120.11                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.11   -0.42   -0.91   -1.54   -2.27   -3.06   -3.89   -4.66   -5.26   -5.54   -5.40   -4.75   -3.60   -1.99    0.08    2.63    5.72    9.37
+     0.0    0.00   -0.17   -0.50   -0.94   -1.48   -2.13   -2.92   -3.80   -4.68   -5.39   -5.73   -5.58   -4.91   -3.76   -2.17   -0.13    2.44    5.62    9.23
+     5.0    0.00   -0.16   -0.49   -0.92   -1.46   -2.12   -2.91   -3.80   -4.69   -5.39   -5.73   -5.58   -4.92   -3.77   -2.19   -0.16    2.41    5.58    9.17
+    10.0    0.00   -0.16   -0.47   -0.91   -1.45   -2.11   -2.91   -3.81   -4.69   -5.39   -5.72   -5.57   -4.91   -3.78   -2.21   -0.19    2.38    5.56    9.16
+    15.0    0.00   -0.15   -0.46   -0.90   -1.44   -2.11   -2.92   -3.81   -4.69   -5.38   -5.71   -5.56   -4.90   -3.78   -2.23   -0.22    2.36    5.56    9.18
+    20.0    0.00   -0.15   -0.45   -0.88   -1.44   -2.12   -2.93   -3.82   -4.69   -5.37   -5.69   -5.53   -4.89   -3.78   -2.23   -0.22    2.37    5.59    9.25
+    25.0    0.00   -0.14   -0.44   -0.88   -1.43   -2.12   -2.94   -3.83   -4.69   -5.35   -5.66   -5.51   -4.87   -3.76   -2.22   -0.20    2.40    5.65    9.35
+    30.0    0.00   -0.13   -0.43   -0.87   -1.43   -2.13   -2.95   -3.84   -4.69   -5.34   -5.64   -5.48   -4.85   -3.75   -2.20   -0.17    2.47    5.74    9.46
+    35.0    0.00   -0.13   -0.42   -0.86   -1.44   -2.14   -2.97   -3.85   -4.69   -5.32   -5.61   -5.46   -4.83   -3.73   -2.17   -0.10    2.56    5.86    9.58
+    40.0    0.00   -0.12   -0.41   -0.86   -1.44   -2.16   -2.98   -3.86   -4.68   -5.30   -5.59   -5.44   -4.81   -3.71   -2.13   -0.03    2.67    5.99    9.69
+    45.0    0.00   -0.12   -0.41   -0.86   -1.45   -2.17   -2.99   -3.86   -4.67   -5.29   -5.57   -5.42   -4.80   -3.68   -2.08    0.06    2.80    6.12    9.77
+    50.0    0.00   -0.11   -0.40   -0.85   -1.45   -2.18   -3.01   -3.87   -4.67   -5.27   -5.55   -5.41   -4.79   -3.67   -2.03    0.15    2.92    6.24    9.84
+    55.0    0.00   -0.10   -0.40   -0.85   -1.46   -2.19   -3.02   -3.87   -4.66   -5.26   -5.54   -5.40   -4.78   -3.65   -1.99    0.23    3.04    6.35    9.89
+    60.0    0.00   -0.10   -0.39   -0.86   -1.47   -2.21   -3.03   -3.88   -4.66   -5.25   -5.53   -5.40   -4.78   -3.64   -1.95    0.30    3.13    6.44    9.93
+    65.0    0.00   -0.09   -0.39   -0.86   -1.48   -2.22   -3.05   -3.89   -4.66   -5.25   -5.53   -5.40   -4.78   -3.64   -1.93    0.35    3.20    6.50    9.96
+    70.0    0.00   -0.09   -0.38   -0.86   -1.49   -2.24   -3.07   -3.90   -4.67   -5.25   -5.53   -5.40   -4.79   -3.64   -1.92    0.38    3.23    6.54    9.98
+    75.0    0.00   -0.09   -0.38   -0.87   -1.51   -2.26   -3.09   -3.92   -4.68   -5.26   -5.54   -5.41   -4.80   -3.64   -1.92    0.38    3.24    6.55   10.02
+    80.0    0.00   -0.08   -0.38   -0.87   -1.52   -2.28   -3.11   -3.94   -4.70   -5.27   -5.55   -5.42   -4.81   -3.65   -1.93    0.37    3.23    6.55   10.06
+    85.0    0.00   -0.08   -0.38   -0.88   -1.54   -2.31   -3.14   -3.97   -4.72   -5.29   -5.56   -5.43   -4.82   -3.66   -1.95    0.34    3.20    6.53   10.10
+    90.0    0.00   -0.08   -0.38   -0.89   -1.55   -2.33   -3.17   -3.99   -4.74   -5.31   -5.58   -5.44   -4.83   -3.68   -1.97    0.31    3.16    6.50   10.15
+    95.0    0.00   -0.07   -0.38   -0.90   -1.57   -2.36   -3.19   -4.02   -4.76   -5.32   -5.59   -5.45   -4.83   -3.68   -1.98    0.28    3.11    6.47   10.19
+   100.0    0.00   -0.07   -0.38   -0.90   -1.59   -2.38   -3.22   -4.05   -4.78   -5.34   -5.60   -5.46   -4.84   -3.69   -1.99    0.26    3.07    6.44   10.22
+   105.0    0.00   -0.07   -0.38   -0.91   -1.61   -2.40   -3.24   -4.07   -4.80   -5.35   -5.61   -5.47   -4.84   -3.69   -2.00    0.24    3.04    6.40   10.23
+   110.0    0.00   -0.06   -0.38   -0.92   -1.62   -2.43   -3.27   -4.08   -4.81   -5.36   -5.61   -5.47   -4.84   -3.68   -1.99    0.24    3.02    6.37   10.22
+   115.0    0.00   -0.06   -0.38   -0.93   -1.64   -2.44   -3.28   -4.09   -4.81   -5.35   -5.61   -5.46   -4.83   -3.67   -1.97    0.26    3.02    6.34   10.18
+   120.0    0.00   -0.06   -0.38   -0.93   -1.65   -2.46   -3.30   -4.10   -4.81   -5.35   -5.60   -5.45   -4.81   -3.64   -1.94    0.28    3.02    6.31   10.13
+   125.0    0.00   -0.06   -0.38   -0.93   -1.66   -2.47   -3.30   -4.10   -4.81   -5.34   -5.59   -5.44   -4.80   -3.62   -1.90    0.32    3.04    6.28   10.06
+   130.0    0.00   -0.05   -0.38   -0.94   -1.66   -2.48   -3.31   -4.10   -4.80   -5.32   -5.57   -5.42   -4.78   -3.59   -1.86    0.36    3.06    6.26    9.98
+   135.0    0.00   -0.05   -0.37   -0.94   -1.67   -2.48   -3.31   -4.09   -4.79   -5.31   -5.56   -5.41   -4.76   -3.56   -1.83    0.40    3.08    6.24    9.91
+   140.0    0.00   -0.05   -0.37   -0.93   -1.67   -2.48   -3.30   -4.09   -4.78   -5.30   -5.55   -5.40   -4.75   -3.54   -1.80    0.43    3.09    6.21    9.84
+   145.0    0.00   -0.05   -0.37   -0.93   -1.66   -2.47   -3.30   -4.08   -4.77   -5.29   -5.55   -5.41   -4.75   -3.53   -1.78    0.44    3.09    6.18    9.78
+   150.0    0.00   -0.05   -0.36   -0.92   -1.65   -2.46   -3.29   -4.07   -4.77   -5.30   -5.56   -5.42   -4.76   -3.54   -1.78    0.44    3.07    6.14    9.72
+   155.0    0.00   -0.05   -0.36   -0.91   -1.64   -2.45   -3.28   -4.07   -4.77   -5.31   -5.58   -5.45   -4.79   -3.56   -1.79    0.42    3.04    6.09    9.67
+   160.0    0.00   -0.05   -0.35   -0.90   -1.62   -2.43   -3.26   -4.06   -4.78   -5.34   -5.62   -5.49   -4.83   -3.59   -1.82    0.39    2.99    6.02    9.60
+   165.0    0.00   -0.04   -0.35   -0.89   -1.61   -2.41   -3.25   -4.06   -4.79   -5.37   -5.67   -5.55   -4.88   -3.64   -1.87    0.33    2.92    5.93    9.53
+   170.0    0.00   -0.04   -0.34   -0.88   -1.58   -2.39   -3.23   -4.05   -4.80   -5.40   -5.72   -5.61   -4.95   -3.71   -1.94    0.26    2.83    5.83    9.43
+   175.0    0.00   -0.04   -0.34   -0.86   -1.56   -2.37   -3.21   -4.05   -4.82   -5.44   -5.78   -5.68   -5.02   -3.78   -2.01    0.18    2.73    5.71    9.31
+   180.0    0.00   -0.04   -0.33   -0.85   -1.54   -2.34   -3.19   -4.04   -4.84   -5.48   -5.84   -5.74   -5.09   -3.84   -2.08    0.09    2.62    5.58    9.17
+   185.0    0.00   -0.05   -0.33   -0.84   -1.52   -2.31   -3.17   -4.03   -4.85   -5.51   -5.89   -5.80   -5.15   -3.90   -2.15    0.01    2.50    5.44    9.03
+   190.0    0.00   -0.05   -0.33   -0.82   -1.49   -2.29   -3.14   -4.02   -4.86   -5.54   -5.92   -5.84   -5.19   -3.95   -2.20   -0.07    2.40    5.31    8.89
+   195.0    0.00   -0.05   -0.32   -0.81   -1.48   -2.26   -3.12   -4.01   -4.86   -5.55   -5.94   -5.86   -5.21   -3.97   -2.24   -0.13    2.31    5.20    8.76
+   200.0    0.00   -0.05   -0.32   -0.80   -1.46   -2.24   -3.10   -4.00   -4.85   -5.55   -5.94   -5.86   -5.20   -3.97   -2.26   -0.18    2.24    5.11    8.67
+   205.0    0.00   -0.06   -0.33   -0.80   -1.44   -2.22   -3.08   -3.98   -4.84   -5.54   -5.92   -5.82   -5.17   -3.94   -2.25   -0.19    2.20    5.07    8.63
+   210.0    0.00   -0.06   -0.33   -0.80   -1.43   -2.20   -3.06   -3.96   -4.82   -5.51   -5.87   -5.77   -5.10   -3.89   -2.21   -0.18    2.20    5.06    8.64
+   215.0    0.00   -0.07   -0.33   -0.80   -1.43   -2.19   -3.05   -3.94   -4.79   -5.46   -5.81   -5.69   -5.02   -3.81   -2.15   -0.14    2.24    5.11    8.71
+   220.0    0.00   -0.07   -0.34   -0.80   -1.43   -2.18   -3.03   -3.92   -4.75   -5.41   -5.74   -5.60   -4.91   -3.71   -2.07   -0.07    2.31    5.19    8.82
+   225.0    0.00   -0.08   -0.35   -0.81   -1.43   -2.18   -3.02   -3.89   -4.71   -5.35   -5.65   -5.49   -4.80   -3.60   -1.97    0.03    2.41    5.32    8.96
+   230.0    0.00   -0.08   -0.36   -0.82   -1.44   -2.18   -3.01   -3.87   -4.67   -5.28   -5.57   -5.39   -4.69   -3.49   -1.86    0.14    2.53    5.46    9.12
+   235.0    0.00   -0.09   -0.38   -0.84   -1.45   -2.18   -2.99   -3.84   -4.62   -5.22   -5.48   -5.29   -4.58   -3.38   -1.75    0.25    2.66    5.60    9.25
+   240.0    0.00   -0.10   -0.39   -0.85   -1.46   -2.18   -2.98   -3.81   -4.58   -5.16   -5.40   -5.20   -4.49   -3.28   -1.65    0.37    2.78    5.73    9.34
+   245.0    0.00   -0.11   -0.41   -0.87   -1.47   -2.18   -2.97   -3.78   -4.53   -5.10   -5.33   -5.13   -4.41   -3.20   -1.56    0.46    2.89    5.82    9.38
+   250.0    0.00   -0.12   -0.42   -0.89   -1.49   -2.19   -2.96   -3.75   -4.49   -5.04   -5.28   -5.07   -4.36   -3.15   -1.50    0.53    2.96    5.87    9.35
+   255.0    0.00   -0.12   -0.44   -0.91   -1.51   -2.20   -2.95   -3.73   -4.45   -5.00   -5.23   -5.04   -4.33   -3.12   -1.47    0.57    2.99    5.86    9.25
+   260.0    0.00   -0.13   -0.46   -0.94   -1.53   -2.21   -2.94   -3.70   -4.41   -4.96   -5.20   -5.01   -4.32   -3.12   -1.47    0.57    2.97    5.79    9.09
+   265.0    0.00   -0.14   -0.48   -0.96   -1.55   -2.22   -2.94   -3.69   -4.39   -4.93   -5.18   -5.01   -4.33   -3.14   -1.50    0.52    2.90    5.67    8.89
+   270.0    0.00   -0.15   -0.49   -0.98   -1.57   -2.23   -2.94   -3.67   -4.37   -4.92   -5.17   -5.01   -4.34   -3.17   -1.55    0.44    2.78    5.51    8.68
+   275.0    0.00   -0.16   -0.51   -1.00   -1.59   -2.24   -2.94   -3.67   -4.36   -4.91   -5.17   -5.02   -4.37   -3.22   -1.63    0.33    2.63    5.33    8.49
+   280.0    0.00   -0.17   -0.52   -1.02   -1.61   -2.26   -2.95   -3.67   -4.36   -4.91   -5.18   -5.03   -4.40   -3.27   -1.72    0.19    2.46    5.15    8.35
+   285.0    0.00   -0.17   -0.54   -1.04   -1.63   -2.27   -2.96   -3.68   -4.37   -4.92   -5.19   -5.05   -4.42   -3.33   -1.82    0.04    2.28    4.99    8.26
+   290.0    0.00   -0.18   -0.55   -1.05   -1.64   -2.28   -2.98   -3.70   -4.39   -4.94   -5.21   -5.06   -4.45   -3.38   -1.92   -0.10    2.12    4.86    8.26
+   295.0    0.00   -0.18   -0.56   -1.07   -1.65   -2.30   -2.99   -3.72   -4.42   -4.97   -5.23   -5.08   -4.47   -3.43   -2.00   -0.22    1.98    4.79    8.35
+   300.0    0.00   -0.19   -0.57   -1.07   -1.66   -2.31   -3.01   -3.74   -4.45   -5.00   -5.26   -5.11   -4.50   -3.47   -2.07   -0.32    1.89    4.77    8.50
+   305.0    0.00   -0.19   -0.57   -1.08   -1.66   -2.31   -3.02   -3.77   -4.48   -5.04   -5.29   -5.13   -4.52   -3.50   -2.12   -0.39    1.85    4.81    8.71
+   310.0    0.00   -0.19   -0.58   -1.08   -1.66   -2.31   -3.03   -3.79   -4.52   -5.08   -5.34   -5.17   -4.55   -3.53   -2.16   -0.42    1.85    4.91    8.94
+   315.0    0.00   -0.19   -0.58   -1.08   -1.66   -2.31   -3.03   -3.81   -4.55   -5.13   -5.38   -5.21   -4.58   -3.55   -2.17   -0.41    1.90    5.04    9.18
+   320.0    0.00   -0.20   -0.57   -1.07   -1.65   -2.30   -3.03   -3.82   -4.58   -5.17   -5.43   -5.25   -4.61   -3.57   -2.17   -0.38    1.98    5.19    9.39
+   325.0    0.00   -0.19   -0.57   -1.06   -1.63   -2.28   -3.02   -3.83   -4.61   -5.22   -5.49   -5.30   -4.65   -3.59   -2.16   -0.33    2.09    5.34    9.54
+   330.0    0.00   -0.19   -0.56   -1.05   -1.61   -2.26   -3.01   -3.83   -4.63   -5.26   -5.54   -5.36   -4.70   -3.61   -2.15   -0.27    2.20    5.48    9.64
+   335.0    0.00   -0.19   -0.56   -1.03   -1.59   -2.24   -2.99   -3.83   -4.65   -5.30   -5.59   -5.41   -4.74   -3.63   -2.13   -0.21    2.30    5.59    9.66
+   340.0    0.00   -0.19   -0.55   -1.01   -1.56   -2.21   -2.97   -3.82   -4.66   -5.33   -5.63   -5.47   -4.79   -3.66   -2.12   -0.15    2.39    5.66    9.63
+   345.0    0.00   -0.18   -0.54   -0.99   -1.54   -2.19   -2.96   -3.82   -4.67   -5.35   -5.67   -5.51   -4.83   -3.68   -2.12   -0.12    2.44    5.69    9.54
+   350.0    0.00   -0.18   -0.52   -0.98   -1.52   -2.17   -2.94   -3.81   -4.68   -5.37   -5.70   -5.55   -4.87   -3.71   -2.13   -0.11    2.47    5.69    9.44
+   355.0    0.00   -0.18   -0.51   -0.96   -1.50   -2.15   -2.92   -3.80   -4.68   -5.38   -5.72   -5.57   -4.89   -3.74   -2.15   -0.11    2.46    5.66    9.33
+   360.0    0.00   -0.17   -0.50   -0.94   -1.48   -2.13   -2.92   -3.80   -4.68   -5.39   -5.73   -5.58   -4.91   -3.76   -2.17   -0.13    2.44    5.62    9.23
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH700936D_M    NONE                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               1    27-JAN-03 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+      0.82     -0.01     91.48                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.25   -0.96   -2.02   -3.31   -4.67   -5.96   -7.05   -7.85   -8.24   -8.17   -7.56   -6.40   -4.68   -2.38    0.60    4.38    9.02   14.41
+     0.0    0.00   -0.28   -1.03   -2.12   -3.43   -4.81   -6.12   -7.24   -8.04   -8.42   -8.31   -7.65   -6.45   -4.70   -2.41    0.48    4.11    8.59   13.85
+     5.0    0.00   -0.28   -1.02   -2.12   -3.43   -4.81   -6.12   -7.24   -8.05   -8.45   -8.35   -7.70   -6.49   -4.74   -2.45    0.46    4.11    8.62   13.94
+    10.0    0.00   -0.28   -1.02   -2.12   -3.42   -4.80   -6.12   -7.24   -8.06   -8.47   -8.39   -7.74   -6.54   -4.78   -2.47    0.45    4.12    8.66   14.06
+    15.0    0.00   -0.28   -1.02   -2.11   -3.42   -4.80   -6.11   -7.24   -8.07   -8.50   -8.42   -7.78   -6.57   -4.81   -2.49    0.44    4.13    8.71   14.20
+    20.0    0.00   -0.28   -1.02   -2.11   -3.41   -4.79   -6.11   -7.25   -8.08   -8.52   -8.45   -7.81   -6.61   -4.84   -2.51    0.43    4.14    8.77   14.34
+    25.0    0.00   -0.28   -1.01   -2.10   -3.41   -4.79   -6.11   -7.25   -8.09   -8.53   -8.47   -7.84   -6.63   -4.86   -2.53    0.43    4.16    8.83   14.47
+    30.0    0.00   -0.28   -1.01   -2.09   -3.40   -4.78   -6.10   -7.24   -8.09   -8.53   -8.48   -7.86   -6.65   -4.88   -2.54    0.43    4.18    8.89   14.60
+    35.0    0.00   -0.27   -1.00   -2.09   -3.39   -4.77   -6.09   -7.23   -8.08   -8.53   -8.48   -7.87   -6.67   -4.90   -2.56    0.42    4.20    8.95   14.72
+    40.0    0.00   -0.27   -1.00   -2.08   -3.38   -4.76   -6.08   -7.22   -8.07   -8.52   -8.47   -7.87   -6.68   -4.92   -2.57    0.42    4.23    9.01   14.82
+    45.0    0.00   -0.27   -0.99   -2.07   -3.37   -4.75   -6.06   -7.19   -8.04   -8.49   -8.46   -7.87   -6.69   -4.94   -2.58    0.43    4.26    9.08   14.90
+    50.0    0.00   -0.26   -0.98   -2.06   -3.36   -4.73   -6.04   -7.16   -8.00   -8.46   -8.43   -7.85   -6.70   -4.95   -2.59    0.45    4.31    9.15   14.97
+    55.0    0.00   -0.26   -0.98   -2.05   -3.34   -4.71   -6.01   -7.12   -7.96   -8.41   -8.40   -7.83   -6.69   -4.94   -2.58    0.48    4.37    9.22   15.02
+    60.0    0.00   -0.26   -0.97   -2.04   -3.33   -4.68   -5.97   -7.08   -7.91   -8.36   -8.35   -7.80   -6.67   -4.93   -2.56    0.53    4.44    9.29   15.05
+    65.0    0.00   -0.25   -0.96   -2.03   -3.31   -4.65   -5.93   -7.03   -7.85   -8.30   -8.30   -7.76   -6.64   -4.90   -2.52    0.58    4.51    9.36   15.07
+    70.0    0.00   -0.25   -0.96   -2.02   -3.29   -4.62   -5.89   -6.97   -7.79   -8.24   -8.24   -7.71   -6.59   -4.86   -2.47    0.65    4.58    9.41   15.08
+    75.0    0.00   -0.25   -0.95   -2.00   -3.27   -4.59   -5.84   -6.92   -7.73   -8.17   -8.17   -7.65   -6.54   -4.80   -2.41    0.71    4.65    9.46   15.07
+    80.0    0.00   -0.24   -0.94   -1.99   -3.25   -4.56   -5.80   -6.87   -7.67   -8.11   -8.11   -7.59   -6.48   -4.74   -2.34    0.78    4.70    9.49   15.06
+    85.0    0.00   -0.24   -0.93   -1.98   -3.23   -4.53   -5.77   -6.83   -7.62   -8.06   -8.05   -7.52   -6.41   -4.67   -2.27    0.84    4.74    9.50   15.05
+    90.0    0.00   -0.24   -0.93   -1.97   -3.21   -4.51   -5.74   -6.79   -7.58   -8.01   -8.00   -7.46   -6.34   -4.60   -2.21    0.88    4.76    9.50   15.02
+    95.0    0.00   -0.23   -0.92   -1.96   -3.20   -4.49   -5.72   -6.77   -7.55   -7.98   -7.96   -7.41   -6.29   -4.55   -2.17    0.90    4.76    9.48   15.00
+   100.0    0.00   -0.23   -0.92   -1.95   -3.19   -4.48   -5.71   -6.76   -7.53   -7.95   -7.93   -7.37   -6.24   -4.51   -2.15    0.90    4.74    9.44   14.97
+   105.0    0.00   -0.23   -0.91   -1.94   -3.18   -4.48   -5.71   -6.76   -7.53   -7.95   -7.91   -7.35   -6.22   -4.49   -2.14    0.89    4.70    9.40   14.95
+   110.0    0.00   -0.23   -0.91   -1.94   -3.18   -4.48   -5.71   -6.77   -7.54   -7.95   -7.91   -7.34   -6.21   -4.49   -2.16    0.85    4.66    9.36   14.93
+   115.0    0.00   -0.22   -0.90   -1.94   -3.18   -4.49   -5.73   -6.78   -7.56   -7.97   -7.91   -7.34   -6.22   -4.51   -2.19    0.80    4.61    9.32   14.91
+   120.0    0.00   -0.22   -0.90   -1.94   -3.19   -4.50   -5.75   -6.81   -7.59   -7.99   -7.93   -7.36   -6.24   -4.54   -2.24    0.75    4.56    9.29   14.89
+   125.0    0.00   -0.22   -0.90   -1.94   -3.20   -4.52   -5.77   -6.84   -7.62   -8.01   -7.95   -7.38   -6.27   -4.59   -2.30    0.70    4.52    9.27   14.86
+   130.0    0.00   -0.22   -0.90   -1.94   -3.21   -4.54   -5.80   -6.87   -7.65   -8.04   -7.98   -7.41   -6.30   -4.63   -2.35    0.65    4.49    9.25   14.83
+   135.0    0.00   -0.22   -0.90   -1.95   -3.22   -4.56   -5.83   -6.91   -7.68   -8.06   -8.00   -7.43   -6.33   -4.67   -2.39    0.61    4.47    9.24   14.79
+   140.0    0.00   -0.22   -0.90   -1.95   -3.23   -4.58   -5.86   -6.94   -7.71   -8.08   -8.01   -7.44   -6.35   -4.71   -2.43    0.58    4.45    9.23   14.73
+   145.0    0.00   -0.22   -0.90   -1.96   -3.24   -4.61   -5.89   -6.97   -7.73   -8.10   -8.02   -7.45   -6.37   -4.73   -2.46    0.56    4.44    9.20   14.66
+   150.0    0.00   -0.22   -0.90   -1.96   -3.25   -4.62   -5.92   -6.99   -7.75   -8.11   -8.02   -7.45   -6.37   -4.73   -2.47    0.54    4.41    9.17   14.56
+   155.0    0.00   -0.21   -0.90   -1.96   -3.26   -4.64   -5.94   -7.02   -7.77   -8.13   -8.03   -7.45   -6.36   -4.73   -2.48    0.52    4.38    9.11   14.45
+   160.0    0.00   -0.21   -0.90   -1.97   -3.27   -4.65   -5.96   -7.04   -7.79   -8.14   -8.03   -7.44   -6.35   -4.73   -2.49    0.50    4.33    9.03   14.32
+   165.0    0.00   -0.21   -0.90   -1.97   -3.28   -4.67   -5.97   -7.06   -7.81   -8.15   -8.04   -7.44   -6.35   -4.73   -2.50    0.46    4.27    8.94   14.19
+   170.0    0.00   -0.21   -0.90   -1.97   -3.28   -4.67   -5.98   -7.08   -7.83   -8.18   -8.06   -7.45   -6.36   -4.74   -2.52    0.42    4.20    8.83   14.05
+   175.0    0.00   -0.22   -0.90   -1.97   -3.29   -4.68   -6.00   -7.09   -7.86   -8.21   -8.09   -7.48   -6.38   -4.76   -2.55    0.36    4.11    8.73   13.94
+   180.0    0.00   -0.22   -0.91   -1.98   -3.29   -4.68   -6.00   -7.11   -7.89   -8.24   -8.13   -7.52   -6.41   -4.79   -2.60    0.30    4.03    8.63   13.85
+   185.0    0.00   -0.22   -0.91   -1.98   -3.29   -4.68   -6.01   -7.13   -7.92   -8.29   -8.18   -7.58   -6.47   -4.85   -2.65    0.24    3.96    8.55   13.79
+   190.0    0.00   -0.22   -0.91   -1.98   -3.29   -4.68   -6.02   -7.15   -7.95   -8.34   -8.25   -7.65   -6.54   -4.91   -2.71    0.18    3.90    8.51   13.76
+   195.0    0.00   -0.22   -0.91   -1.98   -3.28   -4.68   -6.02   -7.16   -7.99   -8.39   -8.31   -7.72   -6.61   -4.97   -2.76    0.14    3.87    8.50   13.78
+   200.0    0.00   -0.22   -0.91   -1.97   -3.28   -4.68   -6.02   -7.18   -8.02   -8.44   -8.38   -7.79   -6.68   -5.03   -2.80    0.12    3.88    8.53   13.84
+   205.0    0.00   -0.22   -0.91   -1.97   -3.28   -4.68   -6.03   -7.19   -8.04   -8.48   -8.43   -7.85   -6.73   -5.07   -2.83    0.12    3.91    8.60   13.93
+   210.0    0.00   -0.22   -0.91   -1.97   -3.28   -4.68   -6.02   -7.19   -8.05   -8.50   -8.46   -7.89   -6.77   -5.10   -2.83    0.15    3.98    8.70   14.04
+   215.0    0.00   -0.22   -0.91   -1.98   -3.28   -4.67   -6.02   -7.19   -8.06   -8.51   -8.47   -7.90   -6.78   -5.09   -2.80    0.21    4.07    8.82   14.16
+   220.0    0.00   -0.23   -0.92   -1.98   -3.28   -4.67   -6.01   -7.18   -8.05   -8.50   -8.46   -7.88   -6.75   -5.06   -2.74    0.29    4.18    8.94   14.28
+   225.0    0.00   -0.23   -0.92   -1.98   -3.27   -4.66   -6.00   -7.17   -8.02   -8.47   -8.42   -7.84   -6.70   -4.99   -2.67    0.39    4.29    9.06   14.38
+   230.0    0.00   -0.23   -0.92   -1.98   -3.27   -4.66   -5.99   -7.14   -7.99   -8.43   -8.37   -7.77   -6.62   -4.90   -2.57    0.49    4.40    9.16   14.45
+   235.0    0.00   -0.23   -0.93   -1.98   -3.27   -4.65   -5.98   -7.12   -7.95   -8.37   -8.29   -7.68   -6.52   -4.80   -2.47    0.59    4.49    9.24   14.50
+   240.0    0.00   -0.24   -0.93   -1.99   -3.27   -4.64   -5.96   -7.08   -7.90   -8.30   -8.20   -7.58   -6.41   -4.69   -2.36    0.68    4.56    9.28   14.51
+   245.0    0.00   -0.24   -0.93   -1.99   -3.27   -4.63   -5.94   -7.05   -7.85   -8.23   -8.12   -7.48   -6.31   -4.58   -2.27    0.76    4.61    9.29   14.50
+   250.0    0.00   -0.24   -0.94   -1.99   -3.27   -4.62   -5.92   -7.01   -7.79   -8.16   -8.04   -7.39   -6.21   -4.49   -2.19    0.81    4.63    9.28   14.47
+   255.0    0.00   -0.24   -0.94   -2.00   -3.27   -4.62   -5.89   -6.98   -7.75   -8.10   -7.97   -7.32   -6.14   -4.42   -2.13    0.85    4.63    9.24   14.43
+   260.0    0.00   -0.25   -0.95   -2.00   -3.27   -4.61   -5.88   -6.95   -7.71   -8.06   -7.92   -7.27   -6.09   -4.37   -2.09    0.87    4.62    9.20   14.38
+   265.0    0.00   -0.25   -0.95   -2.01   -3.27   -4.60   -5.86   -6.92   -7.68   -8.02   -7.89   -7.24   -6.06   -4.35   -2.07    0.88    4.60    9.16   14.35
+   270.0    0.00   -0.25   -0.96   -2.01   -3.28   -4.60   -5.85   -6.91   -7.66   -8.01   -7.89   -7.24   -6.06   -4.35   -2.06    0.88    4.58    9.12   14.32
+   275.0    0.00   -0.26   -0.97   -2.02   -3.28   -4.60   -5.85   -6.90   -7.65   -8.01   -7.90   -7.26   -6.08   -4.36   -2.07    0.87    4.57    9.09   14.32
+   280.0    0.00   -0.26   -0.97   -2.03   -3.29   -4.61   -5.85   -6.90   -7.66   -8.02   -7.92   -7.29   -6.11   -4.38   -2.08    0.87    4.56    9.08   14.33
+   285.0    0.00   -0.26   -0.98   -2.04   -3.30   -4.62   -5.86   -6.91   -7.67   -8.05   -7.95   -7.33   -6.15   -4.41   -2.08    0.87    4.57    9.08   14.34
+   290.0    0.00   -0.27   -0.98   -2.05   -3.31   -4.63   -5.88   -6.93   -7.70   -8.08   -7.99   -7.37   -6.18   -4.43   -2.09    0.88    4.57    9.09   14.37
+   295.0    0.00   -0.27   -0.99   -2.06   -3.33   -4.65   -5.90   -6.96   -7.73   -8.11   -8.02   -7.40   -6.21   -4.44   -2.09    0.89    4.59    9.09   14.38
+   300.0    0.00   -0.27   -1.00   -2.07   -3.34   -4.67   -5.93   -6.99   -7.76   -8.14   -8.05   -7.42   -6.22   -4.44   -2.09    0.90    4.59    9.10   14.38
+   305.0    0.00   -0.27   -1.00   -2.08   -3.36   -4.70   -5.96   -7.02   -7.80   -8.18   -8.08   -7.44   -6.23   -4.44   -2.08    0.90    4.59    9.09   14.36
+   310.0    0.00   -0.28   -1.01   -2.09   -3.37   -4.72   -5.99   -7.06   -7.83   -8.20   -8.09   -7.44   -6.22   -4.43   -2.08    0.90    4.58    9.06   14.32
+   315.0    0.00   -0.28   -1.01   -2.10   -3.39   -4.74   -6.02   -7.10   -7.86   -8.23   -8.10   -7.44   -6.21   -4.43   -2.08    0.88    4.55    9.02   14.25
+   320.0    0.00   -0.28   -1.02   -2.10   -3.40   -4.77   -6.05   -7.13   -7.89   -8.25   -8.11   -7.44   -6.21   -4.42   -2.09    0.86    4.51    8.96   14.17
+   325.0    0.00   -0.28   -1.02   -2.11   -3.42   -4.79   -6.07   -7.16   -7.92   -8.27   -8.12   -7.44   -6.20   -4.43   -2.11    0.82    4.45    8.88   14.07
+   330.0    0.00   -0.28   -1.02   -2.12   -3.43   -4.80   -6.10   -7.18   -7.94   -8.28   -8.13   -7.44   -6.21   -4.44   -2.14    0.77    4.38    8.81   13.97
+   335.0    0.00   -0.28   -1.03   -2.12   -3.43   -4.81   -6.11   -7.20   -7.96   -8.30   -8.15   -7.45   -6.23   -4.47   -2.18    0.71    4.32    8.73   13.88
+   340.0    0.00   -0.29   -1.03   -2.12   -3.44   -4.82   -6.12   -7.21   -7.98   -8.32   -8.17   -7.48   -6.26   -4.51   -2.23    0.66    4.26    8.67   13.81
+   345.0    0.00   -0.29   -1.03   -2.13   -3.44   -4.82   -6.13   -7.22   -8.00   -8.34   -8.20   -7.51   -6.30   -4.56   -2.28    0.60    4.20    8.62   13.77
+   350.0    0.00   -0.29   -1.03   -2.13   -3.44   -4.82   -6.13   -7.23   -8.01   -8.37   -8.23   -7.56   -6.34   -4.60   -2.33    0.55    4.16    8.59   13.76
+   355.0    0.00   -0.29   -1.03   -2.12   -3.44   -4.82   -6.13   -7.23   -8.02   -8.39   -8.27   -7.60   -6.39   -4.65   -2.37    0.51    4.13    8.58   13.78
+   360.0    0.00   -0.28   -1.03   -2.12   -3.43   -4.81   -6.12   -7.24   -8.04   -8.42   -8.31   -7.65   -6.45   -4.70   -2.41    0.48    4.11    8.59   13.85
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.79     -0.03    120.39                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.18   -0.66   -1.33   -2.07   -2.80   -3.50   -4.19   -4.83   -5.31   -5.45   -5.10   -4.23   -2.94   -1.37    0.40    2.57    5.59    9.99
+     0.0    0.00   -0.14   -0.58   -1.23   -1.97   -2.72   -3.46   -4.18   -4.87   -5.39   -5.57   -5.26   -4.41   -3.13   -1.56    0.21    2.40    5.50   10.10
+     5.0    0.00   -0.14   -0.58   -1.24   -1.98   -2.73   -3.46   -4.19   -4.87   -5.41   -5.61   -5.32   -4.47   -3.16   -1.54    0.29    2.51    5.57   10.05
+    10.0    0.00   -0.14   -0.59   -1.24   -1.99   -2.74   -3.47   -4.19   -4.88   -5.42   -5.64   -5.36   -4.51   -3.17   -1.51    0.37    2.60    5.62    9.97
+    15.0    0.00   -0.14   -0.59   -1.25   -2.00   -2.74   -3.47   -4.19   -4.87   -5.42   -5.65   -5.39   -4.53   -3.17   -1.47    0.45    2.68    5.64    9.87
+    20.0    0.00   -0.14   -0.59   -1.25   -2.00   -2.75   -3.47   -4.18   -4.86   -5.41   -5.65   -5.38   -4.53   -3.14   -1.42    0.51    2.73    5.63    9.76
+    25.0    0.00   -0.14   -0.59   -1.26   -2.01   -2.76   -3.47   -4.17   -4.84   -5.39   -5.63   -5.36   -4.49   -3.10   -1.37    0.56    2.75    5.61    9.66
+    30.0    0.00   -0.14   -0.60   -1.27   -2.02   -2.76   -3.47   -4.16   -4.83   -5.36   -5.59   -5.31   -4.44   -3.04   -1.31    0.59    2.76    5.58    9.59
+    35.0    0.00   -0.14   -0.60   -1.27   -2.03   -2.77   -3.47   -4.16   -4.81   -5.33   -5.54   -5.25   -4.36   -2.97   -1.26    0.61    2.74    5.55    9.55
+    40.0    0.00   -0.14   -0.61   -1.28   -2.04   -2.77   -3.47   -4.15   -4.80   -5.31   -5.50   -5.18   -4.29   -2.90   -1.22    0.62    2.73    5.53    9.57
+    45.0    0.00   -0.15   -0.61   -1.29   -2.05   -2.78   -3.48   -4.16   -4.79   -5.28   -5.45   -5.12   -4.21   -2.84   -1.18    0.62    2.71    5.53    9.65
+    50.0    0.00   -0.15   -0.62   -1.30   -2.06   -2.80   -3.49   -4.16   -4.79   -5.27   -5.41   -5.06   -4.15   -2.79   -1.16    0.61    2.70    5.57    9.76
+    55.0    0.00   -0.15   -0.63   -1.31   -2.07   -2.81   -3.51   -4.18   -4.80   -5.26   -5.39   -5.03   -4.12   -2.77   -1.16    0.61    2.72    5.65    9.92
+    60.0    0.00   -0.15   -0.63   -1.32   -2.09   -2.83   -3.53   -4.20   -4.81   -5.26   -5.38   -5.02   -4.11   -2.78   -1.18    0.60    2.75    5.75   10.08
+    65.0    0.00   -0.16   -0.64   -1.34   -2.10   -2.85   -3.55   -4.22   -4.83   -5.28   -5.39   -5.03   -4.14   -2.81   -1.22    0.59    2.81    5.88   10.25
+    70.0    0.00   -0.16   -0.65   -1.35   -2.12   -2.87   -3.58   -4.24   -4.85   -5.29   -5.42   -5.06   -4.19   -2.87   -1.26    0.59    2.88    6.02   10.39
+    75.0    0.00   -0.17   -0.66   -1.37   -2.14   -2.90   -3.61   -4.27   -4.87   -5.32   -5.45   -5.11   -4.26   -2.95   -1.32    0.60    2.96    6.16   10.51
+    80.0    0.00   -0.17   -0.67   -1.38   -2.17   -2.93   -3.64   -4.30   -4.90   -5.34   -5.49   -5.17   -4.34   -3.04   -1.37    0.61    3.05    6.29   10.58
+    85.0    0.00   -0.17   -0.68   -1.40   -2.19   -2.96   -3.67   -4.32   -4.92   -5.37   -5.52   -5.23   -4.42   -3.12   -1.42    0.62    3.14    6.40   10.61
+    90.0    0.00   -0.18   -0.69   -1.41   -2.21   -2.99   -3.69   -4.35   -4.94   -5.38   -5.55   -5.28   -4.49   -3.19   -1.46    0.64    3.22    6.49   10.61
+    95.0    0.00   -0.18   -0.70   -1.43   -2.24   -3.01   -3.72   -4.37   -4.95   -5.40   -5.57   -5.32   -4.54   -3.24   -1.48    0.67    3.28    6.54   10.58
+   100.0    0.00   -0.18   -0.71   -1.44   -2.26   -3.04   -3.74   -4.38   -4.96   -5.40   -5.58   -5.34   -4.57   -3.26   -1.48    0.70    3.33    6.56   10.55
+   105.0    0.00   -0.19   -0.71   -1.46   -2.27   -3.06   -3.76   -4.39   -4.96   -5.40   -5.58   -5.34   -4.57   -3.25   -1.46    0.74    3.36    6.56   10.51
+   110.0    0.00   -0.19   -0.72   -1.47   -2.29   -3.07   -3.77   -4.40   -4.95   -5.39   -5.56   -5.32   -4.54   -3.22   -1.42    0.78    3.37    6.53   10.49
+   115.0    0.00   -0.19   -0.72   -1.47   -2.30   -3.08   -3.77   -4.40   -4.95   -5.37   -5.54   -5.29   -4.51   -3.17   -1.36    0.81    3.37    6.50   10.49
+   120.0    0.00   -0.20   -0.73   -1.48   -2.30   -3.08   -3.77   -4.39   -4.94   -5.36   -5.52   -5.26   -4.46   -3.10   -1.30    0.85    3.36    6.45   10.51
+   125.0    0.00   -0.20   -0.73   -1.48   -2.30   -3.07   -3.76   -4.38   -4.92   -5.34   -5.50   -5.23   -4.41   -3.04   -1.24    0.88    3.34    6.40   10.55
+   130.0    0.00   -0.20   -0.73   -1.48   -2.29   -3.06   -3.74   -4.36   -4.91   -5.33   -5.49   -5.20   -4.36   -2.98   -1.18    0.90    3.30    6.34   10.58
+   135.0    0.00   -0.20   -0.73   -1.47   -2.27   -3.04   -3.72   -4.34   -4.90   -5.33   -5.48   -5.19   -4.33   -2.94   -1.15    0.90    3.26    6.28   10.61
+   140.0    0.00   -0.20   -0.73   -1.46   -2.26   -3.01   -3.70   -4.32   -4.89   -5.33   -5.49   -5.18   -4.31   -2.91   -1.13    0.89    3.20    6.21   10.61
+   145.0    0.00   -0.20   -0.73   -1.45   -2.24   -2.99   -3.67   -4.30   -4.89   -5.34   -5.50   -5.19   -4.31   -2.90   -1.14    0.85    3.13    6.13   10.57
+   150.0    0.00   -0.20   -0.72   -1.44   -2.21   -2.96   -3.64   -4.29   -4.89   -5.35   -5.52   -5.21   -4.32   -2.92   -1.17    0.79    3.04    6.03   10.49
+   155.0    0.00   -0.20   -0.72   -1.42   -2.19   -2.93   -3.62   -4.28   -4.89   -5.37   -5.54   -5.23   -4.34   -2.94   -1.21    0.71    2.93    5.91   10.37
+   160.0    0.00   -0.20   -0.71   -1.41   -2.17   -2.90   -3.60   -4.27   -4.90   -5.39   -5.56   -5.24   -4.35   -2.97   -1.27    0.61    2.80    5.77   10.21
+   165.0    0.00   -0.20   -0.71   -1.39   -2.14   -2.88   -3.58   -4.27   -4.91   -5.41   -5.58   -5.25   -4.35   -2.99   -1.34    0.50    2.67    5.63   10.03
+   170.0    0.00   -0.20   -0.70   -1.38   -2.12   -2.85   -3.57   -4.27   -4.93   -5.43   -5.58   -5.24   -4.35   -3.01   -1.41    0.38    2.52    5.48    9.83
+   175.0    0.00   -0.20   -0.70   -1.37   -2.10   -2.83   -3.55   -4.27   -4.95   -5.44   -5.58   -5.22   -4.33   -3.02   -1.46    0.27    2.39    5.35    9.65
+   180.0    0.00   -0.20   -0.69   -1.35   -2.08   -2.81   -3.55   -4.28   -4.96   -5.45   -5.57   -5.19   -4.29   -3.01   -1.51    0.18    2.27    5.23    9.49
+   185.0    0.00   -0.20   -0.69   -1.34   -2.06   -2.79   -3.54   -4.28   -4.97   -5.45   -5.56   -5.15   -4.25   -2.99   -1.53    0.10    2.17    5.14    9.36
+   190.0    0.00   -0.20   -0.68   -1.33   -2.04   -2.77   -3.52   -4.28   -4.97   -5.45   -5.53   -5.11   -4.20   -2.95   -1.54    0.05    2.11    5.09    9.29
+   195.0    0.00   -0.20   -0.68   -1.32   -2.02   -2.75   -3.50   -4.27   -4.96   -5.44   -5.51   -5.07   -4.15   -2.92   -1.53    0.03    2.08    5.07    9.26
+   200.0    0.00   -0.20   -0.67   -1.31   -2.01   -2.73   -3.48   -4.25   -4.95   -5.42   -5.48   -5.03   -4.11   -2.88   -1.51    0.04    2.08    5.08    9.28
+   205.0    0.00   -0.20   -0.67   -1.30   -1.99   -2.71   -3.45   -4.21   -4.92   -5.40   -5.46   -5.01   -4.08   -2.84   -1.47    0.07    2.11    5.13    9.33
+   210.0    0.00   -0.20   -0.67   -1.29   -1.98   -2.68   -3.41   -4.18   -4.88   -5.37   -5.45   -5.00   -4.06   -2.82   -1.43    0.12    2.17    5.19    9.40
+   215.0    0.00   -0.20   -0.67   -1.29   -1.96   -2.65   -3.37   -4.13   -4.84   -5.34   -5.44   -5.00   -4.06   -2.80   -1.39    0.18    2.24    5.26    9.49
+   220.0    0.00   -0.20   -0.67   -1.29   -1.95   -2.63   -3.33   -4.08   -4.79   -5.31   -5.43   -5.01   -4.07   -2.80   -1.36    0.25    2.31    5.32    9.57
+   225.0    0.00   -0.20   -0.67   -1.28   -1.94   -2.60   -3.29   -4.03   -4.75   -5.28   -5.42   -5.03   -4.10   -2.80   -1.33    0.30    2.37    5.37    9.65
+   230.0    0.00   -0.20   -0.67   -1.29   -1.94   -2.59   -3.26   -3.98   -4.70   -5.25   -5.42   -5.05   -4.12   -2.81   -1.30    0.35    2.41    5.40    9.71
+   235.0    0.00   -0.20   -0.67   -1.29   -1.94   -2.58   -3.24   -3.95   -4.66   -5.22   -5.41   -5.06   -4.14   -2.82   -1.29    0.38    2.43    5.40    9.76
+   240.0    0.00   -0.20   -0.67   -1.29   -1.94   -2.58   -3.23   -3.92   -4.63   -5.20   -5.41   -5.07   -4.16   -2.82   -1.28    0.39    2.42    5.37    9.80
+   245.0    0.00   -0.20   -0.67   -1.30   -1.95   -2.59   -3.23   -3.92   -4.62   -5.18   -5.40   -5.07   -4.16   -2.82   -1.28    0.39    2.40    5.34    9.83
+   250.0    0.00   -0.20   -0.68   -1.31   -1.97   -2.60   -3.24   -3.92   -4.61   -5.17   -5.38   -5.05   -4.15   -2.82   -1.28    0.37    2.36    5.29    9.87
+   255.0    0.00   -0.19   -0.68   -1.32   -1.98   -2.63   -3.27   -3.94   -4.62   -5.16   -5.36   -5.03   -4.13   -2.80   -1.28    0.35    2.31    5.24    9.91
+   260.0    0.00   -0.19   -0.68   -1.32   -2.00   -2.65   -3.30   -3.97   -4.63   -5.16   -5.34   -5.00   -4.10   -2.79   -1.28    0.32    2.27    5.20    9.95
+   265.0    0.00   -0.19   -0.68   -1.33   -2.02   -2.69   -3.34   -4.01   -4.66   -5.16   -5.32   -4.96   -4.06   -2.76   -1.28    0.29    2.23    5.18    9.99
+   270.0    0.00   -0.19   -0.68   -1.34   -2.04   -2.72   -3.38   -4.05   -4.68   -5.16   -5.29   -4.92   -4.02   -2.74   -1.29    0.27    2.20    5.17   10.04
+   275.0    0.00   -0.19   -0.68   -1.34   -2.05   -2.74   -3.42   -4.09   -4.71   -5.17   -5.27   -4.89   -3.99   -2.73   -1.29    0.25    2.19    5.18   10.07
+   280.0    0.00   -0.19   -0.67   -1.34   -2.06   -2.76   -3.45   -4.12   -4.74   -5.17   -5.26   -4.86   -3.96   -2.72   -1.30    0.24    2.19    5.20   10.09
+   285.0    0.00   -0.18   -0.67   -1.34   -2.06   -2.78   -3.47   -4.15   -4.75   -5.18   -5.24   -4.84   -3.95   -2.72   -1.31    0.23    2.20    5.22   10.09
+   290.0    0.00   -0.18   -0.67   -1.33   -2.06   -2.78   -3.49   -4.16   -4.77   -5.18   -5.23   -4.82   -3.94   -2.72   -1.33    0.22    2.20    5.24   10.06
+   295.0    0.00   -0.18   -0.66   -1.33   -2.06   -2.78   -3.49   -4.17   -4.77   -5.17   -5.22   -4.81   -3.94   -2.73   -1.35    0.20    2.21    5.25   10.02
+   300.0    0.00   -0.17   -0.65   -1.32   -2.05   -2.77   -3.48   -4.17   -4.77   -5.17   -5.22   -4.81   -3.94   -2.75   -1.38    0.18    2.20    5.25    9.96
+   305.0    0.00   -0.17   -0.64   -1.30   -2.03   -2.76   -3.47   -4.16   -4.76   -5.17   -5.22   -4.81   -3.95   -2.77   -1.41    0.15    2.18    5.23    9.89
+   310.0    0.00   -0.17   -0.64   -1.29   -2.02   -2.74   -3.46   -4.15   -4.76   -5.16   -5.21   -4.81   -3.96   -2.79   -1.44    0.12    2.15    5.20    9.83
+   315.0    0.00   -0.16   -0.63   -1.28   -2.00   -2.73   -3.44   -4.14   -4.75   -5.16   -5.22   -4.82   -3.98   -2.82   -1.47    0.08    2.11    5.17    9.78
+   320.0    0.00   -0.16   -0.62   -1.27   -1.99   -2.71   -3.43   -4.13   -4.75   -5.16   -5.23   -4.83   -3.99   -2.84   -1.50    0.04    2.07    5.14    9.76
+   325.0    0.00   -0.15   -0.61   -1.25   -1.97   -2.70   -3.42   -4.12   -4.75   -5.17   -5.24   -4.85   -4.02   -2.86   -1.53    0.01    2.04    5.11    9.77
+   330.0    0.00   -0.15   -0.60   -1.25   -1.96   -2.69   -3.41   -4.12   -4.76   -5.19   -5.27   -4.88   -4.05   -2.89   -1.55   -0.01    2.02    5.11    9.81
+   335.0    0.00   -0.15   -0.60   -1.24   -1.96   -2.69   -3.41   -4.13   -4.77   -5.22   -5.31   -4.93   -4.09   -2.92   -1.57   -0.02    2.02    5.13    9.87
+   340.0    0.00   -0.15   -0.59   -1.23   -1.95   -2.69   -3.42   -4.14   -4.79   -5.25   -5.35   -4.98   -4.14   -2.96   -1.58   -0.01    2.05    5.18    9.94
+   345.0    0.00   -0.14   -0.59   -1.23   -1.95   -2.69   -3.43   -4.15   -4.81   -5.28   -5.40   -5.04   -4.20   -3.00   -1.59    0.02    2.11    5.24   10.02
+   350.0    0.00   -0.14   -0.59   -1.23   -1.96   -2.70   -3.44   -4.16   -4.83   -5.32   -5.46   -5.11   -4.27   -3.04   -1.59    0.07    2.19    5.33   10.07
+   355.0    0.00   -0.14   -0.58   -1.23   -1.96   -2.71   -3.45   -4.18   -4.85   -5.36   -5.52   -5.19   -4.34   -3.09   -1.58    0.13    2.29    5.42   10.10
+   360.0    0.00   -0.14   -0.58   -1.23   -1.97   -2.72   -3.46   -4.18   -4.87   -5.39   -5.57   -5.26   -4.41   -3.13   -1.56    0.21    2.40    5.50   10.10
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH700936D_M    SCIS                                        TYPE / SERIAL NO    
+FIELD               NGS/TUM                  1    20-APR-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      1.20      0.34     87.44                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.24   -1.02   -2.37   -3.98   -5.59   -7.25   -8.59   -9.37   -9.70   -9.44   -8.66   -7.27   -5.34   -2.80    0.37    4.19
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.30     -0.42    117.36                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.33   -0.82   -1.50   -2.22   -2.92   -3.73   -4.51   -5.25   -5.73   -5.75   -5.43   -4.58   -3.15   -1.43    0.89    3.96
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH700936D_M    SNOW                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               4    20-APR-05 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+      0.51     -0.12     90.97                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.24   -0.92   -1.97   -3.28   -4.74   -6.20   -7.52   -8.56   -9.15   -9.14   -8.44   -7.03   -4.96   -2.30    0.92    4.73    9.18   14.24
+     0.0    0.00   -0.26   -0.96   -2.04   -3.39   -4.89   -6.38   -7.72   -8.72   -9.24   -9.16   -8.44   -7.09   -5.14   -2.60    0.56    4.43    8.97   13.89
+     5.0    0.00   -0.26   -0.96   -2.04   -3.39   -4.89   -6.39   -7.73   -8.75   -9.27   -9.20   -8.48   -7.12   -5.17   -2.65    0.50    4.35    8.89   13.86
+    10.0    0.00   -0.26   -0.96   -2.04   -3.39   -4.89   -6.39   -7.75   -8.77   -9.31   -9.24   -8.52   -7.16   -5.21   -2.69    0.44    4.27    8.82   13.87
+    15.0    0.00   -0.26   -0.96   -2.03   -3.38   -4.88   -6.39   -7.76   -8.79   -9.34   -9.28   -8.56   -7.20   -5.24   -2.73    0.39    4.21    8.78   13.91
+    20.0    0.00   -0.25   -0.95   -2.03   -3.37   -4.87   -6.39   -7.76   -8.82   -9.38   -9.33   -8.61   -7.24   -5.27   -2.76    0.35    4.16    8.75   13.98
+    25.0    0.00   -0.25   -0.95   -2.02   -3.36   -4.86   -6.38   -7.76   -8.83   -9.42   -9.38   -8.66   -7.28   -5.30   -2.77    0.34    4.15    8.76   14.07
+    30.0    0.00   -0.25   -0.95   -2.01   -3.35   -4.84   -6.36   -7.76   -8.84   -9.44   -9.42   -8.70   -7.31   -5.31   -2.76    0.36    4.18    8.80   14.17
+    35.0    0.00   -0.25   -0.94   -2.00   -3.33   -4.82   -6.35   -7.74   -8.84   -9.46   -9.45   -8.74   -7.34   -5.32   -2.74    0.40    4.23    8.87   14.29
+    40.0    0.00   -0.25   -0.94   -1.99   -3.32   -4.80   -6.32   -7.72   -8.84   -9.47   -9.48   -8.77   -7.35   -5.30   -2.70    0.48    4.32    8.97   14.41
+    45.0    0.00   -0.25   -0.93   -1.98   -3.30   -4.78   -6.29   -7.70   -8.82   -9.46   -9.48   -8.78   -7.35   -5.28   -2.64    0.57    4.43    9.08   14.52
+    50.0    0.00   -0.24   -0.93   -1.97   -3.29   -4.76   -6.26   -7.66   -8.78   -9.44   -9.47   -8.76   -7.33   -5.24   -2.56    0.67    4.56    9.21   14.63
+    55.0    0.00   -0.24   -0.92   -1.97   -3.27   -4.73   -6.23   -7.62   -8.74   -9.40   -9.43   -8.73   -7.29   -5.18   -2.48    0.78    4.68    9.33   14.72
+    60.0    0.00   -0.24   -0.92   -1.96   -3.25   -4.70   -6.19   -7.57   -8.68   -9.34   -9.38   -8.68   -7.24   -5.11   -2.39    0.90    4.81    9.45   14.81
+    65.0    0.00   -0.24   -0.91   -1.95   -3.24   -4.68   -6.15   -7.52   -8.62   -9.27   -9.31   -8.61   -7.17   -5.04   -2.30    1.00    4.92    9.55   14.87
+    70.0    0.00   -0.24   -0.91   -1.94   -3.22   -4.65   -6.11   -7.46   -8.55   -9.19   -9.23   -8.53   -7.09   -4.95   -2.21    1.10    5.01    9.63   14.92
+    75.0    0.00   -0.23   -0.90   -1.93   -3.21   -4.63   -6.07   -7.41   -8.48   -9.11   -9.14   -8.45   -7.01   -4.87   -2.13    1.17    5.08    9.68   14.94
+    80.0    0.00   -0.23   -0.90   -1.92   -3.20   -4.61   -6.04   -7.36   -8.42   -9.04   -9.06   -8.36   -6.92   -4.79   -2.06    1.24    5.13    9.71   14.94
+    85.0    0.00   -0.23   -0.90   -1.92   -3.19   -4.59   -6.00   -7.31   -8.36   -8.97   -8.98   -8.29   -6.85   -4.73   -2.00    1.29    5.16    9.71   14.93
+    90.0    0.00   -0.23   -0.89   -1.91   -3.18   -4.57   -5.98   -7.27   -8.31   -8.91   -8.92   -8.22   -6.79   -4.67   -1.94    1.32    5.17    9.69   14.89
+    95.0    0.00   -0.23   -0.89   -1.91   -3.17   -4.56   -5.96   -7.25   -8.27   -8.87   -8.88   -8.18   -6.74   -4.62   -1.90    1.35    5.17    9.65   14.83
+   100.0    0.00   -0.22   -0.89   -1.91   -3.17   -4.55   -5.95   -7.23   -8.25   -8.84   -8.85   -8.15   -6.72   -4.59   -1.87    1.37    5.16    9.61   14.76
+   105.0    0.00   -0.22   -0.89   -1.90   -3.16   -4.55   -5.94   -7.22   -8.24   -8.84   -8.85   -8.15   -6.70   -4.57   -1.85    1.38    5.15    9.56   14.68
+   110.0    0.00   -0.22   -0.88   -1.90   -3.16   -4.55   -5.94   -7.22   -8.24   -8.84   -8.85   -8.16   -6.71   -4.57   -1.84    1.39    5.13    9.51   14.60
+   115.0    0.00   -0.22   -0.88   -1.90   -3.17   -4.55   -5.95   -7.23   -8.25   -8.86   -8.87   -8.17   -6.72   -4.57   -1.84    1.39    5.12    9.47   14.53
+   120.0    0.00   -0.22   -0.88   -1.90   -3.17   -4.56   -5.96   -7.25   -8.27   -8.88   -8.90   -8.20   -6.74   -4.59   -1.85    1.38    5.11    9.43   14.47
+   125.0    0.00   -0.22   -0.88   -1.91   -3.18   -4.57   -5.98   -7.27   -8.30   -8.91   -8.92   -8.23   -6.77   -4.61   -1.86    1.37    5.09    9.41   14.43
+   130.0    0.00   -0.22   -0.88   -1.91   -3.18   -4.59   -6.00   -7.29   -8.32   -8.93   -8.95   -8.25   -6.80   -4.64   -1.89    1.35    5.08    9.39   14.40
+   135.0    0.00   -0.22   -0.88   -1.91   -3.19   -4.60   -6.02   -7.31   -8.35   -8.95   -8.97   -8.27   -6.82   -4.67   -1.92    1.32    5.05    9.37   14.38
+   140.0    0.00   -0.22   -0.88   -1.91   -3.20   -4.62   -6.04   -7.34   -8.37   -8.97   -8.98   -8.29   -6.85   -4.71   -1.97    1.28    5.02    9.36   14.37
+   145.0    0.00   -0.22   -0.88   -1.92   -3.21   -4.64   -6.07   -7.37   -8.39   -8.99   -9.00   -8.31   -6.88   -4.75   -2.03    1.22    4.98    9.33   14.35
+   150.0    0.00   -0.22   -0.88   -1.92   -3.22   -4.66   -6.09   -7.39   -8.41   -9.00   -9.01   -8.33   -6.91   -4.80   -2.09    1.15    4.93    9.30   14.31
+   155.0    0.00   -0.22   -0.88   -1.93   -3.23   -4.67   -6.11   -7.42   -8.44   -9.02   -9.03   -8.35   -6.95   -4.86   -2.16    1.08    4.86    9.24   14.24
+   160.0    0.00   -0.22   -0.88   -1.93   -3.24   -4.69   -6.14   -7.44   -8.46   -9.04   -9.05   -8.38   -6.99   -4.92   -2.24    0.99    4.77    9.15   14.14
+   165.0    0.00   -0.22   -0.89   -1.93   -3.25   -4.71   -6.16   -7.47   -8.49   -9.07   -9.08   -8.42   -7.05   -5.00   -2.33    0.90    4.68    9.05   14.00
+   170.0    0.00   -0.22   -0.89   -1.94   -3.26   -4.72   -6.18   -7.50   -8.52   -9.11   -9.13   -8.47   -7.11   -5.07   -2.41    0.80    4.57    8.92   13.83
+   175.0    0.00   -0.22   -0.89   -1.94   -3.27   -4.73   -6.20   -7.52   -8.56   -9.16   -9.18   -8.54   -7.19   -5.15   -2.50    0.71    4.46    8.77   13.64
+   180.0    0.00   -0.22   -0.89   -1.95   -3.27   -4.74   -6.22   -7.55   -8.60   -9.21   -9.25   -8.61   -7.27   -5.23   -2.59    0.61    4.34    8.62   13.45
+   185.0    0.00   -0.22   -0.89   -1.95   -3.28   -4.75   -6.23   -7.58   -8.64   -9.26   -9.31   -8.69   -7.34   -5.31   -2.67    0.52    4.23    8.47   13.27
+   190.0    0.00   -0.22   -0.89   -1.95   -3.28   -4.76   -6.25   -7.60   -8.67   -9.31   -9.38   -8.76   -7.42   -5.38   -2.73    0.44    4.12    8.34   13.12
+   195.0    0.00   -0.22   -0.90   -1.95   -3.29   -4.77   -6.26   -7.62   -8.70   -9.36   -9.43   -8.82   -7.48   -5.44   -2.79    0.38    4.04    8.24   13.03
+   200.0    0.00   -0.22   -0.90   -1.96   -3.29   -4.77   -6.27   -7.63   -8.73   -9.39   -9.48   -8.87   -7.52   -5.48   -2.83    0.33    3.98    8.19   13.02
+   205.0    0.00   -0.22   -0.90   -1.96   -3.29   -4.78   -6.27   -7.64   -8.74   -9.41   -9.50   -8.89   -7.55   -5.50   -2.85    0.31    3.96    8.19   13.08
+   210.0    0.00   -0.22   -0.90   -1.96   -3.30   -4.78   -6.27   -7.64   -8.74   -9.42   -9.51   -8.90   -7.55   -5.50   -2.85    0.31    3.98    8.25   13.23
+   215.0    0.00   -0.23   -0.91   -1.97   -3.30   -4.78   -6.27   -7.63   -8.73   -9.40   -9.49   -8.88   -7.52   -5.47   -2.82    0.35    4.04    8.37   13.45
+   220.0    0.00   -0.23   -0.91   -1.97   -3.30   -4.77   -6.26   -7.62   -8.71   -9.37   -9.45   -8.83   -7.48   -5.43   -2.77    0.42    4.15    8.55   13.72
+   225.0    0.00   -0.23   -0.91   -1.98   -3.30   -4.77   -6.25   -7.60   -8.67   -9.32   -9.39   -8.77   -7.41   -5.36   -2.70    0.52    4.30    8.77   14.01
+   230.0    0.00   -0.23   -0.92   -1.98   -3.31   -4.77   -6.24   -7.57   -8.64   -9.27   -9.33   -8.70   -7.33   -5.27   -2.59    0.65    4.49    9.02   14.31
+   235.0    0.00   -0.23   -0.92   -1.98   -3.31   -4.76   -6.22   -7.55   -8.59   -9.21   -9.26   -8.62   -7.25   -5.18   -2.48    0.81    4.70    9.28   14.58
+   240.0    0.00   -0.24   -0.92   -1.99   -3.31   -4.76   -6.21   -7.52   -8.55   -9.16   -9.19   -8.53   -7.15   -5.07   -2.34    0.98    4.92    9.53   14.80
+   245.0    0.00   -0.24   -0.93   -1.99   -3.31   -4.76   -6.20   -7.50   -8.51   -9.10   -9.12   -8.45   -7.06   -4.96   -2.20    1.16    5.14    9.76   14.95
+   250.0    0.00   -0.24   -0.93   -1.99   -3.31   -4.75   -6.19   -7.47   -8.48   -9.06   -9.06   -8.38   -6.97   -4.85   -2.07    1.33    5.34    9.94   15.02
+   255.0    0.00   -0.24   -0.93   -1.99   -3.31   -4.75   -6.18   -7.46   -8.46   -9.02   -9.01   -8.32   -6.90   -4.75   -1.94    1.49    5.50   10.06   15.02
+   260.0    0.00   -0.24   -0.93   -2.00   -3.31   -4.75   -6.17   -7.45   -8.44   -9.00   -8.98   -8.27   -6.83   -4.66   -1.83    1.61    5.61   10.12   14.94
+   265.0    0.00   -0.24   -0.94   -2.00   -3.31   -4.75   -6.17   -7.44   -8.43   -8.99   -8.95   -8.23   -6.77   -4.58   -1.74    1.70    5.67   10.12   14.82
+   270.0    0.00   -0.25   -0.94   -2.00   -3.31   -4.74   -6.17   -7.44   -8.43   -8.98   -8.94   -8.20   -6.72   -4.53   -1.68    1.74    5.68   10.06   14.67
+   275.0    0.00   -0.25   -0.94   -2.00   -3.31   -4.75   -6.17   -7.45   -8.44   -8.98   -8.93   -8.18   -6.69   -4.49   -1.65    1.73    5.63    9.96   14.51
+   280.0    0.00   -0.25   -0.94   -2.00   -3.31   -4.75   -6.17   -7.46   -8.45   -8.99   -8.93   -8.16   -6.66   -4.46   -1.66    1.69    5.53    9.82   14.37
+   285.0    0.00   -0.25   -0.95   -2.01   -3.32   -4.75   -6.18   -7.47   -8.46   -9.00   -8.93   -8.15   -6.65   -4.46   -1.69    1.61    5.40    9.67   14.25
+   290.0    0.00   -0.25   -0.95   -2.01   -3.32   -4.75   -6.19   -7.48   -8.48   -9.01   -8.93   -8.15   -6.64   -4.48   -1.74    1.50    5.25    9.53   14.18
+   295.0    0.00   -0.25   -0.95   -2.01   -3.32   -4.76   -6.20   -7.50   -8.49   -9.02   -8.94   -8.15   -6.65   -4.51   -1.82    1.38    5.10    9.39   14.15
+   300.0    0.00   -0.25   -0.95   -2.01   -3.32   -4.77   -6.21   -7.51   -8.51   -9.04   -8.94   -8.15   -6.66   -4.55   -1.90    1.25    4.96    9.29   14.16
+   305.0    0.00   -0.26   -0.95   -2.01   -3.33   -4.77   -6.22   -7.53   -8.52   -9.05   -8.95   -8.16   -6.68   -4.60   -1.98    1.14    4.84    9.21   14.20
+   310.0    0.00   -0.26   -0.96   -2.02   -3.33   -4.78   -6.24   -7.54   -8.54   -9.06   -8.96   -8.17   -6.71   -4.65   -2.07    1.03    4.74    9.17   14.24
+   315.0    0.00   -0.26   -0.96   -2.02   -3.34   -4.80   -6.25   -7.56   -8.55   -9.07   -8.97   -8.19   -6.75   -4.71   -2.15    0.95    4.68    9.15   14.29
+   320.0    0.00   -0.26   -0.96   -2.03   -3.35   -4.81   -6.27   -7.57   -8.57   -9.08   -8.98   -8.21   -6.79   -4.77   -2.22    0.89    4.65    9.15   14.32
+   325.0    0.00   -0.26   -0.96   -2.03   -3.36   -4.82   -6.28   -7.59   -8.58   -9.09   -9.00   -8.24   -6.83   -4.83   -2.28    0.84    4.63    9.17   14.33
+   330.0    0.00   -0.26   -0.96   -2.03   -3.36   -4.83   -6.30   -7.61   -8.60   -9.11   -9.02   -8.27   -6.87   -4.88   -2.33    0.81    4.63    9.19   14.30
+   335.0    0.00   -0.26   -0.96   -2.04   -3.37   -4.84   -6.32   -7.63   -8.62   -9.12   -9.03   -8.29   -6.91   -4.93   -2.38    0.78    4.63    9.19   14.25
+   340.0    0.00   -0.26   -0.96   -2.04   -3.38   -4.86   -6.33   -7.65   -8.63   -9.14   -9.06   -8.32   -6.95   -4.98   -2.42    0.76    4.62    9.18   14.18
+   345.0    0.00   -0.26   -0.96   -2.04   -3.38   -4.87   -6.35   -7.66   -8.65   -9.16   -9.08   -8.35   -6.99   -5.02   -2.46    0.72    4.60    9.15   14.10
+   350.0    0.00   -0.26   -0.96   -2.04   -3.39   -4.88   -6.36   -7.68   -8.68   -9.18   -9.10   -8.38   -7.02   -5.06   -2.51    0.68    4.56    9.11   14.02
+   355.0    0.00   -0.26   -0.96   -2.04   -3.39   -4.88   -6.37   -7.70   -8.70   -9.21   -9.13   -8.41   -7.05   -5.10   -2.55    0.63    4.50    9.04   13.94
+   360.0    0.00   -0.26   -0.96   -2.04   -3.39   -4.89   -6.38   -7.72   -8.72   -9.24   -9.16   -8.44   -7.09   -5.14   -2.60    0.56    4.43    8.97   13.89
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.31     -0.04    120.23                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.13   -0.48   -1.01   -1.64   -2.32   -3.04   -3.77   -4.48   -5.05   -5.34   -5.23   -4.61   -3.48   -1.89    0.14    2.67    5.82    9.67
+     0.0    0.00   -0.14   -0.49   -0.99   -1.59   -2.27   -3.01   -3.81   -4.58   -5.21   -5.53   -5.40   -4.76   -3.63   -2.08   -0.10    2.42    5.67    9.71
+     5.0    0.00   -0.14   -0.49   -0.99   -1.60   -2.27   -3.02   -3.81   -4.59   -5.22   -5.55   -5.43   -4.80   -3.67   -2.10   -0.11    2.41    5.61    9.60
+    10.0    0.00   -0.14   -0.49   -1.00   -1.61   -2.28   -3.02   -3.81   -4.58   -5.22   -5.56   -5.46   -4.84   -3.71   -2.12   -0.12    2.40    5.57    9.52
+    15.0    0.00   -0.14   -0.49   -1.01   -1.61   -2.29   -3.02   -3.80   -4.57   -5.21   -5.56   -5.48   -4.86   -3.73   -2.13   -0.11    2.40    5.56    9.48
+    20.0    0.00   -0.14   -0.50   -1.01   -1.62   -2.30   -3.02   -3.80   -4.56   -5.20   -5.55   -5.48   -4.87   -3.74   -2.13   -0.10    2.42    5.57    9.48
+    25.0    0.00   -0.14   -0.50   -1.02   -1.63   -2.30   -3.03   -3.79   -4.54   -5.17   -5.53   -5.46   -4.86   -3.73   -2.12   -0.07    2.46    5.61    9.53
+    30.0    0.00   -0.14   -0.50   -1.02   -1.64   -2.31   -3.03   -3.78   -4.52   -5.15   -5.50   -5.44   -4.84   -3.70   -2.08   -0.02    2.51    5.67    9.61
+    35.0    0.00   -0.14   -0.51   -1.03   -1.64   -2.31   -3.03   -3.77   -4.50   -5.12   -5.47   -5.40   -4.80   -3.66   -2.04    0.03    2.58    5.75    9.72
+    40.0    0.00   -0.14   -0.51   -1.03   -1.65   -2.32   -3.03   -3.76   -4.48   -5.09   -5.43   -5.35   -4.74   -3.60   -1.98    0.10    2.65    5.85    9.84
+    45.0    0.00   -0.14   -0.51   -1.03   -1.65   -2.32   -3.03   -3.76   -4.47   -5.06   -5.38   -5.29   -4.68   -3.54   -1.91    0.16    2.73    5.95    9.97
+    50.0    0.00   -0.14   -0.51   -1.04   -1.66   -2.33   -3.03   -3.76   -4.46   -5.04   -5.34   -5.24   -4.62   -3.47   -1.84    0.23    2.81    6.04   10.08
+    55.0    0.00   -0.14   -0.51   -1.04   -1.66   -2.33   -3.03   -3.75   -4.45   -5.02   -5.31   -5.18   -4.55   -3.41   -1.78    0.29    2.88    6.13   10.18
+    60.0    0.00   -0.14   -0.51   -1.04   -1.66   -2.33   -3.03   -3.75   -4.45   -5.00   -5.28   -5.14   -4.50   -3.35   -1.74    0.34    2.94    6.21   10.25
+    65.0    0.00   -0.14   -0.51   -1.04   -1.65   -2.33   -3.03   -3.76   -4.44   -4.99   -5.26   -5.11   -4.46   -3.32   -1.70    0.37    2.98    6.27   10.29
+    70.0    0.00   -0.14   -0.51   -1.03   -1.65   -2.32   -3.03   -3.76   -4.44   -4.99   -5.24   -5.09   -4.44   -3.30   -1.69    0.39    3.02    6.31   10.30
+    75.0    0.00   -0.14   -0.51   -1.03   -1.65   -2.32   -3.03   -3.76   -4.45   -4.99   -5.24   -5.08   -4.44   -3.30   -1.69    0.39    3.04    6.34   10.29
+    80.0    0.00   -0.14   -0.51   -1.03   -1.65   -2.32   -3.03   -3.76   -4.45   -4.99   -5.25   -5.09   -4.45   -3.32   -1.72    0.38    3.04    6.35   10.25
+    85.0    0.00   -0.14   -0.51   -1.03   -1.65   -2.32   -3.03   -3.76   -4.45   -5.00   -5.26   -5.11   -4.48   -3.36   -1.75    0.36    3.04    6.36   10.19
+    90.0    0.00   -0.14   -0.51   -1.03   -1.65   -2.32   -3.03   -3.77   -4.46   -5.01   -5.28   -5.14   -4.52   -3.40   -1.79    0.33    3.04    6.35   10.13
+    95.0    0.00   -0.14   -0.51   -1.03   -1.65   -2.33   -3.04   -3.77   -4.46   -5.02   -5.29   -5.17   -4.56   -3.45   -1.83    0.31    3.03    6.34   10.06
+   100.0    0.00   -0.14   -0.51   -1.03   -1.66   -2.33   -3.04   -3.77   -4.47   -5.03   -5.31   -5.20   -4.60   -3.49   -1.87    0.29    3.02    6.33   10.00
+   105.0    0.00   -0.14   -0.51   -1.04   -1.66   -2.34   -3.05   -3.78   -4.48   -5.04   -5.33   -5.22   -4.63   -3.52   -1.89    0.28    3.01    6.31    9.96
+   110.0    0.00   -0.14   -0.51   -1.04   -1.67   -2.35   -3.06   -3.79   -4.48   -5.04   -5.34   -5.24   -4.65   -3.54   -1.90    0.27    3.01    6.30    9.92
+   115.0    0.00   -0.14   -0.51   -1.04   -1.68   -2.36   -3.08   -3.80   -4.49   -5.05   -5.34   -5.25   -4.66   -3.54   -1.90    0.28    3.01    6.28    9.91
+   120.0    0.00   -0.14   -0.51   -1.05   -1.69   -2.38   -3.09   -3.81   -4.49   -5.05   -5.34   -5.24   -4.65   -3.53   -1.88    0.29    3.01    6.27    9.90
+   125.0    0.00   -0.13   -0.51   -1.05   -1.70   -2.39   -3.11   -3.82   -4.50   -5.04   -5.33   -5.23   -4.64   -3.51   -1.86    0.31    3.01    6.25    9.91
+   130.0    0.00   -0.13   -0.51   -1.06   -1.71   -2.40   -3.12   -3.83   -4.50   -5.04   -5.32   -5.22   -4.62   -3.48   -1.82    0.33    3.01    6.23    9.92
+   135.0    0.00   -0.13   -0.50   -1.06   -1.71   -2.41   -3.13   -3.83   -4.49   -5.03   -5.31   -5.20   -4.59   -3.45   -1.79    0.35    3.00    6.20    9.92
+   140.0    0.00   -0.13   -0.50   -1.06   -1.72   -2.42   -3.13   -3.83   -4.49   -5.02   -5.30   -5.19   -4.58   -3.43   -1.77    0.36    2.99    6.16    9.90
+   145.0    0.00   -0.13   -0.50   -1.06   -1.72   -2.42   -3.13   -3.83   -4.48   -5.02   -5.30   -5.19   -4.57   -3.42   -1.76    0.36    2.96    6.10    9.86
+   150.0    0.00   -0.13   -0.50   -1.05   -1.71   -2.42   -3.13   -3.82   -4.48   -5.01   -5.30   -5.19   -4.58   -3.43   -1.77    0.35    2.92    6.04    9.78
+   155.0    0.00   -0.12   -0.49   -1.05   -1.71   -2.41   -3.12   -3.81   -4.47   -5.01   -5.31   -5.21   -4.60   -3.45   -1.79    0.31    2.87    5.95    9.67
+   160.0    0.00   -0.12   -0.49   -1.04   -1.70   -2.40   -3.10   -3.80   -4.47   -5.02   -5.33   -5.24   -4.64   -3.49   -1.83    0.27    2.80    5.84    9.52
+   165.0    0.00   -0.12   -0.48   -1.03   -1.68   -2.38   -3.09   -3.79   -4.47   -5.03   -5.35   -5.28   -4.69   -3.54   -1.89    0.20    2.71    5.72    9.34
+   170.0    0.00   -0.12   -0.48   -1.02   -1.67   -2.36   -3.07   -3.79   -4.47   -5.05   -5.39   -5.32   -4.74   -3.60   -1.95    0.13    2.62    5.58    9.13
+   175.0    0.00   -0.11   -0.47   -1.01   -1.65   -2.35   -3.06   -3.78   -4.48   -5.07   -5.42   -5.37   -4.79   -3.66   -2.02    0.05    2.51    5.44    8.93
+   180.0    0.00   -0.11   -0.46   -1.00   -1.64   -2.33   -3.05   -3.78   -4.49   -5.10   -5.46   -5.41   -4.84   -3.71   -2.08   -0.03    2.41    5.30    8.73
+   185.0    0.00   -0.11   -0.46   -0.98   -1.62   -2.31   -3.04   -3.78   -4.50   -5.12   -5.49   -5.44   -4.87   -3.75   -2.14   -0.11    2.30    5.17    8.56
+   190.0    0.00   -0.11   -0.45   -0.97   -1.61   -2.30   -3.03   -3.78   -4.52   -5.14   -5.51   -5.45   -4.88   -3.77   -2.17   -0.17    2.21    5.06    8.44
+   195.0    0.00   -0.11   -0.45   -0.96   -1.59   -2.29   -3.02   -3.79   -4.53   -5.16   -5.52   -5.45   -4.87   -3.76   -2.19   -0.22    2.14    4.98    8.38
+   200.0    0.00   -0.11   -0.44   -0.96   -1.58   -2.28   -3.02   -3.79   -4.54   -5.17   -5.51   -5.43   -4.84   -3.73   -2.18   -0.24    2.10    4.95    8.39
+   205.0    0.00   -0.11   -0.44   -0.95   -1.57   -2.27   -3.02   -3.79   -4.55   -5.16   -5.49   -5.40   -4.79   -3.69   -2.15   -0.23    2.10    4.96    8.46
+   210.0    0.00   -0.11   -0.44   -0.95   -1.57   -2.26   -3.01   -3.79   -4.54   -5.15   -5.46   -5.35   -4.73   -3.62   -2.10   -0.20    2.13    5.02    8.61
+   215.0    0.00   -0.11   -0.44   -0.94   -1.57   -2.26   -3.01   -3.79   -4.53   -5.13   -5.42   -5.29   -4.65   -3.54   -2.02   -0.13    2.20    5.13    8.81
+   220.0    0.00   -0.11   -0.44   -0.95   -1.57   -2.26   -3.01   -3.78   -4.51   -5.10   -5.38   -5.22   -4.58   -3.46   -1.94   -0.05    2.30    5.28    9.04
+   225.0    0.00   -0.11   -0.44   -0.95   -1.57   -2.26   -3.00   -3.77   -4.49   -5.06   -5.33   -5.16   -4.51   -3.38   -1.85    0.06    2.43    5.45    9.28
+   230.0    0.00   -0.11   -0.44   -0.95   -1.57   -2.26   -3.00   -3.75   -4.46   -5.02   -5.28   -5.11   -4.45   -3.31   -1.75    0.18    2.58    5.64    9.52
+   235.0    0.00   -0.11   -0.45   -0.96   -1.58   -2.27   -2.99   -3.73   -4.43   -4.98   -5.23   -5.07   -4.40   -3.24   -1.67    0.30    2.74    5.82    9.72
+   240.0    0.00   -0.11   -0.45   -0.97   -1.59   -2.27   -2.99   -3.71   -4.40   -4.94   -5.20   -5.03   -4.37   -3.20   -1.59    0.42    2.89    5.98    9.86
+   245.0    0.00   -0.11   -0.46   -0.98   -1.60   -2.28   -2.98   -3.70   -4.37   -4.91   -5.18   -5.02   -4.35   -3.17   -1.53    0.52    3.02    6.11    9.95
+   250.0    0.00   -0.11   -0.46   -0.99   -1.61   -2.29   -2.99   -3.69   -4.35   -4.89   -5.17   -5.02   -4.35   -3.16   -1.48    0.60    3.12    6.19    9.97
+   255.0    0.00   -0.11   -0.47   -1.00   -1.63   -2.30   -2.99   -3.68   -4.34   -4.88   -5.16   -5.03   -4.37   -3.16   -1.46    0.65    3.18    6.22    9.93
+   260.0    0.00   -0.12   -0.47   -1.00   -1.64   -2.31   -3.00   -3.68   -4.34   -4.88   -5.17   -5.05   -4.39   -3.18   -1.46    0.67    3.20    6.21    9.84
+   265.0    0.00   -0.12   -0.48   -1.01   -1.65   -2.32   -3.01   -3.69   -4.35   -4.89   -5.19   -5.07   -4.42   -3.21   -1.48    0.65    3.17    6.15    9.71
+   270.0    0.00   -0.12   -0.48   -1.02   -1.66   -2.34   -3.02   -3.70   -4.36   -4.91   -5.21   -5.09   -4.45   -3.24   -1.53    0.60    3.11    6.06    9.58
+   275.0    0.00   -0.12   -0.48   -1.03   -1.67   -2.35   -3.03   -3.72   -4.37   -4.92   -5.22   -5.12   -4.48   -3.28   -1.58    0.53    3.01    5.95    9.47
+   280.0    0.00   -0.12   -0.49   -1.03   -1.67   -2.35   -3.04   -3.73   -4.39   -4.94   -5.24   -5.13   -4.50   -3.32   -1.65    0.43    2.90    5.83    9.38
+   285.0    0.00   -0.12   -0.49   -1.03   -1.68   -2.36   -3.05   -3.75   -4.41   -4.96   -5.25   -5.14   -4.52   -3.36   -1.72    0.33    2.78    5.73    9.34
+   290.0    0.00   -0.13   -0.49   -1.04   -1.68   -2.36   -3.06   -3.76   -4.43   -4.97   -5.26   -5.15   -4.53   -3.40   -1.79    0.22    2.66    5.65    9.36
+   295.0    0.00   -0.13   -0.49   -1.03   -1.67   -2.36   -3.06   -3.77   -4.44   -4.98   -5.27   -5.15   -4.54   -3.42   -1.86    0.12    2.55    5.61    9.43
+   300.0    0.00   -0.13   -0.49   -1.03   -1.67   -2.35   -3.06   -3.78   -4.45   -4.99   -5.27   -5.14   -4.53   -3.44   -1.92    0.03    2.47    5.59    9.55
+   305.0    0.00   -0.13   -0.49   -1.03   -1.66   -2.34   -3.06   -3.78   -4.46   -5.00   -5.27   -5.13   -4.53   -3.46   -1.96   -0.04    2.42    5.61    9.70
+   310.0    0.00   -0.13   -0.49   -1.02   -1.65   -2.33   -3.05   -3.78   -4.46   -5.01   -5.27   -5.13   -4.52   -3.47   -2.00   -0.09    2.39    5.65    9.86
+   315.0    0.00   -0.13   -0.49   -1.01   -1.64   -2.32   -3.04   -3.78   -4.47   -5.01   -5.27   -5.12   -4.52   -3.47   -2.02   -0.12    2.38    5.71   10.02
+   320.0    0.00   -0.13   -0.49   -1.01   -1.62   -2.30   -3.03   -3.77   -4.48   -5.03   -5.28   -5.13   -4.52   -3.47   -2.03   -0.13    2.39    5.78   10.16
+   325.0    0.00   -0.13   -0.49   -1.00   -1.61   -2.29   -3.02   -3.77   -4.49   -5.04   -5.30   -5.14   -4.52   -3.47   -2.03   -0.13    2.41    5.83   10.25
+   330.0    0.00   -0.13   -0.48   -0.99   -1.60   -2.28   -3.01   -3.78   -4.50   -5.06   -5.32   -5.16   -4.53   -3.48   -2.02   -0.11    2.44    5.87   10.30
+   335.0    0.00   -0.13   -0.48   -0.99   -1.59   -2.27   -3.01   -3.78   -4.52   -5.09   -5.35   -5.18   -4.55   -3.49   -2.02   -0.10    2.46    5.89   10.29
+   340.0    0.00   -0.13   -0.48   -0.99   -1.59   -2.26   -3.00   -3.79   -4.53   -5.12   -5.38   -5.22   -4.58   -3.50   -2.02   -0.09    2.47    5.88   10.23
+   345.0    0.00   -0.13   -0.48   -0.98   -1.59   -2.26   -3.00   -3.79   -4.55   -5.14   -5.42   -5.26   -4.62   -3.53   -2.03   -0.08    2.47    5.85   10.12
+   350.0    0.00   -0.14   -0.48   -0.99   -1.59   -2.26   -3.01   -3.80   -4.56   -5.17   -5.46   -5.31   -4.66   -3.56   -2.04   -0.08    2.46    5.79    9.99
+   355.0    0.00   -0.14   -0.49   -0.99   -1.59   -2.26   -3.01   -3.81   -4.58   -5.19   -5.50   -5.35   -4.71   -3.59   -2.06   -0.09    2.44    5.73    9.85
+   360.0    0.00   -0.14   -0.49   -0.99   -1.59   -2.27   -3.01   -3.81   -4.58   -5.21   -5.53   -5.40   -4.76   -3.63   -2.08   -0.10    2.42    5.67    9.71
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH700936E      NONE                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               1    27-JAN-03 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+      0.23     -0.14     91.74                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.25   -0.97   -2.06   -3.40   -4.81   -6.16   -7.31   -8.13   -8.53   -8.43   -7.80   -6.61   -4.86   -2.52    0.49    4.25    8.80   13.96
+     0.0    0.00   -0.28   -1.00   -2.09   -3.42   -4.87   -6.28   -7.49   -8.36   -8.76   -8.62   -7.92   -6.69   -4.93   -2.61    0.38    4.10    8.54   13.35
+     5.0    0.00   -0.28   -1.00   -2.08   -3.41   -4.85   -6.27   -7.49   -8.37   -8.77   -8.62   -7.92   -6.67   -4.91   -2.58    0.39    4.12    8.56   13.40
+    10.0    0.00   -0.27   -0.99   -2.07   -3.40   -4.84   -6.26   -7.49   -8.37   -8.78   -8.63   -7.92   -6.66   -4.89   -2.56    0.42    4.15    8.62   13.51
+    15.0    0.00   -0.27   -0.99   -2.06   -3.38   -4.83   -6.24   -7.48   -8.37   -8.78   -8.64   -7.92   -6.66   -4.88   -2.54    0.44    4.20    8.71   13.67
+    20.0    0.00   -0.27   -0.98   -2.06   -3.37   -4.81   -6.23   -7.47   -8.36   -8.78   -8.64   -7.93   -6.67   -4.88   -2.53    0.47    4.24    8.81   13.87
+    25.0    0.00   -0.27   -0.98   -2.05   -3.37   -4.80   -6.21   -7.45   -8.35   -8.77   -8.64   -7.94   -6.67   -4.88   -2.53    0.48    4.30    8.92   14.08
+    30.0    0.00   -0.27   -0.98   -2.05   -3.36   -4.79   -6.20   -7.43   -8.32   -8.76   -8.64   -7.94   -6.68   -4.89   -2.54    0.50    4.34    9.03   14.29
+    35.0    0.00   -0.27   -0.98   -2.04   -3.36   -4.78   -6.18   -7.40   -8.29   -8.73   -8.62   -7.94   -6.69   -4.91   -2.54    0.51    4.38    9.12   14.47
+    40.0    0.00   -0.26   -0.98   -2.04   -3.35   -4.77   -6.16   -7.37   -8.26   -8.69   -8.59   -7.92   -6.69   -4.91   -2.55    0.51    4.41    9.19   14.61
+    45.0    0.00   -0.26   -0.98   -2.04   -3.35   -4.76   -6.14   -7.34   -8.22   -8.65   -8.56   -7.90   -6.68   -4.91   -2.54    0.52    4.43    9.23   14.69
+    50.0    0.00   -0.26   -0.97   -2.05   -3.35   -4.76   -6.12   -7.30   -8.17   -8.60   -8.51   -7.87   -6.66   -4.89   -2.53    0.54    4.45    9.25   14.72
+    55.0    0.00   -0.26   -0.97   -2.05   -3.35   -4.75   -6.10   -7.27   -8.12   -8.55   -8.46   -7.82   -6.62   -4.86   -2.50    0.56    4.45    9.24   14.70
+    60.0    0.00   -0.26   -0.97   -2.05   -3.35   -4.74   -6.08   -7.23   -8.07   -8.49   -8.41   -7.77   -6.58   -4.82   -2.46    0.58    4.45    9.20   14.64
+    65.0    0.00   -0.26   -0.97   -2.05   -3.35   -4.74   -6.06   -7.20   -8.03   -8.44   -8.35   -7.72   -6.52   -4.77   -2.42    0.62    4.45    9.16   14.55
+    70.0    0.00   -0.26   -0.97   -2.05   -3.35   -4.73   -6.04   -7.17   -7.98   -8.39   -8.30   -7.67   -6.47   -4.71   -2.37    0.65    4.46    9.11   14.45
+    75.0    0.00   -0.25   -0.97   -2.05   -3.35   -4.72   -6.03   -7.14   -7.94   -8.34   -8.26   -7.62   -6.43   -4.67   -2.32    0.68    4.46    9.06   14.35
+    80.0    0.00   -0.25   -0.97   -2.05   -3.35   -4.72   -6.01   -7.11   -7.91   -8.31   -8.22   -7.60   -6.40   -4.64   -2.29    0.71    4.45    9.02   14.28
+    85.0    0.00   -0.25   -0.97   -2.05   -3.35   -4.71   -5.99   -7.09   -7.88   -8.28   -8.21   -7.59   -6.39   -4.63   -2.27    0.72    4.45    8.98   14.22
+    90.0    0.00   -0.25   -0.97   -2.05   -3.35   -4.70   -5.98   -7.07   -7.86   -8.27   -8.20   -7.60   -6.41   -4.64   -2.29    0.71    4.43    8.95   14.19
+    95.0    0.00   -0.25   -0.97   -2.05   -3.35   -4.70   -5.97   -7.06   -7.85   -8.27   -8.22   -7.62   -6.45   -4.68   -2.32    0.68    4.40    8.93   14.17
+   100.0    0.00   -0.25   -0.97   -2.05   -3.34   -4.69   -5.97   -7.05   -7.85   -8.28   -8.24   -7.67   -6.51   -4.75   -2.38    0.63    4.37    8.90   14.18
+   105.0    0.00   -0.24   -0.96   -2.05   -3.34   -4.69   -5.97   -7.05   -7.86   -8.30   -8.28   -7.72   -6.58   -4.83   -2.46    0.56    4.32    8.88   14.18
+   110.0    0.00   -0.24   -0.96   -2.04   -3.34   -4.69   -5.97   -7.06   -7.88   -8.33   -8.32   -7.78   -6.65   -4.91   -2.54    0.49    4.26    8.84   14.19
+   115.0    0.00   -0.24   -0.96   -2.04   -3.34   -4.70   -5.98   -7.08   -7.90   -8.36   -8.36   -7.83   -6.72   -5.00   -2.63    0.41    4.20    8.81   14.18
+   120.0    0.00   -0.24   -0.95   -2.04   -3.34   -4.71   -6.00   -7.10   -7.93   -8.39   -8.40   -7.88   -6.78   -5.07   -2.71    0.34    4.14    8.77   14.16
+   125.0    0.00   -0.23   -0.95   -2.03   -3.35   -4.72   -6.02   -7.13   -7.96   -8.41   -8.42   -7.91   -6.82   -5.12   -2.76    0.28    4.10    8.73   14.13
+   130.0    0.00   -0.23   -0.94   -2.03   -3.35   -4.74   -6.04   -7.16   -7.98   -8.44   -8.44   -7.93   -6.84   -5.14   -2.80    0.25    4.06    8.69   14.07
+   135.0    0.00   -0.23   -0.94   -2.03   -3.35   -4.75   -6.07   -7.19   -8.01   -8.45   -8.44   -7.92   -6.83   -5.14   -2.81    0.23    4.04    8.66   14.01
+   140.0    0.00   -0.23   -0.94   -2.03   -3.36   -4.77   -6.10   -7.22   -8.03   -8.46   -8.43   -7.90   -6.81   -5.12   -2.79    0.24    4.05    8.64   13.94
+   145.0    0.00   -0.23   -0.93   -2.03   -3.36   -4.78   -6.12   -7.24   -8.05   -8.46   -8.41   -7.87   -6.77   -5.09   -2.76    0.27    4.06    8.64   13.86
+   150.0    0.00   -0.22   -0.93   -2.02   -3.37   -4.79   -6.14   -7.26   -8.06   -8.45   -8.39   -7.83   -6.73   -5.05   -2.72    0.31    4.10    8.64   13.78
+   155.0    0.00   -0.22   -0.92   -2.02   -3.37   -4.80   -6.15   -7.27   -8.06   -8.44   -8.36   -7.79   -6.69   -5.01   -2.68    0.35    4.13    8.64   13.71
+   160.0    0.00   -0.22   -0.92   -2.02   -3.37   -4.81   -6.16   -7.28   -8.06   -8.42   -8.33   -7.76   -6.66   -4.98   -2.66    0.38    4.17    8.65   13.64
+   165.0    0.00   -0.22   -0.92   -2.02   -3.38   -4.82   -6.17   -7.29   -8.05   -8.41   -8.32   -7.74   -6.64   -4.97   -2.64    0.40    4.19    8.65   13.57
+   170.0    0.00   -0.22   -0.92   -2.02   -3.38   -4.82   -6.17   -7.29   -8.05   -8.40   -8.31   -7.74   -6.65   -4.98   -2.65    0.41    4.20    8.65   13.52
+   175.0    0.00   -0.22   -0.92   -2.02   -3.38   -4.82   -6.18   -7.29   -8.05   -8.40   -8.31   -7.75   -6.67   -5.01   -2.67    0.39    4.20    8.64   13.46
+   180.0    0.00   -0.22   -0.91   -2.01   -3.38   -4.82   -6.18   -7.29   -8.05   -8.41   -8.33   -7.77   -6.71   -5.05   -2.71    0.36    4.18    8.62   13.42
+   185.0    0.00   -0.22   -0.91   -2.01   -3.38   -4.83   -6.18   -7.30   -8.06   -8.42   -8.35   -7.81   -6.75   -5.10   -2.76    0.32    4.14    8.59   13.39
+   190.0    0.00   -0.22   -0.92   -2.02   -3.38   -4.83   -6.19   -7.31   -8.08   -8.45   -8.39   -7.85   -6.80   -5.14   -2.81    0.28    4.11    8.57   13.37
+   195.0    0.00   -0.22   -0.92   -2.02   -3.38   -4.83   -6.20   -7.32   -8.10   -8.48   -8.42   -7.89   -6.83   -5.18   -2.84    0.24    4.07    8.55   13.38
+   200.0    0.00   -0.22   -0.92   -2.02   -3.38   -4.84   -6.21   -7.34   -8.13   -8.52   -8.46   -7.92   -6.86   -5.19   -2.86    0.22    4.05    8.54   13.42
+   205.0    0.00   -0.22   -0.92   -2.02   -3.39   -4.85   -6.22   -7.37   -8.17   -8.56   -8.49   -7.94   -6.86   -5.19   -2.85    0.22    4.05    8.56   13.48
+   210.0    0.00   -0.22   -0.92   -2.03   -3.39   -4.86   -6.24   -7.39   -8.19   -8.59   -8.51   -7.95   -6.84   -5.16   -2.82    0.25    4.07    8.60   13.58
+   215.0    0.00   -0.23   -0.93   -2.03   -3.40   -4.86   -6.25   -7.41   -8.22   -8.61   -8.53   -7.94   -6.81   -5.10   -2.76    0.30    4.12    8.67   13.71
+   220.0    0.00   -0.23   -0.93   -2.04   -3.40   -4.87   -6.25   -7.42   -8.23   -8.62   -8.52   -7.91   -6.75   -5.03   -2.68    0.37    4.19    8.76   13.86
+   225.0    0.00   -0.23   -0.94   -2.04   -3.41   -4.87   -6.25   -7.42   -8.24   -8.62   -8.50   -7.87   -6.69   -4.94   -2.59    0.46    4.27    8.86   14.01
+   230.0    0.00   -0.23   -0.94   -2.05   -3.41   -4.86   -6.25   -7.41   -8.23   -8.60   -8.48   -7.82   -6.61   -4.85   -2.49    0.55    4.36    8.96   14.16
+   235.0    0.00   -0.24   -0.95   -2.05   -3.41   -4.86   -6.23   -7.39   -8.21   -8.57   -8.44   -7.76   -6.54   -4.76   -2.40    0.64    4.44    9.06   14.28
+   240.0    0.00   -0.24   -0.96   -2.06   -3.41   -4.85   -6.22   -7.37   -8.17   -8.54   -8.39   -7.70   -6.47   -4.68   -2.31    0.71    4.51    9.13   14.37
+   245.0    0.00   -0.24   -0.96   -2.06   -3.41   -4.83   -6.19   -7.33   -8.13   -8.50   -8.35   -7.65   -6.41   -4.62   -2.25    0.77    4.56    9.17   14.42
+   250.0    0.00   -0.25   -0.97   -2.07   -3.40   -4.82   -6.17   -7.30   -8.09   -8.45   -8.31   -7.61   -6.36   -4.57   -2.20    0.81    4.58    9.17   14.42
+   255.0    0.00   -0.25   -0.98   -2.07   -3.40   -4.81   -6.14   -7.26   -8.06   -8.42   -8.27   -7.58   -6.33   -4.53   -2.18    0.82    4.56    9.13   14.37
+   260.0    0.00   -0.25   -0.98   -2.08   -3.40   -4.80   -6.12   -7.23   -8.02   -8.39   -8.25   -7.56   -6.31   -4.51   -2.16    0.81    4.52    9.06   14.28
+   265.0    0.00   -0.26   -0.99   -2.09   -3.41   -4.79   -6.10   -7.21   -8.00   -8.37   -8.23   -7.55   -6.30   -4.51   -2.17    0.78    4.46    8.96   14.17
+   270.0    0.00   -0.26   -1.00   -2.09   -3.41   -4.79   -6.10   -7.20   -7.99   -8.37   -8.23   -7.55   -6.30   -4.51   -2.18    0.75    4.39    8.85   14.05
+   275.0    0.00   -0.27   -1.00   -2.10   -3.42   -4.79   -6.10   -7.20   -8.00   -8.38   -8.25   -7.56   -6.31   -4.51   -2.19    0.71    4.31    8.74   13.94
+   280.0    0.00   -0.27   -1.01   -2.11   -3.42   -4.80   -6.11   -7.22   -8.02   -8.40   -8.27   -7.58   -6.32   -4.52   -2.21    0.68    4.25    8.64   13.85
+   285.0    0.00   -0.27   -1.01   -2.12   -3.44   -4.82   -6.12   -7.24   -8.05   -8.43   -8.30   -7.61   -6.34   -4.54   -2.22    0.65    4.19    8.57   13.80
+   290.0    0.00   -0.27   -1.02   -2.13   -3.45   -4.83   -6.15   -7.27   -8.08   -8.47   -8.34   -7.64   -6.37   -4.55   -2.24    0.62    4.16    8.53   13.78
+   295.0    0.00   -0.28   -1.02   -2.13   -3.46   -4.85   -6.18   -7.31   -8.13   -8.52   -8.38   -7.68   -6.40   -4.58   -2.26    0.61    4.15    8.53   13.81
+   300.0    0.00   -0.28   -1.03   -2.14   -3.47   -4.87   -6.21   -7.35   -8.17   -8.56   -8.43   -7.72   -6.43   -4.61   -2.28    0.60    4.15    8.55   13.85
+   305.0    0.00   -0.28   -1.03   -2.14   -3.48   -4.89   -6.23   -7.38   -8.21   -8.60   -8.47   -7.76   -6.47   -4.65   -2.31    0.58    4.17    8.60   13.92
+   310.0    0.00   -0.28   -1.03   -2.15   -3.49   -4.91   -6.26   -7.41   -8.24   -8.64   -8.50   -7.80   -6.52   -4.70   -2.35    0.57    4.19    8.65   13.97
+   315.0    0.00   -0.28   -1.03   -2.15   -3.49   -4.92   -6.28   -7.44   -8.27   -8.67   -8.53   -7.83   -6.56   -4.75   -2.40    0.55    4.21    8.70   14.01
+   320.0    0.00   -0.28   -1.03   -2.15   -3.50   -4.93   -6.30   -7.46   -8.30   -8.69   -8.56   -7.86   -6.61   -4.80   -2.45    0.53    4.22    8.74   14.01
+   325.0    0.00   -0.28   -1.03   -2.15   -3.50   -4.93   -6.31   -7.48   -8.31   -8.70   -8.58   -7.89   -6.65   -4.86   -2.50    0.50    4.23    8.75   13.97
+   330.0    0.00   -0.28   -1.03   -2.14   -3.49   -4.93   -6.31   -7.49   -8.32   -8.71   -8.59   -7.91   -6.68   -4.90   -2.55    0.46    4.22    8.75   13.90
+   335.0    0.00   -0.28   -1.03   -2.14   -3.48   -4.93   -6.31   -7.49   -8.33   -8.72   -8.60   -7.92   -6.71   -4.94   -2.59    0.43    4.19    8.72   13.79
+   340.0    0.00   -0.28   -1.02   -2.13   -3.47   -4.92   -6.31   -7.49   -8.34   -8.73   -8.60   -7.93   -6.72   -4.96   -2.62    0.40    4.17    8.67   13.66
+   345.0    0.00   -0.28   -1.02   -2.12   -3.46   -4.91   -6.30   -7.49   -8.34   -8.73   -8.60   -7.93   -6.72   -4.97   -2.63    0.38    4.14    8.62   13.53
+   350.0    0.00   -0.28   -1.01   -2.11   -3.45   -4.90   -6.30   -7.49   -8.35   -8.74   -8.61   -7.93   -6.71   -4.97   -2.64    0.36    4.11    8.57   13.42
+   355.0    0.00   -0.28   -1.01   -2.10   -3.44   -4.88   -6.29   -7.49   -8.35   -8.75   -8.61   -7.92   -6.70   -4.95   -2.63    0.36    4.10    8.54   13.36
+   360.0    0.00   -0.28   -1.00   -2.09   -3.42   -4.87   -6.28   -7.49   -8.36   -8.76   -8.62   -7.92   -6.69   -4.93   -2.61    0.38    4.10    8.54   13.35
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.59      0.05    120.72                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.13   -0.50   -1.07   -1.79   -2.61   -3.48   -4.32   -5.03   -5.49   -5.58   -5.20   -4.36   -3.10   -1.52    0.37    2.64    5.46    8.93
+     0.0    0.00   -0.14   -0.51   -1.06   -1.75   -2.55   -3.42   -4.30   -5.08   -5.61   -5.74   -5.37   -4.52   -3.26   -1.69    0.16    2.41    5.26    8.83
+     5.0    0.00   -0.14   -0.51   -1.06   -1.75   -2.54   -3.42   -4.30   -5.08   -5.60   -5.72   -5.36   -4.51   -3.26   -1.70    0.16    2.43    5.30    8.83
+    10.0    0.00   -0.15   -0.52   -1.06   -1.75   -2.54   -3.41   -4.29   -5.06   -5.58   -5.70   -5.33   -4.49   -3.25   -1.70    0.18    2.49    5.40    8.90
+    15.0    0.00   -0.15   -0.52   -1.06   -1.75   -2.54   -3.41   -4.28   -5.05   -5.56   -5.67   -5.30   -4.47   -3.24   -1.68    0.22    2.57    5.53    9.03
+    20.0    0.00   -0.15   -0.52   -1.07   -1.75   -2.54   -3.40   -4.27   -5.03   -5.53   -5.64   -5.27   -4.44   -3.21   -1.65    0.27    2.67    5.68    9.18
+    25.0    0.00   -0.15   -0.52   -1.07   -1.75   -2.54   -3.40   -4.26   -5.02   -5.51   -5.61   -5.24   -4.41   -3.18   -1.62    0.32    2.76    5.81    9.33
+    30.0    0.00   -0.15   -0.52   -1.07   -1.75   -2.54   -3.40   -4.26   -5.00   -5.49   -5.58   -5.21   -4.38   -3.15   -1.57    0.38    2.84    5.91    9.45
+    35.0    0.00   -0.15   -0.52   -1.07   -1.75   -2.54   -3.39   -4.25   -5.00   -5.48   -5.57   -5.19   -4.35   -3.11   -1.53    0.42    2.88    5.96    9.50
+    40.0    0.00   -0.15   -0.53   -1.07   -1.75   -2.54   -3.39   -4.25   -5.00   -5.48   -5.57   -5.18   -4.32   -3.07   -1.49    0.45    2.89    5.93    9.48
+    45.0    0.00   -0.16   -0.53   -1.07   -1.75   -2.54   -3.39   -4.25   -5.00   -5.49   -5.57   -5.17   -4.30   -3.04   -1.45    0.47    2.86    5.84    9.37
+    50.0    0.00   -0.16   -0.53   -1.08   -1.76   -2.54   -3.40   -4.26   -5.01   -5.50   -5.58   -5.18   -4.29   -3.00   -1.41    0.48    2.79    5.69    9.19
+    55.0    0.00   -0.16   -0.53   -1.08   -1.76   -2.54   -3.40   -4.26   -5.02   -5.51   -5.60   -5.18   -4.28   -2.97   -1.38    0.48    2.71    5.51    8.96
+    60.0    0.00   -0.16   -0.53   -1.08   -1.77   -2.55   -3.40   -4.26   -5.02   -5.53   -5.62   -5.20   -4.27   -2.94   -1.35    0.47    2.61    5.31    8.71
+    65.0    0.00   -0.16   -0.54   -1.09   -1.77   -2.56   -3.41   -4.27   -5.03   -5.54   -5.63   -5.21   -4.27   -2.92   -1.32    0.47    2.53    5.13    8.48
+    70.0    0.00   -0.16   -0.54   -1.09   -1.78   -2.57   -3.41   -4.27   -5.03   -5.55   -5.65   -5.22   -4.27   -2.91   -1.30    0.47    2.48    4.98    8.29
+    75.0    0.00   -0.16   -0.54   -1.10   -1.79   -2.58   -3.42   -4.28   -5.03   -5.55   -5.65   -5.23   -4.28   -2.91   -1.28    0.48    2.45    4.90    8.17
+    80.0    0.00   -0.16   -0.54   -1.11   -1.81   -2.59   -3.44   -4.28   -5.03   -5.54   -5.65   -5.24   -4.29   -2.91   -1.28    0.50    2.46    4.88    8.14
+    85.0    0.00   -0.16   -0.55   -1.12   -1.82   -2.61   -3.45   -4.29   -5.03   -5.54   -5.65   -5.25   -4.31   -2.93   -1.28    0.52    2.51    4.93    8.19
+    90.0    0.00   -0.16   -0.55   -1.13   -1.84   -2.64   -3.48   -4.30   -5.03   -5.53   -5.64   -5.25   -4.32   -2.95   -1.28    0.55    2.58    5.04    8.32
+    95.0    0.00   -0.16   -0.55   -1.14   -1.86   -2.66   -3.50   -4.32   -5.03   -5.52   -5.63   -5.25   -4.34   -2.98   -1.30    0.58    2.67    5.19    8.50
+   100.0    0.00   -0.16   -0.55   -1.15   -1.88   -2.69   -3.53   -4.34   -5.04   -5.51   -5.61   -5.24   -4.35   -3.01   -1.32    0.60    2.76    5.36    8.71
+   105.0    0.00   -0.16   -0.56   -1.16   -1.90   -2.72   -3.57   -4.37   -5.05   -5.50   -5.59   -5.23   -4.36   -3.04   -1.35    0.61    2.85    5.53    8.90
+   110.0    0.00   -0.16   -0.56   -1.16   -1.92   -2.75   -3.60   -4.40   -5.06   -5.49   -5.58   -5.22   -4.37   -3.06   -1.37    0.62    2.92    5.67    9.07
+   115.0    0.00   -0.15   -0.56   -1.17   -1.93   -2.78   -3.63   -4.43   -5.08   -5.49   -5.56   -5.20   -4.37   -3.08   -1.40    0.62    2.97    5.77    9.17
+   120.0    0.00   -0.15   -0.56   -1.17   -1.95   -2.80   -3.66   -4.45   -5.09   -5.49   -5.55   -5.19   -4.36   -3.09   -1.41    0.62    3.00    5.83    9.21
+   125.0    0.00   -0.15   -0.56   -1.18   -1.96   -2.82   -3.68   -4.47   -5.11   -5.49   -5.54   -5.17   -4.35   -3.09   -1.42    0.62    3.01    5.84    9.17
+   130.0    0.00   -0.15   -0.55   -1.18   -1.96   -2.82   -3.69   -4.49   -5.12   -5.50   -5.53   -5.16   -4.34   -3.08   -1.41    0.62    3.01    5.81    9.07
+   135.0    0.00   -0.15   -0.55   -1.17   -1.96   -2.83   -3.70   -4.49   -5.12   -5.50   -5.53   -5.15   -4.32   -3.06   -1.40    0.63    3.00    5.76    8.93
+   140.0    0.00   -0.14   -0.55   -1.17   -1.95   -2.82   -3.69   -4.49   -5.12   -5.50   -5.53   -5.15   -4.31   -3.04   -1.37    0.64    2.99    5.69    8.76
+   145.0    0.00   -0.14   -0.54   -1.16   -1.95   -2.81   -3.68   -4.48   -5.12   -5.50   -5.53   -5.15   -4.30   -3.02   -1.35    0.66    2.98    5.61    8.58
+   150.0    0.00   -0.14   -0.54   -1.16   -1.94   -2.80   -3.67   -4.46   -5.11   -5.50   -5.54   -5.15   -4.30   -3.01   -1.32    0.68    2.97    5.54    8.43
+   155.0    0.00   -0.14   -0.53   -1.15   -1.92   -2.78   -3.65   -4.45   -5.09   -5.50   -5.55   -5.17   -4.31   -3.00   -1.31    0.69    2.95    5.48    8.30
+   160.0    0.00   -0.13   -0.53   -1.14   -1.91   -2.77   -3.63   -4.43   -5.08   -5.50   -5.56   -5.19   -4.33   -3.01   -1.31    0.69    2.94    5.43    8.21
+   165.0    0.00   -0.13   -0.52   -1.13   -1.90   -2.75   -3.61   -4.41   -5.08   -5.50   -5.58   -5.21   -4.36   -3.03   -1.32    0.68    2.91    5.38    8.15
+   170.0    0.00   -0.13   -0.52   -1.13   -1.89   -2.74   -3.60   -4.40   -5.07   -5.51   -5.60   -5.24   -4.39   -3.06   -1.36    0.63    2.86    5.33    8.13
+   175.0    0.00   -0.12   -0.51   -1.12   -1.88   -2.73   -3.60   -4.40   -5.08   -5.52   -5.61   -5.26   -4.42   -3.11   -1.41    0.57    2.79    5.29    8.13
+   180.0    0.00   -0.12   -0.50   -1.11   -1.88   -2.73   -3.60   -4.41   -5.08   -5.53   -5.63   -5.28   -4.45   -3.15   -1.48    0.49    2.71    5.23    8.16
+   185.0    0.00   -0.12   -0.50   -1.11   -1.88   -2.73   -3.60   -4.41   -5.09   -5.54   -5.63   -5.30   -4.48   -3.20   -1.55    0.39    2.61    5.18    8.20
+   190.0    0.00   -0.11   -0.49   -1.10   -1.87   -2.73   -3.61   -4.43   -5.10   -5.54   -5.64   -5.30   -4.49   -3.24   -1.63    0.29    2.52    5.14    8.25
+   195.0    0.00   -0.11   -0.49   -1.09   -1.87   -2.73   -3.62   -4.44   -5.11   -5.54   -5.63   -5.29   -4.49   -3.27   -1.69    0.20    2.43    5.11    8.32
+   200.0    0.00   -0.11   -0.48   -1.08   -1.86   -2.73   -3.62   -4.44   -5.11   -5.54   -5.61   -5.27   -4.48   -3.29   -1.74    0.13    2.37    5.10    8.41
+   205.0    0.00   -0.10   -0.47   -1.08   -1.85   -2.73   -3.62   -4.44   -5.11   -5.52   -5.59   -5.24   -4.46   -3.28   -1.76    0.09    2.35    5.13    8.53
+   210.0    0.00   -0.10   -0.47   -1.06   -1.84   -2.71   -3.60   -4.43   -5.09   -5.50   -5.56   -5.21   -4.43   -3.27   -1.76    0.09    2.36    5.20    8.66
+   215.0    0.00   -0.10   -0.46   -1.05   -1.82   -2.69   -3.58   -4.41   -5.07   -5.48   -5.53   -5.17   -4.40   -3.23   -1.73    0.12    2.42    5.31    8.83
+   220.0    0.00   -0.10   -0.45   -1.04   -1.80   -2.66   -3.55   -4.38   -5.04   -5.45   -5.50   -5.14   -4.36   -3.19   -1.69    0.18    2.51    5.45    9.00
+   225.0    0.00   -0.09   -0.44   -1.02   -1.78   -2.63   -3.51   -4.34   -5.01   -5.42   -5.48   -5.11   -4.32   -3.15   -1.63    0.26    2.63    5.60    9.19
+   230.0    0.00   -0.09   -0.44   -1.01   -1.75   -2.59   -3.47   -4.30   -4.98   -5.40   -5.46   -5.10   -4.30   -3.11   -1.56    0.35    2.75    5.75    9.36
+   235.0    0.00   -0.09   -0.43   -0.99   -1.72   -2.55   -3.43   -4.26   -4.95   -5.38   -5.45   -5.09   -4.28   -3.07   -1.51    0.43    2.85    5.88    9.50
+   240.0    0.00   -0.09   -0.42   -0.98   -1.69   -2.52   -3.38   -4.22   -4.92   -5.37   -5.45   -5.09   -4.27   -3.05   -1.46    0.49    2.93    5.97    9.60
+   245.0    0.00   -0.09   -0.42   -0.96   -1.67   -2.48   -3.35   -4.19   -4.90   -5.37   -5.46   -5.10   -4.27   -3.03   -1.44    0.52    2.95    6.00    9.63
+   250.0    0.00   -0.09   -0.42   -0.95   -1.65   -2.45   -3.32   -4.17   -4.90   -5.38   -5.48   -5.12   -4.28   -3.04   -1.44    0.51    2.93    5.96    9.60
+   255.0    0.00   -0.09   -0.41   -0.94   -1.63   -2.43   -3.30   -4.16   -4.90   -5.39   -5.50   -5.13   -4.30   -3.05   -1.47    0.46    2.85    5.86    9.51
+   260.0    0.00   -0.09   -0.41   -0.94   -1.62   -2.42   -3.29   -4.16   -4.91   -5.41   -5.52   -5.15   -4.31   -3.07   -1.51    0.38    2.73    5.71    9.37
+   265.0    0.00   -0.09   -0.41   -0.93   -1.61   -2.42   -3.29   -4.17   -4.93   -5.43   -5.53   -5.16   -4.32   -3.10   -1.56    0.28    2.58    5.53    9.20
+   270.0    0.00   -0.09   -0.41   -0.93   -1.62   -2.42   -3.30   -4.18   -4.95   -5.45   -5.54   -5.16   -4.33   -3.12   -1.62    0.18    2.42    5.34    9.02
+   275.0    0.00   -0.09   -0.42   -0.94   -1.62   -2.43   -3.32   -4.20   -4.96   -5.45   -5.54   -5.16   -4.33   -3.14   -1.68    0.08    2.28    5.17    8.87
+   280.0    0.00   -0.09   -0.42   -0.95   -1.63   -2.45   -3.34   -4.22   -4.98   -5.46   -5.53   -5.14   -4.32   -3.15   -1.72    0.00    2.17    5.04    8.77
+   285.0    0.00   -0.10   -0.42   -0.95   -1.65   -2.47   -3.36   -4.24   -4.98   -5.45   -5.52   -5.12   -4.30   -3.15   -1.74   -0.05    2.10    4.97    8.74
+   290.0    0.00   -0.10   -0.43   -0.97   -1.66   -2.49   -3.38   -4.25   -4.99   -5.44   -5.49   -5.10   -4.29   -3.15   -1.75   -0.06    2.09    4.98    8.78
+   295.0    0.00   -0.10   -0.44   -0.98   -1.68   -2.50   -3.39   -4.26   -4.98   -5.43   -5.47   -5.08   -4.27   -3.13   -1.73   -0.04    2.13    5.04    8.90
+   300.0    0.00   -0.10   -0.45   -0.99   -1.70   -2.52   -3.41   -4.26   -4.98   -5.41   -5.46   -5.06   -4.26   -3.12   -1.70    0.02    2.22    5.16    9.06
+   305.0    0.00   -0.11   -0.45   -1.00   -1.71   -2.53   -3.41   -4.27   -4.97   -5.40   -5.45   -5.06   -4.25   -3.10   -1.66    0.10    2.34    5.31    9.26
+   310.0    0.00   -0.11   -0.46   -1.01   -1.72   -2.54   -3.42   -4.26   -4.97   -5.40   -5.45   -5.06   -4.26   -3.09   -1.62    0.18    2.46    5.47    9.45
+   315.0    0.00   -0.11   -0.47   -1.02   -1.73   -2.55   -3.42   -4.26   -4.97   -5.40   -5.46   -5.08   -4.27   -3.09   -1.58    0.26    2.57    5.60    9.61
+   320.0    0.00   -0.12   -0.47   -1.03   -1.74   -2.56   -3.42   -4.26   -4.97   -5.42   -5.49   -5.12   -4.30   -3.09   -1.55    0.32    2.66    5.70    9.71
+   325.0    0.00   -0.12   -0.48   -1.04   -1.74   -2.56   -3.42   -4.27   -4.98   -5.44   -5.53   -5.16   -4.33   -3.10   -1.54    0.36    2.70    5.73    9.73
+   330.0    0.00   -0.12   -0.49   -1.04   -1.75   -2.56   -3.42   -4.27   -5.00   -5.48   -5.57   -5.21   -4.37   -3.12   -1.54    0.37    2.71    5.72    9.68
+   335.0    0.00   -0.13   -0.49   -1.05   -1.75   -2.56   -3.42   -4.28   -5.02   -5.51   -5.62   -5.26   -4.41   -3.15   -1.55    0.35    2.67    5.65    9.56
+   340.0    0.00   -0.13   -0.50   -1.05   -1.75   -2.56   -3.42   -4.29   -5.04   -5.55   -5.67   -5.30   -4.45   -3.18   -1.58    0.32    2.61    5.54    9.40
+   345.0    0.00   -0.13   -0.50   -1.06   -1.75   -2.55   -3.42   -4.29   -5.06   -5.58   -5.70   -5.34   -4.48   -3.21   -1.61    0.27    2.54    5.43    9.21
+   350.0    0.00   -0.14   -0.51   -1.06   -1.75   -2.55   -3.42   -4.30   -5.08   -5.60   -5.73   -5.37   -4.51   -3.23   -1.65    0.22    2.47    5.33    9.03
+   355.0    0.00   -0.14   -0.51   -1.06   -1.75   -2.55   -3.42   -4.30   -5.08   -5.61   -5.74   -5.38   -4.52   -3.25   -1.67    0.18    2.42    5.27    8.90
+   360.0    0.00   -0.14   -0.51   -1.06   -1.75   -2.55   -3.42   -4.30   -5.08   -5.61   -5.74   -5.37   -4.52   -3.26   -1.69    0.16    2.41    5.26    8.83
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH700936E      SNOW                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               4    20-APR-05 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+      0.21     -0.21     89.62                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.23   -0.90   -1.94   -3.25   -4.71   -6.17   -7.50   -8.51   -9.04   -8.96   -8.19   -6.70   -4.54   -1.77    1.61    5.65   10.36   15.62
+     0.0    0.00   -0.24   -0.93   -1.99   -3.33   -4.84   -6.35   -7.71   -8.71   -9.21   -9.07   -8.25   -6.76   -4.65   -1.91    1.49    5.60   10.33   15.27
+     5.0    0.00   -0.24   -0.93   -1.98   -3.32   -4.82   -6.33   -7.69   -8.70   -9.20   -9.07   -8.25   -6.76   -4.64   -1.91    1.49    5.60   10.34   15.30
+    10.0    0.00   -0.24   -0.92   -1.97   -3.31   -4.80   -6.31   -7.67   -8.69   -9.20   -9.07   -8.25   -6.76   -4.64   -1.90    1.48    5.59   10.35   15.35
+    15.0    0.00   -0.24   -0.92   -1.97   -3.29   -4.78   -6.29   -7.65   -8.67   -9.19   -9.07   -8.26   -6.76   -4.64   -1.90    1.48    5.58   10.36   15.43
+    20.0    0.00   -0.24   -0.91   -1.96   -3.28   -4.76   -6.26   -7.62   -8.66   -9.18   -9.07   -8.26   -6.77   -4.64   -1.90    1.48    5.59   10.38   15.52
+    25.0    0.00   -0.24   -0.91   -1.95   -3.27   -4.74   -6.24   -7.60   -8.63   -9.17   -9.07   -8.27   -6.78   -4.64   -1.89    1.49    5.60   10.42   15.63
+    30.0    0.00   -0.24   -0.91   -1.95   -3.26   -4.73   -6.22   -7.57   -8.61   -9.15   -9.07   -8.28   -6.78   -4.64   -1.89    1.51    5.62   10.46   15.76
+    35.0    0.00   -0.24   -0.91   -1.94   -3.25   -4.71   -6.19   -7.54   -8.58   -9.13   -9.06   -8.28   -6.79   -4.64   -1.87    1.54    5.66   10.52   15.88
+    40.0    0.00   -0.23   -0.90   -1.94   -3.24   -4.70   -6.17   -7.51   -8.55   -9.11   -9.04   -8.27   -6.78   -4.63   -1.85    1.57    5.71   10.59   16.00
+    45.0    0.00   -0.23   -0.90   -1.93   -3.23   -4.69   -6.15   -7.49   -8.52   -9.08   -9.02   -8.26   -6.77   -4.61   -1.82    1.62    5.76   10.66   16.12
+    50.0    0.00   -0.23   -0.90   -1.93   -3.23   -4.67   -6.13   -7.46   -8.49   -9.05   -8.99   -8.24   -6.76   -4.59   -1.78    1.67    5.82   10.72   16.21
+    55.0    0.00   -0.23   -0.90   -1.92   -3.22   -4.66   -6.11   -7.43   -8.46   -9.02   -8.96   -8.21   -6.73   -4.55   -1.74    1.72    5.88   10.78   16.28
+    60.0    0.00   -0.23   -0.89   -1.92   -3.21   -4.65   -6.10   -7.41   -8.43   -8.98   -8.93   -8.18   -6.69   -4.51   -1.69    1.78    5.93   10.81   16.31
+    65.0    0.00   -0.23   -0.89   -1.91   -3.20   -4.63   -6.08   -7.39   -8.40   -8.95   -8.90   -8.14   -6.65   -4.47   -1.64    1.82    5.96   10.83   16.31
+    70.0    0.00   -0.23   -0.89   -1.91   -3.19   -4.62   -6.06   -7.36   -8.37   -8.92   -8.86   -8.10   -6.61   -4.42   -1.59    1.85    5.97   10.81   16.27
+    75.0    0.00   -0.23   -0.88   -1.90   -3.18   -4.60   -6.04   -7.34   -8.35   -8.90   -8.84   -8.07   -6.57   -4.38   -1.56    1.87    5.96   10.76   16.19
+    80.0    0.00   -0.23   -0.88   -1.90   -3.17   -4.58   -6.01   -7.32   -8.33   -8.88   -8.81   -8.04   -6.54   -4.35   -1.54    1.87    5.93   10.68   16.08
+    85.0    0.00   -0.22   -0.88   -1.89   -3.15   -4.56   -5.99   -7.30   -8.31   -8.86   -8.80   -8.02   -6.52   -4.33   -1.53    1.85    5.87   10.58   15.93
+    90.0    0.00   -0.22   -0.87   -1.88   -3.14   -4.55   -5.97   -7.28   -8.29   -8.85   -8.79   -8.02   -6.51   -4.33   -1.54    1.81    5.79   10.46   15.77
+    95.0    0.00   -0.22   -0.87   -1.87   -3.13   -4.53   -5.95   -7.26   -8.28   -8.85   -8.79   -8.02   -6.52   -4.34   -1.57    1.76    5.70   10.33   15.59
+   100.0    0.00   -0.22   -0.87   -1.87   -3.12   -4.51   -5.93   -7.24   -8.28   -8.85   -8.80   -8.04   -6.54   -4.37   -1.61    1.70    5.61   10.20   15.42
+   105.0    0.00   -0.22   -0.87   -1.86   -3.11   -4.50   -5.92   -7.23   -8.27   -8.86   -8.82   -8.07   -6.58   -4.42   -1.67    1.63    5.52   10.08   15.26
+   110.0    0.00   -0.22   -0.87   -1.86   -3.10   -4.49   -5.91   -7.23   -8.27   -8.87   -8.84   -8.10   -6.62   -4.47   -1.73    1.57    5.45    9.99   15.14
+   115.0    0.00   -0.22   -0.87   -1.86   -3.10   -4.49   -5.91   -7.23   -8.28   -8.88   -8.87   -8.13   -6.67   -4.52   -1.79    1.51    5.40    9.93   15.06
+   120.0    0.00   -0.22   -0.87   -1.86   -3.10   -4.49   -5.92   -7.24   -8.29   -8.89   -8.89   -8.17   -6.71   -4.58   -1.84    1.47    5.37    9.91   15.03
+   125.0    0.00   -0.22   -0.87   -1.86   -3.11   -4.50   -5.93   -7.25   -8.30   -8.90   -8.90   -8.20   -6.75   -4.63   -1.88    1.44    5.37    9.93   15.04
+   130.0    0.00   -0.22   -0.87   -1.87   -3.12   -4.52   -5.95   -7.26   -8.31   -8.91   -8.92   -8.22   -6.78   -4.66   -1.91    1.43    5.39    9.98   15.10
+   135.0    0.00   -0.22   -0.87   -1.87   -3.13   -4.54   -5.97   -7.28   -8.33   -8.92   -8.92   -8.23   -6.80   -4.69   -1.93    1.44    5.43   10.06   15.19
+   140.0    0.00   -0.22   -0.87   -1.88   -3.15   -4.56   -6.00   -7.31   -8.34   -8.93   -8.93   -8.23   -6.81   -4.70   -1.93    1.46    5.49   10.15   15.30
+   145.0    0.00   -0.22   -0.87   -1.89   -3.17   -4.59   -6.02   -7.33   -8.36   -8.93   -8.92   -8.23   -6.81   -4.70   -1.92    1.49    5.54   10.23   15.42
+   150.0    0.00   -0.22   -0.87   -1.90   -3.18   -4.61   -6.05   -7.36   -8.37   -8.94   -8.92   -8.22   -6.81   -4.69   -1.91    1.52    5.59   10.31   15.53
+   155.0    0.00   -0.22   -0.88   -1.90   -3.20   -4.64   -6.08   -7.38   -8.39   -8.94   -8.92   -8.22   -6.80   -4.68   -1.90    1.54    5.62   10.35   15.61
+   160.0    0.00   -0.22   -0.88   -1.91   -3.21   -4.66   -6.10   -7.40   -8.40   -8.95   -8.92   -8.21   -6.79   -4.67   -1.89    1.55    5.63   10.37   15.66
+   165.0    0.00   -0.22   -0.88   -1.92   -3.22   -4.67   -6.12   -7.42   -8.42   -8.97   -8.93   -8.22   -6.79   -4.67   -1.88    1.54    5.61   10.34   15.66
+   170.0    0.00   -0.22   -0.88   -1.92   -3.23   -4.68   -6.14   -7.44   -8.44   -8.99   -8.94   -8.23   -6.80   -4.67   -1.89    1.52    5.57   10.28   15.63
+   175.0    0.00   -0.22   -0.88   -1.92   -3.23   -4.69   -6.15   -7.46   -8.46   -9.01   -8.97   -8.25   -6.81   -4.68   -1.91    1.48    5.50   10.20   15.56
+   180.0    0.00   -0.22   -0.88   -1.92   -3.23   -4.69   -6.16   -7.47   -8.48   -9.04   -9.00   -8.28   -6.83   -4.70   -1.93    1.44    5.42   10.10   15.48
+   185.0    0.00   -0.22   -0.88   -1.92   -3.23   -4.69   -6.16   -7.48   -8.50   -9.07   -9.04   -8.31   -6.86   -4.72   -1.96    1.38    5.34   10.00   15.39
+   190.0    0.00   -0.22   -0.88   -1.92   -3.23   -4.69   -6.16   -7.49   -8.52   -9.10   -9.07   -8.35   -6.89   -4.75   -1.99    1.33    5.27    9.91   15.32
+   195.0    0.00   -0.22   -0.88   -1.92   -3.22   -4.68   -6.16   -7.50   -8.54   -9.13   -9.11   -8.38   -6.92   -4.77   -2.02    1.29    5.21    9.86   15.29
+   200.0    0.00   -0.22   -0.88   -1.91   -3.22   -4.68   -6.15   -7.50   -8.56   -9.15   -9.13   -8.40   -6.93   -4.79   -2.04    1.27    5.19    9.85   15.29
+   205.0    0.00   -0.22   -0.88   -1.91   -3.21   -4.67   -6.15   -7.51   -8.57   -9.17   -9.15   -8.41   -6.94   -4.79   -2.05    1.27    5.20    9.89   15.34
+   210.0    0.00   -0.22   -0.88   -1.91   -3.21   -4.67   -6.15   -7.51   -8.58   -9.18   -9.15   -8.41   -6.93   -4.78   -2.03    1.29    5.26    9.98   15.44
+   215.0    0.00   -0.22   -0.88   -1.91   -3.21   -4.66   -6.15   -7.51   -8.58   -9.17   -9.14   -8.39   -6.91   -4.76   -2.00    1.34    5.35   10.12   15.58
+   220.0    0.00   -0.22   -0.88   -1.91   -3.21   -4.66   -6.15   -7.51   -8.57   -9.16   -9.11   -8.35   -6.87   -4.72   -1.96    1.41    5.47   10.29   15.74
+   225.0    0.00   -0.22   -0.88   -1.91   -3.21   -4.67   -6.15   -7.50   -8.56   -9.13   -9.07   -8.30   -6.82   -4.66   -1.89    1.51    5.62   10.49   15.91
+   230.0    0.00   -0.23   -0.89   -1.91   -3.21   -4.67   -6.15   -7.50   -8.54   -9.10   -9.02   -8.24   -6.75   -4.60   -1.81    1.62    5.78   10.69   16.08
+   235.0    0.00   -0.23   -0.89   -1.92   -3.22   -4.68   -6.16   -7.49   -8.52   -9.06   -8.97   -8.18   -6.68   -4.53   -1.73    1.73    5.94   10.87   16.21
+   240.0    0.00   -0.23   -0.89   -1.93   -3.23   -4.69   -6.16   -7.49   -8.50   -9.02   -8.91   -8.11   -6.62   -4.45   -1.65    1.84    6.08   11.02   16.30
+   245.0    0.00   -0.23   -0.90   -1.93   -3.24   -4.70   -6.17   -7.49   -8.48   -8.98   -8.86   -8.05   -6.55   -4.38   -1.56    1.94    6.20   11.13   16.34
+   250.0    0.00   -0.23   -0.90   -1.94   -3.26   -4.72   -6.18   -7.48   -8.46   -8.95   -8.81   -8.00   -6.49   -4.32   -1.49    2.03    6.28   11.18   16.33
+   255.0    0.00   -0.23   -0.91   -1.96   -3.27   -4.73   -6.19   -7.49   -8.45   -8.92   -8.78   -7.96   -6.44   -4.26   -1.43    2.09    6.31   11.17   16.27
+   260.0    0.00   -0.24   -0.91   -1.97   -3.29   -4.75   -6.20   -7.49   -8.44   -8.91   -8.76   -7.93   -6.41   -4.22   -1.38    2.12    6.31   11.11   16.17
+   265.0    0.00   -0.24   -0.92   -1.98   -3.31   -4.77   -6.22   -7.50   -8.45   -8.91   -8.76   -7.92   -6.39   -4.19   -1.35    2.12    6.26   11.00   16.04
+   270.0    0.00   -0.24   -0.93   -1.99   -3.32   -4.79   -6.24   -7.52   -8.46   -8.92   -8.77   -7.93   -6.39   -4.18   -1.34    2.11    6.18   10.86   15.90
+   275.0    0.00   -0.24   -0.93   -2.00   -3.34   -4.81   -6.26   -7.53   -8.48   -8.94   -8.79   -7.94   -6.39   -4.18   -1.35    2.06    6.08   10.69   15.77
+   280.0    0.00   -0.24   -0.94   -2.01   -3.35   -4.82   -6.28   -7.56   -8.50   -8.97   -8.82   -7.97   -6.41   -4.19   -1.37    2.01    5.95   10.52   15.64
+   285.0    0.00   -0.25   -0.94   -2.02   -3.37   -4.84   -6.30   -7.58   -8.53   -9.00   -8.85   -8.00   -6.44   -4.21   -1.40    1.94    5.83   10.35   15.54
+   290.0    0.00   -0.25   -0.95   -2.03   -3.38   -4.86   -6.32   -7.60   -8.56   -9.04   -8.89   -8.04   -6.48   -4.25   -1.45    1.86    5.71   10.21   15.48
+   295.0    0.00   -0.25   -0.95   -2.04   -3.39   -4.87   -6.34   -7.63   -8.59   -9.07   -8.93   -8.08   -6.52   -4.29   -1.50    1.78    5.60   10.09   15.43
+   300.0    0.00   -0.25   -0.95   -2.04   -3.40   -4.89   -6.36   -7.65   -8.62   -9.10   -8.97   -8.12   -6.56   -4.34   -1.56    1.71    5.52   10.02   15.42
+   305.0    0.00   -0.25   -0.96   -2.05   -3.41   -4.90   -6.37   -7.67   -8.65   -9.13   -9.00   -8.16   -6.60   -4.39   -1.62    1.65    5.46    9.97   15.42
+   310.0    0.00   -0.25   -0.96   -2.05   -3.41   -4.91   -6.39   -7.69   -8.67   -9.16   -9.02   -8.19   -6.64   -4.44   -1.68    1.60    5.42    9.97   15.43
+   315.0    0.00   -0.25   -0.96   -2.05   -3.41   -4.91   -6.40   -7.71   -8.69   -9.17   -9.04   -8.21   -6.68   -4.49   -1.73    1.55    5.41    9.99   15.44
+   320.0    0.00   -0.25   -0.96   -2.05   -3.41   -4.92   -6.41   -7.72   -8.70   -9.19   -9.06   -8.23   -6.71   -4.54   -1.78    1.52    5.42   10.03   15.44
+   325.0    0.00   -0.25   -0.95   -2.04   -3.41   -4.92   -6.41   -7.73   -8.71   -9.19   -9.06   -8.25   -6.73   -4.57   -1.82    1.50    5.45   10.08   15.43
+   330.0    0.00   -0.25   -0.95   -2.04   -3.40   -4.91   -6.41   -7.74   -8.72   -9.20   -9.07   -8.25   -6.75   -4.61   -1.85    1.49    5.48   10.14   15.41
+   335.0    0.00   -0.25   -0.95   -2.03   -3.40   -4.91   -6.41   -7.74   -8.72   -9.20   -9.07   -8.26   -6.77   -4.63   -1.88    1.49    5.51   10.19   15.38
+   340.0    0.00   -0.25   -0.95   -2.02   -3.39   -4.90   -6.41   -7.74   -8.72   -9.20   -9.07   -8.26   -6.77   -4.65   -1.90    1.49    5.55   10.24   15.34
+   345.0    0.00   -0.25   -0.94   -2.02   -3.37   -4.89   -6.40   -7.73   -8.72   -9.21   -9.07   -8.25   -6.77   -4.65   -1.91    1.49    5.57   10.28   15.31
+   350.0    0.00   -0.25   -0.94   -2.01   -3.36   -4.87   -6.38   -7.73   -8.72   -9.21   -9.07   -8.25   -6.77   -4.65   -1.91    1.49    5.59   10.31   15.28
+   355.0    0.00   -0.25   -0.93   -2.00   -3.35   -4.86   -6.37   -7.72   -8.72   -9.21   -9.07   -8.25   -6.77   -4.65   -1.91    1.49    5.60   10.32   15.27
+   360.0    0.00   -0.24   -0.93   -1.99   -3.33   -4.84   -6.35   -7.71   -8.71   -9.21   -9.07   -8.25   -6.76   -4.65   -1.91    1.49    5.60   10.33   15.27
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.06      0.05    118.17                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.16   -0.61   -1.24   -1.93   -2.61   -3.28   -3.94   -4.58   -5.09   -5.32   -5.10   -4.36   -3.12   -1.45    0.62    3.23    6.68   11.25
+     0.0    0.00   -0.18   -0.64   -1.25   -1.92   -2.58   -3.22   -3.88   -4.52   -5.07   -5.38   -5.27   -4.65   -3.50   -1.82    0.37    3.19    6.74   10.99
+     5.0    0.00   -0.18   -0.63   -1.25   -1.92   -2.58   -3.23   -3.88   -4.53   -5.09   -5.41   -5.31   -4.68   -3.51   -1.83    0.37    3.17    6.71   10.98
+    10.0    0.00   -0.18   -0.63   -1.25   -1.92   -2.59   -3.23   -3.89   -4.54   -5.11   -5.43   -5.33   -4.70   -3.52   -1.82    0.37    3.15    6.68   10.99
+    15.0    0.00   -0.17   -0.62   -1.25   -1.92   -2.59   -3.24   -3.90   -4.55   -5.12   -5.44   -5.34   -4.70   -3.51   -1.80    0.39    3.15    6.66   11.02
+    20.0    0.00   -0.17   -0.62   -1.24   -1.93   -2.60   -3.25   -3.90   -4.55   -5.12   -5.44   -5.33   -4.69   -3.48   -1.77    0.42    3.16    6.66   11.07
+    25.0    0.00   -0.17   -0.62   -1.24   -1.93   -2.60   -3.25   -3.90   -4.55   -5.11   -5.42   -5.31   -4.65   -3.44   -1.72    0.45    3.18    6.68   11.15
+    30.0    0.00   -0.16   -0.61   -1.24   -1.93   -2.61   -3.26   -3.91   -4.55   -5.10   -5.40   -5.28   -4.61   -3.38   -1.67    0.50    3.21    6.71   11.25
+    35.0    0.00   -0.16   -0.61   -1.24   -1.93   -2.61   -3.27   -3.92   -4.55   -5.09   -5.38   -5.24   -4.55   -3.32   -1.60    0.55    3.25    6.77   11.37
+    40.0    0.00   -0.16   -0.60   -1.24   -1.93   -2.62   -3.28   -3.93   -4.55   -5.08   -5.35   -5.19   -4.49   -3.25   -1.54    0.61    3.31    6.85   11.51
+    45.0    0.00   -0.16   -0.60   -1.23   -1.94   -2.63   -3.29   -3.94   -4.56   -5.08   -5.33   -5.15   -4.43   -3.18   -1.47    0.67    3.37    6.93   11.64
+    50.0    0.00   -0.15   -0.60   -1.23   -1.94   -2.64   -3.31   -3.96   -4.58   -5.08   -5.31   -5.11   -4.38   -3.12   -1.41    0.72    3.44    7.02   11.76
+    55.0    0.00   -0.15   -0.59   -1.23   -1.94   -2.65   -3.33   -3.98   -4.60   -5.09   -5.30   -5.07   -4.33   -3.07   -1.36    0.78    3.50    7.11   11.87
+    60.0    0.00   -0.15   -0.59   -1.23   -1.95   -2.66   -3.35   -4.01   -4.62   -5.10   -5.29   -5.05   -4.29   -3.03   -1.32    0.82    3.55    7.18   11.94
+    65.0    0.00   -0.15   -0.59   -1.23   -1.95   -2.67   -3.37   -4.04   -4.65   -5.12   -5.30   -5.04   -4.27   -3.00   -1.29    0.85    3.59    7.23   11.97
+    70.0    0.00   -0.14   -0.59   -1.23   -1.95   -2.68   -3.39   -4.06   -4.68   -5.15   -5.31   -5.04   -4.26   -2.98   -1.27    0.87    3.62    7.26   11.97
+    75.0    0.00   -0.14   -0.58   -1.23   -1.96   -2.69   -3.40   -4.09   -4.71   -5.17   -5.33   -5.05   -4.25   -2.97   -1.27    0.88    3.62    7.25   11.92
+    80.0    0.00   -0.14   -0.58   -1.22   -1.96   -2.70   -3.42   -4.11   -4.74   -5.20   -5.35   -5.06   -4.26   -2.97   -1.27    0.87    3.61    7.22   11.83
+    85.0    0.00   -0.14   -0.58   -1.22   -1.96   -2.71   -3.43   -4.13   -4.76   -5.22   -5.37   -5.07   -4.26   -2.98   -1.27    0.86    3.58    7.16   11.72
+    90.0    0.00   -0.14   -0.58   -1.22   -1.96   -2.71   -3.44   -4.14   -4.77   -5.24   -5.39   -5.08   -4.27   -2.98   -1.28    0.84    3.54    7.07   11.59
+    95.0    0.00   -0.14   -0.58   -1.22   -1.96   -2.71   -3.45   -4.15   -4.78   -5.25   -5.40   -5.09   -4.28   -2.99   -1.29    0.82    3.49    6.98   11.45
+   100.0    0.00   -0.14   -0.58   -1.22   -1.96   -2.72   -3.45   -4.15   -4.78   -5.25   -5.40   -5.10   -4.29   -2.99   -1.29    0.80    3.43    6.88   11.33
+   105.0    0.00   -0.14   -0.58   -1.23   -1.97   -2.72   -3.44   -4.14   -4.77   -5.24   -5.39   -5.10   -4.29   -2.99   -1.29    0.79    3.38    6.79   11.24
+   110.0    0.00   -0.14   -0.58   -1.23   -1.97   -2.71   -3.44   -4.13   -4.75   -5.22   -5.38   -5.09   -4.28   -2.98   -1.28    0.78    3.35    6.71   11.18
+   115.0    0.00   -0.14   -0.58   -1.23   -1.97   -2.71   -3.43   -4.11   -4.73   -5.20   -5.37   -5.09   -4.28   -2.97   -1.27    0.78    3.32    6.66   11.15
+   120.0    0.00   -0.14   -0.58   -1.23   -1.97   -2.71   -3.41   -4.09   -4.71   -5.18   -5.35   -5.08   -4.27   -2.96   -1.25    0.80    3.31    6.63   11.16
+   125.0    0.00   -0.14   -0.58   -1.24   -1.97   -2.71   -3.40   -4.07   -4.68   -5.16   -5.34   -5.07   -4.27   -2.95   -1.23    0.82    3.32    6.63   11.21
+   130.0    0.00   -0.14   -0.58   -1.24   -1.97   -2.70   -3.39   -4.05   -4.66   -5.13   -5.33   -5.07   -4.26   -2.94   -1.21    0.84    3.34    6.64   11.27
+   135.0    0.00   -0.14   -0.59   -1.24   -1.98   -2.70   -3.38   -4.03   -4.63   -5.11   -5.31   -5.07   -4.27   -2.94   -1.20    0.87    3.37    6.67   11.34
+   140.0    0.00   -0.14   -0.59   -1.24   -1.98   -2.70   -3.37   -4.01   -4.62   -5.10   -5.31   -5.07   -4.28   -2.95   -1.20    0.88    3.39    6.70   11.40
+   145.0    0.00   -0.14   -0.59   -1.24   -1.98   -2.69   -3.37   -4.00   -4.60   -5.09   -5.31   -5.08   -4.29   -2.96   -1.20    0.89    3.40    6.72   11.43
+   150.0    0.00   -0.14   -0.59   -1.25   -1.98   -2.69   -3.36   -4.00   -4.60   -5.08   -5.31   -5.09   -4.31   -2.99   -1.23    0.87    3.39    6.72   11.44
+   155.0    0.00   -0.14   -0.59   -1.25   -1.98   -2.69   -3.36   -3.99   -4.60   -5.09   -5.32   -5.11   -4.34   -3.02   -1.26    0.84    3.36    6.69   11.40
+   160.0    0.00   -0.14   -0.59   -1.25   -1.98   -2.69   -3.36   -4.00   -4.60   -5.09   -5.33   -5.12   -4.36   -3.06   -1.31    0.78    3.31    6.64   11.32
+   165.0    0.00   -0.14   -0.59   -1.25   -1.97   -2.69   -3.36   -4.00   -4.61   -5.11   -5.34   -5.14   -4.39   -3.10   -1.38    0.70    3.23    6.56   11.20
+   170.0    0.00   -0.15   -0.59   -1.24   -1.97   -2.69   -3.36   -4.01   -4.63   -5.12   -5.35   -5.15   -4.41   -3.14   -1.45    0.61    3.13    6.46   11.06
+   175.0    0.00   -0.15   -0.59   -1.24   -1.97   -2.68   -3.37   -4.03   -4.65   -5.14   -5.37   -5.16   -4.43   -3.18   -1.52    0.50    3.02    6.35   10.91
+   180.0    0.00   -0.15   -0.59   -1.24   -1.96   -2.68   -3.37   -4.04   -4.67   -5.16   -5.39   -5.17   -4.44   -3.22   -1.59    0.41    2.91    6.24   10.77
+   185.0    0.00   -0.15   -0.59   -1.23   -1.95   -2.67   -3.37   -4.05   -4.69   -5.19   -5.40   -5.18   -4.45   -3.25   -1.65    0.32    2.81    6.15   10.66
+   190.0    0.00   -0.15   -0.59   -1.23   -1.94   -2.66   -3.37   -4.06   -4.71   -5.21   -5.41   -5.18   -4.45   -3.26   -1.69    0.25    2.73    6.09   10.58
+   195.0    0.00   -0.15   -0.59   -1.22   -1.93   -2.65   -3.36   -4.07   -4.72   -5.22   -5.42   -5.18   -4.45   -3.26   -1.72    0.20    2.69    6.06   10.56
+   200.0    0.00   -0.16   -0.60   -1.22   -1.92   -2.64   -3.36   -4.07   -4.73   -5.24   -5.43   -5.18   -4.43   -3.25   -1.72    0.19    2.68    6.08   10.59
+   205.0    0.00   -0.16   -0.60   -1.21   -1.91   -2.62   -3.34   -4.06   -4.73   -5.24   -5.43   -5.17   -4.42   -3.23   -1.70    0.21    2.71    6.14   10.67
+   210.0    0.00   -0.16   -0.60   -1.21   -1.90   -2.61   -3.32   -4.05   -4.73   -5.24   -5.43   -5.16   -4.39   -3.20   -1.65    0.27    2.78    6.23   10.79
+   215.0    0.00   -0.16   -0.60   -1.21   -1.89   -2.59   -3.30   -4.03   -4.71   -5.23   -5.42   -5.15   -4.37   -3.15   -1.59    0.35    2.88    6.35   10.95
+   220.0    0.00   -0.16   -0.60   -1.20   -1.88   -2.57   -3.28   -4.00   -4.69   -5.22   -5.41   -5.13   -4.34   -3.10   -1.51    0.44    2.99    6.49   11.12
+   225.0    0.00   -0.17   -0.60   -1.20   -1.87   -2.55   -3.25   -3.97   -4.66   -5.19   -5.40   -5.12   -4.31   -3.05   -1.43    0.55    3.12    6.63   11.29
+   230.0    0.00   -0.17   -0.61   -1.20   -1.86   -2.54   -3.22   -3.93   -4.63   -5.17   -5.38   -5.10   -4.28   -3.00   -1.35    0.66    3.24    6.75   11.44
+   235.0    0.00   -0.17   -0.61   -1.21   -1.86   -2.52   -3.20   -3.90   -4.59   -5.14   -5.35   -5.08   -4.26   -2.95   -1.27    0.76    3.34    6.84   11.56
+   240.0    0.00   -0.17   -0.62   -1.21   -1.86   -2.51   -3.17   -3.87   -4.55   -5.10   -5.33   -5.06   -4.23   -2.91   -1.21    0.83    3.41    6.89   11.64
+   245.0    0.00   -0.18   -0.62   -1.22   -1.86   -2.51   -3.16   -3.84   -4.52   -5.07   -5.31   -5.05   -4.22   -2.88   -1.16    0.89    3.45    6.91   11.67
+   250.0    0.00   -0.18   -0.63   -1.22   -1.87   -2.50   -3.15   -3.82   -4.49   -5.04   -5.28   -5.03   -4.21   -2.86   -1.14    0.91    3.45    6.88   11.65
+   255.0    0.00   -0.18   -0.63   -1.23   -1.87   -2.51   -3.14   -3.80   -4.47   -5.02   -5.27   -5.02   -4.20   -2.86   -1.13    0.91    3.42    6.82   11.60
+   260.0    0.00   -0.19   -0.64   -1.24   -1.88   -2.51   -3.14   -3.79   -4.45   -5.00   -5.25   -5.02   -4.20   -2.86   -1.14    0.88    3.37    6.73   11.51
+   265.0    0.00   -0.19   -0.64   -1.25   -1.90   -2.52   -3.14   -3.79   -4.44   -4.99   -5.25   -5.02   -4.21   -2.88   -1.17    0.84    3.29    6.63   11.41
+   270.0    0.00   -0.19   -0.65   -1.26   -1.91   -2.54   -3.15   -3.79   -4.44   -4.99   -5.24   -5.02   -4.22   -2.91   -1.21    0.78    3.21    6.52   11.30
+   275.0    0.00   -0.19   -0.65   -1.27   -1.92   -2.55   -3.17   -3.80   -4.44   -4.98   -5.24   -5.02   -4.24   -2.94   -1.26    0.72    3.13    6.42   11.19
+   280.0    0.00   -0.19   -0.66   -1.28   -1.93   -2.56   -3.18   -3.81   -4.45   -4.98   -5.24   -5.03   -4.26   -2.97   -1.31    0.65    3.06    6.35   11.09
+   285.0    0.00   -0.20   -0.66   -1.28   -1.94   -2.57   -3.19   -3.82   -4.46   -4.99   -5.24   -5.03   -4.27   -3.01   -1.36    0.59    3.01    6.30   11.02
+   290.0    0.00   -0.20   -0.67   -1.29   -1.95   -2.58   -3.20   -3.83   -4.46   -4.99   -5.23   -5.03   -4.29   -3.04   -1.41    0.55    2.98    6.29   10.97
+   295.0    0.00   -0.20   -0.67   -1.29   -1.95   -2.59   -3.21   -3.84   -4.47   -4.98   -5.23   -5.03   -4.30   -3.07   -1.46    0.51    2.97    6.30   10.94
+   300.0    0.00   -0.20   -0.67   -1.29   -1.96   -2.60   -3.22   -3.85   -4.47   -4.98   -5.22   -5.02   -4.31   -3.10   -1.49    0.49    2.99    6.35   10.94
+   305.0    0.00   -0.20   -0.67   -1.29   -1.96   -2.60   -3.22   -3.85   -4.46   -4.97   -5.21   -5.01   -4.31   -3.12   -1.52    0.47    3.02    6.41   10.95
+   310.0    0.00   -0.20   -0.67   -1.29   -1.95   -2.60   -3.22   -3.85   -4.46   -4.96   -5.19   -5.01   -4.32   -3.15   -1.55    0.47    3.06    6.49   10.97
+   315.0    0.00   -0.20   -0.67   -1.29   -1.95   -2.59   -3.22   -3.85   -4.45   -4.95   -5.18   -5.00   -4.33   -3.17   -1.58    0.46    3.10    6.58   11.00
+   320.0    0.00   -0.20   -0.66   -1.29   -1.95   -2.59   -3.22   -3.84   -4.45   -4.94   -5.18   -5.00   -4.34   -3.20   -1.60    0.46    3.15    6.66   11.03
+   325.0    0.00   -0.20   -0.66   -1.28   -1.94   -2.59   -3.21   -3.84   -4.45   -4.94   -5.18   -5.01   -4.36   -3.22   -1.63    0.46    3.19    6.73   11.06
+   330.0    0.00   -0.19   -0.66   -1.28   -1.94   -2.58   -3.21   -3.84   -4.45   -4.95   -5.18   -5.02   -4.39   -3.26   -1.66    0.46    3.22    6.78   11.07
+   335.0    0.00   -0.19   -0.66   -1.27   -1.93   -2.58   -3.21   -3.84   -4.45   -4.96   -5.20   -5.05   -4.42   -3.30   -1.69    0.45    3.24    6.82   11.08
+   340.0    0.00   -0.19   -0.65   -1.27   -1.93   -2.57   -3.21   -3.85   -4.46   -4.97   -5.23   -5.09   -4.46   -3.34   -1.72    0.43    3.25    6.84   11.07
+   345.0    0.00   -0.19   -0.65   -1.26   -1.92   -2.57   -3.21   -3.85   -4.48   -4.99   -5.26   -5.13   -4.51   -3.38   -1.75    0.41    3.24    6.83   11.05
+   350.0    0.00   -0.19   -0.64   -1.26   -1.92   -2.57   -3.21   -3.86   -4.49   -5.02   -5.30   -5.18   -4.56   -3.43   -1.78    0.40    3.23    6.81   11.03
+   355.0    0.00   -0.18   -0.64   -1.26   -1.92   -2.58   -3.22   -3.87   -4.51   -5.05   -5.34   -5.23   -4.61   -3.46   -1.81    0.38    3.21    6.78   11.01
+   360.0    0.00   -0.18   -0.64   -1.25   -1.92   -2.58   -3.22   -3.88   -4.52   -5.07   -5.38   -5.27   -4.65   -3.50   -1.82    0.37    3.19    6.74   10.99
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH700936E_C    NONE                                        TYPE / SERIAL NO    
+COPIED              TUM                      0    27-JAN-03 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+COPIED FROM AOAD/M_T                                        COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.60     -0.46     91.24                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.24   -0.92   -1.97   -3.28   -4.69   -6.05   -7.19   -7.97   -8.30   -8.14   -7.46   -6.27   -4.54   -2.20    0.87    4.79    9.56   14.88
+     0.0    0.00   -0.28   -1.01   -2.12   -3.49   -4.95   -6.35   -7.52   -8.32   -8.63   -8.43   -7.72   -6.51   -4.78   -2.47    0.58    4.48    9.16   14.25
+     5.0    0.00   -0.28   -1.01   -2.12   -3.48   -4.94   -6.34   -7.50   -8.30   -8.62   -8.42   -7.70   -6.48   -4.75   -2.42    0.63    4.53    9.23   14.33
+    10.0    0.00   -0.28   -1.01   -2.11   -3.46   -4.92   -6.32   -7.48   -8.27   -8.59   -8.39   -7.68   -6.46   -4.72   -2.38    0.69    4.60    9.32   14.45
+    15.0    0.00   -0.27   -1.00   -2.10   -3.45   -4.90   -6.29   -7.46   -8.25   -8.57   -8.37   -7.65   -6.43   -4.68   -2.33    0.75    4.69    9.43   14.61
+    20.0    0.00   -0.27   -0.99   -2.08   -3.43   -4.88   -6.27   -7.43   -8.22   -8.54   -8.35   -7.63   -6.40   -4.64   -2.28    0.83    4.78    9.56   14.80
+    25.0    0.00   -0.27   -0.98   -2.07   -3.41   -4.85   -6.24   -7.39   -8.19   -8.51   -8.32   -7.60   -6.37   -4.60   -2.22    0.90    4.89    9.71   15.02
+    30.0    0.00   -0.26   -0.98   -2.06   -3.39   -4.83   -6.21   -7.36   -8.15   -8.48   -8.29   -7.57   -6.33   -4.55   -2.15    0.99    5.00    9.87   15.25
+    35.0    0.00   -0.26   -0.97   -2.04   -3.37   -4.80   -6.17   -7.32   -8.11   -8.44   -8.25   -7.54   -6.29   -4.50   -2.09    1.08    5.12   10.03   15.48
+    40.0    0.00   -0.26   -0.96   -2.02   -3.34   -4.77   -6.13   -7.28   -8.07   -8.40   -8.21   -7.50   -6.25   -4.45   -2.02    1.17    5.25   10.19   15.70
+    45.0    0.00   -0.25   -0.95   -2.01   -3.32   -4.74   -6.10   -7.24   -8.03   -8.35   -8.17   -7.45   -6.20   -4.40   -1.95    1.26    5.36   10.34   15.89
+    50.0    0.00   -0.25   -0.94   -1.99   -3.29   -4.70   -6.06   -7.19   -7.98   -8.31   -8.12   -7.40   -6.15   -4.34   -1.88    1.34    5.46   10.46   16.05
+    55.0    0.00   -0.24   -0.93   -1.97   -3.27   -4.67   -6.02   -7.15   -7.93   -8.25   -8.07   -7.35   -6.10   -4.28   -1.82    1.41    5.54   10.55   16.15
+    60.0    0.00   -0.24   -0.92   -1.95   -3.24   -4.64   -5.98   -7.10   -7.88   -8.20   -8.01   -7.30   -6.04   -4.23   -1.76    1.47    5.59   10.60   16.20
+    65.0    0.00   -0.24   -0.91   -1.94   -3.22   -4.60   -5.94   -7.06   -7.83   -8.15   -7.96   -7.24   -5.99   -4.18   -1.72    1.50    5.61   10.60   16.20
+    70.0    0.00   -0.23   -0.90   -1.92   -3.19   -4.57   -5.90   -7.02   -7.79   -8.10   -7.91   -7.19   -5.94   -4.14   -1.70    1.50    5.60   10.57   16.14
+    75.0    0.00   -0.23   -0.89   -1.91   -3.17   -4.55   -5.87   -6.98   -7.75   -8.06   -7.87   -7.15   -5.91   -4.12   -1.70    1.48    5.55   10.50   16.04
+    80.0    0.00   -0.23   -0.88   -1.89   -3.16   -4.53   -5.84   -6.95   -7.72   -8.03   -7.83   -7.12   -5.89   -4.11   -1.71    1.44    5.47   10.39   15.91
+    85.0    0.00   -0.22   -0.87   -1.88   -3.14   -4.51   -5.82   -6.93   -7.69   -8.00   -7.81   -7.10   -5.88   -4.13   -1.75    1.36    5.36   10.25   15.74
+    90.0    0.00   -0.22   -0.87   -1.87   -3.13   -4.49   -5.81   -6.92   -7.68   -7.99   -7.80   -7.10   -5.90   -4.16   -1.82    1.27    5.24   10.09   15.56
+    95.0    0.00   -0.22   -0.86   -1.87   -3.12   -4.49   -5.80   -6.91   -7.68   -7.99   -7.81   -7.12   -5.93   -4.21   -1.90    1.16    5.10    9.92   15.37
+   100.0    0.00   -0.21   -0.86   -1.87   -3.12   -4.48   -5.80   -6.91   -7.68   -8.01   -7.84   -7.16   -5.98   -4.29   -1.99    1.04    4.96    9.76   15.18
+   105.0    0.00   -0.21   -0.86   -1.86   -3.12   -4.49   -5.81   -6.93   -7.70   -8.04   -7.88   -7.21   -6.05   -4.37   -2.09    0.93    4.82    9.60   15.00
+   110.0    0.00   -0.21   -0.86   -1.87   -3.13   -4.50   -5.82   -6.95   -7.73   -8.07   -7.93   -7.28   -6.13   -4.47   -2.20    0.81    4.69    9.46   14.84
+   115.0    0.00   -0.21   -0.86   -1.87   -3.13   -4.51   -5.84   -6.97   -7.76   -8.12   -7.99   -7.35   -6.22   -4.56   -2.30    0.71    4.59    9.34   14.71
+   120.0    0.00   -0.21   -0.86   -1.87   -3.15   -4.53   -5.87   -7.00   -7.80   -8.17   -8.05   -7.43   -6.31   -4.66   -2.39    0.62    4.50    9.24   14.60
+   125.0    0.00   -0.21   -0.86   -1.88   -3.16   -4.55   -5.89   -7.04   -7.85   -8.22   -8.12   -7.51   -6.39   -4.74   -2.47    0.55    4.44    9.18   14.52
+   130.0    0.00   -0.21   -0.86   -1.89   -3.17   -4.57   -5.92   -7.07   -7.89   -8.27   -8.18   -7.58   -6.47   -4.81   -2.53    0.51    4.40    9.13   14.47
+   135.0    0.00   -0.21   -0.86   -1.90   -3.19   -4.60   -5.95   -7.11   -7.93   -8.32   -8.23   -7.64   -6.53   -4.87   -2.57    0.47    4.37    9.11   14.44
+   140.0    0.00   -0.21   -0.87   -1.91   -3.21   -4.62   -5.98   -7.14   -7.96   -8.36   -8.28   -7.69   -6.58   -4.91   -2.60    0.46    4.37    9.10   14.43
+   145.0    0.00   -0.21   -0.87   -1.91   -3.22   -4.64   -6.01   -7.17   -8.00   -8.39   -8.31   -7.72   -6.61   -4.93   -2.62    0.45    4.36    9.10   14.44
+   150.0    0.00   -0.21   -0.87   -1.92   -3.24   -4.66   -6.04   -7.20   -8.02   -8.42   -8.33   -7.74   -6.63   -4.94   -2.62    0.45    4.37    9.10   14.45
+   155.0    0.00   -0.21   -0.87   -1.93   -3.25   -4.68   -6.06   -7.22   -8.05   -8.44   -8.35   -7.75   -6.63   -4.94   -2.62    0.46    4.36    9.10   14.46
+   160.0    0.00   -0.21   -0.88   -1.93   -3.26   -4.69   -6.07   -7.24   -8.06   -8.45   -8.35   -7.75   -6.62   -4.94   -2.61    0.45    4.36    9.09   14.46
+   165.0    0.00   -0.21   -0.88   -1.94   -3.27   -4.70   -6.09   -7.25   -8.07   -8.46   -8.35   -7.74   -6.61   -4.93   -2.61    0.45    4.34    9.08   14.46
+   170.0    0.00   -0.21   -0.88   -1.94   -3.27   -4.71   -6.10   -7.26   -8.08   -8.46   -8.35   -7.73   -6.60   -4.92   -2.61    0.43    4.32    9.05   14.44
+   175.0    0.00   -0.21   -0.88   -1.94   -3.27   -4.71   -6.10   -7.27   -8.08   -8.46   -8.34   -7.72   -6.59   -4.91   -2.61    0.42    4.29    9.02   14.41
+   180.0    0.00   -0.21   -0.88   -1.94   -3.27   -4.71   -6.10   -7.27   -8.08   -8.46   -8.34   -7.71   -6.57   -4.90   -2.62    0.40    4.26    9.00   14.38
+   185.0    0.00   -0.21   -0.88   -1.93   -3.26   -4.70   -6.09   -7.26   -8.08   -8.45   -8.33   -7.70   -6.56   -4.90   -2.62    0.38    4.24    8.98   14.35
+   190.0    0.00   -0.21   -0.87   -1.93   -3.25   -4.69   -6.08   -7.25   -8.07   -8.44   -8.32   -7.69   -6.55   -4.89   -2.62    0.38    4.24    8.98   14.33
+   195.0    0.00   -0.21   -0.87   -1.92   -3.24   -4.68   -6.07   -7.24   -8.06   -8.43   -8.30   -7.67   -6.54   -4.88   -2.61    0.39    4.26    9.00   14.33
+   200.0    0.00   -0.21   -0.87   -1.92   -3.23   -4.67   -6.05   -7.22   -8.04   -8.41   -8.29   -7.65   -6.52   -4.86   -2.59    0.42    4.30    9.06   14.37
+   205.0    0.00   -0.21   -0.87   -1.91   -3.22   -4.65   -6.03   -7.20   -8.02   -8.39   -8.26   -7.62   -6.48   -4.82   -2.55    0.47    4.38    9.15   14.44
+   210.0    0.00   -0.21   -0.87   -1.90   -3.21   -4.63   -6.01   -7.18   -8.00   -8.36   -8.23   -7.58   -6.44   -4.77   -2.49    0.55    4.48    9.28   14.55
+   215.0    0.00   -0.21   -0.87   -1.90   -3.20   -4.61   -5.99   -7.15   -7.97   -8.33   -8.18   -7.53   -6.38   -4.70   -2.41    0.65    4.61    9.43   14.69
+   220.0    0.00   -0.21   -0.87   -1.89   -3.19   -4.60   -5.97   -7.13   -7.93   -8.28   -8.13   -7.47   -6.31   -4.62   -2.31    0.78    4.77    9.61   14.87
+   225.0    0.00   -0.21   -0.87   -1.89   -3.18   -4.58   -5.94   -7.10   -7.89   -8.24   -8.07   -7.40   -6.22   -4.52   -2.19    0.91    4.93    9.80   15.07
+   230.0    0.00   -0.21   -0.87   -1.89   -3.17   -4.57   -5.92   -7.07   -7.85   -8.18   -8.01   -7.32   -6.13   -4.41   -2.07    1.06    5.10    9.98   15.28
+   235.0    0.00   -0.22   -0.87   -1.89   -3.16   -4.56   -5.90   -7.03   -7.81   -8.13   -7.94   -7.24   -6.03   -4.30   -1.94    1.20    5.25   10.15   15.47
+   240.0    0.00   -0.22   -0.87   -1.89   -3.16   -4.55   -5.88   -7.01   -7.77   -8.07   -7.87   -7.16   -5.94   -4.19   -1.82    1.33    5.39   10.29   15.63
+   245.0    0.00   -0.22   -0.87   -1.89   -3.16   -4.54   -5.87   -6.98   -7.73   -8.02   -7.81   -7.08   -5.86   -4.10   -1.71    1.44    5.49   10.39   15.74
+   250.0    0.00   -0.22   -0.88   -1.90   -3.17   -4.54   -5.86   -6.96   -7.70   -7.98   -7.76   -7.02   -5.79   -4.01   -1.62    1.53    5.56   10.44   15.79
+   255.0    0.00   -0.23   -0.88   -1.90   -3.17   -4.54   -5.86   -6.95   -7.68   -7.95   -7.72   -6.98   -5.73   -3.96   -1.56    1.58    5.58   10.43   15.78
+   260.0    0.00   -0.23   -0.89   -1.91   -3.18   -4.55   -5.86   -6.94   -7.66   -7.93   -7.70   -6.96   -5.71   -3.92   -1.53    1.59    5.57   10.37   15.71
+   265.0    0.00   -0.23   -0.90   -1.92   -3.19   -4.56   -5.86   -6.94   -7.66   -7.93   -7.70   -6.96   -5.70   -3.92   -1.53    1.57    5.51   10.26   15.58
+   270.0    0.00   -0.24   -0.91   -1.94   -3.21   -4.58   -5.88   -6.95   -7.67   -7.94   -7.71   -6.98   -5.73   -3.94   -1.56    1.52    5.41   10.11   15.40
+   275.0    0.00   -0.24   -0.92   -1.95   -3.23   -4.60   -5.90   -6.97   -7.69   -7.96   -7.74   -7.02   -5.77   -4.00   -1.62    1.44    5.28    9.93   15.20
+   280.0    0.00   -0.25   -0.93   -1.97   -3.25   -4.62   -5.93   -7.00   -7.72   -8.00   -7.79   -7.07   -5.84   -4.07   -1.71    1.33    5.14    9.74   14.98
+   285.0    0.00   -0.25   -0.94   -1.98   -3.27   -4.65   -5.96   -7.04   -7.77   -8.06   -7.86   -7.15   -5.92   -4.16   -1.81    1.21    4.99    9.55   14.77
+   290.0    0.00   -0.25   -0.95   -2.00   -3.30   -4.69   -6.00   -7.09   -7.82   -8.12   -7.93   -7.23   -6.01   -4.26   -1.92    1.08    4.84    9.38   14.58
+   295.0    0.00   -0.26   -0.96   -2.02   -3.33   -4.72   -6.04   -7.14   -7.88   -8.19   -8.00   -7.31   -6.11   -4.36   -2.04    0.96    4.70    9.23   14.43
+   300.0    0.00   -0.26   -0.97   -2.04   -3.35   -4.76   -6.09   -7.19   -7.95   -8.26   -8.08   -7.40   -6.20   -4.47   -2.15    0.83    4.58    9.10   14.31
+   305.0    0.00   -0.26   -0.98   -2.05   -3.38   -4.79   -6.14   -7.25   -8.01   -8.33   -8.16   -7.48   -6.29   -4.57   -2.26    0.73    4.47    9.01   14.22
+   310.0    0.00   -0.27   -0.98   -2.07   -3.40   -4.83   -6.18   -7.31   -8.08   -8.40   -8.23   -7.56   -6.37   -4.66   -2.35    0.63    4.40    8.96   14.17
+   315.0    0.00   -0.27   -0.99   -2.08   -3.43   -4.86   -6.23   -7.36   -8.14   -8.47   -8.30   -7.62   -6.44   -4.73   -2.43    0.56    4.34    8.93   14.15
+   320.0    0.00   -0.27   -1.00   -2.10   -3.45   -4.89   -6.27   -7.41   -8.19   -8.52   -8.35   -7.67   -6.49   -4.79   -2.49    0.50    4.31    8.92   14.15
+   325.0    0.00   -0.28   -1.01   -2.11   -3.46   -4.92   -6.30   -7.45   -8.24   -8.57   -8.39   -7.71   -6.53   -4.83   -2.54    0.47    4.29    8.93   14.15
+   330.0    0.00   -0.28   -1.01   -2.12   -3.48   -4.94   -6.33   -7.49   -8.28   -8.61   -8.43   -7.74   -6.56   -4.86   -2.56    0.45    4.29    8.95   14.16
+   335.0    0.00   -0.28   -1.02   -2.13   -3.49   -4.95   -6.35   -7.51   -8.31   -8.63   -8.45   -7.76   -6.57   -4.87   -2.57    0.45    4.31    8.98   14.16
+   340.0    0.00   -0.28   -1.02   -2.13   -3.50   -4.96   -6.36   -7.53   -8.33   -8.65   -8.46   -7.77   -6.57   -4.87   -2.57    0.46    4.33    9.01   14.16
+   345.0    0.00   -0.28   -1.02   -2.13   -3.50   -4.97   -6.37   -7.54   -8.33   -8.66   -8.46   -7.76   -6.57   -4.86   -2.56    0.48    4.36    9.04   14.16
+   350.0    0.00   -0.28   -1.02   -2.13   -3.50   -4.97   -6.37   -7.54   -8.34   -8.66   -8.46   -7.75   -6.55   -4.84   -2.53    0.51    4.39    9.07   14.17
+   355.0    0.00   -0.28   -1.02   -2.13   -3.49   -4.96   -6.37   -7.54   -8.33   -8.65   -8.45   -7.74   -6.53   -4.81   -2.50    0.54    4.43    9.11   14.20
+   360.0    0.00   -0.28   -1.01   -2.12   -3.49   -4.95   -6.35   -7.52   -8.32   -8.63   -8.43   -7.72   -6.51   -4.78   -2.47    0.58    4.48    9.16   14.25
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.10     -0.62    120.06                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.13   -0.52   -1.10   -1.82   -2.62   -3.43   -4.21   -4.85   -5.23   -5.25   -4.83   -3.98   -2.75   -1.23    0.59    2.86    5.83    9.66
+     0.0    0.00   -0.12   -0.48   -1.03   -1.72   -2.49   -3.29   -4.07   -4.73   -5.15   -5.20   -4.83   -4.05   -2.92   -1.50    0.25    2.53    5.61    9.51
+     5.0    0.00   -0.11   -0.47   -1.03   -1.71   -2.48   -3.29   -4.06   -4.72   -5.13   -5.20   -4.83   -4.05   -2.93   -1.51    0.25    2.54    5.58    9.37
+    10.0    0.00   -0.11   -0.47   -1.02   -1.71   -2.48   -3.28   -4.05   -4.71   -5.12   -5.19   -4.83   -4.06   -2.93   -1.51    0.26    2.55    5.55    9.26
+    15.0    0.00   -0.11   -0.46   -1.01   -1.71   -2.48   -3.28   -4.05   -4.70   -5.11   -5.17   -4.82   -4.05   -2.93   -1.50    0.27    2.55    5.53    9.17
+    20.0    0.00   -0.10   -0.45   -1.01   -1.70   -2.48   -3.28   -4.04   -4.69   -5.10   -5.16   -4.81   -4.04   -2.92   -1.48    0.29    2.57    5.52    9.12
+    25.0    0.00   -0.10   -0.45   -1.00   -1.70   -2.47   -3.28   -4.04   -4.68   -5.08   -5.14   -4.79   -4.02   -2.89   -1.45    0.32    2.59    5.52    9.12
+    30.0    0.00   -0.10   -0.44   -1.00   -1.69   -2.47   -3.27   -4.03   -4.67   -5.07   -5.13   -4.77   -3.99   -2.86   -1.41    0.36    2.61    5.53    9.16
+    35.0    0.00   -0.09   -0.44   -0.99   -1.69   -2.47   -3.27   -4.03   -4.66   -5.06   -5.11   -4.75   -3.96   -2.81   -1.36    0.41    2.65    5.57    9.23
+    40.0    0.00   -0.09   -0.44   -0.99   -1.68   -2.46   -3.27   -4.03   -4.66   -5.05   -5.10   -4.72   -3.92   -2.76   -1.30    0.47    2.69    5.61    9.34
+    45.0    0.00   -0.09   -0.43   -0.98   -1.68   -2.46   -3.26   -4.02   -4.66   -5.05   -5.09   -4.70   -3.88   -2.70   -1.23    0.53    2.74    5.66    9.47
+    50.0    0.00   -0.09   -0.43   -0.98   -1.67   -2.46   -3.26   -4.03   -4.66   -5.05   -5.08   -4.68   -3.84   -2.65   -1.17    0.59    2.79    5.72    9.60
+    55.0    0.00   -0.09   -0.43   -0.98   -1.67   -2.45   -3.26   -4.03   -4.66   -5.05   -5.07   -4.66   -3.81   -2.59   -1.11    0.65    2.84    5.77    9.73
+    60.0    0.00   -0.09   -0.43   -0.98   -1.67   -2.46   -3.27   -4.04   -4.67   -5.06   -5.07   -4.64   -3.77   -2.55   -1.05    0.70    2.88    5.81    9.83
+    65.0    0.00   -0.09   -0.43   -0.98   -1.67   -2.46   -3.27   -4.05   -4.69   -5.07   -5.07   -4.63   -3.75   -2.51   -1.02    0.74    2.91    5.84    9.91
+    70.0    0.00   -0.09   -0.43   -0.98   -1.68   -2.47   -3.29   -4.06   -4.70   -5.08   -5.08   -4.63   -3.74   -2.49   -0.99    0.75    2.92    5.85    9.95
+    75.0    0.00   -0.09   -0.43   -0.99   -1.69   -2.48   -3.30   -4.08   -4.72   -5.10   -5.09   -4.63   -3.74   -2.49   -0.99    0.76    2.92    5.85    9.96
+    80.0    0.00   -0.09   -0.44   -0.99   -1.70   -2.50   -3.32   -4.11   -4.74   -5.12   -5.11   -4.64   -3.74   -2.50   -1.00    0.74    2.90    5.82    9.93
+    85.0    0.00   -0.10   -0.44   -1.00   -1.71   -2.52   -3.35   -4.13   -4.77   -5.14   -5.12   -4.66   -3.76   -2.52   -1.03    0.71    2.86    5.78    9.86
+    90.0    0.00   -0.10   -0.45   -1.02   -1.73   -2.54   -3.37   -4.16   -4.79   -5.16   -5.14   -4.68   -3.79   -2.56   -1.07    0.66    2.82    5.73    9.78
+    95.0    0.00   -0.10   -0.46   -1.03   -1.75   -2.57   -3.40   -4.19   -4.82   -5.18   -5.16   -4.70   -3.82   -2.60   -1.12    0.61    2.77    5.67    9.68
+   100.0    0.00   -0.10   -0.47   -1.05   -1.78   -2.59   -3.43   -4.22   -4.84   -5.20   -5.18   -4.73   -3.86   -2.65   -1.18    0.56    2.72    5.61    9.58
+   105.0    0.00   -0.11   -0.48   -1.06   -1.80   -2.62   -3.46   -4.24   -4.87   -5.22   -5.20   -4.75   -3.90   -2.70   -1.23    0.52    2.68    5.56    9.48
+   110.0    0.00   -0.11   -0.49   -1.08   -1.82   -2.65   -3.49   -4.27   -4.89   -5.24   -5.22   -4.78   -3.93   -2.74   -1.27    0.48    2.66    5.53    9.40
+   115.0    0.00   -0.12   -0.50   -1.10   -1.85   -2.68   -3.52   -4.29   -4.90   -5.25   -5.24   -4.80   -3.96   -2.77   -1.30    0.46    2.65    5.51    9.33
+   120.0    0.00   -0.12   -0.51   -1.11   -1.87   -2.70   -3.54   -4.31   -4.92   -5.26   -5.25   -4.83   -3.99   -2.79   -1.31    0.46    2.66    5.51    9.29
+   125.0    0.00   -0.12   -0.52   -1.13   -1.89   -2.72   -3.56   -4.32   -4.93   -5.27   -5.26   -4.84   -4.00   -2.80   -1.31    0.48    2.69    5.53    9.26
+   130.0    0.00   -0.13   -0.52   -1.14   -1.91   -2.74   -3.57   -4.33   -4.93   -5.28   -5.28   -4.86   -4.01   -2.80   -1.29    0.52    2.73    5.57    9.26
+   135.0    0.00   -0.13   -0.53   -1.15   -1.92   -2.75   -3.58   -4.34   -4.94   -5.29   -5.29   -4.87   -4.02   -2.79   -1.26    0.57    2.79    5.61    9.27
+   140.0    0.00   -0.13   -0.54   -1.16   -1.93   -2.76   -3.59   -4.34   -4.94   -5.29   -5.30   -4.87   -4.02   -2.78   -1.22    0.62    2.85    5.66    9.28
+   145.0    0.00   -0.14   -0.55   -1.17   -1.94   -2.77   -3.59   -4.34   -4.95   -5.30   -5.30   -4.88   -4.01   -2.75   -1.18    0.67    2.91    5.71    9.29
+   150.0    0.00   -0.14   -0.55   -1.18   -1.95   -2.77   -3.59   -4.34   -4.95   -5.31   -5.31   -4.89   -4.01   -2.74   -1.15    0.72    2.95    5.75    9.30
+   155.0    0.00   -0.14   -0.56   -1.18   -1.95   -2.77   -3.59   -4.34   -4.95   -5.32   -5.32   -4.89   -4.01   -2.72   -1.12    0.75    2.99    5.78    9.30
+   160.0    0.00   -0.15   -0.56   -1.18   -1.95   -2.77   -3.59   -4.34   -4.96   -5.33   -5.34   -4.90   -4.01   -2.72   -1.11    0.76    3.00    5.79    9.28
+   165.0    0.00   -0.15   -0.56   -1.18   -1.94   -2.76   -3.58   -4.34   -4.96   -5.34   -5.35   -4.91   -4.01   -2.72   -1.12    0.76    3.00    5.79    9.26
+   170.0    0.00   -0.15   -0.56   -1.18   -1.94   -2.75   -3.57   -4.34   -4.97   -5.35   -5.36   -4.92   -4.02   -2.73   -1.14    0.73    2.97    5.77    9.23
+   175.0    0.00   -0.15   -0.57   -1.18   -1.93   -2.74   -3.57   -4.34   -4.98   -5.36   -5.37   -4.93   -4.03   -2.75   -1.17    0.69    2.93    5.74    9.20
+   180.0    0.00   -0.16   -0.57   -1.18   -1.92   -2.74   -3.56   -4.34   -4.98   -5.37   -5.38   -4.94   -4.04   -2.77   -1.21    0.63    2.88    5.71    9.17
+   185.0    0.00   -0.16   -0.57   -1.17   -1.91   -2.73   -3.56   -4.35   -4.99   -5.38   -5.38   -4.94   -4.05   -2.79   -1.25    0.58    2.83    5.69    9.16
+   190.0    0.00   -0.16   -0.57   -1.17   -1.90   -2.72   -3.56   -4.35   -5.00   -5.39   -5.39   -4.93   -4.05   -2.81   -1.29    0.53    2.79    5.68    9.18
+   195.0    0.00   -0.16   -0.56   -1.16   -1.90   -2.71   -3.55   -4.35   -5.01   -5.39   -5.38   -4.92   -4.04   -2.81   -1.31    0.49    2.76    5.69    9.22
+   200.0    0.00   -0.16   -0.56   -1.16   -1.89   -2.70   -3.55   -4.35   -5.01   -5.39   -5.37   -4.91   -4.02   -2.80   -1.32    0.48    2.76    5.72    9.30
+   205.0    0.00   -0.16   -0.56   -1.16   -1.88   -2.70   -3.55   -4.35   -5.01   -5.39   -5.36   -4.88   -3.99   -2.78   -1.30    0.49    2.79    5.79    9.40
+   210.0    0.00   -0.16   -0.56   -1.15   -1.88   -2.69   -3.54   -4.35   -5.01   -5.38   -5.34   -4.86   -3.96   -2.74   -1.27    0.53    2.85    5.88    9.53
+   215.0    0.00   -0.17   -0.56   -1.15   -1.88   -2.69   -3.54   -4.35   -5.01   -5.37   -5.32   -4.83   -3.92   -2.70   -1.21    0.60    2.93    5.99    9.69
+   220.0    0.00   -0.17   -0.57   -1.15   -1.87   -2.69   -3.54   -4.35   -5.00   -5.36   -5.31   -4.80   -3.88   -2.64   -1.14    0.69    3.04    6.13    9.85
+   225.0    0.00   -0.17   -0.57   -1.15   -1.87   -2.69   -3.54   -4.34   -4.99   -5.35   -5.29   -4.78   -3.85   -2.59   -1.06    0.79    3.17    6.27   10.02
+   230.0    0.00   -0.17   -0.57   -1.15   -1.88   -2.69   -3.53   -4.33   -4.98   -5.34   -5.28   -4.76   -3.82   -2.54   -0.98    0.90    3.30    6.41   10.17
+   235.0    0.00   -0.17   -0.57   -1.16   -1.88   -2.69   -3.53   -4.33   -4.97   -5.32   -5.27   -4.76   -3.81   -2.50   -0.91    1.01    3.43    6.54   10.30
+   240.0    0.00   -0.17   -0.57   -1.16   -1.88   -2.69   -3.52   -4.32   -4.96   -5.32   -5.27   -4.76   -3.81   -2.48   -0.85    1.11    3.55    6.65   10.40
+   245.0    0.00   -0.17   -0.58   -1.17   -1.89   -2.69   -3.52   -4.31   -4.95   -5.31   -5.28   -4.78   -3.82   -2.48   -0.82    1.18    3.64    6.72   10.45
+   250.0    0.00   -0.17   -0.58   -1.17   -1.89   -2.69   -3.52   -4.30   -4.93   -5.31   -5.29   -4.81   -3.86   -2.50   -0.80    1.23    3.69    6.76   10.46
+   255.0    0.00   -0.17   -0.58   -1.18   -1.90   -2.69   -3.51   -4.29   -4.92   -5.30   -5.30   -4.84   -3.90   -2.54   -0.82    1.24    3.71    6.75   10.43
+   260.0    0.00   -0.17   -0.58   -1.18   -1.90   -2.70   -3.51   -4.27   -4.91   -5.30   -5.32   -4.88   -3.96   -2.59   -0.86    1.22    3.69    6.70   10.36
+   265.0    0.00   -0.17   -0.58   -1.18   -1.91   -2.70   -3.50   -4.26   -4.90   -5.30   -5.34   -4.92   -4.02   -2.66   -0.92    1.16    3.63    6.61   10.26
+   270.0    0.00   -0.17   -0.58   -1.19   -1.91   -2.70   -3.50   -4.25   -4.89   -5.30   -5.36   -4.96   -4.08   -2.73   -0.99    1.08    3.53    6.49   10.15
+   275.0    0.00   -0.17   -0.58   -1.19   -1.91   -2.70   -3.49   -4.24   -4.88   -5.29   -5.37   -4.99   -4.13   -2.80   -1.08    0.98    3.41    6.35   10.04
+   280.0    0.00   -0.17   -0.58   -1.19   -1.91   -2.69   -3.48   -4.23   -4.87   -5.29   -5.37   -5.02   -4.17   -2.86   -1.16    0.86    3.26    6.20    9.93
+   285.0    0.00   -0.17   -0.58   -1.18   -1.91   -2.69   -3.47   -4.22   -4.86   -5.28   -5.37   -5.03   -4.20   -2.92   -1.25    0.74    3.11    6.05    9.85
+   290.0    0.00   -0.16   -0.58   -1.18   -1.90   -2.68   -3.46   -4.21   -4.85   -5.27   -5.37   -5.03   -4.21   -2.95   -1.33    0.62    2.96    5.90    9.79
+   295.0    0.00   -0.16   -0.57   -1.17   -1.89   -2.67   -3.45   -4.20   -4.84   -5.26   -5.35   -5.02   -4.21   -2.98   -1.39    0.51    2.82    5.78    9.77
+   300.0    0.00   -0.16   -0.57   -1.16   -1.88   -2.65   -3.44   -4.19   -4.83   -5.25   -5.34   -4.99   -4.19   -2.98   -1.44    0.42    2.69    5.68    9.78
+   305.0    0.00   -0.16   -0.56   -1.15   -1.87   -2.64   -3.42   -4.18   -4.82   -5.24   -5.32   -4.97   -4.17   -2.98   -1.47    0.34    2.59    5.61    9.82
+   310.0    0.00   -0.15   -0.56   -1.14   -1.85   -2.62   -3.41   -4.16   -4.81   -5.23   -5.30   -4.94   -4.14   -2.96   -1.49    0.28    2.51    5.57    9.87
+   315.0    0.00   -0.15   -0.55   -1.13   -1.83   -2.60   -3.39   -4.15   -4.80   -5.21   -5.28   -4.91   -4.10   -2.94   -1.49    0.24    2.46    5.55    9.94
+   320.0    0.00   -0.15   -0.54   -1.12   -1.82   -2.58   -3.38   -4.14   -4.79   -5.20   -5.26   -4.88   -4.07   -2.91   -1.49    0.22    2.43    5.55   10.00
+   325.0    0.00   -0.14   -0.53   -1.11   -1.80   -2.57   -3.36   -4.13   -4.78   -5.19   -5.24   -4.86   -4.04   -2.89   -1.49    0.21    2.43    5.57   10.04
+   330.0    0.00   -0.14   -0.53   -1.10   -1.79   -2.55   -3.34   -4.12   -4.77   -5.19   -5.23   -4.84   -4.02   -2.88   -1.48    0.21    2.43    5.60   10.06
+   335.0    0.00   -0.14   -0.52   -1.08   -1.77   -2.53   -3.33   -4.11   -4.77   -5.18   -5.22   -4.83   -4.01   -2.87   -1.48    0.21    2.45    5.62   10.04
+   340.0    0.00   -0.13   -0.51   -1.07   -1.76   -2.52   -3.32   -4.10   -4.76   -5.17   -5.22   -4.82   -4.01   -2.87   -1.48    0.22    2.47    5.64    9.99
+   345.0    0.00   -0.13   -0.50   -1.06   -1.75   -2.51   -3.31   -4.09   -4.75   -5.17   -5.22   -4.82   -4.01   -2.87   -1.48    0.23    2.49    5.65    9.90
+   350.0    0.00   -0.12   -0.49   -1.05   -1.74   -2.50   -3.30   -4.08   -4.74   -5.16   -5.21   -4.83   -4.02   -2.89   -1.49    0.24    2.51    5.65    9.79
+   355.0    0.00   -0.12   -0.49   -1.04   -1.73   -2.49   -3.29   -4.07   -4.73   -5.15   -5.21   -4.83   -4.03   -2.90   -1.50    0.24    2.52    5.63    9.65
+   360.0    0.00   -0.12   -0.48   -1.03   -1.72   -2.49   -3.29   -4.07   -4.73   -5.15   -5.20   -4.83   -4.05   -2.92   -1.50    0.25    2.53    5.61    9.51
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH700936E_C    SNOW                                        TYPE / SERIAL NO    
+FIELD               NGS/TUM                  4    10-AUG-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.90     -0.66     89.34                              NORTH / EAST / UP   
+   NOAZI    0.00    0.76    0.58   -0.27   -1.68   -3.29   -4.85   -6.29   -7.27   -7.70   -7.44   -6.66   -5.17   -3.04   -0.40    3.07    7.29
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.80     -0.12    117.66                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.03   -0.22   -0.60   -1.22   -1.92   -2.63   -3.41   -4.15   -4.63   -4.75   -4.43   -3.58   -2.35   -0.53    1.69    4.76
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH700936F_C    NONE                                        TYPE / SERIAL NO    
+COPIED              TUM                      0    27-JAN-03 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+COPIED FROM AOAD/M_T                                        COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.60     -0.46     91.24                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.24   -0.92   -1.97   -3.28   -4.69   -6.05   -7.19   -7.97   -8.30   -8.14   -7.46   -6.27   -4.54   -2.20    0.87    4.79    9.56   14.88
+     0.0    0.00   -0.28   -1.01   -2.12   -3.49   -4.95   -6.35   -7.52   -8.32   -8.63   -8.43   -7.72   -6.51   -4.78   -2.47    0.58    4.48    9.16   14.25
+     5.0    0.00   -0.28   -1.01   -2.12   -3.48   -4.94   -6.34   -7.50   -8.30   -8.62   -8.42   -7.70   -6.48   -4.75   -2.42    0.63    4.53    9.23   14.33
+    10.0    0.00   -0.28   -1.01   -2.11   -3.46   -4.92   -6.32   -7.48   -8.27   -8.59   -8.39   -7.68   -6.46   -4.72   -2.38    0.69    4.60    9.32   14.45
+    15.0    0.00   -0.27   -1.00   -2.10   -3.45   -4.90   -6.29   -7.46   -8.25   -8.57   -8.37   -7.65   -6.43   -4.68   -2.33    0.75    4.69    9.43   14.61
+    20.0    0.00   -0.27   -0.99   -2.08   -3.43   -4.88   -6.27   -7.43   -8.22   -8.54   -8.35   -7.63   -6.40   -4.64   -2.28    0.83    4.78    9.56   14.80
+    25.0    0.00   -0.27   -0.98   -2.07   -3.41   -4.85   -6.24   -7.39   -8.19   -8.51   -8.32   -7.60   -6.37   -4.60   -2.22    0.90    4.89    9.71   15.02
+    30.0    0.00   -0.26   -0.98   -2.06   -3.39   -4.83   -6.21   -7.36   -8.15   -8.48   -8.29   -7.57   -6.33   -4.55   -2.15    0.99    5.00    9.87   15.25
+    35.0    0.00   -0.26   -0.97   -2.04   -3.37   -4.80   -6.17   -7.32   -8.11   -8.44   -8.25   -7.54   -6.29   -4.50   -2.09    1.08    5.12   10.03   15.48
+    40.0    0.00   -0.26   -0.96   -2.02   -3.34   -4.77   -6.13   -7.28   -8.07   -8.40   -8.21   -7.50   -6.25   -4.45   -2.02    1.17    5.25   10.19   15.70
+    45.0    0.00   -0.25   -0.95   -2.01   -3.32   -4.74   -6.10   -7.24   -8.03   -8.35   -8.17   -7.45   -6.20   -4.40   -1.95    1.26    5.36   10.34   15.89
+    50.0    0.00   -0.25   -0.94   -1.99   -3.29   -4.70   -6.06   -7.19   -7.98   -8.31   -8.12   -7.40   -6.15   -4.34   -1.88    1.34    5.46   10.46   16.05
+    55.0    0.00   -0.24   -0.93   -1.97   -3.27   -4.67   -6.02   -7.15   -7.93   -8.25   -8.07   -7.35   -6.10   -4.28   -1.82    1.41    5.54   10.55   16.15
+    60.0    0.00   -0.24   -0.92   -1.95   -3.24   -4.64   -5.98   -7.10   -7.88   -8.20   -8.01   -7.30   -6.04   -4.23   -1.76    1.47    5.59   10.60   16.20
+    65.0    0.00   -0.24   -0.91   -1.94   -3.22   -4.60   -5.94   -7.06   -7.83   -8.15   -7.96   -7.24   -5.99   -4.18   -1.72    1.50    5.61   10.60   16.20
+    70.0    0.00   -0.23   -0.90   -1.92   -3.19   -4.57   -5.90   -7.02   -7.79   -8.10   -7.91   -7.19   -5.94   -4.14   -1.70    1.50    5.60   10.57   16.14
+    75.0    0.00   -0.23   -0.89   -1.91   -3.17   -4.55   -5.87   -6.98   -7.75   -8.06   -7.87   -7.15   -5.91   -4.12   -1.70    1.48    5.55   10.50   16.04
+    80.0    0.00   -0.23   -0.88   -1.89   -3.16   -4.53   -5.84   -6.95   -7.72   -8.03   -7.83   -7.12   -5.89   -4.11   -1.71    1.44    5.47   10.39   15.91
+    85.0    0.00   -0.22   -0.87   -1.88   -3.14   -4.51   -5.82   -6.93   -7.69   -8.00   -7.81   -7.10   -5.88   -4.13   -1.75    1.36    5.36   10.25   15.74
+    90.0    0.00   -0.22   -0.87   -1.87   -3.13   -4.49   -5.81   -6.92   -7.68   -7.99   -7.80   -7.10   -5.90   -4.16   -1.82    1.27    5.24   10.09   15.56
+    95.0    0.00   -0.22   -0.86   -1.87   -3.12   -4.49   -5.80   -6.91   -7.68   -7.99   -7.81   -7.12   -5.93   -4.21   -1.90    1.16    5.10    9.92   15.37
+   100.0    0.00   -0.21   -0.86   -1.87   -3.12   -4.48   -5.80   -6.91   -7.68   -8.01   -7.84   -7.16   -5.98   -4.29   -1.99    1.04    4.96    9.76   15.18
+   105.0    0.00   -0.21   -0.86   -1.86   -3.12   -4.49   -5.81   -6.93   -7.70   -8.04   -7.88   -7.21   -6.05   -4.37   -2.09    0.93    4.82    9.60   15.00
+   110.0    0.00   -0.21   -0.86   -1.87   -3.13   -4.50   -5.82   -6.95   -7.73   -8.07   -7.93   -7.28   -6.13   -4.47   -2.20    0.81    4.69    9.46   14.84
+   115.0    0.00   -0.21   -0.86   -1.87   -3.13   -4.51   -5.84   -6.97   -7.76   -8.12   -7.99   -7.35   -6.22   -4.56   -2.30    0.71    4.59    9.34   14.71
+   120.0    0.00   -0.21   -0.86   -1.87   -3.15   -4.53   -5.87   -7.00   -7.80   -8.17   -8.05   -7.43   -6.31   -4.66   -2.39    0.62    4.50    9.24   14.60
+   125.0    0.00   -0.21   -0.86   -1.88   -3.16   -4.55   -5.89   -7.04   -7.85   -8.22   -8.12   -7.51   -6.39   -4.74   -2.47    0.55    4.44    9.18   14.52
+   130.0    0.00   -0.21   -0.86   -1.89   -3.17   -4.57   -5.92   -7.07   -7.89   -8.27   -8.18   -7.58   -6.47   -4.81   -2.53    0.51    4.40    9.13   14.47
+   135.0    0.00   -0.21   -0.86   -1.90   -3.19   -4.60   -5.95   -7.11   -7.93   -8.32   -8.23   -7.64   -6.53   -4.87   -2.57    0.47    4.37    9.11   14.44
+   140.0    0.00   -0.21   -0.87   -1.91   -3.21   -4.62   -5.98   -7.14   -7.96   -8.36   -8.28   -7.69   -6.58   -4.91   -2.60    0.46    4.37    9.10   14.43
+   145.0    0.00   -0.21   -0.87   -1.91   -3.22   -4.64   -6.01   -7.17   -8.00   -8.39   -8.31   -7.72   -6.61   -4.93   -2.62    0.45    4.36    9.10   14.44
+   150.0    0.00   -0.21   -0.87   -1.92   -3.24   -4.66   -6.04   -7.20   -8.02   -8.42   -8.33   -7.74   -6.63   -4.94   -2.62    0.45    4.37    9.10   14.45
+   155.0    0.00   -0.21   -0.87   -1.93   -3.25   -4.68   -6.06   -7.22   -8.05   -8.44   -8.35   -7.75   -6.63   -4.94   -2.62    0.46    4.36    9.10   14.46
+   160.0    0.00   -0.21   -0.88   -1.93   -3.26   -4.69   -6.07   -7.24   -8.06   -8.45   -8.35   -7.75   -6.62   -4.94   -2.61    0.45    4.36    9.09   14.46
+   165.0    0.00   -0.21   -0.88   -1.94   -3.27   -4.70   -6.09   -7.25   -8.07   -8.46   -8.35   -7.74   -6.61   -4.93   -2.61    0.45    4.34    9.08   14.46
+   170.0    0.00   -0.21   -0.88   -1.94   -3.27   -4.71   -6.10   -7.26   -8.08   -8.46   -8.35   -7.73   -6.60   -4.92   -2.61    0.43    4.32    9.05   14.44
+   175.0    0.00   -0.21   -0.88   -1.94   -3.27   -4.71   -6.10   -7.27   -8.08   -8.46   -8.34   -7.72   -6.59   -4.91   -2.61    0.42    4.29    9.02   14.41
+   180.0    0.00   -0.21   -0.88   -1.94   -3.27   -4.71   -6.10   -7.27   -8.08   -8.46   -8.34   -7.71   -6.57   -4.90   -2.62    0.40    4.26    9.00   14.38
+   185.0    0.00   -0.21   -0.88   -1.93   -3.26   -4.70   -6.09   -7.26   -8.08   -8.45   -8.33   -7.70   -6.56   -4.90   -2.62    0.38    4.24    8.98   14.35
+   190.0    0.00   -0.21   -0.87   -1.93   -3.25   -4.69   -6.08   -7.25   -8.07   -8.44   -8.32   -7.69   -6.55   -4.89   -2.62    0.38    4.24    8.98   14.33
+   195.0    0.00   -0.21   -0.87   -1.92   -3.24   -4.68   -6.07   -7.24   -8.06   -8.43   -8.30   -7.67   -6.54   -4.88   -2.61    0.39    4.26    9.00   14.33
+   200.0    0.00   -0.21   -0.87   -1.92   -3.23   -4.67   -6.05   -7.22   -8.04   -8.41   -8.29   -7.65   -6.52   -4.86   -2.59    0.42    4.30    9.06   14.37
+   205.0    0.00   -0.21   -0.87   -1.91   -3.22   -4.65   -6.03   -7.20   -8.02   -8.39   -8.26   -7.62   -6.48   -4.82   -2.55    0.47    4.38    9.15   14.44
+   210.0    0.00   -0.21   -0.87   -1.90   -3.21   -4.63   -6.01   -7.18   -8.00   -8.36   -8.23   -7.58   -6.44   -4.77   -2.49    0.55    4.48    9.28   14.55
+   215.0    0.00   -0.21   -0.87   -1.90   -3.20   -4.61   -5.99   -7.15   -7.97   -8.33   -8.18   -7.53   -6.38   -4.70   -2.41    0.65    4.61    9.43   14.69
+   220.0    0.00   -0.21   -0.87   -1.89   -3.19   -4.60   -5.97   -7.13   -7.93   -8.28   -8.13   -7.47   -6.31   -4.62   -2.31    0.78    4.77    9.61   14.87
+   225.0    0.00   -0.21   -0.87   -1.89   -3.18   -4.58   -5.94   -7.10   -7.89   -8.24   -8.07   -7.40   -6.22   -4.52   -2.19    0.91    4.93    9.80   15.07
+   230.0    0.00   -0.21   -0.87   -1.89   -3.17   -4.57   -5.92   -7.07   -7.85   -8.18   -8.01   -7.32   -6.13   -4.41   -2.07    1.06    5.10    9.98   15.28
+   235.0    0.00   -0.22   -0.87   -1.89   -3.16   -4.56   -5.90   -7.03   -7.81   -8.13   -7.94   -7.24   -6.03   -4.30   -1.94    1.20    5.25   10.15   15.47
+   240.0    0.00   -0.22   -0.87   -1.89   -3.16   -4.55   -5.88   -7.01   -7.77   -8.07   -7.87   -7.16   -5.94   -4.19   -1.82    1.33    5.39   10.29   15.63
+   245.0    0.00   -0.22   -0.87   -1.89   -3.16   -4.54   -5.87   -6.98   -7.73   -8.02   -7.81   -7.08   -5.86   -4.10   -1.71    1.44    5.49   10.39   15.74
+   250.0    0.00   -0.22   -0.88   -1.90   -3.17   -4.54   -5.86   -6.96   -7.70   -7.98   -7.76   -7.02   -5.79   -4.01   -1.62    1.53    5.56   10.44   15.79
+   255.0    0.00   -0.23   -0.88   -1.90   -3.17   -4.54   -5.86   -6.95   -7.68   -7.95   -7.72   -6.98   -5.73   -3.96   -1.56    1.58    5.58   10.43   15.78
+   260.0    0.00   -0.23   -0.89   -1.91   -3.18   -4.55   -5.86   -6.94   -7.66   -7.93   -7.70   -6.96   -5.71   -3.92   -1.53    1.59    5.57   10.37   15.71
+   265.0    0.00   -0.23   -0.90   -1.92   -3.19   -4.56   -5.86   -6.94   -7.66   -7.93   -7.70   -6.96   -5.70   -3.92   -1.53    1.57    5.51   10.26   15.58
+   270.0    0.00   -0.24   -0.91   -1.94   -3.21   -4.58   -5.88   -6.95   -7.67   -7.94   -7.71   -6.98   -5.73   -3.94   -1.56    1.52    5.41   10.11   15.40
+   275.0    0.00   -0.24   -0.92   -1.95   -3.23   -4.60   -5.90   -6.97   -7.69   -7.96   -7.74   -7.02   -5.77   -4.00   -1.62    1.44    5.28    9.93   15.20
+   280.0    0.00   -0.25   -0.93   -1.97   -3.25   -4.62   -5.93   -7.00   -7.72   -8.00   -7.79   -7.07   -5.84   -4.07   -1.71    1.33    5.14    9.74   14.98
+   285.0    0.00   -0.25   -0.94   -1.98   -3.27   -4.65   -5.96   -7.04   -7.77   -8.06   -7.86   -7.15   -5.92   -4.16   -1.81    1.21    4.99    9.55   14.77
+   290.0    0.00   -0.25   -0.95   -2.00   -3.30   -4.69   -6.00   -7.09   -7.82   -8.12   -7.93   -7.23   -6.01   -4.26   -1.92    1.08    4.84    9.38   14.58
+   295.0    0.00   -0.26   -0.96   -2.02   -3.33   -4.72   -6.04   -7.14   -7.88   -8.19   -8.00   -7.31   -6.11   -4.36   -2.04    0.96    4.70    9.23   14.43
+   300.0    0.00   -0.26   -0.97   -2.04   -3.35   -4.76   -6.09   -7.19   -7.95   -8.26   -8.08   -7.40   -6.20   -4.47   -2.15    0.83    4.58    9.10   14.31
+   305.0    0.00   -0.26   -0.98   -2.05   -3.38   -4.79   -6.14   -7.25   -8.01   -8.33   -8.16   -7.48   -6.29   -4.57   -2.26    0.73    4.47    9.01   14.22
+   310.0    0.00   -0.27   -0.98   -2.07   -3.40   -4.83   -6.18   -7.31   -8.08   -8.40   -8.23   -7.56   -6.37   -4.66   -2.35    0.63    4.40    8.96   14.17
+   315.0    0.00   -0.27   -0.99   -2.08   -3.43   -4.86   -6.23   -7.36   -8.14   -8.47   -8.30   -7.62   -6.44   -4.73   -2.43    0.56    4.34    8.93   14.15
+   320.0    0.00   -0.27   -1.00   -2.10   -3.45   -4.89   -6.27   -7.41   -8.19   -8.52   -8.35   -7.67   -6.49   -4.79   -2.49    0.50    4.31    8.92   14.15
+   325.0    0.00   -0.28   -1.01   -2.11   -3.46   -4.92   -6.30   -7.45   -8.24   -8.57   -8.39   -7.71   -6.53   -4.83   -2.54    0.47    4.29    8.93   14.15
+   330.0    0.00   -0.28   -1.01   -2.12   -3.48   -4.94   -6.33   -7.49   -8.28   -8.61   -8.43   -7.74   -6.56   -4.86   -2.56    0.45    4.29    8.95   14.16
+   335.0    0.00   -0.28   -1.02   -2.13   -3.49   -4.95   -6.35   -7.51   -8.31   -8.63   -8.45   -7.76   -6.57   -4.87   -2.57    0.45    4.31    8.98   14.16
+   340.0    0.00   -0.28   -1.02   -2.13   -3.50   -4.96   -6.36   -7.53   -8.33   -8.65   -8.46   -7.77   -6.57   -4.87   -2.57    0.46    4.33    9.01   14.16
+   345.0    0.00   -0.28   -1.02   -2.13   -3.50   -4.97   -6.37   -7.54   -8.33   -8.66   -8.46   -7.76   -6.57   -4.86   -2.56    0.48    4.36    9.04   14.16
+   350.0    0.00   -0.28   -1.02   -2.13   -3.50   -4.97   -6.37   -7.54   -8.34   -8.66   -8.46   -7.75   -6.55   -4.84   -2.53    0.51    4.39    9.07   14.17
+   355.0    0.00   -0.28   -1.02   -2.13   -3.49   -4.96   -6.37   -7.54   -8.33   -8.65   -8.45   -7.74   -6.53   -4.81   -2.50    0.54    4.43    9.11   14.20
+   360.0    0.00   -0.28   -1.01   -2.12   -3.49   -4.95   -6.35   -7.52   -8.32   -8.63   -8.43   -7.72   -6.51   -4.78   -2.47    0.58    4.48    9.16   14.25
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.10     -0.62    120.06                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.13   -0.52   -1.10   -1.82   -2.62   -3.43   -4.21   -4.85   -5.23   -5.25   -4.83   -3.98   -2.75   -1.23    0.59    2.86    5.83    9.66
+     0.0    0.00   -0.12   -0.48   -1.03   -1.72   -2.49   -3.29   -4.07   -4.73   -5.15   -5.20   -4.83   -4.05   -2.92   -1.50    0.25    2.53    5.61    9.51
+     5.0    0.00   -0.11   -0.47   -1.03   -1.71   -2.48   -3.29   -4.06   -4.72   -5.13   -5.20   -4.83   -4.05   -2.93   -1.51    0.25    2.54    5.58    9.37
+    10.0    0.00   -0.11   -0.47   -1.02   -1.71   -2.48   -3.28   -4.05   -4.71   -5.12   -5.19   -4.83   -4.06   -2.93   -1.51    0.26    2.55    5.55    9.26
+    15.0    0.00   -0.11   -0.46   -1.01   -1.71   -2.48   -3.28   -4.05   -4.70   -5.11   -5.17   -4.82   -4.05   -2.93   -1.50    0.27    2.55    5.53    9.17
+    20.0    0.00   -0.10   -0.45   -1.01   -1.70   -2.48   -3.28   -4.04   -4.69   -5.10   -5.16   -4.81   -4.04   -2.92   -1.48    0.29    2.57    5.52    9.12
+    25.0    0.00   -0.10   -0.45   -1.00   -1.70   -2.47   -3.28   -4.04   -4.68   -5.08   -5.14   -4.79   -4.02   -2.89   -1.45    0.32    2.59    5.52    9.12
+    30.0    0.00   -0.10   -0.44   -1.00   -1.69   -2.47   -3.27   -4.03   -4.67   -5.07   -5.13   -4.77   -3.99   -2.86   -1.41    0.36    2.61    5.53    9.16
+    35.0    0.00   -0.09   -0.44   -0.99   -1.69   -2.47   -3.27   -4.03   -4.66   -5.06   -5.11   -4.75   -3.96   -2.81   -1.36    0.41    2.65    5.57    9.23
+    40.0    0.00   -0.09   -0.44   -0.99   -1.68   -2.46   -3.27   -4.03   -4.66   -5.05   -5.10   -4.72   -3.92   -2.76   -1.30    0.47    2.69    5.61    9.34
+    45.0    0.00   -0.09   -0.43   -0.98   -1.68   -2.46   -3.26   -4.02   -4.66   -5.05   -5.09   -4.70   -3.88   -2.70   -1.23    0.53    2.74    5.66    9.47
+    50.0    0.00   -0.09   -0.43   -0.98   -1.67   -2.46   -3.26   -4.03   -4.66   -5.05   -5.08   -4.68   -3.84   -2.65   -1.17    0.59    2.79    5.72    9.60
+    55.0    0.00   -0.09   -0.43   -0.98   -1.67   -2.45   -3.26   -4.03   -4.66   -5.05   -5.07   -4.66   -3.81   -2.59   -1.11    0.65    2.84    5.77    9.73
+    60.0    0.00   -0.09   -0.43   -0.98   -1.67   -2.46   -3.27   -4.04   -4.67   -5.06   -5.07   -4.64   -3.77   -2.55   -1.05    0.70    2.88    5.81    9.83
+    65.0    0.00   -0.09   -0.43   -0.98   -1.67   -2.46   -3.27   -4.05   -4.69   -5.07   -5.07   -4.63   -3.75   -2.51   -1.02    0.74    2.91    5.84    9.91
+    70.0    0.00   -0.09   -0.43   -0.98   -1.68   -2.47   -3.29   -4.06   -4.70   -5.08   -5.08   -4.63   -3.74   -2.49   -0.99    0.75    2.92    5.85    9.95
+    75.0    0.00   -0.09   -0.43   -0.99   -1.69   -2.48   -3.30   -4.08   -4.72   -5.10   -5.09   -4.63   -3.74   -2.49   -0.99    0.76    2.92    5.85    9.96
+    80.0    0.00   -0.09   -0.44   -0.99   -1.70   -2.50   -3.32   -4.11   -4.74   -5.12   -5.11   -4.64   -3.74   -2.50   -1.00    0.74    2.90    5.82    9.93
+    85.0    0.00   -0.10   -0.44   -1.00   -1.71   -2.52   -3.35   -4.13   -4.77   -5.14   -5.12   -4.66   -3.76   -2.52   -1.03    0.71    2.86    5.78    9.86
+    90.0    0.00   -0.10   -0.45   -1.02   -1.73   -2.54   -3.37   -4.16   -4.79   -5.16   -5.14   -4.68   -3.79   -2.56   -1.07    0.66    2.82    5.73    9.78
+    95.0    0.00   -0.10   -0.46   -1.03   -1.75   -2.57   -3.40   -4.19   -4.82   -5.18   -5.16   -4.70   -3.82   -2.60   -1.12    0.61    2.77    5.67    9.68
+   100.0    0.00   -0.10   -0.47   -1.05   -1.78   -2.59   -3.43   -4.22   -4.84   -5.20   -5.18   -4.73   -3.86   -2.65   -1.18    0.56    2.72    5.61    9.58
+   105.0    0.00   -0.11   -0.48   -1.06   -1.80   -2.62   -3.46   -4.24   -4.87   -5.22   -5.20   -4.75   -3.90   -2.70   -1.23    0.52    2.68    5.56    9.48
+   110.0    0.00   -0.11   -0.49   -1.08   -1.82   -2.65   -3.49   -4.27   -4.89   -5.24   -5.22   -4.78   -3.93   -2.74   -1.27    0.48    2.66    5.53    9.40
+   115.0    0.00   -0.12   -0.50   -1.10   -1.85   -2.68   -3.52   -4.29   -4.90   -5.25   -5.24   -4.80   -3.96   -2.77   -1.30    0.46    2.65    5.51    9.33
+   120.0    0.00   -0.12   -0.51   -1.11   -1.87   -2.70   -3.54   -4.31   -4.92   -5.26   -5.25   -4.83   -3.99   -2.79   -1.31    0.46    2.66    5.51    9.29
+   125.0    0.00   -0.12   -0.52   -1.13   -1.89   -2.72   -3.56   -4.32   -4.93   -5.27   -5.26   -4.84   -4.00   -2.80   -1.31    0.48    2.69    5.53    9.26
+   130.0    0.00   -0.13   -0.52   -1.14   -1.91   -2.74   -3.57   -4.33   -4.93   -5.28   -5.28   -4.86   -4.01   -2.80   -1.29    0.52    2.73    5.57    9.26
+   135.0    0.00   -0.13   -0.53   -1.15   -1.92   -2.75   -3.58   -4.34   -4.94   -5.29   -5.29   -4.87   -4.02   -2.79   -1.26    0.57    2.79    5.61    9.27
+   140.0    0.00   -0.13   -0.54   -1.16   -1.93   -2.76   -3.59   -4.34   -4.94   -5.29   -5.30   -4.87   -4.02   -2.78   -1.22    0.62    2.85    5.66    9.28
+   145.0    0.00   -0.14   -0.55   -1.17   -1.94   -2.77   -3.59   -4.34   -4.95   -5.30   -5.30   -4.88   -4.01   -2.75   -1.18    0.67    2.91    5.71    9.29
+   150.0    0.00   -0.14   -0.55   -1.18   -1.95   -2.77   -3.59   -4.34   -4.95   -5.31   -5.31   -4.89   -4.01   -2.74   -1.15    0.72    2.95    5.75    9.30
+   155.0    0.00   -0.14   -0.56   -1.18   -1.95   -2.77   -3.59   -4.34   -4.95   -5.32   -5.32   -4.89   -4.01   -2.72   -1.12    0.75    2.99    5.78    9.30
+   160.0    0.00   -0.15   -0.56   -1.18   -1.95   -2.77   -3.59   -4.34   -4.96   -5.33   -5.34   -4.90   -4.01   -2.72   -1.11    0.76    3.00    5.79    9.28
+   165.0    0.00   -0.15   -0.56   -1.18   -1.94   -2.76   -3.58   -4.34   -4.96   -5.34   -5.35   -4.91   -4.01   -2.72   -1.12    0.76    3.00    5.79    9.26
+   170.0    0.00   -0.15   -0.56   -1.18   -1.94   -2.75   -3.57   -4.34   -4.97   -5.35   -5.36   -4.92   -4.02   -2.73   -1.14    0.73    2.97    5.77    9.23
+   175.0    0.00   -0.15   -0.57   -1.18   -1.93   -2.74   -3.57   -4.34   -4.98   -5.36   -5.37   -4.93   -4.03   -2.75   -1.17    0.69    2.93    5.74    9.20
+   180.0    0.00   -0.16   -0.57   -1.18   -1.92   -2.74   -3.56   -4.34   -4.98   -5.37   -5.38   -4.94   -4.04   -2.77   -1.21    0.63    2.88    5.71    9.17
+   185.0    0.00   -0.16   -0.57   -1.17   -1.91   -2.73   -3.56   -4.35   -4.99   -5.38   -5.38   -4.94   -4.05   -2.79   -1.25    0.58    2.83    5.69    9.16
+   190.0    0.00   -0.16   -0.57   -1.17   -1.90   -2.72   -3.56   -4.35   -5.00   -5.39   -5.39   -4.93   -4.05   -2.81   -1.29    0.53    2.79    5.68    9.18
+   195.0    0.00   -0.16   -0.56   -1.16   -1.90   -2.71   -3.55   -4.35   -5.01   -5.39   -5.38   -4.92   -4.04   -2.81   -1.31    0.49    2.76    5.69    9.22
+   200.0    0.00   -0.16   -0.56   -1.16   -1.89   -2.70   -3.55   -4.35   -5.01   -5.39   -5.37   -4.91   -4.02   -2.80   -1.32    0.48    2.76    5.72    9.30
+   205.0    0.00   -0.16   -0.56   -1.16   -1.88   -2.70   -3.55   -4.35   -5.01   -5.39   -5.36   -4.88   -3.99   -2.78   -1.30    0.49    2.79    5.79    9.40
+   210.0    0.00   -0.16   -0.56   -1.15   -1.88   -2.69   -3.54   -4.35   -5.01   -5.38   -5.34   -4.86   -3.96   -2.74   -1.27    0.53    2.85    5.88    9.53
+   215.0    0.00   -0.17   -0.56   -1.15   -1.88   -2.69   -3.54   -4.35   -5.01   -5.37   -5.32   -4.83   -3.92   -2.70   -1.21    0.60    2.93    5.99    9.69
+   220.0    0.00   -0.17   -0.57   -1.15   -1.87   -2.69   -3.54   -4.35   -5.00   -5.36   -5.31   -4.80   -3.88   -2.64   -1.14    0.69    3.04    6.13    9.85
+   225.0    0.00   -0.17   -0.57   -1.15   -1.87   -2.69   -3.54   -4.34   -4.99   -5.35   -5.29   -4.78   -3.85   -2.59   -1.06    0.79    3.17    6.27   10.02
+   230.0    0.00   -0.17   -0.57   -1.15   -1.88   -2.69   -3.53   -4.33   -4.98   -5.34   -5.28   -4.76   -3.82   -2.54   -0.98    0.90    3.30    6.41   10.17
+   235.0    0.00   -0.17   -0.57   -1.16   -1.88   -2.69   -3.53   -4.33   -4.97   -5.32   -5.27   -4.76   -3.81   -2.50   -0.91    1.01    3.43    6.54   10.30
+   240.0    0.00   -0.17   -0.57   -1.16   -1.88   -2.69   -3.52   -4.32   -4.96   -5.32   -5.27   -4.76   -3.81   -2.48   -0.85    1.11    3.55    6.65   10.40
+   245.0    0.00   -0.17   -0.58   -1.17   -1.89   -2.69   -3.52   -4.31   -4.95   -5.31   -5.28   -4.78   -3.82   -2.48   -0.82    1.18    3.64    6.72   10.45
+   250.0    0.00   -0.17   -0.58   -1.17   -1.89   -2.69   -3.52   -4.30   -4.93   -5.31   -5.29   -4.81   -3.86   -2.50   -0.80    1.23    3.69    6.76   10.46
+   255.0    0.00   -0.17   -0.58   -1.18   -1.90   -2.69   -3.51   -4.29   -4.92   -5.30   -5.30   -4.84   -3.90   -2.54   -0.82    1.24    3.71    6.75   10.43
+   260.0    0.00   -0.17   -0.58   -1.18   -1.90   -2.70   -3.51   -4.27   -4.91   -5.30   -5.32   -4.88   -3.96   -2.59   -0.86    1.22    3.69    6.70   10.36
+   265.0    0.00   -0.17   -0.58   -1.18   -1.91   -2.70   -3.50   -4.26   -4.90   -5.30   -5.34   -4.92   -4.02   -2.66   -0.92    1.16    3.63    6.61   10.26
+   270.0    0.00   -0.17   -0.58   -1.19   -1.91   -2.70   -3.50   -4.25   -4.89   -5.30   -5.36   -4.96   -4.08   -2.73   -0.99    1.08    3.53    6.49   10.15
+   275.0    0.00   -0.17   -0.58   -1.19   -1.91   -2.70   -3.49   -4.24   -4.88   -5.29   -5.37   -4.99   -4.13   -2.80   -1.08    0.98    3.41    6.35   10.04
+   280.0    0.00   -0.17   -0.58   -1.19   -1.91   -2.69   -3.48   -4.23   -4.87   -5.29   -5.37   -5.02   -4.17   -2.86   -1.16    0.86    3.26    6.20    9.93
+   285.0    0.00   -0.17   -0.58   -1.18   -1.91   -2.69   -3.47   -4.22   -4.86   -5.28   -5.37   -5.03   -4.20   -2.92   -1.25    0.74    3.11    6.05    9.85
+   290.0    0.00   -0.16   -0.58   -1.18   -1.90   -2.68   -3.46   -4.21   -4.85   -5.27   -5.37   -5.03   -4.21   -2.95   -1.33    0.62    2.96    5.90    9.79
+   295.0    0.00   -0.16   -0.57   -1.17   -1.89   -2.67   -3.45   -4.20   -4.84   -5.26   -5.35   -5.02   -4.21   -2.98   -1.39    0.51    2.82    5.78    9.77
+   300.0    0.00   -0.16   -0.57   -1.16   -1.88   -2.65   -3.44   -4.19   -4.83   -5.25   -5.34   -4.99   -4.19   -2.98   -1.44    0.42    2.69    5.68    9.78
+   305.0    0.00   -0.16   -0.56   -1.15   -1.87   -2.64   -3.42   -4.18   -4.82   -5.24   -5.32   -4.97   -4.17   -2.98   -1.47    0.34    2.59    5.61    9.82
+   310.0    0.00   -0.15   -0.56   -1.14   -1.85   -2.62   -3.41   -4.16   -4.81   -5.23   -5.30   -4.94   -4.14   -2.96   -1.49    0.28    2.51    5.57    9.87
+   315.0    0.00   -0.15   -0.55   -1.13   -1.83   -2.60   -3.39   -4.15   -4.80   -5.21   -5.28   -4.91   -4.10   -2.94   -1.49    0.24    2.46    5.55    9.94
+   320.0    0.00   -0.15   -0.54   -1.12   -1.82   -2.58   -3.38   -4.14   -4.79   -5.20   -5.26   -4.88   -4.07   -2.91   -1.49    0.22    2.43    5.55   10.00
+   325.0    0.00   -0.14   -0.53   -1.11   -1.80   -2.57   -3.36   -4.13   -4.78   -5.19   -5.24   -4.86   -4.04   -2.89   -1.49    0.21    2.43    5.57   10.04
+   330.0    0.00   -0.14   -0.53   -1.10   -1.79   -2.55   -3.34   -4.12   -4.77   -5.19   -5.23   -4.84   -4.02   -2.88   -1.48    0.21    2.43    5.60   10.06
+   335.0    0.00   -0.14   -0.52   -1.08   -1.77   -2.53   -3.33   -4.11   -4.77   -5.18   -5.22   -4.83   -4.01   -2.87   -1.48    0.21    2.45    5.62   10.04
+   340.0    0.00   -0.13   -0.51   -1.07   -1.76   -2.52   -3.32   -4.10   -4.76   -5.17   -5.22   -4.82   -4.01   -2.87   -1.48    0.22    2.47    5.64    9.99
+   345.0    0.00   -0.13   -0.50   -1.06   -1.75   -2.51   -3.31   -4.09   -4.75   -5.17   -5.22   -4.82   -4.01   -2.87   -1.48    0.23    2.49    5.65    9.90
+   350.0    0.00   -0.12   -0.49   -1.05   -1.74   -2.50   -3.30   -4.08   -4.74   -5.16   -5.21   -4.83   -4.02   -2.89   -1.49    0.24    2.51    5.65    9.79
+   355.0    0.00   -0.12   -0.49   -1.04   -1.73   -2.49   -3.29   -4.07   -4.73   -5.15   -5.21   -4.83   -4.03   -2.90   -1.50    0.24    2.52    5.63    9.65
+   360.0    0.00   -0.12   -0.48   -1.03   -1.72   -2.49   -3.29   -4.07   -4.73   -5.15   -5.20   -4.83   -4.05   -2.92   -1.50    0.25    2.53    5.61    9.51
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH701008.01B   NONE                                        TYPE / SERIAL NO    
+FIELD               NGS/TUM                  3    10-AUG-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+     -0.10      0.24     64.44                              NORTH / EAST / UP   
+   NOAZI    0.00    0.46    1.08    1.63    2.02    2.31    2.35    2.21    2.13    1.90    1.76    1.54    1.53    1.76    2.30    3.57    5.79
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      1.40     -2.62     53.76                              NORTH / EAST / UP   
+   NOAZI    0.00   -2.13   -4.02   -5.80   -7.42   -8.92  -10.23  -11.31  -12.05  -12.43  -12.25  -11.43   -9.98   -7.85   -5.13   -1.71    2.56
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH701073.1     NONE                                        TYPE / SERIAL NO    
+COPIED              TUM                      0    27-JAN-03 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+COPIED FROM AOAD/M_T                                        COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.60     -0.46     91.24                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.24   -0.92   -1.97   -3.28   -4.69   -6.05   -7.19   -7.97   -8.30   -8.14   -7.46   -6.27   -4.54   -2.20    0.87    4.79    9.56   14.88
+     0.0    0.00   -0.28   -1.01   -2.12   -3.49   -4.95   -6.35   -7.52   -8.32   -8.63   -8.43   -7.72   -6.51   -4.78   -2.47    0.58    4.48    9.16   14.25
+     5.0    0.00   -0.28   -1.01   -2.12   -3.48   -4.94   -6.34   -7.50   -8.30   -8.62   -8.42   -7.70   -6.48   -4.75   -2.42    0.63    4.53    9.23   14.33
+    10.0    0.00   -0.28   -1.01   -2.11   -3.46   -4.92   -6.32   -7.48   -8.27   -8.59   -8.39   -7.68   -6.46   -4.72   -2.38    0.69    4.60    9.32   14.45
+    15.0    0.00   -0.27   -1.00   -2.10   -3.45   -4.90   -6.29   -7.46   -8.25   -8.57   -8.37   -7.65   -6.43   -4.68   -2.33    0.75    4.69    9.43   14.61
+    20.0    0.00   -0.27   -0.99   -2.08   -3.43   -4.88   -6.27   -7.43   -8.22   -8.54   -8.35   -7.63   -6.40   -4.64   -2.28    0.83    4.78    9.56   14.80
+    25.0    0.00   -0.27   -0.98   -2.07   -3.41   -4.85   -6.24   -7.39   -8.19   -8.51   -8.32   -7.60   -6.37   -4.60   -2.22    0.90    4.89    9.71   15.02
+    30.0    0.00   -0.26   -0.98   -2.06   -3.39   -4.83   -6.21   -7.36   -8.15   -8.48   -8.29   -7.57   -6.33   -4.55   -2.15    0.99    5.00    9.87   15.25
+    35.0    0.00   -0.26   -0.97   -2.04   -3.37   -4.80   -6.17   -7.32   -8.11   -8.44   -8.25   -7.54   -6.29   -4.50   -2.09    1.08    5.12   10.03   15.48
+    40.0    0.00   -0.26   -0.96   -2.02   -3.34   -4.77   -6.13   -7.28   -8.07   -8.40   -8.21   -7.50   -6.25   -4.45   -2.02    1.17    5.25   10.19   15.70
+    45.0    0.00   -0.25   -0.95   -2.01   -3.32   -4.74   -6.10   -7.24   -8.03   -8.35   -8.17   -7.45   -6.20   -4.40   -1.95    1.26    5.36   10.34   15.89
+    50.0    0.00   -0.25   -0.94   -1.99   -3.29   -4.70   -6.06   -7.19   -7.98   -8.31   -8.12   -7.40   -6.15   -4.34   -1.88    1.34    5.46   10.46   16.05
+    55.0    0.00   -0.24   -0.93   -1.97   -3.27   -4.67   -6.02   -7.15   -7.93   -8.25   -8.07   -7.35   -6.10   -4.28   -1.82    1.41    5.54   10.55   16.15
+    60.0    0.00   -0.24   -0.92   -1.95   -3.24   -4.64   -5.98   -7.10   -7.88   -8.20   -8.01   -7.30   -6.04   -4.23   -1.76    1.47    5.59   10.60   16.20
+    65.0    0.00   -0.24   -0.91   -1.94   -3.22   -4.60   -5.94   -7.06   -7.83   -8.15   -7.96   -7.24   -5.99   -4.18   -1.72    1.50    5.61   10.60   16.20
+    70.0    0.00   -0.23   -0.90   -1.92   -3.19   -4.57   -5.90   -7.02   -7.79   -8.10   -7.91   -7.19   -5.94   -4.14   -1.70    1.50    5.60   10.57   16.14
+    75.0    0.00   -0.23   -0.89   -1.91   -3.17   -4.55   -5.87   -6.98   -7.75   -8.06   -7.87   -7.15   -5.91   -4.12   -1.70    1.48    5.55   10.50   16.04
+    80.0    0.00   -0.23   -0.88   -1.89   -3.16   -4.53   -5.84   -6.95   -7.72   -8.03   -7.83   -7.12   -5.89   -4.11   -1.71    1.44    5.47   10.39   15.91
+    85.0    0.00   -0.22   -0.87   -1.88   -3.14   -4.51   -5.82   -6.93   -7.69   -8.00   -7.81   -7.10   -5.88   -4.13   -1.75    1.36    5.36   10.25   15.74
+    90.0    0.00   -0.22   -0.87   -1.87   -3.13   -4.49   -5.81   -6.92   -7.68   -7.99   -7.80   -7.10   -5.90   -4.16   -1.82    1.27    5.24   10.09   15.56
+    95.0    0.00   -0.22   -0.86   -1.87   -3.12   -4.49   -5.80   -6.91   -7.68   -7.99   -7.81   -7.12   -5.93   -4.21   -1.90    1.16    5.10    9.92   15.37
+   100.0    0.00   -0.21   -0.86   -1.87   -3.12   -4.48   -5.80   -6.91   -7.68   -8.01   -7.84   -7.16   -5.98   -4.29   -1.99    1.04    4.96    9.76   15.18
+   105.0    0.00   -0.21   -0.86   -1.86   -3.12   -4.49   -5.81   -6.93   -7.70   -8.04   -7.88   -7.21   -6.05   -4.37   -2.09    0.93    4.82    9.60   15.00
+   110.0    0.00   -0.21   -0.86   -1.87   -3.13   -4.50   -5.82   -6.95   -7.73   -8.07   -7.93   -7.28   -6.13   -4.47   -2.20    0.81    4.69    9.46   14.84
+   115.0    0.00   -0.21   -0.86   -1.87   -3.13   -4.51   -5.84   -6.97   -7.76   -8.12   -7.99   -7.35   -6.22   -4.56   -2.30    0.71    4.59    9.34   14.71
+   120.0    0.00   -0.21   -0.86   -1.87   -3.15   -4.53   -5.87   -7.00   -7.80   -8.17   -8.05   -7.43   -6.31   -4.66   -2.39    0.62    4.50    9.24   14.60
+   125.0    0.00   -0.21   -0.86   -1.88   -3.16   -4.55   -5.89   -7.04   -7.85   -8.22   -8.12   -7.51   -6.39   -4.74   -2.47    0.55    4.44    9.18   14.52
+   130.0    0.00   -0.21   -0.86   -1.89   -3.17   -4.57   -5.92   -7.07   -7.89   -8.27   -8.18   -7.58   -6.47   -4.81   -2.53    0.51    4.40    9.13   14.47
+   135.0    0.00   -0.21   -0.86   -1.90   -3.19   -4.60   -5.95   -7.11   -7.93   -8.32   -8.23   -7.64   -6.53   -4.87   -2.57    0.47    4.37    9.11   14.44
+   140.0    0.00   -0.21   -0.87   -1.91   -3.21   -4.62   -5.98   -7.14   -7.96   -8.36   -8.28   -7.69   -6.58   -4.91   -2.60    0.46    4.37    9.10   14.43
+   145.0    0.00   -0.21   -0.87   -1.91   -3.22   -4.64   -6.01   -7.17   -8.00   -8.39   -8.31   -7.72   -6.61   -4.93   -2.62    0.45    4.36    9.10   14.44
+   150.0    0.00   -0.21   -0.87   -1.92   -3.24   -4.66   -6.04   -7.20   -8.02   -8.42   -8.33   -7.74   -6.63   -4.94   -2.62    0.45    4.37    9.10   14.45
+   155.0    0.00   -0.21   -0.87   -1.93   -3.25   -4.68   -6.06   -7.22   -8.05   -8.44   -8.35   -7.75   -6.63   -4.94   -2.62    0.46    4.36    9.10   14.46
+   160.0    0.00   -0.21   -0.88   -1.93   -3.26   -4.69   -6.07   -7.24   -8.06   -8.45   -8.35   -7.75   -6.62   -4.94   -2.61    0.45    4.36    9.09   14.46
+   165.0    0.00   -0.21   -0.88   -1.94   -3.27   -4.70   -6.09   -7.25   -8.07   -8.46   -8.35   -7.74   -6.61   -4.93   -2.61    0.45    4.34    9.08   14.46
+   170.0    0.00   -0.21   -0.88   -1.94   -3.27   -4.71   -6.10   -7.26   -8.08   -8.46   -8.35   -7.73   -6.60   -4.92   -2.61    0.43    4.32    9.05   14.44
+   175.0    0.00   -0.21   -0.88   -1.94   -3.27   -4.71   -6.10   -7.27   -8.08   -8.46   -8.34   -7.72   -6.59   -4.91   -2.61    0.42    4.29    9.02   14.41
+   180.0    0.00   -0.21   -0.88   -1.94   -3.27   -4.71   -6.10   -7.27   -8.08   -8.46   -8.34   -7.71   -6.57   -4.90   -2.62    0.40    4.26    9.00   14.38
+   185.0    0.00   -0.21   -0.88   -1.93   -3.26   -4.70   -6.09   -7.26   -8.08   -8.45   -8.33   -7.70   -6.56   -4.90   -2.62    0.38    4.24    8.98   14.35
+   190.0    0.00   -0.21   -0.87   -1.93   -3.25   -4.69   -6.08   -7.25   -8.07   -8.44   -8.32   -7.69   -6.55   -4.89   -2.62    0.38    4.24    8.98   14.33
+   195.0    0.00   -0.21   -0.87   -1.92   -3.24   -4.68   -6.07   -7.24   -8.06   -8.43   -8.30   -7.67   -6.54   -4.88   -2.61    0.39    4.26    9.00   14.33
+   200.0    0.00   -0.21   -0.87   -1.92   -3.23   -4.67   -6.05   -7.22   -8.04   -8.41   -8.29   -7.65   -6.52   -4.86   -2.59    0.42    4.30    9.06   14.37
+   205.0    0.00   -0.21   -0.87   -1.91   -3.22   -4.65   -6.03   -7.20   -8.02   -8.39   -8.26   -7.62   -6.48   -4.82   -2.55    0.47    4.38    9.15   14.44
+   210.0    0.00   -0.21   -0.87   -1.90   -3.21   -4.63   -6.01   -7.18   -8.00   -8.36   -8.23   -7.58   -6.44   -4.77   -2.49    0.55    4.48    9.28   14.55
+   215.0    0.00   -0.21   -0.87   -1.90   -3.20   -4.61   -5.99   -7.15   -7.97   -8.33   -8.18   -7.53   -6.38   -4.70   -2.41    0.65    4.61    9.43   14.69
+   220.0    0.00   -0.21   -0.87   -1.89   -3.19   -4.60   -5.97   -7.13   -7.93   -8.28   -8.13   -7.47   -6.31   -4.62   -2.31    0.78    4.77    9.61   14.87
+   225.0    0.00   -0.21   -0.87   -1.89   -3.18   -4.58   -5.94   -7.10   -7.89   -8.24   -8.07   -7.40   -6.22   -4.52   -2.19    0.91    4.93    9.80   15.07
+   230.0    0.00   -0.21   -0.87   -1.89   -3.17   -4.57   -5.92   -7.07   -7.85   -8.18   -8.01   -7.32   -6.13   -4.41   -2.07    1.06    5.10    9.98   15.28
+   235.0    0.00   -0.22   -0.87   -1.89   -3.16   -4.56   -5.90   -7.03   -7.81   -8.13   -7.94   -7.24   -6.03   -4.30   -1.94    1.20    5.25   10.15   15.47
+   240.0    0.00   -0.22   -0.87   -1.89   -3.16   -4.55   -5.88   -7.01   -7.77   -8.07   -7.87   -7.16   -5.94   -4.19   -1.82    1.33    5.39   10.29   15.63
+   245.0    0.00   -0.22   -0.87   -1.89   -3.16   -4.54   -5.87   -6.98   -7.73   -8.02   -7.81   -7.08   -5.86   -4.10   -1.71    1.44    5.49   10.39   15.74
+   250.0    0.00   -0.22   -0.88   -1.90   -3.17   -4.54   -5.86   -6.96   -7.70   -7.98   -7.76   -7.02   -5.79   -4.01   -1.62    1.53    5.56   10.44   15.79
+   255.0    0.00   -0.23   -0.88   -1.90   -3.17   -4.54   -5.86   -6.95   -7.68   -7.95   -7.72   -6.98   -5.73   -3.96   -1.56    1.58    5.58   10.43   15.78
+   260.0    0.00   -0.23   -0.89   -1.91   -3.18   -4.55   -5.86   -6.94   -7.66   -7.93   -7.70   -6.96   -5.71   -3.92   -1.53    1.59    5.57   10.37   15.71
+   265.0    0.00   -0.23   -0.90   -1.92   -3.19   -4.56   -5.86   -6.94   -7.66   -7.93   -7.70   -6.96   -5.70   -3.92   -1.53    1.57    5.51   10.26   15.58
+   270.0    0.00   -0.24   -0.91   -1.94   -3.21   -4.58   -5.88   -6.95   -7.67   -7.94   -7.71   -6.98   -5.73   -3.94   -1.56    1.52    5.41   10.11   15.40
+   275.0    0.00   -0.24   -0.92   -1.95   -3.23   -4.60   -5.90   -6.97   -7.69   -7.96   -7.74   -7.02   -5.77   -4.00   -1.62    1.44    5.28    9.93   15.20
+   280.0    0.00   -0.25   -0.93   -1.97   -3.25   -4.62   -5.93   -7.00   -7.72   -8.00   -7.79   -7.07   -5.84   -4.07   -1.71    1.33    5.14    9.74   14.98
+   285.0    0.00   -0.25   -0.94   -1.98   -3.27   -4.65   -5.96   -7.04   -7.77   -8.06   -7.86   -7.15   -5.92   -4.16   -1.81    1.21    4.99    9.55   14.77
+   290.0    0.00   -0.25   -0.95   -2.00   -3.30   -4.69   -6.00   -7.09   -7.82   -8.12   -7.93   -7.23   -6.01   -4.26   -1.92    1.08    4.84    9.38   14.58
+   295.0    0.00   -0.26   -0.96   -2.02   -3.33   -4.72   -6.04   -7.14   -7.88   -8.19   -8.00   -7.31   -6.11   -4.36   -2.04    0.96    4.70    9.23   14.43
+   300.0    0.00   -0.26   -0.97   -2.04   -3.35   -4.76   -6.09   -7.19   -7.95   -8.26   -8.08   -7.40   -6.20   -4.47   -2.15    0.83    4.58    9.10   14.31
+   305.0    0.00   -0.26   -0.98   -2.05   -3.38   -4.79   -6.14   -7.25   -8.01   -8.33   -8.16   -7.48   -6.29   -4.57   -2.26    0.73    4.47    9.01   14.22
+   310.0    0.00   -0.27   -0.98   -2.07   -3.40   -4.83   -6.18   -7.31   -8.08   -8.40   -8.23   -7.56   -6.37   -4.66   -2.35    0.63    4.40    8.96   14.17
+   315.0    0.00   -0.27   -0.99   -2.08   -3.43   -4.86   -6.23   -7.36   -8.14   -8.47   -8.30   -7.62   -6.44   -4.73   -2.43    0.56    4.34    8.93   14.15
+   320.0    0.00   -0.27   -1.00   -2.10   -3.45   -4.89   -6.27   -7.41   -8.19   -8.52   -8.35   -7.67   -6.49   -4.79   -2.49    0.50    4.31    8.92   14.15
+   325.0    0.00   -0.28   -1.01   -2.11   -3.46   -4.92   -6.30   -7.45   -8.24   -8.57   -8.39   -7.71   -6.53   -4.83   -2.54    0.47    4.29    8.93   14.15
+   330.0    0.00   -0.28   -1.01   -2.12   -3.48   -4.94   -6.33   -7.49   -8.28   -8.61   -8.43   -7.74   -6.56   -4.86   -2.56    0.45    4.29    8.95   14.16
+   335.0    0.00   -0.28   -1.02   -2.13   -3.49   -4.95   -6.35   -7.51   -8.31   -8.63   -8.45   -7.76   -6.57   -4.87   -2.57    0.45    4.31    8.98   14.16
+   340.0    0.00   -0.28   -1.02   -2.13   -3.50   -4.96   -6.36   -7.53   -8.33   -8.65   -8.46   -7.77   -6.57   -4.87   -2.57    0.46    4.33    9.01   14.16
+   345.0    0.00   -0.28   -1.02   -2.13   -3.50   -4.97   -6.37   -7.54   -8.33   -8.66   -8.46   -7.76   -6.57   -4.86   -2.56    0.48    4.36    9.04   14.16
+   350.0    0.00   -0.28   -1.02   -2.13   -3.50   -4.97   -6.37   -7.54   -8.34   -8.66   -8.46   -7.75   -6.55   -4.84   -2.53    0.51    4.39    9.07   14.17
+   355.0    0.00   -0.28   -1.02   -2.13   -3.49   -4.96   -6.37   -7.54   -8.33   -8.65   -8.45   -7.74   -6.53   -4.81   -2.50    0.54    4.43    9.11   14.20
+   360.0    0.00   -0.28   -1.01   -2.12   -3.49   -4.95   -6.35   -7.52   -8.32   -8.63   -8.43   -7.72   -6.51   -4.78   -2.47    0.58    4.48    9.16   14.25
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.10     -0.62    120.06                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.13   -0.52   -1.10   -1.82   -2.62   -3.43   -4.21   -4.85   -5.23   -5.25   -4.83   -3.98   -2.75   -1.23    0.59    2.86    5.83    9.66
+     0.0    0.00   -0.12   -0.48   -1.03   -1.72   -2.49   -3.29   -4.07   -4.73   -5.15   -5.20   -4.83   -4.05   -2.92   -1.50    0.25    2.53    5.61    9.51
+     5.0    0.00   -0.11   -0.47   -1.03   -1.71   -2.48   -3.29   -4.06   -4.72   -5.13   -5.20   -4.83   -4.05   -2.93   -1.51    0.25    2.54    5.58    9.37
+    10.0    0.00   -0.11   -0.47   -1.02   -1.71   -2.48   -3.28   -4.05   -4.71   -5.12   -5.19   -4.83   -4.06   -2.93   -1.51    0.26    2.55    5.55    9.26
+    15.0    0.00   -0.11   -0.46   -1.01   -1.71   -2.48   -3.28   -4.05   -4.70   -5.11   -5.17   -4.82   -4.05   -2.93   -1.50    0.27    2.55    5.53    9.17
+    20.0    0.00   -0.10   -0.45   -1.01   -1.70   -2.48   -3.28   -4.04   -4.69   -5.10   -5.16   -4.81   -4.04   -2.92   -1.48    0.29    2.57    5.52    9.12
+    25.0    0.00   -0.10   -0.45   -1.00   -1.70   -2.47   -3.28   -4.04   -4.68   -5.08   -5.14   -4.79   -4.02   -2.89   -1.45    0.32    2.59    5.52    9.12
+    30.0    0.00   -0.10   -0.44   -1.00   -1.69   -2.47   -3.27   -4.03   -4.67   -5.07   -5.13   -4.77   -3.99   -2.86   -1.41    0.36    2.61    5.53    9.16
+    35.0    0.00   -0.09   -0.44   -0.99   -1.69   -2.47   -3.27   -4.03   -4.66   -5.06   -5.11   -4.75   -3.96   -2.81   -1.36    0.41    2.65    5.57    9.23
+    40.0    0.00   -0.09   -0.44   -0.99   -1.68   -2.46   -3.27   -4.03   -4.66   -5.05   -5.10   -4.72   -3.92   -2.76   -1.30    0.47    2.69    5.61    9.34
+    45.0    0.00   -0.09   -0.43   -0.98   -1.68   -2.46   -3.26   -4.02   -4.66   -5.05   -5.09   -4.70   -3.88   -2.70   -1.23    0.53    2.74    5.66    9.47
+    50.0    0.00   -0.09   -0.43   -0.98   -1.67   -2.46   -3.26   -4.03   -4.66   -5.05   -5.08   -4.68   -3.84   -2.65   -1.17    0.59    2.79    5.72    9.60
+    55.0    0.00   -0.09   -0.43   -0.98   -1.67   -2.45   -3.26   -4.03   -4.66   -5.05   -5.07   -4.66   -3.81   -2.59   -1.11    0.65    2.84    5.77    9.73
+    60.0    0.00   -0.09   -0.43   -0.98   -1.67   -2.46   -3.27   -4.04   -4.67   -5.06   -5.07   -4.64   -3.77   -2.55   -1.05    0.70    2.88    5.81    9.83
+    65.0    0.00   -0.09   -0.43   -0.98   -1.67   -2.46   -3.27   -4.05   -4.69   -5.07   -5.07   -4.63   -3.75   -2.51   -1.02    0.74    2.91    5.84    9.91
+    70.0    0.00   -0.09   -0.43   -0.98   -1.68   -2.47   -3.29   -4.06   -4.70   -5.08   -5.08   -4.63   -3.74   -2.49   -0.99    0.75    2.92    5.85    9.95
+    75.0    0.00   -0.09   -0.43   -0.99   -1.69   -2.48   -3.30   -4.08   -4.72   -5.10   -5.09   -4.63   -3.74   -2.49   -0.99    0.76    2.92    5.85    9.96
+    80.0    0.00   -0.09   -0.44   -0.99   -1.70   -2.50   -3.32   -4.11   -4.74   -5.12   -5.11   -4.64   -3.74   -2.50   -1.00    0.74    2.90    5.82    9.93
+    85.0    0.00   -0.10   -0.44   -1.00   -1.71   -2.52   -3.35   -4.13   -4.77   -5.14   -5.12   -4.66   -3.76   -2.52   -1.03    0.71    2.86    5.78    9.86
+    90.0    0.00   -0.10   -0.45   -1.02   -1.73   -2.54   -3.37   -4.16   -4.79   -5.16   -5.14   -4.68   -3.79   -2.56   -1.07    0.66    2.82    5.73    9.78
+    95.0    0.00   -0.10   -0.46   -1.03   -1.75   -2.57   -3.40   -4.19   -4.82   -5.18   -5.16   -4.70   -3.82   -2.60   -1.12    0.61    2.77    5.67    9.68
+   100.0    0.00   -0.10   -0.47   -1.05   -1.78   -2.59   -3.43   -4.22   -4.84   -5.20   -5.18   -4.73   -3.86   -2.65   -1.18    0.56    2.72    5.61    9.58
+   105.0    0.00   -0.11   -0.48   -1.06   -1.80   -2.62   -3.46   -4.24   -4.87   -5.22   -5.20   -4.75   -3.90   -2.70   -1.23    0.52    2.68    5.56    9.48
+   110.0    0.00   -0.11   -0.49   -1.08   -1.82   -2.65   -3.49   -4.27   -4.89   -5.24   -5.22   -4.78   -3.93   -2.74   -1.27    0.48    2.66    5.53    9.40
+   115.0    0.00   -0.12   -0.50   -1.10   -1.85   -2.68   -3.52   -4.29   -4.90   -5.25   -5.24   -4.80   -3.96   -2.77   -1.30    0.46    2.65    5.51    9.33
+   120.0    0.00   -0.12   -0.51   -1.11   -1.87   -2.70   -3.54   -4.31   -4.92   -5.26   -5.25   -4.83   -3.99   -2.79   -1.31    0.46    2.66    5.51    9.29
+   125.0    0.00   -0.12   -0.52   -1.13   -1.89   -2.72   -3.56   -4.32   -4.93   -5.27   -5.26   -4.84   -4.00   -2.80   -1.31    0.48    2.69    5.53    9.26
+   130.0    0.00   -0.13   -0.52   -1.14   -1.91   -2.74   -3.57   -4.33   -4.93   -5.28   -5.28   -4.86   -4.01   -2.80   -1.29    0.52    2.73    5.57    9.26
+   135.0    0.00   -0.13   -0.53   -1.15   -1.92   -2.75   -3.58   -4.34   -4.94   -5.29   -5.29   -4.87   -4.02   -2.79   -1.26    0.57    2.79    5.61    9.27
+   140.0    0.00   -0.13   -0.54   -1.16   -1.93   -2.76   -3.59   -4.34   -4.94   -5.29   -5.30   -4.87   -4.02   -2.78   -1.22    0.62    2.85    5.66    9.28
+   145.0    0.00   -0.14   -0.55   -1.17   -1.94   -2.77   -3.59   -4.34   -4.95   -5.30   -5.30   -4.88   -4.01   -2.75   -1.18    0.67    2.91    5.71    9.29
+   150.0    0.00   -0.14   -0.55   -1.18   -1.95   -2.77   -3.59   -4.34   -4.95   -5.31   -5.31   -4.89   -4.01   -2.74   -1.15    0.72    2.95    5.75    9.30
+   155.0    0.00   -0.14   -0.56   -1.18   -1.95   -2.77   -3.59   -4.34   -4.95   -5.32   -5.32   -4.89   -4.01   -2.72   -1.12    0.75    2.99    5.78    9.30
+   160.0    0.00   -0.15   -0.56   -1.18   -1.95   -2.77   -3.59   -4.34   -4.96   -5.33   -5.34   -4.90   -4.01   -2.72   -1.11    0.76    3.00    5.79    9.28
+   165.0    0.00   -0.15   -0.56   -1.18   -1.94   -2.76   -3.58   -4.34   -4.96   -5.34   -5.35   -4.91   -4.01   -2.72   -1.12    0.76    3.00    5.79    9.26
+   170.0    0.00   -0.15   -0.56   -1.18   -1.94   -2.75   -3.57   -4.34   -4.97   -5.35   -5.36   -4.92   -4.02   -2.73   -1.14    0.73    2.97    5.77    9.23
+   175.0    0.00   -0.15   -0.57   -1.18   -1.93   -2.74   -3.57   -4.34   -4.98   -5.36   -5.37   -4.93   -4.03   -2.75   -1.17    0.69    2.93    5.74    9.20
+   180.0    0.00   -0.16   -0.57   -1.18   -1.92   -2.74   -3.56   -4.34   -4.98   -5.37   -5.38   -4.94   -4.04   -2.77   -1.21    0.63    2.88    5.71    9.17
+   185.0    0.00   -0.16   -0.57   -1.17   -1.91   -2.73   -3.56   -4.35   -4.99   -5.38   -5.38   -4.94   -4.05   -2.79   -1.25    0.58    2.83    5.69    9.16
+   190.0    0.00   -0.16   -0.57   -1.17   -1.90   -2.72   -3.56   -4.35   -5.00   -5.39   -5.39   -4.93   -4.05   -2.81   -1.29    0.53    2.79    5.68    9.18
+   195.0    0.00   -0.16   -0.56   -1.16   -1.90   -2.71   -3.55   -4.35   -5.01   -5.39   -5.38   -4.92   -4.04   -2.81   -1.31    0.49    2.76    5.69    9.22
+   200.0    0.00   -0.16   -0.56   -1.16   -1.89   -2.70   -3.55   -4.35   -5.01   -5.39   -5.37   -4.91   -4.02   -2.80   -1.32    0.48    2.76    5.72    9.30
+   205.0    0.00   -0.16   -0.56   -1.16   -1.88   -2.70   -3.55   -4.35   -5.01   -5.39   -5.36   -4.88   -3.99   -2.78   -1.30    0.49    2.79    5.79    9.40
+   210.0    0.00   -0.16   -0.56   -1.15   -1.88   -2.69   -3.54   -4.35   -5.01   -5.38   -5.34   -4.86   -3.96   -2.74   -1.27    0.53    2.85    5.88    9.53
+   215.0    0.00   -0.17   -0.56   -1.15   -1.88   -2.69   -3.54   -4.35   -5.01   -5.37   -5.32   -4.83   -3.92   -2.70   -1.21    0.60    2.93    5.99    9.69
+   220.0    0.00   -0.17   -0.57   -1.15   -1.87   -2.69   -3.54   -4.35   -5.00   -5.36   -5.31   -4.80   -3.88   -2.64   -1.14    0.69    3.04    6.13    9.85
+   225.0    0.00   -0.17   -0.57   -1.15   -1.87   -2.69   -3.54   -4.34   -4.99   -5.35   -5.29   -4.78   -3.85   -2.59   -1.06    0.79    3.17    6.27   10.02
+   230.0    0.00   -0.17   -0.57   -1.15   -1.88   -2.69   -3.53   -4.33   -4.98   -5.34   -5.28   -4.76   -3.82   -2.54   -0.98    0.90    3.30    6.41   10.17
+   235.0    0.00   -0.17   -0.57   -1.16   -1.88   -2.69   -3.53   -4.33   -4.97   -5.32   -5.27   -4.76   -3.81   -2.50   -0.91    1.01    3.43    6.54   10.30
+   240.0    0.00   -0.17   -0.57   -1.16   -1.88   -2.69   -3.52   -4.32   -4.96   -5.32   -5.27   -4.76   -3.81   -2.48   -0.85    1.11    3.55    6.65   10.40
+   245.0    0.00   -0.17   -0.58   -1.17   -1.89   -2.69   -3.52   -4.31   -4.95   -5.31   -5.28   -4.78   -3.82   -2.48   -0.82    1.18    3.64    6.72   10.45
+   250.0    0.00   -0.17   -0.58   -1.17   -1.89   -2.69   -3.52   -4.30   -4.93   -5.31   -5.29   -4.81   -3.86   -2.50   -0.80    1.23    3.69    6.76   10.46
+   255.0    0.00   -0.17   -0.58   -1.18   -1.90   -2.69   -3.51   -4.29   -4.92   -5.30   -5.30   -4.84   -3.90   -2.54   -0.82    1.24    3.71    6.75   10.43
+   260.0    0.00   -0.17   -0.58   -1.18   -1.90   -2.70   -3.51   -4.27   -4.91   -5.30   -5.32   -4.88   -3.96   -2.59   -0.86    1.22    3.69    6.70   10.36
+   265.0    0.00   -0.17   -0.58   -1.18   -1.91   -2.70   -3.50   -4.26   -4.90   -5.30   -5.34   -4.92   -4.02   -2.66   -0.92    1.16    3.63    6.61   10.26
+   270.0    0.00   -0.17   -0.58   -1.19   -1.91   -2.70   -3.50   -4.25   -4.89   -5.30   -5.36   -4.96   -4.08   -2.73   -0.99    1.08    3.53    6.49   10.15
+   275.0    0.00   -0.17   -0.58   -1.19   -1.91   -2.70   -3.49   -4.24   -4.88   -5.29   -5.37   -4.99   -4.13   -2.80   -1.08    0.98    3.41    6.35   10.04
+   280.0    0.00   -0.17   -0.58   -1.19   -1.91   -2.69   -3.48   -4.23   -4.87   -5.29   -5.37   -5.02   -4.17   -2.86   -1.16    0.86    3.26    6.20    9.93
+   285.0    0.00   -0.17   -0.58   -1.18   -1.91   -2.69   -3.47   -4.22   -4.86   -5.28   -5.37   -5.03   -4.20   -2.92   -1.25    0.74    3.11    6.05    9.85
+   290.0    0.00   -0.16   -0.58   -1.18   -1.90   -2.68   -3.46   -4.21   -4.85   -5.27   -5.37   -5.03   -4.21   -2.95   -1.33    0.62    2.96    5.90    9.79
+   295.0    0.00   -0.16   -0.57   -1.17   -1.89   -2.67   -3.45   -4.20   -4.84   -5.26   -5.35   -5.02   -4.21   -2.98   -1.39    0.51    2.82    5.78    9.77
+   300.0    0.00   -0.16   -0.57   -1.16   -1.88   -2.65   -3.44   -4.19   -4.83   -5.25   -5.34   -4.99   -4.19   -2.98   -1.44    0.42    2.69    5.68    9.78
+   305.0    0.00   -0.16   -0.56   -1.15   -1.87   -2.64   -3.42   -4.18   -4.82   -5.24   -5.32   -4.97   -4.17   -2.98   -1.47    0.34    2.59    5.61    9.82
+   310.0    0.00   -0.15   -0.56   -1.14   -1.85   -2.62   -3.41   -4.16   -4.81   -5.23   -5.30   -4.94   -4.14   -2.96   -1.49    0.28    2.51    5.57    9.87
+   315.0    0.00   -0.15   -0.55   -1.13   -1.83   -2.60   -3.39   -4.15   -4.80   -5.21   -5.28   -4.91   -4.10   -2.94   -1.49    0.24    2.46    5.55    9.94
+   320.0    0.00   -0.15   -0.54   -1.12   -1.82   -2.58   -3.38   -4.14   -4.79   -5.20   -5.26   -4.88   -4.07   -2.91   -1.49    0.22    2.43    5.55   10.00
+   325.0    0.00   -0.14   -0.53   -1.11   -1.80   -2.57   -3.36   -4.13   -4.78   -5.19   -5.24   -4.86   -4.04   -2.89   -1.49    0.21    2.43    5.57   10.04
+   330.0    0.00   -0.14   -0.53   -1.10   -1.79   -2.55   -3.34   -4.12   -4.77   -5.19   -5.23   -4.84   -4.02   -2.88   -1.48    0.21    2.43    5.60   10.06
+   335.0    0.00   -0.14   -0.52   -1.08   -1.77   -2.53   -3.33   -4.11   -4.77   -5.18   -5.22   -4.83   -4.01   -2.87   -1.48    0.21    2.45    5.62   10.04
+   340.0    0.00   -0.13   -0.51   -1.07   -1.76   -2.52   -3.32   -4.10   -4.76   -5.17   -5.22   -4.82   -4.01   -2.87   -1.48    0.22    2.47    5.64    9.99
+   345.0    0.00   -0.13   -0.50   -1.06   -1.75   -2.51   -3.31   -4.09   -4.75   -5.17   -5.22   -4.82   -4.01   -2.87   -1.48    0.23    2.49    5.65    9.90
+   350.0    0.00   -0.12   -0.49   -1.05   -1.74   -2.50   -3.30   -4.08   -4.74   -5.16   -5.21   -4.83   -4.02   -2.89   -1.49    0.24    2.51    5.65    9.79
+   355.0    0.00   -0.12   -0.49   -1.04   -1.73   -2.49   -3.29   -4.07   -4.73   -5.15   -5.21   -4.83   -4.03   -2.90   -1.50    0.24    2.52    5.63    9.65
+   360.0    0.00   -0.12   -0.48   -1.03   -1.72   -2.49   -3.29   -4.07   -4.73   -5.15   -5.20   -4.83   -4.05   -2.92   -1.50    0.25    2.53    5.61    9.51
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH701073.3     NONE                                        TYPE / SERIAL NO    
+COPIED              TUM                      0    27-JAN-03 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+COPIED FROM AOAD/M_T                                        COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.60     -0.46     91.24                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.24   -0.92   -1.97   -3.28   -4.69   -6.05   -7.19   -7.97   -8.30   -8.14   -7.46   -6.27   -4.54   -2.20    0.87    4.79    9.56   14.88
+     0.0    0.00   -0.28   -1.01   -2.12   -3.49   -4.95   -6.35   -7.52   -8.32   -8.63   -8.43   -7.72   -6.51   -4.78   -2.47    0.58    4.48    9.16   14.25
+     5.0    0.00   -0.28   -1.01   -2.12   -3.48   -4.94   -6.34   -7.50   -8.30   -8.62   -8.42   -7.70   -6.48   -4.75   -2.42    0.63    4.53    9.23   14.33
+    10.0    0.00   -0.28   -1.01   -2.11   -3.46   -4.92   -6.32   -7.48   -8.27   -8.59   -8.39   -7.68   -6.46   -4.72   -2.38    0.69    4.60    9.32   14.45
+    15.0    0.00   -0.27   -1.00   -2.10   -3.45   -4.90   -6.29   -7.46   -8.25   -8.57   -8.37   -7.65   -6.43   -4.68   -2.33    0.75    4.69    9.43   14.61
+    20.0    0.00   -0.27   -0.99   -2.08   -3.43   -4.88   -6.27   -7.43   -8.22   -8.54   -8.35   -7.63   -6.40   -4.64   -2.28    0.83    4.78    9.56   14.80
+    25.0    0.00   -0.27   -0.98   -2.07   -3.41   -4.85   -6.24   -7.39   -8.19   -8.51   -8.32   -7.60   -6.37   -4.60   -2.22    0.90    4.89    9.71   15.02
+    30.0    0.00   -0.26   -0.98   -2.06   -3.39   -4.83   -6.21   -7.36   -8.15   -8.48   -8.29   -7.57   -6.33   -4.55   -2.15    0.99    5.00    9.87   15.25
+    35.0    0.00   -0.26   -0.97   -2.04   -3.37   -4.80   -6.17   -7.32   -8.11   -8.44   -8.25   -7.54   -6.29   -4.50   -2.09    1.08    5.12   10.03   15.48
+    40.0    0.00   -0.26   -0.96   -2.02   -3.34   -4.77   -6.13   -7.28   -8.07   -8.40   -8.21   -7.50   -6.25   -4.45   -2.02    1.17    5.25   10.19   15.70
+    45.0    0.00   -0.25   -0.95   -2.01   -3.32   -4.74   -6.10   -7.24   -8.03   -8.35   -8.17   -7.45   -6.20   -4.40   -1.95    1.26    5.36   10.34   15.89
+    50.0    0.00   -0.25   -0.94   -1.99   -3.29   -4.70   -6.06   -7.19   -7.98   -8.31   -8.12   -7.40   -6.15   -4.34   -1.88    1.34    5.46   10.46   16.05
+    55.0    0.00   -0.24   -0.93   -1.97   -3.27   -4.67   -6.02   -7.15   -7.93   -8.25   -8.07   -7.35   -6.10   -4.28   -1.82    1.41    5.54   10.55   16.15
+    60.0    0.00   -0.24   -0.92   -1.95   -3.24   -4.64   -5.98   -7.10   -7.88   -8.20   -8.01   -7.30   -6.04   -4.23   -1.76    1.47    5.59   10.60   16.20
+    65.0    0.00   -0.24   -0.91   -1.94   -3.22   -4.60   -5.94   -7.06   -7.83   -8.15   -7.96   -7.24   -5.99   -4.18   -1.72    1.50    5.61   10.60   16.20
+    70.0    0.00   -0.23   -0.90   -1.92   -3.19   -4.57   -5.90   -7.02   -7.79   -8.10   -7.91   -7.19   -5.94   -4.14   -1.70    1.50    5.60   10.57   16.14
+    75.0    0.00   -0.23   -0.89   -1.91   -3.17   -4.55   -5.87   -6.98   -7.75   -8.06   -7.87   -7.15   -5.91   -4.12   -1.70    1.48    5.55   10.50   16.04
+    80.0    0.00   -0.23   -0.88   -1.89   -3.16   -4.53   -5.84   -6.95   -7.72   -8.03   -7.83   -7.12   -5.89   -4.11   -1.71    1.44    5.47   10.39   15.91
+    85.0    0.00   -0.22   -0.87   -1.88   -3.14   -4.51   -5.82   -6.93   -7.69   -8.00   -7.81   -7.10   -5.88   -4.13   -1.75    1.36    5.36   10.25   15.74
+    90.0    0.00   -0.22   -0.87   -1.87   -3.13   -4.49   -5.81   -6.92   -7.68   -7.99   -7.80   -7.10   -5.90   -4.16   -1.82    1.27    5.24   10.09   15.56
+    95.0    0.00   -0.22   -0.86   -1.87   -3.12   -4.49   -5.80   -6.91   -7.68   -7.99   -7.81   -7.12   -5.93   -4.21   -1.90    1.16    5.10    9.92   15.37
+   100.0    0.00   -0.21   -0.86   -1.87   -3.12   -4.48   -5.80   -6.91   -7.68   -8.01   -7.84   -7.16   -5.98   -4.29   -1.99    1.04    4.96    9.76   15.18
+   105.0    0.00   -0.21   -0.86   -1.86   -3.12   -4.49   -5.81   -6.93   -7.70   -8.04   -7.88   -7.21   -6.05   -4.37   -2.09    0.93    4.82    9.60   15.00
+   110.0    0.00   -0.21   -0.86   -1.87   -3.13   -4.50   -5.82   -6.95   -7.73   -8.07   -7.93   -7.28   -6.13   -4.47   -2.20    0.81    4.69    9.46   14.84
+   115.0    0.00   -0.21   -0.86   -1.87   -3.13   -4.51   -5.84   -6.97   -7.76   -8.12   -7.99   -7.35   -6.22   -4.56   -2.30    0.71    4.59    9.34   14.71
+   120.0    0.00   -0.21   -0.86   -1.87   -3.15   -4.53   -5.87   -7.00   -7.80   -8.17   -8.05   -7.43   -6.31   -4.66   -2.39    0.62    4.50    9.24   14.60
+   125.0    0.00   -0.21   -0.86   -1.88   -3.16   -4.55   -5.89   -7.04   -7.85   -8.22   -8.12   -7.51   -6.39   -4.74   -2.47    0.55    4.44    9.18   14.52
+   130.0    0.00   -0.21   -0.86   -1.89   -3.17   -4.57   -5.92   -7.07   -7.89   -8.27   -8.18   -7.58   -6.47   -4.81   -2.53    0.51    4.40    9.13   14.47
+   135.0    0.00   -0.21   -0.86   -1.90   -3.19   -4.60   -5.95   -7.11   -7.93   -8.32   -8.23   -7.64   -6.53   -4.87   -2.57    0.47    4.37    9.11   14.44
+   140.0    0.00   -0.21   -0.87   -1.91   -3.21   -4.62   -5.98   -7.14   -7.96   -8.36   -8.28   -7.69   -6.58   -4.91   -2.60    0.46    4.37    9.10   14.43
+   145.0    0.00   -0.21   -0.87   -1.91   -3.22   -4.64   -6.01   -7.17   -8.00   -8.39   -8.31   -7.72   -6.61   -4.93   -2.62    0.45    4.36    9.10   14.44
+   150.0    0.00   -0.21   -0.87   -1.92   -3.24   -4.66   -6.04   -7.20   -8.02   -8.42   -8.33   -7.74   -6.63   -4.94   -2.62    0.45    4.37    9.10   14.45
+   155.0    0.00   -0.21   -0.87   -1.93   -3.25   -4.68   -6.06   -7.22   -8.05   -8.44   -8.35   -7.75   -6.63   -4.94   -2.62    0.46    4.36    9.10   14.46
+   160.0    0.00   -0.21   -0.88   -1.93   -3.26   -4.69   -6.07   -7.24   -8.06   -8.45   -8.35   -7.75   -6.62   -4.94   -2.61    0.45    4.36    9.09   14.46
+   165.0    0.00   -0.21   -0.88   -1.94   -3.27   -4.70   -6.09   -7.25   -8.07   -8.46   -8.35   -7.74   -6.61   -4.93   -2.61    0.45    4.34    9.08   14.46
+   170.0    0.00   -0.21   -0.88   -1.94   -3.27   -4.71   -6.10   -7.26   -8.08   -8.46   -8.35   -7.73   -6.60   -4.92   -2.61    0.43    4.32    9.05   14.44
+   175.0    0.00   -0.21   -0.88   -1.94   -3.27   -4.71   -6.10   -7.27   -8.08   -8.46   -8.34   -7.72   -6.59   -4.91   -2.61    0.42    4.29    9.02   14.41
+   180.0    0.00   -0.21   -0.88   -1.94   -3.27   -4.71   -6.10   -7.27   -8.08   -8.46   -8.34   -7.71   -6.57   -4.90   -2.62    0.40    4.26    9.00   14.38
+   185.0    0.00   -0.21   -0.88   -1.93   -3.26   -4.70   -6.09   -7.26   -8.08   -8.45   -8.33   -7.70   -6.56   -4.90   -2.62    0.38    4.24    8.98   14.35
+   190.0    0.00   -0.21   -0.87   -1.93   -3.25   -4.69   -6.08   -7.25   -8.07   -8.44   -8.32   -7.69   -6.55   -4.89   -2.62    0.38    4.24    8.98   14.33
+   195.0    0.00   -0.21   -0.87   -1.92   -3.24   -4.68   -6.07   -7.24   -8.06   -8.43   -8.30   -7.67   -6.54   -4.88   -2.61    0.39    4.26    9.00   14.33
+   200.0    0.00   -0.21   -0.87   -1.92   -3.23   -4.67   -6.05   -7.22   -8.04   -8.41   -8.29   -7.65   -6.52   -4.86   -2.59    0.42    4.30    9.06   14.37
+   205.0    0.00   -0.21   -0.87   -1.91   -3.22   -4.65   -6.03   -7.20   -8.02   -8.39   -8.26   -7.62   -6.48   -4.82   -2.55    0.47    4.38    9.15   14.44
+   210.0    0.00   -0.21   -0.87   -1.90   -3.21   -4.63   -6.01   -7.18   -8.00   -8.36   -8.23   -7.58   -6.44   -4.77   -2.49    0.55    4.48    9.28   14.55
+   215.0    0.00   -0.21   -0.87   -1.90   -3.20   -4.61   -5.99   -7.15   -7.97   -8.33   -8.18   -7.53   -6.38   -4.70   -2.41    0.65    4.61    9.43   14.69
+   220.0    0.00   -0.21   -0.87   -1.89   -3.19   -4.60   -5.97   -7.13   -7.93   -8.28   -8.13   -7.47   -6.31   -4.62   -2.31    0.78    4.77    9.61   14.87
+   225.0    0.00   -0.21   -0.87   -1.89   -3.18   -4.58   -5.94   -7.10   -7.89   -8.24   -8.07   -7.40   -6.22   -4.52   -2.19    0.91    4.93    9.80   15.07
+   230.0    0.00   -0.21   -0.87   -1.89   -3.17   -4.57   -5.92   -7.07   -7.85   -8.18   -8.01   -7.32   -6.13   -4.41   -2.07    1.06    5.10    9.98   15.28
+   235.0    0.00   -0.22   -0.87   -1.89   -3.16   -4.56   -5.90   -7.03   -7.81   -8.13   -7.94   -7.24   -6.03   -4.30   -1.94    1.20    5.25   10.15   15.47
+   240.0    0.00   -0.22   -0.87   -1.89   -3.16   -4.55   -5.88   -7.01   -7.77   -8.07   -7.87   -7.16   -5.94   -4.19   -1.82    1.33    5.39   10.29   15.63
+   245.0    0.00   -0.22   -0.87   -1.89   -3.16   -4.54   -5.87   -6.98   -7.73   -8.02   -7.81   -7.08   -5.86   -4.10   -1.71    1.44    5.49   10.39   15.74
+   250.0    0.00   -0.22   -0.88   -1.90   -3.17   -4.54   -5.86   -6.96   -7.70   -7.98   -7.76   -7.02   -5.79   -4.01   -1.62    1.53    5.56   10.44   15.79
+   255.0    0.00   -0.23   -0.88   -1.90   -3.17   -4.54   -5.86   -6.95   -7.68   -7.95   -7.72   -6.98   -5.73   -3.96   -1.56    1.58    5.58   10.43   15.78
+   260.0    0.00   -0.23   -0.89   -1.91   -3.18   -4.55   -5.86   -6.94   -7.66   -7.93   -7.70   -6.96   -5.71   -3.92   -1.53    1.59    5.57   10.37   15.71
+   265.0    0.00   -0.23   -0.90   -1.92   -3.19   -4.56   -5.86   -6.94   -7.66   -7.93   -7.70   -6.96   -5.70   -3.92   -1.53    1.57    5.51   10.26   15.58
+   270.0    0.00   -0.24   -0.91   -1.94   -3.21   -4.58   -5.88   -6.95   -7.67   -7.94   -7.71   -6.98   -5.73   -3.94   -1.56    1.52    5.41   10.11   15.40
+   275.0    0.00   -0.24   -0.92   -1.95   -3.23   -4.60   -5.90   -6.97   -7.69   -7.96   -7.74   -7.02   -5.77   -4.00   -1.62    1.44    5.28    9.93   15.20
+   280.0    0.00   -0.25   -0.93   -1.97   -3.25   -4.62   -5.93   -7.00   -7.72   -8.00   -7.79   -7.07   -5.84   -4.07   -1.71    1.33    5.14    9.74   14.98
+   285.0    0.00   -0.25   -0.94   -1.98   -3.27   -4.65   -5.96   -7.04   -7.77   -8.06   -7.86   -7.15   -5.92   -4.16   -1.81    1.21    4.99    9.55   14.77
+   290.0    0.00   -0.25   -0.95   -2.00   -3.30   -4.69   -6.00   -7.09   -7.82   -8.12   -7.93   -7.23   -6.01   -4.26   -1.92    1.08    4.84    9.38   14.58
+   295.0    0.00   -0.26   -0.96   -2.02   -3.33   -4.72   -6.04   -7.14   -7.88   -8.19   -8.00   -7.31   -6.11   -4.36   -2.04    0.96    4.70    9.23   14.43
+   300.0    0.00   -0.26   -0.97   -2.04   -3.35   -4.76   -6.09   -7.19   -7.95   -8.26   -8.08   -7.40   -6.20   -4.47   -2.15    0.83    4.58    9.10   14.31
+   305.0    0.00   -0.26   -0.98   -2.05   -3.38   -4.79   -6.14   -7.25   -8.01   -8.33   -8.16   -7.48   -6.29   -4.57   -2.26    0.73    4.47    9.01   14.22
+   310.0    0.00   -0.27   -0.98   -2.07   -3.40   -4.83   -6.18   -7.31   -8.08   -8.40   -8.23   -7.56   -6.37   -4.66   -2.35    0.63    4.40    8.96   14.17
+   315.0    0.00   -0.27   -0.99   -2.08   -3.43   -4.86   -6.23   -7.36   -8.14   -8.47   -8.30   -7.62   -6.44   -4.73   -2.43    0.56    4.34    8.93   14.15
+   320.0    0.00   -0.27   -1.00   -2.10   -3.45   -4.89   -6.27   -7.41   -8.19   -8.52   -8.35   -7.67   -6.49   -4.79   -2.49    0.50    4.31    8.92   14.15
+   325.0    0.00   -0.28   -1.01   -2.11   -3.46   -4.92   -6.30   -7.45   -8.24   -8.57   -8.39   -7.71   -6.53   -4.83   -2.54    0.47    4.29    8.93   14.15
+   330.0    0.00   -0.28   -1.01   -2.12   -3.48   -4.94   -6.33   -7.49   -8.28   -8.61   -8.43   -7.74   -6.56   -4.86   -2.56    0.45    4.29    8.95   14.16
+   335.0    0.00   -0.28   -1.02   -2.13   -3.49   -4.95   -6.35   -7.51   -8.31   -8.63   -8.45   -7.76   -6.57   -4.87   -2.57    0.45    4.31    8.98   14.16
+   340.0    0.00   -0.28   -1.02   -2.13   -3.50   -4.96   -6.36   -7.53   -8.33   -8.65   -8.46   -7.77   -6.57   -4.87   -2.57    0.46    4.33    9.01   14.16
+   345.0    0.00   -0.28   -1.02   -2.13   -3.50   -4.97   -6.37   -7.54   -8.33   -8.66   -8.46   -7.76   -6.57   -4.86   -2.56    0.48    4.36    9.04   14.16
+   350.0    0.00   -0.28   -1.02   -2.13   -3.50   -4.97   -6.37   -7.54   -8.34   -8.66   -8.46   -7.75   -6.55   -4.84   -2.53    0.51    4.39    9.07   14.17
+   355.0    0.00   -0.28   -1.02   -2.13   -3.49   -4.96   -6.37   -7.54   -8.33   -8.65   -8.45   -7.74   -6.53   -4.81   -2.50    0.54    4.43    9.11   14.20
+   360.0    0.00   -0.28   -1.01   -2.12   -3.49   -4.95   -6.35   -7.52   -8.32   -8.63   -8.43   -7.72   -6.51   -4.78   -2.47    0.58    4.48    9.16   14.25
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.10     -0.62    120.06                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.13   -0.52   -1.10   -1.82   -2.62   -3.43   -4.21   -4.85   -5.23   -5.25   -4.83   -3.98   -2.75   -1.23    0.59    2.86    5.83    9.66
+     0.0    0.00   -0.12   -0.48   -1.03   -1.72   -2.49   -3.29   -4.07   -4.73   -5.15   -5.20   -4.83   -4.05   -2.92   -1.50    0.25    2.53    5.61    9.51
+     5.0    0.00   -0.11   -0.47   -1.03   -1.71   -2.48   -3.29   -4.06   -4.72   -5.13   -5.20   -4.83   -4.05   -2.93   -1.51    0.25    2.54    5.58    9.37
+    10.0    0.00   -0.11   -0.47   -1.02   -1.71   -2.48   -3.28   -4.05   -4.71   -5.12   -5.19   -4.83   -4.06   -2.93   -1.51    0.26    2.55    5.55    9.26
+    15.0    0.00   -0.11   -0.46   -1.01   -1.71   -2.48   -3.28   -4.05   -4.70   -5.11   -5.17   -4.82   -4.05   -2.93   -1.50    0.27    2.55    5.53    9.17
+    20.0    0.00   -0.10   -0.45   -1.01   -1.70   -2.48   -3.28   -4.04   -4.69   -5.10   -5.16   -4.81   -4.04   -2.92   -1.48    0.29    2.57    5.52    9.12
+    25.0    0.00   -0.10   -0.45   -1.00   -1.70   -2.47   -3.28   -4.04   -4.68   -5.08   -5.14   -4.79   -4.02   -2.89   -1.45    0.32    2.59    5.52    9.12
+    30.0    0.00   -0.10   -0.44   -1.00   -1.69   -2.47   -3.27   -4.03   -4.67   -5.07   -5.13   -4.77   -3.99   -2.86   -1.41    0.36    2.61    5.53    9.16
+    35.0    0.00   -0.09   -0.44   -0.99   -1.69   -2.47   -3.27   -4.03   -4.66   -5.06   -5.11   -4.75   -3.96   -2.81   -1.36    0.41    2.65    5.57    9.23
+    40.0    0.00   -0.09   -0.44   -0.99   -1.68   -2.46   -3.27   -4.03   -4.66   -5.05   -5.10   -4.72   -3.92   -2.76   -1.30    0.47    2.69    5.61    9.34
+    45.0    0.00   -0.09   -0.43   -0.98   -1.68   -2.46   -3.26   -4.02   -4.66   -5.05   -5.09   -4.70   -3.88   -2.70   -1.23    0.53    2.74    5.66    9.47
+    50.0    0.00   -0.09   -0.43   -0.98   -1.67   -2.46   -3.26   -4.03   -4.66   -5.05   -5.08   -4.68   -3.84   -2.65   -1.17    0.59    2.79    5.72    9.60
+    55.0    0.00   -0.09   -0.43   -0.98   -1.67   -2.45   -3.26   -4.03   -4.66   -5.05   -5.07   -4.66   -3.81   -2.59   -1.11    0.65    2.84    5.77    9.73
+    60.0    0.00   -0.09   -0.43   -0.98   -1.67   -2.46   -3.27   -4.04   -4.67   -5.06   -5.07   -4.64   -3.77   -2.55   -1.05    0.70    2.88    5.81    9.83
+    65.0    0.00   -0.09   -0.43   -0.98   -1.67   -2.46   -3.27   -4.05   -4.69   -5.07   -5.07   -4.63   -3.75   -2.51   -1.02    0.74    2.91    5.84    9.91
+    70.0    0.00   -0.09   -0.43   -0.98   -1.68   -2.47   -3.29   -4.06   -4.70   -5.08   -5.08   -4.63   -3.74   -2.49   -0.99    0.75    2.92    5.85    9.95
+    75.0    0.00   -0.09   -0.43   -0.99   -1.69   -2.48   -3.30   -4.08   -4.72   -5.10   -5.09   -4.63   -3.74   -2.49   -0.99    0.76    2.92    5.85    9.96
+    80.0    0.00   -0.09   -0.44   -0.99   -1.70   -2.50   -3.32   -4.11   -4.74   -5.12   -5.11   -4.64   -3.74   -2.50   -1.00    0.74    2.90    5.82    9.93
+    85.0    0.00   -0.10   -0.44   -1.00   -1.71   -2.52   -3.35   -4.13   -4.77   -5.14   -5.12   -4.66   -3.76   -2.52   -1.03    0.71    2.86    5.78    9.86
+    90.0    0.00   -0.10   -0.45   -1.02   -1.73   -2.54   -3.37   -4.16   -4.79   -5.16   -5.14   -4.68   -3.79   -2.56   -1.07    0.66    2.82    5.73    9.78
+    95.0    0.00   -0.10   -0.46   -1.03   -1.75   -2.57   -3.40   -4.19   -4.82   -5.18   -5.16   -4.70   -3.82   -2.60   -1.12    0.61    2.77    5.67    9.68
+   100.0    0.00   -0.10   -0.47   -1.05   -1.78   -2.59   -3.43   -4.22   -4.84   -5.20   -5.18   -4.73   -3.86   -2.65   -1.18    0.56    2.72    5.61    9.58
+   105.0    0.00   -0.11   -0.48   -1.06   -1.80   -2.62   -3.46   -4.24   -4.87   -5.22   -5.20   -4.75   -3.90   -2.70   -1.23    0.52    2.68    5.56    9.48
+   110.0    0.00   -0.11   -0.49   -1.08   -1.82   -2.65   -3.49   -4.27   -4.89   -5.24   -5.22   -4.78   -3.93   -2.74   -1.27    0.48    2.66    5.53    9.40
+   115.0    0.00   -0.12   -0.50   -1.10   -1.85   -2.68   -3.52   -4.29   -4.90   -5.25   -5.24   -4.80   -3.96   -2.77   -1.30    0.46    2.65    5.51    9.33
+   120.0    0.00   -0.12   -0.51   -1.11   -1.87   -2.70   -3.54   -4.31   -4.92   -5.26   -5.25   -4.83   -3.99   -2.79   -1.31    0.46    2.66    5.51    9.29
+   125.0    0.00   -0.12   -0.52   -1.13   -1.89   -2.72   -3.56   -4.32   -4.93   -5.27   -5.26   -4.84   -4.00   -2.80   -1.31    0.48    2.69    5.53    9.26
+   130.0    0.00   -0.13   -0.52   -1.14   -1.91   -2.74   -3.57   -4.33   -4.93   -5.28   -5.28   -4.86   -4.01   -2.80   -1.29    0.52    2.73    5.57    9.26
+   135.0    0.00   -0.13   -0.53   -1.15   -1.92   -2.75   -3.58   -4.34   -4.94   -5.29   -5.29   -4.87   -4.02   -2.79   -1.26    0.57    2.79    5.61    9.27
+   140.0    0.00   -0.13   -0.54   -1.16   -1.93   -2.76   -3.59   -4.34   -4.94   -5.29   -5.30   -4.87   -4.02   -2.78   -1.22    0.62    2.85    5.66    9.28
+   145.0    0.00   -0.14   -0.55   -1.17   -1.94   -2.77   -3.59   -4.34   -4.95   -5.30   -5.30   -4.88   -4.01   -2.75   -1.18    0.67    2.91    5.71    9.29
+   150.0    0.00   -0.14   -0.55   -1.18   -1.95   -2.77   -3.59   -4.34   -4.95   -5.31   -5.31   -4.89   -4.01   -2.74   -1.15    0.72    2.95    5.75    9.30
+   155.0    0.00   -0.14   -0.56   -1.18   -1.95   -2.77   -3.59   -4.34   -4.95   -5.32   -5.32   -4.89   -4.01   -2.72   -1.12    0.75    2.99    5.78    9.30
+   160.0    0.00   -0.15   -0.56   -1.18   -1.95   -2.77   -3.59   -4.34   -4.96   -5.33   -5.34   -4.90   -4.01   -2.72   -1.11    0.76    3.00    5.79    9.28
+   165.0    0.00   -0.15   -0.56   -1.18   -1.94   -2.76   -3.58   -4.34   -4.96   -5.34   -5.35   -4.91   -4.01   -2.72   -1.12    0.76    3.00    5.79    9.26
+   170.0    0.00   -0.15   -0.56   -1.18   -1.94   -2.75   -3.57   -4.34   -4.97   -5.35   -5.36   -4.92   -4.02   -2.73   -1.14    0.73    2.97    5.77    9.23
+   175.0    0.00   -0.15   -0.57   -1.18   -1.93   -2.74   -3.57   -4.34   -4.98   -5.36   -5.37   -4.93   -4.03   -2.75   -1.17    0.69    2.93    5.74    9.20
+   180.0    0.00   -0.16   -0.57   -1.18   -1.92   -2.74   -3.56   -4.34   -4.98   -5.37   -5.38   -4.94   -4.04   -2.77   -1.21    0.63    2.88    5.71    9.17
+   185.0    0.00   -0.16   -0.57   -1.17   -1.91   -2.73   -3.56   -4.35   -4.99   -5.38   -5.38   -4.94   -4.05   -2.79   -1.25    0.58    2.83    5.69    9.16
+   190.0    0.00   -0.16   -0.57   -1.17   -1.90   -2.72   -3.56   -4.35   -5.00   -5.39   -5.39   -4.93   -4.05   -2.81   -1.29    0.53    2.79    5.68    9.18
+   195.0    0.00   -0.16   -0.56   -1.16   -1.90   -2.71   -3.55   -4.35   -5.01   -5.39   -5.38   -4.92   -4.04   -2.81   -1.31    0.49    2.76    5.69    9.22
+   200.0    0.00   -0.16   -0.56   -1.16   -1.89   -2.70   -3.55   -4.35   -5.01   -5.39   -5.37   -4.91   -4.02   -2.80   -1.32    0.48    2.76    5.72    9.30
+   205.0    0.00   -0.16   -0.56   -1.16   -1.88   -2.70   -3.55   -4.35   -5.01   -5.39   -5.36   -4.88   -3.99   -2.78   -1.30    0.49    2.79    5.79    9.40
+   210.0    0.00   -0.16   -0.56   -1.15   -1.88   -2.69   -3.54   -4.35   -5.01   -5.38   -5.34   -4.86   -3.96   -2.74   -1.27    0.53    2.85    5.88    9.53
+   215.0    0.00   -0.17   -0.56   -1.15   -1.88   -2.69   -3.54   -4.35   -5.01   -5.37   -5.32   -4.83   -3.92   -2.70   -1.21    0.60    2.93    5.99    9.69
+   220.0    0.00   -0.17   -0.57   -1.15   -1.87   -2.69   -3.54   -4.35   -5.00   -5.36   -5.31   -4.80   -3.88   -2.64   -1.14    0.69    3.04    6.13    9.85
+   225.0    0.00   -0.17   -0.57   -1.15   -1.87   -2.69   -3.54   -4.34   -4.99   -5.35   -5.29   -4.78   -3.85   -2.59   -1.06    0.79    3.17    6.27   10.02
+   230.0    0.00   -0.17   -0.57   -1.15   -1.88   -2.69   -3.53   -4.33   -4.98   -5.34   -5.28   -4.76   -3.82   -2.54   -0.98    0.90    3.30    6.41   10.17
+   235.0    0.00   -0.17   -0.57   -1.16   -1.88   -2.69   -3.53   -4.33   -4.97   -5.32   -5.27   -4.76   -3.81   -2.50   -0.91    1.01    3.43    6.54   10.30
+   240.0    0.00   -0.17   -0.57   -1.16   -1.88   -2.69   -3.52   -4.32   -4.96   -5.32   -5.27   -4.76   -3.81   -2.48   -0.85    1.11    3.55    6.65   10.40
+   245.0    0.00   -0.17   -0.58   -1.17   -1.89   -2.69   -3.52   -4.31   -4.95   -5.31   -5.28   -4.78   -3.82   -2.48   -0.82    1.18    3.64    6.72   10.45
+   250.0    0.00   -0.17   -0.58   -1.17   -1.89   -2.69   -3.52   -4.30   -4.93   -5.31   -5.29   -4.81   -3.86   -2.50   -0.80    1.23    3.69    6.76   10.46
+   255.0    0.00   -0.17   -0.58   -1.18   -1.90   -2.69   -3.51   -4.29   -4.92   -5.30   -5.30   -4.84   -3.90   -2.54   -0.82    1.24    3.71    6.75   10.43
+   260.0    0.00   -0.17   -0.58   -1.18   -1.90   -2.70   -3.51   -4.27   -4.91   -5.30   -5.32   -4.88   -3.96   -2.59   -0.86    1.22    3.69    6.70   10.36
+   265.0    0.00   -0.17   -0.58   -1.18   -1.91   -2.70   -3.50   -4.26   -4.90   -5.30   -5.34   -4.92   -4.02   -2.66   -0.92    1.16    3.63    6.61   10.26
+   270.0    0.00   -0.17   -0.58   -1.19   -1.91   -2.70   -3.50   -4.25   -4.89   -5.30   -5.36   -4.96   -4.08   -2.73   -0.99    1.08    3.53    6.49   10.15
+   275.0    0.00   -0.17   -0.58   -1.19   -1.91   -2.70   -3.49   -4.24   -4.88   -5.29   -5.37   -4.99   -4.13   -2.80   -1.08    0.98    3.41    6.35   10.04
+   280.0    0.00   -0.17   -0.58   -1.19   -1.91   -2.69   -3.48   -4.23   -4.87   -5.29   -5.37   -5.02   -4.17   -2.86   -1.16    0.86    3.26    6.20    9.93
+   285.0    0.00   -0.17   -0.58   -1.18   -1.91   -2.69   -3.47   -4.22   -4.86   -5.28   -5.37   -5.03   -4.20   -2.92   -1.25    0.74    3.11    6.05    9.85
+   290.0    0.00   -0.16   -0.58   -1.18   -1.90   -2.68   -3.46   -4.21   -4.85   -5.27   -5.37   -5.03   -4.21   -2.95   -1.33    0.62    2.96    5.90    9.79
+   295.0    0.00   -0.16   -0.57   -1.17   -1.89   -2.67   -3.45   -4.20   -4.84   -5.26   -5.35   -5.02   -4.21   -2.98   -1.39    0.51    2.82    5.78    9.77
+   300.0    0.00   -0.16   -0.57   -1.16   -1.88   -2.65   -3.44   -4.19   -4.83   -5.25   -5.34   -4.99   -4.19   -2.98   -1.44    0.42    2.69    5.68    9.78
+   305.0    0.00   -0.16   -0.56   -1.15   -1.87   -2.64   -3.42   -4.18   -4.82   -5.24   -5.32   -4.97   -4.17   -2.98   -1.47    0.34    2.59    5.61    9.82
+   310.0    0.00   -0.15   -0.56   -1.14   -1.85   -2.62   -3.41   -4.16   -4.81   -5.23   -5.30   -4.94   -4.14   -2.96   -1.49    0.28    2.51    5.57    9.87
+   315.0    0.00   -0.15   -0.55   -1.13   -1.83   -2.60   -3.39   -4.15   -4.80   -5.21   -5.28   -4.91   -4.10   -2.94   -1.49    0.24    2.46    5.55    9.94
+   320.0    0.00   -0.15   -0.54   -1.12   -1.82   -2.58   -3.38   -4.14   -4.79   -5.20   -5.26   -4.88   -4.07   -2.91   -1.49    0.22    2.43    5.55   10.00
+   325.0    0.00   -0.14   -0.53   -1.11   -1.80   -2.57   -3.36   -4.13   -4.78   -5.19   -5.24   -4.86   -4.04   -2.89   -1.49    0.21    2.43    5.57   10.04
+   330.0    0.00   -0.14   -0.53   -1.10   -1.79   -2.55   -3.34   -4.12   -4.77   -5.19   -5.23   -4.84   -4.02   -2.88   -1.48    0.21    2.43    5.60   10.06
+   335.0    0.00   -0.14   -0.52   -1.08   -1.77   -2.53   -3.33   -4.11   -4.77   -5.18   -5.22   -4.83   -4.01   -2.87   -1.48    0.21    2.45    5.62   10.04
+   340.0    0.00   -0.13   -0.51   -1.07   -1.76   -2.52   -3.32   -4.10   -4.76   -5.17   -5.22   -4.82   -4.01   -2.87   -1.48    0.22    2.47    5.64    9.99
+   345.0    0.00   -0.13   -0.50   -1.06   -1.75   -2.51   -3.31   -4.09   -4.75   -5.17   -5.22   -4.82   -4.01   -2.87   -1.48    0.23    2.49    5.65    9.90
+   350.0    0.00   -0.12   -0.49   -1.05   -1.74   -2.50   -3.30   -4.08   -4.74   -5.16   -5.21   -4.83   -4.02   -2.89   -1.49    0.24    2.51    5.65    9.79
+   355.0    0.00   -0.12   -0.49   -1.04   -1.73   -2.49   -3.29   -4.07   -4.73   -5.15   -5.21   -4.83   -4.03   -2.90   -1.50    0.24    2.52    5.63    9.65
+   360.0    0.00   -0.12   -0.48   -1.03   -1.72   -2.49   -3.29   -4.07   -4.73   -5.15   -5.20   -4.83   -4.05   -2.92   -1.50    0.25    2.53    5.61    9.51
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH701933A_M    NONE                                        TYPE / SERIAL NO    
+FIELD               NGS/TUM                  2    20-APR-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.30     -0.76     88.74                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.74   -1.52   -2.67   -3.88   -5.09   -6.25   -7.29   -7.87   -8.20   -7.94   -7.36   -6.27   -4.54   -2.30    0.97    5.09
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.20      0.48    118.56                              NORTH / EAST / UP   
+   NOAZI    0.00   -2.43   -4.02   -4.90   -5.42   -5.82   -6.13   -6.61   -7.15   -7.63   -7.95   -7.93   -7.38   -6.15   -4.13   -0.71    4.36
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH701933A_M    SNOW                                        TYPE / SERIAL NO    
+FIELD               NGS/TUM                  2    10-AUG-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.40     -0.66     88.64                              NORTH / EAST / UP   
+   NOAZI    0.00    0.06   -0.52   -1.57   -2.98   -4.49   -6.05   -7.29   -8.27   -8.60   -8.44   -7.76   -6.37   -4.34   -1.60    1.97    6.49
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.20      0.48    116.66                              NORTH / EAST / UP   
+   NOAZI    0.00   -2.53   -4.02   -4.70   -5.12   -5.42   -5.73   -6.11   -6.65   -7.13   -7.55   -7.63   -7.08   -5.85   -3.63   -0.01    5.66
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH701933B_M    NONE                                        TYPE / SERIAL NO    
+FIELD               NGS/TUM                  2    20-APR-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.30     -0.76     88.74                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.74   -1.52   -2.67   -3.88   -5.09   -6.25   -7.29   -7.87   -8.20   -7.94   -7.36   -6.27   -4.54   -2.30    0.97    5.09
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.20      0.48    118.56                              NORTH / EAST / UP   
+   NOAZI    0.00   -2.43   -4.02   -4.90   -5.42   -5.82   -6.13   -6.61   -7.15   -7.63   -7.95   -7.93   -7.38   -6.15   -4.13   -0.71    4.36
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH701933B_M    SNOW                                        TYPE / SERIAL NO    
+FIELD               NGS/TUM                  2    20-APR-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.40     -0.66     88.64                              NORTH / EAST / UP   
+   NOAZI    0.00    0.06   -0.52   -1.57   -2.98   -4.49   -6.05   -7.29   -8.27   -8.60   -8.44   -7.76   -6.37   -4.34   -1.60    1.97    6.49
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.20      0.48    116.66                              NORTH / EAST / UP   
+   NOAZI    0.00   -2.53   -4.02   -4.70   -5.12   -5.42   -5.73   -6.11   -6.65   -7.13   -7.55   -7.63   -7.08   -5.85   -3.63   -0.01    5.66
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH701933C_M    NONE                                        TYPE / SERIAL NO    
+FIELD               NGS/TUM                  2    20-APR-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.30     -0.76     88.74                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.74   -1.52   -2.67   -3.88   -5.09   -6.25   -7.29   -7.87   -8.20   -7.94   -7.36   -6.27   -4.54   -2.30    0.97    5.09
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.20      0.48    118.56                              NORTH / EAST / UP   
+   NOAZI    0.00   -2.43   -4.02   -4.90   -5.42   -5.82   -6.13   -6.61   -7.15   -7.63   -7.95   -7.93   -7.38   -6.15   -4.13   -0.71    4.36
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH701933C_M    SCIS                                        TYPE / SERIAL NO    
+FIELD               NGS/TUM                  2    19-MAR-08 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.70     -0.76     86.74                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.54   -1.52   -2.77   -4.38   -6.09   -7.55   -8.79   -9.57   -9.90   -9.64   -8.86   -7.37   -5.44   -2.90    0.47    4.59
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.90     -0.42    117.56                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.53   -1.12   -1.90   -2.62   -3.42   -4.23   -5.01   -5.65   -6.03   -6.05   -5.73   -4.88   -3.55   -1.93    0.09    2.76
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH701933C_M    SCIT                                        TYPE / SERIAL NO    
+FIELD               NGS/TUM                  2    19-MAR-08 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.90     -1.06     87.84                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.84   -2.02   -3.37   -4.78   -6.29   -7.65   -8.79   -9.47   -9.70   -9.54   -8.86   -7.67   -5.94   -3.70   -0.63    3.29
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.30     -0.92    117.36                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.03   -0.42   -1.00   -1.72   -2.52   -3.33   -4.11   -4.85   -5.23   -5.35   -4.83   -3.88   -2.55   -0.73    1.39    4.06
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH701933C_M    SNOW                                        TYPE / SERIAL NO    
+FIELD               NGS/TUM                  2    10-AUG-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.40     -0.66     88.64                              NORTH / EAST / UP   
+   NOAZI    0.00    0.06   -0.52   -1.57   -2.98   -4.49   -6.05   -7.29   -8.27   -8.60   -8.44   -7.76   -6.37   -4.34   -1.60    1.97    6.49
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.20      0.48    116.66                              NORTH / EAST / UP   
+   NOAZI    0.00   -2.53   -4.02   -4.70   -5.12   -5.42   -5.73   -6.11   -6.65   -7.13   -7.55   -7.63   -7.08   -5.85   -3.63   -0.01    5.66
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH701941.1     NONE                                        TYPE / SERIAL NO    
+CONVERTED           NGS/TUM                  0    16-APR-03 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+      0.40     -0.36     89.24                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.54   -1.42   -2.47   -3.68   -4.99   -6.25   -7.29   -7.97   -8.20   -8.04   -7.46   -6.27   -4.64   -2.40    0.67    4.59
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.40     -0.42    118.76                              NORTH / EAST / UP   
+   NOAZI    0.00   -2.33   -3.82   -4.60   -5.12   -5.52   -5.93   -6.41   -6.95   -7.43   -7.75   -7.73   -7.18   -5.95   -3.93   -0.71    4.16
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH701941.2     NONE                                        TYPE / SERIAL NO    
+CONVERTED           NGS/TUM                  0    16-APR-03 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+      0.40     -0.36     89.24                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.54   -1.42   -2.47   -3.68   -4.99   -6.25   -7.29   -7.97   -8.20   -8.04   -7.46   -6.27   -4.64   -2.40    0.67    4.59
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.40     -0.42    118.76                              NORTH / EAST / UP   
+   NOAZI    0.00   -2.33   -3.82   -4.60   -5.12   -5.52   -5.93   -6.41   -6.95   -7.43   -7.75   -7.73   -7.18   -5.95   -3.93   -0.71    4.16
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH701941.A     NONE                                        TYPE / SERIAL NO    
+CONVERTED           NGS/TUM                  0    16-APR-03 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+      0.40     -0.36     89.24                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.54   -1.42   -2.47   -3.68   -4.99   -6.25   -7.29   -7.97   -8.20   -8.04   -7.46   -6.27   -4.64   -2.40    0.67    4.59
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.40     -0.42    118.76                              NORTH / EAST / UP   
+   NOAZI    0.00   -2.33   -3.82   -4.60   -5.12   -5.52   -5.93   -6.41   -6.95   -7.43   -7.75   -7.73   -7.18   -5.95   -3.93   -0.71    4.16
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH701941.B     NONE                                        TYPE / SERIAL NO    
+CONVERTED           NGS/TUM                  0    16-APR-03 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+      0.40     -0.36     89.24                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.54   -1.42   -2.47   -3.68   -4.99   -6.25   -7.29   -7.97   -8.20   -8.04   -7.46   -6.27   -4.64   -2.40    0.67    4.59
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.40     -0.42    118.76                              NORTH / EAST / UP   
+   NOAZI    0.00   -2.33   -3.82   -4.60   -5.12   -5.52   -5.93   -6.41   -6.95   -7.43   -7.75   -7.73   -7.18   -5.95   -3.93   -0.71    4.16
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH701945B_M    NONE                                        TYPE / SERIAL NO    
+COPIED              TUM                      0    27-JAN-03 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+COPIED FROM AOAD/M_T                                        COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.60     -0.46     91.24                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.24   -0.92   -1.97   -3.28   -4.69   -6.05   -7.19   -7.97   -8.30   -8.14   -7.46   -6.27   -4.54   -2.20    0.87    4.79    9.56   14.88
+     0.0    0.00   -0.28   -1.01   -2.12   -3.49   -4.95   -6.35   -7.52   -8.32   -8.63   -8.43   -7.72   -6.51   -4.78   -2.47    0.58    4.48    9.16   14.25
+     5.0    0.00   -0.28   -1.01   -2.12   -3.48   -4.94   -6.34   -7.50   -8.30   -8.62   -8.42   -7.70   -6.48   -4.75   -2.42    0.63    4.53    9.23   14.33
+    10.0    0.00   -0.28   -1.01   -2.11   -3.46   -4.92   -6.32   -7.48   -8.27   -8.59   -8.39   -7.68   -6.46   -4.72   -2.38    0.69    4.60    9.32   14.45
+    15.0    0.00   -0.27   -1.00   -2.10   -3.45   -4.90   -6.29   -7.46   -8.25   -8.57   -8.37   -7.65   -6.43   -4.68   -2.33    0.75    4.69    9.43   14.61
+    20.0    0.00   -0.27   -0.99   -2.08   -3.43   -4.88   -6.27   -7.43   -8.22   -8.54   -8.35   -7.63   -6.40   -4.64   -2.28    0.83    4.78    9.56   14.80
+    25.0    0.00   -0.27   -0.98   -2.07   -3.41   -4.85   -6.24   -7.39   -8.19   -8.51   -8.32   -7.60   -6.37   -4.60   -2.22    0.90    4.89    9.71   15.02
+    30.0    0.00   -0.26   -0.98   -2.06   -3.39   -4.83   -6.21   -7.36   -8.15   -8.48   -8.29   -7.57   -6.33   -4.55   -2.15    0.99    5.00    9.87   15.25
+    35.0    0.00   -0.26   -0.97   -2.04   -3.37   -4.80   -6.17   -7.32   -8.11   -8.44   -8.25   -7.54   -6.29   -4.50   -2.09    1.08    5.12   10.03   15.48
+    40.0    0.00   -0.26   -0.96   -2.02   -3.34   -4.77   -6.13   -7.28   -8.07   -8.40   -8.21   -7.50   -6.25   -4.45   -2.02    1.17    5.25   10.19   15.70
+    45.0    0.00   -0.25   -0.95   -2.01   -3.32   -4.74   -6.10   -7.24   -8.03   -8.35   -8.17   -7.45   -6.20   -4.40   -1.95    1.26    5.36   10.34   15.89
+    50.0    0.00   -0.25   -0.94   -1.99   -3.29   -4.70   -6.06   -7.19   -7.98   -8.31   -8.12   -7.40   -6.15   -4.34   -1.88    1.34    5.46   10.46   16.05
+    55.0    0.00   -0.24   -0.93   -1.97   -3.27   -4.67   -6.02   -7.15   -7.93   -8.25   -8.07   -7.35   -6.10   -4.28   -1.82    1.41    5.54   10.55   16.15
+    60.0    0.00   -0.24   -0.92   -1.95   -3.24   -4.64   -5.98   -7.10   -7.88   -8.20   -8.01   -7.30   -6.04   -4.23   -1.76    1.47    5.59   10.60   16.20
+    65.0    0.00   -0.24   -0.91   -1.94   -3.22   -4.60   -5.94   -7.06   -7.83   -8.15   -7.96   -7.24   -5.99   -4.18   -1.72    1.50    5.61   10.60   16.20
+    70.0    0.00   -0.23   -0.90   -1.92   -3.19   -4.57   -5.90   -7.02   -7.79   -8.10   -7.91   -7.19   -5.94   -4.14   -1.70    1.50    5.60   10.57   16.14
+    75.0    0.00   -0.23   -0.89   -1.91   -3.17   -4.55   -5.87   -6.98   -7.75   -8.06   -7.87   -7.15   -5.91   -4.12   -1.70    1.48    5.55   10.50   16.04
+    80.0    0.00   -0.23   -0.88   -1.89   -3.16   -4.53   -5.84   -6.95   -7.72   -8.03   -7.83   -7.12   -5.89   -4.11   -1.71    1.44    5.47   10.39   15.91
+    85.0    0.00   -0.22   -0.87   -1.88   -3.14   -4.51   -5.82   -6.93   -7.69   -8.00   -7.81   -7.10   -5.88   -4.13   -1.75    1.36    5.36   10.25   15.74
+    90.0    0.00   -0.22   -0.87   -1.87   -3.13   -4.49   -5.81   -6.92   -7.68   -7.99   -7.80   -7.10   -5.90   -4.16   -1.82    1.27    5.24   10.09   15.56
+    95.0    0.00   -0.22   -0.86   -1.87   -3.12   -4.49   -5.80   -6.91   -7.68   -7.99   -7.81   -7.12   -5.93   -4.21   -1.90    1.16    5.10    9.92   15.37
+   100.0    0.00   -0.21   -0.86   -1.87   -3.12   -4.48   -5.80   -6.91   -7.68   -8.01   -7.84   -7.16   -5.98   -4.29   -1.99    1.04    4.96    9.76   15.18
+   105.0    0.00   -0.21   -0.86   -1.86   -3.12   -4.49   -5.81   -6.93   -7.70   -8.04   -7.88   -7.21   -6.05   -4.37   -2.09    0.93    4.82    9.60   15.00
+   110.0    0.00   -0.21   -0.86   -1.87   -3.13   -4.50   -5.82   -6.95   -7.73   -8.07   -7.93   -7.28   -6.13   -4.47   -2.20    0.81    4.69    9.46   14.84
+   115.0    0.00   -0.21   -0.86   -1.87   -3.13   -4.51   -5.84   -6.97   -7.76   -8.12   -7.99   -7.35   -6.22   -4.56   -2.30    0.71    4.59    9.34   14.71
+   120.0    0.00   -0.21   -0.86   -1.87   -3.15   -4.53   -5.87   -7.00   -7.80   -8.17   -8.05   -7.43   -6.31   -4.66   -2.39    0.62    4.50    9.24   14.60
+   125.0    0.00   -0.21   -0.86   -1.88   -3.16   -4.55   -5.89   -7.04   -7.85   -8.22   -8.12   -7.51   -6.39   -4.74   -2.47    0.55    4.44    9.18   14.52
+   130.0    0.00   -0.21   -0.86   -1.89   -3.17   -4.57   -5.92   -7.07   -7.89   -8.27   -8.18   -7.58   -6.47   -4.81   -2.53    0.51    4.40    9.13   14.47
+   135.0    0.00   -0.21   -0.86   -1.90   -3.19   -4.60   -5.95   -7.11   -7.93   -8.32   -8.23   -7.64   -6.53   -4.87   -2.57    0.47    4.37    9.11   14.44
+   140.0    0.00   -0.21   -0.87   -1.91   -3.21   -4.62   -5.98   -7.14   -7.96   -8.36   -8.28   -7.69   -6.58   -4.91   -2.60    0.46    4.37    9.10   14.43
+   145.0    0.00   -0.21   -0.87   -1.91   -3.22   -4.64   -6.01   -7.17   -8.00   -8.39   -8.31   -7.72   -6.61   -4.93   -2.62    0.45    4.36    9.10   14.44
+   150.0    0.00   -0.21   -0.87   -1.92   -3.24   -4.66   -6.04   -7.20   -8.02   -8.42   -8.33   -7.74   -6.63   -4.94   -2.62    0.45    4.37    9.10   14.45
+   155.0    0.00   -0.21   -0.87   -1.93   -3.25   -4.68   -6.06   -7.22   -8.05   -8.44   -8.35   -7.75   -6.63   -4.94   -2.62    0.46    4.36    9.10   14.46
+   160.0    0.00   -0.21   -0.88   -1.93   -3.26   -4.69   -6.07   -7.24   -8.06   -8.45   -8.35   -7.75   -6.62   -4.94   -2.61    0.45    4.36    9.09   14.46
+   165.0    0.00   -0.21   -0.88   -1.94   -3.27   -4.70   -6.09   -7.25   -8.07   -8.46   -8.35   -7.74   -6.61   -4.93   -2.61    0.45    4.34    9.08   14.46
+   170.0    0.00   -0.21   -0.88   -1.94   -3.27   -4.71   -6.10   -7.26   -8.08   -8.46   -8.35   -7.73   -6.60   -4.92   -2.61    0.43    4.32    9.05   14.44
+   175.0    0.00   -0.21   -0.88   -1.94   -3.27   -4.71   -6.10   -7.27   -8.08   -8.46   -8.34   -7.72   -6.59   -4.91   -2.61    0.42    4.29    9.02   14.41
+   180.0    0.00   -0.21   -0.88   -1.94   -3.27   -4.71   -6.10   -7.27   -8.08   -8.46   -8.34   -7.71   -6.57   -4.90   -2.62    0.40    4.26    9.00   14.38
+   185.0    0.00   -0.21   -0.88   -1.93   -3.26   -4.70   -6.09   -7.26   -8.08   -8.45   -8.33   -7.70   -6.56   -4.90   -2.62    0.38    4.24    8.98   14.35
+   190.0    0.00   -0.21   -0.87   -1.93   -3.25   -4.69   -6.08   -7.25   -8.07   -8.44   -8.32   -7.69   -6.55   -4.89   -2.62    0.38    4.24    8.98   14.33
+   195.0    0.00   -0.21   -0.87   -1.92   -3.24   -4.68   -6.07   -7.24   -8.06   -8.43   -8.30   -7.67   -6.54   -4.88   -2.61    0.39    4.26    9.00   14.33
+   200.0    0.00   -0.21   -0.87   -1.92   -3.23   -4.67   -6.05   -7.22   -8.04   -8.41   -8.29   -7.65   -6.52   -4.86   -2.59    0.42    4.30    9.06   14.37
+   205.0    0.00   -0.21   -0.87   -1.91   -3.22   -4.65   -6.03   -7.20   -8.02   -8.39   -8.26   -7.62   -6.48   -4.82   -2.55    0.47    4.38    9.15   14.44
+   210.0    0.00   -0.21   -0.87   -1.90   -3.21   -4.63   -6.01   -7.18   -8.00   -8.36   -8.23   -7.58   -6.44   -4.77   -2.49    0.55    4.48    9.28   14.55
+   215.0    0.00   -0.21   -0.87   -1.90   -3.20   -4.61   -5.99   -7.15   -7.97   -8.33   -8.18   -7.53   -6.38   -4.70   -2.41    0.65    4.61    9.43   14.69
+   220.0    0.00   -0.21   -0.87   -1.89   -3.19   -4.60   -5.97   -7.13   -7.93   -8.28   -8.13   -7.47   -6.31   -4.62   -2.31    0.78    4.77    9.61   14.87
+   225.0    0.00   -0.21   -0.87   -1.89   -3.18   -4.58   -5.94   -7.10   -7.89   -8.24   -8.07   -7.40   -6.22   -4.52   -2.19    0.91    4.93    9.80   15.07
+   230.0    0.00   -0.21   -0.87   -1.89   -3.17   -4.57   -5.92   -7.07   -7.85   -8.18   -8.01   -7.32   -6.13   -4.41   -2.07    1.06    5.10    9.98   15.28
+   235.0    0.00   -0.22   -0.87   -1.89   -3.16   -4.56   -5.90   -7.03   -7.81   -8.13   -7.94   -7.24   -6.03   -4.30   -1.94    1.20    5.25   10.15   15.47
+   240.0    0.00   -0.22   -0.87   -1.89   -3.16   -4.55   -5.88   -7.01   -7.77   -8.07   -7.87   -7.16   -5.94   -4.19   -1.82    1.33    5.39   10.29   15.63
+   245.0    0.00   -0.22   -0.87   -1.89   -3.16   -4.54   -5.87   -6.98   -7.73   -8.02   -7.81   -7.08   -5.86   -4.10   -1.71    1.44    5.49   10.39   15.74
+   250.0    0.00   -0.22   -0.88   -1.90   -3.17   -4.54   -5.86   -6.96   -7.70   -7.98   -7.76   -7.02   -5.79   -4.01   -1.62    1.53    5.56   10.44   15.79
+   255.0    0.00   -0.23   -0.88   -1.90   -3.17   -4.54   -5.86   -6.95   -7.68   -7.95   -7.72   -6.98   -5.73   -3.96   -1.56    1.58    5.58   10.43   15.78
+   260.0    0.00   -0.23   -0.89   -1.91   -3.18   -4.55   -5.86   -6.94   -7.66   -7.93   -7.70   -6.96   -5.71   -3.92   -1.53    1.59    5.57   10.37   15.71
+   265.0    0.00   -0.23   -0.90   -1.92   -3.19   -4.56   -5.86   -6.94   -7.66   -7.93   -7.70   -6.96   -5.70   -3.92   -1.53    1.57    5.51   10.26   15.58
+   270.0    0.00   -0.24   -0.91   -1.94   -3.21   -4.58   -5.88   -6.95   -7.67   -7.94   -7.71   -6.98   -5.73   -3.94   -1.56    1.52    5.41   10.11   15.40
+   275.0    0.00   -0.24   -0.92   -1.95   -3.23   -4.60   -5.90   -6.97   -7.69   -7.96   -7.74   -7.02   -5.77   -4.00   -1.62    1.44    5.28    9.93   15.20
+   280.0    0.00   -0.25   -0.93   -1.97   -3.25   -4.62   -5.93   -7.00   -7.72   -8.00   -7.79   -7.07   -5.84   -4.07   -1.71    1.33    5.14    9.74   14.98
+   285.0    0.00   -0.25   -0.94   -1.98   -3.27   -4.65   -5.96   -7.04   -7.77   -8.06   -7.86   -7.15   -5.92   -4.16   -1.81    1.21    4.99    9.55   14.77
+   290.0    0.00   -0.25   -0.95   -2.00   -3.30   -4.69   -6.00   -7.09   -7.82   -8.12   -7.93   -7.23   -6.01   -4.26   -1.92    1.08    4.84    9.38   14.58
+   295.0    0.00   -0.26   -0.96   -2.02   -3.33   -4.72   -6.04   -7.14   -7.88   -8.19   -8.00   -7.31   -6.11   -4.36   -2.04    0.96    4.70    9.23   14.43
+   300.0    0.00   -0.26   -0.97   -2.04   -3.35   -4.76   -6.09   -7.19   -7.95   -8.26   -8.08   -7.40   -6.20   -4.47   -2.15    0.83    4.58    9.10   14.31
+   305.0    0.00   -0.26   -0.98   -2.05   -3.38   -4.79   -6.14   -7.25   -8.01   -8.33   -8.16   -7.48   -6.29   -4.57   -2.26    0.73    4.47    9.01   14.22
+   310.0    0.00   -0.27   -0.98   -2.07   -3.40   -4.83   -6.18   -7.31   -8.08   -8.40   -8.23   -7.56   -6.37   -4.66   -2.35    0.63    4.40    8.96   14.17
+   315.0    0.00   -0.27   -0.99   -2.08   -3.43   -4.86   -6.23   -7.36   -8.14   -8.47   -8.30   -7.62   -6.44   -4.73   -2.43    0.56    4.34    8.93   14.15
+   320.0    0.00   -0.27   -1.00   -2.10   -3.45   -4.89   -6.27   -7.41   -8.19   -8.52   -8.35   -7.67   -6.49   -4.79   -2.49    0.50    4.31    8.92   14.15
+   325.0    0.00   -0.28   -1.01   -2.11   -3.46   -4.92   -6.30   -7.45   -8.24   -8.57   -8.39   -7.71   -6.53   -4.83   -2.54    0.47    4.29    8.93   14.15
+   330.0    0.00   -0.28   -1.01   -2.12   -3.48   -4.94   -6.33   -7.49   -8.28   -8.61   -8.43   -7.74   -6.56   -4.86   -2.56    0.45    4.29    8.95   14.16
+   335.0    0.00   -0.28   -1.02   -2.13   -3.49   -4.95   -6.35   -7.51   -8.31   -8.63   -8.45   -7.76   -6.57   -4.87   -2.57    0.45    4.31    8.98   14.16
+   340.0    0.00   -0.28   -1.02   -2.13   -3.50   -4.96   -6.36   -7.53   -8.33   -8.65   -8.46   -7.77   -6.57   -4.87   -2.57    0.46    4.33    9.01   14.16
+   345.0    0.00   -0.28   -1.02   -2.13   -3.50   -4.97   -6.37   -7.54   -8.33   -8.66   -8.46   -7.76   -6.57   -4.86   -2.56    0.48    4.36    9.04   14.16
+   350.0    0.00   -0.28   -1.02   -2.13   -3.50   -4.97   -6.37   -7.54   -8.34   -8.66   -8.46   -7.75   -6.55   -4.84   -2.53    0.51    4.39    9.07   14.17
+   355.0    0.00   -0.28   -1.02   -2.13   -3.49   -4.96   -6.37   -7.54   -8.33   -8.65   -8.45   -7.74   -6.53   -4.81   -2.50    0.54    4.43    9.11   14.20
+   360.0    0.00   -0.28   -1.01   -2.12   -3.49   -4.95   -6.35   -7.52   -8.32   -8.63   -8.43   -7.72   -6.51   -4.78   -2.47    0.58    4.48    9.16   14.25
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.10     -0.62    120.06                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.13   -0.52   -1.10   -1.82   -2.62   -3.43   -4.21   -4.85   -5.23   -5.25   -4.83   -3.98   -2.75   -1.23    0.59    2.86    5.83    9.66
+     0.0    0.00   -0.12   -0.48   -1.03   -1.72   -2.49   -3.29   -4.07   -4.73   -5.15   -5.20   -4.83   -4.05   -2.92   -1.50    0.25    2.53    5.61    9.51
+     5.0    0.00   -0.11   -0.47   -1.03   -1.71   -2.48   -3.29   -4.06   -4.72   -5.13   -5.20   -4.83   -4.05   -2.93   -1.51    0.25    2.54    5.58    9.37
+    10.0    0.00   -0.11   -0.47   -1.02   -1.71   -2.48   -3.28   -4.05   -4.71   -5.12   -5.19   -4.83   -4.06   -2.93   -1.51    0.26    2.55    5.55    9.26
+    15.0    0.00   -0.11   -0.46   -1.01   -1.71   -2.48   -3.28   -4.05   -4.70   -5.11   -5.17   -4.82   -4.05   -2.93   -1.50    0.27    2.55    5.53    9.17
+    20.0    0.00   -0.10   -0.45   -1.01   -1.70   -2.48   -3.28   -4.04   -4.69   -5.10   -5.16   -4.81   -4.04   -2.92   -1.48    0.29    2.57    5.52    9.12
+    25.0    0.00   -0.10   -0.45   -1.00   -1.70   -2.47   -3.28   -4.04   -4.68   -5.08   -5.14   -4.79   -4.02   -2.89   -1.45    0.32    2.59    5.52    9.12
+    30.0    0.00   -0.10   -0.44   -1.00   -1.69   -2.47   -3.27   -4.03   -4.67   -5.07   -5.13   -4.77   -3.99   -2.86   -1.41    0.36    2.61    5.53    9.16
+    35.0    0.00   -0.09   -0.44   -0.99   -1.69   -2.47   -3.27   -4.03   -4.66   -5.06   -5.11   -4.75   -3.96   -2.81   -1.36    0.41    2.65    5.57    9.23
+    40.0    0.00   -0.09   -0.44   -0.99   -1.68   -2.46   -3.27   -4.03   -4.66   -5.05   -5.10   -4.72   -3.92   -2.76   -1.30    0.47    2.69    5.61    9.34
+    45.0    0.00   -0.09   -0.43   -0.98   -1.68   -2.46   -3.26   -4.02   -4.66   -5.05   -5.09   -4.70   -3.88   -2.70   -1.23    0.53    2.74    5.66    9.47
+    50.0    0.00   -0.09   -0.43   -0.98   -1.67   -2.46   -3.26   -4.03   -4.66   -5.05   -5.08   -4.68   -3.84   -2.65   -1.17    0.59    2.79    5.72    9.60
+    55.0    0.00   -0.09   -0.43   -0.98   -1.67   -2.45   -3.26   -4.03   -4.66   -5.05   -5.07   -4.66   -3.81   -2.59   -1.11    0.65    2.84    5.77    9.73
+    60.0    0.00   -0.09   -0.43   -0.98   -1.67   -2.46   -3.27   -4.04   -4.67   -5.06   -5.07   -4.64   -3.77   -2.55   -1.05    0.70    2.88    5.81    9.83
+    65.0    0.00   -0.09   -0.43   -0.98   -1.67   -2.46   -3.27   -4.05   -4.69   -5.07   -5.07   -4.63   -3.75   -2.51   -1.02    0.74    2.91    5.84    9.91
+    70.0    0.00   -0.09   -0.43   -0.98   -1.68   -2.47   -3.29   -4.06   -4.70   -5.08   -5.08   -4.63   -3.74   -2.49   -0.99    0.75    2.92    5.85    9.95
+    75.0    0.00   -0.09   -0.43   -0.99   -1.69   -2.48   -3.30   -4.08   -4.72   -5.10   -5.09   -4.63   -3.74   -2.49   -0.99    0.76    2.92    5.85    9.96
+    80.0    0.00   -0.09   -0.44   -0.99   -1.70   -2.50   -3.32   -4.11   -4.74   -5.12   -5.11   -4.64   -3.74   -2.50   -1.00    0.74    2.90    5.82    9.93
+    85.0    0.00   -0.10   -0.44   -1.00   -1.71   -2.52   -3.35   -4.13   -4.77   -5.14   -5.12   -4.66   -3.76   -2.52   -1.03    0.71    2.86    5.78    9.86
+    90.0    0.00   -0.10   -0.45   -1.02   -1.73   -2.54   -3.37   -4.16   -4.79   -5.16   -5.14   -4.68   -3.79   -2.56   -1.07    0.66    2.82    5.73    9.78
+    95.0    0.00   -0.10   -0.46   -1.03   -1.75   -2.57   -3.40   -4.19   -4.82   -5.18   -5.16   -4.70   -3.82   -2.60   -1.12    0.61    2.77    5.67    9.68
+   100.0    0.00   -0.10   -0.47   -1.05   -1.78   -2.59   -3.43   -4.22   -4.84   -5.20   -5.18   -4.73   -3.86   -2.65   -1.18    0.56    2.72    5.61    9.58
+   105.0    0.00   -0.11   -0.48   -1.06   -1.80   -2.62   -3.46   -4.24   -4.87   -5.22   -5.20   -4.75   -3.90   -2.70   -1.23    0.52    2.68    5.56    9.48
+   110.0    0.00   -0.11   -0.49   -1.08   -1.82   -2.65   -3.49   -4.27   -4.89   -5.24   -5.22   -4.78   -3.93   -2.74   -1.27    0.48    2.66    5.53    9.40
+   115.0    0.00   -0.12   -0.50   -1.10   -1.85   -2.68   -3.52   -4.29   -4.90   -5.25   -5.24   -4.80   -3.96   -2.77   -1.30    0.46    2.65    5.51    9.33
+   120.0    0.00   -0.12   -0.51   -1.11   -1.87   -2.70   -3.54   -4.31   -4.92   -5.26   -5.25   -4.83   -3.99   -2.79   -1.31    0.46    2.66    5.51    9.29
+   125.0    0.00   -0.12   -0.52   -1.13   -1.89   -2.72   -3.56   -4.32   -4.93   -5.27   -5.26   -4.84   -4.00   -2.80   -1.31    0.48    2.69    5.53    9.26
+   130.0    0.00   -0.13   -0.52   -1.14   -1.91   -2.74   -3.57   -4.33   -4.93   -5.28   -5.28   -4.86   -4.01   -2.80   -1.29    0.52    2.73    5.57    9.26
+   135.0    0.00   -0.13   -0.53   -1.15   -1.92   -2.75   -3.58   -4.34   -4.94   -5.29   -5.29   -4.87   -4.02   -2.79   -1.26    0.57    2.79    5.61    9.27
+   140.0    0.00   -0.13   -0.54   -1.16   -1.93   -2.76   -3.59   -4.34   -4.94   -5.29   -5.30   -4.87   -4.02   -2.78   -1.22    0.62    2.85    5.66    9.28
+   145.0    0.00   -0.14   -0.55   -1.17   -1.94   -2.77   -3.59   -4.34   -4.95   -5.30   -5.30   -4.88   -4.01   -2.75   -1.18    0.67    2.91    5.71    9.29
+   150.0    0.00   -0.14   -0.55   -1.18   -1.95   -2.77   -3.59   -4.34   -4.95   -5.31   -5.31   -4.89   -4.01   -2.74   -1.15    0.72    2.95    5.75    9.30
+   155.0    0.00   -0.14   -0.56   -1.18   -1.95   -2.77   -3.59   -4.34   -4.95   -5.32   -5.32   -4.89   -4.01   -2.72   -1.12    0.75    2.99    5.78    9.30
+   160.0    0.00   -0.15   -0.56   -1.18   -1.95   -2.77   -3.59   -4.34   -4.96   -5.33   -5.34   -4.90   -4.01   -2.72   -1.11    0.76    3.00    5.79    9.28
+   165.0    0.00   -0.15   -0.56   -1.18   -1.94   -2.76   -3.58   -4.34   -4.96   -5.34   -5.35   -4.91   -4.01   -2.72   -1.12    0.76    3.00    5.79    9.26
+   170.0    0.00   -0.15   -0.56   -1.18   -1.94   -2.75   -3.57   -4.34   -4.97   -5.35   -5.36   -4.92   -4.02   -2.73   -1.14    0.73    2.97    5.77    9.23
+   175.0    0.00   -0.15   -0.57   -1.18   -1.93   -2.74   -3.57   -4.34   -4.98   -5.36   -5.37   -4.93   -4.03   -2.75   -1.17    0.69    2.93    5.74    9.20
+   180.0    0.00   -0.16   -0.57   -1.18   -1.92   -2.74   -3.56   -4.34   -4.98   -5.37   -5.38   -4.94   -4.04   -2.77   -1.21    0.63    2.88    5.71    9.17
+   185.0    0.00   -0.16   -0.57   -1.17   -1.91   -2.73   -3.56   -4.35   -4.99   -5.38   -5.38   -4.94   -4.05   -2.79   -1.25    0.58    2.83    5.69    9.16
+   190.0    0.00   -0.16   -0.57   -1.17   -1.90   -2.72   -3.56   -4.35   -5.00   -5.39   -5.39   -4.93   -4.05   -2.81   -1.29    0.53    2.79    5.68    9.18
+   195.0    0.00   -0.16   -0.56   -1.16   -1.90   -2.71   -3.55   -4.35   -5.01   -5.39   -5.38   -4.92   -4.04   -2.81   -1.31    0.49    2.76    5.69    9.22
+   200.0    0.00   -0.16   -0.56   -1.16   -1.89   -2.70   -3.55   -4.35   -5.01   -5.39   -5.37   -4.91   -4.02   -2.80   -1.32    0.48    2.76    5.72    9.30
+   205.0    0.00   -0.16   -0.56   -1.16   -1.88   -2.70   -3.55   -4.35   -5.01   -5.39   -5.36   -4.88   -3.99   -2.78   -1.30    0.49    2.79    5.79    9.40
+   210.0    0.00   -0.16   -0.56   -1.15   -1.88   -2.69   -3.54   -4.35   -5.01   -5.38   -5.34   -4.86   -3.96   -2.74   -1.27    0.53    2.85    5.88    9.53
+   215.0    0.00   -0.17   -0.56   -1.15   -1.88   -2.69   -3.54   -4.35   -5.01   -5.37   -5.32   -4.83   -3.92   -2.70   -1.21    0.60    2.93    5.99    9.69
+   220.0    0.00   -0.17   -0.57   -1.15   -1.87   -2.69   -3.54   -4.35   -5.00   -5.36   -5.31   -4.80   -3.88   -2.64   -1.14    0.69    3.04    6.13    9.85
+   225.0    0.00   -0.17   -0.57   -1.15   -1.87   -2.69   -3.54   -4.34   -4.99   -5.35   -5.29   -4.78   -3.85   -2.59   -1.06    0.79    3.17    6.27   10.02
+   230.0    0.00   -0.17   -0.57   -1.15   -1.88   -2.69   -3.53   -4.33   -4.98   -5.34   -5.28   -4.76   -3.82   -2.54   -0.98    0.90    3.30    6.41   10.17
+   235.0    0.00   -0.17   -0.57   -1.16   -1.88   -2.69   -3.53   -4.33   -4.97   -5.32   -5.27   -4.76   -3.81   -2.50   -0.91    1.01    3.43    6.54   10.30
+   240.0    0.00   -0.17   -0.57   -1.16   -1.88   -2.69   -3.52   -4.32   -4.96   -5.32   -5.27   -4.76   -3.81   -2.48   -0.85    1.11    3.55    6.65   10.40
+   245.0    0.00   -0.17   -0.58   -1.17   -1.89   -2.69   -3.52   -4.31   -4.95   -5.31   -5.28   -4.78   -3.82   -2.48   -0.82    1.18    3.64    6.72   10.45
+   250.0    0.00   -0.17   -0.58   -1.17   -1.89   -2.69   -3.52   -4.30   -4.93   -5.31   -5.29   -4.81   -3.86   -2.50   -0.80    1.23    3.69    6.76   10.46
+   255.0    0.00   -0.17   -0.58   -1.18   -1.90   -2.69   -3.51   -4.29   -4.92   -5.30   -5.30   -4.84   -3.90   -2.54   -0.82    1.24    3.71    6.75   10.43
+   260.0    0.00   -0.17   -0.58   -1.18   -1.90   -2.70   -3.51   -4.27   -4.91   -5.30   -5.32   -4.88   -3.96   -2.59   -0.86    1.22    3.69    6.70   10.36
+   265.0    0.00   -0.17   -0.58   -1.18   -1.91   -2.70   -3.50   -4.26   -4.90   -5.30   -5.34   -4.92   -4.02   -2.66   -0.92    1.16    3.63    6.61   10.26
+   270.0    0.00   -0.17   -0.58   -1.19   -1.91   -2.70   -3.50   -4.25   -4.89   -5.30   -5.36   -4.96   -4.08   -2.73   -0.99    1.08    3.53    6.49   10.15
+   275.0    0.00   -0.17   -0.58   -1.19   -1.91   -2.70   -3.49   -4.24   -4.88   -5.29   -5.37   -4.99   -4.13   -2.80   -1.08    0.98    3.41    6.35   10.04
+   280.0    0.00   -0.17   -0.58   -1.19   -1.91   -2.69   -3.48   -4.23   -4.87   -5.29   -5.37   -5.02   -4.17   -2.86   -1.16    0.86    3.26    6.20    9.93
+   285.0    0.00   -0.17   -0.58   -1.18   -1.91   -2.69   -3.47   -4.22   -4.86   -5.28   -5.37   -5.03   -4.20   -2.92   -1.25    0.74    3.11    6.05    9.85
+   290.0    0.00   -0.16   -0.58   -1.18   -1.90   -2.68   -3.46   -4.21   -4.85   -5.27   -5.37   -5.03   -4.21   -2.95   -1.33    0.62    2.96    5.90    9.79
+   295.0    0.00   -0.16   -0.57   -1.17   -1.89   -2.67   -3.45   -4.20   -4.84   -5.26   -5.35   -5.02   -4.21   -2.98   -1.39    0.51    2.82    5.78    9.77
+   300.0    0.00   -0.16   -0.57   -1.16   -1.88   -2.65   -3.44   -4.19   -4.83   -5.25   -5.34   -4.99   -4.19   -2.98   -1.44    0.42    2.69    5.68    9.78
+   305.0    0.00   -0.16   -0.56   -1.15   -1.87   -2.64   -3.42   -4.18   -4.82   -5.24   -5.32   -4.97   -4.17   -2.98   -1.47    0.34    2.59    5.61    9.82
+   310.0    0.00   -0.15   -0.56   -1.14   -1.85   -2.62   -3.41   -4.16   -4.81   -5.23   -5.30   -4.94   -4.14   -2.96   -1.49    0.28    2.51    5.57    9.87
+   315.0    0.00   -0.15   -0.55   -1.13   -1.83   -2.60   -3.39   -4.15   -4.80   -5.21   -5.28   -4.91   -4.10   -2.94   -1.49    0.24    2.46    5.55    9.94
+   320.0    0.00   -0.15   -0.54   -1.12   -1.82   -2.58   -3.38   -4.14   -4.79   -5.20   -5.26   -4.88   -4.07   -2.91   -1.49    0.22    2.43    5.55   10.00
+   325.0    0.00   -0.14   -0.53   -1.11   -1.80   -2.57   -3.36   -4.13   -4.78   -5.19   -5.24   -4.86   -4.04   -2.89   -1.49    0.21    2.43    5.57   10.04
+   330.0    0.00   -0.14   -0.53   -1.10   -1.79   -2.55   -3.34   -4.12   -4.77   -5.19   -5.23   -4.84   -4.02   -2.88   -1.48    0.21    2.43    5.60   10.06
+   335.0    0.00   -0.14   -0.52   -1.08   -1.77   -2.53   -3.33   -4.11   -4.77   -5.18   -5.22   -4.83   -4.01   -2.87   -1.48    0.21    2.45    5.62   10.04
+   340.0    0.00   -0.13   -0.51   -1.07   -1.76   -2.52   -3.32   -4.10   -4.76   -5.17   -5.22   -4.82   -4.01   -2.87   -1.48    0.22    2.47    5.64    9.99
+   345.0    0.00   -0.13   -0.50   -1.06   -1.75   -2.51   -3.31   -4.09   -4.75   -5.17   -5.22   -4.82   -4.01   -2.87   -1.48    0.23    2.49    5.65    9.90
+   350.0    0.00   -0.12   -0.49   -1.05   -1.74   -2.50   -3.30   -4.08   -4.74   -5.16   -5.21   -4.83   -4.02   -2.89   -1.49    0.24    2.51    5.65    9.79
+   355.0    0.00   -0.12   -0.49   -1.04   -1.73   -2.49   -3.29   -4.07   -4.73   -5.15   -5.21   -4.83   -4.03   -2.90   -1.50    0.24    2.52    5.63    9.65
+   360.0    0.00   -0.12   -0.48   -1.03   -1.72   -2.49   -3.29   -4.07   -4.73   -5.15   -5.20   -4.83   -4.05   -2.92   -1.50    0.25    2.53    5.61    9.51
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH701945B_M    SCIS                                        TYPE / SERIAL NO    
+FIELD               NGS/TUM                  2    20-APR-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.50      0.04     89.04                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.44   -1.42   -2.77   -4.18   -5.99   -7.45   -8.79   -9.57   -9.90   -9.74   -8.86   -7.67   -5.84   -3.30   -0.23    3.69
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.60     -0.02    118.96                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.43   -1.02   -1.80   -2.62   -3.42   -4.23   -5.01   -5.75   -6.23   -6.25   -5.83   -5.08   -3.75   -2.13   -0.11    2.56
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH701945B_M    SCIT                                        TYPE / SERIAL NO    
+FIELD               NGS/TUM                  3    20-APR-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.70     -0.36     88.64                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.54   -1.52   -2.87   -4.28   -5.89   -7.25   -8.39   -9.17   -9.40   -9.24   -8.46   -7.17   -5.44   -3.20   -0.23    3.39
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.20     -0.42    117.56                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.23   -0.62   -1.20   -1.92   -2.62   -3.43   -4.31   -4.95   -5.33   -5.45   -5.03   -4.18   -2.75   -1.03    1.29    4.26
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH701945B_M    SNOW                                        TYPE / SERIAL NO    
+FIELD               NGS/TUM                  4    20-APR-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      1.00      0.34     90.54                              NORTH / EAST / UP   
+   NOAZI    0.00    0.66    0.28   -0.67   -2.08   -3.79   -5.35   -6.79   -7.77   -8.30   -8.04   -7.26   -5.87   -3.84   -1.10    2.17    6.39
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.30     -0.32    118.26                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.33   -0.62   -1.20   -1.82   -2.52   -3.33   -4.11   -4.75   -5.13   -5.25   -4.93   -4.18   -2.85   -1.13    1.09    4.16
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH701945C_M    NONE                                        TYPE / SERIAL NO    
+COPIED              TUM                      0    27-JAN-03 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+COPIED FROM AOAD/M_T                                        COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.60     -0.46     91.24                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.24   -0.92   -1.97   -3.28   -4.69   -6.05   -7.19   -7.97   -8.30   -8.14   -7.46   -6.27   -4.54   -2.20    0.87    4.79    9.56   14.88
+     0.0    0.00   -0.28   -1.01   -2.12   -3.49   -4.95   -6.35   -7.52   -8.32   -8.63   -8.43   -7.72   -6.51   -4.78   -2.47    0.58    4.48    9.16   14.25
+     5.0    0.00   -0.28   -1.01   -2.12   -3.48   -4.94   -6.34   -7.50   -8.30   -8.62   -8.42   -7.70   -6.48   -4.75   -2.42    0.63    4.53    9.23   14.33
+    10.0    0.00   -0.28   -1.01   -2.11   -3.46   -4.92   -6.32   -7.48   -8.27   -8.59   -8.39   -7.68   -6.46   -4.72   -2.38    0.69    4.60    9.32   14.45
+    15.0    0.00   -0.27   -1.00   -2.10   -3.45   -4.90   -6.29   -7.46   -8.25   -8.57   -8.37   -7.65   -6.43   -4.68   -2.33    0.75    4.69    9.43   14.61
+    20.0    0.00   -0.27   -0.99   -2.08   -3.43   -4.88   -6.27   -7.43   -8.22   -8.54   -8.35   -7.63   -6.40   -4.64   -2.28    0.83    4.78    9.56   14.80
+    25.0    0.00   -0.27   -0.98   -2.07   -3.41   -4.85   -6.24   -7.39   -8.19   -8.51   -8.32   -7.60   -6.37   -4.60   -2.22    0.90    4.89    9.71   15.02
+    30.0    0.00   -0.26   -0.98   -2.06   -3.39   -4.83   -6.21   -7.36   -8.15   -8.48   -8.29   -7.57   -6.33   -4.55   -2.15    0.99    5.00    9.87   15.25
+    35.0    0.00   -0.26   -0.97   -2.04   -3.37   -4.80   -6.17   -7.32   -8.11   -8.44   -8.25   -7.54   -6.29   -4.50   -2.09    1.08    5.12   10.03   15.48
+    40.0    0.00   -0.26   -0.96   -2.02   -3.34   -4.77   -6.13   -7.28   -8.07   -8.40   -8.21   -7.50   -6.25   -4.45   -2.02    1.17    5.25   10.19   15.70
+    45.0    0.00   -0.25   -0.95   -2.01   -3.32   -4.74   -6.10   -7.24   -8.03   -8.35   -8.17   -7.45   -6.20   -4.40   -1.95    1.26    5.36   10.34   15.89
+    50.0    0.00   -0.25   -0.94   -1.99   -3.29   -4.70   -6.06   -7.19   -7.98   -8.31   -8.12   -7.40   -6.15   -4.34   -1.88    1.34    5.46   10.46   16.05
+    55.0    0.00   -0.24   -0.93   -1.97   -3.27   -4.67   -6.02   -7.15   -7.93   -8.25   -8.07   -7.35   -6.10   -4.28   -1.82    1.41    5.54   10.55   16.15
+    60.0    0.00   -0.24   -0.92   -1.95   -3.24   -4.64   -5.98   -7.10   -7.88   -8.20   -8.01   -7.30   -6.04   -4.23   -1.76    1.47    5.59   10.60   16.20
+    65.0    0.00   -0.24   -0.91   -1.94   -3.22   -4.60   -5.94   -7.06   -7.83   -8.15   -7.96   -7.24   -5.99   -4.18   -1.72    1.50    5.61   10.60   16.20
+    70.0    0.00   -0.23   -0.90   -1.92   -3.19   -4.57   -5.90   -7.02   -7.79   -8.10   -7.91   -7.19   -5.94   -4.14   -1.70    1.50    5.60   10.57   16.14
+    75.0    0.00   -0.23   -0.89   -1.91   -3.17   -4.55   -5.87   -6.98   -7.75   -8.06   -7.87   -7.15   -5.91   -4.12   -1.70    1.48    5.55   10.50   16.04
+    80.0    0.00   -0.23   -0.88   -1.89   -3.16   -4.53   -5.84   -6.95   -7.72   -8.03   -7.83   -7.12   -5.89   -4.11   -1.71    1.44    5.47   10.39   15.91
+    85.0    0.00   -0.22   -0.87   -1.88   -3.14   -4.51   -5.82   -6.93   -7.69   -8.00   -7.81   -7.10   -5.88   -4.13   -1.75    1.36    5.36   10.25   15.74
+    90.0    0.00   -0.22   -0.87   -1.87   -3.13   -4.49   -5.81   -6.92   -7.68   -7.99   -7.80   -7.10   -5.90   -4.16   -1.82    1.27    5.24   10.09   15.56
+    95.0    0.00   -0.22   -0.86   -1.87   -3.12   -4.49   -5.80   -6.91   -7.68   -7.99   -7.81   -7.12   -5.93   -4.21   -1.90    1.16    5.10    9.92   15.37
+   100.0    0.00   -0.21   -0.86   -1.87   -3.12   -4.48   -5.80   -6.91   -7.68   -8.01   -7.84   -7.16   -5.98   -4.29   -1.99    1.04    4.96    9.76   15.18
+   105.0    0.00   -0.21   -0.86   -1.86   -3.12   -4.49   -5.81   -6.93   -7.70   -8.04   -7.88   -7.21   -6.05   -4.37   -2.09    0.93    4.82    9.60   15.00
+   110.0    0.00   -0.21   -0.86   -1.87   -3.13   -4.50   -5.82   -6.95   -7.73   -8.07   -7.93   -7.28   -6.13   -4.47   -2.20    0.81    4.69    9.46   14.84
+   115.0    0.00   -0.21   -0.86   -1.87   -3.13   -4.51   -5.84   -6.97   -7.76   -8.12   -7.99   -7.35   -6.22   -4.56   -2.30    0.71    4.59    9.34   14.71
+   120.0    0.00   -0.21   -0.86   -1.87   -3.15   -4.53   -5.87   -7.00   -7.80   -8.17   -8.05   -7.43   -6.31   -4.66   -2.39    0.62    4.50    9.24   14.60
+   125.0    0.00   -0.21   -0.86   -1.88   -3.16   -4.55   -5.89   -7.04   -7.85   -8.22   -8.12   -7.51   -6.39   -4.74   -2.47    0.55    4.44    9.18   14.52
+   130.0    0.00   -0.21   -0.86   -1.89   -3.17   -4.57   -5.92   -7.07   -7.89   -8.27   -8.18   -7.58   -6.47   -4.81   -2.53    0.51    4.40    9.13   14.47
+   135.0    0.00   -0.21   -0.86   -1.90   -3.19   -4.60   -5.95   -7.11   -7.93   -8.32   -8.23   -7.64   -6.53   -4.87   -2.57    0.47    4.37    9.11   14.44
+   140.0    0.00   -0.21   -0.87   -1.91   -3.21   -4.62   -5.98   -7.14   -7.96   -8.36   -8.28   -7.69   -6.58   -4.91   -2.60    0.46    4.37    9.10   14.43
+   145.0    0.00   -0.21   -0.87   -1.91   -3.22   -4.64   -6.01   -7.17   -8.00   -8.39   -8.31   -7.72   -6.61   -4.93   -2.62    0.45    4.36    9.10   14.44
+   150.0    0.00   -0.21   -0.87   -1.92   -3.24   -4.66   -6.04   -7.20   -8.02   -8.42   -8.33   -7.74   -6.63   -4.94   -2.62    0.45    4.37    9.10   14.45
+   155.0    0.00   -0.21   -0.87   -1.93   -3.25   -4.68   -6.06   -7.22   -8.05   -8.44   -8.35   -7.75   -6.63   -4.94   -2.62    0.46    4.36    9.10   14.46
+   160.0    0.00   -0.21   -0.88   -1.93   -3.26   -4.69   -6.07   -7.24   -8.06   -8.45   -8.35   -7.75   -6.62   -4.94   -2.61    0.45    4.36    9.09   14.46
+   165.0    0.00   -0.21   -0.88   -1.94   -3.27   -4.70   -6.09   -7.25   -8.07   -8.46   -8.35   -7.74   -6.61   -4.93   -2.61    0.45    4.34    9.08   14.46
+   170.0    0.00   -0.21   -0.88   -1.94   -3.27   -4.71   -6.10   -7.26   -8.08   -8.46   -8.35   -7.73   -6.60   -4.92   -2.61    0.43    4.32    9.05   14.44
+   175.0    0.00   -0.21   -0.88   -1.94   -3.27   -4.71   -6.10   -7.27   -8.08   -8.46   -8.34   -7.72   -6.59   -4.91   -2.61    0.42    4.29    9.02   14.41
+   180.0    0.00   -0.21   -0.88   -1.94   -3.27   -4.71   -6.10   -7.27   -8.08   -8.46   -8.34   -7.71   -6.57   -4.90   -2.62    0.40    4.26    9.00   14.38
+   185.0    0.00   -0.21   -0.88   -1.93   -3.26   -4.70   -6.09   -7.26   -8.08   -8.45   -8.33   -7.70   -6.56   -4.90   -2.62    0.38    4.24    8.98   14.35
+   190.0    0.00   -0.21   -0.87   -1.93   -3.25   -4.69   -6.08   -7.25   -8.07   -8.44   -8.32   -7.69   -6.55   -4.89   -2.62    0.38    4.24    8.98   14.33
+   195.0    0.00   -0.21   -0.87   -1.92   -3.24   -4.68   -6.07   -7.24   -8.06   -8.43   -8.30   -7.67   -6.54   -4.88   -2.61    0.39    4.26    9.00   14.33
+   200.0    0.00   -0.21   -0.87   -1.92   -3.23   -4.67   -6.05   -7.22   -8.04   -8.41   -8.29   -7.65   -6.52   -4.86   -2.59    0.42    4.30    9.06   14.37
+   205.0    0.00   -0.21   -0.87   -1.91   -3.22   -4.65   -6.03   -7.20   -8.02   -8.39   -8.26   -7.62   -6.48   -4.82   -2.55    0.47    4.38    9.15   14.44
+   210.0    0.00   -0.21   -0.87   -1.90   -3.21   -4.63   -6.01   -7.18   -8.00   -8.36   -8.23   -7.58   -6.44   -4.77   -2.49    0.55    4.48    9.28   14.55
+   215.0    0.00   -0.21   -0.87   -1.90   -3.20   -4.61   -5.99   -7.15   -7.97   -8.33   -8.18   -7.53   -6.38   -4.70   -2.41    0.65    4.61    9.43   14.69
+   220.0    0.00   -0.21   -0.87   -1.89   -3.19   -4.60   -5.97   -7.13   -7.93   -8.28   -8.13   -7.47   -6.31   -4.62   -2.31    0.78    4.77    9.61   14.87
+   225.0    0.00   -0.21   -0.87   -1.89   -3.18   -4.58   -5.94   -7.10   -7.89   -8.24   -8.07   -7.40   -6.22   -4.52   -2.19    0.91    4.93    9.80   15.07
+   230.0    0.00   -0.21   -0.87   -1.89   -3.17   -4.57   -5.92   -7.07   -7.85   -8.18   -8.01   -7.32   -6.13   -4.41   -2.07    1.06    5.10    9.98   15.28
+   235.0    0.00   -0.22   -0.87   -1.89   -3.16   -4.56   -5.90   -7.03   -7.81   -8.13   -7.94   -7.24   -6.03   -4.30   -1.94    1.20    5.25   10.15   15.47
+   240.0    0.00   -0.22   -0.87   -1.89   -3.16   -4.55   -5.88   -7.01   -7.77   -8.07   -7.87   -7.16   -5.94   -4.19   -1.82    1.33    5.39   10.29   15.63
+   245.0    0.00   -0.22   -0.87   -1.89   -3.16   -4.54   -5.87   -6.98   -7.73   -8.02   -7.81   -7.08   -5.86   -4.10   -1.71    1.44    5.49   10.39   15.74
+   250.0    0.00   -0.22   -0.88   -1.90   -3.17   -4.54   -5.86   -6.96   -7.70   -7.98   -7.76   -7.02   -5.79   -4.01   -1.62    1.53    5.56   10.44   15.79
+   255.0    0.00   -0.23   -0.88   -1.90   -3.17   -4.54   -5.86   -6.95   -7.68   -7.95   -7.72   -6.98   -5.73   -3.96   -1.56    1.58    5.58   10.43   15.78
+   260.0    0.00   -0.23   -0.89   -1.91   -3.18   -4.55   -5.86   -6.94   -7.66   -7.93   -7.70   -6.96   -5.71   -3.92   -1.53    1.59    5.57   10.37   15.71
+   265.0    0.00   -0.23   -0.90   -1.92   -3.19   -4.56   -5.86   -6.94   -7.66   -7.93   -7.70   -6.96   -5.70   -3.92   -1.53    1.57    5.51   10.26   15.58
+   270.0    0.00   -0.24   -0.91   -1.94   -3.21   -4.58   -5.88   -6.95   -7.67   -7.94   -7.71   -6.98   -5.73   -3.94   -1.56    1.52    5.41   10.11   15.40
+   275.0    0.00   -0.24   -0.92   -1.95   -3.23   -4.60   -5.90   -6.97   -7.69   -7.96   -7.74   -7.02   -5.77   -4.00   -1.62    1.44    5.28    9.93   15.20
+   280.0    0.00   -0.25   -0.93   -1.97   -3.25   -4.62   -5.93   -7.00   -7.72   -8.00   -7.79   -7.07   -5.84   -4.07   -1.71    1.33    5.14    9.74   14.98
+   285.0    0.00   -0.25   -0.94   -1.98   -3.27   -4.65   -5.96   -7.04   -7.77   -8.06   -7.86   -7.15   -5.92   -4.16   -1.81    1.21    4.99    9.55   14.77
+   290.0    0.00   -0.25   -0.95   -2.00   -3.30   -4.69   -6.00   -7.09   -7.82   -8.12   -7.93   -7.23   -6.01   -4.26   -1.92    1.08    4.84    9.38   14.58
+   295.0    0.00   -0.26   -0.96   -2.02   -3.33   -4.72   -6.04   -7.14   -7.88   -8.19   -8.00   -7.31   -6.11   -4.36   -2.04    0.96    4.70    9.23   14.43
+   300.0    0.00   -0.26   -0.97   -2.04   -3.35   -4.76   -6.09   -7.19   -7.95   -8.26   -8.08   -7.40   -6.20   -4.47   -2.15    0.83    4.58    9.10   14.31
+   305.0    0.00   -0.26   -0.98   -2.05   -3.38   -4.79   -6.14   -7.25   -8.01   -8.33   -8.16   -7.48   -6.29   -4.57   -2.26    0.73    4.47    9.01   14.22
+   310.0    0.00   -0.27   -0.98   -2.07   -3.40   -4.83   -6.18   -7.31   -8.08   -8.40   -8.23   -7.56   -6.37   -4.66   -2.35    0.63    4.40    8.96   14.17
+   315.0    0.00   -0.27   -0.99   -2.08   -3.43   -4.86   -6.23   -7.36   -8.14   -8.47   -8.30   -7.62   -6.44   -4.73   -2.43    0.56    4.34    8.93   14.15
+   320.0    0.00   -0.27   -1.00   -2.10   -3.45   -4.89   -6.27   -7.41   -8.19   -8.52   -8.35   -7.67   -6.49   -4.79   -2.49    0.50    4.31    8.92   14.15
+   325.0    0.00   -0.28   -1.01   -2.11   -3.46   -4.92   -6.30   -7.45   -8.24   -8.57   -8.39   -7.71   -6.53   -4.83   -2.54    0.47    4.29    8.93   14.15
+   330.0    0.00   -0.28   -1.01   -2.12   -3.48   -4.94   -6.33   -7.49   -8.28   -8.61   -8.43   -7.74   -6.56   -4.86   -2.56    0.45    4.29    8.95   14.16
+   335.0    0.00   -0.28   -1.02   -2.13   -3.49   -4.95   -6.35   -7.51   -8.31   -8.63   -8.45   -7.76   -6.57   -4.87   -2.57    0.45    4.31    8.98   14.16
+   340.0    0.00   -0.28   -1.02   -2.13   -3.50   -4.96   -6.36   -7.53   -8.33   -8.65   -8.46   -7.77   -6.57   -4.87   -2.57    0.46    4.33    9.01   14.16
+   345.0    0.00   -0.28   -1.02   -2.13   -3.50   -4.97   -6.37   -7.54   -8.33   -8.66   -8.46   -7.76   -6.57   -4.86   -2.56    0.48    4.36    9.04   14.16
+   350.0    0.00   -0.28   -1.02   -2.13   -3.50   -4.97   -6.37   -7.54   -8.34   -8.66   -8.46   -7.75   -6.55   -4.84   -2.53    0.51    4.39    9.07   14.17
+   355.0    0.00   -0.28   -1.02   -2.13   -3.49   -4.96   -6.37   -7.54   -8.33   -8.65   -8.45   -7.74   -6.53   -4.81   -2.50    0.54    4.43    9.11   14.20
+   360.0    0.00   -0.28   -1.01   -2.12   -3.49   -4.95   -6.35   -7.52   -8.32   -8.63   -8.43   -7.72   -6.51   -4.78   -2.47    0.58    4.48    9.16   14.25
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.10     -0.62    120.06                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.13   -0.52   -1.10   -1.82   -2.62   -3.43   -4.21   -4.85   -5.23   -5.25   -4.83   -3.98   -2.75   -1.23    0.59    2.86    5.83    9.66
+     0.0    0.00   -0.12   -0.48   -1.03   -1.72   -2.49   -3.29   -4.07   -4.73   -5.15   -5.20   -4.83   -4.05   -2.92   -1.50    0.25    2.53    5.61    9.51
+     5.0    0.00   -0.11   -0.47   -1.03   -1.71   -2.48   -3.29   -4.06   -4.72   -5.13   -5.20   -4.83   -4.05   -2.93   -1.51    0.25    2.54    5.58    9.37
+    10.0    0.00   -0.11   -0.47   -1.02   -1.71   -2.48   -3.28   -4.05   -4.71   -5.12   -5.19   -4.83   -4.06   -2.93   -1.51    0.26    2.55    5.55    9.26
+    15.0    0.00   -0.11   -0.46   -1.01   -1.71   -2.48   -3.28   -4.05   -4.70   -5.11   -5.17   -4.82   -4.05   -2.93   -1.50    0.27    2.55    5.53    9.17
+    20.0    0.00   -0.10   -0.45   -1.01   -1.70   -2.48   -3.28   -4.04   -4.69   -5.10   -5.16   -4.81   -4.04   -2.92   -1.48    0.29    2.57    5.52    9.12
+    25.0    0.00   -0.10   -0.45   -1.00   -1.70   -2.47   -3.28   -4.04   -4.68   -5.08   -5.14   -4.79   -4.02   -2.89   -1.45    0.32    2.59    5.52    9.12
+    30.0    0.00   -0.10   -0.44   -1.00   -1.69   -2.47   -3.27   -4.03   -4.67   -5.07   -5.13   -4.77   -3.99   -2.86   -1.41    0.36    2.61    5.53    9.16
+    35.0    0.00   -0.09   -0.44   -0.99   -1.69   -2.47   -3.27   -4.03   -4.66   -5.06   -5.11   -4.75   -3.96   -2.81   -1.36    0.41    2.65    5.57    9.23
+    40.0    0.00   -0.09   -0.44   -0.99   -1.68   -2.46   -3.27   -4.03   -4.66   -5.05   -5.10   -4.72   -3.92   -2.76   -1.30    0.47    2.69    5.61    9.34
+    45.0    0.00   -0.09   -0.43   -0.98   -1.68   -2.46   -3.26   -4.02   -4.66   -5.05   -5.09   -4.70   -3.88   -2.70   -1.23    0.53    2.74    5.66    9.47
+    50.0    0.00   -0.09   -0.43   -0.98   -1.67   -2.46   -3.26   -4.03   -4.66   -5.05   -5.08   -4.68   -3.84   -2.65   -1.17    0.59    2.79    5.72    9.60
+    55.0    0.00   -0.09   -0.43   -0.98   -1.67   -2.45   -3.26   -4.03   -4.66   -5.05   -5.07   -4.66   -3.81   -2.59   -1.11    0.65    2.84    5.77    9.73
+    60.0    0.00   -0.09   -0.43   -0.98   -1.67   -2.46   -3.27   -4.04   -4.67   -5.06   -5.07   -4.64   -3.77   -2.55   -1.05    0.70    2.88    5.81    9.83
+    65.0    0.00   -0.09   -0.43   -0.98   -1.67   -2.46   -3.27   -4.05   -4.69   -5.07   -5.07   -4.63   -3.75   -2.51   -1.02    0.74    2.91    5.84    9.91
+    70.0    0.00   -0.09   -0.43   -0.98   -1.68   -2.47   -3.29   -4.06   -4.70   -5.08   -5.08   -4.63   -3.74   -2.49   -0.99    0.75    2.92    5.85    9.95
+    75.0    0.00   -0.09   -0.43   -0.99   -1.69   -2.48   -3.30   -4.08   -4.72   -5.10   -5.09   -4.63   -3.74   -2.49   -0.99    0.76    2.92    5.85    9.96
+    80.0    0.00   -0.09   -0.44   -0.99   -1.70   -2.50   -3.32   -4.11   -4.74   -5.12   -5.11   -4.64   -3.74   -2.50   -1.00    0.74    2.90    5.82    9.93
+    85.0    0.00   -0.10   -0.44   -1.00   -1.71   -2.52   -3.35   -4.13   -4.77   -5.14   -5.12   -4.66   -3.76   -2.52   -1.03    0.71    2.86    5.78    9.86
+    90.0    0.00   -0.10   -0.45   -1.02   -1.73   -2.54   -3.37   -4.16   -4.79   -5.16   -5.14   -4.68   -3.79   -2.56   -1.07    0.66    2.82    5.73    9.78
+    95.0    0.00   -0.10   -0.46   -1.03   -1.75   -2.57   -3.40   -4.19   -4.82   -5.18   -5.16   -4.70   -3.82   -2.60   -1.12    0.61    2.77    5.67    9.68
+   100.0    0.00   -0.10   -0.47   -1.05   -1.78   -2.59   -3.43   -4.22   -4.84   -5.20   -5.18   -4.73   -3.86   -2.65   -1.18    0.56    2.72    5.61    9.58
+   105.0    0.00   -0.11   -0.48   -1.06   -1.80   -2.62   -3.46   -4.24   -4.87   -5.22   -5.20   -4.75   -3.90   -2.70   -1.23    0.52    2.68    5.56    9.48
+   110.0    0.00   -0.11   -0.49   -1.08   -1.82   -2.65   -3.49   -4.27   -4.89   -5.24   -5.22   -4.78   -3.93   -2.74   -1.27    0.48    2.66    5.53    9.40
+   115.0    0.00   -0.12   -0.50   -1.10   -1.85   -2.68   -3.52   -4.29   -4.90   -5.25   -5.24   -4.80   -3.96   -2.77   -1.30    0.46    2.65    5.51    9.33
+   120.0    0.00   -0.12   -0.51   -1.11   -1.87   -2.70   -3.54   -4.31   -4.92   -5.26   -5.25   -4.83   -3.99   -2.79   -1.31    0.46    2.66    5.51    9.29
+   125.0    0.00   -0.12   -0.52   -1.13   -1.89   -2.72   -3.56   -4.32   -4.93   -5.27   -5.26   -4.84   -4.00   -2.80   -1.31    0.48    2.69    5.53    9.26
+   130.0    0.00   -0.13   -0.52   -1.14   -1.91   -2.74   -3.57   -4.33   -4.93   -5.28   -5.28   -4.86   -4.01   -2.80   -1.29    0.52    2.73    5.57    9.26
+   135.0    0.00   -0.13   -0.53   -1.15   -1.92   -2.75   -3.58   -4.34   -4.94   -5.29   -5.29   -4.87   -4.02   -2.79   -1.26    0.57    2.79    5.61    9.27
+   140.0    0.00   -0.13   -0.54   -1.16   -1.93   -2.76   -3.59   -4.34   -4.94   -5.29   -5.30   -4.87   -4.02   -2.78   -1.22    0.62    2.85    5.66    9.28
+   145.0    0.00   -0.14   -0.55   -1.17   -1.94   -2.77   -3.59   -4.34   -4.95   -5.30   -5.30   -4.88   -4.01   -2.75   -1.18    0.67    2.91    5.71    9.29
+   150.0    0.00   -0.14   -0.55   -1.18   -1.95   -2.77   -3.59   -4.34   -4.95   -5.31   -5.31   -4.89   -4.01   -2.74   -1.15    0.72    2.95    5.75    9.30
+   155.0    0.00   -0.14   -0.56   -1.18   -1.95   -2.77   -3.59   -4.34   -4.95   -5.32   -5.32   -4.89   -4.01   -2.72   -1.12    0.75    2.99    5.78    9.30
+   160.0    0.00   -0.15   -0.56   -1.18   -1.95   -2.77   -3.59   -4.34   -4.96   -5.33   -5.34   -4.90   -4.01   -2.72   -1.11    0.76    3.00    5.79    9.28
+   165.0    0.00   -0.15   -0.56   -1.18   -1.94   -2.76   -3.58   -4.34   -4.96   -5.34   -5.35   -4.91   -4.01   -2.72   -1.12    0.76    3.00    5.79    9.26
+   170.0    0.00   -0.15   -0.56   -1.18   -1.94   -2.75   -3.57   -4.34   -4.97   -5.35   -5.36   -4.92   -4.02   -2.73   -1.14    0.73    2.97    5.77    9.23
+   175.0    0.00   -0.15   -0.57   -1.18   -1.93   -2.74   -3.57   -4.34   -4.98   -5.36   -5.37   -4.93   -4.03   -2.75   -1.17    0.69    2.93    5.74    9.20
+   180.0    0.00   -0.16   -0.57   -1.18   -1.92   -2.74   -3.56   -4.34   -4.98   -5.37   -5.38   -4.94   -4.04   -2.77   -1.21    0.63    2.88    5.71    9.17
+   185.0    0.00   -0.16   -0.57   -1.17   -1.91   -2.73   -3.56   -4.35   -4.99   -5.38   -5.38   -4.94   -4.05   -2.79   -1.25    0.58    2.83    5.69    9.16
+   190.0    0.00   -0.16   -0.57   -1.17   -1.90   -2.72   -3.56   -4.35   -5.00   -5.39   -5.39   -4.93   -4.05   -2.81   -1.29    0.53    2.79    5.68    9.18
+   195.0    0.00   -0.16   -0.56   -1.16   -1.90   -2.71   -3.55   -4.35   -5.01   -5.39   -5.38   -4.92   -4.04   -2.81   -1.31    0.49    2.76    5.69    9.22
+   200.0    0.00   -0.16   -0.56   -1.16   -1.89   -2.70   -3.55   -4.35   -5.01   -5.39   -5.37   -4.91   -4.02   -2.80   -1.32    0.48    2.76    5.72    9.30
+   205.0    0.00   -0.16   -0.56   -1.16   -1.88   -2.70   -3.55   -4.35   -5.01   -5.39   -5.36   -4.88   -3.99   -2.78   -1.30    0.49    2.79    5.79    9.40
+   210.0    0.00   -0.16   -0.56   -1.15   -1.88   -2.69   -3.54   -4.35   -5.01   -5.38   -5.34   -4.86   -3.96   -2.74   -1.27    0.53    2.85    5.88    9.53
+   215.0    0.00   -0.17   -0.56   -1.15   -1.88   -2.69   -3.54   -4.35   -5.01   -5.37   -5.32   -4.83   -3.92   -2.70   -1.21    0.60    2.93    5.99    9.69
+   220.0    0.00   -0.17   -0.57   -1.15   -1.87   -2.69   -3.54   -4.35   -5.00   -5.36   -5.31   -4.80   -3.88   -2.64   -1.14    0.69    3.04    6.13    9.85
+   225.0    0.00   -0.17   -0.57   -1.15   -1.87   -2.69   -3.54   -4.34   -4.99   -5.35   -5.29   -4.78   -3.85   -2.59   -1.06    0.79    3.17    6.27   10.02
+   230.0    0.00   -0.17   -0.57   -1.15   -1.88   -2.69   -3.53   -4.33   -4.98   -5.34   -5.28   -4.76   -3.82   -2.54   -0.98    0.90    3.30    6.41   10.17
+   235.0    0.00   -0.17   -0.57   -1.16   -1.88   -2.69   -3.53   -4.33   -4.97   -5.32   -5.27   -4.76   -3.81   -2.50   -0.91    1.01    3.43    6.54   10.30
+   240.0    0.00   -0.17   -0.57   -1.16   -1.88   -2.69   -3.52   -4.32   -4.96   -5.32   -5.27   -4.76   -3.81   -2.48   -0.85    1.11    3.55    6.65   10.40
+   245.0    0.00   -0.17   -0.58   -1.17   -1.89   -2.69   -3.52   -4.31   -4.95   -5.31   -5.28   -4.78   -3.82   -2.48   -0.82    1.18    3.64    6.72   10.45
+   250.0    0.00   -0.17   -0.58   -1.17   -1.89   -2.69   -3.52   -4.30   -4.93   -5.31   -5.29   -4.81   -3.86   -2.50   -0.80    1.23    3.69    6.76   10.46
+   255.0    0.00   -0.17   -0.58   -1.18   -1.90   -2.69   -3.51   -4.29   -4.92   -5.30   -5.30   -4.84   -3.90   -2.54   -0.82    1.24    3.71    6.75   10.43
+   260.0    0.00   -0.17   -0.58   -1.18   -1.90   -2.70   -3.51   -4.27   -4.91   -5.30   -5.32   -4.88   -3.96   -2.59   -0.86    1.22    3.69    6.70   10.36
+   265.0    0.00   -0.17   -0.58   -1.18   -1.91   -2.70   -3.50   -4.26   -4.90   -5.30   -5.34   -4.92   -4.02   -2.66   -0.92    1.16    3.63    6.61   10.26
+   270.0    0.00   -0.17   -0.58   -1.19   -1.91   -2.70   -3.50   -4.25   -4.89   -5.30   -5.36   -4.96   -4.08   -2.73   -0.99    1.08    3.53    6.49   10.15
+   275.0    0.00   -0.17   -0.58   -1.19   -1.91   -2.70   -3.49   -4.24   -4.88   -5.29   -5.37   -4.99   -4.13   -2.80   -1.08    0.98    3.41    6.35   10.04
+   280.0    0.00   -0.17   -0.58   -1.19   -1.91   -2.69   -3.48   -4.23   -4.87   -5.29   -5.37   -5.02   -4.17   -2.86   -1.16    0.86    3.26    6.20    9.93
+   285.0    0.00   -0.17   -0.58   -1.18   -1.91   -2.69   -3.47   -4.22   -4.86   -5.28   -5.37   -5.03   -4.20   -2.92   -1.25    0.74    3.11    6.05    9.85
+   290.0    0.00   -0.16   -0.58   -1.18   -1.90   -2.68   -3.46   -4.21   -4.85   -5.27   -5.37   -5.03   -4.21   -2.95   -1.33    0.62    2.96    5.90    9.79
+   295.0    0.00   -0.16   -0.57   -1.17   -1.89   -2.67   -3.45   -4.20   -4.84   -5.26   -5.35   -5.02   -4.21   -2.98   -1.39    0.51    2.82    5.78    9.77
+   300.0    0.00   -0.16   -0.57   -1.16   -1.88   -2.65   -3.44   -4.19   -4.83   -5.25   -5.34   -4.99   -4.19   -2.98   -1.44    0.42    2.69    5.68    9.78
+   305.0    0.00   -0.16   -0.56   -1.15   -1.87   -2.64   -3.42   -4.18   -4.82   -5.24   -5.32   -4.97   -4.17   -2.98   -1.47    0.34    2.59    5.61    9.82
+   310.0    0.00   -0.15   -0.56   -1.14   -1.85   -2.62   -3.41   -4.16   -4.81   -5.23   -5.30   -4.94   -4.14   -2.96   -1.49    0.28    2.51    5.57    9.87
+   315.0    0.00   -0.15   -0.55   -1.13   -1.83   -2.60   -3.39   -4.15   -4.80   -5.21   -5.28   -4.91   -4.10   -2.94   -1.49    0.24    2.46    5.55    9.94
+   320.0    0.00   -0.15   -0.54   -1.12   -1.82   -2.58   -3.38   -4.14   -4.79   -5.20   -5.26   -4.88   -4.07   -2.91   -1.49    0.22    2.43    5.55   10.00
+   325.0    0.00   -0.14   -0.53   -1.11   -1.80   -2.57   -3.36   -4.13   -4.78   -5.19   -5.24   -4.86   -4.04   -2.89   -1.49    0.21    2.43    5.57   10.04
+   330.0    0.00   -0.14   -0.53   -1.10   -1.79   -2.55   -3.34   -4.12   -4.77   -5.19   -5.23   -4.84   -4.02   -2.88   -1.48    0.21    2.43    5.60   10.06
+   335.0    0.00   -0.14   -0.52   -1.08   -1.77   -2.53   -3.33   -4.11   -4.77   -5.18   -5.22   -4.83   -4.01   -2.87   -1.48    0.21    2.45    5.62   10.04
+   340.0    0.00   -0.13   -0.51   -1.07   -1.76   -2.52   -3.32   -4.10   -4.76   -5.17   -5.22   -4.82   -4.01   -2.87   -1.48    0.22    2.47    5.64    9.99
+   345.0    0.00   -0.13   -0.50   -1.06   -1.75   -2.51   -3.31   -4.09   -4.75   -5.17   -5.22   -4.82   -4.01   -2.87   -1.48    0.23    2.49    5.65    9.90
+   350.0    0.00   -0.12   -0.49   -1.05   -1.74   -2.50   -3.30   -4.08   -4.74   -5.16   -5.21   -4.83   -4.02   -2.89   -1.49    0.24    2.51    5.65    9.79
+   355.0    0.00   -0.12   -0.49   -1.04   -1.73   -2.49   -3.29   -4.07   -4.73   -5.15   -5.21   -4.83   -4.03   -2.90   -1.50    0.24    2.52    5.63    9.65
+   360.0    0.00   -0.12   -0.48   -1.03   -1.72   -2.49   -3.29   -4.07   -4.73   -5.15   -5.20   -4.83   -4.05   -2.92   -1.50    0.25    2.53    5.61    9.51
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH701945C_M    PFAN                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               1    02-MAR-09 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+      0.25     -0.55     85.58                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.23   -0.90   -1.90   -3.12   -4.44   -5.75   -6.94   -7.88   -8.40   -8.35   -7.59   -6.09   -3.91   -1.16    2.07    5.77   10.01   14.77
+     0.0    0.00   -0.34   -1.10   -2.17   -3.41   -4.67   -5.88   -6.95   -7.79   -8.29   -8.31   -7.73   -6.46   -4.51   -1.94    1.15    4.68    8.62   13.01
+     5.0    0.00   -0.34   -1.12   -2.19   -3.40   -4.65   -5.83   -6.89   -7.73   -8.25   -8.30   -7.75   -6.50   -4.55   -1.95    1.18    4.74    8.69   13.05
+    10.0    0.00   -0.35   -1.13   -2.19   -3.39   -4.61   -5.77   -6.81   -7.66   -8.20   -8.28   -7.76   -6.53   -4.57   -1.93    1.25    4.85    8.79   13.13
+    15.0    0.00   -0.36   -1.14   -2.19   -3.37   -4.56   -5.70   -6.74   -7.59   -8.15   -8.26   -7.76   -6.54   -4.55   -1.88    1.34    4.97    8.93   13.23
+    20.0    0.00   -0.36   -1.14   -2.18   -3.34   -4.51   -5.63   -6.66   -7.52   -8.10   -8.24   -7.75   -6.52   -4.51   -1.81    1.45    5.11    9.08   13.39
+    25.0    0.00   -0.37   -1.14   -2.17   -3.31   -4.46   -5.57   -6.59   -7.47   -8.06   -8.20   -7.72   -6.47   -4.44   -1.71    1.57    5.25    9.25   13.61
+    30.0    0.00   -0.37   -1.14   -2.15   -3.27   -4.41   -5.50   -6.53   -7.41   -8.02   -8.17   -7.67   -6.41   -4.35   -1.61    1.69    5.38    9.43   13.88
+    35.0    0.00   -0.37   -1.13   -2.13   -3.23   -4.35   -5.45   -6.48   -7.37   -7.99   -8.13   -7.62   -6.33   -4.26   -1.50    1.79    5.51    9.61   14.20
+    40.0    0.00   -0.37   -1.12   -2.11   -3.20   -4.30   -5.39   -6.43   -7.34   -7.96   -8.10   -7.57   -6.25   -4.16   -1.40    1.89    5.61    9.80   14.56
+    45.0    0.00   -0.37   -1.11   -2.08   -3.16   -4.26   -5.35   -6.39   -7.31   -7.94   -8.08   -7.53   -6.19   -4.07   -1.31    1.97    5.71    9.98   14.94
+    50.0    0.00   -0.37   -1.10   -2.06   -3.12   -4.21   -5.30   -6.36   -7.29   -7.93   -8.07   -7.50   -6.14   -4.01   -1.24    2.04    5.79   10.14   15.30
+    55.0    0.00   -0.36   -1.09   -2.03   -3.08   -4.17   -5.26   -6.33   -7.28   -7.93   -8.07   -7.50   -6.11   -3.96   -1.18    2.10    5.86   10.29   15.61
+    60.0    0.00   -0.36   -1.07   -2.01   -3.04   -4.12   -5.22   -6.30   -7.26   -7.94   -8.09   -7.51   -6.11   -3.94   -1.15    2.14    5.93   10.40   15.85
+    65.0    0.00   -0.35   -1.06   -1.98   -3.01   -4.08   -5.18   -6.27   -7.25   -7.94   -8.11   -7.54   -6.13   -3.94   -1.12    2.18    5.97   10.47   15.99
+    70.0    0.00   -0.35   -1.04   -1.95   -2.97   -4.04   -5.14   -6.23   -7.23   -7.95   -8.14   -7.58   -6.17   -3.95   -1.10    2.21    6.00   10.49   16.03
+    75.0    0.00   -0.34   -1.03   -1.93   -2.94   -4.00   -5.10   -6.20   -7.21   -7.95   -8.17   -7.62   -6.20   -3.96   -1.09    2.23    6.01   10.46   15.96
+    80.0    0.00   -0.33   -1.01   -1.91   -2.91   -3.97   -5.06   -6.17   -7.19   -7.95   -8.19   -7.65   -6.23   -3.97   -1.08    2.24    5.98   10.37   15.80
+    85.0    0.00   -0.33   -1.00   -1.89   -2.89   -3.95   -5.04   -6.14   -7.18   -7.95   -8.20   -7.67   -6.24   -3.97   -1.07    2.24    5.92   10.23   15.58
+    90.0    0.00   -0.32   -0.98   -1.87   -2.88   -3.93   -5.02   -6.13   -7.17   -7.95   -8.20   -7.67   -6.23   -3.95   -1.06    2.21    5.83   10.06   15.34
+    95.0    0.00   -0.31   -0.97   -1.86   -2.87   -3.93   -5.03   -6.14   -7.17   -7.94   -8.19   -7.65   -6.20   -3.92   -1.05    2.17    5.71    9.87   15.10
+   100.0    0.00   -0.30   -0.96   -1.85   -2.87   -3.95   -5.05   -6.16   -7.19   -7.95   -8.17   -7.60   -6.14   -3.88   -1.05    2.10    5.57    9.69   14.92
+   105.0    0.00   -0.30   -0.95   -1.85   -2.88   -3.97   -5.09   -6.21   -7.23   -7.96   -8.15   -7.55   -6.08   -3.83   -1.06    2.02    5.43    9.53   14.81
+   110.0    0.00   -0.29   -0.94   -1.85   -2.90   -4.02   -5.16   -6.28   -7.29   -7.99   -8.13   -7.49   -6.01   -3.79   -1.09    1.92    5.29    9.41   14.78
+   115.0    0.00   -0.28   -0.93   -1.86   -2.93   -4.08   -5.24   -6.37   -7.37   -8.03   -8.12   -7.45   -5.95   -3.76   -1.12    1.82    5.18    9.35   14.84
+   120.0    0.00   -0.27   -0.93   -1.87   -2.97   -4.15   -5.34   -6.49   -7.46   -8.08   -8.13   -7.41   -5.91   -3.76   -1.17    1.73    5.10    9.36   14.96
+   125.0    0.00   -0.26   -0.92   -1.88   -3.01   -4.23   -5.45   -6.61   -7.57   -8.16   -8.15   -7.40   -5.90   -3.77   -1.23    1.66    5.06    9.42   15.13
+   130.0    0.00   -0.26   -0.92   -1.89   -3.06   -4.31   -5.57   -6.74   -7.69   -8.24   -8.19   -7.42   -5.91   -3.81   -1.29    1.61    5.08    9.53   15.30
+   135.0    0.00   -0.25   -0.91   -1.91   -3.11   -4.40   -5.69   -6.87   -7.81   -8.33   -8.25   -7.45   -5.95   -3.87   -1.35    1.58    5.13    9.68   15.43
+   140.0    0.00   -0.24   -0.91   -1.92   -3.15   -4.48   -5.80   -7.00   -7.93   -8.42   -8.31   -7.51   -6.01   -3.94   -1.41    1.58    5.22    9.82   15.50
+   145.0    0.00   -0.23   -0.91   -1.94   -3.20   -4.57   -5.91   -7.11   -8.03   -8.50   -8.38   -7.57   -6.09   -4.02   -1.45    1.61    5.33    9.95   15.49
+   150.0    0.00   -0.22   -0.90   -1.95   -3.24   -4.64   -6.01   -7.22   -8.13   -8.58   -8.45   -7.64   -6.16   -4.09   -1.48    1.65    5.44   10.04   15.38
+   155.0    0.00   -0.22   -0.90   -1.96   -3.28   -4.70   -6.09   -7.30   -8.20   -8.65   -8.51   -7.70   -6.23   -4.14   -1.50    1.70    5.53   10.07   15.17
+   160.0    0.00   -0.21   -0.90   -1.97   -3.31   -4.76   -6.16   -7.37   -8.27   -8.70   -8.56   -7.76   -6.28   -4.18   -1.50    1.75    5.58   10.03   14.90
+   165.0    0.00   -0.20   -0.89   -1.98   -3.34   -4.80   -6.21   -7.43   -8.32   -8.74   -8.59   -7.80   -6.32   -4.20   -1.48    1.79    5.60    9.93   14.60
+   170.0    0.00   -0.19   -0.88   -1.98   -3.36   -4.83   -6.26   -7.47   -8.35   -8.77   -8.62   -7.82   -6.34   -4.19   -1.45    1.82    5.57    9.77   14.29
+   175.0    0.00   -0.18   -0.87   -1.98   -3.37   -4.86   -6.29   -7.51   -8.38   -8.80   -8.64   -7.84   -6.34   -4.17   -1.42    1.83    5.51    9.59   14.02
+   180.0    0.00   -0.18   -0.87   -1.98   -3.37   -4.87   -6.31   -7.53   -8.41   -8.82   -8.66   -7.84   -6.33   -4.15   -1.39    1.83    5.43    9.40   13.82
+   185.0    0.00   -0.17   -0.86   -1.97   -3.38   -4.88   -6.32   -7.55   -8.43   -8.84   -8.68   -7.85   -6.32   -4.11   -1.35    1.83    5.34    9.24   13.72
+   190.0    0.00   -0.16   -0.84   -1.96   -3.37   -4.88   -6.33   -7.55   -8.44   -8.86   -8.70   -7.86   -6.31   -4.08   -1.31    1.84    5.28    9.13   13.72
+   195.0    0.00   -0.15   -0.83   -1.95   -3.36   -4.87   -6.32   -7.56   -8.45   -8.88   -8.73   -7.88   -6.31   -4.05   -1.27    1.86    5.26    9.09   13.82
+   200.0    0.00   -0.15   -0.82   -1.94   -3.34   -4.86   -6.31   -7.55   -8.46   -8.90   -8.75   -7.90   -6.31   -4.03   -1.23    1.91    5.30    9.13   14.01
+   205.0    0.00   -0.14   -0.81   -1.92   -3.32   -4.84   -6.29   -7.54   -8.46   -8.91   -8.77   -7.93   -6.32   -4.01   -1.17    1.99    5.40    9.27   14.26
+   210.0    0.00   -0.13   -0.79   -1.90   -3.30   -4.82   -6.27   -7.52   -8.45   -8.91   -8.79   -7.94   -6.32   -3.98   -1.10    2.11    5.56    9.48   14.55
+   215.0    0.00   -0.13   -0.78   -1.88   -3.27   -4.79   -6.24   -7.50   -8.43   -8.90   -8.78   -7.94   -6.31   -3.94   -1.01    2.26    5.78    9.75   14.84
+   220.0    0.00   -0.12   -0.76   -1.85   -3.25   -4.75   -6.21   -7.46   -8.40   -8.88   -8.76   -7.91   -6.27   -3.88   -0.91    2.44    6.04   10.07   15.11
+   225.0    0.00   -0.12   -0.75   -1.83   -3.22   -4.72   -6.17   -7.43   -8.36   -8.83   -8.71   -7.86   -6.21   -3.80   -0.79    2.62    6.31   10.40   15.35
+   230.0    0.00   -0.11   -0.74   -1.81   -3.19   -4.69   -6.14   -7.39   -8.31   -8.77   -8.64   -7.77   -6.12   -3.70   -0.67    2.81    6.58   10.72   15.54
+   235.0    0.00   -0.11   -0.72   -1.79   -3.16   -4.66   -6.11   -7.36   -8.27   -8.70   -8.54   -7.66   -6.00   -3.59   -0.54    2.97    6.82   11.01   15.69
+   240.0    0.00   -0.11   -0.71   -1.76   -3.13   -4.62   -6.08   -7.32   -8.22   -8.63   -8.43   -7.52   -5.85   -3.46   -0.43    3.10    7.01   11.26   15.80
+   245.0    0.00   -0.10   -0.70   -1.74   -3.10   -4.59   -6.05   -7.30   -8.18   -8.56   -8.32   -7.37   -5.70   -3.32   -0.33    3.19    7.15   11.45   15.88
+   250.0    0.00   -0.10   -0.70   -1.73   -3.07   -4.57   -6.03   -7.28   -8.15   -8.50   -8.21   -7.23   -5.54   -3.21   -0.27    3.22    7.22   11.58   15.94
+   255.0    0.00   -0.10   -0.69   -1.71   -3.05   -4.54   -6.01   -7.26   -8.13   -8.45   -8.12   -7.10   -5.41   -3.11   -0.24    3.21    7.23   11.66   15.99
+   260.0    0.00   -0.11   -0.69   -1.70   -3.03   -4.52   -5.99   -7.26   -8.12   -8.43   -8.06   -7.01   -5.32   -3.05   -0.24    3.16    7.20   11.70   16.03
+   265.0    0.00   -0.11   -0.69   -1.69   -3.01   -4.49   -5.98   -7.25   -8.13   -8.43   -8.04   -6.97   -5.27   -3.04   -0.28    3.07    7.12   11.70   16.05
+   270.0    0.00   -0.12   -0.69   -1.68   -2.99   -4.47   -5.96   -7.25   -8.14   -8.45   -8.06   -6.97   -5.28   -3.07   -0.36    2.97    7.03   11.67   16.06
+   275.0    0.00   -0.12   -0.70   -1.68   -2.98   -4.45   -5.95   -7.26   -8.17   -8.49   -8.11   -7.03   -5.34   -3.14   -0.46    2.85    6.92   11.61   16.03
+   280.0    0.00   -0.13   -0.71   -1.68   -2.97   -4.44   -5.93   -7.26   -8.20   -8.55   -8.20   -7.13   -5.44   -3.25   -0.57    2.74    6.82   11.53   15.95
+   285.0    0.00   -0.14   -0.72   -1.69   -2.96   -4.42   -5.91   -7.25   -8.22   -8.62   -8.30   -7.26   -5.58   -3.39   -0.69    2.63    6.72   11.43   15.82
+   290.0    0.00   -0.15   -0.73   -1.70   -2.97   -4.41   -5.90   -7.25   -8.24   -8.68   -8.41   -7.41   -5.74   -3.53   -0.81    2.53    6.62   11.30   15.63
+   295.0    0.00   -0.16   -0.75   -1.72   -2.98   -4.41   -5.89   -7.24   -8.26   -8.74   -8.52   -7.55   -5.90   -3.68   -0.92    2.45    6.52   11.13   15.38
+   300.0    0.00   -0.17   -0.78   -1.75   -3.00   -4.42   -5.88   -7.22   -8.26   -8.78   -8.61   -7.68   -6.05   -3.81   -1.02    2.37    6.41   10.94   15.08
+   305.0    0.00   -0.18   -0.80   -1.78   -3.02   -4.43   -5.87   -7.21   -8.26   -8.80   -8.67   -7.78   -6.16   -3.91   -1.10    2.28    6.28   10.70   14.76
+   310.0    0.00   -0.20   -0.83   -1.82   -3.06   -4.45   -5.88   -7.20   -8.24   -8.80   -8.70   -7.84   -6.25   -4.00   -1.18    2.20    6.13   10.44   14.42
+   315.0    0.00   -0.21   -0.86   -1.85   -3.10   -4.48   -5.89   -7.19   -8.22   -8.78   -8.70   -7.87   -6.30   -4.06   -1.25    2.09    5.95   10.15   14.09
+   320.0    0.00   -0.23   -0.89   -1.90   -3.14   -4.52   -5.90   -7.18   -8.19   -8.74   -8.67   -7.87   -6.32   -4.11   -1.32    1.97    5.75    9.86   13.79
+   325.0    0.00   -0.24   -0.92   -1.94   -3.19   -4.55   -5.92   -7.17   -8.15   -8.69   -8.62   -7.84   -6.32   -4.14   -1.40    1.84    5.53    9.56   13.54
+   330.0    0.00   -0.26   -0.95   -1.99   -3.24   -4.59   -5.94   -7.16   -8.11   -8.63   -8.56   -7.80   -6.31   -4.17   -1.48    1.70    5.31    9.29   13.33
+   335.0    0.00   -0.27   -0.98   -2.03   -3.29   -4.63   -5.96   -7.15   -8.07   -8.57   -8.50   -7.75   -6.31   -4.21   -1.57    1.55    5.10    9.05   13.18
+   340.0    0.00   -0.29   -1.01   -2.07   -3.33   -4.66   -5.97   -7.13   -8.02   -8.51   -8.44   -7.72   -6.31   -4.26   -1.66    1.42    4.92    8.85   13.08
+   345.0    0.00   -0.30   -1.04   -2.10   -3.36   -4.68   -5.96   -7.10   -7.97   -8.45   -8.39   -7.70   -6.33   -4.32   -1.75    1.30    4.78    8.71   13.02
+   350.0    0.00   -0.31   -1.06   -2.13   -3.39   -4.69   -5.95   -7.06   -7.92   -8.39   -8.36   -7.70   -6.36   -4.38   -1.83    1.21    4.70    8.62   12.99
+   355.0    0.00   -0.32   -1.09   -2.16   -3.40   -4.69   -5.92   -7.01   -7.86   -8.34   -8.33   -7.71   -6.41   -4.45   -1.89    1.16    4.66    8.59   12.99
+   360.0    0.00   -0.34   -1.10   -2.17   -3.41   -4.67   -5.88   -6.95   -7.79   -8.29   -8.31   -7.73   -6.46   -4.51   -1.94    1.15    4.68    8.62   13.01
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.02      1.65    118.14                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.13   -0.51   -1.06   -1.70   -2.35   -2.98   -3.56   -4.10   -4.57   -4.92   -5.04   -4.75   -3.87   -2.19    0.39    3.86    7.99   12.30
+     0.0    0.00   -0.27   -0.76   -1.39   -2.09   -2.78   -3.40   -3.92   -4.33   -4.67   -4.94   -5.08   -4.91   -4.16   -2.57   -0.11    2.89    5.72    7.50
+     5.0    0.00   -0.28   -0.77   -1.40   -2.09   -2.76   -3.36   -3.85   -4.24   -4.57   -4.84   -5.00   -4.85   -4.15   -2.65   -0.33    2.53    5.30    7.21
+    10.0    0.00   -0.28   -0.77   -1.40   -2.08   -2.73   -3.30   -3.76   -4.14   -4.46   -4.75   -4.91   -4.78   -4.10   -2.68   -0.48    2.25    4.97    7.02
+    15.0    0.00   -0.29   -0.78   -1.40   -2.06   -2.69   -3.22   -3.66   -4.03   -4.36   -4.65   -4.82   -4.69   -4.03   -2.66   -0.55    2.08    4.78    6.99
+    20.0    0.00   -0.29   -0.78   -1.40   -2.04   -2.64   -3.15   -3.57   -3.94   -4.28   -4.57   -4.73   -4.58   -3.91   -2.57   -0.52    2.05    4.77    7.16
+    25.0    0.00   -0.29   -0.78   -1.39   -2.02   -2.59   -3.07   -3.48   -3.86   -4.21   -4.50   -4.64   -4.46   -3.77   -2.42   -0.40    2.17    4.96    7.57
+    30.0    0.00   -0.29   -0.78   -1.38   -1.99   -2.54   -3.01   -3.42   -3.80   -4.15   -4.45   -4.56   -4.34   -3.61   -2.24   -0.20    2.41    5.34    8.20
+    35.0    0.00   -0.29   -0.78   -1.37   -1.97   -2.50   -2.97   -3.37   -3.76   -4.12   -4.41   -4.49   -4.22   -3.44   -2.04    0.04    2.75    5.88    9.01
+    40.0    0.00   -0.29   -0.77   -1.36   -1.95   -2.47   -2.94   -3.35   -3.75   -4.11   -4.38   -4.42   -4.11   -3.30   -1.87    0.28    3.13    6.52    9.93
+    45.0    0.00   -0.28   -0.77   -1.35   -1.93   -2.45   -2.92   -3.35   -3.76   -4.12   -4.36   -4.38   -4.04   -3.20   -1.74    0.48    3.51    7.17   10.85
+    50.0    0.00   -0.28   -0.76   -1.33   -1.91   -2.44   -2.92   -3.36   -3.77   -4.13   -4.36   -4.35   -4.00   -3.16   -1.68    0.62    3.83    7.76   11.67
+    55.0    0.00   -0.27   -0.75   -1.32   -1.90   -2.43   -2.92   -3.37   -3.80   -4.15   -4.37   -4.35   -4.01   -3.19   -1.71    0.65    4.03    8.21   12.28
+    60.0    0.00   -0.27   -0.74   -1.30   -1.88   -2.42   -2.92   -3.39   -3.82   -4.17   -4.39   -4.39   -4.07   -3.28   -1.82    0.58    4.10    8.46   12.61
+    65.0    0.00   -0.26   -0.72   -1.29   -1.87   -2.41   -2.92   -3.39   -3.83   -4.19   -4.42   -4.44   -4.17   -3.44   -2.01    0.41    4.01    8.49   12.63
+    70.0    0.00   -0.25   -0.71   -1.27   -1.85   -2.40   -2.91   -3.39   -3.83   -4.21   -4.46   -4.53   -4.31   -3.64   -2.26    0.16    3.79    8.29   12.35
+    75.0    0.00   -0.24   -0.69   -1.25   -1.83   -2.38   -2.89   -3.38   -3.83   -4.23   -4.52   -4.64   -4.48   -3.87   -2.53   -0.13    3.47    7.92   11.84
+    80.0    0.00   -0.23   -0.68   -1.23   -1.81   -2.36   -2.87   -3.35   -3.82   -4.24   -4.58   -4.75   -4.65   -4.09   -2.78   -0.43    3.10    7.42   11.20
+    85.0    0.00   -0.22   -0.66   -1.21   -1.79   -2.33   -2.83   -3.32   -3.80   -4.26   -4.65   -4.87   -4.81   -4.27   -2.99   -0.70    2.72    6.90   10.57
+    90.0    0.00   -0.21   -0.64   -1.19   -1.76   -2.30   -2.80   -3.29   -3.79   -4.29   -4.72   -4.99   -4.94   -4.40   -3.13   -0.89    2.40    6.43   10.09
+    95.0    0.00   -0.20   -0.62   -1.17   -1.74   -2.28   -2.78   -3.27   -3.79   -4.32   -4.79   -5.08   -5.03   -4.46   -3.18   -0.99    2.19    6.10    9.88
+   100.0    0.00   -0.19   -0.60   -1.15   -1.72   -2.26   -2.76   -3.26   -3.80   -4.36   -4.86   -5.15   -5.07   -4.45   -3.13   -0.97    2.11    5.96   10.03
+   105.0    0.00   -0.17   -0.58   -1.13   -1.71   -2.25   -2.75   -3.27   -3.83   -4.41   -4.92   -5.20   -5.06   -4.36   -2.98   -0.83    2.18    6.06   10.56
+   110.0    0.00   -0.16   -0.56   -1.11   -1.69   -2.25   -2.76   -3.29   -3.87   -4.47   -4.98   -5.22   -5.01   -4.22   -2.77   -0.60    2.40    6.38   11.44
+   115.0    0.00   -0.15   -0.54   -1.09   -1.69   -2.25   -2.79   -3.33   -3.92   -4.53   -5.03   -5.23   -4.94   -4.05   -2.51   -0.29    2.74    6.89   12.59
+   120.0    0.00   -0.13   -0.52   -1.08   -1.68   -2.27   -2.83   -3.39   -3.98   -4.59   -5.07   -5.22   -4.86   -3.88   -2.25    0.05    3.16    7.53   13.87
+   125.0    0.00   -0.12   -0.50   -1.06   -1.68   -2.29   -2.87   -3.45   -4.05   -4.64   -5.10   -5.22   -4.80   -3.73   -2.00    0.40    3.63    8.23   15.12
+   130.0    0.00   -0.11   -0.48   -1.04   -1.69   -2.32   -2.92   -3.51   -4.11   -4.69   -5.13   -5.22   -4.76   -3.63   -1.80    0.71    4.09    8.89   16.18
+   135.0    0.00   -0.09   -0.46   -1.03   -1.69   -2.35   -2.97   -3.57   -4.16   -4.73   -5.16   -5.24   -4.77   -3.59   -1.68    0.97    4.50    9.45   16.93
+   140.0    0.00   -0.08   -0.44   -1.01   -1.69   -2.38   -3.02   -3.62   -4.21   -4.77   -5.19   -5.29   -4.83   -3.63   -1.63    1.16    4.83    9.85   17.26
+   145.0    0.00   -0.07   -0.42   -0.99   -1.68   -2.40   -3.06   -3.67   -4.24   -4.79   -5.23   -5.36   -4.93   -3.73   -1.66    1.26    5.05   10.06   17.17
+   150.0    0.00   -0.05   -0.39   -0.97   -1.68   -2.41   -3.09   -3.70   -4.27   -4.81   -5.27   -5.44   -5.06   -3.88   -1.76    1.27    5.16   10.07   16.67
+   155.0    0.00   -0.04   -0.37   -0.95   -1.67   -2.42   -3.11   -3.72   -4.29   -4.83   -5.30   -5.52   -5.21   -4.06   -1.92    1.21    5.16    9.91   15.88
+   160.0    0.00   -0.03   -0.35   -0.92   -1.65   -2.41   -3.12   -3.74   -4.30   -4.84   -5.34   -5.60   -5.35   -4.25   -2.10    1.09    5.07    9.63   14.92
+   165.0    0.00   -0.02   -0.33   -0.90   -1.63   -2.40   -3.12   -3.75   -4.31   -4.85   -5.36   -5.67   -5.47   -4.42   -2.29    0.92    4.90    9.27   13.94
+   170.0    0.00   -0.01   -0.31   -0.87   -1.60   -2.39   -3.12   -3.76   -4.32   -4.86   -5.37   -5.70   -5.55   -4.55   -2.46    0.72    4.68    8.90   13.10
+   175.0    0.00    0.00   -0.29   -0.84   -1.57   -2.37   -3.11   -3.76   -4.33   -4.87   -5.37   -5.70   -5.57   -4.63   -2.60    0.52    4.43    8.57   12.50
+   180.0    0.00    0.01   -0.27   -0.82   -1.54   -2.34   -3.10   -3.77   -4.35   -4.87   -5.35   -5.65   -5.53   -4.64   -2.71    0.32    4.17    8.32   12.23
+   185.0    0.00    0.01   -0.26   -0.79   -1.51   -2.31   -3.09   -3.77   -4.36   -4.87   -5.31   -5.57   -5.43   -4.59   -2.76    0.14    3.93    8.17   12.30
+   190.0    0.00    0.02   -0.25   -0.77   -1.48   -2.28   -3.07   -3.77   -4.37   -4.86   -5.25   -5.45   -5.29   -4.48   -2.78   -0.02    3.72    8.11   12.66
+   195.0    0.00    0.02   -0.24   -0.75   -1.46   -2.26   -3.05   -3.77   -4.37   -4.84   -5.18   -5.32   -5.12   -4.35   -2.75   -0.14    3.55    8.14   13.22
+   200.0    0.00    0.02   -0.23   -0.74   -1.44   -2.23   -3.03   -3.75   -4.36   -4.82   -5.11   -5.18   -4.93   -4.19   -2.69   -0.21    3.44    8.23   13.87
+   205.0    0.00    0.02   -0.23   -0.73   -1.42   -2.20   -3.00   -3.73   -4.34   -4.79   -5.04   -5.06   -4.77   -4.03   -2.61   -0.23    3.38    8.36   14.48
+   210.0    0.00    0.02   -0.23   -0.73   -1.41   -2.18   -2.98   -3.71   -4.32   -4.76   -4.98   -4.96   -4.63   -3.88   -2.51   -0.20    3.39    8.49   14.94
+   215.0    0.00    0.02   -0.24   -0.74   -1.41   -2.17   -2.95   -3.68   -4.29   -4.73   -4.94   -4.89   -4.53   -3.76   -2.39   -0.11    3.47    8.61   15.18
+   220.0    0.00    0.02   -0.25   -0.75   -1.41   -2.16   -2.93   -3.65   -4.26   -4.71   -4.93   -4.87   -4.48   -3.67   -2.26    0.05    3.62    8.71   15.16
+   225.0    0.00    0.01   -0.26   -0.76   -1.43   -2.17   -2.92   -3.62   -4.24   -4.70   -4.94   -4.88   -4.47   -3.61   -2.12    0.25    3.83    8.80   14.90
+   230.0    0.00    0.01   -0.27   -0.78   -1.45   -2.18   -2.91   -3.60   -4.22   -4.70   -4.96   -4.93   -4.51   -3.58   -1.99    0.49    4.09    8.88   14.47
+   235.0    0.00    0.00   -0.29   -0.81   -1.48   -2.20   -2.92   -3.60   -4.21   -4.71   -5.01   -5.01   -4.57   -3.57   -1.85    0.75    4.38    8.96   13.95
+   240.0    0.00   -0.01   -0.31   -0.84   -1.51   -2.23   -2.93   -3.60   -4.22   -4.73   -5.07   -5.09   -4.64   -3.57   -1.73    1.02    4.69    9.07   13.44
+   245.0    0.00   -0.02   -0.33   -0.87   -1.55   -2.26   -2.96   -3.62   -4.23   -4.76   -5.12   -5.17   -4.71   -3.58   -1.62    1.25    4.97    9.20   13.06
+   250.0    0.00   -0.03   -0.35   -0.90   -1.58   -2.30   -2.99   -3.65   -4.26   -4.80   -5.18   -5.23   -4.77   -3.59   -1.54    1.44    5.21    9.35   12.86
+   255.0    0.00   -0.04   -0.37   -0.93   -1.62   -2.34   -3.03   -3.68   -4.29   -4.83   -5.22   -5.28   -4.81   -3.60   -1.49    1.55    5.38    9.51   12.89
+   260.0    0.00   -0.05   -0.39   -0.96   -1.65   -2.37   -3.06   -3.71   -4.32   -4.86   -5.24   -5.30   -4.82   -3.61   -1.49    1.58    5.46    9.65   13.13
+   265.0    0.00   -0.06   -0.41   -0.99   -1.68   -2.40   -3.09   -3.73   -4.34   -4.87   -5.24   -5.29   -4.82   -3.62   -1.53    1.52    5.43    9.76   13.53
+   270.0    0.00   -0.08   -0.44   -1.01   -1.70   -2.41   -3.10   -3.75   -4.35   -4.88   -5.23   -5.27   -4.80   -3.64   -1.62    1.38    5.31    9.81   14.03
+   275.0    0.00   -0.09   -0.45   -1.03   -1.71   -2.41   -3.10   -3.74   -4.35   -4.86   -5.20   -5.23   -4.78   -3.67   -1.73    1.18    5.09    9.78   14.52
+   280.0    0.00   -0.10   -0.47   -1.04   -1.71   -2.41   -3.08   -3.73   -4.33   -4.84   -5.17   -5.19   -4.75   -3.71   -1.87    0.94    4.82    9.67   14.90
+   285.0    0.00   -0.11   -0.49   -1.06   -1.71   -2.39   -3.05   -3.69   -4.30   -4.80   -5.13   -5.15   -4.74   -3.75   -2.01    0.69    4.53    9.48   15.11
+   290.0    0.00   -0.13   -0.51   -1.07   -1.71   -2.37   -3.02   -3.65   -4.26   -4.77   -5.10   -5.13   -4.75   -3.80   -2.13    0.48    4.24    9.22   15.09
+   295.0    0.00   -0.14   -0.53   -1.08   -1.70   -2.35   -2.98   -3.61   -4.22   -4.74   -5.08   -5.13   -4.77   -3.86   -2.24    0.31    4.00    8.93   14.83
+   300.0    0.00   -0.15   -0.54   -1.09   -1.70   -2.33   -2.96   -3.58   -4.19   -4.72   -5.08   -5.15   -4.80   -3.91   -2.30    0.22    3.84    8.63   14.35
+   305.0    0.00   -0.16   -0.56   -1.11   -1.71   -2.33   -2.94   -3.56   -4.17   -4.72   -5.10   -5.18   -4.85   -3.95   -2.32    0.20    3.76    8.35   13.70
+   310.0    0.00   -0.18   -0.58   -1.12   -1.72   -2.34   -2.95   -3.57   -4.18   -4.73   -5.12   -5.23   -4.90   -3.98   -2.31    0.26    3.77    8.12   12.94
+   315.0    0.00   -0.19   -0.60   -1.14   -1.75   -2.36   -2.97   -3.59   -4.20   -4.75   -5.16   -5.28   -4.95   -4.00   -2.26    0.37    3.85    7.94   12.15
+   320.0    0.00   -0.20   -0.62   -1.17   -1.78   -2.40   -3.02   -3.64   -4.24   -4.79   -5.19   -5.32   -4.99   -4.01   -2.20    0.50    3.97    7.80   11.39
+   325.0    0.00   -0.21   -0.64   -1.20   -1.82   -2.46   -3.09   -3.71   -4.30   -4.83   -5.22   -5.35   -5.03   -4.02   -2.15    0.63    4.09    7.69   10.69
+   330.0    0.00   -0.22   -0.66   -1.23   -1.87   -2.52   -3.17   -3.78   -4.35   -4.86   -5.24   -5.37   -5.04   -4.03   -2.11    0.72    4.17    7.59   10.08
+   335.0    0.00   -0.23   -0.68   -1.26   -1.92   -2.59   -3.25   -3.85   -4.41   -4.88   -5.24   -5.36   -5.05   -4.04   -2.11    0.74    4.18    7.44    9.55
+   340.0    0.00   -0.24   -0.70   -1.29   -1.97   -2.66   -3.32   -3.92   -4.44   -4.89   -5.22   -5.34   -5.04   -4.06   -2.15    0.69    4.09    7.24    9.08
+   345.0    0.00   -0.25   -0.71   -1.32   -2.01   -2.71   -3.38   -3.96   -4.46   -4.87   -5.17   -5.29   -5.02   -4.08   -2.23    0.56    3.90    6.96    8.66
+   350.0    0.00   -0.26   -0.73   -1.35   -2.05   -2.75   -3.41   -3.98   -4.44   -4.82   -5.11   -5.23   -5.00   -4.11   -2.34    0.37    3.62    6.59    8.25
+   355.0    0.00   -0.27   -0.74   -1.37   -2.07   -2.78   -3.42   -3.96   -4.40   -4.75   -5.03   -5.16   -4.96   -4.14   -2.46    0.13    3.27    6.17    7.87
+   360.0    0.00   -0.27   -0.76   -1.39   -2.09   -2.78   -3.40   -3.92   -4.33   -4.67   -4.94   -5.08   -4.91   -4.16   -2.57   -0.11    2.89    5.72    7.50
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH701945C_M    SCIS                                        TYPE / SERIAL NO    
+FIELD               NGS/TUM                  2    20-APR-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.50      0.04     89.04                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.44   -1.42   -2.77   -4.18   -5.99   -7.45   -8.79   -9.57   -9.90   -9.74   -8.86   -7.67   -5.84   -3.30   -0.23    3.69
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.60     -0.02    118.96                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.43   -1.02   -1.80   -2.62   -3.42   -4.23   -5.01   -5.75   -6.23   -6.25   -5.83   -5.08   -3.75   -2.13   -0.11    2.56
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH701945C_M    SCIT                                        TYPE / SERIAL NO    
+FIELD               NGS/TUM                  3    20-APR-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.70     -0.36     88.64                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.54   -1.52   -2.87   -4.28   -5.89   -7.25   -8.39   -9.17   -9.40   -9.24   -8.46   -7.17   -5.44   -3.20   -0.23    3.39
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.20     -0.42    117.56                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.23   -0.62   -1.20   -1.92   -2.62   -3.43   -4.31   -4.95   -5.33   -5.45   -5.03   -4.18   -2.75   -1.03    1.29    4.26
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH701945C_M    SNOW                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               1    20-APR-05 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+      0.19      0.40     89.87                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.25   -0.98   -2.12   -3.53   -5.10   -6.66   -8.07   -9.14   -9.69   -9.58   -8.72   -7.11   -4.85   -2.02    1.30    5.15    9.61   14.67
+     0.0    0.00   -0.24   -0.99   -2.19   -3.70   -5.38   -7.04   -8.51   -9.59  -10.12   -9.97   -9.11   -7.54   -5.35   -2.58    0.73    4.64    9.15   14.07
+     5.0    0.00   -0.24   -0.99   -2.17   -3.68   -5.35   -7.01   -8.48   -9.57  -10.11   -9.96   -9.09   -7.52   -5.31   -2.54    0.78    4.69    9.21   14.20
+    10.0    0.00   -0.23   -0.98   -2.16   -3.66   -5.32   -6.98   -8.45   -9.54  -10.09   -9.95   -9.07   -7.48   -5.25   -2.47    0.85    4.75    9.30   14.38
+    15.0    0.00   -0.23   -0.97   -2.15   -3.63   -5.29   -6.94   -8.41   -9.52  -10.07   -9.93   -9.04   -7.43   -5.18   -2.39    0.93    4.84    9.42   14.60
+    20.0    0.00   -0.23   -0.97   -2.13   -3.61   -5.25   -6.90   -8.38   -9.49  -10.05   -9.91   -9.01   -7.38   -5.10   -2.30    1.02    4.93    9.55   14.83
+    25.0    0.00   -0.23   -0.96   -2.11   -3.58   -5.22   -6.87   -8.35   -9.47  -10.03   -9.89   -8.97   -7.31   -5.02   -2.19    1.13    5.05    9.69   15.07
+    30.0    0.00   -0.23   -0.95   -2.10   -3.55   -5.18   -6.83   -8.32   -9.45  -10.02   -9.87   -8.93   -7.25   -4.92   -2.08    1.25    5.16    9.83   15.28
+    35.0    0.00   -0.23   -0.94   -2.08   -3.52   -5.15   -6.79   -8.29   -9.42  -10.00   -9.85   -8.89   -7.18   -4.82   -1.96    1.38    5.29    9.96   15.47
+    40.0    0.00   -0.22   -0.94   -2.06   -3.50   -5.11   -6.75   -8.25   -9.39   -9.97   -9.81   -8.84   -7.11   -4.73   -1.84    1.50    5.40   10.08   15.62
+    45.0    0.00   -0.22   -0.93   -2.05   -3.47   -5.07   -6.71   -8.20   -9.35   -9.93   -9.77   -8.79   -7.04   -4.64   -1.74    1.61    5.52   10.19   15.73
+    50.0    0.00   -0.22   -0.92   -2.03   -3.44   -5.03   -6.66   -8.15   -9.29   -9.87   -9.71   -8.73   -6.97   -4.56   -1.65    1.71    5.62   10.29   15.81
+    55.0    0.00   -0.22   -0.92   -2.02   -3.41   -4.99   -6.60   -8.08   -9.21   -9.79   -9.64   -8.67   -6.91   -4.50   -1.57    1.80    5.72   10.38   15.86
+    60.0    0.00   -0.22   -0.91   -2.00   -3.39   -4.94   -6.54   -7.99   -9.12   -9.70   -9.55   -8.60   -6.85   -4.45   -1.52    1.87    5.80   10.46   15.89
+    65.0    0.00   -0.22   -0.91   -1.99   -3.36   -4.90   -6.47   -7.91   -9.02   -9.59   -9.46   -8.52   -6.81   -4.42   -1.49    1.92    5.87   10.52   15.91
+    70.0    0.00   -0.22   -0.91   -1.98   -3.34   -4.86   -6.40   -7.81   -8.91   -9.48   -9.36   -8.46   -6.77   -4.40   -1.48    1.95    5.92   10.58   15.91
+    75.0    0.00   -0.22   -0.91   -1.98   -3.32   -4.82   -6.34   -7.73   -8.80   -9.37   -9.27   -8.39   -6.74   -4.40   -1.48    1.95    5.95   10.61   15.90
+    80.0    0.00   -0.23   -0.91   -1.97   -3.31   -4.79   -6.29   -7.65   -8.71   -9.28   -9.19   -8.34   -6.72   -4.41   -1.50    1.94    5.95   10.60   15.85
+    85.0    0.00   -0.23   -0.91   -1.97   -3.30   -4.77   -6.25   -7.60   -8.64   -9.21   -9.13   -8.31   -6.72   -4.43   -1.54    1.91    5.92   10.56   15.78
+    90.0    0.00   -0.23   -0.92   -1.98   -3.31   -4.77   -6.24   -7.57   -8.60   -9.16   -9.09   -8.29   -6.72   -4.46   -1.58    1.85    5.85   10.48   15.66
+    95.0    0.00   -0.23   -0.92   -1.99   -3.31   -4.78   -6.24   -7.57   -8.59   -9.15   -9.08   -8.29   -6.74   -4.49   -1.64    1.77    5.75   10.34   15.50
+   100.0    0.00   -0.24   -0.93   -2.00   -3.33   -4.80   -6.26   -7.59   -8.61   -9.17   -9.10   -8.31   -6.77   -4.54   -1.70    1.67    5.61   10.17   15.30
+   105.0    0.00   -0.24   -0.94   -2.02   -3.36   -4.83   -6.31   -7.64   -8.66   -9.22   -9.14   -8.34   -6.80   -4.58   -1.78    1.56    5.45    9.95   15.06
+   110.0    0.00   -0.24   -0.95   -2.03   -3.38   -4.87   -6.36   -7.70   -8.73   -9.28   -9.20   -8.39   -6.85   -4.64   -1.86    1.43    5.26    9.72   14.80
+   115.0    0.00   -0.25   -0.96   -2.05   -3.42   -4.92   -6.42   -7.78   -8.82   -9.36   -9.27   -8.45   -6.90   -4.69   -1.94    1.31    5.08    9.48   14.53
+   120.0    0.00   -0.25   -0.97   -2.07   -3.45   -4.97   -6.49   -7.86   -8.90   -9.45   -9.34   -8.51   -6.96   -4.76   -2.03    1.18    4.91    9.26   14.29
+   125.0    0.00   -0.26   -0.98   -2.10   -3.48   -5.02   -6.55   -7.93   -8.98   -9.52   -9.42   -8.58   -7.02   -4.83   -2.11    1.07    4.76    9.08   14.08
+   130.0    0.00   -0.26   -0.99   -2.12   -3.51   -5.06   -6.61   -7.99   -9.04   -9.59   -9.48   -8.64   -7.08   -4.90   -2.19    0.97    4.65    8.94   13.91
+   135.0    0.00   -0.27   -1.01   -2.14   -3.54   -5.10   -6.65   -8.04   -9.09   -9.63   -9.53   -8.69   -7.14   -4.97   -2.27    0.90    4.58    8.86   13.80
+   140.0    0.00   -0.27   -1.02   -2.15   -3.57   -5.13   -6.68   -8.07   -9.12   -9.67   -9.56   -8.74   -7.20   -5.03   -2.32    0.86    4.55    8.83   13.75
+   145.0    0.00   -0.27   -1.03   -2.17   -3.59   -5.15   -6.70   -8.09   -9.14   -9.68   -9.59   -8.78   -7.25   -5.09   -2.37    0.84    4.55    8.85   13.73
+   150.0    0.00   -0.28   -1.04   -2.19   -3.61   -5.17   -6.72   -8.10   -9.14   -9.69   -9.61   -8.81   -7.30   -5.13   -2.40    0.84    4.58    8.89   13.74
+   155.0    0.00   -0.28   -1.05   -2.20   -3.62   -5.18   -6.72   -8.10   -9.14   -9.70   -9.62   -8.84   -7.34   -5.16   -2.41    0.86    4.63    8.93   13.76
+   160.0    0.00   -0.29   -1.05   -2.21   -3.64   -5.19   -6.73   -8.10   -9.15   -9.71   -9.64   -8.87   -7.36   -5.18   -2.41    0.88    4.66    8.97   13.76
+   165.0    0.00   -0.29   -1.06   -2.22   -3.65   -5.20   -6.74   -8.11   -9.16   -9.72   -9.66   -8.89   -7.38   -5.19   -2.40    0.89    4.68    8.97   13.74
+   170.0    0.00   -0.29   -1.07   -2.23   -3.66   -5.22   -6.76   -8.13   -9.18   -9.75   -9.69   -8.91   -7.39   -5.19   -2.39    0.90    4.66    8.93   13.69
+   175.0    0.00   -0.29   -1.07   -2.24   -3.67   -5.23   -6.77   -8.15   -9.21   -9.78   -9.72   -8.93   -7.40   -5.18   -2.39    0.88    4.61    8.85   13.62
+   180.0    0.00   -0.29   -1.07   -2.24   -3.68   -5.24   -6.79   -8.18   -9.25   -9.82   -9.75   -8.95   -7.39   -5.17   -2.39    0.85    4.53    8.74   13.53
+   185.0    0.00   -0.29   -1.07   -2.24   -3.68   -5.25   -6.81   -8.21   -9.28   -9.86   -9.78   -8.96   -7.39   -5.16   -2.40    0.79    4.43    8.62   13.46
+   190.0    0.00   -0.29   -1.07   -2.25   -3.69   -5.26   -6.83   -8.23   -9.31   -9.89   -9.80   -8.96   -7.38   -5.15   -2.42    0.73    4.33    8.51   13.43
+   195.0    0.00   -0.29   -1.07   -2.24   -3.69   -5.26   -6.84   -8.25   -9.33   -9.90   -9.81   -8.96   -7.37   -5.15   -2.44    0.67    4.24    8.45   13.47
+   200.0    0.00   -0.29   -1.07   -2.24   -3.68   -5.26   -6.83   -8.25   -9.33   -9.90   -9.80   -8.94   -7.36   -5.15   -2.46    0.63    4.20    8.46   13.60
+   205.0    0.00   -0.29   -1.07   -2.23   -3.67   -5.25   -6.82   -8.23   -9.31   -9.87   -9.77   -8.92   -7.34   -5.15   -2.47    0.62    4.23    8.56   13.82
+   210.0    0.00   -0.29   -1.06   -2.22   -3.65   -5.22   -6.79   -8.19   -9.27   -9.83   -9.73   -8.89   -7.32   -5.14   -2.46    0.66    4.33    8.77   14.14
+   215.0    0.00   -0.29   -1.05   -2.21   -3.63   -5.19   -6.75   -8.14   -9.20   -9.76   -9.67   -8.84   -7.29   -5.12   -2.43    0.75    4.51    9.06   14.53
+   220.0    0.00   -0.29   -1.05   -2.19   -3.61   -5.16   -6.70   -8.08   -9.13   -9.69   -9.61   -8.80   -7.26   -5.08   -2.35    0.90    4.77    9.44   14.97
+   225.0    0.00   -0.28   -1.04   -2.18   -3.58   -5.12   -6.64   -8.01   -9.05   -9.61   -9.54   -8.74   -7.22   -5.03   -2.25    1.10    5.10    9.87   15.42
+   230.0    0.00   -0.28   -1.03   -2.16   -3.55   -5.08   -6.58   -7.94   -8.98   -9.54   -9.48   -8.69   -7.17   -4.95   -2.10    1.35    5.46   10.31   15.82
+   235.0    0.00   -0.28   -1.02   -2.14   -3.53   -5.03   -6.53   -7.87   -8.91   -9.47   -9.42   -8.64   -7.10   -4.84   -1.92    1.63    5.83   10.72   16.15
+   240.0    0.00   -0.27   -1.01   -2.13   -3.50   -5.00   -6.49   -7.82   -8.86   -9.43   -9.38   -8.59   -7.03   -4.72   -1.73    1.91    6.18   11.06   16.36
+   245.0    0.00   -0.27   -1.00   -2.11   -3.47   -4.97   -6.45   -7.79   -8.83   -9.40   -9.35   -8.55   -6.96   -4.59   -1.53    2.17    6.47   11.30   16.43
+   250.0    0.00   -0.27   -0.99   -2.10   -3.45   -4.94   -6.43   -7.77   -8.82   -9.40   -9.34   -8.51   -6.88   -4.46   -1.34    2.40    6.68   11.42   16.37
+   255.0    0.00   -0.26   -0.99   -2.08   -3.44   -4.93   -6.42   -7.77   -8.83   -9.41   -9.33   -8.48   -6.80   -4.33   -1.17    2.57    6.80   11.41   16.17
+   260.0    0.00   -0.26   -0.98   -2.07   -3.43   -4.92   -6.42   -7.79   -8.85   -9.43   -9.34   -8.46   -6.73   -4.22   -1.05    2.67    6.81   11.28   15.87
+   265.0    0.00   -0.26   -0.98   -2.07   -3.43   -4.92   -6.44   -7.81   -8.88   -9.46   -9.35   -8.44   -6.68   -4.14   -0.97    2.68    6.72   11.06   15.50
+   270.0    0.00   -0.26   -0.97   -2.06   -3.43   -4.93   -6.46   -7.84   -8.92   -9.49   -9.36   -8.42   -6.64   -4.10   -0.96    2.63    6.55   10.76   15.11
+   275.0    0.00   -0.25   -0.97   -2.06   -3.43   -4.95   -6.48   -7.88   -8.96   -9.52   -9.38   -8.42   -6.62   -4.10   -1.00    2.50    6.32   10.43   14.75
+   280.0    0.00   -0.25   -0.97   -2.07   -3.44   -4.97   -6.52   -7.92   -8.99   -9.54   -9.39   -8.42   -6.63   -4.13   -1.10    2.32    6.05   10.10   14.44
+   285.0    0.00   -0.25   -0.97   -2.07   -3.46   -5.00   -6.55   -7.95   -9.02   -9.56   -9.39   -8.42   -6.66   -4.21   -1.24    2.10    5.76    9.79   14.20
+   290.0    0.00   -0.25   -0.97   -2.08   -3.48   -5.03   -6.59   -7.99   -9.05   -9.58   -9.41   -8.44   -6.71   -4.31   -1.42    1.86    5.49    9.54   14.06
+   295.0    0.00   -0.25   -0.97   -2.09   -3.51   -5.07   -6.63   -8.03   -9.08   -9.60   -9.42   -8.47   -6.78   -4.44   -1.61    1.62    5.24    9.35   14.01
+   300.0    0.00   -0.25   -0.98   -2.11   -3.53   -5.11   -6.68   -8.08   -9.12   -9.62   -9.44   -8.52   -6.86   -4.58   -1.80    1.40    5.04    9.23   14.02
+   305.0    0.00   -0.25   -0.98   -2.12   -3.56   -5.15   -6.73   -8.13   -9.16   -9.65   -9.48   -8.57   -6.96   -4.73   -1.99    1.20    4.88    9.16   14.08
+   310.0    0.00   -0.25   -0.98   -2.14   -3.59   -5.20   -6.79   -8.18   -9.21   -9.69   -9.52   -8.64   -7.06   -4.87   -2.16    1.04    4.77    9.14   14.16
+   315.0    0.00   -0.25   -0.99   -2.15   -3.62   -5.24   -6.84   -8.24   -9.27   -9.75   -9.58   -8.71   -7.16   -5.00   -2.31    0.91    4.70    9.14   14.23
+   320.0    0.00   -0.25   -0.99   -2.17   -3.65   -5.29   -6.90   -8.31   -9.33   -9.81   -9.64   -8.78   -7.25   -5.11   -2.42    0.82    4.66    9.16   14.27
+   325.0    0.00   -0.24   -0.99   -2.18   -3.67   -5.33   -6.95   -8.37   -9.40   -9.88   -9.71   -8.86   -7.34   -5.21   -2.51    0.75    4.63    9.17   14.27
+   330.0    0.00   -0.24   -1.00   -2.19   -3.70   -5.36   -7.00   -8.43   -9.46   -9.95   -9.78   -8.93   -7.41   -5.28   -2.57    0.71    4.62    9.17   14.23
+   335.0    0.00   -0.24   -1.00   -2.20   -3.71   -5.39   -7.04   -8.48   -9.52  -10.01   -9.85   -8.99   -7.47   -5.33   -2.62    0.69    4.61    9.16   14.16
+   340.0    0.00   -0.24   -1.00   -2.20   -3.72   -5.40   -7.07   -8.51   -9.56  -10.06   -9.90   -9.05   -7.52   -5.37   -2.64    0.68    4.61    9.14   14.09
+   345.0    0.00   -0.24   -1.00   -2.20   -3.73   -5.41   -7.08   -8.53   -9.59  -10.10   -9.94   -9.08   -7.55   -5.39   -2.65    0.67    4.60    9.12   14.02
+   350.0    0.00   -0.24   -1.00   -2.20   -3.72   -5.41   -7.08   -8.54   -9.61  -10.12   -9.96   -9.10   -7.56   -5.39   -2.64    0.68    4.60    9.11   13.99
+   355.0    0.00   -0.24   -1.00   -2.19   -3.71   -5.40   -7.07   -8.53   -9.61  -10.12   -9.98   -9.11   -7.56   -5.37   -2.62    0.70    4.62    9.11   14.00
+   360.0    0.00   -0.24   -0.99   -2.19   -3.70   -5.38   -7.04   -8.51   -9.59  -10.12   -9.97   -9.11   -7.54   -5.35   -2.58    0.73    4.64    9.15   14.07
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.84      0.19    119.49                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.11   -0.44   -0.93   -1.56   -2.28   -3.08   -3.90   -4.67   -5.24   -5.46   -5.23   -4.51   -3.32   -1.74    0.25    2.77    6.04   10.22
+     0.0    0.00   -0.15   -0.44   -0.81   -1.30   -1.94   -2.77   -3.73   -4.64   -5.27   -5.45   -5.13   -4.41   -3.44   -2.22   -0.55    1.94    5.51    9.85
+     5.0    0.00   -0.15   -0.44   -0.82   -1.30   -1.95   -2.78   -3.74   -4.65   -5.29   -5.48   -5.16   -4.45   -3.46   -2.22   -0.53    1.98    5.53    9.81
+    10.0    0.00   -0.15   -0.44   -0.82   -1.31   -1.96   -2.79   -3.75   -4.66   -5.31   -5.51   -5.20   -4.48   -3.48   -2.20   -0.48    2.04    5.57    9.82
+    15.0    0.00   -0.15   -0.44   -0.83   -1.32   -1.97   -2.80   -3.76   -4.67   -5.32   -5.53   -5.24   -4.52   -3.49   -2.17   -0.41    2.12    5.63    9.89
+    20.0    0.00   -0.15   -0.45   -0.84   -1.34   -1.99   -2.81   -3.76   -4.66   -5.32   -5.55   -5.27   -4.55   -3.49   -2.13   -0.32    2.22    5.72   10.00
+    25.0    0.00   -0.15   -0.46   -0.86   -1.36   -2.01   -2.82   -3.75   -4.65   -5.32   -5.56   -5.30   -4.57   -3.48   -2.07   -0.22    2.33    5.82   10.16
+    30.0    0.00   -0.16   -0.46   -0.87   -1.38   -2.03   -2.83   -3.75   -4.64   -5.31   -5.57   -5.32   -4.59   -3.47   -2.01   -0.12    2.44    5.93   10.34
+    35.0    0.00   -0.16   -0.47   -0.89   -1.41   -2.06   -2.85   -3.75   -4.63   -5.30   -5.57   -5.34   -4.60   -3.45   -1.94   -0.01    2.56    6.04   10.53
+    40.0    0.00   -0.16   -0.48   -0.91   -1.44   -2.08   -2.87   -3.75   -4.61   -5.28   -5.57   -5.34   -4.60   -3.42   -1.86    0.10    2.67    6.14   10.71
+    45.0    0.00   -0.16   -0.48   -0.93   -1.47   -2.12   -2.89   -3.75   -4.60   -5.26   -5.55   -5.34   -4.60   -3.39   -1.79    0.20    2.78    6.24   10.87
+    50.0    0.00   -0.16   -0.49   -0.95   -1.50   -2.15   -2.91   -3.75   -4.59   -5.24   -5.54   -5.34   -4.59   -3.36   -1.73    0.30    2.88    6.33   10.98
+    55.0    0.00   -0.16   -0.50   -0.96   -1.53   -2.18   -2.93   -3.76   -4.57   -5.22   -5.52   -5.32   -4.58   -3.33   -1.67    0.38    2.97    6.40   11.05
+    60.0    0.00   -0.16   -0.50   -0.98   -1.56   -2.22   -2.96   -3.77   -4.56   -5.20   -5.49   -5.30   -4.56   -3.31   -1.63    0.46    3.06    6.47   11.07
+    65.0    0.00   -0.16   -0.51   -1.00   -1.59   -2.25   -2.99   -3.78   -4.56   -5.18   -5.47   -5.28   -4.55   -3.29   -1.59    0.52    3.14    6.53   11.04
+    70.0    0.00   -0.15   -0.51   -1.01   -1.61   -2.29   -3.02   -3.80   -4.56   -5.16   -5.44   -5.26   -4.53   -3.28   -1.56    0.58    3.22    6.58   10.96
+    75.0    0.00   -0.15   -0.51   -1.02   -1.64   -2.32   -3.06   -3.83   -4.56   -5.15   -5.42   -5.24   -4.52   -3.27   -1.54    0.62    3.29    6.62   10.84
+    80.0    0.00   -0.15   -0.51   -1.03   -1.66   -2.35   -3.10   -3.86   -4.58   -5.14   -5.40   -5.22   -4.51   -3.26   -1.53    0.66    3.34    6.65   10.68
+    85.0    0.00   -0.15   -0.51   -1.04   -1.68   -2.39   -3.13   -3.89   -4.60   -5.15   -5.39   -5.21   -4.50   -3.26   -1.52    0.68    3.39    6.66   10.51
+    90.0    0.00   -0.14   -0.51   -1.05   -1.70   -2.42   -3.18   -3.93   -4.63   -5.16   -5.39   -5.20   -4.49   -3.26   -1.53    0.69    3.41    6.65   10.33
+    95.0    0.00   -0.14   -0.51   -1.05   -1.72   -2.45   -3.22   -3.98   -4.67   -5.19   -5.40   -5.19   -4.48   -3.26   -1.53    0.68    3.41    6.63   10.15
+   100.0    0.00   -0.14   -0.50   -1.05   -1.73   -2.48   -3.26   -4.03   -4.72   -5.22   -5.42   -5.19   -4.48   -3.26   -1.54    0.67    3.38    6.58    9.99
+   105.0    0.00   -0.13   -0.50   -1.06   -1.74   -2.51   -3.30   -4.08   -4.77   -5.27   -5.44   -5.20   -4.48   -3.26   -1.55    0.64    3.34    6.51    9.85
+   110.0    0.00   -0.13   -0.49   -1.05   -1.75   -2.53   -3.34   -4.13   -4.82   -5.31   -5.47   -5.21   -4.47   -3.25   -1.56    0.60    3.28    6.43    9.74
+   115.0    0.00   -0.12   -0.49   -1.05   -1.76   -2.55   -3.38   -4.18   -4.87   -5.36   -5.51   -5.23   -4.47   -3.25   -1.57    0.57    3.22    6.35    9.67
+   120.0    0.00   -0.12   -0.48   -1.05   -1.77   -2.57   -3.41   -4.22   -4.92   -5.40   -5.54   -5.25   -4.48   -3.24   -1.57    0.54    3.15    6.26    9.62
+   125.0    0.00   -0.11   -0.47   -1.05   -1.77   -2.58   -3.43   -4.24   -4.95   -5.43   -5.57   -5.27   -4.48   -3.23   -1.56    0.53    3.10    6.19    9.60
+   130.0    0.00   -0.11   -0.47   -1.04   -1.77   -2.59   -3.44   -4.26   -4.96   -5.45   -5.59   -5.29   -4.49   -3.23   -1.55    0.54    3.08    6.14    9.59
+   135.0    0.00   -0.10   -0.46   -1.04   -1.77   -2.60   -3.45   -4.26   -4.97   -5.46   -5.61   -5.31   -4.51   -3.22   -1.52    0.56    3.07    6.10    9.59
+   140.0    0.00   -0.10   -0.45   -1.03   -1.77   -2.60   -3.44   -4.25   -4.96   -5.46   -5.63   -5.34   -4.54   -3.23   -1.49    0.60    3.09    6.07    9.59
+   145.0    0.00   -0.10   -0.45   -1.03   -1.77   -2.60   -3.43   -4.23   -4.94   -5.45   -5.64   -5.37   -4.57   -3.24   -1.46    0.66    3.13    6.06    9.57
+   150.0    0.00   -0.09   -0.44   -1.03   -1.77   -2.60   -3.42   -4.21   -4.91   -5.43   -5.65   -5.41   -4.61   -3.25   -1.44    0.72    3.17    6.04    9.52
+   155.0    0.00   -0.09   -0.44   -1.02   -1.77   -2.59   -3.41   -4.19   -4.88   -5.42   -5.66   -5.45   -4.66   -3.28   -1.42    0.77    3.22    6.02    9.44
+   160.0    0.00   -0.08   -0.43   -1.02   -1.77   -2.59   -3.40   -4.17   -4.86   -5.41   -5.67   -5.49   -4.72   -3.32   -1.42    0.81    3.24    5.97    9.33
+   165.0    0.00   -0.08   -0.42   -1.02   -1.77   -2.59   -3.40   -4.16   -4.84   -5.40   -5.69   -5.53   -4.77   -3.37   -1.43    0.82    3.23    5.90    9.20
+   170.0    0.00   -0.07   -0.42   -1.01   -1.78   -2.60   -3.40   -4.15   -4.84   -5.40   -5.71   -5.58   -4.83   -3.42   -1.47    0.79    3.18    5.79    9.05
+   175.0    0.00   -0.07   -0.41   -1.01   -1.78   -2.60   -3.41   -4.16   -4.85   -5.41   -5.73   -5.61   -4.88   -3.47   -1.52    0.73    3.10    5.66    8.90
+   180.0    0.00   -0.07   -0.41   -1.01   -1.77   -2.61   -3.42   -4.18   -4.86   -5.43   -5.76   -5.64   -4.92   -3.52   -1.59    0.64    2.97    5.51    8.78
+   185.0    0.00   -0.07   -0.40   -1.00   -1.77   -2.61   -3.43   -4.20   -4.89   -5.45   -5.77   -5.66   -4.94   -3.56   -1.66    0.53    2.82    5.36    8.70
+   190.0    0.00   -0.06   -0.40   -0.99   -1.77   -2.61   -3.44   -4.22   -4.91   -5.47   -5.78   -5.66   -4.94   -3.59   -1.73    0.41    2.67    5.22    8.69
+   195.0    0.00   -0.06   -0.39   -0.98   -1.76   -2.61   -3.45   -4.24   -4.94   -5.49   -5.78   -5.64   -4.91   -3.59   -1.78    0.29    2.53    5.13    8.76
+   200.0    0.00   -0.06   -0.39   -0.97   -1.74   -2.60   -3.45   -4.25   -4.95   -5.50   -5.76   -5.59   -4.86   -3.56   -1.81    0.21    2.42    5.10    8.91
+   205.0    0.00   -0.06   -0.38   -0.96   -1.72   -2.58   -3.44   -4.25   -4.96   -5.49   -5.73   -5.53   -4.79   -3.51   -1.81    0.16    2.37    5.14    9.15
+   210.0    0.00   -0.06   -0.38   -0.95   -1.70   -2.55   -3.42   -4.24   -4.95   -5.47   -5.69   -5.46   -4.70   -3.43   -1.77    0.15    2.38    5.26    9.46
+   215.0    0.00   -0.06   -0.38   -0.94   -1.68   -2.52   -3.39   -4.21   -4.93   -5.44   -5.63   -5.37   -4.59   -3.33   -1.70    0.21    2.47    5.45    9.82
+   220.0    0.00   -0.06   -0.37   -0.92   -1.65   -2.48   -3.34   -4.17   -4.89   -5.39   -5.56   -5.27   -4.48   -3.22   -1.60    0.31    2.62    5.71   10.21
+   225.0    0.00   -0.06   -0.37   -0.91   -1.62   -2.44   -3.30   -4.12   -4.84   -5.34   -5.49   -5.18   -4.37   -3.11   -1.48    0.44    2.81    6.01   10.60
+   230.0    0.00   -0.06   -0.37   -0.90   -1.60   -2.40   -3.25   -4.07   -4.79   -5.29   -5.43   -5.10   -4.27   -3.00   -1.36    0.60    3.04    6.32   10.94
+   235.0    0.00   -0.07   -0.37   -0.89   -1.57   -2.36   -3.20   -4.02   -4.74   -5.24   -5.37   -5.03   -4.19   -2.90   -1.24    0.77    3.27    6.61   11.22
+   240.0    0.00   -0.07   -0.37   -0.89   -1.55   -2.32   -3.15   -3.97   -4.69   -5.19   -5.33   -4.99   -4.14   -2.84   -1.15    0.91    3.47    6.86   11.41
+   245.0    0.00   -0.07   -0.38   -0.88   -1.54   -2.30   -3.11   -3.93   -4.65   -5.16   -5.30   -4.97   -4.12   -2.80   -1.09    1.01    3.63    7.04   11.50
+   250.0    0.00   -0.08   -0.38   -0.88   -1.53   -2.27   -3.08   -3.89   -4.62   -5.14   -5.29   -4.97   -4.13   -2.81   -1.07    1.06    3.72    7.13   11.49
+   255.0    0.00   -0.08   -0.39   -0.89   -1.52   -2.26   -3.06   -3.87   -4.60   -5.13   -5.30   -4.99   -4.16   -2.85   -1.11    1.04    3.72    7.13   11.39
+   260.0    0.00   -0.09   -0.40   -0.89   -1.52   -2.25   -3.04   -3.85   -4.59   -5.13   -5.31   -5.03   -4.22   -2.92   -1.19    0.97    3.65    7.04   11.22
+   265.0    0.00   -0.09   -0.40   -0.90   -1.53   -2.25   -3.03   -3.84   -4.58   -5.13   -5.34   -5.08   -4.30   -3.03   -1.32    0.83    3.50    6.87   11.01
+   270.0    0.00   -0.10   -0.41   -0.91   -1.53   -2.25   -3.03   -3.83   -4.58   -5.14   -5.37   -5.13   -4.39   -3.15   -1.47    0.65    3.30    6.66   10.78
+   275.0    0.00   -0.10   -0.42   -0.92   -1.53   -2.24   -3.02   -3.82   -4.58   -5.15   -5.39   -5.19   -4.48   -3.28   -1.64    0.44    3.07    6.42   10.56
+   280.0    0.00   -0.11   -0.43   -0.92   -1.54   -2.24   -3.01   -3.81   -4.57   -5.15   -5.41   -5.23   -4.56   -3.40   -1.81    0.22    2.82    6.18   10.38
+   285.0    0.00   -0.11   -0.44   -0.93   -1.54   -2.23   -3.00   -3.79   -4.55   -5.14   -5.42   -5.27   -4.62   -3.51   -1.98    0.01    2.58    5.96   10.26
+   290.0    0.00   -0.11   -0.44   -0.93   -1.53   -2.22   -2.98   -3.77   -4.53   -5.13   -5.42   -5.28   -4.67   -3.60   -2.11   -0.18    2.37    5.79   10.19
+   295.0    0.00   -0.12   -0.45   -0.93   -1.52   -2.20   -2.95   -3.74   -4.50   -5.11   -5.41   -5.28   -4.69   -3.66   -2.22   -0.33    2.21    5.66   10.20
+   300.0    0.00   -0.12   -0.45   -0.93   -1.51   -2.18   -2.92   -3.71   -4.48   -5.09   -5.39   -5.27   -4.69   -3.69   -2.29   -0.44    2.09    5.59   10.25
+   305.0    0.00   -0.13   -0.45   -0.92   -1.49   -2.15   -2.89   -3.68   -4.45   -5.06   -5.36   -5.24   -4.67   -3.69   -2.33   -0.51    2.01    5.56   10.33
+   310.0    0.00   -0.13   -0.45   -0.91   -1.47   -2.12   -2.85   -3.65   -4.43   -5.04   -5.34   -5.21   -4.63   -3.66   -2.33   -0.55    1.97    5.57   10.42
+   315.0    0.00   -0.13   -0.45   -0.90   -1.45   -2.08   -2.82   -3.63   -4.41   -5.03   -5.31   -5.16   -4.58   -3.62   -2.32   -0.56    1.96    5.60   10.51
+   320.0    0.00   -0.14   -0.45   -0.89   -1.42   -2.05   -2.79   -3.61   -4.41   -5.02   -5.29   -5.13   -4.53   -3.57   -2.29   -0.55    1.96    5.63   10.57
+   325.0    0.00   -0.14   -0.45   -0.87   -1.39   -2.02   -2.77   -3.61   -4.42   -5.03   -5.29   -5.09   -4.47   -3.52   -2.26   -0.55    1.97    5.66   10.58
+   330.0    0.00   -0.14   -0.45   -0.86   -1.37   -2.00   -2.75   -3.61   -4.44   -5.05   -5.29   -5.06   -4.43   -3.47   -2.23   -0.54    1.97    5.66   10.55
+   335.0    0.00   -0.14   -0.44   -0.85   -1.35   -1.97   -2.75   -3.62   -4.46   -5.08   -5.30   -5.05   -4.39   -3.44   -2.21   -0.54    1.97    5.66   10.47
+   340.0    0.00   -0.14   -0.44   -0.84   -1.33   -1.96   -2.74   -3.64   -4.50   -5.12   -5.32   -5.04   -4.37   -3.41   -2.20   -0.54    1.95    5.63   10.35
+   345.0    0.00   -0.14   -0.44   -0.83   -1.32   -1.95   -2.75   -3.66   -4.54   -5.16   -5.35   -5.05   -4.36   -3.40   -2.20   -0.55    1.94    5.59   10.21
+   350.0    0.00   -0.15   -0.44   -0.82   -1.31   -1.94   -2.76   -3.69   -4.58   -5.20   -5.38   -5.07   -4.37   -3.41   -2.21   -0.56    1.93    5.55   10.07
+   355.0    0.00   -0.15   -0.44   -0.82   -1.30   -1.94   -2.76   -3.71   -4.61   -5.24   -5.41   -5.10   -4.39   -3.42   -2.22   -0.56    1.93    5.53    9.94
+   360.0    0.00   -0.15   -0.44   -0.81   -1.30   -1.94   -2.77   -3.73   -4.64   -5.27   -5.45   -5.13   -4.41   -3.44   -2.22   -0.55    1.94    5.51    9.85
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH701945D_M    NONE                                        TYPE / SERIAL NO    
+COPIED              TUM                      0    10-AUG-05 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+COPIED FROM AOAD/M_T                                        COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.60     -0.46     91.24                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.24   -0.92   -1.97   -3.28   -4.69   -6.05   -7.19   -7.97   -8.30   -8.14   -7.46   -6.27   -4.54   -2.20    0.87    4.79    9.56   14.88
+     0.0    0.00   -0.28   -1.01   -2.12   -3.49   -4.95   -6.35   -7.52   -8.32   -8.63   -8.43   -7.72   -6.51   -4.78   -2.47    0.58    4.48    9.16   14.25
+     5.0    0.00   -0.28   -1.01   -2.12   -3.48   -4.94   -6.34   -7.50   -8.30   -8.62   -8.42   -7.70   -6.48   -4.75   -2.42    0.63    4.53    9.23   14.33
+    10.0    0.00   -0.28   -1.01   -2.11   -3.46   -4.92   -6.32   -7.48   -8.27   -8.59   -8.39   -7.68   -6.46   -4.72   -2.38    0.69    4.60    9.32   14.45
+    15.0    0.00   -0.27   -1.00   -2.10   -3.45   -4.90   -6.29   -7.46   -8.25   -8.57   -8.37   -7.65   -6.43   -4.68   -2.33    0.75    4.69    9.43   14.61
+    20.0    0.00   -0.27   -0.99   -2.08   -3.43   -4.88   -6.27   -7.43   -8.22   -8.54   -8.35   -7.63   -6.40   -4.64   -2.28    0.83    4.78    9.56   14.80
+    25.0    0.00   -0.27   -0.98   -2.07   -3.41   -4.85   -6.24   -7.39   -8.19   -8.51   -8.32   -7.60   -6.37   -4.60   -2.22    0.90    4.89    9.71   15.02
+    30.0    0.00   -0.26   -0.98   -2.06   -3.39   -4.83   -6.21   -7.36   -8.15   -8.48   -8.29   -7.57   -6.33   -4.55   -2.15    0.99    5.00    9.87   15.25
+    35.0    0.00   -0.26   -0.97   -2.04   -3.37   -4.80   -6.17   -7.32   -8.11   -8.44   -8.25   -7.54   -6.29   -4.50   -2.09    1.08    5.12   10.03   15.48
+    40.0    0.00   -0.26   -0.96   -2.02   -3.34   -4.77   -6.13   -7.28   -8.07   -8.40   -8.21   -7.50   -6.25   -4.45   -2.02    1.17    5.25   10.19   15.70
+    45.0    0.00   -0.25   -0.95   -2.01   -3.32   -4.74   -6.10   -7.24   -8.03   -8.35   -8.17   -7.45   -6.20   -4.40   -1.95    1.26    5.36   10.34   15.89
+    50.0    0.00   -0.25   -0.94   -1.99   -3.29   -4.70   -6.06   -7.19   -7.98   -8.31   -8.12   -7.40   -6.15   -4.34   -1.88    1.34    5.46   10.46   16.05
+    55.0    0.00   -0.24   -0.93   -1.97   -3.27   -4.67   -6.02   -7.15   -7.93   -8.25   -8.07   -7.35   -6.10   -4.28   -1.82    1.41    5.54   10.55   16.15
+    60.0    0.00   -0.24   -0.92   -1.95   -3.24   -4.64   -5.98   -7.10   -7.88   -8.20   -8.01   -7.30   -6.04   -4.23   -1.76    1.47    5.59   10.60   16.20
+    65.0    0.00   -0.24   -0.91   -1.94   -3.22   -4.60   -5.94   -7.06   -7.83   -8.15   -7.96   -7.24   -5.99   -4.18   -1.72    1.50    5.61   10.60   16.20
+    70.0    0.00   -0.23   -0.90   -1.92   -3.19   -4.57   -5.90   -7.02   -7.79   -8.10   -7.91   -7.19   -5.94   -4.14   -1.70    1.50    5.60   10.57   16.14
+    75.0    0.00   -0.23   -0.89   -1.91   -3.17   -4.55   -5.87   -6.98   -7.75   -8.06   -7.87   -7.15   -5.91   -4.12   -1.70    1.48    5.55   10.50   16.04
+    80.0    0.00   -0.23   -0.88   -1.89   -3.16   -4.53   -5.84   -6.95   -7.72   -8.03   -7.83   -7.12   -5.89   -4.11   -1.71    1.44    5.47   10.39   15.91
+    85.0    0.00   -0.22   -0.87   -1.88   -3.14   -4.51   -5.82   -6.93   -7.69   -8.00   -7.81   -7.10   -5.88   -4.13   -1.75    1.36    5.36   10.25   15.74
+    90.0    0.00   -0.22   -0.87   -1.87   -3.13   -4.49   -5.81   -6.92   -7.68   -7.99   -7.80   -7.10   -5.90   -4.16   -1.82    1.27    5.24   10.09   15.56
+    95.0    0.00   -0.22   -0.86   -1.87   -3.12   -4.49   -5.80   -6.91   -7.68   -7.99   -7.81   -7.12   -5.93   -4.21   -1.90    1.16    5.10    9.92   15.37
+   100.0    0.00   -0.21   -0.86   -1.87   -3.12   -4.48   -5.80   -6.91   -7.68   -8.01   -7.84   -7.16   -5.98   -4.29   -1.99    1.04    4.96    9.76   15.18
+   105.0    0.00   -0.21   -0.86   -1.86   -3.12   -4.49   -5.81   -6.93   -7.70   -8.04   -7.88   -7.21   -6.05   -4.37   -2.09    0.93    4.82    9.60   15.00
+   110.0    0.00   -0.21   -0.86   -1.87   -3.13   -4.50   -5.82   -6.95   -7.73   -8.07   -7.93   -7.28   -6.13   -4.47   -2.20    0.81    4.69    9.46   14.84
+   115.0    0.00   -0.21   -0.86   -1.87   -3.13   -4.51   -5.84   -6.97   -7.76   -8.12   -7.99   -7.35   -6.22   -4.56   -2.30    0.71    4.59    9.34   14.71
+   120.0    0.00   -0.21   -0.86   -1.87   -3.15   -4.53   -5.87   -7.00   -7.80   -8.17   -8.05   -7.43   -6.31   -4.66   -2.39    0.62    4.50    9.24   14.60
+   125.0    0.00   -0.21   -0.86   -1.88   -3.16   -4.55   -5.89   -7.04   -7.85   -8.22   -8.12   -7.51   -6.39   -4.74   -2.47    0.55    4.44    9.18   14.52
+   130.0    0.00   -0.21   -0.86   -1.89   -3.17   -4.57   -5.92   -7.07   -7.89   -8.27   -8.18   -7.58   -6.47   -4.81   -2.53    0.51    4.40    9.13   14.47
+   135.0    0.00   -0.21   -0.86   -1.90   -3.19   -4.60   -5.95   -7.11   -7.93   -8.32   -8.23   -7.64   -6.53   -4.87   -2.57    0.47    4.37    9.11   14.44
+   140.0    0.00   -0.21   -0.87   -1.91   -3.21   -4.62   -5.98   -7.14   -7.96   -8.36   -8.28   -7.69   -6.58   -4.91   -2.60    0.46    4.37    9.10   14.43
+   145.0    0.00   -0.21   -0.87   -1.91   -3.22   -4.64   -6.01   -7.17   -8.00   -8.39   -8.31   -7.72   -6.61   -4.93   -2.62    0.45    4.36    9.10   14.44
+   150.0    0.00   -0.21   -0.87   -1.92   -3.24   -4.66   -6.04   -7.20   -8.02   -8.42   -8.33   -7.74   -6.63   -4.94   -2.62    0.45    4.37    9.10   14.45
+   155.0    0.00   -0.21   -0.87   -1.93   -3.25   -4.68   -6.06   -7.22   -8.05   -8.44   -8.35   -7.75   -6.63   -4.94   -2.62    0.46    4.36    9.10   14.46
+   160.0    0.00   -0.21   -0.88   -1.93   -3.26   -4.69   -6.07   -7.24   -8.06   -8.45   -8.35   -7.75   -6.62   -4.94   -2.61    0.45    4.36    9.09   14.46
+   165.0    0.00   -0.21   -0.88   -1.94   -3.27   -4.70   -6.09   -7.25   -8.07   -8.46   -8.35   -7.74   -6.61   -4.93   -2.61    0.45    4.34    9.08   14.46
+   170.0    0.00   -0.21   -0.88   -1.94   -3.27   -4.71   -6.10   -7.26   -8.08   -8.46   -8.35   -7.73   -6.60   -4.92   -2.61    0.43    4.32    9.05   14.44
+   175.0    0.00   -0.21   -0.88   -1.94   -3.27   -4.71   -6.10   -7.27   -8.08   -8.46   -8.34   -7.72   -6.59   -4.91   -2.61    0.42    4.29    9.02   14.41
+   180.0    0.00   -0.21   -0.88   -1.94   -3.27   -4.71   -6.10   -7.27   -8.08   -8.46   -8.34   -7.71   -6.57   -4.90   -2.62    0.40    4.26    9.00   14.38
+   185.0    0.00   -0.21   -0.88   -1.93   -3.26   -4.70   -6.09   -7.26   -8.08   -8.45   -8.33   -7.70   -6.56   -4.90   -2.62    0.38    4.24    8.98   14.35
+   190.0    0.00   -0.21   -0.87   -1.93   -3.25   -4.69   -6.08   -7.25   -8.07   -8.44   -8.32   -7.69   -6.55   -4.89   -2.62    0.38    4.24    8.98   14.33
+   195.0    0.00   -0.21   -0.87   -1.92   -3.24   -4.68   -6.07   -7.24   -8.06   -8.43   -8.30   -7.67   -6.54   -4.88   -2.61    0.39    4.26    9.00   14.33
+   200.0    0.00   -0.21   -0.87   -1.92   -3.23   -4.67   -6.05   -7.22   -8.04   -8.41   -8.29   -7.65   -6.52   -4.86   -2.59    0.42    4.30    9.06   14.37
+   205.0    0.00   -0.21   -0.87   -1.91   -3.22   -4.65   -6.03   -7.20   -8.02   -8.39   -8.26   -7.62   -6.48   -4.82   -2.55    0.47    4.38    9.15   14.44
+   210.0    0.00   -0.21   -0.87   -1.90   -3.21   -4.63   -6.01   -7.18   -8.00   -8.36   -8.23   -7.58   -6.44   -4.77   -2.49    0.55    4.48    9.28   14.55
+   215.0    0.00   -0.21   -0.87   -1.90   -3.20   -4.61   -5.99   -7.15   -7.97   -8.33   -8.18   -7.53   -6.38   -4.70   -2.41    0.65    4.61    9.43   14.69
+   220.0    0.00   -0.21   -0.87   -1.89   -3.19   -4.60   -5.97   -7.13   -7.93   -8.28   -8.13   -7.47   -6.31   -4.62   -2.31    0.78    4.77    9.61   14.87
+   225.0    0.00   -0.21   -0.87   -1.89   -3.18   -4.58   -5.94   -7.10   -7.89   -8.24   -8.07   -7.40   -6.22   -4.52   -2.19    0.91    4.93    9.80   15.07
+   230.0    0.00   -0.21   -0.87   -1.89   -3.17   -4.57   -5.92   -7.07   -7.85   -8.18   -8.01   -7.32   -6.13   -4.41   -2.07    1.06    5.10    9.98   15.28
+   235.0    0.00   -0.22   -0.87   -1.89   -3.16   -4.56   -5.90   -7.03   -7.81   -8.13   -7.94   -7.24   -6.03   -4.30   -1.94    1.20    5.25   10.15   15.47
+   240.0    0.00   -0.22   -0.87   -1.89   -3.16   -4.55   -5.88   -7.01   -7.77   -8.07   -7.87   -7.16   -5.94   -4.19   -1.82    1.33    5.39   10.29   15.63
+   245.0    0.00   -0.22   -0.87   -1.89   -3.16   -4.54   -5.87   -6.98   -7.73   -8.02   -7.81   -7.08   -5.86   -4.10   -1.71    1.44    5.49   10.39   15.74
+   250.0    0.00   -0.22   -0.88   -1.90   -3.17   -4.54   -5.86   -6.96   -7.70   -7.98   -7.76   -7.02   -5.79   -4.01   -1.62    1.53    5.56   10.44   15.79
+   255.0    0.00   -0.23   -0.88   -1.90   -3.17   -4.54   -5.86   -6.95   -7.68   -7.95   -7.72   -6.98   -5.73   -3.96   -1.56    1.58    5.58   10.43   15.78
+   260.0    0.00   -0.23   -0.89   -1.91   -3.18   -4.55   -5.86   -6.94   -7.66   -7.93   -7.70   -6.96   -5.71   -3.92   -1.53    1.59    5.57   10.37   15.71
+   265.0    0.00   -0.23   -0.90   -1.92   -3.19   -4.56   -5.86   -6.94   -7.66   -7.93   -7.70   -6.96   -5.70   -3.92   -1.53    1.57    5.51   10.26   15.58
+   270.0    0.00   -0.24   -0.91   -1.94   -3.21   -4.58   -5.88   -6.95   -7.67   -7.94   -7.71   -6.98   -5.73   -3.94   -1.56    1.52    5.41   10.11   15.40
+   275.0    0.00   -0.24   -0.92   -1.95   -3.23   -4.60   -5.90   -6.97   -7.69   -7.96   -7.74   -7.02   -5.77   -4.00   -1.62    1.44    5.28    9.93   15.20
+   280.0    0.00   -0.25   -0.93   -1.97   -3.25   -4.62   -5.93   -7.00   -7.72   -8.00   -7.79   -7.07   -5.84   -4.07   -1.71    1.33    5.14    9.74   14.98
+   285.0    0.00   -0.25   -0.94   -1.98   -3.27   -4.65   -5.96   -7.04   -7.77   -8.06   -7.86   -7.15   -5.92   -4.16   -1.81    1.21    4.99    9.55   14.77
+   290.0    0.00   -0.25   -0.95   -2.00   -3.30   -4.69   -6.00   -7.09   -7.82   -8.12   -7.93   -7.23   -6.01   -4.26   -1.92    1.08    4.84    9.38   14.58
+   295.0    0.00   -0.26   -0.96   -2.02   -3.33   -4.72   -6.04   -7.14   -7.88   -8.19   -8.00   -7.31   -6.11   -4.36   -2.04    0.96    4.70    9.23   14.43
+   300.0    0.00   -0.26   -0.97   -2.04   -3.35   -4.76   -6.09   -7.19   -7.95   -8.26   -8.08   -7.40   -6.20   -4.47   -2.15    0.83    4.58    9.10   14.31
+   305.0    0.00   -0.26   -0.98   -2.05   -3.38   -4.79   -6.14   -7.25   -8.01   -8.33   -8.16   -7.48   -6.29   -4.57   -2.26    0.73    4.47    9.01   14.22
+   310.0    0.00   -0.27   -0.98   -2.07   -3.40   -4.83   -6.18   -7.31   -8.08   -8.40   -8.23   -7.56   -6.37   -4.66   -2.35    0.63    4.40    8.96   14.17
+   315.0    0.00   -0.27   -0.99   -2.08   -3.43   -4.86   -6.23   -7.36   -8.14   -8.47   -8.30   -7.62   -6.44   -4.73   -2.43    0.56    4.34    8.93   14.15
+   320.0    0.00   -0.27   -1.00   -2.10   -3.45   -4.89   -6.27   -7.41   -8.19   -8.52   -8.35   -7.67   -6.49   -4.79   -2.49    0.50    4.31    8.92   14.15
+   325.0    0.00   -0.28   -1.01   -2.11   -3.46   -4.92   -6.30   -7.45   -8.24   -8.57   -8.39   -7.71   -6.53   -4.83   -2.54    0.47    4.29    8.93   14.15
+   330.0    0.00   -0.28   -1.01   -2.12   -3.48   -4.94   -6.33   -7.49   -8.28   -8.61   -8.43   -7.74   -6.56   -4.86   -2.56    0.45    4.29    8.95   14.16
+   335.0    0.00   -0.28   -1.02   -2.13   -3.49   -4.95   -6.35   -7.51   -8.31   -8.63   -8.45   -7.76   -6.57   -4.87   -2.57    0.45    4.31    8.98   14.16
+   340.0    0.00   -0.28   -1.02   -2.13   -3.50   -4.96   -6.36   -7.53   -8.33   -8.65   -8.46   -7.77   -6.57   -4.87   -2.57    0.46    4.33    9.01   14.16
+   345.0    0.00   -0.28   -1.02   -2.13   -3.50   -4.97   -6.37   -7.54   -8.33   -8.66   -8.46   -7.76   -6.57   -4.86   -2.56    0.48    4.36    9.04   14.16
+   350.0    0.00   -0.28   -1.02   -2.13   -3.50   -4.97   -6.37   -7.54   -8.34   -8.66   -8.46   -7.75   -6.55   -4.84   -2.53    0.51    4.39    9.07   14.17
+   355.0    0.00   -0.28   -1.02   -2.13   -3.49   -4.96   -6.37   -7.54   -8.33   -8.65   -8.45   -7.74   -6.53   -4.81   -2.50    0.54    4.43    9.11   14.20
+   360.0    0.00   -0.28   -1.01   -2.12   -3.49   -4.95   -6.35   -7.52   -8.32   -8.63   -8.43   -7.72   -6.51   -4.78   -2.47    0.58    4.48    9.16   14.25
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.10     -0.62    120.06                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.13   -0.52   -1.10   -1.82   -2.62   -3.43   -4.21   -4.85   -5.23   -5.25   -4.83   -3.98   -2.75   -1.23    0.59    2.86    5.83    9.66
+     0.0    0.00   -0.12   -0.48   -1.03   -1.72   -2.49   -3.29   -4.07   -4.73   -5.15   -5.20   -4.83   -4.05   -2.92   -1.50    0.25    2.53    5.61    9.51
+     5.0    0.00   -0.11   -0.47   -1.03   -1.71   -2.48   -3.29   -4.06   -4.72   -5.13   -5.20   -4.83   -4.05   -2.93   -1.51    0.25    2.54    5.58    9.37
+    10.0    0.00   -0.11   -0.47   -1.02   -1.71   -2.48   -3.28   -4.05   -4.71   -5.12   -5.19   -4.83   -4.06   -2.93   -1.51    0.26    2.55    5.55    9.26
+    15.0    0.00   -0.11   -0.46   -1.01   -1.71   -2.48   -3.28   -4.05   -4.70   -5.11   -5.17   -4.82   -4.05   -2.93   -1.50    0.27    2.55    5.53    9.17
+    20.0    0.00   -0.10   -0.45   -1.01   -1.70   -2.48   -3.28   -4.04   -4.69   -5.10   -5.16   -4.81   -4.04   -2.92   -1.48    0.29    2.57    5.52    9.12
+    25.0    0.00   -0.10   -0.45   -1.00   -1.70   -2.47   -3.28   -4.04   -4.68   -5.08   -5.14   -4.79   -4.02   -2.89   -1.45    0.32    2.59    5.52    9.12
+    30.0    0.00   -0.10   -0.44   -1.00   -1.69   -2.47   -3.27   -4.03   -4.67   -5.07   -5.13   -4.77   -3.99   -2.86   -1.41    0.36    2.61    5.53    9.16
+    35.0    0.00   -0.09   -0.44   -0.99   -1.69   -2.47   -3.27   -4.03   -4.66   -5.06   -5.11   -4.75   -3.96   -2.81   -1.36    0.41    2.65    5.57    9.23
+    40.0    0.00   -0.09   -0.44   -0.99   -1.68   -2.46   -3.27   -4.03   -4.66   -5.05   -5.10   -4.72   -3.92   -2.76   -1.30    0.47    2.69    5.61    9.34
+    45.0    0.00   -0.09   -0.43   -0.98   -1.68   -2.46   -3.26   -4.02   -4.66   -5.05   -5.09   -4.70   -3.88   -2.70   -1.23    0.53    2.74    5.66    9.47
+    50.0    0.00   -0.09   -0.43   -0.98   -1.67   -2.46   -3.26   -4.03   -4.66   -5.05   -5.08   -4.68   -3.84   -2.65   -1.17    0.59    2.79    5.72    9.60
+    55.0    0.00   -0.09   -0.43   -0.98   -1.67   -2.45   -3.26   -4.03   -4.66   -5.05   -5.07   -4.66   -3.81   -2.59   -1.11    0.65    2.84    5.77    9.73
+    60.0    0.00   -0.09   -0.43   -0.98   -1.67   -2.46   -3.27   -4.04   -4.67   -5.06   -5.07   -4.64   -3.77   -2.55   -1.05    0.70    2.88    5.81    9.83
+    65.0    0.00   -0.09   -0.43   -0.98   -1.67   -2.46   -3.27   -4.05   -4.69   -5.07   -5.07   -4.63   -3.75   -2.51   -1.02    0.74    2.91    5.84    9.91
+    70.0    0.00   -0.09   -0.43   -0.98   -1.68   -2.47   -3.29   -4.06   -4.70   -5.08   -5.08   -4.63   -3.74   -2.49   -0.99    0.75    2.92    5.85    9.95
+    75.0    0.00   -0.09   -0.43   -0.99   -1.69   -2.48   -3.30   -4.08   -4.72   -5.10   -5.09   -4.63   -3.74   -2.49   -0.99    0.76    2.92    5.85    9.96
+    80.0    0.00   -0.09   -0.44   -0.99   -1.70   -2.50   -3.32   -4.11   -4.74   -5.12   -5.11   -4.64   -3.74   -2.50   -1.00    0.74    2.90    5.82    9.93
+    85.0    0.00   -0.10   -0.44   -1.00   -1.71   -2.52   -3.35   -4.13   -4.77   -5.14   -5.12   -4.66   -3.76   -2.52   -1.03    0.71    2.86    5.78    9.86
+    90.0    0.00   -0.10   -0.45   -1.02   -1.73   -2.54   -3.37   -4.16   -4.79   -5.16   -5.14   -4.68   -3.79   -2.56   -1.07    0.66    2.82    5.73    9.78
+    95.0    0.00   -0.10   -0.46   -1.03   -1.75   -2.57   -3.40   -4.19   -4.82   -5.18   -5.16   -4.70   -3.82   -2.60   -1.12    0.61    2.77    5.67    9.68
+   100.0    0.00   -0.10   -0.47   -1.05   -1.78   -2.59   -3.43   -4.22   -4.84   -5.20   -5.18   -4.73   -3.86   -2.65   -1.18    0.56    2.72    5.61    9.58
+   105.0    0.00   -0.11   -0.48   -1.06   -1.80   -2.62   -3.46   -4.24   -4.87   -5.22   -5.20   -4.75   -3.90   -2.70   -1.23    0.52    2.68    5.56    9.48
+   110.0    0.00   -0.11   -0.49   -1.08   -1.82   -2.65   -3.49   -4.27   -4.89   -5.24   -5.22   -4.78   -3.93   -2.74   -1.27    0.48    2.66    5.53    9.40
+   115.0    0.00   -0.12   -0.50   -1.10   -1.85   -2.68   -3.52   -4.29   -4.90   -5.25   -5.24   -4.80   -3.96   -2.77   -1.30    0.46    2.65    5.51    9.33
+   120.0    0.00   -0.12   -0.51   -1.11   -1.87   -2.70   -3.54   -4.31   -4.92   -5.26   -5.25   -4.83   -3.99   -2.79   -1.31    0.46    2.66    5.51    9.29
+   125.0    0.00   -0.12   -0.52   -1.13   -1.89   -2.72   -3.56   -4.32   -4.93   -5.27   -5.26   -4.84   -4.00   -2.80   -1.31    0.48    2.69    5.53    9.26
+   130.0    0.00   -0.13   -0.52   -1.14   -1.91   -2.74   -3.57   -4.33   -4.93   -5.28   -5.28   -4.86   -4.01   -2.80   -1.29    0.52    2.73    5.57    9.26
+   135.0    0.00   -0.13   -0.53   -1.15   -1.92   -2.75   -3.58   -4.34   -4.94   -5.29   -5.29   -4.87   -4.02   -2.79   -1.26    0.57    2.79    5.61    9.27
+   140.0    0.00   -0.13   -0.54   -1.16   -1.93   -2.76   -3.59   -4.34   -4.94   -5.29   -5.30   -4.87   -4.02   -2.78   -1.22    0.62    2.85    5.66    9.28
+   145.0    0.00   -0.14   -0.55   -1.17   -1.94   -2.77   -3.59   -4.34   -4.95   -5.30   -5.30   -4.88   -4.01   -2.75   -1.18    0.67    2.91    5.71    9.29
+   150.0    0.00   -0.14   -0.55   -1.18   -1.95   -2.77   -3.59   -4.34   -4.95   -5.31   -5.31   -4.89   -4.01   -2.74   -1.15    0.72    2.95    5.75    9.30
+   155.0    0.00   -0.14   -0.56   -1.18   -1.95   -2.77   -3.59   -4.34   -4.95   -5.32   -5.32   -4.89   -4.01   -2.72   -1.12    0.75    2.99    5.78    9.30
+   160.0    0.00   -0.15   -0.56   -1.18   -1.95   -2.77   -3.59   -4.34   -4.96   -5.33   -5.34   -4.90   -4.01   -2.72   -1.11    0.76    3.00    5.79    9.28
+   165.0    0.00   -0.15   -0.56   -1.18   -1.94   -2.76   -3.58   -4.34   -4.96   -5.34   -5.35   -4.91   -4.01   -2.72   -1.12    0.76    3.00    5.79    9.26
+   170.0    0.00   -0.15   -0.56   -1.18   -1.94   -2.75   -3.57   -4.34   -4.97   -5.35   -5.36   -4.92   -4.02   -2.73   -1.14    0.73    2.97    5.77    9.23
+   175.0    0.00   -0.15   -0.57   -1.18   -1.93   -2.74   -3.57   -4.34   -4.98   -5.36   -5.37   -4.93   -4.03   -2.75   -1.17    0.69    2.93    5.74    9.20
+   180.0    0.00   -0.16   -0.57   -1.18   -1.92   -2.74   -3.56   -4.34   -4.98   -5.37   -5.38   -4.94   -4.04   -2.77   -1.21    0.63    2.88    5.71    9.17
+   185.0    0.00   -0.16   -0.57   -1.17   -1.91   -2.73   -3.56   -4.35   -4.99   -5.38   -5.38   -4.94   -4.05   -2.79   -1.25    0.58    2.83    5.69    9.16
+   190.0    0.00   -0.16   -0.57   -1.17   -1.90   -2.72   -3.56   -4.35   -5.00   -5.39   -5.39   -4.93   -4.05   -2.81   -1.29    0.53    2.79    5.68    9.18
+   195.0    0.00   -0.16   -0.56   -1.16   -1.90   -2.71   -3.55   -4.35   -5.01   -5.39   -5.38   -4.92   -4.04   -2.81   -1.31    0.49    2.76    5.69    9.22
+   200.0    0.00   -0.16   -0.56   -1.16   -1.89   -2.70   -3.55   -4.35   -5.01   -5.39   -5.37   -4.91   -4.02   -2.80   -1.32    0.48    2.76    5.72    9.30
+   205.0    0.00   -0.16   -0.56   -1.16   -1.88   -2.70   -3.55   -4.35   -5.01   -5.39   -5.36   -4.88   -3.99   -2.78   -1.30    0.49    2.79    5.79    9.40
+   210.0    0.00   -0.16   -0.56   -1.15   -1.88   -2.69   -3.54   -4.35   -5.01   -5.38   -5.34   -4.86   -3.96   -2.74   -1.27    0.53    2.85    5.88    9.53
+   215.0    0.00   -0.17   -0.56   -1.15   -1.88   -2.69   -3.54   -4.35   -5.01   -5.37   -5.32   -4.83   -3.92   -2.70   -1.21    0.60    2.93    5.99    9.69
+   220.0    0.00   -0.17   -0.57   -1.15   -1.87   -2.69   -3.54   -4.35   -5.00   -5.36   -5.31   -4.80   -3.88   -2.64   -1.14    0.69    3.04    6.13    9.85
+   225.0    0.00   -0.17   -0.57   -1.15   -1.87   -2.69   -3.54   -4.34   -4.99   -5.35   -5.29   -4.78   -3.85   -2.59   -1.06    0.79    3.17    6.27   10.02
+   230.0    0.00   -0.17   -0.57   -1.15   -1.88   -2.69   -3.53   -4.33   -4.98   -5.34   -5.28   -4.76   -3.82   -2.54   -0.98    0.90    3.30    6.41   10.17
+   235.0    0.00   -0.17   -0.57   -1.16   -1.88   -2.69   -3.53   -4.33   -4.97   -5.32   -5.27   -4.76   -3.81   -2.50   -0.91    1.01    3.43    6.54   10.30
+   240.0    0.00   -0.17   -0.57   -1.16   -1.88   -2.69   -3.52   -4.32   -4.96   -5.32   -5.27   -4.76   -3.81   -2.48   -0.85    1.11    3.55    6.65   10.40
+   245.0    0.00   -0.17   -0.58   -1.17   -1.89   -2.69   -3.52   -4.31   -4.95   -5.31   -5.28   -4.78   -3.82   -2.48   -0.82    1.18    3.64    6.72   10.45
+   250.0    0.00   -0.17   -0.58   -1.17   -1.89   -2.69   -3.52   -4.30   -4.93   -5.31   -5.29   -4.81   -3.86   -2.50   -0.80    1.23    3.69    6.76   10.46
+   255.0    0.00   -0.17   -0.58   -1.18   -1.90   -2.69   -3.51   -4.29   -4.92   -5.30   -5.30   -4.84   -3.90   -2.54   -0.82    1.24    3.71    6.75   10.43
+   260.0    0.00   -0.17   -0.58   -1.18   -1.90   -2.70   -3.51   -4.27   -4.91   -5.30   -5.32   -4.88   -3.96   -2.59   -0.86    1.22    3.69    6.70   10.36
+   265.0    0.00   -0.17   -0.58   -1.18   -1.91   -2.70   -3.50   -4.26   -4.90   -5.30   -5.34   -4.92   -4.02   -2.66   -0.92    1.16    3.63    6.61   10.26
+   270.0    0.00   -0.17   -0.58   -1.19   -1.91   -2.70   -3.50   -4.25   -4.89   -5.30   -5.36   -4.96   -4.08   -2.73   -0.99    1.08    3.53    6.49   10.15
+   275.0    0.00   -0.17   -0.58   -1.19   -1.91   -2.70   -3.49   -4.24   -4.88   -5.29   -5.37   -4.99   -4.13   -2.80   -1.08    0.98    3.41    6.35   10.04
+   280.0    0.00   -0.17   -0.58   -1.19   -1.91   -2.69   -3.48   -4.23   -4.87   -5.29   -5.37   -5.02   -4.17   -2.86   -1.16    0.86    3.26    6.20    9.93
+   285.0    0.00   -0.17   -0.58   -1.18   -1.91   -2.69   -3.47   -4.22   -4.86   -5.28   -5.37   -5.03   -4.20   -2.92   -1.25    0.74    3.11    6.05    9.85
+   290.0    0.00   -0.16   -0.58   -1.18   -1.90   -2.68   -3.46   -4.21   -4.85   -5.27   -5.37   -5.03   -4.21   -2.95   -1.33    0.62    2.96    5.90    9.79
+   295.0    0.00   -0.16   -0.57   -1.17   -1.89   -2.67   -3.45   -4.20   -4.84   -5.26   -5.35   -5.02   -4.21   -2.98   -1.39    0.51    2.82    5.78    9.77
+   300.0    0.00   -0.16   -0.57   -1.16   -1.88   -2.65   -3.44   -4.19   -4.83   -5.25   -5.34   -4.99   -4.19   -2.98   -1.44    0.42    2.69    5.68    9.78
+   305.0    0.00   -0.16   -0.56   -1.15   -1.87   -2.64   -3.42   -4.18   -4.82   -5.24   -5.32   -4.97   -4.17   -2.98   -1.47    0.34    2.59    5.61    9.82
+   310.0    0.00   -0.15   -0.56   -1.14   -1.85   -2.62   -3.41   -4.16   -4.81   -5.23   -5.30   -4.94   -4.14   -2.96   -1.49    0.28    2.51    5.57    9.87
+   315.0    0.00   -0.15   -0.55   -1.13   -1.83   -2.60   -3.39   -4.15   -4.80   -5.21   -5.28   -4.91   -4.10   -2.94   -1.49    0.24    2.46    5.55    9.94
+   320.0    0.00   -0.15   -0.54   -1.12   -1.82   -2.58   -3.38   -4.14   -4.79   -5.20   -5.26   -4.88   -4.07   -2.91   -1.49    0.22    2.43    5.55   10.00
+   325.0    0.00   -0.14   -0.53   -1.11   -1.80   -2.57   -3.36   -4.13   -4.78   -5.19   -5.24   -4.86   -4.04   -2.89   -1.49    0.21    2.43    5.57   10.04
+   330.0    0.00   -0.14   -0.53   -1.10   -1.79   -2.55   -3.34   -4.12   -4.77   -5.19   -5.23   -4.84   -4.02   -2.88   -1.48    0.21    2.43    5.60   10.06
+   335.0    0.00   -0.14   -0.52   -1.08   -1.77   -2.53   -3.33   -4.11   -4.77   -5.18   -5.22   -4.83   -4.01   -2.87   -1.48    0.21    2.45    5.62   10.04
+   340.0    0.00   -0.13   -0.51   -1.07   -1.76   -2.52   -3.32   -4.10   -4.76   -5.17   -5.22   -4.82   -4.01   -2.87   -1.48    0.22    2.47    5.64    9.99
+   345.0    0.00   -0.13   -0.50   -1.06   -1.75   -2.51   -3.31   -4.09   -4.75   -5.17   -5.22   -4.82   -4.01   -2.87   -1.48    0.23    2.49    5.65    9.90
+   350.0    0.00   -0.12   -0.49   -1.05   -1.74   -2.50   -3.30   -4.08   -4.74   -5.16   -5.21   -4.83   -4.02   -2.89   -1.49    0.24    2.51    5.65    9.79
+   355.0    0.00   -0.12   -0.49   -1.04   -1.73   -2.49   -3.29   -4.07   -4.73   -5.15   -5.21   -4.83   -4.03   -2.90   -1.50    0.24    2.52    5.63    9.65
+   360.0    0.00   -0.12   -0.48   -1.03   -1.72   -2.49   -3.29   -4.07   -4.73   -5.15   -5.20   -4.83   -4.05   -2.92   -1.50    0.25    2.53    5.61    9.51
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH701945D_M    SCIS                                        TYPE / SERIAL NO    
+FIELD               NGS/TUM                  2    10-AUG-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.50      0.04     89.04                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.44   -1.42   -2.77   -4.18   -5.99   -7.45   -8.79   -9.57   -9.90   -9.74   -8.86   -7.67   -5.84   -3.30   -0.23    3.69
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.60     -0.02    118.96                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.43   -1.02   -1.80   -2.62   -3.42   -4.23   -5.01   -5.75   -6.23   -6.25   -5.83   -5.08   -3.75   -2.13   -0.11    2.56
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH701945D_M    SCIT                                        TYPE / SERIAL NO    
+FIELD               NGS/TUM                  3    10-AUG-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.70     -0.36     88.64                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.54   -1.52   -2.87   -4.28   -5.89   -7.25   -8.39   -9.17   -9.40   -9.24   -8.46   -7.17   -5.44   -3.20   -0.23    3.39
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.20     -0.42    117.56                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.23   -0.62   -1.20   -1.92   -2.62   -3.43   -4.31   -4.95   -5.33   -5.45   -5.03   -4.18   -2.75   -1.03    1.29    4.26
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH701945D_M    SNOW                                        TYPE / SERIAL NO    
+FIELD               NGS/TUM                  4    10-AUG-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      1.00      0.34     90.54                              NORTH / EAST / UP   
+   NOAZI    0.00    0.66    0.28   -0.67   -2.08   -3.79   -5.35   -6.79   -7.77   -8.30   -8.04   -7.26   -5.87   -3.84   -1.10    2.17    6.39
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.30     -0.32    118.26                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.33   -0.62   -1.20   -1.82   -2.52   -3.33   -4.11   -4.75   -5.13   -5.25   -4.93   -4.18   -2.85   -1.13    1.09    4.16
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH701945E_M    NONE                                        TYPE / SERIAL NO    
+COPIED              TUM                      0    25-MAR-04 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+COPIED FROM AOAD/M_T                                        COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.60     -0.46     91.24                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.24   -0.92   -1.97   -3.28   -4.69   -6.05   -7.19   -7.97   -8.30   -8.14   -7.46   -6.27   -4.54   -2.20    0.87    4.79    9.56   14.88
+     0.0    0.00   -0.28   -1.01   -2.12   -3.49   -4.95   -6.35   -7.52   -8.32   -8.63   -8.43   -7.72   -6.51   -4.78   -2.47    0.58    4.48    9.16   14.25
+     5.0    0.00   -0.28   -1.01   -2.12   -3.48   -4.94   -6.34   -7.50   -8.30   -8.62   -8.42   -7.70   -6.48   -4.75   -2.42    0.63    4.53    9.23   14.33
+    10.0    0.00   -0.28   -1.01   -2.11   -3.46   -4.92   -6.32   -7.48   -8.27   -8.59   -8.39   -7.68   -6.46   -4.72   -2.38    0.69    4.60    9.32   14.45
+    15.0    0.00   -0.27   -1.00   -2.10   -3.45   -4.90   -6.29   -7.46   -8.25   -8.57   -8.37   -7.65   -6.43   -4.68   -2.33    0.75    4.69    9.43   14.61
+    20.0    0.00   -0.27   -0.99   -2.08   -3.43   -4.88   -6.27   -7.43   -8.22   -8.54   -8.35   -7.63   -6.40   -4.64   -2.28    0.83    4.78    9.56   14.80
+    25.0    0.00   -0.27   -0.98   -2.07   -3.41   -4.85   -6.24   -7.39   -8.19   -8.51   -8.32   -7.60   -6.37   -4.60   -2.22    0.90    4.89    9.71   15.02
+    30.0    0.00   -0.26   -0.98   -2.06   -3.39   -4.83   -6.21   -7.36   -8.15   -8.48   -8.29   -7.57   -6.33   -4.55   -2.15    0.99    5.00    9.87   15.25
+    35.0    0.00   -0.26   -0.97   -2.04   -3.37   -4.80   -6.17   -7.32   -8.11   -8.44   -8.25   -7.54   -6.29   -4.50   -2.09    1.08    5.12   10.03   15.48
+    40.0    0.00   -0.26   -0.96   -2.02   -3.34   -4.77   -6.13   -7.28   -8.07   -8.40   -8.21   -7.50   -6.25   -4.45   -2.02    1.17    5.25   10.19   15.70
+    45.0    0.00   -0.25   -0.95   -2.01   -3.32   -4.74   -6.10   -7.24   -8.03   -8.35   -8.17   -7.45   -6.20   -4.40   -1.95    1.26    5.36   10.34   15.89
+    50.0    0.00   -0.25   -0.94   -1.99   -3.29   -4.70   -6.06   -7.19   -7.98   -8.31   -8.12   -7.40   -6.15   -4.34   -1.88    1.34    5.46   10.46   16.05
+    55.0    0.00   -0.24   -0.93   -1.97   -3.27   -4.67   -6.02   -7.15   -7.93   -8.25   -8.07   -7.35   -6.10   -4.28   -1.82    1.41    5.54   10.55   16.15
+    60.0    0.00   -0.24   -0.92   -1.95   -3.24   -4.64   -5.98   -7.10   -7.88   -8.20   -8.01   -7.30   -6.04   -4.23   -1.76    1.47    5.59   10.60   16.20
+    65.0    0.00   -0.24   -0.91   -1.94   -3.22   -4.60   -5.94   -7.06   -7.83   -8.15   -7.96   -7.24   -5.99   -4.18   -1.72    1.50    5.61   10.60   16.20
+    70.0    0.00   -0.23   -0.90   -1.92   -3.19   -4.57   -5.90   -7.02   -7.79   -8.10   -7.91   -7.19   -5.94   -4.14   -1.70    1.50    5.60   10.57   16.14
+    75.0    0.00   -0.23   -0.89   -1.91   -3.17   -4.55   -5.87   -6.98   -7.75   -8.06   -7.87   -7.15   -5.91   -4.12   -1.70    1.48    5.55   10.50   16.04
+    80.0    0.00   -0.23   -0.88   -1.89   -3.16   -4.53   -5.84   -6.95   -7.72   -8.03   -7.83   -7.12   -5.89   -4.11   -1.71    1.44    5.47   10.39   15.91
+    85.0    0.00   -0.22   -0.87   -1.88   -3.14   -4.51   -5.82   -6.93   -7.69   -8.00   -7.81   -7.10   -5.88   -4.13   -1.75    1.36    5.36   10.25   15.74
+    90.0    0.00   -0.22   -0.87   -1.87   -3.13   -4.49   -5.81   -6.92   -7.68   -7.99   -7.80   -7.10   -5.90   -4.16   -1.82    1.27    5.24   10.09   15.56
+    95.0    0.00   -0.22   -0.86   -1.87   -3.12   -4.49   -5.80   -6.91   -7.68   -7.99   -7.81   -7.12   -5.93   -4.21   -1.90    1.16    5.10    9.92   15.37
+   100.0    0.00   -0.21   -0.86   -1.87   -3.12   -4.48   -5.80   -6.91   -7.68   -8.01   -7.84   -7.16   -5.98   -4.29   -1.99    1.04    4.96    9.76   15.18
+   105.0    0.00   -0.21   -0.86   -1.86   -3.12   -4.49   -5.81   -6.93   -7.70   -8.04   -7.88   -7.21   -6.05   -4.37   -2.09    0.93    4.82    9.60   15.00
+   110.0    0.00   -0.21   -0.86   -1.87   -3.13   -4.50   -5.82   -6.95   -7.73   -8.07   -7.93   -7.28   -6.13   -4.47   -2.20    0.81    4.69    9.46   14.84
+   115.0    0.00   -0.21   -0.86   -1.87   -3.13   -4.51   -5.84   -6.97   -7.76   -8.12   -7.99   -7.35   -6.22   -4.56   -2.30    0.71    4.59    9.34   14.71
+   120.0    0.00   -0.21   -0.86   -1.87   -3.15   -4.53   -5.87   -7.00   -7.80   -8.17   -8.05   -7.43   -6.31   -4.66   -2.39    0.62    4.50    9.24   14.60
+   125.0    0.00   -0.21   -0.86   -1.88   -3.16   -4.55   -5.89   -7.04   -7.85   -8.22   -8.12   -7.51   -6.39   -4.74   -2.47    0.55    4.44    9.18   14.52
+   130.0    0.00   -0.21   -0.86   -1.89   -3.17   -4.57   -5.92   -7.07   -7.89   -8.27   -8.18   -7.58   -6.47   -4.81   -2.53    0.51    4.40    9.13   14.47
+   135.0    0.00   -0.21   -0.86   -1.90   -3.19   -4.60   -5.95   -7.11   -7.93   -8.32   -8.23   -7.64   -6.53   -4.87   -2.57    0.47    4.37    9.11   14.44
+   140.0    0.00   -0.21   -0.87   -1.91   -3.21   -4.62   -5.98   -7.14   -7.96   -8.36   -8.28   -7.69   -6.58   -4.91   -2.60    0.46    4.37    9.10   14.43
+   145.0    0.00   -0.21   -0.87   -1.91   -3.22   -4.64   -6.01   -7.17   -8.00   -8.39   -8.31   -7.72   -6.61   -4.93   -2.62    0.45    4.36    9.10   14.44
+   150.0    0.00   -0.21   -0.87   -1.92   -3.24   -4.66   -6.04   -7.20   -8.02   -8.42   -8.33   -7.74   -6.63   -4.94   -2.62    0.45    4.37    9.10   14.45
+   155.0    0.00   -0.21   -0.87   -1.93   -3.25   -4.68   -6.06   -7.22   -8.05   -8.44   -8.35   -7.75   -6.63   -4.94   -2.62    0.46    4.36    9.10   14.46
+   160.0    0.00   -0.21   -0.88   -1.93   -3.26   -4.69   -6.07   -7.24   -8.06   -8.45   -8.35   -7.75   -6.62   -4.94   -2.61    0.45    4.36    9.09   14.46
+   165.0    0.00   -0.21   -0.88   -1.94   -3.27   -4.70   -6.09   -7.25   -8.07   -8.46   -8.35   -7.74   -6.61   -4.93   -2.61    0.45    4.34    9.08   14.46
+   170.0    0.00   -0.21   -0.88   -1.94   -3.27   -4.71   -6.10   -7.26   -8.08   -8.46   -8.35   -7.73   -6.60   -4.92   -2.61    0.43    4.32    9.05   14.44
+   175.0    0.00   -0.21   -0.88   -1.94   -3.27   -4.71   -6.10   -7.27   -8.08   -8.46   -8.34   -7.72   -6.59   -4.91   -2.61    0.42    4.29    9.02   14.41
+   180.0    0.00   -0.21   -0.88   -1.94   -3.27   -4.71   -6.10   -7.27   -8.08   -8.46   -8.34   -7.71   -6.57   -4.90   -2.62    0.40    4.26    9.00   14.38
+   185.0    0.00   -0.21   -0.88   -1.93   -3.26   -4.70   -6.09   -7.26   -8.08   -8.45   -8.33   -7.70   -6.56   -4.90   -2.62    0.38    4.24    8.98   14.35
+   190.0    0.00   -0.21   -0.87   -1.93   -3.25   -4.69   -6.08   -7.25   -8.07   -8.44   -8.32   -7.69   -6.55   -4.89   -2.62    0.38    4.24    8.98   14.33
+   195.0    0.00   -0.21   -0.87   -1.92   -3.24   -4.68   -6.07   -7.24   -8.06   -8.43   -8.30   -7.67   -6.54   -4.88   -2.61    0.39    4.26    9.00   14.33
+   200.0    0.00   -0.21   -0.87   -1.92   -3.23   -4.67   -6.05   -7.22   -8.04   -8.41   -8.29   -7.65   -6.52   -4.86   -2.59    0.42    4.30    9.06   14.37
+   205.0    0.00   -0.21   -0.87   -1.91   -3.22   -4.65   -6.03   -7.20   -8.02   -8.39   -8.26   -7.62   -6.48   -4.82   -2.55    0.47    4.38    9.15   14.44
+   210.0    0.00   -0.21   -0.87   -1.90   -3.21   -4.63   -6.01   -7.18   -8.00   -8.36   -8.23   -7.58   -6.44   -4.77   -2.49    0.55    4.48    9.28   14.55
+   215.0    0.00   -0.21   -0.87   -1.90   -3.20   -4.61   -5.99   -7.15   -7.97   -8.33   -8.18   -7.53   -6.38   -4.70   -2.41    0.65    4.61    9.43   14.69
+   220.0    0.00   -0.21   -0.87   -1.89   -3.19   -4.60   -5.97   -7.13   -7.93   -8.28   -8.13   -7.47   -6.31   -4.62   -2.31    0.78    4.77    9.61   14.87
+   225.0    0.00   -0.21   -0.87   -1.89   -3.18   -4.58   -5.94   -7.10   -7.89   -8.24   -8.07   -7.40   -6.22   -4.52   -2.19    0.91    4.93    9.80   15.07
+   230.0    0.00   -0.21   -0.87   -1.89   -3.17   -4.57   -5.92   -7.07   -7.85   -8.18   -8.01   -7.32   -6.13   -4.41   -2.07    1.06    5.10    9.98   15.28
+   235.0    0.00   -0.22   -0.87   -1.89   -3.16   -4.56   -5.90   -7.03   -7.81   -8.13   -7.94   -7.24   -6.03   -4.30   -1.94    1.20    5.25   10.15   15.47
+   240.0    0.00   -0.22   -0.87   -1.89   -3.16   -4.55   -5.88   -7.01   -7.77   -8.07   -7.87   -7.16   -5.94   -4.19   -1.82    1.33    5.39   10.29   15.63
+   245.0    0.00   -0.22   -0.87   -1.89   -3.16   -4.54   -5.87   -6.98   -7.73   -8.02   -7.81   -7.08   -5.86   -4.10   -1.71    1.44    5.49   10.39   15.74
+   250.0    0.00   -0.22   -0.88   -1.90   -3.17   -4.54   -5.86   -6.96   -7.70   -7.98   -7.76   -7.02   -5.79   -4.01   -1.62    1.53    5.56   10.44   15.79
+   255.0    0.00   -0.23   -0.88   -1.90   -3.17   -4.54   -5.86   -6.95   -7.68   -7.95   -7.72   -6.98   -5.73   -3.96   -1.56    1.58    5.58   10.43   15.78
+   260.0    0.00   -0.23   -0.89   -1.91   -3.18   -4.55   -5.86   -6.94   -7.66   -7.93   -7.70   -6.96   -5.71   -3.92   -1.53    1.59    5.57   10.37   15.71
+   265.0    0.00   -0.23   -0.90   -1.92   -3.19   -4.56   -5.86   -6.94   -7.66   -7.93   -7.70   -6.96   -5.70   -3.92   -1.53    1.57    5.51   10.26   15.58
+   270.0    0.00   -0.24   -0.91   -1.94   -3.21   -4.58   -5.88   -6.95   -7.67   -7.94   -7.71   -6.98   -5.73   -3.94   -1.56    1.52    5.41   10.11   15.40
+   275.0    0.00   -0.24   -0.92   -1.95   -3.23   -4.60   -5.90   -6.97   -7.69   -7.96   -7.74   -7.02   -5.77   -4.00   -1.62    1.44    5.28    9.93   15.20
+   280.0    0.00   -0.25   -0.93   -1.97   -3.25   -4.62   -5.93   -7.00   -7.72   -8.00   -7.79   -7.07   -5.84   -4.07   -1.71    1.33    5.14    9.74   14.98
+   285.0    0.00   -0.25   -0.94   -1.98   -3.27   -4.65   -5.96   -7.04   -7.77   -8.06   -7.86   -7.15   -5.92   -4.16   -1.81    1.21    4.99    9.55   14.77
+   290.0    0.00   -0.25   -0.95   -2.00   -3.30   -4.69   -6.00   -7.09   -7.82   -8.12   -7.93   -7.23   -6.01   -4.26   -1.92    1.08    4.84    9.38   14.58
+   295.0    0.00   -0.26   -0.96   -2.02   -3.33   -4.72   -6.04   -7.14   -7.88   -8.19   -8.00   -7.31   -6.11   -4.36   -2.04    0.96    4.70    9.23   14.43
+   300.0    0.00   -0.26   -0.97   -2.04   -3.35   -4.76   -6.09   -7.19   -7.95   -8.26   -8.08   -7.40   -6.20   -4.47   -2.15    0.83    4.58    9.10   14.31
+   305.0    0.00   -0.26   -0.98   -2.05   -3.38   -4.79   -6.14   -7.25   -8.01   -8.33   -8.16   -7.48   -6.29   -4.57   -2.26    0.73    4.47    9.01   14.22
+   310.0    0.00   -0.27   -0.98   -2.07   -3.40   -4.83   -6.18   -7.31   -8.08   -8.40   -8.23   -7.56   -6.37   -4.66   -2.35    0.63    4.40    8.96   14.17
+   315.0    0.00   -0.27   -0.99   -2.08   -3.43   -4.86   -6.23   -7.36   -8.14   -8.47   -8.30   -7.62   -6.44   -4.73   -2.43    0.56    4.34    8.93   14.15
+   320.0    0.00   -0.27   -1.00   -2.10   -3.45   -4.89   -6.27   -7.41   -8.19   -8.52   -8.35   -7.67   -6.49   -4.79   -2.49    0.50    4.31    8.92   14.15
+   325.0    0.00   -0.28   -1.01   -2.11   -3.46   -4.92   -6.30   -7.45   -8.24   -8.57   -8.39   -7.71   -6.53   -4.83   -2.54    0.47    4.29    8.93   14.15
+   330.0    0.00   -0.28   -1.01   -2.12   -3.48   -4.94   -6.33   -7.49   -8.28   -8.61   -8.43   -7.74   -6.56   -4.86   -2.56    0.45    4.29    8.95   14.16
+   335.0    0.00   -0.28   -1.02   -2.13   -3.49   -4.95   -6.35   -7.51   -8.31   -8.63   -8.45   -7.76   -6.57   -4.87   -2.57    0.45    4.31    8.98   14.16
+   340.0    0.00   -0.28   -1.02   -2.13   -3.50   -4.96   -6.36   -7.53   -8.33   -8.65   -8.46   -7.77   -6.57   -4.87   -2.57    0.46    4.33    9.01   14.16
+   345.0    0.00   -0.28   -1.02   -2.13   -3.50   -4.97   -6.37   -7.54   -8.33   -8.66   -8.46   -7.76   -6.57   -4.86   -2.56    0.48    4.36    9.04   14.16
+   350.0    0.00   -0.28   -1.02   -2.13   -3.50   -4.97   -6.37   -7.54   -8.34   -8.66   -8.46   -7.75   -6.55   -4.84   -2.53    0.51    4.39    9.07   14.17
+   355.0    0.00   -0.28   -1.02   -2.13   -3.49   -4.96   -6.37   -7.54   -8.33   -8.65   -8.45   -7.74   -6.53   -4.81   -2.50    0.54    4.43    9.11   14.20
+   360.0    0.00   -0.28   -1.01   -2.12   -3.49   -4.95   -6.35   -7.52   -8.32   -8.63   -8.43   -7.72   -6.51   -4.78   -2.47    0.58    4.48    9.16   14.25
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.10     -0.62    120.06                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.13   -0.52   -1.10   -1.82   -2.62   -3.43   -4.21   -4.85   -5.23   -5.25   -4.83   -3.98   -2.75   -1.23    0.59    2.86    5.83    9.66
+     0.0    0.00   -0.12   -0.48   -1.03   -1.72   -2.49   -3.29   -4.07   -4.73   -5.15   -5.20   -4.83   -4.05   -2.92   -1.50    0.25    2.53    5.61    9.51
+     5.0    0.00   -0.11   -0.47   -1.03   -1.71   -2.48   -3.29   -4.06   -4.72   -5.13   -5.20   -4.83   -4.05   -2.93   -1.51    0.25    2.54    5.58    9.37
+    10.0    0.00   -0.11   -0.47   -1.02   -1.71   -2.48   -3.28   -4.05   -4.71   -5.12   -5.19   -4.83   -4.06   -2.93   -1.51    0.26    2.55    5.55    9.26
+    15.0    0.00   -0.11   -0.46   -1.01   -1.71   -2.48   -3.28   -4.05   -4.70   -5.11   -5.17   -4.82   -4.05   -2.93   -1.50    0.27    2.55    5.53    9.17
+    20.0    0.00   -0.10   -0.45   -1.01   -1.70   -2.48   -3.28   -4.04   -4.69   -5.10   -5.16   -4.81   -4.04   -2.92   -1.48    0.29    2.57    5.52    9.12
+    25.0    0.00   -0.10   -0.45   -1.00   -1.70   -2.47   -3.28   -4.04   -4.68   -5.08   -5.14   -4.79   -4.02   -2.89   -1.45    0.32    2.59    5.52    9.12
+    30.0    0.00   -0.10   -0.44   -1.00   -1.69   -2.47   -3.27   -4.03   -4.67   -5.07   -5.13   -4.77   -3.99   -2.86   -1.41    0.36    2.61    5.53    9.16
+    35.0    0.00   -0.09   -0.44   -0.99   -1.69   -2.47   -3.27   -4.03   -4.66   -5.06   -5.11   -4.75   -3.96   -2.81   -1.36    0.41    2.65    5.57    9.23
+    40.0    0.00   -0.09   -0.44   -0.99   -1.68   -2.46   -3.27   -4.03   -4.66   -5.05   -5.10   -4.72   -3.92   -2.76   -1.30    0.47    2.69    5.61    9.34
+    45.0    0.00   -0.09   -0.43   -0.98   -1.68   -2.46   -3.26   -4.02   -4.66   -5.05   -5.09   -4.70   -3.88   -2.70   -1.23    0.53    2.74    5.66    9.47
+    50.0    0.00   -0.09   -0.43   -0.98   -1.67   -2.46   -3.26   -4.03   -4.66   -5.05   -5.08   -4.68   -3.84   -2.65   -1.17    0.59    2.79    5.72    9.60
+    55.0    0.00   -0.09   -0.43   -0.98   -1.67   -2.45   -3.26   -4.03   -4.66   -5.05   -5.07   -4.66   -3.81   -2.59   -1.11    0.65    2.84    5.77    9.73
+    60.0    0.00   -0.09   -0.43   -0.98   -1.67   -2.46   -3.27   -4.04   -4.67   -5.06   -5.07   -4.64   -3.77   -2.55   -1.05    0.70    2.88    5.81    9.83
+    65.0    0.00   -0.09   -0.43   -0.98   -1.67   -2.46   -3.27   -4.05   -4.69   -5.07   -5.07   -4.63   -3.75   -2.51   -1.02    0.74    2.91    5.84    9.91
+    70.0    0.00   -0.09   -0.43   -0.98   -1.68   -2.47   -3.29   -4.06   -4.70   -5.08   -5.08   -4.63   -3.74   -2.49   -0.99    0.75    2.92    5.85    9.95
+    75.0    0.00   -0.09   -0.43   -0.99   -1.69   -2.48   -3.30   -4.08   -4.72   -5.10   -5.09   -4.63   -3.74   -2.49   -0.99    0.76    2.92    5.85    9.96
+    80.0    0.00   -0.09   -0.44   -0.99   -1.70   -2.50   -3.32   -4.11   -4.74   -5.12   -5.11   -4.64   -3.74   -2.50   -1.00    0.74    2.90    5.82    9.93
+    85.0    0.00   -0.10   -0.44   -1.00   -1.71   -2.52   -3.35   -4.13   -4.77   -5.14   -5.12   -4.66   -3.76   -2.52   -1.03    0.71    2.86    5.78    9.86
+    90.0    0.00   -0.10   -0.45   -1.02   -1.73   -2.54   -3.37   -4.16   -4.79   -5.16   -5.14   -4.68   -3.79   -2.56   -1.07    0.66    2.82    5.73    9.78
+    95.0    0.00   -0.10   -0.46   -1.03   -1.75   -2.57   -3.40   -4.19   -4.82   -5.18   -5.16   -4.70   -3.82   -2.60   -1.12    0.61    2.77    5.67    9.68
+   100.0    0.00   -0.10   -0.47   -1.05   -1.78   -2.59   -3.43   -4.22   -4.84   -5.20   -5.18   -4.73   -3.86   -2.65   -1.18    0.56    2.72    5.61    9.58
+   105.0    0.00   -0.11   -0.48   -1.06   -1.80   -2.62   -3.46   -4.24   -4.87   -5.22   -5.20   -4.75   -3.90   -2.70   -1.23    0.52    2.68    5.56    9.48
+   110.0    0.00   -0.11   -0.49   -1.08   -1.82   -2.65   -3.49   -4.27   -4.89   -5.24   -5.22   -4.78   -3.93   -2.74   -1.27    0.48    2.66    5.53    9.40
+   115.0    0.00   -0.12   -0.50   -1.10   -1.85   -2.68   -3.52   -4.29   -4.90   -5.25   -5.24   -4.80   -3.96   -2.77   -1.30    0.46    2.65    5.51    9.33
+   120.0    0.00   -0.12   -0.51   -1.11   -1.87   -2.70   -3.54   -4.31   -4.92   -5.26   -5.25   -4.83   -3.99   -2.79   -1.31    0.46    2.66    5.51    9.29
+   125.0    0.00   -0.12   -0.52   -1.13   -1.89   -2.72   -3.56   -4.32   -4.93   -5.27   -5.26   -4.84   -4.00   -2.80   -1.31    0.48    2.69    5.53    9.26
+   130.0    0.00   -0.13   -0.52   -1.14   -1.91   -2.74   -3.57   -4.33   -4.93   -5.28   -5.28   -4.86   -4.01   -2.80   -1.29    0.52    2.73    5.57    9.26
+   135.0    0.00   -0.13   -0.53   -1.15   -1.92   -2.75   -3.58   -4.34   -4.94   -5.29   -5.29   -4.87   -4.02   -2.79   -1.26    0.57    2.79    5.61    9.27
+   140.0    0.00   -0.13   -0.54   -1.16   -1.93   -2.76   -3.59   -4.34   -4.94   -5.29   -5.30   -4.87   -4.02   -2.78   -1.22    0.62    2.85    5.66    9.28
+   145.0    0.00   -0.14   -0.55   -1.17   -1.94   -2.77   -3.59   -4.34   -4.95   -5.30   -5.30   -4.88   -4.01   -2.75   -1.18    0.67    2.91    5.71    9.29
+   150.0    0.00   -0.14   -0.55   -1.18   -1.95   -2.77   -3.59   -4.34   -4.95   -5.31   -5.31   -4.89   -4.01   -2.74   -1.15    0.72    2.95    5.75    9.30
+   155.0    0.00   -0.14   -0.56   -1.18   -1.95   -2.77   -3.59   -4.34   -4.95   -5.32   -5.32   -4.89   -4.01   -2.72   -1.12    0.75    2.99    5.78    9.30
+   160.0    0.00   -0.15   -0.56   -1.18   -1.95   -2.77   -3.59   -4.34   -4.96   -5.33   -5.34   -4.90   -4.01   -2.72   -1.11    0.76    3.00    5.79    9.28
+   165.0    0.00   -0.15   -0.56   -1.18   -1.94   -2.76   -3.58   -4.34   -4.96   -5.34   -5.35   -4.91   -4.01   -2.72   -1.12    0.76    3.00    5.79    9.26
+   170.0    0.00   -0.15   -0.56   -1.18   -1.94   -2.75   -3.57   -4.34   -4.97   -5.35   -5.36   -4.92   -4.02   -2.73   -1.14    0.73    2.97    5.77    9.23
+   175.0    0.00   -0.15   -0.57   -1.18   -1.93   -2.74   -3.57   -4.34   -4.98   -5.36   -5.37   -4.93   -4.03   -2.75   -1.17    0.69    2.93    5.74    9.20
+   180.0    0.00   -0.16   -0.57   -1.18   -1.92   -2.74   -3.56   -4.34   -4.98   -5.37   -5.38   -4.94   -4.04   -2.77   -1.21    0.63    2.88    5.71    9.17
+   185.0    0.00   -0.16   -0.57   -1.17   -1.91   -2.73   -3.56   -4.35   -4.99   -5.38   -5.38   -4.94   -4.05   -2.79   -1.25    0.58    2.83    5.69    9.16
+   190.0    0.00   -0.16   -0.57   -1.17   -1.90   -2.72   -3.56   -4.35   -5.00   -5.39   -5.39   -4.93   -4.05   -2.81   -1.29    0.53    2.79    5.68    9.18
+   195.0    0.00   -0.16   -0.56   -1.16   -1.90   -2.71   -3.55   -4.35   -5.01   -5.39   -5.38   -4.92   -4.04   -2.81   -1.31    0.49    2.76    5.69    9.22
+   200.0    0.00   -0.16   -0.56   -1.16   -1.89   -2.70   -3.55   -4.35   -5.01   -5.39   -5.37   -4.91   -4.02   -2.80   -1.32    0.48    2.76    5.72    9.30
+   205.0    0.00   -0.16   -0.56   -1.16   -1.88   -2.70   -3.55   -4.35   -5.01   -5.39   -5.36   -4.88   -3.99   -2.78   -1.30    0.49    2.79    5.79    9.40
+   210.0    0.00   -0.16   -0.56   -1.15   -1.88   -2.69   -3.54   -4.35   -5.01   -5.38   -5.34   -4.86   -3.96   -2.74   -1.27    0.53    2.85    5.88    9.53
+   215.0    0.00   -0.17   -0.56   -1.15   -1.88   -2.69   -3.54   -4.35   -5.01   -5.37   -5.32   -4.83   -3.92   -2.70   -1.21    0.60    2.93    5.99    9.69
+   220.0    0.00   -0.17   -0.57   -1.15   -1.87   -2.69   -3.54   -4.35   -5.00   -5.36   -5.31   -4.80   -3.88   -2.64   -1.14    0.69    3.04    6.13    9.85
+   225.0    0.00   -0.17   -0.57   -1.15   -1.87   -2.69   -3.54   -4.34   -4.99   -5.35   -5.29   -4.78   -3.85   -2.59   -1.06    0.79    3.17    6.27   10.02
+   230.0    0.00   -0.17   -0.57   -1.15   -1.88   -2.69   -3.53   -4.33   -4.98   -5.34   -5.28   -4.76   -3.82   -2.54   -0.98    0.90    3.30    6.41   10.17
+   235.0    0.00   -0.17   -0.57   -1.16   -1.88   -2.69   -3.53   -4.33   -4.97   -5.32   -5.27   -4.76   -3.81   -2.50   -0.91    1.01    3.43    6.54   10.30
+   240.0    0.00   -0.17   -0.57   -1.16   -1.88   -2.69   -3.52   -4.32   -4.96   -5.32   -5.27   -4.76   -3.81   -2.48   -0.85    1.11    3.55    6.65   10.40
+   245.0    0.00   -0.17   -0.58   -1.17   -1.89   -2.69   -3.52   -4.31   -4.95   -5.31   -5.28   -4.78   -3.82   -2.48   -0.82    1.18    3.64    6.72   10.45
+   250.0    0.00   -0.17   -0.58   -1.17   -1.89   -2.69   -3.52   -4.30   -4.93   -5.31   -5.29   -4.81   -3.86   -2.50   -0.80    1.23    3.69    6.76   10.46
+   255.0    0.00   -0.17   -0.58   -1.18   -1.90   -2.69   -3.51   -4.29   -4.92   -5.30   -5.30   -4.84   -3.90   -2.54   -0.82    1.24    3.71    6.75   10.43
+   260.0    0.00   -0.17   -0.58   -1.18   -1.90   -2.70   -3.51   -4.27   -4.91   -5.30   -5.32   -4.88   -3.96   -2.59   -0.86    1.22    3.69    6.70   10.36
+   265.0    0.00   -0.17   -0.58   -1.18   -1.91   -2.70   -3.50   -4.26   -4.90   -5.30   -5.34   -4.92   -4.02   -2.66   -0.92    1.16    3.63    6.61   10.26
+   270.0    0.00   -0.17   -0.58   -1.19   -1.91   -2.70   -3.50   -4.25   -4.89   -5.30   -5.36   -4.96   -4.08   -2.73   -0.99    1.08    3.53    6.49   10.15
+   275.0    0.00   -0.17   -0.58   -1.19   -1.91   -2.70   -3.49   -4.24   -4.88   -5.29   -5.37   -4.99   -4.13   -2.80   -1.08    0.98    3.41    6.35   10.04
+   280.0    0.00   -0.17   -0.58   -1.19   -1.91   -2.69   -3.48   -4.23   -4.87   -5.29   -5.37   -5.02   -4.17   -2.86   -1.16    0.86    3.26    6.20    9.93
+   285.0    0.00   -0.17   -0.58   -1.18   -1.91   -2.69   -3.47   -4.22   -4.86   -5.28   -5.37   -5.03   -4.20   -2.92   -1.25    0.74    3.11    6.05    9.85
+   290.0    0.00   -0.16   -0.58   -1.18   -1.90   -2.68   -3.46   -4.21   -4.85   -5.27   -5.37   -5.03   -4.21   -2.95   -1.33    0.62    2.96    5.90    9.79
+   295.0    0.00   -0.16   -0.57   -1.17   -1.89   -2.67   -3.45   -4.20   -4.84   -5.26   -5.35   -5.02   -4.21   -2.98   -1.39    0.51    2.82    5.78    9.77
+   300.0    0.00   -0.16   -0.57   -1.16   -1.88   -2.65   -3.44   -4.19   -4.83   -5.25   -5.34   -4.99   -4.19   -2.98   -1.44    0.42    2.69    5.68    9.78
+   305.0    0.00   -0.16   -0.56   -1.15   -1.87   -2.64   -3.42   -4.18   -4.82   -5.24   -5.32   -4.97   -4.17   -2.98   -1.47    0.34    2.59    5.61    9.82
+   310.0    0.00   -0.15   -0.56   -1.14   -1.85   -2.62   -3.41   -4.16   -4.81   -5.23   -5.30   -4.94   -4.14   -2.96   -1.49    0.28    2.51    5.57    9.87
+   315.0    0.00   -0.15   -0.55   -1.13   -1.83   -2.60   -3.39   -4.15   -4.80   -5.21   -5.28   -4.91   -4.10   -2.94   -1.49    0.24    2.46    5.55    9.94
+   320.0    0.00   -0.15   -0.54   -1.12   -1.82   -2.58   -3.38   -4.14   -4.79   -5.20   -5.26   -4.88   -4.07   -2.91   -1.49    0.22    2.43    5.55   10.00
+   325.0    0.00   -0.14   -0.53   -1.11   -1.80   -2.57   -3.36   -4.13   -4.78   -5.19   -5.24   -4.86   -4.04   -2.89   -1.49    0.21    2.43    5.57   10.04
+   330.0    0.00   -0.14   -0.53   -1.10   -1.79   -2.55   -3.34   -4.12   -4.77   -5.19   -5.23   -4.84   -4.02   -2.88   -1.48    0.21    2.43    5.60   10.06
+   335.0    0.00   -0.14   -0.52   -1.08   -1.77   -2.53   -3.33   -4.11   -4.77   -5.18   -5.22   -4.83   -4.01   -2.87   -1.48    0.21    2.45    5.62   10.04
+   340.0    0.00   -0.13   -0.51   -1.07   -1.76   -2.52   -3.32   -4.10   -4.76   -5.17   -5.22   -4.82   -4.01   -2.87   -1.48    0.22    2.47    5.64    9.99
+   345.0    0.00   -0.13   -0.50   -1.06   -1.75   -2.51   -3.31   -4.09   -4.75   -5.17   -5.22   -4.82   -4.01   -2.87   -1.48    0.23    2.49    5.65    9.90
+   350.0    0.00   -0.12   -0.49   -1.05   -1.74   -2.50   -3.30   -4.08   -4.74   -5.16   -5.21   -4.83   -4.02   -2.89   -1.49    0.24    2.51    5.65    9.79
+   355.0    0.00   -0.12   -0.49   -1.04   -1.73   -2.49   -3.29   -4.07   -4.73   -5.15   -5.21   -4.83   -4.03   -2.90   -1.50    0.24    2.52    5.63    9.65
+   360.0    0.00   -0.12   -0.48   -1.03   -1.72   -2.49   -3.29   -4.07   -4.73   -5.15   -5.20   -4.83   -4.05   -2.92   -1.50    0.25    2.53    5.61    9.51
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH701945E_M    SCIS                                        TYPE / SERIAL NO    
+FIELD               NGS/TUM                  2    11-JUL-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.50      0.04     89.04                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.44   -1.42   -2.77   -4.18   -5.99   -7.45   -8.79   -9.57   -9.90   -9.74   -8.86   -7.67   -5.84   -3.30   -0.23    3.69
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.60     -0.02    118.96                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.43   -1.02   -1.80   -2.62   -3.42   -4.23   -5.01   -5.75   -6.23   -6.25   -5.83   -5.08   -3.75   -2.13   -0.11    2.56
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH701945E_M    SCIT                                        TYPE / SERIAL NO    
+FIELD               NGS/TUM                  3    10-AUG-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.70     -0.36     88.64                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.54   -1.52   -2.87   -4.28   -5.89   -7.25   -8.39   -9.17   -9.40   -9.24   -8.46   -7.17   -5.44   -3.20   -0.23    3.39
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.20     -0.42    117.56                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.23   -0.62   -1.20   -1.92   -2.62   -3.43   -4.31   -4.95   -5.33   -5.45   -5.03   -4.18   -2.75   -1.03    1.29    4.26
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH701945E_M    SNOW                                        TYPE / SERIAL NO    
+FIELD               NGS/TUM                  4    10-AUG-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      1.00      0.34     90.54                              NORTH / EAST / UP   
+   NOAZI    0.00    0.66    0.28   -0.67   -2.08   -3.79   -5.35   -6.79   -7.77   -8.30   -8.04   -7.26   -5.87   -3.84   -1.10    2.17    6.39
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.30     -0.32    118.26                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.33   -0.62   -1.20   -1.82   -2.52   -3.33   -4.11   -4.75   -5.13   -5.25   -4.93   -4.18   -2.85   -1.13    1.09    4.16
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH701945G_M    NONE                                        TYPE / SERIAL NO    
+COPIED              TUM                      0    20-APR-05 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+COPIED FROM AOAD/M_T                                        COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.60     -0.46     91.24                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.24   -0.92   -1.97   -3.28   -4.69   -6.05   -7.19   -7.97   -8.30   -8.14   -7.46   -6.27   -4.54   -2.20    0.87    4.79    9.56   14.88
+     0.0    0.00   -0.28   -1.01   -2.12   -3.49   -4.95   -6.35   -7.52   -8.32   -8.63   -8.43   -7.72   -6.51   -4.78   -2.47    0.58    4.48    9.16   14.25
+     5.0    0.00   -0.28   -1.01   -2.12   -3.48   -4.94   -6.34   -7.50   -8.30   -8.62   -8.42   -7.70   -6.48   -4.75   -2.42    0.63    4.53    9.23   14.33
+    10.0    0.00   -0.28   -1.01   -2.11   -3.46   -4.92   -6.32   -7.48   -8.27   -8.59   -8.39   -7.68   -6.46   -4.72   -2.38    0.69    4.60    9.32   14.45
+    15.0    0.00   -0.27   -1.00   -2.10   -3.45   -4.90   -6.29   -7.46   -8.25   -8.57   -8.37   -7.65   -6.43   -4.68   -2.33    0.75    4.69    9.43   14.61
+    20.0    0.00   -0.27   -0.99   -2.08   -3.43   -4.88   -6.27   -7.43   -8.22   -8.54   -8.35   -7.63   -6.40   -4.64   -2.28    0.83    4.78    9.56   14.80
+    25.0    0.00   -0.27   -0.98   -2.07   -3.41   -4.85   -6.24   -7.39   -8.19   -8.51   -8.32   -7.60   -6.37   -4.60   -2.22    0.90    4.89    9.71   15.02
+    30.0    0.00   -0.26   -0.98   -2.06   -3.39   -4.83   -6.21   -7.36   -8.15   -8.48   -8.29   -7.57   -6.33   -4.55   -2.15    0.99    5.00    9.87   15.25
+    35.0    0.00   -0.26   -0.97   -2.04   -3.37   -4.80   -6.17   -7.32   -8.11   -8.44   -8.25   -7.54   -6.29   -4.50   -2.09    1.08    5.12   10.03   15.48
+    40.0    0.00   -0.26   -0.96   -2.02   -3.34   -4.77   -6.13   -7.28   -8.07   -8.40   -8.21   -7.50   -6.25   -4.45   -2.02    1.17    5.25   10.19   15.70
+    45.0    0.00   -0.25   -0.95   -2.01   -3.32   -4.74   -6.10   -7.24   -8.03   -8.35   -8.17   -7.45   -6.20   -4.40   -1.95    1.26    5.36   10.34   15.89
+    50.0    0.00   -0.25   -0.94   -1.99   -3.29   -4.70   -6.06   -7.19   -7.98   -8.31   -8.12   -7.40   -6.15   -4.34   -1.88    1.34    5.46   10.46   16.05
+    55.0    0.00   -0.24   -0.93   -1.97   -3.27   -4.67   -6.02   -7.15   -7.93   -8.25   -8.07   -7.35   -6.10   -4.28   -1.82    1.41    5.54   10.55   16.15
+    60.0    0.00   -0.24   -0.92   -1.95   -3.24   -4.64   -5.98   -7.10   -7.88   -8.20   -8.01   -7.30   -6.04   -4.23   -1.76    1.47    5.59   10.60   16.20
+    65.0    0.00   -0.24   -0.91   -1.94   -3.22   -4.60   -5.94   -7.06   -7.83   -8.15   -7.96   -7.24   -5.99   -4.18   -1.72    1.50    5.61   10.60   16.20
+    70.0    0.00   -0.23   -0.90   -1.92   -3.19   -4.57   -5.90   -7.02   -7.79   -8.10   -7.91   -7.19   -5.94   -4.14   -1.70    1.50    5.60   10.57   16.14
+    75.0    0.00   -0.23   -0.89   -1.91   -3.17   -4.55   -5.87   -6.98   -7.75   -8.06   -7.87   -7.15   -5.91   -4.12   -1.70    1.48    5.55   10.50   16.04
+    80.0    0.00   -0.23   -0.88   -1.89   -3.16   -4.53   -5.84   -6.95   -7.72   -8.03   -7.83   -7.12   -5.89   -4.11   -1.71    1.44    5.47   10.39   15.91
+    85.0    0.00   -0.22   -0.87   -1.88   -3.14   -4.51   -5.82   -6.93   -7.69   -8.00   -7.81   -7.10   -5.88   -4.13   -1.75    1.36    5.36   10.25   15.74
+    90.0    0.00   -0.22   -0.87   -1.87   -3.13   -4.49   -5.81   -6.92   -7.68   -7.99   -7.80   -7.10   -5.90   -4.16   -1.82    1.27    5.24   10.09   15.56
+    95.0    0.00   -0.22   -0.86   -1.87   -3.12   -4.49   -5.80   -6.91   -7.68   -7.99   -7.81   -7.12   -5.93   -4.21   -1.90    1.16    5.10    9.92   15.37
+   100.0    0.00   -0.21   -0.86   -1.87   -3.12   -4.48   -5.80   -6.91   -7.68   -8.01   -7.84   -7.16   -5.98   -4.29   -1.99    1.04    4.96    9.76   15.18
+   105.0    0.00   -0.21   -0.86   -1.86   -3.12   -4.49   -5.81   -6.93   -7.70   -8.04   -7.88   -7.21   -6.05   -4.37   -2.09    0.93    4.82    9.60   15.00
+   110.0    0.00   -0.21   -0.86   -1.87   -3.13   -4.50   -5.82   -6.95   -7.73   -8.07   -7.93   -7.28   -6.13   -4.47   -2.20    0.81    4.69    9.46   14.84
+   115.0    0.00   -0.21   -0.86   -1.87   -3.13   -4.51   -5.84   -6.97   -7.76   -8.12   -7.99   -7.35   -6.22   -4.56   -2.30    0.71    4.59    9.34   14.71
+   120.0    0.00   -0.21   -0.86   -1.87   -3.15   -4.53   -5.87   -7.00   -7.80   -8.17   -8.05   -7.43   -6.31   -4.66   -2.39    0.62    4.50    9.24   14.60
+   125.0    0.00   -0.21   -0.86   -1.88   -3.16   -4.55   -5.89   -7.04   -7.85   -8.22   -8.12   -7.51   -6.39   -4.74   -2.47    0.55    4.44    9.18   14.52
+   130.0    0.00   -0.21   -0.86   -1.89   -3.17   -4.57   -5.92   -7.07   -7.89   -8.27   -8.18   -7.58   -6.47   -4.81   -2.53    0.51    4.40    9.13   14.47
+   135.0    0.00   -0.21   -0.86   -1.90   -3.19   -4.60   -5.95   -7.11   -7.93   -8.32   -8.23   -7.64   -6.53   -4.87   -2.57    0.47    4.37    9.11   14.44
+   140.0    0.00   -0.21   -0.87   -1.91   -3.21   -4.62   -5.98   -7.14   -7.96   -8.36   -8.28   -7.69   -6.58   -4.91   -2.60    0.46    4.37    9.10   14.43
+   145.0    0.00   -0.21   -0.87   -1.91   -3.22   -4.64   -6.01   -7.17   -8.00   -8.39   -8.31   -7.72   -6.61   -4.93   -2.62    0.45    4.36    9.10   14.44
+   150.0    0.00   -0.21   -0.87   -1.92   -3.24   -4.66   -6.04   -7.20   -8.02   -8.42   -8.33   -7.74   -6.63   -4.94   -2.62    0.45    4.37    9.10   14.45
+   155.0    0.00   -0.21   -0.87   -1.93   -3.25   -4.68   -6.06   -7.22   -8.05   -8.44   -8.35   -7.75   -6.63   -4.94   -2.62    0.46    4.36    9.10   14.46
+   160.0    0.00   -0.21   -0.88   -1.93   -3.26   -4.69   -6.07   -7.24   -8.06   -8.45   -8.35   -7.75   -6.62   -4.94   -2.61    0.45    4.36    9.09   14.46
+   165.0    0.00   -0.21   -0.88   -1.94   -3.27   -4.70   -6.09   -7.25   -8.07   -8.46   -8.35   -7.74   -6.61   -4.93   -2.61    0.45    4.34    9.08   14.46
+   170.0    0.00   -0.21   -0.88   -1.94   -3.27   -4.71   -6.10   -7.26   -8.08   -8.46   -8.35   -7.73   -6.60   -4.92   -2.61    0.43    4.32    9.05   14.44
+   175.0    0.00   -0.21   -0.88   -1.94   -3.27   -4.71   -6.10   -7.27   -8.08   -8.46   -8.34   -7.72   -6.59   -4.91   -2.61    0.42    4.29    9.02   14.41
+   180.0    0.00   -0.21   -0.88   -1.94   -3.27   -4.71   -6.10   -7.27   -8.08   -8.46   -8.34   -7.71   -6.57   -4.90   -2.62    0.40    4.26    9.00   14.38
+   185.0    0.00   -0.21   -0.88   -1.93   -3.26   -4.70   -6.09   -7.26   -8.08   -8.45   -8.33   -7.70   -6.56   -4.90   -2.62    0.38    4.24    8.98   14.35
+   190.0    0.00   -0.21   -0.87   -1.93   -3.25   -4.69   -6.08   -7.25   -8.07   -8.44   -8.32   -7.69   -6.55   -4.89   -2.62    0.38    4.24    8.98   14.33
+   195.0    0.00   -0.21   -0.87   -1.92   -3.24   -4.68   -6.07   -7.24   -8.06   -8.43   -8.30   -7.67   -6.54   -4.88   -2.61    0.39    4.26    9.00   14.33
+   200.0    0.00   -0.21   -0.87   -1.92   -3.23   -4.67   -6.05   -7.22   -8.04   -8.41   -8.29   -7.65   -6.52   -4.86   -2.59    0.42    4.30    9.06   14.37
+   205.0    0.00   -0.21   -0.87   -1.91   -3.22   -4.65   -6.03   -7.20   -8.02   -8.39   -8.26   -7.62   -6.48   -4.82   -2.55    0.47    4.38    9.15   14.44
+   210.0    0.00   -0.21   -0.87   -1.90   -3.21   -4.63   -6.01   -7.18   -8.00   -8.36   -8.23   -7.58   -6.44   -4.77   -2.49    0.55    4.48    9.28   14.55
+   215.0    0.00   -0.21   -0.87   -1.90   -3.20   -4.61   -5.99   -7.15   -7.97   -8.33   -8.18   -7.53   -6.38   -4.70   -2.41    0.65    4.61    9.43   14.69
+   220.0    0.00   -0.21   -0.87   -1.89   -3.19   -4.60   -5.97   -7.13   -7.93   -8.28   -8.13   -7.47   -6.31   -4.62   -2.31    0.78    4.77    9.61   14.87
+   225.0    0.00   -0.21   -0.87   -1.89   -3.18   -4.58   -5.94   -7.10   -7.89   -8.24   -8.07   -7.40   -6.22   -4.52   -2.19    0.91    4.93    9.80   15.07
+   230.0    0.00   -0.21   -0.87   -1.89   -3.17   -4.57   -5.92   -7.07   -7.85   -8.18   -8.01   -7.32   -6.13   -4.41   -2.07    1.06    5.10    9.98   15.28
+   235.0    0.00   -0.22   -0.87   -1.89   -3.16   -4.56   -5.90   -7.03   -7.81   -8.13   -7.94   -7.24   -6.03   -4.30   -1.94    1.20    5.25   10.15   15.47
+   240.0    0.00   -0.22   -0.87   -1.89   -3.16   -4.55   -5.88   -7.01   -7.77   -8.07   -7.87   -7.16   -5.94   -4.19   -1.82    1.33    5.39   10.29   15.63
+   245.0    0.00   -0.22   -0.87   -1.89   -3.16   -4.54   -5.87   -6.98   -7.73   -8.02   -7.81   -7.08   -5.86   -4.10   -1.71    1.44    5.49   10.39   15.74
+   250.0    0.00   -0.22   -0.88   -1.90   -3.17   -4.54   -5.86   -6.96   -7.70   -7.98   -7.76   -7.02   -5.79   -4.01   -1.62    1.53    5.56   10.44   15.79
+   255.0    0.00   -0.23   -0.88   -1.90   -3.17   -4.54   -5.86   -6.95   -7.68   -7.95   -7.72   -6.98   -5.73   -3.96   -1.56    1.58    5.58   10.43   15.78
+   260.0    0.00   -0.23   -0.89   -1.91   -3.18   -4.55   -5.86   -6.94   -7.66   -7.93   -7.70   -6.96   -5.71   -3.92   -1.53    1.59    5.57   10.37   15.71
+   265.0    0.00   -0.23   -0.90   -1.92   -3.19   -4.56   -5.86   -6.94   -7.66   -7.93   -7.70   -6.96   -5.70   -3.92   -1.53    1.57    5.51   10.26   15.58
+   270.0    0.00   -0.24   -0.91   -1.94   -3.21   -4.58   -5.88   -6.95   -7.67   -7.94   -7.71   -6.98   -5.73   -3.94   -1.56    1.52    5.41   10.11   15.40
+   275.0    0.00   -0.24   -0.92   -1.95   -3.23   -4.60   -5.90   -6.97   -7.69   -7.96   -7.74   -7.02   -5.77   -4.00   -1.62    1.44    5.28    9.93   15.20
+   280.0    0.00   -0.25   -0.93   -1.97   -3.25   -4.62   -5.93   -7.00   -7.72   -8.00   -7.79   -7.07   -5.84   -4.07   -1.71    1.33    5.14    9.74   14.98
+   285.0    0.00   -0.25   -0.94   -1.98   -3.27   -4.65   -5.96   -7.04   -7.77   -8.06   -7.86   -7.15   -5.92   -4.16   -1.81    1.21    4.99    9.55   14.77
+   290.0    0.00   -0.25   -0.95   -2.00   -3.30   -4.69   -6.00   -7.09   -7.82   -8.12   -7.93   -7.23   -6.01   -4.26   -1.92    1.08    4.84    9.38   14.58
+   295.0    0.00   -0.26   -0.96   -2.02   -3.33   -4.72   -6.04   -7.14   -7.88   -8.19   -8.00   -7.31   -6.11   -4.36   -2.04    0.96    4.70    9.23   14.43
+   300.0    0.00   -0.26   -0.97   -2.04   -3.35   -4.76   -6.09   -7.19   -7.95   -8.26   -8.08   -7.40   -6.20   -4.47   -2.15    0.83    4.58    9.10   14.31
+   305.0    0.00   -0.26   -0.98   -2.05   -3.38   -4.79   -6.14   -7.25   -8.01   -8.33   -8.16   -7.48   -6.29   -4.57   -2.26    0.73    4.47    9.01   14.22
+   310.0    0.00   -0.27   -0.98   -2.07   -3.40   -4.83   -6.18   -7.31   -8.08   -8.40   -8.23   -7.56   -6.37   -4.66   -2.35    0.63    4.40    8.96   14.17
+   315.0    0.00   -0.27   -0.99   -2.08   -3.43   -4.86   -6.23   -7.36   -8.14   -8.47   -8.30   -7.62   -6.44   -4.73   -2.43    0.56    4.34    8.93   14.15
+   320.0    0.00   -0.27   -1.00   -2.10   -3.45   -4.89   -6.27   -7.41   -8.19   -8.52   -8.35   -7.67   -6.49   -4.79   -2.49    0.50    4.31    8.92   14.15
+   325.0    0.00   -0.28   -1.01   -2.11   -3.46   -4.92   -6.30   -7.45   -8.24   -8.57   -8.39   -7.71   -6.53   -4.83   -2.54    0.47    4.29    8.93   14.15
+   330.0    0.00   -0.28   -1.01   -2.12   -3.48   -4.94   -6.33   -7.49   -8.28   -8.61   -8.43   -7.74   -6.56   -4.86   -2.56    0.45    4.29    8.95   14.16
+   335.0    0.00   -0.28   -1.02   -2.13   -3.49   -4.95   -6.35   -7.51   -8.31   -8.63   -8.45   -7.76   -6.57   -4.87   -2.57    0.45    4.31    8.98   14.16
+   340.0    0.00   -0.28   -1.02   -2.13   -3.50   -4.96   -6.36   -7.53   -8.33   -8.65   -8.46   -7.77   -6.57   -4.87   -2.57    0.46    4.33    9.01   14.16
+   345.0    0.00   -0.28   -1.02   -2.13   -3.50   -4.97   -6.37   -7.54   -8.33   -8.66   -8.46   -7.76   -6.57   -4.86   -2.56    0.48    4.36    9.04   14.16
+   350.0    0.00   -0.28   -1.02   -2.13   -3.50   -4.97   -6.37   -7.54   -8.34   -8.66   -8.46   -7.75   -6.55   -4.84   -2.53    0.51    4.39    9.07   14.17
+   355.0    0.00   -0.28   -1.02   -2.13   -3.49   -4.96   -6.37   -7.54   -8.33   -8.65   -8.45   -7.74   -6.53   -4.81   -2.50    0.54    4.43    9.11   14.20
+   360.0    0.00   -0.28   -1.01   -2.12   -3.49   -4.95   -6.35   -7.52   -8.32   -8.63   -8.43   -7.72   -6.51   -4.78   -2.47    0.58    4.48    9.16   14.25
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.10     -0.62    120.06                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.13   -0.52   -1.10   -1.82   -2.62   -3.43   -4.21   -4.85   -5.23   -5.25   -4.83   -3.98   -2.75   -1.23    0.59    2.86    5.83    9.66
+     0.0    0.00   -0.12   -0.48   -1.03   -1.72   -2.49   -3.29   -4.07   -4.73   -5.15   -5.20   -4.83   -4.05   -2.92   -1.50    0.25    2.53    5.61    9.51
+     5.0    0.00   -0.11   -0.47   -1.03   -1.71   -2.48   -3.29   -4.06   -4.72   -5.13   -5.20   -4.83   -4.05   -2.93   -1.51    0.25    2.54    5.58    9.37
+    10.0    0.00   -0.11   -0.47   -1.02   -1.71   -2.48   -3.28   -4.05   -4.71   -5.12   -5.19   -4.83   -4.06   -2.93   -1.51    0.26    2.55    5.55    9.26
+    15.0    0.00   -0.11   -0.46   -1.01   -1.71   -2.48   -3.28   -4.05   -4.70   -5.11   -5.17   -4.82   -4.05   -2.93   -1.50    0.27    2.55    5.53    9.17
+    20.0    0.00   -0.10   -0.45   -1.01   -1.70   -2.48   -3.28   -4.04   -4.69   -5.10   -5.16   -4.81   -4.04   -2.92   -1.48    0.29    2.57    5.52    9.12
+    25.0    0.00   -0.10   -0.45   -1.00   -1.70   -2.47   -3.28   -4.04   -4.68   -5.08   -5.14   -4.79   -4.02   -2.89   -1.45    0.32    2.59    5.52    9.12
+    30.0    0.00   -0.10   -0.44   -1.00   -1.69   -2.47   -3.27   -4.03   -4.67   -5.07   -5.13   -4.77   -3.99   -2.86   -1.41    0.36    2.61    5.53    9.16
+    35.0    0.00   -0.09   -0.44   -0.99   -1.69   -2.47   -3.27   -4.03   -4.66   -5.06   -5.11   -4.75   -3.96   -2.81   -1.36    0.41    2.65    5.57    9.23
+    40.0    0.00   -0.09   -0.44   -0.99   -1.68   -2.46   -3.27   -4.03   -4.66   -5.05   -5.10   -4.72   -3.92   -2.76   -1.30    0.47    2.69    5.61    9.34
+    45.0    0.00   -0.09   -0.43   -0.98   -1.68   -2.46   -3.26   -4.02   -4.66   -5.05   -5.09   -4.70   -3.88   -2.70   -1.23    0.53    2.74    5.66    9.47
+    50.0    0.00   -0.09   -0.43   -0.98   -1.67   -2.46   -3.26   -4.03   -4.66   -5.05   -5.08   -4.68   -3.84   -2.65   -1.17    0.59    2.79    5.72    9.60
+    55.0    0.00   -0.09   -0.43   -0.98   -1.67   -2.45   -3.26   -4.03   -4.66   -5.05   -5.07   -4.66   -3.81   -2.59   -1.11    0.65    2.84    5.77    9.73
+    60.0    0.00   -0.09   -0.43   -0.98   -1.67   -2.46   -3.27   -4.04   -4.67   -5.06   -5.07   -4.64   -3.77   -2.55   -1.05    0.70    2.88    5.81    9.83
+    65.0    0.00   -0.09   -0.43   -0.98   -1.67   -2.46   -3.27   -4.05   -4.69   -5.07   -5.07   -4.63   -3.75   -2.51   -1.02    0.74    2.91    5.84    9.91
+    70.0    0.00   -0.09   -0.43   -0.98   -1.68   -2.47   -3.29   -4.06   -4.70   -5.08   -5.08   -4.63   -3.74   -2.49   -0.99    0.75    2.92    5.85    9.95
+    75.0    0.00   -0.09   -0.43   -0.99   -1.69   -2.48   -3.30   -4.08   -4.72   -5.10   -5.09   -4.63   -3.74   -2.49   -0.99    0.76    2.92    5.85    9.96
+    80.0    0.00   -0.09   -0.44   -0.99   -1.70   -2.50   -3.32   -4.11   -4.74   -5.12   -5.11   -4.64   -3.74   -2.50   -1.00    0.74    2.90    5.82    9.93
+    85.0    0.00   -0.10   -0.44   -1.00   -1.71   -2.52   -3.35   -4.13   -4.77   -5.14   -5.12   -4.66   -3.76   -2.52   -1.03    0.71    2.86    5.78    9.86
+    90.0    0.00   -0.10   -0.45   -1.02   -1.73   -2.54   -3.37   -4.16   -4.79   -5.16   -5.14   -4.68   -3.79   -2.56   -1.07    0.66    2.82    5.73    9.78
+    95.0    0.00   -0.10   -0.46   -1.03   -1.75   -2.57   -3.40   -4.19   -4.82   -5.18   -5.16   -4.70   -3.82   -2.60   -1.12    0.61    2.77    5.67    9.68
+   100.0    0.00   -0.10   -0.47   -1.05   -1.78   -2.59   -3.43   -4.22   -4.84   -5.20   -5.18   -4.73   -3.86   -2.65   -1.18    0.56    2.72    5.61    9.58
+   105.0    0.00   -0.11   -0.48   -1.06   -1.80   -2.62   -3.46   -4.24   -4.87   -5.22   -5.20   -4.75   -3.90   -2.70   -1.23    0.52    2.68    5.56    9.48
+   110.0    0.00   -0.11   -0.49   -1.08   -1.82   -2.65   -3.49   -4.27   -4.89   -5.24   -5.22   -4.78   -3.93   -2.74   -1.27    0.48    2.66    5.53    9.40
+   115.0    0.00   -0.12   -0.50   -1.10   -1.85   -2.68   -3.52   -4.29   -4.90   -5.25   -5.24   -4.80   -3.96   -2.77   -1.30    0.46    2.65    5.51    9.33
+   120.0    0.00   -0.12   -0.51   -1.11   -1.87   -2.70   -3.54   -4.31   -4.92   -5.26   -5.25   -4.83   -3.99   -2.79   -1.31    0.46    2.66    5.51    9.29
+   125.0    0.00   -0.12   -0.52   -1.13   -1.89   -2.72   -3.56   -4.32   -4.93   -5.27   -5.26   -4.84   -4.00   -2.80   -1.31    0.48    2.69    5.53    9.26
+   130.0    0.00   -0.13   -0.52   -1.14   -1.91   -2.74   -3.57   -4.33   -4.93   -5.28   -5.28   -4.86   -4.01   -2.80   -1.29    0.52    2.73    5.57    9.26
+   135.0    0.00   -0.13   -0.53   -1.15   -1.92   -2.75   -3.58   -4.34   -4.94   -5.29   -5.29   -4.87   -4.02   -2.79   -1.26    0.57    2.79    5.61    9.27
+   140.0    0.00   -0.13   -0.54   -1.16   -1.93   -2.76   -3.59   -4.34   -4.94   -5.29   -5.30   -4.87   -4.02   -2.78   -1.22    0.62    2.85    5.66    9.28
+   145.0    0.00   -0.14   -0.55   -1.17   -1.94   -2.77   -3.59   -4.34   -4.95   -5.30   -5.30   -4.88   -4.01   -2.75   -1.18    0.67    2.91    5.71    9.29
+   150.0    0.00   -0.14   -0.55   -1.18   -1.95   -2.77   -3.59   -4.34   -4.95   -5.31   -5.31   -4.89   -4.01   -2.74   -1.15    0.72    2.95    5.75    9.30
+   155.0    0.00   -0.14   -0.56   -1.18   -1.95   -2.77   -3.59   -4.34   -4.95   -5.32   -5.32   -4.89   -4.01   -2.72   -1.12    0.75    2.99    5.78    9.30
+   160.0    0.00   -0.15   -0.56   -1.18   -1.95   -2.77   -3.59   -4.34   -4.96   -5.33   -5.34   -4.90   -4.01   -2.72   -1.11    0.76    3.00    5.79    9.28
+   165.0    0.00   -0.15   -0.56   -1.18   -1.94   -2.76   -3.58   -4.34   -4.96   -5.34   -5.35   -4.91   -4.01   -2.72   -1.12    0.76    3.00    5.79    9.26
+   170.0    0.00   -0.15   -0.56   -1.18   -1.94   -2.75   -3.57   -4.34   -4.97   -5.35   -5.36   -4.92   -4.02   -2.73   -1.14    0.73    2.97    5.77    9.23
+   175.0    0.00   -0.15   -0.57   -1.18   -1.93   -2.74   -3.57   -4.34   -4.98   -5.36   -5.37   -4.93   -4.03   -2.75   -1.17    0.69    2.93    5.74    9.20
+   180.0    0.00   -0.16   -0.57   -1.18   -1.92   -2.74   -3.56   -4.34   -4.98   -5.37   -5.38   -4.94   -4.04   -2.77   -1.21    0.63    2.88    5.71    9.17
+   185.0    0.00   -0.16   -0.57   -1.17   -1.91   -2.73   -3.56   -4.35   -4.99   -5.38   -5.38   -4.94   -4.05   -2.79   -1.25    0.58    2.83    5.69    9.16
+   190.0    0.00   -0.16   -0.57   -1.17   -1.90   -2.72   -3.56   -4.35   -5.00   -5.39   -5.39   -4.93   -4.05   -2.81   -1.29    0.53    2.79    5.68    9.18
+   195.0    0.00   -0.16   -0.56   -1.16   -1.90   -2.71   -3.55   -4.35   -5.01   -5.39   -5.38   -4.92   -4.04   -2.81   -1.31    0.49    2.76    5.69    9.22
+   200.0    0.00   -0.16   -0.56   -1.16   -1.89   -2.70   -3.55   -4.35   -5.01   -5.39   -5.37   -4.91   -4.02   -2.80   -1.32    0.48    2.76    5.72    9.30
+   205.0    0.00   -0.16   -0.56   -1.16   -1.88   -2.70   -3.55   -4.35   -5.01   -5.39   -5.36   -4.88   -3.99   -2.78   -1.30    0.49    2.79    5.79    9.40
+   210.0    0.00   -0.16   -0.56   -1.15   -1.88   -2.69   -3.54   -4.35   -5.01   -5.38   -5.34   -4.86   -3.96   -2.74   -1.27    0.53    2.85    5.88    9.53
+   215.0    0.00   -0.17   -0.56   -1.15   -1.88   -2.69   -3.54   -4.35   -5.01   -5.37   -5.32   -4.83   -3.92   -2.70   -1.21    0.60    2.93    5.99    9.69
+   220.0    0.00   -0.17   -0.57   -1.15   -1.87   -2.69   -3.54   -4.35   -5.00   -5.36   -5.31   -4.80   -3.88   -2.64   -1.14    0.69    3.04    6.13    9.85
+   225.0    0.00   -0.17   -0.57   -1.15   -1.87   -2.69   -3.54   -4.34   -4.99   -5.35   -5.29   -4.78   -3.85   -2.59   -1.06    0.79    3.17    6.27   10.02
+   230.0    0.00   -0.17   -0.57   -1.15   -1.88   -2.69   -3.53   -4.33   -4.98   -5.34   -5.28   -4.76   -3.82   -2.54   -0.98    0.90    3.30    6.41   10.17
+   235.0    0.00   -0.17   -0.57   -1.16   -1.88   -2.69   -3.53   -4.33   -4.97   -5.32   -5.27   -4.76   -3.81   -2.50   -0.91    1.01    3.43    6.54   10.30
+   240.0    0.00   -0.17   -0.57   -1.16   -1.88   -2.69   -3.52   -4.32   -4.96   -5.32   -5.27   -4.76   -3.81   -2.48   -0.85    1.11    3.55    6.65   10.40
+   245.0    0.00   -0.17   -0.58   -1.17   -1.89   -2.69   -3.52   -4.31   -4.95   -5.31   -5.28   -4.78   -3.82   -2.48   -0.82    1.18    3.64    6.72   10.45
+   250.0    0.00   -0.17   -0.58   -1.17   -1.89   -2.69   -3.52   -4.30   -4.93   -5.31   -5.29   -4.81   -3.86   -2.50   -0.80    1.23    3.69    6.76   10.46
+   255.0    0.00   -0.17   -0.58   -1.18   -1.90   -2.69   -3.51   -4.29   -4.92   -5.30   -5.30   -4.84   -3.90   -2.54   -0.82    1.24    3.71    6.75   10.43
+   260.0    0.00   -0.17   -0.58   -1.18   -1.90   -2.70   -3.51   -4.27   -4.91   -5.30   -5.32   -4.88   -3.96   -2.59   -0.86    1.22    3.69    6.70   10.36
+   265.0    0.00   -0.17   -0.58   -1.18   -1.91   -2.70   -3.50   -4.26   -4.90   -5.30   -5.34   -4.92   -4.02   -2.66   -0.92    1.16    3.63    6.61   10.26
+   270.0    0.00   -0.17   -0.58   -1.19   -1.91   -2.70   -3.50   -4.25   -4.89   -5.30   -5.36   -4.96   -4.08   -2.73   -0.99    1.08    3.53    6.49   10.15
+   275.0    0.00   -0.17   -0.58   -1.19   -1.91   -2.70   -3.49   -4.24   -4.88   -5.29   -5.37   -4.99   -4.13   -2.80   -1.08    0.98    3.41    6.35   10.04
+   280.0    0.00   -0.17   -0.58   -1.19   -1.91   -2.69   -3.48   -4.23   -4.87   -5.29   -5.37   -5.02   -4.17   -2.86   -1.16    0.86    3.26    6.20    9.93
+   285.0    0.00   -0.17   -0.58   -1.18   -1.91   -2.69   -3.47   -4.22   -4.86   -5.28   -5.37   -5.03   -4.20   -2.92   -1.25    0.74    3.11    6.05    9.85
+   290.0    0.00   -0.16   -0.58   -1.18   -1.90   -2.68   -3.46   -4.21   -4.85   -5.27   -5.37   -5.03   -4.21   -2.95   -1.33    0.62    2.96    5.90    9.79
+   295.0    0.00   -0.16   -0.57   -1.17   -1.89   -2.67   -3.45   -4.20   -4.84   -5.26   -5.35   -5.02   -4.21   -2.98   -1.39    0.51    2.82    5.78    9.77
+   300.0    0.00   -0.16   -0.57   -1.16   -1.88   -2.65   -3.44   -4.19   -4.83   -5.25   -5.34   -4.99   -4.19   -2.98   -1.44    0.42    2.69    5.68    9.78
+   305.0    0.00   -0.16   -0.56   -1.15   -1.87   -2.64   -3.42   -4.18   -4.82   -5.24   -5.32   -4.97   -4.17   -2.98   -1.47    0.34    2.59    5.61    9.82
+   310.0    0.00   -0.15   -0.56   -1.14   -1.85   -2.62   -3.41   -4.16   -4.81   -5.23   -5.30   -4.94   -4.14   -2.96   -1.49    0.28    2.51    5.57    9.87
+   315.0    0.00   -0.15   -0.55   -1.13   -1.83   -2.60   -3.39   -4.15   -4.80   -5.21   -5.28   -4.91   -4.10   -2.94   -1.49    0.24    2.46    5.55    9.94
+   320.0    0.00   -0.15   -0.54   -1.12   -1.82   -2.58   -3.38   -4.14   -4.79   -5.20   -5.26   -4.88   -4.07   -2.91   -1.49    0.22    2.43    5.55   10.00
+   325.0    0.00   -0.14   -0.53   -1.11   -1.80   -2.57   -3.36   -4.13   -4.78   -5.19   -5.24   -4.86   -4.04   -2.89   -1.49    0.21    2.43    5.57   10.04
+   330.0    0.00   -0.14   -0.53   -1.10   -1.79   -2.55   -3.34   -4.12   -4.77   -5.19   -5.23   -4.84   -4.02   -2.88   -1.48    0.21    2.43    5.60   10.06
+   335.0    0.00   -0.14   -0.52   -1.08   -1.77   -2.53   -3.33   -4.11   -4.77   -5.18   -5.22   -4.83   -4.01   -2.87   -1.48    0.21    2.45    5.62   10.04
+   340.0    0.00   -0.13   -0.51   -1.07   -1.76   -2.52   -3.32   -4.10   -4.76   -5.17   -5.22   -4.82   -4.01   -2.87   -1.48    0.22    2.47    5.64    9.99
+   345.0    0.00   -0.13   -0.50   -1.06   -1.75   -2.51   -3.31   -4.09   -4.75   -5.17   -5.22   -4.82   -4.01   -2.87   -1.48    0.23    2.49    5.65    9.90
+   350.0    0.00   -0.12   -0.49   -1.05   -1.74   -2.50   -3.30   -4.08   -4.74   -5.16   -5.21   -4.83   -4.02   -2.89   -1.49    0.24    2.51    5.65    9.79
+   355.0    0.00   -0.12   -0.49   -1.04   -1.73   -2.49   -3.29   -4.07   -4.73   -5.15   -5.21   -4.83   -4.03   -2.90   -1.50    0.24    2.52    5.63    9.65
+   360.0    0.00   -0.12   -0.48   -1.03   -1.72   -2.49   -3.29   -4.07   -4.73   -5.15   -5.20   -4.83   -4.05   -2.92   -1.50    0.25    2.53    5.61    9.51
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH701945G_M    SCIS                                        TYPE / SERIAL NO    
+FIELD               NGS/TUM                  0    10-AUG-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.50      0.04     89.04                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.44   -1.42   -2.77   -4.18   -5.99   -7.45   -8.79   -9.57   -9.90   -9.74   -8.86   -7.67   -5.84   -3.30   -0.23    3.69
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.60     -0.02    118.96                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.43   -1.02   -1.80   -2.62   -3.42   -4.23   -5.01   -5.75   -6.23   -6.25   -5.83   -5.08   -3.75   -2.13   -0.11    2.56
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH701945G_M    SCIT                                        TYPE / SERIAL NO    
+FIELD               NGS/TUM                  0    10-AUG-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.70     -0.36     88.64                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.54   -1.52   -2.87   -4.28   -5.89   -7.25   -8.39   -9.17   -9.40   -9.24   -8.46   -7.17   -5.44   -3.20   -0.23    3.39
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.20     -0.42    117.56                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.23   -0.62   -1.20   -1.92   -2.62   -3.43   -4.31   -4.95   -5.33   -5.45   -5.03   -4.18   -2.75   -1.03    1.29    4.26
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH701945G_M    SNOW                                        TYPE / SERIAL NO    
+FIELD               NGS/TUM                  0    10-AUG-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      1.00      0.34     90.54                              NORTH / EAST / UP   
+   NOAZI    0.00    0.66    0.28   -0.67   -2.08   -3.79   -5.35   -6.79   -7.77   -8.30   -8.04   -7.26   -5.87   -3.84   -1.10    2.17    6.39
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.30     -0.32    118.26                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.33   -0.62   -1.20   -1.82   -2.52   -3.33   -4.11   -4.75   -5.13   -5.25   -4.93   -4.18   -2.85   -1.13    1.09    4.16
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH701946.2     NONE                                        TYPE / SERIAL NO    
+COPIED              TUM                      0    27-JAN-03 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+COPIED FROM AOAD/M_T                                        COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.60     -0.46     91.24                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.24   -0.92   -1.97   -3.28   -4.69   -6.05   -7.19   -7.97   -8.30   -8.14   -7.46   -6.27   -4.54   -2.20    0.87    4.79    9.56   14.88
+     0.0    0.00   -0.28   -1.01   -2.12   -3.49   -4.95   -6.35   -7.52   -8.32   -8.63   -8.43   -7.72   -6.51   -4.78   -2.47    0.58    4.48    9.16   14.25
+     5.0    0.00   -0.28   -1.01   -2.12   -3.48   -4.94   -6.34   -7.50   -8.30   -8.62   -8.42   -7.70   -6.48   -4.75   -2.42    0.63    4.53    9.23   14.33
+    10.0    0.00   -0.28   -1.01   -2.11   -3.46   -4.92   -6.32   -7.48   -8.27   -8.59   -8.39   -7.68   -6.46   -4.72   -2.38    0.69    4.60    9.32   14.45
+    15.0    0.00   -0.27   -1.00   -2.10   -3.45   -4.90   -6.29   -7.46   -8.25   -8.57   -8.37   -7.65   -6.43   -4.68   -2.33    0.75    4.69    9.43   14.61
+    20.0    0.00   -0.27   -0.99   -2.08   -3.43   -4.88   -6.27   -7.43   -8.22   -8.54   -8.35   -7.63   -6.40   -4.64   -2.28    0.83    4.78    9.56   14.80
+    25.0    0.00   -0.27   -0.98   -2.07   -3.41   -4.85   -6.24   -7.39   -8.19   -8.51   -8.32   -7.60   -6.37   -4.60   -2.22    0.90    4.89    9.71   15.02
+    30.0    0.00   -0.26   -0.98   -2.06   -3.39   -4.83   -6.21   -7.36   -8.15   -8.48   -8.29   -7.57   -6.33   -4.55   -2.15    0.99    5.00    9.87   15.25
+    35.0    0.00   -0.26   -0.97   -2.04   -3.37   -4.80   -6.17   -7.32   -8.11   -8.44   -8.25   -7.54   -6.29   -4.50   -2.09    1.08    5.12   10.03   15.48
+    40.0    0.00   -0.26   -0.96   -2.02   -3.34   -4.77   -6.13   -7.28   -8.07   -8.40   -8.21   -7.50   -6.25   -4.45   -2.02    1.17    5.25   10.19   15.70
+    45.0    0.00   -0.25   -0.95   -2.01   -3.32   -4.74   -6.10   -7.24   -8.03   -8.35   -8.17   -7.45   -6.20   -4.40   -1.95    1.26    5.36   10.34   15.89
+    50.0    0.00   -0.25   -0.94   -1.99   -3.29   -4.70   -6.06   -7.19   -7.98   -8.31   -8.12   -7.40   -6.15   -4.34   -1.88    1.34    5.46   10.46   16.05
+    55.0    0.00   -0.24   -0.93   -1.97   -3.27   -4.67   -6.02   -7.15   -7.93   -8.25   -8.07   -7.35   -6.10   -4.28   -1.82    1.41    5.54   10.55   16.15
+    60.0    0.00   -0.24   -0.92   -1.95   -3.24   -4.64   -5.98   -7.10   -7.88   -8.20   -8.01   -7.30   -6.04   -4.23   -1.76    1.47    5.59   10.60   16.20
+    65.0    0.00   -0.24   -0.91   -1.94   -3.22   -4.60   -5.94   -7.06   -7.83   -8.15   -7.96   -7.24   -5.99   -4.18   -1.72    1.50    5.61   10.60   16.20
+    70.0    0.00   -0.23   -0.90   -1.92   -3.19   -4.57   -5.90   -7.02   -7.79   -8.10   -7.91   -7.19   -5.94   -4.14   -1.70    1.50    5.60   10.57   16.14
+    75.0    0.00   -0.23   -0.89   -1.91   -3.17   -4.55   -5.87   -6.98   -7.75   -8.06   -7.87   -7.15   -5.91   -4.12   -1.70    1.48    5.55   10.50   16.04
+    80.0    0.00   -0.23   -0.88   -1.89   -3.16   -4.53   -5.84   -6.95   -7.72   -8.03   -7.83   -7.12   -5.89   -4.11   -1.71    1.44    5.47   10.39   15.91
+    85.0    0.00   -0.22   -0.87   -1.88   -3.14   -4.51   -5.82   -6.93   -7.69   -8.00   -7.81   -7.10   -5.88   -4.13   -1.75    1.36    5.36   10.25   15.74
+    90.0    0.00   -0.22   -0.87   -1.87   -3.13   -4.49   -5.81   -6.92   -7.68   -7.99   -7.80   -7.10   -5.90   -4.16   -1.82    1.27    5.24   10.09   15.56
+    95.0    0.00   -0.22   -0.86   -1.87   -3.12   -4.49   -5.80   -6.91   -7.68   -7.99   -7.81   -7.12   -5.93   -4.21   -1.90    1.16    5.10    9.92   15.37
+   100.0    0.00   -0.21   -0.86   -1.87   -3.12   -4.48   -5.80   -6.91   -7.68   -8.01   -7.84   -7.16   -5.98   -4.29   -1.99    1.04    4.96    9.76   15.18
+   105.0    0.00   -0.21   -0.86   -1.86   -3.12   -4.49   -5.81   -6.93   -7.70   -8.04   -7.88   -7.21   -6.05   -4.37   -2.09    0.93    4.82    9.60   15.00
+   110.0    0.00   -0.21   -0.86   -1.87   -3.13   -4.50   -5.82   -6.95   -7.73   -8.07   -7.93   -7.28   -6.13   -4.47   -2.20    0.81    4.69    9.46   14.84
+   115.0    0.00   -0.21   -0.86   -1.87   -3.13   -4.51   -5.84   -6.97   -7.76   -8.12   -7.99   -7.35   -6.22   -4.56   -2.30    0.71    4.59    9.34   14.71
+   120.0    0.00   -0.21   -0.86   -1.87   -3.15   -4.53   -5.87   -7.00   -7.80   -8.17   -8.05   -7.43   -6.31   -4.66   -2.39    0.62    4.50    9.24   14.60
+   125.0    0.00   -0.21   -0.86   -1.88   -3.16   -4.55   -5.89   -7.04   -7.85   -8.22   -8.12   -7.51   -6.39   -4.74   -2.47    0.55    4.44    9.18   14.52
+   130.0    0.00   -0.21   -0.86   -1.89   -3.17   -4.57   -5.92   -7.07   -7.89   -8.27   -8.18   -7.58   -6.47   -4.81   -2.53    0.51    4.40    9.13   14.47
+   135.0    0.00   -0.21   -0.86   -1.90   -3.19   -4.60   -5.95   -7.11   -7.93   -8.32   -8.23   -7.64   -6.53   -4.87   -2.57    0.47    4.37    9.11   14.44
+   140.0    0.00   -0.21   -0.87   -1.91   -3.21   -4.62   -5.98   -7.14   -7.96   -8.36   -8.28   -7.69   -6.58   -4.91   -2.60    0.46    4.37    9.10   14.43
+   145.0    0.00   -0.21   -0.87   -1.91   -3.22   -4.64   -6.01   -7.17   -8.00   -8.39   -8.31   -7.72   -6.61   -4.93   -2.62    0.45    4.36    9.10   14.44
+   150.0    0.00   -0.21   -0.87   -1.92   -3.24   -4.66   -6.04   -7.20   -8.02   -8.42   -8.33   -7.74   -6.63   -4.94   -2.62    0.45    4.37    9.10   14.45
+   155.0    0.00   -0.21   -0.87   -1.93   -3.25   -4.68   -6.06   -7.22   -8.05   -8.44   -8.35   -7.75   -6.63   -4.94   -2.62    0.46    4.36    9.10   14.46
+   160.0    0.00   -0.21   -0.88   -1.93   -3.26   -4.69   -6.07   -7.24   -8.06   -8.45   -8.35   -7.75   -6.62   -4.94   -2.61    0.45    4.36    9.09   14.46
+   165.0    0.00   -0.21   -0.88   -1.94   -3.27   -4.70   -6.09   -7.25   -8.07   -8.46   -8.35   -7.74   -6.61   -4.93   -2.61    0.45    4.34    9.08   14.46
+   170.0    0.00   -0.21   -0.88   -1.94   -3.27   -4.71   -6.10   -7.26   -8.08   -8.46   -8.35   -7.73   -6.60   -4.92   -2.61    0.43    4.32    9.05   14.44
+   175.0    0.00   -0.21   -0.88   -1.94   -3.27   -4.71   -6.10   -7.27   -8.08   -8.46   -8.34   -7.72   -6.59   -4.91   -2.61    0.42    4.29    9.02   14.41
+   180.0    0.00   -0.21   -0.88   -1.94   -3.27   -4.71   -6.10   -7.27   -8.08   -8.46   -8.34   -7.71   -6.57   -4.90   -2.62    0.40    4.26    9.00   14.38
+   185.0    0.00   -0.21   -0.88   -1.93   -3.26   -4.70   -6.09   -7.26   -8.08   -8.45   -8.33   -7.70   -6.56   -4.90   -2.62    0.38    4.24    8.98   14.35
+   190.0    0.00   -0.21   -0.87   -1.93   -3.25   -4.69   -6.08   -7.25   -8.07   -8.44   -8.32   -7.69   -6.55   -4.89   -2.62    0.38    4.24    8.98   14.33
+   195.0    0.00   -0.21   -0.87   -1.92   -3.24   -4.68   -6.07   -7.24   -8.06   -8.43   -8.30   -7.67   -6.54   -4.88   -2.61    0.39    4.26    9.00   14.33
+   200.0    0.00   -0.21   -0.87   -1.92   -3.23   -4.67   -6.05   -7.22   -8.04   -8.41   -8.29   -7.65   -6.52   -4.86   -2.59    0.42    4.30    9.06   14.37
+   205.0    0.00   -0.21   -0.87   -1.91   -3.22   -4.65   -6.03   -7.20   -8.02   -8.39   -8.26   -7.62   -6.48   -4.82   -2.55    0.47    4.38    9.15   14.44
+   210.0    0.00   -0.21   -0.87   -1.90   -3.21   -4.63   -6.01   -7.18   -8.00   -8.36   -8.23   -7.58   -6.44   -4.77   -2.49    0.55    4.48    9.28   14.55
+   215.0    0.00   -0.21   -0.87   -1.90   -3.20   -4.61   -5.99   -7.15   -7.97   -8.33   -8.18   -7.53   -6.38   -4.70   -2.41    0.65    4.61    9.43   14.69
+   220.0    0.00   -0.21   -0.87   -1.89   -3.19   -4.60   -5.97   -7.13   -7.93   -8.28   -8.13   -7.47   -6.31   -4.62   -2.31    0.78    4.77    9.61   14.87
+   225.0    0.00   -0.21   -0.87   -1.89   -3.18   -4.58   -5.94   -7.10   -7.89   -8.24   -8.07   -7.40   -6.22   -4.52   -2.19    0.91    4.93    9.80   15.07
+   230.0    0.00   -0.21   -0.87   -1.89   -3.17   -4.57   -5.92   -7.07   -7.85   -8.18   -8.01   -7.32   -6.13   -4.41   -2.07    1.06    5.10    9.98   15.28
+   235.0    0.00   -0.22   -0.87   -1.89   -3.16   -4.56   -5.90   -7.03   -7.81   -8.13   -7.94   -7.24   -6.03   -4.30   -1.94    1.20    5.25   10.15   15.47
+   240.0    0.00   -0.22   -0.87   -1.89   -3.16   -4.55   -5.88   -7.01   -7.77   -8.07   -7.87   -7.16   -5.94   -4.19   -1.82    1.33    5.39   10.29   15.63
+   245.0    0.00   -0.22   -0.87   -1.89   -3.16   -4.54   -5.87   -6.98   -7.73   -8.02   -7.81   -7.08   -5.86   -4.10   -1.71    1.44    5.49   10.39   15.74
+   250.0    0.00   -0.22   -0.88   -1.90   -3.17   -4.54   -5.86   -6.96   -7.70   -7.98   -7.76   -7.02   -5.79   -4.01   -1.62    1.53    5.56   10.44   15.79
+   255.0    0.00   -0.23   -0.88   -1.90   -3.17   -4.54   -5.86   -6.95   -7.68   -7.95   -7.72   -6.98   -5.73   -3.96   -1.56    1.58    5.58   10.43   15.78
+   260.0    0.00   -0.23   -0.89   -1.91   -3.18   -4.55   -5.86   -6.94   -7.66   -7.93   -7.70   -6.96   -5.71   -3.92   -1.53    1.59    5.57   10.37   15.71
+   265.0    0.00   -0.23   -0.90   -1.92   -3.19   -4.56   -5.86   -6.94   -7.66   -7.93   -7.70   -6.96   -5.70   -3.92   -1.53    1.57    5.51   10.26   15.58
+   270.0    0.00   -0.24   -0.91   -1.94   -3.21   -4.58   -5.88   -6.95   -7.67   -7.94   -7.71   -6.98   -5.73   -3.94   -1.56    1.52    5.41   10.11   15.40
+   275.0    0.00   -0.24   -0.92   -1.95   -3.23   -4.60   -5.90   -6.97   -7.69   -7.96   -7.74   -7.02   -5.77   -4.00   -1.62    1.44    5.28    9.93   15.20
+   280.0    0.00   -0.25   -0.93   -1.97   -3.25   -4.62   -5.93   -7.00   -7.72   -8.00   -7.79   -7.07   -5.84   -4.07   -1.71    1.33    5.14    9.74   14.98
+   285.0    0.00   -0.25   -0.94   -1.98   -3.27   -4.65   -5.96   -7.04   -7.77   -8.06   -7.86   -7.15   -5.92   -4.16   -1.81    1.21    4.99    9.55   14.77
+   290.0    0.00   -0.25   -0.95   -2.00   -3.30   -4.69   -6.00   -7.09   -7.82   -8.12   -7.93   -7.23   -6.01   -4.26   -1.92    1.08    4.84    9.38   14.58
+   295.0    0.00   -0.26   -0.96   -2.02   -3.33   -4.72   -6.04   -7.14   -7.88   -8.19   -8.00   -7.31   -6.11   -4.36   -2.04    0.96    4.70    9.23   14.43
+   300.0    0.00   -0.26   -0.97   -2.04   -3.35   -4.76   -6.09   -7.19   -7.95   -8.26   -8.08   -7.40   -6.20   -4.47   -2.15    0.83    4.58    9.10   14.31
+   305.0    0.00   -0.26   -0.98   -2.05   -3.38   -4.79   -6.14   -7.25   -8.01   -8.33   -8.16   -7.48   -6.29   -4.57   -2.26    0.73    4.47    9.01   14.22
+   310.0    0.00   -0.27   -0.98   -2.07   -3.40   -4.83   -6.18   -7.31   -8.08   -8.40   -8.23   -7.56   -6.37   -4.66   -2.35    0.63    4.40    8.96   14.17
+   315.0    0.00   -0.27   -0.99   -2.08   -3.43   -4.86   -6.23   -7.36   -8.14   -8.47   -8.30   -7.62   -6.44   -4.73   -2.43    0.56    4.34    8.93   14.15
+   320.0    0.00   -0.27   -1.00   -2.10   -3.45   -4.89   -6.27   -7.41   -8.19   -8.52   -8.35   -7.67   -6.49   -4.79   -2.49    0.50    4.31    8.92   14.15
+   325.0    0.00   -0.28   -1.01   -2.11   -3.46   -4.92   -6.30   -7.45   -8.24   -8.57   -8.39   -7.71   -6.53   -4.83   -2.54    0.47    4.29    8.93   14.15
+   330.0    0.00   -0.28   -1.01   -2.12   -3.48   -4.94   -6.33   -7.49   -8.28   -8.61   -8.43   -7.74   -6.56   -4.86   -2.56    0.45    4.29    8.95   14.16
+   335.0    0.00   -0.28   -1.02   -2.13   -3.49   -4.95   -6.35   -7.51   -8.31   -8.63   -8.45   -7.76   -6.57   -4.87   -2.57    0.45    4.31    8.98   14.16
+   340.0    0.00   -0.28   -1.02   -2.13   -3.50   -4.96   -6.36   -7.53   -8.33   -8.65   -8.46   -7.77   -6.57   -4.87   -2.57    0.46    4.33    9.01   14.16
+   345.0    0.00   -0.28   -1.02   -2.13   -3.50   -4.97   -6.37   -7.54   -8.33   -8.66   -8.46   -7.76   -6.57   -4.86   -2.56    0.48    4.36    9.04   14.16
+   350.0    0.00   -0.28   -1.02   -2.13   -3.50   -4.97   -6.37   -7.54   -8.34   -8.66   -8.46   -7.75   -6.55   -4.84   -2.53    0.51    4.39    9.07   14.17
+   355.0    0.00   -0.28   -1.02   -2.13   -3.49   -4.96   -6.37   -7.54   -8.33   -8.65   -8.45   -7.74   -6.53   -4.81   -2.50    0.54    4.43    9.11   14.20
+   360.0    0.00   -0.28   -1.01   -2.12   -3.49   -4.95   -6.35   -7.52   -8.32   -8.63   -8.43   -7.72   -6.51   -4.78   -2.47    0.58    4.48    9.16   14.25
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.10     -0.62    120.06                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.13   -0.52   -1.10   -1.82   -2.62   -3.43   -4.21   -4.85   -5.23   -5.25   -4.83   -3.98   -2.75   -1.23    0.59    2.86    5.83    9.66
+     0.0    0.00   -0.12   -0.48   -1.03   -1.72   -2.49   -3.29   -4.07   -4.73   -5.15   -5.20   -4.83   -4.05   -2.92   -1.50    0.25    2.53    5.61    9.51
+     5.0    0.00   -0.11   -0.47   -1.03   -1.71   -2.48   -3.29   -4.06   -4.72   -5.13   -5.20   -4.83   -4.05   -2.93   -1.51    0.25    2.54    5.58    9.37
+    10.0    0.00   -0.11   -0.47   -1.02   -1.71   -2.48   -3.28   -4.05   -4.71   -5.12   -5.19   -4.83   -4.06   -2.93   -1.51    0.26    2.55    5.55    9.26
+    15.0    0.00   -0.11   -0.46   -1.01   -1.71   -2.48   -3.28   -4.05   -4.70   -5.11   -5.17   -4.82   -4.05   -2.93   -1.50    0.27    2.55    5.53    9.17
+    20.0    0.00   -0.10   -0.45   -1.01   -1.70   -2.48   -3.28   -4.04   -4.69   -5.10   -5.16   -4.81   -4.04   -2.92   -1.48    0.29    2.57    5.52    9.12
+    25.0    0.00   -0.10   -0.45   -1.00   -1.70   -2.47   -3.28   -4.04   -4.68   -5.08   -5.14   -4.79   -4.02   -2.89   -1.45    0.32    2.59    5.52    9.12
+    30.0    0.00   -0.10   -0.44   -1.00   -1.69   -2.47   -3.27   -4.03   -4.67   -5.07   -5.13   -4.77   -3.99   -2.86   -1.41    0.36    2.61    5.53    9.16
+    35.0    0.00   -0.09   -0.44   -0.99   -1.69   -2.47   -3.27   -4.03   -4.66   -5.06   -5.11   -4.75   -3.96   -2.81   -1.36    0.41    2.65    5.57    9.23
+    40.0    0.00   -0.09   -0.44   -0.99   -1.68   -2.46   -3.27   -4.03   -4.66   -5.05   -5.10   -4.72   -3.92   -2.76   -1.30    0.47    2.69    5.61    9.34
+    45.0    0.00   -0.09   -0.43   -0.98   -1.68   -2.46   -3.26   -4.02   -4.66   -5.05   -5.09   -4.70   -3.88   -2.70   -1.23    0.53    2.74    5.66    9.47
+    50.0    0.00   -0.09   -0.43   -0.98   -1.67   -2.46   -3.26   -4.03   -4.66   -5.05   -5.08   -4.68   -3.84   -2.65   -1.17    0.59    2.79    5.72    9.60
+    55.0    0.00   -0.09   -0.43   -0.98   -1.67   -2.45   -3.26   -4.03   -4.66   -5.05   -5.07   -4.66   -3.81   -2.59   -1.11    0.65    2.84    5.77    9.73
+    60.0    0.00   -0.09   -0.43   -0.98   -1.67   -2.46   -3.27   -4.04   -4.67   -5.06   -5.07   -4.64   -3.77   -2.55   -1.05    0.70    2.88    5.81    9.83
+    65.0    0.00   -0.09   -0.43   -0.98   -1.67   -2.46   -3.27   -4.05   -4.69   -5.07   -5.07   -4.63   -3.75   -2.51   -1.02    0.74    2.91    5.84    9.91
+    70.0    0.00   -0.09   -0.43   -0.98   -1.68   -2.47   -3.29   -4.06   -4.70   -5.08   -5.08   -4.63   -3.74   -2.49   -0.99    0.75    2.92    5.85    9.95
+    75.0    0.00   -0.09   -0.43   -0.99   -1.69   -2.48   -3.30   -4.08   -4.72   -5.10   -5.09   -4.63   -3.74   -2.49   -0.99    0.76    2.92    5.85    9.96
+    80.0    0.00   -0.09   -0.44   -0.99   -1.70   -2.50   -3.32   -4.11   -4.74   -5.12   -5.11   -4.64   -3.74   -2.50   -1.00    0.74    2.90    5.82    9.93
+    85.0    0.00   -0.10   -0.44   -1.00   -1.71   -2.52   -3.35   -4.13   -4.77   -5.14   -5.12   -4.66   -3.76   -2.52   -1.03    0.71    2.86    5.78    9.86
+    90.0    0.00   -0.10   -0.45   -1.02   -1.73   -2.54   -3.37   -4.16   -4.79   -5.16   -5.14   -4.68   -3.79   -2.56   -1.07    0.66    2.82    5.73    9.78
+    95.0    0.00   -0.10   -0.46   -1.03   -1.75   -2.57   -3.40   -4.19   -4.82   -5.18   -5.16   -4.70   -3.82   -2.60   -1.12    0.61    2.77    5.67    9.68
+   100.0    0.00   -0.10   -0.47   -1.05   -1.78   -2.59   -3.43   -4.22   -4.84   -5.20   -5.18   -4.73   -3.86   -2.65   -1.18    0.56    2.72    5.61    9.58
+   105.0    0.00   -0.11   -0.48   -1.06   -1.80   -2.62   -3.46   -4.24   -4.87   -5.22   -5.20   -4.75   -3.90   -2.70   -1.23    0.52    2.68    5.56    9.48
+   110.0    0.00   -0.11   -0.49   -1.08   -1.82   -2.65   -3.49   -4.27   -4.89   -5.24   -5.22   -4.78   -3.93   -2.74   -1.27    0.48    2.66    5.53    9.40
+   115.0    0.00   -0.12   -0.50   -1.10   -1.85   -2.68   -3.52   -4.29   -4.90   -5.25   -5.24   -4.80   -3.96   -2.77   -1.30    0.46    2.65    5.51    9.33
+   120.0    0.00   -0.12   -0.51   -1.11   -1.87   -2.70   -3.54   -4.31   -4.92   -5.26   -5.25   -4.83   -3.99   -2.79   -1.31    0.46    2.66    5.51    9.29
+   125.0    0.00   -0.12   -0.52   -1.13   -1.89   -2.72   -3.56   -4.32   -4.93   -5.27   -5.26   -4.84   -4.00   -2.80   -1.31    0.48    2.69    5.53    9.26
+   130.0    0.00   -0.13   -0.52   -1.14   -1.91   -2.74   -3.57   -4.33   -4.93   -5.28   -5.28   -4.86   -4.01   -2.80   -1.29    0.52    2.73    5.57    9.26
+   135.0    0.00   -0.13   -0.53   -1.15   -1.92   -2.75   -3.58   -4.34   -4.94   -5.29   -5.29   -4.87   -4.02   -2.79   -1.26    0.57    2.79    5.61    9.27
+   140.0    0.00   -0.13   -0.54   -1.16   -1.93   -2.76   -3.59   -4.34   -4.94   -5.29   -5.30   -4.87   -4.02   -2.78   -1.22    0.62    2.85    5.66    9.28
+   145.0    0.00   -0.14   -0.55   -1.17   -1.94   -2.77   -3.59   -4.34   -4.95   -5.30   -5.30   -4.88   -4.01   -2.75   -1.18    0.67    2.91    5.71    9.29
+   150.0    0.00   -0.14   -0.55   -1.18   -1.95   -2.77   -3.59   -4.34   -4.95   -5.31   -5.31   -4.89   -4.01   -2.74   -1.15    0.72    2.95    5.75    9.30
+   155.0    0.00   -0.14   -0.56   -1.18   -1.95   -2.77   -3.59   -4.34   -4.95   -5.32   -5.32   -4.89   -4.01   -2.72   -1.12    0.75    2.99    5.78    9.30
+   160.0    0.00   -0.15   -0.56   -1.18   -1.95   -2.77   -3.59   -4.34   -4.96   -5.33   -5.34   -4.90   -4.01   -2.72   -1.11    0.76    3.00    5.79    9.28
+   165.0    0.00   -0.15   -0.56   -1.18   -1.94   -2.76   -3.58   -4.34   -4.96   -5.34   -5.35   -4.91   -4.01   -2.72   -1.12    0.76    3.00    5.79    9.26
+   170.0    0.00   -0.15   -0.56   -1.18   -1.94   -2.75   -3.57   -4.34   -4.97   -5.35   -5.36   -4.92   -4.02   -2.73   -1.14    0.73    2.97    5.77    9.23
+   175.0    0.00   -0.15   -0.57   -1.18   -1.93   -2.74   -3.57   -4.34   -4.98   -5.36   -5.37   -4.93   -4.03   -2.75   -1.17    0.69    2.93    5.74    9.20
+   180.0    0.00   -0.16   -0.57   -1.18   -1.92   -2.74   -3.56   -4.34   -4.98   -5.37   -5.38   -4.94   -4.04   -2.77   -1.21    0.63    2.88    5.71    9.17
+   185.0    0.00   -0.16   -0.57   -1.17   -1.91   -2.73   -3.56   -4.35   -4.99   -5.38   -5.38   -4.94   -4.05   -2.79   -1.25    0.58    2.83    5.69    9.16
+   190.0    0.00   -0.16   -0.57   -1.17   -1.90   -2.72   -3.56   -4.35   -5.00   -5.39   -5.39   -4.93   -4.05   -2.81   -1.29    0.53    2.79    5.68    9.18
+   195.0    0.00   -0.16   -0.56   -1.16   -1.90   -2.71   -3.55   -4.35   -5.01   -5.39   -5.38   -4.92   -4.04   -2.81   -1.31    0.49    2.76    5.69    9.22
+   200.0    0.00   -0.16   -0.56   -1.16   -1.89   -2.70   -3.55   -4.35   -5.01   -5.39   -5.37   -4.91   -4.02   -2.80   -1.32    0.48    2.76    5.72    9.30
+   205.0    0.00   -0.16   -0.56   -1.16   -1.88   -2.70   -3.55   -4.35   -5.01   -5.39   -5.36   -4.88   -3.99   -2.78   -1.30    0.49    2.79    5.79    9.40
+   210.0    0.00   -0.16   -0.56   -1.15   -1.88   -2.69   -3.54   -4.35   -5.01   -5.38   -5.34   -4.86   -3.96   -2.74   -1.27    0.53    2.85    5.88    9.53
+   215.0    0.00   -0.17   -0.56   -1.15   -1.88   -2.69   -3.54   -4.35   -5.01   -5.37   -5.32   -4.83   -3.92   -2.70   -1.21    0.60    2.93    5.99    9.69
+   220.0    0.00   -0.17   -0.57   -1.15   -1.87   -2.69   -3.54   -4.35   -5.00   -5.36   -5.31   -4.80   -3.88   -2.64   -1.14    0.69    3.04    6.13    9.85
+   225.0    0.00   -0.17   -0.57   -1.15   -1.87   -2.69   -3.54   -4.34   -4.99   -5.35   -5.29   -4.78   -3.85   -2.59   -1.06    0.79    3.17    6.27   10.02
+   230.0    0.00   -0.17   -0.57   -1.15   -1.88   -2.69   -3.53   -4.33   -4.98   -5.34   -5.28   -4.76   -3.82   -2.54   -0.98    0.90    3.30    6.41   10.17
+   235.0    0.00   -0.17   -0.57   -1.16   -1.88   -2.69   -3.53   -4.33   -4.97   -5.32   -5.27   -4.76   -3.81   -2.50   -0.91    1.01    3.43    6.54   10.30
+   240.0    0.00   -0.17   -0.57   -1.16   -1.88   -2.69   -3.52   -4.32   -4.96   -5.32   -5.27   -4.76   -3.81   -2.48   -0.85    1.11    3.55    6.65   10.40
+   245.0    0.00   -0.17   -0.58   -1.17   -1.89   -2.69   -3.52   -4.31   -4.95   -5.31   -5.28   -4.78   -3.82   -2.48   -0.82    1.18    3.64    6.72   10.45
+   250.0    0.00   -0.17   -0.58   -1.17   -1.89   -2.69   -3.52   -4.30   -4.93   -5.31   -5.29   -4.81   -3.86   -2.50   -0.80    1.23    3.69    6.76   10.46
+   255.0    0.00   -0.17   -0.58   -1.18   -1.90   -2.69   -3.51   -4.29   -4.92   -5.30   -5.30   -4.84   -3.90   -2.54   -0.82    1.24    3.71    6.75   10.43
+   260.0    0.00   -0.17   -0.58   -1.18   -1.90   -2.70   -3.51   -4.27   -4.91   -5.30   -5.32   -4.88   -3.96   -2.59   -0.86    1.22    3.69    6.70   10.36
+   265.0    0.00   -0.17   -0.58   -1.18   -1.91   -2.70   -3.50   -4.26   -4.90   -5.30   -5.34   -4.92   -4.02   -2.66   -0.92    1.16    3.63    6.61   10.26
+   270.0    0.00   -0.17   -0.58   -1.19   -1.91   -2.70   -3.50   -4.25   -4.89   -5.30   -5.36   -4.96   -4.08   -2.73   -0.99    1.08    3.53    6.49   10.15
+   275.0    0.00   -0.17   -0.58   -1.19   -1.91   -2.70   -3.49   -4.24   -4.88   -5.29   -5.37   -4.99   -4.13   -2.80   -1.08    0.98    3.41    6.35   10.04
+   280.0    0.00   -0.17   -0.58   -1.19   -1.91   -2.69   -3.48   -4.23   -4.87   -5.29   -5.37   -5.02   -4.17   -2.86   -1.16    0.86    3.26    6.20    9.93
+   285.0    0.00   -0.17   -0.58   -1.18   -1.91   -2.69   -3.47   -4.22   -4.86   -5.28   -5.37   -5.03   -4.20   -2.92   -1.25    0.74    3.11    6.05    9.85
+   290.0    0.00   -0.16   -0.58   -1.18   -1.90   -2.68   -3.46   -4.21   -4.85   -5.27   -5.37   -5.03   -4.21   -2.95   -1.33    0.62    2.96    5.90    9.79
+   295.0    0.00   -0.16   -0.57   -1.17   -1.89   -2.67   -3.45   -4.20   -4.84   -5.26   -5.35   -5.02   -4.21   -2.98   -1.39    0.51    2.82    5.78    9.77
+   300.0    0.00   -0.16   -0.57   -1.16   -1.88   -2.65   -3.44   -4.19   -4.83   -5.25   -5.34   -4.99   -4.19   -2.98   -1.44    0.42    2.69    5.68    9.78
+   305.0    0.00   -0.16   -0.56   -1.15   -1.87   -2.64   -3.42   -4.18   -4.82   -5.24   -5.32   -4.97   -4.17   -2.98   -1.47    0.34    2.59    5.61    9.82
+   310.0    0.00   -0.15   -0.56   -1.14   -1.85   -2.62   -3.41   -4.16   -4.81   -5.23   -5.30   -4.94   -4.14   -2.96   -1.49    0.28    2.51    5.57    9.87
+   315.0    0.00   -0.15   -0.55   -1.13   -1.83   -2.60   -3.39   -4.15   -4.80   -5.21   -5.28   -4.91   -4.10   -2.94   -1.49    0.24    2.46    5.55    9.94
+   320.0    0.00   -0.15   -0.54   -1.12   -1.82   -2.58   -3.38   -4.14   -4.79   -5.20   -5.26   -4.88   -4.07   -2.91   -1.49    0.22    2.43    5.55   10.00
+   325.0    0.00   -0.14   -0.53   -1.11   -1.80   -2.57   -3.36   -4.13   -4.78   -5.19   -5.24   -4.86   -4.04   -2.89   -1.49    0.21    2.43    5.57   10.04
+   330.0    0.00   -0.14   -0.53   -1.10   -1.79   -2.55   -3.34   -4.12   -4.77   -5.19   -5.23   -4.84   -4.02   -2.88   -1.48    0.21    2.43    5.60   10.06
+   335.0    0.00   -0.14   -0.52   -1.08   -1.77   -2.53   -3.33   -4.11   -4.77   -5.18   -5.22   -4.83   -4.01   -2.87   -1.48    0.21    2.45    5.62   10.04
+   340.0    0.00   -0.13   -0.51   -1.07   -1.76   -2.52   -3.32   -4.10   -4.76   -5.17   -5.22   -4.82   -4.01   -2.87   -1.48    0.22    2.47    5.64    9.99
+   345.0    0.00   -0.13   -0.50   -1.06   -1.75   -2.51   -3.31   -4.09   -4.75   -5.17   -5.22   -4.82   -4.01   -2.87   -1.48    0.23    2.49    5.65    9.90
+   350.0    0.00   -0.12   -0.49   -1.05   -1.74   -2.50   -3.30   -4.08   -4.74   -5.16   -5.21   -4.83   -4.02   -2.89   -1.49    0.24    2.51    5.65    9.79
+   355.0    0.00   -0.12   -0.49   -1.04   -1.73   -2.49   -3.29   -4.07   -4.73   -5.15   -5.21   -4.83   -4.03   -2.90   -1.50    0.24    2.52    5.63    9.65
+   360.0    0.00   -0.12   -0.48   -1.03   -1.72   -2.49   -3.29   -4.07   -4.73   -5.15   -5.20   -4.83   -4.05   -2.92   -1.50    0.25    2.53    5.61    9.51
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH701946.3     NONE                                        TYPE / SERIAL NO    
+COPIED              TUM                      0    27-JAN-03 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+COPIED FROM AOAD/M_T                                        COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.60     -0.46     91.24                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.24   -0.92   -1.97   -3.28   -4.69   -6.05   -7.19   -7.97   -8.30   -8.14   -7.46   -6.27   -4.54   -2.20    0.87    4.79    9.56   14.88
+     0.0    0.00   -0.28   -1.01   -2.12   -3.49   -4.95   -6.35   -7.52   -8.32   -8.63   -8.43   -7.72   -6.51   -4.78   -2.47    0.58    4.48    9.16   14.25
+     5.0    0.00   -0.28   -1.01   -2.12   -3.48   -4.94   -6.34   -7.50   -8.30   -8.62   -8.42   -7.70   -6.48   -4.75   -2.42    0.63    4.53    9.23   14.33
+    10.0    0.00   -0.28   -1.01   -2.11   -3.46   -4.92   -6.32   -7.48   -8.27   -8.59   -8.39   -7.68   -6.46   -4.72   -2.38    0.69    4.60    9.32   14.45
+    15.0    0.00   -0.27   -1.00   -2.10   -3.45   -4.90   -6.29   -7.46   -8.25   -8.57   -8.37   -7.65   -6.43   -4.68   -2.33    0.75    4.69    9.43   14.61
+    20.0    0.00   -0.27   -0.99   -2.08   -3.43   -4.88   -6.27   -7.43   -8.22   -8.54   -8.35   -7.63   -6.40   -4.64   -2.28    0.83    4.78    9.56   14.80
+    25.0    0.00   -0.27   -0.98   -2.07   -3.41   -4.85   -6.24   -7.39   -8.19   -8.51   -8.32   -7.60   -6.37   -4.60   -2.22    0.90    4.89    9.71   15.02
+    30.0    0.00   -0.26   -0.98   -2.06   -3.39   -4.83   -6.21   -7.36   -8.15   -8.48   -8.29   -7.57   -6.33   -4.55   -2.15    0.99    5.00    9.87   15.25
+    35.0    0.00   -0.26   -0.97   -2.04   -3.37   -4.80   -6.17   -7.32   -8.11   -8.44   -8.25   -7.54   -6.29   -4.50   -2.09    1.08    5.12   10.03   15.48
+    40.0    0.00   -0.26   -0.96   -2.02   -3.34   -4.77   -6.13   -7.28   -8.07   -8.40   -8.21   -7.50   -6.25   -4.45   -2.02    1.17    5.25   10.19   15.70
+    45.0    0.00   -0.25   -0.95   -2.01   -3.32   -4.74   -6.10   -7.24   -8.03   -8.35   -8.17   -7.45   -6.20   -4.40   -1.95    1.26    5.36   10.34   15.89
+    50.0    0.00   -0.25   -0.94   -1.99   -3.29   -4.70   -6.06   -7.19   -7.98   -8.31   -8.12   -7.40   -6.15   -4.34   -1.88    1.34    5.46   10.46   16.05
+    55.0    0.00   -0.24   -0.93   -1.97   -3.27   -4.67   -6.02   -7.15   -7.93   -8.25   -8.07   -7.35   -6.10   -4.28   -1.82    1.41    5.54   10.55   16.15
+    60.0    0.00   -0.24   -0.92   -1.95   -3.24   -4.64   -5.98   -7.10   -7.88   -8.20   -8.01   -7.30   -6.04   -4.23   -1.76    1.47    5.59   10.60   16.20
+    65.0    0.00   -0.24   -0.91   -1.94   -3.22   -4.60   -5.94   -7.06   -7.83   -8.15   -7.96   -7.24   -5.99   -4.18   -1.72    1.50    5.61   10.60   16.20
+    70.0    0.00   -0.23   -0.90   -1.92   -3.19   -4.57   -5.90   -7.02   -7.79   -8.10   -7.91   -7.19   -5.94   -4.14   -1.70    1.50    5.60   10.57   16.14
+    75.0    0.00   -0.23   -0.89   -1.91   -3.17   -4.55   -5.87   -6.98   -7.75   -8.06   -7.87   -7.15   -5.91   -4.12   -1.70    1.48    5.55   10.50   16.04
+    80.0    0.00   -0.23   -0.88   -1.89   -3.16   -4.53   -5.84   -6.95   -7.72   -8.03   -7.83   -7.12   -5.89   -4.11   -1.71    1.44    5.47   10.39   15.91
+    85.0    0.00   -0.22   -0.87   -1.88   -3.14   -4.51   -5.82   -6.93   -7.69   -8.00   -7.81   -7.10   -5.88   -4.13   -1.75    1.36    5.36   10.25   15.74
+    90.0    0.00   -0.22   -0.87   -1.87   -3.13   -4.49   -5.81   -6.92   -7.68   -7.99   -7.80   -7.10   -5.90   -4.16   -1.82    1.27    5.24   10.09   15.56
+    95.0    0.00   -0.22   -0.86   -1.87   -3.12   -4.49   -5.80   -6.91   -7.68   -7.99   -7.81   -7.12   -5.93   -4.21   -1.90    1.16    5.10    9.92   15.37
+   100.0    0.00   -0.21   -0.86   -1.87   -3.12   -4.48   -5.80   -6.91   -7.68   -8.01   -7.84   -7.16   -5.98   -4.29   -1.99    1.04    4.96    9.76   15.18
+   105.0    0.00   -0.21   -0.86   -1.86   -3.12   -4.49   -5.81   -6.93   -7.70   -8.04   -7.88   -7.21   -6.05   -4.37   -2.09    0.93    4.82    9.60   15.00
+   110.0    0.00   -0.21   -0.86   -1.87   -3.13   -4.50   -5.82   -6.95   -7.73   -8.07   -7.93   -7.28   -6.13   -4.47   -2.20    0.81    4.69    9.46   14.84
+   115.0    0.00   -0.21   -0.86   -1.87   -3.13   -4.51   -5.84   -6.97   -7.76   -8.12   -7.99   -7.35   -6.22   -4.56   -2.30    0.71    4.59    9.34   14.71
+   120.0    0.00   -0.21   -0.86   -1.87   -3.15   -4.53   -5.87   -7.00   -7.80   -8.17   -8.05   -7.43   -6.31   -4.66   -2.39    0.62    4.50    9.24   14.60
+   125.0    0.00   -0.21   -0.86   -1.88   -3.16   -4.55   -5.89   -7.04   -7.85   -8.22   -8.12   -7.51   -6.39   -4.74   -2.47    0.55    4.44    9.18   14.52
+   130.0    0.00   -0.21   -0.86   -1.89   -3.17   -4.57   -5.92   -7.07   -7.89   -8.27   -8.18   -7.58   -6.47   -4.81   -2.53    0.51    4.40    9.13   14.47
+   135.0    0.00   -0.21   -0.86   -1.90   -3.19   -4.60   -5.95   -7.11   -7.93   -8.32   -8.23   -7.64   -6.53   -4.87   -2.57    0.47    4.37    9.11   14.44
+   140.0    0.00   -0.21   -0.87   -1.91   -3.21   -4.62   -5.98   -7.14   -7.96   -8.36   -8.28   -7.69   -6.58   -4.91   -2.60    0.46    4.37    9.10   14.43
+   145.0    0.00   -0.21   -0.87   -1.91   -3.22   -4.64   -6.01   -7.17   -8.00   -8.39   -8.31   -7.72   -6.61   -4.93   -2.62    0.45    4.36    9.10   14.44
+   150.0    0.00   -0.21   -0.87   -1.92   -3.24   -4.66   -6.04   -7.20   -8.02   -8.42   -8.33   -7.74   -6.63   -4.94   -2.62    0.45    4.37    9.10   14.45
+   155.0    0.00   -0.21   -0.87   -1.93   -3.25   -4.68   -6.06   -7.22   -8.05   -8.44   -8.35   -7.75   -6.63   -4.94   -2.62    0.46    4.36    9.10   14.46
+   160.0    0.00   -0.21   -0.88   -1.93   -3.26   -4.69   -6.07   -7.24   -8.06   -8.45   -8.35   -7.75   -6.62   -4.94   -2.61    0.45    4.36    9.09   14.46
+   165.0    0.00   -0.21   -0.88   -1.94   -3.27   -4.70   -6.09   -7.25   -8.07   -8.46   -8.35   -7.74   -6.61   -4.93   -2.61    0.45    4.34    9.08   14.46
+   170.0    0.00   -0.21   -0.88   -1.94   -3.27   -4.71   -6.10   -7.26   -8.08   -8.46   -8.35   -7.73   -6.60   -4.92   -2.61    0.43    4.32    9.05   14.44
+   175.0    0.00   -0.21   -0.88   -1.94   -3.27   -4.71   -6.10   -7.27   -8.08   -8.46   -8.34   -7.72   -6.59   -4.91   -2.61    0.42    4.29    9.02   14.41
+   180.0    0.00   -0.21   -0.88   -1.94   -3.27   -4.71   -6.10   -7.27   -8.08   -8.46   -8.34   -7.71   -6.57   -4.90   -2.62    0.40    4.26    9.00   14.38
+   185.0    0.00   -0.21   -0.88   -1.93   -3.26   -4.70   -6.09   -7.26   -8.08   -8.45   -8.33   -7.70   -6.56   -4.90   -2.62    0.38    4.24    8.98   14.35
+   190.0    0.00   -0.21   -0.87   -1.93   -3.25   -4.69   -6.08   -7.25   -8.07   -8.44   -8.32   -7.69   -6.55   -4.89   -2.62    0.38    4.24    8.98   14.33
+   195.0    0.00   -0.21   -0.87   -1.92   -3.24   -4.68   -6.07   -7.24   -8.06   -8.43   -8.30   -7.67   -6.54   -4.88   -2.61    0.39    4.26    9.00   14.33
+   200.0    0.00   -0.21   -0.87   -1.92   -3.23   -4.67   -6.05   -7.22   -8.04   -8.41   -8.29   -7.65   -6.52   -4.86   -2.59    0.42    4.30    9.06   14.37
+   205.0    0.00   -0.21   -0.87   -1.91   -3.22   -4.65   -6.03   -7.20   -8.02   -8.39   -8.26   -7.62   -6.48   -4.82   -2.55    0.47    4.38    9.15   14.44
+   210.0    0.00   -0.21   -0.87   -1.90   -3.21   -4.63   -6.01   -7.18   -8.00   -8.36   -8.23   -7.58   -6.44   -4.77   -2.49    0.55    4.48    9.28   14.55
+   215.0    0.00   -0.21   -0.87   -1.90   -3.20   -4.61   -5.99   -7.15   -7.97   -8.33   -8.18   -7.53   -6.38   -4.70   -2.41    0.65    4.61    9.43   14.69
+   220.0    0.00   -0.21   -0.87   -1.89   -3.19   -4.60   -5.97   -7.13   -7.93   -8.28   -8.13   -7.47   -6.31   -4.62   -2.31    0.78    4.77    9.61   14.87
+   225.0    0.00   -0.21   -0.87   -1.89   -3.18   -4.58   -5.94   -7.10   -7.89   -8.24   -8.07   -7.40   -6.22   -4.52   -2.19    0.91    4.93    9.80   15.07
+   230.0    0.00   -0.21   -0.87   -1.89   -3.17   -4.57   -5.92   -7.07   -7.85   -8.18   -8.01   -7.32   -6.13   -4.41   -2.07    1.06    5.10    9.98   15.28
+   235.0    0.00   -0.22   -0.87   -1.89   -3.16   -4.56   -5.90   -7.03   -7.81   -8.13   -7.94   -7.24   -6.03   -4.30   -1.94    1.20    5.25   10.15   15.47
+   240.0    0.00   -0.22   -0.87   -1.89   -3.16   -4.55   -5.88   -7.01   -7.77   -8.07   -7.87   -7.16   -5.94   -4.19   -1.82    1.33    5.39   10.29   15.63
+   245.0    0.00   -0.22   -0.87   -1.89   -3.16   -4.54   -5.87   -6.98   -7.73   -8.02   -7.81   -7.08   -5.86   -4.10   -1.71    1.44    5.49   10.39   15.74
+   250.0    0.00   -0.22   -0.88   -1.90   -3.17   -4.54   -5.86   -6.96   -7.70   -7.98   -7.76   -7.02   -5.79   -4.01   -1.62    1.53    5.56   10.44   15.79
+   255.0    0.00   -0.23   -0.88   -1.90   -3.17   -4.54   -5.86   -6.95   -7.68   -7.95   -7.72   -6.98   -5.73   -3.96   -1.56    1.58    5.58   10.43   15.78
+   260.0    0.00   -0.23   -0.89   -1.91   -3.18   -4.55   -5.86   -6.94   -7.66   -7.93   -7.70   -6.96   -5.71   -3.92   -1.53    1.59    5.57   10.37   15.71
+   265.0    0.00   -0.23   -0.90   -1.92   -3.19   -4.56   -5.86   -6.94   -7.66   -7.93   -7.70   -6.96   -5.70   -3.92   -1.53    1.57    5.51   10.26   15.58
+   270.0    0.00   -0.24   -0.91   -1.94   -3.21   -4.58   -5.88   -6.95   -7.67   -7.94   -7.71   -6.98   -5.73   -3.94   -1.56    1.52    5.41   10.11   15.40
+   275.0    0.00   -0.24   -0.92   -1.95   -3.23   -4.60   -5.90   -6.97   -7.69   -7.96   -7.74   -7.02   -5.77   -4.00   -1.62    1.44    5.28    9.93   15.20
+   280.0    0.00   -0.25   -0.93   -1.97   -3.25   -4.62   -5.93   -7.00   -7.72   -8.00   -7.79   -7.07   -5.84   -4.07   -1.71    1.33    5.14    9.74   14.98
+   285.0    0.00   -0.25   -0.94   -1.98   -3.27   -4.65   -5.96   -7.04   -7.77   -8.06   -7.86   -7.15   -5.92   -4.16   -1.81    1.21    4.99    9.55   14.77
+   290.0    0.00   -0.25   -0.95   -2.00   -3.30   -4.69   -6.00   -7.09   -7.82   -8.12   -7.93   -7.23   -6.01   -4.26   -1.92    1.08    4.84    9.38   14.58
+   295.0    0.00   -0.26   -0.96   -2.02   -3.33   -4.72   -6.04   -7.14   -7.88   -8.19   -8.00   -7.31   -6.11   -4.36   -2.04    0.96    4.70    9.23   14.43
+   300.0    0.00   -0.26   -0.97   -2.04   -3.35   -4.76   -6.09   -7.19   -7.95   -8.26   -8.08   -7.40   -6.20   -4.47   -2.15    0.83    4.58    9.10   14.31
+   305.0    0.00   -0.26   -0.98   -2.05   -3.38   -4.79   -6.14   -7.25   -8.01   -8.33   -8.16   -7.48   -6.29   -4.57   -2.26    0.73    4.47    9.01   14.22
+   310.0    0.00   -0.27   -0.98   -2.07   -3.40   -4.83   -6.18   -7.31   -8.08   -8.40   -8.23   -7.56   -6.37   -4.66   -2.35    0.63    4.40    8.96   14.17
+   315.0    0.00   -0.27   -0.99   -2.08   -3.43   -4.86   -6.23   -7.36   -8.14   -8.47   -8.30   -7.62   -6.44   -4.73   -2.43    0.56    4.34    8.93   14.15
+   320.0    0.00   -0.27   -1.00   -2.10   -3.45   -4.89   -6.27   -7.41   -8.19   -8.52   -8.35   -7.67   -6.49   -4.79   -2.49    0.50    4.31    8.92   14.15
+   325.0    0.00   -0.28   -1.01   -2.11   -3.46   -4.92   -6.30   -7.45   -8.24   -8.57   -8.39   -7.71   -6.53   -4.83   -2.54    0.47    4.29    8.93   14.15
+   330.0    0.00   -0.28   -1.01   -2.12   -3.48   -4.94   -6.33   -7.49   -8.28   -8.61   -8.43   -7.74   -6.56   -4.86   -2.56    0.45    4.29    8.95   14.16
+   335.0    0.00   -0.28   -1.02   -2.13   -3.49   -4.95   -6.35   -7.51   -8.31   -8.63   -8.45   -7.76   -6.57   -4.87   -2.57    0.45    4.31    8.98   14.16
+   340.0    0.00   -0.28   -1.02   -2.13   -3.50   -4.96   -6.36   -7.53   -8.33   -8.65   -8.46   -7.77   -6.57   -4.87   -2.57    0.46    4.33    9.01   14.16
+   345.0    0.00   -0.28   -1.02   -2.13   -3.50   -4.97   -6.37   -7.54   -8.33   -8.66   -8.46   -7.76   -6.57   -4.86   -2.56    0.48    4.36    9.04   14.16
+   350.0    0.00   -0.28   -1.02   -2.13   -3.50   -4.97   -6.37   -7.54   -8.34   -8.66   -8.46   -7.75   -6.55   -4.84   -2.53    0.51    4.39    9.07   14.17
+   355.0    0.00   -0.28   -1.02   -2.13   -3.49   -4.96   -6.37   -7.54   -8.33   -8.65   -8.45   -7.74   -6.53   -4.81   -2.50    0.54    4.43    9.11   14.20
+   360.0    0.00   -0.28   -1.01   -2.12   -3.49   -4.95   -6.35   -7.52   -8.32   -8.63   -8.43   -7.72   -6.51   -4.78   -2.47    0.58    4.48    9.16   14.25
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.10     -0.62    120.06                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.13   -0.52   -1.10   -1.82   -2.62   -3.43   -4.21   -4.85   -5.23   -5.25   -4.83   -3.98   -2.75   -1.23    0.59    2.86    5.83    9.66
+     0.0    0.00   -0.12   -0.48   -1.03   -1.72   -2.49   -3.29   -4.07   -4.73   -5.15   -5.20   -4.83   -4.05   -2.92   -1.50    0.25    2.53    5.61    9.51
+     5.0    0.00   -0.11   -0.47   -1.03   -1.71   -2.48   -3.29   -4.06   -4.72   -5.13   -5.20   -4.83   -4.05   -2.93   -1.51    0.25    2.54    5.58    9.37
+    10.0    0.00   -0.11   -0.47   -1.02   -1.71   -2.48   -3.28   -4.05   -4.71   -5.12   -5.19   -4.83   -4.06   -2.93   -1.51    0.26    2.55    5.55    9.26
+    15.0    0.00   -0.11   -0.46   -1.01   -1.71   -2.48   -3.28   -4.05   -4.70   -5.11   -5.17   -4.82   -4.05   -2.93   -1.50    0.27    2.55    5.53    9.17
+    20.0    0.00   -0.10   -0.45   -1.01   -1.70   -2.48   -3.28   -4.04   -4.69   -5.10   -5.16   -4.81   -4.04   -2.92   -1.48    0.29    2.57    5.52    9.12
+    25.0    0.00   -0.10   -0.45   -1.00   -1.70   -2.47   -3.28   -4.04   -4.68   -5.08   -5.14   -4.79   -4.02   -2.89   -1.45    0.32    2.59    5.52    9.12
+    30.0    0.00   -0.10   -0.44   -1.00   -1.69   -2.47   -3.27   -4.03   -4.67   -5.07   -5.13   -4.77   -3.99   -2.86   -1.41    0.36    2.61    5.53    9.16
+    35.0    0.00   -0.09   -0.44   -0.99   -1.69   -2.47   -3.27   -4.03   -4.66   -5.06   -5.11   -4.75   -3.96   -2.81   -1.36    0.41    2.65    5.57    9.23
+    40.0    0.00   -0.09   -0.44   -0.99   -1.68   -2.46   -3.27   -4.03   -4.66   -5.05   -5.10   -4.72   -3.92   -2.76   -1.30    0.47    2.69    5.61    9.34
+    45.0    0.00   -0.09   -0.43   -0.98   -1.68   -2.46   -3.26   -4.02   -4.66   -5.05   -5.09   -4.70   -3.88   -2.70   -1.23    0.53    2.74    5.66    9.47
+    50.0    0.00   -0.09   -0.43   -0.98   -1.67   -2.46   -3.26   -4.03   -4.66   -5.05   -5.08   -4.68   -3.84   -2.65   -1.17    0.59    2.79    5.72    9.60
+    55.0    0.00   -0.09   -0.43   -0.98   -1.67   -2.45   -3.26   -4.03   -4.66   -5.05   -5.07   -4.66   -3.81   -2.59   -1.11    0.65    2.84    5.77    9.73
+    60.0    0.00   -0.09   -0.43   -0.98   -1.67   -2.46   -3.27   -4.04   -4.67   -5.06   -5.07   -4.64   -3.77   -2.55   -1.05    0.70    2.88    5.81    9.83
+    65.0    0.00   -0.09   -0.43   -0.98   -1.67   -2.46   -3.27   -4.05   -4.69   -5.07   -5.07   -4.63   -3.75   -2.51   -1.02    0.74    2.91    5.84    9.91
+    70.0    0.00   -0.09   -0.43   -0.98   -1.68   -2.47   -3.29   -4.06   -4.70   -5.08   -5.08   -4.63   -3.74   -2.49   -0.99    0.75    2.92    5.85    9.95
+    75.0    0.00   -0.09   -0.43   -0.99   -1.69   -2.48   -3.30   -4.08   -4.72   -5.10   -5.09   -4.63   -3.74   -2.49   -0.99    0.76    2.92    5.85    9.96
+    80.0    0.00   -0.09   -0.44   -0.99   -1.70   -2.50   -3.32   -4.11   -4.74   -5.12   -5.11   -4.64   -3.74   -2.50   -1.00    0.74    2.90    5.82    9.93
+    85.0    0.00   -0.10   -0.44   -1.00   -1.71   -2.52   -3.35   -4.13   -4.77   -5.14   -5.12   -4.66   -3.76   -2.52   -1.03    0.71    2.86    5.78    9.86
+    90.0    0.00   -0.10   -0.45   -1.02   -1.73   -2.54   -3.37   -4.16   -4.79   -5.16   -5.14   -4.68   -3.79   -2.56   -1.07    0.66    2.82    5.73    9.78
+    95.0    0.00   -0.10   -0.46   -1.03   -1.75   -2.57   -3.40   -4.19   -4.82   -5.18   -5.16   -4.70   -3.82   -2.60   -1.12    0.61    2.77    5.67    9.68
+   100.0    0.00   -0.10   -0.47   -1.05   -1.78   -2.59   -3.43   -4.22   -4.84   -5.20   -5.18   -4.73   -3.86   -2.65   -1.18    0.56    2.72    5.61    9.58
+   105.0    0.00   -0.11   -0.48   -1.06   -1.80   -2.62   -3.46   -4.24   -4.87   -5.22   -5.20   -4.75   -3.90   -2.70   -1.23    0.52    2.68    5.56    9.48
+   110.0    0.00   -0.11   -0.49   -1.08   -1.82   -2.65   -3.49   -4.27   -4.89   -5.24   -5.22   -4.78   -3.93   -2.74   -1.27    0.48    2.66    5.53    9.40
+   115.0    0.00   -0.12   -0.50   -1.10   -1.85   -2.68   -3.52   -4.29   -4.90   -5.25   -5.24   -4.80   -3.96   -2.77   -1.30    0.46    2.65    5.51    9.33
+   120.0    0.00   -0.12   -0.51   -1.11   -1.87   -2.70   -3.54   -4.31   -4.92   -5.26   -5.25   -4.83   -3.99   -2.79   -1.31    0.46    2.66    5.51    9.29
+   125.0    0.00   -0.12   -0.52   -1.13   -1.89   -2.72   -3.56   -4.32   -4.93   -5.27   -5.26   -4.84   -4.00   -2.80   -1.31    0.48    2.69    5.53    9.26
+   130.0    0.00   -0.13   -0.52   -1.14   -1.91   -2.74   -3.57   -4.33   -4.93   -5.28   -5.28   -4.86   -4.01   -2.80   -1.29    0.52    2.73    5.57    9.26
+   135.0    0.00   -0.13   -0.53   -1.15   -1.92   -2.75   -3.58   -4.34   -4.94   -5.29   -5.29   -4.87   -4.02   -2.79   -1.26    0.57    2.79    5.61    9.27
+   140.0    0.00   -0.13   -0.54   -1.16   -1.93   -2.76   -3.59   -4.34   -4.94   -5.29   -5.30   -4.87   -4.02   -2.78   -1.22    0.62    2.85    5.66    9.28
+   145.0    0.00   -0.14   -0.55   -1.17   -1.94   -2.77   -3.59   -4.34   -4.95   -5.30   -5.30   -4.88   -4.01   -2.75   -1.18    0.67    2.91    5.71    9.29
+   150.0    0.00   -0.14   -0.55   -1.18   -1.95   -2.77   -3.59   -4.34   -4.95   -5.31   -5.31   -4.89   -4.01   -2.74   -1.15    0.72    2.95    5.75    9.30
+   155.0    0.00   -0.14   -0.56   -1.18   -1.95   -2.77   -3.59   -4.34   -4.95   -5.32   -5.32   -4.89   -4.01   -2.72   -1.12    0.75    2.99    5.78    9.30
+   160.0    0.00   -0.15   -0.56   -1.18   -1.95   -2.77   -3.59   -4.34   -4.96   -5.33   -5.34   -4.90   -4.01   -2.72   -1.11    0.76    3.00    5.79    9.28
+   165.0    0.00   -0.15   -0.56   -1.18   -1.94   -2.76   -3.58   -4.34   -4.96   -5.34   -5.35   -4.91   -4.01   -2.72   -1.12    0.76    3.00    5.79    9.26
+   170.0    0.00   -0.15   -0.56   -1.18   -1.94   -2.75   -3.57   -4.34   -4.97   -5.35   -5.36   -4.92   -4.02   -2.73   -1.14    0.73    2.97    5.77    9.23
+   175.0    0.00   -0.15   -0.57   -1.18   -1.93   -2.74   -3.57   -4.34   -4.98   -5.36   -5.37   -4.93   -4.03   -2.75   -1.17    0.69    2.93    5.74    9.20
+   180.0    0.00   -0.16   -0.57   -1.18   -1.92   -2.74   -3.56   -4.34   -4.98   -5.37   -5.38   -4.94   -4.04   -2.77   -1.21    0.63    2.88    5.71    9.17
+   185.0    0.00   -0.16   -0.57   -1.17   -1.91   -2.73   -3.56   -4.35   -4.99   -5.38   -5.38   -4.94   -4.05   -2.79   -1.25    0.58    2.83    5.69    9.16
+   190.0    0.00   -0.16   -0.57   -1.17   -1.90   -2.72   -3.56   -4.35   -5.00   -5.39   -5.39   -4.93   -4.05   -2.81   -1.29    0.53    2.79    5.68    9.18
+   195.0    0.00   -0.16   -0.56   -1.16   -1.90   -2.71   -3.55   -4.35   -5.01   -5.39   -5.38   -4.92   -4.04   -2.81   -1.31    0.49    2.76    5.69    9.22
+   200.0    0.00   -0.16   -0.56   -1.16   -1.89   -2.70   -3.55   -4.35   -5.01   -5.39   -5.37   -4.91   -4.02   -2.80   -1.32    0.48    2.76    5.72    9.30
+   205.0    0.00   -0.16   -0.56   -1.16   -1.88   -2.70   -3.55   -4.35   -5.01   -5.39   -5.36   -4.88   -3.99   -2.78   -1.30    0.49    2.79    5.79    9.40
+   210.0    0.00   -0.16   -0.56   -1.15   -1.88   -2.69   -3.54   -4.35   -5.01   -5.38   -5.34   -4.86   -3.96   -2.74   -1.27    0.53    2.85    5.88    9.53
+   215.0    0.00   -0.17   -0.56   -1.15   -1.88   -2.69   -3.54   -4.35   -5.01   -5.37   -5.32   -4.83   -3.92   -2.70   -1.21    0.60    2.93    5.99    9.69
+   220.0    0.00   -0.17   -0.57   -1.15   -1.87   -2.69   -3.54   -4.35   -5.00   -5.36   -5.31   -4.80   -3.88   -2.64   -1.14    0.69    3.04    6.13    9.85
+   225.0    0.00   -0.17   -0.57   -1.15   -1.87   -2.69   -3.54   -4.34   -4.99   -5.35   -5.29   -4.78   -3.85   -2.59   -1.06    0.79    3.17    6.27   10.02
+   230.0    0.00   -0.17   -0.57   -1.15   -1.88   -2.69   -3.53   -4.33   -4.98   -5.34   -5.28   -4.76   -3.82   -2.54   -0.98    0.90    3.30    6.41   10.17
+   235.0    0.00   -0.17   -0.57   -1.16   -1.88   -2.69   -3.53   -4.33   -4.97   -5.32   -5.27   -4.76   -3.81   -2.50   -0.91    1.01    3.43    6.54   10.30
+   240.0    0.00   -0.17   -0.57   -1.16   -1.88   -2.69   -3.52   -4.32   -4.96   -5.32   -5.27   -4.76   -3.81   -2.48   -0.85    1.11    3.55    6.65   10.40
+   245.0    0.00   -0.17   -0.58   -1.17   -1.89   -2.69   -3.52   -4.31   -4.95   -5.31   -5.28   -4.78   -3.82   -2.48   -0.82    1.18    3.64    6.72   10.45
+   250.0    0.00   -0.17   -0.58   -1.17   -1.89   -2.69   -3.52   -4.30   -4.93   -5.31   -5.29   -4.81   -3.86   -2.50   -0.80    1.23    3.69    6.76   10.46
+   255.0    0.00   -0.17   -0.58   -1.18   -1.90   -2.69   -3.51   -4.29   -4.92   -5.30   -5.30   -4.84   -3.90   -2.54   -0.82    1.24    3.71    6.75   10.43
+   260.0    0.00   -0.17   -0.58   -1.18   -1.90   -2.70   -3.51   -4.27   -4.91   -5.30   -5.32   -4.88   -3.96   -2.59   -0.86    1.22    3.69    6.70   10.36
+   265.0    0.00   -0.17   -0.58   -1.18   -1.91   -2.70   -3.50   -4.26   -4.90   -5.30   -5.34   -4.92   -4.02   -2.66   -0.92    1.16    3.63    6.61   10.26
+   270.0    0.00   -0.17   -0.58   -1.19   -1.91   -2.70   -3.50   -4.25   -4.89   -5.30   -5.36   -4.96   -4.08   -2.73   -0.99    1.08    3.53    6.49   10.15
+   275.0    0.00   -0.17   -0.58   -1.19   -1.91   -2.70   -3.49   -4.24   -4.88   -5.29   -5.37   -4.99   -4.13   -2.80   -1.08    0.98    3.41    6.35   10.04
+   280.0    0.00   -0.17   -0.58   -1.19   -1.91   -2.69   -3.48   -4.23   -4.87   -5.29   -5.37   -5.02   -4.17   -2.86   -1.16    0.86    3.26    6.20    9.93
+   285.0    0.00   -0.17   -0.58   -1.18   -1.91   -2.69   -3.47   -4.22   -4.86   -5.28   -5.37   -5.03   -4.20   -2.92   -1.25    0.74    3.11    6.05    9.85
+   290.0    0.00   -0.16   -0.58   -1.18   -1.90   -2.68   -3.46   -4.21   -4.85   -5.27   -5.37   -5.03   -4.21   -2.95   -1.33    0.62    2.96    5.90    9.79
+   295.0    0.00   -0.16   -0.57   -1.17   -1.89   -2.67   -3.45   -4.20   -4.84   -5.26   -5.35   -5.02   -4.21   -2.98   -1.39    0.51    2.82    5.78    9.77
+   300.0    0.00   -0.16   -0.57   -1.16   -1.88   -2.65   -3.44   -4.19   -4.83   -5.25   -5.34   -4.99   -4.19   -2.98   -1.44    0.42    2.69    5.68    9.78
+   305.0    0.00   -0.16   -0.56   -1.15   -1.87   -2.64   -3.42   -4.18   -4.82   -5.24   -5.32   -4.97   -4.17   -2.98   -1.47    0.34    2.59    5.61    9.82
+   310.0    0.00   -0.15   -0.56   -1.14   -1.85   -2.62   -3.41   -4.16   -4.81   -5.23   -5.30   -4.94   -4.14   -2.96   -1.49    0.28    2.51    5.57    9.87
+   315.0    0.00   -0.15   -0.55   -1.13   -1.83   -2.60   -3.39   -4.15   -4.80   -5.21   -5.28   -4.91   -4.10   -2.94   -1.49    0.24    2.46    5.55    9.94
+   320.0    0.00   -0.15   -0.54   -1.12   -1.82   -2.58   -3.38   -4.14   -4.79   -5.20   -5.26   -4.88   -4.07   -2.91   -1.49    0.22    2.43    5.55   10.00
+   325.0    0.00   -0.14   -0.53   -1.11   -1.80   -2.57   -3.36   -4.13   -4.78   -5.19   -5.24   -4.86   -4.04   -2.89   -1.49    0.21    2.43    5.57   10.04
+   330.0    0.00   -0.14   -0.53   -1.10   -1.79   -2.55   -3.34   -4.12   -4.77   -5.19   -5.23   -4.84   -4.02   -2.88   -1.48    0.21    2.43    5.60   10.06
+   335.0    0.00   -0.14   -0.52   -1.08   -1.77   -2.53   -3.33   -4.11   -4.77   -5.18   -5.22   -4.83   -4.01   -2.87   -1.48    0.21    2.45    5.62   10.04
+   340.0    0.00   -0.13   -0.51   -1.07   -1.76   -2.52   -3.32   -4.10   -4.76   -5.17   -5.22   -4.82   -4.01   -2.87   -1.48    0.22    2.47    5.64    9.99
+   345.0    0.00   -0.13   -0.50   -1.06   -1.75   -2.51   -3.31   -4.09   -4.75   -5.17   -5.22   -4.82   -4.01   -2.87   -1.48    0.23    2.49    5.65    9.90
+   350.0    0.00   -0.12   -0.49   -1.05   -1.74   -2.50   -3.30   -4.08   -4.74   -5.16   -5.21   -4.83   -4.02   -2.89   -1.49    0.24    2.51    5.65    9.79
+   355.0    0.00   -0.12   -0.49   -1.04   -1.73   -2.49   -3.29   -4.07   -4.73   -5.15   -5.21   -4.83   -4.03   -2.90   -1.50    0.24    2.52    5.63    9.65
+   360.0    0.00   -0.12   -0.48   -1.03   -1.72   -2.49   -3.29   -4.07   -4.73   -5.15   -5.20   -4.83   -4.05   -2.92   -1.50    0.25    2.53    5.61    9.51
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH701946.3     SNOW                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               3    20-APR-05 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+      1.70     -0.54     89.93                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.23   -0.92   -1.99   -3.35   -4.89   -6.44   -7.85   -8.92   -9.49   -9.42   -8.63   -7.12   -4.94   -2.16    1.16    4.98    9.27   13.87
+     0.0    0.00   -0.26   -1.00   -2.13   -3.58   -5.18   -6.78   -8.18   -9.20   -9.68   -9.51   -8.67   -7.17   -5.05   -2.32    1.03    5.03    9.57   14.29
+     5.0    0.00   -0.26   -0.99   -2.12   -3.55   -5.15   -6.75   -8.15   -9.18   -9.66   -9.50   -8.64   -7.12   -4.98   -2.24    1.12    5.10    9.66   14.50
+    10.0    0.00   -0.26   -0.98   -2.10   -3.53   -5.12   -6.72   -8.13   -9.16   -9.65   -9.48   -8.62   -7.08   -4.91   -2.16    1.19    5.16    9.73   14.69
+    15.0    0.00   -0.25   -0.97   -2.08   -3.50   -5.09   -6.69   -8.10   -9.14   -9.64   -9.48   -8.60   -7.03   -4.84   -2.08    1.25    5.20    9.79   14.87
+    20.0    0.00   -0.25   -0.96   -2.07   -3.48   -5.06   -6.66   -8.08   -9.13   -9.63   -9.47   -8.58   -6.99   -4.78   -2.00    1.32    5.24    9.83   15.02
+    25.0    0.00   -0.25   -0.95   -2.05   -3.45   -5.03   -6.63   -8.05   -9.11   -9.63   -9.46   -8.57   -6.96   -4.72   -1.93    1.39    5.29    9.87   15.14
+    30.0    0.00   -0.24   -0.94   -2.03   -3.43   -5.01   -6.60   -8.03   -9.09   -9.62   -9.46   -8.55   -6.93   -4.66   -1.84    1.48    5.36    9.92   15.24
+    35.0    0.00   -0.24   -0.93   -2.01   -3.41   -4.98   -6.57   -8.00   -9.07   -9.60   -9.45   -8.54   -6.90   -4.60   -1.76    1.57    5.44    9.97   15.30
+    40.0    0.00   -0.24   -0.92   -2.00   -3.39   -4.95   -6.54   -7.97   -9.05   -9.59   -9.44   -8.53   -6.87   -4.55   -1.67    1.68    5.54   10.03   15.32
+    45.0    0.00   -0.23   -0.91   -1.98   -3.37   -4.93   -6.51   -7.94   -9.02   -9.56   -9.43   -8.52   -6.85   -4.50   -1.58    1.80    5.65   10.09   15.30
+    50.0    0.00   -0.23   -0.90   -1.97   -3.35   -4.90   -6.48   -7.91   -8.98   -9.54   -9.41   -8.51   -6.83   -4.45   -1.50    1.91    5.75   10.14   15.25
+    55.0    0.00   -0.23   -0.89   -1.96   -3.33   -4.88   -6.45   -7.87   -8.95   -9.50   -9.39   -8.50   -6.82   -4.42   -1.44    2.00    5.84   10.17   15.16
+    60.0    0.00   -0.22   -0.89   -1.94   -3.31   -4.85   -6.42   -7.83   -8.91   -9.47   -9.36   -8.48   -6.81   -4.40   -1.39    2.07    5.91   10.17   15.04
+    65.0    0.00   -0.22   -0.88   -1.93   -3.29   -4.83   -6.39   -7.79   -8.87   -9.44   -9.34   -8.48   -6.81   -4.39   -1.36    2.11    5.94   10.14   14.90
+    70.0    0.00   -0.22   -0.88   -1.93   -3.28   -4.81   -6.35   -7.75   -8.83   -9.40   -9.33   -8.48   -6.82   -4.40   -1.37    2.11    5.92   10.08   14.73
+    75.0    0.00   -0.22   -0.87   -1.92   -3.27   -4.78   -6.32   -7.72   -8.79   -9.38   -9.32   -8.49   -6.84   -4.43   -1.40    2.07    5.87    9.97   14.55
+    80.0    0.00   -0.21   -0.87   -1.91   -3.25   -4.77   -6.30   -7.69   -8.77   -9.36   -9.32   -8.51   -6.88   -4.49   -1.47    2.00    5.77    9.84   14.35
+    85.0    0.00   -0.21   -0.87   -1.91   -3.24   -4.75   -6.28   -7.66   -8.75   -9.36   -9.33   -8.54   -6.93   -4.56   -1.55    1.89    5.64    9.68   14.15
+    90.0    0.00   -0.21   -0.87   -1.91   -3.24   -4.74   -6.26   -7.65   -8.74   -9.37   -9.36   -8.59   -7.00   -4.65   -1.66    1.76    5.49    9.51   13.96
+    95.0    0.00   -0.21   -0.87   -1.91   -3.24   -4.73   -6.25   -7.64   -8.74   -9.38   -9.40   -8.65   -7.08   -4.75   -1.79    1.62    5.33    9.34   13.78
+   100.0    0.00   -0.21   -0.87   -1.91   -3.24   -4.73   -6.25   -7.65   -8.76   -9.41   -9.44   -8.71   -7.17   -4.85   -1.92    1.47    5.17    9.18   13.61
+   105.0    0.00   -0.21   -0.87   -1.91   -3.24   -4.73   -6.26   -7.66   -8.78   -9.45   -9.49   -8.78   -7.25   -4.96   -2.04    1.33    5.03    9.05   13.48
+   110.0    0.00   -0.21   -0.87   -1.92   -3.25   -4.74   -6.27   -7.67   -8.80   -9.48   -9.54   -8.84   -7.34   -5.06   -2.16    1.20    4.91    8.95   13.38
+   115.0    0.00   -0.21   -0.87   -1.92   -3.26   -4.76   -6.29   -7.70   -8.83   -9.52   -9.59   -8.90   -7.41   -5.16   -2.27    1.09    4.82    8.88   13.32
+   120.0    0.00   -0.21   -0.88   -1.93   -3.27   -4.78   -6.31   -7.73   -8.86   -9.55   -9.63   -8.95   -7.48   -5.24   -2.36    1.00    4.75    8.85   13.29
+   125.0    0.00   -0.21   -0.88   -1.94   -3.28   -4.79   -6.33   -7.75   -8.89   -9.58   -9.66   -8.99   -7.53   -5.31   -2.44    0.93    4.71    8.86   13.30
+   130.0    0.00   -0.21   -0.88   -1.95   -3.30   -4.81   -6.36   -7.78   -8.92   -9.60   -9.68   -9.01   -7.56   -5.36   -2.50    0.88    4.70    8.88   13.34
+   135.0    0.00   -0.21   -0.89   -1.95   -3.31   -4.83   -6.38   -7.80   -8.94   -9.62   -9.68   -9.02   -7.58   -5.40   -2.55    0.84    4.69    8.93   13.40
+   140.0    0.00   -0.21   -0.89   -1.96   -3.32   -4.85   -6.40   -7.82   -8.95   -9.62   -9.68   -9.02   -7.59   -5.42   -2.59    0.82    4.70    8.97   13.46
+   145.0    0.00   -0.22   -0.89   -1.96   -3.33   -4.86   -6.41   -7.83   -8.96   -9.62   -9.67   -9.02   -7.60   -5.44   -2.61    0.79    4.70    9.00   13.51
+   150.0    0.00   -0.22   -0.89   -1.97   -3.33   -4.86   -6.42   -7.84   -8.95   -9.61   -9.66   -9.01   -7.60   -5.45   -2.63    0.77    4.69    9.02   13.54
+   155.0    0.00   -0.22   -0.89   -1.97   -3.33   -4.86   -6.41   -7.83   -8.95   -9.60   -9.65   -8.99   -7.59   -5.45   -2.65    0.76    4.68    9.01   13.54
+   160.0    0.00   -0.22   -0.89   -1.96   -3.33   -4.85   -6.40   -7.82   -8.93   -9.59   -9.64   -8.99   -7.59   -5.46   -2.65    0.74    4.65    8.98   13.50
+   165.0    0.00   -0.22   -0.89   -1.96   -3.32   -4.84   -6.38   -7.80   -8.91   -9.57   -9.63   -8.98   -7.58   -5.45   -2.65    0.73    4.62    8.92   13.44
+   170.0    0.00   -0.22   -0.89   -1.95   -3.30   -4.82   -6.36   -7.77   -8.89   -9.56   -9.62   -8.97   -7.57   -5.44   -2.65    0.72    4.58    8.84   13.35
+   175.0    0.00   -0.22   -0.89   -1.94   -3.28   -4.79   -6.33   -7.74   -8.87   -9.54   -9.61   -8.96   -7.56   -5.42   -2.63    0.72    4.54    8.76   13.25
+   180.0    0.00   -0.22   -0.88   -1.93   -3.26   -4.76   -6.29   -7.71   -8.84   -9.52   -9.60   -8.95   -7.54   -5.39   -2.60    0.73    4.51    8.68   13.16
+   185.0    0.00   -0.22   -0.88   -1.92   -3.24   -4.73   -6.26   -7.67   -8.81   -9.50   -9.58   -8.93   -7.51   -5.35   -2.56    0.75    4.48    8.62   13.10
+   190.0    0.00   -0.22   -0.87   -1.91   -3.22   -4.70   -6.23   -7.64   -8.79   -9.48   -9.55   -8.89   -7.46   -5.29   -2.51    0.78    4.48    8.58   13.08
+   195.0    0.00   -0.22   -0.87   -1.90   -3.20   -4.68   -6.20   -7.61   -8.76   -9.45   -9.52   -8.84   -7.39   -5.22   -2.44    0.82    4.50    8.59   13.11
+   200.0    0.00   -0.22   -0.87   -1.89   -3.19   -4.65   -6.17   -7.58   -8.72   -9.41   -9.46   -8.77   -7.31   -5.14   -2.37    0.88    4.54    8.64   13.21
+   205.0    0.00   -0.22   -0.86   -1.88   -3.17   -4.64   -6.15   -7.56   -8.69   -9.36   -9.40   -8.69   -7.22   -5.04   -2.28    0.95    4.62    8.74   13.37
+   210.0    0.00   -0.22   -0.86   -1.87   -3.16   -4.62   -6.13   -7.54   -8.66   -9.31   -9.32   -8.59   -7.11   -4.94   -2.20    1.03    4.72    8.90   13.59
+   215.0    0.00   -0.22   -0.86   -1.86   -3.15   -4.61   -6.12   -7.52   -8.63   -9.25   -9.23   -8.48   -6.99   -4.84   -2.10    1.13    4.85    9.10   13.85
+   220.0    0.00   -0.22   -0.86   -1.86   -3.15   -4.61   -6.12   -7.51   -8.60   -9.19   -9.14   -8.37   -6.88   -4.73   -2.01    1.23    5.01    9.33   14.13
+   225.0    0.00   -0.22   -0.86   -1.86   -3.14   -4.61   -6.12   -7.50   -8.57   -9.13   -9.06   -8.27   -6.77   -4.64   -1.92    1.35    5.19    9.58   14.39
+   230.0    0.00   -0.22   -0.86   -1.86   -3.14   -4.61   -6.12   -7.49   -8.54   -9.08   -8.98   -8.17   -6.68   -4.55   -1.83    1.47    5.37    9.83   14.63
+   235.0    0.00   -0.22   -0.86   -1.86   -3.15   -4.62   -6.12   -7.49   -8.52   -9.04   -8.91   -8.10   -6.61   -4.48   -1.76    1.59    5.55   10.06   14.80
+   240.0    0.00   -0.22   -0.86   -1.86   -3.15   -4.62   -6.13   -7.49   -8.51   -9.01   -8.87   -8.05   -6.55   -4.43   -1.69    1.69    5.72   10.26   14.90
+   245.0    0.00   -0.22   -0.87   -1.87   -3.16   -4.64   -6.14   -7.49   -8.50   -8.99   -8.85   -8.02   -6.52   -4.40   -1.63    1.79    5.86   10.40   14.92
+   250.0    0.00   -0.23   -0.87   -1.88   -3.18   -4.65   -6.15   -7.51   -8.51   -9.00   -8.84   -8.02   -6.52   -4.38   -1.60    1.86    5.95   10.46   14.84
+   255.0    0.00   -0.23   -0.88   -1.89   -3.19   -4.67   -6.17   -7.53   -8.53   -9.02   -8.87   -8.04   -6.54   -4.38   -1.58    1.90    5.99   10.45   14.68
+   260.0    0.00   -0.23   -0.89   -1.90   -3.21   -4.69   -6.20   -7.55   -8.56   -9.05   -8.91   -8.08   -6.57   -4.41   -1.59    1.89    5.97   10.37   14.45
+   265.0    0.00   -0.24   -0.89   -1.92   -3.23   -4.71   -6.23   -7.59   -8.61   -9.10   -8.96   -8.13   -6.62   -4.45   -1.62    1.84    5.88   10.20   14.17
+   270.0    0.00   -0.24   -0.90   -1.94   -3.25   -4.75   -6.27   -7.64   -8.66   -9.17   -9.03   -8.20   -6.68   -4.50   -1.69    1.75    5.72    9.96   13.87
+   275.0    0.00   -0.24   -0.91   -1.96   -3.28   -4.78   -6.31   -7.69   -8.73   -9.24   -9.10   -8.27   -6.74   -4.57   -1.77    1.61    5.51    9.68   13.56
+   280.0    0.00   -0.25   -0.93   -1.98   -3.32   -4.83   -6.37   -7.75   -8.80   -9.32   -9.18   -8.34   -6.81   -4.64   -1.89    1.43    5.25    9.36   13.28
+   285.0    0.00   -0.25   -0.94   -2.00   -3.35   -4.88   -6.43   -7.83   -8.88   -9.40   -9.26   -8.41   -6.88   -4.73   -2.02    1.23    4.97    9.04   13.03
+   290.0    0.00   -0.25   -0.95   -2.02   -3.39   -4.93   -6.49   -7.90   -8.96   -9.48   -9.33   -8.48   -6.95   -4.82   -2.16    1.01    4.67    8.73   12.83
+   295.0    0.00   -0.26   -0.96   -2.05   -3.43   -4.98   -6.56   -7.98   -9.03   -9.55   -9.40   -8.54   -7.02   -4.91   -2.31    0.79    4.40    8.46   12.70
+   300.0    0.00   -0.26   -0.97   -2.07   -3.47   -5.04   -6.63   -8.05   -9.11   -9.62   -9.46   -8.59   -7.08   -5.01   -2.45    0.60    4.16    8.25   12.62
+   305.0    0.00   -0.26   -0.98   -2.09   -3.51   -5.09   -6.69   -8.12   -9.17   -9.67   -9.51   -8.64   -7.14   -5.09   -2.57    0.43    3.98    8.10   12.60
+   310.0    0.00   -0.27   -0.99   -2.12   -3.54   -5.14   -6.75   -8.18   -9.23   -9.72   -9.54   -8.68   -7.19   -5.17   -2.67    0.31    3.87    8.04   12.63
+   315.0    0.00   -0.27   -1.00   -2.13   -3.57   -5.18   -6.80   -8.23   -9.27   -9.75   -9.57   -8.71   -7.24   -5.23   -2.75    0.24    3.83    8.05   12.71
+   320.0    0.00   -0.27   -1.01   -2.15   -3.60   -5.22   -6.84   -8.26   -9.30   -9.77   -9.59   -8.74   -7.28   -5.28   -2.79    0.23    3.86    8.13   12.82
+   325.0    0.00   -0.27   -1.01   -2.16   -3.62   -5.24   -6.86   -8.28   -9.31   -9.78   -9.60   -8.76   -7.30   -5.31   -2.80    0.26    3.95    8.28   12.96
+   330.0    0.00   -0.27   -1.02   -2.17   -3.63   -5.26   -6.88   -8.30   -9.32   -9.78   -9.60   -8.77   -7.32   -5.32   -2.78    0.33    4.10    8.46   13.12
+   335.0    0.00   -0.27   -1.02   -2.17   -3.64   -5.26   -6.88   -8.29   -9.31   -9.77   -9.60   -8.77   -7.32   -5.31   -2.73    0.44    4.27    8.67   13.29
+   340.0    0.00   -0.27   -1.02   -2.17   -3.63   -5.26   -6.88   -8.28   -9.29   -9.76   -9.59   -8.76   -7.31   -5.28   -2.67    0.57    4.45    8.89   13.48
+   345.0    0.00   -0.27   -1.01   -2.17   -3.63   -5.25   -6.86   -8.26   -9.27   -9.74   -9.57   -8.74   -7.29   -5.23   -2.59    0.70    4.63    9.10   13.68
+   350.0    0.00   -0.27   -1.01   -2.16   -3.61   -5.23   -6.84   -8.24   -9.25   -9.72   -9.55   -8.72   -7.25   -5.18   -2.50    0.82    4.79    9.29   13.88
+   355.0    0.00   -0.27   -1.00   -2.15   -3.60   -5.21   -6.81   -8.21   -9.22   -9.70   -9.53   -8.70   -7.21   -5.11   -2.41    0.94    4.93    9.45   14.09
+   360.0    0.00   -0.26   -1.00   -2.13   -3.58   -5.18   -6.78   -8.18   -9.20   -9.68   -9.51   -8.67   -7.17   -5.05   -2.32    1.03    5.03    9.57   14.29
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.36      0.26    119.74                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.12   -0.45   -0.97   -1.61   -2.36   -3.17   -3.99   -4.76   -5.36   -5.68   -5.59   -5.03   -3.99   -2.46   -0.35    2.47    6.18   10.82
+     0.0    0.00   -0.09   -0.38   -0.84   -1.46   -2.21   -3.08   -4.00   -4.87   -5.56   -5.92   -5.84   -5.28   -4.23   -2.68   -0.55    2.34    6.08   10.51
+     5.0    0.00   -0.08   -0.37   -0.84   -1.46   -2.22   -3.08   -3.99   -4.86   -5.55   -5.92   -5.88   -5.36   -4.33   -2.77   -0.59    2.33    6.07   10.50
+    10.0    0.00   -0.08   -0.37   -0.84   -1.47   -2.23   -3.09   -3.98   -4.84   -5.52   -5.92   -5.91   -5.42   -4.41   -2.84   -0.63    2.32    6.08   10.57
+    15.0    0.00   -0.08   -0.36   -0.84   -1.48   -2.24   -3.09   -3.97   -4.81   -5.49   -5.90   -5.92   -5.47   -4.47   -2.89   -0.66    2.32    6.12   10.72
+    20.0    0.00   -0.08   -0.36   -0.84   -1.48   -2.25   -3.09   -3.96   -4.78   -5.46   -5.88   -5.92   -5.49   -4.50   -2.91   -0.66    2.34    6.19   10.95
+    25.0    0.00   -0.07   -0.36   -0.85   -1.49   -2.26   -3.10   -3.95   -4.76   -5.43   -5.85   -5.91   -5.48   -4.50   -2.90   -0.63    2.39    6.30   11.23
+    30.0    0.00   -0.07   -0.36   -0.85   -1.50   -2.27   -3.10   -3.94   -4.73   -5.40   -5.82   -5.88   -5.45   -4.46   -2.84   -0.56    2.47    6.42   11.53
+    35.0    0.00   -0.07   -0.36   -0.86   -1.51   -2.27   -3.09   -3.92   -4.71   -5.37   -5.80   -5.85   -5.41   -4.39   -2.75   -0.46    2.58    6.56   11.82
+    40.0    0.00   -0.07   -0.36   -0.86   -1.52   -2.28   -3.09   -3.91   -4.69   -5.35   -5.77   -5.81   -5.35   -4.30   -2.63   -0.32    2.71    6.70   12.07
+    45.0    0.00   -0.07   -0.37   -0.87   -1.52   -2.28   -3.08   -3.90   -4.68   -5.34   -5.76   -5.78   -5.29   -4.19   -2.49   -0.17    2.85    6.83   12.25
+    50.0    0.00   -0.07   -0.37   -0.87   -1.52   -2.27   -3.08   -3.89   -4.68   -5.34   -5.75   -5.75   -5.22   -4.09   -2.35   -0.02    2.99    6.93   12.35
+    55.0    0.00   -0.07   -0.37   -0.87   -1.52   -2.27   -3.07   -3.89   -4.67   -5.34   -5.74   -5.73   -5.17   -4.00   -2.22    0.12    3.10    7.01   12.36
+    60.0    0.00   -0.07   -0.37   -0.88   -1.53   -2.27   -3.07   -3.89   -4.68   -5.34   -5.74   -5.71   -5.13   -3.93   -2.13    0.22    3.19    7.04   12.29
+    65.0    0.00   -0.07   -0.38   -0.88   -1.53   -2.27   -3.07   -3.89   -4.68   -5.35   -5.74   -5.70   -5.10   -3.89   -2.09    0.27    3.23    7.04   12.16
+    70.0    0.00   -0.07   -0.38   -0.88   -1.53   -2.27   -3.07   -3.89   -4.69   -5.35   -5.74   -5.69   -5.09   -3.88   -2.09    0.25    3.21    7.00   11.98
+    75.0    0.00   -0.07   -0.38   -0.89   -1.53   -2.27   -3.07   -3.90   -4.69   -5.35   -5.73   -5.68   -5.08   -3.90   -2.15    0.18    3.15    6.94   11.79
+    80.0    0.00   -0.08   -0.39   -0.89   -1.54   -2.28   -3.08   -3.90   -4.69   -5.34   -5.71   -5.66   -5.09   -3.96   -2.25    0.05    3.04    6.85   11.62
+    85.0    0.00   -0.08   -0.39   -0.90   -1.55   -2.29   -3.09   -3.91   -4.69   -5.32   -5.68   -5.64   -5.11   -4.03   -2.39   -0.11    2.90    6.75   11.46
+    90.0    0.00   -0.08   -0.40   -0.91   -1.56   -2.30   -3.10   -3.92   -4.69   -5.30   -5.65   -5.61   -5.12   -4.11   -2.54   -0.30    2.74    6.66   11.35
+    95.0    0.00   -0.08   -0.40   -0.91   -1.56   -2.31   -3.11   -3.92   -4.68   -5.27   -5.60   -5.57   -5.12   -4.18   -2.68   -0.48    2.59    6.59   11.29
+   100.0    0.00   -0.09   -0.41   -0.92   -1.57   -2.32   -3.12   -3.93   -4.66   -5.24   -5.56   -5.53   -5.11   -4.24   -2.81   -0.64    2.46    6.53   11.27
+   105.0    0.00   -0.09   -0.41   -0.93   -1.58   -2.33   -3.13   -3.93   -4.65   -5.21   -5.51   -5.49   -5.09   -4.27   -2.89   -0.75    2.36    6.50   11.28
+   110.0    0.00   -0.09   -0.42   -0.94   -1.59   -2.34   -3.14   -3.93   -4.64   -5.18   -5.47   -5.44   -5.06   -4.26   -2.92   -0.80    2.32    6.50   11.32
+   115.0    0.00   -0.09   -0.42   -0.94   -1.60   -2.35   -3.14   -3.93   -4.63   -5.16   -5.44   -5.40   -5.01   -4.22   -2.89   -0.79    2.32    6.52   11.36
+   120.0    0.00   -0.10   -0.43   -0.95   -1.61   -2.36   -3.15   -3.93   -4.63   -5.15   -5.42   -5.37   -4.96   -4.15   -2.81   -0.73    2.36    6.54   11.39
+   125.0    0.00   -0.10   -0.43   -0.96   -1.62   -2.37   -3.16   -3.94   -4.63   -5.15   -5.41   -5.34   -4.90   -4.06   -2.70   -0.62    2.44    6.57   11.41
+   130.0    0.00   -0.10   -0.44   -0.96   -1.63   -2.37   -3.16   -3.94   -4.65   -5.17   -5.43   -5.33   -4.85   -3.96   -2.56   -0.48    2.53    6.59   11.41
+   135.0    0.00   -0.10   -0.44   -0.97   -1.63   -2.38   -3.17   -3.96   -4.67   -5.20   -5.45   -5.34   -4.82   -3.86   -2.42   -0.34    2.61    6.59   11.38
+   140.0    0.00   -0.11   -0.45   -0.98   -1.64   -2.39   -3.18   -3.98   -4.70   -5.24   -5.50   -5.36   -4.79   -3.78   -2.30   -0.22    2.68    6.56   11.32
+   145.0    0.00   -0.11   -0.45   -0.98   -1.65   -2.40   -3.20   -4.00   -4.74   -5.29   -5.55   -5.40   -4.80   -3.73   -2.21   -0.13    2.70    6.51   11.24
+   150.0    0.00   -0.11   -0.45   -0.98   -1.65   -2.41   -3.22   -4.03   -4.78   -5.35   -5.61   -5.45   -4.82   -3.72   -2.17   -0.11    2.68    6.41   11.14
+   155.0    0.00   -0.11   -0.46   -0.99   -1.66   -2.42   -3.24   -4.06   -4.82   -5.41   -5.68   -5.51   -4.87   -3.75   -2.19   -0.13    2.61    6.29   11.02
+   160.0    0.00   -0.12   -0.46   -0.99   -1.66   -2.43   -3.26   -4.10   -4.87   -5.46   -5.74   -5.58   -4.93   -3.82   -2.26   -0.22    2.49    6.15   10.89
+   165.0    0.00   -0.12   -0.46   -0.99   -1.67   -2.44   -3.28   -4.13   -4.91   -5.51   -5.80   -5.65   -5.02   -3.91   -2.37   -0.34    2.35    6.00   10.75
+   170.0    0.00   -0.12   -0.46   -0.99   -1.67   -2.45   -3.30   -4.16   -4.95   -5.56   -5.85   -5.71   -5.10   -4.03   -2.51   -0.50    2.20    5.85   10.59
+   175.0    0.00   -0.12   -0.46   -0.99   -1.67   -2.46   -3.32   -4.18   -4.98   -5.59   -5.89   -5.77   -5.19   -4.15   -2.66   -0.65    2.06    5.71   10.44
+   180.0    0.00   -0.13   -0.46   -0.99   -1.67   -2.46   -3.33   -4.20   -5.00   -5.62   -5.92   -5.82   -5.26   -4.26   -2.79   -0.78    1.94    5.61   10.29
+   185.0    0.00   -0.13   -0.46   -0.99   -1.67   -2.46   -3.33   -4.21   -5.02   -5.63   -5.94   -5.85   -5.32   -4.35   -2.89   -0.88    1.87    5.54   10.15
+   190.0    0.00   -0.13   -0.47   -0.99   -1.66   -2.46   -3.33   -4.22   -5.02   -5.63   -5.94   -5.86   -5.35   -4.40   -2.95   -0.92    1.86    5.52   10.04
+   195.0    0.00   -0.13   -0.47   -0.98   -1.65   -2.45   -3.32   -4.21   -5.02   -5.63   -5.93   -5.86   -5.36   -4.40   -2.95   -0.90    1.90    5.56    9.97
+   200.0    0.00   -0.14   -0.47   -0.98   -1.64   -2.43   -3.31   -4.20   -5.00   -5.61   -5.92   -5.84   -5.33   -4.37   -2.90   -0.83    1.99    5.63    9.96
+   205.0    0.00   -0.14   -0.47   -0.98   -1.63   -2.42   -3.29   -4.18   -4.98   -5.59   -5.89   -5.80   -5.27   -4.29   -2.80   -0.70    2.13    5.75   10.00
+   210.0    0.00   -0.14   -0.48   -0.98   -1.63   -2.40   -3.26   -4.15   -4.96   -5.57   -5.85   -5.74   -5.19   -4.18   -2.65   -0.53    2.30    5.89   10.10
+   215.0    0.00   -0.14   -0.48   -0.98   -1.62   -2.38   -3.24   -4.12   -4.93   -5.53   -5.81   -5.68   -5.09   -4.04   -2.49   -0.35    2.48    6.05   10.26
+   220.0    0.00   -0.15   -0.48   -0.98   -1.62   -2.37   -3.22   -4.09   -4.90   -5.50   -5.77   -5.61   -4.99   -3.89   -2.31   -0.16    2.65    6.21   10.46
+   225.0    0.00   -0.15   -0.49   -0.99   -1.62   -2.36   -3.19   -4.06   -4.86   -5.46   -5.72   -5.54   -4.88   -3.75   -2.14    0.00    2.79    6.34   10.67
+   230.0    0.00   -0.15   -0.50   -1.00   -1.62   -2.35   -3.18   -4.03   -4.83   -5.42   -5.67   -5.47   -4.78   -3.61   -1.99    0.14    2.90    6.45   10.88
+   235.0    0.00   -0.16   -0.51   -1.01   -1.63   -2.35   -3.16   -4.01   -4.79   -5.38   -5.62   -5.40   -4.69   -3.51   -1.87    0.24    2.97    6.51   11.05
+   240.0    0.00   -0.16   -0.51   -1.02   -1.64   -2.36   -3.15   -3.98   -4.76   -5.34   -5.57   -5.35   -4.63   -3.43   -1.80    0.30    2.99    6.52   11.16
+   245.0    0.00   -0.16   -0.52   -1.04   -1.66   -2.37   -3.15   -3.96   -4.72   -5.30   -5.53   -5.31   -4.59   -3.39   -1.76    0.31    2.96    6.48   11.18
+   250.0    0.00   -0.16   -0.53   -1.05   -1.68   -2.39   -3.15   -3.95   -4.69   -5.26   -5.50   -5.29   -4.58   -3.39   -1.77    0.28    2.91    6.39   11.10
+   255.0    0.00   -0.17   -0.54   -1.07   -1.70   -2.40   -3.16   -3.93   -4.66   -5.22   -5.47   -5.28   -4.59   -3.41   -1.81    0.23    2.82    6.26   10.92
+   260.0    0.00   -0.17   -0.55   -1.09   -1.72   -2.43   -3.17   -3.92   -4.63   -5.19   -5.45   -5.28   -4.62   -3.47   -1.87    0.15    2.71    6.10   10.66
+   265.0    0.00   -0.17   -0.55   -1.10   -1.75   -2.45   -3.18   -3.92   -4.61   -5.16   -5.43   -5.29   -4.66   -3.54   -1.96    0.06    2.60    5.92   10.34
+   270.0    0.00   -0.17   -0.56   -1.11   -1.77   -2.47   -3.19   -3.92   -4.60   -5.14   -5.43   -5.31   -4.72   -3.62   -2.05   -0.04    2.49    5.75   10.00
+   275.0    0.00   -0.17   -0.56   -1.12   -1.78   -2.48   -3.20   -3.92   -4.59   -5.13   -5.42   -5.33   -4.77   -3.70   -2.15   -0.14    2.39    5.59    9.67
+   280.0    0.00   -0.17   -0.56   -1.13   -1.79   -2.50   -3.21   -3.92   -4.58   -5.12   -5.42   -5.35   -4.81   -3.77   -2.24   -0.23    2.29    5.46    9.40
+   285.0    0.00   -0.16   -0.56   -1.13   -1.79   -2.50   -3.22   -3.93   -4.59   -5.13   -5.43   -5.37   -4.85   -3.83   -2.31   -0.31    2.22    5.37    9.22
+   290.0    0.00   -0.16   -0.55   -1.12   -1.79   -2.50   -3.22   -3.94   -4.60   -5.14   -5.44   -5.38   -4.87   -3.87   -2.38   -0.39    2.16    5.33    9.15
+   295.0    0.00   -0.16   -0.55   -1.11   -1.78   -2.49   -3.22   -3.94   -4.61   -5.15   -5.45   -5.38   -4.88   -3.89   -2.42   -0.45    2.11    5.34    9.19
+   300.0    0.00   -0.16   -0.54   -1.09   -1.76   -2.48   -3.22   -3.96   -4.64   -5.18   -5.46   -5.38   -4.87   -3.89   -2.45   -0.49    2.09    5.40    9.35
+   305.0    0.00   -0.15   -0.53   -1.07   -1.73   -2.45   -3.21   -3.97   -4.66   -5.21   -5.48   -5.38   -4.85   -3.88   -2.46   -0.52    2.08    5.49    9.59
+   310.0    0.00   -0.15   -0.51   -1.05   -1.70   -2.43   -3.20   -3.98   -4.69   -5.25   -5.51   -5.38   -4.83   -3.86   -2.46   -0.54    2.09    5.60    9.89
+   315.0    0.00   -0.14   -0.50   -1.02   -1.67   -2.40   -3.18   -3.98   -4.73   -5.29   -5.54   -5.39   -4.81   -3.84   -2.45   -0.54    2.11    5.73   10.21
+   320.0    0.00   -0.13   -0.48   -1.00   -1.63   -2.36   -3.16   -3.99   -4.76   -5.33   -5.58   -5.40   -4.80   -3.81   -2.43   -0.53    2.15    5.86   10.49
+   325.0    0.00   -0.13   -0.47   -0.97   -1.60   -2.33   -3.15   -4.00   -4.79   -5.38   -5.62   -5.43   -4.81   -3.80   -2.42   -0.52    2.19    5.97   10.72
+   330.0    0.00   -0.12   -0.45   -0.94   -1.56   -2.30   -3.13   -4.00   -4.82   -5.43   -5.67   -5.47   -4.83   -3.81   -2.41   -0.49    2.23    6.06   10.87
+   335.0    0.00   -0.12   -0.43   -0.92   -1.53   -2.27   -3.11   -4.01   -4.85   -5.47   -5.72   -5.52   -4.87   -3.83   -2.41   -0.47    2.28    6.12   10.93
+   340.0    0.00   -0.11   -0.42   -0.89   -1.51   -2.25   -3.10   -4.01   -4.86   -5.50   -5.77   -5.58   -4.93   -3.88   -2.43   -0.46    2.31    6.15   10.91
+   345.0    0.00   -0.10   -0.41   -0.88   -1.49   -2.23   -3.09   -4.01   -4.88   -5.53   -5.82   -5.65   -5.01   -3.94   -2.47   -0.46    2.34    6.15   10.82
+   350.0    0.00   -0.10   -0.40   -0.86   -1.47   -2.22   -3.08   -4.01   -4.88   -5.55   -5.86   -5.72   -5.09   -4.03   -2.53   -0.48    2.35    6.14   10.71
+   355.0    0.00   -0.09   -0.39   -0.85   -1.46   -2.21   -3.08   -4.00   -4.88   -5.56   -5.90   -5.78   -5.19   -4.13   -2.60   -0.50    2.35    6.11   10.59
+   360.0    0.00   -0.09   -0.38   -0.84   -1.46   -2.21   -3.08   -4.00   -4.87   -5.56   -5.92   -5.84   -5.28   -4.23   -2.68   -0.55    2.34    6.08   10.51
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH701975.01A   NONE                                        TYPE / SERIAL NO    
+CONVERTED           NGS/TUM                  0    16-APR-03 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+     -1.50     -4.56     37.64                              NORTH / EAST / UP   
+   NOAZI    0.00    0.76    1.08    1.13    0.92    0.41   -0.15   -0.69   -1.07   -1.20   -1.14   -0.86   -0.37    0.46    1.60    3.27    5.49
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -1.80     -3.82     54.26                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.43   -0.72   -0.90   -1.02   -1.12   -1.13   -1.31   -1.55   -1.63   -1.55   -1.43   -1.18   -0.75   -0.43   -0.11    0.36
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH701975.01AGP NONE                                        TYPE / SERIAL NO    
+CONVERTED           NGS/TUM                  0    16-APR-03 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+     -1.40     -3.76     37.24                              NORTH / EAST / UP   
+   NOAZI    0.00    3.26    6.18    8.53   10.22   11.41   12.05   12.31   12.23   12.00   11.56   11.34   11.13   11.36   12.00   13.77   16.69
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -2.10     -3.32     38.16                              NORTH / EAST / UP   
+   NOAZI    0.00   -1.83   -3.42   -4.90   -6.32   -7.52   -8.83   -9.81  -10.75  -11.23  -11.35  -10.93   -9.88   -8.25   -6.03   -3.01    1.06
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+JAV_GRANT-G3T   NONE                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               5    17-AUG-10 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+      0.56      1.16     50.28                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.07   -0.23   -0.41   -0.49   -0.42   -0.19    0.10    0.27    0.18   -0.24   -0.88   -1.48   -1.69   -1.23   -0.13    1.22    2.10    1.69
+     0.0    0.00   -0.10   -0.29   -0.47   -0.56   -0.51   -0.33   -0.12    0.01   -0.06   -0.34   -0.70   -0.88   -0.54    0.51    2.19    4.00    5.07    4.44
+     5.0    0.00   -0.10   -0.29   -0.46   -0.55   -0.48   -0.29   -0.07    0.06    0.00   -0.28   -0.62   -0.77   -0.39    0.75    2.55    4.48    5.64    4.97
+    10.0    0.00   -0.10   -0.28   -0.46   -0.53   -0.46   -0.26   -0.03    0.10    0.04   -0.24   -0.60   -0.75   -0.35    0.85    2.75    4.83    6.10    5.43
+    15.0    0.00   -0.10   -0.28   -0.45   -0.52   -0.45   -0.24   -0.01    0.13    0.06   -0.24   -0.63   -0.81   -0.42    0.79    2.78    4.99    6.39    5.75
+    20.0    0.00   -0.11   -0.29   -0.45   -0.52   -0.44   -0.23    0.01    0.15    0.07   -0.26   -0.70   -0.95   -0.62    0.59    2.62    4.93    6.46    5.89
+    25.0    0.00   -0.11   -0.29   -0.45   -0.51   -0.43   -0.22    0.03    0.17    0.07   -0.29   -0.80   -1.14   -0.90    0.24    2.27    4.65    6.30    5.82
+    30.0    0.00   -0.11   -0.29   -0.45   -0.52   -0.43   -0.21    0.04    0.18    0.07   -0.34   -0.92   -1.36   -1.24   -0.20    1.78    4.17    5.90    5.53
+    35.0    0.00   -0.11   -0.29   -0.45   -0.52   -0.43   -0.21    0.04    0.19    0.07   -0.37   -1.03   -1.58   -1.59   -0.69    1.18    3.53    5.29    5.04
+    40.0    0.00   -0.11   -0.29   -0.46   -0.53   -0.44   -0.22    0.05    0.20    0.07   -0.40   -1.11   -1.77   -1.91   -1.17    0.55    2.79    4.53    4.38
+    45.0    0.00   -0.11   -0.29   -0.46   -0.53   -0.45   -0.22    0.05    0.21    0.08   -0.41   -1.17   -1.90   -2.17   -1.59   -0.06    2.02    3.69    3.63
+    50.0    0.00   -0.11   -0.30   -0.47   -0.54   -0.46   -0.22    0.06    0.22    0.10   -0.40   -1.18   -1.97   -2.34   -1.92   -0.58    1.31    2.86    2.84
+    55.0    0.00   -0.11   -0.30   -0.48   -0.55   -0.47   -0.23    0.06    0.23    0.12   -0.37   -1.15   -1.97   -2.41   -2.11   -0.96    0.72    2.11    2.11
+    60.0    0.00   -0.11   -0.30   -0.48   -0.56   -0.48   -0.24    0.06    0.24    0.14   -0.33   -1.09   -1.90   -2.38   -2.17   -1.18    0.29    1.51    1.49
+    65.0    0.00   -0.11   -0.31   -0.49   -0.57   -0.49   -0.25    0.05    0.25    0.16   -0.28   -1.01   -1.79   -2.26   -2.10   -1.24    0.05    1.10    1.04
+    70.0    0.00   -0.11   -0.31   -0.50   -0.59   -0.50   -0.26    0.05    0.25    0.18   -0.23   -0.93   -1.65   -2.08   -1.93   -1.14    0.01    0.91    0.77
+    75.0    0.00   -0.11   -0.31   -0.51   -0.60   -0.52   -0.27    0.04    0.24    0.19   -0.20   -0.85   -1.52   -1.89   -1.71   -0.94    0.12    0.90    0.68
+    80.0    0.00   -0.11   -0.32   -0.52   -0.61   -0.53   -0.28    0.03    0.24    0.19   -0.18   -0.79   -1.40   -1.71   -1.47   -0.68    0.35    1.04    0.74
+    85.0    0.00   -0.11   -0.32   -0.52   -0.63   -0.55   -0.30    0.01    0.22    0.18   -0.19   -0.77   -1.34   -1.58   -1.27   -0.43    0.62    1.27    0.88
+    90.0    0.00   -0.11   -0.32   -0.53   -0.64   -0.57   -0.32   -0.01    0.20    0.16   -0.21   -0.79   -1.34   -1.53   -1.15   -0.23    0.85    1.50    1.04
+    95.0    0.00   -0.11   -0.32   -0.54   -0.65   -0.58   -0.34   -0.03    0.18    0.13   -0.25   -0.85   -1.39   -1.57   -1.14   -0.15    1.00    1.66    1.13
+   100.0    0.00   -0.11   -0.32   -0.54   -0.66   -0.60   -0.36   -0.04    0.16    0.10   -0.30   -0.93   -1.51   -1.69   -1.25   -0.21    1.00    1.69    1.09
+   105.0    0.00   -0.11   -0.32   -0.55   -0.67   -0.62   -0.38   -0.06    0.15    0.08   -0.36   -1.03   -1.67   -1.90   -1.47   -0.41    0.84    1.54    0.87
+   110.0    0.00   -0.10   -0.32   -0.55   -0.68   -0.63   -0.39   -0.07    0.14    0.06   -0.40   -1.13   -1.85   -2.16   -1.78   -0.75    0.51    1.20    0.47
+   115.0    0.00   -0.10   -0.31   -0.55   -0.68   -0.63   -0.39   -0.07    0.15    0.06   -0.43   -1.22   -2.02   -2.43   -2.15   -1.18    0.04    0.70   -0.09
+   120.0    0.00   -0.10   -0.31   -0.54   -0.68   -0.63   -0.39   -0.05    0.18    0.09   -0.42   -1.27   -2.16   -2.68   -2.52   -1.65   -0.51    0.09   -0.78
+   125.0    0.00   -0.09   -0.30   -0.53   -0.67   -0.62   -0.37   -0.02    0.22    0.14   -0.38   -1.28   -2.24   -2.88   -2.84   -2.10   -1.08   -0.57   -1.50
+   130.0    0.00   -0.09   -0.29   -0.52   -0.65   -0.59   -0.33    0.03    0.29    0.22   -0.31   -1.23   -2.26   -2.98   -3.07   -2.47   -1.58   -1.18   -2.16
+   135.0    0.00   -0.08   -0.28   -0.51   -0.63   -0.56   -0.28    0.10    0.38    0.33   -0.19   -1.12   -2.18   -2.98   -3.17   -2.70   -1.95   -1.65   -2.67
+   140.0    0.00   -0.08   -0.27   -0.49   -0.60   -0.51   -0.21    0.20    0.50    0.47   -0.03   -0.95   -2.03   -2.86   -3.12   -2.75   -2.12   -1.92   -2.94
+   145.0    0.00   -0.07   -0.26   -0.46   -0.56   -0.45   -0.12    0.31    0.64    0.63    0.16   -0.74   -1.80   -2.63   -2.91   -2.60   -2.05   -1.93   -2.93
+   150.0    0.00   -0.07   -0.25   -0.44   -0.52   -0.38   -0.03    0.43    0.79    0.82    0.37   -0.49   -1.50   -2.29   -2.55   -2.26   -1.75   -1.66   -2.59
+   155.0    0.00   -0.06   -0.23   -0.41   -0.47   -0.31    0.07    0.57    0.95    1.01    0.60   -0.21   -1.16   -1.88   -2.07   -1.74   -1.23   -1.13   -1.97
+   160.0    0.00   -0.06   -0.22   -0.39   -0.43   -0.24    0.18    0.70    1.12    1.20    0.83    0.07   -0.80   -1.42   -1.52   -1.10   -0.53   -0.38   -1.10
+   165.0    0.00   -0.05   -0.21   -0.36   -0.38   -0.17    0.27    0.83    1.27    1.39    1.05    0.34   -0.45   -0.96   -0.93   -0.40    0.28    0.52   -0.07
+   170.0    0.00   -0.05   -0.19   -0.34   -0.35   -0.11    0.36    0.94    1.41    1.55    1.24    0.59   -0.13   -0.53   -0.37    0.31    1.11    1.47    1.02
+   175.0    0.00   -0.04   -0.18   -0.32   -0.31   -0.06    0.43    1.03    1.52    1.68    1.40    0.79    0.14   -0.16    0.13    0.95    1.89    2.38    2.03
+   180.0    0.00   -0.03   -0.17   -0.30   -0.29   -0.03    0.47    1.09    1.60    1.78    1.52    0.94    0.34    0.12    0.51    1.46    2.54    3.15    2.88
+   185.0    0.00   -0.03   -0.16   -0.28   -0.27   -0.01    0.50    1.12    1.64    1.83    1.58    1.02    0.46    0.28    0.76    1.81    3.01    3.71    3.48
+   190.0    0.00   -0.02   -0.15   -0.27   -0.26    0.00    0.50    1.12    1.64    1.83    1.59    1.03    0.48    0.33    0.85    1.97    3.25    4.01    3.76
+   195.0    0.00   -0.02   -0.14   -0.26   -0.25   -0.01    0.47    1.08    1.59    1.78    1.54    0.98    0.41    0.26    0.78    1.93    3.25    4.03    3.72
+   200.0    0.00   -0.02   -0.13   -0.25   -0.26   -0.03    0.43    1.02    1.51    1.69    1.43    0.85    0.26    0.07    0.56    1.70    3.02    3.79    3.36
+   205.0    0.00   -0.01   -0.12   -0.25   -0.26   -0.06    0.38    0.94    1.40    1.55    1.28    0.67    0.03   -0.21    0.22    1.32    2.60    3.32    2.75
+   210.0    0.00   -0.01   -0.12   -0.24   -0.27   -0.08    0.32    0.84    1.27    1.39    1.08    0.43   -0.26   -0.57   -0.21    0.82    2.04    2.68    1.95
+   215.0    0.00   -0.01   -0.11   -0.24   -0.27   -0.11    0.26    0.73    1.12    1.20    0.85    0.16   -0.59   -0.97   -0.69    0.25    1.40    1.95    1.07
+   220.0    0.00    0.00   -0.11   -0.23   -0.27   -0.13    0.20    0.63    0.96    0.99    0.60   -0.14   -0.93   -1.38   -1.18   -0.32    0.75    1.21    0.18
+   225.0    0.00    0.00   -0.10   -0.23   -0.27   -0.15    0.15    0.53    0.81    0.79    0.34   -0.44   -1.28   -1.78   -1.64   -0.85    0.15    0.54   -0.60
+   230.0    0.00    0.00   -0.10   -0.22   -0.27   -0.16    0.11    0.45    0.67    0.59    0.10   -0.72   -1.59   -2.13   -2.03   -1.30   -0.35   -0.02   -1.23
+   235.0    0.00    0.00   -0.10   -0.22   -0.27   -0.17    0.08    0.37    0.54    0.40   -0.13   -0.98   -1.86   -2.41   -2.33   -1.62   -0.71   -0.40   -1.64
+   240.0    0.00    0.00   -0.10   -0.22   -0.26   -0.17    0.05    0.31    0.42    0.23   -0.34   -1.20   -2.07   -2.60   -2.51   -1.81   -0.91   -0.60   -1.81
+   245.0    0.00    0.00   -0.10   -0.21   -0.26   -0.17    0.03    0.25    0.32    0.09   -0.51   -1.37   -2.21   -2.70   -2.57   -1.84   -0.93   -0.60   -1.76
+   250.0    0.00    0.00   -0.10   -0.21   -0.26   -0.18    0.01    0.20    0.23   -0.04   -0.64   -1.48   -2.28   -2.70   -2.51   -1.74   -0.79   -0.41   -1.49
+   255.0    0.00   -0.01   -0.10   -0.22   -0.26   -0.18   -0.01    0.15    0.15   -0.14   -0.75   -1.55   -2.28   -2.62   -2.35   -1.51   -0.51   -0.08   -1.06
+   260.0    0.00   -0.01   -0.11   -0.23   -0.27   -0.20   -0.05    0.09    0.07   -0.23   -0.82   -1.58   -2.22   -2.47   -2.10   -1.19   -0.13    0.37   -0.52
+   265.0    0.00   -0.01   -0.12   -0.24   -0.29   -0.23   -0.09    0.03   -0.01   -0.32   -0.88   -1.57   -2.13   -2.27   -1.81   -0.82    0.31    0.88    0.09
+   270.0    0.00   -0.02   -0.13   -0.25   -0.31   -0.27   -0.15   -0.05   -0.10   -0.39   -0.92   -1.55   -2.03   -2.07   -1.51   -0.43    0.77    1.41    0.71
+   275.0    0.00   -0.02   -0.14   -0.27   -0.35   -0.32   -0.22   -0.13   -0.19   -0.47   -0.96   -1.53   -1.93   -1.89   -1.24   -0.07    1.21    1.92    1.29
+   280.0    0.00   -0.03   -0.15   -0.30   -0.39   -0.38   -0.30   -0.22   -0.28   -0.54   -1.00   -1.52   -1.86   -1.75   -1.02    0.23    1.59    2.37    1.80
+   285.0    0.00   -0.03   -0.17   -0.33   -0.43   -0.44   -0.38   -0.32   -0.37   -0.62   -1.05   -1.53   -1.83   -1.67   -0.89    0.43    1.88    2.73    2.21
+   290.0    0.00   -0.04   -0.18   -0.35   -0.48   -0.51   -0.46   -0.41   -0.46   -0.69   -1.10   -1.57   -1.85   -1.66   -0.84    0.54    2.05    2.98    2.52
+   295.0    0.00   -0.04   -0.19   -0.38   -0.53   -0.58   -0.54   -0.49   -0.54   -0.76   -1.16   -1.62   -1.91   -1.73   -0.89    0.53    2.11    3.12    2.71
+   300.0    0.00   -0.05   -0.21   -0.41   -0.57   -0.64   -0.61   -0.56   -0.60   -0.81   -1.21   -1.69   -2.00   -1.84   -1.01    0.43    2.07    3.14    2.79
+   305.0    0.00   -0.05   -0.22   -0.44   -0.61   -0.68   -0.66   -0.61   -0.64   -0.85   -1.26   -1.76   -2.11   -2.00   -1.19    0.26    1.94    3.08    2.79
+   310.0    0.00   -0.06   -0.24   -0.46   -0.64   -0.72   -0.70   -0.64   -0.66   -0.86   -1.29   -1.82   -2.22   -2.15   -1.38    0.07    1.77    2.94    2.71
+   315.0    0.00   -0.06   -0.25   -0.48   -0.66   -0.74   -0.72   -0.65   -0.65   -0.85   -1.29   -1.86   -2.30   -2.28   -1.55   -0.12    1.58    2.78    2.60
+   320.0    0.00   -0.07   -0.26   -0.49   -0.67   -0.75   -0.71   -0.63   -0.62   -0.82   -1.26   -1.85   -2.33   -2.35   -1.66   -0.26    1.43    2.64    2.49
+   325.0    0.00   -0.07   -0.27   -0.50   -0.68   -0.74   -0.69   -0.59   -0.57   -0.76   -1.20   -1.80   -2.29   -2.34   -1.68   -0.31    1.36    2.55    2.40
+   330.0    0.00   -0.08   -0.27   -0.50   -0.67   -0.72   -0.65   -0.53   -0.49   -0.67   -1.11   -1.70   -2.19   -2.24   -1.58   -0.24    1.39    2.55    2.39
+   335.0    0.00   -0.08   -0.28   -0.50   -0.66   -0.70   -0.60   -0.46   -0.41   -0.57   -0.99   -1.56   -2.02   -2.05   -1.38   -0.03    1.57    2.67    2.47
+   340.0    0.00   -0.09   -0.28   -0.50   -0.65   -0.66   -0.55   -0.39   -0.32   -0.46   -0.85   -1.38   -1.80   -1.77   -1.06    0.30    1.88    2.94    2.66
+   345.0    0.00   -0.09   -0.28   -0.49   -0.63   -0.62   -0.49   -0.31   -0.23   -0.34   -0.70   -1.19   -1.55   -1.45   -0.68    0.73    2.32    3.34    2.97
+   350.0    0.00   -0.09   -0.28   -0.49   -0.60   -0.58   -0.43   -0.24   -0.14   -0.24   -0.56   -1.00   -1.29   -1.11   -0.25    1.22    2.86    3.86    3.40
+   355.0    0.00   -0.10   -0.29   -0.48   -0.58   -0.54   -0.38   -0.17   -0.06   -0.14   -0.44   -0.83   -1.06   -0.80    0.16    1.73    3.43    4.46    3.90
+   360.0    0.00   -0.10   -0.29   -0.47   -0.56   -0.51   -0.33   -0.12    0.01   -0.06   -0.34   -0.70   -0.88   -0.54    0.51    2.19    4.00    5.07    4.44
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -3.10     -1.38     46.83                              NORTH / EAST / UP   
+   NOAZI    0.00    0.01    0.00   -0.06   -0.25   -0.58   -1.01   -1.38   -1.47   -1.05   -0.09    1.21    2.39    2.84    2.14    0.40   -1.60   -2.42   -0.58
+     0.0    0.00   -0.39   -0.69   -0.93   -1.13   -1.30   -1.36   -1.19   -0.64    0.37    1.72    3.07    3.91    3.72    2.25   -0.25   -2.85   -4.06   -2.12
+     5.0    0.00   -0.39   -0.69   -0.92   -1.12   -1.27   -1.31   -1.11   -0.52    0.52    1.88    3.20    3.96    3.64    2.04   -0.54   -3.12   -4.18   -1.95
+    10.0    0.00   -0.38   -0.68   -0.92   -1.11   -1.26   -1.29   -1.06   -0.44    0.65    2.04    3.37    4.08    3.67    1.95   -0.74   -3.34   -4.30   -1.86
+    15.0    0.00   -0.38   -0.68   -0.91   -1.10   -1.26   -1.30   -1.07   -0.41    0.72    2.18    3.55    4.28    3.82    2.01   -0.78   -3.45   -4.38   -1.83
+    20.0    0.00   -0.37   -0.67   -0.90   -1.11   -1.29   -1.35   -1.12   -0.45    0.73    2.27    3.74    4.52    4.09    2.23   -0.64   -3.39   -4.36   -1.80
+    25.0    0.00   -0.36   -0.65   -0.89   -1.11   -1.32   -1.42   -1.23   -0.56    0.67    2.30    3.88    4.79    4.43    2.60   -0.31   -3.12   -4.17   -1.75
+    30.0    0.00   -0.35   -0.63   -0.87   -1.11   -1.36   -1.51   -1.37   -0.72    0.52    2.23    3.95    5.03    4.82    3.08    0.21   -2.64   -3.80   -1.62
+    35.0    0.00   -0.34   -0.61   -0.85   -1.11   -1.40   -1.61   -1.54   -0.95    0.29    2.07    3.93    5.19    5.20    3.63    0.87   -1.96   -3.24   -1.41
+    40.0    0.00   -0.32   -0.58   -0.83   -1.10   -1.43   -1.70   -1.72   -1.21   -0.02    1.79    3.77    5.25    5.50    4.18    1.62   -1.13   -2.49   -1.07
+    45.0    0.00   -0.30   -0.55   -0.79   -1.08   -1.44   -1.79   -1.90   -1.51   -0.39    1.41    3.49    5.16    5.68    4.67    2.37   -0.20   -1.61   -0.62
+    50.0    0.00   -0.28   -0.52   -0.75   -1.04   -1.43   -1.85   -2.08   -1.81   -0.81    0.94    3.07    4.90    5.71    5.03    3.06    0.72   -0.66   -0.05
+    55.0    0.00   -0.26   -0.48   -0.70   -0.99   -1.41   -1.89   -2.23   -2.11   -1.25    0.40    2.53    4.49    5.55    5.21    3.61    1.57    0.29    0.61
+    60.0    0.00   -0.24   -0.44   -0.64   -0.92   -1.36   -1.89   -2.34   -2.38   -1.69   -0.18    1.91    3.95    5.21    5.18    3.95    2.25    1.17    1.34
+    65.0    0.00   -0.21   -0.39   -0.57   -0.85   -1.29   -1.87   -2.42   -2.61   -2.11   -0.75    1.24    3.29    4.70    4.93    4.04    2.71    1.90    2.09
+    70.0    0.00   -0.18   -0.34   -0.50   -0.76   -1.20   -1.82   -2.47   -2.80   -2.48   -1.30    0.56    2.58    4.06    4.48    3.87    2.89    2.42    2.81
+    75.0    0.00   -0.15   -0.29   -0.42   -0.66   -1.10   -1.76   -2.48   -2.94   -2.79   -1.79   -0.07    1.86    3.34    3.86    3.47    2.79    2.71    3.48
+    80.0    0.00   -0.12   -0.23   -0.35   -0.57   -1.00   -1.68   -2.46   -3.04   -3.03   -2.20   -0.64    1.18    2.59    3.13    2.85    2.43    2.75    4.03
+    85.0    0.00   -0.09   -0.17   -0.27   -0.47   -0.90   -1.59   -2.42   -3.09   -3.20   -2.51   -1.10    0.58    1.87    2.34    2.09    1.84    2.54    4.43
+    90.0    0.00   -0.06   -0.11   -0.19   -0.38   -0.80   -1.50   -2.37   -3.10   -3.29   -2.72   -1.44    0.08    1.22    1.55    1.24    1.09    2.12    4.65
+    95.0    0.00   -0.03   -0.05   -0.11   -0.29   -0.71   -1.42   -2.31   -3.07   -3.33   -2.84   -1.68   -0.30    0.66    0.82    0.39    0.25    1.54    4.67
+   100.0    0.00    0.01    0.00   -0.04   -0.21   -0.63   -1.35   -2.25   -3.03   -3.31   -2.87   -1.80   -0.57    0.22    0.19   -0.41   -0.61    0.83    4.47
+   105.0    0.00    0.04    0.06    0.04   -0.13   -0.56   -1.29   -2.19   -2.96   -3.25   -2.85   -1.85   -0.73   -0.10   -0.33   -1.12   -1.43    0.06    4.06
+   110.0    0.00    0.08    0.12    0.11   -0.07   -0.50   -1.23   -2.12   -2.88   -3.17   -2.77   -1.82   -0.81   -0.33   -0.73   -1.70   -2.17   -0.74    3.44
+   115.0    0.00    0.11    0.18    0.17    0.00   -0.44   -1.17   -2.05   -2.79   -3.05   -2.66   -1.76   -0.83   -0.47   -1.01   -2.15   -2.80   -1.52    2.64
+   120.0    0.00    0.14    0.24    0.24    0.06   -0.39   -1.11   -1.97   -2.68   -2.92   -2.54   -1.68   -0.82   -0.55   -1.20   -2.48   -3.32   -2.28    1.69
+   125.0    0.00    0.17    0.30    0.31    0.13   -0.33   -1.04   -1.88   -2.55   -2.78   -2.40   -1.59   -0.79   -0.60   -1.32   -2.70   -3.72   -2.98    0.65
+   130.0    0.00    0.21    0.35    0.38    0.19   -0.26   -0.96   -1.77   -2.41   -2.61   -2.26   -1.49   -0.76   -0.62   -1.39   -2.83   -4.03   -3.62   -0.43
+   135.0    0.00    0.24    0.41    0.44    0.26   -0.19   -0.87   -1.64   -2.24   -2.43   -2.09   -1.39   -0.72   -0.63   -1.42   -2.92   -4.27   -4.19   -1.49
+   140.0    0.00    0.27    0.46    0.51    0.34   -0.10   -0.76   -1.49   -2.05   -2.22   -1.91   -1.26   -0.66   -0.61   -1.42   -2.95   -4.44   -4.68   -2.47
+   145.0    0.00    0.29    0.51    0.58    0.42    0.00   -0.63   -1.32   -1.84   -1.98   -1.69   -1.09   -0.56   -0.56   -1.39   -2.94   -4.55   -5.08   -3.30
+   150.0    0.00    0.32    0.56    0.65    0.50    0.10   -0.49   -1.13   -1.60   -1.72   -1.43   -0.87   -0.40   -0.44   -1.30   -2.88   -4.59   -5.35   -3.91
+   155.0    0.00    0.34    0.61    0.72    0.59    0.21   -0.34   -0.93   -1.34   -1.42   -1.12   -0.59   -0.17   -0.25   -1.13   -2.75   -4.54   -5.47   -4.27
+   160.0    0.00    0.36    0.66    0.78    0.68    0.33   -0.19   -0.72   -1.07   -1.09   -0.77   -0.24    0.16    0.05   -0.86   -2.51   -4.37   -5.41   -4.33
+   165.0    0.00    0.38    0.70    0.85    0.76    0.44   -0.03   -0.50   -0.79   -0.75   -0.37    0.18    0.58    0.46   -0.47   -2.15   -4.05   -5.14   -4.08
+   170.0    0.00    0.40    0.73    0.91    0.85    0.56    0.12   -0.29   -0.51   -0.39    0.05    0.66    1.09    0.97    0.03   -1.66   -3.56   -4.64   -3.50
+   175.0    0.00    0.41    0.76    0.96    0.92    0.66    0.27   -0.09   -0.23   -0.04    0.49    1.17    1.66    1.57    0.65   -1.03   -2.91   -3.91   -2.64
+   180.0    0.00    0.42    0.79    1.00    0.99    0.76    0.41    0.10    0.02    0.30    0.93    1.70    2.27    2.24    1.36   -0.28   -2.09   -2.98   -1.52
+   185.0    0.00    0.43    0.81    1.04    1.05    0.85    0.53    0.27    0.26    0.62    1.33    2.20    2.87    2.93    2.12    0.56   -1.15   -1.89   -0.21
+   190.0    0.00    0.43    0.82    1.06    1.10    0.92    0.63    0.41    0.45    0.88    1.69    2.66    3.42    3.59    2.88    1.43   -0.15   -0.70    1.22
+   195.0    0.00    0.43    0.82    1.08    1.12    0.97    0.71    0.52    0.61    1.10    1.97    3.03    3.90    4.17    3.59    2.27    0.86    0.50    2.67
+   200.0    0.00    0.42    0.82    1.08    1.14    1.00    0.76    0.60    0.71    1.24    2.17    3.30    4.26    4.64    4.18    3.01    1.77    1.64    4.05
+   205.0    0.00    0.41    0.80    1.06    1.13    1.00    0.78    0.63    0.76    1.31    2.27    3.45    4.48    4.96    4.62    3.59    2.52    2.61    5.28
+   210.0    0.00    0.40    0.78    1.03    1.10    0.98    0.77    0.62    0.75    1.29    2.26    3.46    4.55    5.11    4.87    3.95    3.04    3.34    6.29
+   215.0    0.00    0.39    0.75    0.99    1.05    0.93    0.71    0.56    0.67    1.19    2.14    3.35    4.47    5.08    4.90    4.06    3.27    3.76    6.99
+   220.0    0.00    0.37    0.70    0.93    0.98    0.85    0.63    0.46    0.53    1.00    1.91    3.11    4.24    4.87    4.73    3.92    3.19    3.83    7.36
+   225.0    0.00    0.34    0.66    0.86    0.89    0.75    0.50    0.30    0.32    0.74    1.60    2.76    3.88    4.52    4.37    3.54    2.80    3.55    7.36
+   230.0    0.00    0.32    0.60    0.77    0.78    0.61    0.34    0.09    0.05    0.40    1.20    2.32    3.42    4.05    3.85    2.95    2.14    2.92    7.00
+   235.0    0.00    0.29    0.53    0.67    0.65    0.46    0.15   -0.15   -0.26    0.00    0.73    1.81    2.90    3.49    3.23    2.20    1.26    2.00    6.29
+   240.0    0.00    0.25    0.47    0.57    0.51    0.28   -0.07   -0.43   -0.61   -0.43    0.23    1.27    2.33    2.90    2.54    1.35    0.22    0.85    5.27
+   245.0    0.00    0.22    0.39    0.45    0.36    0.09   -0.30   -0.72   -0.99   -0.88   -0.29    0.72    1.77    2.31    1.86    0.48   -0.90   -0.46    3.99
+   250.0    0.00    0.18    0.31    0.33    0.19   -0.11   -0.55   -1.03   -1.36   -1.33   -0.79    0.19    1.24    1.75    1.22   -0.36   -2.02   -1.84    2.53
+   255.0    0.00    0.15    0.23    0.21    0.03   -0.31   -0.79   -1.32   -1.72   -1.76   -1.26   -0.29    0.76    1.27    0.66   -1.11   -3.08   -3.23    0.94
+   260.0    0.00    0.11    0.15    0.08   -0.14   -0.51   -1.03   -1.60   -2.05   -2.13   -1.67   -0.70    0.38    0.89    0.21   -1.75   -4.02   -4.54   -0.69
+   265.0    0.00    0.07    0.07   -0.05   -0.30   -0.71   -1.25   -1.85   -2.33   -2.44   -1.99   -1.00    0.10    0.63   -0.11   -2.23   -4.80   -5.73   -2.30
+   270.0    0.00    0.03   -0.01   -0.17   -0.46   -0.89   -1.45   -2.07   -2.56   -2.67   -2.20   -1.19   -0.04    0.50   -0.28   -2.54   -5.40   -6.75   -3.82
+   275.0    0.00   -0.01   -0.09   -0.29   -0.60   -1.06   -1.63   -2.25   -2.72   -2.81   -2.31   -1.25   -0.06    0.51   -0.30   -2.70   -5.82   -7.57   -5.20
+   280.0    0.00   -0.05   -0.17   -0.40   -0.74   -1.21   -1.78   -2.38   -2.82   -2.86   -2.29   -1.17    0.07    0.65   -0.19   -2.71   -6.06   -8.20   -6.38
+   285.0    0.00   -0.08   -0.24   -0.50   -0.87   -1.35   -1.91   -2.48   -2.86   -2.82   -2.16   -0.97    0.32    0.92    0.04   -2.58   -6.13   -8.61   -7.33
+   290.0    0.00   -0.12   -0.31   -0.59   -0.98   -1.46   -2.01   -2.53   -2.84   -2.70   -1.94   -0.65    0.70    1.30    0.38   -2.33   -6.05   -8.83   -8.03
+   295.0    0.00   -0.15   -0.37   -0.68   -1.07   -1.56   -2.09   -2.56   -2.78   -2.52   -1.63   -0.24    1.16    1.77    0.81   -1.99   -5.84   -8.85   -8.46
+   300.0    0.00   -0.18   -0.43   -0.75   -1.15   -1.63   -2.14   -2.55   -2.68   -2.29   -1.27    0.23    1.69    2.29    1.28   -1.58   -5.52   -8.70   -8.62
+   305.0    0.00   -0.21   -0.48   -0.81   -1.22   -1.69   -2.17   -2.52   -2.55   -2.03   -0.88    0.73    2.24    2.84    1.78   -1.12   -5.12   -8.39   -8.54
+   310.0    0.00   -0.24   -0.52   -0.86   -1.26   -1.72   -2.17   -2.47   -2.40   -1.77   -0.49    1.22    2.77    3.36    2.28   -0.66   -4.66   -7.95   -8.22
+   315.0    0.00   -0.27   -0.56   -0.90   -1.29   -1.74   -2.15   -2.40   -2.25   -1.50   -0.12    1.67    3.25    3.83    2.72   -0.20   -4.16   -7.41   -7.72
+   320.0    0.00   -0.29   -0.60   -0.93   -1.31   -1.73   -2.11   -2.31   -2.08   -1.25    0.22    2.05    3.65    4.21    3.09    0.20   -3.67   -6.81   -7.07
+   325.0    0.00   -0.31   -0.62   -0.95   -1.31   -1.70   -2.05   -2.20   -1.91   -1.01    0.51    2.36    3.94    4.47    3.35    0.53   -3.20   -6.18   -6.33
+   330.0    0.00   -0.33   -0.65   -0.96   -1.30   -1.66   -1.97   -2.07   -1.73   -0.79    0.75    2.59    4.12    4.61    3.49    0.75   -2.81   -5.57   -5.53
+   335.0    0.00   -0.35   -0.66   -0.96   -1.28   -1.60   -1.87   -1.93   -1.55   -0.58    0.95    2.74    4.20    4.62    3.49    0.85   -2.51   -5.02   -4.74
+   340.0    0.00   -0.36   -0.68   -0.96   -1.25   -1.54   -1.76   -1.77   -1.36   -0.38    1.12    2.83    4.18    4.52    3.37    0.82   -2.34   -4.57   -4.00
+   345.0    0.00   -0.37   -0.68   -0.96   -1.22   -1.47   -1.65   -1.61   -1.17   -0.19    1.26    2.88    4.11    4.34    3.15    0.66   -2.30   -4.25   -3.35
+   350.0    0.00   -0.38   -0.69   -0.95   -1.18   -1.40   -1.54   -1.45   -0.98    0.00    1.41    2.93    4.02    4.11    2.85    0.40   -2.39   -4.06   -2.81
+   355.0    0.00   -0.38   -0.69   -0.94   -1.16   -1.34   -1.44   -1.31   -0.80    0.19    1.56    2.98    3.94    3.89    2.54    0.08   -2.59   -4.00   -2.40
+   360.0    0.00   -0.39   -0.69   -0.93   -1.13   -1.30   -1.36   -1.19   -0.64    0.37    1.72    3.07    3.91    3.72    2.25   -0.25   -2.85   -4.06   -2.12
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+JAV_RINGANT_G3T NONE                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               5    17-AUG-10 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+      0.25      2.24     49.04                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.14   -0.55   -1.12   -1.77   -2.44   -3.11   -3.77   -4.38   -4.84   -4.99   -4.70   -3.92   -2.73   -1.25    0.40    2.29    4.63    7.72
+     0.0    0.00   -0.13   -0.52   -1.09   -1.72   -2.36   -3.00   -3.64   -4.25   -4.74   -4.94   -4.71   -3.98   -2.82   -1.35    0.28    2.12    4.35    7.17
+     5.0    0.00   -0.13   -0.53   -1.09   -1.73   -2.37   -3.01   -3.64   -4.24   -4.73   -4.93   -4.70   -3.99   -2.83   -1.37    0.28    2.13    4.37    7.23
+    10.0    0.00   -0.14   -0.53   -1.10   -1.74   -2.38   -3.01   -3.64   -4.24   -4.72   -4.92   -4.70   -3.99   -2.84   -1.39    0.26    2.12    4.39    7.31
+    15.0    0.00   -0.14   -0.54   -1.11   -1.75   -2.39   -3.03   -3.65   -4.25   -4.71   -4.91   -4.69   -3.99   -2.85   -1.41    0.22    2.09    4.40    7.41
+    20.0    0.00   -0.14   -0.54   -1.12   -1.76   -2.41   -3.04   -3.67   -4.25   -4.71   -4.90   -4.68   -3.98   -2.87   -1.45    0.18    2.05    4.40    7.49
+    25.0    0.00   -0.14   -0.55   -1.12   -1.77   -2.42   -3.06   -3.69   -4.27   -4.72   -4.90   -4.67   -3.98   -2.88   -1.47    0.14    2.02    4.39    7.56
+    30.0    0.00   -0.15   -0.55   -1.13   -1.78   -2.44   -3.09   -3.71   -4.29   -4.73   -4.90   -4.67   -3.98   -2.88   -1.49    0.11    1.98    4.36    7.59
+    35.0    0.00   -0.15   -0.56   -1.14   -1.80   -2.46   -3.11   -3.74   -4.32   -4.75   -4.91   -4.67   -3.98   -2.88   -1.49    0.10    1.96    4.34    7.58
+    40.0    0.00   -0.15   -0.56   -1.15   -1.81   -2.48   -3.14   -3.77   -4.34   -4.77   -4.93   -4.68   -3.98   -2.87   -1.48    0.12    1.96    4.32    7.54
+    45.0    0.00   -0.15   -0.57   -1.15   -1.82   -2.50   -3.16   -3.80   -4.37   -4.80   -4.94   -4.69   -3.97   -2.85   -1.44    0.15    1.99    4.30    7.47
+    50.0    0.00   -0.16   -0.57   -1.16   -1.83   -2.51   -3.18   -3.82   -4.40   -4.82   -4.96   -4.70   -3.96   -2.82   -1.39    0.22    2.04    4.31    7.40
+    55.0    0.00   -0.16   -0.57   -1.17   -1.84   -2.52   -3.20   -3.84   -4.42   -4.84   -4.98   -4.70   -3.95   -2.79   -1.33    0.30    2.11    4.33    7.33
+    60.0    0.00   -0.16   -0.58   -1.17   -1.85   -2.53   -3.21   -3.85   -4.43   -4.86   -4.99   -4.71   -3.94   -2.75   -1.26    0.39    2.20    4.38    7.29
+    65.0    0.00   -0.16   -0.58   -1.17   -1.85   -2.54   -3.21   -3.85   -4.44   -4.86   -5.00   -4.71   -3.92   -2.70   -1.18    0.49    2.31    4.45    7.30
+    70.0    0.00   -0.16   -0.58   -1.18   -1.85   -2.54   -3.21   -3.85   -4.43   -4.86   -5.00   -4.70   -3.90   -2.66   -1.12    0.58    2.41    4.54    7.34
+    75.0    0.00   -0.16   -0.58   -1.18   -1.85   -2.54   -3.21   -3.85   -4.43   -4.85   -4.99   -4.68   -3.88   -2.62   -1.06    0.66    2.51    4.65    7.44
+    80.0    0.00   -0.16   -0.59   -1.18   -1.85   -2.53   -3.20   -3.84   -4.41   -4.84   -4.97   -4.66   -3.86   -2.59   -1.02    0.72    2.59    4.76    7.57
+    85.0    0.00   -0.17   -0.59   -1.18   -1.85   -2.53   -3.19   -3.82   -4.39   -4.82   -4.94   -4.64   -3.83   -2.57   -0.99    0.76    2.66    4.87    7.72
+    90.0    0.00   -0.17   -0.59   -1.18   -1.85   -2.53   -3.18   -3.81   -4.38   -4.79   -4.92   -4.62   -3.81   -2.55   -0.98    0.78    2.70    4.95    7.86
+    95.0    0.00   -0.17   -0.59   -1.18   -1.85   -2.52   -3.17   -3.80   -4.36   -4.77   -4.90   -4.59   -3.79   -2.55   -0.98    0.77    2.71    5.01    7.98
+   100.0    0.00   -0.17   -0.59   -1.18   -1.85   -2.52   -3.17   -3.79   -4.35   -4.76   -4.87   -4.57   -3.78   -2.54   -1.00    0.74    2.69    5.04    8.06
+   105.0    0.00   -0.17   -0.59   -1.18   -1.84   -2.51   -3.16   -3.78   -4.34   -4.74   -4.86   -4.55   -3.77   -2.55   -1.02    0.70    2.65    5.02    8.08
+   110.0    0.00   -0.17   -0.59   -1.18   -1.84   -2.51   -3.16   -3.78   -4.34   -4.74   -4.85   -4.54   -3.76   -2.56   -1.05    0.65    2.60    4.98    8.03
+   115.0    0.00   -0.17   -0.59   -1.18   -1.84   -2.51   -3.16   -3.78   -4.34   -4.74   -4.85   -4.54   -3.76   -2.57   -1.09    0.60    2.52    4.89    7.92
+   120.0    0.00   -0.17   -0.59   -1.18   -1.84   -2.51   -3.16   -3.79   -4.35   -4.75   -4.86   -4.54   -3.76   -2.58   -1.12    0.54    2.44    4.79    7.77
+   125.0    0.00   -0.17   -0.59   -1.18   -1.84   -2.51   -3.16   -3.80   -4.36   -4.77   -4.87   -4.55   -3.77   -2.59   -1.14    0.49    2.36    4.67    7.58
+   130.0    0.00   -0.17   -0.59   -1.17   -1.83   -2.51   -3.17   -3.80   -4.38   -4.78   -4.89   -4.56   -3.78   -2.60   -1.17    0.44    2.29    4.55    7.38
+   135.0    0.00   -0.17   -0.59   -1.17   -1.83   -2.50   -3.17   -3.81   -4.39   -4.80   -4.91   -4.58   -3.79   -2.61   -1.19    0.40    2.22    4.44    7.20
+   140.0    0.00   -0.17   -0.59   -1.17   -1.83   -2.50   -3.17   -3.82   -4.41   -4.82   -4.93   -4.60   -3.80   -2.62   -1.21    0.37    2.16    4.35    7.06
+   145.0    0.00   -0.17   -0.59   -1.17   -1.82   -2.50   -3.17   -3.82   -4.42   -4.84   -4.95   -4.61   -3.81   -2.64   -1.22    0.34    2.12    4.29    6.98
+   150.0    0.00   -0.17   -0.58   -1.17   -1.82   -2.49   -3.16   -3.83   -4.43   -4.86   -4.97   -4.63   -3.83   -2.65   -1.23    0.33    2.09    4.26    6.95
+   155.0    0.00   -0.17   -0.58   -1.16   -1.82   -2.49   -3.16   -3.83   -4.43   -4.87   -4.98   -4.65   -3.85   -2.66   -1.24    0.32    2.09    4.27    6.99
+   160.0    0.00   -0.17   -0.58   -1.16   -1.81   -2.48   -3.16   -3.83   -4.44   -4.88   -5.00   -4.67   -3.86   -2.67   -1.25    0.31    2.09    4.30    7.08
+   165.0    0.00   -0.16   -0.58   -1.16   -1.81   -2.48   -3.15   -3.82   -4.44   -4.89   -5.02   -4.69   -3.88   -2.69   -1.26    0.32    2.12    4.36    7.20
+   170.0    0.00   -0.16   -0.58   -1.16   -1.81   -2.48   -3.15   -3.82   -4.45   -4.91   -5.04   -4.71   -3.91   -2.70   -1.26    0.33    2.15    4.43    7.35
+   175.0    0.00   -0.16   -0.58   -1.16   -1.81   -2.47   -3.15   -3.83   -4.45   -4.92   -5.06   -4.74   -3.93   -2.72   -1.26    0.35    2.20    4.51    7.50
+   180.0    0.00   -0.16   -0.58   -1.15   -1.81   -2.48   -3.15   -3.83   -4.46   -4.93   -5.08   -4.77   -3.96   -2.74   -1.27    0.37    2.24    4.59    7.64
+   185.0    0.00   -0.16   -0.57   -1.15   -1.81   -2.48   -3.16   -3.84   -4.47   -4.95   -5.10   -4.80   -3.99   -2.76   -1.27    0.40    2.29    4.66    7.76
+   190.0    0.00   -0.16   -0.57   -1.15   -1.81   -2.48   -3.16   -3.84   -4.48   -4.97   -5.13   -4.83   -4.02   -2.78   -1.27    0.42    2.34    4.73    7.85
+   195.0    0.00   -0.16   -0.57   -1.15   -1.81   -2.49   -3.17   -3.86   -4.50   -4.98   -5.15   -4.86   -4.05   -2.80   -1.27    0.45    2.38    4.78    7.91
+   200.0    0.00   -0.15   -0.57   -1.15   -1.81   -2.50   -3.18   -3.87   -4.51   -5.00   -5.17   -4.88   -4.08   -2.83   -1.27    0.46    2.41    4.81    7.96
+   205.0    0.00   -0.15   -0.56   -1.15   -1.82   -2.50   -3.19   -3.88   -4.52   -5.01   -5.19   -4.90   -4.10   -2.85   -1.28    0.47    2.44    4.84    8.00
+   210.0    0.00   -0.15   -0.56   -1.15   -1.82   -2.51   -3.20   -3.89   -4.53   -5.02   -5.20   -4.92   -4.12   -2.87   -1.29    0.47    2.45    4.86    8.03
+   215.0    0.00   -0.15   -0.56   -1.14   -1.82   -2.51   -3.21   -3.90   -4.54   -5.02   -5.20   -4.93   -4.13   -2.88   -1.31    0.46    2.45    4.88    8.08
+   220.0    0.00   -0.15   -0.55   -1.14   -1.81   -2.51   -3.21   -3.90   -4.54   -5.02   -5.20   -4.92   -4.14   -2.89   -1.32    0.45    2.45    4.89    8.13
+   225.0    0.00   -0.14   -0.55   -1.13   -1.81   -2.51   -3.21   -3.90   -4.54   -5.02   -5.19   -4.92   -4.13   -2.89   -1.33    0.44    2.45    4.91    8.20
+   230.0    0.00   -0.14   -0.54   -1.13   -1.80   -2.50   -3.21   -3.90   -4.53   -5.01   -5.18   -4.90   -4.12   -2.89   -1.33    0.44    2.45    4.93    8.28
+   235.0    0.00   -0.14   -0.54   -1.12   -1.79   -2.50   -3.20   -3.89   -4.53   -5.00   -5.16   -4.88   -4.10   -2.87   -1.32    0.44    2.45    4.96    8.35
+   240.0    0.00   -0.14   -0.53   -1.11   -1.78   -2.48   -3.19   -3.88   -4.51   -4.98   -5.14   -4.86   -4.08   -2.85   -1.30    0.45    2.46    4.99    8.43
+   245.0    0.00   -0.13   -0.53   -1.10   -1.77   -2.47   -3.17   -3.87   -4.50   -4.97   -5.12   -4.84   -4.05   -2.82   -1.27    0.48    2.48    5.02    8.49
+   250.0    0.00   -0.13   -0.52   -1.09   -1.75   -2.45   -3.15   -3.85   -4.49   -4.96   -5.11   -4.81   -4.01   -2.78   -1.23    0.51    2.51    5.04    8.53
+   255.0    0.00   -0.13   -0.51   -1.08   -1.74   -2.43   -3.13   -3.83   -4.47   -4.94   -5.09   -4.79   -3.98   -2.73   -1.19    0.56    2.55    5.07    8.54
+   260.0    0.00   -0.13   -0.51   -1.07   -1.72   -2.41   -3.11   -3.81   -4.46   -4.93   -5.08   -4.77   -3.95   -2.69   -1.14    0.60    2.58    5.09    8.54
+   265.0    0.00   -0.12   -0.50   -1.06   -1.70   -2.39   -3.09   -3.79   -4.44   -4.92   -5.07   -4.75   -3.92   -2.65   -1.09    0.65    2.61    5.09    8.52
+   270.0    0.00   -0.12   -0.50   -1.05   -1.69   -2.37   -3.07   -3.77   -4.43   -4.91   -5.06   -4.74   -3.89   -2.61   -1.05    0.68    2.63    5.09    8.48
+   275.0    0.00   -0.12   -0.49   -1.04   -1.68   -2.35   -3.05   -3.76   -4.41   -4.90   -5.05   -4.72   -3.87   -2.59   -1.03    0.69    2.63    5.07    8.44
+   280.0    0.00   -0.12   -0.49   -1.03   -1.67   -2.34   -3.04   -3.74   -4.40   -4.89   -5.04   -4.71   -3.86   -2.57   -1.02    0.69    2.61    5.04    8.41
+   285.0    0.00   -0.12   -0.49   -1.03   -1.66   -2.33   -3.03   -3.73   -4.39   -4.88   -5.02   -4.69   -3.84   -2.57   -1.03    0.65    2.57    5.00    8.37
+   290.0    0.00   -0.12   -0.49   -1.03   -1.66   -2.33   -3.02   -3.72   -4.38   -4.86   -5.01   -4.68   -3.84   -2.58   -1.07    0.60    2.50    4.95    8.34
+   295.0    0.00   -0.12   -0.48   -1.03   -1.66   -2.32   -3.02   -3.72   -4.37   -4.85   -4.99   -4.67   -3.84   -2.60   -1.11    0.53    2.42    4.88    8.32
+   300.0    0.00   -0.12   -0.48   -1.03   -1.66   -2.33   -3.01   -3.71   -4.36   -4.83   -4.98   -4.66   -3.84   -2.63   -1.17    0.44    2.32    4.80    8.28
+   305.0    0.00   -0.12   -0.49   -1.03   -1.66   -2.33   -3.02   -3.71   -4.35   -4.82   -4.96   -4.65   -3.85   -2.66   -1.24    0.35    2.22    4.72    8.24
+   310.0    0.00   -0.12   -0.49   -1.03   -1.66   -2.33   -3.02   -3.71   -4.34   -4.81   -4.95   -4.65   -3.86   -2.70   -1.30    0.26    2.13    4.64    8.17
+   315.0    0.00   -0.12   -0.49   -1.04   -1.67   -2.34   -3.02   -3.70   -4.34   -4.80   -4.95   -4.65   -3.88   -2.73   -1.35    0.19    2.05    4.56    8.08
+   320.0    0.00   -0.12   -0.49   -1.04   -1.68   -2.34   -3.02   -3.70   -4.33   -4.79   -4.94   -4.65   -3.89   -2.76   -1.40    0.14    1.99    4.48    7.96
+   325.0    0.00   -0.12   -0.50   -1.05   -1.68   -2.35   -3.02   -3.70   -4.32   -4.79   -4.94   -4.66   -3.91   -2.78   -1.42    0.12    1.95    4.42    7.82
+   330.0    0.00   -0.12   -0.50   -1.05   -1.69   -2.35   -3.02   -3.69   -4.31   -4.78   -4.95   -4.67   -3.93   -2.80   -1.43    0.11    1.94    4.36    7.67
+   335.0    0.00   -0.12   -0.50   -1.06   -1.69   -2.35   -3.02   -3.68   -4.31   -4.78   -4.95   -4.68   -3.94   -2.81   -1.42    0.13    1.95    4.32    7.51
+   340.0    0.00   -0.12   -0.51   -1.06   -1.70   -2.35   -3.01   -3.67   -4.30   -4.77   -4.95   -4.70   -3.96   -2.81   -1.41    0.17    1.98    4.30    7.37
+   345.0    0.00   -0.13   -0.51   -1.07   -1.70   -2.35   -3.01   -3.66   -4.29   -4.77   -4.95   -4.70   -3.97   -2.81   -1.39    0.21    2.02    4.30    7.26
+   350.0    0.00   -0.13   -0.52   -1.07   -1.71   -2.36   -3.00   -3.65   -4.27   -4.76   -4.95   -4.71   -3.97   -2.81   -1.37    0.24    2.06    4.30    7.19
+   355.0    0.00   -0.13   -0.52   -1.08   -1.71   -2.36   -3.00   -3.65   -4.26   -4.75   -4.95   -4.71   -3.98   -2.81   -1.36    0.27    2.10    4.32    7.16
+   360.0    0.00   -0.13   -0.52   -1.09   -1.72   -2.36   -3.00   -3.64   -4.25   -4.74   -4.94   -4.71   -3.98   -2.82   -1.35    0.28    2.12    4.35    7.17
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      6.80     -3.16     54.72                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.10   -0.37   -0.74   -1.14   -1.51   -1.88   -2.26   -2.69   -3.15   -3.55   -3.76   -3.61   -2.99   -1.86   -0.23    1.84    4.26    6.89
+     0.0    0.00   -0.03   -0.23   -0.54   -0.88   -1.22   -1.56   -1.92   -2.34   -2.78   -3.16   -3.35   -3.21   -2.64   -1.57    0.01    2.08    4.59    7.35
+     5.0    0.00   -0.05   -0.27   -0.59   -0.95   -1.29   -1.62   -1.97   -2.36   -2.78   -3.13   -3.28   -3.08   -2.43   -1.25    0.44    2.61    5.18    7.95
+    10.0    0.00   -0.07   -0.30   -0.64   -1.01   -1.36   -1.69   -2.02   -2.40   -2.79   -3.11   -3.23   -2.99   -2.27   -1.01    0.79    3.05    5.66    8.48
+    15.0    0.00   -0.08   -0.34   -0.69   -1.07   -1.43   -1.76   -2.09   -2.45   -2.82   -3.12   -3.22   -2.95   -2.18   -0.85    1.02    3.35    6.02    8.89
+    20.0    0.00   -0.10   -0.37   -0.74   -1.14   -1.50   -1.84   -2.16   -2.51   -2.87   -3.17   -3.25   -2.96   -2.17   -0.79    1.13    3.50    6.21    9.16
+    25.0    0.00   -0.12   -0.41   -0.80   -1.20   -1.58   -1.92   -2.24   -2.59   -2.95   -3.24   -3.33   -3.04   -2.23   -0.84    1.10    3.49    6.25    9.30
+    30.0    0.00   -0.14   -0.45   -0.85   -1.27   -1.65   -2.00   -2.33   -2.68   -3.05   -3.35   -3.44   -3.16   -2.36   -0.98    0.95    3.35    6.13    9.31
+    35.0    0.00   -0.16   -0.48   -0.90   -1.33   -1.72   -2.08   -2.42   -2.79   -3.17   -3.48   -3.59   -3.33   -2.55   -1.20    0.70    3.08    5.89    9.20
+    40.0    0.00   -0.18   -0.52   -0.94   -1.38   -1.79   -2.16   -2.52   -2.90   -3.30   -3.63   -3.76   -3.52   -2.77   -1.46    0.39    2.73    5.56    9.00
+    45.0    0.00   -0.20   -0.55   -0.99   -1.44   -1.86   -2.24   -2.61   -3.01   -3.43   -3.79   -3.94   -3.73   -3.01   -1.75    0.04    2.34    5.17    8.75
+    50.0    0.00   -0.21   -0.58   -1.03   -1.49   -1.92   -2.31   -2.70   -3.12   -3.56   -3.94   -4.12   -3.92   -3.24   -2.03   -0.30    1.94    4.78    8.49
+    55.0    0.00   -0.23   -0.61   -1.07   -1.54   -1.97   -2.38   -2.78   -3.22   -3.68   -4.08   -4.27   -4.10   -3.45   -2.29   -0.61    1.58    4.43    8.23
+    60.0    0.00   -0.25   -0.64   -1.11   -1.59   -2.03   -2.44   -2.85   -3.31   -3.78   -4.19   -4.39   -4.23   -3.61   -2.48   -0.86    1.29    4.14    8.03
+    65.0    0.00   -0.26   -0.67   -1.15   -1.63   -2.08   -2.49   -2.91   -3.38   -3.86   -4.27   -4.47   -4.32   -3.71   -2.61   -1.02    1.11    3.96    7.89
+    70.0    0.00   -0.27   -0.69   -1.18   -1.67   -2.12   -2.54   -2.97   -3.43   -3.91   -4.32   -4.51   -4.35   -3.75   -2.66   -1.09    1.04    3.90    7.84
+    75.0    0.00   -0.28   -0.72   -1.22   -1.71   -2.17   -2.59   -3.01   -3.47   -3.94   -4.33   -4.51   -4.33   -3.72   -2.63   -1.05    1.09    3.97    7.88
+    80.0    0.00   -0.29   -0.74   -1.25   -1.75   -2.21   -2.63   -3.05   -3.50   -3.95   -4.32   -4.47   -4.27   -3.63   -2.51   -0.90    1.27    4.16    8.01
+    85.0    0.00   -0.30   -0.75   -1.27   -1.78   -2.25   -2.67   -3.09   -3.52   -3.95   -4.29   -4.40   -4.17   -3.49   -2.33   -0.67    1.55    4.45    8.22
+    90.0    0.00   -0.31   -0.77   -1.30   -1.82   -2.28   -2.71   -3.12   -3.54   -3.95   -4.25   -4.32   -4.04   -3.31   -2.09   -0.37    1.91    4.83    8.48
+    95.0    0.00   -0.32   -0.78   -1.32   -1.84   -2.32   -2.74   -3.15   -3.56   -3.94   -4.21   -4.24   -3.91   -3.12   -1.83   -0.03    2.31    5.24    8.75
+   100.0    0.00   -0.32   -0.79   -1.33   -1.87   -2.34   -2.77   -3.17   -3.57   -3.93   -4.17   -4.17   -3.78   -2.93   -1.56    0.32    2.72    5.64    9.01
+   105.0    0.00   -0.32   -0.80   -1.35   -1.88   -2.37   -2.80   -3.20   -3.59   -3.94   -4.15   -4.11   -3.67   -2.75   -1.32    0.64    3.08    5.98    9.20
+   110.0    0.00   -0.33   -0.80   -1.35   -1.89   -2.38   -2.81   -3.22   -3.61   -3.95   -4.15   -4.07   -3.59   -2.62   -1.12    0.89    3.36    6.22    9.30
+   115.0    0.00   -0.32   -0.80   -1.35   -1.90   -2.39   -2.82   -3.23   -3.62   -3.96   -4.16   -4.07   -3.55   -2.53   -0.99    1.05    3.52    6.32    9.27
+   120.0    0.00   -0.32   -0.80   -1.35   -1.89   -2.38   -2.82   -3.23   -3.63   -3.98   -4.18   -4.08   -3.55   -2.50   -0.93    1.11    3.54    6.27    9.09
+   125.0    0.00   -0.32   -0.79   -1.34   -1.88   -2.36   -2.80   -3.22   -3.63   -4.00   -4.21   -4.12   -3.58   -2.52   -0.96    1.05    3.42    6.05    8.78
+   130.0    0.00   -0.31   -0.78   -1.32   -1.85   -2.33   -2.77   -3.19   -3.62   -4.01   -4.24   -4.16   -3.63   -2.59   -1.06    0.89    3.16    5.68    8.34
+   135.0    0.00   -0.30   -0.76   -1.30   -1.82   -2.29   -2.73   -3.15   -3.59   -4.00   -4.26   -4.20   -3.70   -2.69   -1.21    0.65    2.80    5.20    7.81
+   140.0    0.00   -0.29   -0.74   -1.27   -1.78   -2.24   -2.67   -3.09   -3.55   -3.98   -4.26   -4.24   -3.76   -2.80   -1.39    0.36    2.38    4.66    7.23
+   145.0    0.00   -0.28   -0.72   -1.23   -1.73   -2.18   -2.60   -3.02   -3.48   -3.93   -4.24   -4.24   -3.81   -2.89   -1.56    0.07    1.95    4.13    6.68
+   150.0    0.00   -0.27   -0.69   -1.19   -1.68   -2.12   -2.52   -2.94   -3.40   -3.86   -4.19   -4.22   -3.82   -2.95   -1.70   -0.17    1.59    3.66    6.21
+   155.0    0.00   -0.25   -0.67   -1.15   -1.62   -2.04   -2.44   -2.85   -3.31   -3.77   -4.11   -4.16   -3.78   -2.96   -1.77   -0.33    1.34    3.33    5.86
+   160.0    0.00   -0.24   -0.64   -1.10   -1.56   -1.97   -2.35   -2.75   -3.20   -3.66   -4.00   -4.06   -3.70   -2.91   -1.76   -0.37    1.24    3.18    5.68
+   165.0    0.00   -0.22   -0.60   -1.05   -1.50   -1.89   -2.26   -2.65   -3.09   -3.54   -3.87   -3.92   -3.57   -2.79   -1.65   -0.27    1.31    3.22    5.69
+   170.0    0.00   -0.20   -0.57   -1.00   -1.43   -1.82   -2.18   -2.55   -2.98   -3.40   -3.72   -3.76   -3.39   -2.60   -1.45   -0.05    1.56    3.47    5.87
+   175.0    0.00   -0.19   -0.53   -0.95   -1.37   -1.75   -2.09   -2.46   -2.86   -3.27   -3.55   -3.57   -3.19   -2.38   -1.18    0.28    1.95    3.88    6.20
+   180.0    0.00   -0.17   -0.49   -0.90   -1.31   -1.67   -2.01   -2.36   -2.75   -3.13   -3.39   -3.39   -2.99   -2.13   -0.88    0.67    2.44    4.40    6.61
+   185.0    0.00   -0.15   -0.45   -0.85   -1.24   -1.61   -1.94   -2.28   -2.64   -3.00   -3.24   -3.22   -2.79   -1.90   -0.58    1.08    2.95    4.95    7.04
+   190.0    0.00   -0.13   -0.42   -0.79   -1.18   -1.54   -1.87   -2.20   -2.55   -2.88   -3.11   -3.07   -2.64   -1.72   -0.33    1.43    3.41    5.45    7.41
+   195.0    0.00   -0.11   -0.38   -0.74   -1.12   -1.47   -1.80   -2.12   -2.46   -2.78   -3.00   -2.97   -2.54   -1.61   -0.18    1.66    3.74    5.82    7.66
+   200.0    0.00   -0.09   -0.34   -0.68   -1.06   -1.41   -1.73   -2.05   -2.38   -2.70   -2.93   -2.92   -2.52   -1.61   -0.16    1.74    3.89    6.00    7.71
+   205.0    0.00   -0.07   -0.30   -0.63   -1.00   -1.34   -1.67   -1.98   -2.32   -2.65   -2.90   -2.93   -2.58   -1.72   -0.29    1.62    3.81    5.93    7.55
+   210.0    0.00   -0.05   -0.26   -0.58   -0.93   -1.28   -1.60   -1.92   -2.26   -2.61   -2.90   -2.99   -2.72   -1.94   -0.58    1.31    3.49    5.60    7.16
+   215.0    0.00   -0.03   -0.22   -0.53   -0.88   -1.22   -1.54   -1.86   -2.22   -2.60   -2.94   -3.11   -2.94   -2.27   -1.01    0.81    2.96    5.05    6.58
+   220.0    0.00   -0.01   -0.19   -0.48   -0.82   -1.15   -1.48   -1.81   -2.19   -2.61   -3.01   -3.27   -3.22   -2.68   -1.54    0.18    2.25    4.31    5.86
+   225.0    0.00    0.01   -0.16   -0.43   -0.76   -1.09   -1.42   -1.77   -2.17   -2.63   -3.10   -3.46   -3.53   -3.12   -2.12   -0.53    1.46    3.49    5.08
+   230.0    0.00    0.03   -0.12   -0.39   -0.71   -1.04   -1.37   -1.73   -2.16   -2.67   -3.21   -3.66   -3.85   -3.57   -2.70   -1.24    0.66    2.66    4.33
+   235.0    0.00    0.04   -0.09   -0.35   -0.66   -0.99   -1.32   -1.70   -2.16   -2.71   -3.32   -3.86   -4.14   -3.97   -3.22   -1.87   -0.05    1.93    3.69
+   240.0    0.00    0.06   -0.07   -0.31   -0.62   -0.95   -1.29   -1.68   -2.16   -2.76   -3.42   -4.02   -4.38   -4.29   -3.63   -2.36   -0.60    1.39    3.25
+   245.0    0.00    0.07   -0.04   -0.28   -0.58   -0.91   -1.25   -1.66   -2.17   -2.81   -3.51   -4.15   -4.55   -4.51   -3.88   -2.65   -0.91    1.09    3.05
+   250.0    0.00    0.08   -0.02   -0.25   -0.55   -0.88   -1.23   -1.65   -2.19   -2.84   -3.57   -4.23   -4.64   -4.59   -3.97   -2.72   -0.97    1.08    3.12
+   255.0    0.00    0.09    0.00   -0.23   -0.53   -0.86   -1.22   -1.65   -2.20   -2.87   -3.60   -4.26   -4.64   -4.55   -3.88   -2.58   -0.77    1.34    3.44
+   260.0    0.00    0.10    0.02   -0.21   -0.51   -0.84   -1.21   -1.65   -2.21   -2.88   -3.60   -4.23   -4.55   -4.40   -3.64   -2.24   -0.34    1.83    3.98
+   265.0    0.00    0.11    0.03   -0.19   -0.49   -0.83   -1.20   -1.65   -2.21   -2.88   -3.57   -4.15   -4.41   -4.16   -3.28   -1.77    0.24    2.50    4.66
+   270.0    0.00    0.12    0.04   -0.18   -0.48   -0.82   -1.20   -1.65   -2.21   -2.86   -3.52   -4.04   -4.21   -3.86   -2.87   -1.24    0.89    3.24    5.41
+   275.0    0.00    0.12    0.05   -0.17   -0.48   -0.82   -1.21   -1.66   -2.20   -2.82   -3.44   -3.90   -4.00   -3.56   -2.45   -0.70    1.54    3.96    6.12
+   280.0    0.00    0.12    0.05   -0.17   -0.48   -0.82   -1.21   -1.66   -2.19   -2.79   -3.36   -3.76   -3.80   -3.27   -2.09   -0.24    2.09    4.58    6.73
+   285.0    0.00    0.12    0.05   -0.17   -0.48   -0.83   -1.21   -1.66   -2.17   -2.74   -3.28   -3.64   -3.62   -3.05   -1.81    0.08    2.47    5.01    7.15
+   290.0    0.00    0.12    0.05   -0.17   -0.48   -0.83   -1.22   -1.65   -2.16   -2.70   -3.21   -3.53   -3.49   -2.90   -1.66    0.24    2.65    5.21    7.36
+   295.0    0.00    0.12    0.05   -0.18   -0.49   -0.84   -1.22   -1.65   -2.14   -2.67   -3.16   -3.46   -3.41   -2.84   -1.64    0.22    2.60    5.17    7.35
+   300.0    0.00    0.12    0.04   -0.19   -0.50   -0.85   -1.23   -1.65   -2.14   -2.65   -3.12   -3.43   -3.39   -2.88   -1.75    0.02    2.35    4.91    7.13
+   305.0    0.00    0.11    0.03   -0.20   -0.51   -0.86   -1.23   -1.66   -2.13   -2.65   -3.12   -3.43   -3.43   -2.98   -1.95   -0.30    1.93    4.47    6.75
+   310.0    0.00    0.11    0.02   -0.21   -0.52   -0.87   -1.24   -1.66   -2.14   -2.65   -3.13   -3.46   -3.50   -3.13   -2.22   -0.70    1.42    3.92    6.27
+   315.0    0.00    0.10    0.00   -0.23   -0.54   -0.88   -1.25   -1.67   -2.16   -2.67   -3.16   -3.50   -3.59   -3.30   -2.50   -1.11    0.89    3.35    5.78
+   320.0    0.00    0.09   -0.01   -0.25   -0.56   -0.90   -1.27   -1.69   -2.17   -2.70   -3.20   -3.56   -3.68   -3.45   -2.75   -1.48    0.42    2.84    5.35
+   325.0    0.00    0.08   -0.03   -0.27   -0.58   -0.92   -1.29   -1.71   -2.20   -2.73   -3.24   -3.61   -3.76   -3.57   -2.94   -1.75    0.06    2.45    5.04
+   330.0    0.00    0.07   -0.05   -0.30   -0.61   -0.94   -1.31   -1.73   -2.22   -2.76   -3.27   -3.65   -3.80   -3.62   -3.02   -1.89   -0.13    2.24    4.89
+   335.0    0.00    0.05   -0.08   -0.33   -0.64   -0.98   -1.34   -1.76   -2.25   -2.78   -3.29   -3.66   -3.79   -3.60   -2.99   -1.86   -0.12    2.24    4.94
+   340.0    0.00    0.04   -0.11   -0.37   -0.68   -1.01   -1.37   -1.78   -2.27   -2.80   -3.29   -3.64   -3.74   -3.50   -2.84   -1.68    0.08    2.44    5.17
+   345.0    0.00    0.02   -0.13   -0.41   -0.73   -1.06   -1.41   -1.81   -2.29   -2.80   -3.28   -3.59   -3.64   -3.33   -2.59   -1.36    0.45    2.83    5.57
+   350.0    0.00    0.01   -0.16   -0.45   -0.77   -1.11   -1.45   -1.84   -2.30   -2.80   -3.24   -3.52   -3.51   -3.12   -2.28   -0.94    0.94    3.35    6.11
+   355.0    0.00   -0.01   -0.20   -0.49   -0.83   -1.16   -1.50   -1.88   -2.32   -2.79   -3.20   -3.44   -3.36   -2.88   -1.92   -0.47    1.51    3.96    6.72
+   360.0    0.00   -0.03   -0.23   -0.54   -0.88   -1.22   -1.56   -1.92   -2.34   -2.78   -3.16   -3.35   -3.21   -2.64   -1.57    0.01    2.08    4.59    7.35
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+JAVRINGANT_DM   NONE                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               5    17-AUG-10 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+      1.05      0.86     89.31                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.23   -0.92   -2.00   -3.36   -4.86   -6.29   -7.47   -8.24   -8.52   -8.31   -7.66   -6.56   -4.96   -2.69    0.45    4.61    9.66   15.13
+     0.0    0.00   -0.22   -0.88   -1.92   -3.25   -4.72   -6.15   -7.32   -8.07   -8.30   -8.03   -7.32   -6.23   -4.70   -2.55    0.47    4.55    9.55   14.88
+     5.0    0.00   -0.22   -0.88   -1.92   -3.25   -4.72   -6.14   -7.32   -8.08   -8.32   -8.05   -7.34   -6.23   -4.71   -2.57    0.42    4.47    9.45   14.76
+    10.0    0.00   -0.22   -0.88   -1.92   -3.25   -4.72   -6.15   -7.33   -8.09   -8.34   -8.08   -7.36   -6.26   -4.73   -2.60    0.37    4.38    9.34   14.64
+    15.0    0.00   -0.23   -0.89   -1.93   -3.26   -4.73   -6.16   -7.35   -8.12   -8.38   -8.12   -7.40   -6.29   -4.75   -2.63    0.32    4.31    9.24   14.53
+    20.0    0.00   -0.23   -0.90   -1.94   -3.27   -4.74   -6.17   -7.37   -8.15   -8.42   -8.16   -7.45   -6.33   -4.79   -2.67    0.29    4.26    9.18   14.46
+    25.0    0.00   -0.23   -0.90   -1.95   -3.28   -4.75   -6.19   -7.40   -8.19   -8.47   -8.21   -7.50   -6.37   -4.82   -2.69    0.27    4.24    9.15   14.43
+    30.0    0.00   -0.24   -0.91   -1.96   -3.29   -4.77   -6.22   -7.43   -8.23   -8.51   -8.27   -7.55   -6.42   -4.85   -2.71    0.27    4.25    9.17   14.47
+    35.0    0.00   -0.24   -0.92   -1.97   -3.31   -4.79   -6.24   -7.46   -8.26   -8.55   -8.31   -7.60   -6.46   -4.88   -2.72    0.28    4.29    9.24   14.56
+    40.0    0.00   -0.24   -0.92   -1.98   -3.33   -4.81   -6.27   -7.48   -8.29   -8.59   -8.35   -7.64   -6.50   -4.91   -2.71    0.32    4.36    9.34   14.71
+    45.0    0.00   -0.25   -0.93   -2.00   -3.34   -4.83   -6.29   -7.51   -8.32   -8.61   -8.38   -7.67   -6.53   -4.92   -2.70    0.36    4.45    9.47   14.89
+    50.0    0.00   -0.25   -0.94   -2.01   -3.36   -4.85   -6.31   -7.52   -8.33   -8.63   -8.40   -7.70   -6.55   -4.93   -2.69    0.41    4.54    9.61   15.09
+    55.0    0.00   -0.25   -0.94   -2.02   -3.37   -4.87   -6.32   -7.53   -8.34   -8.64   -8.42   -7.71   -6.57   -4.94   -2.67    0.46    4.63    9.74   15.27
+    60.0    0.00   -0.25   -0.95   -2.03   -3.39   -4.88   -6.33   -7.54   -8.34   -8.64   -8.42   -7.72   -6.57   -4.94   -2.65    0.50    4.69    9.84   15.43
+    65.0    0.00   -0.26   -0.96   -2.04   -3.40   -4.89   -6.34   -7.54   -8.34   -8.64   -8.42   -7.72   -6.58   -4.93   -2.64    0.53    4.73    9.90   15.54
+    70.0    0.00   -0.26   -0.96   -2.04   -3.40   -4.90   -6.34   -7.54   -8.34   -8.63   -8.42   -7.72   -6.58   -4.93   -2.63    0.54    4.74    9.92   15.59
+    75.0    0.00   -0.26   -0.97   -2.05   -3.41   -4.90   -6.34   -7.54   -8.33   -8.63   -8.42   -7.72   -6.58   -4.93   -2.63    0.53    4.73    9.89   15.58
+    80.0    0.00   -0.26   -0.97   -2.05   -3.41   -4.90   -6.34   -7.54   -8.33   -8.63   -8.42   -7.73   -6.58   -4.93   -2.64    0.51    4.68    9.83   15.52
+    85.0    0.00   -0.26   -0.97   -2.06   -3.42   -4.90   -6.34   -7.54   -8.33   -8.64   -8.43   -7.74   -6.59   -4.95   -2.66    0.47    4.62    9.74   15.42
+    90.0    0.00   -0.26   -0.97   -2.06   -3.42   -4.91   -6.34   -7.54   -8.34   -8.65   -8.44   -7.75   -6.61   -4.96   -2.68    0.43    4.55    9.64   15.30
+    95.0    0.00   -0.26   -0.97   -2.06   -3.42   -4.91   -6.34   -7.54   -8.35   -8.66   -8.46   -7.77   -6.63   -4.99   -2.71    0.39    4.49    9.55   15.18
+   100.0    0.00   -0.27   -0.97   -2.06   -3.42   -4.91   -6.35   -7.55   -8.36   -8.67   -8.48   -7.79   -6.65   -5.01   -2.75    0.35    4.44    9.49   15.09
+   105.0    0.00   -0.27   -0.97   -2.06   -3.42   -4.91   -6.35   -7.56   -8.37   -8.69   -8.50   -7.82   -6.68   -5.04   -2.77    0.33    4.42    9.46   15.03
+   110.0    0.00   -0.27   -0.97   -2.06   -3.42   -4.91   -6.36   -7.57   -8.38   -8.70   -8.51   -7.84   -6.71   -5.07   -2.80    0.32    4.43    9.47   15.01
+   115.0    0.00   -0.26   -0.97   -2.06   -3.42   -4.92   -6.36   -7.57   -8.38   -8.70   -8.52   -7.85   -6.73   -5.10   -2.81    0.33    4.47    9.52   15.03
+   120.0    0.00   -0.26   -0.97   -2.06   -3.42   -4.92   -6.36   -7.57   -8.38   -8.70   -8.52   -7.86   -6.75   -5.12   -2.82    0.35    4.53    9.61   15.10
+   125.0    0.00   -0.26   -0.97   -2.06   -3.42   -4.92   -6.36   -7.57   -8.37   -8.69   -8.51   -7.86   -6.75   -5.13   -2.81    0.39    4.61    9.72   15.18
+   130.0    0.00   -0.26   -0.97   -2.05   -3.42   -4.92   -6.36   -7.56   -8.36   -8.67   -8.49   -7.85   -6.75   -5.12   -2.79    0.44    4.70    9.83   15.28
+   135.0    0.00   -0.26   -0.96   -2.05   -3.42   -4.92   -6.36   -7.55   -8.33   -8.64   -8.46   -7.83   -6.74   -5.11   -2.76    0.50    4.79    9.93   15.36
+   140.0    0.00   -0.26   -0.96   -2.05   -3.42   -4.92   -6.35   -7.53   -8.31   -8.61   -8.43   -7.80   -6.71   -5.08   -2.72    0.57    4.87   10.01   15.42
+   145.0    0.00   -0.26   -0.96   -2.05   -3.42   -4.91   -6.34   -7.52   -8.28   -8.57   -8.39   -7.76   -6.68   -5.04   -2.67    0.62    4.93   10.06   15.44
+   150.0    0.00   -0.26   -0.96   -2.05   -3.42   -4.91   -6.34   -7.50   -8.26   -8.54   -8.36   -7.73   -6.64   -5.00   -2.62    0.68    4.97   10.06   15.43
+   155.0    0.00   -0.25   -0.95   -2.04   -3.42   -4.91   -6.33   -7.48   -8.23   -8.51   -8.32   -7.69   -6.60   -4.95   -2.57    0.72    4.98   10.03   15.38
+   160.0    0.00   -0.25   -0.95   -2.04   -3.41   -4.90   -6.32   -7.47   -8.21   -8.49   -8.30   -7.66   -6.56   -4.90   -2.52    0.75    4.96    9.96   15.31
+   165.0    0.00   -0.25   -0.95   -2.04   -3.41   -4.90   -6.31   -7.45   -8.19   -8.47   -8.28   -7.64   -6.53   -4.86   -2.48    0.76    4.92    9.87   15.22
+   170.0    0.00   -0.25   -0.95   -2.04   -3.41   -4.90   -6.30   -7.44   -8.18   -8.46   -8.27   -7.62   -6.50   -4.83   -2.46    0.75    4.86    9.76   15.14
+   175.0    0.00   -0.25   -0.94   -2.04   -3.41   -4.89   -6.30   -7.44   -8.18   -8.46   -8.26   -7.62   -6.49   -4.81   -2.45    0.73    4.79    9.66   15.07
+   180.0    0.00   -0.24   -0.94   -2.03   -3.41   -4.89   -6.29   -7.43   -8.17   -8.46   -8.27   -7.62   -6.49   -4.81   -2.45    0.70    4.73    9.57   15.04
+   185.0    0.00   -0.24   -0.94   -2.03   -3.41   -4.89   -6.29   -7.43   -8.17   -8.46   -8.27   -7.63   -6.50   -4.82   -2.47    0.66    4.66    9.51   15.04
+   190.0    0.00   -0.24   -0.94   -2.03   -3.41   -4.89   -6.29   -7.43   -8.18   -8.46   -8.28   -7.64   -6.51   -4.84   -2.51    0.61    4.61    9.47   15.07
+   195.0    0.00   -0.24   -0.93   -2.03   -3.41   -4.90   -6.30   -7.43   -8.18   -8.47   -8.29   -7.65   -6.54   -4.88   -2.55    0.57    4.57    9.48   15.15
+   200.0    0.00   -0.24   -0.93   -2.03   -3.41   -4.90   -6.30   -7.44   -8.18   -8.47   -8.29   -7.66   -6.56   -4.92   -2.60    0.52    4.56    9.51   15.25
+   205.0    0.00   -0.23   -0.93   -2.03   -3.41   -4.90   -6.31   -7.44   -8.18   -8.47   -8.29   -7.68   -6.59   -4.96   -2.66    0.48    4.56    9.58   15.36
+   210.0    0.00   -0.23   -0.93   -2.03   -3.41   -4.91   -6.31   -7.45   -8.18   -8.46   -8.29   -7.68   -6.62   -5.01   -2.71    0.45    4.58    9.67   15.47
+   215.0    0.00   -0.23   -0.92   -2.03   -3.41   -4.91   -6.32   -7.45   -8.18   -8.46   -8.29   -7.69   -6.64   -5.05   -2.76    0.43    4.62    9.77   15.58
+   220.0    0.00   -0.23   -0.92   -2.02   -3.42   -4.92   -6.33   -7.46   -8.19   -8.46   -8.28   -7.69   -6.66   -5.08   -2.79    0.42    4.67    9.87   15.67
+   225.0    0.00   -0.23   -0.92   -2.02   -3.42   -4.92   -6.34   -7.47   -8.19   -8.46   -8.28   -7.69   -6.67   -5.11   -2.81    0.42    4.72    9.98   15.74
+   230.0    0.00   -0.22   -0.92   -2.02   -3.42   -4.93   -6.34   -7.48   -8.20   -8.46   -8.28   -7.69   -6.67   -5.12   -2.83    0.44    4.78   10.07   15.77
+   235.0    0.00   -0.22   -0.91   -2.02   -3.41   -4.93   -6.35   -7.48   -8.20   -8.46   -8.28   -7.69   -6.67   -5.13   -2.83    0.46    4.84   10.14   15.78
+   240.0    0.00   -0.22   -0.91   -2.01   -3.41   -4.93   -6.35   -7.49   -8.21   -8.47   -8.28   -7.69   -6.68   -5.12   -2.82    0.48    4.88   10.19   15.77
+   245.0    0.00   -0.22   -0.91   -2.01   -3.41   -4.92   -6.35   -7.50   -8.22   -8.48   -8.29   -7.69   -6.68   -5.12   -2.81    0.50    4.91   10.20   15.73
+   250.0    0.00   -0.22   -0.90   -2.00   -3.40   -4.92   -6.35   -7.50   -8.23   -8.50   -8.31   -7.70   -6.68   -5.11   -2.80    0.51    4.91   10.19   15.67
+   255.0    0.00   -0.21   -0.90   -2.00   -3.39   -4.91   -6.35   -7.50   -8.24   -8.51   -8.32   -7.72   -6.68   -5.11   -2.79    0.51    4.90   10.15   15.59
+   260.0    0.00   -0.21   -0.90   -1.99   -3.38   -4.90   -6.34   -7.51   -8.25   -8.53   -8.34   -7.73   -6.69   -5.11   -2.79    0.50    4.86   10.08   15.50
+   265.0    0.00   -0.21   -0.89   -1.98   -3.38   -4.89   -6.33   -7.50   -8.26   -8.55   -8.36   -7.75   -6.70   -5.12   -2.80    0.47    4.79    9.98   15.40
+   270.0    0.00   -0.21   -0.89   -1.98   -3.37   -4.88   -6.32   -7.50   -8.27   -8.56   -8.38   -7.77   -6.72   -5.13   -2.82    0.43    4.71    9.85   15.29
+   275.0    0.00   -0.21   -0.89   -1.97   -3.36   -4.87   -6.32   -7.50   -8.27   -8.57   -8.40   -7.79   -6.73   -5.14   -2.84    0.37    4.61    9.72   15.17
+   280.0    0.00   -0.21   -0.88   -1.97   -3.35   -4.86   -6.31   -7.49   -8.27   -8.58   -8.41   -7.80   -6.74   -5.15   -2.87    0.31    4.50    9.57   15.04
+   285.0    0.00   -0.21   -0.88   -1.96   -3.34   -4.85   -6.30   -7.49   -8.27   -8.58   -8.42   -7.81   -6.75   -5.17   -2.89    0.26    4.40    9.44   14.92
+   290.0    0.00   -0.21   -0.88   -1.96   -3.34   -4.85   -6.29   -7.48   -8.27   -8.58   -8.42   -7.81   -6.76   -5.18   -2.92    0.21    4.31    9.32   14.81
+   295.0    0.00   -0.21   -0.88   -1.95   -3.33   -4.84   -6.29   -7.48   -8.27   -8.58   -8.42   -7.81   -6.75   -5.18   -2.93    0.17    4.25    9.22   14.71
+   300.0    0.00   -0.21   -0.87   -1.95   -3.33   -4.84   -6.28   -7.47   -8.26   -8.57   -8.40   -7.79   -6.73   -5.17   -2.93    0.15    4.21    9.16   14.64
+   305.0    0.00   -0.21   -0.87   -1.95   -3.32   -4.83   -6.28   -7.47   -8.25   -8.56   -8.38   -7.76   -6.71   -5.15   -2.92    0.16    4.20    9.14   14.60
+   310.0    0.00   -0.21   -0.87   -1.94   -3.32   -4.83   -6.28   -7.46   -8.24   -8.54   -8.35   -7.73   -6.67   -5.11   -2.89    0.18    4.23    9.17   14.60
+   315.0    0.00   -0.21   -0.87   -1.94   -3.31   -4.82   -6.27   -7.46   -8.23   -8.51   -8.32   -7.68   -6.62   -5.07   -2.85    0.22    4.28    9.22   14.64
+   320.0    0.00   -0.21   -0.87   -1.94   -3.31   -4.82   -6.26   -7.45   -8.21   -8.48   -8.27   -7.63   -6.57   -5.02   -2.80    0.28    4.36    9.31   14.71
+   325.0    0.00   -0.21   -0.87   -1.93   -3.30   -4.81   -6.25   -7.43   -8.19   -8.45   -8.23   -7.58   -6.51   -4.96   -2.74    0.35    4.44    9.41   14.79
+   330.0    0.00   -0.21   -0.87   -1.93   -3.29   -4.80   -6.24   -7.41   -8.16   -8.42   -8.18   -7.52   -6.45   -4.90   -2.69    0.41    4.53    9.52   14.89
+   335.0    0.00   -0.21   -0.87   -1.93   -3.28   -4.78   -6.22   -7.39   -8.14   -8.38   -8.14   -7.46   -6.39   -4.84   -2.63    0.47    4.60    9.61   14.97
+   340.0    0.00   -0.21   -0.87   -1.92   -3.27   -4.77   -6.20   -7.37   -8.12   -8.35   -8.10   -7.41   -6.34   -4.79   -2.59    0.51    4.65    9.68   15.03
+   345.0    0.00   -0.21   -0.87   -1.92   -3.27   -4.75   -6.19   -7.35   -8.09   -8.33   -8.06   -7.37   -6.29   -4.75   -2.56    0.53    4.67    9.70   15.06
+   350.0    0.00   -0.21   -0.87   -1.92   -3.26   -4.74   -6.17   -7.34   -8.08   -8.31   -8.04   -7.34   -6.25   -4.72   -2.54    0.53    4.65    9.69   15.04
+   355.0    0.00   -0.22   -0.87   -1.92   -3.25   -4.73   -6.15   -7.32   -8.07   -8.30   -8.03   -7.33   -6.23   -4.70   -2.54    0.51    4.61    9.64   14.98
+   360.0    0.00   -0.22   -0.88   -1.92   -3.25   -4.72   -6.15   -7.32   -8.07   -8.30   -8.03   -7.32   -6.23   -4.70   -2.55    0.47    4.55    9.55   14.88
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.28     -0.07    119.64                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.11   -0.45   -0.99   -1.72   -2.59   -3.51   -4.37   -5.05   -5.43   -5.42   -5.01   -4.24   -3.14   -1.70    0.18    2.71    6.10   10.37
+     0.0    0.00   -0.11   -0.43   -0.97   -1.68   -2.53   -3.44   -4.31   -5.03   -5.47   -5.54   -5.22   -4.51   -3.45   -2.04   -0.17    2.38    5.86   10.41
+     5.0    0.00   -0.10   -0.43   -0.96   -1.67   -2.51   -3.43   -4.30   -5.02   -5.47   -5.55   -5.23   -4.53   -3.48   -2.08   -0.22    2.32    5.78   10.33
+    10.0    0.00   -0.10   -0.42   -0.95   -1.65   -2.50   -3.41   -4.29   -5.01   -5.46   -5.55   -5.24   -4.54   -3.50   -2.10   -0.24    2.28    5.73   10.26
+    15.0    0.00   -0.10   -0.42   -0.94   -1.64   -2.49   -3.40   -4.28   -5.00   -5.45   -5.54   -5.23   -4.53   -3.49   -2.09   -0.23    2.29    5.72   10.21
+    20.0    0.00   -0.10   -0.41   -0.93   -1.64   -2.48   -3.40   -4.27   -4.99   -5.43   -5.51   -5.19   -4.50   -3.45   -2.05   -0.18    2.33    5.75   10.20
+    25.0    0.00   -0.10   -0.41   -0.93   -1.64   -2.48   -3.39   -4.26   -4.97   -5.40   -5.47   -5.14   -4.44   -3.39   -1.97   -0.11    2.40    5.80   10.22
+    30.0    0.00   -0.10   -0.41   -0.93   -1.64   -2.49   -3.40   -4.26   -4.96   -5.37   -5.42   -5.08   -4.36   -3.30   -1.88   -0.01    2.50    5.90   10.28
+    35.0    0.00   -0.10   -0.41   -0.93   -1.64   -2.49   -3.40   -4.26   -4.95   -5.35   -5.37   -5.01   -4.27   -3.19   -1.77    0.11    2.62    6.01   10.38
+    40.0    0.00   -0.10   -0.41   -0.93   -1.65   -2.50   -3.42   -4.27   -4.94   -5.32   -5.33   -4.94   -4.18   -3.09   -1.65    0.23    2.75    6.13   10.50
+    45.0    0.00   -0.10   -0.41   -0.94   -1.66   -2.52   -3.43   -4.28   -4.94   -5.30   -5.28   -4.87   -4.09   -2.98   -1.54    0.35    2.87    6.25   10.64
+    50.0    0.00   -0.10   -0.41   -0.95   -1.67   -2.53   -3.45   -4.29   -4.94   -5.29   -5.25   -4.82   -4.02   -2.89   -1.44    0.45    2.97    6.36   10.76
+    55.0    0.00   -0.10   -0.42   -0.95   -1.68   -2.55   -3.46   -4.30   -4.95   -5.28   -5.23   -4.79   -3.97   -2.83   -1.36    0.53    3.04    6.43   10.86
+    60.0    0.00   -0.10   -0.42   -0.96   -1.69   -2.56   -3.47   -4.31   -4.95   -5.28   -5.23   -4.78   -3.95   -2.80   -1.32    0.57    3.08    6.47   10.91
+    65.0    0.00   -0.10   -0.42   -0.97   -1.71   -2.57   -3.48   -4.32   -4.96   -5.29   -5.24   -4.79   -3.95   -2.79   -1.31    0.58    3.08    6.46   10.93
+    70.0    0.00   -0.10   -0.43   -0.98   -1.72   -2.58   -3.49   -4.33   -4.97   -5.31   -5.27   -4.82   -3.98   -2.81   -1.33    0.56    3.04    6.41   10.90
+    75.0    0.00   -0.10   -0.43   -0.98   -1.72   -2.59   -3.50   -4.33   -4.98   -5.33   -5.30   -4.86   -4.03   -2.86   -1.37    0.50    2.96    6.31   10.83
+    80.0    0.00   -0.10   -0.43   -0.99   -1.73   -2.60   -3.50   -4.34   -4.99   -5.35   -5.34   -4.91   -4.09   -2.92   -1.44    0.41    2.85    6.19   10.74
+    85.0    0.00   -0.10   -0.44   -1.00   -1.74   -2.60   -3.50   -4.34   -5.00   -5.38   -5.38   -4.96   -4.15   -2.99   -1.52    0.31    2.72    6.05   10.64
+    90.0    0.00   -0.10   -0.44   -1.00   -1.74   -2.60   -3.50   -4.34   -5.01   -5.40   -5.41   -5.01   -4.20   -3.05   -1.59    0.21    2.59    5.91   10.55
+    95.0    0.00   -0.11   -0.45   -1.01   -1.75   -2.61   -3.50   -4.35   -5.02   -5.42   -5.44   -5.04   -4.24   -3.10   -1.66    0.12    2.47    5.78   10.48
+   100.0    0.00   -0.11   -0.45   -1.01   -1.75   -2.61   -3.51   -4.35   -5.04   -5.44   -5.46   -5.06   -4.26   -3.12   -1.71    0.04    2.37    5.69   10.44
+   105.0    0.00   -0.11   -0.45   -1.01   -1.75   -2.61   -3.51   -4.36   -5.05   -5.45   -5.47   -5.07   -4.26   -3.13   -1.74   -0.01    2.30    5.64   10.44
+   110.0    0.00   -0.11   -0.46   -1.02   -1.76   -2.62   -3.52   -4.38   -5.06   -5.47   -5.48   -5.06   -4.25   -3.12   -1.74   -0.03    2.27    5.63   10.46
+   115.0    0.00   -0.11   -0.46   -1.02   -1.76   -2.62   -3.53   -4.39   -5.08   -5.48   -5.48   -5.05   -4.23   -3.10   -1.73   -0.02    2.29    5.66   10.49
+   120.0    0.00   -0.11   -0.46   -1.02   -1.76   -2.63   -3.54   -4.40   -5.09   -5.49   -5.48   -5.03   -4.20   -3.07   -1.69    0.02    2.35    5.72   10.50
+   125.0    0.00   -0.11   -0.46   -1.02   -1.77   -2.63   -3.55   -4.42   -5.11   -5.49   -5.47   -5.02   -4.18   -3.04   -1.65    0.08    2.43    5.80   10.49
+   130.0    0.00   -0.11   -0.46   -1.03   -1.77   -2.64   -3.56   -4.43   -5.12   -5.50   -5.47   -5.02   -4.17   -3.02   -1.61    0.15    2.53    5.88   10.44
+   135.0    0.00   -0.11   -0.46   -1.03   -1.77   -2.64   -3.56   -4.43   -5.12   -5.50   -5.48   -5.02   -4.17   -3.01   -1.58    0.22    2.63    5.95   10.33
+   140.0    0.00   -0.12   -0.46   -1.03   -1.77   -2.64   -3.56   -4.43   -5.12   -5.51   -5.49   -5.03   -4.19   -3.02   -1.56    0.28    2.72    5.99   10.16
+   145.0    0.00   -0.12   -0.46   -1.02   -1.77   -2.64   -3.56   -4.43   -5.12   -5.51   -5.49   -5.05   -4.22   -3.05   -1.57    0.31    2.77    6.00    9.96
+   150.0    0.00   -0.12   -0.46   -1.02   -1.76   -2.63   -3.55   -4.42   -5.12   -5.51   -5.51   -5.08   -4.26   -3.10   -1.60    0.32    2.80    5.97    9.72
+   155.0    0.00   -0.12   -0.46   -1.02   -1.76   -2.63   -3.55   -4.42   -5.11   -5.50   -5.52   -5.11   -4.31   -3.16   -1.65    0.29    2.78    5.91    9.48
+   160.0    0.00   -0.12   -0.46   -1.02   -1.76   -2.62   -3.54   -4.41   -5.10   -5.50   -5.52   -5.14   -4.36   -3.22   -1.71    0.23    2.73    5.82    9.28
+   165.0    0.00   -0.12   -0.46   -1.02   -1.76   -2.62   -3.54   -4.40   -5.09   -5.49   -5.52   -5.15   -4.40   -3.28   -1.79    0.15    2.65    5.72    9.13
+   170.0    0.00   -0.12   -0.46   -1.02   -1.75   -2.62   -3.54   -4.40   -5.09   -5.49   -5.52   -5.16   -4.43   -3.33   -1.86    0.07    2.56    5.63    9.06
+   175.0    0.00   -0.12   -0.46   -1.01   -1.75   -2.62   -3.54   -4.40   -5.08   -5.48   -5.51   -5.16   -4.44   -3.37   -1.92   -0.02    2.46    5.57    9.09
+   180.0    0.00   -0.12   -0.46   -1.01   -1.75   -2.62   -3.54   -4.40   -5.08   -5.47   -5.50   -5.14   -4.43   -3.38   -1.97   -0.09    2.39    5.54    9.22
+   185.0    0.00   -0.12   -0.46   -1.01   -1.75   -2.62   -3.54   -4.41   -5.08   -5.46   -5.48   -5.12   -4.41   -3.37   -1.98   -0.13    2.35    5.57    9.43
+   190.0    0.00   -0.12   -0.46   -1.01   -1.75   -2.62   -3.55   -4.41   -5.09   -5.46   -5.46   -5.09   -4.37   -3.34   -1.97   -0.14    2.35    5.65    9.71
+   195.0    0.00   -0.12   -0.46   -1.01   -1.75   -2.63   -3.56   -4.42   -5.09   -5.45   -5.44   -5.05   -4.32   -3.29   -1.93   -0.11    2.40    5.78   10.03
+   200.0    0.00   -0.12   -0.46   -1.01   -1.75   -2.63   -3.56   -4.43   -5.09   -5.45   -5.42   -5.01   -4.27   -3.23   -1.87   -0.03    2.50    5.95   10.35
+   205.0    0.00   -0.12   -0.46   -1.01   -1.75   -2.63   -3.56   -4.43   -5.10   -5.44   -5.40   -4.98   -4.22   -3.16   -1.78    0.07    2.63    6.14   10.65
+   210.0    0.00   -0.12   -0.46   -1.01   -1.74   -2.63   -3.56   -4.43   -5.10   -5.44   -5.39   -4.95   -4.17   -3.09   -1.68    0.20    2.79    6.33   10.89
+   215.0    0.00   -0.12   -0.46   -1.00   -1.74   -2.62   -3.56   -4.43   -5.10   -5.44   -5.38   -4.93   -4.13   -3.02   -1.58    0.34    2.96    6.51   11.05
+   220.0    0.00   -0.12   -0.46   -1.00   -1.74   -2.62   -3.56   -4.43   -5.09   -5.43   -5.37   -4.91   -4.10   -2.96   -1.49    0.47    3.11    6.66   11.14
+   225.0    0.00   -0.12   -0.46   -1.00   -1.74   -2.62   -3.55   -4.42   -5.09   -5.43   -5.37   -4.90   -4.07   -2.91   -1.41    0.57    3.24    6.76   11.13
+   230.0    0.00   -0.12   -0.46   -1.00   -1.74   -2.61   -3.55   -4.42   -5.09   -5.42   -5.36   -4.89   -4.05   -2.88   -1.36    0.64    3.31    6.81   11.06
+   235.0    0.00   -0.12   -0.46   -1.00   -1.74   -2.61   -3.55   -4.42   -5.08   -5.42   -5.35   -4.88   -4.03   -2.86   -1.33    0.67    3.34    6.79   10.94
+   240.0    0.00   -0.12   -0.46   -1.01   -1.74   -2.61   -3.55   -4.42   -5.09   -5.42   -5.35   -4.87   -4.03   -2.86   -1.34    0.65    3.31    6.73   10.79
+   245.0    0.00   -0.12   -0.46   -1.01   -1.74   -2.61   -3.55   -4.42   -5.09   -5.42   -5.35   -4.86   -4.02   -2.87   -1.38    0.59    3.22    6.62   10.63
+   250.0    0.00   -0.13   -0.47   -1.01   -1.74   -2.62   -3.55   -4.43   -5.10   -5.43   -5.35   -4.86   -4.03   -2.90   -1.44    0.49    3.10    6.49   10.49
+   255.0    0.00   -0.13   -0.47   -1.02   -1.75   -2.62   -3.56   -4.44   -5.11   -5.43   -5.35   -4.86   -4.04   -2.93   -1.52    0.37    2.95    6.35   10.38
+   260.0    0.00   -0.13   -0.47   -1.02   -1.75   -2.63   -3.57   -4.45   -5.12   -5.44   -5.36   -4.87   -4.06   -2.98   -1.61    0.24    2.79    6.22   10.31
+   265.0    0.00   -0.13   -0.47   -1.02   -1.76   -2.64   -3.58   -4.46   -5.13   -5.45   -5.37   -4.88   -4.08   -3.03   -1.70    0.11    2.65    6.10   10.28
+   270.0    0.00   -0.13   -0.48   -1.03   -1.77   -2.64   -3.58   -4.47   -5.14   -5.47   -5.38   -4.90   -4.12   -3.09   -1.78   -0.01    2.53    6.02   10.28
+   275.0    0.00   -0.13   -0.48   -1.03   -1.77   -2.65   -3.59   -4.47   -5.14   -5.48   -5.40   -4.93   -4.16   -3.14   -1.85   -0.09    2.46    5.98   10.30
+   280.0    0.00   -0.13   -0.48   -1.04   -1.78   -2.65   -3.59   -4.47   -5.14   -5.49   -5.42   -4.97   -4.20   -3.19   -1.90   -0.13    2.42    5.98   10.33
+   285.0    0.00   -0.13   -0.48   -1.04   -1.78   -2.65   -3.58   -4.46   -5.14   -5.49   -5.44   -5.00   -4.25   -3.24   -1.93   -0.14    2.44    6.01   10.37
+   290.0    0.00   -0.13   -0.49   -1.05   -1.78   -2.65   -3.58   -4.45   -5.13   -5.49   -5.46   -5.04   -4.29   -3.27   -1.94   -0.11    2.50    6.07   10.41
+   295.0    0.00   -0.13   -0.49   -1.05   -1.78   -2.65   -3.57   -4.43   -5.11   -5.48   -5.47   -5.07   -4.32   -3.29   -1.92   -0.05    2.58    6.15   10.43
+   300.0    0.00   -0.13   -0.49   -1.05   -1.78   -2.64   -3.55   -4.41   -5.09   -5.48   -5.48   -5.09   -4.35   -3.30   -1.89    0.03    2.69    6.23   10.45
+   305.0    0.00   -0.13   -0.49   -1.05   -1.78   -2.64   -3.54   -4.39   -5.07   -5.46   -5.48   -5.11   -4.37   -3.29   -1.84    0.12    2.80    6.32   10.47
+   310.0    0.00   -0.13   -0.48   -1.05   -1.78   -2.63   -3.53   -4.38   -5.05   -5.45   -5.48   -5.11   -4.37   -3.28   -1.80    0.20    2.89    6.39   10.48
+   315.0    0.00   -0.13   -0.48   -1.05   -1.78   -2.63   -3.52   -4.36   -5.04   -5.44   -5.47   -5.11   -4.37   -3.26   -1.75    0.27    2.96    6.44   10.50
+   320.0    0.00   -0.12   -0.48   -1.04   -1.77   -2.62   -3.51   -4.35   -5.03   -5.43   -5.47   -5.11   -4.36   -3.24   -1.72    0.31    3.00    6.46   10.52
+   325.0    0.00   -0.12   -0.48   -1.04   -1.77   -2.61   -3.50   -4.34   -5.02   -5.42   -5.46   -5.11   -4.36   -3.23   -1.70    0.32    3.00    6.45   10.54
+   330.0    0.00   -0.12   -0.47   -1.03   -1.76   -2.61   -3.50   -4.34   -5.02   -5.42   -5.46   -5.10   -4.35   -3.23   -1.71    0.30    2.97    6.42   10.56
+   335.0    0.00   -0.12   -0.46   -1.02   -1.75   -2.60   -3.49   -4.34   -5.02   -5.42   -5.46   -5.11   -4.36   -3.24   -1.73    0.26    2.90    6.36   10.58
+   340.0    0.00   -0.12   -0.46   -1.01   -1.74   -2.59   -3.48   -4.34   -5.02   -5.43   -5.47   -5.12   -4.37   -3.26   -1.78    0.18    2.81    6.27   10.59
+   345.0    0.00   -0.11   -0.45   -1.00   -1.72   -2.57   -3.48   -4.33   -5.03   -5.44   -5.49   -5.14   -4.40   -3.30   -1.84    0.10    2.69    6.17   10.57
+   350.0    0.00   -0.11   -0.45   -0.99   -1.71   -2.56   -3.47   -4.33   -5.03   -5.45   -5.51   -5.16   -4.43   -3.35   -1.91    0.00    2.58    6.06   10.53
+   355.0    0.00   -0.11   -0.44   -0.98   -1.69   -2.54   -3.45   -4.32   -5.03   -5.46   -5.53   -5.19   -4.47   -3.40   -1.98   -0.09    2.47    5.95   10.48
+   360.0    0.00   -0.11   -0.43   -0.97   -1.68   -2.53   -3.44   -4.31   -5.03   -5.47   -5.54   -5.22   -4.51   -3.45   -2.04   -0.17    2.38    5.86   10.41
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+JNSMARANT_GGD   NONE                                        TYPE / SERIAL NO    
+FIELD               NGS/TUM                  3    10-AUG-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      1.90      0.04     62.74                              NORTH / EAST / UP   
+   NOAZI    0.00    0.46    0.68    0.83    0.82    0.71    0.55    0.51    0.43    0.60    0.76    1.04    1.33    1.56    1.90    2.27    2.79
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -1.80     -0.62     71.76                              NORTH / EAST / UP   
+   NOAZI    0.00   -1.43   -2.32   -2.70   -2.82   -2.82   -2.73   -2.71   -2.85   -2.93   -2.95   -2.93   -2.78   -2.55   -2.23   -1.71   -0.74
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+JPLD/M_R        NONE                                        TYPE / SERIAL NO    
+CONVERTED           TUM                      0    27-JAN-03 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+      0.60     -0.46     59.24                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.24   -0.92   -1.97   -3.28   -4.69   -6.05   -7.19   -7.97   -8.30   -8.14   -7.46   -6.27   -4.54   -2.20    0.87    4.79    9.56   14.88
+     0.0    0.00   -0.28   -1.01   -2.12   -3.49   -4.95   -6.35   -7.52   -8.32   -8.63   -8.43   -7.72   -6.51   -4.78   -2.47    0.58    4.48    9.16   14.25
+     5.0    0.00   -0.28   -1.01   -2.12   -3.48   -4.94   -6.34   -7.50   -8.30   -8.62   -8.42   -7.70   -6.48   -4.75   -2.42    0.63    4.53    9.23   14.33
+    10.0    0.00   -0.28   -1.01   -2.11   -3.46   -4.92   -6.32   -7.48   -8.27   -8.59   -8.39   -7.68   -6.46   -4.72   -2.38    0.69    4.60    9.32   14.45
+    15.0    0.00   -0.27   -1.00   -2.10   -3.45   -4.90   -6.29   -7.46   -8.25   -8.57   -8.37   -7.65   -6.43   -4.68   -2.33    0.75    4.69    9.43   14.61
+    20.0    0.00   -0.27   -0.99   -2.08   -3.43   -4.88   -6.27   -7.43   -8.22   -8.54   -8.35   -7.63   -6.40   -4.64   -2.28    0.83    4.78    9.56   14.80
+    25.0    0.00   -0.27   -0.98   -2.07   -3.41   -4.85   -6.24   -7.39   -8.19   -8.51   -8.32   -7.60   -6.37   -4.60   -2.22    0.90    4.89    9.71   15.02
+    30.0    0.00   -0.26   -0.98   -2.06   -3.39   -4.83   -6.21   -7.36   -8.15   -8.48   -8.29   -7.57   -6.33   -4.55   -2.15    0.99    5.00    9.87   15.25
+    35.0    0.00   -0.26   -0.97   -2.04   -3.37   -4.80   -6.17   -7.32   -8.11   -8.44   -8.25   -7.54   -6.29   -4.50   -2.09    1.08    5.12   10.03   15.48
+    40.0    0.00   -0.26   -0.96   -2.02   -3.34   -4.77   -6.13   -7.28   -8.07   -8.40   -8.21   -7.50   -6.25   -4.45   -2.02    1.17    5.25   10.19   15.70
+    45.0    0.00   -0.25   -0.95   -2.01   -3.32   -4.74   -6.10   -7.24   -8.03   -8.35   -8.17   -7.45   -6.20   -4.40   -1.95    1.26    5.36   10.34   15.89
+    50.0    0.00   -0.25   -0.94   -1.99   -3.29   -4.70   -6.06   -7.19   -7.98   -8.31   -8.12   -7.40   -6.15   -4.34   -1.88    1.34    5.46   10.46   16.05
+    55.0    0.00   -0.24   -0.93   -1.97   -3.27   -4.67   -6.02   -7.15   -7.93   -8.25   -8.07   -7.35   -6.10   -4.28   -1.82    1.41    5.54   10.55   16.15
+    60.0    0.00   -0.24   -0.92   -1.95   -3.24   -4.64   -5.98   -7.10   -7.88   -8.20   -8.01   -7.30   -6.04   -4.23   -1.76    1.47    5.59   10.60   16.20
+    65.0    0.00   -0.24   -0.91   -1.94   -3.22   -4.60   -5.94   -7.06   -7.83   -8.15   -7.96   -7.24   -5.99   -4.18   -1.72    1.50    5.61   10.60   16.20
+    70.0    0.00   -0.23   -0.90   -1.92   -3.19   -4.57   -5.90   -7.02   -7.79   -8.10   -7.91   -7.19   -5.94   -4.14   -1.70    1.50    5.60   10.57   16.14
+    75.0    0.00   -0.23   -0.89   -1.91   -3.17   -4.55   -5.87   -6.98   -7.75   -8.06   -7.87   -7.15   -5.91   -4.12   -1.70    1.48    5.55   10.50   16.04
+    80.0    0.00   -0.23   -0.88   -1.89   -3.16   -4.53   -5.84   -6.95   -7.72   -8.03   -7.83   -7.12   -5.89   -4.11   -1.71    1.44    5.47   10.39   15.91
+    85.0    0.00   -0.22   -0.87   -1.88   -3.14   -4.51   -5.82   -6.93   -7.69   -8.00   -7.81   -7.10   -5.88   -4.13   -1.75    1.36    5.36   10.25   15.74
+    90.0    0.00   -0.22   -0.87   -1.87   -3.13   -4.49   -5.81   -6.92   -7.68   -7.99   -7.80   -7.10   -5.90   -4.16   -1.82    1.27    5.24   10.09   15.56
+    95.0    0.00   -0.22   -0.86   -1.87   -3.12   -4.49   -5.80   -6.91   -7.68   -7.99   -7.81   -7.12   -5.93   -4.21   -1.90    1.16    5.10    9.92   15.37
+   100.0    0.00   -0.21   -0.86   -1.87   -3.12   -4.48   -5.80   -6.91   -7.68   -8.01   -7.84   -7.16   -5.98   -4.29   -1.99    1.04    4.96    9.76   15.18
+   105.0    0.00   -0.21   -0.86   -1.86   -3.12   -4.49   -5.81   -6.93   -7.70   -8.04   -7.88   -7.21   -6.05   -4.37   -2.09    0.93    4.82    9.60   15.00
+   110.0    0.00   -0.21   -0.86   -1.87   -3.13   -4.50   -5.82   -6.95   -7.73   -8.07   -7.93   -7.28   -6.13   -4.47   -2.20    0.81    4.69    9.46   14.84
+   115.0    0.00   -0.21   -0.86   -1.87   -3.13   -4.51   -5.84   -6.97   -7.76   -8.12   -7.99   -7.35   -6.22   -4.56   -2.30    0.71    4.59    9.34   14.71
+   120.0    0.00   -0.21   -0.86   -1.87   -3.15   -4.53   -5.87   -7.00   -7.80   -8.17   -8.05   -7.43   -6.31   -4.66   -2.39    0.62    4.50    9.24   14.60
+   125.0    0.00   -0.21   -0.86   -1.88   -3.16   -4.55   -5.89   -7.04   -7.85   -8.22   -8.12   -7.51   -6.39   -4.74   -2.47    0.55    4.44    9.18   14.52
+   130.0    0.00   -0.21   -0.86   -1.89   -3.17   -4.57   -5.92   -7.07   -7.89   -8.27   -8.18   -7.58   -6.47   -4.81   -2.53    0.51    4.40    9.13   14.47
+   135.0    0.00   -0.21   -0.86   -1.90   -3.19   -4.60   -5.95   -7.11   -7.93   -8.32   -8.23   -7.64   -6.53   -4.87   -2.57    0.47    4.37    9.11   14.44
+   140.0    0.00   -0.21   -0.87   -1.91   -3.21   -4.62   -5.98   -7.14   -7.96   -8.36   -8.28   -7.69   -6.58   -4.91   -2.60    0.46    4.37    9.10   14.43
+   145.0    0.00   -0.21   -0.87   -1.91   -3.22   -4.64   -6.01   -7.17   -8.00   -8.39   -8.31   -7.72   -6.61   -4.93   -2.62    0.45    4.36    9.10   14.44
+   150.0    0.00   -0.21   -0.87   -1.92   -3.24   -4.66   -6.04   -7.20   -8.02   -8.42   -8.33   -7.74   -6.63   -4.94   -2.62    0.45    4.37    9.10   14.45
+   155.0    0.00   -0.21   -0.87   -1.93   -3.25   -4.68   -6.06   -7.22   -8.05   -8.44   -8.35   -7.75   -6.63   -4.94   -2.62    0.46    4.36    9.10   14.46
+   160.0    0.00   -0.21   -0.88   -1.93   -3.26   -4.69   -6.07   -7.24   -8.06   -8.45   -8.35   -7.75   -6.62   -4.94   -2.61    0.45    4.36    9.09   14.46
+   165.0    0.00   -0.21   -0.88   -1.94   -3.27   -4.70   -6.09   -7.25   -8.07   -8.46   -8.35   -7.74   -6.61   -4.93   -2.61    0.45    4.34    9.08   14.46
+   170.0    0.00   -0.21   -0.88   -1.94   -3.27   -4.71   -6.10   -7.26   -8.08   -8.46   -8.35   -7.73   -6.60   -4.92   -2.61    0.43    4.32    9.05   14.44
+   175.0    0.00   -0.21   -0.88   -1.94   -3.27   -4.71   -6.10   -7.27   -8.08   -8.46   -8.34   -7.72   -6.59   -4.91   -2.61    0.42    4.29    9.02   14.41
+   180.0    0.00   -0.21   -0.88   -1.94   -3.27   -4.71   -6.10   -7.27   -8.08   -8.46   -8.34   -7.71   -6.57   -4.90   -2.62    0.40    4.26    9.00   14.38
+   185.0    0.00   -0.21   -0.88   -1.93   -3.26   -4.70   -6.09   -7.26   -8.08   -8.45   -8.33   -7.70   -6.56   -4.90   -2.62    0.38    4.24    8.98   14.35
+   190.0    0.00   -0.21   -0.87   -1.93   -3.25   -4.69   -6.08   -7.25   -8.07   -8.44   -8.32   -7.69   -6.55   -4.89   -2.62    0.38    4.24    8.98   14.33
+   195.0    0.00   -0.21   -0.87   -1.92   -3.24   -4.68   -6.07   -7.24   -8.06   -8.43   -8.30   -7.67   -6.54   -4.88   -2.61    0.39    4.26    9.00   14.33
+   200.0    0.00   -0.21   -0.87   -1.92   -3.23   -4.67   -6.05   -7.22   -8.04   -8.41   -8.29   -7.65   -6.52   -4.86   -2.59    0.42    4.30    9.06   14.37
+   205.0    0.00   -0.21   -0.87   -1.91   -3.22   -4.65   -6.03   -7.20   -8.02   -8.39   -8.26   -7.62   -6.48   -4.82   -2.55    0.47    4.38    9.15   14.44
+   210.0    0.00   -0.21   -0.87   -1.90   -3.21   -4.63   -6.01   -7.18   -8.00   -8.36   -8.23   -7.58   -6.44   -4.77   -2.49    0.55    4.48    9.28   14.55
+   215.0    0.00   -0.21   -0.87   -1.90   -3.20   -4.61   -5.99   -7.15   -7.97   -8.33   -8.18   -7.53   -6.38   -4.70   -2.41    0.65    4.61    9.43   14.69
+   220.0    0.00   -0.21   -0.87   -1.89   -3.19   -4.60   -5.97   -7.13   -7.93   -8.28   -8.13   -7.47   -6.31   -4.62   -2.31    0.78    4.77    9.61   14.87
+   225.0    0.00   -0.21   -0.87   -1.89   -3.18   -4.58   -5.94   -7.10   -7.89   -8.24   -8.07   -7.40   -6.22   -4.52   -2.19    0.91    4.93    9.80   15.07
+   230.0    0.00   -0.21   -0.87   -1.89   -3.17   -4.57   -5.92   -7.07   -7.85   -8.18   -8.01   -7.32   -6.13   -4.41   -2.07    1.06    5.10    9.98   15.28
+   235.0    0.00   -0.22   -0.87   -1.89   -3.16   -4.56   -5.90   -7.03   -7.81   -8.13   -7.94   -7.24   -6.03   -4.30   -1.94    1.20    5.25   10.15   15.47
+   240.0    0.00   -0.22   -0.87   -1.89   -3.16   -4.55   -5.88   -7.01   -7.77   -8.07   -7.87   -7.16   -5.94   -4.19   -1.82    1.33    5.39   10.29   15.63
+   245.0    0.00   -0.22   -0.87   -1.89   -3.16   -4.54   -5.87   -6.98   -7.73   -8.02   -7.81   -7.08   -5.86   -4.10   -1.71    1.44    5.49   10.39   15.74
+   250.0    0.00   -0.22   -0.88   -1.90   -3.17   -4.54   -5.86   -6.96   -7.70   -7.98   -7.76   -7.02   -5.79   -4.01   -1.62    1.53    5.56   10.44   15.79
+   255.0    0.00   -0.23   -0.88   -1.90   -3.17   -4.54   -5.86   -6.95   -7.68   -7.95   -7.72   -6.98   -5.73   -3.96   -1.56    1.58    5.58   10.43   15.78
+   260.0    0.00   -0.23   -0.89   -1.91   -3.18   -4.55   -5.86   -6.94   -7.66   -7.93   -7.70   -6.96   -5.71   -3.92   -1.53    1.59    5.57   10.37   15.71
+   265.0    0.00   -0.23   -0.90   -1.92   -3.19   -4.56   -5.86   -6.94   -7.66   -7.93   -7.70   -6.96   -5.70   -3.92   -1.53    1.57    5.51   10.26   15.58
+   270.0    0.00   -0.24   -0.91   -1.94   -3.21   -4.58   -5.88   -6.95   -7.67   -7.94   -7.71   -6.98   -5.73   -3.94   -1.56    1.52    5.41   10.11   15.40
+   275.0    0.00   -0.24   -0.92   -1.95   -3.23   -4.60   -5.90   -6.97   -7.69   -7.96   -7.74   -7.02   -5.77   -4.00   -1.62    1.44    5.28    9.93   15.20
+   280.0    0.00   -0.25   -0.93   -1.97   -3.25   -4.62   -5.93   -7.00   -7.72   -8.00   -7.79   -7.07   -5.84   -4.07   -1.71    1.33    5.14    9.74   14.98
+   285.0    0.00   -0.25   -0.94   -1.98   -3.27   -4.65   -5.96   -7.04   -7.77   -8.06   -7.86   -7.15   -5.92   -4.16   -1.81    1.21    4.99    9.55   14.77
+   290.0    0.00   -0.25   -0.95   -2.00   -3.30   -4.69   -6.00   -7.09   -7.82   -8.12   -7.93   -7.23   -6.01   -4.26   -1.92    1.08    4.84    9.38   14.58
+   295.0    0.00   -0.26   -0.96   -2.02   -3.33   -4.72   -6.04   -7.14   -7.88   -8.19   -8.00   -7.31   -6.11   -4.36   -2.04    0.96    4.70    9.23   14.43
+   300.0    0.00   -0.26   -0.97   -2.04   -3.35   -4.76   -6.09   -7.19   -7.95   -8.26   -8.08   -7.40   -6.20   -4.47   -2.15    0.83    4.58    9.10   14.31
+   305.0    0.00   -0.26   -0.98   -2.05   -3.38   -4.79   -6.14   -7.25   -8.01   -8.33   -8.16   -7.48   -6.29   -4.57   -2.26    0.73    4.47    9.01   14.22
+   310.0    0.00   -0.27   -0.98   -2.07   -3.40   -4.83   -6.18   -7.31   -8.08   -8.40   -8.23   -7.56   -6.37   -4.66   -2.35    0.63    4.40    8.96   14.17
+   315.0    0.00   -0.27   -0.99   -2.08   -3.43   -4.86   -6.23   -7.36   -8.14   -8.47   -8.30   -7.62   -6.44   -4.73   -2.43    0.56    4.34    8.93   14.15
+   320.0    0.00   -0.27   -1.00   -2.10   -3.45   -4.89   -6.27   -7.41   -8.19   -8.52   -8.35   -7.67   -6.49   -4.79   -2.49    0.50    4.31    8.92   14.15
+   325.0    0.00   -0.28   -1.01   -2.11   -3.46   -4.92   -6.30   -7.45   -8.24   -8.57   -8.39   -7.71   -6.53   -4.83   -2.54    0.47    4.29    8.93   14.15
+   330.0    0.00   -0.28   -1.01   -2.12   -3.48   -4.94   -6.33   -7.49   -8.28   -8.61   -8.43   -7.74   -6.56   -4.86   -2.56    0.45    4.29    8.95   14.16
+   335.0    0.00   -0.28   -1.02   -2.13   -3.49   -4.95   -6.35   -7.51   -8.31   -8.63   -8.45   -7.76   -6.57   -4.87   -2.57    0.45    4.31    8.98   14.16
+   340.0    0.00   -0.28   -1.02   -2.13   -3.50   -4.96   -6.36   -7.53   -8.33   -8.65   -8.46   -7.77   -6.57   -4.87   -2.57    0.46    4.33    9.01   14.16
+   345.0    0.00   -0.28   -1.02   -2.13   -3.50   -4.97   -6.37   -7.54   -8.33   -8.66   -8.46   -7.76   -6.57   -4.86   -2.56    0.48    4.36    9.04   14.16
+   350.0    0.00   -0.28   -1.02   -2.13   -3.50   -4.97   -6.37   -7.54   -8.34   -8.66   -8.46   -7.75   -6.55   -4.84   -2.53    0.51    4.39    9.07   14.17
+   355.0    0.00   -0.28   -1.02   -2.13   -3.49   -4.96   -6.37   -7.54   -8.33   -8.65   -8.45   -7.74   -6.53   -4.81   -2.50    0.54    4.43    9.11   14.20
+   360.0    0.00   -0.28   -1.01   -2.12   -3.49   -4.95   -6.35   -7.52   -8.32   -8.63   -8.43   -7.72   -6.51   -4.78   -2.47    0.58    4.48    9.16   14.25
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.10     -0.62     88.06                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.13   -0.52   -1.10   -1.82   -2.62   -3.43   -4.21   -4.85   -5.23   -5.25   -4.83   -3.98   -2.75   -1.23    0.59    2.86    5.83    9.66
+     0.0    0.00   -0.12   -0.48   -1.03   -1.72   -2.49   -3.29   -4.07   -4.73   -5.15   -5.20   -4.83   -4.05   -2.92   -1.50    0.25    2.53    5.61    9.51
+     5.0    0.00   -0.11   -0.47   -1.03   -1.71   -2.48   -3.29   -4.06   -4.72   -5.13   -5.20   -4.83   -4.05   -2.93   -1.51    0.25    2.54    5.58    9.37
+    10.0    0.00   -0.11   -0.47   -1.02   -1.71   -2.48   -3.28   -4.05   -4.71   -5.12   -5.19   -4.83   -4.06   -2.93   -1.51    0.26    2.55    5.55    9.26
+    15.0    0.00   -0.11   -0.46   -1.01   -1.71   -2.48   -3.28   -4.05   -4.70   -5.11   -5.17   -4.82   -4.05   -2.93   -1.50    0.27    2.55    5.53    9.17
+    20.0    0.00   -0.10   -0.45   -1.01   -1.70   -2.48   -3.28   -4.04   -4.69   -5.10   -5.16   -4.81   -4.04   -2.92   -1.48    0.29    2.57    5.52    9.12
+    25.0    0.00   -0.10   -0.45   -1.00   -1.70   -2.47   -3.28   -4.04   -4.68   -5.08   -5.14   -4.79   -4.02   -2.89   -1.45    0.32    2.59    5.52    9.12
+    30.0    0.00   -0.10   -0.44   -1.00   -1.69   -2.47   -3.27   -4.03   -4.67   -5.07   -5.13   -4.77   -3.99   -2.86   -1.41    0.36    2.61    5.53    9.16
+    35.0    0.00   -0.09   -0.44   -0.99   -1.69   -2.47   -3.27   -4.03   -4.66   -5.06   -5.11   -4.75   -3.96   -2.81   -1.36    0.41    2.65    5.57    9.23
+    40.0    0.00   -0.09   -0.44   -0.99   -1.68   -2.46   -3.27   -4.03   -4.66   -5.05   -5.10   -4.72   -3.92   -2.76   -1.30    0.47    2.69    5.61    9.34
+    45.0    0.00   -0.09   -0.43   -0.98   -1.68   -2.46   -3.26   -4.02   -4.66   -5.05   -5.09   -4.70   -3.88   -2.70   -1.23    0.53    2.74    5.66    9.47
+    50.0    0.00   -0.09   -0.43   -0.98   -1.67   -2.46   -3.26   -4.03   -4.66   -5.05   -5.08   -4.68   -3.84   -2.65   -1.17    0.59    2.79    5.72    9.60
+    55.0    0.00   -0.09   -0.43   -0.98   -1.67   -2.45   -3.26   -4.03   -4.66   -5.05   -5.07   -4.66   -3.81   -2.59   -1.11    0.65    2.84    5.77    9.73
+    60.0    0.00   -0.09   -0.43   -0.98   -1.67   -2.46   -3.27   -4.04   -4.67   -5.06   -5.07   -4.64   -3.77   -2.55   -1.05    0.70    2.88    5.81    9.83
+    65.0    0.00   -0.09   -0.43   -0.98   -1.67   -2.46   -3.27   -4.05   -4.69   -5.07   -5.07   -4.63   -3.75   -2.51   -1.02    0.74    2.91    5.84    9.91
+    70.0    0.00   -0.09   -0.43   -0.98   -1.68   -2.47   -3.29   -4.06   -4.70   -5.08   -5.08   -4.63   -3.74   -2.49   -0.99    0.75    2.92    5.85    9.95
+    75.0    0.00   -0.09   -0.43   -0.99   -1.69   -2.48   -3.30   -4.08   -4.72   -5.10   -5.09   -4.63   -3.74   -2.49   -0.99    0.76    2.92    5.85    9.96
+    80.0    0.00   -0.09   -0.44   -0.99   -1.70   -2.50   -3.32   -4.11   -4.74   -5.12   -5.11   -4.64   -3.74   -2.50   -1.00    0.74    2.90    5.82    9.93
+    85.0    0.00   -0.10   -0.44   -1.00   -1.71   -2.52   -3.35   -4.13   -4.77   -5.14   -5.12   -4.66   -3.76   -2.52   -1.03    0.71    2.86    5.78    9.86
+    90.0    0.00   -0.10   -0.45   -1.02   -1.73   -2.54   -3.37   -4.16   -4.79   -5.16   -5.14   -4.68   -3.79   -2.56   -1.07    0.66    2.82    5.73    9.78
+    95.0    0.00   -0.10   -0.46   -1.03   -1.75   -2.57   -3.40   -4.19   -4.82   -5.18   -5.16   -4.70   -3.82   -2.60   -1.12    0.61    2.77    5.67    9.68
+   100.0    0.00   -0.10   -0.47   -1.05   -1.78   -2.59   -3.43   -4.22   -4.84   -5.20   -5.18   -4.73   -3.86   -2.65   -1.18    0.56    2.72    5.61    9.58
+   105.0    0.00   -0.11   -0.48   -1.06   -1.80   -2.62   -3.46   -4.24   -4.87   -5.22   -5.20   -4.75   -3.90   -2.70   -1.23    0.52    2.68    5.56    9.48
+   110.0    0.00   -0.11   -0.49   -1.08   -1.82   -2.65   -3.49   -4.27   -4.89   -5.24   -5.22   -4.78   -3.93   -2.74   -1.27    0.48    2.66    5.53    9.40
+   115.0    0.00   -0.12   -0.50   -1.10   -1.85   -2.68   -3.52   -4.29   -4.90   -5.25   -5.24   -4.80   -3.96   -2.77   -1.30    0.46    2.65    5.51    9.33
+   120.0    0.00   -0.12   -0.51   -1.11   -1.87   -2.70   -3.54   -4.31   -4.92   -5.26   -5.25   -4.83   -3.99   -2.79   -1.31    0.46    2.66    5.51    9.29
+   125.0    0.00   -0.12   -0.52   -1.13   -1.89   -2.72   -3.56   -4.32   -4.93   -5.27   -5.26   -4.84   -4.00   -2.80   -1.31    0.48    2.69    5.53    9.26
+   130.0    0.00   -0.13   -0.52   -1.14   -1.91   -2.74   -3.57   -4.33   -4.93   -5.28   -5.28   -4.86   -4.01   -2.80   -1.29    0.52    2.73    5.57    9.26
+   135.0    0.00   -0.13   -0.53   -1.15   -1.92   -2.75   -3.58   -4.34   -4.94   -5.29   -5.29   -4.87   -4.02   -2.79   -1.26    0.57    2.79    5.61    9.27
+   140.0    0.00   -0.13   -0.54   -1.16   -1.93   -2.76   -3.59   -4.34   -4.94   -5.29   -5.30   -4.87   -4.02   -2.78   -1.22    0.62    2.85    5.66    9.28
+   145.0    0.00   -0.14   -0.55   -1.17   -1.94   -2.77   -3.59   -4.34   -4.95   -5.30   -5.30   -4.88   -4.01   -2.75   -1.18    0.67    2.91    5.71    9.29
+   150.0    0.00   -0.14   -0.55   -1.18   -1.95   -2.77   -3.59   -4.34   -4.95   -5.31   -5.31   -4.89   -4.01   -2.74   -1.15    0.72    2.95    5.75    9.30
+   155.0    0.00   -0.14   -0.56   -1.18   -1.95   -2.77   -3.59   -4.34   -4.95   -5.32   -5.32   -4.89   -4.01   -2.72   -1.12    0.75    2.99    5.78    9.30
+   160.0    0.00   -0.15   -0.56   -1.18   -1.95   -2.77   -3.59   -4.34   -4.96   -5.33   -5.34   -4.90   -4.01   -2.72   -1.11    0.76    3.00    5.79    9.28
+   165.0    0.00   -0.15   -0.56   -1.18   -1.94   -2.76   -3.58   -4.34   -4.96   -5.34   -5.35   -4.91   -4.01   -2.72   -1.12    0.76    3.00    5.79    9.26
+   170.0    0.00   -0.15   -0.56   -1.18   -1.94   -2.75   -3.57   -4.34   -4.97   -5.35   -5.36   -4.92   -4.02   -2.73   -1.14    0.73    2.97    5.77    9.23
+   175.0    0.00   -0.15   -0.57   -1.18   -1.93   -2.74   -3.57   -4.34   -4.98   -5.36   -5.37   -4.93   -4.03   -2.75   -1.17    0.69    2.93    5.74    9.20
+   180.0    0.00   -0.16   -0.57   -1.18   -1.92   -2.74   -3.56   -4.34   -4.98   -5.37   -5.38   -4.94   -4.04   -2.77   -1.21    0.63    2.88    5.71    9.17
+   185.0    0.00   -0.16   -0.57   -1.17   -1.91   -2.73   -3.56   -4.35   -4.99   -5.38   -5.38   -4.94   -4.05   -2.79   -1.25    0.58    2.83    5.69    9.16
+   190.0    0.00   -0.16   -0.57   -1.17   -1.90   -2.72   -3.56   -4.35   -5.00   -5.39   -5.39   -4.93   -4.05   -2.81   -1.29    0.53    2.79    5.68    9.18
+   195.0    0.00   -0.16   -0.56   -1.16   -1.90   -2.71   -3.55   -4.35   -5.01   -5.39   -5.38   -4.92   -4.04   -2.81   -1.31    0.49    2.76    5.69    9.22
+   200.0    0.00   -0.16   -0.56   -1.16   -1.89   -2.70   -3.55   -4.35   -5.01   -5.39   -5.37   -4.91   -4.02   -2.80   -1.32    0.48    2.76    5.72    9.30
+   205.0    0.00   -0.16   -0.56   -1.16   -1.88   -2.70   -3.55   -4.35   -5.01   -5.39   -5.36   -4.88   -3.99   -2.78   -1.30    0.49    2.79    5.79    9.40
+   210.0    0.00   -0.16   -0.56   -1.15   -1.88   -2.69   -3.54   -4.35   -5.01   -5.38   -5.34   -4.86   -3.96   -2.74   -1.27    0.53    2.85    5.88    9.53
+   215.0    0.00   -0.17   -0.56   -1.15   -1.88   -2.69   -3.54   -4.35   -5.01   -5.37   -5.32   -4.83   -3.92   -2.70   -1.21    0.60    2.93    5.99    9.69
+   220.0    0.00   -0.17   -0.57   -1.15   -1.87   -2.69   -3.54   -4.35   -5.00   -5.36   -5.31   -4.80   -3.88   -2.64   -1.14    0.69    3.04    6.13    9.85
+   225.0    0.00   -0.17   -0.57   -1.15   -1.87   -2.69   -3.54   -4.34   -4.99   -5.35   -5.29   -4.78   -3.85   -2.59   -1.06    0.79    3.17    6.27   10.02
+   230.0    0.00   -0.17   -0.57   -1.15   -1.88   -2.69   -3.53   -4.33   -4.98   -5.34   -5.28   -4.76   -3.82   -2.54   -0.98    0.90    3.30    6.41   10.17
+   235.0    0.00   -0.17   -0.57   -1.16   -1.88   -2.69   -3.53   -4.33   -4.97   -5.32   -5.27   -4.76   -3.81   -2.50   -0.91    1.01    3.43    6.54   10.30
+   240.0    0.00   -0.17   -0.57   -1.16   -1.88   -2.69   -3.52   -4.32   -4.96   -5.32   -5.27   -4.76   -3.81   -2.48   -0.85    1.11    3.55    6.65   10.40
+   245.0    0.00   -0.17   -0.58   -1.17   -1.89   -2.69   -3.52   -4.31   -4.95   -5.31   -5.28   -4.78   -3.82   -2.48   -0.82    1.18    3.64    6.72   10.45
+   250.0    0.00   -0.17   -0.58   -1.17   -1.89   -2.69   -3.52   -4.30   -4.93   -5.31   -5.29   -4.81   -3.86   -2.50   -0.80    1.23    3.69    6.76   10.46
+   255.0    0.00   -0.17   -0.58   -1.18   -1.90   -2.69   -3.51   -4.29   -4.92   -5.30   -5.30   -4.84   -3.90   -2.54   -0.82    1.24    3.71    6.75   10.43
+   260.0    0.00   -0.17   -0.58   -1.18   -1.90   -2.70   -3.51   -4.27   -4.91   -5.30   -5.32   -4.88   -3.96   -2.59   -0.86    1.22    3.69    6.70   10.36
+   265.0    0.00   -0.17   -0.58   -1.18   -1.91   -2.70   -3.50   -4.26   -4.90   -5.30   -5.34   -4.92   -4.02   -2.66   -0.92    1.16    3.63    6.61   10.26
+   270.0    0.00   -0.17   -0.58   -1.19   -1.91   -2.70   -3.50   -4.25   -4.89   -5.30   -5.36   -4.96   -4.08   -2.73   -0.99    1.08    3.53    6.49   10.15
+   275.0    0.00   -0.17   -0.58   -1.19   -1.91   -2.70   -3.49   -4.24   -4.88   -5.29   -5.37   -4.99   -4.13   -2.80   -1.08    0.98    3.41    6.35   10.04
+   280.0    0.00   -0.17   -0.58   -1.19   -1.91   -2.69   -3.48   -4.23   -4.87   -5.29   -5.37   -5.02   -4.17   -2.86   -1.16    0.86    3.26    6.20    9.93
+   285.0    0.00   -0.17   -0.58   -1.18   -1.91   -2.69   -3.47   -4.22   -4.86   -5.28   -5.37   -5.03   -4.20   -2.92   -1.25    0.74    3.11    6.05    9.85
+   290.0    0.00   -0.16   -0.58   -1.18   -1.90   -2.68   -3.46   -4.21   -4.85   -5.27   -5.37   -5.03   -4.21   -2.95   -1.33    0.62    2.96    5.90    9.79
+   295.0    0.00   -0.16   -0.57   -1.17   -1.89   -2.67   -3.45   -4.20   -4.84   -5.26   -5.35   -5.02   -4.21   -2.98   -1.39    0.51    2.82    5.78    9.77
+   300.0    0.00   -0.16   -0.57   -1.16   -1.88   -2.65   -3.44   -4.19   -4.83   -5.25   -5.34   -4.99   -4.19   -2.98   -1.44    0.42    2.69    5.68    9.78
+   305.0    0.00   -0.16   -0.56   -1.15   -1.87   -2.64   -3.42   -4.18   -4.82   -5.24   -5.32   -4.97   -4.17   -2.98   -1.47    0.34    2.59    5.61    9.82
+   310.0    0.00   -0.15   -0.56   -1.14   -1.85   -2.62   -3.41   -4.16   -4.81   -5.23   -5.30   -4.94   -4.14   -2.96   -1.49    0.28    2.51    5.57    9.87
+   315.0    0.00   -0.15   -0.55   -1.13   -1.83   -2.60   -3.39   -4.15   -4.80   -5.21   -5.28   -4.91   -4.10   -2.94   -1.49    0.24    2.46    5.55    9.94
+   320.0    0.00   -0.15   -0.54   -1.12   -1.82   -2.58   -3.38   -4.14   -4.79   -5.20   -5.26   -4.88   -4.07   -2.91   -1.49    0.22    2.43    5.55   10.00
+   325.0    0.00   -0.14   -0.53   -1.11   -1.80   -2.57   -3.36   -4.13   -4.78   -5.19   -5.24   -4.86   -4.04   -2.89   -1.49    0.21    2.43    5.57   10.04
+   330.0    0.00   -0.14   -0.53   -1.10   -1.79   -2.55   -3.34   -4.12   -4.77   -5.19   -5.23   -4.84   -4.02   -2.88   -1.48    0.21    2.43    5.60   10.06
+   335.0    0.00   -0.14   -0.52   -1.08   -1.77   -2.53   -3.33   -4.11   -4.77   -5.18   -5.22   -4.83   -4.01   -2.87   -1.48    0.21    2.45    5.62   10.04
+   340.0    0.00   -0.13   -0.51   -1.07   -1.76   -2.52   -3.32   -4.10   -4.76   -5.17   -5.22   -4.82   -4.01   -2.87   -1.48    0.22    2.47    5.64    9.99
+   345.0    0.00   -0.13   -0.50   -1.06   -1.75   -2.51   -3.31   -4.09   -4.75   -5.17   -5.22   -4.82   -4.01   -2.87   -1.48    0.23    2.49    5.65    9.90
+   350.0    0.00   -0.12   -0.49   -1.05   -1.74   -2.50   -3.30   -4.08   -4.74   -5.16   -5.21   -4.83   -4.02   -2.89   -1.49    0.24    2.51    5.65    9.79
+   355.0    0.00   -0.12   -0.49   -1.04   -1.73   -2.49   -3.29   -4.07   -4.73   -5.15   -5.21   -4.83   -4.03   -2.90   -1.50    0.24    2.52    5.63    9.65
+   360.0    0.00   -0.12   -0.48   -1.03   -1.72   -2.49   -3.29   -4.07   -4.73   -5.15   -5.20   -4.83   -4.05   -2.92   -1.50    0.25    2.53    5.61    9.51
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+JPLD/M_RA_SOP   NONE                                        TYPE / SERIAL NO    
+CONVERTED           TUM                      0    27-JAN-03 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+      0.60     -0.46     59.24                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.24   -0.92   -1.97   -3.28   -4.69   -6.05   -7.19   -7.97   -8.30   -8.14   -7.46   -6.27   -4.54   -2.20    0.87    4.79    9.56   14.88
+     0.0    0.00   -0.28   -1.01   -2.12   -3.49   -4.95   -6.35   -7.52   -8.32   -8.63   -8.43   -7.72   -6.51   -4.78   -2.47    0.58    4.48    9.16   14.25
+     5.0    0.00   -0.28   -1.01   -2.12   -3.48   -4.94   -6.34   -7.50   -8.30   -8.62   -8.42   -7.70   -6.48   -4.75   -2.42    0.63    4.53    9.23   14.33
+    10.0    0.00   -0.28   -1.01   -2.11   -3.46   -4.92   -6.32   -7.48   -8.27   -8.59   -8.39   -7.68   -6.46   -4.72   -2.38    0.69    4.60    9.32   14.45
+    15.0    0.00   -0.27   -1.00   -2.10   -3.45   -4.90   -6.29   -7.46   -8.25   -8.57   -8.37   -7.65   -6.43   -4.68   -2.33    0.75    4.69    9.43   14.61
+    20.0    0.00   -0.27   -0.99   -2.08   -3.43   -4.88   -6.27   -7.43   -8.22   -8.54   -8.35   -7.63   -6.40   -4.64   -2.28    0.83    4.78    9.56   14.80
+    25.0    0.00   -0.27   -0.98   -2.07   -3.41   -4.85   -6.24   -7.39   -8.19   -8.51   -8.32   -7.60   -6.37   -4.60   -2.22    0.90    4.89    9.71   15.02
+    30.0    0.00   -0.26   -0.98   -2.06   -3.39   -4.83   -6.21   -7.36   -8.15   -8.48   -8.29   -7.57   -6.33   -4.55   -2.15    0.99    5.00    9.87   15.25
+    35.0    0.00   -0.26   -0.97   -2.04   -3.37   -4.80   -6.17   -7.32   -8.11   -8.44   -8.25   -7.54   -6.29   -4.50   -2.09    1.08    5.12   10.03   15.48
+    40.0    0.00   -0.26   -0.96   -2.02   -3.34   -4.77   -6.13   -7.28   -8.07   -8.40   -8.21   -7.50   -6.25   -4.45   -2.02    1.17    5.25   10.19   15.70
+    45.0    0.00   -0.25   -0.95   -2.01   -3.32   -4.74   -6.10   -7.24   -8.03   -8.35   -8.17   -7.45   -6.20   -4.40   -1.95    1.26    5.36   10.34   15.89
+    50.0    0.00   -0.25   -0.94   -1.99   -3.29   -4.70   -6.06   -7.19   -7.98   -8.31   -8.12   -7.40   -6.15   -4.34   -1.88    1.34    5.46   10.46   16.05
+    55.0    0.00   -0.24   -0.93   -1.97   -3.27   -4.67   -6.02   -7.15   -7.93   -8.25   -8.07   -7.35   -6.10   -4.28   -1.82    1.41    5.54   10.55   16.15
+    60.0    0.00   -0.24   -0.92   -1.95   -3.24   -4.64   -5.98   -7.10   -7.88   -8.20   -8.01   -7.30   -6.04   -4.23   -1.76    1.47    5.59   10.60   16.20
+    65.0    0.00   -0.24   -0.91   -1.94   -3.22   -4.60   -5.94   -7.06   -7.83   -8.15   -7.96   -7.24   -5.99   -4.18   -1.72    1.50    5.61   10.60   16.20
+    70.0    0.00   -0.23   -0.90   -1.92   -3.19   -4.57   -5.90   -7.02   -7.79   -8.10   -7.91   -7.19   -5.94   -4.14   -1.70    1.50    5.60   10.57   16.14
+    75.0    0.00   -0.23   -0.89   -1.91   -3.17   -4.55   -5.87   -6.98   -7.75   -8.06   -7.87   -7.15   -5.91   -4.12   -1.70    1.48    5.55   10.50   16.04
+    80.0    0.00   -0.23   -0.88   -1.89   -3.16   -4.53   -5.84   -6.95   -7.72   -8.03   -7.83   -7.12   -5.89   -4.11   -1.71    1.44    5.47   10.39   15.91
+    85.0    0.00   -0.22   -0.87   -1.88   -3.14   -4.51   -5.82   -6.93   -7.69   -8.00   -7.81   -7.10   -5.88   -4.13   -1.75    1.36    5.36   10.25   15.74
+    90.0    0.00   -0.22   -0.87   -1.87   -3.13   -4.49   -5.81   -6.92   -7.68   -7.99   -7.80   -7.10   -5.90   -4.16   -1.82    1.27    5.24   10.09   15.56
+    95.0    0.00   -0.22   -0.86   -1.87   -3.12   -4.49   -5.80   -6.91   -7.68   -7.99   -7.81   -7.12   -5.93   -4.21   -1.90    1.16    5.10    9.92   15.37
+   100.0    0.00   -0.21   -0.86   -1.87   -3.12   -4.48   -5.80   -6.91   -7.68   -8.01   -7.84   -7.16   -5.98   -4.29   -1.99    1.04    4.96    9.76   15.18
+   105.0    0.00   -0.21   -0.86   -1.86   -3.12   -4.49   -5.81   -6.93   -7.70   -8.04   -7.88   -7.21   -6.05   -4.37   -2.09    0.93    4.82    9.60   15.00
+   110.0    0.00   -0.21   -0.86   -1.87   -3.13   -4.50   -5.82   -6.95   -7.73   -8.07   -7.93   -7.28   -6.13   -4.47   -2.20    0.81    4.69    9.46   14.84
+   115.0    0.00   -0.21   -0.86   -1.87   -3.13   -4.51   -5.84   -6.97   -7.76   -8.12   -7.99   -7.35   -6.22   -4.56   -2.30    0.71    4.59    9.34   14.71
+   120.0    0.00   -0.21   -0.86   -1.87   -3.15   -4.53   -5.87   -7.00   -7.80   -8.17   -8.05   -7.43   -6.31   -4.66   -2.39    0.62    4.50    9.24   14.60
+   125.0    0.00   -0.21   -0.86   -1.88   -3.16   -4.55   -5.89   -7.04   -7.85   -8.22   -8.12   -7.51   -6.39   -4.74   -2.47    0.55    4.44    9.18   14.52
+   130.0    0.00   -0.21   -0.86   -1.89   -3.17   -4.57   -5.92   -7.07   -7.89   -8.27   -8.18   -7.58   -6.47   -4.81   -2.53    0.51    4.40    9.13   14.47
+   135.0    0.00   -0.21   -0.86   -1.90   -3.19   -4.60   -5.95   -7.11   -7.93   -8.32   -8.23   -7.64   -6.53   -4.87   -2.57    0.47    4.37    9.11   14.44
+   140.0    0.00   -0.21   -0.87   -1.91   -3.21   -4.62   -5.98   -7.14   -7.96   -8.36   -8.28   -7.69   -6.58   -4.91   -2.60    0.46    4.37    9.10   14.43
+   145.0    0.00   -0.21   -0.87   -1.91   -3.22   -4.64   -6.01   -7.17   -8.00   -8.39   -8.31   -7.72   -6.61   -4.93   -2.62    0.45    4.36    9.10   14.44
+   150.0    0.00   -0.21   -0.87   -1.92   -3.24   -4.66   -6.04   -7.20   -8.02   -8.42   -8.33   -7.74   -6.63   -4.94   -2.62    0.45    4.37    9.10   14.45
+   155.0    0.00   -0.21   -0.87   -1.93   -3.25   -4.68   -6.06   -7.22   -8.05   -8.44   -8.35   -7.75   -6.63   -4.94   -2.62    0.46    4.36    9.10   14.46
+   160.0    0.00   -0.21   -0.88   -1.93   -3.26   -4.69   -6.07   -7.24   -8.06   -8.45   -8.35   -7.75   -6.62   -4.94   -2.61    0.45    4.36    9.09   14.46
+   165.0    0.00   -0.21   -0.88   -1.94   -3.27   -4.70   -6.09   -7.25   -8.07   -8.46   -8.35   -7.74   -6.61   -4.93   -2.61    0.45    4.34    9.08   14.46
+   170.0    0.00   -0.21   -0.88   -1.94   -3.27   -4.71   -6.10   -7.26   -8.08   -8.46   -8.35   -7.73   -6.60   -4.92   -2.61    0.43    4.32    9.05   14.44
+   175.0    0.00   -0.21   -0.88   -1.94   -3.27   -4.71   -6.10   -7.27   -8.08   -8.46   -8.34   -7.72   -6.59   -4.91   -2.61    0.42    4.29    9.02   14.41
+   180.0    0.00   -0.21   -0.88   -1.94   -3.27   -4.71   -6.10   -7.27   -8.08   -8.46   -8.34   -7.71   -6.57   -4.90   -2.62    0.40    4.26    9.00   14.38
+   185.0    0.00   -0.21   -0.88   -1.93   -3.26   -4.70   -6.09   -7.26   -8.08   -8.45   -8.33   -7.70   -6.56   -4.90   -2.62    0.38    4.24    8.98   14.35
+   190.0    0.00   -0.21   -0.87   -1.93   -3.25   -4.69   -6.08   -7.25   -8.07   -8.44   -8.32   -7.69   -6.55   -4.89   -2.62    0.38    4.24    8.98   14.33
+   195.0    0.00   -0.21   -0.87   -1.92   -3.24   -4.68   -6.07   -7.24   -8.06   -8.43   -8.30   -7.67   -6.54   -4.88   -2.61    0.39    4.26    9.00   14.33
+   200.0    0.00   -0.21   -0.87   -1.92   -3.23   -4.67   -6.05   -7.22   -8.04   -8.41   -8.29   -7.65   -6.52   -4.86   -2.59    0.42    4.30    9.06   14.37
+   205.0    0.00   -0.21   -0.87   -1.91   -3.22   -4.65   -6.03   -7.20   -8.02   -8.39   -8.26   -7.62   -6.48   -4.82   -2.55    0.47    4.38    9.15   14.44
+   210.0    0.00   -0.21   -0.87   -1.90   -3.21   -4.63   -6.01   -7.18   -8.00   -8.36   -8.23   -7.58   -6.44   -4.77   -2.49    0.55    4.48    9.28   14.55
+   215.0    0.00   -0.21   -0.87   -1.90   -3.20   -4.61   -5.99   -7.15   -7.97   -8.33   -8.18   -7.53   -6.38   -4.70   -2.41    0.65    4.61    9.43   14.69
+   220.0    0.00   -0.21   -0.87   -1.89   -3.19   -4.60   -5.97   -7.13   -7.93   -8.28   -8.13   -7.47   -6.31   -4.62   -2.31    0.78    4.77    9.61   14.87
+   225.0    0.00   -0.21   -0.87   -1.89   -3.18   -4.58   -5.94   -7.10   -7.89   -8.24   -8.07   -7.40   -6.22   -4.52   -2.19    0.91    4.93    9.80   15.07
+   230.0    0.00   -0.21   -0.87   -1.89   -3.17   -4.57   -5.92   -7.07   -7.85   -8.18   -8.01   -7.32   -6.13   -4.41   -2.07    1.06    5.10    9.98   15.28
+   235.0    0.00   -0.22   -0.87   -1.89   -3.16   -4.56   -5.90   -7.03   -7.81   -8.13   -7.94   -7.24   -6.03   -4.30   -1.94    1.20    5.25   10.15   15.47
+   240.0    0.00   -0.22   -0.87   -1.89   -3.16   -4.55   -5.88   -7.01   -7.77   -8.07   -7.87   -7.16   -5.94   -4.19   -1.82    1.33    5.39   10.29   15.63
+   245.0    0.00   -0.22   -0.87   -1.89   -3.16   -4.54   -5.87   -6.98   -7.73   -8.02   -7.81   -7.08   -5.86   -4.10   -1.71    1.44    5.49   10.39   15.74
+   250.0    0.00   -0.22   -0.88   -1.90   -3.17   -4.54   -5.86   -6.96   -7.70   -7.98   -7.76   -7.02   -5.79   -4.01   -1.62    1.53    5.56   10.44   15.79
+   255.0    0.00   -0.23   -0.88   -1.90   -3.17   -4.54   -5.86   -6.95   -7.68   -7.95   -7.72   -6.98   -5.73   -3.96   -1.56    1.58    5.58   10.43   15.78
+   260.0    0.00   -0.23   -0.89   -1.91   -3.18   -4.55   -5.86   -6.94   -7.66   -7.93   -7.70   -6.96   -5.71   -3.92   -1.53    1.59    5.57   10.37   15.71
+   265.0    0.00   -0.23   -0.90   -1.92   -3.19   -4.56   -5.86   -6.94   -7.66   -7.93   -7.70   -6.96   -5.70   -3.92   -1.53    1.57    5.51   10.26   15.58
+   270.0    0.00   -0.24   -0.91   -1.94   -3.21   -4.58   -5.88   -6.95   -7.67   -7.94   -7.71   -6.98   -5.73   -3.94   -1.56    1.52    5.41   10.11   15.40
+   275.0    0.00   -0.24   -0.92   -1.95   -3.23   -4.60   -5.90   -6.97   -7.69   -7.96   -7.74   -7.02   -5.77   -4.00   -1.62    1.44    5.28    9.93   15.20
+   280.0    0.00   -0.25   -0.93   -1.97   -3.25   -4.62   -5.93   -7.00   -7.72   -8.00   -7.79   -7.07   -5.84   -4.07   -1.71    1.33    5.14    9.74   14.98
+   285.0    0.00   -0.25   -0.94   -1.98   -3.27   -4.65   -5.96   -7.04   -7.77   -8.06   -7.86   -7.15   -5.92   -4.16   -1.81    1.21    4.99    9.55   14.77
+   290.0    0.00   -0.25   -0.95   -2.00   -3.30   -4.69   -6.00   -7.09   -7.82   -8.12   -7.93   -7.23   -6.01   -4.26   -1.92    1.08    4.84    9.38   14.58
+   295.0    0.00   -0.26   -0.96   -2.02   -3.33   -4.72   -6.04   -7.14   -7.88   -8.19   -8.00   -7.31   -6.11   -4.36   -2.04    0.96    4.70    9.23   14.43
+   300.0    0.00   -0.26   -0.97   -2.04   -3.35   -4.76   -6.09   -7.19   -7.95   -8.26   -8.08   -7.40   -6.20   -4.47   -2.15    0.83    4.58    9.10   14.31
+   305.0    0.00   -0.26   -0.98   -2.05   -3.38   -4.79   -6.14   -7.25   -8.01   -8.33   -8.16   -7.48   -6.29   -4.57   -2.26    0.73    4.47    9.01   14.22
+   310.0    0.00   -0.27   -0.98   -2.07   -3.40   -4.83   -6.18   -7.31   -8.08   -8.40   -8.23   -7.56   -6.37   -4.66   -2.35    0.63    4.40    8.96   14.17
+   315.0    0.00   -0.27   -0.99   -2.08   -3.43   -4.86   -6.23   -7.36   -8.14   -8.47   -8.30   -7.62   -6.44   -4.73   -2.43    0.56    4.34    8.93   14.15
+   320.0    0.00   -0.27   -1.00   -2.10   -3.45   -4.89   -6.27   -7.41   -8.19   -8.52   -8.35   -7.67   -6.49   -4.79   -2.49    0.50    4.31    8.92   14.15
+   325.0    0.00   -0.28   -1.01   -2.11   -3.46   -4.92   -6.30   -7.45   -8.24   -8.57   -8.39   -7.71   -6.53   -4.83   -2.54    0.47    4.29    8.93   14.15
+   330.0    0.00   -0.28   -1.01   -2.12   -3.48   -4.94   -6.33   -7.49   -8.28   -8.61   -8.43   -7.74   -6.56   -4.86   -2.56    0.45    4.29    8.95   14.16
+   335.0    0.00   -0.28   -1.02   -2.13   -3.49   -4.95   -6.35   -7.51   -8.31   -8.63   -8.45   -7.76   -6.57   -4.87   -2.57    0.45    4.31    8.98   14.16
+   340.0    0.00   -0.28   -1.02   -2.13   -3.50   -4.96   -6.36   -7.53   -8.33   -8.65   -8.46   -7.77   -6.57   -4.87   -2.57    0.46    4.33    9.01   14.16
+   345.0    0.00   -0.28   -1.02   -2.13   -3.50   -4.97   -6.37   -7.54   -8.33   -8.66   -8.46   -7.76   -6.57   -4.86   -2.56    0.48    4.36    9.04   14.16
+   350.0    0.00   -0.28   -1.02   -2.13   -3.50   -4.97   -6.37   -7.54   -8.34   -8.66   -8.46   -7.75   -6.55   -4.84   -2.53    0.51    4.39    9.07   14.17
+   355.0    0.00   -0.28   -1.02   -2.13   -3.49   -4.96   -6.37   -7.54   -8.33   -8.65   -8.45   -7.74   -6.53   -4.81   -2.50    0.54    4.43    9.11   14.20
+   360.0    0.00   -0.28   -1.01   -2.12   -3.49   -4.95   -6.35   -7.52   -8.32   -8.63   -8.43   -7.72   -6.51   -4.78   -2.47    0.58    4.48    9.16   14.25
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.10     -0.62     88.06                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.13   -0.52   -1.10   -1.82   -2.62   -3.43   -4.21   -4.85   -5.23   -5.25   -4.83   -3.98   -2.75   -1.23    0.59    2.86    5.83    9.66
+     0.0    0.00   -0.12   -0.48   -1.03   -1.72   -2.49   -3.29   -4.07   -4.73   -5.15   -5.20   -4.83   -4.05   -2.92   -1.50    0.25    2.53    5.61    9.51
+     5.0    0.00   -0.11   -0.47   -1.03   -1.71   -2.48   -3.29   -4.06   -4.72   -5.13   -5.20   -4.83   -4.05   -2.93   -1.51    0.25    2.54    5.58    9.37
+    10.0    0.00   -0.11   -0.47   -1.02   -1.71   -2.48   -3.28   -4.05   -4.71   -5.12   -5.19   -4.83   -4.06   -2.93   -1.51    0.26    2.55    5.55    9.26
+    15.0    0.00   -0.11   -0.46   -1.01   -1.71   -2.48   -3.28   -4.05   -4.70   -5.11   -5.17   -4.82   -4.05   -2.93   -1.50    0.27    2.55    5.53    9.17
+    20.0    0.00   -0.10   -0.45   -1.01   -1.70   -2.48   -3.28   -4.04   -4.69   -5.10   -5.16   -4.81   -4.04   -2.92   -1.48    0.29    2.57    5.52    9.12
+    25.0    0.00   -0.10   -0.45   -1.00   -1.70   -2.47   -3.28   -4.04   -4.68   -5.08   -5.14   -4.79   -4.02   -2.89   -1.45    0.32    2.59    5.52    9.12
+    30.0    0.00   -0.10   -0.44   -1.00   -1.69   -2.47   -3.27   -4.03   -4.67   -5.07   -5.13   -4.77   -3.99   -2.86   -1.41    0.36    2.61    5.53    9.16
+    35.0    0.00   -0.09   -0.44   -0.99   -1.69   -2.47   -3.27   -4.03   -4.66   -5.06   -5.11   -4.75   -3.96   -2.81   -1.36    0.41    2.65    5.57    9.23
+    40.0    0.00   -0.09   -0.44   -0.99   -1.68   -2.46   -3.27   -4.03   -4.66   -5.05   -5.10   -4.72   -3.92   -2.76   -1.30    0.47    2.69    5.61    9.34
+    45.0    0.00   -0.09   -0.43   -0.98   -1.68   -2.46   -3.26   -4.02   -4.66   -5.05   -5.09   -4.70   -3.88   -2.70   -1.23    0.53    2.74    5.66    9.47
+    50.0    0.00   -0.09   -0.43   -0.98   -1.67   -2.46   -3.26   -4.03   -4.66   -5.05   -5.08   -4.68   -3.84   -2.65   -1.17    0.59    2.79    5.72    9.60
+    55.0    0.00   -0.09   -0.43   -0.98   -1.67   -2.45   -3.26   -4.03   -4.66   -5.05   -5.07   -4.66   -3.81   -2.59   -1.11    0.65    2.84    5.77    9.73
+    60.0    0.00   -0.09   -0.43   -0.98   -1.67   -2.46   -3.27   -4.04   -4.67   -5.06   -5.07   -4.64   -3.77   -2.55   -1.05    0.70    2.88    5.81    9.83
+    65.0    0.00   -0.09   -0.43   -0.98   -1.67   -2.46   -3.27   -4.05   -4.69   -5.07   -5.07   -4.63   -3.75   -2.51   -1.02    0.74    2.91    5.84    9.91
+    70.0    0.00   -0.09   -0.43   -0.98   -1.68   -2.47   -3.29   -4.06   -4.70   -5.08   -5.08   -4.63   -3.74   -2.49   -0.99    0.75    2.92    5.85    9.95
+    75.0    0.00   -0.09   -0.43   -0.99   -1.69   -2.48   -3.30   -4.08   -4.72   -5.10   -5.09   -4.63   -3.74   -2.49   -0.99    0.76    2.92    5.85    9.96
+    80.0    0.00   -0.09   -0.44   -0.99   -1.70   -2.50   -3.32   -4.11   -4.74   -5.12   -5.11   -4.64   -3.74   -2.50   -1.00    0.74    2.90    5.82    9.93
+    85.0    0.00   -0.10   -0.44   -1.00   -1.71   -2.52   -3.35   -4.13   -4.77   -5.14   -5.12   -4.66   -3.76   -2.52   -1.03    0.71    2.86    5.78    9.86
+    90.0    0.00   -0.10   -0.45   -1.02   -1.73   -2.54   -3.37   -4.16   -4.79   -5.16   -5.14   -4.68   -3.79   -2.56   -1.07    0.66    2.82    5.73    9.78
+    95.0    0.00   -0.10   -0.46   -1.03   -1.75   -2.57   -3.40   -4.19   -4.82   -5.18   -5.16   -4.70   -3.82   -2.60   -1.12    0.61    2.77    5.67    9.68
+   100.0    0.00   -0.10   -0.47   -1.05   -1.78   -2.59   -3.43   -4.22   -4.84   -5.20   -5.18   -4.73   -3.86   -2.65   -1.18    0.56    2.72    5.61    9.58
+   105.0    0.00   -0.11   -0.48   -1.06   -1.80   -2.62   -3.46   -4.24   -4.87   -5.22   -5.20   -4.75   -3.90   -2.70   -1.23    0.52    2.68    5.56    9.48
+   110.0    0.00   -0.11   -0.49   -1.08   -1.82   -2.65   -3.49   -4.27   -4.89   -5.24   -5.22   -4.78   -3.93   -2.74   -1.27    0.48    2.66    5.53    9.40
+   115.0    0.00   -0.12   -0.50   -1.10   -1.85   -2.68   -3.52   -4.29   -4.90   -5.25   -5.24   -4.80   -3.96   -2.77   -1.30    0.46    2.65    5.51    9.33
+   120.0    0.00   -0.12   -0.51   -1.11   -1.87   -2.70   -3.54   -4.31   -4.92   -5.26   -5.25   -4.83   -3.99   -2.79   -1.31    0.46    2.66    5.51    9.29
+   125.0    0.00   -0.12   -0.52   -1.13   -1.89   -2.72   -3.56   -4.32   -4.93   -5.27   -5.26   -4.84   -4.00   -2.80   -1.31    0.48    2.69    5.53    9.26
+   130.0    0.00   -0.13   -0.52   -1.14   -1.91   -2.74   -3.57   -4.33   -4.93   -5.28   -5.28   -4.86   -4.01   -2.80   -1.29    0.52    2.73    5.57    9.26
+   135.0    0.00   -0.13   -0.53   -1.15   -1.92   -2.75   -3.58   -4.34   -4.94   -5.29   -5.29   -4.87   -4.02   -2.79   -1.26    0.57    2.79    5.61    9.27
+   140.0    0.00   -0.13   -0.54   -1.16   -1.93   -2.76   -3.59   -4.34   -4.94   -5.29   -5.30   -4.87   -4.02   -2.78   -1.22    0.62    2.85    5.66    9.28
+   145.0    0.00   -0.14   -0.55   -1.17   -1.94   -2.77   -3.59   -4.34   -4.95   -5.30   -5.30   -4.88   -4.01   -2.75   -1.18    0.67    2.91    5.71    9.29
+   150.0    0.00   -0.14   -0.55   -1.18   -1.95   -2.77   -3.59   -4.34   -4.95   -5.31   -5.31   -4.89   -4.01   -2.74   -1.15    0.72    2.95    5.75    9.30
+   155.0    0.00   -0.14   -0.56   -1.18   -1.95   -2.77   -3.59   -4.34   -4.95   -5.32   -5.32   -4.89   -4.01   -2.72   -1.12    0.75    2.99    5.78    9.30
+   160.0    0.00   -0.15   -0.56   -1.18   -1.95   -2.77   -3.59   -4.34   -4.96   -5.33   -5.34   -4.90   -4.01   -2.72   -1.11    0.76    3.00    5.79    9.28
+   165.0    0.00   -0.15   -0.56   -1.18   -1.94   -2.76   -3.58   -4.34   -4.96   -5.34   -5.35   -4.91   -4.01   -2.72   -1.12    0.76    3.00    5.79    9.26
+   170.0    0.00   -0.15   -0.56   -1.18   -1.94   -2.75   -3.57   -4.34   -4.97   -5.35   -5.36   -4.92   -4.02   -2.73   -1.14    0.73    2.97    5.77    9.23
+   175.0    0.00   -0.15   -0.57   -1.18   -1.93   -2.74   -3.57   -4.34   -4.98   -5.36   -5.37   -4.93   -4.03   -2.75   -1.17    0.69    2.93    5.74    9.20
+   180.0    0.00   -0.16   -0.57   -1.18   -1.92   -2.74   -3.56   -4.34   -4.98   -5.37   -5.38   -4.94   -4.04   -2.77   -1.21    0.63    2.88    5.71    9.17
+   185.0    0.00   -0.16   -0.57   -1.17   -1.91   -2.73   -3.56   -4.35   -4.99   -5.38   -5.38   -4.94   -4.05   -2.79   -1.25    0.58    2.83    5.69    9.16
+   190.0    0.00   -0.16   -0.57   -1.17   -1.90   -2.72   -3.56   -4.35   -5.00   -5.39   -5.39   -4.93   -4.05   -2.81   -1.29    0.53    2.79    5.68    9.18
+   195.0    0.00   -0.16   -0.56   -1.16   -1.90   -2.71   -3.55   -4.35   -5.01   -5.39   -5.38   -4.92   -4.04   -2.81   -1.31    0.49    2.76    5.69    9.22
+   200.0    0.00   -0.16   -0.56   -1.16   -1.89   -2.70   -3.55   -4.35   -5.01   -5.39   -5.37   -4.91   -4.02   -2.80   -1.32    0.48    2.76    5.72    9.30
+   205.0    0.00   -0.16   -0.56   -1.16   -1.88   -2.70   -3.55   -4.35   -5.01   -5.39   -5.36   -4.88   -3.99   -2.78   -1.30    0.49    2.79    5.79    9.40
+   210.0    0.00   -0.16   -0.56   -1.15   -1.88   -2.69   -3.54   -4.35   -5.01   -5.38   -5.34   -4.86   -3.96   -2.74   -1.27    0.53    2.85    5.88    9.53
+   215.0    0.00   -0.17   -0.56   -1.15   -1.88   -2.69   -3.54   -4.35   -5.01   -5.37   -5.32   -4.83   -3.92   -2.70   -1.21    0.60    2.93    5.99    9.69
+   220.0    0.00   -0.17   -0.57   -1.15   -1.87   -2.69   -3.54   -4.35   -5.00   -5.36   -5.31   -4.80   -3.88   -2.64   -1.14    0.69    3.04    6.13    9.85
+   225.0    0.00   -0.17   -0.57   -1.15   -1.87   -2.69   -3.54   -4.34   -4.99   -5.35   -5.29   -4.78   -3.85   -2.59   -1.06    0.79    3.17    6.27   10.02
+   230.0    0.00   -0.17   -0.57   -1.15   -1.88   -2.69   -3.53   -4.33   -4.98   -5.34   -5.28   -4.76   -3.82   -2.54   -0.98    0.90    3.30    6.41   10.17
+   235.0    0.00   -0.17   -0.57   -1.16   -1.88   -2.69   -3.53   -4.33   -4.97   -5.32   -5.27   -4.76   -3.81   -2.50   -0.91    1.01    3.43    6.54   10.30
+   240.0    0.00   -0.17   -0.57   -1.16   -1.88   -2.69   -3.52   -4.32   -4.96   -5.32   -5.27   -4.76   -3.81   -2.48   -0.85    1.11    3.55    6.65   10.40
+   245.0    0.00   -0.17   -0.58   -1.17   -1.89   -2.69   -3.52   -4.31   -4.95   -5.31   -5.28   -4.78   -3.82   -2.48   -0.82    1.18    3.64    6.72   10.45
+   250.0    0.00   -0.17   -0.58   -1.17   -1.89   -2.69   -3.52   -4.30   -4.93   -5.31   -5.29   -4.81   -3.86   -2.50   -0.80    1.23    3.69    6.76   10.46
+   255.0    0.00   -0.17   -0.58   -1.18   -1.90   -2.69   -3.51   -4.29   -4.92   -5.30   -5.30   -4.84   -3.90   -2.54   -0.82    1.24    3.71    6.75   10.43
+   260.0    0.00   -0.17   -0.58   -1.18   -1.90   -2.70   -3.51   -4.27   -4.91   -5.30   -5.32   -4.88   -3.96   -2.59   -0.86    1.22    3.69    6.70   10.36
+   265.0    0.00   -0.17   -0.58   -1.18   -1.91   -2.70   -3.50   -4.26   -4.90   -5.30   -5.34   -4.92   -4.02   -2.66   -0.92    1.16    3.63    6.61   10.26
+   270.0    0.00   -0.17   -0.58   -1.19   -1.91   -2.70   -3.50   -4.25   -4.89   -5.30   -5.36   -4.96   -4.08   -2.73   -0.99    1.08    3.53    6.49   10.15
+   275.0    0.00   -0.17   -0.58   -1.19   -1.91   -2.70   -3.49   -4.24   -4.88   -5.29   -5.37   -4.99   -4.13   -2.80   -1.08    0.98    3.41    6.35   10.04
+   280.0    0.00   -0.17   -0.58   -1.19   -1.91   -2.69   -3.48   -4.23   -4.87   -5.29   -5.37   -5.02   -4.17   -2.86   -1.16    0.86    3.26    6.20    9.93
+   285.0    0.00   -0.17   -0.58   -1.18   -1.91   -2.69   -3.47   -4.22   -4.86   -5.28   -5.37   -5.03   -4.20   -2.92   -1.25    0.74    3.11    6.05    9.85
+   290.0    0.00   -0.16   -0.58   -1.18   -1.90   -2.68   -3.46   -4.21   -4.85   -5.27   -5.37   -5.03   -4.21   -2.95   -1.33    0.62    2.96    5.90    9.79
+   295.0    0.00   -0.16   -0.57   -1.17   -1.89   -2.67   -3.45   -4.20   -4.84   -5.26   -5.35   -5.02   -4.21   -2.98   -1.39    0.51    2.82    5.78    9.77
+   300.0    0.00   -0.16   -0.57   -1.16   -1.88   -2.65   -3.44   -4.19   -4.83   -5.25   -5.34   -4.99   -4.19   -2.98   -1.44    0.42    2.69    5.68    9.78
+   305.0    0.00   -0.16   -0.56   -1.15   -1.87   -2.64   -3.42   -4.18   -4.82   -5.24   -5.32   -4.97   -4.17   -2.98   -1.47    0.34    2.59    5.61    9.82
+   310.0    0.00   -0.15   -0.56   -1.14   -1.85   -2.62   -3.41   -4.16   -4.81   -5.23   -5.30   -4.94   -4.14   -2.96   -1.49    0.28    2.51    5.57    9.87
+   315.0    0.00   -0.15   -0.55   -1.13   -1.83   -2.60   -3.39   -4.15   -4.80   -5.21   -5.28   -4.91   -4.10   -2.94   -1.49    0.24    2.46    5.55    9.94
+   320.0    0.00   -0.15   -0.54   -1.12   -1.82   -2.58   -3.38   -4.14   -4.79   -5.20   -5.26   -4.88   -4.07   -2.91   -1.49    0.22    2.43    5.55   10.00
+   325.0    0.00   -0.14   -0.53   -1.11   -1.80   -2.57   -3.36   -4.13   -4.78   -5.19   -5.24   -4.86   -4.04   -2.89   -1.49    0.21    2.43    5.57   10.04
+   330.0    0.00   -0.14   -0.53   -1.10   -1.79   -2.55   -3.34   -4.12   -4.77   -5.19   -5.23   -4.84   -4.02   -2.88   -1.48    0.21    2.43    5.60   10.06
+   335.0    0.00   -0.14   -0.52   -1.08   -1.77   -2.53   -3.33   -4.11   -4.77   -5.18   -5.22   -4.83   -4.01   -2.87   -1.48    0.21    2.45    5.62   10.04
+   340.0    0.00   -0.13   -0.51   -1.07   -1.76   -2.52   -3.32   -4.10   -4.76   -5.17   -5.22   -4.82   -4.01   -2.87   -1.48    0.22    2.47    5.64    9.99
+   345.0    0.00   -0.13   -0.50   -1.06   -1.75   -2.51   -3.31   -4.09   -4.75   -5.17   -5.22   -4.82   -4.01   -2.87   -1.48    0.23    2.49    5.65    9.90
+   350.0    0.00   -0.12   -0.49   -1.05   -1.74   -2.50   -3.30   -4.08   -4.74   -5.16   -5.21   -4.83   -4.02   -2.89   -1.49    0.24    2.51    5.65    9.79
+   355.0    0.00   -0.12   -0.49   -1.04   -1.73   -2.49   -3.29   -4.07   -4.73   -5.15   -5.21   -4.83   -4.03   -2.90   -1.50    0.24    2.52    5.63    9.65
+   360.0    0.00   -0.12   -0.48   -1.03   -1.72   -2.49   -3.29   -4.07   -4.73   -5.15   -5.20   -4.83   -4.05   -2.92   -1.50    0.25    2.53    5.61    9.51
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+JPSLEGANT_E     NONE                                        TYPE / SERIAL NO    
+FIELD               NGS/TUM                  3    10-AUG-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      1.30     -0.36     34.84                              NORTH / EAST / UP   
+   NOAZI    0.00   -1.74   -2.62   -2.87   -2.88   -2.69   -2.55   -2.29   -2.07   -1.80   -1.64   -1.46   -1.27   -0.94   -0.10    1.47    4.09
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      1.60     -1.72     53.86                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.23   -0.32   -0.30   -0.32   -0.22   -0.13   -0.11   -0.05   -0.03    0.05    0.37    0.62    0.85    0.97    0.89    0.66
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+JPSODYSSEY_I    NONE                                        TYPE / SERIAL NO    
+FIELD               NGS/TUM                  1    10-AUG-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      1.00     -2.36     69.74                              NORTH / EAST / UP   
+   NOAZI    0.00    0.46    0.78    0.93    0.92    0.81    0.55    0.41    0.23    0.10    0.16    0.34    0.53    0.76    1.20    1.87    3.09
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.40     -2.32     80.96                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.03   -0.02   -0.00   -0.02   -0.02   -0.03   -0.11   -0.15   -0.23   -0.15    0.07    0.22    0.25    0.07   -0.51   -1.34
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+JPSREGANT_DD_E  NONE                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH              12    27-JAN-03 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+      0.14     -0.27    100.81                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.10   -0.40   -0.92   -1.65   -2.53   -3.47   -4.33   -5.00   -5.38   -5.47   -5.25   -4.70   -3.76   -2.30   -0.15    2.71    6.16    9.79
+     0.0    0.00   -0.07   -0.37   -0.89   -1.64   -2.54   -3.47   -4.30   -4.92   -5.26   -5.33   -5.14   -4.68   -3.84   -2.46   -0.36    2.51    5.99    9.67
+     5.0    0.00   -0.08   -0.37   -0.90   -1.65   -2.56   -3.50   -4.35   -4.97   -5.32   -5.40   -5.22   -4.77   -3.94   -2.57   -0.49    2.38    5.87    9.58
+    10.0    0.00   -0.08   -0.38   -0.91   -1.67   -2.58   -3.53   -4.38   -5.02   -5.39   -5.48   -5.31   -4.86   -4.05   -2.69   -0.62    2.25    5.76    9.50
+    15.0    0.00   -0.08   -0.38   -0.92   -1.68   -2.60   -3.55   -4.42   -5.07   -5.45   -5.55   -5.40   -4.96   -4.15   -2.81   -0.74    2.12    5.65    9.43
+    20.0    0.00   -0.08   -0.38   -0.92   -1.69   -2.61   -3.57   -4.45   -5.12   -5.51   -5.63   -5.48   -5.05   -4.25   -2.91   -0.85    2.02    5.58    9.38
+    25.0    0.00   -0.08   -0.39   -0.93   -1.69   -2.62   -3.59   -4.47   -5.16   -5.57   -5.70   -5.56   -5.13   -4.33   -2.99   -0.93    1.96    5.54    9.37
+    30.0    0.00   -0.08   -0.39   -0.93   -1.70   -2.62   -3.60   -4.50   -5.19   -5.62   -5.76   -5.62   -5.19   -4.39   -3.04   -0.97    1.93    5.54    9.39
+    35.0    0.00   -0.09   -0.39   -0.94   -1.70   -2.63   -3.61   -4.51   -5.22   -5.65   -5.80   -5.66   -5.22   -4.41   -3.05   -0.97    1.95    5.58    9.45
+    40.0    0.00   -0.09   -0.39   -0.94   -1.70   -2.62   -3.61   -4.52   -5.24   -5.68   -5.82   -5.68   -5.23   -4.40   -3.03   -0.93    2.00    5.65    9.54
+    45.0    0.00   -0.09   -0.40   -0.94   -1.70   -2.62   -3.61   -4.52   -5.24   -5.69   -5.83   -5.67   -5.20   -4.35   -2.97   -0.85    2.09    5.75    9.65
+    50.0    0.00   -0.09   -0.40   -0.93   -1.69   -2.61   -3.60   -4.52   -5.24   -5.68   -5.81   -5.64   -5.15   -4.28   -2.87   -0.75    2.20    5.87    9.77
+    55.0    0.00   -0.09   -0.40   -0.93   -1.68   -2.60   -3.58   -4.50   -5.22   -5.66   -5.78   -5.58   -5.07   -4.18   -2.76   -0.64    2.31    5.97    9.88
+    60.0    0.00   -0.09   -0.40   -0.93   -1.68   -2.59   -3.57   -4.47   -5.19   -5.61   -5.72   -5.51   -4.98   -4.07   -2.64   -0.52    2.42    6.06    9.97
+    65.0    0.00   -0.09   -0.40   -0.93   -1.67   -2.57   -3.54   -4.44   -5.15   -5.56   -5.65   -5.42   -4.87   -3.95   -2.52   -0.41    2.50    6.12   10.01
+    70.0    0.00   -0.09   -0.40   -0.92   -1.66   -2.55   -3.51   -4.40   -5.10   -5.50   -5.57   -5.33   -4.76   -3.83   -2.40   -0.31    2.56    6.14    9.99
+    75.0    0.00   -0.09   -0.40   -0.92   -1.65   -2.54   -3.48   -4.36   -5.04   -5.43   -5.49   -5.23   -4.66   -3.72   -2.30   -0.23    2.60    6.11    9.92
+    80.0    0.00   -0.10   -0.40   -0.91   -1.64   -2.52   -3.45   -4.32   -4.98   -5.36   -5.41   -5.14   -4.56   -3.63   -2.21   -0.17    2.61    6.05    9.79
+    85.0    0.00   -0.10   -0.40   -0.91   -1.63   -2.50   -3.42   -4.28   -4.93   -5.30   -5.34   -5.07   -4.49   -3.55   -2.14   -0.13    2.60    5.96    9.61
+    90.0    0.00   -0.10   -0.40   -0.91   -1.62   -2.48   -3.40   -4.24   -4.88   -5.24   -5.29   -5.01   -4.43   -3.49   -2.08   -0.08    2.59    5.87    9.41
+    95.0    0.00   -0.10   -0.40   -0.91   -1.61   -2.47   -3.38   -4.21   -4.84   -5.20   -5.25   -4.98   -4.39   -3.44   -2.03   -0.04    2.60    5.79    9.21
+   100.0    0.00   -0.10   -0.40   -0.90   -1.61   -2.46   -3.36   -4.19   -4.82   -5.18   -5.22   -4.96   -4.37   -3.41   -1.98    0.02    2.63    5.75    9.04
+   105.0    0.00   -0.10   -0.40   -0.90   -1.61   -2.45   -3.35   -4.17   -4.80   -5.16   -5.21   -4.95   -4.36   -3.38   -1.93    0.09    2.70    5.76    8.94
+   110.0    0.00   -0.10   -0.40   -0.91   -1.61   -2.45   -3.35   -4.17   -4.80   -5.16   -5.22   -4.96   -4.36   -3.36   -1.87    0.19    2.82    5.85    8.94
+   115.0    0.00   -0.10   -0.40   -0.91   -1.61   -2.46   -3.35   -4.17   -4.80   -5.17   -5.23   -4.97   -4.36   -3.34   -1.81    0.31    2.98    6.02    9.04
+   120.0    0.00   -0.11   -0.41   -0.91   -1.61   -2.46   -3.36   -4.18   -4.81   -5.18   -5.24   -4.99   -4.37   -3.32   -1.74    0.44    3.18    6.25    9.26
+   125.0    0.00   -0.11   -0.41   -0.91   -1.62   -2.47   -3.37   -4.19   -4.82   -5.19   -5.26   -5.00   -4.38   -3.30   -1.67    0.59    3.41    6.55    9.58
+   130.0    0.00   -0.11   -0.41   -0.92   -1.63   -2.48   -3.38   -4.21   -4.84   -5.21   -5.27   -5.01   -4.38   -3.28   -1.61    0.72    3.65    6.89    9.99
+   135.0    0.00   -0.11   -0.42   -0.93   -1.64   -2.50   -3.40   -4.23   -4.86   -5.22   -5.28   -5.02   -4.38   -3.27   -1.56    0.85    3.87    7.23   10.44
+   140.0    0.00   -0.11   -0.42   -0.93   -1.65   -2.51   -3.42   -4.25   -4.88   -5.24   -5.30   -5.03   -4.39   -3.27   -1.53    0.94    4.06    7.55   10.89
+   145.0    0.00   -0.12   -0.42   -0.94   -1.66   -2.53   -3.45   -4.28   -4.91   -5.26   -5.31   -5.04   -4.40   -3.28   -1.53    0.98    4.19    7.81   11.29
+   150.0    0.00   -0.12   -0.43   -0.95   -1.68   -2.55   -3.47   -4.31   -4.93   -5.28   -5.33   -5.06   -4.43   -3.32   -1.56    0.97    4.24    7.97   11.60
+   155.0    0.00   -0.12   -0.43   -0.96   -1.69   -2.57   -3.50   -4.34   -4.97   -5.31   -5.35   -5.09   -4.46   -3.37   -1.63    0.90    4.21    8.03   11.79
+   160.0    0.00   -0.12   -0.44   -0.97   -1.71   -2.60   -3.54   -4.38   -5.01   -5.36   -5.40   -5.13   -4.52   -3.45   -1.74    0.77    4.09    7.96   11.82
+   165.0    0.00   -0.12   -0.44   -0.98   -1.72   -2.62   -3.57   -4.43   -5.07   -5.42   -5.46   -5.19   -4.60   -3.55   -1.88    0.59    3.89    7.77   11.70
+   170.0    0.00   -0.12   -0.45   -0.99   -1.74   -2.65   -3.61   -4.48   -5.13   -5.49   -5.53   -5.28   -4.69   -3.68   -2.05    0.36    3.61    7.48   11.43
+   175.0    0.00   -0.13   -0.46   -1.00   -1.76   -2.68   -3.65   -4.54   -5.21   -5.57   -5.62   -5.37   -4.80   -3.82   -2.24    0.10    3.28    7.10   11.05
+   180.0    0.00   -0.13   -0.46   -1.01   -1.78   -2.71   -3.70   -4.60   -5.28   -5.67   -5.73   -5.48   -4.92   -3.96   -2.44   -0.17    2.92    6.66   10.59
+   185.0    0.00   -0.13   -0.46   -1.02   -1.80   -2.74   -3.74   -4.66   -5.36   -5.76   -5.83   -5.60   -5.05   -4.11   -2.64   -0.44    2.56    6.22   10.10
+   190.0    0.00   -0.13   -0.47   -1.03   -1.81   -2.76   -3.78   -4.72   -5.44   -5.85   -5.94   -5.71   -5.16   -4.25   -2.82   -0.69    2.22    5.80    9.63
+   195.0    0.00   -0.13   -0.47   -1.04   -1.82   -2.78   -3.81   -4.76   -5.50   -5.93   -6.03   -5.81   -5.27   -4.37   -2.97   -0.90    1.94    5.45    9.23
+   200.0    0.00   -0.13   -0.47   -1.04   -1.83   -2.80   -3.83   -4.80   -5.55   -6.00   -6.10   -5.88   -5.35   -4.46   -3.08   -1.05    1.73    5.18    8.94
+   205.0    0.00   -0.13   -0.47   -1.04   -1.84   -2.81   -3.84   -4.82   -5.58   -6.03   -6.15   -5.94   -5.40   -4.51   -3.14   -1.14    1.60    5.02    8.76
+   210.0    0.00   -0.13   -0.47   -1.05   -1.84   -2.81   -3.84   -4.82   -5.58   -6.05   -6.17   -5.96   -5.42   -4.53   -3.16   -1.17    1.56    4.98    8.72
+   215.0    0.00   -0.13   -0.47   -1.04   -1.83   -2.80   -3.83   -4.80   -5.56   -6.03   -6.15   -5.94   -5.41   -4.50   -3.13   -1.12    1.62    5.04    8.80
+   220.0    0.00   -0.13   -0.47   -1.04   -1.82   -2.78   -3.80   -4.76   -5.52   -5.98   -6.11   -5.90   -5.36   -4.44   -3.04   -1.02    1.75    5.19    8.97
+   225.0    0.00   -0.12   -0.46   -1.03   -1.81   -2.75   -3.76   -4.71   -5.46   -5.92   -6.04   -5.83   -5.28   -4.34   -2.92   -0.85    1.95    5.41    9.21
+   230.0    0.00   -0.12   -0.46   -1.02   -1.79   -2.72   -3.71   -4.64   -5.38   -5.83   -5.95   -5.73   -5.17   -4.21   -2.75   -0.65    2.18    5.68    9.48
+   235.0    0.00   -0.12   -0.45   -1.00   -1.76   -2.68   -3.66   -4.57   -5.29   -5.73   -5.85   -5.62   -5.05   -4.07   -2.57   -0.43    2.44    5.95    9.73
+   240.0    0.00   -0.12   -0.44   -0.99   -1.73   -2.64   -3.59   -4.49   -5.20   -5.63   -5.74   -5.51   -4.92   -3.91   -2.38   -0.19    2.70    6.20    9.94
+   245.0    0.00   -0.11   -0.43   -0.97   -1.70   -2.59   -3.53   -4.41   -5.10   -5.53   -5.63   -5.39   -4.78   -3.75   -2.18    0.03    2.93    6.41   10.08
+   250.0    0.00   -0.11   -0.42   -0.95   -1.67   -2.54   -3.47   -4.33   -5.02   -5.43   -5.53   -5.28   -4.66   -3.60   -2.01    0.22    3.13    6.56   10.14
+   255.0    0.00   -0.11   -0.41   -0.93   -1.64   -2.50   -3.41   -4.26   -4.94   -5.35   -5.44   -5.18   -4.54   -3.47   -1.86    0.38    3.26    6.65   10.13
+   260.0    0.00   -0.10   -0.40   -0.91   -1.61   -2.45   -3.35   -4.20   -4.87   -5.28   -5.36   -5.10   -4.45   -3.36   -1.75    0.48    3.34    6.66   10.05
+   265.0    0.00   -0.10   -0.39   -0.89   -1.58   -2.41   -3.30   -4.14   -4.81   -5.21   -5.30   -5.03   -4.38   -3.29   -1.68    0.53    3.35    6.61    9.91
+   270.0    0.00   -0.09   -0.38   -0.87   -1.55   -2.37   -3.26   -4.09   -4.76   -5.16   -5.25   -4.98   -4.33   -3.25   -1.66    0.53    3.30    6.51    9.76
+   275.0    0.00   -0.09   -0.37   -0.85   -1.52   -2.34   -3.22   -4.06   -4.72   -5.12   -5.20   -4.94   -4.30   -3.24   -1.67    0.47    3.21    6.37    9.60
+   280.0    0.00   -0.09   -0.36   -0.84   -1.50   -2.31   -3.19   -4.02   -4.68   -5.08   -5.17   -4.91   -4.29   -3.26   -1.73    0.38    3.08    6.23    9.45
+   285.0    0.00   -0.08   -0.35   -0.82   -1.48   -2.29   -3.17   -4.00   -4.65   -5.05   -5.14   -4.89   -4.30   -3.30   -1.81    0.26    2.94    6.09    9.35
+   290.0    0.00   -0.08   -0.35   -0.81   -1.47   -2.28   -3.15   -3.97   -4.63   -5.02   -5.11   -4.88   -4.31   -3.35   -1.90    0.14    2.80    5.97    9.29
+   295.0    0.00   -0.08   -0.34   -0.80   -1.46   -2.27   -3.14   -3.96   -4.61   -5.00   -5.09   -4.87   -4.34   -3.42   -2.01    0.01    2.68    5.88    9.28
+   300.0    0.00   -0.08   -0.34   -0.80   -1.45   -2.26   -3.13   -3.95   -4.59   -4.97   -5.07   -4.87   -4.36   -3.48   -2.10   -0.10    2.58    5.83    9.31
+   305.0    0.00   -0.07   -0.33   -0.79   -1.45   -2.27   -3.14   -3.95   -4.58   -4.95   -5.05   -4.86   -4.38   -3.53   -2.18   -0.18    2.52    5.82    9.39
+   310.0    0.00   -0.07   -0.33   -0.80   -1.46   -2.27   -3.15   -3.95   -4.57   -4.94   -5.03   -4.86   -4.40   -3.57   -2.24   -0.24    2.50    5.85    9.48
+   315.0    0.00   -0.07   -0.33   -0.80   -1.47   -2.29   -3.16   -3.96   -4.58   -4.93   -5.02   -4.85   -4.41   -3.60   -2.27   -0.26    2.51    5.91    9.59
+   320.0    0.00   -0.07   -0.33   -0.80   -1.48   -2.31   -3.19   -3.98   -4.59   -4.94   -5.02   -4.85   -4.42   -3.61   -2.28   -0.25    2.55    5.99    9.70
+   325.0    0.00   -0.07   -0.33   -0.81   -1.50   -2.33   -3.21   -4.01   -4.61   -4.95   -5.03   -4.86   -4.42   -3.62   -2.27   -0.22    2.61    6.07    9.79
+   330.0    0.00   -0.07   -0.34   -0.82   -1.52   -2.36   -3.25   -4.04   -4.64   -4.97   -5.04   -4.87   -4.43   -3.62   -2.26   -0.18    2.67    6.14    9.86
+   335.0    0.00   -0.07   -0.34   -0.83   -1.54   -2.39   -3.28   -4.08   -4.67   -5.00   -5.07   -4.89   -4.44   -3.62   -2.25   -0.15    2.72    6.20    9.90
+   340.0    0.00   -0.07   -0.35   -0.84   -1.56   -2.42   -3.32   -4.12   -4.72   -5.04   -5.10   -4.92   -4.46   -3.63   -2.24   -0.14    2.74    6.22    9.91
+   345.0    0.00   -0.07   -0.35   -0.86   -1.58   -2.45   -3.36   -4.17   -4.76   -5.09   -5.14   -4.95   -4.49   -3.65   -2.26   -0.15    2.73    6.21    9.88
+   350.0    0.00   -0.07   -0.36   -0.87   -1.60   -2.48   -3.40   -4.22   -4.81   -5.14   -5.20   -5.01   -4.54   -3.70   -2.30   -0.19    2.69    6.17    9.83
+   355.0    0.00   -0.07   -0.36   -0.88   -1.62   -2.51   -3.44   -4.26   -4.87   -5.20   -5.26   -5.07   -4.60   -3.76   -2.37   -0.26    2.61    6.09    9.76
+   360.0    0.00   -0.07   -0.37   -0.89   -1.64   -2.54   -3.47   -4.30   -4.92   -5.26   -5.33   -5.14   -4.68   -3.84   -2.46   -0.36    2.51    5.99    9.67
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.21      0.21    116.46                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.04   -0.18   -0.42   -0.79   -1.25   -1.75   -2.19   -2.51   -2.66   -2.66   -2.55   -2.37   -2.08   -1.55   -0.57    1.05    3.40    6.32
+     0.0    0.00   -0.06   -0.21   -0.46   -0.81   -1.25   -1.76   -2.24   -2.60   -2.79   -2.78   -2.60   -2.31   -1.92   -1.33   -0.36    1.25    3.61    6.59
+     5.0    0.00   -0.06   -0.21   -0.45   -0.80   -1.25   -1.75   -2.22   -2.58   -2.75   -2.73   -2.55   -2.25   -1.85   -1.26   -0.29    1.30    3.65    6.64
+    10.0    0.00   -0.06   -0.21   -0.45   -0.80   -1.24   -1.74   -2.20   -2.55   -2.72   -2.68   -2.49   -2.19   -1.79   -1.20   -0.24    1.35    3.69    6.68
+    15.0    0.00   -0.06   -0.20   -0.44   -0.79   -1.24   -1.73   -2.19   -2.52   -2.67   -2.63   -2.43   -2.14   -1.74   -1.16   -0.19    1.39    3.72    6.69
+    20.0    0.00   -0.06   -0.20   -0.44   -0.79   -1.23   -1.72   -2.16   -2.49   -2.63   -2.58   -2.38   -2.10   -1.71   -1.13   -0.15    1.43    3.76    6.69
+    25.0    0.00   -0.05   -0.19   -0.43   -0.78   -1.22   -1.71   -2.14   -2.45   -2.58   -2.53   -2.34   -2.07   -1.70   -1.12   -0.13    1.48    3.80    6.68
+    30.0    0.00   -0.05   -0.19   -0.43   -0.78   -1.22   -1.70   -2.12   -2.42   -2.53   -2.48   -2.31   -2.05   -1.70   -1.12   -0.11    1.52    3.84    6.67
+    35.0    0.00   -0.05   -0.18   -0.42   -0.77   -1.21   -1.69   -2.10   -2.39   -2.50   -2.44   -2.29   -2.05   -1.72   -1.14   -0.11    1.55    3.89    6.65
+    40.0    0.00   -0.05   -0.18   -0.42   -0.77   -1.21   -1.68   -2.09   -2.36   -2.47   -2.42   -2.28   -2.07   -1.75   -1.16   -0.11    1.59    3.93    6.65
+    45.0    0.00   -0.04   -0.17   -0.41   -0.77   -1.21   -1.68   -2.09   -2.35   -2.45   -2.41   -2.28   -2.09   -1.78   -1.20   -0.12    1.61    3.97    6.65
+    50.0    0.00   -0.04   -0.17   -0.41   -0.77   -1.21   -1.69   -2.09   -2.35   -2.45   -2.41   -2.29   -2.11   -1.82   -1.23   -0.13    1.62    4.00    6.66
+    55.0    0.00   -0.04   -0.17   -0.41   -0.77   -1.22   -1.70   -2.10   -2.36   -2.46   -2.42   -2.31   -2.15   -1.85   -1.26   -0.15    1.63    4.02    6.69
+    60.0    0.00   -0.04   -0.16   -0.40   -0.77   -1.23   -1.71   -2.12   -2.39   -2.49   -2.45   -2.34   -2.18   -1.89   -1.29   -0.18    1.61    4.03    6.73
+    65.0    0.00   -0.03   -0.16   -0.40   -0.77   -1.24   -1.73   -2.15   -2.43   -2.53   -2.50   -2.39   -2.22   -1.92   -1.33   -0.21    1.59    4.02    6.78
+    70.0    0.00   -0.03   -0.16   -0.40   -0.78   -1.26   -1.76   -2.19   -2.47   -2.58   -2.55   -2.44   -2.26   -1.96   -1.36   -0.24    1.55    4.00    6.83
+    75.0    0.00   -0.03   -0.15   -0.40   -0.78   -1.27   -1.78   -2.23   -2.52   -2.64   -2.62   -2.50   -2.32   -2.00   -1.39   -0.28    1.50    3.97    6.88
+    80.0    0.00   -0.03   -0.15   -0.40   -0.79   -1.28   -1.81   -2.26   -2.57   -2.71   -2.69   -2.57   -2.38   -2.05   -1.44   -0.33    1.45    3.93    6.93
+    85.0    0.00   -0.03   -0.15   -0.40   -0.80   -1.30   -1.83   -2.30   -2.62   -2.77   -2.76   -2.65   -2.45   -2.12   -1.50   -0.39    1.38    3.89    6.97
+    90.0    0.00   -0.02   -0.15   -0.41   -0.80   -1.31   -1.85   -2.32   -2.66   -2.83   -2.84   -2.74   -2.54   -2.19   -1.57   -0.46    1.31    3.83    7.00
+    95.0    0.00   -0.02   -0.15   -0.41   -0.81   -1.32   -1.86   -2.35   -2.70   -2.88   -2.91   -2.82   -2.63   -2.29   -1.66   -0.55    1.23    3.78    7.01
+   100.0    0.00   -0.02   -0.15   -0.41   -0.81   -1.32   -1.87   -2.36   -2.72   -2.92   -2.97   -2.91   -2.73   -2.39   -1.76   -0.64    1.15    3.72    7.00
+   105.0    0.00   -0.02   -0.15   -0.41   -0.82   -1.33   -1.87   -2.36   -2.73   -2.95   -3.02   -2.98   -2.83   -2.50   -1.86   -0.73    1.07    3.66    6.97
+   110.0    0.00   -0.02   -0.15   -0.42   -0.82   -1.33   -1.87   -2.36   -2.73   -2.96   -3.06   -3.04   -2.91   -2.60   -1.97   -0.83    0.99    3.60    6.93
+   115.0    0.00   -0.02   -0.15   -0.42   -0.83   -1.33   -1.86   -2.34   -2.72   -2.95   -3.07   -3.09   -2.98   -2.69   -2.07   -0.93    0.91    3.53    6.87
+   120.0    0.00   -0.02   -0.15   -0.42   -0.83   -1.33   -1.86   -2.33   -2.70   -2.94   -3.07   -3.10   -3.03   -2.76   -2.15   -1.02    0.82    3.46    6.81
+   125.0    0.00   -0.02   -0.15   -0.42   -0.83   -1.33   -1.85   -2.31   -2.67   -2.91   -3.05   -3.10   -3.04   -2.80   -2.21   -1.09    0.75    3.39    6.74
+   130.0    0.00   -0.02   -0.15   -0.43   -0.83   -1.33   -1.84   -2.29   -2.64   -2.87   -3.00   -3.06   -3.02   -2.80   -2.24   -1.14    0.68    3.32    6.66
+   135.0    0.00   -0.02   -0.15   -0.43   -0.83   -1.32   -1.83   -2.27   -2.61   -2.82   -2.95   -3.00   -2.97   -2.77   -2.24   -1.17    0.62    3.24    6.59
+   140.0    0.00   -0.02   -0.16   -0.43   -0.83   -1.32   -1.82   -2.25   -2.57   -2.77   -2.88   -2.92   -2.88   -2.69   -2.19   -1.17    0.58    3.18    6.52
+   145.0    0.00   -0.02   -0.16   -0.43   -0.83   -1.31   -1.80   -2.23   -2.54   -2.72   -2.81   -2.82   -2.78   -2.59   -2.12   -1.14    0.57    3.12    6.45
+   150.0    0.00   -0.02   -0.16   -0.43   -0.82   -1.30   -1.79   -2.21   -2.51   -2.67   -2.73   -2.72   -2.65   -2.47   -2.02   -1.08    0.57    3.08    6.38
+   155.0    0.00   -0.02   -0.16   -0.42   -0.82   -1.29   -1.78   -2.19   -2.48   -2.63   -2.66   -2.62   -2.53   -2.33   -1.89   -1.00    0.60    3.05    6.30
+   160.0    0.00   -0.02   -0.16   -0.42   -0.81   -1.28   -1.76   -2.17   -2.46   -2.59   -2.60   -2.54   -2.41   -2.19   -1.76   -0.89    0.65    3.04    6.23
+   165.0    0.00   -0.02   -0.16   -0.42   -0.80   -1.27   -1.74   -2.15   -2.43   -2.56   -2.56   -2.46   -2.31   -2.06   -1.62   -0.77    0.72    3.04    6.15
+   170.0    0.00   -0.02   -0.16   -0.41   -0.79   -1.25   -1.73   -2.13   -2.41   -2.54   -2.52   -2.41   -2.22   -1.95   -1.49   -0.64    0.81    3.06    6.07
+   175.0    0.00   -0.02   -0.16   -0.41   -0.78   -1.24   -1.71   -2.12   -2.40   -2.52   -2.50   -2.37   -2.16   -1.86   -1.37   -0.52    0.91    3.09    5.98
+   180.0    0.00   -0.02   -0.16   -0.41   -0.78   -1.23   -1.69   -2.10   -2.38   -2.51   -2.49   -2.35   -2.12   -1.78   -1.26   -0.40    1.02    3.12    5.89
+   185.0    0.00   -0.03   -0.16   -0.40   -0.77   -1.21   -1.68   -2.09   -2.37   -2.51   -2.49   -2.34   -2.09   -1.73   -1.18   -0.29    1.11    3.16    5.80
+   190.0    0.00   -0.03   -0.16   -0.40   -0.76   -1.21   -1.67   -2.08   -2.37   -2.51   -2.49   -2.34   -2.08   -1.70   -1.12   -0.20    1.20    3.19    5.72
+   195.0    0.00   -0.03   -0.16   -0.40   -0.76   -1.20   -1.66   -2.07   -2.36   -2.50   -2.49   -2.34   -2.08   -1.68   -1.08   -0.14    1.27    3.22    5.66
+   200.0    0.00   -0.03   -0.16   -0.40   -0.76   -1.20   -1.66   -2.07   -2.36   -2.50   -2.49   -2.34   -2.08   -1.67   -1.05   -0.10    1.32    3.25    5.61
+   205.0    0.00   -0.03   -0.16   -0.40   -0.76   -1.20   -1.66   -2.07   -2.36   -2.49   -2.48   -2.33   -2.07   -1.67   -1.05   -0.08    1.34    3.26    5.59
+   210.0    0.00   -0.03   -0.16   -0.40   -0.76   -1.20   -1.67   -2.07   -2.36   -2.48   -2.46   -2.31   -2.06   -1.67   -1.05   -0.09    1.34    3.27    5.59
+   215.0    0.00   -0.03   -0.16   -0.40   -0.76   -1.21   -1.67   -2.08   -2.35   -2.47   -2.43   -2.28   -2.04   -1.66   -1.07   -0.11    1.32    3.28    5.63
+   220.0    0.00   -0.04   -0.16   -0.41   -0.77   -1.22   -1.68   -2.08   -2.35   -2.45   -2.40   -2.25   -2.02   -1.67   -1.10   -0.16    1.29    3.27    5.69
+   225.0    0.00   -0.04   -0.17   -0.41   -0.77   -1.22   -1.69   -2.08   -2.34   -2.42   -2.37   -2.21   -1.99   -1.67   -1.13   -0.21    1.24    3.27    5.78
+   230.0    0.00   -0.04   -0.17   -0.41   -0.77   -1.22   -1.69   -2.08   -2.33   -2.40   -2.33   -2.18   -1.98   -1.69   -1.18   -0.28    1.18    3.27    5.89
+   235.0    0.00   -0.04   -0.17   -0.41   -0.77   -1.22   -1.69   -2.08   -2.32   -2.38   -2.31   -2.16   -1.98   -1.71   -1.24   -0.35    1.12    3.27    6.01
+   240.0    0.00   -0.04   -0.17   -0.41   -0.77   -1.22   -1.69   -2.07   -2.31   -2.37   -2.30   -2.16   -1.99   -1.75   -1.30   -0.43    1.06    3.27    6.12
+   245.0    0.00   -0.04   -0.18   -0.41   -0.77   -1.22   -1.68   -2.07   -2.30   -2.37   -2.30   -2.17   -2.02   -1.80   -1.38   -0.52    1.00    3.27    6.23
+   250.0    0.00   -0.05   -0.18   -0.42   -0.77   -1.21   -1.67   -2.06   -2.30   -2.37   -2.32   -2.20   -2.06   -1.87   -1.46   -0.60    0.93    3.27    6.31
+   255.0    0.00   -0.05   -0.18   -0.42   -0.76   -1.20   -1.66   -2.06   -2.31   -2.40   -2.35   -2.25   -2.12   -1.94   -1.54   -0.68    0.87    3.25    6.37
+   260.0    0.00   -0.05   -0.18   -0.42   -0.76   -1.20   -1.66   -2.06   -2.33   -2.43   -2.40   -2.31   -2.20   -2.02   -1.62   -0.76    0.82    3.23    6.39
+   265.0    0.00   -0.05   -0.18   -0.42   -0.76   -1.19   -1.66   -2.07   -2.35   -2.47   -2.46   -2.38   -2.27   -2.10   -1.70   -0.83    0.76    3.20    6.38
+   270.0    0.00   -0.05   -0.19   -0.42   -0.76   -1.19   -1.66   -2.09   -2.39   -2.53   -2.53   -2.46   -2.35   -2.17   -1.77   -0.90    0.70    3.15    6.34
+   275.0    0.00   -0.06   -0.19   -0.42   -0.76   -1.19   -1.67   -2.11   -2.43   -2.59   -2.60   -2.53   -2.42   -2.24   -1.83   -0.96    0.65    3.10    6.26
+   280.0    0.00   -0.06   -0.19   -0.42   -0.76   -1.20   -1.69   -2.14   -2.48   -2.65   -2.67   -2.60   -2.48   -2.29   -1.88   -1.01    0.60    3.05    6.17
+   285.0    0.00   -0.06   -0.20   -0.42   -0.76   -1.21   -1.70   -2.17   -2.53   -2.71   -2.74   -2.66   -2.53   -2.33   -1.92   -1.04    0.55    2.99    6.07
+   290.0    0.00   -0.06   -0.20   -0.43   -0.77   -1.22   -1.72   -2.21   -2.57   -2.77   -2.79   -2.70   -2.56   -2.35   -1.94   -1.07    0.52    2.94    5.96
+   295.0    0.00   -0.06   -0.20   -0.43   -0.78   -1.23   -1.74   -2.24   -2.62   -2.82   -2.84   -2.74   -2.58   -2.37   -1.95   -1.08    0.51    2.91    5.87
+   300.0    0.00   -0.06   -0.21   -0.44   -0.78   -1.24   -1.77   -2.27   -2.66   -2.86   -2.87   -2.76   -2.60   -2.37   -1.95   -1.08    0.50    2.89    5.79
+   305.0    0.00   -0.07   -0.21   -0.44   -0.79   -1.25   -1.78   -2.29   -2.68   -2.89   -2.90   -2.78   -2.60   -2.36   -1.94   -1.06    0.52    2.90    5.74
+   310.0    0.00   -0.07   -0.21   -0.45   -0.80   -1.26   -1.80   -2.31   -2.70   -2.90   -2.91   -2.79   -2.60   -2.36   -1.92   -1.04    0.56    2.92    5.72
+   315.0    0.00   -0.07   -0.21   -0.45   -0.81   -1.27   -1.80   -2.32   -2.71   -2.91   -2.92   -2.79   -2.60   -2.34   -1.89   -1.00    0.61    2.97    5.74
+   320.0    0.00   -0.07   -0.22   -0.46   -0.81   -1.28   -1.81   -2.32   -2.71   -2.91   -2.92   -2.79   -2.59   -2.32   -1.86   -0.94    0.67    3.04    5.78
+   325.0    0.00   -0.07   -0.22   -0.46   -0.81   -1.28   -1.81   -2.32   -2.71   -2.91   -2.92   -2.79   -2.58   -2.30   -1.82   -0.88    0.75    3.12    5.86
+   330.0    0.00   -0.07   -0.22   -0.46   -0.82   -1.28   -1.80   -2.31   -2.70   -2.90   -2.91   -2.78   -2.57   -2.27   -1.77   -0.81    0.83    3.20    5.95
+   335.0    0.00   -0.07   -0.22   -0.46   -0.82   -1.28   -1.80   -2.30   -2.68   -2.89   -2.90   -2.77   -2.55   -2.24   -1.71   -0.74    0.91    3.29    6.07
+   340.0    0.00   -0.07   -0.22   -0.47   -0.82   -1.27   -1.79   -2.29   -2.67   -2.88   -2.89   -2.75   -2.52   -2.19   -1.64   -0.66    0.99    3.38    6.19
+   345.0    0.00   -0.07   -0.22   -0.46   -0.82   -1.27   -1.78   -2.27   -2.66   -2.86   -2.87   -2.73   -2.48   -2.13   -1.57   -0.58    1.07    3.45    6.30
+   350.0    0.00   -0.07   -0.22   -0.46   -0.81   -1.26   -1.77   -2.26   -2.64   -2.84   -2.84   -2.69   -2.43   -2.07   -1.49   -0.50    1.13    3.52    6.41
+   355.0    0.00   -0.07   -0.22   -0.46   -0.81   -1.26   -1.76   -2.25   -2.62   -2.82   -2.81   -2.65   -2.37   -1.99   -1.41   -0.43    1.19    3.57    6.51
+   360.0    0.00   -0.06   -0.21   -0.46   -0.81   -1.25   -1.76   -2.24   -2.60   -2.79   -2.78   -2.60   -2.31   -1.92   -1.33   -0.36    1.25    3.61    6.59
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+JPSREGANT_SD_E  NONE                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH              11    27-JAN-03 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+     -0.44     -0.26     91.25                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.15   -0.61   -1.36   -2.35   -3.47   -4.56   -5.47   -6.06   -6.29   -6.18   -5.77   -5.04   -3.89   -2.16    0.25    3.27    6.53    9.41
+     0.0    0.00   -0.17   -0.65   -1.41   -2.39   -3.46   -4.46   -5.25   -5.75   -5.96   -5.91   -5.64   -5.07   -4.03   -2.31    0.18    3.32    6.67    9.63
+     5.0    0.00   -0.17   -0.65   -1.42   -2.40   -3.48   -4.48   -5.27   -5.77   -5.98   -5.94   -5.67   -5.11   -4.09   -2.38    0.10    3.25    6.63    9.65
+    10.0    0.00   -0.17   -0.65   -1.42   -2.41   -3.49   -4.51   -5.30   -5.80   -6.01   -5.97   -5.71   -5.17   -4.16   -2.47    0.02    3.17    6.59    9.66
+    15.0    0.00   -0.17   -0.65   -1.42   -2.42   -3.51   -4.53   -5.34   -5.84   -6.05   -6.01   -5.76   -5.22   -4.23   -2.55   -0.08    3.09    6.54    9.67
+    20.0    0.00   -0.17   -0.65   -1.42   -2.42   -3.53   -4.56   -5.38   -5.89   -6.10   -6.07   -5.81   -5.28   -4.29   -2.63   -0.16    3.01    6.48    9.65
+    25.0    0.00   -0.17   -0.65   -1.42   -2.43   -3.55   -4.60   -5.43   -5.95   -6.16   -6.12   -5.86   -5.32   -4.34   -2.69   -0.24    2.93    6.43    9.62
+    30.0    0.00   -0.17   -0.64   -1.42   -2.44   -3.56   -4.63   -5.48   -6.01   -6.23   -6.18   -5.91   -5.36   -4.38   -2.74   -0.29    2.87    6.37    9.58
+    35.0    0.00   -0.17   -0.64   -1.42   -2.44   -3.58   -4.66   -5.53   -6.08   -6.30   -6.24   -5.95   -5.38   -4.39   -2.76   -0.33    2.82    6.32    9.52
+    40.0    0.00   -0.16   -0.64   -1.42   -2.44   -3.59   -4.69   -5.58   -6.14   -6.36   -6.29   -5.98   -5.39   -4.39   -2.76   -0.34    2.79    6.28    9.47
+    45.0    0.00   -0.16   -0.63   -1.41   -2.44   -3.60   -4.71   -5.61   -6.19   -6.42   -6.34   -6.00   -5.39   -4.37   -2.74   -0.34    2.78    6.25    9.43
+    50.0    0.00   -0.16   -0.63   -1.41   -2.43   -3.60   -4.72   -5.64   -6.23   -6.46   -6.37   -6.02   -5.38   -4.35   -2.71   -0.32    2.78    6.23    9.39
+    55.0    0.00   -0.16   -0.63   -1.40   -2.42   -3.59   -4.72   -5.66   -6.26   -6.49   -6.39   -6.02   -5.36   -4.31   -2.67   -0.29    2.78    6.21    9.38
+    60.0    0.00   -0.16   -0.62   -1.39   -2.41   -3.57   -4.71   -5.65   -6.26   -6.50   -6.40   -6.01   -5.34   -4.27   -2.62   -0.26    2.79    6.21    9.37
+    65.0    0.00   -0.15   -0.62   -1.38   -2.39   -3.55   -4.69   -5.64   -6.25   -6.49   -6.39   -5.99   -5.30   -4.22   -2.57   -0.22    2.81    6.20    9.37
+    70.0    0.00   -0.15   -0.61   -1.37   -2.38   -3.53   -4.66   -5.61   -6.22   -6.47   -6.37   -5.96   -5.26   -4.17   -2.52   -0.19    2.81    6.19    9.37
+    75.0    0.00   -0.15   -0.61   -1.36   -2.36   -3.50   -4.63   -5.56   -6.18   -6.43   -6.33   -5.92   -5.21   -4.11   -2.47   -0.15    2.82    6.16    9.34
+    80.0    0.00   -0.15   -0.60   -1.35   -2.34   -3.47   -4.59   -5.52   -6.14   -6.39   -6.28   -5.87   -5.15   -4.04   -2.40   -0.11    2.83    6.13    9.29
+    85.0    0.00   -0.15   -0.60   -1.34   -2.32   -3.44   -4.55   -5.47   -6.09   -6.33   -6.23   -5.81   -5.08   -3.96   -2.32   -0.05    2.83    6.08    9.21
+    90.0    0.00   -0.15   -0.59   -1.33   -2.31   -3.42   -4.51   -5.43   -6.04   -6.28   -6.17   -5.74   -5.00   -3.87   -2.23    0.02    2.86    6.03    9.10
+    95.0    0.00   -0.14   -0.59   -1.32   -2.29   -3.40   -4.49   -5.40   -6.00   -6.24   -6.11   -5.67   -4.90   -3.76   -2.11    0.12    2.90    5.99    8.96
+   100.0    0.00   -0.14   -0.59   -1.32   -2.28   -3.39   -4.47   -5.37   -5.97   -6.20   -6.06   -5.60   -4.81   -3.63   -1.97    0.24    2.97    5.96    8.82
+   105.0    0.00   -0.14   -0.58   -1.31   -2.28   -3.38   -4.46   -5.36   -5.95   -6.17   -6.02   -5.54   -4.71   -3.50   -1.82    0.39    3.07    5.98    8.69
+   110.0    0.00   -0.14   -0.58   -1.31   -2.28   -3.38   -4.46   -5.36   -5.95   -6.16   -6.00   -5.48   -4.63   -3.38   -1.66    0.56    3.21    6.03    8.60
+   115.0    0.00   -0.14   -0.58   -1.31   -2.28   -3.38   -4.47   -5.37   -5.96   -6.17   -5.99   -5.45   -4.56   -3.26   -1.51    0.75    3.39    6.14    8.57
+   120.0    0.00   -0.14   -0.58   -1.31   -2.28   -3.39   -4.48   -5.39   -5.98   -6.19   -6.00   -5.44   -4.51   -3.18   -1.37    0.93    3.59    6.31    8.61
+   125.0    0.00   -0.14   -0.58   -1.31   -2.28   -3.40   -4.49   -5.41   -6.01   -6.22   -6.02   -5.45   -4.50   -3.12   -1.26    1.10    3.81    6.53    8.74
+   130.0    0.00   -0.14   -0.58   -1.31   -2.29   -3.41   -4.51   -5.44   -6.04   -6.25   -6.06   -5.48   -4.52   -3.11   -1.19    1.25    4.03    6.79    8.96
+   135.0    0.00   -0.13   -0.58   -1.31   -2.29   -3.42   -4.53   -5.46   -6.08   -6.30   -6.12   -5.54   -4.57   -3.14   -1.17    1.35    4.24    7.07    9.23
+   140.0    0.00   -0.13   -0.58   -1.31   -2.29   -3.42   -4.54   -5.48   -6.11   -6.34   -6.18   -5.62   -4.65   -3.21   -1.20    1.40    4.40    7.34    9.55
+   145.0    0.00   -0.13   -0.57   -1.31   -2.30   -3.43   -4.55   -5.50   -6.14   -6.39   -6.24   -5.71   -4.76   -3.32   -1.28    1.40    4.51    7.58    9.88
+   150.0    0.00   -0.13   -0.57   -1.31   -2.30   -3.43   -4.56   -5.52   -6.17   -6.43   -6.30   -5.80   -4.88   -3.45   -1.40    1.33    4.55    7.76   10.18
+   155.0    0.00   -0.13   -0.57   -1.31   -2.29   -3.43   -4.57   -5.53   -6.19   -6.47   -6.36   -5.88   -5.00   -3.60   -1.55    1.21    4.52    7.86   10.43
+   160.0    0.00   -0.13   -0.57   -1.31   -2.29   -3.43   -4.57   -5.54   -6.21   -6.49   -6.40   -5.95   -5.10   -3.75   -1.73    1.04    4.41    7.87   10.59
+   165.0    0.00   -0.13   -0.57   -1.30   -2.29   -3.43   -4.58   -5.55   -6.22   -6.51   -6.43   -6.00   -5.19   -3.88   -1.91    0.83    4.22    7.77   10.65
+   170.0    0.00   -0.13   -0.57   -1.30   -2.29   -3.43   -4.58   -5.56   -6.23   -6.52   -6.45   -6.03   -5.25   -4.00   -2.09    0.61    3.99    7.59   10.60
+   175.0    0.00   -0.13   -0.57   -1.30   -2.29   -3.43   -4.58   -5.56   -6.23   -6.52   -6.44   -6.03   -5.28   -4.08   -2.25    0.37    3.71    7.33   10.46
+   180.0    0.00   -0.13   -0.57   -1.30   -2.28   -3.43   -4.58   -5.56   -6.23   -6.51   -6.42   -6.02   -5.29   -4.14   -2.38    0.15    3.41    7.02   10.23
+   185.0    0.00   -0.13   -0.57   -1.30   -2.28   -3.43   -4.58   -5.56   -6.22   -6.50   -6.40   -5.98   -5.27   -4.17   -2.49   -0.06    3.11    6.69    9.95
+   190.0    0.00   -0.13   -0.57   -1.30   -2.28   -3.43   -4.58   -5.56   -6.21   -6.47   -6.36   -5.94   -5.24   -4.18   -2.57   -0.24    2.85    6.37    9.65
+   195.0    0.00   -0.13   -0.57   -1.30   -2.28   -3.43   -4.58   -5.56   -6.20   -6.45   -6.32   -5.90   -5.21   -4.18   -2.63   -0.37    2.63    6.09    9.37
+   200.0    0.00   -0.13   -0.57   -1.30   -2.28   -3.43   -4.58   -5.55   -6.19   -6.42   -6.29   -5.86   -5.18   -4.17   -2.66   -0.47    2.47    5.87    9.12
+   205.0    0.00   -0.14   -0.57   -1.30   -2.28   -3.43   -4.57   -5.54   -6.17   -6.40   -6.26   -5.84   -5.16   -4.17   -2.68   -0.52    2.37    5.72    8.93
+   210.0    0.00   -0.14   -0.57   -1.30   -2.29   -3.43   -4.57   -5.53   -6.15   -6.38   -6.25   -5.82   -5.15   -4.16   -2.68   -0.52    2.34    5.65    8.80
+   215.0    0.00   -0.14   -0.58   -1.31   -2.29   -3.43   -4.56   -5.52   -6.14   -6.37   -6.24   -5.83   -5.16   -4.17   -2.67   -0.49    2.38    5.66    8.74
+   220.0    0.00   -0.14   -0.58   -1.31   -2.29   -3.43   -4.56   -5.51   -6.13   -6.37   -6.25   -5.85   -5.19   -4.18   -2.64   -0.43    2.47    5.73    8.74
+   225.0    0.00   -0.14   -0.58   -1.31   -2.30   -3.43   -4.56   -5.50   -6.13   -6.37   -6.27   -5.88   -5.21   -4.18   -2.60   -0.33    2.59    5.84    8.77
+   230.0    0.00   -0.14   -0.59   -1.32   -2.31   -3.44   -4.56   -5.51   -6.13   -6.39   -6.30   -5.92   -5.24   -4.17   -2.54   -0.21    2.75    5.98    8.83
+   235.0    0.00   -0.14   -0.59   -1.33   -2.32   -3.45   -4.57   -5.52   -6.14   -6.41   -6.33   -5.95   -5.25   -4.15   -2.46   -0.08    2.91    6.13    8.88
+   240.0    0.00   -0.15   -0.59   -1.34   -2.33   -3.46   -4.59   -5.53   -6.16   -6.43   -6.36   -5.97   -5.25   -4.10   -2.36    0.07    3.08    6.26    8.93
+   245.0    0.00   -0.15   -0.60   -1.34   -2.34   -3.47   -4.60   -5.55   -6.19   -6.46   -6.38   -5.97   -5.23   -4.03   -2.25    0.21    3.22    6.36    8.95
+   250.0    0.00   -0.15   -0.60   -1.35   -2.35   -3.49   -4.62   -5.57   -6.22   -6.49   -6.39   -5.96   -5.18   -3.95   -2.13    0.35    3.35    6.44    8.96
+   255.0    0.00   -0.15   -0.61   -1.36   -2.36   -3.51   -4.64   -5.60   -6.24   -6.50   -6.39   -5.94   -5.11   -3.84   -2.00    0.47    3.44    6.49    8.96
+   260.0    0.00   -0.15   -0.61   -1.37   -2.37   -3.52   -4.66   -5.62   -6.25   -6.51   -6.38   -5.89   -5.03   -3.74   -1.88    0.58    3.51    6.52    8.95
+   265.0    0.00   -0.16   -0.62   -1.38   -2.38   -3.53   -4.67   -5.63   -6.26   -6.50   -6.35   -5.83   -4.95   -3.63   -1.78    0.65    3.55    6.52    8.96
+   270.0    0.00   -0.16   -0.62   -1.38   -2.39   -3.54   -4.68   -5.63   -6.26   -6.48   -6.31   -5.77   -4.87   -3.55   -1.71    0.70    3.57    6.53    8.99
+   275.0    0.00   -0.16   -0.63   -1.39   -2.39   -3.54   -4.68   -5.62   -6.23   -6.45   -6.26   -5.71   -4.80   -3.49   -1.67    0.72    3.56    6.53    9.04
+   280.0    0.00   -0.16   -0.63   -1.39   -2.40   -3.54   -4.67   -5.60   -6.20   -6.40   -6.20   -5.65   -4.75   -3.46   -1.66    0.70    3.54    6.55    9.13
+   285.0    0.00   -0.16   -0.63   -1.39   -2.40   -3.53   -4.65   -5.57   -6.15   -6.34   -6.15   -5.60   -4.72   -3.46   -1.69    0.66    3.52    6.57    9.24
+   290.0    0.00   -0.17   -0.63   -1.39   -2.39   -3.52   -4.62   -5.53   -6.10   -6.28   -6.09   -5.57   -4.72   -3.49   -1.75    0.59    3.49    6.61    9.38
+   295.0    0.00   -0.17   -0.64   -1.40   -2.39   -3.51   -4.59   -5.48   -6.04   -6.22   -6.04   -5.54   -4.74   -3.55   -1.83    0.52    3.46    6.66    9.51
+   300.0    0.00   -0.17   -0.64   -1.40   -2.38   -3.49   -4.56   -5.43   -5.98   -6.16   -5.99   -5.53   -4.77   -3.62   -1.92    0.45    3.44    6.71    9.64
+   305.0    0.00   -0.17   -0.64   -1.40   -2.38   -3.47   -4.53   -5.38   -5.92   -6.10   -5.96   -5.53   -4.81   -3.70   -2.01    0.38    3.42    6.76    9.74
+   310.0    0.00   -0.17   -0.64   -1.40   -2.37   -3.46   -4.50   -5.34   -5.87   -6.05   -5.93   -5.54   -4.86   -3.77   -2.09    0.32    3.41    6.80    9.81
+   315.0    0.00   -0.17   -0.64   -1.40   -2.37   -3.45   -4.47   -5.30   -5.82   -6.01   -5.91   -5.55   -4.90   -3.83   -2.15    0.29    3.41    6.83    9.85
+   320.0    0.00   -0.17   -0.64   -1.40   -2.36   -3.43   -4.45   -5.27   -5.79   -5.98   -5.89   -5.56   -4.93   -3.88   -2.19    0.27    3.41    6.84    9.85
+   325.0    0.00   -0.17   -0.64   -1.40   -2.36   -3.43   -4.44   -5.25   -5.76   -5.96   -5.88   -5.56   -4.96   -3.90   -2.21    0.27    3.42    6.84    9.82
+   330.0    0.00   -0.17   -0.65   -1.40   -2.36   -3.42   -4.43   -5.23   -5.74   -5.94   -5.88   -5.57   -4.97   -3.92   -2.21    0.28    3.44    6.84    9.77
+   335.0    0.00   -0.17   -0.65   -1.40   -2.36   -3.42   -4.43   -5.22   -5.73   -5.93   -5.87   -5.57   -4.98   -3.92   -2.20    0.29    3.44    6.82    9.71
+   340.0    0.00   -0.17   -0.65   -1.40   -2.37   -3.43   -4.43   -5.22   -5.72   -5.93   -5.87   -5.58   -4.98   -3.92   -2.20    0.30    3.44    6.79    9.67
+   345.0    0.00   -0.17   -0.65   -1.40   -2.37   -3.43   -4.43   -5.22   -5.72   -5.93   -5.88   -5.58   -4.99   -3.93   -2.20    0.30    3.43    6.77    9.63
+   350.0    0.00   -0.17   -0.65   -1.41   -2.38   -3.44   -4.44   -5.23   -5.73   -5.93   -5.88   -5.60   -5.01   -3.95   -2.22    0.28    3.41    6.74    9.62
+   355.0    0.00   -0.17   -0.65   -1.41   -2.38   -3.45   -4.45   -5.24   -5.74   -5.94   -5.89   -5.61   -5.03   -3.98   -2.25    0.24    3.37    6.71    9.62
+   360.0    0.00   -0.17   -0.65   -1.41   -2.39   -3.46   -4.46   -5.25   -5.75   -5.96   -5.91   -5.64   -5.07   -4.03   -2.31    0.18    3.32    6.67    9.63
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.28     -0.11    118.90                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.06   -0.23   -0.51   -0.89   -1.34   -1.82   -2.27   -2.62   -2.84   -2.93   -2.87   -2.68   -2.30   -1.64   -0.54    1.17    3.55    6.48
+     0.0    0.00   -0.04   -0.19   -0.45   -0.82   -1.29   -1.83   -2.35   -2.77   -3.02   -3.06   -2.90   -2.59   -2.12   -1.40   -0.26    1.47    3.85    6.61
+     5.0    0.00   -0.04   -0.19   -0.45   -0.82   -1.29   -1.82   -2.34   -2.76   -3.01   -3.05   -2.89   -2.56   -2.08   -1.35   -0.21    1.52    3.88    6.62
+    10.0    0.00   -0.04   -0.19   -0.45   -0.82   -1.29   -1.82   -2.33   -2.75   -3.00   -3.04   -2.88   -2.55   -2.05   -1.32   -0.18    1.54    3.90    6.62
+    15.0    0.00   -0.04   -0.20   -0.46   -0.83   -1.29   -1.81   -2.32   -2.74   -2.99   -3.03   -2.87   -2.54   -2.05   -1.31   -0.16    1.56    3.91    6.62
+    20.0    0.00   -0.05   -0.20   -0.46   -0.83   -1.29   -1.81   -2.31   -2.72   -2.97   -3.02   -2.87   -2.55   -2.06   -1.32   -0.17    1.56    3.91    6.63
+    25.0    0.00   -0.05   -0.20   -0.47   -0.84   -1.30   -1.81   -2.30   -2.71   -2.95   -3.00   -2.87   -2.56   -2.08   -1.35   -0.19    1.55    3.92    6.66
+    30.0    0.00   -0.05   -0.21   -0.47   -0.84   -1.30   -1.80   -2.29   -2.68   -2.93   -2.99   -2.87   -2.59   -2.12   -1.39   -0.22    1.54    3.93    6.70
+    35.0    0.00   -0.05   -0.21   -0.48   -0.85   -1.31   -1.80   -2.28   -2.67   -2.91   -2.97   -2.87   -2.61   -2.16   -1.43   -0.25    1.53    3.95    6.76
+    40.0    0.00   -0.05   -0.22   -0.49   -0.86   -1.32   -1.81   -2.27   -2.65   -2.88   -2.96   -2.88   -2.64   -2.21   -1.48   -0.29    1.52    3.97    6.83
+    45.0    0.00   -0.05   -0.22   -0.50   -0.87   -1.33   -1.81   -2.27   -2.63   -2.86   -2.95   -2.88   -2.66   -2.24   -1.52   -0.31    1.51    4.00    6.91
+    50.0    0.00   -0.06   -0.22   -0.50   -0.88   -1.34   -1.82   -2.27   -2.62   -2.85   -2.93   -2.88   -2.67   -2.26   -1.54   -0.33    1.52    4.03    6.98
+    55.0    0.00   -0.06   -0.23   -0.51   -0.90   -1.35   -1.83   -2.27   -2.62   -2.84   -2.93   -2.88   -2.68   -2.28   -1.55   -0.33    1.52    4.05    7.04
+    60.0    0.00   -0.06   -0.23   -0.52   -0.91   -1.37   -1.84   -2.28   -2.63   -2.84   -2.93   -2.87   -2.68   -2.27   -1.54   -0.32    1.53    4.06    7.09
+    65.0    0.00   -0.06   -0.24   -0.53   -0.92   -1.38   -1.86   -2.29   -2.64   -2.85   -2.93   -2.88   -2.67   -2.26   -1.52   -0.30    1.55    4.07    7.11
+    70.0    0.00   -0.06   -0.24   -0.53   -0.93   -1.39   -1.87   -2.31   -2.65   -2.86   -2.94   -2.88   -2.67   -2.25   -1.50   -0.28    1.56    4.07    7.12
+    75.0    0.00   -0.06   -0.24   -0.54   -0.94   -1.40   -1.89   -2.32   -2.67   -2.88   -2.96   -2.90   -2.68   -2.24   -1.48   -0.25    1.57    4.06    7.12
+    80.0    0.00   -0.07   -0.25   -0.54   -0.94   -1.41   -1.90   -2.34   -2.68   -2.91   -2.99   -2.92   -2.69   -2.24   -1.46   -0.24    1.58    4.05    7.10
+    85.0    0.00   -0.07   -0.25   -0.55   -0.95   -1.42   -1.90   -2.35   -2.70   -2.93   -3.01   -2.95   -2.71   -2.25   -1.47   -0.24    1.57    4.03    7.08
+    90.0    0.00   -0.07   -0.25   -0.55   -0.95   -1.42   -1.91   -2.35   -2.71   -2.95   -3.05   -2.99   -2.75   -2.28   -1.49   -0.26    1.55    4.01    7.07
+    95.0    0.00   -0.07   -0.26   -0.55   -0.95   -1.42   -1.90   -2.35   -2.72   -2.97   -3.07   -3.03   -2.80   -2.34   -1.54   -0.30    1.52    3.98    7.06
+   100.0    0.00   -0.07   -0.26   -0.56   -0.95   -1.42   -1.90   -2.35   -2.72   -2.97   -3.10   -3.07   -2.86   -2.40   -1.61   -0.36    1.46    3.94    7.05
+   105.0    0.00   -0.07   -0.26   -0.56   -0.96   -1.41   -1.89   -2.34   -2.71   -2.97   -3.11   -3.11   -2.92   -2.48   -1.70   -0.45    1.39    3.90    7.03
+   110.0    0.00   -0.07   -0.26   -0.56   -0.96   -1.41   -1.88   -2.32   -2.69   -2.96   -3.12   -3.13   -2.97   -2.56   -1.79   -0.54    1.31    3.84    7.01
+   115.0    0.00   -0.08   -0.26   -0.56   -0.96   -1.41   -1.87   -2.31   -2.67   -2.94   -3.11   -3.14   -3.01   -2.63   -1.89   -0.65    1.21    3.77    6.97
+   120.0    0.00   -0.08   -0.27   -0.57   -0.96   -1.41   -1.87   -2.29   -2.65   -2.91   -3.08   -3.14   -3.03   -2.68   -1.97   -0.75    1.11    3.68    6.91
+   125.0    0.00   -0.08   -0.27   -0.57   -0.96   -1.41   -1.86   -2.27   -2.62   -2.88   -3.05   -3.11   -3.03   -2.71   -2.03   -0.85    1.00    3.57    6.82
+   130.0    0.00   -0.08   -0.27   -0.57   -0.97   -1.41   -1.86   -2.26   -2.59   -2.84   -3.00   -3.07   -3.00   -2.71   -2.07   -0.92    0.89    3.44    6.70
+   135.0    0.00   -0.08   -0.27   -0.58   -0.97   -1.42   -1.86   -2.25   -2.57   -2.80   -2.95   -3.01   -2.95   -2.69   -2.09   -0.98    0.79    3.31    6.55
+   140.0    0.00   -0.08   -0.28   -0.58   -0.98   -1.42   -1.86   -2.25   -2.55   -2.77   -2.90   -2.95   -2.89   -2.64   -2.07   -1.01    0.70    3.18    6.39
+   145.0    0.00   -0.08   -0.28   -0.59   -0.99   -1.43   -1.87   -2.25   -2.54   -2.74   -2.85   -2.88   -2.81   -2.57   -2.03   -1.02    0.64    3.05    6.23
+   150.0    0.00   -0.08   -0.28   -0.59   -0.99   -1.44   -1.88   -2.25   -2.53   -2.72   -2.81   -2.82   -2.74   -2.49   -1.97   -1.00    0.59    2.94    6.07
+   155.0    0.00   -0.08   -0.28   -0.59   -1.00   -1.45   -1.88   -2.26   -2.54   -2.71   -2.78   -2.78   -2.67   -2.41   -1.89   -0.95    0.58    2.86    5.94
+   160.0    0.00   -0.08   -0.28   -0.60   -1.00   -1.45   -1.89   -2.27   -2.54   -2.71   -2.77   -2.74   -2.62   -2.34   -1.81   -0.89    0.60    2.82    5.85
+   165.0    0.00   -0.08   -0.28   -0.60   -1.00   -1.46   -1.90   -2.28   -2.55   -2.72   -2.78   -2.73   -2.58   -2.28   -1.73   -0.82    0.64    2.82    5.80
+   170.0    0.00   -0.08   -0.28   -0.60   -1.01   -1.46   -1.90   -2.29   -2.57   -2.74   -2.79   -2.74   -2.56   -2.23   -1.66   -0.74    0.71    2.85    5.79
+   175.0    0.00   -0.08   -0.28   -0.60   -1.00   -1.46   -1.91   -2.29   -2.59   -2.76   -2.82   -2.76   -2.56   -2.20   -1.60   -0.65    0.80    2.93    5.83
+   180.0    0.00   -0.08   -0.28   -0.59   -1.00   -1.46   -1.91   -2.30   -2.60   -2.79   -2.86   -2.79   -2.58   -2.19   -1.55   -0.57    0.91    3.03    5.89
+   185.0    0.00   -0.08   -0.27   -0.59   -0.99   -1.45   -1.90   -2.30   -2.62   -2.82   -2.89   -2.83   -2.60   -2.18   -1.51   -0.49    1.02    3.15    5.98
+   190.0    0.00   -0.07   -0.27   -0.58   -0.99   -1.44   -1.90   -2.30   -2.63   -2.84   -2.92   -2.86   -2.62   -2.18   -1.48   -0.41    1.14    3.28    6.06
+   195.0    0.00   -0.07   -0.27   -0.58   -0.98   -1.43   -1.89   -2.30   -2.63   -2.85   -2.94   -2.88   -2.64   -2.18   -1.45   -0.34    1.24    3.40    6.14
+   200.0    0.00   -0.07   -0.26   -0.57   -0.97   -1.42   -1.88   -2.30   -2.63   -2.85   -2.95   -2.88   -2.64   -2.17   -1.42   -0.28    1.34    3.51    6.20
+   205.0    0.00   -0.07   -0.26   -0.56   -0.96   -1.41   -1.87   -2.29   -2.62   -2.85   -2.93   -2.87   -2.63   -2.16   -1.39   -0.23    1.41    3.59    6.23
+   210.0    0.00   -0.07   -0.25   -0.55   -0.95   -1.40   -1.86   -2.28   -2.61   -2.83   -2.91   -2.84   -2.60   -2.13   -1.36   -0.20    1.46    3.65    6.25
+   215.0    0.00   -0.06   -0.25   -0.54   -0.94   -1.39   -1.85   -2.26   -2.59   -2.80   -2.87   -2.79   -2.55   -2.09   -1.34   -0.18    1.49    3.68    6.24
+   220.0    0.00   -0.06   -0.24   -0.53   -0.92   -1.37   -1.83   -2.25   -2.57   -2.76   -2.81   -2.73   -2.49   -2.06   -1.33   -0.18    1.49    3.70    6.22
+   225.0    0.00   -0.06   -0.24   -0.53   -0.91   -1.36   -1.82   -2.23   -2.54   -2.72   -2.76   -2.67   -2.44   -2.02   -1.32   -0.20    1.47    3.69    6.21
+   230.0    0.00   -0.06   -0.23   -0.51   -0.90   -1.35   -1.80   -2.21   -2.51   -2.67   -2.70   -2.60   -2.39   -2.00   -1.33   -0.23    1.44    3.67    6.21
+   235.0    0.00   -0.05   -0.22   -0.50   -0.88   -1.33   -1.79   -2.19   -2.48   -2.63   -2.65   -2.55   -2.35   -1.99   -1.36   -0.29    1.38    3.65    6.24
+   240.0    0.00   -0.05   -0.22   -0.49   -0.87   -1.31   -1.77   -2.17   -2.45   -2.60   -2.61   -2.51   -2.32   -2.00   -1.41   -0.36    1.32    3.62    6.29
+   245.0    0.00   -0.05   -0.21   -0.48   -0.85   -1.29   -1.75   -2.14   -2.43   -2.57   -2.58   -2.49   -2.32   -2.03   -1.47   -0.44    1.24    3.60    6.36
+   250.0    0.00   -0.05   -0.21   -0.47   -0.84   -1.28   -1.73   -2.12   -2.41   -2.55   -2.57   -2.49   -2.35   -2.08   -1.54   -0.53    1.16    3.58    6.45
+   255.0    0.00   -0.05   -0.20   -0.46   -0.83   -1.26   -1.71   -2.11   -2.40   -2.55   -2.58   -2.52   -2.39   -2.14   -1.63   -0.62    1.08    3.55    6.54
+   260.0    0.00   -0.04   -0.20   -0.45   -0.81   -1.24   -1.69   -2.10   -2.39   -2.56   -2.60   -2.56   -2.45   -2.22   -1.72   -0.72    1.01    3.53    6.62
+   265.0    0.00   -0.04   -0.19   -0.45   -0.80   -1.23   -1.68   -2.09   -2.40   -2.58   -2.64   -2.61   -2.51   -2.29   -1.80   -0.80    0.93    3.49    6.68
+   270.0    0.00   -0.04   -0.19   -0.44   -0.79   -1.22   -1.67   -2.09   -2.42   -2.61   -2.69   -2.68   -2.59   -2.37   -1.87   -0.87    0.86    3.44    6.70
+   275.0    0.00   -0.04   -0.18   -0.43   -0.78   -1.21   -1.67   -2.10   -2.44   -2.66   -2.75   -2.75   -2.66   -2.44   -1.93   -0.93    0.80    3.38    6.67
+   280.0    0.00   -0.04   -0.18   -0.43   -0.78   -1.21   -1.67   -2.11   -2.47   -2.70   -2.81   -2.82   -2.72   -2.49   -1.98   -0.98    0.75    3.31    6.61
+   285.0    0.00   -0.04   -0.18   -0.43   -0.78   -1.21   -1.68   -2.13   -2.50   -2.75   -2.87   -2.88   -2.78   -2.53   -2.01   -1.00    0.70    3.24    6.50
+   290.0    0.00   -0.03   -0.18   -0.42   -0.78   -1.21   -1.69   -2.15   -2.54   -2.80   -2.93   -2.93   -2.82   -2.56   -2.02   -1.02    0.67    3.16    6.37
+   295.0    0.00   -0.03   -0.18   -0.42   -0.78   -1.22   -1.71   -2.18   -2.58   -2.85   -2.98   -2.98   -2.86   -2.57   -2.02   -1.02    0.65    3.09    6.24
+   300.0    0.00   -0.03   -0.17   -0.43   -0.78   -1.23   -1.72   -2.21   -2.61   -2.89   -3.02   -3.01   -2.88   -2.58   -2.01   -1.00    0.64    3.04    6.11
+   305.0    0.00   -0.03   -0.17   -0.43   -0.79   -1.24   -1.74   -2.23   -2.65   -2.93   -3.06   -3.04   -2.89   -2.57   -1.99   -0.98    0.66    3.02    6.01
+   310.0    0.00   -0.03   -0.18   -0.43   -0.79   -1.25   -1.76   -2.26   -2.68   -2.96   -3.08   -3.05   -2.89   -2.56   -1.97   -0.95    0.69    3.02    5.94
+   315.0    0.00   -0.03   -0.18   -0.43   -0.80   -1.26   -1.78   -2.28   -2.70   -2.98   -3.10   -3.06   -2.88   -2.54   -1.93   -0.90    0.73    3.05    5.92
+   320.0    0.00   -0.03   -0.18   -0.43   -0.80   -1.27   -1.79   -2.30   -2.72   -3.00   -3.10   -3.05   -2.86   -2.51   -1.90   -0.85    0.80    3.12    5.95
+   325.0    0.00   -0.03   -0.18   -0.44   -0.81   -1.28   -1.81   -2.32   -2.74   -3.01   -3.11   -3.05   -2.84   -2.48   -1.85   -0.79    0.88    3.21    6.02
+   330.0    0.00   -0.03   -0.18   -0.44   -0.81   -1.29   -1.82   -2.33   -2.75   -3.02   -3.11   -3.03   -2.82   -2.44   -1.80   -0.72    0.97    3.31    6.12
+   335.0    0.00   -0.03   -0.18   -0.44   -0.82   -1.29   -1.82   -2.34   -2.76   -3.02   -3.10   -3.01   -2.78   -2.39   -1.74   -0.65    1.06    3.43    6.23
+   340.0    0.00   -0.04   -0.18   -0.44   -0.82   -1.29   -1.83   -2.35   -2.77   -3.02   -3.09   -2.99   -2.75   -2.34   -1.67   -0.57    1.16    3.54    6.34
+   345.0    0.00   -0.04   -0.18   -0.44   -0.82   -1.30   -1.83   -2.35   -2.77   -3.03   -3.09   -2.97   -2.71   -2.28   -1.60   -0.48    1.25    3.65    6.44
+   350.0    0.00   -0.04   -0.18   -0.45   -0.82   -1.30   -1.83   -2.35   -2.77   -3.02   -3.08   -2.95   -2.66   -2.22   -1.53   -0.40    1.34    3.74    6.52
+   355.0    0.00   -0.04   -0.19   -0.45   -0.82   -1.30   -1.83   -2.35   -2.77   -3.02   -3.07   -2.92   -2.63   -2.17   -1.46   -0.33    1.41    3.80    6.58
+   360.0    0.00   -0.04   -0.19   -0.45   -0.82   -1.29   -1.83   -2.35   -2.77   -3.02   -3.06   -2.90   -2.59   -2.12   -1.40   -0.26    1.47    3.85    6.61
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+LEIAR10         NONE                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               5    19-APR-10 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+      1.29     -0.70     88.84                              NORTH / EAST / UP   
+   NOAZI    0.00    0.04    0.11    0.15    0.08   -0.14   -0.47   -0.82   -1.09   -1.19   -1.11   -0.93   -0.73   -0.58   -0.45   -0.22    0.34    1.38    2.92
+     0.0    0.00    0.15    0.34    0.50    0.52    0.34    0.00   -0.40   -0.72   -0.83   -0.69   -0.32    0.18    0.71    1.21    1.78    2.66    4.20    6.86
+     5.0    0.00    0.14    0.34    0.50    0.53    0.37    0.05   -0.33   -0.64   -0.76   -0.63   -0.27    0.24    0.78    1.29    1.83    2.61    4.01    6.51
+    10.0    0.00    0.14    0.34    0.50    0.54    0.40    0.10   -0.26   -0.57   -0.71   -0.60   -0.26    0.23    0.76    1.25    1.72    2.35    3.51    5.72
+    15.0    0.00    0.14    0.33    0.50    0.55    0.43    0.15   -0.20   -0.51   -0.66   -0.59   -0.29    0.16    0.65    1.09    1.46    1.89    2.75    4.57
+    20.0    0.00    0.13    0.32    0.49    0.55    0.44    0.19   -0.15   -0.45   -0.63   -0.60   -0.36    0.02    0.45    0.81    1.05    1.29    1.82    3.19
+    25.0    0.00    0.13    0.31    0.48    0.54    0.45    0.21   -0.10   -0.41   -0.60   -0.62   -0.46   -0.16    0.17    0.42    0.54    0.57    0.81    1.74
+    30.0    0.00    0.12    0.30    0.46    0.52    0.44    0.22   -0.08   -0.38   -0.59   -0.66   -0.58   -0.38   -0.17   -0.04   -0.05   -0.18   -0.18    0.37
+    35.0    0.00    0.11    0.28    0.43    0.49    0.41    0.20   -0.08   -0.37   -0.59   -0.71   -0.70   -0.63   -0.54   -0.53   -0.66   -0.90   -1.06   -0.79
+    40.0    0.00    0.11    0.26    0.40    0.45    0.37    0.17   -0.11   -0.38   -0.61   -0.76   -0.83   -0.87   -0.91   -1.02   -1.24   -1.52   -1.75   -1.62
+    45.0    0.00    0.10    0.24    0.36    0.39    0.30    0.10   -0.16   -0.42   -0.64   -0.81   -0.95   -1.09   -1.25   -1.47   -1.73   -2.00   -2.18   -2.06
+    50.0    0.00    0.09    0.22    0.32    0.33    0.22    0.01   -0.24   -0.49   -0.70   -0.87   -1.05   -1.27   -1.53   -1.83   -2.10   -2.29   -2.32   -2.08
+    55.0    0.00    0.08    0.19    0.27    0.26    0.13   -0.10   -0.35   -0.58   -0.77   -0.93   -1.13   -1.40   -1.73   -2.07   -2.32   -2.38   -2.18   -1.71
+    60.0    0.00    0.07    0.16    0.23    0.19    0.03   -0.22   -0.48   -0.70   -0.86   -1.00   -1.18   -1.47   -1.83   -2.18   -2.37   -2.26   -1.79   -1.02
+    65.0    0.00    0.05    0.14    0.18    0.11   -0.08   -0.35   -0.63   -0.83   -0.96   -1.06   -1.21   -1.48   -1.84   -2.16   -2.26   -1.97   -1.21   -0.09
+    70.0    0.00    0.04    0.11    0.13    0.04   -0.19   -0.49   -0.78   -0.98   -1.07   -1.12   -1.22   -1.43   -1.75   -2.02   -2.02   -1.54   -0.51    0.95
+    75.0    0.00    0.03    0.09    0.09   -0.04   -0.29   -0.62   -0.93   -1.12   -1.19   -1.18   -1.21   -1.35   -1.59   -1.78   -1.67   -1.04    0.23    1.98
+    80.0    0.00    0.02    0.06    0.04   -0.10   -0.38   -0.74   -1.06   -1.26   -1.30   -1.24   -1.19   -1.24   -1.39   -1.48   -1.28   -0.51    0.92    2.88
+    85.0    0.00    0.01    0.04    0.01   -0.16   -0.46   -0.84   -1.18   -1.38   -1.40   -1.29   -1.17   -1.13   -1.17   -1.17   -0.89   -0.04    1.49    3.57
+    90.0    0.00    0.00    0.02   -0.03   -0.20   -0.52   -0.91   -1.27   -1.48   -1.49   -1.35   -1.16   -1.03   -0.98   -0.89   -0.55    0.33    1.88    3.98
+    95.0    0.00   -0.01    0.00   -0.05   -0.24   -0.56   -0.96   -1.33   -1.55   -1.56   -1.40   -1.16   -0.96   -0.83   -0.68   -0.30    0.55    2.04    4.08
+   100.0    0.00   -0.01   -0.02   -0.08   -0.26   -0.58   -0.99   -1.36   -1.60   -1.62   -1.45   -1.18   -0.93   -0.74   -0.55   -0.18    0.62    1.99    3.87
+   105.0    0.00   -0.02   -0.03   -0.09   -0.28   -0.59   -0.99   -1.37   -1.62   -1.65   -1.50   -1.23   -0.95   -0.74   -0.53   -0.19    0.52    1.73    3.41
+   110.0    0.00   -0.03   -0.04   -0.11   -0.28   -0.59   -0.98   -1.36   -1.61   -1.67   -1.54   -1.29   -1.02   -0.81   -0.61   -0.31    0.28    1.31    2.75
+   115.0    0.00   -0.04   -0.05   -0.11   -0.28   -0.58   -0.96   -1.34   -1.60   -1.68   -1.58   -1.36   -1.13   -0.94   -0.77   -0.53   -0.04    0.81    1.99
+   120.0    0.00   -0.04   -0.06   -0.12   -0.28   -0.57   -0.94   -1.30   -1.57   -1.67   -1.61   -1.44   -1.25   -1.10   -0.98   -0.80   -0.41    0.29    1.24
+   125.0    0.00   -0.05   -0.07   -0.12   -0.28   -0.55   -0.91   -1.27   -1.54   -1.66   -1.64   -1.51   -1.37   -1.27   -1.20   -1.06   -0.74   -0.15    0.61
+   130.0    0.00   -0.05   -0.07   -0.13   -0.28   -0.54   -0.89   -1.24   -1.51   -1.65   -1.65   -1.56   -1.47   -1.42   -1.37   -1.26   -0.97   -0.45    0.20
+   135.0    0.00   -0.05   -0.07   -0.13   -0.27   -0.53   -0.88   -1.22   -1.49   -1.63   -1.64   -1.59   -1.53   -1.50   -1.48   -1.36   -1.06   -0.54    0.06
+   140.0    0.00   -0.06   -0.08   -0.13   -0.27   -0.53   -0.87   -1.21   -1.47   -1.61   -1.62   -1.57   -1.52   -1.50   -1.47   -1.32   -0.96   -0.37    0.27
+   145.0    0.00   -0.06   -0.08   -0.12   -0.27   -0.53   -0.87   -1.21   -1.46   -1.58   -1.57   -1.50   -1.44   -1.40   -1.33   -1.12   -0.66    0.05    0.81
+   150.0    0.00   -0.06   -0.08   -0.12   -0.26   -0.53   -0.87   -1.21   -1.45   -1.54   -1.49   -1.38   -1.28   -1.20   -1.07   -0.77   -0.17    0.72    1.67
+   155.0    0.00   -0.06   -0.07   -0.12   -0.26   -0.53   -0.88   -1.21   -1.44   -1.49   -1.39   -1.22   -1.05   -0.90   -0.69   -0.28    0.48    1.57    2.77
+   160.0    0.00   -0.06   -0.07   -0.11   -0.25   -0.52   -0.88   -1.21   -1.42   -1.43   -1.27   -1.02   -0.77   -0.53   -0.22    0.31    1.22    2.54    4.03
+   165.0    0.00   -0.06   -0.07   -0.10   -0.24   -0.52   -0.87   -1.20   -1.39   -1.36   -1.14   -0.81   -0.45   -0.12    0.29    0.93    2.00    3.53    5.32
+   170.0    0.00   -0.06   -0.06   -0.09   -0.23   -0.50   -0.86   -1.19   -1.36   -1.29   -1.00   -0.58   -0.13    0.30    0.79    1.53    2.72    4.44    6.52
+   175.0    0.00   -0.06   -0.05   -0.08   -0.21   -0.48   -0.84   -1.16   -1.32   -1.22   -0.87   -0.37    0.17    0.68    1.25    2.05    3.32    5.18    7.50
+   180.0    0.00   -0.05   -0.05   -0.06   -0.19   -0.46   -0.81   -1.13   -1.27   -1.15   -0.75   -0.19    0.42    1.00    1.60    2.43    3.73    5.67    8.16
+   185.0    0.00   -0.05   -0.04   -0.05   -0.17   -0.43   -0.78   -1.09   -1.23   -1.09   -0.67   -0.06    0.60    1.21    1.83    2.64    3.91    5.85    8.42
+   190.0    0.00   -0.05   -0.03   -0.04   -0.15   -0.40   -0.74   -1.06   -1.20   -1.05   -0.62    0.01    0.69    1.31    1.90    2.65    3.84    5.70    8.25
+   195.0    0.00   -0.05   -0.03   -0.03   -0.13   -0.37   -0.71   -1.03   -1.18   -1.04   -0.61    0.02    0.68    1.28    1.81    2.46    3.52    5.24    7.67
+   200.0    0.00   -0.04   -0.02   -0.01   -0.11   -0.35   -0.69   -1.02   -1.17   -1.05   -0.64   -0.04    0.59    1.12    1.57    2.10    2.99    4.51    6.74
+   205.0    0.00   -0.04   -0.01   -0.01   -0.10   -0.34   -0.68   -1.02   -1.19   -1.09   -0.72   -0.17    0.41    0.87    1.21    1.60    2.31    3.60    5.56
+   210.0    0.00   -0.03   -0.01    0.00   -0.09   -0.34   -0.69   -1.03   -1.22   -1.16   -0.83   -0.34    0.16    0.52    0.75    1.00    1.53    2.60    4.27
+   215.0    0.00   -0.03    0.00    0.01   -0.09   -0.34   -0.70   -1.06   -1.27   -1.24   -0.96   -0.54   -0.13    0.13    0.24    0.36    0.74    1.61    3.02
+   220.0    0.00   -0.02    0.00    0.01   -0.10   -0.36   -0.73   -1.10   -1.33   -1.34   -1.11   -0.76   -0.44   -0.28   -0.27   -0.25    0.02    0.75    1.93
+   225.0    0.00   -0.02    0.01    0.01   -0.11   -0.38   -0.76   -1.15   -1.40   -1.43   -1.25   -0.97   -0.75   -0.69   -0.76   -0.80   -0.57    0.09    1.14
+   230.0    0.00   -0.01    0.02    0.01   -0.12   -0.40   -0.80   -1.20   -1.46   -1.52   -1.38   -1.17   -1.03   -1.05   -1.18   -1.24   -1.00   -0.31    0.71
+   235.0    0.00   -0.01    0.02    0.01   -0.13   -0.43   -0.84   -1.24   -1.51   -1.59   -1.48   -1.33   -1.27   -1.35   -1.52   -1.56   -1.23   -0.42    0.69
+   240.0    0.00    0.00    0.03    0.01   -0.14   -0.45   -0.87   -1.27   -1.55   -1.63   -1.56   -1.45   -1.45   -1.59   -1.76   -1.74   -1.27   -0.26    1.05
+   245.0    0.00    0.00    0.04    0.01   -0.14   -0.46   -0.89   -1.29   -1.57   -1.66   -1.60   -1.53   -1.57   -1.74   -1.90   -1.79   -1.14    0.12    1.72
+   250.0    0.00    0.01    0.05    0.02   -0.14   -0.46   -0.89   -1.30   -1.57   -1.66   -1.62   -1.57   -1.64   -1.82   -1.95   -1.73   -0.88    0.65    2.58
+   255.0    0.00    0.02    0.06    0.03   -0.13   -0.46   -0.88   -1.28   -1.55   -1.64   -1.61   -1.58   -1.66   -1.84   -1.92   -1.59   -0.56    1.24    3.48
+   260.0    0.00    0.03    0.07    0.05   -0.11   -0.43   -0.85   -1.25   -1.52   -1.61   -1.59   -1.57   -1.65   -1.80   -1.83   -1.41   -0.23    1.78    4.29
+   265.0    0.00    0.03    0.08    0.07   -0.08   -0.40   -0.81   -1.20   -1.47   -1.57   -1.56   -1.54   -1.60   -1.73   -1.71   -1.22    0.05    2.19    4.86
+   270.0    0.00    0.04    0.10    0.09   -0.05   -0.35   -0.75   -1.15   -1.43   -1.54   -1.53   -1.51   -1.55   -1.64   -1.58   -1.05    0.25    2.39    5.09
+   275.0    0.00    0.05    0.12    0.12   -0.01   -0.30   -0.69   -1.09   -1.38   -1.51   -1.52   -1.48   -1.50   -1.55   -1.45   -0.93    0.32    2.36    4.94
+   280.0    0.00    0.06    0.14    0.15    0.04   -0.24   -0.63   -1.03   -1.34   -1.50   -1.51   -1.47   -1.46   -1.46   -1.35   -0.86    0.26    2.09    4.39
+   285.0    0.00    0.07    0.15    0.19    0.09   -0.17   -0.56   -0.97   -1.31   -1.49   -1.52   -1.48   -1.42   -1.39   -1.26   -0.85    0.08    1.61    3.51
+   290.0    0.00    0.08    0.17    0.22    0.14   -0.11   -0.49   -0.92   -1.29   -1.50   -1.55   -1.49   -1.40   -1.33   -1.21   -0.89   -0.17    0.99    2.40
+   295.0    0.00    0.09    0.19    0.25    0.19   -0.05   -0.44   -0.88   -1.27   -1.51   -1.57   -1.50   -1.39   -1.29   -1.18   -0.95   -0.48    0.31    1.22
+   300.0    0.00    0.09    0.21    0.29    0.23    0.00   -0.39   -0.84   -1.26   -1.52   -1.60   -1.52   -1.38   -1.25   -1.15   -1.03   -0.76   -0.33    0.11
+   305.0    0.00    0.10    0.23    0.32    0.27    0.05   -0.34   -0.82   -1.25   -1.53   -1.61   -1.52   -1.35   -1.21   -1.12   -1.08   -0.99   -0.83   -0.76
+   310.0    0.00    0.11    0.25    0.35    0.31    0.09   -0.31   -0.79   -1.24   -1.53   -1.60   -1.50   -1.31   -1.15   -1.07   -1.08   -1.10   -1.13   -1.27
+   315.0    0.00    0.12    0.27    0.37    0.34    0.12   -0.28   -0.77   -1.22   -1.51   -1.58   -1.46   -1.25   -1.07   -0.99   -1.01   -1.08   -1.15   -1.35
+   320.0    0.00    0.12    0.28    0.40    0.37    0.15   -0.25   -0.75   -1.19   -1.47   -1.52   -1.38   -1.15   -0.95   -0.86   -0.86   -0.89   -0.89   -0.96
+   325.0    0.00    0.13    0.30    0.42    0.39    0.17   -0.23   -0.72   -1.16   -1.42   -1.44   -1.28   -1.02   -0.80   -0.67   -0.62   -0.54   -0.37   -0.14
+   330.0    0.00    0.13    0.31    0.44    0.42    0.19   -0.21   -0.69   -1.11   -1.35   -1.34   -1.14   -0.86   -0.61   -0.44   -0.30   -0.07    0.37    1.03
+   335.0    0.00    0.14    0.32    0.45    0.43    0.21   -0.19   -0.66   -1.06   -1.26   -1.23   -0.99   -0.67   -0.38   -0.15    0.08    0.49    1.24    2.40
+   340.0    0.00    0.14    0.33    0.47    0.45    0.23   -0.16   -0.62   -1.00   -1.17   -1.10   -0.83   -0.47   -0.14    0.16    0.50    1.09    2.15    3.81
+   345.0    0.00    0.14    0.34    0.48    0.47    0.26   -0.13   -0.57   -0.93   -1.08   -0.98   -0.67   -0.27    0.12    0.48    0.92    1.67    2.99    5.10
+   350.0    0.00    0.15    0.34    0.49    0.49    0.28   -0.09   -0.52   -0.86   -0.99   -0.86   -0.53   -0.09    0.36    0.78    1.30    2.15    3.66    6.11
+   355.0    0.00    0.15    0.34    0.50    0.50    0.31   -0.05   -0.46   -0.79   -0.91   -0.77   -0.41    0.07    0.56    1.03    1.60    2.50    4.08    6.72
+   360.0    0.00    0.15    0.34    0.50    0.52    0.34    0.00   -0.40   -0.72   -0.83   -0.69   -0.32    0.18    0.71    1.21    1.78    2.66    4.20    6.86
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.52      0.15     81.79                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.07   -0.25   -0.50   -0.77   -1.03   -1.29   -1.59   -1.95   -2.37   -2.77   -3.01   -2.90   -2.29   -1.15    0.40    2.03    3.33    3.90
+     0.0    0.00   -0.09   -0.30   -0.59   -0.89   -1.16   -1.43   -1.72   -2.05   -2.43   -2.79   -3.00   -2.92   -2.40   -1.42   -0.03    1.55    3.04    4.13
+     5.0    0.00   -0.09   -0.30   -0.59   -0.89   -1.18   -1.45   -1.74   -2.08   -2.44   -2.77   -2.94   -2.80   -2.22   -1.16    0.33    2.02    3.61    4.78
+    10.0    0.00   -0.08   -0.30   -0.58   -0.89   -1.19   -1.48   -1.78   -2.11   -2.46   -2.76   -2.90   -2.72   -2.09   -0.96    0.61    2.39    4.06    5.24
+    15.0    0.00   -0.08   -0.29   -0.58   -0.90   -1.21   -1.51   -1.81   -2.14   -2.48   -2.77   -2.89   -2.68   -2.02   -0.84    0.78    2.61    4.31    5.45
+    20.0    0.00   -0.08   -0.29   -0.58   -0.91   -1.22   -1.53   -1.85   -2.18   -2.52   -2.81   -2.91   -2.69   -2.02   -0.82    0.82    2.67    4.36    5.40
+    25.0    0.00   -0.08   -0.29   -0.58   -0.91   -1.24   -1.56   -1.89   -2.23   -2.58   -2.86   -2.97   -2.76   -2.09   -0.90    0.74    2.57    4.19    5.10
+    30.0    0.00   -0.08   -0.28   -0.58   -0.91   -1.25   -1.58   -1.92   -2.28   -2.64   -2.94   -3.06   -2.87   -2.22   -1.05    0.55    2.33    3.85    4.60
+    35.0    0.00   -0.07   -0.28   -0.57   -0.91   -1.25   -1.59   -1.95   -2.32   -2.70   -3.02   -3.18   -3.01   -2.39   -1.26    0.29    1.98    3.39    3.99
+    40.0    0.00   -0.07   -0.28   -0.57   -0.90   -1.25   -1.60   -1.96   -2.36   -2.77   -3.12   -3.30   -3.16   -2.57   -1.49    0.00    1.60    2.88    3.35
+    45.0    0.00   -0.07   -0.27   -0.56   -0.90   -1.24   -1.59   -1.97   -2.38   -2.82   -3.21   -3.42   -3.31   -2.74   -1.70   -0.28    1.23    2.41    2.78
+    50.0    0.00   -0.07   -0.27   -0.55   -0.88   -1.22   -1.57   -1.96   -2.39   -2.86   -3.28   -3.52   -3.42   -2.88   -1.85   -0.48    0.95    2.04    2.38
+    55.0    0.00   -0.07   -0.26   -0.55   -0.87   -1.20   -1.55   -1.94   -2.39   -2.88   -3.32   -3.58   -3.49   -2.95   -1.93   -0.59    0.79    1.84    2.22
+    60.0    0.00   -0.06   -0.26   -0.54   -0.85   -1.17   -1.51   -1.90   -2.36   -2.86   -3.33   -3.60   -3.50   -2.94   -1.91   -0.56    0.80    1.86    2.33
+    65.0    0.00   -0.06   -0.25   -0.53   -0.83   -1.14   -1.46   -1.84   -2.31   -2.82   -3.29   -3.56   -3.45   -2.85   -1.77   -0.40    0.99    2.10    2.73
+    70.0    0.00   -0.06   -0.25   -0.52   -0.81   -1.11   -1.42   -1.78   -2.24   -2.75   -3.22   -3.47   -3.32   -2.67   -1.54   -0.11    1.35    2.56    3.39
+    75.0    0.00   -0.06   -0.25   -0.51   -0.80   -1.07   -1.37   -1.71   -2.15   -2.65   -3.10   -3.33   -3.14   -2.43   -1.23    0.29    1.85    3.20    4.25
+    80.0    0.00   -0.06   -0.24   -0.50   -0.78   -1.05   -1.32   -1.64   -2.06   -2.53   -2.96   -3.15   -2.92   -2.15   -0.86    0.75    2.43    3.94    5.22
+    85.0    0.00   -0.06   -0.24   -0.50   -0.77   -1.02   -1.28   -1.57   -1.96   -2.40   -2.79   -2.94   -2.67   -1.84   -0.48    1.23    3.05    4.72    6.20
+    90.0    0.00   -0.06   -0.24   -0.50   -0.76   -1.01   -1.24   -1.51   -1.86   -2.26   -2.61   -2.73   -2.42   -1.55   -0.13    1.68    3.62    5.45    7.08
+    95.0    0.00   -0.05   -0.24   -0.49   -0.76   -1.00   -1.22   -1.46   -1.77   -2.13   -2.45   -2.54   -2.21   -1.31    0.15    2.04    4.08    6.03    7.75
+   100.0    0.00   -0.05   -0.24   -0.49   -0.76   -0.99   -1.20   -1.42   -1.70   -2.02   -2.30   -2.38   -2.04   -1.15    0.33    2.27    4.39    6.42    8.13
+   105.0    0.00   -0.05   -0.24   -0.50   -0.76   -1.00   -1.20   -1.40   -1.65   -1.94   -2.19   -2.26   -1.94   -1.07    0.40    2.34    4.50    6.54    8.17
+   110.0    0.00   -0.05   -0.24   -0.50   -0.77   -1.01   -1.20   -1.39   -1.61   -1.88   -2.13   -2.21   -1.92   -1.10    0.33    2.25    4.40    6.40    7.85
+   115.0    0.00   -0.05   -0.24   -0.50   -0.78   -1.02   -1.21   -1.39   -1.61   -1.87   -2.12   -2.22   -1.99   -1.23    0.13    2.00    4.10    5.98    7.20
+   120.0    0.00   -0.05   -0.24   -0.51   -0.79   -1.03   -1.23   -1.41   -1.63   -1.89   -2.16   -2.30   -2.13   -1.45   -0.18    1.61    3.61    5.34    6.26
+   125.0    0.00   -0.05   -0.24   -0.51   -0.79   -1.04   -1.25   -1.44   -1.66   -1.94   -2.24   -2.43   -2.33   -1.74   -0.56    1.12    2.99    4.53    5.13
+   130.0    0.00   -0.05   -0.24   -0.51   -0.80   -1.06   -1.27   -1.47   -1.72   -2.02   -2.36   -2.61   -2.58   -2.07   -0.99    0.57    2.30    3.63    3.93
+   135.0    0.00   -0.06   -0.24   -0.51   -0.80   -1.07   -1.29   -1.51   -1.78   -2.12   -2.51   -2.81   -2.84   -2.41   -1.42    0.03    1.60    2.73    2.76
+   140.0    0.00   -0.06   -0.25   -0.52   -0.81   -1.07   -1.31   -1.55   -1.85   -2.23   -2.66   -3.01   -3.09   -2.71   -1.80   -0.46    0.97    1.92    1.75
+   145.0    0.00   -0.06   -0.25   -0.52   -0.81   -1.08   -1.33   -1.59   -1.92   -2.34   -2.81   -3.19   -3.31   -2.97   -2.11   -0.85    0.46    1.28    0.99
+   150.0    0.00   -0.06   -0.25   -0.52   -0.81   -1.08   -1.34   -1.62   -1.98   -2.44   -2.94   -3.34   -3.47   -3.14   -2.31   -1.11    0.12    0.86    0.56
+   155.0    0.00   -0.06   -0.25   -0.52   -0.81   -1.08   -1.35   -1.64   -2.03   -2.51   -3.03   -3.45   -3.57   -3.23   -2.39   -1.21   -0.02    0.70    0.49
+   160.0    0.00   -0.06   -0.25   -0.52   -0.81   -1.08   -1.35   -1.66   -2.07   -2.57   -3.10   -3.50   -3.59   -3.22   -2.36   -1.17    0.03    0.80    0.77
+   165.0    0.00   -0.06   -0.25   -0.52   -0.81   -1.08   -1.35   -1.67   -2.09   -2.60   -3.12   -3.50   -3.55   -3.13   -2.22   -0.98    0.26    1.14    1.36
+   170.0    0.00   -0.06   -0.26   -0.53   -0.81   -1.08   -1.36   -1.68   -2.09   -2.60   -3.11   -3.46   -3.46   -2.97   -1.99   -0.69    0.64    1.67    2.18
+   175.0    0.00   -0.06   -0.26   -0.53   -0.81   -1.08   -1.35   -1.67   -2.08   -2.58   -3.07   -3.39   -3.34   -2.78   -1.72   -0.33    1.11    2.32    3.13
+   180.0    0.00   -0.06   -0.26   -0.53   -0.82   -1.08   -1.35   -1.66   -2.06   -2.55   -3.02   -3.30   -3.20   -2.58   -1.44    0.05    1.62    3.00    4.10
+   185.0    0.00   -0.07   -0.26   -0.53   -0.82   -1.08   -1.35   -1.65   -2.04   -2.50   -2.95   -3.21   -3.07   -2.40   -1.19    0.40    2.10    3.65    4.96
+   190.0    0.00   -0.07   -0.26   -0.54   -0.82   -1.08   -1.34   -1.63   -2.01   -2.46   -2.89   -3.14   -2.98   -2.27   -1.00    0.67    2.49    4.17    5.62
+   195.0    0.00   -0.07   -0.27   -0.54   -0.82   -1.08   -1.33   -1.61   -1.98   -2.42   -2.85   -3.10   -2.94   -2.21   -0.90    0.85    2.75    4.52    6.01
+   200.0    0.00   -0.07   -0.27   -0.54   -0.82   -1.08   -1.32   -1.60   -1.95   -2.39   -2.83   -3.09   -2.95   -2.23   -0.89    0.91    2.87    4.66    6.09
+   205.0    0.00   -0.07   -0.27   -0.54   -0.82   -1.08   -1.31   -1.58   -1.93   -2.38   -2.84   -3.13   -3.02   -2.32   -0.98    0.84    2.82    4.57    5.87
+   210.0    0.00   -0.07   -0.27   -0.54   -0.82   -1.07   -1.30   -1.57   -1.93   -2.39   -2.87   -3.20   -3.13   -2.47   -1.14    0.67    2.63    4.30    5.38
+   215.0    0.00   -0.07   -0.27   -0.54   -0.82   -1.07   -1.29   -1.56   -1.93   -2.41   -2.93   -3.30   -3.28   -2.66   -1.36    0.43    2.33    3.87    4.70
+   220.0    0.00   -0.08   -0.28   -0.54   -0.81   -1.06   -1.28   -1.56   -1.94   -2.45   -3.00   -3.42   -3.44   -2.85   -1.60    0.14    1.97    3.37    3.92
+   225.0    0.00   -0.08   -0.28   -0.54   -0.81   -1.05   -1.28   -1.56   -1.96   -2.49   -3.08   -3.53   -3.59   -3.03   -1.82   -0.13    1.61    2.86    3.17
+   230.0    0.00   -0.08   -0.28   -0.54   -0.80   -1.04   -1.27   -1.56   -1.98   -2.54   -3.15   -3.63   -3.70   -3.16   -1.98   -0.34    1.31    2.42    2.54
+   235.0    0.00   -0.08   -0.28   -0.54   -0.80   -1.03   -1.27   -1.57   -2.00   -2.58   -3.21   -3.69   -3.76   -3.22   -2.05   -0.46    1.12    2.13    2.13
+   240.0    0.00   -0.08   -0.28   -0.54   -0.79   -1.03   -1.27   -1.58   -2.03   -2.62   -3.24   -3.70   -3.74   -3.19   -2.02   -0.45    1.08    2.04    2.00
+   245.0    0.00   -0.08   -0.28   -0.54   -0.79   -1.03   -1.27   -1.59   -2.05   -2.64   -3.24   -3.66   -3.66   -3.07   -1.87   -0.30    1.22    2.18    2.18
+   250.0    0.00   -0.08   -0.28   -0.54   -0.79   -1.03   -1.27   -1.60   -2.06   -2.64   -3.21   -3.58   -3.51   -2.85   -1.62   -0.02    1.52    2.55    2.66
+   255.0    0.00   -0.09   -0.29   -0.54   -0.79   -1.03   -1.28   -1.61   -2.06   -2.62   -3.14   -3.45   -3.31   -2.57   -1.28    0.37    1.98    3.10    3.40
+   260.0    0.00   -0.09   -0.29   -0.54   -0.80   -1.04   -1.29   -1.62   -2.06   -2.58   -3.05   -3.28   -3.06   -2.25   -0.88    0.84    2.54    3.80    4.29
+   265.0    0.00   -0.09   -0.29   -0.55   -0.81   -1.05   -1.30   -1.62   -2.04   -2.52   -2.94   -3.10   -2.80   -1.92   -0.47    1.33    3.15    4.56    5.25
+   270.0    0.00   -0.09   -0.29   -0.56   -0.82   -1.06   -1.31   -1.62   -2.02   -2.46   -2.82   -2.92   -2.56   -1.61   -0.09    1.80    3.73    5.30    6.16
+   275.0    0.00   -0.09   -0.30   -0.56   -0.83   -1.08   -1.33   -1.62   -1.99   -2.39   -2.71   -2.76   -2.35   -1.35    0.22    2.19    4.22    5.92    6.90
+   280.0    0.00   -0.09   -0.30   -0.57   -0.84   -1.09   -1.34   -1.62   -1.96   -2.32   -2.60   -2.62   -2.19   -1.18    0.42    2.45    4.56    6.35    7.39
+   285.0    0.00   -0.09   -0.30   -0.58   -0.85   -1.11   -1.35   -1.61   -1.93   -2.26   -2.52   -2.53   -2.11   -1.10    0.50    2.54    4.71    6.53    7.55
+   290.0    0.00   -0.09   -0.31   -0.58   -0.87   -1.12   -1.36   -1.61   -1.90   -2.21   -2.46   -2.49   -2.10   -1.14    0.43    2.46    4.63    6.44    7.38
+   295.0    0.00   -0.09   -0.31   -0.59   -0.88   -1.14   -1.37   -1.60   -1.88   -2.18   -2.44   -2.50   -2.16   -1.27    0.23    2.21    4.33    6.07    6.87
+   300.0    0.00   -0.10   -0.31   -0.60   -0.89   -1.15   -1.37   -1.60   -1.87   -2.17   -2.44   -2.55   -2.29   -1.50   -0.09    1.80    3.83    5.46    6.09
+   305.0    0.00   -0.10   -0.31   -0.60   -0.89   -1.15   -1.38   -1.60   -1.86   -2.17   -2.48   -2.64   -2.47   -1.78   -0.50    1.27    3.18    4.67    5.12
+   310.0    0.00   -0.10   -0.32   -0.60   -0.90   -1.16   -1.38   -1.60   -1.87   -2.19   -2.53   -2.76   -2.67   -2.10   -0.94    0.69    2.44    3.78    4.06
+   315.0    0.00   -0.10   -0.32   -0.61   -0.90   -1.16   -1.38   -1.61   -1.88   -2.22   -2.60   -2.88   -2.88   -2.41   -1.39    0.09    1.69    2.88    3.03
+   320.0    0.00   -0.10   -0.32   -0.61   -0.90   -1.16   -1.38   -1.61   -1.89   -2.26   -2.67   -3.00   -3.07   -2.70   -1.79   -0.45    1.01    2.06    2.15
+   325.0    0.00   -0.09   -0.32   -0.60   -0.90   -1.16   -1.38   -1.62   -1.91   -2.30   -2.74   -3.11   -3.23   -2.92   -2.11   -0.88    0.45    1.41    1.49
+   330.0    0.00   -0.09   -0.31   -0.60   -0.90   -1.15   -1.38   -1.62   -1.93   -2.34   -2.80   -3.18   -3.33   -3.07   -2.32   -1.18    0.07    0.99    1.13
+   335.0    0.00   -0.09   -0.31   -0.60   -0.89   -1.15   -1.38   -1.63   -1.96   -2.37   -2.83   -3.23   -3.37   -3.12   -2.40   -1.31   -0.10    0.83    1.08
+   340.0    0.00   -0.09   -0.31   -0.60   -0.89   -1.15   -1.38   -1.64   -1.98   -2.40   -2.85   -3.23   -3.36   -3.09   -2.36   -1.27   -0.06    0.93    1.35
+   345.0    0.00   -0.09   -0.31   -0.59   -0.88   -1.15   -1.39   -1.66   -1.99   -2.41   -2.86   -3.20   -3.29   -2.98   -2.22   -1.09    0.18    1.26    1.87
+   350.0    0.00   -0.09   -0.31   -0.59   -0.88   -1.15   -1.40   -1.67   -2.01   -2.42   -2.84   -3.15   -3.18   -2.81   -1.98   -0.79    0.56    1.78    2.57
+   355.0    0.00   -0.09   -0.30   -0.59   -0.88   -1.16   -1.41   -1.69   -2.03   -2.43   -2.82   -3.08   -3.05   -2.61   -1.70   -0.42    1.04    2.40    3.36
+   360.0    0.00   -0.09   -0.30   -0.59   -0.89   -1.16   -1.43   -1.72   -2.05   -2.43   -2.79   -3.00   -2.92   -2.40   -1.42   -0.03    1.55    3.04    4.13
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+LEIAR25         NONE                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               5    05-NOV-08 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+      1.41      1.00    155.34                              NORTH / EAST / UP   
+   NOAZI    0.00    0.16    0.61    1.22    1.82    2.23    2.30    1.98    1.29    0.36   -0.63   -1.52   -2.17   -2.48   -2.35   -1.67   -0.26    2.02    5.15
+     0.0    0.00    0.10    0.52    1.15    1.82    2.33    2.49    2.21    1.52    0.58   -0.44   -1.33   -1.96   -2.26   -2.18   -1.61   -0.37    1.74    4.74
+     5.0    0.00    0.09    0.51    1.14    1.81    2.31    2.46    2.17    1.47    0.51   -0.53   -1.43   -2.08   -2.41   -2.35   -1.82   -0.62    1.46    4.47
+    10.0    0.00    0.09    0.50    1.12    1.79    2.29    2.43    2.13    1.42    0.44   -0.61   -1.53   -2.19   -2.54   -2.51   -2.00   -0.83    1.23    4.24
+    15.0    0.00    0.08    0.49    1.11    1.77    2.27    2.40    2.10    1.38    0.38   -0.68   -1.61   -2.29   -2.64   -2.63   -2.15   -0.99    1.06    4.08
+    20.0    0.00    0.08    0.48    1.10    1.76    2.25    2.38    2.07    1.34    0.34   -0.73   -1.67   -2.35   -2.71   -2.71   -2.23   -1.09    0.97    4.01
+    25.0    0.00    0.08    0.48    1.09    1.75    2.23    2.36    2.05    1.32    0.32   -0.75   -1.70   -2.39   -2.75   -2.75   -2.26   -1.10    0.96    4.02
+    30.0    0.00    0.08    0.47    1.08    1.73    2.22    2.35    2.04    1.31    0.31   -0.76   -1.70   -2.39   -2.75   -2.74   -2.23   -1.05    1.04    4.11
+    35.0    0.00    0.08    0.47    1.08    1.72    2.21    2.34    2.03    1.32    0.32   -0.74   -1.69   -2.37   -2.73   -2.69   -2.15   -0.92    1.20    4.27
+    40.0    0.00    0.07    0.47    1.07    1.72    2.20    2.33    2.04    1.33    0.35   -0.71   -1.65   -2.33   -2.67   -2.61   -2.03   -0.75    1.41    4.47
+    45.0    0.00    0.07    0.46    1.07    1.71    2.19    2.33    2.04    1.34    0.37   -0.68   -1.61   -2.28   -2.61   -2.51   -1.88   -0.55    1.64    4.68
+    50.0    0.00    0.08    0.46    1.06    1.70    2.18    2.32    2.04    1.35    0.40   -0.64   -1.56   -2.23   -2.54   -2.41   -1.73   -0.35    1.88    4.89
+    55.0    0.00    0.08    0.46    1.06    1.70    2.17    2.31    2.03    1.36    0.42   -0.61   -1.52   -2.18   -2.48   -2.32   -1.60   -0.16    2.09    5.06
+    60.0    0.00    0.08    0.47    1.06    1.69    2.16    2.29    2.02    1.35    0.42   -0.59   -1.50   -2.15   -2.43   -2.26   -1.50   -0.02    2.25    5.18
+    65.0    0.00    0.08    0.47    1.06    1.68    2.14    2.27    1.99    1.33    0.41   -0.59   -1.49   -2.13   -2.41   -2.22   -1.44    0.06    2.35    5.24
+    70.0    0.00    0.09    0.48    1.06    1.68    2.12    2.24    1.95    1.29    0.38   -0.61   -1.50   -2.14   -2.41   -2.22   -1.43    0.08    2.37    5.24
+    75.0    0.00    0.09    0.48    1.07    1.67    2.10    2.21    1.91    1.24    0.34   -0.65   -1.52   -2.16   -2.45   -2.26   -1.47    0.04    2.33    5.19
+    80.0    0.00    0.10    0.49    1.07    1.67    2.08    2.17    1.86    1.19    0.28   -0.70   -1.57   -2.21   -2.50   -2.33   -1.56   -0.05    2.24    5.10
+    85.0    0.00    0.10    0.50    1.08    1.66    2.06    2.13    1.81    1.12    0.21   -0.76   -1.63   -2.27   -2.57   -2.42   -1.67   -0.18    2.11    4.99
+    90.0    0.00    0.11    0.51    1.08    1.66    2.05    2.10    1.76    1.06    0.15   -0.82   -1.69   -2.33   -2.65   -2.52   -1.80   -0.32    1.97    4.89
+    95.0    0.00    0.11    0.52    1.09    1.66    2.04    2.07    1.71    1.01    0.09   -0.88   -1.75   -2.40   -2.73   -2.62   -1.92   -0.46    1.84    4.82
+   100.0    0.00    0.12    0.53    1.10    1.67    2.03    2.05    1.68    0.97    0.05   -0.92   -1.80   -2.45   -2.79   -2.70   -2.02   -0.57    1.75    4.79
+   105.0    0.00    0.13    0.54    1.12    1.67    2.03    2.04    1.67    0.95    0.03   -0.95   -1.82   -2.49   -2.83   -2.75   -2.08   -0.63    1.71    4.83
+   110.0    0.00    0.14    0.55    1.13    1.69    2.04    2.04    1.67    0.95    0.02   -0.95   -1.83   -2.50   -2.85   -2.77   -2.10   -0.64    1.74    4.93
+   115.0    0.00    0.14    0.57    1.15    1.70    2.05    2.06    1.68    0.97    0.04   -0.94   -1.81   -2.48   -2.83   -2.74   -2.06   -0.58    1.83    5.09
+   120.0    0.00    0.15    0.58    1.16    1.72    2.07    2.08    1.71    1.00    0.08   -0.90   -1.77   -2.43   -2.77   -2.68   -1.97   -0.47    1.97    5.29
+   125.0    0.00    0.16    0.60    1.18    1.74    2.10    2.11    1.75    1.05    0.13   -0.84   -1.71   -2.36   -2.69   -2.57   -1.84   -0.32    2.16    5.52
+   130.0    0.00    0.17    0.61    1.20    1.77    2.13    2.15    1.80    1.11    0.20   -0.77   -1.63   -2.28   -2.58   -2.44   -1.69   -0.13    2.37    5.76
+   135.0    0.00    0.18    0.63    1.23    1.79    2.16    2.19    1.85    1.17    0.27   -0.69   -1.55   -2.18   -2.47   -2.30   -1.52    0.06    2.57    5.97
+   140.0    0.00    0.19    0.65    1.25    1.82    2.19    2.23    1.90    1.23    0.34   -0.61   -1.46   -2.08   -2.35   -2.15   -1.35    0.24    2.75    6.14
+   145.0    0.00    0.19    0.66    1.27    1.85    2.22    2.28    1.95    1.29    0.40   -0.54   -1.39   -1.99   -2.24   -2.03   -1.21    0.38    2.88    6.25
+   150.0    0.00    0.20    0.68    1.29    1.87    2.26    2.31    1.99    1.34    0.45   -0.49   -1.33   -1.92   -2.16   -1.93   -1.11    0.47    2.94    6.28
+   155.0    0.00    0.21    0.69    1.31    1.90    2.29    2.35    2.03    1.37    0.49   -0.45   -1.29   -1.88   -2.11   -1.88   -1.06    0.50    2.94    6.23
+   160.0    0.00    0.22    0.70    1.33    1.92    2.31    2.37    2.06    1.40    0.51   -0.44   -1.28   -1.87   -2.10   -1.87   -1.07    0.46    2.87    6.11
+   165.0    0.00    0.22    0.72    1.35    1.94    2.33    2.40    2.08    1.41    0.51   -0.44   -1.29   -1.89   -2.12   -1.91   -1.13    0.37    2.73    5.93
+   170.0    0.00    0.23    0.73    1.36    1.96    2.35    2.41    2.09    1.41    0.50   -0.47   -1.33   -1.93   -2.19   -1.99   -1.24    0.23    2.55    5.71
+   175.0    0.00    0.24    0.74    1.38    1.98    2.37    2.42    2.09    1.40    0.48   -0.51   -1.38   -2.00   -2.27   -2.10   -1.38    0.05    2.34    5.47
+   180.0    0.00    0.24    0.75    1.39    1.99    2.38    2.43    2.09    1.39    0.45   -0.55   -1.45   -2.09   -2.38   -2.23   -1.54   -0.13    2.13    5.25
+   185.0    0.00    0.24    0.76    1.40    2.00    2.39    2.43    2.08    1.37    0.42   -0.60   -1.51   -2.17   -2.48   -2.36   -1.69   -0.31    1.93    5.06
+   190.0    0.00    0.25    0.76    1.40    2.00    2.39    2.43    2.07    1.35    0.39   -0.65   -1.58   -2.25   -2.58   -2.48   -1.83   -0.47    1.78    4.92
+   195.0    0.00    0.25    0.77    1.41    2.00    2.39    2.43    2.06    1.33    0.36   -0.69   -1.62   -2.31   -2.66   -2.57   -1.94   -0.58    1.68    4.85
+   200.0    0.00    0.25    0.77    1.41    2.00    2.38    2.42    2.05    1.31    0.33   -0.71   -1.66   -2.35   -2.71   -2.63   -2.00   -0.64    1.65    4.86
+   205.0    0.00    0.25    0.77    1.41    2.00    2.37    2.40    2.03    1.30    0.32   -0.73   -1.67   -2.37   -2.72   -2.65   -2.02   -0.64    1.67    4.94
+   210.0    0.00    0.25    0.77    1.40    1.99    2.36    2.38    2.01    1.28    0.31   -0.73   -1.66   -2.35   -2.71   -2.63   -1.99   -0.59    1.75    5.07
+   215.0    0.00    0.25    0.77    1.40    1.98    2.34    2.36    1.99    1.27    0.31   -0.71   -1.64   -2.32   -2.67   -2.59   -1.93   -0.51    1.87    5.24
+   220.0    0.00    0.25    0.76    1.39    1.96    2.32    2.34    1.97    1.26    0.31   -0.69   -1.60   -2.27   -2.61   -2.52   -1.85   -0.40    2.02    5.42
+   225.0    0.00    0.25    0.76    1.38    1.94    2.30    2.32    1.95    1.25    0.32   -0.67   -1.56   -2.22   -2.55   -2.44   -1.75   -0.28    2.16    5.59
+   230.0    0.00    0.25    0.75    1.36    1.93    2.27    2.29    1.93    1.24    0.32   -0.65   -1.53   -2.18   -2.50   -2.38   -1.67   -0.17    2.28    5.72
+   235.0    0.00    0.25    0.74    1.35    1.91    2.25    2.26    1.91    1.22    0.32   -0.64   -1.51   -2.15   -2.46   -2.33   -1.61   -0.10    2.37    5.79
+   240.0    0.00    0.24    0.73    1.34    1.89    2.22    2.24    1.89    1.21    0.32   -0.64   -1.50   -2.15   -2.45   -2.32   -1.58   -0.07    2.39    5.79
+   245.0    0.00    0.24    0.72    1.32    1.87    2.20    2.21    1.87    1.19    0.31   -0.65   -1.52   -2.17   -2.48   -2.34   -1.60   -0.08    2.36    5.71
+   250.0    0.00    0.23    0.72    1.31    1.85    2.18    2.19    1.85    1.17    0.29   -0.68   -1.56   -2.22   -2.54   -2.40   -1.66   -0.15    2.26    5.55
+   255.0    0.00    0.23    0.71    1.30    1.83    2.16    2.18    1.83    1.16    0.26   -0.71   -1.61   -2.29   -2.62   -2.50   -1.76   -0.27    2.10    5.33
+   260.0    0.00    0.22    0.70    1.28    1.82    2.15    2.16    1.81    1.14    0.23   -0.76   -1.68   -2.38   -2.73   -2.61   -1.89   -0.42    1.91    5.07
+   265.0    0.00    0.22    0.69    1.27    1.81    2.14    2.15    1.80    1.12    0.20   -0.81   -1.75   -2.47   -2.84   -2.74   -2.03   -0.59    1.69    4.79
+   270.0    0.00    0.21    0.68    1.26    1.80    2.14    2.15    1.80    1.10    0.17   -0.86   -1.81   -2.55   -2.94   -2.85   -2.17   -0.76    1.48    4.52
+   275.0    0.00    0.21    0.67    1.25    1.80    2.14    2.15    1.80    1.09    0.15   -0.89   -1.86   -2.62   -3.01   -2.94   -2.28   -0.90    1.30    4.30
+   280.0    0.00    0.20    0.66    1.25    1.80    2.14    2.16    1.80    1.10    0.14   -0.91   -1.89   -2.65   -3.05   -2.99   -2.35   -1.00    1.16    4.14
+   285.0    0.00    0.19    0.65    1.24    1.80    2.15    2.18    1.82    1.11    0.15   -0.91   -1.89   -2.65   -3.05   -3.00   -2.37   -1.05    1.09    4.07
+   290.0    0.00    0.19    0.64    1.24    1.80    2.17    2.20    1.84    1.13    0.17   -0.88   -1.86   -2.60   -3.00   -2.94   -2.33   -1.03    1.10    4.09
+   295.0    0.00    0.18    0.63    1.23    1.81    2.19    2.23    1.88    1.17    0.21   -0.83   -1.79   -2.51   -2.90   -2.84   -2.23   -0.94    1.19    4.20
+   300.0    0.00    0.17    0.62    1.23    1.82    2.21    2.26    1.92    1.22    0.27   -0.76   -1.69   -2.39   -2.76   -2.69   -2.08   -0.78    1.35    4.39
+   305.0    0.00    0.17    0.62    1.23    1.83    2.23    2.30    1.97    1.28    0.34   -0.67   -1.58   -2.25   -2.59   -2.50   -1.89   -0.58    1.57    4.64
+   310.0    0.00    0.16    0.61    1.23    1.84    2.26    2.34    2.03    1.35    0.42   -0.57   -1.45   -2.09   -2.40   -2.30   -1.67   -0.35    1.82    4.92
+   315.0    0.00    0.15    0.60    1.22    1.85    2.29    2.39    2.08    1.42    0.51   -0.46   -1.32   -1.94   -2.22   -2.10   -1.45   -0.12    2.08    5.20
+   320.0    0.00    0.15    0.59    1.22    1.86    2.31    2.43    2.14    1.48    0.59   -0.37   -1.21   -1.80   -2.06   -1.91   -1.25    0.10    2.32    5.45
+   325.0    0.00    0.14    0.58    1.22    1.86    2.33    2.46    2.19    1.54    0.66   -0.29   -1.11   -1.69   -1.93   -1.77   -1.09    0.28    2.52    5.65
+   330.0    0.00    0.13    0.57    1.21    1.87    2.35    2.50    2.23    1.59    0.71   -0.23   -1.05   -1.61   -1.84   -1.67   -0.98    0.40    2.64    5.76
+   335.0    0.00    0.13    0.56    1.20    1.87    2.36    2.52    2.26    1.62    0.74   -0.20   -1.02   -1.58   -1.81   -1.63   -0.94    0.44    2.68    5.78
+   340.0    0.00    0.12    0.55    1.19    1.87    2.37    2.53    2.28    1.64    0.75   -0.20   -1.02   -1.59   -1.82   -1.66   -0.97    0.40    2.62    5.70
+   345.0    0.00    0.11    0.54    1.19    1.86    2.37    2.53    2.28    1.63    0.73   -0.23   -1.06   -1.64   -1.89   -1.73   -1.07    0.28    2.49    5.54
+   350.0    0.00    0.11    0.53    1.17    1.85    2.36    2.52    2.27    1.61    0.70   -0.28   -1.13   -1.73   -1.99   -1.85   -1.22    0.10    2.28    5.30
+   355.0    0.00    0.10    0.52    1.16    1.84    2.34    2.51    2.24    1.57    0.64   -0.35   -1.23   -1.84   -2.12   -2.01   -1.40   -0.12    2.02    5.03
+   360.0    0.00    0.10    0.52    1.15    1.82    2.33    2.49    2.21    1.52    0.58   -0.44   -1.33   -1.96   -2.26   -2.18   -1.61   -0.37    1.74    4.74
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.15      0.29    164.00                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.13   -0.50   -0.99   -1.53   -2.06   -2.58   -3.15   -3.76   -4.33   -4.70   -4.71   -4.23   -3.25   -1.85   -0.11    2.01    4.69    8.18
+     0.0    0.00   -0.11   -0.45   -0.92   -1.45   -1.98   -2.53   -3.14   -3.77   -4.36   -4.74   -4.77   -4.35   -3.47   -2.17   -0.44    1.79    4.62    7.94
+     5.0    0.00   -0.11   -0.45   -0.93   -1.45   -1.99   -2.54   -3.15   -3.79   -4.37   -4.74   -4.77   -4.36   -3.51   -2.23   -0.51    1.73    4.59    7.91
+    10.0    0.00   -0.11   -0.45   -0.93   -1.46   -2.00   -2.56   -3.16   -3.80   -4.38   -4.76   -4.79   -4.39   -3.55   -2.30   -0.60    1.65    4.52    7.86
+    15.0    0.00   -0.11   -0.45   -0.94   -1.47   -2.01   -2.57   -3.18   -3.82   -4.39   -4.77   -4.81   -4.42   -3.61   -2.38   -0.70    1.55    4.44    7.80
+    20.0    0.00   -0.11   -0.46   -0.94   -1.47   -2.02   -2.58   -3.19   -3.83   -4.41   -4.78   -4.82   -4.45   -3.66   -2.45   -0.79    1.45    4.35    7.75
+    25.0    0.00   -0.12   -0.46   -0.94   -1.48   -2.03   -2.59   -3.21   -3.84   -4.41   -4.79   -4.84   -4.47   -3.70   -2.51   -0.87    1.36    4.28    7.71
+    30.0    0.00   -0.12   -0.46   -0.95   -1.48   -2.03   -2.60   -3.21   -3.84   -4.42   -4.79   -4.84   -4.48   -3.71   -2.54   -0.91    1.31    4.24    7.70
+    35.0    0.00   -0.12   -0.47   -0.95   -1.49   -2.03   -2.60   -3.20   -3.83   -4.41   -4.79   -4.83   -4.48   -3.71   -2.53   -0.90    1.32    4.25    7.73
+    40.0    0.00   -0.12   -0.47   -0.95   -1.49   -2.03   -2.59   -3.19   -3.81   -4.39   -4.76   -4.81   -4.45   -3.67   -2.48   -0.84    1.38    4.31    7.82
+    45.0    0.00   -0.12   -0.47   -0.96   -1.48   -2.02   -2.57   -3.16   -3.78   -4.35   -4.73   -4.77   -4.40   -3.60   -2.38   -0.73    1.50    4.43    7.97
+    50.0    0.00   -0.12   -0.47   -0.96   -1.48   -2.01   -2.55   -3.13   -3.74   -4.31   -4.68   -4.71   -4.32   -3.49   -2.24   -0.56    1.69    4.62    8.19
+    55.0    0.00   -0.13   -0.48   -0.96   -1.48   -1.99   -2.52   -3.09   -3.69   -4.25   -4.62   -4.64   -4.22   -3.35   -2.06   -0.34    1.92    4.86    8.46
+    60.0    0.00   -0.13   -0.48   -0.96   -1.47   -1.98   -2.49   -3.04   -3.64   -4.19   -4.54   -4.55   -4.10   -3.19   -1.85   -0.08    2.20    5.14    8.77
+    65.0    0.00   -0.13   -0.48   -0.96   -1.47   -1.96   -2.46   -3.00   -3.58   -4.12   -4.47   -4.45   -3.97   -3.01   -1.62    0.19    2.48    5.43    9.09
+    70.0    0.00   -0.13   -0.49   -0.96   -1.46   -1.95   -2.44   -2.97   -3.54   -4.06   -4.39   -4.36   -3.84   -2.84   -1.39    0.45    2.77    5.72    9.42
+    75.0    0.00   -0.14   -0.49   -0.97   -1.46   -1.94   -2.42   -2.94   -3.50   -4.01   -4.33   -4.27   -3.72   -2.67   -1.18    0.70    3.03    5.98    9.71
+    80.0    0.00   -0.14   -0.49   -0.97   -1.47   -1.94   -2.42   -2.93   -3.48   -3.98   -4.28   -4.20   -3.61   -2.52   -0.99    0.92    3.25    6.18    9.94
+    85.0    0.00   -0.14   -0.50   -0.98   -1.48   -1.95   -2.42   -2.93   -3.47   -3.97   -4.25   -4.15   -3.53   -2.40   -0.84    1.08    3.40    6.32   10.10
+    90.0    0.00   -0.14   -0.50   -0.98   -1.49   -1.97   -2.44   -2.95   -3.49   -3.98   -4.25   -4.12   -3.48   -2.32   -0.74    1.19    3.49    6.38   10.15
+    95.0    0.00   -0.15   -0.51   -0.99   -1.50   -1.99   -2.46   -2.97   -3.52   -4.00   -4.27   -4.13   -3.47   -2.29   -0.69    1.23    3.51    6.35   10.12
+   100.0    0.00   -0.15   -0.52   -1.00   -1.52   -2.01   -2.50   -3.02   -3.56   -4.05   -4.32   -4.17   -3.50   -2.31   -0.71    1.21    3.45    6.25    9.98
+   105.0    0.00   -0.15   -0.52   -1.02   -1.54   -2.04   -2.54   -3.06   -3.62   -4.11   -4.38   -4.24   -3.57   -2.38   -0.77    1.13    3.34    6.08    9.76
+   110.0    0.00   -0.15   -0.53   -1.03   -1.56   -2.07   -2.58   -3.12   -3.68   -4.19   -4.47   -4.33   -3.67   -2.48   -0.88    1.00    3.17    5.86    9.47
+   115.0    0.00   -0.16   -0.54   -1.04   -1.58   -2.11   -2.62   -3.17   -3.75   -4.27   -4.56   -4.45   -3.80   -2.62   -1.03    0.83    2.97    5.60    9.14
+   120.0    0.00   -0.16   -0.54   -1.06   -1.60   -2.14   -2.66   -3.22   -3.81   -4.35   -4.66   -4.57   -3.94   -2.78   -1.21    0.64    2.74    5.32    8.79
+   125.0    0.00   -0.16   -0.55   -1.07   -1.62   -2.17   -2.70   -3.27   -3.87   -4.42   -4.76   -4.69   -4.09   -2.95   -1.40    0.43    2.51    5.04    8.45
+   130.0    0.00   -0.16   -0.55   -1.08   -1.64   -2.19   -2.73   -3.31   -3.92   -4.49   -4.85   -4.81   -4.24   -3.12   -1.59    0.22    2.28    4.78    8.12
+   135.0    0.00   -0.16   -0.56   -1.09   -1.66   -2.21   -2.76   -3.34   -3.96   -4.55   -4.93   -4.92   -4.38   -3.29   -1.77    0.03    2.07    4.54    7.83
+   140.0    0.00   -0.17   -0.56   -1.10   -1.68   -2.23   -2.78   -3.37   -3.99   -4.59   -5.00   -5.02   -4.50   -3.44   -1.95   -0.16    1.88    4.33    7.58
+   145.0    0.00   -0.17   -0.57   -1.11   -1.69   -2.25   -2.80   -3.39   -4.02   -4.63   -5.05   -5.10   -4.61   -3.58   -2.10   -0.33    1.71    4.16    7.37
+   150.0    0.00   -0.17   -0.57   -1.12   -1.70   -2.26   -2.81   -3.40   -4.04   -4.66   -5.10   -5.17   -4.71   -3.70   -2.24   -0.47    1.56    4.02    7.21
+   155.0    0.00   -0.17   -0.58   -1.12   -1.71   -2.27   -2.83   -3.41   -4.05   -4.68   -5.14   -5.22   -4.78   -3.79   -2.35   -0.59    1.44    3.91    7.09
+   160.0    0.00   -0.17   -0.58   -1.13   -1.71   -2.28   -2.84   -3.42   -4.07   -4.70   -5.17   -5.27   -4.85   -3.87   -2.45   -0.70    1.35    3.83    7.02
+   165.0    0.00   -0.17   -0.58   -1.13   -1.72   -2.29   -2.84   -3.44   -4.08   -4.72   -5.20   -5.30   -4.90   -3.94   -2.53   -0.78    1.27    3.78    6.98
+   170.0    0.00   -0.17   -0.58   -1.13   -1.72   -2.29   -2.85   -3.45   -4.10   -4.74   -5.22   -5.34   -4.94   -3.99   -2.59   -0.84    1.23    3.76    7.00
+   175.0    0.00   -0.17   -0.58   -1.13   -1.73   -2.30   -2.86   -3.46   -4.11   -4.76   -5.25   -5.37   -4.97   -4.03   -2.64   -0.88    1.21    3.79    7.07
+   180.0    0.00   -0.17   -0.58   -1.13   -1.73   -2.30   -2.87   -3.47   -4.13   -4.78   -5.27   -5.39   -5.00   -4.06   -2.66   -0.90    1.22    3.85    7.19
+   185.0    0.00   -0.17   -0.57   -1.13   -1.72   -2.30   -2.87   -3.48   -4.14   -4.79   -5.28   -5.40   -5.01   -4.07   -2.67   -0.89    1.27    3.97    7.39
+   190.0    0.00   -0.16   -0.57   -1.12   -1.72   -2.30   -2.87   -3.48   -4.14   -4.80   -5.28   -5.40   -5.00   -4.06   -2.65   -0.85    1.36    4.13    7.65
+   195.0    0.00   -0.16   -0.57   -1.11   -1.71   -2.29   -2.86   -3.47   -4.14   -4.79   -5.27   -5.38   -4.97   -4.02   -2.60   -0.77    1.49    4.34    7.97
+   200.0    0.00   -0.16   -0.56   -1.11   -1.70   -2.27   -2.85   -3.46   -4.12   -4.77   -5.24   -5.34   -4.92   -3.96   -2.51   -0.65    1.66    4.60    8.35
+   205.0    0.00   -0.16   -0.55   -1.10   -1.68   -2.25   -2.83   -3.43   -4.09   -4.73   -5.19   -5.28   -4.84   -3.86   -2.39   -0.50    1.87    4.90    8.77
+   210.0    0.00   -0.15   -0.55   -1.08   -1.66   -2.23   -2.80   -3.40   -4.05   -4.68   -5.12   -5.19   -4.73   -3.72   -2.23   -0.30    2.11    5.21    9.20
+   215.0    0.00   -0.15   -0.54   -1.07   -1.64   -2.20   -2.76   -3.35   -4.00   -4.61   -5.04   -5.07   -4.59   -3.55   -2.03   -0.08    2.37    5.53    9.62
+   220.0    0.00   -0.15   -0.53   -1.05   -1.62   -2.17   -2.72   -3.30   -3.93   -4.53   -4.93   -4.94   -4.42   -3.35   -1.80    0.17    2.64    5.83    9.99
+   225.0    0.00   -0.15   -0.52   -1.04   -1.59   -2.13   -2.67   -3.24   -3.86   -4.44   -4.82   -4.80   -4.24   -3.14   -1.56    0.43    2.90    6.09   10.27
+   230.0    0.00   -0.14   -0.51   -1.02   -1.57   -2.09   -2.62   -3.18   -3.78   -4.34   -4.70   -4.65   -4.06   -2.92   -1.31    0.68    3.13    6.29   10.45
+   235.0    0.00   -0.14   -0.51   -1.01   -1.54   -2.06   -2.57   -3.11   -3.70   -4.25   -4.58   -4.50   -3.87   -2.70   -1.08    0.91    3.32    6.41   10.50
+   240.0    0.00   -0.14   -0.50   -0.99   -1.52   -2.02   -2.52   -3.05   -3.63   -4.16   -4.47   -4.37   -3.71   -2.51   -0.87    1.10    3.45    6.44   10.42
+   245.0    0.00   -0.13   -0.49   -0.98   -1.49   -1.99   -2.47   -3.00   -3.56   -4.08   -4.38   -4.25   -3.58   -2.35   -0.71    1.24    3.51    6.38   10.21
+   250.0    0.00   -0.13   -0.48   -0.96   -1.47   -1.96   -2.44   -2.95   -3.51   -4.02   -4.31   -4.17   -3.48   -2.24   -0.60    1.31    3.50    6.23    9.89
+   255.0    0.00   -0.13   -0.48   -0.95   -1.46   -1.94   -2.41   -2.92   -3.47   -3.98   -4.26   -4.12   -3.42   -2.19   -0.55    1.32    3.42    6.00    9.48
+   260.0    0.00   -0.12   -0.47   -0.94   -1.44   -1.92   -2.39   -2.89   -3.45   -3.96   -4.25   -4.11   -3.42   -2.19   -0.58    1.25    3.26    5.70    9.02
+   265.0    0.00   -0.12   -0.46   -0.94   -1.44   -1.91   -2.38   -2.88   -3.44   -3.95   -4.25   -4.13   -3.45   -2.25   -0.66    1.11    3.04    5.36    8.54
+   270.0    0.00   -0.12   -0.46   -0.93   -1.43   -1.91   -2.38   -2.89   -3.45   -3.97   -4.28   -4.18   -3.53   -2.35   -0.81    0.91    2.77    5.00    8.07
+   275.0    0.00   -0.12   -0.46   -0.93   -1.43   -1.91   -2.39   -2.90   -3.47   -4.00   -4.33   -4.25   -3.63   -2.50   -1.01    0.66    2.47    4.64    7.65
+   280.0    0.00   -0.11   -0.45   -0.93   -1.43   -1.92   -2.40   -2.93   -3.50   -4.04   -4.39   -4.33   -3.76   -2.68   -1.24    0.39    2.16    4.30    7.31
+   285.0    0.00   -0.11   -0.45   -0.93   -1.44   -1.93   -2.42   -2.96   -3.54   -4.09   -4.45   -4.43   -3.90   -2.87   -1.48    0.11    1.86    4.01    7.05
+   290.0    0.00   -0.11   -0.45   -0.92   -1.44   -1.94   -2.45   -2.99   -3.58   -4.15   -4.52   -4.52   -4.03   -3.05   -1.72   -0.17    1.58    3.76    6.88
+   295.0    0.00   -0.11   -0.45   -0.93   -1.45   -1.96   -2.47   -3.03   -3.63   -4.20   -4.59   -4.61   -4.16   -3.22   -1.93   -0.41    1.34    3.59    6.80
+   300.0    0.00   -0.11   -0.45   -0.93   -1.45   -1.97   -2.50   -3.06   -3.67   -4.25   -4.65   -4.69   -4.26   -3.37   -2.12   -0.62    1.16    3.48    6.80
+   305.0    0.00   -0.11   -0.45   -0.93   -1.45   -1.98   -2.52   -3.09   -3.71   -4.30   -4.70   -4.75   -4.35   -3.49   -2.26   -0.77    1.05    3.44    6.87
+   310.0    0.00   -0.11   -0.44   -0.93   -1.46   -1.99   -2.53   -3.12   -3.74   -4.33   -4.74   -4.80   -4.41   -3.56   -2.36   -0.86    0.99    3.46    6.98
+   315.0    0.00   -0.11   -0.44   -0.92   -1.46   -1.99   -2.54   -3.14   -3.77   -4.36   -4.77   -4.83   -4.44   -3.61   -2.40   -0.89    1.00    3.55    7.12
+   320.0    0.00   -0.10   -0.44   -0.92   -1.46   -2.00   -2.55   -3.15   -3.78   -4.38   -4.78   -4.84   -4.45   -3.62   -2.41   -0.87    1.07    3.67    7.28
+   325.0    0.00   -0.10   -0.44   -0.92   -1.45   -1.99   -2.55   -3.15   -3.79   -4.38   -4.79   -4.84   -4.45   -3.60   -2.38   -0.81    1.18    3.83    7.43
+   330.0    0.00   -0.10   -0.44   -0.92   -1.45   -1.99   -2.54   -3.15   -3.79   -4.38   -4.78   -4.83   -4.43   -3.57   -2.33   -0.73    1.31    4.00    7.58
+   335.0    0.00   -0.10   -0.44   -0.92   -1.45   -1.98   -2.54   -3.14   -3.78   -4.38   -4.78   -4.82   -4.40   -3.53   -2.26   -0.63    1.45    4.17    7.70
+   340.0    0.00   -0.11   -0.44   -0.92   -1.44   -1.98   -2.53   -3.14   -3.78   -4.37   -4.76   -4.80   -4.38   -3.50   -2.21   -0.54    1.59    4.33    7.80
+   345.0    0.00   -0.11   -0.44   -0.92   -1.44   -1.97   -2.53   -3.13   -3.77   -4.36   -4.75   -4.78   -4.36   -3.47   -2.16   -0.46    1.70    4.46    7.88
+   350.0    0.00   -0.11   -0.44   -0.92   -1.44   -1.97   -2.53   -3.13   -3.77   -4.36   -4.74   -4.77   -4.34   -3.45   -2.14   -0.42    1.77    4.56    7.93
+   355.0    0.00   -0.11   -0.45   -0.92   -1.44   -1.97   -2.53   -3.13   -3.77   -4.36   -4.74   -4.76   -4.34   -3.45   -2.14   -0.41    1.80    4.61    7.94
+   360.0    0.00   -0.11   -0.45   -0.92   -1.45   -1.98   -2.53   -3.14   -3.77   -4.36   -4.74   -4.77   -4.35   -3.47   -2.17   -0.44    1.79    4.62    7.94
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+LEIAR25         LEIT                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               5    05-NOV-08 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+      1.04      1.18    155.08                              NORTH / EAST / UP   
+   NOAZI    0.00    0.20    0.74    1.52    2.35    3.01    3.29    3.07    2.35    1.24   -0.02   -1.18   -2.05   -2.51   -2.51   -1.95   -0.67    1.54    4.80
+     0.0    0.00    0.16    0.70    1.52    2.42    3.15    3.49    3.29    2.55    1.40    0.10   -1.09   -1.96   -2.42   -2.43   -1.92   -0.78    1.23    4.26
+     5.0    0.00    0.15    0.70    1.51    2.41    3.14    3.48    3.27    2.52    1.36    0.04   -1.17   -2.06   -2.52   -2.53   -2.04   -0.92    1.05    4.06
+    10.0    0.00    0.15    0.69    1.50    2.39    3.12    3.46    3.25    2.49    1.32   -0.01   -1.24   -2.14   -2.61   -2.62   -2.13   -1.03    0.91    3.91
+    15.0    0.00    0.15    0.68    1.49    2.38    3.11    3.44    3.24    2.48    1.30   -0.05   -1.29   -2.20   -2.67   -2.68   -2.20   -1.11    0.82    3.82
+    20.0    0.00    0.15    0.68    1.48    2.36    3.09    3.43    3.22    2.47    1.29   -0.07   -1.31   -2.23   -2.71   -2.71   -2.22   -1.12    0.80    3.82
+    25.0    0.00    0.15    0.67    1.47    2.34    3.07    3.41    3.22    2.47    1.29   -0.06   -1.32   -2.24   -2.71   -2.71   -2.20   -1.09    0.85    3.89
+    30.0    0.00    0.14    0.66    1.45    2.33    3.05    3.40    3.22    2.48    1.31   -0.04   -1.29   -2.22   -2.70   -2.67   -2.14   -1.00    0.97    4.02
+    35.0    0.00    0.14    0.66    1.44    2.31    3.03    3.39    3.22    2.50    1.35    0.00   -1.26   -2.19   -2.66   -2.62   -2.05   -0.87    1.13    4.19
+    40.0    0.00    0.14    0.65    1.43    2.29    3.02    3.38    3.23    2.52    1.38    0.05   -1.21   -2.14   -2.60   -2.54   -1.94   -0.72    1.31    4.39
+    45.0    0.00    0.14    0.65    1.42    2.28    3.00    3.37    3.23    2.55    1.42    0.09   -1.16   -2.08   -2.54   -2.46   -1.83   -0.57    1.50    4.57
+    50.0    0.00    0.14    0.65    1.41    2.26    2.99    3.36    3.23    2.56    1.45    0.14   -1.11   -2.03   -2.48   -2.39   -1.73   -0.43    1.67    4.73
+    55.0    0.00    0.14    0.64    1.40    2.25    2.97    3.35    3.23    2.57    1.47    0.16   -1.08   -1.99   -2.44   -2.33   -1.65   -0.32    1.79    4.83
+    60.0    0.00    0.14    0.64    1.40    2.24    2.96    3.34    3.21    2.56    1.47    0.17   -1.06   -1.97   -2.41   -2.30   -1.61   -0.26    1.86    4.89
+    65.0    0.00    0.15    0.64    1.39    2.23    2.94    3.31    3.19    2.53    1.44    0.15   -1.07   -1.97   -2.40   -2.30   -1.61   -0.26    1.87    4.88
+    70.0    0.00    0.15    0.64    1.39    2.22    2.92    3.28    3.15    2.48    1.40    0.11   -1.10   -1.99   -2.43   -2.33   -1.65   -0.31    1.82    4.82
+    75.0    0.00    0.15    0.65    1.39    2.21    2.91    3.25    3.10    2.42    1.33    0.05   -1.15   -2.04   -2.48   -2.39   -1.74   -0.42    1.72    4.73
+    80.0    0.00    0.15    0.65    1.39    2.21    2.89    3.21    3.04    2.35    1.25   -0.03   -1.22   -2.10   -2.55   -2.49   -1.86   -0.55    1.59    4.63
+    85.0    0.00    0.16    0.66    1.40    2.20    2.87    3.17    2.98    2.27    1.17   -0.11   -1.30   -2.18   -2.64   -2.60   -2.00   -0.71    1.45    4.53
+    90.0    0.00    0.16    0.66    1.40    2.20    2.85    3.14    2.92    2.20    1.08   -0.20   -1.39   -2.27   -2.73   -2.71   -2.14   -0.86    1.32    4.45
+    95.0    0.00    0.17    0.67    1.41    2.20    2.84    3.10    2.87    2.12    1.00   -0.29   -1.46   -2.35   -2.82   -2.82   -2.27   -0.99    1.22    4.42
+   100.0    0.00    0.17    0.68    1.42    2.20    2.83    3.08    2.82    2.06    0.93   -0.35   -1.53   -2.41   -2.89   -2.91   -2.37   -1.08    1.17    4.43
+   105.0    0.00    0.18    0.69    1.43    2.21    2.82    3.06    2.79    2.02    0.88   -0.40   -1.57   -2.46   -2.94   -2.97   -2.43   -1.12    1.18    4.50
+   110.0    0.00    0.18    0.70    1.44    2.22    2.82    3.05    2.78    2.00    0.86   -0.41   -1.59   -2.47   -2.96   -2.99   -2.44   -1.10    1.24    4.61
+   115.0    0.00    0.19    0.72    1.46    2.23    2.83    3.05    2.77    2.00    0.87   -0.40   -1.57   -2.45   -2.95   -2.97   -2.40   -1.03    1.36    4.76
+   120.0    0.00    0.20    0.73    1.47    2.25    2.84    3.06    2.79    2.02    0.90   -0.36   -1.53   -2.41   -2.89   -2.90   -2.31   -0.91    1.51    4.93
+   125.0    0.00    0.20    0.74    1.49    2.27    2.86    3.08    2.81    2.06    0.95   -0.30   -1.45   -2.33   -2.80   -2.80   -2.19   -0.76    1.68    5.10
+   130.0    0.00    0.21    0.76    1.51    2.29    2.89    3.11    2.85    2.11    1.01   -0.22   -1.36   -2.22   -2.69   -2.67   -2.04   -0.59    1.85    5.26
+   135.0    0.00    0.22    0.77    1.53    2.31    2.92    3.14    2.89    2.16    1.09   -0.13   -1.26   -2.11   -2.56   -2.53   -1.89   -0.44    2.00    5.39
+   140.0    0.00    0.22    0.78    1.55    2.34    2.94    3.18    2.94    2.22    1.16   -0.04   -1.16   -1.99   -2.44   -2.40   -1.75   -0.30    2.11    5.48
+   145.0    0.00    0.23    0.80    1.57    2.37    2.97    3.22    2.98    2.28    1.22    0.04   -1.06   -1.89   -2.32   -2.28   -1.63   -0.21    2.17    5.52
+   150.0    0.00    0.23    0.81    1.59    2.39    3.00    3.25    3.02    2.32    1.28    0.10   -0.99   -1.81   -2.24   -2.19   -1.56   -0.17    2.17    5.51
+   155.0    0.00    0.24    0.82    1.61    2.41    3.03    3.28    3.05    2.36    1.32    0.14   -0.94   -1.76   -2.18   -2.14   -1.54   -0.19    2.12    5.45
+   160.0    0.00    0.24    0.83    1.62    2.44    3.06    3.31    3.08    2.38    1.34    0.16   -0.93   -1.74   -2.17   -2.14   -1.56   -0.25    2.02    5.35
+   165.0    0.00    0.25    0.84    1.64    2.46    3.08    3.33    3.10    2.39    1.34    0.15   -0.94   -1.76   -2.19   -2.18   -1.63   -0.36    1.88    5.22
+   170.0    0.00    0.25    0.85    1.65    2.47    3.10    3.35    3.11    2.39    1.32    0.12   -0.98   -1.81   -2.25   -2.26   -1.73   -0.49    1.72    5.07
+   175.0    0.00    0.25    0.85    1.66    2.49    3.11    3.36    3.11    2.38    1.30    0.08   -1.04   -1.88   -2.34   -2.35   -1.84   -0.63    1.56    4.92
+   180.0    0.00    0.26    0.86    1.67    2.50    3.12    3.37    3.11    2.37    1.27    0.03   -1.11   -1.97   -2.44   -2.46   -1.96   -0.76    1.42    4.78
+   185.0    0.00    0.26    0.86    1.67    2.50    3.13    3.37    3.11    2.35    1.23   -0.03   -1.18   -2.06   -2.54   -2.56   -2.06   -0.86    1.31    4.66
+   190.0    0.00    0.26    0.86    1.67    2.50    3.13    3.37    3.10    2.33    1.20   -0.07   -1.25   -2.13   -2.62   -2.65   -2.14   -0.93    1.24    4.58
+   195.0    0.00    0.26    0.86    1.67    2.50    3.12    3.36    3.09    2.32    1.18   -0.10   -1.29   -2.19   -2.68   -2.70   -2.18   -0.95    1.23    4.54
+   200.0    0.00    0.26    0.86    1.66    2.49    3.11    3.35    3.08    2.31    1.17   -0.12   -1.31   -2.21   -2.70   -2.71   -2.17   -0.92    1.26    4.55
+   205.0    0.00    0.25    0.85    1.65    2.47    3.10    3.33    3.06    2.30    1.16   -0.12   -1.30   -2.20   -2.68   -2.69   -2.13   -0.85    1.35    4.61
+   210.0    0.00    0.25    0.84    1.64    2.46    3.08    3.31    3.05    2.29    1.17   -0.10   -1.27   -2.16   -2.64   -2.63   -2.05   -0.75    1.47    4.71
+   215.0    0.00    0.25    0.84    1.63    2.44    3.05    3.29    3.03    2.29    1.19   -0.06   -1.22   -2.10   -2.57   -2.55   -1.95   -0.63    1.61    4.85
+   220.0    0.00    0.25    0.83    1.61    2.42    3.03    3.27    3.02    2.29    1.20   -0.02   -1.16   -2.02   -2.48   -2.46   -1.85   -0.51    1.76    5.01
+   225.0    0.00    0.24    0.82    1.60    2.39    3.00    3.24    3.00    2.28    1.22    0.02   -1.10   -1.95   -2.40   -2.37   -1.76   -0.40    1.89    5.17
+   230.0    0.00    0.24    0.81    1.58    2.37    2.98    3.22    2.98    2.28    1.24    0.05   -1.05   -1.88   -2.33   -2.31   -1.70   -0.32    2.00    5.32
+   235.0    0.00    0.24    0.80    1.56    2.35    2.96    3.20    2.97    2.27    1.24    0.07   -1.01   -1.84   -2.29   -2.28   -1.67   -0.29    2.06    5.44
+   240.0    0.00    0.23    0.79    1.55    2.33    2.94    3.18    2.95    2.26    1.24    0.07   -1.01   -1.83   -2.29   -2.29   -1.69   -0.31    2.07    5.51
+   245.0    0.00    0.23    0.78    1.53    2.31    2.92    3.16    2.94    2.25    1.22    0.06   -1.03   -1.86   -2.33   -2.34   -1.76   -0.38    2.03    5.53
+   250.0    0.00    0.22    0.77    1.52    2.30    2.91    3.15    2.93    2.23    1.19    0.02   -1.08   -1.93   -2.41   -2.43   -1.87   -0.50    1.93    5.48
+   255.0    0.00    0.22    0.76    1.51    2.29    2.90    3.15    2.92    2.21    1.16   -0.04   -1.16   -2.02   -2.52   -2.56   -2.01   -0.65    1.78    5.37
+   260.0    0.00    0.21    0.75    1.50    2.29    2.90    3.15    2.91    2.20    1.12   -0.11   -1.25   -2.14   -2.64   -2.70   -2.17   -0.83    1.59    5.20
+   265.0    0.00    0.21    0.75    1.50    2.28    2.90    3.15    2.91    2.18    1.07   -0.18   -1.35   -2.25   -2.78   -2.84   -2.33   -1.01    1.39    5.00
+   270.0    0.00    0.21    0.74    1.49    2.28    2.91    3.16    2.91    2.16    1.03   -0.25   -1.44   -2.36   -2.90   -2.97   -2.48   -1.18    1.19    4.77
+   275.0    0.00    0.20    0.74    1.49    2.29    2.92    3.17    2.92    2.15    1.00   -0.31   -1.52   -2.45   -2.99   -3.07   -2.59   -1.33    1.01    4.55
+   280.0    0.00    0.20    0.73    1.49    2.29    2.93    3.18    2.93    2.15    0.98   -0.34   -1.57   -2.50   -3.04   -3.13   -2.66   -1.43    0.87    4.36
+   285.0    0.00    0.20    0.73    1.49    2.30    2.94    3.20    2.94    2.16    0.98   -0.35   -1.58   -2.51   -3.05   -3.14   -2.69   -1.47    0.78    4.22
+   290.0    0.00    0.19    0.73    1.49    2.31    2.96    3.22    2.96    2.17    1.00   -0.33   -1.55   -2.48   -3.01   -3.10   -2.65   -1.46    0.76    4.15
+   295.0    0.00    0.19    0.73    1.50    2.32    2.98    3.24    2.98    2.20    1.03   -0.28   -1.49   -2.40   -2.93   -3.01   -2.57   -1.38    0.81    4.15
+   300.0    0.00    0.19    0.72    1.50    2.34    3.00    3.27    3.01    2.24    1.08   -0.21   -1.40   -2.29   -2.80   -2.89   -2.44   -1.26    0.92    4.22
+   305.0    0.00    0.18    0.72    1.51    2.35    3.02    3.30    3.05    2.29    1.15   -0.13   -1.29   -2.16   -2.66   -2.73   -2.28   -1.10    1.08    4.35
+   310.0    0.00    0.18    0.72    1.52    2.36    3.04    3.33    3.09    2.34    1.22   -0.03   -1.17   -2.02   -2.50   -2.56   -2.11   -0.91    1.27    4.53
+   315.0    0.00    0.18    0.72    1.52    2.38    3.06    3.36    3.13    2.40    1.30    0.07   -1.05   -1.88   -2.35   -2.40   -1.93   -0.72    1.48    4.72
+   320.0    0.00    0.18    0.72    1.53    2.39    3.09    3.39    3.17    2.45    1.37    0.16   -0.94   -1.76   -2.22   -2.26   -1.77   -0.55    1.66    4.90
+   325.0    0.00    0.17    0.72    1.53    2.41    3.11    3.42    3.21    2.50    1.43    0.23   -0.86   -1.67   -2.12   -2.15   -1.65   -0.40    1.81    5.04
+   330.0    0.00    0.17    0.72    1.54    2.42    3.13    3.45    3.25    2.54    1.48    0.28   -0.81   -1.62   -2.06   -2.08   -1.56   -0.31    1.91    5.12
+   335.0    0.00    0.17    0.72    1.54    2.43    3.14    3.47    3.28    2.58    1.51    0.31   -0.79   -1.60   -2.04   -2.05   -1.53   -0.27    1.94    5.13
+   340.0    0.00    0.17    0.72    1.54    2.43    3.16    3.49    3.30    2.59    1.52    0.30   -0.81   -1.63   -2.07   -2.07   -1.54   -0.29    1.90    5.05
+   345.0    0.00    0.16    0.72    1.54    2.43    3.16    3.50    3.31    2.60    1.51    0.27   -0.85   -1.68   -2.13   -2.13   -1.60   -0.36    1.79    4.91
+   350.0    0.00    0.16    0.71    1.53    2.43    3.16    3.50    3.31    2.59    1.48    0.23   -0.92   -1.77   -2.21   -2.21   -1.69   -0.48    1.63    4.71
+   355.0    0.00    0.16    0.71    1.53    2.43    3.16    3.50    3.30    2.57    1.44    0.17   -1.00   -1.86   -2.32   -2.32   -1.80   -0.62    1.44    4.49
+   360.0    0.00    0.16    0.70    1.52    2.42    3.15    3.49    3.29    2.55    1.40    0.10   -1.09   -1.96   -2.42   -2.43   -1.92   -0.78    1.23    4.26
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.14      0.38    163.07                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.14   -0.54   -1.09   -1.70   -2.31   -2.92   -3.56   -4.20   -4.78   -5.12   -5.06   -4.46   -3.32   -1.71    0.26    2.56    5.27    8.52
+     0.0    0.00   -0.07   -0.40   -0.93   -1.55   -2.19   -2.83   -3.48   -4.11   -4.69   -5.07   -5.09   -4.62   -3.60   -2.09   -0.18    2.06    4.71    7.94
+     5.0    0.00   -0.07   -0.41   -0.93   -1.55   -2.20   -2.84   -3.48   -4.12   -4.69   -5.07   -5.10   -4.64   -3.63   -2.13   -0.23    2.00    4.64    7.90
+    10.0    0.00   -0.07   -0.41   -0.94   -1.56   -2.20   -2.84   -3.48   -4.12   -4.70   -5.08   -5.12   -4.66   -3.67   -2.17   -0.29    1.94    4.58    7.88
+    15.0    0.00   -0.08   -0.42   -0.95   -1.57   -2.21   -2.85   -3.49   -4.13   -4.71   -5.10   -5.15   -4.70   -3.71   -2.23   -0.35    1.87    4.53    7.88
+    20.0    0.00   -0.08   -0.43   -0.96   -1.58   -2.22   -2.86   -3.50   -4.14   -4.72   -5.13   -5.18   -4.74   -3.75   -2.28   -0.40    1.83    4.51    7.92
+    25.0    0.00   -0.09   -0.43   -0.97   -1.59   -2.23   -2.86   -3.50   -4.15   -4.74   -5.15   -5.21   -4.77   -3.79   -2.31   -0.43    1.81    4.53    7.99
+    30.0    0.00   -0.09   -0.44   -0.98   -1.60   -2.23   -2.86   -3.50   -4.15   -4.75   -5.17   -5.23   -4.80   -3.81   -2.32   -0.43    1.84    4.59    8.09
+    35.0    0.00   -0.09   -0.45   -0.99   -1.61   -2.24   -2.86   -3.50   -4.15   -4.76   -5.18   -5.25   -4.81   -3.81   -2.31   -0.39    1.91    4.70    8.23
+    40.0    0.00   -0.10   -0.46   -1.00   -1.62   -2.24   -2.86   -3.49   -4.15   -4.75   -5.18   -5.24   -4.79   -3.78   -2.25   -0.30    2.03    4.86    8.41
+    45.0    0.00   -0.10   -0.47   -1.01   -1.62   -2.24   -2.85   -3.48   -4.13   -4.74   -5.16   -5.21   -4.75   -3.71   -2.16   -0.17    2.21    5.07    8.61
+    50.0    0.00   -0.11   -0.48   -1.02   -1.63   -2.24   -2.84   -3.46   -4.10   -4.71   -5.12   -5.16   -4.67   -3.61   -2.02    0.00    2.43    5.32    8.84
+    55.0    0.00   -0.12   -0.49   -1.03   -1.63   -2.23   -2.82   -3.43   -4.07   -4.66   -5.06   -5.08   -4.56   -3.47   -1.85    0.21    2.68    5.60    9.10
+    60.0    0.00   -0.12   -0.50   -1.04   -1.64   -2.23   -2.81   -3.41   -4.03   -4.61   -4.98   -4.97   -4.43   -3.30   -1.65    0.45    2.95    5.91    9.37
+    65.0    0.00   -0.13   -0.51   -1.05   -1.64   -2.22   -2.79   -3.38   -3.99   -4.54   -4.89   -4.85   -4.28   -3.12   -1.43    0.70    3.23    6.21    9.65
+    70.0    0.00   -0.13   -0.52   -1.06   -1.65   -2.22   -2.78   -3.35   -3.94   -4.48   -4.80   -4.72   -4.11   -2.93   -1.21    0.94    3.51    6.51    9.92
+    75.0    0.00   -0.14   -0.53   -1.08   -1.66   -2.23   -2.77   -3.34   -3.91   -4.42   -4.71   -4.60   -3.95   -2.74   -1.01    1.16    3.75    6.78   10.17
+    80.0    0.00   -0.15   -0.54   -1.09   -1.67   -2.23   -2.78   -3.33   -3.89   -4.37   -4.63   -4.49   -3.81   -2.58   -0.83    1.35    3.96    7.00   10.39
+    85.0    0.00   -0.15   -0.55   -1.10   -1.68   -2.24   -2.78   -3.33   -3.88   -4.34   -4.58   -4.40   -3.70   -2.45   -0.70    1.48    4.10    7.17   10.55
+    90.0    0.00   -0.16   -0.56   -1.11   -1.70   -2.26   -2.80   -3.35   -3.89   -4.34   -4.55   -4.35   -3.63   -2.37   -0.62    1.56    4.18    7.26   10.64
+    95.0    0.00   -0.16   -0.57   -1.12   -1.71   -2.28   -2.83   -3.37   -3.91   -4.35   -4.55   -4.34   -3.60   -2.34   -0.60    1.58    4.19    7.27   10.65
+   100.0    0.00   -0.17   -0.58   -1.14   -1.73   -2.30   -2.86   -3.41   -3.95   -4.40   -4.59   -4.36   -3.63   -2.37   -0.63    1.53    4.13    7.20   10.57
+   105.0    0.00   -0.18   -0.59   -1.15   -1.75   -2.33   -2.89   -3.46   -4.01   -4.46   -4.66   -4.43   -3.70   -2.44   -0.72    1.42    4.00    7.04   10.40
+   110.0    0.00   -0.18   -0.60   -1.16   -1.77   -2.36   -2.93   -3.51   -4.08   -4.54   -4.75   -4.54   -3.81   -2.57   -0.86    1.26    3.81    6.82   10.14
+   115.0    0.00   -0.19   -0.61   -1.17   -1.78   -2.38   -2.97   -3.57   -4.16   -4.64   -4.86   -4.66   -3.95   -2.72   -1.03    1.06    3.57    6.53    9.80
+   120.0    0.00   -0.19   -0.62   -1.19   -1.80   -2.41   -3.01   -3.63   -4.23   -4.74   -4.98   -4.80   -4.11   -2.89   -1.22    0.84    3.31    6.20    9.42
+   125.0    0.00   -0.19   -0.62   -1.20   -1.81   -2.43   -3.05   -3.68   -4.31   -4.83   -5.10   -4.94   -4.26   -3.07   -1.42    0.62    3.03    5.86    9.02
+   130.0    0.00   -0.20   -0.63   -1.20   -1.83   -2.45   -3.08   -3.73   -4.37   -4.92   -5.21   -5.07   -4.41   -3.23   -1.60    0.40    2.76    5.51    8.61
+   135.0    0.00   -0.20   -0.64   -1.21   -1.84   -2.47   -3.11   -3.77   -4.43   -4.99   -5.30   -5.19   -4.55   -3.38   -1.77    0.20    2.51    5.19    8.23
+   140.0    0.00   -0.20   -0.64   -1.22   -1.85   -2.49   -3.14   -3.81   -4.48   -5.06   -5.38   -5.28   -4.66   -3.51   -1.91    0.03    2.28    4.90    7.90
+   145.0    0.00   -0.21   -0.65   -1.23   -1.86   -2.51   -3.16   -3.84   -4.52   -5.11   -5.44   -5.36   -4.75   -3.61   -2.03   -0.12    2.09    4.66    7.64
+   150.0    0.00   -0.21   -0.65   -1.23   -1.87   -2.52   -3.18   -3.86   -4.55   -5.14   -5.49   -5.41   -4.81   -3.69   -2.13   -0.24    1.94    4.47    7.45
+   155.0    0.00   -0.21   -0.65   -1.24   -1.88   -2.53   -3.20   -3.88   -4.58   -5.17   -5.52   -5.46   -4.87   -3.75   -2.20   -0.33    1.82    4.33    7.33
+   160.0    0.00   -0.21   -0.65   -1.24   -1.89   -2.54   -3.21   -3.90   -4.60   -5.20   -5.55   -5.49   -4.91   -3.80   -2.27   -0.41    1.74    4.25    7.28
+   165.0    0.00   -0.21   -0.66   -1.24   -1.89   -2.55   -3.23   -3.92   -4.62   -5.23   -5.58   -5.53   -4.95   -3.86   -2.32   -0.47    1.68    4.21    7.28
+   170.0    0.00   -0.21   -0.66   -1.25   -1.90   -2.56   -3.24   -3.94   -4.65   -5.25   -5.62   -5.57   -5.00   -3.91   -2.38   -0.51    1.65    4.21    7.34
+   175.0    0.00   -0.21   -0.66   -1.25   -1.90   -2.57   -3.25   -3.96   -4.67   -5.28   -5.65   -5.61   -5.05   -3.97   -2.43   -0.55    1.64    4.24    7.43
+   180.0    0.00   -0.21   -0.66   -1.25   -1.90   -2.58   -3.27   -3.98   -4.69   -5.31   -5.69   -5.65   -5.10   -4.02   -2.48   -0.58    1.66    4.31    7.56
+   185.0    0.00   -0.21   -0.66   -1.25   -1.91   -2.58   -3.27   -3.99   -4.71   -5.33   -5.72   -5.70   -5.15   -4.07   -2.52   -0.58    1.70    4.41    7.71
+   190.0    0.00   -0.21   -0.65   -1.25   -1.90   -2.58   -3.27   -3.99   -4.71   -5.35   -5.74   -5.73   -5.19   -4.11   -2.53   -0.56    1.77    4.54    7.89
+   195.0    0.00   -0.21   -0.65   -1.24   -1.90   -2.57   -3.27   -3.99   -4.71   -5.35   -5.75   -5.74   -5.21   -4.11   -2.52   -0.51    1.89    4.72    8.10
+   200.0    0.00   -0.20   -0.65   -1.24   -1.89   -2.56   -3.25   -3.97   -4.69   -5.33   -5.74   -5.73   -5.19   -4.08   -2.46   -0.40    2.04    4.93    8.35
+   205.0    0.00   -0.20   -0.64   -1.23   -1.88   -2.55   -3.23   -3.93   -4.65   -5.29   -5.70   -5.69   -5.14   -4.01   -2.35   -0.25    2.25    5.18    8.63
+   210.0    0.00   -0.20   -0.63   -1.22   -1.86   -2.52   -3.19   -3.89   -4.60   -5.23   -5.63   -5.61   -5.04   -3.88   -2.19   -0.04    2.50    5.47    8.95
+   215.0    0.00   -0.19   -0.63   -1.21   -1.85   -2.49   -3.15   -3.83   -4.53   -5.15   -5.53   -5.49   -4.90   -3.70   -1.97    0.21    2.79    5.79    9.29
+   220.0    0.00   -0.19   -0.62   -1.20   -1.82   -2.46   -3.10   -3.76   -4.44   -5.05   -5.41   -5.35   -4.72   -3.48   -1.71    0.51    3.11    6.13    9.64
+   225.0    0.00   -0.18   -0.61   -1.18   -1.80   -2.42   -3.04   -3.69   -4.35   -4.94   -5.28   -5.18   -4.51   -3.23   -1.42    0.82    3.44    6.47    9.99
+   230.0    0.00   -0.18   -0.60   -1.16   -1.77   -2.38   -2.98   -3.61   -4.25   -4.82   -5.14   -5.01   -4.29   -2.97   -1.12    1.14    3.76    6.78   10.30
+   235.0    0.00   -0.17   -0.59   -1.15   -1.75   -2.34   -2.92   -3.53   -4.16   -4.71   -5.00   -4.84   -4.08   -2.71   -0.83    1.44    4.04    7.04   10.55
+   240.0    0.00   -0.17   -0.58   -1.13   -1.72   -2.30   -2.87   -3.46   -4.07   -4.60   -4.87   -4.68   -3.89   -2.48   -0.58    1.69    4.26    7.22   10.71
+   245.0    0.00   -0.16   -0.57   -1.11   -1.69   -2.26   -2.82   -3.40   -4.00   -4.52   -4.77   -4.55   -3.73   -2.29   -0.38    1.87    4.40    7.30   10.76
+   250.0    0.00   -0.16   -0.56   -1.10   -1.67   -2.23   -2.78   -3.35   -3.94   -4.45   -4.70   -4.46   -3.61   -2.17   -0.25    1.97    4.44    7.27   10.68
+   255.0    0.00   -0.15   -0.54   -1.08   -1.65   -2.20   -2.74   -3.31   -3.91   -4.42   -4.65   -4.41   -3.55   -2.10   -0.21    1.97    4.37    7.13   10.49
+   260.0    0.00   -0.14   -0.53   -1.06   -1.63   -2.18   -2.72   -3.29   -3.89   -4.40   -4.64   -4.40   -3.55   -2.11   -0.25    1.87    4.20    6.89   10.19
+   265.0    0.00   -0.14   -0.52   -1.05   -1.62   -2.17   -2.71   -3.29   -3.89   -4.41   -4.66   -4.43   -3.60   -2.19   -0.37    1.69    3.94    6.55    9.80
+   270.0    0.00   -0.13   -0.51   -1.03   -1.60   -2.16   -2.71   -3.30   -3.91   -4.44   -4.71   -4.50   -3.69   -2.33   -0.56    1.43    3.61    6.15    9.35
+   275.0    0.00   -0.12   -0.50   -1.02   -1.59   -2.15   -2.72   -3.31   -3.94   -4.49   -4.77   -4.59   -3.82   -2.51   -0.80    1.12    3.23    5.71    8.87
+   280.0    0.00   -0.12   -0.49   -1.01   -1.58   -2.16   -2.73   -3.34   -3.98   -4.54   -4.84   -4.69   -3.97   -2.71   -1.08    0.77    2.83    5.28    8.42
+   285.0    0.00   -0.11   -0.48   -1.00   -1.58   -2.16   -2.75   -3.37   -4.02   -4.59   -4.92   -4.80   -4.12   -2.93   -1.36    0.43    2.44    4.87    8.02
+   290.0    0.00   -0.11   -0.47   -0.99   -1.57   -2.17   -2.77   -3.40   -4.06   -4.65   -4.99   -4.90   -4.27   -3.14   -1.64    0.11    2.10    4.53    7.69
+   295.0    0.00   -0.10   -0.46   -0.98   -1.57   -2.17   -2.79   -3.43   -4.10   -4.69   -5.05   -4.99   -4.41   -3.33   -1.88   -0.17    1.81    4.27    7.46
+   300.0    0.00   -0.09   -0.45   -0.97   -1.56   -2.18   -2.80   -3.46   -4.13   -4.73   -5.10   -5.06   -4.52   -3.49   -2.08   -0.39    1.60    4.10    7.33
+   305.0    0.00   -0.09   -0.44   -0.96   -1.56   -2.18   -2.82   -3.48   -4.16   -4.76   -5.13   -5.11   -4.60   -3.61   -2.23   -0.54    1.47    4.02    7.30
+   310.0    0.00   -0.09   -0.43   -0.95   -1.56   -2.19   -2.83   -3.50   -4.17   -4.78   -5.15   -5.15   -4.66   -3.69   -2.32   -0.63    1.43    4.02    7.35
+   315.0    0.00   -0.08   -0.42   -0.94   -1.55   -2.19   -2.84   -3.51   -4.18   -4.78   -5.16   -5.17   -4.70   -3.74   -2.37   -0.65    1.45    4.10    7.45
+   320.0    0.00   -0.08   -0.42   -0.94   -1.55   -2.19   -2.84   -3.51   -4.19   -4.78   -5.16   -5.17   -4.71   -3.75   -2.37   -0.62    1.53    4.22    7.58
+   325.0    0.00   -0.07   -0.41   -0.93   -1.54   -2.19   -2.84   -3.51   -4.18   -4.77   -5.15   -5.17   -4.70   -3.74   -2.34   -0.55    1.65    4.36    7.73
+   330.0    0.00   -0.07   -0.41   -0.93   -1.54   -2.19   -2.84   -3.51   -4.17   -4.76   -5.14   -5.15   -4.69   -3.71   -2.28   -0.45    1.77    4.50    7.85
+   335.0    0.00   -0.07   -0.40   -0.92   -1.54   -2.18   -2.84   -3.50   -4.16   -4.75   -5.12   -5.13   -4.67   -3.68   -2.22   -0.36    1.90    4.63    7.95
+   340.0    0.00   -0.07   -0.40   -0.92   -1.54   -2.18   -2.83   -3.50   -4.15   -4.73   -5.10   -5.12   -4.64   -3.64   -2.16   -0.27    2.00    4.72    8.01
+   345.0    0.00   -0.07   -0.40   -0.92   -1.54   -2.18   -2.83   -3.49   -4.14   -4.71   -5.09   -5.10   -4.62   -3.61   -2.11   -0.21    2.07    4.77    8.03
+   350.0    0.00   -0.07   -0.40   -0.92   -1.54   -2.18   -2.83   -3.48   -4.13   -4.70   -5.07   -5.09   -4.61   -3.59   -2.08   -0.17    2.10    4.78    8.01
+   355.0    0.00   -0.07   -0.40   -0.92   -1.54   -2.18   -2.83   -3.48   -4.12   -4.69   -5.07   -5.08   -4.61   -3.59   -2.08   -0.16    2.10    4.76    7.98
+   360.0    0.00   -0.07   -0.40   -0.93   -1.55   -2.19   -2.83   -3.48   -4.11   -4.69   -5.07   -5.09   -4.62   -3.60   -2.09   -0.18    2.06    4.71    7.94
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+LEIAR25.R3      NONE                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               5    28-JAN-10 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+      0.41      0.11    162.23                              NORTH / EAST / UP   
+   NOAZI    0.00    0.24    0.89    1.79    2.71    3.41    3.70    3.51    2.86    1.89    0.78   -0.31   -1.22   -1.86   -2.13   -1.88   -0.91    0.97    3.76
+     0.0    0.00    0.22    0.88    1.81    2.76    3.46    3.72    3.46    2.75    1.76    0.68   -0.30   -1.08   -1.65   -1.93   -1.82   -1.09    0.49    2.91
+     5.0    0.00    0.22    0.87    1.80    2.75    3.46    3.72    3.46    2.74    1.72    0.63   -0.37   -1.16   -1.71   -2.00   -1.89   -1.19    0.35    2.77
+    10.0    0.00    0.21    0.87    1.80    2.75    3.46    3.73    3.47    2.73    1.70    0.58   -0.43   -1.22   -1.77   -2.05   -1.95   -1.25    0.27    2.70
+    15.0    0.00    0.21    0.86    1.79    2.74    3.46    3.74    3.48    2.74    1.68    0.54   -0.48   -1.29   -1.83   -2.09   -1.97   -1.27    0.26    2.73
+    20.0    0.00    0.21    0.85    1.78    2.73    3.46    3.75    3.49    2.75    1.68    0.53   -0.52   -1.34   -1.88   -2.12   -1.98   -1.24    0.33    2.85
+    25.0    0.00    0.20    0.84    1.76    2.72    3.46    3.75    3.51    2.77    1.70    0.53   -0.54   -1.37   -1.92   -2.14   -1.95   -1.17    0.45    3.05
+    30.0    0.00    0.20    0.84    1.75    2.71    3.45    3.76    3.54    2.81    1.74    0.55   -0.55   -1.40   -1.94   -2.14   -1.92   -1.07    0.63    3.31
+    35.0    0.00    0.20    0.83    1.74    2.70    3.45    3.77    3.56    2.85    1.78    0.58   -0.53   -1.40   -1.96   -2.14   -1.87   -0.95    0.84    3.60
+    40.0    0.00    0.19    0.82    1.73    2.69    3.45    3.78    3.59    2.89    1.84    0.63   -0.50   -1.40   -1.96   -2.14   -1.82   -0.82    1.05    3.90
+    45.0    0.00    0.19    0.81    1.72    2.68    3.44    3.79    3.62    2.94    1.89    0.69   -0.46   -1.37   -1.96   -2.13   -1.77   -0.72    1.24    4.16
+    50.0    0.00    0.19    0.81    1.71    2.67    3.43    3.79    3.64    2.98    1.95    0.75   -0.41   -1.34   -1.95   -2.13   -1.75   -0.64    1.38    4.36
+    55.0    0.00    0.19    0.80    1.70    2.66    3.42    3.79    3.65    3.01    2.00    0.81   -0.35   -1.31   -1.94   -2.13   -1.75   -0.61    1.46    4.49
+    60.0    0.00    0.19    0.80    1.70    2.65    3.42    3.79    3.66    3.03    2.03    0.85   -0.31   -1.27   -1.92   -2.14   -1.77   -0.63    1.46    4.54
+    65.0    0.00    0.19    0.80    1.69    2.64    3.41    3.78    3.66    3.04    2.05    0.88   -0.27   -1.24   -1.91   -2.16   -1.82   -0.70    1.40    4.50
+    70.0    0.00    0.19    0.80    1.69    2.64    3.40    3.77    3.65    3.03    2.06    0.90   -0.25   -1.22   -1.91   -2.19   -1.89   -0.80    1.29    4.38
+    75.0    0.00    0.19    0.80    1.69    2.64    3.40    3.76    3.63    3.02    2.04    0.90   -0.24   -1.21   -1.92   -2.23   -1.97   -0.93    1.13    4.22
+    80.0    0.00    0.19    0.80    1.69    2.64    3.39    3.75    3.61    2.99    2.02    0.88   -0.25   -1.22   -1.93   -2.27   -2.06   -1.06    0.95    4.02
+    85.0    0.00    0.19    0.81    1.70    2.64    3.39    3.74    3.59    2.96    1.98    0.84   -0.28   -1.24   -1.95   -2.31   -2.13   -1.19    0.78    3.82
+    90.0    0.00    0.19    0.81    1.70    2.64    3.39    3.73    3.57    2.92    1.94    0.80   -0.32   -1.27   -1.98   -2.34   -2.20   -1.29    0.63    3.65
+    95.0    0.00    0.20    0.82    1.71    2.65    3.39    3.72    3.55    2.89    1.89    0.75   -0.36   -1.31   -2.01   -2.37   -2.23   -1.35    0.54    3.52
+   100.0    0.00    0.20    0.82    1.72    2.66    3.40    3.72    3.53    2.86    1.85    0.70   -0.41   -1.35   -2.04   -2.39   -2.24   -1.37    0.50    3.45
+   105.0    0.00    0.21    0.83    1.73    2.67    3.40    3.72    3.52    2.84    1.82    0.66   -0.45   -1.38   -2.05   -2.38   -2.22   -1.33    0.53    3.44
+   110.0    0.00    0.21    0.84    1.74    2.68    3.41    3.72    3.52    2.83    1.80    0.64   -0.47   -1.40   -2.06   -2.36   -2.17   -1.26    0.61    3.50
+   115.0    0.00    0.21    0.85    1.75    2.69    3.42    3.73    3.52    2.83    1.80    0.63   -0.48   -1.41   -2.05   -2.32   -2.09   -1.15    0.74    3.61
+   120.0    0.00    0.22    0.86    1.76    2.70    3.42    3.73    3.52    2.84    1.81    0.64   -0.47   -1.39   -2.02   -2.27   -2.00   -1.01    0.90    3.76
+   125.0    0.00    0.22    0.87    1.78    2.71    3.43    3.73    3.53    2.85    1.83    0.67   -0.44   -1.36   -1.98   -2.21   -1.90   -0.87    1.07    3.93
+   130.0    0.00    0.23    0.88    1.79    2.72    3.44    3.74    3.54    2.87    1.86    0.71   -0.39   -1.31   -1.92   -2.13   -1.80   -0.74    1.23    4.10
+   135.0    0.00    0.23    0.89    1.80    2.73    3.44    3.74    3.55    2.89    1.90    0.76   -0.34   -1.25   -1.86   -2.06   -1.71   -0.62    1.36    4.24
+   140.0    0.00    0.24    0.90    1.81    2.74    3.45    3.75    3.56    2.91    1.94    0.82   -0.27   -1.18   -1.80   -2.00   -1.65   -0.54    1.46    4.34
+   145.0    0.00    0.24    0.91    1.82    2.75    3.45    3.75    3.57    2.93    1.97    0.87   -0.21   -1.12   -1.74   -1.95   -1.60   -0.50    1.50    4.38
+   150.0    0.00    0.25    0.92    1.83    2.76    3.46    3.76    3.57    2.95    2.00    0.91   -0.17   -1.08   -1.70   -1.93   -1.59   -0.50    1.49    4.37
+   155.0    0.00    0.25    0.93    1.85    2.77    3.47    3.76    3.58    2.96    2.02    0.93   -0.14   -1.05   -1.68   -1.92   -1.61   -0.54    1.43    4.29
+   160.0    0.00    0.26    0.94    1.86    2.78    3.47    3.77    3.58    2.96    2.02    0.94   -0.13   -1.04   -1.68   -1.94   -1.65   -0.62    1.33    4.16
+   165.0    0.00    0.26    0.94    1.87    2.79    3.48    3.77    3.59    2.96    2.02    0.93   -0.14   -1.06   -1.71   -1.98   -1.72   -0.71    1.19    3.99
+   170.0    0.00    0.27    0.95    1.87    2.80    3.49    3.78    3.59    2.95    2.00    0.90   -0.18   -1.10   -1.75   -2.04   -1.80   -0.83    1.04    3.80
+   175.0    0.00    0.27    0.96    1.88    2.81    3.50    3.78    3.58    2.94    1.97    0.86   -0.23   -1.15   -1.81   -2.11   -1.88   -0.95    0.88    3.60
+   180.0    0.00    0.27    0.96    1.89    2.81    3.50    3.78    3.57    2.92    1.94    0.81   -0.28   -1.21   -1.88   -2.18   -1.97   -1.06    0.74    3.41
+   185.0    0.00    0.27    0.96    1.89    2.81    3.50    3.78    3.56    2.89    1.90    0.76   -0.34   -1.27   -1.94   -2.24   -2.05   -1.15    0.62    3.27
+   190.0    0.00    0.28    0.96    1.89    2.81    3.49    3.76    3.54    2.86    1.86    0.72   -0.39   -1.32   -1.99   -2.30   -2.11   -1.22    0.54    3.17
+   195.0    0.00    0.28    0.96    1.88    2.80    3.48    3.75    3.52    2.83    1.82    0.68   -0.42   -1.35   -2.02   -2.33   -2.14   -1.26    0.51    3.14
+   200.0    0.00    0.28    0.96    1.88    2.79    3.46    3.72    3.49    2.80    1.80    0.66   -0.44   -1.36   -2.03   -2.35   -2.16   -1.27    0.52    3.18
+   205.0    0.00    0.28    0.96    1.87    2.77    3.44    3.69    3.46    2.78    1.78    0.66   -0.43   -1.35   -2.02   -2.34   -2.15   -1.24    0.58    3.29
+   210.0    0.00    0.28    0.96    1.86    2.75    3.41    3.66    3.43    2.76    1.78    0.67   -0.40   -1.32   -1.99   -2.32   -2.13   -1.19    0.69    3.45
+   215.0    0.00    0.28    0.95    1.84    2.73    3.38    3.63    3.40    2.74    1.79    0.70   -0.35   -1.27   -1.95   -2.28   -2.09   -1.11    0.83    3.66
+   220.0    0.00    0.28    0.94    1.83    2.71    3.35    3.59    3.38    2.74    1.81    0.75   -0.30   -1.21   -1.90   -2.24   -2.03   -1.02    0.98    3.89
+   225.0    0.00    0.27    0.94    1.81    2.68    3.32    3.57    3.36    2.74    1.84    0.79   -0.24   -1.16   -1.86   -2.20   -1.98   -0.93    1.14    4.12
+   230.0    0.00    0.27    0.93    1.80    2.66    3.29    3.54    3.35    2.76    1.87    0.84   -0.19   -1.11   -1.83   -2.18   -1.93   -0.84    1.29    4.32
+   235.0    0.00    0.27    0.92    1.79    2.64    3.27    3.53    3.35    2.78    1.91    0.89   -0.15   -1.09   -1.81   -2.16   -1.90   -0.76    1.41    4.47
+   240.0    0.00    0.27    0.92    1.77    2.62    3.26    3.53    3.36    2.80    1.94    0.92   -0.13   -1.09   -1.82   -2.16   -1.88   -0.71    1.49    4.57
+   245.0    0.00    0.27    0.91    1.76    2.61    3.25    3.53    3.38    2.83    1.97    0.94   -0.13   -1.11   -1.85   -2.19   -1.88   -0.69    1.52    4.58
+   250.0    0.00    0.27    0.91    1.76    2.61    3.25    3.54    3.41    2.86    2.00    0.94   -0.16   -1.16   -1.91   -2.23   -1.90   -0.70    1.49    4.52
+   255.0    0.00    0.26    0.90    1.75    2.60    3.26    3.56    3.43    2.88    2.01    0.93   -0.20   -1.22   -1.97   -2.27   -1.93   -0.74    1.41    4.38
+   260.0    0.00    0.26    0.90    1.75    2.60    3.27    3.58    3.45    2.90    2.01    0.90   -0.25   -1.29   -2.04   -2.33   -1.98   -0.80    1.28    4.19
+   265.0    0.00    0.26    0.90    1.75    2.61    3.28    3.60    3.47    2.91    1.99    0.86   -0.32   -1.36   -2.10   -2.38   -2.03   -0.89    1.13    3.96
+   270.0    0.00    0.26    0.89    1.75    2.62    3.29    3.62    3.49    2.91    1.97    0.82   -0.38   -1.42   -2.15   -2.42   -2.07   -0.98    0.96    3.72
+   275.0    0.00    0.26    0.89    1.75    2.63    3.31    3.63    3.50    2.91    1.95    0.77   -0.43   -1.46   -2.18   -2.43   -2.11   -1.07    0.79    3.50
+   280.0    0.00    0.26    0.89    1.76    2.64    3.32    3.64    3.50    2.90    1.92    0.74   -0.46   -1.48   -2.17   -2.43   -2.13   -1.14    0.66    3.33
+   285.0    0.00    0.25    0.89    1.76    2.65    3.33    3.65    3.50    2.88    1.89    0.71   -0.47   -1.47   -2.14   -2.40   -2.12   -1.18    0.56    3.21
+   290.0    0.00    0.25    0.89    1.77    2.66    3.35    3.65    3.49    2.86    1.87    0.70   -0.46   -1.43   -2.09   -2.34   -2.09   -1.19    0.52    3.18
+   295.0    0.00    0.25    0.90    1.77    2.67    3.35    3.66    3.48    2.84    1.85    0.70   -0.43   -1.37   -2.01   -2.26   -2.03   -1.16    0.53    3.21
+   300.0    0.00    0.25    0.90    1.78    2.68    3.36    3.66    3.47    2.82    1.84    0.71   -0.38   -1.29   -1.91   -2.16   -1.95   -1.09    0.60    3.31
+   305.0    0.00    0.25    0.90    1.79    2.69    3.37    3.65    3.46    2.81    1.85    0.74   -0.32   -1.20   -1.80   -2.06   -1.85   -1.00    0.72    3.46
+   310.0    0.00    0.25    0.90    1.79    2.70    3.38    3.66    3.45    2.81    1.85    0.77   -0.26   -1.11   -1.70   -1.95   -1.75   -0.89    0.86    3.63
+   315.0    0.00    0.24    0.90    1.80    2.71    3.39    3.66    3.45    2.81    1.87    0.81   -0.19   -1.02   -1.60   -1.86   -1.65   -0.77    1.01    3.80
+   320.0    0.00    0.24    0.90    1.81    2.72    3.39    3.66    3.45    2.81    1.88    0.85   -0.13   -0.95   -1.52   -1.78   -1.57   -0.67    1.14    3.93
+   325.0    0.00    0.24    0.90    1.81    2.73    3.40    3.67    3.45    2.81    1.89    0.87   -0.09   -0.89   -1.47   -1.73   -1.51   -0.60    1.23    4.01
+   330.0    0.00    0.24    0.90    1.81    2.73    3.41    3.68    3.46    2.81    1.90    0.89   -0.06   -0.86   -1.43   -1.70   -1.48   -0.56    1.27    4.01
+   335.0    0.00    0.24    0.90    1.82    2.74    3.42    3.68    3.46    2.81    1.90    0.89   -0.06   -0.85   -1.42   -1.69   -1.49   -0.57    1.25    3.93
+   340.0    0.00    0.23    0.90    1.82    2.75    3.43    3.69    3.46    2.81    1.88    0.87   -0.08   -0.87   -1.44   -1.71   -1.52   -0.63    1.16    3.79
+   345.0    0.00    0.23    0.89    1.82    2.75    3.44    3.70    3.47    2.80    1.86    0.84   -0.11   -0.90   -1.47   -1.75   -1.58   -0.72    1.02    3.58
+   350.0    0.00    0.23    0.89    1.82    2.76    3.45    3.71    3.47    2.78    1.83    0.79   -0.16   -0.95   -1.52   -1.81   -1.65   -0.84    0.85    3.35
+   355.0    0.00    0.22    0.89    1.81    2.76    3.45    3.71    3.46    2.77    1.79    0.74   -0.23   -1.01   -1.58   -1.87   -1.74   -0.97    0.66    3.12
+   360.0    0.00    0.22    0.88    1.81    2.76    3.46    3.72    3.46    2.75    1.76    0.68   -0.30   -1.08   -1.65   -1.93   -1.82   -1.09    0.49    2.91
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.18     -0.51    159.51                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.12   -0.47   -0.97   -1.56   -2.18   -2.85   -3.54   -4.22   -4.78   -5.05   -4.90   -4.24   -3.10   -1.59    0.24    2.42    5.17    8.67
+     0.0    0.00   -0.14   -0.49   -0.99   -1.55   -2.14   -2.74   -3.38   -4.03   -4.60   -4.92   -4.84   -4.25   -3.15   -1.64    0.19    2.31    4.87    8.07
+     5.0    0.00   -0.14   -0.50   -0.99   -1.56   -2.16   -2.77   -3.42   -4.07   -4.65   -4.99   -4.93   -4.36   -3.29   -1.81    0.00    2.11    4.67    7.82
+    10.0    0.00   -0.14   -0.50   -1.00   -1.57   -2.18   -2.80   -3.46   -4.12   -4.71   -5.06   -5.01   -4.47   -3.43   -1.96   -0.17    1.94    4.49    7.62
+    15.0    0.00   -0.14   -0.50   -1.01   -1.59   -2.20   -2.83   -3.50   -4.17   -4.76   -5.12   -5.09   -4.56   -3.53   -2.09   -0.31    1.80    4.36    7.48
+    20.0    0.00   -0.14   -0.50   -1.01   -1.60   -2.22   -2.86   -3.54   -4.22   -4.82   -5.18   -5.15   -4.62   -3.61   -2.18   -0.41    1.70    4.28    7.43
+    25.0    0.00   -0.14   -0.51   -1.02   -1.61   -2.24   -2.90   -3.59   -4.27   -4.87   -5.22   -5.19   -4.66   -3.65   -2.23   -0.47    1.65    4.26    7.47
+    30.0    0.00   -0.14   -0.51   -1.03   -1.63   -2.27   -2.93   -3.63   -4.32   -4.92   -5.26   -5.20   -4.67   -3.65   -2.24   -0.48    1.65    4.30    7.58
+    35.0    0.00   -0.15   -0.51   -1.03   -1.64   -2.29   -2.97   -3.67   -4.37   -4.95   -5.28   -5.20   -4.64   -3.62   -2.20   -0.45    1.70    4.39    7.77
+    40.0    0.00   -0.15   -0.51   -1.04   -1.65   -2.31   -3.00   -3.71   -4.41   -4.98   -5.29   -5.18   -4.59   -3.55   -2.12   -0.37    1.78    4.52    8.01
+    45.0    0.00   -0.15   -0.51   -1.04   -1.66   -2.33   -3.03   -3.75   -4.45   -5.01   -5.29   -5.14   -4.52   -3.45   -2.02   -0.26    1.90    4.68    8.28
+    50.0    0.00   -0.15   -0.51   -1.04   -1.67   -2.34   -3.05   -3.78   -4.47   -5.02   -5.27   -5.10   -4.44   -3.35   -1.89   -0.13    2.04    4.86    8.54
+    55.0    0.00   -0.15   -0.51   -1.04   -1.67   -2.35   -3.06   -3.79   -4.49   -5.03   -5.26   -5.05   -4.36   -3.23   -1.76    0.01    2.19    5.03    8.79
+    60.0    0.00   -0.15   -0.51   -1.04   -1.67   -2.35   -3.07   -3.80   -4.49   -5.02   -5.24   -5.01   -4.29   -3.13   -1.63    0.16    2.35    5.20    8.99
+    65.0    0.00   -0.14   -0.51   -1.04   -1.67   -2.34   -3.06   -3.80   -4.49   -5.02   -5.23   -4.98   -4.24   -3.05   -1.52    0.30    2.51    5.36    9.13
+    70.0    0.00   -0.14   -0.51   -1.04   -1.66   -2.33   -3.05   -3.78   -4.48   -5.01   -5.21   -4.96   -4.20   -2.99   -1.42    0.43    2.64    5.48    9.22
+    75.0    0.00   -0.14   -0.51   -1.03   -1.65   -2.32   -3.03   -3.76   -4.46   -4.99   -5.21   -4.96   -4.19   -2.95   -1.35    0.53    2.76    5.57    9.25
+    80.0    0.00   -0.14   -0.50   -1.02   -1.64   -2.30   -3.00   -3.73   -4.43   -4.98   -5.21   -4.97   -4.20   -2.95   -1.32    0.60    2.84    5.63    9.24
+    85.0    0.00   -0.14   -0.50   -1.02   -1.62   -2.27   -2.97   -3.70   -4.40   -4.97   -5.22   -5.00   -4.23   -2.96   -1.31    0.64    2.90    5.66    9.19
+    90.0    0.00   -0.14   -0.50   -1.01   -1.60   -2.25   -2.94   -3.66   -4.38   -4.95   -5.22   -5.02   -4.27   -2.99   -1.32    0.65    2.92    5.66    9.12
+    95.0    0.00   -0.14   -0.49   -1.00   -1.59   -2.22   -2.91   -3.63   -4.35   -4.94   -5.23   -5.05   -4.31   -3.03   -1.35    0.63    2.91    5.64    9.06
+   100.0    0.00   -0.14   -0.49   -0.99   -1.57   -2.20   -2.88   -3.60   -4.32   -4.93   -5.23   -5.07   -4.33   -3.07   -1.39    0.59    2.87    5.61    9.02
+   105.0    0.00   -0.13   -0.48   -0.98   -1.55   -2.18   -2.85   -3.57   -4.30   -4.91   -5.22   -5.07   -4.35   -3.09   -1.42    0.55    2.82    5.57    9.01
+   110.0    0.00   -0.13   -0.48   -0.97   -1.54   -2.16   -2.82   -3.55   -4.27   -4.89   -5.20   -5.05   -4.34   -3.10   -1.45    0.50    2.77    5.54    9.03
+   115.0    0.00   -0.13   -0.47   -0.96   -1.53   -2.14   -2.80   -3.52   -4.25   -4.86   -5.17   -5.01   -4.31   -3.09   -1.47    0.46    2.73    5.53    9.09
+   120.0    0.00   -0.13   -0.47   -0.96   -1.52   -2.13   -2.79   -3.50   -4.22   -4.82   -5.12   -4.95   -4.25   -3.05   -1.46    0.44    2.70    5.54    9.18
+   125.0    0.00   -0.13   -0.47   -0.95   -1.51   -2.12   -2.77   -3.48   -4.19   -4.77   -5.06   -4.88   -4.18   -2.99   -1.43    0.44    2.70    5.57    9.29
+   130.0    0.00   -0.12   -0.46   -0.94   -1.50   -2.11   -2.76   -3.46   -4.16   -4.72   -4.98   -4.79   -4.09   -2.92   -1.38    0.46    2.72    5.63    9.39
+   135.0    0.00   -0.12   -0.46   -0.94   -1.50   -2.10   -2.75   -3.44   -4.13   -4.67   -4.91   -4.70   -4.00   -2.84   -1.33    0.50    2.77    5.70    9.48
+   140.0    0.00   -0.12   -0.46   -0.94   -1.49   -2.10   -2.74   -3.43   -4.09   -4.62   -4.84   -4.62   -3.92   -2.77   -1.27    0.56    2.83    5.77    9.54
+   145.0    0.00   -0.12   -0.45   -0.93   -1.49   -2.09   -2.74   -3.41   -4.06   -4.57   -4.77   -4.55   -3.85   -2.71   -1.22    0.61    2.89    5.83    9.55
+   150.0    0.00   -0.12   -0.45   -0.93   -1.49   -2.09   -2.73   -3.39   -4.03   -4.53   -4.73   -4.50   -3.81   -2.68   -1.19    0.65    2.94    5.87    9.50
+   155.0    0.00   -0.12   -0.45   -0.93   -1.49   -2.09   -2.73   -3.39   -4.01   -4.50   -4.70   -4.48   -3.79   -2.68   -1.19    0.66    2.96    5.86    9.39
+   160.0    0.00   -0.11   -0.45   -0.93   -1.49   -2.10   -2.73   -3.38   -4.01   -4.49   -4.69   -4.48   -3.81   -2.71   -1.22    0.63    2.94    5.81    9.22
+   165.0    0.00   -0.11   -0.44   -0.93   -1.49   -2.10   -2.74   -3.39   -4.01   -4.50   -4.71   -4.52   -3.87   -2.77   -1.29    0.56    2.86    5.70    9.01
+   170.0    0.00   -0.11   -0.44   -0.93   -1.50   -2.11   -2.75   -3.40   -4.03   -4.52   -4.75   -4.57   -3.95   -2.87   -1.40    0.45    2.74    5.54    8.76
+   175.0    0.00   -0.11   -0.44   -0.93   -1.50   -2.11   -2.76   -3.42   -4.06   -4.57   -4.81   -4.65   -4.05   -2.99   -1.54    0.30    2.56    5.33    8.50
+   180.0    0.00   -0.11   -0.44   -0.93   -1.50   -2.12   -2.78   -3.45   -4.10   -4.62   -4.88   -4.75   -4.16   -3.12   -1.69    0.12    2.36    5.09    8.24
+   185.0    0.00   -0.11   -0.44   -0.93   -1.51   -2.13   -2.80   -3.49   -4.15   -4.69   -4.96   -4.85   -4.28   -3.26   -1.85   -0.07    2.13    4.84    8.01
+   190.0    0.00   -0.11   -0.44   -0.92   -1.51   -2.14   -2.82   -3.52   -4.20   -4.76   -5.05   -4.95   -4.39   -3.38   -1.99   -0.24    1.92    4.61    7.83
+   195.0    0.00   -0.11   -0.43   -0.92   -1.51   -2.15   -2.84   -3.56   -4.25   -4.83   -5.14   -5.04   -4.49   -3.49   -2.11   -0.39    1.74    4.42    7.71
+   200.0    0.00   -0.10   -0.43   -0.92   -1.51   -2.16   -2.85   -3.59   -4.30   -4.89   -5.21   -5.13   -4.57   -3.57   -2.20   -0.49    1.61    4.29    7.65
+   205.0    0.00   -0.10   -0.43   -0.92   -1.51   -2.16   -2.87   -3.61   -4.34   -4.95   -5.28   -5.19   -4.63   -3.61   -2.23   -0.53    1.56    4.24    7.68
+   210.0    0.00   -0.10   -0.43   -0.92   -1.51   -2.16   -2.87   -3.63   -4.37   -4.99   -5.33   -5.24   -4.66   -3.62   -2.22   -0.51    1.58    4.27    7.78
+   215.0    0.00   -0.10   -0.43   -0.92   -1.51   -2.17   -2.88   -3.64   -4.39   -5.02   -5.37   -5.27   -4.67   -3.60   -2.16   -0.42    1.68    4.39    7.93
+   220.0    0.00   -0.10   -0.43   -0.92   -1.51   -2.17   -2.88   -3.65   -4.41   -5.04   -5.38   -5.28   -4.66   -3.55   -2.07   -0.29    1.85    4.57    8.14
+   225.0    0.00   -0.10   -0.43   -0.92   -1.51   -2.17   -2.88   -3.65   -4.41   -5.05   -5.39   -5.27   -4.62   -3.48   -1.95   -0.12    2.06    4.79    8.37
+   230.0    0.00   -0.10   -0.43   -0.92   -1.51   -2.17   -2.88   -3.64   -4.41   -5.04   -5.38   -5.25   -4.58   -3.40   -1.82    0.07    2.28    5.04    8.60
+   235.0    0.00   -0.10   -0.43   -0.92   -1.51   -2.17   -2.88   -3.64   -4.40   -5.03   -5.36   -5.22   -4.53   -3.31   -1.69    0.24    2.49    5.27    8.82
+   240.0    0.00   -0.10   -0.43   -0.93   -1.52   -2.18   -2.89   -3.64   -4.39   -5.02   -5.34   -5.19   -4.48   -3.24   -1.58    0.38    2.67    5.46    8.99
+   245.0    0.00   -0.11   -0.44   -0.93   -1.53   -2.18   -2.89   -3.65   -4.39   -5.00   -5.31   -5.14   -4.42   -3.17   -1.50    0.48    2.79    5.59    9.11
+   250.0    0.00   -0.11   -0.44   -0.94   -1.53   -2.19   -2.90   -3.65   -4.38   -4.98   -5.27   -5.10   -4.37   -3.13   -1.46    0.52    2.83    5.65    9.17
+   255.0    0.00   -0.11   -0.44   -0.94   -1.54   -2.20   -2.91   -3.65   -4.37   -4.95   -5.23   -5.05   -4.33   -3.10   -1.46    0.50    2.80    5.62    9.16
+   260.0    0.00   -0.11   -0.44   -0.95   -1.55   -2.22   -2.92   -3.66   -4.36   -4.93   -5.19   -5.00   -4.29   -3.09   -1.49    0.43    2.71    5.53    9.10
+   265.0    0.00   -0.11   -0.45   -0.95   -1.56   -2.22   -2.93   -3.66   -4.35   -4.90   -5.15   -4.96   -4.26   -3.09   -1.54    0.32    2.56    5.38    8.99
+   270.0    0.00   -0.11   -0.45   -0.96   -1.57   -2.23   -2.93   -3.65   -4.33   -4.87   -5.10   -4.91   -4.23   -3.10   -1.61    0.20    2.39    5.20    8.85
+   275.0    0.00   -0.11   -0.45   -0.96   -1.57   -2.23   -2.92   -3.63   -4.30   -4.83   -5.06   -4.87   -4.21   -3.11   -1.67    0.08    2.22    5.02    8.71
+   280.0    0.00   -0.11   -0.46   -0.97   -1.57   -2.23   -2.91   -3.61   -4.27   -4.78   -5.01   -4.83   -4.18   -3.12   -1.72   -0.02    2.08    4.86    8.58
+   285.0    0.00   -0.12   -0.46   -0.97   -1.57   -2.22   -2.89   -3.58   -4.22   -4.73   -4.96   -4.79   -4.16   -3.11   -1.74   -0.08    1.99    4.75    8.49
+   290.0    0.00   -0.12   -0.46   -0.97   -1.57   -2.20   -2.86   -3.53   -4.17   -4.68   -4.92   -4.75   -4.12   -3.09   -1.73   -0.08    1.96    4.70    8.44
+   295.0    0.00   -0.12   -0.46   -0.97   -1.56   -2.19   -2.83   -3.49   -4.12   -4.63   -4.87   -4.71   -4.09   -3.04   -1.68   -0.03    2.00    4.71    8.45
+   300.0    0.00   -0.12   -0.47   -0.97   -1.55   -2.16   -2.79   -3.44   -4.06   -4.57   -4.82   -4.67   -4.04   -2.99   -1.60    0.07    2.10    4.80    8.52
+   305.0    0.00   -0.12   -0.47   -0.97   -1.54   -2.14   -2.76   -3.39   -4.01   -4.52   -4.78   -4.63   -4.00   -2.92   -1.49    0.21    2.25    4.93    8.62
+   310.0    0.00   -0.12   -0.47   -0.97   -1.53   -2.12   -2.72   -3.34   -3.96   -4.48   -4.74   -4.60   -3.95   -2.84   -1.37    0.37    2.43    5.10    8.76
+   315.0    0.00   -0.13   -0.47   -0.97   -1.53   -2.10   -2.69   -3.30   -3.92   -4.44   -4.71   -4.57   -3.91   -2.76   -1.25    0.53    2.62    5.29    8.90
+   320.0    0.00   -0.13   -0.47   -0.97   -1.52   -2.09   -2.67   -3.27   -3.89   -4.41   -4.69   -4.54   -3.87   -2.70   -1.14    0.68    2.79    5.45    9.03
+   325.0    0.00   -0.13   -0.48   -0.97   -1.52   -2.08   -2.65   -3.26   -3.87   -4.40   -4.68   -4.53   -3.85   -2.65   -1.06    0.79    2.93    5.58    9.12
+   330.0    0.00   -0.13   -0.48   -0.97   -1.51   -2.07   -2.65   -3.25   -3.86   -4.40   -4.68   -4.53   -3.84   -2.63   -1.02    0.86    3.01    5.65    9.16
+   335.0    0.00   -0.13   -0.48   -0.97   -1.52   -2.08   -2.65   -3.25   -3.87   -4.41   -4.69   -4.55   -3.86   -2.64   -1.02    0.86    3.02    5.66    9.12
+   340.0    0.00   -0.13   -0.48   -0.97   -1.52   -2.08   -2.66   -3.27   -3.89   -4.43   -4.72   -4.58   -3.89   -2.69   -1.08    0.81    2.97    5.59    9.01
+   345.0    0.00   -0.13   -0.48   -0.97   -1.52   -2.09   -2.67   -3.29   -3.91   -4.46   -4.75   -4.62   -3.96   -2.77   -1.17    0.71    2.86    5.47    8.84
+   350.0    0.00   -0.14   -0.49   -0.98   -1.53   -2.10   -2.69   -3.31   -3.95   -4.50   -4.80   -4.69   -4.04   -2.88   -1.30    0.56    2.70    5.29    8.61
+   355.0    0.00   -0.14   -0.49   -0.98   -1.54   -2.12   -2.72   -3.35   -3.99   -4.54   -4.86   -4.76   -4.14   -3.01   -1.46    0.38    2.51    5.09    8.34
+   360.0    0.00   -0.14   -0.49   -0.99   -1.55   -2.14   -2.74   -3.38   -4.03   -4.60   -4.92   -4.84   -4.25   -3.15   -1.64    0.19    2.31    4.87    8.07
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+LEIAR25.R3      LEIT                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               5    28-JAN-10 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+      0.17      0.10    161.73                              NORTH / EAST / UP   
+   NOAZI    0.00    0.27    1.00    2.05    3.17    4.08    4.55    4.42    3.71    2.55    1.19   -0.12   -1.20   -1.93   -2.26   -2.09   -1.24    0.56    3.43
+     0.0    0.00    0.18    0.86    1.91    3.05    3.98    4.44    4.28    3.53    2.37    1.06   -0.15   -1.11   -1.79   -2.17   -2.14   -1.49    0.09    2.72
+     5.0    0.00    0.18    0.87    1.91    3.06    4.00    4.46    4.30    3.53    2.35    1.03   -0.19   -1.15   -1.81   -2.16   -2.12   -1.48    0.05    2.61
+    10.0    0.00    0.18    0.87    1.92    3.08    4.03    4.49    4.33    3.55    2.35    1.00   -0.23   -1.19   -1.82   -2.14   -2.08   -1.44    0.06    2.57
+    15.0    0.00    0.19    0.88    1.93    3.10    4.05    4.53    4.36    3.58    2.35    0.98   -0.26   -1.22   -1.83   -2.12   -2.03   -1.37    0.12    2.61
+    20.0    0.00    0.19    0.89    1.95    3.12    4.09    4.57    4.41    3.62    2.38    0.98   -0.28   -1.24   -1.84   -2.09   -1.97   -1.28    0.24    2.75
+    25.0    0.00    0.19    0.89    1.96    3.14    4.12    4.62    4.47    3.67    2.42    1.00   -0.28   -1.25   -1.84   -2.07   -1.90   -1.17    0.39    2.97
+    30.0    0.00    0.20    0.90    1.97    3.16    4.15    4.66    4.52    3.73    2.47    1.04   -0.27   -1.25   -1.84   -2.05   -1.84   -1.06    0.58    3.26
+    35.0    0.00    0.20    0.91    1.98    3.17    4.18    4.71    4.58    3.80    2.53    1.08   -0.25   -1.25   -1.85   -2.04   -1.79   -0.95    0.77    3.57
+    40.0    0.00    0.21    0.92    1.99    3.19    4.20    4.75    4.64    3.86    2.60    1.14   -0.21   -1.24   -1.85   -2.04   -1.76   -0.85    0.96    3.89
+    45.0    0.00    0.21    0.93    2.01    3.20    4.22    4.78    4.68    3.92    2.66    1.20   -0.17   -1.23   -1.86   -2.04   -1.74   -0.78    1.12    4.17
+    50.0    0.00    0.22    0.94    2.02    3.21    4.23    4.79    4.71    3.97    2.72    1.25   -0.13   -1.21   -1.86   -2.06   -1.75   -0.75    1.23    4.40
+    55.0    0.00    0.23    0.95    2.02    3.22    4.24    4.80    4.73    4.00    2.77    1.30   -0.09   -1.19   -1.87   -2.09   -1.78   -0.75    1.29    4.54
+    60.0    0.00    0.24    0.96    2.03    3.22    4.23    4.79    4.73    4.02    2.80    1.34   -0.06   -1.18   -1.88   -2.13   -1.83   -0.79    1.28    4.60
+    65.0    0.00    0.24    0.97    2.04    3.22    4.22    4.78    4.71    4.01    2.81    1.36   -0.04   -1.16   -1.90   -2.17   -1.90   -0.86    1.21    4.56
+    70.0    0.00    0.25    0.98    2.05    3.22    4.20    4.75    4.68    3.99    2.80    1.37   -0.02   -1.16   -1.92   -2.22   -1.98   -0.97    1.10    4.44
+    75.0    0.00    0.26    0.99    2.06    3.21    4.18    4.71    4.64    3.95    2.77    1.36   -0.02   -1.16   -1.94   -2.28   -2.07   -1.09    0.95    4.27
+    80.0    0.00    0.27    1.01    2.07    3.21    4.16    4.67    4.59    3.89    2.73    1.33   -0.04   -1.18   -1.97   -2.34   -2.16   -1.22    0.78    4.05
+    85.0    0.00    0.28    1.02    2.07    3.20    4.14    4.63    4.53    3.84    2.68    1.29   -0.07   -1.20   -2.01   -2.40   -2.26   -1.35    0.61    3.83
+    90.0    0.00    0.28    1.03    2.08    3.20    4.12    4.59    4.48    3.78    2.62    1.25   -0.10   -1.24   -2.05   -2.46   -2.34   -1.46    0.46    3.62
+    95.0    0.00    0.29    1.05    2.10    3.20    4.10    4.55    4.43    3.72    2.57    1.20   -0.14   -1.28   -2.10   -2.51   -2.41   -1.55    0.35    3.45
+   100.0    0.00    0.30    1.06    2.11    3.21    4.09    4.53    4.38    3.67    2.52    1.15   -0.19   -1.32   -2.14   -2.56   -2.46   -1.61    0.27    3.33
+   105.0    0.00    0.31    1.07    2.12    3.21    4.08    4.50    4.35    3.63    2.47    1.11   -0.23   -1.36   -2.18   -2.59   -2.48   -1.63    0.24    3.26
+   110.0    0.00    0.32    1.09    2.13    3.22    4.08    4.49    4.33    3.60    2.44    1.08   -0.26   -1.39   -2.20   -2.61   -2.49   -1.62    0.25    3.25
+   115.0    0.00    0.32    1.10    2.15    3.23    4.08    4.49    4.32    3.58    2.43    1.06   -0.28   -1.41   -2.21   -2.61   -2.47   -1.58    0.30    3.29
+   120.0    0.00    0.33    1.11    2.16    3.24    4.09    4.49    4.31    3.58    2.42    1.06   -0.28   -1.41   -2.21   -2.59   -2.43   -1.52    0.37    3.36
+   125.0    0.00    0.34    1.12    2.18    3.26    4.10    4.49    4.32    3.58    2.43    1.07   -0.27   -1.39   -2.18   -2.55   -2.38   -1.45    0.45    3.44
+   130.0    0.00    0.34    1.13    2.19    3.27    4.11    4.50    4.33    3.59    2.44    1.09   -0.24   -1.36   -2.14   -2.50   -2.31   -1.38    0.53    3.53
+   135.0    0.00    0.35    1.14    2.20    3.28    4.12    4.51    4.34    3.61    2.46    1.12   -0.21   -1.32   -2.09   -2.44   -2.24   -1.31    0.60    3.60
+   140.0    0.00    0.35    1.15    2.21    3.29    4.13    4.52    4.35    3.63    2.49    1.15   -0.17   -1.27   -2.04   -2.38   -2.18   -1.25    0.65    3.64
+   145.0    0.00    0.35    1.16    2.22    3.30    4.14    4.53    4.37    3.65    2.52    1.18   -0.12   -1.22   -1.98   -2.32   -2.13   -1.22    0.66    3.64
+   150.0    0.00    0.36    1.16    2.23    3.31    4.15    4.54    4.38    3.67    2.54    1.21   -0.09   -1.18   -1.94   -2.28   -2.10   -1.20    0.65    3.61
+   155.0    0.00    0.36    1.17    2.23    3.31    4.16    4.55    4.39    3.69    2.56    1.23   -0.07   -1.15   -1.91   -2.25   -2.08   -1.21    0.60    3.54
+   160.0    0.00    0.36    1.17    2.23    3.32    4.16    4.56    4.41    3.70    2.58    1.25   -0.06   -1.14   -1.90   -2.24   -2.08   -1.24    0.54    3.43
+   165.0    0.00    0.36    1.17    2.23    3.32    4.17    4.57    4.42    3.71    2.59    1.25   -0.06   -1.15   -1.91   -2.26   -2.10   -1.28    0.46    3.30
+   170.0    0.00    0.36    1.17    2.23    3.32    4.17    4.58    4.43    3.72    2.59    1.24   -0.08   -1.18   -1.94   -2.28   -2.14   -1.33    0.37    3.16
+   175.0    0.00    0.36    1.16    2.23    3.31    4.17    4.59    4.44    3.73    2.58    1.22   -0.11   -1.22   -1.98   -2.32   -2.17   -1.38    0.28    3.02
+   180.0    0.00    0.36    1.16    2.22    3.31    4.17    4.59    4.45    3.73    2.58    1.20   -0.15   -1.26   -2.02   -2.36   -2.21   -1.43    0.21    2.90
+   185.0    0.00    0.35    1.15    2.21    3.30    4.16    4.59    4.45    3.73    2.57    1.18   -0.18   -1.30   -2.06   -2.39   -2.23   -1.46    0.16    2.80
+   190.0    0.00    0.35    1.14    2.20    3.29    4.16    4.59    4.45    3.73    2.56    1.16   -0.21   -1.33   -2.08   -2.40   -2.24   -1.47    0.13    2.74
+   195.0    0.00    0.35    1.13    2.19    3.28    4.15    4.58    4.45    3.73    2.55    1.15   -0.22   -1.34   -2.08   -2.39   -2.23   -1.45    0.14    2.74
+   200.0    0.00    0.34    1.12    2.17    3.26    4.14    4.58    4.44    3.72    2.55    1.15   -0.21   -1.32   -2.06   -2.36   -2.20   -1.42    0.18    2.79
+   205.0    0.00    0.34    1.11    2.16    3.25    4.12    4.56    4.43    3.72    2.55    1.16   -0.19   -1.28   -2.01   -2.31   -2.14   -1.36    0.26    2.90
+   210.0    0.00    0.33    1.10    2.14    3.23    4.10    4.55    4.42    3.72    2.56    1.19   -0.14   -1.22   -1.93   -2.24   -2.08   -1.29    0.37    3.06
+   215.0    0.00    0.32    1.09    2.13    3.21    4.09    4.53    4.41    3.71    2.58    1.23   -0.07   -1.13   -1.85   -2.17   -2.01   -1.21    0.49    3.26
+   220.0    0.00    0.32    1.08    2.11    3.19    4.07    4.52    4.40    3.72    2.60    1.28    0.00   -1.05   -1.76   -2.09   -1.94   -1.12    0.63    3.50
+   225.0    0.00    0.31    1.06    2.09    3.17    4.05    4.50    4.39    3.73    2.63    1.33    0.08   -0.96   -1.68   -2.03   -1.89   -1.05    0.78    3.74
+   230.0    0.00    0.30    1.05    2.08    3.16    4.04    4.49    4.39    3.74    2.66    1.38    0.14   -0.89   -1.63   -1.99   -1.85   -0.98    0.91    3.98
+   235.0    0.00    0.29    1.04    2.06    3.14    4.03    4.49    4.39    3.75    2.69    1.42    0.19   -0.85   -1.60   -1.97   -1.84   -0.94    1.02    4.18
+   240.0    0.00    0.29    1.02    2.05    3.13    4.02    4.49    4.40    3.77    2.71    1.45    0.21   -0.84   -1.60   -1.99   -1.86   -0.92    1.10    4.32
+   245.0    0.00    0.28    1.01    2.04    3.12    4.02    4.49    4.41    3.78    2.73    1.46    0.21   -0.86   -1.65   -2.05   -1.90   -0.93    1.14    4.40
+   250.0    0.00    0.27    1.00    2.02    3.12    4.02    4.50    4.42    3.79    2.73    1.46    0.18   -0.92   -1.72   -2.13   -1.96   -0.97    1.13    4.39
+   255.0    0.00    0.26    0.99    2.01    3.11    4.02    4.51    4.44    3.80    2.73    1.43    0.13   -1.00   -1.82   -2.22   -2.04   -1.02    1.08    4.30
+   260.0    0.00    0.26    0.98    2.01    3.11    4.02    4.52    4.45    3.80    2.71    1.38    0.05   -1.10   -1.93   -2.32   -2.12   -1.09    0.99    4.13
+   265.0    0.00    0.25    0.97    2.00    3.11    4.03    4.53    4.45    3.79    2.68    1.32   -0.03   -1.20   -2.03   -2.42   -2.20   -1.17    0.87    3.91
+   270.0    0.00    0.24    0.96    1.99    3.10    4.03    4.53    4.45    3.78    2.64    1.26   -0.12   -1.30   -2.13   -2.50   -2.26   -1.24    0.74    3.65
+   275.0    0.00    0.23    0.95    1.98    3.10    4.03    4.53    4.45    3.76    2.60    1.19   -0.20   -1.38   -2.20   -2.55   -2.31   -1.31    0.60    3.39
+   280.0    0.00    0.23    0.94    1.97    3.10    4.03    4.53    4.43    3.73    2.55    1.14   -0.26   -1.43   -2.23   -2.57   -2.33   -1.37    0.46    3.15
+   285.0    0.00    0.22    0.93    1.97    3.09    4.03    4.52    4.42    3.70    2.51    1.09   -0.31   -1.46   -2.24   -2.55   -2.32   -1.40    0.36    2.95
+   290.0    0.00    0.21    0.92    1.96    3.09    4.02    4.51    4.40    3.67    2.48    1.06   -0.32   -1.45   -2.21   -2.51   -2.29   -1.41    0.28    2.82
+   295.0    0.00    0.21    0.91    1.95    3.08    4.01    4.50    4.37    3.64    2.45    1.04   -0.31   -1.41   -2.15   -2.45   -2.25   -1.41    0.24    2.77
+   300.0    0.00    0.20    0.90    1.94    3.07    4.00    4.48    4.35    3.62    2.43    1.05   -0.28   -1.35   -2.07   -2.37   -2.19   -1.39    0.24    2.80
+   305.0    0.00    0.20    0.89    1.93    3.06    3.99    4.46    4.33    3.60    2.43    1.07   -0.23   -1.28   -1.98   -2.29   -2.14   -1.36    0.28    2.89
+   310.0    0.00    0.19    0.89    1.92    3.05    3.98    4.45    4.31    3.59    2.43    1.10   -0.17   -1.20   -1.89   -2.22   -2.09   -1.32    0.33    3.03
+   315.0    0.00    0.19    0.88    1.92    3.04    3.96    4.43    4.30    3.58    2.44    1.13   -0.11   -1.12   -1.81   -2.15   -2.05   -1.29    0.39    3.18
+   320.0    0.00    0.19    0.88    1.91    3.03    3.95    4.42    4.29    3.58    2.46    1.17   -0.06   -1.05   -1.75   -2.11   -2.03   -1.27    0.45    3.33
+   325.0    0.00    0.18    0.87    1.90    3.03    3.95    4.41    4.28    3.58    2.47    1.19   -0.01   -1.00   -1.71   -2.09   -2.02   -1.27    0.49    3.44
+   330.0    0.00    0.18    0.87    1.90    3.02    3.94    4.40    4.27    3.57    2.47    1.21    0.02   -0.97   -1.69   -2.08   -2.03   -1.28    0.50    3.50
+   335.0    0.00    0.18    0.86    1.89    3.02    3.94    4.40    4.27    3.57    2.47    1.22    0.03   -0.96   -1.68   -2.09   -2.06   -1.31    0.47    3.48
+   340.0    0.00    0.18    0.86    1.89    3.02    3.94    4.40    4.26    3.56    2.46    1.21    0.02   -0.97   -1.70   -2.11   -2.08   -1.35    0.42    3.40
+   345.0    0.00    0.18    0.86    1.89    3.02    3.94    4.40    4.26    3.55    2.44    1.18   -0.01   -1.00   -1.72   -2.13   -2.11   -1.40    0.34    3.26
+   350.0    0.00    0.18    0.86    1.90    3.03    3.95    4.41    4.26    3.54    2.42    1.15   -0.05   -1.03   -1.74   -2.15   -2.14   -1.44    0.25    3.08
+   355.0    0.00    0.18    0.86    1.90    3.03    3.96    4.42    4.27    3.53    2.39    1.11   -0.10   -1.07   -1.77   -2.16   -2.15   -1.47    0.16    2.89
+   360.0    0.00    0.18    0.86    1.91    3.05    3.98    4.44    4.28    3.53    2.37    1.06   -0.15   -1.11   -1.79   -2.17   -2.14   -1.49    0.09    2.72
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.19     -0.64    158.79                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.16   -0.60   -1.22   -1.89   -2.56   -3.24   -3.94   -4.64   -5.21   -5.47   -5.22   -4.38   -3.03   -1.36    0.52    2.68    5.44    9.24
+     0.0    0.00   -0.18   -0.63   -1.25   -1.91   -2.55   -3.17   -3.80   -4.43   -4.98   -5.25   -5.06   -4.32   -3.06   -1.44    0.41    2.52    5.15    8.58
+     5.0    0.00   -0.18   -0.64   -1.26   -1.92   -2.56   -3.19   -3.82   -4.47   -5.03   -5.32   -5.15   -4.43   -3.19   -1.61    0.20    2.27    4.86    8.33
+    10.0    0.00   -0.18   -0.64   -1.27   -1.93   -2.58   -3.21   -3.85   -4.52   -5.09   -5.40   -5.25   -4.53   -3.31   -1.75    0.01    2.03    4.61    8.14
+    15.0    0.00   -0.18   -0.65   -1.27   -1.94   -2.59   -3.22   -3.88   -4.56   -5.16   -5.48   -5.33   -4.62   -3.40   -1.86   -0.13    1.85    4.41    8.02
+    20.0    0.00   -0.18   -0.65   -1.28   -1.95   -2.60   -3.24   -3.91   -4.61   -5.22   -5.55   -5.40   -4.68   -3.46   -1.92   -0.22    1.72    4.28    7.97
+    25.0    0.00   -0.18   -0.65   -1.28   -1.96   -2.61   -3.26   -3.94   -4.65   -5.27   -5.61   -5.46   -4.72   -3.48   -1.94   -0.25    1.67    4.24    8.00
+    30.0    0.00   -0.19   -0.65   -1.29   -1.97   -2.62   -3.28   -3.97   -4.69   -5.32   -5.66   -5.49   -4.73   -3.47   -1.91   -0.21    1.71    4.28    8.10
+    35.0    0.00   -0.19   -0.66   -1.29   -1.97   -2.63   -3.29   -3.99   -4.72   -5.36   -5.69   -5.51   -4.72   -3.43   -1.84   -0.12    1.81    4.40    8.27
+    40.0    0.00   -0.19   -0.66   -1.29   -1.97   -2.64   -3.31   -4.01   -4.75   -5.38   -5.71   -5.50   -4.69   -3.36   -1.73    0.02    1.98    4.59    8.47
+    45.0    0.00   -0.19   -0.66   -1.29   -1.98   -2.65   -3.32   -4.03   -4.77   -5.40   -5.71   -5.49   -4.64   -3.27   -1.60    0.19    2.19    4.83    8.71
+    50.0    0.00   -0.19   -0.66   -1.29   -1.98   -2.66   -3.33   -4.05   -4.78   -5.41   -5.70   -5.45   -4.58   -3.18   -1.47    0.37    2.42    5.09    8.96
+    55.0    0.00   -0.19   -0.65   -1.29   -1.98   -2.66   -3.35   -4.06   -4.79   -5.41   -5.68   -5.42   -4.52   -3.09   -1.35    0.54    2.66    5.36    9.20
+    60.0    0.00   -0.18   -0.65   -1.29   -1.98   -2.67   -3.36   -4.08   -4.80   -5.40   -5.66   -5.37   -4.46   -3.02   -1.24    0.69    2.86    5.61    9.42
+    65.0    0.00   -0.18   -0.65   -1.28   -1.98   -2.67   -3.36   -4.09   -4.81   -5.39   -5.63   -5.34   -4.42   -2.96   -1.17    0.81    3.03    5.83    9.60
+    70.0    0.00   -0.18   -0.65   -1.28   -1.97   -2.67   -3.37   -4.10   -4.81   -5.38   -5.61   -5.31   -4.38   -2.93   -1.13    0.87    3.15    5.98    9.74
+    75.0    0.00   -0.18   -0.64   -1.27   -1.97   -2.67   -3.38   -4.10   -4.81   -5.38   -5.60   -5.28   -4.37   -2.93   -1.13    0.89    3.20    6.08    9.84
+    80.0    0.00   -0.18   -0.64   -1.27   -1.96   -2.67   -3.38   -4.11   -4.81   -5.37   -5.58   -5.27   -4.37   -2.94   -1.16    0.86    3.20    6.11    9.89
+    85.0    0.00   -0.18   -0.63   -1.26   -1.95   -2.66   -3.37   -4.10   -4.81   -5.37   -5.58   -5.28   -4.38   -2.98   -1.22    0.80    3.14    6.09    9.90
+    90.0    0.00   -0.17   -0.63   -1.25   -1.94   -2.65   -3.36   -4.10   -4.81   -5.37   -5.58   -5.29   -4.41   -3.02   -1.29    0.71    3.06    6.02    9.88
+    95.0    0.00   -0.17   -0.62   -1.24   -1.93   -2.63   -3.35   -4.09   -4.81   -5.37   -5.59   -5.30   -4.44   -3.07   -1.36    0.62    2.95    5.93    9.85
+   100.0    0.00   -0.17   -0.62   -1.23   -1.92   -2.62   -3.33   -4.07   -4.80   -5.37   -5.60   -5.32   -4.47   -3.12   -1.42    0.53    2.84    5.83    9.81
+   105.0    0.00   -0.17   -0.61   -1.22   -1.90   -2.60   -3.31   -4.05   -4.78   -5.36   -5.60   -5.33   -4.49   -3.15   -1.47    0.46    2.75    5.73    9.77
+   110.0    0.00   -0.17   -0.61   -1.21   -1.89   -2.58   -3.29   -4.03   -4.76   -5.34   -5.60   -5.33   -4.49   -3.16   -1.48    0.43    2.70    5.67    9.76
+   115.0    0.00   -0.16   -0.60   -1.21   -1.88   -2.56   -3.26   -4.00   -4.73   -5.32   -5.58   -5.32   -4.48   -3.14   -1.47    0.44    2.68    5.63    9.77
+   120.0    0.00   -0.16   -0.60   -1.20   -1.86   -2.54   -3.23   -3.96   -4.69   -5.29   -5.55   -5.30   -4.45   -3.10   -1.42    0.48    2.71    5.65    9.80
+   125.0    0.00   -0.16   -0.59   -1.19   -1.85   -2.52   -3.21   -3.93   -4.65   -5.25   -5.51   -5.25   -4.40   -3.04   -1.34    0.57    2.78    5.70    9.86
+   130.0    0.00   -0.16   -0.59   -1.19   -1.84   -2.51   -3.18   -3.89   -4.61   -5.19   -5.46   -5.20   -4.33   -2.95   -1.24    0.67    2.88    5.78    9.94
+   135.0    0.00   -0.16   -0.59   -1.18   -1.84   -2.50   -3.16   -3.86   -4.56   -5.14   -5.39   -5.13   -4.25   -2.86   -1.13    0.80    3.00    5.89   10.02
+   140.0    0.00   -0.16   -0.59   -1.18   -1.83   -2.49   -3.15   -3.83   -4.52   -5.08   -5.32   -5.05   -4.17   -2.77   -1.03    0.91    3.12    5.99   10.07
+   145.0    0.00   -0.15   -0.58   -1.18   -1.83   -2.48   -3.14   -3.81   -4.48   -5.03   -5.26   -4.98   -4.10   -2.69   -0.94    1.01    3.23    6.08   10.10
+   150.0    0.00   -0.15   -0.58   -1.18   -1.84   -2.49   -3.13   -3.79   -4.45   -4.98   -5.20   -4.92   -4.04   -2.63   -0.88    1.08    3.30    6.13   10.07
+   155.0    0.00   -0.15   -0.58   -1.18   -1.84   -2.49   -3.13   -3.79   -4.43   -4.95   -5.16   -4.87   -4.00   -2.60   -0.86    1.10    3.32    6.13    9.99
+   160.0    0.00   -0.15   -0.58   -1.18   -1.84   -2.50   -3.14   -3.79   -4.42   -4.94   -5.14   -4.86   -3.99   -2.61   -0.88    1.07    3.29    6.07    9.84
+   165.0    0.00   -0.15   -0.58   -1.19   -1.85   -2.50   -3.15   -3.80   -4.43   -4.94   -5.15   -4.87   -4.02   -2.66   -0.95    0.99    3.20    5.96    9.63
+   170.0    0.00   -0.15   -0.58   -1.19   -1.85   -2.51   -3.16   -3.81   -4.45   -4.96   -5.17   -4.91   -4.08   -2.75   -1.06    0.86    3.06    5.80    9.37
+   175.0    0.00   -0.15   -0.58   -1.19   -1.86   -2.52   -3.17   -3.84   -4.48   -5.00   -5.23   -4.98   -4.17   -2.87   -1.21    0.69    2.89    5.60    9.09
+   180.0    0.00   -0.15   -0.58   -1.19   -1.86   -2.53   -3.19   -3.86   -4.52   -5.06   -5.30   -5.07   -4.29   -3.01   -1.38    0.51    2.69    5.38    8.81
+   185.0    0.00   -0.15   -0.58   -1.19   -1.86   -2.53   -3.20   -3.89   -4.57   -5.13   -5.39   -5.18   -4.42   -3.16   -1.55    0.32    2.49    5.18    8.56
+   190.0    0.00   -0.15   -0.58   -1.19   -1.86   -2.54   -3.22   -3.92   -4.62   -5.20   -5.49   -5.30   -4.56   -3.31   -1.71    0.15    2.32    5.01    8.37
+   195.0    0.00   -0.15   -0.58   -1.19   -1.86   -2.54   -3.23   -3.95   -4.67   -5.28   -5.59   -5.42   -4.68   -3.44   -1.84    0.02    2.19    4.89    8.27
+   200.0    0.00   -0.15   -0.58   -1.19   -1.86   -2.54   -3.24   -3.97   -4.72   -5.35   -5.68   -5.52   -4.78   -3.54   -1.93   -0.07    2.12    4.84    8.26
+   205.0    0.00   -0.15   -0.58   -1.19   -1.86   -2.55   -3.25   -4.00   -4.76   -5.42   -5.76   -5.60   -4.86   -3.60   -1.98   -0.10    2.10    4.87    8.36
+   210.0    0.00   -0.15   -0.58   -1.19   -1.86   -2.55   -3.26   -4.02   -4.80   -5.47   -5.82   -5.65   -4.90   -3.62   -1.98   -0.08    2.16    4.97    8.55
+   215.0    0.00   -0.15   -0.58   -1.19   -1.87   -2.56   -3.27   -4.04   -4.83   -5.51   -5.85   -5.68   -4.90   -3.60   -1.93    0.00    2.27    5.14    8.82
+   220.0    0.00   -0.15   -0.58   -1.19   -1.87   -2.56   -3.29   -4.06   -4.85   -5.53   -5.87   -5.68   -4.88   -3.54   -1.84    0.12    2.43    5.35    9.12
+   225.0    0.00   -0.15   -0.58   -1.20   -1.88   -2.57   -3.30   -4.07   -4.86   -5.53   -5.86   -5.65   -4.82   -3.45   -1.71    0.28    2.61    5.57    9.44
+   230.0    0.00   -0.15   -0.58   -1.20   -1.88   -2.58   -3.31   -4.08   -4.87   -5.52   -5.83   -5.60   -4.74   -3.34   -1.58    0.44    2.79    5.79    9.73
+   235.0    0.00   -0.15   -0.58   -1.20   -1.89   -2.59   -3.32   -4.09   -4.87   -5.50   -5.79   -5.54   -4.66   -3.23   -1.44    0.59    2.95    5.97    9.96
+   240.0    0.00   -0.15   -0.58   -1.20   -1.90   -2.60   -3.33   -4.09   -4.85   -5.48   -5.75   -5.47   -4.57   -3.13   -1.33    0.71    3.07    6.08   10.10
+   245.0    0.00   -0.15   -0.59   -1.21   -1.90   -2.61   -3.34   -4.09   -4.84   -5.44   -5.70   -5.40   -4.49   -3.04   -1.24    0.79    3.13    6.11   10.13
+   250.0    0.00   -0.15   -0.59   -1.21   -1.91   -2.62   -3.34   -4.09   -4.82   -5.41   -5.64   -5.34   -4.43   -2.98   -1.18    0.83    3.13    6.06   10.06
+   255.0    0.00   -0.15   -0.59   -1.21   -1.91   -2.62   -3.34   -4.07   -4.79   -5.37   -5.60   -5.30   -4.38   -2.94   -1.17    0.81    3.05    5.93    9.89
+   260.0    0.00   -0.15   -0.59   -1.21   -1.91   -2.62   -3.33   -4.06   -4.77   -5.33   -5.56   -5.26   -4.36   -2.94   -1.19    0.74    2.92    5.73    9.66
+   265.0    0.00   -0.15   -0.59   -1.21   -1.91   -2.61   -3.32   -4.04   -4.74   -5.30   -5.52   -5.23   -4.35   -2.95   -1.24    0.64    2.75    5.49    9.38
+   270.0    0.00   -0.15   -0.59   -1.21   -1.90   -2.60   -3.30   -4.01   -4.71   -5.26   -5.49   -5.22   -4.35   -2.98   -1.31    0.51    2.56    5.23    9.10
+   275.0    0.00   -0.15   -0.59   -1.21   -1.90   -2.59   -3.28   -3.98   -4.67   -5.23   -5.47   -5.20   -4.36   -3.02   -1.38    0.39    2.37    4.98    8.86
+   280.0    0.00   -0.15   -0.59   -1.20   -1.89   -2.57   -3.26   -3.95   -4.64   -5.20   -5.44   -5.19   -4.36   -3.04   -1.45    0.27    2.21    4.79    8.68
+   285.0    0.00   -0.15   -0.59   -1.20   -1.88   -2.55   -3.23   -3.92   -4.60   -5.16   -5.41   -5.17   -4.35   -3.05   -1.49    0.20    2.09    4.65    8.59
+   290.0    0.00   -0.15   -0.59   -1.19   -1.86   -2.53   -3.20   -3.89   -4.57   -5.13   -5.38   -5.14   -4.33   -3.04   -1.50    0.17    2.04    4.61    8.59
+   295.0    0.00   -0.15   -0.59   -1.19   -1.85   -2.51   -3.17   -3.85   -4.53   -5.09   -5.34   -5.10   -4.29   -3.01   -1.47    0.19    2.06    4.65    8.68
+   300.0    0.00   -0.15   -0.59   -1.19   -1.84   -2.50   -3.15   -3.82   -4.50   -5.05   -5.30   -5.05   -4.24   -2.95   -1.40    0.26    2.15    4.77    8.84
+   305.0    0.00   -0.16   -0.59   -1.18   -1.83   -2.48   -3.13   -3.79   -4.46   -5.01   -5.25   -4.99   -4.17   -2.87   -1.31    0.37    2.30    4.96    9.06
+   310.0    0.00   -0.16   -0.59   -1.18   -1.83   -2.47   -3.11   -3.77   -4.43   -4.97   -5.20   -4.93   -4.10   -2.78   -1.20    0.52    2.50    5.20    9.30
+   315.0    0.00   -0.16   -0.59   -1.18   -1.83   -2.46   -3.09   -3.75   -4.40   -4.94   -5.16   -4.88   -4.03   -2.70   -1.08    0.68    2.71    5.45    9.52
+   320.0    0.00   -0.16   -0.59   -1.18   -1.83   -2.46   -3.09   -3.73   -4.38   -4.90   -5.11   -4.82   -3.96   -2.62   -0.97    0.84    2.92    5.68    9.70
+   325.0    0.00   -0.16   -0.60   -1.19   -1.83   -2.46   -3.08   -3.72   -4.36   -4.87   -5.08   -4.78   -3.92   -2.56   -0.89    0.97    3.10    5.88    9.81
+   330.0    0.00   -0.16   -0.60   -1.19   -1.84   -2.46   -3.08   -3.72   -4.35   -4.85   -5.05   -4.76   -3.90   -2.54   -0.84    1.05    3.23    6.01    9.83
+   335.0    0.00   -0.17   -0.60   -1.20   -1.85   -2.47   -3.09   -3.72   -4.34   -4.84   -5.05   -4.76   -3.91   -2.55   -0.84    1.08    3.28    6.06    9.77
+   340.0    0.00   -0.17   -0.61   -1.21   -1.86   -2.49   -3.10   -3.72   -4.34   -4.85   -5.05   -4.78   -3.95   -2.60   -0.89    1.05    3.26    6.01    9.62
+   345.0    0.00   -0.17   -0.61   -1.22   -1.87   -2.50   -3.11   -3.74   -4.35   -4.86   -5.08   -4.83   -4.01   -2.68   -0.98    0.95    3.16    5.88    9.40
+   350.0    0.00   -0.17   -0.62   -1.23   -1.88   -2.51   -3.13   -3.75   -4.37   -4.89   -5.12   -4.89   -4.10   -2.79   -1.12    0.80    2.99    5.68    9.14
+   355.0    0.00   -0.18   -0.63   -1.24   -1.90   -2.53   -3.15   -3.77   -4.40   -4.93   -5.18   -4.97   -4.20   -2.92   -1.27    0.61    2.77    5.43    8.86
+   360.0    0.00   -0.18   -0.63   -1.25   -1.91   -2.55   -3.17   -3.80   -4.43   -4.98   -5.25   -5.06   -4.32   -3.06   -1.44    0.41    2.52    5.15    8.58
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+LEIAR25.R4      NONE                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               5    20-SEP-10 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+      0.88      0.87    159.36                              NORTH / EAST / UP   
+   NOAZI    0.00    0.16    0.62    1.27    1.96    2.51    2.78    2.68    2.20    1.43    0.52   -0.40   -1.18   -1.72   -1.93   -1.66   -0.73    1.05    3.69
+     0.0    0.00    0.19    0.69    1.39    2.11    2.66    2.90    2.74    2.21    1.43    0.54   -0.31   -1.01   -1.51   -1.73   -1.54   -0.73    0.90    3.43
+     5.0    0.00    0.19    0.69    1.38    2.10    2.65    2.88    2.71    2.16    1.36    0.46   -0.40   -1.11   -1.62   -1.85   -1.68   -0.91    0.69    3.22
+    10.0    0.00    0.19    0.68    1.38    2.09    2.63    2.86    2.67    2.12    1.31    0.39   -0.47   -1.20   -1.72   -1.96   -1.81   -1.06    0.52    3.05
+    15.0    0.00    0.18    0.68    1.37    2.08    2.62    2.83    2.65    2.08    1.26    0.34   -0.54   -1.28   -1.81   -2.06   -1.91   -1.16    0.42    2.95
+    20.0    0.00    0.18    0.67    1.35    2.06    2.60    2.81    2.62    2.06    1.23    0.30   -0.60   -1.35   -1.89   -2.14   -1.97   -1.20    0.39    2.91
+    25.0    0.00    0.18    0.66    1.34    2.04    2.58    2.79    2.61    2.05    1.22    0.28   -0.63   -1.41   -1.95   -2.20   -2.00   -1.19    0.43    2.94
+    30.0    0.00    0.17    0.65    1.32    2.02    2.56    2.77    2.60    2.05    1.22    0.27   -0.66   -1.45   -2.00   -2.23   -1.99   -1.13    0.53    3.04
+    35.0    0.00    0.17    0.64    1.31    2.00    2.53    2.76    2.60    2.06    1.24    0.28   -0.66   -1.47   -2.03   -2.24   -1.96   -1.03    0.68    3.18
+    40.0    0.00    0.16    0.63    1.29    1.98    2.51    2.75    2.60    2.07    1.26    0.30   -0.66   -1.48   -2.04   -2.23   -1.90   -0.91    0.84    3.35
+    45.0    0.00    0.16    0.62    1.27    1.96    2.50    2.74    2.60    2.09    1.29    0.32   -0.65   -1.48   -2.04   -2.21   -1.84   -0.79    1.01    3.53
+    50.0    0.00    0.15    0.61    1.26    1.94    2.48    2.73    2.61    2.11    1.31    0.35   -0.63   -1.46   -2.03   -2.18   -1.78   -0.69    1.15    3.71
+    55.0    0.00    0.15    0.60    1.24    1.92    2.46    2.72    2.61    2.12    1.33    0.37   -0.60   -1.44   -2.00   -2.15   -1.73   -0.63    1.25    3.85
+    60.0    0.00    0.14    0.59    1.23    1.90    2.45    2.72    2.61    2.13    1.35    0.39   -0.58   -1.42   -1.98   -2.13   -1.72   -0.61    1.29    3.95
+    65.0    0.00    0.14    0.58    1.21    1.89    2.44    2.71    2.62    2.14    1.36    0.40   -0.57   -1.40   -1.96   -2.11   -1.73   -0.64    1.27    4.00
+    70.0    0.00    0.14    0.57    1.20    1.88    2.44    2.71    2.62    2.14    1.36    0.40   -0.56   -1.38   -1.94   -2.12   -1.76   -0.71    1.20    3.99
+    75.0    0.00    0.13    0.56    1.19    1.87    2.43    2.71    2.62    2.14    1.35    0.40   -0.56   -1.37   -1.93   -2.13   -1.83   -0.83    1.07    3.93
+    80.0    0.00    0.13    0.56    1.18    1.87    2.43    2.72    2.62    2.14    1.34    0.39   -0.56   -1.37   -1.93   -2.15   -1.90   -0.96    0.91    3.82
+    85.0    0.00    0.13    0.55    1.18    1.86    2.43    2.72    2.62    2.13    1.33    0.38   -0.57   -1.37   -1.93   -2.18   -1.98   -1.09    0.75    3.69
+    90.0    0.00    0.12    0.55    1.17    1.86    2.44    2.73    2.63    2.13    1.32    0.37   -0.58   -1.37   -1.94   -2.21   -2.05   -1.21    0.61    3.56
+    95.0    0.00    0.12    0.54    1.17    1.86    2.44    2.74    2.64    2.14    1.32    0.36   -0.58   -1.37   -1.94   -2.22   -2.09   -1.28    0.50    3.44
+   100.0    0.00    0.12    0.54    1.17    1.86    2.45    2.75    2.65    2.15    1.33    0.37   -0.57   -1.36   -1.93   -2.22   -2.10   -1.31    0.46    3.36
+   105.0    0.00    0.12    0.54    1.17    1.87    2.45    2.76    2.66    2.16    1.35    0.39   -0.55   -1.34   -1.90   -2.19   -2.06   -1.27    0.48    3.33
+   110.0    0.00    0.12    0.54    1.17    1.87    2.46    2.76    2.68    2.18    1.38    0.42   -0.51   -1.29   -1.85   -2.13   -1.99   -1.18    0.57    3.36
+   115.0    0.00    0.12    0.54    1.17    1.87    2.46    2.77    2.69    2.21    1.41    0.47   -0.45   -1.23   -1.78   -2.04   -1.87   -1.03    0.72    3.45
+   120.0    0.00    0.12    0.54    1.17    1.87    2.46    2.77    2.70    2.23    1.46    0.53   -0.38   -1.15   -1.69   -1.93   -1.73   -0.85    0.92    3.59
+   125.0    0.00    0.12    0.54    1.17    1.87    2.46    2.78    2.72    2.26    1.51    0.60   -0.29   -1.05   -1.58   -1.80   -1.57   -0.65    1.14    3.77
+   130.0    0.00    0.12    0.54    1.18    1.87    2.46    2.78    2.73    2.29    1.56    0.68   -0.20   -0.94   -1.46   -1.67   -1.40   -0.45    1.36    3.96
+   135.0    0.00    0.12    0.55    1.18    1.87    2.46    2.78    2.74    2.32    1.62    0.76   -0.10   -0.83   -1.34   -1.54   -1.25   -0.28    1.55    4.15
+   140.0    0.00    0.13    0.55    1.19    1.88    2.46    2.78    2.75    2.35    1.66    0.83   -0.01   -0.73   -1.24   -1.42   -1.13   -0.15    1.68    4.29
+   145.0    0.00    0.13    0.56    1.19    1.88    2.47    2.79    2.76    2.37    1.70    0.89    0.06   -0.65   -1.16   -1.34   -1.05   -0.08    1.75    4.38
+   150.0    0.00    0.13    0.56    1.20    1.89    2.47    2.80    2.77    2.39    1.73    0.92    0.11   -0.60   -1.10   -1.29   -1.02   -0.07    1.74    4.39
+   155.0    0.00    0.13    0.57    1.21    1.90    2.48    2.81    2.78    2.41    1.75    0.94    0.12   -0.59   -1.09   -1.29   -1.04   -0.13    1.65    4.33
+   160.0    0.00    0.14    0.57    1.22    1.91    2.49    2.82    2.80    2.42    1.75    0.93    0.11   -0.61   -1.12   -1.33   -1.10   -0.24    1.48    4.18
+   165.0    0.00    0.14    0.58    1.23    1.92    2.51    2.83    2.81    2.42    1.74    0.91    0.06   -0.67   -1.19   -1.41   -1.21   -0.40    1.27    3.96
+   170.0    0.00    0.14    0.59    1.24    1.94    2.52    2.85    2.82    2.42    1.72    0.86   -0.02   -0.76   -1.29   -1.52   -1.34   -0.58    1.02    3.71
+   175.0    0.00    0.15    0.59    1.24    1.95    2.53    2.86    2.82    2.41    1.68    0.79   -0.11   -0.88   -1.41   -1.65   -1.49   -0.77    0.77    3.44
+   180.0    0.00    0.15    0.60    1.25    1.95    2.54    2.86    2.82    2.39    1.64    0.72   -0.22   -1.01   -1.55   -1.78   -1.64   -0.95    0.55    3.18
+   185.0    0.00    0.15    0.61    1.26    1.96    2.55    2.86    2.81    2.36    1.59    0.64   -0.32   -1.13   -1.68   -1.92   -1.77   -1.09    0.37    2.98
+   190.0    0.00    0.16    0.61    1.26    1.96    2.54    2.85    2.79    2.33    1.54    0.57   -0.42   -1.24   -1.80   -2.03   -1.87   -1.20    0.25    2.85
+   195.0    0.00    0.16    0.62    1.27    1.96    2.53    2.83    2.76    2.29    1.49    0.51   -0.49   -1.33   -1.90   -2.12   -1.95   -1.26    0.21    2.80
+   200.0    0.00    0.16    0.62    1.27    1.96    2.52    2.81    2.73    2.25    1.45    0.46   -0.55   -1.39   -1.97   -2.19   -2.00   -1.27    0.24    2.86
+   205.0    0.00    0.17    0.63    1.27    1.95    2.50    2.78    2.69    2.21    1.41    0.43   -0.57   -1.42   -2.00   -2.22   -2.01   -1.23    0.34    3.00
+   210.0    0.00    0.17    0.63    1.27    1.94    2.48    2.74    2.64    2.17    1.39    0.42   -0.57   -1.43   -2.01   -2.24   -2.00   -1.16    0.49    3.21
+   215.0    0.00    0.17    0.63    1.27    1.93    2.45    2.71    2.60    2.14    1.37    0.42   -0.56   -1.41   -2.00   -2.23   -1.97   -1.07    0.68    3.46
+   220.0    0.00    0.17    0.63    1.27    1.92    2.43    2.67    2.57    2.11    1.36    0.43   -0.52   -1.37   -1.98   -2.21   -1.93   -0.96    0.88    3.73
+   225.0    0.00    0.18    0.64    1.27    1.91    2.41    2.64    2.53    2.08    1.35    0.45   -0.49   -1.33   -1.95   -2.19   -1.90   -0.87    1.06    3.98
+   230.0    0.00    0.18    0.64    1.27    1.91    2.40    2.63    2.51    2.07    1.35    0.47   -0.46   -1.30   -1.92   -2.18   -1.87   -0.80    1.21    4.17
+   235.0    0.00    0.18    0.64    1.27    1.91    2.40    2.62    2.50    2.06    1.35    0.48   -0.44   -1.28   -1.91   -2.18   -1.86   -0.75    1.31    4.29
+   240.0    0.00    0.18    0.65    1.27    1.91    2.40    2.62    2.50    2.05    1.35    0.48   -0.43   -1.27   -1.92   -2.19   -1.87   -0.74    1.35    4.33
+   245.0    0.00    0.19    0.65    1.28    1.92    2.41    2.63    2.51    2.06    1.34    0.47   -0.45   -1.29   -1.93   -2.21   -1.90   -0.77    1.33    4.27
+   250.0    0.00    0.19    0.65    1.29    1.93    2.43    2.65    2.52    2.06    1.33    0.45   -0.48   -1.32   -1.97   -2.25   -1.94   -0.82    1.25    4.12
+   255.0    0.00    0.19    0.66    1.29    1.94    2.45    2.67    2.54    2.07    1.32    0.41   -0.52   -1.37   -2.01   -2.28   -1.99   -0.90    1.13    3.92
+   260.0    0.00    0.19    0.66    1.30    1.96    2.47    2.70    2.57    2.07    1.30    0.38   -0.57   -1.41   -2.04   -2.32   -2.04   -0.98    0.98    3.68
+   265.0    0.00    0.19    0.67    1.31    1.98    2.50    2.73    2.59    2.08    1.29    0.34   -0.61   -1.45   -2.07   -2.34   -2.07   -1.06    0.83    3.44
+   270.0    0.00    0.20    0.67    1.32    1.99    2.52    2.76    2.61    2.09    1.27    0.31   -0.65   -1.48   -2.08   -2.34   -2.09   -1.13    0.69    3.23
+   275.0    0.00    0.20    0.67    1.33    2.01    2.54    2.78    2.63    2.10    1.27    0.29   -0.67   -1.48   -2.07   -2.32   -2.09   -1.17    0.59    3.07
+   280.0    0.00    0.20    0.68    1.33    2.02    2.56    2.80    2.65    2.11    1.27    0.29   -0.66   -1.46   -2.03   -2.27   -2.05   -1.17    0.54    2.98
+   285.0    0.00    0.20    0.68    1.34    2.03    2.57    2.82    2.67    2.12    1.29    0.31   -0.63   -1.41   -1.96   -2.20   -1.99   -1.13    0.55    2.99
+   290.0    0.00    0.20    0.68    1.35    2.04    2.59    2.83    2.69    2.15    1.32    0.35   -0.57   -1.33   -1.87   -2.10   -1.89   -1.04    0.63    3.07
+   295.0    0.00    0.20    0.69    1.35    2.04    2.60    2.85    2.70    2.17    1.36    0.42   -0.49   -1.24   -1.76   -1.98   -1.77   -0.91    0.77    3.24
+   300.0    0.00    0.20    0.69    1.36    2.05    2.60    2.86    2.72    2.21    1.41    0.49   -0.39   -1.13   -1.64   -1.85   -1.62   -0.75    0.96    3.46
+   305.0    0.00    0.20    0.69    1.36    2.06    2.61    2.87    2.75    2.25    1.47    0.57   -0.29   -1.01   -1.51   -1.71   -1.47   -0.57    1.17    3.71
+   310.0    0.00    0.20    0.69    1.36    2.06    2.62    2.88    2.77    2.29    1.53    0.66   -0.19   -0.90   -1.40   -1.59   -1.32   -0.39    1.39    3.97
+   315.0    0.00    0.21    0.70    1.37    2.07    2.63    2.90    2.79    2.33    1.59    0.73   -0.10   -0.81   -1.30   -1.47   -1.19   -0.22    1.60    4.20
+   320.0    0.00    0.21    0.70    1.37    2.08    2.64    2.91    2.81    2.36    1.64    0.80   -0.03   -0.73   -1.22   -1.38   -1.07   -0.08    1.77    4.37
+   325.0    0.00    0.20    0.70    1.38    2.08    2.65    2.92    2.83    2.39    1.68    0.84    0.02   -0.68   -1.17   -1.32   -1.00    0.02    1.87    4.49
+   330.0    0.00    0.20    0.70    1.38    2.09    2.66    2.93    2.84    2.40    1.69    0.86    0.04   -0.66   -1.14   -1.30   -0.96    0.06    1.91    4.52
+   335.0    0.00    0.20    0.70    1.39    2.10    2.66    2.94    2.85    2.40    1.69    0.85    0.03   -0.67   -1.15   -1.30   -0.97    0.04    1.88    4.47
+   340.0    0.00    0.20    0.70    1.39    2.10    2.67    2.94    2.84    2.38    1.66    0.82   -0.01   -0.71   -1.19   -1.34   -1.03   -0.04    1.77    4.34
+   345.0    0.00    0.20    0.70    1.39    2.11    2.67    2.94    2.83    2.35    1.62    0.77   -0.06   -0.76   -1.24   -1.41   -1.12   -0.17    1.60    4.15
+   350.0    0.00    0.20    0.70    1.39    2.11    2.67    2.93    2.80    2.31    1.56    0.70   -0.14   -0.84   -1.32   -1.50   -1.24   -0.34    1.38    3.92
+   355.0    0.00    0.20    0.70    1.39    2.11    2.67    2.92    2.77    2.27    1.50    0.62   -0.22   -0.92   -1.41   -1.61   -1.39   -0.53    1.14    3.68
+   360.0    0.00    0.19    0.69    1.39    2.11    2.66    2.90    2.74    2.21    1.43    0.54   -0.31   -1.01   -1.51   -1.73   -1.54   -0.73    0.90    3.43
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.12      0.02    153.58                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.14   -0.53   -1.08   -1.70   -2.34   -3.03   -3.76   -4.51   -5.13   -5.43   -5.20   -4.37   -3.04   -1.40    0.44    2.55    5.28    9.08
+     0.0    0.00   -0.18   -0.60   -1.18   -1.80   -2.43   -3.07   -3.74   -4.43   -5.01   -5.32   -5.18   -4.48   -3.28   -1.71    0.13    2.28    4.97    8.48
+     5.0    0.00   -0.18   -0.60   -1.18   -1.82   -2.45   -3.11   -3.79   -4.48   -5.07   -5.39   -5.25   -4.57   -3.39   -1.85   -0.04    2.09    4.79    8.37
+    10.0    0.00   -0.18   -0.60   -1.18   -1.83   -2.48   -3.14   -3.83   -4.53   -5.13   -5.45   -5.32   -4.65   -3.48   -1.96   -0.18    1.93    4.64    8.30
+    15.0    0.00   -0.17   -0.60   -1.19   -1.84   -2.50   -3.17   -3.88   -4.58   -5.18   -5.50   -5.37   -4.70   -3.55   -2.04   -0.28    1.82    4.55    8.30
+    20.0    0.00   -0.17   -0.60   -1.19   -1.85   -2.52   -3.21   -3.92   -4.62   -5.22   -5.54   -5.40   -4.73   -3.58   -2.08   -0.33    1.77    4.52    8.36
+    25.0    0.00   -0.17   -0.59   -1.19   -1.85   -2.54   -3.23   -3.95   -4.66   -5.25   -5.56   -5.41   -4.73   -3.58   -2.07   -0.32    1.77    4.55    8.46
+    30.0    0.00   -0.17   -0.59   -1.18   -1.85   -2.55   -3.25   -3.97   -4.68   -5.27   -5.57   -5.41   -4.71   -3.54   -2.03   -0.27    1.84    4.64    8.62
+    35.0    0.00   -0.16   -0.59   -1.18   -1.85   -2.55   -3.26   -3.98   -4.69   -5.28   -5.56   -5.39   -4.67   -3.48   -1.95   -0.17    1.95    4.77    8.80
+    40.0    0.00   -0.16   -0.58   -1.17   -1.85   -2.55   -3.26   -3.98   -4.69   -5.27   -5.55   -5.36   -4.62   -3.40   -1.84   -0.04    2.09    4.94    9.00
+    45.0    0.00   -0.16   -0.57   -1.16   -1.84   -2.54   -3.25   -3.97   -4.68   -5.26   -5.53   -5.32   -4.56   -3.31   -1.72    0.10    2.26    5.12    9.21
+    50.0    0.00   -0.15   -0.57   -1.15   -1.82   -2.52   -3.23   -3.96   -4.67   -5.25   -5.51   -5.28   -4.50   -3.21   -1.60    0.25    2.42    5.30    9.40
+    55.0    0.00   -0.15   -0.56   -1.14   -1.80   -2.49   -3.20   -3.93   -4.65   -5.23   -5.49   -5.25   -4.44   -3.12   -1.48    0.38    2.57    5.45    9.56
+    60.0    0.00   -0.15   -0.55   -1.12   -1.78   -2.47   -3.17   -3.91   -4.63   -5.21   -5.47   -5.21   -4.38   -3.05   -1.38    0.49    2.68    5.57    9.68
+    65.0    0.00   -0.14   -0.54   -1.11   -1.76   -2.43   -3.14   -3.88   -4.60   -5.19   -5.45   -5.19   -4.34   -2.98   -1.31    0.57    2.75    5.63    9.74
+    70.0    0.00   -0.14   -0.53   -1.09   -1.73   -2.40   -3.10   -3.84   -4.58   -5.18   -5.44   -5.17   -4.31   -2.94   -1.26    0.61    2.77    5.63    9.74
+    75.0    0.00   -0.14   -0.52   -1.07   -1.70   -2.37   -3.07   -3.81   -4.56   -5.17   -5.43   -5.16   -4.28   -2.91   -1.24    0.61    2.74    5.58    9.67
+    80.0    0.00   -0.13   -0.51   -1.06   -1.68   -2.33   -3.03   -3.78   -4.54   -5.16   -5.42   -5.15   -4.27   -2.89   -1.24    0.58    2.68    5.49    9.55
+    85.0    0.00   -0.13   -0.51   -1.04   -1.65   -2.30   -3.00   -3.75   -4.52   -5.15   -5.41   -5.14   -4.25   -2.89   -1.25    0.53    2.59    5.36    9.38
+    90.0    0.00   -0.13   -0.50   -1.03   -1.63   -2.27   -2.96   -3.72   -4.50   -5.13   -5.40   -5.13   -4.24   -2.89   -1.27    0.48    2.49    5.22    9.20
+    95.0    0.00   -0.12   -0.49   -1.01   -1.61   -2.24   -2.93   -3.70   -4.47   -5.11   -5.39   -5.11   -4.23   -2.88   -1.28    0.44    2.41    5.09    9.00
+   100.0    0.00   -0.12   -0.48   -1.00   -1.59   -2.22   -2.91   -3.67   -4.45   -5.09   -5.37   -5.10   -4.22   -2.87   -1.29    0.41    2.36    4.99    8.83
+   105.0    0.00   -0.12   -0.48   -0.99   -1.58   -2.20   -2.89   -3.65   -4.43   -5.07   -5.35   -5.08   -4.20   -2.86   -1.27    0.41    2.34    4.94    8.69
+   110.0    0.00   -0.12   -0.48   -0.99   -1.57   -2.19   -2.87   -3.62   -4.40   -5.05   -5.33   -5.05   -4.17   -2.83   -1.24    0.45    2.37    4.93    8.61
+   115.0    0.00   -0.11   -0.47   -0.98   -1.56   -2.18   -2.86   -3.61   -4.38   -5.02   -5.30   -5.02   -4.15   -2.79   -1.19    0.52    2.45    4.99    8.59
+   120.0    0.00   -0.11   -0.47   -0.98   -1.56   -2.18   -2.85   -3.59   -4.36   -4.99   -5.27   -5.00   -4.11   -2.75   -1.12    0.62    2.56    5.09    8.64
+   125.0    0.00   -0.11   -0.47   -0.98   -1.56   -2.18   -2.84   -3.58   -4.34   -4.97   -5.25   -4.97   -4.08   -2.70   -1.04    0.73    2.71    5.23    8.73
+   130.0    0.00   -0.11   -0.47   -0.98   -1.56   -2.18   -2.84   -3.57   -4.32   -4.95   -5.23   -4.95   -4.06   -2.65   -0.96    0.85    2.85    5.38    8.86
+   135.0    0.00   -0.11   -0.47   -0.98   -1.57   -2.18   -2.84   -3.57   -4.31   -4.94   -5.21   -4.94   -4.04   -2.62   -0.90    0.95    2.98    5.52    9.00
+   140.0    0.00   -0.11   -0.47   -0.98   -1.57   -2.19   -2.85   -3.57   -4.31   -4.93   -5.21   -4.93   -4.03   -2.60   -0.85    1.03    3.08    5.63    9.12
+   145.0    0.00   -0.11   -0.47   -0.99   -1.58   -2.20   -2.85   -3.57   -4.31   -4.93   -5.21   -4.94   -4.04   -2.59   -0.83    1.06    3.13    5.69    9.21
+   150.0    0.00   -0.11   -0.47   -0.99   -1.58   -2.20   -2.86   -3.58   -4.32   -4.94   -5.22   -4.96   -4.06   -2.62   -0.85    1.05    3.11    5.68    9.24
+   155.0    0.00   -0.11   -0.47   -0.99   -1.59   -2.21   -2.87   -3.59   -4.33   -4.96   -5.25   -4.99   -4.10   -2.66   -0.91    0.98    3.03    5.60    9.21
+   160.0    0.00   -0.11   -0.47   -0.99   -1.59   -2.21   -2.88   -3.60   -4.35   -4.98   -5.28   -5.03   -4.15   -2.74   -1.00    0.86    2.90    5.46    9.12
+   165.0    0.00   -0.11   -0.47   -0.99   -1.59   -2.22   -2.89   -3.61   -4.36   -5.00   -5.31   -5.08   -4.22   -2.83   -1.12    0.71    2.72    5.27    8.98
+   170.0    0.00   -0.11   -0.47   -1.00   -1.59   -2.22   -2.89   -3.63   -4.39   -5.03   -5.36   -5.14   -4.31   -2.94   -1.27    0.53    2.51    5.06    8.81
+   175.0    0.00   -0.11   -0.47   -0.99   -1.59   -2.22   -2.90   -3.64   -4.41   -5.07   -5.40   -5.21   -4.40   -3.07   -1.43    0.34    2.30    4.85    8.64
+   180.0    0.00   -0.11   -0.47   -0.99   -1.59   -2.23   -2.91   -3.65   -4.43   -5.10   -5.46   -5.28   -4.50   -3.19   -1.59    0.16    2.11    4.67    8.49
+   185.0    0.00   -0.11   -0.47   -0.99   -1.59   -2.23   -2.91   -3.67   -4.46   -5.14   -5.51   -5.35   -4.59   -3.31   -1.73    0.00    1.95    4.54    8.39
+   190.0    0.00   -0.11   -0.47   -0.99   -1.59   -2.23   -2.92   -3.69   -4.49   -5.18   -5.56   -5.42   -4.68   -3.42   -1.85   -0.12    1.86    4.48    8.37
+   195.0    0.00   -0.11   -0.47   -0.99   -1.59   -2.23   -2.93   -3.71   -4.52   -5.22   -5.61   -5.48   -4.75   -3.51   -1.94   -0.19    1.83    4.51    8.43
+   200.0    0.00   -0.11   -0.47   -0.99   -1.59   -2.24   -2.94   -3.73   -4.55   -5.27   -5.66   -5.53   -4.81   -3.57   -1.99   -0.21    1.87    4.62    8.57
+   205.0    0.00   -0.11   -0.47   -0.99   -1.59   -2.24   -2.96   -3.76   -4.59   -5.30   -5.70   -5.57   -4.84   -3.59   -2.00   -0.17    1.97    4.79    8.79
+   210.0    0.00   -0.12   -0.48   -0.99   -1.60   -2.25   -2.97   -3.78   -4.62   -5.34   -5.73   -5.59   -4.85   -3.59   -1.96   -0.10    2.11    5.01    9.05
+   215.0    0.00   -0.12   -0.48   -1.00   -1.60   -2.26   -2.99   -3.81   -4.65   -5.37   -5.75   -5.60   -4.84   -3.55   -1.90    0.01    2.29    5.26    9.33
+   220.0    0.00   -0.12   -0.48   -1.00   -1.60   -2.27   -3.01   -3.83   -4.68   -5.40   -5.76   -5.59   -4.81   -3.49   -1.81    0.15    2.47    5.50    9.58
+   225.0    0.00   -0.12   -0.49   -1.01   -1.61   -2.28   -3.03   -3.86   -4.71   -5.42   -5.77   -5.57   -4.76   -3.41   -1.70    0.28    2.64    5.70    9.80
+   230.0    0.00   -0.13   -0.49   -1.01   -1.62   -2.29   -3.04   -3.87   -4.72   -5.42   -5.76   -5.54   -4.70   -3.32   -1.59    0.41    2.78    5.84    9.93
+   235.0    0.00   -0.13   -0.50   -1.02   -1.63   -2.30   -3.05   -3.88   -4.73   -5.43   -5.74   -5.50   -4.63   -3.23   -1.48    0.52    2.88    5.92    9.98
+   240.0    0.00   -0.13   -0.50   -1.03   -1.64   -2.31   -3.06   -3.89   -4.73   -5.42   -5.72   -5.45   -4.56   -3.14   -1.39    0.59    2.92    5.92    9.93
+   245.0    0.00   -0.14   -0.51   -1.03   -1.65   -2.32   -3.06   -3.89   -4.73   -5.40   -5.69   -5.40   -4.49   -3.06   -1.31    0.64    2.91    5.84    9.80
+   250.0    0.00   -0.14   -0.51   -1.04   -1.66   -2.32   -3.06   -3.88   -4.71   -5.38   -5.66   -5.36   -4.43   -3.00   -1.26    0.65    2.85    5.71    9.61
+   255.0    0.00   -0.14   -0.52   -1.05   -1.67   -2.33   -3.06   -3.87   -4.69   -5.36   -5.63   -5.32   -4.39   -2.95   -1.24    0.63    2.76    5.54    9.39
+   260.0    0.00   -0.15   -0.53   -1.07   -1.68   -2.33   -3.06   -3.86   -4.67   -5.32   -5.59   -5.28   -4.35   -2.92   -1.23    0.59    2.65    5.36    9.16
+   265.0    0.00   -0.15   -0.54   -1.08   -1.69   -2.34   -3.05   -3.84   -4.64   -5.29   -5.56   -5.25   -4.33   -2.91   -1.24    0.54    2.54    5.18    8.95
+   270.0    0.00   -0.15   -0.55   -1.09   -1.70   -2.35   -3.05   -3.82   -4.61   -5.26   -5.53   -5.23   -4.31   -2.91   -1.26    0.49    2.45    5.05    8.81
+   275.0    0.00   -0.16   -0.55   -1.10   -1.71   -2.35   -3.04   -3.80   -4.58   -5.22   -5.49   -5.20   -4.29   -2.91   -1.27    0.45    2.38    4.96    8.73
+   280.0    0.00   -0.16   -0.56   -1.11   -1.72   -2.36   -3.04   -3.79   -4.55   -5.18   -5.46   -5.17   -4.28   -2.90   -1.28    0.43    2.36    4.94    8.74
+   285.0    0.00   -0.16   -0.57   -1.12   -1.73   -2.36   -3.04   -3.77   -4.52   -5.15   -5.42   -5.14   -4.26   -2.89   -1.28    0.44    2.38    4.99    8.82
+   290.0    0.00   -0.17   -0.57   -1.13   -1.74   -2.37   -3.03   -3.75   -4.49   -5.11   -5.37   -5.10   -4.23   -2.87   -1.26    0.47    2.44    5.09    8.97
+   295.0    0.00   -0.17   -0.58   -1.14   -1.75   -2.37   -3.03   -3.74   -4.46   -5.06   -5.32   -5.06   -4.19   -2.84   -1.23    0.53    2.55    5.25    9.15
+   300.0    0.00   -0.17   -0.59   -1.15   -1.76   -2.38   -3.02   -3.72   -4.43   -5.02   -5.27   -5.01   -4.15   -2.80   -1.17    0.61    2.68    5.43    9.36
+   305.0    0.00   -0.17   -0.59   -1.15   -1.76   -2.38   -3.02   -3.70   -4.40   -4.97   -5.22   -4.95   -4.10   -2.76   -1.12    0.71    2.82    5.61    9.55
+   310.0    0.00   -0.18   -0.59   -1.16   -1.77   -2.38   -3.01   -3.68   -4.37   -4.93   -5.17   -4.90   -4.06   -2.71   -1.06    0.80    2.97    5.79    9.70
+   315.0    0.00   -0.18   -0.60   -1.16   -1.77   -2.38   -3.00   -3.67   -4.34   -4.89   -5.13   -4.86   -4.02   -2.68   -1.00    0.89    3.09    5.93    9.79
+   320.0    0.00   -0.18   -0.60   -1.16   -1.77   -2.38   -3.00   -3.65   -4.31   -4.86   -5.09   -4.83   -3.99   -2.65   -0.97    0.95    3.18    6.03    9.82
+   325.0    0.00   -0.18   -0.60   -1.17   -1.77   -2.38   -2.99   -3.63   -4.29   -4.83   -5.07   -4.81   -3.99   -2.65   -0.96    0.98    3.23    6.06    9.78
+   330.0    0.00   -0.18   -0.60   -1.17   -1.77   -2.37   -2.98   -3.63   -4.28   -4.82   -5.06   -4.81   -4.00   -2.67   -0.98    0.96    3.22    6.04    9.67
+   335.0    0.00   -0.18   -0.60   -1.17   -1.77   -2.38   -2.98   -3.62   -4.27   -4.82   -5.07   -4.84   -4.04   -2.73   -1.04    0.91    3.16    5.95    9.50
+   340.0    0.00   -0.18   -0.61   -1.17   -1.78   -2.38   -2.99   -3.63   -4.28   -4.83   -5.09   -4.88   -4.10   -2.81   -1.13    0.81    3.05    5.81    9.30
+   345.0    0.00   -0.18   -0.61   -1.17   -1.78   -2.39   -3.00   -3.64   -4.30   -4.86   -5.13   -4.94   -4.18   -2.91   -1.26    0.67    2.89    5.62    9.07
+   350.0    0.00   -0.18   -0.61   -1.17   -1.79   -2.40   -3.02   -3.67   -4.34   -4.90   -5.19   -5.01   -4.28   -3.03   -1.40    0.50    2.70    5.41    8.85
+   355.0    0.00   -0.18   -0.61   -1.18   -1.79   -2.41   -3.04   -3.70   -4.38   -4.95   -5.25   -5.09   -4.38   -3.16   -1.55    0.31    2.49    5.19    8.65
+   360.0    0.00   -0.18   -0.60   -1.18   -1.80   -2.43   -3.07   -3.74   -4.43   -5.01   -5.32   -5.18   -4.48   -3.28   -1.71    0.13    2.28    4.97    8.48
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+LEIAR25.R4      LEIT                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               5    20-SEP-10 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+      0.60      0.98    158.30                              NORTH / EAST / UP   
+   NOAZI    0.00    0.16    0.62    1.30    2.05    2.69    3.06    3.01    2.51    1.66    0.62   -0.40   -1.24   -1.79   -1.99   -1.72   -0.80    1.01    3.84
+     0.0    0.00    0.14    0.60    1.31    2.13    2.82    3.19    3.09    2.51    1.60    0.56   -0.39   -1.13   -1.63   -1.87   -1.74   -0.96    0.82    3.71
+     5.0    0.00    0.14    0.60    1.31    2.11    2.81    3.17    3.06    2.47    1.55    0.50   -0.46   -1.21   -1.72   -1.97   -1.85   -1.10    0.63    3.48
+    10.0    0.00    0.14    0.60    1.30    2.10    2.79    3.14    3.03    2.44    1.50    0.44   -0.53   -1.29   -1.80   -2.05   -1.94   -1.20    0.49    3.30
+    15.0    0.00    0.14    0.59    1.29    2.09    2.77    3.12    3.00    2.41    1.46    0.40   -0.59   -1.35   -1.87   -2.11   -1.99   -1.26    0.41    3.18
+    20.0    0.00    0.14    0.59    1.29    2.08    2.75    3.10    2.98    2.38    1.44    0.36   -0.63   -1.41   -1.92   -2.15   -2.02   -1.27    0.40    3.14
+    25.0    0.00    0.14    0.59    1.28    2.07    2.73    3.07    2.95    2.36    1.42    0.34   -0.66   -1.44   -1.95   -2.17   -2.01   -1.23    0.45    3.19
+    30.0    0.00    0.14    0.59    1.28    2.06    2.72    3.05    2.93    2.35    1.41    0.33   -0.67   -1.46   -1.96   -2.17   -1.97   -1.16    0.56    3.32
+    35.0    0.00    0.14    0.59    1.27    2.05    2.70    3.03    2.92    2.33    1.41    0.33   -0.67   -1.46   -1.96   -2.14   -1.91   -1.06    0.70    3.51
+    40.0    0.00    0.14    0.59    1.27    2.04    2.68    3.01    2.90    2.33    1.41    0.35   -0.65   -1.44   -1.94   -2.11   -1.85   -0.95    0.86    3.74
+    45.0    0.00    0.14    0.59    1.27    2.03    2.67    3.00    2.88    2.32    1.42    0.36   -0.63   -1.42   -1.91   -2.07   -1.78   -0.84    1.01    3.97
+    50.0    0.00    0.14    0.59    1.27    2.02    2.66    2.98    2.87    2.32    1.42    0.38   -0.61   -1.39   -1.88   -2.03   -1.73   -0.76    1.14    4.17
+    55.0    0.00    0.14    0.59    1.27    2.02    2.64    2.97    2.86    2.32    1.43    0.40   -0.58   -1.36   -1.86   -2.00   -1.69   -0.71    1.22    4.32
+    60.0    0.00    0.14    0.59    1.27    2.01    2.64    2.96    2.85    2.32    1.44    0.42   -0.56   -1.34   -1.84   -1.99   -1.67   -0.69    1.25    4.39
+    65.0    0.00    0.14    0.59    1.27    2.01    2.63    2.95    2.85    2.32    1.45    0.43   -0.55   -1.33   -1.83   -1.99   -1.68   -0.71    1.22    4.38
+    70.0    0.00    0.14    0.59    1.27    2.00    2.63    2.95    2.85    2.33    1.46    0.44   -0.54   -1.33   -1.84   -2.00   -1.71   -0.76    1.15    4.29
+    75.0    0.00    0.14    0.60    1.27    2.00    2.62    2.95    2.86    2.34    1.48    0.45   -0.54   -1.34   -1.86   -2.02   -1.74   -0.82    1.04    4.14
+    80.0    0.00    0.15    0.60    1.27    2.00    2.62    2.96    2.87    2.36    1.49    0.46   -0.55   -1.36   -1.88   -2.05   -1.79   -0.90    0.91    3.94
+    85.0    0.00    0.15    0.60    1.26    2.00    2.63    2.96    2.89    2.38    1.52    0.47   -0.55   -1.38   -1.91   -2.08   -1.82   -0.96    0.79    3.74
+    90.0    0.00    0.15    0.60    1.26    2.00    2.63    2.98    2.91    2.41    1.54    0.49   -0.55   -1.39   -1.93   -2.10   -1.85   -1.00    0.70    3.56
+    95.0    0.00    0.15    0.60    1.26    2.00    2.63    2.99    2.94    2.44    1.58    0.52   -0.54   -1.39   -1.94   -2.11   -1.85   -1.02    0.65    3.43
+   100.0    0.00    0.15    0.60    1.26    1.99    2.63    3.00    2.96    2.48    1.62    0.55   -0.52   -1.39   -1.93   -2.10   -1.83   -0.99    0.66    3.39
+   105.0    0.00    0.15    0.60    1.26    1.99    2.63    3.01    2.99    2.52    1.66    0.59   -0.48   -1.36   -1.91   -2.07   -1.78   -0.93    0.72    3.43
+   110.0    0.00    0.15    0.60    1.25    1.98    2.63    3.01    3.01    2.55    1.71    0.64   -0.44   -1.32   -1.88   -2.02   -1.72   -0.83    0.85    3.56
+   115.0    0.00    0.16    0.60    1.25    1.98    2.62    3.02    3.02    2.59    1.76    0.69   -0.38   -1.27   -1.82   -1.96   -1.63   -0.71    1.01    3.78
+   120.0    0.00    0.16    0.60    1.25    1.97    2.62    3.02    3.04    2.61    1.80    0.75   -0.32   -1.21   -1.75   -1.89   -1.54   -0.58    1.21    4.04
+   125.0    0.00    0.16    0.60    1.24    1.96    2.61    3.02    3.05    2.64    1.84    0.80   -0.26   -1.14   -1.68   -1.81   -1.44   -0.45    1.41    4.34
+   130.0    0.00    0.16    0.60    1.24    1.96    2.60    3.01    3.05    2.66    1.87    0.85   -0.20   -1.07   -1.61   -1.74   -1.36   -0.33    1.59    4.62
+   135.0    0.00    0.16    0.60    1.24    1.95    2.60    3.01    3.05    2.67    1.90    0.89   -0.15   -1.01   -1.55   -1.68   -1.30   -0.25    1.73    4.86
+   140.0    0.00    0.16    0.60    1.24    1.95    2.59    3.01    3.06    2.68    1.91    0.92   -0.11   -0.97   -1.51   -1.64   -1.27   -0.21    1.81    5.02
+   145.0    0.00    0.17    0.61    1.24    1.95    2.59    3.01    3.06    2.68    1.92    0.93   -0.09   -0.94   -1.48   -1.63   -1.27   -0.21    1.83    5.10
+   150.0    0.00    0.17    0.61    1.24    1.95    2.59    3.01    3.06    2.68    1.93    0.94   -0.08   -0.93   -1.48   -1.64   -1.30   -0.26    1.78    5.06
+   155.0    0.00    0.17    0.61    1.25    1.96    2.60    3.02    3.06    2.68    1.92    0.93   -0.09   -0.94   -1.50   -1.68   -1.37   -0.36    1.66    4.93
+   160.0    0.00    0.17    0.62    1.25    1.96    2.61    3.02    3.07    2.68    1.91    0.91   -0.11   -0.97   -1.54   -1.74   -1.46   -0.49    1.48    4.71
+   165.0    0.00    0.17    0.62    1.26    1.97    2.62    3.03    3.08    2.68    1.90    0.89   -0.15   -1.02   -1.60   -1.82   -1.57   -0.65    1.26    4.43
+   170.0    0.00    0.18    0.62    1.26    1.98    2.63    3.04    3.08    2.68    1.88    0.85   -0.19   -1.07   -1.67   -1.91   -1.70   -0.82    1.03    4.11
+   175.0    0.00    0.18    0.63    1.27    1.99    2.64    3.05    3.08    2.67    1.86    0.82   -0.24   -1.13   -1.74   -2.00   -1.82   -0.99    0.80    3.79
+   180.0    0.00    0.18    0.63    1.28    2.00    2.65    3.06    3.08    2.65    1.84    0.79   -0.28   -1.19   -1.81   -2.08   -1.93   -1.14    0.59    3.51
+   185.0    0.00    0.18    0.64    1.28    2.01    2.66    3.06    3.07    2.64    1.81    0.75   -0.32   -1.23   -1.87   -2.16   -2.02   -1.26    0.43    3.27
+   190.0    0.00    0.18    0.64    1.29    2.01    2.66    3.05    3.06    2.61    1.78    0.72   -0.36   -1.27   -1.91   -2.21   -2.09   -1.34    0.32    3.12
+   195.0    0.00    0.18    0.64    1.29    2.02    2.66    3.04    3.04    2.59    1.75    0.69   -0.38   -1.30   -1.94   -2.25   -2.13   -1.39    0.27    3.05
+   200.0    0.00    0.19    0.65    1.30    2.02    2.65    3.03    3.01    2.56    1.72    0.67   -0.40   -1.31   -1.96   -2.26   -2.14   -1.38    0.28    3.07
+   205.0    0.00    0.19    0.65    1.30    2.02    2.64    3.01    2.98    2.52    1.69    0.65   -0.41   -1.32   -1.96   -2.26   -2.12   -1.34    0.35    3.16
+   210.0    0.00    0.19    0.65    1.31    2.02    2.63    2.98    2.95    2.49    1.67    0.63   -0.42   -1.32   -1.95   -2.25   -2.09   -1.27    0.47    3.32
+   215.0    0.00    0.19    0.65    1.31    2.02    2.62    2.96    2.92    2.46    1.64    0.62   -0.42   -1.31   -1.94   -2.23   -2.04   -1.18    0.62    3.52
+   220.0    0.00    0.19    0.66    1.31    2.01    2.61    2.94    2.90    2.43    1.62    0.61   -0.42   -1.31   -1.93   -2.20   -1.99   -1.08    0.78    3.73
+   225.0    0.00    0.19    0.66    1.31    2.01    2.61    2.93    2.88    2.42    1.61    0.61   -0.42   -1.30   -1.93   -2.18   -1.93   -0.98    0.93    3.94
+   230.0    0.00    0.19    0.66    1.32    2.02    2.60    2.92    2.87    2.41    1.60    0.60   -0.42   -1.31   -1.93   -2.17   -1.89   -0.90    1.06    4.12
+   235.0    0.00    0.19    0.66    1.32    2.02    2.61    2.92    2.87    2.40    1.60    0.60   -0.43   -1.31   -1.93   -2.17   -1.87   -0.84    1.16    4.24
+   240.0    0.00    0.19    0.66    1.32    2.03    2.61    2.93    2.87    2.41    1.60    0.60   -0.43   -1.33   -1.95   -2.18   -1.87   -0.81    1.21    4.31
+   245.0    0.00    0.19    0.66    1.33    2.04    2.63    2.95    2.89    2.42    1.61    0.60   -0.44   -1.34   -1.97   -2.20   -1.88   -0.82    1.21    4.30
+   250.0    0.00    0.19    0.67    1.33    2.05    2.65    2.97    2.91    2.44    1.62    0.60   -0.45   -1.36   -2.00   -2.24   -1.92   -0.85    1.17    4.23
+   255.0    0.00    0.19    0.67    1.34    2.06    2.67    2.99    2.93    2.46    1.63    0.60   -0.46   -1.38   -2.03   -2.27   -1.96   -0.91    1.08    4.10
+   260.0    0.00    0.19    0.67    1.35    2.08    2.69    3.02    2.96    2.48    1.65    0.61   -0.46   -1.40   -2.05   -2.31   -2.01   -0.99    0.96    3.92
+   265.0    0.00    0.19    0.67    1.35    2.09    2.72    3.05    2.99    2.50    1.66    0.61   -0.47   -1.40   -2.07   -2.33   -2.06   -1.07    0.84    3.72
+   270.0    0.00    0.18    0.67    1.36    2.11    2.74    3.09    3.02    2.53    1.67    0.61   -0.47   -1.40   -2.07   -2.34   -2.09   -1.13    0.71    3.52
+   275.0    0.00    0.18    0.67    1.36    2.13    2.77    3.12    3.05    2.55    1.68    0.62   -0.46   -1.39   -2.05   -2.34   -2.10   -1.18    0.61    3.34
+   280.0    0.00    0.18    0.67    1.37    2.14    2.79    3.15    3.08    2.57    1.70    0.63   -0.44   -1.37   -2.02   -2.31   -2.09   -1.19    0.55    3.19
+   285.0    0.00    0.18    0.67    1.37    2.15    2.82    3.18    3.11    2.59    1.71    0.65   -0.42   -1.33   -1.97   -2.25   -2.04   -1.17    0.54    3.10
+   290.0    0.00    0.18    0.66    1.38    2.17    2.84    3.20    3.13    2.61    1.73    0.66   -0.39   -1.29   -1.91   -2.17   -1.96   -1.10    0.58    3.08
+   295.0    0.00    0.17    0.66    1.38    2.18    2.86    3.23    3.16    2.63    1.75    0.69   -0.36   -1.23   -1.83   -2.08   -1.86   -0.99    0.68    3.14
+   300.0    0.00    0.17    0.66    1.38    2.18    2.87    3.25    3.18    2.65    1.77    0.71   -0.31   -1.16   -1.74   -1.97   -1.73   -0.85    0.82    3.26
+   305.0    0.00    0.17    0.65    1.38    2.19    2.89    3.27    3.20    2.67    1.79    0.74   -0.27   -1.10   -1.65   -1.86   -1.60   -0.70    1.00    3.44
+   310.0    0.00    0.17    0.65    1.38    2.19    2.90    3.28    3.22    2.69    1.81    0.77   -0.23   -1.03   -1.56   -1.75   -1.47   -0.54    1.19    3.66
+   315.0    0.00    0.16    0.65    1.37    2.20    2.90    3.29    3.23    2.70    1.82    0.79   -0.19   -0.97   -1.48   -1.65   -1.35   -0.40    1.37    3.89
+   320.0    0.00    0.16    0.64    1.37    2.19    2.91    3.30    3.24    2.71    1.83    0.81   -0.15   -0.92   -1.41   -1.57   -1.26   -0.29    1.53    4.11
+   325.0    0.00    0.16    0.64    1.36    2.19    2.91    3.30    3.24    2.71    1.84    0.82   -0.13   -0.88   -1.36   -1.51   -1.20   -0.22    1.64    4.30
+   330.0    0.00    0.15    0.63    1.36    2.19    2.90    3.30    3.23    2.70    1.83    0.82   -0.12   -0.86   -1.33   -1.49   -1.19   -0.20    1.69    4.43
+   335.0    0.00    0.15    0.63    1.35    2.18    2.90    3.29    3.22    2.69    1.81    0.80   -0.13   -0.86   -1.33   -1.49   -1.21   -0.24    1.67    4.48
+   340.0    0.00    0.15    0.62    1.34    2.17    2.89    3.28    3.21    2.66    1.78    0.78   -0.16   -0.88   -1.35   -1.53   -1.27   -0.33    1.58    4.45
+   345.0    0.00    0.15    0.62    1.34    2.16    2.87    3.26    3.18    2.63    1.75    0.73   -0.20   -0.92   -1.40   -1.59   -1.37   -0.46    1.43    4.34
+   350.0    0.00    0.14    0.61    1.33    2.15    2.86    3.24    3.15    2.60    1.70    0.68   -0.25   -0.98   -1.46   -1.68   -1.49   -0.62    1.24    4.17
+   355.0    0.00    0.14    0.61    1.32    2.14    2.84    3.22    3.12    2.56    1.65    0.62   -0.32   -1.05   -1.54   -1.77   -1.62   -0.79    1.03    3.95
+   360.0    0.00    0.14    0.60    1.31    2.13    2.82    3.19    3.09    2.51    1.60    0.56   -0.39   -1.13   -1.63   -1.87   -1.74   -0.96    0.82    3.71
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.11      0.05    154.04                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.15   -0.55   -1.14   -1.82   -2.53   -3.29   -4.08   -4.84   -5.45   -5.71   -5.46   -4.61   -3.25   -1.55    0.38    2.58    5.33    8.99
+     0.0    0.00   -0.20   -0.64   -1.22   -1.87   -2.54   -3.24   -3.97   -4.68   -5.25   -5.50   -5.27   -4.53   -3.34   -1.84   -0.09    2.04    4.84    8.57
+     5.0    0.00   -0.20   -0.64   -1.22   -1.88   -2.55   -3.26   -4.01   -4.73   -5.32   -5.59   -5.38   -4.65   -3.47   -1.97   -0.23    1.87    4.62    8.31
+    10.0    0.00   -0.20   -0.64   -1.23   -1.88   -2.57   -3.29   -4.04   -4.79   -5.39   -5.68   -5.49   -4.77   -3.58   -2.08   -0.34    1.74    4.44    8.09
+    15.0    0.00   -0.20   -0.64   -1.23   -1.89   -2.59   -3.32   -4.09   -4.84   -5.46   -5.77   -5.59   -4.87   -3.67   -2.16   -0.41    1.65    4.32    7.93
+    20.0    0.00   -0.20   -0.64   -1.23   -1.90   -2.60   -3.34   -4.13   -4.90   -5.53   -5.85   -5.67   -4.94   -3.73   -2.20   -0.43    1.63    4.27    7.86
+    25.0    0.00   -0.20   -0.64   -1.23   -1.90   -2.62   -3.37   -4.16   -4.95   -5.60   -5.91   -5.73   -4.99   -3.76   -2.19   -0.40    1.66    4.30    7.89
+    30.0    0.00   -0.20   -0.63   -1.23   -1.91   -2.63   -3.39   -4.20   -4.99   -5.65   -5.96   -5.78   -5.01   -3.75   -2.14   -0.33    1.76    4.40    8.00
+    35.0    0.00   -0.19   -0.63   -1.23   -1.91   -2.64   -3.41   -4.23   -5.03   -5.68   -6.00   -5.79   -5.00   -3.70   -2.06   -0.21    1.90    4.57    8.21
+    40.0    0.00   -0.19   -0.63   -1.23   -1.91   -2.65   -3.42   -4.25   -5.05   -5.70   -6.01   -5.79   -4.97   -3.63   -1.95   -0.06    2.09    4.79    8.48
+    45.0    0.00   -0.19   -0.63   -1.23   -1.91   -2.65   -3.43   -4.25   -5.06   -5.71   -6.00   -5.76   -4.91   -3.54   -1.82    0.11    2.29    5.03    8.80
+    50.0    0.00   -0.19   -0.62   -1.22   -1.91   -2.65   -3.43   -4.25   -5.06   -5.70   -5.98   -5.72   -4.85   -3.45   -1.69    0.28    2.50    5.29    9.12
+    55.0    0.00   -0.18   -0.62   -1.22   -1.91   -2.64   -3.42   -4.24   -5.04   -5.67   -5.95   -5.67   -4.78   -3.35   -1.56    0.44    2.70    5.53    9.42
+    60.0    0.00   -0.18   -0.61   -1.21   -1.90   -2.64   -3.41   -4.22   -5.01   -5.64   -5.91   -5.63   -4.72   -3.27   -1.45    0.58    2.87    5.72    9.66
+    65.0    0.00   -0.18   -0.61   -1.21   -1.90   -2.62   -3.39   -4.19   -4.97   -5.60   -5.86   -5.58   -4.68   -3.21   -1.37    0.68    2.99    5.87    9.83
+    70.0    0.00   -0.17   -0.60   -1.20   -1.89   -2.61   -3.37   -4.16   -4.93   -5.55   -5.82   -5.55   -4.64   -3.17   -1.32    0.75    3.06    5.94    9.91
+    75.0    0.00   -0.17   -0.59   -1.19   -1.88   -2.60   -3.34   -4.12   -4.88   -5.51   -5.78   -5.52   -4.63   -3.16   -1.31    0.77    3.08    5.94    9.90
+    80.0    0.00   -0.16   -0.59   -1.19   -1.87   -2.58   -3.32   -4.08   -4.84   -5.46   -5.75   -5.51   -4.63   -3.17   -1.32    0.75    3.05    5.88    9.79
+    85.0    0.00   -0.16   -0.58   -1.18   -1.86   -2.57   -3.29   -4.05   -4.80   -5.43   -5.73   -5.50   -4.63   -3.19   -1.35    0.70    2.97    5.76    9.62
+    90.0    0.00   -0.15   -0.57   -1.17   -1.85   -2.55   -3.27   -4.02   -4.77   -5.40   -5.71   -5.49   -4.65   -3.22   -1.40    0.62    2.85    5.60    9.40
+    95.0    0.00   -0.15   -0.57   -1.16   -1.84   -2.54   -3.26   -4.00   -4.74   -5.37   -5.69   -5.49   -4.66   -3.25   -1.46    0.54    2.73    5.43    9.18
+   100.0    0.00   -0.15   -0.56   -1.16   -1.84   -2.54   -3.25   -3.98   -4.72   -5.35   -5.66   -5.47   -4.66   -3.27   -1.50    0.46    2.61    5.27    8.97
+   105.0    0.00   -0.14   -0.55   -1.15   -1.83   -2.53   -3.24   -3.97   -4.70   -5.32   -5.64   -5.45   -4.64   -3.27   -1.53    0.40    2.52    5.14    8.81
+   110.0    0.00   -0.14   -0.54   -1.14   -1.82   -2.52   -3.23   -3.96   -4.69   -5.30   -5.61   -5.42   -4.61   -3.26   -1.54    0.36    2.46    5.07    8.71
+   115.0    0.00   -0.13   -0.54   -1.13   -1.81   -2.52   -3.23   -3.95   -4.67   -5.28   -5.57   -5.37   -4.57   -3.22   -1.52    0.36    2.45    5.05    8.69
+   120.0    0.00   -0.13   -0.53   -1.12   -1.81   -2.51   -3.22   -3.95   -4.66   -5.25   -5.53   -5.32   -4.51   -3.17   -1.47    0.40    2.49    5.10    8.74
+   125.0    0.00   -0.12   -0.52   -1.11   -1.80   -2.50   -3.22   -3.94   -4.64   -5.22   -5.49   -5.26   -4.44   -3.10   -1.41    0.47    2.58    5.21    8.85
+   130.0    0.00   -0.12   -0.51   -1.10   -1.78   -2.49   -3.21   -3.93   -4.63   -5.19   -5.44   -5.19   -4.37   -3.02   -1.32    0.57    2.70    5.37    9.00
+   135.0    0.00   -0.11   -0.50   -1.09   -1.77   -2.48   -3.20   -3.92   -4.62   -5.17   -5.40   -5.14   -4.30   -2.94   -1.24    0.67    2.84    5.54    9.17
+   140.0    0.00   -0.11   -0.49   -1.08   -1.76   -2.47   -3.19   -3.92   -4.61   -5.15   -5.37   -5.10   -4.25   -2.88   -1.16    0.77    2.97    5.71    9.32
+   145.0    0.00   -0.10   -0.48   -1.06   -1.75   -2.46   -3.18   -3.91   -4.60   -5.14   -5.36   -5.07   -4.21   -2.84   -1.10    0.86    3.09    5.84    9.43
+   150.0    0.00   -0.10   -0.48   -1.05   -1.73   -2.45   -3.18   -3.91   -4.61   -5.15   -5.36   -5.07   -4.20   -2.82   -1.08    0.90    3.16    5.93    9.48
+   155.0    0.00   -0.10   -0.47   -1.04   -1.72   -2.44   -3.18   -3.92   -4.62   -5.17   -5.38   -5.09   -4.22   -2.84   -1.08    0.91    3.18    5.95    9.47
+   160.0    0.00   -0.09   -0.46   -1.03   -1.71   -2.44   -3.18   -3.94   -4.65   -5.21   -5.42   -5.13   -4.27   -2.88   -1.13    0.86    3.13    5.90    9.38
+   165.0    0.00   -0.09   -0.46   -1.02   -1.70   -2.44   -3.19   -3.96   -4.69   -5.26   -5.48   -5.20   -4.34   -2.96   -1.22    0.77    3.03    5.78    9.23
+   170.0    0.00   -0.09   -0.45   -1.02   -1.70   -2.44   -3.21   -3.99   -4.74   -5.32   -5.56   -5.28   -4.43   -3.06   -1.33    0.63    2.87    5.60    9.04
+   175.0    0.00   -0.09   -0.45   -1.01   -1.70   -2.44   -3.23   -4.03   -4.80   -5.40   -5.65   -5.38   -4.54   -3.18   -1.48    0.46    2.68    5.39    8.84
+   180.0    0.00   -0.09   -0.45   -1.01   -1.70   -2.45   -3.25   -4.07   -4.86   -5.47   -5.74   -5.48   -4.65   -3.31   -1.63    0.28    2.47    5.17    8.64
+   185.0    0.00   -0.09   -0.44   -1.01   -1.70   -2.46   -3.27   -4.11   -4.92   -5.55   -5.83   -5.59   -4.77   -3.45   -1.78    0.11    2.28    4.98    8.49
+   190.0    0.00   -0.09   -0.44   -1.01   -1.70   -2.47   -3.29   -4.15   -4.97   -5.62   -5.91   -5.68   -4.88   -3.57   -1.92   -0.04    2.12    4.83    8.39
+   195.0    0.00   -0.09   -0.44   -1.01   -1.71   -2.48   -3.31   -4.18   -5.02   -5.68   -5.99   -5.77   -4.98   -3.68   -2.03   -0.16    2.02    4.75    8.36
+   200.0    0.00   -0.09   -0.45   -1.01   -1.71   -2.49   -3.33   -4.21   -5.05   -5.73   -6.05   -5.85   -5.06   -3.76   -2.11   -0.22    1.98    4.74    8.42
+   205.0    0.00   -0.09   -0.45   -1.02   -1.72   -2.50   -3.34   -4.22   -5.07   -5.76   -6.09   -5.90   -5.12   -3.82   -2.15   -0.22    2.02    4.82    8.54
+   210.0    0.00   -0.09   -0.45   -1.02   -1.72   -2.50   -3.35   -4.23   -5.08   -5.78   -6.12   -5.94   -5.16   -3.85   -2.14   -0.17    2.12    4.96    8.72
+   215.0    0.00   -0.09   -0.46   -1.03   -1.73   -2.51   -3.35   -4.23   -5.08   -5.78   -6.13   -5.96   -5.18   -3.84   -2.09   -0.06    2.28    5.16    8.94
+   220.0    0.00   -0.10   -0.46   -1.04   -1.73   -2.51   -3.34   -4.22   -5.07   -5.77   -6.13   -5.96   -5.17   -3.81   -2.02    0.07    2.47    5.39    9.18
+   225.0    0.00   -0.10   -0.47   -1.04   -1.74   -2.51   -3.34   -4.21   -5.06   -5.76   -6.12   -5.94   -5.14   -3.75   -1.91    0.23    2.67    5.61    9.40
+   230.0    0.00   -0.10   -0.48   -1.05   -1.75   -2.51   -3.33   -4.20   -5.05   -5.74   -6.10   -5.91   -5.09   -3.67   -1.80    0.38    2.86    5.81    9.59
+   235.0    0.00   -0.11   -0.48   -1.06   -1.75   -2.51   -3.33   -4.19   -5.03   -5.73   -6.07   -5.87   -5.03   -3.59   -1.68    0.52    3.01    5.96    9.72
+   240.0    0.00   -0.11   -0.49   -1.07   -1.76   -2.51   -3.33   -4.18   -5.02   -5.71   -6.04   -5.82   -4.96   -3.49   -1.58    0.63    3.11    6.04    9.78
+   245.0    0.00   -0.12   -0.50   -1.07   -1.76   -2.52   -3.33   -4.18   -5.01   -5.69   -6.01   -5.77   -4.88   -3.40   -1.49    0.69    3.14    6.05    9.78
+   250.0    0.00   -0.12   -0.51   -1.08   -1.77   -2.52   -3.33   -4.18   -5.01   -5.68   -5.97   -5.71   -4.80   -3.32   -1.43    0.71    3.11    5.98    9.71
+   255.0    0.00   -0.13   -0.51   -1.09   -1.77   -2.52   -3.33   -4.18   -5.01   -5.66   -5.94   -5.65   -4.73   -3.25   -1.39    0.69    3.02    5.86    9.58
+   260.0    0.00   -0.13   -0.52   -1.10   -1.78   -2.52   -3.33   -4.18   -5.01   -5.65   -5.90   -5.59   -4.66   -3.19   -1.38    0.63    2.89    5.69    9.43
+   265.0    0.00   -0.14   -0.53   -1.10   -1.78   -2.52   -3.33   -4.18   -5.00   -5.63   -5.87   -5.54   -4.59   -3.15   -1.39    0.55    2.74    5.50    9.25
+   270.0    0.00   -0.14   -0.54   -1.11   -1.78   -2.52   -3.32   -4.17   -4.99   -5.61   -5.83   -5.48   -4.54   -3.11   -1.41    0.45    2.58    5.32    9.09
+   275.0    0.00   -0.15   -0.54   -1.12   -1.78   -2.51   -3.31   -4.16   -4.97   -5.59   -5.79   -5.43   -4.49   -3.09   -1.43    0.37    2.45    5.16    8.95
+   280.0    0.00   -0.15   -0.55   -1.12   -1.78   -2.51   -3.30   -4.14   -4.95   -5.55   -5.75   -5.38   -4.44   -3.07   -1.46    0.30    2.35    5.06    8.85
+   285.0    0.00   -0.16   -0.56   -1.13   -1.78   -2.50   -3.28   -4.11   -4.91   -5.51   -5.70   -5.33   -4.40   -3.05   -1.47    0.26    2.30    5.01    8.80
+   290.0    0.00   -0.16   -0.57   -1.13   -1.78   -2.49   -3.26   -4.08   -4.87   -5.46   -5.65   -5.28   -4.36   -3.03   -1.46    0.26    2.30    5.03    8.81
+   295.0    0.00   -0.16   -0.57   -1.14   -1.78   -2.48   -3.24   -4.05   -4.83   -5.41   -5.59   -5.23   -4.33   -3.00   -1.44    0.29    2.35    5.11    8.87
+   300.0    0.00   -0.17   -0.58   -1.14   -1.78   -2.47   -3.22   -4.01   -4.78   -5.35   -5.54   -5.18   -4.28   -2.97   -1.40    0.35    2.45    5.24    8.98
+   305.0    0.00   -0.17   -0.59   -1.15   -1.78   -2.46   -3.19   -3.97   -4.73   -5.29   -5.48   -5.13   -4.24   -2.93   -1.36    0.42    2.57    5.40    9.12
+   310.0    0.00   -0.18   -0.59   -1.15   -1.79   -2.46   -3.18   -3.94   -4.68   -5.24   -5.42   -5.08   -4.20   -2.89   -1.30    0.51    2.70    5.57    9.28
+   315.0    0.00   -0.18   -0.60   -1.16   -1.79   -2.45   -3.16   -3.91   -4.64   -5.19   -5.37   -5.03   -4.16   -2.85   -1.25    0.59    2.82    5.72    9.43
+   320.0    0.00   -0.18   -0.61   -1.17   -1.79   -2.45   -3.15   -3.89   -4.61   -5.15   -5.32   -4.99   -4.12   -2.82   -1.22    0.65    2.91    5.84    9.56
+   325.0    0.00   -0.19   -0.61   -1.18   -1.80   -2.46   -3.15   -3.88   -4.58   -5.11   -5.29   -4.96   -4.10   -2.80   -1.20    0.67    2.96    5.91    9.64
+   330.0    0.00   -0.19   -0.62   -1.18   -1.81   -2.46   -3.15   -3.87   -4.57   -5.09   -5.27   -4.94   -4.10   -2.81   -1.21    0.66    2.95    5.92    9.67
+   335.0    0.00   -0.19   -0.62   -1.19   -1.82   -2.47   -3.16   -3.87   -4.56   -5.08   -5.26   -4.95   -4.11   -2.84   -1.25    0.61    2.89    5.86    9.63
+   340.0    0.00   -0.20   -0.63   -1.20   -1.83   -2.48   -3.17   -3.88   -4.57   -5.09   -5.27   -4.97   -4.15   -2.90   -1.33    0.52    2.78    5.73    9.52
+   345.0    0.00   -0.20   -0.63   -1.20   -1.84   -2.50   -3.18   -3.89   -4.58   -5.11   -5.30   -5.02   -4.22   -2.98   -1.43    0.39    2.62    5.55    9.34
+   350.0    0.00   -0.20   -0.63   -1.21   -1.85   -2.51   -3.20   -3.91   -4.61   -5.14   -5.35   -5.09   -4.31   -3.09   -1.56    0.24    2.44    5.33    9.11
+   355.0    0.00   -0.20   -0.63   -1.21   -1.86   -2.52   -3.22   -3.94   -4.64   -5.19   -5.42   -5.17   -4.41   -3.21   -1.70    0.07    2.24    5.08    8.84
+   360.0    0.00   -0.20   -0.64   -1.22   -1.87   -2.54   -3.24   -3.97   -4.68   -5.25   -5.50   -5.27   -4.53   -3.34   -1.84   -0.09    2.04    4.84    8.57
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+LEIAR25.R4      SCIT                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               5    20-SEP-10 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+      1.05     -0.54    164.15                              NORTH / EAST / UP   
+   NOAZI    0.00    0.19    0.76    1.64    2.70    3.78    4.65    5.11    5.05    4.45    3.43    2.17    0.87   -0.33   -1.36   -2.14   -2.57   -2.49   -1.75
+     0.0    0.00    0.24    0.81    1.66    2.67    3.69    4.55    5.05    5.04    4.49    3.49    2.25    0.97   -0.17   -1.12   -1.89   -2.44   -2.62   -2.07
+     5.0    0.00    0.25    0.83    1.68    2.68    3.70    4.53    5.00    4.96    4.40    3.40    2.15    0.87   -0.30   -1.28   -2.06   -2.61   -2.78   -2.25
+    10.0    0.00    0.25    0.84    1.70    2.70    3.70    4.51    4.95    4.89    4.31    3.31    2.07    0.77   -0.42   -1.42   -2.21   -2.75   -2.90   -2.38
+    15.0    0.00    0.26    0.86    1.72    2.72    3.71    4.50    4.91    4.83    4.24    3.24    1.99    0.69   -0.51   -1.54   -2.34   -2.87   -2.98   -2.45
+    20.0    0.00    0.27    0.87    1.74    2.74    3.72    4.49    4.88    4.77    4.17    3.17    1.93    0.63   -0.58   -1.62   -2.43   -2.94   -3.01   -2.46
+    25.0    0.00    0.27    0.88    1.76    2.77    3.74    4.49    4.85    4.73    4.12    3.12    1.89    0.60   -0.62   -1.67   -2.49   -2.97   -3.00   -2.41
+    30.0    0.00    0.28    0.90    1.78    2.79    3.76    4.49    4.83    4.69    4.07    3.07    1.86    0.58   -0.64   -1.69   -2.51   -2.97   -2.94   -2.31
+    35.0    0.00    0.28    0.91    1.80    2.81    3.78    4.50    4.82    4.65    4.03    3.04    1.84    0.58   -0.63   -1.68   -2.50   -2.94   -2.86   -2.18
+    40.0    0.00    0.28    0.92    1.82    2.84    3.80    4.51    4.81    4.63    4.00    3.01    1.83    0.59   -0.60   -1.65   -2.46   -2.88   -2.76   -2.02
+    45.0    0.00    0.29    0.93    1.83    2.86    3.82    4.53    4.81    4.62    3.97    2.99    1.82    0.61   -0.57   -1.61   -2.41   -2.82   -2.65   -1.86
+    50.0    0.00    0.29    0.94    1.85    2.88    3.85    4.54    4.82    4.61    3.96    2.98    1.82    0.62   -0.53   -1.57   -2.36   -2.75   -2.55   -1.71
+    55.0    0.00    0.29    0.94    1.86    2.90    3.87    4.57    4.84    4.62    3.95    2.96    1.81    0.63   -0.51   -1.53   -2.32   -2.70   -2.47   -1.59
+    60.0    0.00    0.29    0.94    1.87    2.92    3.89    4.59    4.86    4.63    3.95    2.96    1.81    0.63   -0.49   -1.50   -2.29   -2.66   -2.42   -1.50
+    65.0    0.00    0.29    0.95    1.88    2.93    3.92    4.62    4.89    4.65    3.96    2.95    1.80    0.62   -0.49   -1.50   -2.28   -2.65   -2.40   -1.46
+    70.0    0.00    0.29    0.95    1.88    2.94    3.94    4.65    4.92    4.67    3.97    2.95    1.79    0.61   -0.50   -1.51   -2.29   -2.66   -2.41   -1.45
+    75.0    0.00    0.29    0.94    1.88    2.95    3.96    4.68    4.95    4.70    3.99    2.96    1.79    0.60   -0.52   -1.53   -2.32   -2.70   -2.44   -1.47
+    80.0    0.00    0.29    0.94    1.88    2.96    3.97    4.71    4.99    4.74    4.02    2.98    1.79    0.59   -0.54   -1.56   -2.36   -2.76   -2.50   -1.51
+    85.0    0.00    0.28    0.93    1.88    2.96    3.99    4.73    5.02    4.78    4.06    3.01    1.81    0.60   -0.55   -1.59   -2.41   -2.82   -2.56   -1.55
+    90.0    0.00    0.28    0.93    1.87    2.96    4.00    4.76    5.06    4.83    4.11    3.05    1.84    0.61   -0.55   -1.61   -2.45   -2.87   -2.62   -1.59
+    95.0    0.00    0.27    0.92    1.86    2.96    4.01    4.79    5.10    4.88    4.16    3.11    1.89    0.65   -0.53   -1.61   -2.47   -2.91   -2.66   -1.60
+   100.0    0.00    0.27    0.91    1.86    2.96    4.02    4.81    5.14    4.93    4.22    3.17    1.95    0.71   -0.49   -1.58   -2.46   -2.92   -2.67   -1.59
+   105.0    0.00    0.26    0.90    1.84    2.96    4.03    4.83    5.18    4.98    4.28    3.24    2.02    0.78   -0.42   -1.52   -2.42   -2.89   -2.65   -1.54
+   110.0    0.00    0.25    0.89    1.83    2.95    4.04    4.85    5.21    5.03    4.35    3.31    2.11    0.87   -0.33   -1.43   -2.34   -2.82   -2.58   -1.46
+   115.0    0.00    0.24    0.87    1.82    2.94    4.04    4.87    5.25    5.08    4.41    3.39    2.20    0.97   -0.22   -1.32   -2.23   -2.71   -2.48   -1.36
+   120.0    0.00    0.24    0.86    1.80    2.94    4.05    4.89    5.29    5.13    4.48    3.47    2.29    1.08   -0.10   -1.19   -2.09   -2.57   -2.35   -1.24
+   125.0    0.00    0.23    0.84    1.79    2.93    4.05    4.91    5.32    5.18    4.54    3.55    2.38    1.18    0.02   -1.05   -1.93   -2.41   -2.20   -1.13
+   130.0    0.00    0.22    0.83    1.77    2.91    4.05    4.93    5.36    5.23    4.60    3.62    2.46    1.27    0.13   -0.91   -1.77   -2.24   -2.06   -1.04
+   135.0    0.00    0.21    0.81    1.75    2.90    4.04    4.94    5.39    5.28    4.66    3.68    2.52    1.35    0.22   -0.80   -1.63   -2.09   -1.93   -0.99
+   140.0    0.00    0.20    0.79    1.73    2.88    4.04    4.95    5.41    5.32    4.71    3.73    2.58    1.40    0.29   -0.71   -1.52   -1.98   -1.85   -0.99
+   145.0    0.00    0.19    0.77    1.71    2.86    4.02    4.95    5.43    5.35    4.75    3.77    2.61    1.43    0.32   -0.66   -1.45   -1.91   -1.82   -1.05
+   150.0    0.00    0.18    0.76    1.68    2.83    4.00    4.94    5.44    5.38    4.78    3.80    2.63    1.44    0.32   -0.66   -1.44   -1.90   -1.85   -1.18
+   155.0    0.00    0.17    0.74    1.65    2.80    3.97    4.92    5.44    5.39    4.81    3.82    2.63    1.42    0.28   -0.70   -1.49   -1.95   -1.95   -1.36
+   160.0    0.00    0.16    0.72    1.63    2.77    3.94    4.90    5.42    5.39    4.82    3.83    2.62    1.38    0.22   -0.79   -1.59   -2.07   -2.10   -1.58
+   165.0    0.00    0.16    0.70    1.60    2.73    3.89    4.86    5.40    5.38    4.82    3.83    2.60    1.32    0.13   -0.91   -1.73   -2.24   -2.31   -1.83
+   170.0    0.00    0.15    0.68    1.57    2.68    3.84    4.81    5.36    5.36    4.81    3.82    2.57    1.26    0.02   -1.06   -1.91   -2.44   -2.54   -2.09
+   175.0    0.00    0.14    0.66    1.53    2.64    3.79    4.75    5.31    5.33    4.79    3.80    2.53    1.19   -0.10   -1.22   -2.11   -2.66   -2.77   -2.32
+   180.0    0.00    0.13    0.65    1.51    2.59    3.73    4.69    5.25    5.28    4.76    3.77    2.49    1.11   -0.22   -1.38   -2.30   -2.88   -2.99   -2.51
+   185.0    0.00    0.13    0.63    1.48    2.55    3.67    4.62    5.19    5.23    4.72    3.73    2.44    1.04   -0.33   -1.52   -2.47   -3.06   -3.17   -2.65
+   190.0    0.00    0.12    0.62    1.45    2.51    3.62    4.56    5.13    5.18    4.67    3.69    2.39    0.96   -0.42   -1.64   -2.61   -3.20   -3.29   -2.71
+   195.0    0.00    0.11    0.61    1.43    2.47    3.57    4.50    5.07    5.12    4.62    3.64    2.34    0.90   -0.50   -1.73   -2.70   -3.29   -3.35   -2.70
+   200.0    0.00    0.11    0.60    1.41    2.44    3.53    4.45    5.01    5.06    4.56    3.58    2.28    0.84   -0.55   -1.78   -2.74   -3.31   -3.34   -2.61
+   205.0    0.00    0.11    0.59    1.40    2.42    3.49    4.41    4.96    5.01    4.50    3.52    2.22    0.79   -0.59   -1.80   -2.73   -3.27   -3.26   -2.47
+   210.0    0.00    0.10    0.58    1.39    2.41    3.47    4.38    4.92    4.96    4.45    3.46    2.16    0.75   -0.61   -1.78   -2.68   -3.18   -3.13   -2.29
+   215.0    0.00    0.10    0.58    1.38    2.40    3.46    4.35    4.89    4.92    4.39    3.40    2.11    0.71   -0.61   -1.75   -2.60   -3.07   -2.98   -2.10
+   220.0    0.00    0.10    0.58    1.38    2.40    3.45    4.35    4.87    4.88    4.34    3.34    2.05    0.68   -0.61   -1.70   -2.50   -2.93   -2.81   -1.91
+   225.0    0.00    0.10    0.58    1.39    2.40    3.46    4.35    4.86    4.86    4.30    3.29    2.00    0.65   -0.60   -1.65   -2.41   -2.81   -2.66   -1.75
+   230.0    0.00    0.10    0.58    1.39    2.41    3.47    4.36    4.86    4.84    4.27    3.24    1.96    0.62   -0.59   -1.60   -2.33   -2.71   -2.55   -1.63
+   235.0    0.00    0.10    0.59    1.40    2.43    3.49    4.38    4.87    4.83    4.24    3.21    1.92    0.60   -0.59   -1.57   -2.28   -2.64   -2.48   -1.58
+   240.0    0.00    0.10    0.60    1.42    2.45    3.52    4.40    4.89    4.83    4.23    3.18    1.89    0.58   -0.60   -1.56   -2.27   -2.62   -2.46   -1.58
+   245.0    0.00    0.11    0.60    1.43    2.47    3.55    4.43    4.91    4.84    4.22    3.17    1.88    0.57   -0.61   -1.58   -2.29   -2.65   -2.50   -1.65
+   250.0    0.00    0.11    0.61    1.44    2.49    3.58    4.46    4.94    4.86    4.23    3.17    1.87    0.55   -0.63   -1.61   -2.34   -2.72   -2.58   -1.76
+   255.0    0.00    0.11    0.62    1.46    2.52    3.60    4.50    4.97    4.90    4.26    3.18    1.87    0.55   -0.66   -1.66   -2.41   -2.81   -2.69   -1.89
+   260.0    0.00    0.12    0.63    1.47    2.54    3.63    4.53    5.01    4.94    4.29    3.21    1.89    0.54   -0.68   -1.71   -2.49   -2.91   -2.80   -2.04
+   265.0    0.00    0.12    0.64    1.49    2.56    3.66    4.57    5.06    4.98    4.34    3.25    1.92    0.55   -0.70   -1.76   -2.57   -3.00   -2.90   -2.17
+   270.0    0.00    0.13    0.64    1.50    2.57    3.69    4.60    5.10    5.04    4.40    3.31    1.96    0.57   -0.71   -1.80   -2.62   -3.07   -2.98   -2.27
+   275.0    0.00    0.13    0.65    1.51    2.59    3.71    4.64    5.15    5.11    4.48    3.38    2.02    0.60   -0.71   -1.81   -2.64   -3.09   -3.00   -2.31
+   280.0    0.00    0.14    0.66    1.52    2.60    3.73    4.67    5.21    5.18    4.56    3.46    2.08    0.65   -0.68   -1.79   -2.62   -3.06   -2.97   -2.30
+   285.0    0.00    0.14    0.67    1.53    2.61    3.74    4.70    5.26    5.25    4.64    3.54    2.16    0.71   -0.63   -1.74   -2.56   -2.98   -2.88   -2.22
+   290.0    0.00    0.15    0.67    1.53    2.62    3.76    4.73    5.31    5.32    4.73    3.63    2.24    0.79   -0.55   -1.65   -2.44   -2.85   -2.74   -2.08
+   295.0    0.00    0.15    0.68    1.54    2.62    3.77    4.75    5.35    5.38    4.81    3.72    2.33    0.88   -0.45   -1.52   -2.29   -2.67   -2.56   -1.90
+   300.0    0.00    0.16    0.69    1.54    2.62    3.77    4.77    5.38    5.44    4.88    3.80    2.42    0.98   -0.33   -1.37   -2.11   -2.47   -2.36   -1.68
+   305.0    0.00    0.16    0.70    1.55    2.62    3.77    4.78    5.41    5.48    4.94    3.88    2.50    1.08   -0.20   -1.21   -1.91   -2.26   -2.16   -1.46
+   310.0    0.00    0.17    0.70    1.55    2.62    3.77    4.79    5.43    5.51    4.99    3.93    2.58    1.18   -0.06   -1.04   -1.71   -2.06   -1.97   -1.26
+   315.0    0.00    0.18    0.71    1.56    2.62    3.77    4.78    5.43    5.53    5.01    3.98    2.64    1.27    0.06   -0.88   -1.53   -1.88   -1.81   -1.09
+   320.0    0.00    0.18    0.72    1.56    2.62    3.76    4.77    5.42    5.52    5.02    4.00    2.68    1.34    0.16   -0.74   -1.39   -1.75   -1.71   -0.97
+   325.0    0.00    0.19    0.73    1.57    2.62    3.75    4.75    5.40    5.50    5.00    3.99    2.70    1.38    0.24   -0.64   -1.28   -1.67   -1.67   -0.93
+   330.0    0.00    0.20    0.74    1.57    2.62    3.74    4.73    5.36    5.46    4.96    3.97    2.70    1.40    0.28   -0.59   -1.23   -1.65   -1.68   -0.95
+   335.0    0.00    0.20    0.75    1.58    2.62    3.73    4.70    5.32    5.41    4.91    3.92    2.67    1.39    0.29   -0.58   -1.24   -1.69   -1.76   -1.04
+   340.0    0.00    0.21    0.76    1.59    2.63    3.72    4.67    5.27    5.34    4.84    3.86    2.61    1.35    0.25   -0.62   -1.30   -1.78   -1.89   -1.19
+   345.0    0.00    0.22    0.77    1.61    2.63    3.71    4.64    5.21    5.27    4.76    3.78    2.54    1.28    0.18   -0.70   -1.40   -1.91   -2.06   -1.39
+   350.0    0.00    0.23    0.79    1.62    2.64    3.70    4.61    5.16    5.19    4.67    3.69    2.45    1.19    0.08   -0.82   -1.54   -2.07   -2.25   -1.62
+   355.0    0.00    0.23    0.80    1.64    2.65    3.70    4.58    5.10    5.11    4.58    3.59    2.35    1.08   -0.04   -0.97   -1.71   -2.26   -2.44   -1.85
+   360.0    0.00    0.24    0.81    1.66    2.67    3.69    4.55    5.05    5.04    4.49    3.49    2.25    0.97   -0.17   -1.12   -1.89   -2.44   -2.62   -2.07
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.22     -1.37    147.30                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.16   -0.61   -1.29   -2.12   -3.01   -3.88   -4.68   -5.34   -5.80   -5.99   -5.83   -5.22   -4.06   -2.27    0.21    3.41    7.22   11.37
+     0.0    0.00   -0.19   -0.68   -1.38   -2.22   -3.10   -3.96   -4.74   -5.37   -5.81   -5.97   -5.79   -5.20   -4.13   -2.48   -0.18    2.88    6.71   11.21
+     5.0    0.00   -0.20   -0.69   -1.40   -2.24   -3.14   -4.01   -4.80   -5.46   -5.91   -6.09   -5.93   -5.35   -4.29   -2.66   -0.39    2.62    6.39   10.82
+    10.0    0.00   -0.20   -0.69   -1.41   -2.27   -3.18   -4.06   -4.87   -5.54   -6.01   -6.21   -6.06   -5.49   -4.43   -2.81   -0.56    2.40    6.11   10.49
+    15.0    0.00   -0.20   -0.70   -1.43   -2.29   -3.21   -4.10   -4.92   -5.61   -6.10   -6.32   -6.18   -5.60   -4.53   -2.91   -0.68    2.24    5.90   10.23
+    20.0    0.00   -0.20   -0.71   -1.44   -2.31   -3.24   -4.14   -4.97   -5.67   -6.18   -6.41   -6.28   -5.69   -4.60   -2.97   -0.73    2.16    5.78   10.07
+    25.0    0.00   -0.20   -0.71   -1.45   -2.33   -3.26   -4.17   -5.00   -5.72   -6.24   -6.49   -6.35   -5.75   -4.64   -2.97   -0.71    2.18    5.76   10.02
+    30.0    0.00   -0.20   -0.71   -1.46   -2.34   -3.27   -4.18   -5.03   -5.75   -6.29   -6.54   -6.40   -5.79   -4.63   -2.92   -0.62    2.28    5.85   10.09
+    35.0    0.00   -0.20   -0.71   -1.46   -2.35   -3.28   -4.19   -5.04   -5.76   -6.31   -6.57   -6.43   -5.80   -4.60   -2.83   -0.48    2.47    6.05   10.27
+    40.0    0.00   -0.20   -0.71   -1.46   -2.35   -3.28   -4.19   -5.03   -5.76   -6.31   -6.57   -6.43   -5.78   -4.54   -2.71   -0.28    2.72    6.32   10.52
+    45.0    0.00   -0.20   -0.71   -1.46   -2.35   -3.28   -4.19   -5.02   -5.75   -6.29   -6.56   -6.41   -5.74   -4.46   -2.56   -0.06    3.00    6.64   10.83
+    50.0    0.00   -0.20   -0.71   -1.46   -2.35   -3.28   -4.18   -5.01   -5.72   -6.26   -6.52   -6.38   -5.69   -4.37   -2.41    0.16    3.30    6.98   11.15
+    55.0    0.00   -0.19   -0.70   -1.45   -2.34   -3.27   -4.17   -4.99   -5.70   -6.22   -6.48   -6.32   -5.62   -4.27   -2.26    0.38    3.59    7.30   11.45
+    60.0    0.00   -0.19   -0.70   -1.44   -2.33   -3.27   -4.16   -4.97   -5.67   -6.18   -6.42   -6.26   -5.54   -4.18   -2.13    0.57    3.84    7.59   11.71
+    65.0    0.00   -0.19   -0.69   -1.43   -2.32   -3.26   -4.15   -4.96   -5.64   -6.14   -6.36   -6.19   -5.46   -4.09   -2.01    0.72    4.04    7.81   11.90
+    70.0    0.00   -0.18   -0.68   -1.42   -2.31   -3.25   -4.14   -4.94   -5.61   -6.09   -6.30   -6.11   -5.39   -4.01   -1.93    0.83    4.18    7.97   12.00
+    75.0    0.00   -0.18   -0.67   -1.41   -2.30   -3.23   -4.13   -4.93   -5.58   -6.05   -6.24   -6.04   -5.32   -3.95   -1.87    0.90    4.26    8.05   12.02
+    80.0    0.00   -0.18   -0.66   -1.39   -2.28   -3.22   -4.11   -4.91   -5.55   -6.00   -6.18   -5.98   -5.26   -3.90   -1.84    0.92    4.28    8.06   11.96
+    85.0    0.00   -0.17   -0.65   -1.38   -2.26   -3.20   -4.10   -4.89   -5.52   -5.96   -6.13   -5.92   -5.21   -3.87   -1.83    0.91    4.27    8.03   11.85
+    90.0    0.00   -0.17   -0.64   -1.36   -2.24   -3.17   -4.07   -4.86   -5.49   -5.92   -6.08   -5.87   -5.17   -3.86   -1.84    0.89    4.24    7.97   11.70
+    95.0    0.00   -0.16   -0.63   -1.34   -2.21   -3.15   -4.04   -4.82   -5.45   -5.87   -6.03   -5.83   -5.14   -3.85   -1.86    0.86    4.20    7.91   11.56
+   100.0    0.00   -0.16   -0.61   -1.32   -2.19   -3.11   -4.00   -4.78   -5.40   -5.82   -5.98   -5.79   -5.12   -3.85   -1.88    0.83    4.17    7.87   11.45
+   105.0    0.00   -0.15   -0.60   -1.30   -2.16   -3.08   -3.96   -4.74   -5.35   -5.77   -5.93   -5.75   -5.10   -3.85   -1.89    0.81    4.16    7.85   11.39
+   110.0    0.00   -0.15   -0.59   -1.28   -2.13   -3.04   -3.92   -4.69   -5.30   -5.72   -5.88   -5.71   -5.08   -3.84   -1.89    0.82    4.17    7.88   11.41
+   115.0    0.00   -0.14   -0.58   -1.26   -2.11   -3.01   -3.87   -4.64   -5.25   -5.66   -5.83   -5.67   -5.04   -3.82   -1.87    0.84    4.21    7.94   11.49
+   120.0    0.00   -0.14   -0.57   -1.25   -2.08   -2.98   -3.84   -4.59   -5.20   -5.61   -5.78   -5.62   -5.00   -3.78   -1.84    0.87    4.26    8.03   11.65
+   125.0    0.00   -0.14   -0.57   -1.24   -2.06   -2.95   -3.80   -4.55   -5.15   -5.56   -5.73   -5.56   -4.95   -3.73   -1.79    0.92    4.32    8.13   11.85
+   130.0    0.00   -0.13   -0.56   -1.22   -2.05   -2.93   -3.78   -4.52   -5.12   -5.52   -5.68   -5.50   -4.88   -3.67   -1.74    0.96    4.37    8.23   12.08
+   135.0    0.00   -0.13   -0.55   -1.22   -2.04   -2.92   -3.76   -4.50   -5.09   -5.49   -5.63   -5.45   -4.81   -3.60   -1.69    0.99    4.39    8.30   12.29
+   140.0    0.00   -0.13   -0.55   -1.21   -2.03   -2.91   -3.76   -4.50   -5.08   -5.47   -5.59   -5.39   -4.75   -3.54   -1.65    1.00    4.39    8.33   12.47
+   145.0    0.00   -0.13   -0.55   -1.21   -2.03   -2.91   -3.76   -4.50   -5.08   -5.46   -5.57   -5.35   -4.70   -3.49   -1.62    0.99    4.34    8.30   12.57
+   150.0    0.00   -0.13   -0.55   -1.21   -2.03   -2.92   -3.77   -4.52   -5.10   -5.46   -5.56   -5.33   -4.66   -3.47   -1.63    0.93    4.24    8.20   12.57
+   155.0    0.00   -0.13   -0.55   -1.21   -2.04   -2.93   -3.78   -4.54   -5.12   -5.49   -5.58   -5.33   -4.66   -3.48   -1.67    0.84    4.10    8.04   12.47
+   160.0    0.00   -0.13   -0.55   -1.22   -2.05   -2.94   -3.80   -4.56   -5.15   -5.52   -5.61   -5.37   -4.70   -3.52   -1.75    0.72    3.92    7.82   12.27
+   165.0    0.00   -0.13   -0.55   -1.22   -2.05   -2.95   -3.82   -4.58   -5.18   -5.56   -5.67   -5.43   -4.77   -3.61   -1.86    0.56    3.71    7.56   11.98
+   170.0    0.00   -0.13   -0.55   -1.23   -2.06   -2.96   -3.83   -4.61   -5.22   -5.62   -5.74   -5.53   -4.89   -3.74   -2.01    0.38    3.48    7.27   11.63
+   175.0    0.00   -0.13   -0.56   -1.23   -2.07   -2.97   -3.84   -4.63   -5.26   -5.68   -5.84   -5.65   -5.03   -3.91   -2.19    0.18    3.25    6.98   11.25
+   180.0    0.00   -0.13   -0.56   -1.24   -2.07   -2.97   -3.85   -4.65   -5.30   -5.75   -5.94   -5.78   -5.20   -4.09   -2.38   -0.02    3.02    6.71   10.88
+   185.0    0.00   -0.13   -0.56   -1.24   -2.08   -2.98   -3.86   -4.66   -5.33   -5.82   -6.04   -5.93   -5.37   -4.28   -2.58   -0.21    2.83    6.48   10.57
+   190.0    0.00   -0.13   -0.57   -1.25   -2.08   -2.98   -3.86   -4.67   -5.36   -5.88   -6.15   -6.07   -5.54   -4.47   -2.77   -0.39    2.66    6.30   10.33
+   195.0    0.00   -0.13   -0.57   -1.25   -2.09   -2.98   -3.87   -4.69   -5.40   -5.94   -6.24   -6.19   -5.69   -4.64   -2.94   -0.54    2.54    6.20   10.20
+   200.0    0.00   -0.13   -0.57   -1.26   -2.09   -2.98   -3.87   -4.70   -5.42   -5.99   -6.31   -6.29   -5.81   -4.77   -3.07   -0.66    2.46    6.17   10.19
+   205.0    0.00   -0.13   -0.57   -1.26   -2.09   -2.99   -3.88   -4.71   -5.45   -6.02   -6.36   -6.35   -5.89   -4.86   -3.17   -0.74    2.43    6.20   10.28
+   210.0    0.00   -0.13   -0.58   -1.26   -2.09   -2.99   -3.88   -4.72   -5.47   -6.05   -6.38   -6.38   -5.93   -4.91   -3.22   -0.78    2.44    6.30   10.48
+   215.0    0.00   -0.13   -0.58   -1.26   -2.09   -2.99   -3.88   -4.73   -5.48   -6.05   -6.38   -6.37   -5.92   -4.91   -3.23   -0.78    2.49    6.45   10.75
+   220.0    0.00   -0.14   -0.58   -1.26   -2.08   -2.98   -3.89   -4.74   -5.48   -6.04   -6.35   -6.33   -5.87   -4.87   -3.20   -0.75    2.57    6.64   11.06
+   225.0    0.00   -0.14   -0.58   -1.25   -2.08   -2.98   -3.88   -4.73   -5.47   -6.02   -6.31   -6.26   -5.79   -4.80   -3.14   -0.69    2.67    6.84   11.37
+   230.0    0.00   -0.14   -0.58   -1.25   -2.07   -2.97   -3.87   -4.72   -5.44   -5.98   -6.24   -6.17   -5.69   -4.70   -3.07   -0.61    2.79    7.03   11.65
+   235.0    0.00   -0.14   -0.57   -1.24   -2.06   -2.96   -3.86   -4.70   -5.41   -5.92   -6.16   -6.07   -5.59   -4.61   -2.98   -0.51    2.91    7.20   11.86
+   240.0    0.00   -0.14   -0.57   -1.23   -2.05   -2.94   -3.83   -4.67   -5.37   -5.86   -6.08   -5.98   -5.49   -4.51   -2.89   -0.42    3.03    7.34   11.97
+   245.0    0.00   -0.14   -0.57   -1.23   -2.03   -2.91   -3.80   -4.63   -5.31   -5.79   -6.00   -5.89   -5.40   -4.43   -2.80   -0.32    3.13    7.43   11.99
+   250.0    0.00   -0.14   -0.57   -1.22   -2.01   -2.89   -3.76   -4.58   -5.26   -5.73   -5.93   -5.82   -5.33   -4.35   -2.72   -0.24    3.21    7.47   11.91
+   255.0    0.00   -0.14   -0.56   -1.21   -1.99   -2.86   -3.72   -4.53   -5.20   -5.67   -5.87   -5.77   -5.28   -4.30   -2.65   -0.16    3.28    7.47   11.75
+   260.0    0.00   -0.14   -0.56   -1.20   -1.97   -2.83   -3.68   -4.48   -5.14   -5.61   -5.82   -5.73   -5.24   -4.25   -2.60   -0.10    3.31    7.41   11.52
+   265.0    0.00   -0.14   -0.56   -1.19   -1.96   -2.80   -3.64   -4.43   -5.09   -5.57   -5.79   -5.69   -5.21   -4.21   -2.54   -0.04    3.33    7.33   11.27
+   270.0    0.00   -0.14   -0.56   -1.18   -1.94   -2.77   -3.61   -4.39   -5.05   -5.53   -5.76   -5.67   -5.18   -4.16   -2.48    0.01    3.33    7.23   11.02
+   275.0    0.00   -0.14   -0.55   -1.17   -1.92   -2.75   -3.58   -4.36   -5.03   -5.51   -5.74   -5.65   -5.14   -4.11   -2.41    0.06    3.32    7.12   10.82
+   280.0    0.00   -0.14   -0.55   -1.17   -1.91   -2.73   -3.56   -4.34   -5.01   -5.50   -5.72   -5.62   -5.09   -4.03   -2.33    0.12    3.32    7.03   10.68
+   285.0    0.00   -0.15   -0.55   -1.16   -1.91   -2.72   -3.55   -4.33   -5.00   -5.49   -5.71   -5.58   -5.02   -3.94   -2.23    0.19    3.33    6.97   10.63
+   290.0    0.00   -0.15   -0.56   -1.16   -1.91   -2.72   -3.55   -4.33   -5.01   -5.48   -5.69   -5.53   -4.94   -3.83   -2.11    0.28    3.35    6.96   10.68
+   295.0    0.00   -0.15   -0.56   -1.17   -1.91   -2.72   -3.56   -4.34   -5.01   -5.48   -5.66   -5.47   -4.84   -3.70   -1.98    0.38    3.40    6.99   10.83
+   300.0    0.00   -0.15   -0.56   -1.17   -1.92   -2.73   -3.57   -4.35   -5.02   -5.47   -5.63   -5.40   -4.73   -3.57   -1.85    0.49    3.48    7.08   11.07
+   305.0    0.00   -0.16   -0.57   -1.18   -1.93   -2.75   -3.58   -4.37   -5.03   -5.47   -5.59   -5.33   -4.63   -3.44   -1.71    0.61    3.58    7.21   11.36
+   310.0    0.00   -0.16   -0.58   -1.19   -1.94   -2.77   -3.60   -4.38   -5.03   -5.45   -5.56   -5.27   -4.53   -3.32   -1.59    0.72    3.69    7.37   11.69
+   315.0    0.00   -0.16   -0.58   -1.21   -1.96   -2.79   -3.62   -4.40   -5.04   -5.44   -5.53   -5.21   -4.46   -3.24   -1.50    0.81    3.80    7.55   12.01
+   320.0    0.00   -0.17   -0.59   -1.22   -1.98   -2.81   -3.65   -4.42   -5.04   -5.43   -5.50   -5.18   -4.42   -3.19   -1.45    0.88    3.90    7.70   12.29
+   325.0    0.00   -0.17   -0.60   -1.24   -2.01   -2.84   -3.67   -4.43   -5.05   -5.43   -5.49   -5.17   -4.41   -3.18   -1.44    0.91    3.96    7.83   12.50
+   330.0    0.00   -0.17   -0.61   -1.26   -2.03   -2.87   -3.70   -4.45   -5.06   -5.43   -5.50   -5.19   -4.44   -3.22   -1.48    0.89    3.98    7.89   12.61
+   335.0    0.00   -0.18   -0.62   -1.28   -2.06   -2.90   -3.73   -4.48   -5.08   -5.45   -5.53   -5.23   -4.51   -3.31   -1.57    0.81    3.93    7.88   12.62
+   340.0    0.00   -0.18   -0.63   -1.30   -2.09   -2.94   -3.77   -4.52   -5.11   -5.49   -5.58   -5.31   -4.61   -3.44   -1.70    0.68    3.82    7.78   12.51
+   345.0    0.00   -0.18   -0.65   -1.32   -2.12   -2.98   -3.81   -4.56   -5.16   -5.55   -5.65   -5.41   -4.74   -3.59   -1.88    0.50    3.65    7.60   12.28
+   350.0    0.00   -0.19   -0.66   -1.34   -2.15   -3.02   -3.86   -4.61   -5.22   -5.62   -5.74   -5.52   -4.89   -3.77   -2.07    0.29    3.42    7.35   11.98
+   355.0    0.00   -0.19   -0.67   -1.36   -2.18   -3.06   -3.91   -4.67   -5.29   -5.71   -5.85   -5.66   -5.05   -3.95   -2.28    0.06    3.16    7.04   11.61
+   360.0    0.00   -0.19   -0.68   -1.38   -2.22   -3.10   -3.96   -4.74   -5.37   -5.81   -5.97   -5.79   -5.20   -4.13   -2.48   -0.18    2.88    6.71   11.21
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+LEIAS10         NONE                                        TYPE / SERIAL NO    
+COPIED              Geo++ GmbH               5    19-MAR-10 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+COPIED FROM LEIAX1203+GNSS  NONE                            COMMENT             
+ATTENTION! COPIED WITHOUT VERIFICATION BY CALIBRATION!      COMMENT             
+   G01                                                      START OF FREQUENCY  
+     -0.81      1.50     58.55                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.02   -0.07   -0.18   -0.32   -0.49   -0.67   -0.83   -0.93   -0.97   -0.95   -0.89   -0.79   -0.62   -0.37    0.00    0.49    1.06    1.59
+     0.0    0.00   -0.09   -0.20   -0.33   -0.49   -0.66   -0.84   -0.98   -1.03   -0.96   -0.76   -0.45   -0.10    0.25    0.55    0.83    1.19    1.69    2.33
+     5.0    0.00   -0.08   -0.19   -0.32   -0.47   -0.64   -0.81   -0.95   -1.00   -0.95   -0.76   -0.47   -0.12    0.23    0.54    0.85    1.20    1.69    2.32
+    10.0    0.00   -0.08   -0.19   -0.31   -0.46   -0.62   -0.79   -0.92   -0.98   -0.94   -0.78   -0.51   -0.17    0.18    0.53    0.86    1.23    1.71    2.30
+    15.0    0.00   -0.08   -0.18   -0.31   -0.45   -0.60   -0.76   -0.89   -0.96   -0.94   -0.81   -0.57   -0.25    0.12    0.49    0.86    1.26    1.73    2.28
+    20.0    0.00   -0.07   -0.17   -0.30   -0.44   -0.58   -0.73   -0.86   -0.94   -0.94   -0.85   -0.65   -0.34    0.03    0.43    0.85    1.28    1.75    2.26
+    25.0    0.00   -0.07   -0.17   -0.29   -0.42   -0.56   -0.70   -0.82   -0.91   -0.95   -0.89   -0.74   -0.46   -0.10    0.34    0.80    1.27    1.75    2.23
+    30.0    0.00   -0.06   -0.16   -0.28   -0.41   -0.54   -0.67   -0.79   -0.89   -0.95   -0.94   -0.83   -0.60   -0.25    0.20    0.71    1.22    1.71    2.17
+    35.0    0.00   -0.06   -0.15   -0.26   -0.39   -0.52   -0.64   -0.76   -0.87   -0.95   -0.99   -0.93   -0.75   -0.42    0.03    0.57    1.12    1.63    2.08
+    40.0    0.00   -0.05   -0.14   -0.25   -0.38   -0.50   -0.62   -0.73   -0.84   -0.95   -1.03   -1.03   -0.91   -0.62   -0.17    0.38    0.95    1.48    1.93
+    45.0    0.00   -0.04   -0.13   -0.24   -0.36   -0.48   -0.60   -0.71   -0.82   -0.95   -1.07   -1.12   -1.06   -0.82   -0.40    0.14    0.72    1.26    1.73
+    50.0    0.00   -0.04   -0.12   -0.22   -0.35   -0.46   -0.58   -0.68   -0.81   -0.95   -1.10   -1.21   -1.20   -1.02   -0.65   -0.13    0.44    0.98    1.47
+    55.0    0.00   -0.03   -0.10   -0.21   -0.33   -0.45   -0.56   -0.67   -0.79   -0.95   -1.12   -1.27   -1.33   -1.21   -0.89   -0.42    0.12    0.64    1.15
+    60.0    0.00   -0.02   -0.09   -0.19   -0.31   -0.43   -0.55   -0.66   -0.78   -0.94   -1.14   -1.32   -1.43   -1.37   -1.12   -0.71   -0.21    0.28    0.80
+    65.0    0.00   -0.02   -0.08   -0.17   -0.29   -0.42   -0.53   -0.65   -0.77   -0.94   -1.14   -1.35   -1.50   -1.50   -1.32   -0.97   -0.54   -0.09    0.42
+    70.0    0.00   -0.01   -0.06   -0.15   -0.27   -0.40   -0.52   -0.64   -0.77   -0.93   -1.14   -1.36   -1.54   -1.59   -1.46   -1.19   -0.82   -0.43    0.06
+    75.0    0.00    0.00   -0.05   -0.13   -0.25   -0.38   -0.51   -0.63   -0.76   -0.92   -1.13   -1.36   -1.55   -1.63   -1.56   -1.34   -1.04   -0.70   -0.25
+    80.0    0.00    0.01   -0.03   -0.11   -0.23   -0.36   -0.49   -0.62   -0.75   -0.91   -1.11   -1.33   -1.53   -1.63   -1.59   -1.42   -1.17   -0.89   -0.49
+    85.0    0.00    0.01   -0.01   -0.09   -0.20   -0.34   -0.48   -0.60   -0.73   -0.89   -1.08   -1.30   -1.49   -1.60   -1.57   -1.42   -1.20   -0.96   -0.62
+    90.0    0.00    0.02    0.00   -0.07   -0.18   -0.31   -0.45   -0.58   -0.71   -0.86   -1.04   -1.25   -1.43   -1.53   -1.50   -1.34   -1.13   -0.92   -0.62
+    95.0    0.00    0.03    0.02   -0.05   -0.15   -0.29   -0.42   -0.55   -0.68   -0.82   -0.99   -1.19   -1.36   -1.44   -1.38   -1.21   -0.97   -0.76   -0.50
+   100.0    0.00    0.04    0.03   -0.02   -0.13   -0.26   -0.39   -0.52   -0.65   -0.78   -0.94   -1.12   -1.27   -1.33   -1.24   -1.02   -0.75   -0.50   -0.26
+   105.0    0.00    0.04    0.04    0.00   -0.10   -0.23   -0.36   -0.49   -0.61   -0.73   -0.88   -1.05   -1.18   -1.21   -1.08   -0.81   -0.48   -0.17    0.09
+   110.0    0.00    0.05    0.06    0.01   -0.08   -0.20   -0.33   -0.45   -0.57   -0.68   -0.82   -0.97   -1.08   -1.08   -0.92   -0.60   -0.19    0.19    0.50
+   115.0    0.00    0.05    0.07    0.03   -0.06   -0.18   -0.31   -0.42   -0.53   -0.63   -0.75   -0.89   -0.98   -0.97   -0.78   -0.41    0.07    0.54    0.93
+   120.0    0.00    0.06    0.08    0.05   -0.04   -0.16   -0.28   -0.40   -0.49   -0.58   -0.68   -0.80   -0.88   -0.85   -0.65   -0.25    0.30    0.86    1.35
+   125.0    0.00    0.06    0.09    0.06   -0.03   -0.14   -0.27   -0.38   -0.46   -0.53   -0.62   -0.71   -0.78   -0.75   -0.55   -0.13    0.46    1.11    1.71
+   130.0    0.00    0.07    0.09    0.07   -0.02   -0.14   -0.27   -0.37   -0.44   -0.50   -0.55   -0.63   -0.68   -0.66   -0.47   -0.07    0.55    1.28    1.99
+   135.0    0.00    0.07    0.10    0.07   -0.01   -0.14   -0.27   -0.37   -0.43   -0.47   -0.50   -0.54   -0.59   -0.58   -0.43   -0.05    0.56    1.35    2.16
+   140.0    0.00    0.07    0.10    0.07   -0.01   -0.14   -0.28   -0.38   -0.43   -0.45   -0.45   -0.47   -0.51   -0.52   -0.40   -0.07    0.52    1.33    2.23
+   145.0    0.00    0.07    0.10    0.07   -0.02   -0.15   -0.29   -0.40   -0.44   -0.44   -0.41   -0.41   -0.44   -0.46   -0.39   -0.12    0.43    1.25    2.19
+   150.0    0.00    0.07    0.10    0.07   -0.02   -0.17   -0.31   -0.42   -0.46   -0.44   -0.39   -0.36   -0.38   -0.42   -0.39   -0.18    0.33    1.13    2.08
+   155.0    0.00    0.07    0.10    0.07   -0.03   -0.18   -0.33   -0.44   -0.48   -0.45   -0.38   -0.33   -0.34   -0.39   -0.39   -0.23    0.23    0.99    1.93
+   160.0    0.00    0.07    0.10    0.06   -0.04   -0.20   -0.35   -0.47   -0.51   -0.47   -0.39   -0.32   -0.31   -0.36   -0.39   -0.26    0.15    0.88    1.76
+   165.0    0.00    0.07    0.09    0.05   -0.05   -0.21   -0.37   -0.49   -0.54   -0.50   -0.41   -0.33   -0.31   -0.34   -0.37   -0.26    0.12    0.80    1.62
+   170.0    0.00    0.06    0.08    0.04   -0.07   -0.22   -0.39   -0.52   -0.57   -0.53   -0.44   -0.35   -0.31   -0.33   -0.34   -0.23    0.13    0.77    1.52
+   175.0    0.00    0.06    0.08    0.03   -0.08   -0.24   -0.41   -0.54   -0.60   -0.57   -0.48   -0.39   -0.33   -0.32   -0.30   -0.17    0.19    0.80    1.48
+   180.0    0.00    0.06    0.07    0.02   -0.09   -0.25   -0.42   -0.56   -0.63   -0.61   -0.53   -0.43   -0.35   -0.31   -0.25   -0.08    0.29    0.89    1.52
+   185.0    0.00    0.05    0.06    0.01   -0.11   -0.26   -0.44   -0.58   -0.66   -0.66   -0.59   -0.48   -0.38   -0.30   -0.19    0.02    0.42    1.01    1.61
+   190.0    0.00    0.05    0.05   -0.01   -0.12   -0.28   -0.45   -0.60   -0.69   -0.70   -0.64   -0.53   -0.41   -0.28   -0.13    0.12    0.56    1.15    1.74
+   195.0    0.00    0.04    0.04   -0.02   -0.14   -0.30   -0.47   -0.63   -0.73   -0.75   -0.69   -0.57   -0.43   -0.27   -0.08    0.22    0.68    1.29    1.89
+   200.0    0.00    0.04    0.02   -0.04   -0.16   -0.32   -0.49   -0.65   -0.76   -0.79   -0.73   -0.61   -0.44   -0.26   -0.03    0.29    0.77    1.39    2.02
+   205.0    0.00    0.03    0.01   -0.06   -0.18   -0.34   -0.52   -0.68   -0.80   -0.83   -0.77   -0.64   -0.46   -0.25    0.00    0.33    0.81    1.45    2.11
+   210.0    0.00    0.02    0.00   -0.08   -0.20   -0.36   -0.55   -0.72   -0.83   -0.87   -0.80   -0.66   -0.47   -0.25    0.00    0.34    0.81    1.44    2.15
+   215.0    0.00    0.01   -0.02   -0.10   -0.22   -0.39   -0.58   -0.75   -0.87   -0.90   -0.83   -0.68   -0.49   -0.27   -0.02    0.30    0.75    1.38    2.11
+   220.0    0.00    0.01   -0.03   -0.12   -0.25   -0.42   -0.61   -0.78   -0.90   -0.93   -0.85   -0.71   -0.52   -0.31   -0.08    0.22    0.65    1.26    2.00
+   225.0    0.00    0.00   -0.05   -0.14   -0.28   -0.45   -0.65   -0.82   -0.93   -0.95   -0.88   -0.74   -0.56   -0.37   -0.16    0.11    0.51    1.10    1.83
+   230.0    0.00   -0.01   -0.06   -0.16   -0.31   -0.49   -0.68   -0.85   -0.95   -0.97   -0.91   -0.78   -0.62   -0.46   -0.28   -0.03    0.36    0.91    1.61
+   235.0    0.00   -0.01   -0.08   -0.18   -0.33   -0.52   -0.71   -0.88   -0.98   -1.00   -0.94   -0.83   -0.70   -0.57   -0.42   -0.18    0.19    0.72    1.36
+   240.0    0.00   -0.02   -0.09   -0.20   -0.36   -0.55   -0.74   -0.90   -1.00   -1.02   -0.98   -0.89   -0.81   -0.71   -0.57   -0.34    0.04    0.54    1.12
+   245.0    0.00   -0.03   -0.10   -0.22   -0.39   -0.58   -0.77   -0.93   -1.02   -1.05   -1.02   -0.97   -0.92   -0.86   -0.73   -0.48   -0.09    0.40    0.89
+   250.0    0.00   -0.04   -0.12   -0.24   -0.41   -0.61   -0.80   -0.96   -1.05   -1.08   -1.08   -1.06   -1.05   -1.01   -0.88   -0.61   -0.19    0.30    0.71
+   255.0    0.00   -0.04   -0.13   -0.26   -0.44   -0.64   -0.83   -0.99   -1.08   -1.12   -1.14   -1.15   -1.17   -1.15   -1.02   -0.71   -0.24    0.26    0.58
+   260.0    0.00   -0.05   -0.14   -0.28   -0.46   -0.67   -0.86   -1.02   -1.12   -1.17   -1.20   -1.24   -1.29   -1.28   -1.12   -0.77   -0.25    0.26    0.52
+   265.0    0.00   -0.06   -0.15   -0.30   -0.48   -0.69   -0.90   -1.06   -1.16   -1.22   -1.27   -1.33   -1.38   -1.36   -1.18   -0.78   -0.22    0.31    0.51
+   270.0    0.00   -0.06   -0.16   -0.31   -0.51   -0.72   -0.93   -1.10   -1.21   -1.28   -1.33   -1.39   -1.44   -1.41   -1.20   -0.75   -0.14    0.40    0.56
+   275.0    0.00   -0.07   -0.17   -0.33   -0.53   -0.75   -0.97   -1.15   -1.27   -1.34   -1.39   -1.44   -1.47   -1.41   -1.16   -0.68   -0.04    0.53    0.66
+   280.0    0.00   -0.07   -0.18   -0.34   -0.54   -0.78   -1.01   -1.20   -1.33   -1.40   -1.43   -1.46   -1.45   -1.36   -1.08   -0.56    0.10    0.67    0.79
+   285.0    0.00   -0.08   -0.19   -0.35   -0.56   -0.80   -1.05   -1.25   -1.38   -1.44   -1.46   -1.45   -1.40   -1.26   -0.94   -0.41    0.26    0.83    0.94
+   290.0    0.00   -0.08   -0.20   -0.36   -0.57   -0.82   -1.08   -1.29   -1.43   -1.48   -1.47   -1.41   -1.32   -1.13   -0.78   -0.24    0.43    0.98    1.10
+   295.0    0.00   -0.08   -0.20   -0.37   -0.58   -0.84   -1.11   -1.33   -1.47   -1.51   -1.46   -1.36   -1.20   -0.96   -0.59   -0.05    0.60    1.14    1.26
+   300.0    0.00   -0.09   -0.21   -0.37   -0.59   -0.85   -1.12   -1.35   -1.49   -1.51   -1.43   -1.28   -1.07   -0.78   -0.39    0.15    0.76    1.29    1.43
+   305.0    0.00   -0.09   -0.21   -0.37   -0.59   -0.86   -1.13   -1.36   -1.50   -1.50   -1.39   -1.19   -0.92   -0.60   -0.19    0.33    0.91    1.42    1.59
+   310.0    0.00   -0.09   -0.21   -0.37   -0.59   -0.85   -1.13   -1.36   -1.49   -1.48   -1.33   -1.08   -0.77   -0.42    0.00    0.49    1.05    1.54    1.74
+   315.0    0.00   -0.09   -0.21   -0.37   -0.59   -0.85   -1.12   -1.34   -1.46   -1.43   -1.26   -0.98   -0.64   -0.26    0.16    0.63    1.15    1.63    1.88
+   320.0    0.00   -0.10   -0.22   -0.37   -0.58   -0.83   -1.10   -1.31   -1.42   -1.38   -1.18   -0.87   -0.51   -0.12    0.28    0.73    1.22    1.71    2.01
+   325.0    0.00   -0.10   -0.21   -0.37   -0.57   -0.81   -1.07   -1.27   -1.37   -1.31   -1.10   -0.77   -0.40   -0.01    0.38    0.80    1.27    1.75    2.12
+   330.0    0.00   -0.10   -0.21   -0.36   -0.56   -0.79   -1.04   -1.23   -1.31   -1.24   -1.02   -0.68   -0.30    0.08    0.45    0.84    1.28    1.78    2.21
+   335.0    0.00   -0.10   -0.21   -0.36   -0.55   -0.77   -1.00   -1.18   -1.25   -1.17   -0.94   -0.61   -0.22    0.15    0.49    0.85    1.28    1.78    2.27
+   340.0    0.00   -0.10   -0.21   -0.35   -0.54   -0.75   -0.97   -1.13   -1.19   -1.11   -0.88   -0.54   -0.17    0.19    0.52    0.85    1.26    1.77    2.32
+   345.0    0.00   -0.09   -0.21   -0.35   -0.52   -0.73   -0.93   -1.09   -1.14   -1.06   -0.83   -0.49   -0.12    0.23    0.53    0.84    1.23    1.75    2.35
+   350.0    0.00   -0.09   -0.20   -0.34   -0.51   -0.70   -0.90   -1.05   -1.10   -1.01   -0.79   -0.46   -0.10    0.24    0.54    0.83    1.20    1.72    2.35
+   355.0    0.00   -0.09   -0.20   -0.34   -0.50   -0.68   -0.87   -1.01   -1.06   -0.98   -0.76   -0.45   -0.09    0.25    0.54    0.83    1.19    1.70    2.35
+   360.0    0.00   -0.09   -0.20   -0.33   -0.49   -0.66   -0.84   -0.98   -1.03   -0.96   -0.76   -0.45   -0.10    0.25    0.55    0.83    1.19    1.69    2.33
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.10     -2.69     55.45                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.03   -0.11   -0.21   -0.32   -0.42   -0.51   -0.58   -0.62   -0.58   -0.44   -0.19    0.10    0.31    0.33    0.15   -0.09   -0.09    0.53
+     0.0    0.00    0.04    0.06    0.07    0.10    0.12    0.13    0.09   -0.02   -0.17   -0.28   -0.27   -0.10    0.20    0.53    0.78    0.92    1.07    1.55
+     5.0    0.00    0.04    0.06    0.08    0.12    0.16    0.18    0.13    0.00   -0.16   -0.29   -0.29   -0.13    0.17    0.51    0.77    0.90    1.02    1.39
+    10.0    0.00    0.03    0.05    0.08    0.14    0.20    0.22    0.17    0.03   -0.15   -0.30   -0.32   -0.17    0.12    0.45    0.70    0.82    0.91    1.21
+    15.0    0.00    0.02    0.04    0.08    0.15    0.22    0.25    0.20    0.06   -0.14   -0.30   -0.33   -0.20    0.06    0.36    0.58    0.70    0.78    1.03
+    20.0    0.00    0.02    0.03    0.07    0.15    0.23    0.28    0.23    0.09   -0.11   -0.28   -0.33   -0.23    0.00    0.26    0.45    0.54    0.62    0.85
+    25.0    0.00    0.01    0.02    0.06    0.14    0.24    0.29    0.25    0.11   -0.09   -0.25   -0.31   -0.23   -0.05    0.16    0.31    0.39    0.47    0.70
+    30.0    0.00    0.00    0.00    0.04    0.12    0.22    0.28    0.25    0.13   -0.05   -0.21   -0.27   -0.21   -0.06    0.09    0.19    0.24    0.33    0.57
+    35.0    0.00   -0.01   -0.02    0.01    0.09    0.19    0.25    0.24    0.13   -0.03   -0.16   -0.21   -0.16   -0.05    0.05    0.10    0.13    0.22    0.49
+    40.0    0.00   -0.02   -0.04   -0.02    0.05    0.14    0.21    0.20    0.12    0.00   -0.10   -0.12   -0.07    0.01    0.05    0.05    0.04    0.14    0.45
+    45.0    0.00   -0.03   -0.07   -0.06    0.00    0.08    0.14    0.14    0.08    0.01   -0.04   -0.03    0.03    0.09    0.09    0.03   -0.01    0.10    0.46
+    50.0    0.00   -0.05   -0.09   -0.10   -0.06    0.00    0.05    0.05    0.03    0.00    0.01    0.07    0.16    0.20    0.16    0.05   -0.03    0.10    0.51
+    55.0    0.00   -0.06   -0.12   -0.15   -0.13   -0.10   -0.06   -0.05   -0.05   -0.03    0.04    0.16    0.28    0.32    0.25    0.09   -0.02    0.12    0.60
+    60.0    0.00   -0.07   -0.14   -0.20   -0.21   -0.20   -0.18   -0.17   -0.15   -0.09    0.04    0.22    0.38    0.44    0.34    0.14    0.00    0.15    0.71
+    65.0    0.00   -0.08   -0.17   -0.24   -0.28   -0.30   -0.31   -0.30   -0.27   -0.17    0.02    0.26    0.46    0.53    0.42    0.18    0.02    0.18    0.83
+    70.0    0.00   -0.09   -0.20   -0.29   -0.36   -0.40   -0.43   -0.44   -0.40   -0.27   -0.04    0.25    0.50    0.60    0.48    0.22    0.03    0.20    0.94
+    75.0    0.00   -0.10   -0.22   -0.34   -0.43   -0.50   -0.56   -0.58   -0.54   -0.40   -0.13    0.20    0.50    0.62    0.50    0.22    0.02    0.20    1.02
+    80.0    0.00   -0.11   -0.25   -0.38   -0.49   -0.59   -0.67   -0.72   -0.69   -0.54   -0.25    0.12    0.45    0.60    0.50    0.21   -0.02    0.17    1.05
+    85.0    0.00   -0.12   -0.27   -0.42   -0.55   -0.67   -0.77   -0.84   -0.83   -0.69   -0.40   -0.01    0.35    0.53    0.45    0.16   -0.08    0.10    1.02
+    90.0    0.00   -0.12   -0.28   -0.45   -0.60   -0.73   -0.86   -0.95   -0.96   -0.84   -0.56   -0.17    0.22    0.44    0.38    0.09   -0.16    0.00    0.93
+    95.0    0.00   -0.13   -0.30   -0.47   -0.64   -0.79   -0.93   -1.05   -1.09   -1.00   -0.73   -0.34    0.07    0.32    0.29    0.01   -0.26   -0.13    0.78
+   100.0    0.00   -0.13   -0.31   -0.49   -0.66   -0.83   -0.98   -1.13   -1.20   -1.14   -0.91   -0.52   -0.10    0.18    0.19   -0.08   -0.37   -0.29    0.58
+   105.0    0.00   -0.14   -0.32   -0.51   -0.68   -0.85   -1.03   -1.19   -1.30   -1.28   -1.07   -0.69   -0.26    0.06    0.09   -0.16   -0.47   -0.45    0.35
+   110.0    0.00   -0.14   -0.33   -0.52   -0.70   -0.87   -1.06   -1.25   -1.39   -1.40   -1.22   -0.85   -0.40   -0.06    0.01   -0.23   -0.57   -0.59    0.12
+   115.0    0.00   -0.14   -0.33   -0.52   -0.70   -0.88   -1.08   -1.29   -1.47   -1.51   -1.35   -0.98   -0.52   -0.15   -0.05   -0.28   -0.63   -0.72   -0.08
+   120.0    0.00   -0.14   -0.33   -0.52   -0.70   -0.89   -1.10   -1.33   -1.53   -1.60   -1.45   -1.08   -0.60   -0.20   -0.09   -0.30   -0.67   -0.80   -0.23
+   125.0    0.00   -0.14   -0.33   -0.52   -0.70   -0.89   -1.11   -1.36   -1.58   -1.66   -1.52   -1.15   -0.65   -0.23   -0.09   -0.30   -0.67   -0.83   -0.31
+   130.0    0.00   -0.14   -0.32   -0.51   -0.69   -0.88   -1.11   -1.38   -1.61   -1.70   -1.55   -1.17   -0.65   -0.22   -0.06   -0.26   -0.64   -0.80   -0.30
+   135.0    0.00   -0.14   -0.31   -0.50   -0.67   -0.87   -1.11   -1.38   -1.62   -1.71   -1.56   -1.16   -0.63   -0.18   -0.01   -0.20   -0.56   -0.71   -0.19
+   140.0    0.00   -0.13   -0.30   -0.48   -0.66   -0.86   -1.10   -1.37   -1.60   -1.68   -1.52   -1.11   -0.56   -0.11    0.06   -0.11   -0.45   -0.56   -0.01
+   145.0    0.00   -0.13   -0.29   -0.46   -0.64   -0.83   -1.08   -1.34   -1.57   -1.63   -1.45   -1.02   -0.47   -0.01    0.16    0.00   -0.32   -0.38    0.24
+   150.0    0.00   -0.12   -0.28   -0.44   -0.61   -0.80   -1.04   -1.30   -1.50   -1.54   -1.35   -0.91   -0.36    0.10    0.27    0.12   -0.16   -0.17    0.52
+   155.0    0.00   -0.12   -0.27   -0.42   -0.58   -0.77   -0.99   -1.23   -1.41   -1.43   -1.21   -0.77   -0.22    0.23    0.40    0.27    0.02    0.05    0.81
+   160.0    0.00   -0.11   -0.25   -0.40   -0.55   -0.72   -0.92   -1.14   -1.29   -1.28   -1.05   -0.61   -0.07    0.37    0.55    0.42    0.20    0.27    1.07
+   165.0    0.00   -0.10   -0.23   -0.37   -0.51   -0.67   -0.85   -1.03   -1.15   -1.12   -0.88   -0.44    0.09    0.53    0.70    0.58    0.37    0.45    1.29
+   170.0    0.00   -0.10   -0.22   -0.35   -0.48   -0.61   -0.76   -0.91   -0.99   -0.94   -0.69   -0.26    0.26    0.68    0.85    0.74    0.52    0.59    1.43
+   175.0    0.00   -0.09   -0.20   -0.32   -0.44   -0.55   -0.67   -0.78   -0.83   -0.76   -0.50   -0.08    0.43    0.84    1.00    0.89    0.65    0.68    1.51
+   180.0    0.00   -0.08   -0.18   -0.30   -0.40   -0.50   -0.59   -0.66   -0.68   -0.58   -0.32    0.09    0.58    0.99    1.15    1.02    0.75    0.73    1.51
+   185.0    0.00   -0.07   -0.17   -0.27   -0.37   -0.45   -0.51   -0.55   -0.53   -0.42   -0.16    0.25    0.72    1.12    1.28    1.13    0.81    0.72    1.45
+   190.0    0.00   -0.06   -0.15   -0.25   -0.34   -0.41   -0.45   -0.46   -0.42   -0.29   -0.03    0.37    0.83    1.22    1.37    1.21    0.84    0.67    1.34
+   195.0    0.00   -0.05   -0.14   -0.24   -0.32   -0.38   -0.40   -0.39   -0.33   -0.19    0.07    0.46    0.91    1.30    1.44    1.25    0.83    0.59    1.22
+   200.0    0.00   -0.05   -0.13   -0.22   -0.31   -0.37   -0.38   -0.36   -0.28   -0.13    0.13    0.51    0.96    1.33    1.46    1.25    0.79    0.50    1.09
+   205.0    0.00   -0.04   -0.11   -0.21   -0.31   -0.37   -0.38   -0.35   -0.27   -0.12    0.14    0.52    0.96    1.32    1.44    1.21    0.73    0.41    0.98
+   210.0    0.00   -0.03   -0.10   -0.21   -0.31   -0.38   -0.41   -0.38   -0.30   -0.14    0.12    0.49    0.91    1.26    1.37    1.13    0.64    0.32    0.90
+   215.0    0.00   -0.02   -0.09   -0.21   -0.32   -0.41   -0.46   -0.44   -0.36   -0.21    0.06    0.42    0.84    1.17    1.27    1.03    0.55    0.25    0.83
+   220.0    0.00   -0.01   -0.09   -0.21   -0.34   -0.46   -0.52   -0.52   -0.45   -0.29   -0.03    0.33    0.73    1.04    1.13    0.90    0.46    0.20    0.78
+   225.0    0.00   -0.01   -0.08   -0.21   -0.37   -0.50   -0.60   -0.62   -0.55   -0.40   -0.14    0.22    0.60    0.90    0.97    0.77    0.37    0.16    0.73
+   230.0    0.00    0.00   -0.07   -0.21   -0.39   -0.56   -0.68   -0.72   -0.67   -0.51   -0.25    0.10    0.46    0.74    0.81    0.63    0.29    0.13    0.66
+   235.0    0.00    0.01   -0.07   -0.22   -0.42   -0.61   -0.76   -0.82   -0.78   -0.62   -0.36   -0.02    0.33    0.59    0.66    0.50    0.22    0.09    0.54
+   240.0    0.00    0.01   -0.06   -0.22   -0.44   -0.66   -0.83   -0.91   -0.88   -0.72   -0.45   -0.12    0.22    0.46    0.52    0.38    0.14    0.04    0.37
+   245.0    0.00    0.02   -0.06   -0.22   -0.46   -0.70   -0.89   -0.99   -0.96   -0.80   -0.53   -0.20    0.12    0.35    0.40    0.28    0.07   -0.04    0.14
+   250.0    0.00    0.02   -0.05   -0.23   -0.47   -0.73   -0.94   -1.05   -1.03   -0.86   -0.59   -0.25    0.06    0.27    0.31    0.19   -0.02   -0.16   -0.15
+   255.0    0.00    0.03   -0.05   -0.22   -0.48   -0.75   -0.97   -1.09   -1.07   -0.90   -0.62   -0.28    0.02    0.21    0.24    0.10   -0.12   -0.33   -0.48
+   260.0    0.00    0.03   -0.04   -0.22   -0.48   -0.75   -0.98   -1.10   -1.08   -0.91   -0.63   -0.29    0.01    0.18    0.18    0.01   -0.25   -0.53   -0.84
+   265.0    0.00    0.04   -0.03   -0.21   -0.47   -0.75   -0.98   -1.10   -1.08   -0.91   -0.62   -0.28    0.01    0.17    0.13   -0.09   -0.41   -0.76   -1.19
+   270.0    0.00    0.04   -0.03   -0.20   -0.46   -0.73   -0.95   -1.08   -1.06   -0.89   -0.60   -0.26    0.02    0.15    0.08   -0.20   -0.59   -1.01   -1.50
+   275.0    0.00    0.05   -0.02   -0.19   -0.44   -0.70   -0.92   -1.03   -1.01   -0.85   -0.57   -0.24    0.03    0.14    0.01   -0.33   -0.79   -1.26   -1.74
+   280.0    0.00    0.05   -0.01   -0.18   -0.41   -0.66   -0.87   -0.98   -0.96   -0.80   -0.53   -0.22    0.03    0.11   -0.07   -0.48   -1.00   -1.48   -1.88
+   285.0    0.00    0.05    0.00   -0.16   -0.38   -0.62   -0.81   -0.91   -0.90   -0.75   -0.50   -0.21    0.02    0.06   -0.16   -0.63   -1.20   -1.67   -1.90
+   290.0    0.00    0.06    0.01   -0.14   -0.35   -0.57   -0.74   -0.84   -0.82   -0.70   -0.47   -0.21   -0.01    0.00   -0.27   -0.78   -1.37   -1.79   -1.80
+   295.0    0.00    0.06    0.01   -0.13   -0.32   -0.51   -0.67   -0.75   -0.75   -0.64   -0.44   -0.22   -0.06   -0.08   -0.37   -0.91   -1.50   -1.83   -1.59
+   300.0    0.00    0.06    0.02   -0.11   -0.28   -0.46   -0.60   -0.67   -0.67   -0.58   -0.42   -0.23   -0.10   -0.15   -0.46   -1.00   -1.56   -1.78   -1.27
+   305.0    0.00    0.06    0.03   -0.09   -0.25   -0.40   -0.52   -0.58   -0.58   -0.52   -0.40   -0.25   -0.15   -0.22   -0.53   -1.05   -1.55   -1.64   -0.87
+   310.0    0.00    0.06    0.04   -0.07   -0.21   -0.35   -0.45   -0.50   -0.50   -0.46   -0.37   -0.26   -0.20   -0.27   -0.56   -1.03   -1.46   -1.42   -0.42
+   315.0    0.00    0.07    0.04   -0.05   -0.18   -0.29   -0.38   -0.42   -0.43   -0.40   -0.35   -0.27   -0.23   -0.29   -0.54   -0.94   -1.28   -1.14    0.04
+   320.0    0.00    0.07    0.05   -0.04   -0.15   -0.24   -0.31   -0.34   -0.35   -0.35   -0.32   -0.28   -0.24   -0.28   -0.47   -0.79   -1.04   -0.80    0.49
+   325.0    0.00    0.06    0.05   -0.02   -0.11   -0.19   -0.24   -0.27   -0.29   -0.30   -0.30   -0.27   -0.23   -0.24   -0.36   -0.58   -0.74   -0.44    0.89
+   330.0    0.00    0.06    0.06    0.00   -0.08   -0.14   -0.18   -0.20   -0.23   -0.26   -0.28   -0.26   -0.21   -0.17   -0.21   -0.33   -0.40   -0.07    1.22
+   335.0    0.00    0.06    0.06    0.01   -0.05   -0.10   -0.12   -0.15   -0.18   -0.23   -0.26   -0.25   -0.18   -0.08   -0.03   -0.06   -0.07    0.27    1.48
+   340.0    0.00    0.06    0.06    0.03   -0.02   -0.05   -0.07   -0.09   -0.14   -0.20   -0.25   -0.24   -0.14    0.01    0.14    0.20    0.25    0.57    1.64
+   345.0    0.00    0.06    0.07    0.04    0.01   -0.01   -0.02   -0.05   -0.11   -0.19   -0.25   -0.23   -0.11    0.09    0.30    0.43    0.52    0.80    1.72
+   350.0    0.00    0.05    0.07    0.05    0.04    0.04    0.03    0.00   -0.08   -0.18   -0.25   -0.24   -0.09    0.16    0.42    0.61    0.73    0.97    1.73
+   355.0    0.00    0.05    0.06    0.07    0.07    0.08    0.08    0.04   -0.05   -0.17   -0.26   -0.25   -0.09    0.20    0.50    0.73    0.86    1.05    1.66
+   360.0    0.00    0.04    0.06    0.07    0.10    0.12    0.13    0.09   -0.02   -0.17   -0.28   -0.27   -0.10    0.20    0.53    0.78    0.92    1.07    1.55
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+LEIAT202+GP     NONE                                        TYPE / SERIAL NO    
+CONVERTED           TUM                      0    16-APR-03 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+      5.40      1.44     30.44                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.24   -0.52   -0.27    0.12   -0.29   -1.45   -2.29   -2.07   -1.60   -1.54   -1.86   -1.67   -0.84    0.40    2.57    6.69
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      3.30     -5.82     33.86                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.33   -1.12   -1.90   -2.42   -2.82   -3.33   -4.11   -4.85   -5.23   -5.05   -4.13   -3.08   -2.25   -1.83   -1.21    0.36
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+LEIAT202-GP     NONE                                        TYPE / SERIAL NO    
+CONVERTED           TUM                      0    16-APR-03 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+      1.10     -0.36     49.74                              NORTH / EAST / UP   
+   NOAZI    0.00    0.96    1.68    2.33    2.52    1.81    1.05    1.11    2.33    3.50    2.96    1.14   -0.07    1.06    3.40    3.77    0.99
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.20     -2.52     44.16                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.33   -1.22   -2.00   -2.72   -3.72   -4.83   -5.41   -5.25   -4.63   -4.25   -3.93   -3.08   -2.15   -2.43   -4.91   -9.14
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+LEIAT302+GP     NONE                                        TYPE / SERIAL NO    
+CONVERTED           TUM                      0    16-APR-03 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+      5.40      1.44     30.44                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.24   -0.52   -0.27    0.12   -0.29   -1.45   -2.29   -2.07   -1.60   -1.54   -1.86   -1.67   -0.84    0.40    2.57    6.69
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      3.30     -5.82     33.86                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.33   -1.12   -1.90   -2.42   -2.82   -3.33   -4.11   -4.85   -5.23   -5.05   -4.13   -3.08   -2.25   -1.83   -1.21    0.36
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+LEIAT302-GP     NONE                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               2    15-MAY-08 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+     -0.02     -0.35     40.39                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.10   -0.39   -0.80   -1.25   -1.61   -1.78   -1.71   -1.43   -1.03   -0.68   -0.49   -0.47   -0.51   -0.42   -0.06    0.55    1.16    1.37
+     0.0    0.00   -0.26   -0.60   -0.92   -1.12   -1.16   -1.03   -0.79   -0.48   -0.18    0.08    0.32    0.60    1.03    1.69    2.56    3.53    4.40    4.95
+     5.0    0.00   -0.26   -0.61   -0.93   -1.14   -1.18   -1.04   -0.77   -0.44   -0.13    0.12    0.32    0.55    0.91    1.50    2.32    3.27    4.12    4.66
+    10.0    0.00   -0.25   -0.61   -0.95   -1.17   -1.21   -1.06   -0.78   -0.43   -0.11    0.13    0.29    0.46    0.75    1.27    2.05    2.97    3.81    4.34
+    15.0    0.00   -0.25   -0.61   -0.96   -1.20   -1.25   -1.11   -0.82   -0.46   -0.13    0.10    0.23    0.34    0.56    1.01    1.74    2.64    3.49    4.00
+    20.0    0.00   -0.25   -0.61   -0.98   -1.24   -1.32   -1.19   -0.90   -0.53   -0.20    0.02    0.12    0.17    0.32    0.70    1.39    2.29    3.14    3.65
+    25.0    0.00   -0.24   -0.61   -0.99   -1.28   -1.39   -1.29   -1.01   -0.64   -0.31   -0.10   -0.04   -0.05    0.02    0.35    1.00    1.89    2.77    3.28
+    30.0    0.00   -0.23   -0.60   -1.01   -1.33   -1.48   -1.41   -1.15   -0.80   -0.47   -0.29   -0.26   -0.33   -0.33   -0.06    0.55    1.44    2.34    2.88
+    35.0    0.00   -0.23   -0.60   -1.02   -1.37   -1.57   -1.54   -1.32   -0.99   -0.68   -0.52   -0.54   -0.67   -0.73   -0.53    0.04    0.92    1.84    2.40
+    40.0    0.00   -0.22   -0.59   -1.03   -1.42   -1.66   -1.68   -1.50   -1.20   -0.93   -0.80   -0.87   -1.06   -1.19   -1.06   -0.54    0.32    1.25    1.84
+    45.0    0.00   -0.21   -0.58   -1.03   -1.46   -1.74   -1.82   -1.68   -1.43   -1.19   -1.11   -1.23   -1.48   -1.69   -1.63   -1.17   -0.36    0.55    1.16
+    50.0    0.00   -0.19   -0.57   -1.03   -1.49   -1.82   -1.95   -1.86   -1.65   -1.46   -1.42   -1.60   -1.92   -2.21   -2.23   -1.84   -1.09   -0.23    0.37
+    55.0    0.00   -0.18   -0.55   -1.03   -1.51   -1.88   -2.06   -2.02   -1.86   -1.71   -1.72   -1.96   -2.36   -2.72   -2.82   -2.53   -1.87   -1.09   -0.53
+    60.0    0.00   -0.17   -0.53   -1.02   -1.52   -1.93   -2.15   -2.15   -2.02   -1.92   -1.99   -2.29   -2.75   -3.19   -3.38   -3.19   -2.64   -1.97   -1.49
+    65.0    0.00   -0.16   -0.51   -1.00   -1.53   -1.96   -2.20   -2.24   -2.14   -2.08   -2.19   -2.55   -3.08   -3.60   -3.88   -3.78   -3.36   -2.83   -2.46
+    70.0    0.00   -0.14   -0.48   -0.98   -1.51   -1.97   -2.23   -2.28   -2.21   -2.16   -2.31   -2.72   -3.32   -3.90   -4.25   -4.25   -3.96   -3.60   -3.38
+    75.0    0.00   -0.13   -0.46   -0.95   -1.49   -1.96   -2.23   -2.28   -2.21   -2.18   -2.35   -2.79   -3.44   -4.07   -4.49   -4.57   -4.40   -4.20   -4.17
+    80.0    0.00   -0.11   -0.43   -0.92   -1.46   -1.93   -2.19   -2.24   -2.15   -2.11   -2.29   -2.75   -3.42   -4.09   -4.54   -4.69   -4.62   -4.58   -4.75
+    85.0    0.00   -0.09   -0.40   -0.88   -1.43   -1.89   -2.14   -2.16   -2.04   -1.97   -2.13   -2.59   -3.27   -3.94   -4.41   -4.58   -4.59   -4.70   -5.07
+    90.0    0.00   -0.08   -0.38   -0.85   -1.39   -1.84   -2.07   -2.06   -1.90   -1.78   -1.89   -2.32   -2.97   -3.63   -4.07   -4.25   -4.30   -4.52   -5.07
+    95.0    0.00   -0.06   -0.35   -0.81   -1.35   -1.79   -2.00   -1.94   -1.72   -1.54   -1.59   -1.95   -2.55   -3.16   -3.56   -3.69   -3.75   -4.04   -4.75
+   100.0    0.00   -0.05   -0.32   -0.78   -1.31   -1.74   -1.92   -1.82   -1.54   -1.27   -1.23   -1.52   -2.03   -2.56   -2.88   -2.95   -2.97   -3.29   -4.12
+   105.0    0.00   -0.03   -0.29   -0.75   -1.27   -1.69   -1.86   -1.71   -1.36   -1.00   -0.86   -1.03   -1.44   -1.86   -2.08   -2.06   -2.01   -2.31   -3.22
+   110.0    0.00   -0.02   -0.27   -0.71   -1.24   -1.66   -1.80   -1.62   -1.19   -0.74   -0.48   -0.53   -0.81   -1.11   -1.21   -1.07   -0.93   -1.18   -2.12
+   115.0    0.00   -0.01   -0.25   -0.69   -1.21   -1.63   -1.76   -1.55   -1.06   -0.51   -0.12   -0.04   -0.18   -0.35   -0.32   -0.06    0.20    0.03   -0.88
+   120.0    0.00    0.00   -0.22   -0.66   -1.19   -1.61   -1.74   -1.50   -0.95   -0.31    0.19    0.42    0.41    0.38    0.53    0.92    1.29    1.23    0.38
+   125.0    0.00    0.02   -0.21   -0.64   -1.17   -1.60   -1.73   -1.47   -0.87   -0.15    0.46    0.81    0.94    1.03    1.30    1.80    2.29    2.36    1.60
+   130.0    0.00    0.03   -0.19   -0.62   -1.16   -1.59   -1.73   -1.45   -0.83   -0.04    0.66    1.12    1.37    1.58    1.95    2.54    3.15    3.33    2.69
+   135.0    0.00    0.04   -0.17   -0.61   -1.15   -1.59   -1.73   -1.46   -0.81    0.02    0.80    1.35    1.70    1.99    2.44    3.11    3.81    4.11    3.59
+   140.0    0.00    0.04   -0.16   -0.60   -1.14   -1.59   -1.74   -1.46   -0.81    0.05    0.88    1.49    1.90    2.26    2.76    3.49    4.26    4.66    4.27
+   145.0    0.00    0.05   -0.15   -0.58   -1.13   -1.58   -1.74   -1.48   -0.82    0.05    0.89    1.55    2.00    2.38    2.92    3.67    4.49    4.99    4.71
+   150.0    0.00    0.05   -0.14   -0.57   -1.12   -1.58   -1.74   -1.49   -0.84    0.01    0.86    1.52    1.98    2.38    2.92    3.68    4.53    5.08    4.91
+   155.0    0.00    0.06   -0.14   -0.56   -1.11   -1.56   -1.73   -1.49   -0.87   -0.04    0.79    1.43    1.88    2.26    2.78    3.54    4.39    4.99    4.89
+   160.0    0.00    0.06   -0.13   -0.56   -1.10   -1.55   -1.72   -1.50   -0.91   -0.11    0.68    1.29    1.70    2.06    2.54    3.27    4.11    4.72    4.68
+   165.0    0.00    0.06   -0.13   -0.55   -1.08   -1.53   -1.71   -1.50   -0.94   -0.19    0.55    1.11    1.48    1.79    2.23    2.91    3.71    4.32    4.33
+   170.0    0.00    0.06   -0.13   -0.55   -1.07   -1.51   -1.69   -1.50   -0.98   -0.28    0.40    0.91    1.23    1.48    1.87    2.49    3.25    3.83    3.85
+   175.0    0.00    0.06   -0.13   -0.54   -1.06   -1.50   -1.68   -1.51   -1.02   -0.37    0.25    0.70    0.97    1.16    1.48    2.03    2.73    3.28    3.30
+   180.0    0.00    0.06   -0.13   -0.54   -1.05   -1.48   -1.67   -1.52   -1.07   -0.47    0.11    0.50    0.71    0.85    1.09    1.56    2.19    2.69    2.69
+   185.0    0.00    0.06   -0.14   -0.54   -1.05   -1.47   -1.67   -1.54   -1.12   -0.56   -0.03    0.31    0.47    0.55    0.72    1.10    1.64    2.09    2.06
+   190.0    0.00    0.05   -0.14   -0.55   -1.04   -1.47   -1.67   -1.56   -1.17   -0.65   -0.16    0.14    0.25    0.26    0.35    0.64    1.10    1.48    1.43
+   195.0    0.00    0.05   -0.15   -0.55   -1.05   -1.47   -1.68   -1.58   -1.23   -0.73   -0.28    0.00    0.06    0.00    0.00    0.20    0.57    0.90    0.82
+   200.0    0.00    0.04   -0.16   -0.56   -1.05   -1.47   -1.69   -1.62   -1.28   -0.81   -0.38   -0.14   -0.12   -0.24   -0.33   -0.23    0.06    0.34    0.24
+   205.0    0.00    0.03   -0.17   -0.57   -1.06   -1.48   -1.71   -1.65   -1.33   -0.88   -0.47   -0.25   -0.28   -0.47   -0.65   -0.65   -0.43   -0.18   -0.29
+   210.0    0.00    0.02   -0.19   -0.58   -1.07   -1.49   -1.73   -1.68   -1.38   -0.94   -0.54   -0.35   -0.43   -0.70   -0.97   -1.06   -0.89   -0.64   -0.74
+   215.0    0.00    0.01   -0.20   -0.60   -1.08   -1.51   -1.75   -1.72   -1.43   -1.00   -0.62   -0.45   -0.57   -0.92   -1.28   -1.44   -1.31   -1.04   -1.10
+   220.0    0.00    0.00   -0.22   -0.61   -1.09   -1.52   -1.77   -1.76   -1.48   -1.06   -0.69   -0.54   -0.72   -1.14   -1.59   -1.81   -1.69   -1.37   -1.35
+   225.0    0.00   -0.01   -0.23   -0.63   -1.11   -1.54   -1.80   -1.80   -1.53   -1.12   -0.76   -0.64   -0.87   -1.36   -1.88   -2.15   -2.01   -1.62   -1.50
+   230.0    0.00   -0.02   -0.25   -0.65   -1.13   -1.56   -1.83   -1.84   -1.59   -1.19   -0.84   -0.75   -1.02   -1.57   -2.16   -2.46   -2.28   -1.78   -1.53
+   235.0    0.00   -0.03   -0.27   -0.67   -1.15   -1.59   -1.87   -1.89   -1.66   -1.27   -0.93   -0.86   -1.16   -1.77   -2.40   -2.71   -2.48   -1.85   -1.46
+   240.0    0.00   -0.04   -0.29   -0.69   -1.17   -1.62   -1.91   -1.96   -1.74   -1.37   -1.04   -0.98   -1.31   -1.94   -2.61   -2.91   -2.61   -1.85   -1.30
+   245.0    0.00   -0.06   -0.31   -0.71   -1.19   -1.65   -1.96   -2.03   -1.84   -1.48   -1.15   -1.09   -1.43   -2.08   -2.76   -3.04   -2.67   -1.79   -1.08
+   250.0    0.00   -0.07   -0.33   -0.73   -1.22   -1.68   -2.02   -2.11   -1.94   -1.60   -1.27   -1.20   -1.53   -2.18   -2.84   -3.10   -2.67   -1.67   -0.83
+   255.0    0.00   -0.08   -0.35   -0.75   -1.24   -1.72   -2.08   -2.20   -2.06   -1.73   -1.39   -1.30   -1.59   -2.22   -2.86   -3.09   -2.60   -1.52   -0.57
+   260.0    0.00   -0.10   -0.37   -0.78   -1.27   -1.76   -2.14   -2.29   -2.18   -1.85   -1.50   -1.37   -1.62   -2.19   -2.80   -3.00   -2.47   -1.34   -0.33
+   265.0    0.00   -0.11   -0.39   -0.80   -1.29   -1.79   -2.20   -2.38   -2.28   -1.96   -1.59   -1.42   -1.60   -2.11   -2.66   -2.82   -2.29   -1.14   -0.11
+   270.0    0.00   -0.12   -0.41   -0.82   -1.32   -1.83   -2.24   -2.45   -2.38   -2.06   -1.66   -1.42   -1.53   -1.96   -2.44   -2.58   -2.04   -0.92    0.07
+   275.0    0.00   -0.14   -0.43   -0.84   -1.33   -1.85   -2.28   -2.50   -2.44   -2.12   -1.69   -1.39   -1.41   -1.75   -2.16   -2.26   -1.73   -0.67    0.23
+   280.0    0.00   -0.15   -0.45   -0.86   -1.35   -1.86   -2.30   -2.53   -2.47   -2.14   -1.68   -1.32   -1.25   -1.49   -1.82   -1.87   -1.36   -0.39    0.39
+   285.0    0.00   -0.16   -0.46   -0.87   -1.36   -1.86   -2.29   -2.52   -2.47   -2.12   -1.63   -1.21   -1.05   -1.19   -1.42   -1.42   -0.94   -0.06    0.57
+   290.0    0.00   -0.17   -0.48   -0.89   -1.36   -1.85   -2.26   -2.48   -2.42   -2.06   -1.54   -1.07   -0.83   -0.86   -0.99   -0.93   -0.45    0.33    0.80
+   295.0    0.00   -0.18   -0.50   -0.90   -1.35   -1.82   -2.21   -2.41   -2.33   -1.96   -1.42   -0.90   -0.59   -0.52   -0.54   -0.40    0.08    0.78    1.10
+   300.0    0.00   -0.19   -0.51   -0.90   -1.34   -1.78   -2.14   -2.31   -2.21   -1.83   -1.28   -0.73   -0.35   -0.18   -0.09    0.14    0.66    1.28    1.47
+   305.0    0.00   -0.20   -0.52   -0.91   -1.32   -1.72   -2.04   -2.18   -2.06   -1.67   -1.12   -0.55   -0.13    0.14    0.35    0.69    1.25    1.84    1.94
+   310.0    0.00   -0.21   -0.54   -0.91   -1.30   -1.66   -1.93   -2.03   -1.89   -1.50   -0.96   -0.39    0.08    0.43    0.76    1.22    1.84    2.42    2.47
+   315.0    0.00   -0.22   -0.55   -0.91   -1.27   -1.59   -1.81   -1.87   -1.71   -1.33   -0.80   -0.24    0.26    0.68    1.13    1.70    2.40    3.01    3.05
+   320.0    0.00   -0.23   -0.56   -0.91   -1.24   -1.52   -1.69   -1.71   -1.53   -1.15   -0.65   -0.11    0.40    0.89    1.44    2.13    2.91    3.56    3.64
+   325.0    0.00   -0.24   -0.56   -0.91   -1.21   -1.44   -1.57   -1.54   -1.35   -0.99   -0.52    0.00    0.51    1.05    1.69    2.48    3.34    4.04    4.19
+   330.0    0.00   -0.24   -0.57   -0.90   -1.18   -1.37   -1.45   -1.39   -1.18   -0.83   -0.40    0.08    0.59    1.16    1.87    2.74    3.68    4.43    4.67
+   335.0    0.00   -0.25   -0.58   -0.90   -1.16   -1.31   -1.34   -1.24   -1.02   -0.69   -0.30    0.15    0.64    1.23    1.98    2.91    3.90    4.71    5.04
+   340.0    0.00   -0.25   -0.58   -0.90   -1.14   -1.25   -1.24   -1.11   -0.88   -0.56   -0.20    0.20    0.67    1.26    2.03    2.99    4.01    4.86    5.27
+   345.0    0.00   -0.25   -0.59   -0.90   -1.12   -1.21   -1.16   -1.00   -0.75   -0.45   -0.12    0.24    0.67    1.24    2.02    2.98    4.02    4.89    5.37
+   350.0    0.00   -0.26   -0.60   -0.91   -1.12   -1.18   -1.10   -0.91   -0.64   -0.34   -0.04    0.28    0.66    1.20    1.95    2.90    3.93    4.81    5.34
+   355.0    0.00   -0.26   -0.60   -0.91   -1.12   -1.16   -1.06   -0.83   -0.55   -0.25    0.03    0.30    0.64    1.13    1.84    2.76    3.76    4.64    5.19
+   360.0    0.00   -0.26   -0.60   -0.92   -1.12   -1.16   -1.03   -0.79   -0.48   -0.18    0.08    0.32    0.60    1.03    1.69    2.56    3.53    4.40    4.95
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -1.94      1.40     40.71                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.04   -0.14   -0.28   -0.42   -0.55   -0.66   -0.74   -0.77   -0.69   -0.46   -0.09    0.32    0.60    0.57    0.23   -0.20   -0.23    0.68
+     0.0    0.00   -0.12   -0.28   -0.44   -0.56   -0.60   -0.56   -0.44   -0.24    0.05    0.43    0.90    1.36    1.69    1.76    1.55    1.24    1.19    1.80
+     5.0    0.00   -0.12   -0.29   -0.44   -0.55   -0.57   -0.52   -0.39   -0.20    0.07    0.45    0.90    1.34    1.63    1.66    1.39    1.04    0.96    1.56
+    10.0    0.00   -0.13   -0.29   -0.44   -0.54   -0.55   -0.49   -0.37   -0.19    0.08    0.44    0.89    1.33    1.60    1.57    1.23    0.81    0.69    1.27
+    15.0    0.00   -0.13   -0.30   -0.45   -0.53   -0.54   -0.48   -0.37   -0.20    0.05    0.42    0.88    1.32    1.58    1.50    1.08    0.57    0.40    0.97
+    20.0    0.00   -0.14   -0.30   -0.45   -0.53   -0.54   -0.49   -0.39   -0.24    0.00    0.38    0.85    1.32    1.57    1.45    0.96    0.36    0.13    0.69
+    25.0    0.00   -0.14   -0.31   -0.46   -0.54   -0.55   -0.51   -0.43   -0.30   -0.07    0.31    0.82    1.31    1.57    1.43    0.87    0.19   -0.10    0.47
+    30.0    0.00   -0.14   -0.31   -0.46   -0.55   -0.56   -0.53   -0.48   -0.37   -0.16    0.23    0.76    1.28    1.57    1.41    0.81    0.07   -0.27    0.32
+    35.0    0.00   -0.14   -0.32   -0.47   -0.56   -0.58   -0.57   -0.54   -0.46   -0.26    0.12    0.67    1.22    1.54    1.40    0.77   -0.01   -0.37    0.25
+    40.0    0.00   -0.14   -0.32   -0.48   -0.57   -0.61   -0.61   -0.60   -0.55   -0.37    0.00    0.55    1.12    1.47    1.35    0.74   -0.05   -0.41    0.26
+    45.0    0.00   -0.14   -0.33   -0.49   -0.59   -0.63   -0.66   -0.67   -0.64   -0.49   -0.15    0.39    0.98    1.35    1.27    0.69   -0.07   -0.41    0.33
+    50.0    0.00   -0.14   -0.33   -0.50   -0.61   -0.66   -0.70   -0.73   -0.73   -0.62   -0.31    0.20    0.77    1.17    1.13    0.61   -0.10   -0.40    0.41
+    55.0    0.00   -0.14   -0.33   -0.51   -0.63   -0.69   -0.74   -0.78   -0.81   -0.73   -0.48   -0.02    0.52    0.92    0.93    0.47   -0.18   -0.41    0.47
+    60.0    0.00   -0.14   -0.33   -0.51   -0.64   -0.72   -0.77   -0.83   -0.88   -0.85   -0.65   -0.26    0.23    0.62    0.66    0.27   -0.31   -0.49    0.46
+    65.0    0.00   -0.14   -0.33   -0.52   -0.66   -0.75   -0.80   -0.87   -0.94   -0.95   -0.82   -0.51   -0.08    0.27    0.32   -0.01   -0.53   -0.66    0.35
+    70.0    0.00   -0.13   -0.33   -0.53   -0.68   -0.77   -0.83   -0.90   -0.99   -1.04   -0.98   -0.76   -0.41   -0.11   -0.05   -0.36   -0.83   -0.93    0.12
+    75.0    0.00   -0.13   -0.32   -0.53   -0.69   -0.79   -0.86   -0.93   -1.03   -1.12   -1.13   -0.99   -0.73   -0.48   -0.45   -0.75   -1.21   -1.30   -0.23
+    80.0    0.00   -0.12   -0.32   -0.53   -0.70   -0.81   -0.88   -0.96   -1.07   -1.19   -1.25   -1.19   -1.01   -0.84   -0.85   -1.17   -1.65   -1.77   -0.68
+    85.0    0.00   -0.12   -0.31   -0.52   -0.70   -0.82   -0.90   -0.98   -1.10   -1.24   -1.35   -1.35   -1.25   -1.15   -1.22   -1.58   -2.10   -2.28   -1.21
+    90.0    0.00   -0.11   -0.29   -0.51   -0.69   -0.82   -0.91   -1.00   -1.12   -1.28   -1.41   -1.47   -1.43   -1.39   -1.52   -1.95   -2.55   -2.79   -1.76
+    95.0    0.00   -0.10   -0.28   -0.49   -0.68   -0.82   -0.91   -1.00   -1.13   -1.29   -1.44   -1.52   -1.53   -1.55   -1.75   -2.25   -2.93   -3.26   -2.29
+   100.0    0.00   -0.09   -0.26   -0.47   -0.66   -0.80   -0.90   -0.99   -1.12   -1.28   -1.43   -1.53   -1.56   -1.62   -1.88   -2.45   -3.21   -3.63   -2.72
+   105.0    0.00   -0.08   -0.24   -0.44   -0.63   -0.77   -0.87   -0.97   -1.09   -1.24   -1.38   -1.47   -1.51   -1.60   -1.90   -2.53   -3.36   -3.86   -3.01
+   110.0    0.00   -0.07   -0.22   -0.40   -0.58   -0.72   -0.83   -0.92   -1.03   -1.16   -1.28   -1.36   -1.39   -1.49   -1.82   -2.48   -3.37   -3.92   -3.13
+   115.0    0.00   -0.06   -0.19   -0.36   -0.53   -0.66   -0.76   -0.85   -0.95   -1.06   -1.15   -1.19   -1.21   -1.30   -1.63   -2.31   -3.22   -3.80   -3.05
+   120.0    0.00   -0.05   -0.16   -0.31   -0.46   -0.58   -0.67   -0.75   -0.83   -0.91   -0.97   -0.98   -0.97   -1.04   -1.36   -2.03   -2.92   -3.50   -2.79
+   125.0    0.00   -0.03   -0.13   -0.26   -0.39   -0.49   -0.56   -0.62   -0.68   -0.74   -0.76   -0.73   -0.68   -0.72   -1.01   -1.65   -2.50   -3.04   -2.35
+   130.0    0.00   -0.02   -0.10   -0.21   -0.31   -0.39   -0.43   -0.47   -0.51   -0.53   -0.52   -0.44   -0.35   -0.36   -0.61   -1.19   -1.98   -2.47   -1.78
+   135.0    0.00   -0.01   -0.07   -0.15   -0.23   -0.27   -0.29   -0.31   -0.32   -0.31   -0.25   -0.14   -0.01    0.03   -0.17   -0.69   -1.39   -1.81   -1.13
+   140.0    0.00    0.00   -0.04   -0.10   -0.14   -0.16   -0.15   -0.13   -0.11   -0.07    0.03    0.18    0.36    0.43    0.28   -0.17   -0.78   -1.12   -0.45
+   145.0    0.00    0.01   -0.01   -0.04   -0.06   -0.04    0.00    0.05    0.10    0.18    0.31    0.51    0.72    0.84    0.73    0.35   -0.18   -0.45    0.20
+   150.0    0.00    0.02    0.02    0.01    0.02    0.07    0.14    0.22    0.30    0.41    0.58    0.82    1.07    1.23    1.17    0.85    0.39    0.18    0.80
+   155.0    0.00    0.03    0.04    0.05    0.09    0.17    0.27    0.37    0.48    0.62    0.83    1.10    1.40    1.60    1.58    1.31    0.90    0.73    1.30
+   160.0    0.00    0.04    0.06    0.09    0.15    0.25    0.37    0.50    0.63    0.79    1.03    1.35    1.68    1.93    1.95    1.72    1.36    1.19    1.68
+   165.0    0.00    0.05    0.08    0.12    0.20    0.32    0.46    0.60    0.74    0.92    1.19    1.53    1.91    2.20    2.27    2.07    1.74    1.56    1.94
+   170.0    0.00    0.06    0.09    0.14    0.23    0.36    0.51    0.66    0.81    1.00    1.28    1.66    2.07    2.41    2.52    2.36    2.04    1.83    2.08
+   175.0    0.00    0.06    0.10    0.15    0.25    0.38    0.53    0.68    0.83    1.02    1.31    1.70    2.16    2.53    2.70    2.58    2.27    2.02    2.12
+   180.0    0.00    0.07    0.11    0.16    0.25    0.38    0.52    0.66    0.80    0.98    1.27    1.67    2.15    2.57    2.79    2.71    2.42    2.12    2.09
+   185.0    0.00    0.07    0.11    0.15    0.23    0.35    0.49    0.61    0.73    0.89    1.16    1.56    2.06    2.52    2.78    2.76    2.48    2.16    1.99
+   190.0    0.00    0.07    0.11    0.14    0.21    0.31    0.42    0.52    0.61    0.74    0.98    1.38    1.88    2.37    2.68    2.71    2.47    2.12    1.84
+   195.0    0.00    0.07    0.10    0.12    0.16    0.24    0.33    0.40    0.46    0.55    0.76    1.13    1.63    2.14    2.49    2.56    2.36    2.02    1.68
+   200.0    0.00    0.07    0.09    0.09    0.11    0.15    0.21    0.24    0.27    0.32    0.50    0.83    1.32    1.84    2.21    2.32    2.17    1.86    1.50
+   205.0    0.00    0.07    0.08    0.06    0.05    0.06    0.07    0.07    0.05    0.07    0.20    0.51    0.97    1.48    1.86    1.99    1.88    1.63    1.31
+   210.0    0.00    0.07    0.07    0.02   -0.02   -0.05   -0.08   -0.13   -0.18   -0.20   -0.10    0.18    0.61    1.08    1.45    1.59    1.51    1.33    1.13
+   215.0    0.00    0.07    0.05   -0.02   -0.10   -0.17   -0.25   -0.34   -0.43   -0.48   -0.40   -0.15    0.25    0.68    1.00    1.12    1.07    0.99    0.96
+   220.0    0.00    0.06    0.04   -0.06   -0.17   -0.29   -0.42   -0.55   -0.68   -0.75   -0.69   -0.46   -0.09    0.29    0.55    0.61    0.57    0.60    0.80
+   225.0    0.00    0.06    0.02   -0.10   -0.25   -0.42   -0.59   -0.77   -0.93   -1.02   -0.95   -0.72   -0.39   -0.07    0.10    0.10    0.05    0.19    0.67
+   230.0    0.00    0.05    0.00   -0.13   -0.32   -0.54   -0.76   -0.99   -1.18   -1.26   -1.19   -0.95   -0.63   -0.37   -0.30   -0.40   -0.48   -0.21    0.58
+   235.0    0.00    0.05   -0.01   -0.17   -0.39   -0.65   -0.93   -1.20   -1.41   -1.49   -1.39   -1.13   -0.81   -0.62   -0.65   -0.86   -0.97   -0.58    0.52
+   240.0    0.00    0.04   -0.03   -0.20   -0.45   -0.75   -1.08   -1.39   -1.62   -1.68   -1.55   -1.25   -0.94   -0.80   -0.93   -1.25   -1.40   -0.91    0.51
+   245.0    0.00    0.04   -0.04   -0.23   -0.50   -0.84   -1.21   -1.55   -1.80   -1.85   -1.67   -1.34   -1.02   -0.91   -1.14   -1.55   -1.74   -1.16    0.55
+   250.0    0.00    0.03   -0.06   -0.26   -0.55   -0.91   -1.32   -1.69   -1.95   -1.98   -1.76   -1.38   -1.04   -0.97   -1.26   -1.76   -1.99   -1.32    0.64
+   255.0    0.00    0.02   -0.07   -0.28   -0.58   -0.97   -1.40   -1.80   -2.06   -2.07   -1.82   -1.39   -1.03   -0.97   -1.31   -1.87   -2.13   -1.40    0.76
+   260.0    0.00    0.02   -0.08   -0.29   -0.60   -1.01   -1.46   -1.87   -2.13   -2.13   -1.84   -1.37   -0.98   -0.92   -1.29   -1.89   -2.16   -1.40    0.90
+   265.0    0.00    0.01   -0.09   -0.30   -0.62   -1.03   -1.49   -1.91   -2.17   -2.15   -1.83   -1.33   -0.91   -0.84   -1.21   -1.82   -2.10   -1.32    1.04
+   270.0    0.00    0.00   -0.10   -0.31   -0.63   -1.04   -1.50   -1.92   -2.17   -2.13   -1.79   -1.27   -0.82   -0.72   -1.08   -1.69   -1.97   -1.19    1.18
+   275.0    0.00    0.00   -0.11   -0.32   -0.63   -1.04   -1.49   -1.90   -2.14   -2.09   -1.72   -1.18   -0.71   -0.58   -0.91   -1.49   -1.78   -1.04    1.28
+   280.0    0.00   -0.01   -0.12   -0.33   -0.63   -1.02   -1.46   -1.85   -2.07   -2.01   -1.63   -1.07   -0.57   -0.41   -0.70   -1.25   -1.54   -0.87    1.35
+   285.0    0.00   -0.02   -0.13   -0.34   -0.63   -1.00   -1.42   -1.79   -1.99   -1.90   -1.51   -0.94   -0.42   -0.22   -0.47   -0.98   -1.29   -0.70    1.37
+   290.0    0.00   -0.02   -0.14   -0.34   -0.63   -0.98   -1.37   -1.71   -1.88   -1.78   -1.38   -0.79   -0.25   -0.01   -0.21   -0.70   -1.02   -0.54    1.36
+   295.0    0.00   -0.03   -0.15   -0.35   -0.62   -0.96   -1.32   -1.63   -1.77   -1.64   -1.22   -0.62   -0.05    0.22    0.07   -0.39   -0.75   -0.39    1.33
+   300.0    0.00   -0.04   -0.16   -0.36   -0.62   -0.94   -1.27   -1.54   -1.64   -1.48   -1.05   -0.43    0.16    0.47    0.36   -0.08   -0.48   -0.24    1.29
+   305.0    0.00   -0.05   -0.17   -0.37   -0.62   -0.92   -1.22   -1.45   -1.51   -1.32   -0.87   -0.23    0.38    0.72    0.65    0.23   -0.21   -0.09    1.26
+   310.0    0.00   -0.05   -0.18   -0.38   -0.62   -0.90   -1.17   -1.36   -1.38   -1.16   -0.68   -0.04    0.59    0.97    0.94    0.54    0.06    0.08    1.27
+   315.0    0.00   -0.06   -0.19   -0.39   -0.62   -0.88   -1.11   -1.26   -1.25   -1.00   -0.50    0.16    0.80    1.21    1.22    0.84    0.34    0.27    1.32
+   320.0    0.00   -0.07   -0.20   -0.40   -0.62   -0.86   -1.06   -1.17   -1.11   -0.84   -0.33    0.34    0.99    1.43    1.47    1.11    0.61    0.48    1.41
+   325.0    0.00   -0.08   -0.22   -0.41   -0.62   -0.83   -1.00   -1.07   -0.98   -0.68   -0.17    0.49    1.15    1.60    1.68    1.36    0.87    0.70    1.55
+   330.0    0.00   -0.08   -0.23   -0.41   -0.62   -0.81   -0.94   -0.97   -0.85   -0.54   -0.03    0.63    1.28    1.74    1.84    1.56    1.10    0.93    1.70
+   335.0    0.00   -0.09   -0.24   -0.42   -0.61   -0.78   -0.87   -0.87   -0.72   -0.40    0.10    0.73    1.36    1.82    1.95    1.71    1.29    1.13    1.86
+   340.0    0.00   -0.10   -0.25   -0.43   -0.61   -0.74   -0.80   -0.77   -0.60   -0.28    0.20    0.80    1.41    1.85    2.00    1.79    1.42    1.29    1.99
+   345.0    0.00   -0.10   -0.26   -0.43   -0.60   -0.71   -0.74   -0.67   -0.49   -0.17    0.29    0.85    1.42    1.85    1.99    1.82    1.49    1.39    2.06
+   350.0    0.00   -0.11   -0.26   -0.44   -0.58   -0.67   -0.67   -0.58   -0.39   -0.08    0.36    0.88    1.41    1.81    1.94    1.78    1.48    1.41    2.06
+   355.0    0.00   -0.11   -0.27   -0.44   -0.57   -0.63   -0.61   -0.50   -0.30    0.00    0.40    0.90    1.39    1.75    1.86    1.68    1.39    1.34    1.98
+   360.0    0.00   -0.12   -0.28   -0.44   -0.56   -0.60   -0.56   -0.44   -0.24    0.05    0.43    0.90    1.36    1.69    1.76    1.55    1.24    1.19    1.80
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+LEIAT303        NONE                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               7    15-MAY-08 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+     -0.43      0.76     60.75                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.19   -0.70   -1.42   -2.24   -3.05   -3.82   -4.54   -5.20   -5.70   -5.91   -5.66   -4.85   -3.48   -1.65    0.51    2.91    5.60    8.65
+     0.0    0.00   -0.11   -0.53   -1.17   -1.94   -2.78   -3.65   -4.54   -5.39   -6.09   -6.49   -6.42   -5.80   -4.66   -3.10   -1.22    0.96    3.50    6.44
+     5.0    0.00   -0.11   -0.54   -1.20   -1.99   -2.85   -3.74   -4.64   -5.52   -6.25   -6.68   -6.66   -6.08   -4.96   -3.40   -1.50    0.72    3.32    6.34
+    10.0    0.00   -0.12   -0.56   -1.23   -2.04   -2.92   -3.82   -4.74   -5.63   -6.39   -6.86   -6.86   -6.31   -5.21   -3.64   -1.71    0.56    3.22    6.31
+    15.0    0.00   -0.12   -0.57   -1.27   -2.10   -2.98   -3.90   -4.83   -5.73   -6.51   -7.00   -7.03   -6.49   -5.39   -3.80   -1.83    0.49    3.20    6.34
+    20.0    0.00   -0.13   -0.59   -1.30   -2.15   -3.05   -3.97   -4.90   -5.80   -6.59   -7.09   -7.14   -6.62   -5.50   -3.88   -1.87    0.49    3.24    6.42
+    25.0    0.00   -0.13   -0.61   -1.34   -2.20   -3.11   -4.02   -4.95   -5.85   -6.64   -7.15   -7.20   -6.67   -5.54   -3.88   -1.82    0.57    3.34    6.54
+    30.0    0.00   -0.14   -0.63   -1.38   -2.25   -3.16   -4.07   -4.98   -5.87   -6.65   -7.16   -7.21   -6.67   -5.51   -3.81   -1.71    0.72    3.50    6.71
+    35.0    0.00   -0.15   -0.65   -1.41   -2.29   -3.20   -4.10   -5.00   -5.86   -6.62   -7.11   -7.15   -6.59   -5.41   -3.67   -1.53    0.92    3.70    6.92
+    40.0    0.00   -0.15   -0.67   -1.44   -2.33   -3.24   -4.13   -5.00   -5.83   -6.56   -7.03   -7.05   -6.46   -5.24   -3.47   -1.30    1.17    3.94    7.16
+    45.0    0.00   -0.16   -0.69   -1.47   -2.36   -3.26   -4.14   -4.98   -5.78   -6.47   -6.91   -6.89   -6.28   -5.03   -3.22   -1.02    1.46    4.23    7.44
+    50.0    0.00   -0.17   -0.70   -1.49   -2.38   -3.28   -4.13   -4.94   -5.70   -6.36   -6.75   -6.70   -6.05   -4.76   -2.92   -0.70    1.79    4.55    7.76
+    55.0    0.00   -0.17   -0.71   -1.51   -2.40   -3.29   -4.12   -4.89   -5.61   -6.22   -6.57   -6.48   -5.79   -4.47   -2.59   -0.34    2.15    4.91    8.10
+    60.0    0.00   -0.18   -0.72   -1.52   -2.41   -3.28   -4.09   -4.83   -5.51   -6.07   -6.37   -6.24   -5.51   -4.15   -2.24    0.04    2.54    5.29    8.47
+    65.0    0.00   -0.18   -0.73   -1.53   -2.41   -3.27   -4.05   -4.76   -5.40   -5.91   -6.16   -5.98   -5.21   -3.81   -1.87    0.43    2.95    5.70    8.86
+    70.0    0.00   -0.19   -0.74   -1.53   -2.40   -3.25   -4.01   -4.69   -5.29   -5.75   -5.95   -5.72   -4.91   -3.47   -1.50    0.83    3.36    6.11    9.26
+    75.0    0.00   -0.19   -0.74   -1.52   -2.39   -3.22   -3.95   -4.60   -5.17   -5.59   -5.74   -5.46   -4.60   -3.13   -1.13    1.22    3.78    6.53    9.66
+    80.0    0.00   -0.19   -0.74   -1.52   -2.37   -3.18   -3.89   -4.52   -5.05   -5.43   -5.54   -5.22   -4.32   -2.81   -0.78    1.60    4.17    6.94   10.05
+    85.0    0.00   -0.20   -0.74   -1.50   -2.34   -3.13   -3.82   -4.42   -4.93   -5.28   -5.35   -4.98   -4.05   -2.51   -0.45    1.94    4.54    7.32   10.42
+    90.0    0.00   -0.20   -0.74   -1.49   -2.30   -3.07   -3.75   -4.33   -4.81   -5.13   -5.17   -4.77   -3.80   -2.23   -0.16    2.25    4.87    7.66   10.75
+    95.0    0.00   -0.20   -0.73   -1.47   -2.26   -3.02   -3.67   -4.24   -4.70   -5.00   -5.01   -4.58   -3.58   -2.00    0.09    2.51    5.14    7.94   11.02
+   100.0    0.00   -0.20   -0.73   -1.45   -2.23   -2.96   -3.60   -4.14   -4.59   -4.87   -4.87   -4.41   -3.40   -1.80    0.28    2.71    5.34    8.15   11.23
+   105.0    0.00   -0.20   -0.72   -1.43   -2.18   -2.90   -3.52   -4.06   -4.49   -4.77   -4.75   -4.28   -3.26   -1.66    0.42    2.84    5.47    8.28   11.34
+   110.0    0.00   -0.20   -0.71   -1.41   -2.15   -2.84   -3.45   -3.98   -4.41   -4.68   -4.65   -4.18   -3.15   -1.56    0.50    2.89    5.51    8.31   11.37
+   115.0    0.00   -0.21   -0.71   -1.39   -2.11   -2.79   -3.39   -3.92   -4.35   -4.61   -4.58   -4.11   -3.09   -1.52    0.52    2.88    5.46    8.25   11.29
+   120.0    0.00   -0.21   -0.70   -1.37   -2.08   -2.75   -3.35   -3.87   -4.30   -4.57   -4.55   -4.08   -3.08   -1.53    0.47    2.78    5.32    8.08   11.10
+   125.0    0.00   -0.21   -0.70   -1.36   -2.06   -2.72   -3.32   -3.84   -4.28   -4.56   -4.55   -4.10   -3.11   -1.59    0.36    2.62    5.11    7.82   10.80
+   130.0    0.00   -0.21   -0.70   -1.35   -2.05   -2.71   -3.30   -3.83   -4.29   -4.58   -4.58   -4.15   -3.18   -1.70    0.20    2.40    4.82    7.47   10.40
+   135.0    0.00   -0.21   -0.70   -1.35   -2.04   -2.70   -3.31   -3.85   -4.32   -4.63   -4.65   -4.24   -3.30   -1.86   -0.02    2.11    4.46    7.05    9.92
+   140.0    0.00   -0.21   -0.70   -1.35   -2.05   -2.72   -3.33   -3.89   -4.38   -4.71   -4.75   -4.37   -3.46   -2.07   -0.28    1.78    4.05    6.57    9.38
+   145.0    0.00   -0.21   -0.70   -1.36   -2.06   -2.74   -3.37   -3.96   -4.46   -4.82   -4.89   -4.53   -3.66   -2.31   -0.59    1.40    3.60    6.05    8.80
+   150.0    0.00   -0.22   -0.71   -1.37   -2.08   -2.78   -3.43   -4.04   -4.57   -4.95   -5.05   -4.72   -3.89   -2.59   -0.92    1.00    3.13    5.52    8.22
+   155.0    0.00   -0.22   -0.71   -1.38   -2.11   -2.83   -3.51   -4.14   -4.70   -5.10   -5.23   -4.93   -4.15   -2.89   -1.28    0.58    2.65    4.99    7.66
+   160.0    0.00   -0.22   -0.72   -1.40   -2.15   -2.89   -3.59   -4.25   -4.84   -5.27   -5.42   -5.16   -4.42   -3.22   -1.66    0.15    2.18    4.50    7.15
+   165.0    0.00   -0.23   -0.73   -1.43   -2.19   -2.95   -3.68   -4.37   -4.98   -5.45   -5.63   -5.41   -4.70   -3.54   -2.03   -0.26    1.74    4.05    6.72
+   170.0    0.00   -0.23   -0.74   -1.45   -2.24   -3.02   -3.78   -4.49   -5.14   -5.63   -5.85   -5.65   -4.99   -3.87   -2.39   -0.65    1.34    3.66    6.38
+   175.0    0.00   -0.23   -0.76   -1.48   -2.28   -3.09   -3.88   -4.62   -5.29   -5.81   -6.06   -5.90   -5.26   -4.18   -2.73   -1.01    1.00    3.36    6.14
+   180.0    0.00   -0.23   -0.77   -1.50   -2.33   -3.17   -3.97   -4.74   -5.44   -5.99   -6.26   -6.13   -5.52   -4.46   -3.03   -1.30    0.73    3.15    6.02
+   185.0    0.00   -0.24   -0.78   -1.53   -2.38   -3.23   -4.07   -4.86   -5.59   -6.16   -6.45   -6.34   -5.75   -4.70   -3.28   -1.54    0.53    3.03    5.99
+   190.0    0.00   -0.24   -0.79   -1.56   -2.42   -3.30   -4.16   -4.97   -5.72   -6.32   -6.63   -6.53   -5.95   -4.90   -3.46   -1.69    0.43    3.00    6.05
+   195.0    0.00   -0.24   -0.80   -1.58   -2.46   -3.36   -4.24   -5.08   -5.85   -6.46   -6.78   -6.69   -6.10   -5.04   -3.57   -1.76    0.42    3.05    6.19
+   200.0    0.00   -0.24   -0.81   -1.61   -2.50   -3.42   -4.31   -5.17   -5.96   -6.58   -6.91   -6.81   -6.21   -5.12   -3.61   -1.74    0.49    3.19    6.39
+   205.0    0.00   -0.25   -0.82   -1.63   -2.53   -3.46   -4.37   -5.25   -6.05   -6.68   -7.01   -6.90   -6.26   -5.13   -3.56   -1.64    0.65    3.39    6.62
+   210.0    0.00   -0.25   -0.83   -1.64   -2.56   -3.50   -4.43   -5.31   -6.12   -6.76   -7.08   -6.94   -6.26   -5.07   -3.45   -1.47    0.87    3.64    6.88
+   215.0    0.00   -0.25   -0.84   -1.66   -2.58   -3.54   -4.47   -5.36   -6.18   -6.81   -7.11   -6.94   -6.22   -4.96   -3.27   -1.23    1.16    3.94    7.15
+   220.0    0.00   -0.25   -0.84   -1.67   -2.60   -3.56   -4.50   -5.39   -6.20   -6.82   -7.10   -6.89   -6.12   -4.80   -3.04   -0.93    1.48    4.26    7.44
+   225.0    0.00   -0.24   -0.84   -1.67   -2.61   -3.57   -4.51   -5.40   -6.20   -6.81   -7.06   -6.81   -5.98   -4.60   -2.77   -0.61    1.84    4.61    7.74
+   230.0    0.00   -0.24   -0.84   -1.67   -2.61   -3.57   -4.50   -5.39   -6.17   -6.75   -6.97   -6.68   -5.80   -4.36   -2.47   -0.26    2.21    4.97    8.05
+   235.0    0.00   -0.24   -0.83   -1.67   -2.61   -3.56   -4.48   -5.35   -6.11   -6.66   -6.85   -6.53   -5.60   -4.11   -2.17    0.08    2.58    5.34    8.40
+   240.0    0.00   -0.23   -0.83   -1.66   -2.59   -3.54   -4.44   -5.29   -6.02   -6.54   -6.70   -6.34   -5.38   -3.86   -1.88    0.42    2.94    5.71    8.77
+   245.0    0.00   -0.23   -0.82   -1.64   -2.57   -3.50   -4.38   -5.20   -5.90   -6.39   -6.52   -6.13   -5.16   -3.60   -1.59    0.74    3.30    6.09    9.18
+   250.0    0.00   -0.22   -0.80   -1.62   -2.54   -3.45   -4.31   -5.09   -5.76   -6.21   -6.32   -5.92   -4.93   -3.36   -1.33    1.03    3.63    6.47    9.62
+   255.0    0.00   -0.22   -0.79   -1.60   -2.50   -3.39   -4.22   -4.97   -5.60   -6.02   -6.10   -5.70   -4.70   -3.14   -1.09    1.31    3.95    6.85   10.08
+   260.0    0.00   -0.21   -0.77   -1.57   -2.45   -3.32   -4.12   -4.83   -5.42   -5.82   -5.89   -5.48   -4.49   -2.93   -0.87    1.56    4.25    7.23   10.56
+   265.0    0.00   -0.20   -0.75   -1.53   -2.40   -3.24   -4.01   -4.69   -5.25   -5.62   -5.68   -5.27   -4.30   -2.73   -0.66    1.79    4.54    7.58   11.02
+   270.0    0.00   -0.19   -0.73   -1.50   -2.34   -3.16   -3.90   -4.54   -5.07   -5.42   -5.48   -5.08   -4.12   -2.56   -0.48    2.01    4.80    7.92   11.45
+   275.0    0.00   -0.18   -0.71   -1.45   -2.28   -3.07   -3.78   -4.39   -4.90   -5.25   -5.30   -4.91   -3.96   -2.40   -0.30    2.21    5.05    8.21   11.81
+   280.0    0.00   -0.17   -0.68   -1.41   -2.21   -2.98   -3.67   -4.26   -4.75   -5.09   -5.15   -4.77   -3.82   -2.26   -0.14    2.40    5.26    8.45   12.08
+   285.0    0.00   -0.17   -0.66   -1.37   -2.15   -2.89   -3.56   -4.13   -4.62   -4.96   -5.03   -4.66   -3.70   -2.13    0.01    2.56    5.43    8.61   12.24
+   290.0    0.00   -0.16   -0.64   -1.32   -2.08   -2.81   -3.46   -4.03   -4.52   -4.86   -4.94   -4.57   -3.61   -2.02    0.13    2.70    5.55    8.69   12.26
+   295.0    0.00   -0.15   -0.61   -1.28   -2.02   -2.73   -3.37   -3.94   -4.44   -4.79   -4.88   -4.51   -3.54   -1.93    0.23    2.79    5.61    8.68   12.15
+   300.0    0.00   -0.14   -0.59   -1.24   -1.97   -2.66   -3.30   -3.88   -4.38   -4.76   -4.85   -4.48   -3.50   -1.88    0.29    2.82    5.59    8.56   11.90
+   305.0    0.00   -0.13   -0.57   -1.20   -1.91   -2.61   -3.24   -3.83   -4.36   -4.75   -4.85   -4.48   -3.49   -1.86    0.30    2.79    5.48    8.34   11.52
+   310.0    0.00   -0.12   -0.55   -1.17   -1.87   -2.56   -3.21   -3.81   -4.36   -4.77   -4.89   -4.51   -3.52   -1.89    0.24    2.68    5.28    8.02   11.05
+   315.0    0.00   -0.12   -0.53   -1.14   -1.84   -2.53   -3.18   -3.81   -4.39   -4.82   -4.95   -4.58   -3.59   -1.97    0.12    2.49    4.99    7.61   10.49
+   320.0    0.00   -0.11   -0.52   -1.12   -1.81   -2.51   -3.18   -3.83   -4.44   -4.89   -5.03   -4.68   -3.70   -2.11   -0.07    2.22    4.62    7.13    9.89
+   325.0    0.00   -0.11   -0.51   -1.10   -1.79   -2.50   -3.20   -3.88   -4.51   -4.99   -5.15   -4.81   -3.85   -2.31   -0.34    1.87    4.18    6.60    9.28
+   330.0    0.00   -0.10   -0.50   -1.09   -1.79   -2.51   -3.23   -3.94   -4.60   -5.11   -5.29   -4.97   -4.05   -2.57   -0.67    1.46    3.69    6.06    8.68
+   335.0    0.00   -0.10   -0.49   -1.09   -1.79   -2.53   -3.27   -4.01   -4.71   -5.25   -5.46   -5.17   -4.29   -2.87   -1.05    1.00    3.17    5.51    8.12
+   340.0    0.00   -0.10   -0.49   -1.09   -1.81   -2.56   -3.33   -4.10   -4.83   -5.40   -5.64   -5.39   -4.57   -3.21   -1.46    0.51    2.65    4.99    7.63
+   345.0    0.00   -0.10   -0.50   -1.11   -1.83   -2.60   -3.40   -4.20   -4.97   -5.57   -5.85   -5.64   -4.87   -3.58   -1.90    0.03    2.14    4.51    7.21
+   350.0    0.00   -0.10   -0.50   -1.12   -1.86   -2.66   -3.48   -4.31   -5.11   -5.74   -6.06   -5.90   -5.19   -3.95   -2.33   -0.44    1.68    4.10    6.87
+   355.0    0.00   -0.10   -0.51   -1.14   -1.90   -2.72   -3.56   -4.42   -5.25   -5.92   -6.28   -6.16   -5.50   -4.32   -2.73   -0.86    1.28    3.76    6.62
+   360.0    0.00   -0.11   -0.53   -1.17   -1.94   -2.78   -3.65   -4.54   -5.39   -6.09   -6.49   -6.42   -5.80   -4.66   -3.10   -1.22    0.96    3.50    6.44
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.29      0.18     84.62                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.06   -0.24   -0.55   -1.00   -1.54   -2.11   -2.65   -3.08   -3.38   -3.52   -3.50   -3.28   -2.78   -1.85   -0.34    1.80    4.48    7.33
+     0.0    0.00   -0.06   -0.22   -0.50   -0.90   -1.42   -2.00   -2.55   -2.98   -3.25   -3.34   -3.25   -3.01   -2.56   -1.78   -0.49    1.49    4.17    7.32
+     5.0    0.00   -0.05   -0.21   -0.50   -0.91   -1.44   -2.02   -2.57   -3.01   -3.28   -3.38   -3.30   -3.08   -2.65   -1.88   -0.59    1.40    4.09    7.19
+    10.0    0.00   -0.05   -0.21   -0.50   -0.92   -1.45   -2.04   -2.60   -3.04   -3.32   -3.42   -3.36   -3.15   -2.73   -1.96   -0.66    1.35    4.03    7.06
+    15.0    0.00   -0.05   -0.21   -0.51   -0.94   -1.48   -2.07   -2.63   -3.08   -3.36   -3.48   -3.43   -3.23   -2.81   -2.03   -0.70    1.33    4.01    6.96
+    20.0    0.00   -0.05   -0.21   -0.51   -0.95   -1.50   -2.10   -2.66   -3.11   -3.41   -3.53   -3.50   -3.31   -2.88   -2.08   -0.71    1.35    4.03    6.88
+    25.0    0.00   -0.05   -0.22   -0.52   -0.97   -1.52   -2.13   -2.69   -3.15   -3.45   -3.59   -3.58   -3.39   -2.95   -2.12   -0.70    1.40    4.07    6.84
+    30.0    0.00   -0.05   -0.22   -0.53   -0.99   -1.55   -2.15   -2.72   -3.18   -3.49   -3.65   -3.65   -3.47   -3.02   -2.14   -0.67    1.48    4.15    6.83
+    35.0    0.00   -0.04   -0.22   -0.54   -1.00   -1.57   -2.17   -2.74   -3.20   -3.52   -3.70   -3.72   -3.55   -3.08   -2.16   -0.62    1.57    4.24    6.86
+    40.0    0.00   -0.04   -0.22   -0.55   -1.02   -1.59   -2.19   -2.75   -3.21   -3.55   -3.74   -3.78   -3.62   -3.13   -2.17   -0.58    1.65    4.34    6.92
+    45.0    0.00   -0.04   -0.22   -0.56   -1.03   -1.60   -2.20   -2.76   -3.22   -3.56   -3.77   -3.83   -3.67   -3.18   -2.18   -0.55    1.73    4.43    7.01
+    50.0    0.00   -0.04   -0.23   -0.56   -1.04   -1.61   -2.21   -2.76   -3.22   -3.57   -3.79   -3.87   -3.72   -3.22   -2.20   -0.54    1.77    4.51    7.12
+    55.0    0.00   -0.04   -0.23   -0.57   -1.05   -1.62   -2.21   -2.75   -3.21   -3.56   -3.79   -3.88   -3.75   -3.25   -2.22   -0.54    1.80    4.56    7.23
+    60.0    0.00   -0.04   -0.23   -0.57   -1.05   -1.62   -2.21   -2.75   -3.20   -3.54   -3.78   -3.88   -3.76   -3.26   -2.24   -0.55    1.79    4.59    7.34
+    65.0    0.00   -0.04   -0.23   -0.57   -1.06   -1.62   -2.20   -2.73   -3.18   -3.52   -3.76   -3.87   -3.75   -3.27   -2.26   -0.58    1.77    4.59    7.45
+    70.0    0.00   -0.04   -0.23   -0.57   -1.06   -1.62   -2.20   -2.72   -3.16   -3.50   -3.73   -3.83   -3.73   -3.26   -2.27   -0.61    1.73    4.59    7.55
+    75.0    0.00   -0.04   -0.23   -0.57   -1.06   -1.62   -2.19   -2.71   -3.14   -3.47   -3.69   -3.79   -3.68   -3.23   -2.27   -0.64    1.69    4.57    7.65
+    80.0    0.00   -0.04   -0.22   -0.57   -1.05   -1.61   -2.19   -2.70   -3.12   -3.43   -3.65   -3.74   -3.63   -3.19   -2.25   -0.64    1.67    4.56    7.73
+    85.0    0.00   -0.04   -0.22   -0.57   -1.05   -1.61   -2.18   -2.69   -3.10   -3.40   -3.60   -3.68   -3.57   -3.14   -2.21   -0.63    1.66    4.57    7.79
+    90.0    0.00   -0.04   -0.22   -0.56   -1.04   -1.60   -2.17   -2.68   -3.09   -3.38   -3.56   -3.62   -3.50   -3.07   -2.15   -0.59    1.69    4.59    7.85
+    95.0    0.00   -0.03   -0.22   -0.55   -1.03   -1.59   -2.16   -2.67   -3.07   -3.35   -3.52   -3.56   -3.43   -2.99   -2.07   -0.51    1.75    4.64    7.90
+   100.0    0.00   -0.03   -0.21   -0.55   -1.02   -1.58   -2.15   -2.66   -3.06   -3.33   -3.48   -3.51   -3.36   -2.90   -1.97   -0.42    1.84    4.70    7.93
+   105.0    0.00   -0.03   -0.21   -0.54   -1.01   -1.56   -2.14   -2.65   -3.04   -3.31   -3.45   -3.46   -3.29   -2.81   -1.87   -0.30    1.94    4.77    7.96
+   110.0    0.00   -0.03   -0.21   -0.53   -0.99   -1.55   -2.12   -2.63   -3.03   -3.29   -3.42   -3.42   -3.23   -2.73   -1.76   -0.18    2.06    4.85    7.96
+   115.0    0.00   -0.03   -0.20   -0.52   -0.98   -1.53   -2.10   -2.62   -3.01   -3.27   -3.40   -3.39   -3.18   -2.65   -1.66   -0.06    2.17    4.92    7.95
+   120.0    0.00   -0.03   -0.20   -0.51   -0.97   -1.51   -2.08   -2.60   -3.00   -3.26   -3.38   -3.36   -3.13   -2.58   -1.56    0.05    2.27    4.97    7.92
+   125.0    0.00   -0.03   -0.20   -0.51   -0.95   -1.50   -2.06   -2.58   -2.98   -3.24   -3.37   -3.34   -3.10   -2.53   -1.49    0.13    2.34    4.99    7.87
+   130.0    0.00   -0.03   -0.19   -0.50   -0.94   -1.48   -2.04   -2.55   -2.96   -3.23   -3.35   -3.32   -3.07   -2.49   -1.43    0.19    2.37    4.98    7.80
+   135.0    0.00   -0.03   -0.19   -0.49   -0.93   -1.46   -2.02   -2.53   -2.94   -3.21   -3.34   -3.31   -3.05   -2.46   -1.40    0.21    2.37    4.94    7.72
+   140.0    0.00   -0.03   -0.19   -0.49   -0.92   -1.45   -2.00   -2.51   -2.92   -3.20   -3.33   -3.30   -3.04   -2.45   -1.39    0.21    2.33    4.87    7.62
+   145.0    0.00   -0.03   -0.19   -0.48   -0.91   -1.43   -1.99   -2.50   -2.91   -3.19   -3.32   -3.29   -3.04   -2.44   -1.40    0.18    2.27    4.77    7.52
+   150.0    0.00   -0.03   -0.19   -0.48   -0.91   -1.42   -1.97   -2.48   -2.90   -3.18   -3.32   -3.29   -3.03   -2.45   -1.42    0.13    2.19    4.67    7.42
+   155.0    0.00   -0.04   -0.19   -0.48   -0.90   -1.42   -1.96   -2.47   -2.89   -3.18   -3.32   -3.29   -3.04   -2.46   -1.45    0.07    2.10    4.56    7.33
+   160.0    0.00   -0.04   -0.19   -0.48   -0.90   -1.41   -1.96   -2.47   -2.89   -3.18   -3.32   -3.30   -3.05   -2.48   -1.49    0.00    2.01    4.46    7.24
+   165.0    0.00   -0.04   -0.20   -0.49   -0.90   -1.41   -1.96   -2.47   -2.89   -3.19   -3.33   -3.31   -3.06   -2.50   -1.53   -0.06    1.92    4.37    7.16
+   170.0    0.00   -0.04   -0.20   -0.49   -0.91   -1.42   -1.97   -2.48   -2.91   -3.20   -3.34   -3.32   -3.07   -2.52   -1.57   -0.12    1.85    4.30    7.09
+   175.0    0.00   -0.04   -0.20   -0.49   -0.91   -1.42   -1.98   -2.50   -2.92   -3.22   -3.36   -3.33   -3.09   -2.55   -1.61   -0.17    1.79    4.24    7.02
+   180.0    0.00   -0.05   -0.21   -0.50   -0.92   -1.43   -1.99   -2.52   -2.95   -3.24   -3.39   -3.35   -3.11   -2.57   -1.65   -0.22    1.75    4.20    6.95
+   185.0    0.00   -0.05   -0.21   -0.51   -0.93   -1.45   -2.01   -2.54   -2.98   -3.28   -3.41   -3.37   -3.13   -2.60   -1.68   -0.27    1.71    4.17    6.89
+   190.0    0.00   -0.05   -0.22   -0.51   -0.93   -1.46   -2.03   -2.57   -3.01   -3.31   -3.44   -3.40   -3.15   -2.63   -1.72   -0.32    1.66    4.14    6.82
+   195.0    0.00   -0.06   -0.23   -0.52   -0.94   -1.47   -2.05   -2.60   -3.05   -3.35   -3.47   -3.42   -3.17   -2.66   -1.77   -0.37    1.62    4.10    6.74
+   200.0    0.00   -0.06   -0.23   -0.53   -0.95   -1.49   -2.07   -2.63   -3.09   -3.39   -3.50   -3.44   -3.19   -2.69   -1.82   -0.43    1.56    4.06    6.67
+   205.0    0.00   -0.06   -0.24   -0.54   -0.96   -1.50   -2.10   -2.66   -3.13   -3.42   -3.54   -3.47   -3.21   -2.72   -1.87   -0.49    1.50    4.01    6.60
+   210.0    0.00   -0.07   -0.24   -0.55   -0.97   -1.52   -2.12   -2.70   -3.16   -3.46   -3.57   -3.49   -3.23   -2.75   -1.92   -0.56    1.43    3.96    6.54
+   215.0    0.00   -0.07   -0.25   -0.55   -0.98   -1.53   -2.14   -2.72   -3.20   -3.50   -3.60   -3.51   -3.26   -2.79   -1.98   -0.64    1.36    3.91    6.50
+   220.0    0.00   -0.07   -0.26   -0.56   -0.99   -1.54   -2.15   -2.75   -3.23   -3.53   -3.62   -3.54   -3.29   -2.83   -2.04   -0.71    1.30    3.88    6.48
+   225.0    0.00   -0.08   -0.27   -0.57   -1.00   -1.55   -2.17   -2.77   -3.25   -3.55   -3.65   -3.56   -3.32   -2.87   -2.09   -0.77    1.25    3.86    6.50
+   230.0    0.00   -0.08   -0.27   -0.58   -1.01   -1.56   -2.18   -2.78   -3.27   -3.58   -3.67   -3.59   -3.35   -2.91   -2.14   -0.81    1.22    3.87    6.55
+   235.0    0.00   -0.08   -0.28   -0.59   -1.02   -1.57   -2.19   -2.79   -3.28   -3.59   -3.69   -3.62   -3.38   -2.95   -2.18   -0.84    1.22    3.91    6.64
+   240.0    0.00   -0.09   -0.29   -0.60   -1.03   -1.58   -2.19   -2.79   -3.28   -3.60   -3.71   -3.65   -3.42   -2.99   -2.21   -0.85    1.25    3.98    6.77
+   245.0    0.00   -0.09   -0.29   -0.61   -1.04   -1.59   -2.19   -2.79   -3.28   -3.60   -3.72   -3.67   -3.46   -3.03   -2.23   -0.84    1.30    4.08    6.92
+   250.0    0.00   -0.09   -0.30   -0.62   -1.05   -1.59   -2.19   -2.78   -3.27   -3.59   -3.73   -3.69   -3.49   -3.06   -2.23   -0.80    1.38    4.20    7.08
+   255.0    0.00   -0.09   -0.30   -0.62   -1.06   -1.60   -2.19   -2.77   -3.25   -3.58   -3.72   -3.71   -3.52   -3.08   -2.23   -0.75    1.48    4.34    7.25
+   260.0    0.00   -0.09   -0.31   -0.63   -1.07   -1.60   -2.19   -2.76   -3.23   -3.55   -3.72   -3.72   -3.54   -3.09   -2.21   -0.68    1.60    4.48    7.41
+   265.0    0.00   -0.10   -0.31   -0.64   -1.08   -1.61   -2.19   -2.74   -3.20   -3.53   -3.70   -3.71   -3.54   -3.09   -2.17   -0.60    1.71    4.61    7.55
+   270.0    0.00   -0.10   -0.31   -0.64   -1.09   -1.61   -2.18   -2.72   -3.18   -3.50   -3.67   -3.70   -3.53   -3.07   -2.12   -0.52    1.82    4.72    7.65
+   275.0    0.00   -0.10   -0.31   -0.65   -1.09   -1.62   -2.18   -2.71   -3.15   -3.46   -3.64   -3.67   -3.51   -3.03   -2.06   -0.42    1.93    4.81    7.73
+   280.0    0.00   -0.10   -0.31   -0.65   -1.09   -1.62   -2.17   -2.69   -3.12   -3.43   -3.60   -3.64   -3.47   -2.98   -1.99   -0.33    2.02    4.88    7.78
+   285.0    0.00   -0.10   -0.31   -0.65   -1.09   -1.62   -2.17   -2.68   -3.10   -3.39   -3.56   -3.59   -3.42   -2.91   -1.90   -0.23    2.10    4.92    7.79
+   290.0    0.00   -0.10   -0.31   -0.65   -1.09   -1.62   -2.16   -2.67   -3.08   -3.36   -3.52   -3.54   -3.35   -2.83   -1.80   -0.14    2.17    4.95    7.79
+   295.0    0.00   -0.09   -0.31   -0.64   -1.09   -1.61   -2.15   -2.65   -3.05   -3.33   -3.48   -3.48   -3.27   -2.73   -1.70   -0.05    2.23    4.95    7.78
+   300.0    0.00   -0.09   -0.30   -0.63   -1.08   -1.60   -2.14   -2.64   -3.04   -3.30   -3.43   -3.42   -3.19   -2.64   -1.60    0.04    2.27    4.95    7.76
+   305.0    0.00   -0.09   -0.30   -0.62   -1.06   -1.58   -2.13   -2.63   -3.02   -3.28   -3.40   -3.36   -3.11   -2.54   -1.50    0.11    2.31    4.94    7.75
+   310.0    0.00   -0.09   -0.29   -0.61   -1.05   -1.57   -2.11   -2.61   -3.00   -3.26   -3.36   -3.30   -3.03   -2.45   -1.42    0.17    2.33    4.92    7.75
+   315.0    0.00   -0.08   -0.28   -0.60   -1.03   -1.54   -2.09   -2.59   -2.99   -3.24   -3.33   -3.26   -2.97   -2.37   -1.35    0.21    2.33    4.90    7.75
+   320.0    0.00   -0.08   -0.27   -0.58   -1.01   -1.52   -2.07   -2.57   -2.97   -3.22   -3.31   -3.22   -2.91   -2.31   -1.30    0.23    2.31    4.87    7.76
+   325.0    0.00   -0.08   -0.26   -0.57   -0.98   -1.49   -2.04   -2.55   -2.96   -3.21   -3.29   -3.18   -2.87   -2.27   -1.28    0.22    2.27    4.83    7.77
+   330.0    0.00   -0.07   -0.25   -0.55   -0.96   -1.47   -2.02   -2.54   -2.95   -3.20   -3.27   -3.16   -2.85   -2.26   -1.29    0.18    2.20    4.77    7.77
+   335.0    0.00   -0.07   -0.25   -0.54   -0.94   -1.45   -2.00   -2.52   -2.94   -3.19   -3.27   -3.15   -2.84   -2.26   -1.33    0.10    2.11    4.70    7.75
+   340.0    0.00   -0.07   -0.24   -0.52   -0.93   -1.43   -1.99   -2.51   -2.94   -3.19   -3.26   -3.15   -2.85   -2.29   -1.39    0.01    2.00    4.61    7.71
+   345.0    0.00   -0.06   -0.23   -0.51   -0.91   -1.42   -1.98   -2.51   -2.94   -3.20   -3.27   -3.16   -2.87   -2.34   -1.47   -0.11    1.87    4.50    7.65
+   350.0    0.00   -0.06   -0.23   -0.50   -0.91   -1.41   -1.98   -2.52   -2.95   -3.21   -3.28   -3.18   -2.90   -2.41   -1.57   -0.24    1.74    4.39    7.56
+   355.0    0.00   -0.06   -0.22   -0.50   -0.90   -1.41   -1.98   -2.53   -2.96   -3.23   -3.31   -3.21   -2.95   -2.48   -1.68   -0.37    1.61    4.28    7.44
+   360.0    0.00   -0.06   -0.22   -0.50   -0.90   -1.42   -2.00   -2.55   -2.98   -3.25   -3.34   -3.25   -3.01   -2.56   -1.78   -0.49    1.49    4.17    7.32
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+LEIAT303        LEIC                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH              43    20-APR-05 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+     -0.47      0.55     61.64                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.18   -0.68   -1.39   -2.20   -2.99   -3.75   -4.45   -5.08   -5.55   -5.74   -5.49   -4.71   -3.38   -1.59    0.54    2.91    5.52    8.41
+     0.0    0.00   -0.14   -0.58   -1.23   -1.99   -2.79   -3.58   -4.38   -5.14   -5.75   -6.06   -5.90   -5.18   -3.90   -2.19   -0.18    2.08    4.64    7.62
+     5.0    0.00   -0.14   -0.59   -1.25   -2.03   -2.83   -3.64   -4.44   -5.21   -5.84   -6.17   -6.04   -5.34   -4.08   -2.37   -0.34    1.94    4.52    7.51
+    10.0    0.00   -0.14   -0.60   -1.28   -2.06   -2.87   -3.69   -4.50   -5.28   -5.92   -6.28   -6.17   -5.48   -4.23   -2.51   -0.47    1.84    4.44    7.44
+    15.0    0.00   -0.15   -0.61   -1.30   -2.09   -2.92   -3.74   -4.56   -5.34   -5.99   -6.36   -6.26   -5.60   -4.35   -2.63   -0.56    1.78    4.40    7.40
+    20.0    0.00   -0.15   -0.63   -1.32   -2.13   -2.96   -3.79   -4.60   -5.38   -6.04   -6.41   -6.33   -5.68   -4.43   -2.70   -0.61    1.75    4.40    7.39
+    25.0    0.00   -0.16   -0.64   -1.35   -2.16   -3.00   -3.83   -4.64   -5.41   -6.07   -6.44   -6.37   -5.72   -4.48   -2.73   -0.62    1.76    4.42    7.42
+    30.0    0.00   -0.16   -0.65   -1.37   -2.20   -3.04   -3.86   -4.66   -5.43   -6.07   -6.44   -6.37   -5.72   -4.47   -2.72   -0.59    1.80    4.47    7.47
+    35.0    0.00   -0.16   -0.66   -1.39   -2.22   -3.07   -3.89   -4.68   -5.43   -6.06   -6.41   -6.33   -5.68   -4.43   -2.67   -0.54    1.87    4.54    7.55
+    40.0    0.00   -0.17   -0.68   -1.41   -2.25   -3.09   -3.91   -4.69   -5.42   -6.02   -6.36   -6.26   -5.60   -4.35   -2.58   -0.45    1.96    4.63    7.64
+    45.0    0.00   -0.17   -0.69   -1.43   -2.27   -3.11   -3.92   -4.68   -5.39   -5.97   -6.29   -6.17   -5.49   -4.23   -2.46   -0.33    2.07    4.74    7.76
+    50.0    0.00   -0.18   -0.70   -1.44   -2.29   -3.13   -3.93   -4.67   -5.36   -5.91   -6.20   -6.06   -5.36   -4.08   -2.31   -0.18    2.21    4.87    7.88
+    55.0    0.00   -0.18   -0.70   -1.45   -2.30   -3.14   -3.92   -4.66   -5.32   -5.84   -6.10   -5.93   -5.21   -3.92   -2.14   -0.01    2.37    5.01    8.01
+    60.0    0.00   -0.18   -0.71   -1.46   -2.31   -3.14   -3.92   -4.63   -5.27   -5.77   -6.00   -5.79   -5.05   -3.74   -1.95    0.18    2.55    5.17    8.14
+    65.0    0.00   -0.19   -0.72   -1.47   -2.31   -3.14   -3.90   -4.60   -5.22   -5.69   -5.89   -5.66   -4.88   -3.55   -1.74    0.39    2.75    5.34    8.28
+    70.0    0.00   -0.19   -0.72   -1.47   -2.31   -3.13   -3.89   -4.57   -5.17   -5.62   -5.79   -5.52   -4.72   -3.36   -1.54    0.61    2.96    5.53    8.41
+    75.0    0.00   -0.19   -0.72   -1.47   -2.30   -3.12   -3.86   -4.53   -5.12   -5.54   -5.68   -5.40   -4.56   -3.18   -1.33    0.83    3.18    5.71    8.54
+    80.0    0.00   -0.19   -0.72   -1.47   -2.29   -3.10   -3.83   -4.49   -5.06   -5.47   -5.59   -5.27   -4.42   -3.01   -1.14    1.04    3.39    5.91    8.67
+    85.0    0.00   -0.20   -0.72   -1.46   -2.28   -3.08   -3.80   -4.45   -5.00   -5.39   -5.49   -5.16   -4.29   -2.85   -0.96    1.23    3.59    6.09    8.80
+    90.0    0.00   -0.20   -0.72   -1.45   -2.26   -3.05   -3.77   -4.40   -4.94   -5.32   -5.41   -5.06   -4.17   -2.72   -0.81    1.40    3.77    6.26    8.93
+    95.0    0.00   -0.20   -0.72   -1.44   -2.24   -3.02   -3.73   -4.35   -4.88   -5.25   -5.32   -4.97   -4.07   -2.61   -0.69    1.54    3.92    6.41    9.05
+   100.0    0.00   -0.20   -0.71   -1.43   -2.23   -2.99   -3.69   -4.30   -4.82   -5.18   -5.25   -4.88   -3.98   -2.52   -0.60    1.64    4.04    6.54    9.16
+   105.0    0.00   -0.20   -0.71   -1.42   -2.21   -2.96   -3.65   -4.26   -4.76   -5.11   -5.18   -4.81   -3.92   -2.46   -0.54    1.70    4.11    6.63    9.26
+   110.0    0.00   -0.20   -0.71   -1.41   -2.19   -2.94   -3.61   -4.21   -4.71   -5.05   -5.12   -4.76   -3.87   -2.43   -0.52    1.72    4.14    6.68    9.33
+   115.0    0.00   -0.20   -0.70   -1.40   -2.17   -2.91   -3.58   -4.17   -4.67   -5.01   -5.07   -4.72   -3.84   -2.41   -0.52    1.71    4.13    6.69    9.37
+   120.0    0.00   -0.20   -0.70   -1.40   -2.16   -2.89   -3.55   -4.14   -4.63   -4.97   -5.04   -4.69   -3.83   -2.42   -0.55    1.66    4.08    6.65    9.37
+   125.0    0.00   -0.20   -0.70   -1.39   -2.14   -2.87   -3.53   -4.12   -4.61   -4.95   -5.02   -4.69   -3.84   -2.46   -0.61    1.58    3.99    6.58    9.31
+   130.0    0.00   -0.20   -0.70   -1.38   -2.14   -2.86   -3.52   -4.11   -4.60   -4.95   -5.03   -4.70   -3.87   -2.50   -0.68    1.48    3.88    6.45    9.21
+   135.0    0.00   -0.20   -0.70   -1.38   -2.13   -2.86   -3.52   -4.11   -4.61   -4.96   -5.05   -4.74   -3.92   -2.57   -0.77    1.36    3.73    6.29    9.04
+   140.0    0.00   -0.20   -0.70   -1.38   -2.13   -2.86   -3.53   -4.13   -4.64   -5.00   -5.10   -4.79   -3.98   -2.66   -0.88    1.22    3.56    6.10    8.83
+   145.0    0.00   -0.20   -0.70   -1.38   -2.14   -2.87   -3.55   -4.15   -4.68   -5.05   -5.16   -4.87   -4.07   -2.76   -1.00    1.07    3.37    5.88    8.58
+   150.0    0.00   -0.21   -0.70   -1.39   -2.15   -2.89   -3.57   -4.19   -4.73   -5.12   -5.24   -4.96   -4.17   -2.87   -1.14    0.91    3.17    5.64    8.30
+   155.0    0.00   -0.21   -0.71   -1.40   -2.16   -2.91   -3.61   -4.24   -4.79   -5.20   -5.33   -5.06   -4.29   -3.00   -1.29    0.73    2.97    5.40    8.02
+   160.0    0.00   -0.21   -0.71   -1.41   -2.18   -2.94   -3.65   -4.30   -4.87   -5.29   -5.44   -5.18   -4.41   -3.14   -1.45    0.55    2.76    5.16    7.74
+   165.0    0.00   -0.21   -0.71   -1.42   -2.20   -2.97   -3.69   -4.36   -4.94   -5.38   -5.54   -5.30   -4.55   -3.30   -1.62    0.35    2.55    4.93    7.49
+   170.0    0.00   -0.21   -0.72   -1.43   -2.22   -3.01   -3.74   -4.42   -5.02   -5.47   -5.65   -5.43   -4.70   -3.46   -1.80    0.16    2.35    4.74    7.29
+   175.0    0.00   -0.21   -0.73   -1.44   -2.25   -3.04   -3.79   -4.49   -5.10   -5.57   -5.77   -5.55   -4.84   -3.62   -1.98   -0.02    2.18    4.58    7.14
+   180.0    0.00   -0.21   -0.73   -1.46   -2.27   -3.08   -3.84   -4.55   -5.18   -5.66   -5.87   -5.68   -4.99   -3.78   -2.15   -0.19    2.03    4.46    7.05
+   185.0    0.00   -0.21   -0.74   -1.47   -2.30   -3.12   -3.89   -4.62   -5.26   -5.75   -5.98   -5.80   -5.12   -3.93   -2.30   -0.33    1.92    4.39    7.03
+   190.0    0.00   -0.21   -0.74   -1.49   -2.32   -3.15   -3.94   -4.68   -5.33   -5.84   -6.08   -5.91   -5.24   -4.06   -2.43   -0.43    1.85    4.38    7.06
+   195.0    0.00   -0.21   -0.75   -1.50   -2.34   -3.19   -3.99   -4.74   -5.40   -5.92   -6.17   -6.01   -5.35   -4.16   -2.52   -0.50    1.83    4.41    7.14
+   200.0    0.00   -0.22   -0.75   -1.51   -2.37   -3.22   -4.03   -4.79   -5.47   -5.99   -6.25   -6.09   -5.42   -4.23   -2.57   -0.51    1.85    4.48    7.26
+   205.0    0.00   -0.22   -0.76   -1.52   -2.39   -3.25   -4.07   -4.84   -5.52   -6.06   -6.31   -6.15   -5.48   -4.26   -2.57   -0.48    1.92    4.59    7.40
+   210.0    0.00   -0.21   -0.76   -1.53   -2.40   -3.28   -4.11   -4.88   -5.57   -6.11   -6.36   -6.19   -5.49   -4.25   -2.53   -0.41    2.03    4.72    7.55
+   215.0    0.00   -0.21   -0.76   -1.54   -2.42   -3.30   -4.14   -4.92   -5.61   -6.15   -6.39   -6.20   -5.48   -4.21   -2.44   -0.29    2.17    4.87    7.71
+   220.0    0.00   -0.21   -0.76   -1.54   -2.43   -3.31   -4.16   -4.94   -5.64   -6.17   -6.40   -6.19   -5.43   -4.12   -2.32   -0.15    2.32    5.01    7.86
+   225.0    0.00   -0.21   -0.76   -1.55   -2.43   -3.32   -4.17   -4.96   -5.65   -6.17   -6.38   -6.15   -5.36   -4.01   -2.18    0.02    2.48    5.16    8.00
+   230.0    0.00   -0.21   -0.76   -1.54   -2.43   -3.32   -4.17   -4.95   -5.64   -6.15   -6.34   -6.08   -5.26   -3.88   -2.02    0.18    2.63    5.29    8.14
+   235.0    0.00   -0.21   -0.76   -1.54   -2.43   -3.32   -4.16   -4.94   -5.61   -6.11   -6.28   -5.99   -5.14   -3.73   -1.86    0.34    2.77    5.41    8.28
+   240.0    0.00   -0.20   -0.75   -1.53   -2.42   -3.30   -4.14   -4.91   -5.57   -6.04   -6.19   -5.88   -5.01   -3.59   -1.71    0.48    2.90    5.53    8.42
+   245.0    0.00   -0.20   -0.74   -1.52   -2.40   -3.28   -4.11   -4.86   -5.50   -5.96   -6.09   -5.76   -4.87   -3.44   -1.57    0.60    3.00    5.63    8.58
+   250.0    0.00   -0.20   -0.73   -1.51   -2.38   -3.25   -4.06   -4.80   -5.42   -5.86   -5.97   -5.63   -4.74   -3.32   -1.46    0.70    3.09    5.73    8.75
+   255.0    0.00   -0.19   -0.72   -1.49   -2.35   -3.21   -4.01   -4.72   -5.33   -5.74   -5.84   -5.50   -4.61   -3.20   -1.36    0.78    3.17    5.84    8.95
+   260.0    0.00   -0.19   -0.71   -1.47   -2.32   -3.16   -3.94   -4.64   -5.22   -5.62   -5.72   -5.37   -4.50   -3.11   -1.29    0.85    3.24    5.96    9.16
+   265.0    0.00   -0.18   -0.70   -1.44   -2.28   -3.11   -3.87   -4.55   -5.12   -5.50   -5.59   -5.26   -4.40   -3.03   -1.22    0.91    3.33    6.09    9.37
+   270.0    0.00   -0.18   -0.69   -1.42   -2.24   -3.06   -3.80   -4.46   -5.01   -5.39   -5.48   -5.16   -4.32   -2.97   -1.17    0.97    3.42    6.23    9.59
+   275.0    0.00   -0.17   -0.67   -1.39   -2.20   -3.00   -3.73   -4.37   -4.91   -5.29   -5.39   -5.08   -4.26   -2.92   -1.12    1.04    3.52    6.38    9.79
+   280.0    0.00   -0.17   -0.66   -1.36   -2.16   -2.94   -3.66   -4.29   -4.82   -5.20   -5.31   -5.01   -4.21   -2.88   -1.07    1.12    3.63    6.53    9.96
+   285.0    0.00   -0.16   -0.64   -1.34   -2.12   -2.89   -3.59   -4.21   -4.75   -5.13   -5.25   -4.96   -4.17   -2.83   -1.01    1.21    3.76    6.68   10.09
+   290.0    0.00   -0.15   -0.63   -1.31   -2.08   -2.83   -3.53   -4.15   -4.68   -5.07   -5.20   -4.93   -4.14   -2.79   -0.95    1.30    3.87    6.80   10.17
+   295.0    0.00   -0.15   -0.61   -1.28   -2.04   -2.78   -3.47   -4.09   -4.64   -5.04   -5.18   -4.91   -4.12   -2.75   -0.88    1.39    3.98    6.88   10.19
+   300.0    0.00   -0.14   -0.60   -1.26   -2.00   -2.74   -3.42   -4.05   -4.61   -5.02   -5.17   -4.90   -4.10   -2.72   -0.82    1.47    4.05    6.93   10.14
+   305.0    0.00   -0.14   -0.59   -1.23   -1.97   -2.70   -3.39   -4.02   -4.59   -5.02   -5.18   -4.91   -4.09   -2.69   -0.78    1.52    4.09    6.92   10.04
+   310.0    0.00   -0.14   -0.57   -1.21   -1.94   -2.67   -3.36   -4.01   -4.59   -5.03   -5.20   -4.92   -4.09   -2.67   -0.75    1.54    4.08    6.84    9.88
+   315.0    0.00   -0.13   -0.57   -1.20   -1.92   -2.65   -3.34   -4.00   -4.60   -5.06   -5.23   -4.95   -4.11   -2.68   -0.76    1.51    4.01    6.72    9.68
+   320.0    0.00   -0.13   -0.56   -1.19   -1.90   -2.63   -3.34   -4.01   -4.63   -5.10   -5.27   -4.99   -4.14   -2.71   -0.80    1.44    3.89    6.53    9.44
+   325.0    0.00   -0.13   -0.55   -1.18   -1.89   -2.62   -3.34   -4.03   -4.66   -5.15   -5.33   -5.05   -4.19   -2.77   -0.88    1.31    3.71    6.31    9.18
+   330.0    0.00   -0.13   -0.55   -1.17   -1.89   -2.63   -3.35   -4.06   -4.71   -5.21   -5.40   -5.12   -4.27   -2.86   -1.00    1.15    3.49    6.05    8.91
+   335.0    0.00   -0.13   -0.55   -1.17   -1.89   -2.64   -3.37   -4.10   -4.76   -5.28   -5.48   -5.22   -4.38   -2.98   -1.16    0.95    3.25    5.78    8.64
+   340.0    0.00   -0.13   -0.55   -1.18   -1.90   -2.65   -3.40   -4.14   -4.83   -5.36   -5.58   -5.33   -4.51   -3.14   -1.35    0.72    2.98    5.50    8.38
+   345.0    0.00   -0.13   -0.56   -1.19   -1.92   -2.68   -3.44   -4.19   -4.90   -5.45   -5.69   -5.46   -4.66   -3.31   -1.55    0.48    2.72    5.24    8.15
+   350.0    0.00   -0.13   -0.56   -1.20   -1.94   -2.71   -3.48   -4.25   -4.98   -5.55   -5.81   -5.60   -4.82   -3.51   -1.77    0.24    2.48    5.00    7.94
+   355.0    0.00   -0.13   -0.57   -1.21   -1.96   -2.75   -3.53   -4.32   -5.06   -5.65   -5.94   -5.75   -5.00   -3.70   -1.98    0.02    2.26    4.80    7.77
+   360.0    0.00   -0.14   -0.58   -1.23   -1.99   -2.79   -3.58   -4.38   -5.14   -5.75   -6.06   -5.90   -5.18   -3.90   -2.19   -0.18    2.08    4.64    7.62
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.07      0.15     86.06                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.06   -0.24   -0.55   -1.00   -1.55   -2.13   -2.65   -3.06   -3.32   -3.44   -3.43   -3.25   -2.77   -1.84   -0.29    1.91    4.57    7.23
+     0.0    0.00   -0.06   -0.24   -0.54   -0.98   -1.52   -2.10   -2.63   -3.02   -3.26   -3.35   -3.32   -3.15   -2.73   -1.88   -0.39    1.82    4.58    7.40
+     5.0    0.00   -0.06   -0.24   -0.54   -0.98   -1.53   -2.12   -2.65   -3.05   -3.29   -3.38   -3.36   -3.20   -2.79   -1.95   -0.46    1.76    4.52    7.31
+    10.0    0.00   -0.06   -0.24   -0.54   -0.99   -1.55   -2.14   -2.67   -3.08   -3.32   -3.42   -3.40   -3.25   -2.85   -2.00   -0.50    1.72    4.47    7.22
+    15.0    0.00   -0.06   -0.23   -0.54   -1.00   -1.56   -2.16   -2.70   -3.11   -3.35   -3.46   -3.44   -3.29   -2.89   -2.03   -0.52    1.71    4.45    7.14
+    20.0    0.00   -0.06   -0.23   -0.55   -1.00   -1.57   -2.17   -2.72   -3.13   -3.39   -3.50   -3.49   -3.34   -2.92   -2.05   -0.51    1.73    4.44    7.07
+    25.0    0.00   -0.06   -0.23   -0.55   -1.01   -1.58   -2.19   -2.74   -3.16   -3.42   -3.54   -3.53   -3.38   -2.95   -2.05   -0.49    1.76    4.45    7.03
+    30.0    0.00   -0.06   -0.23   -0.55   -1.02   -1.59   -2.20   -2.76   -3.19   -3.46   -3.58   -3.58   -3.41   -2.97   -2.04   -0.45    1.81    4.49    7.01
+    35.0    0.00   -0.06   -0.23   -0.55   -1.02   -1.60   -2.22   -2.78   -3.21   -3.49   -3.62   -3.62   -3.45   -2.99   -2.03   -0.41    1.86    4.53    7.03
+    40.0    0.00   -0.05   -0.23   -0.56   -1.02   -1.61   -2.22   -2.79   -3.23   -3.52   -3.66   -3.66   -3.49   -3.01   -2.02   -0.38    1.91    4.58    7.06
+    45.0    0.00   -0.05   -0.23   -0.56   -1.03   -1.61   -2.23   -2.80   -3.24   -3.54   -3.69   -3.70   -3.52   -3.03   -2.02   -0.36    1.95    4.62    7.11
+    50.0    0.00   -0.05   -0.23   -0.56   -1.03   -1.61   -2.23   -2.80   -3.25   -3.55   -3.71   -3.73   -3.55   -3.05   -2.03   -0.36    1.96    4.65    7.17
+    55.0    0.00   -0.05   -0.23   -0.56   -1.03   -1.61   -2.23   -2.79   -3.25   -3.56   -3.73   -3.75   -3.58   -3.07   -2.05   -0.37    1.95    4.66    7.22
+    60.0    0.00   -0.05   -0.23   -0.56   -1.03   -1.60   -2.22   -2.79   -3.24   -3.55   -3.73   -3.76   -3.59   -3.09   -2.07   -0.40    1.92    4.63    7.25
+    65.0    0.00   -0.05   -0.23   -0.55   -1.02   -1.60   -2.21   -2.77   -3.22   -3.54   -3.72   -3.75   -3.60   -3.10   -2.10   -0.44    1.87    4.59    7.26
+    70.0    0.00   -0.05   -0.23   -0.55   -1.02   -1.59   -2.19   -2.75   -3.20   -3.51   -3.69   -3.74   -3.58   -3.10   -2.12   -0.49    1.80    4.53    7.23
+    75.0    0.00   -0.05   -0.23   -0.55   -1.01   -1.58   -2.18   -2.73   -3.17   -3.48   -3.66   -3.70   -3.56   -3.09   -2.13   -0.52    1.74    4.45    7.19
+    80.0    0.00   -0.05   -0.22   -0.54   -1.00   -1.56   -2.16   -2.70   -3.14   -3.44   -3.61   -3.66   -3.51   -3.06   -2.12   -0.55    1.69    4.38    7.12
+    85.0    0.00   -0.05   -0.22   -0.54   -0.99   -1.55   -2.14   -2.68   -3.11   -3.40   -3.56   -3.60   -3.46   -3.01   -2.09   -0.55    1.66    4.32    7.05
+    90.0    0.00   -0.04   -0.22   -0.53   -0.99   -1.54   -2.12   -2.65   -3.07   -3.36   -3.51   -3.54   -3.39   -2.95   -2.04   -0.52    1.65    4.29    6.99
+    95.0    0.00   -0.04   -0.22   -0.53   -0.98   -1.52   -2.10   -2.62   -3.04   -3.31   -3.46   -3.48   -3.32   -2.88   -1.98   -0.47    1.69    4.30    6.96
+   100.0    0.00   -0.04   -0.21   -0.52   -0.97   -1.51   -2.08   -2.60   -3.01   -3.27   -3.41   -3.41   -3.25   -2.80   -1.89   -0.39    1.75    4.34    6.95
+   105.0    0.00   -0.04   -0.21   -0.52   -0.96   -1.49   -2.06   -2.58   -2.98   -3.24   -3.36   -3.36   -3.18   -2.72   -1.81   -0.30    1.84    4.41    6.98
+   110.0    0.00   -0.04   -0.21   -0.51   -0.95   -1.48   -2.04   -2.56   -2.96   -3.21   -3.33   -3.31   -3.12   -2.64   -1.72   -0.20    1.95    4.51    7.05
+   115.0    0.00   -0.04   -0.20   -0.50   -0.94   -1.47   -2.03   -2.54   -2.94   -3.19   -3.30   -3.27   -3.07   -2.58   -1.64   -0.10    2.06    4.63    7.15
+   120.0    0.00   -0.04   -0.20   -0.50   -0.93   -1.46   -2.02   -2.53   -2.92   -3.17   -3.28   -3.24   -3.03   -2.53   -1.57   -0.02    2.16    4.75    7.27
+   125.0    0.00   -0.04   -0.20   -0.49   -0.92   -1.45   -2.01   -2.51   -2.91   -3.16   -3.26   -3.22   -3.01   -2.50   -1.53    0.05    2.25    4.86    7.40
+   130.0    0.00   -0.04   -0.20   -0.49   -0.91   -1.44   -2.00   -2.51   -2.90   -3.15   -3.25   -3.22   -2.99   -2.48   -1.50    0.08    2.30    4.94    7.51
+   135.0    0.00   -0.04   -0.19   -0.49   -0.91   -1.43   -1.99   -2.50   -2.90   -3.15   -3.25   -3.21   -2.99   -2.48   -1.50    0.09    2.33    5.00    7.61
+   140.0    0.00   -0.04   -0.19   -0.48   -0.91   -1.43   -1.99   -2.50   -2.89   -3.14   -3.25   -3.22   -3.00   -2.49   -1.52    0.07    2.32    5.01    7.66
+   145.0    0.00   -0.04   -0.19   -0.48   -0.91   -1.43   -1.99   -2.50   -2.90   -3.15   -3.25   -3.22   -3.02   -2.52   -1.55    0.03    2.28    4.98    7.67
+   150.0    0.00   -0.04   -0.19   -0.48   -0.91   -1.43   -1.99   -2.50   -2.90   -3.15   -3.26   -3.23   -3.03   -2.54   -1.59   -0.02    2.21    4.92    7.64
+   155.0    0.00   -0.04   -0.19   -0.48   -0.91   -1.44   -2.00   -2.51   -2.91   -3.16   -3.27   -3.24   -3.05   -2.57   -1.64   -0.08    2.14    4.84    7.56
+   160.0    0.00   -0.04   -0.19   -0.49   -0.92   -1.45   -2.01   -2.52   -2.92   -3.16   -3.27   -3.25   -3.07   -2.60   -1.68   -0.14    2.05    4.73    7.45
+   165.0    0.00   -0.04   -0.20   -0.49   -0.92   -1.46   -2.02   -2.53   -2.93   -3.17   -3.28   -3.26   -3.08   -2.62   -1.71   -0.20    1.98    4.63    7.33
+   170.0    0.00   -0.04   -0.20   -0.50   -0.93   -1.47   -2.04   -2.55   -2.94   -3.19   -3.29   -3.28   -3.10   -2.64   -1.74   -0.24    1.91    4.53    7.19
+   175.0    0.00   -0.04   -0.20   -0.50   -0.94   -1.48   -2.05   -2.57   -2.96   -3.20   -3.31   -3.29   -3.11   -2.66   -1.77   -0.28    1.85    4.44    7.06
+   180.0    0.00   -0.04   -0.21   -0.51   -0.95   -1.49   -2.07   -2.58   -2.98   -3.22   -3.32   -3.30   -3.12   -2.67   -1.78   -0.30    1.81    4.37    6.94
+   185.0    0.00   -0.04   -0.21   -0.51   -0.96   -1.51   -2.09   -2.60   -2.99   -3.23   -3.34   -3.32   -3.14   -2.69   -1.80   -0.32    1.78    4.31    6.85
+   190.0    0.00   -0.05   -0.21   -0.52   -0.97   -1.52   -2.10   -2.62   -3.01   -3.25   -3.35   -3.33   -3.16   -2.71   -1.82   -0.34    1.76    4.27    6.78
+   195.0    0.00   -0.05   -0.22   -0.53   -0.98   -1.54   -2.12   -2.64   -3.03   -3.27   -3.37   -3.35   -3.18   -2.73   -1.84   -0.36    1.73    4.24    6.74
+   200.0    0.00   -0.05   -0.22   -0.54   -0.99   -1.55   -2.13   -2.65   -3.04   -3.28   -3.39   -3.37   -3.20   -2.76   -1.87   -0.39    1.71    4.22    6.72
+   205.0    0.00   -0.05   -0.23   -0.54   -1.00   -1.56   -2.14   -2.67   -3.06   -3.30   -3.40   -3.39   -3.23   -2.79   -1.91   -0.42    1.68    4.20    6.71
+   210.0    0.00   -0.05   -0.23   -0.55   -1.01   -1.57   -2.15   -2.68   -3.07   -3.31   -3.42   -3.41   -3.25   -2.83   -1.95   -0.47    1.64    4.17    6.71
+   215.0    0.00   -0.06   -0.24   -0.56   -1.02   -1.58   -2.16   -2.69   -3.08   -3.32   -3.44   -3.44   -3.28   -2.86   -1.99   -0.52    1.59    4.15    6.72
+   220.0    0.00   -0.06   -0.24   -0.56   -1.02   -1.59   -2.17   -2.70   -3.09   -3.34   -3.46   -3.46   -3.31   -2.90   -2.04   -0.57    1.55    4.12    6.73
+   225.0    0.00   -0.06   -0.25   -0.57   -1.03   -1.59   -2.18   -2.71   -3.10   -3.35   -3.48   -3.48   -3.34   -2.94   -2.08   -0.62    1.50    4.10    6.75
+   230.0    0.00   -0.06   -0.25   -0.58   -1.04   -1.60   -2.19   -2.71   -3.12   -3.37   -3.50   -3.51   -3.37   -2.97   -2.12   -0.65    1.47    4.09    6.78
+   235.0    0.00   -0.07   -0.25   -0.58   -1.04   -1.60   -2.19   -2.72   -3.13   -3.39   -3.52   -3.53   -3.40   -3.00   -2.15   -0.68    1.45    4.09    6.82
+   240.0    0.00   -0.07   -0.26   -0.59   -1.05   -1.61   -2.20   -2.73   -3.14   -3.41   -3.54   -3.56   -3.42   -3.02   -2.16   -0.69    1.46    4.11    6.87
+   245.0    0.00   -0.07   -0.26   -0.59   -1.05   -1.61   -2.20   -2.74   -3.15   -3.42   -3.56   -3.58   -3.45   -3.03   -2.17   -0.68    1.48    4.15    6.94
+   250.0    0.00   -0.07   -0.27   -0.60   -1.06   -1.62   -2.21   -2.74   -3.16   -3.44   -3.58   -3.60   -3.46   -3.04   -2.16   -0.66    1.52    4.22    7.03
+   255.0    0.00   -0.07   -0.27   -0.60   -1.06   -1.62   -2.21   -2.75   -3.17   -3.45   -3.60   -3.62   -3.47   -3.04   -2.14   -0.61    1.59    4.30    7.13
+   260.0    0.00   -0.07   -0.27   -0.60   -1.07   -1.62   -2.21   -2.75   -3.17   -3.46   -3.61   -3.63   -3.47   -3.03   -2.11   -0.56    1.66    4.40    7.24
+   265.0    0.00   -0.07   -0.27   -0.61   -1.07   -1.62   -2.21   -2.75   -3.17   -3.46   -3.61   -3.63   -3.47   -3.00   -2.07   -0.50    1.75    4.50    7.35
+   270.0    0.00   -0.08   -0.28   -0.61   -1.07   -1.62   -2.21   -2.74   -3.16   -3.45   -3.60   -3.62   -3.45   -2.97   -2.02   -0.43    1.84    4.60    7.45
+   275.0    0.00   -0.08   -0.28   -0.61   -1.07   -1.62   -2.20   -2.73   -3.15   -3.44   -3.58   -3.59   -3.42   -2.93   -1.96   -0.35    1.92    4.69    7.54
+   280.0    0.00   -0.08   -0.28   -0.61   -1.06   -1.61   -2.19   -2.72   -3.13   -3.41   -3.56   -3.56   -3.37   -2.88   -1.90   -0.28    2.00    4.77    7.60
+   285.0    0.00   -0.08   -0.28   -0.61   -1.06   -1.61   -2.18   -2.70   -3.11   -3.38   -3.52   -3.52   -3.32   -2.81   -1.83   -0.21    2.07    4.83    7.64
+   290.0    0.00   -0.08   -0.27   -0.60   -1.06   -1.60   -2.16   -2.68   -3.08   -3.35   -3.48   -3.46   -3.26   -2.74   -1.75   -0.13    2.14    4.88    7.66
+   295.0    0.00   -0.08   -0.27   -0.60   -1.05   -1.59   -2.15   -2.66   -3.06   -3.31   -3.43   -3.40   -3.19   -2.67   -1.67   -0.06    2.19    4.91    7.66
+   300.0    0.00   -0.08   -0.27   -0.59   -1.04   -1.57   -2.13   -2.64   -3.03   -3.28   -3.38   -3.35   -3.12   -2.59   -1.60    0.00    2.23    4.92    7.64
+   305.0    0.00   -0.08   -0.27   -0.59   -1.03   -1.56   -2.12   -2.62   -3.00   -3.24   -3.34   -3.29   -3.05   -2.52   -1.53    0.05    2.27    4.93    7.62
+   310.0    0.00   -0.07   -0.27   -0.58   -1.02   -1.55   -2.10   -2.60   -2.98   -3.21   -3.30   -3.24   -2.99   -2.46   -1.47    0.10    2.29    4.93    7.60
+   315.0    0.00   -0.07   -0.26   -0.58   -1.01   -1.54   -2.09   -2.58   -2.96   -3.19   -3.26   -3.20   -2.94   -2.41   -1.43    0.13    2.30    4.92    7.58
+   320.0    0.00   -0.07   -0.26   -0.57   -1.00   -1.53   -2.07   -2.57   -2.94   -3.17   -3.24   -3.17   -2.91   -2.38   -1.41    0.14    2.30    4.91    7.57
+   325.0    0.00   -0.07   -0.26   -0.56   -0.99   -1.52   -2.07   -2.56   -2.94   -3.16   -3.23   -3.15   -2.89   -2.36   -1.41    0.13    2.28    4.90    7.57
+   330.0    0.00   -0.07   -0.25   -0.56   -0.99   -1.51   -2.06   -2.56   -2.93   -3.16   -3.22   -3.15   -2.90   -2.38   -1.43    0.10    2.25    4.88    7.58
+   335.0    0.00   -0.07   -0.25   -0.55   -0.98   -1.51   -2.06   -2.56   -2.94   -3.16   -3.23   -3.16   -2.91   -2.41   -1.48    0.04    2.20    4.86    7.58
+   340.0    0.00   -0.07   -0.25   -0.55   -0.98   -1.50   -2.06   -2.57   -2.95   -3.17   -3.24   -3.18   -2.95   -2.46   -1.54   -0.03    2.14    4.82    7.58
+   345.0    0.00   -0.07   -0.24   -0.55   -0.98   -1.50   -2.07   -2.58   -2.96   -3.19   -3.26   -3.20   -2.99   -2.52   -1.62   -0.12    2.06    4.77    7.56
+   350.0    0.00   -0.07   -0.24   -0.54   -0.98   -1.51   -2.08   -2.59   -2.98   -3.21   -3.29   -3.24   -3.04   -2.59   -1.71   -0.21    1.98    4.71    7.53
+   355.0    0.00   -0.06   -0.24   -0.54   -0.98   -1.51   -2.09   -2.61   -3.00   -3.23   -3.32   -3.28   -3.09   -2.66   -1.80   -0.31    1.89    4.65    7.47
+   360.0    0.00   -0.06   -0.24   -0.54   -0.98   -1.52   -2.10   -2.63   -3.02   -3.26   -3.35   -3.32   -3.15   -2.73   -1.88   -0.39    1.82    4.58    7.40
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+LEIAT502        NONE                                        TYPE / SERIAL NO    
+FIELD               NGS/TUM                  2    10-AUG-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.90      1.54     43.04                              NORTH / EAST / UP   
+   NOAZI    0.00    1.26    1.98    2.23    2.02    1.71    1.35    1.01    0.83    0.80    0.96    1.44    2.03    2.56    3.30    4.17    5.09
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -1.50      1.18     57.46                              NORTH / EAST / UP   
+   NOAZI    0.00   -1.33   -2.02   -2.40   -2.42   -2.32   -2.33   -2.21   -2.25   -2.33   -2.45   -2.43   -2.38   -2.25   -2.33   -2.11   -1.74
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+LEIAT503        NONE                                        TYPE / SERIAL NO    
+FIELD               NGS/TUM                  4    10-AUG-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      1.60     -0.96     59.44                              NORTH / EAST / UP   
+   NOAZI    0.00    1.16    1.48    1.23    0.52   -0.49   -1.65   -2.59   -3.27   -3.50   -3.44   -2.96   -2.07   -0.84    0.80    2.87    5.49
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      1.70      0.18     85.96                              NORTH / EAST / UP   
+   NOAZI    0.00    0.47    0.58    0.40    0.08   -0.32   -0.93   -1.51   -2.05   -2.33   -2.55   -2.33   -1.78   -1.05   -0.23    0.69    1.96
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+LEIAT503        LEIC                                        TYPE / SERIAL NO    
+FIELD               NGS/TUM                  4    10-AUG-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      1.30     -0.56     59.94                              NORTH / EAST / UP   
+   NOAZI    0.00    0.76    0.98    0.73    0.02   -0.89   -1.85   -2.79   -3.37   -3.70   -3.64   -3.26   -2.37   -1.24    0.50    2.67    5.59
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      1.60     -0.42     82.96                              NORTH / EAST / UP   
+   NOAZI    0.00    0.07   -0.02   -0.20   -0.52   -0.82   -1.33   -1.71   -2.15   -2.43   -2.45   -2.23   -1.78   -1.05   -0.23    0.79    2.16
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+LEIAT504        NONE                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               7    27-JAN-03 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+      0.07     -0.32     91.22                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.24   -0.93   -2.02   -3.38   -4.87   -6.29   -7.48   -8.29   -8.63   -8.48   -7.85   -6.73   -5.08   -2.77    0.34    4.35    9.15   14.36
+     0.0    0.00   -0.24   -0.96   -2.10   -3.54   -5.11   -6.61   -7.82   -8.60   -8.88   -8.66   -7.99   -6.89   -5.31   -3.07    0.03    4.09    8.95   14.05
+     5.0    0.00   -0.24   -0.95   -2.09   -3.53   -5.10   -6.61   -7.83   -8.62   -8.90   -8.68   -8.01   -6.91   -5.32   -3.08    0.00    4.04    8.90   14.02
+    10.0    0.00   -0.23   -0.95   -2.08   -3.51   -5.09   -6.60   -7.83   -8.63   -8.93   -8.71   -8.03   -6.92   -5.32   -3.09   -0.02    4.00    8.85   14.02
+    15.0    0.00   -0.23   -0.94   -2.06   -3.50   -5.07   -6.58   -7.83   -8.65   -8.95   -8.74   -8.06   -6.93   -5.32   -3.08   -0.02    3.98    8.83   14.04
+    20.0    0.00   -0.23   -0.93   -2.05   -3.47   -5.04   -6.56   -7.82   -8.66   -8.98   -8.78   -8.09   -6.94   -5.31   -3.06    0.00    3.99    8.83   14.07
+    25.0    0.00   -0.22   -0.92   -2.03   -3.45   -5.02   -6.53   -7.80   -8.66   -9.00   -8.81   -8.12   -6.96   -5.30   -3.02    0.04    4.02    8.86   14.12
+    30.0    0.00   -0.22   -0.91   -2.01   -3.42   -4.98   -6.50   -7.78   -8.65   -9.02   -8.84   -8.15   -6.97   -5.28   -2.98    0.10    4.08    8.91   14.19
+    35.0    0.00   -0.21   -0.90   -1.99   -3.40   -4.95   -6.46   -7.75   -8.64   -9.02   -8.86   -8.17   -6.98   -5.26   -2.93    0.17    4.16    8.98   14.26
+    40.0    0.00   -0.21   -0.89   -1.98   -3.37   -4.91   -6.42   -7.71   -8.61   -9.01   -8.87   -8.19   -6.98   -5.24   -2.87    0.26    4.26    9.08   14.35
+    45.0    0.00   -0.21   -0.88   -1.96   -3.34   -4.87   -6.37   -7.66   -8.57   -8.99   -8.86   -8.18   -6.97   -5.21   -2.81    0.36    4.37    9.18   14.44
+    50.0    0.00   -0.20   -0.87   -1.94   -3.31   -4.83   -6.32   -7.60   -8.51   -8.94   -8.83   -8.16   -6.95   -5.17   -2.74    0.45    4.48    9.29   14.54
+    55.0    0.00   -0.20   -0.86   -1.93   -3.28   -4.79   -6.27   -7.54   -8.45   -8.88   -8.77   -8.12   -6.91   -5.12   -2.67    0.54    4.59    9.40   14.65
+    60.0    0.00   -0.20   -0.86   -1.91   -3.26   -4.75   -6.21   -7.47   -8.37   -8.80   -8.70   -8.06   -6.86   -5.07   -2.61    0.62    4.69    9.51   14.76
+    65.0    0.00   -0.20   -0.85   -1.90   -3.24   -4.72   -6.16   -7.41   -8.29   -8.71   -8.62   -7.98   -6.79   -5.01   -2.55    0.69    4.78    9.61   14.86
+    70.0    0.00   -0.19   -0.85   -1.89   -3.22   -4.69   -6.12   -7.34   -8.21   -8.62   -8.52   -7.89   -6.72   -4.95   -2.49    0.75    4.85    9.70   14.96
+    75.0    0.00   -0.19   -0.84   -1.88   -3.20   -4.66   -6.07   -7.28   -8.13   -8.53   -8.43   -7.80   -6.64   -4.89   -2.45    0.80    4.90    9.76   15.03
+    80.0    0.00   -0.19   -0.84   -1.88   -3.19   -4.64   -6.04   -7.23   -8.06   -8.45   -8.34   -7.72   -6.57   -4.84   -2.41    0.83    4.94    9.81   15.08
+    85.0    0.00   -0.19   -0.84   -1.87   -3.18   -4.62   -6.01   -7.19   -8.00   -8.38   -8.26   -7.65   -6.52   -4.80   -2.39    0.84    4.95    9.82   15.09
+    90.0    0.00   -0.19   -0.84   -1.87   -3.18   -4.61   -5.99   -7.16   -7.96   -8.32   -8.21   -7.60   -6.48   -4.78   -2.38    0.84    4.95    9.81   15.07
+    95.0    0.00   -0.19   -0.84   -1.87   -3.18   -4.61   -5.98   -7.14   -7.93   -8.29   -8.17   -7.57   -6.46   -4.78   -2.39    0.82    4.92    9.78   15.01
+   100.0    0.00   -0.19   -0.84   -1.87   -3.18   -4.60   -5.98   -7.13   -7.92   -8.27   -8.16   -7.57   -6.47   -4.80   -2.42    0.79    4.88    9.72   14.92
+   105.0    0.00   -0.19   -0.84   -1.87   -3.18   -4.61   -5.98   -7.13   -7.92   -8.28   -8.17   -7.58   -6.50   -4.83   -2.47    0.73    4.82    9.65   14.81
+   110.0    0.00   -0.20   -0.84   -1.88   -3.18   -4.61   -5.99   -7.14   -7.93   -8.29   -8.19   -7.62   -6.54   -4.89   -2.53    0.67    4.75    9.56   14.69
+   115.0    0.00   -0.20   -0.85   -1.88   -3.19   -4.62   -6.00   -7.15   -7.95   -8.32   -8.22   -7.66   -6.60   -4.95   -2.60    0.59    4.67    9.47   14.57
+   120.0    0.00   -0.20   -0.85   -1.89   -3.20   -4.63   -6.01   -7.17   -7.98   -8.35   -8.26   -7.71   -6.65   -5.02   -2.68    0.51    4.58    9.39   14.48
+   125.0    0.00   -0.20   -0.86   -1.90   -3.21   -4.65   -6.03   -7.19   -8.00   -8.38   -8.30   -7.75   -6.71   -5.09   -2.76    0.42    4.50    9.31   14.41
+   130.0    0.00   -0.21   -0.86   -1.90   -3.22   -4.66   -6.05   -7.22   -8.03   -8.41   -8.33   -7.78   -6.75   -5.14   -2.83    0.34    4.42    9.25   14.37
+   135.0    0.00   -0.21   -0.87   -1.92   -3.23   -4.68   -6.07   -7.24   -8.06   -8.43   -8.35   -7.81   -6.78   -5.19   -2.89    0.27    4.35    9.20   14.36
+   140.0    0.00   -0.21   -0.88   -1.93   -3.25   -4.70   -6.09   -7.27   -8.08   -8.46   -8.37   -7.82   -6.80   -5.21   -2.93    0.21    4.29    9.16   14.37
+   145.0    0.00   -0.22   -0.89   -1.94   -3.27   -4.72   -6.12   -7.29   -8.10   -8.47   -8.38   -7.82   -6.80   -5.23   -2.96    0.16    4.24    9.13   14.38
+   150.0    0.00   -0.22   -0.89   -1.95   -3.29   -4.74   -6.15   -7.32   -8.13   -8.49   -8.39   -7.82   -6.80   -5.23   -2.98    0.13    4.20    9.10   14.38
+   155.0    0.00   -0.23   -0.90   -1.97   -3.30   -4.77   -6.18   -7.35   -8.16   -8.51   -8.39   -7.82   -6.79   -5.23   -2.99    0.10    4.16    9.07   14.36
+   160.0    0.00   -0.23   -0.91   -1.98   -3.33   -4.79   -6.21   -7.39   -8.19   -8.54   -8.41   -7.82   -6.78   -5.22   -3.00    0.08    4.12    9.01   14.30
+   165.0    0.00   -0.23   -0.92   -2.00   -3.35   -4.82   -6.24   -7.42   -8.23   -8.57   -8.43   -7.84   -6.79   -5.23   -3.01    0.06    4.07    8.94   14.21
+   170.0    0.00   -0.24   -0.93   -2.01   -3.37   -4.85   -6.27   -7.46   -8.26   -8.60   -8.46   -7.86   -6.81   -5.24   -3.02    0.03    4.02    8.85   14.07
+   175.0    0.00   -0.24   -0.94   -2.03   -3.39   -4.88   -6.30   -7.50   -8.31   -8.65   -8.51   -7.90   -6.84   -5.27   -3.05   -0.01    3.95    8.74   13.90
+   180.0    0.00   -0.25   -0.95   -2.04   -3.41   -4.90   -6.34   -7.53   -8.35   -8.69   -8.56   -7.95   -6.89   -5.31   -3.09   -0.06    3.87    8.61   13.72
+   185.0    0.00   -0.25   -0.96   -2.06   -3.43   -4.92   -6.36   -7.56   -8.38   -8.74   -8.61   -8.01   -6.95   -5.36   -3.14   -0.12    3.79    8.48   13.55
+   190.0    0.00   -0.26   -0.97   -2.07   -3.45   -4.94   -6.38   -7.59   -8.42   -8.78   -8.66   -8.07   -7.01   -5.42   -3.20   -0.19    3.70    8.37   13.42
+   195.0    0.00   -0.26   -0.98   -2.08   -3.46   -4.96   -6.40   -7.61   -8.44   -8.82   -8.71   -8.12   -7.06   -5.48   -3.25   -0.25    3.63    8.28   13.35
+   200.0    0.00   -0.26   -0.98   -2.09   -3.47   -4.97   -6.41   -7.62   -8.46   -8.84   -8.74   -8.16   -7.11   -5.52   -3.30   -0.29    3.58    8.24   13.34
+   205.0    0.00   -0.27   -0.99   -2.10   -3.48   -4.97   -6.41   -7.62   -8.46   -8.85   -8.75   -8.18   -7.13   -5.55   -3.32   -0.32    3.56    8.25   13.42
+   210.0    0.00   -0.27   -0.99   -2.10   -3.48   -4.97   -6.41   -7.61   -8.45   -8.84   -8.75   -8.19   -7.13   -5.55   -3.32   -0.31    3.58    8.31   13.58
+   215.0    0.00   -0.27   -1.00   -2.11   -3.48   -4.97   -6.39   -7.59   -8.43   -8.81   -8.73   -8.16   -7.11   -5.52   -3.28   -0.26    3.66    8.43   13.81
+   220.0    0.00   -0.27   -1.00   -2.11   -3.48   -4.96   -6.37   -7.56   -8.39   -8.78   -8.69   -8.12   -7.06   -5.46   -3.21   -0.17    3.78    8.61   14.08
+   225.0    0.00   -0.27   -1.00   -2.11   -3.47   -4.94   -6.35   -7.53   -8.35   -8.73   -8.63   -8.06   -6.98   -5.36   -3.09   -0.03    3.94    8.82   14.36
+   230.0    0.00   -0.28   -1.00   -2.10   -3.46   -4.92   -6.32   -7.49   -8.31   -8.68   -8.57   -7.98   -6.89   -5.25   -2.95    0.14    4.14    9.05   14.63
+   235.0    0.00   -0.28   -1.00   -2.10   -3.45   -4.90   -6.29   -7.45   -8.26   -8.62   -8.50   -7.90   -6.79   -5.12   -2.79    0.33    4.35    9.27   14.86
+   240.0    0.00   -0.28   -1.00   -2.09   -3.44   -4.88   -6.26   -7.41   -8.21   -8.56   -8.44   -7.81   -6.68   -4.98   -2.62    0.53    4.57    9.48   15.02
+   245.0    0.00   -0.28   -1.00   -2.09   -3.42   -4.86   -6.23   -7.38   -8.17   -8.51   -8.37   -7.73   -6.57   -4.85   -2.45    0.72    4.77    9.65   15.11
+   250.0    0.00   -0.28   -1.00   -2.08   -3.41   -4.84   -6.21   -7.34   -8.13   -8.46   -8.32   -7.66   -6.48   -4.73   -2.31    0.89    4.93    9.76   15.11
+   255.0    0.00   -0.28   -0.99   -2.07   -3.40   -4.83   -6.18   -7.32   -8.09   -8.43   -8.27   -7.60   -6.40   -4.63   -2.19    1.02    5.04    9.81   15.03
+   260.0    0.00   -0.28   -0.99   -2.07   -3.39   -4.81   -6.17   -7.30   -8.07   -8.40   -8.23   -7.55   -6.34   -4.55   -2.11    1.10    5.09    9.80   14.89
+   265.0    0.00   -0.28   -0.99   -2.06   -3.39   -4.80   -6.16   -7.29   -8.06   -8.38   -8.20   -7.52   -6.30   -4.51   -2.06    1.12    5.09    9.73   14.71
+   270.0    0.00   -0.28   -0.99   -2.06   -3.38   -4.80   -6.16   -7.28   -8.05   -8.37   -8.19   -7.49   -6.28   -4.49   -2.06    1.10    5.03    9.62   14.53
+   275.0    0.00   -0.28   -0.99   -2.06   -3.38   -4.81   -6.16   -7.29   -8.06   -8.36   -8.18   -7.48   -6.27   -4.50   -2.10    1.03    4.93    9.49   14.36
+   280.0    0.00   -0.27   -0.99   -2.06   -3.39   -4.81   -6.18   -7.31   -8.07   -8.37   -8.18   -7.48   -6.28   -4.53   -2.16    0.93    4.80    9.34   14.22
+   285.0    0.00   -0.27   -0.98   -2.06   -3.39   -4.83   -6.20   -7.33   -8.09   -8.39   -8.18   -7.49   -6.30   -4.58   -2.25    0.81    4.66    9.21   14.13
+   290.0    0.00   -0.27   -0.98   -2.07   -3.40   -4.85   -6.23   -7.37   -8.12   -8.41   -8.20   -7.50   -6.33   -4.64   -2.35    0.68    4.52    9.10   14.10
+   295.0    0.00   -0.27   -0.98   -2.07   -3.42   -4.88   -6.26   -7.40   -8.16   -8.44   -8.22   -7.52   -6.36   -4.70   -2.45    0.55    4.39    9.02   14.11
+   300.0    0.00   -0.27   -0.98   -2.08   -3.43   -4.90   -6.30   -7.45   -8.20   -8.47   -8.25   -7.55   -6.41   -4.77   -2.54    0.44    4.30    8.98   14.17
+   305.0    0.00   -0.27   -0.98   -2.08   -3.45   -4.93   -6.34   -7.50   -8.25   -8.51   -8.29   -7.59   -6.45   -4.84   -2.63    0.35    4.23    8.98   14.25
+   310.0    0.00   -0.27   -0.99   -2.09   -3.47   -4.96   -6.38   -7.54   -8.29   -8.56   -8.33   -7.63   -6.50   -4.90   -2.70    0.29    4.20    9.00   14.33
+   315.0    0.00   -0.26   -0.99   -2.10   -3.49   -4.99   -6.43   -7.59   -8.34   -8.60   -8.37   -7.68   -6.56   -4.96   -2.76    0.25    4.20    9.04   14.40
+   320.0    0.00   -0.26   -0.99   -2.10   -3.51   -5.02   -6.46   -7.63   -8.39   -8.65   -8.41   -7.73   -6.61   -5.02   -2.80    0.23    4.21    9.09   14.45
+   325.0    0.00   -0.26   -0.99   -2.11   -3.52   -5.05   -6.50   -7.68   -8.43   -8.69   -8.46   -7.78   -6.67   -5.07   -2.84    0.22    4.24    9.13   14.47
+   330.0    0.00   -0.26   -0.98   -2.11   -3.53   -5.07   -6.53   -7.71   -8.47   -8.73   -8.50   -7.82   -6.72   -5.12   -2.88    0.21    4.26    9.17   14.45
+   335.0    0.00   -0.26   -0.98   -2.12   -3.54   -5.09   -6.56   -7.74   -8.50   -8.76   -8.54   -7.86   -6.76   -5.17   -2.91    0.20    4.27    9.18   14.40
+   340.0    0.00   -0.25   -0.98   -2.12   -3.55   -5.11   -6.58   -7.77   -8.53   -8.79   -8.57   -7.90   -6.80   -5.21   -2.95    0.18    4.27    9.16   14.33
+   345.0    0.00   -0.25   -0.98   -2.12   -3.55   -5.12   -6.59   -7.79   -8.55   -8.82   -8.59   -7.93   -6.84   -5.24   -2.98    0.15    4.24    9.13   14.25
+   350.0    0.00   -0.25   -0.97   -2.11   -3.55   -5.12   -6.60   -7.80   -8.57   -8.84   -8.62   -7.95   -6.86   -5.27   -3.01    0.11    4.20    9.08   14.17
+   355.0    0.00   -0.24   -0.97   -2.11   -3.55   -5.12   -6.61   -7.82   -8.59   -8.86   -8.64   -7.97   -6.88   -5.29   -3.04    0.07    4.15    9.02   14.10
+   360.0    0.00   -0.24   -0.96   -2.10   -3.54   -5.11   -6.61   -7.82   -8.60   -8.88   -8.66   -7.99   -6.89   -5.31   -3.07    0.03    4.09    8.95   14.05
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.06      0.08    117.31                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.16   -0.61   -1.28   -2.07   -2.92   -3.76   -4.55   -5.21   -5.62   -5.67   -5.26   -4.36   -3.06   -1.42    0.51    2.85    5.86    9.75
+     0.0    0.00   -0.15   -0.59   -1.25   -2.03   -2.89   -3.75   -4.57   -5.25   -5.68   -5.73   -5.32   -4.46   -3.22   -1.68    0.17    2.48    5.53    9.47
+     5.0    0.00   -0.15   -0.59   -1.24   -2.03   -2.88   -3.75   -4.57   -5.25   -5.68   -5.73   -5.33   -4.48   -3.25   -1.73    0.10    2.39    5.39    9.22
+    10.0    0.00   -0.15   -0.58   -1.23   -2.02   -2.88   -3.74   -4.56   -5.25   -5.68   -5.73   -5.33   -4.48   -3.26   -1.75    0.07    2.35    5.32    9.05
+    15.0    0.00   -0.15   -0.58   -1.23   -2.02   -2.87   -3.74   -4.55   -5.24   -5.67   -5.72   -5.33   -4.48   -3.27   -1.75    0.08    2.36    5.31    8.96
+    20.0    0.00   -0.15   -0.58   -1.23   -2.01   -2.86   -3.73   -4.54   -5.23   -5.66   -5.71   -5.32   -4.48   -3.25   -1.72    0.13    2.43    5.36    8.96
+    25.0    0.00   -0.15   -0.58   -1.23   -2.01   -2.86   -3.72   -4.53   -5.21   -5.64   -5.70   -5.31   -4.46   -3.23   -1.68    0.20    2.53    5.48    9.04
+    30.0    0.00   -0.15   -0.58   -1.23   -2.01   -2.85   -3.71   -4.51   -5.19   -5.62   -5.68   -5.30   -4.45   -3.20   -1.62    0.30    2.66    5.63    9.20
+    35.0    0.00   -0.14   -0.58   -1.23   -2.01   -2.85   -3.70   -4.50   -5.17   -5.60   -5.66   -5.28   -4.43   -3.16   -1.56    0.39    2.79    5.79    9.40
+    40.0    0.00   -0.14   -0.58   -1.23   -2.01   -2.84   -3.68   -4.48   -5.14   -5.57   -5.64   -5.26   -4.41   -3.13   -1.50    0.48    2.91    5.95    9.62
+    45.0    0.00   -0.14   -0.58   -1.23   -2.01   -2.84   -3.67   -4.46   -5.12   -5.55   -5.62   -5.24   -4.39   -3.10   -1.45    0.55    3.00    6.09    9.84
+    50.0    0.00   -0.14   -0.58   -1.23   -2.01   -2.84   -3.66   -4.44   -5.09   -5.52   -5.60   -5.22   -4.37   -3.08   -1.42    0.58    3.05    6.17   10.03
+    55.0    0.00   -0.14   -0.58   -1.23   -2.01   -2.84   -3.66   -4.42   -5.07   -5.50   -5.57   -5.20   -4.35   -3.06   -1.41    0.59    3.06    6.21   10.17
+    60.0    0.00   -0.14   -0.58   -1.24   -2.01   -2.84   -3.65   -4.41   -5.06   -5.48   -5.55   -5.18   -4.33   -3.05   -1.42    0.56    3.02    6.19   10.26
+    65.0    0.00   -0.14   -0.58   -1.24   -2.02   -2.84   -3.65   -4.41   -5.05   -5.47   -5.54   -5.16   -4.32   -3.05   -1.44    0.51    2.94    6.13   10.29
+    70.0    0.00   -0.14   -0.58   -1.24   -2.02   -2.85   -3.66   -4.42   -5.05   -5.46   -5.52   -5.15   -4.30   -3.05   -1.46    0.45    2.85    6.03   10.26
+    75.0    0.00   -0.14   -0.59   -1.25   -2.03   -2.86   -3.67   -4.43   -5.06   -5.46   -5.52   -5.13   -4.29   -3.05   -1.49    0.39    2.75    5.91   10.19
+    80.0    0.00   -0.15   -0.59   -1.25   -2.04   -2.87   -3.69   -4.45   -5.08   -5.48   -5.52   -5.13   -4.28   -3.05   -1.51    0.33    2.66    5.80   10.10
+    85.0    0.00   -0.15   -0.59   -1.25   -2.04   -2.88   -3.70   -4.47   -5.10   -5.50   -5.53   -5.13   -4.27   -3.04   -1.52    0.30    2.59    5.70    9.99
+    90.0    0.00   -0.15   -0.59   -1.26   -2.05   -2.89   -3.72   -4.49   -5.13   -5.52   -5.55   -5.14   -4.27   -3.04   -1.52    0.29    2.56    5.64    9.88
+    95.0    0.00   -0.15   -0.59   -1.26   -2.06   -2.90   -3.74   -4.52   -5.16   -5.55   -5.57   -5.15   -4.27   -3.03   -1.50    0.31    2.57    5.62    9.78
+   100.0    0.00   -0.15   -0.59   -1.26   -2.06   -2.92   -3.76   -4.55   -5.19   -5.58   -5.60   -5.16   -4.27   -3.01   -1.47    0.35    2.62    5.64    9.71
+   105.0    0.00   -0.15   -0.60   -1.27   -2.07   -2.93   -3.78   -4.57   -5.22   -5.61   -5.62   -5.18   -4.28   -3.00   -1.43    0.42    2.70    5.69    9.66
+   110.0    0.00   -0.15   -0.60   -1.27   -2.07   -2.93   -3.79   -4.59   -5.24   -5.63   -5.64   -5.19   -4.28   -2.98   -1.39    0.50    2.80    5.78    9.64
+   115.0    0.00   -0.15   -0.60   -1.27   -2.07   -2.94   -3.80   -4.60   -5.25   -5.64   -5.65   -5.20   -4.28   -2.96   -1.34    0.58    2.91    5.87    9.64
+   120.0    0.00   -0.15   -0.60   -1.27   -2.08   -2.94   -3.80   -4.61   -5.26   -5.65   -5.66   -5.20   -4.28   -2.95   -1.29    0.66    3.02    5.97    9.65
+   125.0    0.00   -0.15   -0.60   -1.27   -2.08   -2.94   -3.81   -4.61   -5.26   -5.65   -5.66   -5.21   -4.28   -2.93   -1.25    0.73    3.12    6.07    9.68
+   130.0    0.00   -0.15   -0.60   -1.27   -2.08   -2.94   -3.80   -4.60   -5.26   -5.65   -5.66   -5.20   -4.27   -2.92   -1.23    0.78    3.19    6.14    9.71
+   135.0    0.00   -0.15   -0.60   -1.27   -2.07   -2.94   -3.80   -4.60   -5.25   -5.64   -5.65   -5.20   -4.27   -2.91   -1.21    0.81    3.23    6.18    9.73
+   140.0    0.00   -0.15   -0.60   -1.27   -2.07   -2.94   -3.80   -4.59   -5.24   -5.63   -5.65   -5.20   -4.27   -2.91   -1.21    0.82    3.24    6.20    9.75
+   145.0    0.00   -0.15   -0.60   -1.27   -2.07   -2.93   -3.79   -4.59   -5.23   -5.63   -5.64   -5.20   -4.27   -2.92   -1.22    0.81    3.23    6.19    9.74
+   150.0    0.00   -0.15   -0.60   -1.27   -2.07   -2.93   -3.79   -4.58   -5.23   -5.62   -5.64   -5.20   -4.28   -2.94   -1.24    0.78    3.19    6.15    9.72
+   155.0    0.00   -0.16   -0.60   -1.27   -2.07   -2.93   -3.79   -4.58   -5.23   -5.63   -5.65   -5.22   -4.31   -2.97   -1.28    0.73    3.14    6.09    9.68
+   160.0    0.00   -0.16   -0.61   -1.27   -2.08   -2.93   -3.79   -4.58   -5.23   -5.63   -5.67   -5.25   -4.34   -3.01   -1.32    0.68    3.07    6.02    9.62
+   165.0    0.00   -0.16   -0.61   -1.28   -2.08   -2.93   -3.79   -4.58   -5.24   -5.65   -5.69   -5.28   -4.39   -3.06   -1.38    0.61    3.00    5.94    9.54
+   170.0    0.00   -0.16   -0.61   -1.28   -2.08   -2.94   -3.79   -4.58   -5.25   -5.67   -5.73   -5.32   -4.44   -3.11   -1.44    0.55    2.92    5.85    9.45
+   175.0    0.00   -0.16   -0.61   -1.28   -2.08   -2.94   -3.79   -4.59   -5.26   -5.69   -5.76   -5.37   -4.49   -3.17   -1.50    0.48    2.85    5.77    9.34
+   180.0    0.00   -0.16   -0.61   -1.28   -2.08   -2.94   -3.79   -4.60   -5.27   -5.71   -5.79   -5.42   -4.55   -3.23   -1.56    0.43    2.79    5.68    9.23
+   185.0    0.00   -0.16   -0.61   -1.28   -2.08   -2.94   -3.80   -4.60   -5.28   -5.73   -5.82   -5.45   -4.59   -3.28   -1.61    0.37    2.73    5.61    9.13
+   190.0    0.00   -0.16   -0.62   -1.28   -2.09   -2.94   -3.80   -4.60   -5.29   -5.74   -5.84   -5.48   -4.62   -3.32   -1.65    0.34    2.69    5.55    9.04
+   195.0    0.00   -0.16   -0.62   -1.29   -2.09   -2.94   -3.80   -4.60   -5.29   -5.75   -5.85   -5.49   -4.64   -3.33   -1.67    0.31    2.65    5.51    8.97
+   200.0    0.00   -0.17   -0.62   -1.29   -2.09   -2.94   -3.79   -4.60   -5.29   -5.75   -5.85   -5.49   -4.63   -3.33   -1.66    0.31    2.64    5.49    8.93
+   205.0    0.00   -0.17   -0.62   -1.29   -2.09   -2.94   -3.79   -4.60   -5.28   -5.74   -5.84   -5.47   -4.60   -3.29   -1.64    0.32    2.64    5.48    8.93
+   210.0    0.00   -0.17   -0.62   -1.29   -2.08   -2.93   -3.79   -4.59   -5.28   -5.73   -5.81   -5.43   -4.55   -3.24   -1.59    0.35    2.66    5.51    8.98
+   215.0    0.00   -0.17   -0.62   -1.29   -2.08   -2.93   -3.78   -4.59   -5.27   -5.71   -5.78   -5.38   -4.48   -3.17   -1.52    0.41    2.71    5.55    9.06
+   220.0    0.00   -0.17   -0.63   -1.29   -2.08   -2.93   -3.78   -4.58   -5.25   -5.69   -5.74   -5.32   -4.41   -3.08   -1.44    0.48    2.76    5.62    9.18
+   225.0    0.00   -0.17   -0.63   -1.29   -2.08   -2.92   -3.77   -4.57   -5.24   -5.66   -5.70   -5.26   -4.33   -2.99   -1.35    0.56    2.83    5.70    9.32
+   230.0    0.00   -0.17   -0.63   -1.29   -2.08   -2.92   -3.76   -4.56   -5.23   -5.64   -5.67   -5.21   -4.25   -2.90   -1.26    0.64    2.90    5.79    9.48
+   235.0    0.00   -0.17   -0.63   -1.30   -2.08   -2.92   -3.76   -4.55   -5.22   -5.62   -5.64   -5.16   -4.19   -2.83   -1.18    0.71    2.97    5.88    9.63
+   240.0    0.00   -0.18   -0.63   -1.30   -2.08   -2.91   -3.75   -4.54   -5.21   -5.61   -5.62   -5.13   -4.15   -2.77   -1.12    0.77    3.03    5.95    9.76
+   245.0    0.00   -0.18   -0.64   -1.30   -2.08   -2.91   -3.75   -4.54   -5.20   -5.60   -5.61   -5.12   -4.13   -2.74   -1.09    0.80    3.07    6.00    9.86
+   250.0    0.00   -0.18   -0.64   -1.31   -2.09   -2.91   -3.74   -4.53   -5.19   -5.59   -5.61   -5.12   -4.13   -2.74   -1.08    0.81    3.08    6.02    9.92
+   255.0    0.00   -0.18   -0.64   -1.31   -2.09   -2.92   -3.74   -4.52   -5.18   -5.59   -5.61   -5.14   -4.16   -2.77   -1.10    0.79    3.06    6.01    9.94
+   260.0    0.00   -0.18   -0.64   -1.31   -2.10   -2.92   -3.74   -4.52   -5.17   -5.59   -5.62   -5.16   -4.20   -2.82   -1.15    0.75    3.02    5.97    9.93
+   265.0    0.00   -0.18   -0.65   -1.32   -2.10   -2.92   -3.74   -4.51   -5.17   -5.59   -5.63   -5.19   -4.25   -2.88   -1.22    0.68    2.95    5.90    9.88
+   270.0    0.00   -0.18   -0.65   -1.32   -2.11   -2.93   -3.75   -4.51   -5.17   -5.59   -5.65   -5.22   -4.30   -2.95   -1.29    0.61    2.88    5.83    9.83
+   275.0    0.00   -0.18   -0.65   -1.33   -2.11   -2.94   -3.75   -4.51   -5.16   -5.59   -5.66   -5.25   -4.35   -3.01   -1.37    0.53    2.80    5.76    9.78
+   280.0    0.00   -0.18   -0.65   -1.33   -2.12   -2.95   -3.76   -4.52   -5.16   -5.59   -5.67   -5.28   -4.39   -3.07   -1.43    0.47    2.74    5.71    9.76
+   285.0    0.00   -0.18   -0.65   -1.33   -2.13   -2.95   -3.77   -4.52   -5.16   -5.59   -5.67   -5.29   -4.41   -3.11   -1.47    0.43    2.71    5.69    9.78
+   290.0    0.00   -0.18   -0.65   -1.33   -2.13   -2.96   -3.77   -4.53   -5.17   -5.59   -5.67   -5.29   -4.43   -3.12   -1.49    0.41    2.71    5.71    9.85
+   295.0    0.00   -0.18   -0.65   -1.33   -2.14   -2.97   -3.78   -4.54   -5.17   -5.59   -5.67   -5.29   -4.42   -3.12   -1.49    0.43    2.74    5.77    9.98
+   300.0    0.00   -0.18   -0.65   -1.33   -2.14   -2.97   -3.79   -4.55   -5.18   -5.59   -5.66   -5.28   -4.41   -3.10   -1.46    0.47    2.81    5.88   10.14
+   305.0    0.00   -0.18   -0.65   -1.33   -2.14   -2.98   -3.80   -4.55   -5.19   -5.60   -5.66   -5.27   -4.39   -3.07   -1.41    0.54    2.90    6.01   10.33
+   310.0    0.00   -0.17   -0.64   -1.33   -2.13   -2.98   -3.80   -4.56   -5.20   -5.60   -5.66   -5.26   -4.36   -3.03   -1.36    0.61    3.00    6.15   10.53
+   315.0    0.00   -0.17   -0.64   -1.32   -2.13   -2.97   -3.80   -4.57   -5.21   -5.61   -5.66   -5.25   -4.34   -3.00   -1.31    0.68    3.09    6.28   10.71
+   320.0    0.00   -0.17   -0.63   -1.31   -2.12   -2.97   -3.80   -4.57   -5.22   -5.62   -5.67   -5.25   -4.33   -2.97   -1.27    0.73    3.17    6.39   10.85
+   325.0    0.00   -0.17   -0.63   -1.31   -2.11   -2.96   -3.80   -4.58   -5.23   -5.63   -5.67   -5.25   -4.32   -2.96   -1.26    0.75    3.20    6.45   10.92
+   330.0    0.00   -0.17   -0.62   -1.30   -2.10   -2.95   -3.79   -4.58   -5.23   -5.65   -5.68   -5.25   -4.32   -2.96   -1.27    0.74    3.20    6.45   10.90
+   335.0    0.00   -0.16   -0.62   -1.29   -2.09   -2.94   -3.79   -4.58   -5.24   -5.66   -5.70   -5.26   -4.34   -2.99   -1.30    0.69    3.14    6.39   10.80
+   340.0    0.00   -0.16   -0.61   -1.28   -2.08   -2.93   -3.78   -4.58   -5.25   -5.67   -5.71   -5.28   -4.36   -3.02   -1.36    0.61    3.04    6.26   10.62
+   345.0    0.00   -0.16   -0.61   -1.27   -2.06   -2.92   -3.77   -4.58   -5.25   -5.67   -5.72   -5.29   -4.38   -3.07   -1.44    0.50    2.91    6.10   10.36
+   350.0    0.00   -0.16   -0.60   -1.26   -2.05   -2.91   -3.77   -4.58   -5.25   -5.68   -5.72   -5.30   -4.41   -3.12   -1.52    0.38    2.76    5.90   10.07
+   355.0    0.00   -0.16   -0.60   -1.25   -2.04   -2.90   -3.76   -4.57   -5.26   -5.68   -5.73   -5.32   -4.44   -3.17   -1.61    0.27    2.61    5.70    9.76
+   360.0    0.00   -0.15   -0.59   -1.25   -2.03   -2.89   -3.75   -4.57   -5.25   -5.68   -5.73   -5.32   -4.46   -3.22   -1.68    0.17    2.48    5.53    9.47
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+LEIAT504        LEIS                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH              69    20-APR-05 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+      0.66     -0.13     88.39                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.29   -1.12   -2.38   -3.92   -5.54   -7.06   -8.28   -9.09   -9.38   -9.14   -8.38   -7.09   -5.27   -2.81    0.41    4.54    9.60   15.31
+     0.0    0.00   -0.30   -1.15   -2.46   -4.06   -5.75   -7.30   -8.51   -9.25   -9.45   -9.12   -8.30   -7.01   -5.22   -2.78    0.48    4.71    9.81   15.31
+     5.0    0.00   -0.30   -1.16   -2.46   -4.05   -5.74   -7.29   -8.52   -9.27   -9.48   -9.14   -8.31   -7.01   -5.22   -2.79    0.45    4.66    9.76   15.31
+    10.0    0.00   -0.30   -1.16   -2.46   -4.05   -5.73   -7.29   -8.52   -9.28   -9.50   -9.17   -8.33   -7.02   -5.22   -2.80    0.41    4.59    9.70   15.32
+    15.0    0.00   -0.31   -1.16   -2.45   -4.04   -5.72   -7.28   -8.52   -9.30   -9.53   -9.20   -8.35   -7.03   -5.23   -2.82    0.37    4.53    9.64   15.36
+    20.0    0.00   -0.31   -1.16   -2.45   -4.03   -5.70   -7.26   -8.52   -9.31   -9.56   -9.24   -8.39   -7.06   -5.24   -2.83    0.34    4.47    9.60   15.41
+    25.0    0.00   -0.31   -1.16   -2.45   -4.02   -5.69   -7.25   -8.51   -9.32   -9.58   -9.27   -8.43   -7.09   -5.26   -2.85    0.32    4.44    9.58   15.47
+    30.0    0.00   -0.31   -1.16   -2.44   -4.01   -5.67   -7.23   -8.50   -9.32   -9.60   -9.31   -8.47   -7.12   -5.27   -2.85    0.31    4.43    9.59   15.54
+    35.0    0.00   -0.31   -1.16   -2.44   -3.99   -5.65   -7.20   -8.48   -9.32   -9.62   -9.34   -8.51   -7.15   -5.29   -2.85    0.33    4.45    9.61   15.60
+    40.0    0.00   -0.31   -1.16   -2.43   -3.98   -5.63   -7.18   -8.45   -9.30   -9.62   -9.36   -8.54   -7.18   -5.31   -2.84    0.36    4.50    9.66   15.65
+    45.0    0.00   -0.31   -1.16   -2.43   -3.97   -5.61   -7.15   -8.43   -9.28   -9.61   -9.37   -8.56   -7.20   -5.31   -2.82    0.41    4.56    9.71   15.68
+    50.0    0.00   -0.31   -1.16   -2.42   -3.96   -5.59   -7.12   -8.39   -9.25   -9.59   -9.36   -8.57   -7.21   -5.31   -2.80    0.46    4.62    9.77   15.70
+    55.0    0.00   -0.31   -1.16   -2.42   -3.95   -5.57   -7.09   -8.35   -9.21   -9.56   -9.34   -8.56   -7.21   -5.30   -2.76    0.52    4.69    9.82   15.70
+    60.0    0.00   -0.31   -1.16   -2.42   -3.94   -5.55   -7.06   -8.31   -9.16   -9.51   -9.31   -8.53   -7.19   -5.28   -2.73    0.57    4.75    9.86   15.68
+    65.0    0.00   -0.31   -1.16   -2.41   -3.93   -5.53   -7.03   -8.27   -9.11   -9.46   -9.26   -8.50   -7.17   -5.25   -2.70    0.61    4.79    9.88   15.66
+    70.0    0.00   -0.31   -1.16   -2.41   -3.93   -5.52   -7.01   -8.23   -9.06   -9.41   -9.21   -8.45   -7.13   -5.23   -2.67    0.63    4.81    9.88   15.63
+    75.0    0.00   -0.31   -1.15   -2.41   -3.92   -5.50   -6.98   -8.20   -9.02   -9.35   -9.16   -8.40   -7.09   -5.20   -2.66    0.64    4.81    9.87   15.59
+    80.0    0.00   -0.31   -1.15   -2.41   -3.91   -5.49   -6.96   -8.17   -8.98   -9.31   -9.11   -8.36   -7.06   -5.18   -2.65    0.64    4.80    9.84   15.56
+    85.0    0.00   -0.31   -1.15   -2.41   -3.91   -5.48   -6.95   -8.14   -8.95   -9.27   -9.07   -8.33   -7.03   -5.17   -2.65    0.62    4.77    9.81   15.52
+    90.0    0.00   -0.31   -1.15   -2.40   -3.91   -5.48   -6.94   -8.13   -8.92   -9.24   -9.04   -8.30   -7.02   -5.17   -2.67    0.59    4.73    9.76   15.50
+    95.0    0.00   -0.31   -1.15   -2.40   -3.90   -5.47   -6.93   -8.12   -8.91   -9.23   -9.03   -8.30   -7.02   -5.18   -2.69    0.56    4.69    9.72   15.47
+   100.0    0.00   -0.31   -1.15   -2.40   -3.90   -5.47   -6.92   -8.11   -8.91   -9.23   -9.04   -8.31   -7.04   -5.20   -2.72    0.53    4.65    9.69   15.45
+   105.0    0.00   -0.31   -1.15   -2.39   -3.89   -5.46   -6.92   -8.11   -8.91   -9.24   -9.05   -8.33   -7.07   -5.23   -2.75    0.50    4.62    9.67   15.43
+   110.0    0.00   -0.31   -1.14   -2.39   -3.89   -5.46   -6.92   -8.12   -8.92   -9.26   -9.08   -8.36   -7.10   -5.26   -2.78    0.47    4.61    9.66   15.42
+   115.0    0.00   -0.31   -1.14   -2.39   -3.89   -5.46   -6.92   -8.12   -8.94   -9.28   -9.10   -8.39   -7.14   -5.30   -2.81    0.45    4.60    9.66   15.42
+   120.0    0.00   -0.30   -1.14   -2.38   -3.88   -5.45   -6.92   -8.13   -8.95   -9.29   -9.12   -8.42   -7.17   -5.33   -2.84    0.43    4.60    9.67   15.42
+   125.0    0.00   -0.30   -1.13   -2.38   -3.88   -5.45   -6.92   -8.13   -8.95   -9.30   -9.14   -8.44   -7.19   -5.36   -2.86    0.42    4.61    9.69   15.43
+   130.0    0.00   -0.30   -1.13   -2.37   -3.87   -5.45   -6.92   -8.13   -8.95   -9.30   -9.14   -8.44   -7.20   -5.38   -2.88    0.41    4.61    9.72   15.46
+   135.0    0.00   -0.30   -1.12   -2.37   -3.87   -5.44   -6.92   -8.13   -8.95   -9.30   -9.13   -8.44   -7.20   -5.39   -2.90    0.40    4.62    9.74   15.49
+   140.0    0.00   -0.30   -1.12   -2.36   -3.86   -5.44   -6.92   -8.13   -8.94   -9.28   -9.11   -8.42   -7.19   -5.39   -2.91    0.39    4.62    9.77   15.52
+   145.0    0.00   -0.29   -1.12   -2.35   -3.86   -5.44   -6.91   -8.12   -8.93   -9.26   -9.08   -8.39   -7.17   -5.38   -2.92    0.38    4.62    9.78   15.55
+   150.0    0.00   -0.29   -1.11   -2.35   -3.85   -5.43   -6.91   -8.11   -8.92   -9.24   -9.05   -8.35   -7.15   -5.37   -2.92    0.36    4.61    9.78   15.57
+   155.0    0.00   -0.29   -1.11   -2.34   -3.85   -5.43   -6.91   -8.11   -8.90   -9.22   -9.02   -8.32   -7.12   -5.36   -2.93    0.35    4.59    9.77   15.57
+   160.0    0.00   -0.29   -1.10   -2.34   -3.84   -5.43   -6.91   -8.11   -8.90   -9.21   -9.00   -8.30   -7.10   -5.35   -2.93    0.33    4.56    9.74   15.55
+   165.0    0.00   -0.28   -1.10   -2.33   -3.84   -5.43   -6.91   -8.11   -8.90   -9.20   -9.00   -8.30   -7.09   -5.34   -2.93    0.32    4.53    9.70   15.50
+   170.0    0.00   -0.28   -1.09   -2.33   -3.84   -5.43   -6.91   -8.12   -8.91   -9.22   -9.01   -8.30   -7.10   -5.34   -2.93    0.30    4.49    9.63   15.41
+   175.0    0.00   -0.28   -1.09   -2.33   -3.83   -5.43   -6.92   -8.13   -8.93   -9.24   -9.03   -8.32   -7.11   -5.35   -2.93    0.29    4.45    9.54   15.29
+   180.0    0.00   -0.28   -1.09   -2.32   -3.83   -5.43   -6.93   -8.14   -8.95   -9.27   -9.07   -8.36   -7.13   -5.35   -2.93    0.28    4.40    9.44   15.15
+   185.0    0.00   -0.27   -1.08   -2.32   -3.83   -5.44   -6.94   -8.16   -8.98   -9.31   -9.12   -8.40   -7.16   -5.37   -2.94    0.26    4.35    9.33   14.99
+   190.0    0.00   -0.27   -1.08   -2.32   -3.83   -5.44   -6.95   -8.18   -9.01   -9.35   -9.16   -8.44   -7.19   -5.38   -2.94    0.24    4.29    9.22   14.85
+   195.0    0.00   -0.27   -1.08   -2.32   -3.84   -5.45   -6.96   -8.20   -9.04   -9.39   -9.20   -8.47   -7.21   -5.39   -2.95    0.22    4.23    9.12   14.72
+   200.0    0.00   -0.27   -1.08   -2.32   -3.84   -5.45   -6.97   -8.22   -9.06   -9.41   -9.23   -8.50   -7.22   -5.39   -2.95    0.20    4.18    9.04   14.63
+   205.0    0.00   -0.27   -1.07   -2.32   -3.84   -5.46   -6.97   -8.23   -9.07   -9.43   -9.24   -8.51   -7.23   -5.40   -2.96    0.17    4.13    8.98   14.59
+   210.0    0.00   -0.27   -1.07   -2.32   -3.84   -5.46   -6.98   -8.23   -9.08   -9.43   -9.24   -8.50   -7.22   -5.39   -2.97    0.15    4.11    8.96   14.61
+   215.0    0.00   -0.26   -1.07   -2.32   -3.84   -5.46   -6.98   -8.23   -9.07   -9.42   -9.22   -8.48   -7.20   -5.38   -2.97    0.14    4.10    8.99   14.68
+   220.0    0.00   -0.26   -1.07   -2.31   -3.84   -5.46   -6.98   -8.22   -9.06   -9.39   -9.18   -8.44   -7.17   -5.36   -2.97    0.14    4.12    9.05   14.81
+   225.0    0.00   -0.26   -1.07   -2.31   -3.84   -5.46   -6.98   -8.21   -9.03   -9.35   -9.14   -8.40   -7.13   -5.34   -2.96    0.16    4.17    9.16   14.98
+   230.0    0.00   -0.26   -1.07   -2.31   -3.84   -5.46   -6.97   -8.20   -9.01   -9.32   -9.09   -8.35   -7.10   -5.32   -2.94    0.19    4.25    9.30   15.17
+   235.0    0.00   -0.26   -1.07   -2.31   -3.84   -5.46   -6.96   -8.18   -8.98   -9.28   -9.05   -8.31   -7.06   -5.29   -2.91    0.25    4.35    9.46   15.36
+   240.0    0.00   -0.26   -1.06   -2.31   -3.84   -5.45   -6.95   -8.16   -8.95   -9.24   -9.01   -8.27   -7.03   -5.27   -2.87    0.32    4.47    9.63   15.52
+   245.0    0.00   -0.26   -1.06   -2.31   -3.84   -5.45   -6.95   -8.15   -8.94   -9.22   -8.99   -8.25   -7.01   -5.24   -2.82    0.40    4.60    9.78   15.65
+   250.0    0.00   -0.26   -1.06   -2.31   -3.84   -5.45   -6.94   -8.15   -8.93   -9.21   -8.98   -8.24   -7.00   -5.21   -2.77    0.49    4.73    9.91   15.71
+   255.0    0.00   -0.26   -1.06   -2.31   -3.84   -5.45   -6.94   -8.15   -8.93   -9.22   -8.98   -8.24   -6.99   -5.18   -2.71    0.58    4.84   10.00   15.71
+   260.0    0.00   -0.26   -1.07   -2.31   -3.84   -5.45   -6.95   -8.15   -8.94   -9.23   -9.00   -8.25   -6.99   -5.16   -2.66    0.66    4.92   10.04   15.65
+   265.0    0.00   -0.26   -1.07   -2.31   -3.84   -5.46   -6.96   -8.17   -8.96   -9.26   -9.03   -8.27   -6.99   -5.13   -2.61    0.72    4.96   10.03   15.54
+   270.0    0.00   -0.26   -1.07   -2.32   -3.85   -5.46   -6.97   -8.19   -8.99   -9.29   -9.06   -8.29   -6.98   -5.11   -2.57    0.76    4.96    9.97   15.40
+   275.0    0.00   -0.26   -1.07   -2.32   -3.86   -5.48   -6.99   -8.22   -9.02   -9.33   -9.09   -8.30   -6.98   -5.09   -2.54    0.76    4.92    9.87   15.24
+   280.0    0.00   -0.26   -1.08   -2.33   -3.87   -5.49   -7.01   -8.25   -9.06   -9.36   -9.11   -8.31   -6.97   -5.07   -2.53    0.74    4.85    9.73   15.09
+   285.0    0.00   -0.27   -1.08   -2.34   -3.88   -5.51   -7.04   -8.28   -9.10   -9.39   -9.13   -8.32   -6.96   -5.06   -2.54    0.69    4.74    9.59   14.96
+   290.0    0.00   -0.27   -1.08   -2.35   -3.89   -5.54   -7.07   -8.32   -9.13   -9.42   -9.14   -8.32   -6.95   -5.05   -2.56    0.63    4.63    9.45   14.87
+   295.0    0.00   -0.27   -1.09   -2.36   -3.91   -5.56   -7.10   -8.35   -9.16   -9.43   -9.15   -8.31   -6.94   -5.06   -2.60    0.55    4.52    9.34   14.83
+   300.0    0.00   -0.27   -1.09   -2.37   -3.93   -5.59   -7.13   -8.38   -9.18   -9.45   -9.15   -8.30   -6.94   -5.07   -2.64    0.48    4.42    9.26   14.84
+   305.0    0.00   -0.27   -1.10   -2.38   -3.95   -5.61   -7.16   -8.41   -9.20   -9.45   -9.14   -8.29   -6.93   -5.08   -2.68    0.41    4.36    9.23   14.89
+   310.0    0.00   -0.28   -1.11   -2.39   -3.97   -5.64   -7.19   -8.43   -9.21   -9.45   -9.13   -8.27   -6.93   -5.11   -2.72    0.36    4.32    9.24   14.96
+   315.0    0.00   -0.28   -1.11   -2.40   -3.99   -5.66   -7.21   -8.45   -9.22   -9.44   -9.11   -8.27   -6.94   -5.13   -2.76    0.34    4.33    9.29   15.06
+   320.0    0.00   -0.28   -1.12   -2.41   -4.00   -5.68   -7.23   -8.46   -9.22   -9.43   -9.10   -8.26   -6.95   -5.16   -2.79    0.33    4.37    9.38   15.16
+   325.0    0.00   -0.28   -1.12   -2.42   -4.02   -5.70   -7.25   -8.47   -9.22   -9.43   -9.09   -8.26   -6.97   -5.19   -2.80    0.35    4.44    9.49   15.25
+   330.0    0.00   -0.29   -1.13   -2.43   -4.03   -5.72   -7.27   -8.48   -9.22   -9.42   -9.09   -8.27   -6.98   -5.21   -2.81    0.38    4.52    9.61   15.31
+   335.0    0.00   -0.29   -1.14   -2.44   -4.04   -5.73   -7.28   -8.49   -9.22   -9.42   -9.08   -8.27   -7.00   -5.22   -2.81    0.42    4.61    9.71   15.35
+   340.0    0.00   -0.29   -1.14   -2.45   -4.05   -5.74   -7.29   -8.49   -9.22   -9.41   -9.08   -8.27   -7.01   -5.23   -2.80    0.46    4.68    9.79   15.37
+   345.0    0.00   -0.29   -1.14   -2.45   -4.06   -5.75   -7.29   -8.50   -9.23   -9.42   -9.09   -8.28   -7.01   -5.23   -2.79    0.49    4.73    9.84   15.36
+   350.0    0.00   -0.30   -1.15   -2.46   -4.06   -5.75   -7.30   -8.50   -9.23   -9.43   -9.09   -8.28   -7.01   -5.23   -2.79    0.50    4.76    9.86   15.35
+   355.0    0.00   -0.30   -1.15   -2.46   -4.06   -5.75   -7.30   -8.51   -9.24   -9.44   -9.10   -8.29   -7.01   -5.22   -2.78    0.50    4.75    9.85   15.32
+   360.0    0.00   -0.30   -1.15   -2.46   -4.06   -5.75   -7.30   -8.51   -9.25   -9.45   -9.12   -8.30   -7.01   -5.22   -2.78    0.48    4.71    9.81   15.31
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.27      0.15    115.06                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.16   -0.60   -1.28   -2.10   -3.00   -3.92   -4.79   -5.51   -5.98   -6.07   -5.69   -4.82   -3.51   -1.83    0.24    2.83    6.17   10.42
+     0.0    0.00   -0.14   -0.58   -1.25   -2.07   -2.98   -3.90   -4.78   -5.53   -6.03   -6.14   -5.78   -4.93   -3.63   -1.94    0.13    2.70    6.00   10.15
+     5.0    0.00   -0.14   -0.58   -1.25   -2.07   -2.97   -3.90   -4.78   -5.53   -6.03   -6.15   -5.80   -4.95   -3.66   -1.98    0.08    2.65    5.95   10.09
+    10.0    0.00   -0.15   -0.58   -1.25   -2.07   -2.97   -3.90   -4.78   -5.53   -6.02   -6.15   -5.80   -4.97   -3.68   -2.01    0.05    2.63    5.93   10.07
+    15.0    0.00   -0.15   -0.58   -1.25   -2.07   -2.97   -3.90   -4.77   -5.52   -6.02   -6.14   -5.80   -4.97   -3.70   -2.03    0.03    2.62    5.94   10.11
+    20.0    0.00   -0.15   -0.58   -1.25   -2.07   -2.97   -3.90   -4.77   -5.51   -6.01   -6.13   -5.79   -4.96   -3.69   -2.03    0.03    2.64    5.98   10.18
+    25.0    0.00   -0.15   -0.59   -1.25   -2.07   -2.98   -3.90   -4.77   -5.51   -5.99   -6.11   -5.77   -4.95   -3.68   -2.02    0.05    2.67    6.05   10.29
+    30.0    0.00   -0.15   -0.59   -1.26   -2.08   -2.98   -3.90   -4.77   -5.50   -5.98   -6.09   -5.74   -4.92   -3.66   -2.00    0.08    2.72    6.14   10.42
+    35.0    0.00   -0.15   -0.59   -1.26   -2.08   -2.99   -3.90   -4.77   -5.49   -5.96   -6.06   -5.72   -4.89   -3.63   -1.97    0.12    2.78    6.23   10.55
+    40.0    0.00   -0.15   -0.60   -1.27   -2.09   -2.99   -3.91   -4.77   -5.48   -5.95   -6.04   -5.69   -4.86   -3.60   -1.94    0.16    2.85    6.32   10.66
+    45.0    0.00   -0.16   -0.60   -1.27   -2.10   -3.00   -3.91   -4.77   -5.47   -5.93   -6.02   -5.66   -4.83   -3.57   -1.90    0.21    2.90    6.39   10.74
+    50.0    0.00   -0.16   -0.60   -1.28   -2.10   -3.01   -3.92   -4.77   -5.47   -5.91   -6.00   -5.63   -4.81   -3.54   -1.87    0.25    2.95    6.44   10.79
+    55.0    0.00   -0.16   -0.61   -1.28   -2.11   -3.01   -3.92   -4.76   -5.46   -5.90   -5.98   -5.62   -4.79   -3.52   -1.84    0.28    2.98    6.46   10.78
+    60.0    0.00   -0.16   -0.61   -1.29   -2.12   -3.02   -3.92   -4.76   -5.46   -5.90   -5.97   -5.60   -4.77   -3.50   -1.82    0.30    2.99    6.44   10.73
+    65.0    0.00   -0.16   -0.62   -1.30   -2.12   -3.02   -3.92   -4.76   -5.45   -5.89   -5.97   -5.60   -4.77   -3.49   -1.81    0.30    2.98    6.40   10.65
+    70.0    0.00   -0.17   -0.62   -1.30   -2.13   -3.02   -3.92   -4.76   -5.45   -5.89   -5.97   -5.60   -4.77   -3.49   -1.81    0.30    2.95    6.33   10.54
+    75.0    0.00   -0.17   -0.62   -1.31   -2.13   -3.03   -3.92   -4.76   -5.45   -5.89   -5.98   -5.61   -4.77   -3.50   -1.82    0.28    2.90    6.25   10.42
+    80.0    0.00   -0.17   -0.63   -1.31   -2.14   -3.03   -3.92   -4.76   -5.46   -5.90   -5.99   -5.62   -4.78   -3.50   -1.83    0.25    2.85    6.16   10.31
+    85.0    0.00   -0.17   -0.63   -1.31   -2.14   -3.03   -3.92   -4.76   -5.46   -5.91   -6.00   -5.64   -4.79   -3.51   -1.84    0.22    2.79    6.07   10.21
+    90.0    0.00   -0.17   -0.63   -1.32   -2.14   -3.03   -3.92   -4.76   -5.47   -5.92   -6.01   -5.65   -4.80   -3.52   -1.86    0.19    2.73    5.99   10.15
+    95.0    0.00   -0.17   -0.64   -1.32   -2.14   -3.03   -3.92   -4.77   -5.47   -5.93   -6.03   -5.66   -4.81   -3.52   -1.87    0.16    2.69    5.94   10.13
+   100.0    0.00   -0.18   -0.64   -1.32   -2.14   -3.03   -3.92   -4.77   -5.48   -5.94   -6.04   -5.67   -4.81   -3.52   -1.87    0.15    2.66    5.91   10.15
+   105.0    0.00   -0.18   -0.64   -1.32   -2.14   -3.03   -3.92   -4.77   -5.48   -5.95   -6.04   -5.67   -4.81   -3.51   -1.86    0.14    2.64    5.91   10.20
+   110.0    0.00   -0.18   -0.64   -1.32   -2.14   -3.03   -3.92   -4.77   -5.49   -5.96   -6.05   -5.66   -4.80   -3.50   -1.85    0.15    2.65    5.94   10.29
+   115.0    0.00   -0.18   -0.64   -1.32   -2.14   -3.03   -3.92   -4.77   -5.49   -5.96   -6.04   -5.66   -4.78   -3.48   -1.83    0.17    2.68    6.00   10.39
+   120.0    0.00   -0.18   -0.64   -1.32   -2.14   -3.03   -3.92   -4.77   -5.49   -5.96   -6.04   -5.64   -4.76   -3.46   -1.80    0.21    2.73    6.06   10.49
+   125.0    0.00   -0.18   -0.64   -1.32   -2.14   -3.03   -3.92   -4.77   -5.49   -5.95   -6.03   -5.63   -4.74   -3.43   -1.77    0.25    2.78    6.14   10.58
+   130.0    0.00   -0.18   -0.64   -1.32   -2.14   -3.02   -3.92   -4.77   -5.49   -5.95   -6.02   -5.61   -4.72   -3.41   -1.74    0.29    2.84    6.22   10.65
+   135.0    0.00   -0.18   -0.64   -1.32   -2.14   -3.02   -3.92   -4.77   -5.49   -5.94   -6.01   -5.60   -4.71   -3.39   -1.71    0.33    2.90    6.28   10.69
+   140.0    0.00   -0.18   -0.64   -1.32   -2.14   -3.02   -3.92   -4.77   -5.48   -5.94   -6.00   -5.59   -4.70   -3.38   -1.70    0.35    2.94    6.32   10.69
+   145.0    0.00   -0.18   -0.64   -1.32   -2.14   -3.02   -3.92   -4.77   -5.49   -5.94   -6.00   -5.59   -4.70   -3.38   -1.69    0.37    2.96    6.34   10.65
+   150.0    0.00   -0.18   -0.64   -1.32   -2.14   -3.02   -3.93   -4.78   -5.49   -5.94   -6.00   -5.59   -4.70   -3.39   -1.71    0.36    2.96    6.32   10.58
+   155.0    0.00   -0.18   -0.64   -1.32   -2.13   -3.03   -3.93   -4.78   -5.50   -5.95   -6.01   -5.61   -4.72   -3.41   -1.73    0.33    2.93    6.28   10.48
+   160.0    0.00   -0.17   -0.63   -1.31   -2.13   -3.03   -3.93   -4.79   -5.51   -5.96   -6.03   -5.63   -4.75   -3.45   -1.77    0.29    2.88    6.21   10.36
+   165.0    0.00   -0.17   -0.63   -1.31   -2.13   -3.03   -3.94   -4.80   -5.52   -5.98   -6.05   -5.65   -4.78   -3.49   -1.83    0.23    2.82    6.13   10.24
+   170.0    0.00   -0.17   -0.63   -1.31   -2.13   -3.03   -3.94   -4.81   -5.54   -6.00   -6.07   -5.68   -4.82   -3.54   -1.89    0.16    2.74    6.05   10.13
+   175.0    0.00   -0.17   -0.63   -1.30   -2.13   -3.03   -3.95   -4.82   -5.55   -6.02   -6.10   -5.72   -4.86   -3.59   -1.95    0.09    2.66    5.96   10.04
+   180.0    0.00   -0.17   -0.62   -1.30   -2.12   -3.03   -3.95   -4.83   -5.57   -6.04   -6.13   -5.75   -4.90   -3.63   -2.00    0.03    2.60    5.90    9.98
+   185.0    0.00   -0.17   -0.62   -1.29   -2.12   -3.02   -3.95   -4.84   -5.58   -6.06   -6.15   -5.78   -4.93   -3.67   -2.04   -0.02    2.55    5.86    9.96
+   190.0    0.00   -0.17   -0.61   -1.29   -2.11   -3.02   -3.95   -4.84   -5.59   -6.07   -6.17   -5.80   -4.95   -3.69   -2.06   -0.04    2.53    5.85    9.98
+   195.0    0.00   -0.16   -0.61   -1.28   -2.11   -3.02   -3.95   -4.84   -5.59   -6.08   -6.18   -5.81   -4.96   -3.70   -2.07   -0.04    2.55    5.88   10.03
+   200.0    0.00   -0.16   -0.61   -1.28   -2.10   -3.01   -3.95   -4.84   -5.59   -6.08   -6.18   -5.81   -4.96   -3.69   -2.05    0.00    2.59    5.95   10.13
+   205.0    0.00   -0.16   -0.60   -1.27   -2.10   -3.00   -3.94   -4.83   -5.59   -6.08   -6.17   -5.80   -4.95   -3.67   -2.01    0.05    2.67    6.04   10.25
+   210.0    0.00   -0.16   -0.60   -1.27   -2.09   -3.00   -3.93   -4.83   -5.58   -6.06   -6.16   -5.78   -4.92   -3.63   -1.95    0.13    2.77    6.16   10.38
+   215.0    0.00   -0.16   -0.60   -1.26   -2.08   -2.99   -3.93   -4.82   -5.57   -6.05   -6.14   -5.76   -4.89   -3.58   -1.88    0.22    2.88    6.28   10.52
+   220.0    0.00   -0.15   -0.59   -1.26   -2.08   -2.99   -3.92   -4.81   -5.55   -6.03   -6.12   -5.73   -4.85   -3.53   -1.81    0.32    2.99    6.40   10.64
+   225.0    0.00   -0.15   -0.59   -1.26   -2.08   -2.98   -3.91   -4.80   -5.54   -6.01   -6.10   -5.70   -4.81   -3.48   -1.74    0.40    3.08    6.50   10.74
+   230.0    0.00   -0.15   -0.59   -1.25   -2.07   -2.98   -3.91   -4.79   -5.53   -6.00   -6.07   -5.67   -4.78   -3.43   -1.69    0.47    3.15    6.57   10.81
+   235.0    0.00   -0.15   -0.59   -1.25   -2.07   -2.98   -3.91   -4.79   -5.52   -5.98   -6.06   -5.65   -4.75   -3.39   -1.65    0.51    3.19    6.60   10.83
+   240.0    0.00   -0.15   -0.59   -1.25   -2.07   -2.98   -3.91   -4.78   -5.51   -5.98   -6.05   -5.64   -4.73   -3.37   -1.62    0.52    3.20    6.59   10.81
+   245.0    0.00   -0.15   -0.58   -1.25   -2.07   -2.98   -3.91   -4.78   -5.51   -5.97   -6.04   -5.63   -4.72   -3.37   -1.63    0.51    3.16    6.53   10.75
+   250.0    0.00   -0.15   -0.58   -1.25   -2.07   -2.98   -3.91   -4.79   -5.52   -5.98   -6.04   -5.63   -4.72   -3.38   -1.65    0.47    3.09    6.44   10.65
+   255.0    0.00   -0.15   -0.58   -1.25   -2.07   -2.98   -3.91   -4.79   -5.52   -5.98   -6.05   -5.64   -4.74   -3.40   -1.68    0.41    3.00    6.32   10.52
+   260.0    0.00   -0.15   -0.58   -1.25   -2.08   -2.99   -3.92   -4.80   -5.53   -5.99   -6.06   -5.66   -4.76   -3.43   -1.73    0.33    2.89    6.18   10.38
+   265.0    0.00   -0.14   -0.58   -1.25   -2.08   -2.99   -3.92   -4.80   -5.53   -6.00   -6.08   -5.68   -4.78   -3.46   -1.78    0.26    2.78    6.05   10.25
+   270.0    0.00   -0.14   -0.58   -1.25   -2.08   -2.99   -3.92   -4.80   -5.54   -6.01   -6.09   -5.70   -4.81   -3.50   -1.83    0.19    2.69    5.93   10.13
+   275.0    0.00   -0.14   -0.58   -1.25   -2.08   -2.99   -3.92   -4.80   -5.54   -6.02   -6.10   -5.71   -4.83   -3.52   -1.87    0.13    2.61    5.84   10.05
+   280.0    0.00   -0.14   -0.58   -1.25   -2.08   -2.99   -3.92   -4.80   -5.54   -6.02   -6.11   -5.73   -4.85   -3.54   -1.89    0.10    2.57    5.78   10.01
+   285.0    0.00   -0.14   -0.58   -1.25   -2.08   -2.99   -3.92   -4.80   -5.54   -6.02   -6.12   -5.73   -4.85   -3.55   -1.90    0.09    2.55    5.77   10.02
+   290.0    0.00   -0.14   -0.58   -1.25   -2.08   -2.99   -3.92   -4.79   -5.53   -6.02   -6.11   -5.73   -4.85   -3.54   -1.89    0.10    2.57    5.81   10.08
+   295.0    0.00   -0.14   -0.58   -1.26   -2.08   -2.99   -3.91   -4.79   -5.53   -6.01   -6.11   -5.72   -4.84   -3.53   -1.86    0.14    2.63    5.88   10.18
+   300.0    0.00   -0.14   -0.58   -1.26   -2.08   -2.99   -3.91   -4.78   -5.52   -6.00   -6.10   -5.71   -4.82   -3.50   -1.82    0.19    2.70    5.97   10.30
+   305.0    0.00   -0.14   -0.58   -1.26   -2.08   -2.99   -3.91   -4.78   -5.52   -5.99   -6.08   -5.69   -4.80   -3.47   -1.78    0.26    2.78    6.09   10.45
+   310.0    0.00   -0.14   -0.58   -1.26   -2.08   -2.99   -3.91   -4.78   -5.51   -5.98   -6.07   -5.68   -4.78   -3.44   -1.74    0.32    2.87    6.20   10.58
+   315.0    0.00   -0.14   -0.58   -1.26   -2.08   -2.99   -3.91   -4.78   -5.51   -5.98   -6.06   -5.66   -4.76   -3.41   -1.70    0.37    2.94    6.30   10.70
+   320.0    0.00   -0.14   -0.58   -1.26   -2.08   -2.99   -3.91   -4.78   -5.51   -5.97   -6.05   -5.65   -4.75   -3.40   -1.68    0.41    3.00    6.37   10.78
+   325.0    0.00   -0.14   -0.58   -1.25   -2.08   -2.99   -3.91   -4.78   -5.51   -5.98   -6.05   -5.65   -4.74   -3.39   -1.66    0.43    3.03    6.42   10.82
+   330.0    0.00   -0.14   -0.58   -1.25   -2.08   -2.99   -3.91   -4.78   -5.51   -5.98   -6.06   -5.66   -4.75   -3.40   -1.67    0.43    3.04    6.42   10.81
+   335.0    0.00   -0.14   -0.58   -1.25   -2.08   -2.99   -3.92   -4.79   -5.52   -5.99   -6.07   -5.67   -4.77   -3.42   -1.69    0.41    3.02    6.39   10.75
+   340.0    0.00   -0.14   -0.58   -1.25   -2.08   -2.99   -3.91   -4.79   -5.52   -6.00   -6.08   -5.69   -4.79   -3.45   -1.73    0.37    2.97    6.33   10.65
+   345.0    0.00   -0.14   -0.58   -1.25   -2.08   -2.99   -3.91   -4.79   -5.53   -6.00   -6.10   -5.71   -4.83   -3.49   -1.78    0.31    2.91    6.25   10.52
+   350.0    0.00   -0.14   -0.58   -1.25   -2.08   -2.98   -3.91   -4.79   -5.53   -6.01   -6.11   -5.74   -4.86   -3.54   -1.83    0.25    2.84    6.16   10.38
+   355.0    0.00   -0.14   -0.58   -1.25   -2.07   -2.98   -3.91   -4.79   -5.53   -6.02   -6.13   -5.76   -4.90   -3.58   -1.89    0.19    2.77    6.07   10.25
+   360.0    0.00   -0.14   -0.58   -1.25   -2.07   -2.98   -3.90   -4.78   -5.53   -6.03   -6.14   -5.78   -4.93   -3.63   -1.94    0.13    2.70    6.00   10.15
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+LEIAT504        OLGA                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               1    02-MAR-09 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+     -1.18     -0.81     82.88                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.28   -1.06   -2.25   -3.67   -5.16   -6.53   -7.63   -8.32   -8.47   -8.02   -6.96   -5.37   -3.33   -0.85    2.19    6.09   11.16   17.46
+     0.0    0.00   -0.23   -1.01   -2.23   -3.74   -5.33   -6.80   -7.96   -8.62   -8.64   -7.98   -6.70   -4.94   -2.89   -0.57    2.18    5.73   10.32   15.48
+     5.0    0.00   -0.23   -1.01   -2.23   -3.73   -5.32   -6.78   -7.92   -8.56   -8.56   -7.88   -6.59   -4.82   -2.76   -0.45    2.26    5.68   10.04   14.88
+    10.0    0.00   -0.23   -1.01   -2.23   -3.73   -5.31   -6.76   -7.89   -8.50   -8.49   -7.80   -6.49   -4.71   -2.62   -0.30    2.39    5.73    9.86   14.40
+    15.0    0.00   -0.23   -1.01   -2.23   -3.73   -5.31   -6.75   -7.86   -8.46   -8.43   -7.73   -6.43   -4.64   -2.52   -0.15    2.56    5.84    9.81   14.10
+    20.0    0.00   -0.24   -1.01   -2.23   -3.73   -5.31   -6.74   -7.84   -8.42   -8.40   -7.71   -6.42   -4.63   -2.49   -0.06    2.71    5.99    9.88   14.04
+    25.0    0.00   -0.24   -1.01   -2.23   -3.74   -5.31   -6.74   -7.82   -8.41   -8.39   -7.74   -6.47   -4.70   -2.54   -0.04    2.82    6.16   10.06   14.23
+    30.0    0.00   -0.24   -1.02   -2.24   -3.74   -5.31   -6.74   -7.82   -8.41   -8.42   -7.81   -6.60   -4.86   -2.68   -0.12    2.85    6.31   10.32   14.64
+    35.0    0.00   -0.24   -1.02   -2.24   -3.74   -5.31   -6.73   -7.82   -8.43   -8.48   -7.92   -6.78   -5.09   -2.91   -0.28    2.81    6.43   10.61   15.22
+    40.0    0.00   -0.25   -1.02   -2.24   -3.74   -5.31   -6.73   -7.82   -8.45   -8.55   -8.07   -7.01   -5.38   -3.21   -0.52    2.70    6.49   10.90   15.88
+    45.0    0.00   -0.25   -1.03   -2.25   -3.74   -5.30   -6.71   -7.81   -8.48   -8.63   -8.22   -7.24   -5.68   -3.52   -0.78    2.54    6.50   11.15   16.54
+    50.0    0.00   -0.25   -1.03   -2.25   -3.73   -5.28   -6.69   -7.80   -8.49   -8.70   -8.37   -7.46   -5.95   -3.81   -1.04    2.37    6.46   11.32   17.09
+    55.0    0.00   -0.26   -1.04   -2.24   -3.71   -5.25   -6.65   -7.77   -8.49   -8.74   -8.48   -7.63   -6.16   -4.04   -1.24    2.22    6.38   11.38   17.47
+    60.0    0.00   -0.26   -1.04   -2.24   -3.69   -5.21   -6.60   -7.72   -8.46   -8.76   -8.53   -7.73   -6.28   -4.16   -1.36    2.11    6.29   11.35   17.64
+    65.0    0.00   -0.27   -1.05   -2.23   -3.67   -5.17   -6.54   -7.66   -8.41   -8.73   -8.53   -7.74   -6.29   -4.16   -1.37    2.07    6.19   11.21   17.61
+    70.0    0.00   -0.27   -1.05   -2.23   -3.64   -5.11   -6.47   -7.58   -8.34   -8.66   -8.46   -7.66   -6.19   -4.05   -1.28    2.09    6.09   11.00   17.39
+    75.0    0.00   -0.27   -1.05   -2.22   -3.62   -5.06   -6.40   -7.49   -8.24   -8.56   -8.34   -7.50   -5.99   -3.84   -1.10    2.15    6.00   10.75   17.07
+    80.0    0.00   -0.28   -1.06   -2.21   -3.59   -5.01   -6.32   -7.40   -8.14   -8.43   -8.18   -7.29   -5.74   -3.57   -0.89    2.24    5.91   10.49   16.72
+    85.0    0.00   -0.28   -1.06   -2.21   -3.56   -4.96   -6.25   -7.32   -8.04   -8.31   -8.00   -7.05   -5.46   -3.29   -0.68    2.32    5.82   10.27   16.44
+    90.0    0.00   -0.29   -1.07   -2.21   -3.54   -4.92   -6.20   -7.25   -7.96   -8.19   -7.84   -6.83   -5.20   -3.05   -0.51    2.36    5.73   10.10   16.29
+    95.0    0.00   -0.29   -1.07   -2.20   -3.53   -4.89   -6.16   -7.21   -7.90   -8.10   -7.71   -6.66   -5.00   -2.88   -0.43    2.33    5.63   10.02   16.33
+   100.0    0.00   -0.30   -1.08   -2.21   -3.52   -4.88   -6.14   -7.19   -7.88   -8.06   -7.63   -6.56   -4.90   -2.82   -0.44    2.24    5.53   10.03   16.56
+   105.0    0.00   -0.30   -1.08   -2.21   -3.52   -4.88   -6.15   -7.20   -7.89   -8.07   -7.63   -6.54   -4.90   -2.87   -0.56    2.08    5.43   10.14   16.97
+   110.0    0.00   -0.30   -1.09   -2.22   -3.53   -4.89   -6.17   -7.23   -7.94   -8.13   -7.69   -6.61   -5.00   -3.02   -0.77    1.88    5.35   10.33   17.49
+   115.0    0.00   -0.31   -1.10   -2.22   -3.54   -4.91   -6.20   -7.29   -8.02   -8.23   -7.81   -6.75   -5.17   -3.24   -1.01    1.67    5.31   10.58   18.06
+   120.0    0.00   -0.31   -1.10   -2.23   -3.55   -4.93   -6.24   -7.36   -8.12   -8.35   -7.96   -6.94   -5.39   -3.49   -1.26    1.50    5.32   10.87   18.59
+   125.0    0.00   -0.31   -1.11   -2.24   -3.57   -4.95   -6.29   -7.43   -8.22   -8.49   -8.13   -7.13   -5.61   -3.72   -1.46    1.39    5.39   11.16   19.00
+   130.0    0.00   -0.32   -1.11   -2.25   -3.58   -4.98   -6.32   -7.48   -8.30   -8.60   -8.27   -7.30   -5.80   -3.89   -1.58    1.38    5.53   11.43   19.25
+   135.0    0.00   -0.32   -1.12   -2.26   -3.59   -4.99   -6.34   -7.52   -8.36   -8.68   -8.38   -7.42   -5.91   -3.97   -1.59    1.47    5.73   11.67   19.31
+   140.0    0.00   -0.32   -1.12   -2.26   -3.60   -5.00   -6.35   -7.53   -8.38   -8.71   -8.42   -7.46   -5.93   -3.94   -1.49    1.66    5.97   11.86   19.19
+   145.0    0.00   -0.32   -1.13   -2.26   -3.60   -4.99   -6.34   -7.51   -8.35   -8.69   -8.39   -7.42   -5.87   -3.83   -1.31    1.91    6.23   11.99   18.93
+   150.0    0.00   -0.32   -1.13   -2.26   -3.59   -4.97   -6.30   -7.45   -8.28   -8.60   -8.29   -7.31   -5.72   -3.64   -1.07    2.19    6.48   12.07   18.60
+   155.0    0.00   -0.32   -1.13   -2.26   -3.58   -4.95   -6.25   -7.38   -8.17   -8.46   -8.13   -7.13   -5.53   -3.42   -0.83    2.43    6.68   12.11   18.27
+   160.0    0.00   -0.32   -1.12   -2.26   -3.57   -4.92   -6.19   -7.28   -8.03   -8.29   -7.94   -6.93   -5.32   -3.22   -0.63    2.60    6.80   12.11   18.02
+   165.0    0.00   -0.32   -1.12   -2.25   -3.55   -4.89   -6.13   -7.18   -7.89   -8.11   -7.73   -6.72   -5.14   -3.07   -0.53    2.67    6.83   12.09   17.88
+   170.0    0.00   -0.32   -1.12   -2.24   -3.54   -4.86   -6.08   -7.09   -7.75   -7.94   -7.54   -6.54   -5.01   -3.02   -0.55    2.60    6.76   12.06   17.90
+   175.0    0.00   -0.32   -1.11   -2.24   -3.53   -4.84   -6.04   -7.02   -7.65   -7.80   -7.39   -6.42   -4.96   -3.07   -0.70    2.40    6.60   12.02   18.06
+   180.0    0.00   -0.32   -1.11   -2.23   -3.52   -4.83   -6.02   -6.98   -7.58   -7.71   -7.31   -6.38   -5.00   -3.22   -0.95    2.11    6.37   11.99   18.31
+   185.0    0.00   -0.32   -1.11   -2.23   -3.52   -4.83   -6.03   -6.98   -7.57   -7.69   -7.29   -6.41   -5.11   -3.44   -1.27    1.77    6.12   11.96   18.61
+   190.0    0.00   -0.31   -1.10   -2.22   -3.53   -4.86   -6.07   -7.03   -7.61   -7.73   -7.34   -6.50   -5.28   -3.71   -1.60    1.44    5.89   11.93   18.88
+   195.0    0.00   -0.31   -1.10   -2.22   -3.54   -4.89   -6.13   -7.11   -7.71   -7.83   -7.45   -6.64   -5.47   -3.95   -1.88    1.17    5.71   11.91   19.06
+   200.0    0.00   -0.31   -1.09   -2.23   -3.56   -4.94   -6.22   -7.23   -7.84   -7.97   -7.60   -6.80   -5.65   -4.15   -2.07    1.02    5.62   11.89   19.08
+   205.0    0.00   -0.31   -1.09   -2.23   -3.58   -5.00   -6.32   -7.37   -8.01   -8.15   -7.77   -6.95   -5.78   -4.24   -2.12    1.01    5.63   11.86   18.94
+   210.0    0.00   -0.30   -1.08   -2.23   -3.61   -5.06   -6.42   -7.52   -8.19   -8.33   -7.94   -7.07   -5.84   -4.22   -2.03    1.15    5.75   11.83   18.64
+   215.0    0.00   -0.30   -1.08   -2.24   -3.64   -5.13   -6.53   -7.67   -8.36   -8.51   -8.08   -7.15   -5.81   -4.08   -1.79    1.43    5.95   11.79   18.22
+   220.0    0.00   -0.30   -1.08   -2.24   -3.67   -5.19   -6.63   -7.80   -8.52   -8.65   -8.18   -7.16   -5.71   -3.85   -1.44    1.80    6.19   11.73   17.74
+   225.0    0.00   -0.29   -1.08   -2.25   -3.69   -5.24   -6.71   -7.91   -8.64   -8.75   -8.23   -7.12   -5.54   -3.55   -1.05    2.19    6.43   11.66   17.28
+   230.0    0.00   -0.29   -1.07   -2.26   -3.71   -5.28   -6.77   -7.99   -8.71   -8.81   -8.23   -7.04   -5.35   -3.24   -0.66    2.55    6.63   11.57   16.93
+   235.0    0.00   -0.29   -1.07   -2.26   -3.72   -5.30   -6.81   -8.02   -8.75   -8.82   -8.20   -6.94   -5.16   -2.96   -0.35    2.81    6.73   11.46   16.72
+   240.0    0.00   -0.28   -1.07   -2.26   -3.73   -5.32   -6.82   -8.03   -8.74   -8.79   -8.14   -6.83   -5.00   -2.76   -0.16    2.93    6.70   11.32   16.72
+   245.0    0.00   -0.28   -1.07   -2.26   -3.74   -5.32   -6.81   -8.00   -8.69   -8.73   -8.06   -6.74   -4.90   -2.67   -0.11    2.88    6.54   11.16   16.90
+   250.0    0.00   -0.28   -1.07   -2.27   -3.74   -5.30   -6.78   -7.94   -8.61   -8.65   -7.99   -6.68   -4.88   -2.70   -0.23    2.66    6.26   10.99   17.25
+   255.0    0.00   -0.27   -1.06   -2.27   -3.73   -5.29   -6.73   -7.87   -8.52   -8.56   -7.92   -6.67   -4.93   -2.84   -0.47    2.32    5.89   10.80   17.71
+   260.0    0.00   -0.27   -1.06   -2.27   -3.73   -5.26   -6.68   -7.79   -8.42   -8.47   -7.88   -6.70   -5.05   -3.06   -0.79    1.91    5.48   10.62   18.20
+   265.0    0.00   -0.27   -1.06   -2.27   -3.72   -5.24   -6.63   -7.71   -8.33   -8.40   -7.86   -6.76   -5.20   -3.32   -1.15    1.49    5.08   10.45   18.64
+   270.0    0.00   -0.27   -1.06   -2.27   -3.72   -5.22   -6.58   -7.63   -8.25   -8.34   -7.86   -6.84   -5.37   -3.57   -1.46    1.14    4.77   10.32   18.97
+   275.0    0.00   -0.26   -1.06   -2.27   -3.71   -5.20   -6.54   -7.58   -8.19   -8.31   -7.88   -6.93   -5.53   -3.77   -1.68    0.92    4.58   10.24   19.15
+   280.0    0.00   -0.26   -1.06   -2.27   -3.72   -5.19   -6.51   -7.54   -8.16   -8.30   -7.91   -7.01   -5.64   -3.88   -1.78    0.86    4.55   10.22   19.16
+   285.0    0.00   -0.26   -1.06   -2.27   -3.72   -5.19   -6.51   -7.53   -8.15   -8.31   -7.95   -7.06   -5.68   -3.89   -1.72    0.98    4.69   10.29   19.01
+   290.0    0.00   -0.26   -1.05   -2.27   -3.73   -5.20   -6.51   -7.53   -8.17   -8.34   -7.99   -7.09   -5.67   -3.80   -1.52    1.26    4.98   10.43   18.75
+   295.0    0.00   -0.25   -1.05   -2.28   -3.73   -5.21   -6.53   -7.56   -8.20   -8.38   -8.03   -7.10   -5.60   -3.62   -1.22    1.67    5.39   10.65   18.42
+   300.0    0.00   -0.25   -1.05   -2.28   -3.74   -5.23   -6.57   -7.61   -8.26   -8.44   -8.06   -7.08   -5.50   -3.39   -0.86    2.14    5.88   10.93   18.10
+   305.0    0.00   -0.25   -1.05   -2.28   -3.75   -5.26   -6.61   -7.67   -8.33   -8.50   -8.09   -7.05   -5.37   -3.15   -0.49    2.61    6.36   11.24   17.84
+   310.0    0.00   -0.25   -1.05   -2.28   -3.76   -5.29   -6.66   -7.74   -8.41   -8.57   -8.12   -7.02   -5.26   -2.94   -0.17    3.01    6.80   11.55   17.67
+   315.0    0.00   -0.24   -1.04   -2.28   -3.77   -5.31   -6.71   -7.81   -8.49   -8.64   -8.16   -6.99   -5.17   -2.78    0.05    3.30    7.13   11.83   17.60
+   320.0    0.00   -0.24   -1.04   -2.28   -3.78   -5.33   -6.75   -7.87   -8.57   -8.70   -8.19   -6.98   -5.12   -2.70    0.15    3.44    7.32   12.03   17.62
+   325.0    0.00   -0.24   -1.03   -2.27   -3.78   -5.35   -6.79   -7.93   -8.63   -8.76   -8.22   -6.98   -5.10   -2.69    0.14    3.43    7.36   12.14   17.67
+   330.0    0.00   -0.24   -1.03   -2.27   -3.78   -5.36   -6.82   -7.98   -8.69   -8.81   -8.25   -6.99   -5.12   -2.75    0.03    3.29    7.25   12.13   17.70
+   335.0    0.00   -0.24   -1.03   -2.26   -3.78   -5.37   -6.84   -8.01   -8.72   -8.84   -8.26   -7.00   -5.15   -2.84   -0.15    3.05    7.03   12.00   17.66
+   340.0    0.00   -0.23   -1.02   -2.26   -3.77   -5.37   -6.85   -8.03   -8.74   -8.84   -8.25   -6.99   -5.17   -2.94   -0.34    2.78    6.74   11.76   17.49
+   345.0    0.00   -0.23   -1.02   -2.25   -3.76   -5.36   -6.85   -8.03   -8.74   -8.82   -8.22   -6.96   -5.17   -3.01   -0.50    2.52    6.42   11.44   17.16
+   350.0    0.00   -0.23   -1.01   -2.24   -3.75   -5.35   -6.84   -8.02   -8.71   -8.78   -8.16   -6.90   -5.13   -3.02   -0.61    2.31    6.12   11.06   16.69
+   355.0    0.00   -0.23   -1.01   -2.24   -3.74   -5.34   -6.82   -7.99   -8.67   -8.72   -8.08   -6.81   -5.05   -2.98   -0.63    2.20    5.88   10.67   16.11
+   360.0    0.00   -0.23   -1.01   -2.23   -3.74   -5.33   -6.80   -7.96   -8.62   -8.64   -7.98   -6.70   -4.94   -2.89   -0.57    2.18    5.73   10.32   15.48
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.41      0.29    112.82                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.10   -0.39   -0.87   -1.49   -2.19   -2.90   -3.55   -4.06   -4.37   -4.38   -3.92   -2.82   -0.94    1.68    4.65    7.21    8.35    7.09
+     0.0    0.00   -0.07   -0.39   -0.91   -1.57   -2.28   -2.98   -3.60   -4.12   -4.47   -4.52   -4.07   -2.92   -0.87    2.04    5.47    8.63   10.40    9.59
+     5.0    0.00   -0.07   -0.39   -0.91   -1.56   -2.25   -2.93   -3.55   -4.09   -4.47   -4.54   -4.07   -2.86   -0.78    2.10    5.44    8.77   11.66   14.08
+    10.0    0.00   -0.07   -0.39   -0.91   -1.55   -2.22   -2.88   -3.50   -4.05   -4.46   -4.53   -4.04   -2.78   -0.68    2.11    5.31    8.74   12.70   18.31
+    15.0    0.00   -0.07   -0.38   -0.91   -1.54   -2.20   -2.84   -3.45   -4.01   -4.43   -4.50   -3.98   -2.68   -0.59    2.07    5.07    8.51   13.34   21.79
+    20.0    0.00   -0.07   -0.38   -0.91   -1.54   -2.19   -2.82   -3.43   -3.98   -4.39   -4.44   -3.88   -2.55   -0.51    2.00    4.74    8.07   13.48   24.10
+    25.0    0.00   -0.07   -0.38   -0.90   -1.54   -2.20   -2.82   -3.41   -3.95   -4.33   -4.35   -3.76   -2.43   -0.44    1.88    4.34    7.42   13.03   24.94
+    30.0    0.00   -0.06   -0.38   -0.90   -1.55   -2.21   -2.84   -3.42   -3.93   -4.28   -4.26   -3.64   -2.30   -0.40    1.74    3.90    6.63   12.02   24.16
+    35.0    0.00   -0.06   -0.38   -0.90   -1.56   -2.23   -2.87   -3.44   -3.92   -4.22   -4.15   -3.51   -2.21   -0.39    1.59    3.47    5.78   10.52   21.76
+    40.0    0.00   -0.06   -0.37   -0.90   -1.57   -2.26   -2.91   -3.47   -3.91   -4.16   -4.06   -3.41   -2.15   -0.42    1.44    3.11    4.95    8.68   17.93
+    45.0    0.00   -0.06   -0.37   -0.90   -1.58   -2.30   -2.96   -3.51   -3.92   -4.11   -3.98   -3.35   -2.15   -0.49    1.30    2.85    4.25    6.68   13.01
+    50.0    0.00   -0.07   -0.37   -0.89   -1.58   -2.33   -3.01   -3.55   -3.93   -4.08   -3.93   -3.34   -2.21   -0.60    1.20    2.74    3.76    4.73    7.42
+    55.0    0.00   -0.07   -0.36   -0.89   -1.59   -2.35   -3.05   -3.59   -3.94   -4.06   -3.91   -3.38   -2.33   -0.74    1.14    2.78    3.53    3.01    1.67
+    60.0    0.00   -0.07   -0.36   -0.88   -1.58   -2.36   -3.08   -3.62   -3.95   -4.06   -3.93   -3.47   -2.50   -0.92    1.11    2.98    3.61    1.69   -3.74
+    65.0    0.00   -0.07   -0.35   -0.86   -1.57   -2.36   -3.09   -3.64   -3.96   -4.07   -3.98   -3.59   -2.70   -1.10    1.13    3.31    3.97    0.88   -8.37
+    70.0    0.00   -0.07   -0.35   -0.85   -1.55   -2.34   -3.08   -3.64   -3.97   -4.10   -4.04   -3.73   -2.91   -1.28    1.18    3.74    4.56    0.63  -11.85
+    75.0    0.00   -0.07   -0.34   -0.83   -1.52   -2.31   -3.06   -3.63   -3.98   -4.13   -4.12   -3.88   -3.11   -1.43    1.24    4.19    5.32    0.91  -13.95
+    80.0    0.00   -0.08   -0.34   -0.82   -1.49   -2.27   -3.02   -3.62   -3.99   -4.17   -4.20   -4.00   -3.27   -1.56    1.31    4.63    6.14    1.66  -14.57
+    85.0    0.00   -0.08   -0.34   -0.80   -1.45   -2.22   -2.98   -3.59   -3.99   -4.21   -4.27   -4.10   -3.38   -1.63    1.38    4.99    6.92    2.77  -13.75
+    90.0    0.00   -0.08   -0.34   -0.79   -1.42   -2.17   -2.93   -3.56   -4.00   -4.24   -4.32   -4.15   -3.42   -1.66    1.42    5.23    7.58    4.10  -11.62
+    95.0    0.00   -0.09   -0.35   -0.78   -1.39   -2.12   -2.88   -3.53   -4.00   -4.28   -4.36   -4.16   -3.40   -1.64    1.43    5.32    8.05    5.52   -8.42
+   100.0    0.00   -0.09   -0.35   -0.78   -1.36   -2.08   -2.83   -3.51   -4.01   -4.30   -4.37   -4.13   -3.33   -1.58    1.41    5.27    8.30    6.91   -4.44
+   105.0    0.00   -0.10   -0.36   -0.78   -1.35   -2.04   -2.79   -3.48   -4.02   -4.33   -4.37   -4.07   -3.21   -1.49    1.36    5.08    8.33    8.19    0.02
+   110.0    0.00   -0.11   -0.38   -0.79   -1.35   -2.02   -2.76   -3.46   -4.02   -4.35   -4.37   -3.99   -3.08   -1.38    1.29    4.78    8.17    9.31    4.67
+   115.0    0.00   -0.12   -0.39   -0.81   -1.35   -2.01   -2.73   -3.44   -4.03   -4.36   -4.36   -3.92   -2.95   -1.28    1.20    4.43    7.88   10.24    9.25
+   120.0    0.00   -0.12   -0.41   -0.83   -1.37   -2.01   -2.72   -3.43   -4.03   -4.38   -4.36   -3.87   -2.83   -1.19    1.11    4.07    7.53   11.01   13.57
+   125.0    0.00   -0.13   -0.43   -0.86   -1.40   -2.02   -2.71   -3.42   -4.03   -4.40   -4.38   -3.85   -2.76   -1.12    1.03    3.74    7.18   11.65   17.47
+   130.0    0.00   -0.14   -0.45   -0.90   -1.43   -2.04   -2.71   -3.40   -4.02   -4.42   -4.41   -3.86   -2.73   -1.09    0.97    3.48    6.89   12.18   20.86
+   135.0    0.00   -0.15   -0.47   -0.93   -1.47   -2.07   -2.72   -3.39   -4.01   -4.43   -4.45   -3.90   -2.74   -1.07    0.93    3.30    6.69   12.64   23.68
+   140.0    0.00   -0.15   -0.50   -0.96   -1.51   -2.10   -2.72   -3.38   -4.00   -4.44   -4.49   -3.96   -2.77   -1.08    0.91    3.22    6.60   13.05   25.91
+   145.0    0.00   -0.16   -0.51   -1.00   -1.55   -2.12   -2.73   -3.37   -3.99   -4.45   -4.54   -4.02   -2.83   -1.09    0.92    3.21    6.61   13.39   27.56
+   150.0    0.00   -0.17   -0.53   -1.02   -1.58   -2.15   -2.74   -3.36   -3.97   -4.46   -4.57   -4.08   -2.88   -1.10    0.95    3.26    6.67   13.66   28.65
+   155.0    0.00   -0.17   -0.54   -1.05   -1.60   -2.17   -2.74   -3.35   -3.96   -4.45   -4.59   -4.11   -2.91   -1.10    1.00    3.33    6.75   13.83   29.18
+   160.0    0.00   -0.17   -0.55   -1.06   -1.62   -2.18   -2.75   -3.34   -3.95   -4.44   -4.58   -4.11   -2.90   -1.08    1.04    3.39    6.81   13.85   29.18
+   165.0    0.00   -0.18   -0.56   -1.06   -1.62   -2.18   -2.75   -3.34   -3.94   -4.43   -4.55   -4.07   -2.85   -1.04    1.08    3.42    6.81   13.72   28.69
+   170.0    0.00   -0.18   -0.56   -1.06   -1.61   -2.18   -2.75   -3.35   -3.94   -4.40   -4.50   -3.99   -2.77   -0.97    1.11    3.42    6.74   13.43   27.73
+   175.0    0.00   -0.18   -0.56   -1.05   -1.60   -2.16   -2.74   -3.35   -3.95   -4.38   -4.43   -3.88   -2.65   -0.89    1.13    3.37    6.60   12.98   26.34
+   180.0    0.00   -0.18   -0.55   -1.03   -1.57   -2.14   -2.73   -3.36   -3.96   -4.36   -4.35   -3.75   -2.52   -0.81    1.14    3.30    6.42   12.39   24.56
+   185.0    0.00   -0.18   -0.54   -1.01   -1.54   -2.11   -2.73   -3.37   -3.97   -4.34   -4.28   -3.63   -2.39   -0.73    1.14    3.24    6.23   11.73   22.44
+   190.0    0.00   -0.17   -0.53   -0.98   -1.50   -2.08   -2.72   -3.39   -3.99   -4.33   -4.22   -3.53   -2.29   -0.67    1.15    3.21    6.08   11.04   20.03
+   195.0    0.00   -0.17   -0.51   -0.96   -1.47   -2.05   -2.71   -3.40   -4.01   -4.33   -4.18   -3.46   -2.23   -0.64    1.17    3.24    6.02   10.36   17.42
+   200.0    0.00   -0.17   -0.50   -0.93   -1.43   -2.02   -2.70   -3.42   -4.03   -4.34   -4.17   -3.44   -2.22   -0.63    1.21    3.36    6.08    9.74   14.64
+   205.0    0.00   -0.16   -0.48   -0.90   -1.41   -2.01   -2.71   -3.44   -4.05   -4.35   -4.18   -3.46   -2.26   -0.66    1.28    3.58    6.27    9.21   11.78
+   210.0    0.00   -0.16   -0.47   -0.88   -1.39   -2.00   -2.72   -3.46   -4.08   -4.38   -4.22   -3.53   -2.35   -0.71    1.38    3.89    6.60    8.76    8.89
+   215.0    0.00   -0.15   -0.45   -0.87   -1.38   -2.01   -2.74   -3.49   -4.10   -4.41   -4.28   -3.64   -2.48   -0.77    1.52    4.29    7.02    8.39    6.05
+   220.0    0.00   -0.14   -0.44   -0.86   -1.39   -2.04   -2.78   -3.53   -4.13   -4.44   -4.35   -3.76   -2.62   -0.83    1.68    4.73    7.49    8.06    3.33
+   225.0    0.00   -0.14   -0.43   -0.85   -1.40   -2.07   -2.83   -3.57   -4.16   -4.48   -4.42   -3.89   -2.77   -0.88    1.87    5.20    7.96    7.75    0.81
+   230.0    0.00   -0.13   -0.43   -0.86   -1.43   -2.12   -2.88   -3.61   -4.19   -4.51   -4.48   -4.01   -2.90   -0.91    2.07    5.64    8.37    7.43   -1.42
+   235.0    0.00   -0.13   -0.42   -0.86   -1.46   -2.18   -2.95   -3.66   -4.22   -4.54   -4.54   -4.11   -2.99   -0.91    2.27    6.02    8.68    7.09   -3.27
+   240.0    0.00   -0.12   -0.41   -0.87   -1.50   -2.24   -3.01   -3.72   -4.25   -4.56   -4.58   -4.17   -3.05   -0.87    2.45    6.32    8.85    6.72   -4.64
+   245.0    0.00   -0.12   -0.41   -0.89   -1.53   -2.30   -3.08   -3.76   -4.27   -4.57   -4.61   -4.21   -3.06   -0.81    2.61    6.51    8.89    6.37   -5.45
+   250.0    0.00   -0.11   -0.41   -0.90   -1.57   -2.35   -3.13   -3.80   -4.30   -4.59   -4.62   -4.22   -3.04   -0.73    2.74    6.59    8.79    6.07   -5.63
+   255.0    0.00   -0.11   -0.41   -0.91   -1.59   -2.39   -3.17   -3.83   -4.31   -4.59   -4.63   -4.21   -3.00   -0.64    2.82    6.57    8.60    5.86   -5.16
+   260.0    0.00   -0.10   -0.40   -0.92   -1.61   -2.41   -3.19   -3.84   -4.32   -4.60   -4.63   -4.19   -2.94   -0.56    2.86    6.46    8.35    5.80   -4.05
+   265.0    0.00   -0.10   -0.40   -0.92   -1.62   -2.42   -3.19   -3.84   -4.31   -4.61   -4.63   -4.17   -2.89   -0.50    2.85    6.30    8.10    5.93   -2.40
+   270.0    0.00   -0.10   -0.40   -0.92   -1.62   -2.41   -3.17   -3.82   -4.30   -4.61   -4.64   -4.16   -2.85   -0.47    2.80    6.10    7.88    6.23   -0.34
+   275.0    0.00   -0.09   -0.40   -0.92   -1.61   -2.39   -3.14   -3.78   -4.28   -4.61   -4.65   -4.16   -2.84   -0.48    2.70    5.89    7.73    6.70    1.93
+   280.0    0.00   -0.09   -0.39   -0.91   -1.60   -2.36   -3.10   -3.74   -4.26   -4.61   -4.66   -4.18   -2.85   -0.52    2.58    5.69    7.65    7.28    4.18
+   285.0    0.00   -0.09   -0.39   -0.90   -1.58   -2.32   -3.05   -3.69   -4.23   -4.60   -4.68   -4.20   -2.89   -0.61    2.42    5.51    7.63    7.89    6.16
+   290.0    0.00   -0.08   -0.39   -0.90   -1.56   -2.29   -3.00   -3.65   -4.20   -4.59   -4.68   -4.22   -2.94   -0.71    2.26    5.35    7.67    8.44    7.63
+   295.0    0.00   -0.08   -0.38   -0.89   -1.54   -2.26   -2.96   -3.61   -4.17   -4.57   -4.68   -4.24   -3.00   -0.84    2.09    5.22    7.72    8.85    8.41
+   300.0    0.00   -0.08   -0.38   -0.88   -1.53   -2.24   -2.94   -3.59   -4.15   -4.55   -4.66   -4.24   -3.06   -0.96    1.92    5.10    7.77    9.04    8.38
+   305.0    0.00   -0.08   -0.38   -0.88   -1.52   -2.23   -2.93   -3.58   -4.13   -4.52   -4.63   -4.23   -3.10   -1.08    1.77    5.00    7.77    8.97    7.55
+   310.0    0.00   -0.07   -0.38   -0.88   -1.52   -2.23   -2.94   -3.59   -4.13   -4.49   -4.58   -4.20   -3.13   -1.17    1.64    4.92    7.74    8.65    6.00
+   315.0    0.00   -0.07   -0.38   -0.88   -1.53   -2.25   -2.96   -3.61   -4.13   -4.47   -4.53   -4.16   -3.13   -1.25    1.55    4.86    7.66    8.14    3.94
+   320.0    0.00   -0.07   -0.38   -0.88   -1.54   -2.27   -2.99   -3.64   -4.14   -4.44   -4.48   -4.11   -3.12   -1.29    1.49    4.83    7.56    7.52    1.69
+   325.0    0.00   -0.07   -0.38   -0.89   -1.55   -2.30   -3.03   -3.67   -4.15   -4.42   -4.43   -4.06   -3.10   -1.30    1.47    4.83    7.48    6.93   -0.42
+   330.0    0.00   -0.07   -0.38   -0.90   -1.57   -2.32   -3.06   -3.70   -4.17   -4.41   -4.40   -4.02   -3.07   -1.28    1.49    4.86    7.44    6.48   -2.02
+   335.0    0.00   -0.07   -0.38   -0.90   -1.58   -2.34   -3.08   -3.72   -4.18   -4.41   -4.38   -3.99   -3.04   -1.25    1.55    4.94    7.48    6.29   -2.78
+   340.0    0.00   -0.07   -0.38   -0.91   -1.59   -2.35   -3.09   -3.73   -4.19   -4.42   -4.39   -3.99   -3.02   -1.19    1.63    5.05    7.60    6.46   -2.47
+   345.0    0.00   -0.07   -0.38   -0.91   -1.59   -2.35   -3.09   -3.72   -4.19   -4.43   -4.41   -4.00   -3.00   -1.12    1.74    5.18    7.82    7.01   -0.97
+   350.0    0.00   -0.07   -0.38   -0.91   -1.59   -2.33   -3.06   -3.70   -4.17   -4.45   -4.44   -4.03   -2.98   -1.05    1.85    5.31    8.09    7.92    1.69
+   355.0    0.00   -0.07   -0.39   -0.91   -1.58   -2.31   -3.02   -3.65   -4.15   -4.46   -4.48   -4.06   -2.95   -0.96    1.96    5.42    8.38    9.09    5.32
+   360.0    0.00   -0.07   -0.39   -0.91   -1.57   -2.28   -2.98   -3.60   -4.12   -4.47   -4.52   -4.07   -2.92   -0.87    2.04    5.47    8.63   10.40    9.59
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+LEIAT504        SCIS                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               6    20-APR-05 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+     -0.18     -0.35     85.63                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.45   -1.71   -3.52   -5.56   -7.51   -9.15  -10.34  -11.00  -11.07  -10.50   -9.28   -7.46   -5.14   -2.40    0.84    4.88   10.16   17.01
+     0.0    0.00   -0.46   -1.71   -3.51   -5.56   -7.57   -9.30  -10.61  -11.36  -11.46  -10.86   -9.57   -7.71   -5.42   -2.76    0.43    4.59   10.22   17.57
+     5.0    0.00   -0.46   -1.72   -3.52   -5.57   -7.57   -9.30  -10.61  -11.37  -11.48  -10.88   -9.58   -7.70   -5.40   -2.76    0.38    4.47   10.08   17.51
+    10.0    0.00   -0.47   -1.73   -3.53   -5.57   -7.57   -9.30  -10.61  -11.38  -11.50  -10.90   -9.58   -7.68   -5.37   -2.74    0.36    4.37    9.93   17.40
+    15.0    0.00   -0.47   -1.74   -3.54   -5.58   -7.57   -9.29  -10.61  -11.39  -11.51  -10.91   -9.59   -7.67   -5.34   -2.70    0.36    4.30    9.79   17.27
+    20.0    0.00   -0.48   -1.75   -3.55   -5.58   -7.56   -9.28  -10.59  -11.38  -11.52  -10.92   -9.60   -7.66   -5.30   -2.65    0.39    4.28    9.69   17.13
+    25.0    0.00   -0.48   -1.75   -3.56   -5.59   -7.56   -9.26  -10.57  -11.35  -11.50  -10.92   -9.61   -7.66   -5.27   -2.59    0.46    4.32    9.64   17.00
+    30.0    0.00   -0.48   -1.76   -3.57   -5.59   -7.55   -9.24  -10.53  -11.31  -11.47  -10.91   -9.61   -7.66   -5.24   -2.52    0.57    4.41    9.67   16.89
+    35.0    0.00   -0.49   -1.77   -3.58   -5.60   -7.54   -9.21  -10.48  -11.26  -11.43  -10.89   -9.61   -7.66   -5.22   -2.44    0.70    4.57    9.75   16.83
+    40.0    0.00   -0.49   -1.78   -3.59   -5.60   -7.53   -9.18  -10.43  -11.19  -11.36  -10.85   -9.59   -7.66   -5.20   -2.36    0.86    4.76    9.90   16.81
+    45.0    0.00   -0.50   -1.79   -3.60   -5.61   -7.52   -9.15  -10.37  -11.11  -11.28  -10.79   -9.56   -7.65   -5.17   -2.28    1.02    4.97   10.09   16.85
+    50.0    0.00   -0.50   -1.79   -3.61   -5.62   -7.52   -9.12  -10.32  -11.03  -11.20  -10.71   -9.52   -7.62   -5.13   -2.20    1.17    5.19   10.30   16.93
+    55.0    0.00   -0.50   -1.80   -3.62   -5.62   -7.52   -9.10  -10.27  -10.96  -11.10  -10.62   -9.45   -7.57   -5.09   -2.12    1.31    5.38   10.50   17.06
+    60.0    0.00   -0.50   -1.80   -3.63   -5.63   -7.52   -9.09  -10.23  -10.89  -11.02  -10.53   -9.36   -7.50   -5.03   -2.05    1.42    5.54   10.68   17.21
+    65.0    0.00   -0.50   -1.81   -3.63   -5.64   -7.53   -9.08  -10.20  -10.83  -10.94  -10.44   -9.27   -7.42   -4.96   -1.98    1.50    5.65   10.82   17.38
+    70.0    0.00   -0.50   -1.81   -3.64   -5.65   -7.54   -9.08  -10.19  -10.80  -10.87  -10.35   -9.17   -7.33   -4.89   -1.93    1.54    5.70   10.91   17.53
+    75.0    0.00   -0.51   -1.81   -3.64   -5.66   -7.55   -9.09  -10.19  -10.78  -10.82  -10.27   -9.07   -7.23   -4.81   -1.89    1.54    5.69   10.95   17.66
+    80.0    0.00   -0.50   -1.81   -3.65   -5.67   -7.56   -9.11  -10.19  -10.77  -10.79  -10.21   -8.99   -7.15   -4.75   -1.87    1.52    5.65   10.93   17.75
+    85.0    0.00   -0.50   -1.81   -3.65   -5.67   -7.57   -9.12  -10.21  -10.77  -10.78  -10.17   -8.93   -7.08   -4.70   -1.86    1.48    5.57   10.87   17.79
+    90.0    0.00   -0.50   -1.81   -3.64   -5.67   -7.57   -9.13  -10.22  -10.79  -10.78  -10.16   -8.90   -7.05   -4.68   -1.88    1.42    5.48   10.78   17.78
+    95.0    0.00   -0.50   -1.80   -3.64   -5.67   -7.57   -9.14  -10.23  -10.80  -10.79  -10.16   -8.90   -7.04   -4.69   -1.91    1.35    5.38   10.68   17.71
+   100.0    0.00   -0.50   -1.80   -3.63   -5.66   -7.57   -9.13  -10.24  -10.81  -10.80  -10.18   -8.92   -7.07   -4.72   -1.96    1.28    5.29   10.57   17.59
+   105.0    0.00   -0.50   -1.79   -3.62   -5.65   -7.56   -9.13  -10.23  -10.81  -10.82  -10.21   -8.96   -7.12   -4.78   -2.02    1.21    5.21   10.47   17.44
+   110.0    0.00   -0.49   -1.79   -3.61   -5.63   -7.54   -9.11  -10.22  -10.81  -10.83  -10.24   -9.02   -7.20   -4.86   -2.10    1.15    5.15   10.38   17.28
+   115.0    0.00   -0.49   -1.78   -3.60   -5.62   -7.52   -9.09  -10.20  -10.79  -10.83  -10.27   -9.07   -7.28   -4.96   -2.19    1.08    5.10   10.31   17.11
+   120.0    0.00   -0.49   -1.77   -3.59   -5.61   -7.51   -9.07  -10.18  -10.77  -10.83  -10.29   -9.13   -7.36   -5.06   -2.28    1.01    5.06   10.25   16.96
+   125.0    0.00   -0.48   -1.76   -3.58   -5.59   -7.49   -9.05  -10.16  -10.75  -10.81  -10.29   -9.16   -7.43   -5.15   -2.37    0.94    5.01   10.20   16.83
+   130.0    0.00   -0.48   -1.76   -3.57   -5.58   -7.48   -9.04  -10.14  -10.74  -10.80  -10.29   -9.19   -7.48   -5.22   -2.46    0.86    4.95   10.15   16.74
+   135.0    0.00   -0.48   -1.75   -3.56   -5.58   -7.48   -9.04  -10.14  -10.73  -10.78  -10.28   -9.19   -7.51   -5.28   -2.54    0.78    4.88   10.09   16.69
+   140.0    0.00   -0.47   -1.74   -3.56   -5.57   -7.48   -9.04  -10.14  -10.73  -10.77  -10.27   -9.18   -7.52   -5.32   -2.60    0.69    4.79   10.03   16.67
+   145.0    0.00   -0.47   -1.74   -3.55   -5.58   -7.49   -9.06  -10.16  -10.74  -10.77  -10.25   -9.16   -7.51   -5.34   -2.66    0.60    4.69    9.96   16.67
+   150.0    0.00   -0.46   -1.73   -3.55   -5.58   -7.51   -9.09  -10.19  -10.77  -10.79  -10.25   -9.14   -7.49   -5.34   -2.70    0.52    4.58    9.87   16.67
+   155.0    0.00   -0.46   -1.73   -3.55   -5.59   -7.52   -9.12  -10.23  -10.80  -10.82  -10.26   -9.13   -7.47   -5.33   -2.73    0.45    4.48    9.78   16.66
+   160.0    0.00   -0.46   -1.72   -3.54   -5.59   -7.54   -9.15  -10.28  -10.85  -10.86  -10.28   -9.14   -7.47   -5.33   -2.75    0.39    4.39    9.69   16.61
+   165.0    0.00   -0.45   -1.72   -3.54   -5.60   -7.56   -9.19  -10.32  -10.91  -10.91  -10.32   -9.16   -7.47   -5.33   -2.76    0.35    4.31    9.59   16.53
+   170.0    0.00   -0.45   -1.71   -3.54   -5.61   -7.58   -9.22  -10.37  -10.96  -10.97  -10.38   -9.21   -7.50   -5.34   -2.76    0.33    4.26    9.49   16.40
+   175.0    0.00   -0.45   -1.71   -3.54   -5.61   -7.59   -9.24  -10.41  -11.02  -11.04  -10.46   -9.27   -7.54   -5.35   -2.76    0.33    4.22    9.40   16.23
+   180.0    0.00   -0.44   -1.71   -3.54   -5.61   -7.60   -9.26  -10.44  -11.07  -11.11  -10.53   -9.34   -7.60   -5.38   -2.76    0.34    4.21    9.31   16.03
+   185.0    0.00   -0.44   -1.70   -3.54   -5.62   -7.61   -9.27  -10.46  -11.11  -11.16  -10.60   -9.42   -7.66   -5.41   -2.75    0.36    4.21    9.24   15.82
+   190.0    0.00   -0.44   -1.70   -3.54   -5.61   -7.61   -9.28  -10.48  -11.14  -11.21  -10.67   -9.49   -7.71   -5.44   -2.75    0.39    4.23    9.19   15.63
+   195.0    0.00   -0.43   -1.70   -3.53   -5.61   -7.61   -9.28  -10.48  -11.16  -11.25  -10.71   -9.53   -7.75   -5.46   -2.75    0.41    4.24    9.16   15.48
+   200.0    0.00   -0.43   -1.69   -3.53   -5.61   -7.61   -9.28  -10.49  -11.16  -11.26  -10.73   -9.56   -7.77   -5.47   -2.74    0.43    4.27    9.16   15.40
+   205.0    0.00   -0.43   -1.69   -3.53   -5.61   -7.60   -9.28  -10.49  -11.16  -11.26  -10.73   -9.55   -7.76   -5.46   -2.73    0.44    4.29    9.19   15.42
+   210.0    0.00   -0.43   -1.68   -3.52   -5.60   -7.60   -9.27  -10.48  -11.15  -11.24  -10.70   -9.51   -7.72   -5.43   -2.72    0.45    4.33    9.27   15.54
+   215.0    0.00   -0.42   -1.68   -3.52   -5.60   -7.60   -9.27  -10.47  -11.13  -11.20  -10.64   -9.44   -7.66   -5.39   -2.70    0.47    4.38    9.40   15.77
+   220.0    0.00   -0.42   -1.68   -3.51   -5.59   -7.59   -9.26  -10.46  -11.10  -11.15  -10.57   -9.36   -7.58   -5.33   -2.67    0.49    4.45    9.58   16.10
+   225.0    0.00   -0.42   -1.67   -3.51   -5.58   -7.58   -9.25  -10.44  -11.07  -11.09  -10.49   -9.26   -7.49   -5.27   -2.63    0.53    4.54    9.81   16.52
+   230.0    0.00   -0.42   -1.67   -3.50   -5.57   -7.56   -9.23  -10.41  -11.02  -11.03  -10.40   -9.17   -7.40   -5.20   -2.58    0.59    4.68   10.08   16.98
+   235.0    0.00   -0.41   -1.66   -3.49   -5.56   -7.54   -9.20  -10.37  -10.97  -10.96  -10.32   -9.08   -7.33   -5.14   -2.53    0.68    4.84   10.38   17.46
+   240.0    0.00   -0.41   -1.65   -3.48   -5.54   -7.52   -9.16  -10.33  -10.92  -10.89  -10.25   -9.01   -7.27   -5.09   -2.46    0.79    5.03   10.70   17.91
+   245.0    0.00   -0.41   -1.65   -3.46   -5.52   -7.48   -9.12  -10.27  -10.86  -10.83  -10.19   -8.97   -7.23   -5.04   -2.39    0.92    5.24   11.00   18.30
+   250.0    0.00   -0.41   -1.64   -3.45   -5.49   -7.45   -9.07  -10.21  -10.80  -10.78  -10.16   -8.95   -7.21   -5.01   -2.31    1.05    5.45   11.26   18.59
+   255.0    0.00   -0.41   -1.64   -3.43   -5.46   -7.40   -9.02  -10.15  -10.74  -10.74  -10.14   -8.95   -7.21   -4.98   -2.24    1.20    5.64   11.46   18.75
+   260.0    0.00   -0.41   -1.63   -3.42   -5.44   -7.36   -8.96  -10.10  -10.69  -10.72  -10.14   -8.97   -7.23   -4.96   -2.16    1.32    5.79   11.58   18.79
+   265.0    0.00   -0.40   -1.63   -3.41   -5.41   -7.33   -8.92  -10.05  -10.66  -10.71  -10.16   -8.99   -7.24   -4.94   -2.09    1.43    5.89   11.60   18.69
+   270.0    0.00   -0.40   -1.62   -3.40   -5.39   -7.30   -8.88  -10.02  -10.65  -10.72  -10.18   -9.03   -7.26   -4.92   -2.03    1.51    5.92   11.52   18.48
+   275.0    0.00   -0.40   -1.62   -3.39   -5.38   -7.28   -8.86  -10.01  -10.66  -10.74  -10.22   -9.06   -7.27   -4.89   -1.98    1.54    5.88   11.36   18.17
+   280.0    0.00   -0.40   -1.62   -3.38   -5.37   -7.27   -8.86  -10.02  -10.68  -10.79  -10.27   -9.09   -7.27   -4.86   -1.94    1.54    5.78   11.12   17.81
+   285.0    0.00   -0.40   -1.62   -3.38   -5.36   -7.27   -8.88  -10.06  -10.73  -10.84  -10.31   -9.11   -7.25   -4.83   -1.92    1.50    5.63   10.83   17.42
+   290.0    0.00   -0.41   -1.62   -3.38   -5.37   -7.28   -8.91  -10.11  -10.80  -10.91  -10.36   -9.13   -7.24   -4.80   -1.91    1.43    5.44   10.52   17.06
+   295.0    0.00   -0.41   -1.62   -3.38   -5.38   -7.31   -8.95  -10.17  -10.88  -10.98  -10.41   -9.14   -7.22   -4.77   -1.92    1.33    5.24   10.23   16.74
+   300.0    0.00   -0.41   -1.62   -3.39   -5.39   -7.34   -9.00  -10.25  -10.96  -11.06  -10.46   -9.16   -7.21   -4.76   -1.96    1.23    5.05    9.99   16.49
+   305.0    0.00   -0.41   -1.63   -3.40   -5.41   -7.37   -9.06  -10.32  -11.04  -11.13  -10.51   -9.18   -7.21   -4.77   -2.01    1.12    4.90    9.81   16.34
+   310.0    0.00   -0.41   -1.63   -3.41   -5.43   -7.41   -9.12  -10.39  -11.12  -11.20  -10.56   -9.20   -7.23   -4.81   -2.07    1.02    4.78    9.72   16.28
+   315.0    0.00   -0.42   -1.64   -3.42   -5.45   -7.44   -9.17  -10.46  -11.19  -11.26  -10.60   -9.24   -7.27   -4.86   -2.15    0.94    4.72    9.71   16.32
+   320.0    0.00   -0.42   -1.64   -3.43   -5.47   -7.48   -9.21  -10.51  -11.24  -11.30  -10.64   -9.28   -7.32   -4.94   -2.23    0.87    4.70    9.77   16.43
+   325.0    0.00   -0.42   -1.65   -3.44   -5.49   -7.50   -9.25  -10.55  -11.28  -11.34  -10.68   -9.33   -7.39   -5.03   -2.33    0.81    4.72    9.89   16.61
+   330.0    0.00   -0.43   -1.66   -3.45   -5.51   -7.52   -9.27  -10.57  -11.30  -11.37  -10.72   -9.38   -7.46   -5.12   -2.42    0.76    4.76   10.04   16.82
+   335.0    0.00   -0.43   -1.67   -3.46   -5.52   -7.54   -9.29  -10.59  -11.32  -11.39  -10.75   -9.43   -7.54   -5.21   -2.51    0.71    4.80   10.18   17.04
+   340.0    0.00   -0.44   -1.68   -3.47   -5.53   -7.55   -9.29  -10.60  -11.33  -11.40  -10.77   -9.47   -7.60   -5.29   -2.59    0.66    4.82   10.30   17.24
+   345.0    0.00   -0.44   -1.68   -3.49   -5.54   -7.56   -9.30  -10.60  -11.33  -11.41  -10.80   -9.51   -7.65   -5.36   -2.66    0.61    4.81   10.37   17.41
+   350.0    0.00   -0.45   -1.69   -3.50   -5.55   -7.56   -9.30  -10.60  -11.34  -11.43  -10.82   -9.54   -7.69   -5.40   -2.71    0.55    4.77   10.38   17.52
+   355.0    0.00   -0.45   -1.70   -3.50   -5.56   -7.56   -9.30  -10.61  -11.35  -11.44  -10.84   -9.55   -7.71   -5.42   -2.75    0.49    4.69   10.33   17.58
+   360.0    0.00   -0.46   -1.71   -3.51   -5.56   -7.57   -9.30  -10.61  -11.36  -11.46  -10.86   -9.57   -7.71   -5.42   -2.76    0.43    4.59   10.22   17.57
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.19      0.14    115.35                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.21   -0.78   -1.59   -2.49   -3.39   -4.23   -5.01   -5.68   -6.13   -6.20   -5.72   -4.66   -3.11   -1.22    0.90    3.36    6.52   10.77
+     0.0    0.00   -0.18   -0.73   -1.53   -2.44   -3.36   -4.22   -5.03   -5.75   -6.26   -6.40   -5.98   -4.92   -3.31   -1.36    0.73    3.02    5.88    9.98
+     5.0    0.00   -0.18   -0.73   -1.52   -2.43   -3.34   -4.20   -5.01   -5.74   -6.27   -6.41   -6.00   -4.94   -3.33   -1.40    0.67    2.90    5.68    9.66
+    10.0    0.00   -0.18   -0.73   -1.52   -2.41   -3.31   -4.17   -4.99   -5.72   -6.26   -6.42   -6.00   -4.95   -3.34   -1.41    0.63    2.83    5.56    9.46
+    15.0    0.00   -0.18   -0.73   -1.51   -2.40   -3.29   -4.15   -4.96   -5.70   -6.25   -6.41   -6.00   -4.94   -3.34   -1.41    0.64    2.83    5.54    9.39
+    20.0    0.00   -0.18   -0.73   -1.51   -2.39   -3.27   -4.12   -4.93   -5.67   -6.22   -6.38   -5.98   -4.92   -3.32   -1.39    0.67    2.89    5.62    9.48
+    25.0    0.00   -0.19   -0.73   -1.51   -2.38   -3.25   -4.10   -4.90   -5.64   -6.18   -6.34   -5.94   -4.89   -3.29   -1.36    0.72    2.98    5.79    9.72
+    30.0    0.00   -0.19   -0.73   -1.51   -2.38   -3.24   -4.08   -4.88   -5.60   -6.14   -6.29   -5.88   -4.84   -3.26   -1.33    0.78    3.11    6.03   10.08
+    35.0    0.00   -0.19   -0.74   -1.51   -2.38   -3.24   -4.06   -4.85   -5.57   -6.09   -6.23   -5.82   -4.79   -3.22   -1.30    0.84    3.25    6.32   10.53
+    40.0    0.00   -0.19   -0.74   -1.52   -2.38   -3.24   -4.06   -4.84   -5.53   -6.03   -6.16   -5.74   -4.72   -3.18   -1.27    0.88    3.39    6.60   11.03
+    45.0    0.00   -0.20   -0.75   -1.53   -2.39   -3.25   -4.06   -4.83   -5.50   -5.98   -6.09   -5.67   -4.66   -3.14   -1.25    0.92    3.50    6.87   11.51
+    50.0    0.00   -0.20   -0.75   -1.54   -2.41   -3.27   -4.08   -4.83   -5.48   -5.93   -6.02   -5.59   -4.59   -3.10   -1.24    0.93    3.57    7.08   11.93
+    55.0    0.00   -0.20   -0.76   -1.55   -2.42   -3.29   -4.10   -4.84   -5.48   -5.90   -5.96   -5.52   -4.53   -3.06   -1.24    0.92    3.60    7.22   12.25
+    60.0    0.00   -0.21   -0.77   -1.56   -2.45   -3.31   -4.12   -4.86   -5.48   -5.88   -5.92   -5.47   -4.48   -3.04   -1.24    0.90    3.59    7.27   12.43
+    65.0    0.00   -0.21   -0.78   -1.58   -2.47   -3.34   -4.15   -4.89   -5.50   -5.88   -5.90   -5.43   -4.45   -3.01   -1.24    0.86    3.54    7.24   12.46
+    70.0    0.00   -0.21   -0.79   -1.59   -2.49   -3.37   -4.19   -4.92   -5.52   -5.89   -5.90   -5.42   -4.43   -3.00   -1.25    0.82    3.45    7.13   12.35
+    75.0    0.00   -0.21   -0.79   -1.61   -2.51   -3.40   -4.22   -4.95   -5.55   -5.92   -5.92   -5.43   -4.43   -3.00   -1.26    0.77    3.35    6.95   12.11
+    80.0    0.00   -0.22   -0.80   -1.62   -2.53   -3.42   -4.24   -4.98   -5.58   -5.95   -5.95   -5.45   -4.44   -3.01   -1.28    0.73    3.25    6.75   11.78
+    85.0    0.00   -0.22   -0.81   -1.63   -2.54   -3.44   -4.26   -5.01   -5.62   -5.99   -5.99   -5.49   -4.47   -3.03   -1.29    0.70    3.15    6.54   11.42
+    90.0    0.00   -0.22   -0.81   -1.64   -2.55   -3.45   -4.28   -5.02   -5.64   -6.03   -6.03   -5.54   -4.51   -3.05   -1.31    0.67    3.07    6.35   11.06
+    95.0    0.00   -0.22   -0.82   -1.64   -2.56   -3.45   -4.28   -5.03   -5.66   -6.06   -6.08   -5.58   -4.55   -3.08   -1.32    0.66    3.02    6.21   10.74
+   100.0    0.00   -0.23   -0.82   -1.65   -2.56   -3.46   -4.28   -5.03   -5.67   -6.08   -6.11   -5.62   -4.59   -3.11   -1.33    0.66    3.01    6.13   10.51
+   105.0    0.00   -0.23   -0.82   -1.65   -2.56   -3.45   -4.28   -5.03   -5.66   -6.08   -6.12   -5.65   -4.62   -3.13   -1.34    0.67    3.03    6.11   10.38
+   110.0    0.00   -0.23   -0.82   -1.65   -2.56   -3.45   -4.27   -5.02   -5.65   -6.07   -6.12   -5.66   -4.64   -3.15   -1.35    0.69    3.08    6.17   10.34
+   115.0    0.00   -0.23   -0.83   -1.65   -2.55   -3.44   -4.26   -5.00   -5.64   -6.06   -6.10   -5.64   -4.63   -3.15   -1.34    0.72    3.15    6.27   10.38
+   120.0    0.00   -0.23   -0.82   -1.65   -2.55   -3.43   -4.25   -4.99   -5.62   -6.03   -6.07   -5.61   -4.61   -3.14   -1.33    0.76    3.25    6.42   10.49
+   125.0    0.00   -0.23   -0.82   -1.64   -2.54   -3.42   -4.24   -4.98   -5.60   -6.00   -6.03   -5.57   -4.57   -3.12   -1.31    0.81    3.36    6.58   10.61
+   130.0    0.00   -0.23   -0.82   -1.64   -2.54   -3.42   -4.24   -4.98   -5.59   -5.97   -5.99   -5.51   -4.53   -3.08   -1.28    0.86    3.46    6.74   10.72
+   135.0    0.00   -0.23   -0.82   -1.63   -2.53   -3.41   -4.24   -4.98   -5.58   -5.95   -5.95   -5.46   -4.48   -3.05   -1.25    0.91    3.56    6.87   10.78
+   140.0    0.00   -0.23   -0.81   -1.63   -2.52   -3.41   -4.24   -4.99   -5.58   -5.94   -5.91   -5.42   -4.43   -3.01   -1.23    0.95    3.63    6.95   10.76
+   145.0    0.00   -0.23   -0.81   -1.62   -2.52   -3.41   -4.25   -5.00   -5.60   -5.94   -5.90   -5.39   -4.40   -2.99   -1.20    0.98    3.67    6.98   10.66
+   150.0    0.00   -0.23   -0.81   -1.61   -2.51   -3.41   -4.25   -5.01   -5.61   -5.95   -5.90   -5.38   -4.39   -2.98   -1.20    0.99    3.68    6.95   10.47
+   155.0    0.00   -0.23   -0.80   -1.60   -2.50   -3.40   -4.26   -5.03   -5.63   -5.98   -5.93   -5.40   -4.41   -2.99   -1.20    0.98    3.66    6.86   10.21
+   160.0    0.00   -0.23   -0.80   -1.60   -2.49   -3.40   -4.26   -5.04   -5.66   -6.01   -5.97   -5.45   -4.45   -3.02   -1.23    0.95    3.60    6.72    9.92
+   165.0    0.00   -0.22   -0.79   -1.59   -2.48   -3.39   -4.26   -5.05   -5.68   -6.05   -6.02   -5.51   -4.51   -3.08   -1.28    0.89    3.51    6.55    9.62
+   170.0    0.00   -0.22   -0.79   -1.58   -2.47   -3.38   -4.25   -5.05   -5.70   -6.10   -6.09   -5.59   -4.59   -3.15   -1.34    0.82    3.40    6.36    9.35
+   175.0    0.00   -0.22   -0.79   -1.57   -2.46   -3.36   -4.24   -5.05   -5.72   -6.14   -6.16   -5.68   -4.68   -3.23   -1.41    0.75    3.28    6.18    9.15
+   180.0    0.00   -0.22   -0.78   -1.57   -2.45   -3.35   -4.22   -5.04   -5.73   -6.18   -6.23   -5.77   -4.77   -3.31   -1.48    0.67    3.16    6.03    9.05
+   185.0    0.00   -0.22   -0.78   -1.56   -2.44   -3.34   -4.21   -5.03   -5.74   -6.21   -6.29   -5.84   -4.85   -3.37   -1.53    0.60    3.07    5.93    9.06
+   190.0    0.00   -0.22   -0.78   -1.56   -2.44   -3.32   -4.19   -5.02   -5.74   -6.24   -6.34   -5.90   -4.91   -3.42   -1.57    0.56    3.00    5.88    9.18
+   195.0    0.00   -0.22   -0.78   -1.56   -2.43   -3.32   -4.18   -5.01   -5.74   -6.25   -6.37   -5.95   -4.94   -3.43   -1.57    0.55    2.97    5.89    9.42
+   200.0    0.00   -0.22   -0.78   -1.56   -2.43   -3.31   -4.17   -5.00   -5.74   -6.26   -6.39   -5.96   -4.95   -3.42   -1.54    0.57    2.99    5.96    9.73
+   205.0    0.00   -0.21   -0.78   -1.56   -2.43   -3.31   -4.17   -5.00   -5.74   -6.26   -6.39   -5.96   -4.92   -3.37   -1.48    0.64    3.06    6.09   10.10
+   210.0    0.00   -0.21   -0.78   -1.56   -2.44   -3.32   -4.18   -5.00   -5.74   -6.26   -6.38   -5.94   -4.88   -3.30   -1.38    0.74    3.17    6.26   10.49
+   215.0    0.00   -0.21   -0.78   -1.56   -2.45   -3.33   -4.19   -5.00   -5.74   -6.25   -6.36   -5.90   -4.82   -3.21   -1.27    0.87    3.31    6.45   10.87
+   220.0    0.00   -0.21   -0.78   -1.57   -2.46   -3.34   -4.20   -5.01   -5.74   -6.24   -6.34   -5.86   -4.75   -3.11   -1.14    1.01    3.47    6.65   11.19
+   225.0    0.00   -0.21   -0.78   -1.57   -2.47   -3.36   -4.21   -5.02   -5.74   -6.23   -6.31   -5.81   -4.68   -3.01   -1.02    1.15    3.62    6.83   11.45
+   230.0    0.00   -0.21   -0.78   -1.58   -2.48   -3.37   -4.23   -5.03   -5.74   -6.21   -6.28   -5.77   -4.62   -2.93   -0.92    1.27    3.76    6.98   11.61
+   235.0    0.00   -0.21   -0.78   -1.58   -2.49   -3.39   -4.24   -5.04   -5.74   -6.20   -6.25   -5.73   -4.57   -2.88   -0.85    1.36    3.86    7.08   11.68
+   240.0    0.00   -0.21   -0.78   -1.59   -2.49   -3.40   -4.25   -5.05   -5.73   -6.19   -6.23   -5.70   -4.54   -2.85   -0.82    1.40    3.91    7.12   11.65
+   245.0    0.00   -0.21   -0.78   -1.59   -2.50   -3.40   -4.26   -5.05   -5.73   -6.17   -6.21   -5.68   -4.53   -2.85   -0.83    1.39    3.91    7.10   11.54
+   250.0    0.00   -0.20   -0.78   -1.59   -2.50   -3.41   -4.26   -5.05   -5.72   -6.16   -6.20   -5.67   -4.54   -2.88   -0.88    1.34    3.85    7.02   11.38
+   255.0    0.00   -0.20   -0.77   -1.59   -2.50   -3.41   -4.26   -5.05   -5.71   -6.15   -6.18   -5.67   -4.56   -2.93   -0.95    1.24    3.75    6.90   11.17
+   260.0    0.00   -0.20   -0.77   -1.59   -2.50   -3.41   -4.26   -5.04   -5.70   -6.14   -6.18   -5.68   -4.59   -2.99   -1.05    1.12    3.61    6.75   10.96
+   265.0    0.00   -0.20   -0.77   -1.58   -2.50   -3.40   -4.25   -5.03   -5.69   -6.13   -6.17   -5.68   -4.61   -3.04   -1.14    1.00    3.47    6.59   10.76
+   270.0    0.00   -0.20   -0.77   -1.58   -2.49   -3.40   -4.25   -5.03   -5.69   -6.13   -6.17   -5.69   -4.63   -3.09   -1.22    0.88    3.33    6.45   10.61
+   275.0    0.00   -0.20   -0.77   -1.58   -2.49   -3.39   -4.24   -5.02   -5.69   -6.13   -6.17   -5.69   -4.64   -3.12   -1.28    0.79    3.22    6.34   10.51
+   280.0    0.00   -0.20   -0.76   -1.57   -2.48   -3.39   -4.24   -5.02   -5.69   -6.13   -6.18   -5.69   -4.64   -3.13   -1.31    0.74    3.15    6.28   10.48
+   285.0    0.00   -0.19   -0.76   -1.57   -2.48   -3.38   -4.24   -5.03   -5.70   -6.14   -6.18   -5.69   -4.63   -3.11   -1.30    0.74    3.14    6.28   10.53
+   290.0    0.00   -0.19   -0.76   -1.57   -2.47   -3.38   -4.24   -5.03   -5.71   -6.15   -6.19   -5.69   -4.62   -3.08   -1.25    0.79    3.19    6.35   10.66
+   295.0    0.00   -0.19   -0.75   -1.56   -2.47   -3.38   -4.24   -5.04   -5.72   -6.16   -6.20   -5.69   -4.59   -3.03   -1.18    0.88    3.30    6.48   10.85
+   300.0    0.00   -0.19   -0.75   -1.56   -2.47   -3.39   -4.25   -5.05   -5.73   -6.18   -6.21   -5.69   -4.57   -2.98   -1.09    1.00    3.44    6.65   11.08
+   305.0    0.00   -0.19   -0.75   -1.56   -2.48   -3.39   -4.26   -5.06   -5.74   -6.19   -6.22   -5.69   -4.55   -2.93   -1.00    1.13    3.61    6.85   11.34
+   310.0    0.00   -0.19   -0.75   -1.56   -2.48   -3.40   -4.27   -5.07   -5.75   -6.20   -6.23   -5.69   -4.55   -2.89   -0.92    1.25    3.77    7.04   11.59
+   315.0    0.00   -0.19   -0.75   -1.56   -2.48   -3.40   -4.27   -5.08   -5.76   -6.20   -6.24   -5.70   -4.55   -2.87   -0.86    1.35    3.91    7.21   11.81
+   320.0    0.00   -0.18   -0.74   -1.56   -2.48   -3.41   -4.28   -5.08   -5.76   -6.21   -6.25   -5.72   -4.57   -2.87   -0.84    1.42    4.00    7.33   11.96
+   325.0    0.00   -0.18   -0.74   -1.56   -2.49   -3.41   -4.29   -5.08   -5.76   -6.21   -6.26   -5.75   -4.60   -2.90   -0.84    1.43    4.03    7.37   12.02
+   330.0    0.00   -0.18   -0.74   -1.56   -2.49   -3.42   -4.29   -5.08   -5.76   -6.22   -6.28   -5.77   -4.64   -2.94   -0.88    1.40    4.00    7.33   11.97
+   335.0    0.00   -0.18   -0.74   -1.55   -2.49   -3.42   -4.29   -5.08   -5.76   -6.22   -6.29   -5.81   -4.69   -3.00   -0.95    1.33    3.91    7.20   11.81
+   340.0    0.00   -0.18   -0.74   -1.55   -2.48   -3.41   -4.28   -5.08   -5.76   -6.23   -6.31   -5.84   -4.74   -3.07   -1.04    1.22    3.76    6.99   11.55
+   345.0    0.00   -0.18   -0.73   -1.55   -2.48   -3.40   -4.27   -5.07   -5.76   -6.24   -6.33   -5.88   -4.79   -3.14   -1.13    1.09    3.57    6.73   11.20
+   350.0    0.00   -0.18   -0.73   -1.54   -2.47   -3.39   -4.26   -5.06   -5.76   -6.25   -6.36   -5.92   -4.84   -3.21   -1.22    0.96    3.37    6.43   10.79
+   355.0    0.00   -0.18   -0.73   -1.54   -2.46   -3.38   -4.24   -5.05   -5.75   -6.26   -6.38   -5.95   -4.88   -3.27   -1.30    0.83    3.18    6.14   10.37
+   360.0    0.00   -0.18   -0.73   -1.53   -2.44   -3.36   -4.22   -5.03   -5.75   -6.26   -6.40   -5.98   -4.92   -3.31   -1.36    0.73    3.02    5.88    9.98
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+LEIAT504GG      NONE                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               5    16-MAR-07 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+      0.84      0.86     90.32                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.23   -0.88   -1.92   -3.23   -4.69   -6.10   -7.30   -8.12   -8.48   -8.34   -7.71   -6.59   -4.95   -2.67    0.38    4.28    8.94   13.97
+     0.0    0.00   -0.19   -0.83   -1.88   -3.25   -4.76   -6.23   -7.43   -8.21   -8.49   -8.26   -7.57   -6.43   -4.80   -2.55    0.49    4.36    8.90   13.54
+     5.0    0.00   -0.19   -0.84   -1.89   -3.26   -4.77   -6.24   -7.46   -8.25   -8.54   -8.31   -7.61   -6.47   -4.84   -2.61    0.39    4.25    8.80   13.52
+    10.0    0.00   -0.20   -0.85   -1.90   -3.26   -4.78   -6.26   -7.48   -8.29   -8.58   -8.36   -7.66   -6.52   -4.90   -2.69    0.28    4.12    8.70   13.52
+    15.0    0.00   -0.20   -0.85   -1.91   -3.27   -4.79   -6.27   -7.50   -8.32   -8.63   -8.41   -7.71   -6.57   -4.97   -2.77    0.17    4.00    8.61   13.55
+    20.0    0.00   -0.21   -0.86   -1.91   -3.28   -4.79   -6.28   -7.52   -8.35   -8.67   -8.46   -7.77   -6.63   -5.03   -2.85    0.08    3.90    8.55   13.59
+    25.0    0.00   -0.21   -0.87   -1.92   -3.28   -4.80   -6.28   -7.53   -8.37   -8.70   -8.51   -7.83   -6.69   -5.09   -2.91    0.02    3.84    8.52   13.65
+    30.0    0.00   -0.22   -0.88   -1.93   -3.29   -4.80   -6.28   -7.53   -8.38   -8.73   -8.56   -7.88   -6.75   -5.13   -2.94    0.00    3.83    8.53   13.74
+    35.0    0.00   -0.22   -0.88   -1.94   -3.30   -4.80   -6.28   -7.53   -8.39   -8.76   -8.60   -7.93   -6.79   -5.16   -2.94    0.02    3.87    8.59   13.84
+    40.0    0.00   -0.23   -0.89   -1.95   -3.30   -4.81   -6.28   -7.53   -8.40   -8.78   -8.63   -7.97   -6.82   -5.17   -2.91    0.08    3.96    8.69   13.95
+    45.0    0.00   -0.23   -0.90   -1.96   -3.31   -4.81   -6.27   -7.52   -8.39   -8.78   -8.65   -7.99   -6.84   -5.15   -2.86    0.18    4.08    8.81   14.06
+    50.0    0.00   -0.24   -0.91   -1.97   -3.32   -4.81   -6.27   -7.51   -8.38   -8.77   -8.65   -8.00   -6.83   -5.12   -2.79    0.30    4.23    8.96   14.18
+    55.0    0.00   -0.24   -0.92   -1.98   -3.33   -4.81   -6.26   -7.49   -8.35   -8.75   -8.63   -7.99   -6.82   -5.08   -2.71    0.42    4.38    9.11   14.30
+    60.0    0.00   -0.25   -0.93   -1.99   -3.34   -4.81   -6.25   -7.46   -8.32   -8.72   -8.60   -7.97   -6.79   -5.04   -2.63    0.54    4.52    9.25   14.40
+    65.0    0.00   -0.25   -0.94   -2.01   -3.34   -4.81   -6.23   -7.43   -8.28   -8.67   -8.56   -7.93   -6.75   -4.99   -2.55    0.64    4.64    9.36   14.48
+    70.0    0.00   -0.26   -0.95   -2.02   -3.35   -4.81   -6.22   -7.40   -8.23   -8.61   -8.50   -7.88   -6.71   -4.94   -2.50    0.72    4.73    9.45   14.54
+    75.0    0.00   -0.26   -0.96   -2.03   -3.36   -4.81   -6.20   -7.37   -8.18   -8.55   -8.44   -7.82   -6.66   -4.91   -2.46    0.76    4.78    9.50   14.57
+    80.0    0.00   -0.27   -0.97   -2.04   -3.37   -4.81   -6.18   -7.34   -8.13   -8.49   -8.38   -7.77   -6.62   -4.88   -2.44    0.77    4.80    9.51   14.58
+    85.0    0.00   -0.27   -0.97   -2.05   -3.37   -4.81   -6.17   -7.31   -8.09   -8.44   -8.32   -7.71   -6.58   -4.86   -2.44    0.76    4.78    9.49   14.55
+    90.0    0.00   -0.28   -0.98   -2.05   -3.38   -4.81   -6.16   -7.28   -8.05   -8.39   -8.27   -7.67   -6.56   -4.85   -2.46    0.73    4.74    9.44   14.50
+    95.0    0.00   -0.28   -0.99   -2.06   -3.38   -4.81   -6.16   -7.27   -8.03   -8.36   -8.23   -7.64   -6.54   -4.85   -2.48    0.69    4.69    9.38   14.43
+   100.0    0.00   -0.28   -0.99   -2.07   -3.39   -4.81   -6.15   -7.26   -8.01   -8.34   -8.21   -7.62   -6.53   -4.86   -2.50    0.66    4.64    9.32   14.34
+   105.0    0.00   -0.28   -1.00   -2.07   -3.39   -4.81   -6.15   -7.26   -8.01   -8.34   -8.21   -7.61   -6.53   -4.87   -2.52    0.63    4.60    9.27   14.26
+   110.0    0.00   -0.29   -1.00   -2.07   -3.39   -4.81   -6.16   -7.27   -8.02   -8.35   -8.21   -7.62   -6.53   -4.88   -2.53    0.61    4.58    9.23   14.18
+   115.0    0.00   -0.29   -1.00   -2.07   -3.39   -4.81   -6.17   -7.28   -8.04   -8.37   -8.23   -7.64   -6.54   -4.88   -2.54    0.61    4.58    9.22   14.13
+   120.0    0.00   -0.29   -1.00   -2.07   -3.39   -4.82   -6.17   -7.30   -8.06   -8.39   -8.26   -7.66   -6.56   -4.89   -2.54    0.62    4.60    9.23   14.11
+   125.0    0.00   -0.29   -1.00   -2.07   -3.39   -4.82   -6.18   -7.31   -8.08   -8.41   -8.28   -7.68   -6.58   -4.90   -2.53    0.64    4.63    9.27   14.11
+   130.0    0.00   -0.29   -1.00   -2.07   -3.39   -4.81   -6.18   -7.32   -8.10   -8.44   -8.31   -7.70   -6.60   -4.91   -2.53    0.66    4.68    9.32   14.14
+   135.0    0.00   -0.29   -1.00   -2.06   -3.38   -4.81   -6.18   -7.32   -8.11   -8.45   -8.33   -7.72   -6.61   -4.92   -2.53    0.68    4.72    9.38   14.20
+   140.0    0.00   -0.29   -1.00   -2.06   -3.37   -4.80   -6.17   -7.32   -8.12   -8.46   -8.34   -7.74   -6.63   -4.94   -2.53    0.69    4.75    9.43   14.27
+   145.0    0.00   -0.29   -0.99   -2.05   -3.36   -4.79   -6.17   -7.32   -8.12   -8.47   -8.35   -7.75   -6.64   -4.95   -2.55    0.69    4.76    9.47   14.34
+   150.0    0.00   -0.28   -0.99   -2.04   -3.35   -4.78   -6.16   -7.31   -8.11   -8.47   -8.35   -7.76   -6.65   -4.96   -2.56    0.67    4.76    9.49   14.39
+   155.0    0.00   -0.28   -0.98   -2.03   -3.34   -4.77   -6.14   -7.31   -8.11   -8.47   -8.36   -7.76   -6.66   -4.98   -2.58    0.65    4.73    9.47   14.42
+   160.0    0.00   -0.28   -0.97   -2.02   -3.33   -4.75   -6.13   -7.30   -8.11   -8.47   -8.36   -7.77   -6.67   -4.99   -2.61    0.61    4.68    9.42   14.40
+   165.0    0.00   -0.27   -0.97   -2.01   -3.32   -4.74   -6.13   -7.30   -8.11   -8.48   -8.37   -7.78   -6.68   -5.00   -2.63    0.56    4.60    9.34   14.34
+   170.0    0.00   -0.27   -0.96   -2.00   -3.31   -4.73   -6.12   -7.30   -8.12   -8.50   -8.39   -7.79   -6.69   -5.01   -2.66    0.51    4.52    9.22   14.24
+   175.0    0.00   -0.27   -0.95   -1.99   -3.29   -4.72   -6.12   -7.30   -8.14   -8.52   -8.41   -7.81   -6.70   -5.02   -2.68    0.45    4.42    9.09   14.10
+   180.0    0.00   -0.26   -0.94   -1.98   -3.28   -4.72   -6.12   -7.31   -8.16   -8.55   -8.44   -7.83   -6.71   -5.03   -2.70    0.40    4.31    8.94   13.93
+   185.0    0.00   -0.26   -0.93   -1.97   -3.27   -4.71   -6.12   -7.33   -8.18   -8.58   -8.47   -7.86   -6.72   -5.04   -2.72    0.34    4.21    8.79   13.76
+   190.0    0.00   -0.25   -0.92   -1.96   -3.26   -4.70   -6.12   -7.34   -8.20   -8.61   -8.51   -7.88   -6.74   -5.05   -2.74    0.29    4.11    8.65   13.60
+   195.0    0.00   -0.25   -0.91   -1.94   -3.24   -4.69   -6.11   -7.35   -8.22   -8.64   -8.53   -7.90   -6.75   -5.07   -2.77    0.23    4.03    8.54   13.48
+   200.0    0.00   -0.24   -0.90   -1.93   -3.23   -4.67   -6.11   -7.35   -8.23   -8.65   -8.55   -7.92   -6.77   -5.09   -2.81    0.18    3.96    8.47   13.40
+   205.0    0.00   -0.23   -0.89   -1.91   -3.21   -4.66   -6.09   -7.34   -8.23   -8.66   -8.55   -7.92   -6.78   -5.11   -2.85    0.13    3.90    8.44   13.39
+   210.0    0.00   -0.23   -0.88   -1.90   -3.19   -4.64   -6.08   -7.32   -8.22   -8.64   -8.54   -7.92   -6.79   -5.14   -2.89    0.08    3.87    8.45   13.45
+   215.0    0.00   -0.22   -0.87   -1.88   -3.17   -4.61   -6.05   -7.30   -8.19   -8.62   -8.52   -7.91   -6.79   -5.16   -2.94    0.03    3.87    8.51   13.57
+   220.0    0.00   -0.22   -0.86   -1.86   -3.15   -4.59   -6.02   -7.27   -8.16   -8.58   -8.49   -7.88   -6.79   -5.18   -2.97    0.00    3.88    8.60   13.73
+   225.0    0.00   -0.21   -0.84   -1.84   -3.13   -4.56   -5.99   -7.23   -8.12   -8.54   -8.44   -7.85   -6.78   -5.20   -3.00   -0.01    3.92    8.73   13.93
+   230.0    0.00   -0.21   -0.83   -1.83   -3.10   -4.53   -5.96   -7.19   -8.07   -8.49   -8.40   -7.81   -6.76   -5.20   -3.01    0.00    3.98    8.86   14.14
+   235.0    0.00   -0.20   -0.82   -1.81   -3.08   -4.51   -5.92   -7.15   -8.03   -8.44   -8.35   -7.77   -6.73   -5.18   -3.00    0.02    4.05    9.00   14.33
+   240.0    0.00   -0.19   -0.81   -1.80   -3.06   -4.48   -5.90   -7.12   -7.99   -8.40   -8.31   -7.73   -6.69   -5.15   -2.96    0.07    4.12    9.11   14.49
+   245.0    0.00   -0.19   -0.80   -1.78   -3.05   -4.46   -5.88   -7.10   -7.97   -8.37   -8.27   -7.69   -6.64   -5.09   -2.91    0.13    4.20    9.20   14.59
+   250.0    0.00   -0.19   -0.79   -1.77   -3.03   -4.45   -5.86   -7.09   -7.96   -8.36   -8.25   -7.65   -6.59   -5.03   -2.83    0.21    4.26    9.25   14.63
+   255.0    0.00   -0.18   -0.78   -1.76   -3.02   -4.44   -5.86   -7.08   -7.95   -8.35   -8.23   -7.62   -6.54   -4.96   -2.75    0.28    4.31    9.25   14.60
+   260.0    0.00   -0.18   -0.78   -1.75   -3.01   -4.44   -5.86   -7.09   -7.96   -8.35   -8.23   -7.59   -6.49   -4.88   -2.67    0.35    4.32    9.20   14.51
+   265.0    0.00   -0.17   -0.77   -1.75   -3.01   -4.44   -5.86   -7.10   -7.97   -8.36   -8.23   -7.57   -6.44   -4.81   -2.59    0.40    4.31    9.11   14.37
+   270.0    0.00   -0.17   -0.77   -1.74   -3.01   -4.44   -5.87   -7.11   -7.99   -8.38   -8.23   -7.55   -6.40   -4.75   -2.53    0.42    4.27    8.98   14.20
+   275.0    0.00   -0.17   -0.77   -1.74   -3.01   -4.45   -5.88   -7.12   -8.00   -8.38   -8.23   -7.54   -6.37   -4.71   -2.50    0.42    4.19    8.82   14.01
+   280.0    0.00   -0.17   -0.76   -1.74   -3.02   -4.46   -5.90   -7.14   -8.01   -8.39   -8.22   -7.53   -6.35   -4.69   -2.49    0.39    4.10    8.66   13.83
+   285.0    0.00   -0.16   -0.76   -1.75   -3.03   -4.47   -5.91   -7.14   -8.01   -8.38   -8.21   -7.52   -6.34   -4.69   -2.51    0.34    4.00    8.50   13.67
+   290.0    0.00   -0.16   -0.76   -1.75   -3.04   -4.49   -5.92   -7.15   -8.00   -8.36   -8.19   -7.51   -6.34   -4.71   -2.55    0.27    3.90    8.37   13.55
+   295.0    0.00   -0.16   -0.77   -1.76   -3.05   -4.50   -5.93   -7.15   -7.99   -8.34   -8.17   -7.49   -6.35   -4.74   -2.60    0.21    3.82    8.28   13.47
+   300.0    0.00   -0.16   -0.77   -1.77   -3.07   -4.52   -5.94   -7.15   -7.97   -8.31   -8.14   -7.48   -6.36   -4.78   -2.65    0.15    3.77    8.23   13.42
+   305.0    0.00   -0.16   -0.77   -1.78   -3.08   -4.53   -5.95   -7.14   -7.95   -8.29   -8.12   -7.47   -6.38   -4.82   -2.70    0.12    3.76    8.24   13.42
+   310.0    0.00   -0.16   -0.77   -1.79   -3.10   -4.55   -5.97   -7.15   -7.94   -8.26   -8.09   -7.47   -6.39   -4.85   -2.72    0.12    3.79    8.29   13.44
+   315.0    0.00   -0.16   -0.78   -1.80   -3.11   -4.57   -5.98   -7.15   -7.93   -8.24   -8.08   -7.46   -6.40   -4.87   -2.73    0.14    3.86    8.38   13.48
+   320.0    0.00   -0.17   -0.78   -1.81   -3.13   -4.59   -6.00   -7.16   -7.93   -8.23   -8.06   -7.45   -6.41   -4.87   -2.72    0.20    3.97    8.50   13.53
+   325.0    0.00   -0.17   -0.79   -1.82   -3.15   -4.62   -6.03   -7.18   -7.94   -8.24   -8.06   -7.45   -6.41   -4.86   -2.68    0.28    4.09    8.64   13.57
+   330.0    0.00   -0.17   -0.79   -1.83   -3.16   -4.64   -6.05   -7.21   -7.96   -8.25   -8.07   -7.45   -6.40   -4.84   -2.63    0.37    4.22    8.77   13.61
+   335.0    0.00   -0.17   -0.80   -1.84   -3.18   -4.66   -6.08   -7.24   -8.00   -8.28   -8.09   -7.46   -6.40   -4.82   -2.58    0.46    4.35    8.89   13.62
+   340.0    0.00   -0.18   -0.81   -1.85   -3.20   -4.69   -6.12   -7.28   -8.04   -8.31   -8.11   -7.47   -6.39   -4.79   -2.53    0.53    4.44    8.97   13.62
+   345.0    0.00   -0.18   -0.81   -1.86   -3.21   -4.71   -6.15   -7.32   -8.08   -8.35   -8.14   -7.49   -6.39   -4.77   -2.50    0.58    4.49    9.01   13.61
+   350.0    0.00   -0.18   -0.82   -1.87   -3.23   -4.73   -6.18   -7.36   -8.13   -8.40   -8.18   -7.51   -6.39   -4.76   -2.49    0.59    4.49    9.01   13.59
+   355.0    0.00   -0.19   -0.83   -1.88   -3.24   -4.75   -6.20   -7.40   -8.17   -8.45   -8.22   -7.53   -6.40   -4.77   -2.50    0.56    4.45    8.97   13.56
+   360.0    0.00   -0.19   -0.83   -1.88   -3.25   -4.76   -6.23   -7.43   -8.21   -8.49   -8.26   -7.57   -6.43   -4.80   -2.55    0.49    4.36    8.90   13.54
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.08     -0.11    119.06                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.12   -0.47   -1.01   -1.72   -2.54   -3.42   -4.26   -4.95   -5.36   -5.38   -4.96   -4.12   -2.96   -1.53    0.22    2.49    5.57    9.64
+     0.0    0.00   -0.13   -0.47   -0.99   -1.67   -2.49   -3.38   -4.27   -5.00   -5.43   -5.43   -4.99   -4.15   -3.01   -1.61    0.16    2.48    5.51    9.03
+     5.0    0.00   -0.12   -0.46   -0.99   -1.67   -2.48   -3.38   -4.27   -5.01   -5.44   -5.44   -5.00   -4.17   -3.04   -1.64    0.13    2.47    5.52    9.03
+    10.0    0.00   -0.12   -0.46   -0.98   -1.66   -2.47   -3.37   -4.26   -5.00   -5.43   -5.45   -5.01   -4.19   -3.06   -1.66    0.12    2.49    5.55    9.06
+    15.0    0.00   -0.12   -0.46   -0.98   -1.65   -2.46   -3.36   -4.24   -4.98   -5.42   -5.44   -5.02   -4.20   -3.07   -1.66    0.14    2.52    5.60    9.12
+    20.0    0.00   -0.12   -0.46   -0.97   -1.65   -2.45   -3.34   -4.21   -4.95   -5.39   -5.42   -5.01   -4.20   -3.07   -1.64    0.18    2.58    5.67    9.23
+    25.0    0.00   -0.12   -0.46   -0.97   -1.64   -2.44   -3.31   -4.18   -4.90   -5.35   -5.39   -4.99   -4.19   -3.05   -1.60    0.24    2.65    5.75    9.37
+    30.0    0.00   -0.12   -0.46   -0.97   -1.64   -2.43   -3.29   -4.14   -4.86   -5.30   -5.35   -4.96   -4.16   -3.01   -1.55    0.31    2.72    5.84    9.57
+    35.0    0.00   -0.12   -0.46   -0.97   -1.64   -2.43   -3.28   -4.11   -4.81   -5.24   -5.30   -4.91   -4.12   -2.96   -1.49    0.37    2.79    5.94    9.82
+    40.0    0.00   -0.12   -0.46   -0.98   -1.65   -2.43   -3.27   -4.09   -4.77   -5.20   -5.25   -4.87   -4.07   -2.91   -1.43    0.44    2.86    6.05   10.10
+    45.0    0.00   -0.12   -0.46   -0.99   -1.66   -2.45   -3.28   -4.08   -4.75   -5.16   -5.21   -4.82   -4.02   -2.86   -1.37    0.49    2.91    6.16   10.42
+    50.0    0.00   -0.12   -0.46   -1.00   -1.68   -2.47   -3.29   -4.09   -4.74   -5.14   -5.18   -4.79   -3.99   -2.81   -1.33    0.53    2.95    6.26   10.75
+    55.0    0.00   -0.12   -0.47   -1.01   -1.70   -2.49   -3.32   -4.11   -4.76   -5.15   -5.18   -4.78   -3.96   -2.79   -1.30    0.55    2.97    6.35   11.05
+    60.0    0.00   -0.12   -0.47   -1.02   -1.72   -2.53   -3.36   -4.15   -4.79   -5.17   -5.19   -4.79   -3.96   -2.78   -1.29    0.55    2.98    6.41   11.31
+    65.0    0.00   -0.12   -0.48   -1.03   -1.75   -2.56   -3.41   -4.20   -4.84   -5.21   -5.23   -4.82   -3.99   -2.80   -1.31    0.52    2.96    6.43   11.50
+    70.0    0.00   -0.12   -0.48   -1.04   -1.77   -2.60   -3.45   -4.25   -4.89   -5.26   -5.28   -4.86   -4.03   -2.85   -1.36    0.48    2.91    6.42   11.58
+    75.0    0.00   -0.12   -0.48   -1.05   -1.79   -2.63   -3.49   -4.30   -4.94   -5.32   -5.33   -4.92   -4.10   -2.91   -1.43    0.40    2.83    6.34   11.53
+    80.0    0.00   -0.12   -0.49   -1.06   -1.81   -2.65   -3.53   -4.34   -4.99   -5.37   -5.39   -4.99   -4.17   -2.99   -1.51    0.31    2.73    6.21   11.35
+    85.0    0.00   -0.12   -0.49   -1.07   -1.82   -2.67   -3.55   -4.37   -5.02   -5.42   -5.44   -5.05   -4.24   -3.07   -1.61    0.20    2.59    6.03   11.05
+    90.0    0.00   -0.12   -0.49   -1.07   -1.83   -2.68   -3.56   -4.38   -5.04   -5.44   -5.48   -5.10   -4.31   -3.15   -1.70    0.09    2.44    5.79   10.65
+    95.0    0.00   -0.12   -0.49   -1.08   -1.83   -2.68   -3.56   -4.38   -5.05   -5.45   -5.50   -5.13   -4.35   -3.22   -1.79   -0.03    2.28    5.53   10.18
+   100.0    0.00   -0.12   -0.49   -1.07   -1.82   -2.67   -3.55   -4.37   -5.04   -5.45   -5.50   -5.14   -4.38   -3.26   -1.86   -0.14    2.11    5.25    9.67
+   105.0    0.00   -0.12   -0.49   -1.07   -1.82   -2.66   -3.53   -4.35   -5.02   -5.43   -5.48   -5.13   -4.37   -3.28   -1.90   -0.22    1.96    4.99    9.19
+   110.0    0.00   -0.12   -0.49   -1.07   -1.81   -2.64   -3.51   -4.32   -4.99   -5.40   -5.45   -5.10   -4.34   -3.26   -1.92   -0.28    1.84    4.77    8.77
+   115.0    0.00   -0.12   -0.49   -1.06   -1.80   -2.63   -3.49   -4.30   -4.96   -5.37   -5.41   -5.05   -4.29   -3.22   -1.90   -0.30    1.77    4.60    8.44
+   120.0    0.00   -0.12   -0.49   -1.06   -1.79   -2.61   -3.47   -4.28   -4.94   -5.34   -5.37   -4.99   -4.22   -3.15   -1.84   -0.28    1.74    4.51    8.23
+   125.0    0.00   -0.12   -0.49   -1.06   -1.78   -2.60   -3.46   -4.26   -4.92   -5.32   -5.34   -4.94   -4.15   -3.06   -1.77   -0.23    1.76    4.49    8.15
+   130.0    0.00   -0.12   -0.49   -1.05   -1.78   -2.59   -3.45   -4.26   -4.92   -5.31   -5.31   -4.89   -4.07   -2.97   -1.67   -0.14    1.83    4.54    8.19
+   135.0    0.00   -0.12   -0.48   -1.05   -1.77   -2.59   -3.45   -4.26   -4.92   -5.30   -5.30   -4.85   -4.01   -2.89   -1.58   -0.04    1.93    4.65    8.33
+   140.0    0.00   -0.12   -0.48   -1.05   -1.77   -2.59   -3.45   -4.27   -4.93   -5.31   -5.29   -4.83   -3.97   -2.82   -1.49    0.07    2.05    4.80    8.53
+   145.0    0.00   -0.12   -0.48   -1.05   -1.77   -2.60   -3.46   -4.27   -4.94   -5.32   -5.30   -4.83   -3.95   -2.78   -1.41    0.16    2.17    4.95    8.76
+   150.0    0.00   -0.12   -0.48   -1.05   -1.78   -2.60   -3.47   -4.28   -4.95   -5.33   -5.31   -4.84   -3.95   -2.76   -1.37    0.23    2.26    5.08    8.98
+   155.0    0.00   -0.12   -0.48   -1.05   -1.78   -2.61   -3.47   -4.29   -4.95   -5.34   -5.33   -4.86   -3.97   -2.77   -1.36    0.26    2.32    5.17    9.17
+   160.0    0.00   -0.12   -0.48   -1.06   -1.79   -2.62   -3.48   -4.29   -4.95   -5.34   -5.34   -4.88   -4.00   -2.80   -1.38    0.26    2.32    5.21    9.29
+   165.0    0.00   -0.12   -0.48   -1.06   -1.79   -2.62   -3.48   -4.29   -4.95   -5.34   -5.34   -4.90   -4.04   -2.85   -1.43    0.21    2.29    5.19    9.36
+   170.0    0.00   -0.12   -0.48   -1.06   -1.80   -2.62   -3.48   -4.28   -4.93   -5.32   -5.34   -4.92   -4.08   -2.90   -1.50    0.14    2.21    5.12    9.37
+   175.0    0.00   -0.12   -0.48   -1.06   -1.80   -2.63   -3.47   -4.27   -4.91   -5.30   -5.33   -4.93   -4.11   -2.96   -1.57    0.05    2.10    5.03    9.35
+   180.0    0.00   -0.12   -0.48   -1.06   -1.80   -2.62   -3.47   -4.26   -4.90   -5.28   -5.32   -4.93   -4.14   -3.01   -1.64   -0.04    2.00    4.93    9.32
+   185.0    0.00   -0.12   -0.48   -1.06   -1.79   -2.62   -3.47   -4.25   -4.88   -5.27   -5.30   -4.93   -4.14   -3.03   -1.69   -0.11    1.91    4.85    9.31
+   190.0    0.00   -0.12   -0.48   -1.05   -1.79   -2.62   -3.46   -4.24   -4.87   -5.25   -5.29   -4.91   -4.13   -3.04   -1.71   -0.14    1.88    4.83    9.35
+   195.0    0.00   -0.11   -0.47   -1.05   -1.78   -2.61   -3.46   -4.24   -4.87   -5.25   -5.27   -4.89   -4.11   -3.01   -1.69   -0.13    1.90    4.88    9.44
+   200.0    0.00   -0.11   -0.47   -1.04   -1.77   -2.60   -3.46   -4.25   -4.88   -5.26   -5.27   -4.87   -4.07   -2.97   -1.63   -0.06    2.00    5.01    9.59
+   205.0    0.00   -0.11   -0.47   -1.03   -1.76   -2.60   -3.46   -4.26   -4.90   -5.27   -5.27   -4.85   -4.03   -2.90   -1.54    0.06    2.16    5.22    9.80
+   210.0    0.00   -0.11   -0.46   -1.02   -1.75   -2.59   -3.46   -4.27   -4.92   -5.29   -5.28   -4.83   -3.99   -2.82   -1.43    0.23    2.39    5.49   10.04
+   215.0    0.00   -0.11   -0.46   -1.01   -1.74   -2.58   -3.45   -4.28   -4.94   -5.31   -5.29   -4.82   -3.94   -2.75   -1.31    0.41    2.65    5.80   10.29
+   220.0    0.00   -0.11   -0.45   -1.00   -1.73   -2.56   -3.45   -4.29   -4.96   -5.33   -5.30   -4.81   -3.91   -2.68   -1.19    0.60    2.91    6.11   10.51
+   225.0    0.00   -0.11   -0.45   -1.00   -1.71   -2.55   -3.44   -4.29   -4.98   -5.35   -5.31   -4.80   -3.88   -2.63   -1.10    0.76    3.15    6.39   10.68
+   230.0    0.00   -0.11   -0.45   -0.99   -1.70   -2.54   -3.44   -4.30   -4.98   -5.36   -5.31   -4.80   -3.87   -2.60   -1.04    0.87    3.34    6.60   10.76
+   235.0    0.00   -0.11   -0.44   -0.98   -1.69   -2.53   -3.43   -4.29   -4.98   -5.36   -5.31   -4.80   -3.86   -2.59   -1.02    0.93    3.44    6.72   10.75
+   240.0    0.00   -0.11   -0.44   -0.98   -1.68   -2.52   -3.42   -4.29   -4.98   -5.35   -5.30   -4.79   -3.87   -2.62   -1.06    0.91    3.45    6.73   10.63
+   245.0    0.00   -0.11   -0.44   -0.97   -1.67   -2.51   -3.41   -4.28   -4.97   -5.34   -5.29   -4.79   -3.90   -2.67   -1.14    0.82    3.37    6.64   10.44
+   250.0    0.00   -0.11   -0.44   -0.97   -1.67   -2.50   -3.41   -4.27   -4.96   -5.33   -5.28   -4.80   -3.93   -2.75   -1.25    0.66    3.20    6.45   10.18
+   255.0    0.00   -0.11   -0.44   -0.97   -1.67   -2.50   -3.41   -4.27   -4.96   -5.33   -5.28   -4.81   -3.97   -2.84   -1.40    0.46    2.96    6.19    9.89
+   260.0    0.00   -0.11   -0.45   -0.97   -1.67   -2.51   -3.41   -4.28   -4.96   -5.33   -5.29   -4.83   -4.02   -2.93   -1.56    0.24    2.69    5.89    9.60
+   265.0    0.00   -0.12   -0.45   -0.98   -1.68   -2.51   -3.42   -4.29   -4.98   -5.35   -5.31   -4.87   -4.08   -3.03   -1.71    0.03    2.41    5.59    9.34
+   270.0    0.00   -0.12   -0.45   -0.99   -1.69   -2.52   -3.43   -4.30   -5.00   -5.38   -5.35   -4.92   -4.14   -3.11   -1.84   -0.16    2.16    5.32    9.14
+   275.0    0.00   -0.12   -0.46   -0.99   -1.70   -2.53   -3.44   -4.32   -5.03   -5.42   -5.41   -4.98   -4.21   -3.19   -1.93   -0.30    1.97    5.10    9.01
+   280.0    0.00   -0.12   -0.46   -1.00   -1.70   -2.54   -3.45   -4.34   -5.06   -5.47   -5.47   -5.04   -4.27   -3.24   -1.98   -0.37    1.85    4.97    8.96
+   285.0    0.00   -0.12   -0.47   -1.01   -1.71   -2.55   -3.46   -4.35   -5.09   -5.52   -5.54   -5.12   -4.33   -3.27   -1.99   -0.38    1.82    4.91    8.97
+   290.0    0.00   -0.12   -0.47   -1.01   -1.72   -2.55   -3.46   -4.36   -5.11   -5.56   -5.60   -5.19   -4.38   -3.28   -1.96   -0.32    1.87    4.94    9.04
+   295.0    0.00   -0.12   -0.47   -1.02   -1.72   -2.55   -3.46   -4.36   -5.12   -5.60   -5.66   -5.25   -4.41   -3.27   -1.89   -0.22    1.98    5.03    9.14
+   300.0    0.00   -0.12   -0.48   -1.02   -1.72   -2.55   -3.45   -4.35   -5.12   -5.62   -5.69   -5.29   -4.43   -3.24   -1.79   -0.07    2.14    5.16    9.25
+   305.0    0.00   -0.13   -0.48   -1.03   -1.72   -2.54   -3.43   -4.33   -5.11   -5.62   -5.71   -5.31   -4.44   -3.19   -1.68    0.09    2.31    5.31    9.36
+   310.0    0.00   -0.13   -0.48   -1.03   -1.72   -2.53   -3.41   -4.30   -5.08   -5.60   -5.71   -5.31   -4.42   -3.14   -1.58    0.25    2.49    5.46    9.43
+   315.0    0.00   -0.13   -0.48   -1.03   -1.72   -2.52   -3.39   -4.27   -5.05   -5.57   -5.68   -5.29   -4.39   -3.08   -1.48    0.38    2.64    5.58    9.48
+   320.0    0.00   -0.13   -0.48   -1.03   -1.71   -2.51   -3.37   -4.24   -5.01   -5.53   -5.64   -5.25   -4.35   -3.03   -1.41    0.47    2.75    5.67    9.48
+   325.0    0.00   -0.13   -0.48   -1.02   -1.71   -2.50   -3.36   -4.22   -4.98   -5.49   -5.59   -5.19   -4.30   -2.98   -1.37    0.52    2.81    5.72    9.45
+   330.0    0.00   -0.13   -0.48   -1.02   -1.70   -2.49   -3.35   -4.21   -4.96   -5.45   -5.54   -5.14   -4.24   -2.95   -1.35    0.53    2.82    5.73    9.40
+   335.0    0.00   -0.13   -0.48   -1.02   -1.70   -2.49   -3.35   -4.20   -4.94   -5.42   -5.49   -5.08   -4.20   -2.93   -1.36    0.50    2.79    5.70    9.32
+   340.0    0.00   -0.13   -0.48   -1.01   -1.69   -2.49   -3.35   -4.21   -4.94   -5.40   -5.46   -5.03   -4.16   -2.92   -1.40    0.44    2.73    5.66    9.24
+   345.0    0.00   -0.13   -0.48   -1.01   -1.69   -2.49   -3.36   -4.22   -4.95   -5.40   -5.43   -5.00   -4.14   -2.93   -1.45    0.36    2.65    5.61    9.17
+   350.0    0.00   -0.13   -0.47   -1.00   -1.69   -2.49   -3.37   -4.24   -4.97   -5.40   -5.42   -4.98   -4.13   -2.95   -1.50    0.28    2.58    5.56    9.10
+   355.0    0.00   -0.13   -0.47   -1.00   -1.68   -2.49   -3.38   -4.25   -4.98   -5.41   -5.42   -4.98   -4.13   -2.98   -1.56    0.21    2.52    5.52    9.06
+   360.0    0.00   -0.13   -0.47   -0.99   -1.67   -2.49   -3.38   -4.27   -5.00   -5.43   -5.43   -4.99   -4.15   -3.01   -1.61    0.16    2.48    5.51    9.03
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+LEIAT504GG      LEIS                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH              42    02-APR-07 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+      0.53      0.98     87.40                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.30   -1.17   -2.47   -4.03   -5.66   -7.17   -8.39   -9.21   -9.53   -9.31   -8.56   -7.26   -5.39   -2.89    0.36    4.50    9.58   15.39
+     0.0    0.00   -0.29   -1.16   -2.48   -4.08   -5.76   -7.29   -8.51   -9.28   -9.53   -9.25   -8.45   -7.14   -5.30   -2.82    0.45    4.65    9.72   15.29
+     5.0    0.00   -0.30   -1.17   -2.49   -4.09   -5.77   -7.30   -8.53   -9.30   -9.55   -9.26   -8.45   -7.13   -5.29   -2.83    0.41    4.58    9.65   15.28
+    10.0    0.00   -0.30   -1.17   -2.50   -4.10   -5.77   -7.31   -8.54   -9.32   -9.58   -9.28   -8.45   -7.12   -5.28   -2.83    0.37    4.50    9.57   15.28
+    15.0    0.00   -0.31   -1.18   -2.51   -4.11   -5.78   -7.32   -8.56   -9.35   -9.61   -9.31   -8.47   -7.13   -5.28   -2.84    0.34    4.43    9.50   15.29
+    20.0    0.00   -0.31   -1.19   -2.52   -4.11   -5.78   -7.33   -8.57   -9.37   -9.65   -9.35   -8.51   -7.15   -5.28   -2.84    0.32    4.39    9.46   15.32
+    25.0    0.00   -0.32   -1.20   -2.52   -4.12   -5.78   -7.33   -8.58   -9.40   -9.68   -9.40   -8.55   -7.17   -5.29   -2.84    0.31    4.37    9.44   15.35
+    30.0    0.00   -0.32   -1.21   -2.53   -4.12   -5.78   -7.33   -8.59   -9.42   -9.72   -9.45   -8.60   -7.21   -5.31   -2.84    0.33    4.38    9.45   15.39
+    35.0    0.00   -0.33   -1.22   -2.54   -4.12   -5.78   -7.32   -8.58   -9.43   -9.75   -9.49   -8.65   -7.26   -5.33   -2.83    0.36    4.41    9.48   15.44
+    40.0    0.00   -0.33   -1.22   -2.54   -4.12   -5.77   -7.31   -8.57   -9.43   -9.77   -9.53   -8.71   -7.31   -5.35   -2.82    0.40    4.47    9.53   15.48
+    45.0    0.00   -0.34   -1.23   -2.55   -4.12   -5.76   -7.29   -8.56   -9.42   -9.77   -9.56   -8.75   -7.35   -5.38   -2.81    0.44    4.54    9.60   15.53
+    50.0    0.00   -0.34   -1.24   -2.55   -4.12   -5.75   -7.27   -8.53   -9.40   -9.77   -9.57   -8.78   -7.38   -5.40   -2.80    0.49    4.61    9.67   15.57
+    55.0    0.00   -0.35   -1.24   -2.56   -4.12   -5.74   -7.25   -8.50   -9.36   -9.74   -9.57   -8.79   -7.40   -5.41   -2.79    0.53    4.68    9.74   15.62
+    60.0    0.00   -0.35   -1.25   -2.57   -4.12   -5.74   -7.23   -8.47   -9.32   -9.71   -9.54   -8.78   -7.41   -5.41   -2.78    0.57    4.74    9.81   15.67
+    65.0    0.00   -0.35   -1.25   -2.57   -4.13   -5.73   -7.21   -8.43   -9.28   -9.66   -9.50   -8.75   -7.39   -5.41   -2.77    0.59    4.78    9.86   15.72
+    70.0    0.00   -0.36   -1.26   -2.58   -4.13   -5.73   -7.20   -8.40   -9.24   -9.61   -9.45   -8.71   -7.37   -5.40   -2.77    0.60    4.80    9.90   15.77
+    75.0    0.00   -0.36   -1.26   -2.58   -4.13   -5.73   -7.19   -8.38   -9.20   -9.56   -9.40   -8.66   -7.33   -5.38   -2.76    0.60    4.81    9.92   15.82
+    80.0    0.00   -0.36   -1.27   -2.59   -4.14   -5.73   -7.18   -8.36   -9.17   -9.51   -9.34   -8.61   -7.29   -5.36   -2.76    0.59    4.80    9.94   15.86
+    85.0    0.00   -0.36   -1.27   -2.60   -4.15   -5.73   -7.18   -8.36   -9.15   -9.48   -9.30   -8.56   -7.25   -5.34   -2.76    0.58    4.79    9.94   15.89
+    90.0    0.00   -0.37   -1.28   -2.60   -4.15   -5.74   -7.19   -8.36   -9.14   -9.46   -9.26   -8.53   -7.22   -5.32   -2.76    0.57    4.78    9.94   15.91
+    95.0    0.00   -0.37   -1.28   -2.61   -4.16   -5.75   -7.20   -8.37   -9.14   -9.45   -9.25   -8.51   -7.20   -5.31   -2.76    0.55    4.76    9.93   15.91
+   100.0    0.00   -0.37   -1.28   -2.61   -4.17   -5.77   -7.22   -8.38   -9.15   -9.45   -9.25   -8.50   -7.20   -5.31   -2.77    0.54    4.74    9.92   15.90
+   105.0    0.00   -0.37   -1.28   -2.61   -4.18   -5.78   -7.24   -8.40   -9.17   -9.47   -9.26   -8.51   -7.21   -5.33   -2.79    0.52    4.73    9.90   15.87
+   110.0    0.00   -0.37   -1.28   -2.61   -4.18   -5.79   -7.25   -8.43   -9.20   -9.50   -9.29   -8.54   -7.24   -5.35   -2.81    0.50    4.71    9.88   15.82
+   115.0    0.00   -0.37   -1.28   -2.61   -4.18   -5.80   -7.27   -8.45   -9.23   -9.53   -9.32   -8.57   -7.27   -5.39   -2.84    0.48    4.70    9.86   15.77
+   120.0    0.00   -0.36   -1.28   -2.61   -4.19   -5.80   -7.28   -8.47   -9.25   -9.56   -9.35   -8.60   -7.31   -5.42   -2.88    0.45    4.67    9.83   15.73
+   125.0    0.00   -0.36   -1.28   -2.61   -4.18   -5.81   -7.29   -8.48   -9.27   -9.58   -9.37   -8.63   -7.34   -5.46   -2.92    0.41    4.65    9.80   15.68
+   130.0    0.00   -0.36   -1.27   -2.60   -4.18   -5.80   -7.29   -8.49   -9.28   -9.59   -9.39   -8.66   -7.37   -5.50   -2.95    0.38    4.61    9.77   15.65
+   135.0    0.00   -0.36   -1.27   -2.60   -4.17   -5.80   -7.29   -8.49   -9.28   -9.60   -9.40   -8.66   -7.39   -5.52   -2.99    0.34    4.57    9.74   15.64
+   140.0    0.00   -0.36   -1.26   -2.59   -4.17   -5.79   -7.28   -8.48   -9.27   -9.59   -9.39   -8.66   -7.39   -5.54   -3.01    0.30    4.54    9.71   15.64
+   145.0    0.00   -0.35   -1.26   -2.58   -4.16   -5.78   -7.27   -8.47   -9.26   -9.58   -9.37   -8.65   -7.38   -5.54   -3.03    0.27    4.50    9.68   15.65
+   150.0    0.00   -0.35   -1.25   -2.57   -4.15   -5.77   -7.26   -8.46   -9.25   -9.56   -9.35   -8.63   -7.36   -5.53   -3.03    0.26    4.47    9.66   15.66
+   155.0    0.00   -0.34   -1.24   -2.56   -4.13   -5.76   -7.25   -8.44   -9.23   -9.54   -9.33   -8.60   -7.34   -5.51   -3.02    0.25    4.45    9.64   15.66
+   160.0    0.00   -0.34   -1.23   -2.55   -4.12   -5.74   -7.23   -8.43   -9.22   -9.52   -9.31   -8.58   -7.31   -5.48   -3.00    0.26    4.45    9.62   15.65
+   165.0    0.00   -0.33   -1.22   -2.54   -4.11   -5.73   -7.22   -8.41   -9.20   -9.51   -9.30   -8.56   -7.29   -5.45   -2.97    0.29    4.45    9.60   15.62
+   170.0    0.00   -0.33   -1.22   -2.53   -4.10   -5.72   -7.21   -8.40   -9.19   -9.50   -9.29   -8.55   -7.27   -5.42   -2.93    0.32    4.46    9.58   15.57
+   175.0    0.00   -0.32   -1.21   -2.52   -4.08   -5.70   -7.19   -8.39   -9.19   -9.50   -9.30   -8.55   -7.26   -5.40   -2.90    0.35    4.48    9.56   15.49
+   180.0    0.00   -0.32   -1.20   -2.51   -4.07   -5.69   -7.18   -8.39   -9.19   -9.51   -9.31   -8.56   -7.26   -5.38   -2.87    0.38    4.49    9.52   15.39
+   185.0    0.00   -0.31   -1.19   -2.49   -4.06   -5.68   -7.17   -8.38   -9.19   -9.52   -9.32   -8.58   -7.27   -5.38   -2.85    0.40    4.49    9.48   15.28
+   190.0    0.00   -0.31   -1.18   -2.48   -4.04   -5.67   -7.16   -8.38   -9.19   -9.53   -9.34   -8.59   -7.28   -5.38   -2.85    0.41    4.48    9.44   15.18
+   195.0    0.00   -0.30   -1.17   -2.47   -4.03   -5.65   -7.15   -8.37   -9.19   -9.54   -9.35   -8.61   -7.30   -5.39   -2.86    0.40    4.46    9.40   15.09
+   200.0    0.00   -0.30   -1.16   -2.46   -4.02   -5.64   -7.14   -8.36   -9.19   -9.54   -9.36   -8.62   -7.31   -5.41   -2.88    0.37    4.43    9.36   15.03
+   205.0    0.00   -0.29   -1.15   -2.44   -4.00   -5.62   -7.12   -8.35   -9.18   -9.53   -9.36   -8.62   -7.32   -5.43   -2.91    0.33    4.39    9.33   15.02
+   210.0    0.00   -0.28   -1.14   -2.43   -3.98   -5.61   -7.11   -8.33   -9.16   -9.52   -9.34   -8.62   -7.33   -5.45   -2.95    0.28    4.35    9.33   15.04
+   215.0    0.00   -0.28   -1.12   -2.41   -3.97   -5.59   -7.09   -8.31   -9.14   -9.50   -9.32   -8.60   -7.32   -5.47   -2.98    0.24    4.32    9.34   15.11
+   220.0    0.00   -0.27   -1.11   -2.40   -3.95   -5.57   -7.07   -8.29   -9.12   -9.47   -9.30   -8.58   -7.31   -5.48   -3.01    0.20    4.31    9.37   15.21
+   225.0    0.00   -0.27   -1.10   -2.38   -3.93   -5.55   -7.05   -8.27   -9.10   -9.44   -9.27   -8.55   -7.30   -5.48   -3.03    0.18    4.31    9.43   15.34
+   230.0    0.00   -0.26   -1.09   -2.37   -3.91   -5.53   -7.02   -8.25   -9.07   -9.42   -9.24   -8.53   -7.28   -5.48   -3.04    0.17    4.33    9.50   15.46
+   235.0    0.00   -0.26   -1.08   -2.35   -3.89   -5.50   -7.00   -8.22   -9.05   -9.39   -9.22   -8.51   -7.26   -5.47   -3.03    0.19    4.37    9.58   15.57
+   240.0    0.00   -0.25   -1.07   -2.34   -3.87   -5.48   -6.98   -8.20   -9.03   -9.38   -9.20   -8.49   -7.25   -5.45   -3.01    0.22    4.43    9.66   15.65
+   245.0    0.00   -0.25   -1.06   -2.32   -3.86   -5.46   -6.96   -8.18   -9.01   -9.37   -9.19   -8.49   -7.24   -5.44   -2.98    0.27    4.49    9.73   15.68
+   250.0    0.00   -0.25   -1.06   -2.31   -3.84   -5.45   -6.94   -8.17   -9.01   -9.36   -9.20   -8.49   -7.24   -5.42   -2.95    0.32    4.55    9.77   15.66
+   255.0    0.00   -0.24   -1.05   -2.30   -3.83   -5.43   -6.93   -8.16   -9.01   -9.37   -9.20   -8.50   -7.24   -5.40   -2.91    0.37    4.59    9.77   15.58
+   260.0    0.00   -0.24   -1.04   -2.29   -3.82   -5.42   -6.92   -8.16   -9.01   -9.38   -9.22   -8.51   -7.24   -5.39   -2.89    0.41    4.61    9.74   15.46
+   265.0    0.00   -0.24   -1.04   -2.29   -3.81   -5.42   -6.92   -8.17   -9.02   -9.40   -9.24   -8.52   -7.24   -5.38   -2.87    0.42    4.60    9.67   15.30
+   270.0    0.00   -0.24   -1.04   -2.28   -3.81   -5.42   -6.93   -8.18   -9.04   -9.42   -9.25   -8.53   -7.24   -5.37   -2.86    0.42    4.56    9.56   15.13
+   275.0    0.00   -0.23   -1.03   -2.28   -3.81   -5.43   -6.94   -8.20   -9.06   -9.43   -9.27   -8.54   -7.24   -5.37   -2.86    0.39    4.48    9.43   14.96
+   280.0    0.00   -0.23   -1.03   -2.29   -3.82   -5.44   -6.96   -8.22   -9.08   -9.45   -9.28   -8.54   -7.24   -5.37   -2.88    0.34    4.39    9.30   14.81
+   285.0    0.00   -0.23   -1.04   -2.29   -3.83   -5.46   -6.99   -8.25   -9.10   -9.47   -9.28   -8.53   -7.23   -5.37   -2.90    0.28    4.29    9.17   14.71
+   290.0    0.00   -0.24   -1.04   -2.30   -3.84   -5.48   -7.01   -8.28   -9.13   -9.48   -9.28   -8.52   -7.22   -5.37   -2.93    0.22    4.20    9.06   14.65
+   295.0    0.00   -0.24   -1.04   -2.31   -3.86   -5.50   -7.05   -8.31   -9.15   -9.49   -9.27   -8.51   -7.20   -5.37   -2.95    0.16    4.12    9.00   14.64
+   300.0    0.00   -0.24   -1.05   -2.32   -3.88   -5.53   -7.08   -8.34   -9.17   -9.50   -9.27   -8.49   -7.19   -5.37   -2.97    0.12    4.08    8.97   14.68
+   305.0    0.00   -0.24   -1.05   -2.33   -3.90   -5.56   -7.11   -8.37   -9.19   -9.50   -9.26   -8.48   -7.18   -5.37   -2.99    0.11    4.07    9.00   14.76
+   310.0    0.00   -0.24   -1.06   -2.34   -3.92   -5.59   -7.14   -8.39   -9.21   -9.51   -9.25   -8.47   -7.18   -5.37   -2.99    0.12    4.11    9.07   14.86
+   315.0    0.00   -0.25   -1.07   -2.36   -3.94   -5.61   -7.17   -8.42   -9.22   -9.51   -9.25   -8.46   -7.17   -5.37   -2.98    0.15    4.18    9.18   14.98
+   320.0    0.00   -0.25   -1.08   -2.37   -3.96   -5.64   -7.19   -8.44   -9.23   -9.51   -9.25   -8.46   -7.18   -5.37   -2.96    0.21    4.28    9.31   15.10
+   325.0    0.00   -0.26   -1.09   -2.39   -3.98   -5.66   -7.21   -8.45   -9.24   -9.51   -9.25   -8.47   -7.18   -5.37   -2.93    0.27    4.40    9.45   15.20
+   330.0    0.00   -0.26   -1.10   -2.40   -4.00   -5.68   -7.23   -8.46   -9.25   -9.51   -9.25   -8.47   -7.19   -5.37   -2.90    0.35    4.51    9.58   15.27
+   335.0    0.00   -0.26   -1.11   -2.42   -4.02   -5.70   -7.24   -8.47   -9.25   -9.51   -9.25   -8.47   -7.19   -5.36   -2.88    0.41    4.61    9.70   15.32
+   340.0    0.00   -0.27   -1.12   -2.43   -4.03   -5.71   -7.25   -8.48   -9.25   -9.51   -9.25   -8.47   -7.19   -5.35   -2.85    0.46    4.69    9.77   15.34
+   345.0    0.00   -0.27   -1.13   -2.44   -4.05   -5.73   -7.26   -8.48   -9.25   -9.51   -9.24   -8.47   -7.18   -5.34   -2.83    0.49    4.73    9.81   15.34
+   350.0    0.00   -0.28   -1.14   -2.46   -4.06   -5.74   -7.27   -8.49   -9.26   -9.51   -9.24   -8.46   -7.17   -5.33   -2.82    0.50    4.74    9.81   15.33
+   355.0    0.00   -0.29   -1.15   -2.47   -4.07   -5.75   -7.28   -8.50   -9.27   -9.52   -9.24   -8.45   -7.16   -5.31   -2.82    0.48    4.70    9.78   15.31
+   360.0    0.00   -0.29   -1.16   -2.48   -4.08   -5.76   -7.29   -8.51   -9.28   -9.53   -9.25   -8.45   -7.14   -5.30   -2.82    0.45    4.65    9.72   15.29
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.16     -0.31    117.67                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.14   -0.55   -1.17   -1.93   -2.77   -3.66   -4.53   -5.29   -5.81   -5.92   -5.54   -4.66   -3.35   -1.72    0.22    2.63    5.83   10.10
+     0.0    0.00   -0.15   -0.54   -1.14   -1.87   -2.69   -3.57   -4.45   -5.22   -5.75   -5.89   -5.52   -4.65   -3.33   -1.68    0.30    2.76    6.00   10.26
+     5.0    0.00   -0.15   -0.54   -1.14   -1.87   -2.70   -3.57   -4.45   -5.21   -5.74   -5.87   -5.52   -4.65   -3.35   -1.71    0.28    2.77    6.03   10.31
+    10.0    0.00   -0.15   -0.54   -1.14   -1.87   -2.70   -3.58   -4.44   -5.20   -5.72   -5.85   -5.51   -4.65   -3.37   -1.72    0.29    2.79    6.08   10.39
+    15.0    0.00   -0.15   -0.54   -1.14   -1.88   -2.71   -3.58   -4.44   -5.19   -5.70   -5.83   -5.49   -4.65   -3.36   -1.71    0.30    2.84    6.16   10.50
+    20.0    0.00   -0.15   -0.55   -1.15   -1.89   -2.72   -3.59   -4.44   -5.18   -5.68   -5.81   -5.47   -4.63   -3.35   -1.70    0.34    2.89    6.25   10.64
+    25.0    0.00   -0.15   -0.55   -1.15   -1.90   -2.72   -3.59   -4.43   -5.17   -5.66   -5.79   -5.45   -4.61   -3.32   -1.66    0.38    2.96    6.35   10.78
+    30.0    0.00   -0.15   -0.55   -1.16   -1.90   -2.73   -3.60   -4.43   -5.16   -5.65   -5.77   -5.42   -4.58   -3.29   -1.63    0.42    3.02    6.44   10.92
+    35.0    0.00   -0.15   -0.55   -1.16   -1.91   -2.74   -3.60   -4.43   -5.15   -5.64   -5.75   -5.39   -4.54   -3.25   -1.59    0.47    3.07    6.52   11.05
+    40.0    0.00   -0.15   -0.55   -1.17   -1.92   -2.75   -3.61   -4.44   -5.15   -5.63   -5.74   -5.37   -4.51   -3.22   -1.56    0.49    3.10    6.57   11.15
+    45.0    0.00   -0.15   -0.56   -1.17   -1.92   -2.76   -3.62   -4.45   -5.16   -5.63   -5.73   -5.36   -4.49   -3.20   -1.54    0.50    3.11    6.59   11.20
+    50.0    0.00   -0.15   -0.56   -1.18   -1.93   -2.77   -3.63   -4.46   -5.17   -5.64   -5.74   -5.36   -4.49   -3.19   -1.54    0.49    3.08    6.56   11.20
+    55.0    0.00   -0.15   -0.56   -1.18   -1.94   -2.78   -3.64   -4.47   -5.19   -5.66   -5.75   -5.37   -4.49   -3.20   -1.56    0.45    3.02    6.49   11.14
+    60.0    0.00   -0.15   -0.56   -1.19   -1.95   -2.79   -3.65   -4.49   -5.21   -5.69   -5.78   -5.39   -4.52   -3.22   -1.60    0.39    2.93    6.38   11.02
+    65.0    0.00   -0.15   -0.57   -1.19   -1.95   -2.80   -3.67   -4.51   -5.24   -5.72   -5.82   -5.43   -4.56   -3.27   -1.66    0.30    2.82    6.24   10.85
+    70.0    0.00   -0.15   -0.57   -1.20   -1.96   -2.81   -3.68   -4.54   -5.27   -5.76   -5.87   -5.48   -4.61   -3.33   -1.73    0.20    2.68    6.06   10.64
+    75.0    0.00   -0.15   -0.57   -1.20   -1.97   -2.82   -3.70   -4.56   -5.30   -5.80   -5.91   -5.54   -4.67   -3.40   -1.82    0.09    2.53    5.87   10.41
+    80.0    0.00   -0.15   -0.57   -1.20   -1.97   -2.83   -3.71   -4.58   -5.33   -5.84   -5.96   -5.59   -4.73   -3.47   -1.90   -0.02    2.38    5.68   10.17
+    85.0    0.00   -0.15   -0.57   -1.21   -1.98   -2.84   -3.72   -4.60   -5.36   -5.88   -6.00   -5.64   -4.79   -3.54   -1.99   -0.13    2.24    5.49    9.93
+    90.0    0.00   -0.15   -0.57   -1.21   -1.99   -2.84   -3.74   -4.61   -5.38   -5.91   -6.04   -5.69   -4.84   -3.59   -2.05   -0.22    2.12    5.33    9.73
+    95.0    0.00   -0.15   -0.57   -1.21   -1.99   -2.85   -3.74   -4.62   -5.39   -5.93   -6.07   -5.72   -4.87   -3.63   -2.10   -0.29    2.02    5.19    9.56
+   100.0    0.00   -0.15   -0.58   -1.22   -2.00   -2.86   -3.75   -4.63   -5.40   -5.94   -6.08   -5.73   -4.89   -3.66   -2.13   -0.33    1.95    5.10    9.45
+   105.0    0.00   -0.15   -0.58   -1.22   -2.00   -2.86   -3.76   -4.63   -5.41   -5.94   -6.08   -5.74   -4.90   -3.66   -2.14   -0.35    1.92    5.04    9.39
+   110.0    0.00   -0.15   -0.57   -1.22   -2.00   -2.86   -3.76   -4.63   -5.40   -5.93   -6.07   -5.73   -4.88   -3.64   -2.12   -0.34    1.92    5.03    9.39
+   115.0    0.00   -0.15   -0.57   -1.22   -2.00   -2.87   -3.76   -4.63   -5.40   -5.92   -6.06   -5.70   -4.86   -3.61   -2.08   -0.30    1.95    5.06    9.44
+   120.0    0.00   -0.15   -0.57   -1.22   -2.00   -2.87   -3.76   -4.63   -5.39   -5.91   -6.04   -5.68   -4.82   -3.56   -2.03   -0.24    2.01    5.13    9.53
+   125.0    0.00   -0.15   -0.57   -1.22   -2.00   -2.87   -3.76   -4.62   -5.38   -5.89   -6.01   -5.65   -4.78   -3.51   -1.97   -0.16    2.09    5.21    9.64
+   130.0    0.00   -0.14   -0.57   -1.21   -2.00   -2.87   -3.75   -4.62   -5.36   -5.87   -5.99   -5.61   -4.74   -3.46   -1.90   -0.08    2.19    5.32    9.75
+   135.0    0.00   -0.14   -0.57   -1.21   -2.00   -2.86   -3.75   -4.61   -5.35   -5.85   -5.96   -5.59   -4.71   -3.42   -1.84    0.00    2.29    5.42    9.85
+   140.0    0.00   -0.14   -0.56   -1.21   -2.00   -2.86   -3.75   -4.60   -5.34   -5.83   -5.94   -5.56   -4.68   -3.38   -1.78    0.08    2.38    5.52    9.93
+   145.0    0.00   -0.14   -0.56   -1.20   -1.99   -2.86   -3.74   -4.60   -5.33   -5.82   -5.93   -5.54   -4.66   -3.35   -1.73    0.15    2.47    5.60    9.97
+   150.0    0.00   -0.14   -0.56   -1.20   -1.98   -2.85   -3.74   -4.59   -5.32   -5.81   -5.91   -5.53   -4.64   -3.33   -1.70    0.20    2.54    5.66    9.98
+   155.0    0.00   -0.14   -0.55   -1.19   -1.97   -2.84   -3.73   -4.58   -5.31   -5.80   -5.90   -5.52   -4.63   -3.32   -1.68    0.24    2.59    5.70    9.95
+   160.0    0.00   -0.14   -0.55   -1.18   -1.96   -2.83   -3.72   -4.57   -5.30   -5.79   -5.89   -5.51   -4.63   -3.32   -1.68    0.26    2.62    5.72    9.89
+   165.0    0.00   -0.13   -0.54   -1.17   -1.95   -2.82   -3.71   -4.56   -5.29   -5.77   -5.88   -5.50   -4.63   -3.32   -1.68    0.27    2.64    5.72    9.81
+   170.0    0.00   -0.13   -0.54   -1.16   -1.94   -2.81   -3.70   -4.55   -5.28   -5.76   -5.87   -5.50   -4.63   -3.33   -1.69    0.26    2.64    5.71    9.74
+   175.0    0.00   -0.13   -0.53   -1.15   -1.93   -2.79   -3.68   -4.54   -5.27   -5.75   -5.85   -5.48   -4.62   -3.33   -1.69    0.26    2.65    5.71    9.69
+   180.0    0.00   -0.13   -0.53   -1.14   -1.91   -2.78   -3.67   -4.53   -5.26   -5.74   -5.84   -5.47   -4.61   -3.33   -1.70    0.26    2.66    5.72    9.66
+   185.0    0.00   -0.13   -0.52   -1.13   -1.90   -2.76   -3.65   -4.51   -5.24   -5.72   -5.82   -5.45   -4.60   -3.31   -1.69    0.27    2.68    5.75    9.68
+   190.0    0.00   -0.13   -0.52   -1.13   -1.89   -2.74   -3.64   -4.50   -5.23   -5.71   -5.81   -5.43   -4.57   -3.29   -1.67    0.29    2.71    5.81    9.75
+   195.0    0.00   -0.13   -0.52   -1.12   -1.87   -2.73   -3.62   -4.48   -5.22   -5.70   -5.79   -5.41   -4.54   -3.26   -1.63    0.33    2.77    5.89    9.87
+   200.0    0.00   -0.13   -0.52   -1.11   -1.86   -2.71   -3.61   -4.47   -5.21   -5.69   -5.78   -5.39   -4.51   -3.22   -1.58    0.39    2.84    6.00   10.03
+   205.0    0.00   -0.13   -0.51   -1.11   -1.86   -2.70   -3.59   -4.46   -5.21   -5.69   -5.77   -5.37   -4.48   -3.17   -1.52    0.46    2.93    6.12   10.21
+   210.0    0.00   -0.13   -0.51   -1.11   -1.85   -2.69   -3.58   -4.46   -5.20   -5.69   -5.77   -5.35   -4.45   -3.12   -1.46    0.54    3.02    6.25   10.40
+   215.0    0.00   -0.13   -0.52   -1.11   -1.85   -2.69   -3.58   -4.45   -5.20   -5.69   -5.77   -5.34   -4.42   -3.07   -1.39    0.61    3.11    6.36   10.57
+   220.0    0.00   -0.13   -0.52   -1.11   -1.85   -2.69   -3.58   -4.46   -5.21   -5.70   -5.77   -5.34   -4.39   -3.03   -1.34    0.68    3.18    6.45   10.70
+   225.0    0.00   -0.13   -0.52   -1.12   -1.86   -2.69   -3.58   -4.46   -5.22   -5.71   -5.78   -5.34   -4.38   -3.00   -1.30    0.72    3.22    6.49   10.78
+   230.0    0.00   -0.13   -0.53   -1.12   -1.86   -2.70   -3.59   -4.47   -5.23   -5.73   -5.80   -5.35   -4.38   -2.98   -1.28    0.73    3.22    6.48   10.79
+   235.0    0.00   -0.14   -0.53   -1.13   -1.88   -2.71   -3.61   -4.49   -5.25   -5.75   -5.82   -5.37   -4.39   -2.99   -1.28    0.71    3.17    6.42   10.72
+   240.0    0.00   -0.14   -0.54   -1.14   -1.89   -2.73   -3.62   -4.50   -5.27   -5.77   -5.84   -5.39   -4.41   -3.02   -1.32    0.65    3.08    6.30   10.58
+   245.0    0.00   -0.14   -0.54   -1.15   -1.91   -2.75   -3.64   -4.52   -5.29   -5.79   -5.87   -5.42   -4.45   -3.06   -1.39    0.56    2.95    6.12   10.38
+   250.0    0.00   -0.14   -0.55   -1.16   -1.92   -2.77   -3.66   -4.55   -5.32   -5.82   -5.90   -5.46   -4.50   -3.13   -1.48    0.43    2.78    5.91   10.13
+   255.0    0.00   -0.14   -0.56   -1.18   -1.94   -2.79   -3.69   -4.57   -5.34   -5.85   -5.93   -5.50   -4.56   -3.21   -1.59    0.28    2.59    5.68    9.86
+   260.0    0.00   -0.15   -0.56   -1.19   -1.95   -2.81   -3.71   -4.59   -5.36   -5.87   -5.97   -5.55   -4.63   -3.31   -1.71    0.13    2.40    5.45    9.59
+   265.0    0.00   -0.15   -0.57   -1.20   -1.97   -2.82   -3.72   -4.61   -5.38   -5.90   -6.01   -5.60   -4.70   -3.40   -1.84   -0.03    2.22    5.24    9.34
+   270.0    0.00   -0.15   -0.57   -1.21   -1.98   -2.84   -3.74   -4.62   -5.40   -5.92   -6.04   -5.66   -4.77   -3.50   -1.95   -0.16    2.06    5.07    9.14
+   275.0    0.00   -0.15   -0.58   -1.21   -1.99   -2.85   -3.75   -4.63   -5.42   -5.95   -6.08   -5.70   -4.84   -3.58   -2.05   -0.27    1.95    4.95    9.00
+   280.0    0.00   -0.15   -0.58   -1.21   -1.99   -2.85   -3.75   -4.64   -5.43   -5.97   -6.11   -5.75   -4.89   -3.65   -2.12   -0.33    1.89    4.89    8.92
+   285.0    0.00   -0.15   -0.58   -1.22   -1.99   -2.85   -3.75   -4.64   -5.43   -5.98   -6.13   -5.78   -4.94   -3.69   -2.16   -0.36    1.89    4.90    8.93
+   290.0    0.00   -0.15   -0.58   -1.21   -1.98   -2.84   -3.74   -4.63   -5.43   -5.99   -6.15   -5.81   -4.96   -3.71   -2.16   -0.34    1.93    4.96    9.00
+   295.0    0.00   -0.15   -0.58   -1.21   -1.98   -2.83   -3.73   -4.62   -5.43   -5.99   -6.16   -5.82   -4.97   -3.70   -2.13   -0.28    2.03    5.08    9.12
+   300.0    0.00   -0.15   -0.58   -1.21   -1.97   -2.81   -3.71   -4.61   -5.42   -5.99   -6.16   -5.82   -4.96   -3.67   -2.07   -0.18    2.15    5.23    9.29
+   305.0    0.00   -0.15   -0.58   -1.20   -1.95   -2.79   -3.69   -4.59   -5.40   -5.98   -6.15   -5.80   -4.93   -3.62   -1.99   -0.07    2.30    5.40    9.48
+   310.0    0.00   -0.15   -0.57   -1.19   -1.94   -2.77   -3.67   -4.57   -5.39   -5.96   -6.13   -5.78   -4.89   -3.55   -1.90    0.05    2.45    5.58    9.67
+   315.0    0.00   -0.15   -0.57   -1.18   -1.92   -2.75   -3.65   -4.55   -5.37   -5.94   -6.11   -5.74   -4.84   -3.48   -1.80    0.17    2.58    5.73    9.85
+   320.0    0.00   -0.15   -0.57   -1.17   -1.91   -2.74   -3.63   -4.53   -5.35   -5.92   -6.08   -5.71   -4.78   -3.41   -1.72    0.27    2.70    5.86   10.00
+   325.0    0.00   -0.15   -0.56   -1.16   -1.90   -2.72   -3.61   -4.51   -5.33   -5.90   -6.05   -5.67   -4.73   -3.35   -1.65    0.35    2.78    5.96   10.11
+   330.0    0.00   -0.15   -0.56   -1.16   -1.88   -2.71   -3.59   -4.49   -5.31   -5.87   -6.02   -5.63   -4.69   -3.31   -1.60    0.40    2.84    6.01   10.18
+   335.0    0.00   -0.15   -0.55   -1.15   -1.87   -2.70   -3.58   -4.48   -5.29   -5.85   -5.99   -5.59   -4.66   -3.28   -1.57    0.42    2.86    6.04   10.22
+   340.0    0.00   -0.15   -0.55   -1.14   -1.87   -2.69   -3.57   -4.47   -5.27   -5.83   -5.96   -5.57   -4.64   -3.26   -1.57    0.42    2.85    6.04   10.24
+   345.0    0.00   -0.15   -0.55   -1.14   -1.86   -2.68   -3.57   -4.46   -5.26   -5.81   -5.94   -5.55   -4.63   -3.27   -1.59    0.40    2.83    6.02   10.24
+   350.0    0.00   -0.15   -0.55   -1.14   -1.86   -2.68   -3.57   -4.46   -5.25   -5.79   -5.92   -5.54   -4.63   -3.29   -1.62    0.36    2.80    6.00   10.23
+   355.0    0.00   -0.15   -0.54   -1.14   -1.86   -2.69   -3.57   -4.45   -5.24   -5.77   -5.90   -5.53   -4.64   -3.31   -1.65    0.33    2.78    5.99   10.23
+   360.0    0.00   -0.15   -0.54   -1.14   -1.87   -2.69   -3.57   -4.45   -5.22   -5.75   -5.89   -5.52   -4.65   -3.33   -1.68    0.30    2.76    6.00   10.26
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+LEIAT504GG      SCIS                                        TYPE / SERIAL NO    
+FIELD               NGS/TUM                  2    22-MAR-07 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      1.50      1.24     86.74                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.24   -1.12   -2.37   -3.98   -5.59   -7.15   -8.49   -9.37   -9.70   -9.34   -8.56   -7.17   -5.24   -2.60    0.57    4.49
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.20      0.08    117.26                              NORTH / EAST / UP   
+   NOAZI    0.00    0.07   -0.32   -1.00   -1.72   -2.52   -3.53   -4.31   -4.95   -5.33   -5.35   -4.93   -4.08   -2.75   -1.13    0.69    2.96
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+LEIAT504GG      SCIT                                        TYPE / SERIAL NO    
+FIELD               NGS/TUM                  2    22-MAR-07 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      1.70      2.54     87.84                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.84   -1.82   -3.17   -4.68   -6.19   -7.65   -8.79   -9.57   -9.80   -9.54   -8.86   -7.67   -5.94   -3.60   -0.63    3.19
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.00      0.88    117.16                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.13   -0.42   -1.00   -1.62   -2.42   -3.23   -4.11   -4.75   -5.23   -5.25   -4.93   -3.98   -2.65   -0.93    1.19    3.96
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+LEIATX1230      NONE                                        TYPE / SERIAL NO    
+FIELD               NGS/TUM                  3    22-MAR-07 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      1.00      2.04     91.84                              NORTH / EAST / UP   
+   NOAZI    0.00    0.36    0.58    0.73    0.72    0.51    0.25   -0.09   -0.37   -0.60   -0.84   -1.06   -1.17   -1.34   -1.40   -1.13   -0.51
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.00     -1.12     96.96                              NORTH / EAST / UP   
+   NOAZI    0.00   -1.73   -2.52   -2.80   -2.72   -2.52   -2.23   -2.11   -2.15   -2.43   -2.75   -3.13   -3.58   -4.15   -4.73   -5.31   -5.54
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+LEIATX1230GG    NONE                                        TYPE / SERIAL NO    
+FIELD               NGS/TUM                  3    22-MAR-07 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      1.00      2.04     91.84                              NORTH / EAST / UP   
+   NOAZI    0.00    0.36    0.58    0.73    0.72    0.51    0.25   -0.09   -0.37   -0.60   -0.84   -1.06   -1.17   -1.34   -1.40   -1.13   -0.51
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.00     -1.12     96.96                              NORTH / EAST / UP   
+   NOAZI    0.00   -1.73   -2.52   -2.80   -2.72   -2.52   -2.23   -2.11   -2.15   -2.43   -2.75   -3.13   -3.58   -4.15   -4.73   -5.31   -5.54
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+LEIATX1230+GNSS NONE                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               5    14-JAN-09 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+     -1.39      1.61     87.82                              NORTH / EAST / UP   
+   NOAZI    0.00    0.02    0.04    0.01   -0.12   -0.36   -0.67   -0.97   -1.17   -1.23   -1.16   -1.01   -0.84   -0.67   -0.44   -0.06    0.56    1.39    2.28
+     0.0    0.00    0.06    0.13    0.16    0.06   -0.20   -0.58   -0.99   -1.30   -1.42   -1.31   -1.02   -0.63   -0.25    0.05    0.27    0.47    0.80    1.43
+     5.0    0.00    0.05    0.13    0.16    0.06   -0.20   -0.58   -0.97   -1.28   -1.39   -1.28   -0.99   -0.61   -0.22    0.10    0.35    0.57    0.83    1.30
+    10.0    0.00    0.05    0.13    0.15    0.05   -0.20   -0.56   -0.95   -1.24   -1.35   -1.25   -0.98   -0.61   -0.23    0.13    0.43    0.69    0.92    1.24
+    15.0    0.00    0.05    0.12    0.14    0.05   -0.20   -0.55   -0.92   -1.19   -1.29   -1.21   -0.97   -0.64   -0.26    0.12    0.49    0.81    1.05    1.26
+    20.0    0.00    0.04    0.11    0.14    0.04   -0.19   -0.53   -0.87   -1.13   -1.23   -1.17   -0.97   -0.69   -0.33    0.07    0.51    0.92    1.21    1.35
+    25.0    0.00    0.04    0.10    0.12    0.03   -0.19   -0.51   -0.83   -1.06   -1.16   -1.12   -0.98   -0.75   -0.44   -0.02    0.48    1.00    1.37    1.50
+    30.0    0.00    0.04    0.09    0.11    0.02   -0.19   -0.49   -0.78   -0.99   -1.08   -1.07   -0.98   -0.82   -0.56   -0.16    0.40    1.02    1.51    1.68
+    35.0    0.00    0.03    0.08    0.09    0.01   -0.20   -0.47   -0.73   -0.92   -1.00   -1.01   -0.97   -0.88   -0.70   -0.32    0.27    0.98    1.60    1.86
+    40.0    0.00    0.02    0.07    0.08   -0.01   -0.21   -0.46   -0.70   -0.85   -0.92   -0.94   -0.95   -0.93   -0.82   -0.50    0.10    0.88    1.62    2.01
+    45.0    0.00    0.02    0.06    0.05   -0.04   -0.22   -0.46   -0.67   -0.80   -0.85   -0.87   -0.91   -0.96   -0.92   -0.67   -0.10    0.73    1.57    2.11
+    50.0    0.00    0.01    0.04    0.03   -0.06   -0.25   -0.47   -0.66   -0.76   -0.79   -0.80   -0.86   -0.95   -0.99   -0.81   -0.29    0.53    1.46    2.14
+    55.0    0.00    0.01    0.03    0.01   -0.10   -0.28   -0.50   -0.67   -0.75   -0.75   -0.74   -0.79   -0.91   -1.01   -0.91   -0.47    0.33    1.29    2.10
+    60.0    0.00    0.00    0.01   -0.02   -0.13   -0.32   -0.53   -0.70   -0.76   -0.73   -0.69   -0.72   -0.84   -0.98   -0.96   -0.60    0.13    1.09    2.00
+    65.0    0.00    0.00    0.00   -0.04   -0.17   -0.37   -0.58   -0.74   -0.79   -0.73   -0.65   -0.64   -0.75   -0.90   -0.94   -0.68   -0.03    0.91    1.86
+    70.0    0.00   -0.01   -0.02   -0.07   -0.20   -0.41   -0.64   -0.80   -0.84   -0.76   -0.64   -0.58   -0.64   -0.79   -0.87   -0.69   -0.13    0.75    1.73
+    75.0    0.00   -0.02   -0.03   -0.09   -0.24   -0.46   -0.71   -0.88   -0.91   -0.81   -0.65   -0.53   -0.54   -0.65   -0.75   -0.63   -0.15    0.67    1.63
+    80.0    0.00   -0.02   -0.04   -0.12   -0.28   -0.51   -0.77   -0.96   -1.00   -0.89   -0.69   -0.51   -0.45   -0.51   -0.59   -0.51   -0.09    0.66    1.60
+    85.0    0.00   -0.02   -0.06   -0.14   -0.31   -0.56   -0.83   -1.04   -1.10   -0.98   -0.75   -0.52   -0.39   -0.39   -0.43   -0.34    0.04    0.76    1.66
+    90.0    0.00   -0.03   -0.07   -0.16   -0.34   -0.60   -0.89   -1.12   -1.20   -1.09   -0.84   -0.57   -0.37   -0.29   -0.27   -0.15    0.23    0.94    1.81
+    95.0    0.00   -0.03   -0.07   -0.17   -0.36   -0.64   -0.95   -1.20   -1.30   -1.21   -0.96   -0.65   -0.39   -0.24   -0.14    0.03    0.46    1.18    2.06
+   100.0    0.00   -0.03   -0.08   -0.18   -0.37   -0.66   -0.99   -1.26   -1.39   -1.33   -1.09   -0.76   -0.45   -0.23   -0.06    0.20    0.69    1.47    2.37
+   105.0    0.00   -0.04   -0.08   -0.19   -0.39   -0.68   -1.02   -1.32   -1.48   -1.44   -1.22   -0.89   -0.55   -0.28   -0.03    0.32    0.90    1.77    2.71
+   110.0    0.00   -0.04   -0.09   -0.19   -0.39   -0.69   -1.05   -1.37   -1.56   -1.55   -1.35   -1.03   -0.68   -0.36   -0.05    0.38    1.06    2.03    3.05
+   115.0    0.00   -0.04   -0.09   -0.19   -0.39   -0.69   -1.06   -1.40   -1.62   -1.65   -1.48   -1.17   -0.82   -0.48   -0.12    0.38    1.15    2.22    3.33
+   120.0    0.00   -0.04   -0.08   -0.19   -0.38   -0.69   -1.07   -1.42   -1.67   -1.72   -1.58   -1.30   -0.96   -0.61   -0.23    0.32    1.17    2.33    3.52
+   125.0    0.00   -0.04   -0.08   -0.18   -0.37   -0.68   -1.06   -1.43   -1.70   -1.78   -1.67   -1.41   -1.09   -0.75   -0.36    0.21    1.10    2.33    3.60
+   130.0    0.00   -0.04   -0.08   -0.17   -0.36   -0.67   -1.05   -1.43   -1.71   -1.81   -1.72   -1.49   -1.19   -0.87   -0.50    0.07    0.98    2.24    3.55
+   135.0    0.00   -0.04   -0.07   -0.16   -0.34   -0.65   -1.03   -1.42   -1.71   -1.82   -1.75   -1.53   -1.26   -0.97   -0.63   -0.09    0.80    2.06    3.39
+   140.0    0.00   -0.03   -0.06   -0.14   -0.32   -0.62   -1.01   -1.40   -1.70   -1.81   -1.75   -1.55   -1.30   -1.04   -0.74   -0.24    0.61    1.83    3.13
+   145.0    0.00   -0.03   -0.05   -0.13   -0.30   -0.60   -0.99   -1.38   -1.67   -1.78   -1.72   -1.53   -1.30   -1.07   -0.81   -0.37    0.42    1.58    2.82
+   150.0    0.00   -0.03   -0.05   -0.11   -0.28   -0.57   -0.95   -1.34   -1.62   -1.73   -1.67   -1.48   -1.26   -1.07   -0.85   -0.45    0.27    1.35    2.50
+   155.0    0.00   -0.02   -0.04   -0.09   -0.26   -0.54   -0.92   -1.30   -1.57   -1.67   -1.60   -1.41   -1.21   -1.03   -0.84   -0.49    0.16    1.15    2.22
+   160.0    0.00   -0.02   -0.03   -0.08   -0.24   -0.52   -0.89   -1.25   -1.51   -1.60   -1.51   -1.33   -1.13   -0.97   -0.80   -0.48    0.12    1.03    2.00
+   165.0    0.00   -0.02   -0.02   -0.06   -0.22   -0.49   -0.85   -1.21   -1.45   -1.52   -1.42   -1.23   -1.04   -0.89   -0.73   -0.43    0.14    0.99    1.87
+   170.0    0.00   -0.01   -0.01   -0.05   -0.20   -0.47   -0.82   -1.16   -1.38   -1.43   -1.32   -1.13   -0.94   -0.79   -0.63   -0.33    0.22    1.02    1.83
+   175.0    0.00   -0.01    0.00   -0.04   -0.18   -0.45   -0.79   -1.11   -1.32   -1.35   -1.23   -1.03   -0.84   -0.69   -0.52   -0.21    0.35    1.12    1.90
+   180.0    0.00   -0.01    0.01   -0.03   -0.17   -0.43   -0.77   -1.07   -1.25   -1.26   -1.13   -0.93   -0.74   -0.59   -0.41   -0.08    0.50    1.27    2.03
+   185.0    0.00    0.00    0.01   -0.02   -0.16   -0.42   -0.74   -1.03   -1.20   -1.18   -1.04   -0.83   -0.65   -0.50   -0.31    0.05    0.65    1.44    2.19
+   190.0    0.00    0.00    0.02   -0.01   -0.15   -0.41   -0.73   -1.00   -1.14   -1.11   -0.94   -0.74   -0.56   -0.41   -0.21    0.16    0.79    1.59    2.37
+   195.0    0.00    0.00    0.02   -0.01   -0.15   -0.40   -0.71   -0.97   -1.09   -1.04   -0.86   -0.64   -0.47   -0.33   -0.13    0.25    0.89    1.71    2.51
+   200.0    0.00    0.01    0.03    0.00   -0.14   -0.40   -0.70   -0.95   -1.04   -0.97   -0.77   -0.56   -0.39   -0.27   -0.08    0.30    0.95    1.78    2.60
+   205.0    0.00    0.01    0.03    0.00   -0.14   -0.39   -0.69   -0.92   -1.00   -0.90   -0.70   -0.48   -0.33   -0.23   -0.06    0.32    0.96    1.79    2.62
+   210.0    0.00    0.01    0.04    0.01   -0.14   -0.39   -0.67   -0.89   -0.95   -0.84   -0.63   -0.42   -0.28   -0.20   -0.06    0.29    0.91    1.73    2.57
+   215.0    0.00    0.01    0.04    0.01   -0.13   -0.38   -0.66   -0.86   -0.90   -0.78   -0.57   -0.37   -0.26   -0.21   -0.10    0.22    0.82    1.63    2.46
+   220.0    0.00    0.02    0.04    0.01   -0.13   -0.37   -0.63   -0.82   -0.86   -0.73   -0.52   -0.34   -0.26   -0.24   -0.17    0.12    0.70    1.48    2.32
+   225.0    0.00    0.02    0.05    0.02   -0.12   -0.35   -0.61   -0.79   -0.81   -0.69   -0.49   -0.34   -0.29   -0.31   -0.27    0.00    0.55    1.33    2.16
+   230.0    0.00    0.02    0.05    0.02   -0.11   -0.33   -0.58   -0.74   -0.77   -0.66   -0.48   -0.36   -0.35   -0.41   -0.39   -0.15    0.40    1.17    2.02
+   235.0    0.00    0.02    0.05    0.03   -0.10   -0.31   -0.54   -0.71   -0.73   -0.64   -0.50   -0.42   -0.44   -0.53   -0.53   -0.30    0.25    1.04    1.92
+   240.0    0.00    0.03    0.06    0.03   -0.09   -0.29   -0.51   -0.67   -0.71   -0.64   -0.54   -0.50   -0.56   -0.67   -0.69   -0.45    0.12    0.95    1.88
+   245.0    0.00    0.03    0.06    0.04   -0.07   -0.26   -0.48   -0.64   -0.70   -0.66   -0.60   -0.60   -0.69   -0.82   -0.84   -0.59    0.01    0.89    1.89
+   250.0    0.00    0.03    0.06    0.04   -0.06   -0.24   -0.46   -0.62   -0.70   -0.70   -0.68   -0.72   -0.84   -0.97   -0.98   -0.70   -0.06    0.88    1.97
+   255.0    0.00    0.03    0.07    0.05   -0.05   -0.23   -0.44   -0.62   -0.73   -0.76   -0.78   -0.85   -0.98   -1.10   -1.09   -0.78   -0.10    0.91    2.08
+   260.0    0.00    0.04    0.07    0.06   -0.04   -0.21   -0.43   -0.63   -0.77   -0.85   -0.90   -0.99   -1.11   -1.21   -1.16   -0.82   -0.10    0.97    2.23
+   265.0    0.00    0.04    0.07    0.06   -0.03   -0.21   -0.44   -0.66   -0.83   -0.95   -1.03   -1.12   -1.22   -1.28   -1.19   -0.81   -0.06    1.05    2.38
+   270.0    0.00    0.04    0.08    0.07   -0.02   -0.21   -0.45   -0.70   -0.91   -1.06   -1.16   -1.24   -1.30   -1.31   -1.17   -0.76    0.01    1.15    2.52
+   275.0    0.00    0.04    0.08    0.07   -0.02   -0.21   -0.47   -0.75   -1.00   -1.18   -1.29   -1.34   -1.35   -1.30   -1.11   -0.67    0.11    1.25    2.64
+   280.0    0.00    0.04    0.08    0.08   -0.01   -0.21   -0.50   -0.81   -1.10   -1.30   -1.40   -1.42   -1.37   -1.25   -1.01   -0.55    0.23    1.35    2.74
+   285.0    0.00    0.05    0.09    0.08   -0.01   -0.22   -0.53   -0.87   -1.19   -1.41   -1.51   -1.48   -1.37   -1.18   -0.88   -0.40    0.36    1.45    2.80
+   290.0    0.00    0.05    0.09    0.09   -0.01   -0.23   -0.56   -0.93   -1.27   -1.51   -1.59   -1.53   -1.34   -1.08   -0.73   -0.24    0.49    1.54    2.85
+   295.0    0.00    0.05    0.10    0.10   -0.01   -0.24   -0.58   -0.98   -1.34   -1.59   -1.65   -1.55   -1.30   -0.98   -0.59   -0.09    0.62    1.62    2.87
+   300.0    0.00    0.05    0.10    0.10    0.00   -0.24   -0.60   -1.02   -1.40   -1.64   -1.70   -1.55   -1.25   -0.88   -0.45    0.05    0.73    1.68    2.88
+   305.0    0.00    0.05    0.11    0.11    0.00   -0.24   -0.61   -1.04   -1.43   -1.68   -1.72   -1.54   -1.20   -0.79   -0.34    0.16    0.81    1.72    2.89
+   310.0    0.00    0.06    0.11    0.12    0.01   -0.24   -0.62   -1.06   -1.45   -1.70   -1.72   -1.52   -1.15   -0.71   -0.26    0.23    0.85    1.74    2.88
+   315.0    0.00    0.06    0.12    0.12    0.02   -0.23   -0.62   -1.06   -1.46   -1.69   -1.70   -1.48   -1.10   -0.66   -0.21    0.26    0.86    1.72    2.87
+   320.0    0.00    0.06    0.12    0.13    0.03   -0.23   -0.61   -1.06   -1.45   -1.67   -1.67   -1.44   -1.05   -0.61   -0.18    0.26    0.82    1.67    2.83
+   325.0    0.00    0.06    0.13    0.14    0.03   -0.22   -0.61   -1.05   -1.43   -1.65   -1.63   -1.39   -1.00   -0.58   -0.17    0.23    0.76    1.58    2.76
+   330.0    0.00    0.06    0.13    0.15    0.04   -0.21   -0.60   -1.04   -1.41   -1.61   -1.58   -1.33   -0.95   -0.54   -0.17    0.19    0.67    1.46    2.65
+   335.0    0.00    0.06    0.13    0.15    0.05   -0.21   -0.60   -1.03   -1.39   -1.58   -1.53   -1.28   -0.90   -0.51   -0.17    0.15    0.58    1.32    2.50
+   340.0    0.00    0.06    0.13    0.16    0.05   -0.20   -0.59   -1.02   -1.37   -1.54   -1.48   -1.22   -0.84   -0.46   -0.15    0.12    0.49    1.17    2.30
+   345.0    0.00    0.06    0.14    0.16    0.06   -0.20   -0.59   -1.02   -1.36   -1.51   -1.43   -1.16   -0.78   -0.41   -0.12    0.12    0.43    1.02    2.08
+   350.0    0.00    0.06    0.14    0.16    0.06   -0.20   -0.59   -1.01   -1.34   -1.48   -1.39   -1.10   -0.72   -0.35   -0.07    0.14    0.40    0.90    1.84
+   355.0    0.00    0.06    0.14    0.16    0.06   -0.20   -0.59   -1.00   -1.33   -1.45   -1.35   -1.06   -0.67   -0.29   -0.01    0.20    0.42    0.82    1.62
+   360.0    0.00    0.06    0.13    0.16    0.06   -0.20   -0.58   -0.99   -1.30   -1.42   -1.31   -1.02   -0.63   -0.25    0.05    0.27    0.47    0.80    1.43
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.32     -1.27     85.01                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.03   -0.10   -0.19   -0.29   -0.43   -0.61   -0.86   -1.13   -1.31   -1.27   -0.94   -0.36    0.28    0.71    0.74    0.39    0.00    0.14
+     0.0    0.00   -0.10   -0.24   -0.42   -0.61   -0.80   -0.96   -1.08   -1.12   -1.03   -0.76   -0.29    0.33    0.92    1.27    1.17    0.67    0.14    0.34
+     5.0    0.00   -0.10   -0.24   -0.42   -0.62   -0.81   -0.97   -1.09   -1.13   -1.04   -0.76   -0.28    0.33    0.92    1.26    1.18    0.69    0.12    0.19
+    10.0    0.00   -0.10   -0.24   -0.42   -0.62   -0.82   -0.99   -1.11   -1.14   -1.05   -0.77   -0.29    0.32    0.90    1.25    1.19    0.71    0.11    0.04
+    15.0    0.00   -0.10   -0.24   -0.42   -0.62   -0.82   -1.00   -1.12   -1.17   -1.07   -0.80   -0.33    0.28    0.87    1.24    1.20    0.74    0.12   -0.08
+    20.0    0.00   -0.09   -0.24   -0.42   -0.62   -0.82   -1.00   -1.14   -1.20   -1.11   -0.85   -0.39    0.22    0.82    1.20    1.19    0.76    0.13   -0.18
+    25.0    0.00   -0.09   -0.23   -0.41   -0.61   -0.82   -1.01   -1.16   -1.24   -1.17   -0.93   -0.47    0.13    0.73    1.14    1.16    0.76    0.14   -0.24
+    30.0    0.00   -0.09   -0.23   -0.41   -0.61   -0.81   -1.01   -1.18   -1.28   -1.25   -1.03   -0.59    0.01    0.62    1.05    1.10    0.74    0.14   -0.27
+    35.0    0.00   -0.09   -0.23   -0.40   -0.60   -0.80   -1.01   -1.21   -1.34   -1.35   -1.16   -0.74   -0.14    0.48    0.93    1.01    0.69    0.13   -0.28
+    40.0    0.00   -0.09   -0.22   -0.39   -0.58   -0.79   -1.01   -1.23   -1.40   -1.45   -1.30   -0.90   -0.31    0.32    0.78    0.88    0.59    0.08   -0.27
+    45.0    0.00   -0.09   -0.22   -0.38   -0.56   -0.77   -1.00   -1.24   -1.46   -1.56   -1.45   -1.08   -0.50    0.14    0.61    0.72    0.45   -0.01   -0.28
+    50.0    0.00   -0.08   -0.21   -0.37   -0.54   -0.74   -0.98   -1.26   -1.51   -1.66   -1.60   -1.26   -0.69   -0.05    0.42    0.53    0.27   -0.14   -0.31
+    55.0    0.00   -0.08   -0.20   -0.35   -0.52   -0.71   -0.96   -1.26   -1.56   -1.76   -1.74   -1.42   -0.86   -0.23    0.22    0.32    0.05   -0.32   -0.37
+    60.0    0.00   -0.07   -0.19   -0.34   -0.49   -0.68   -0.93   -1.24   -1.58   -1.83   -1.85   -1.57   -1.02   -0.40    0.04    0.10   -0.18   -0.53   -0.48
+    65.0    0.00   -0.07   -0.19   -0.32   -0.46   -0.64   -0.88   -1.22   -1.59   -1.88   -1.94   -1.68   -1.15   -0.54   -0.13   -0.10   -0.42   -0.76   -0.62
+    70.0    0.00   -0.07   -0.18   -0.30   -0.43   -0.59   -0.83   -1.17   -1.57   -1.89   -1.99   -1.75   -1.24   -0.65   -0.26   -0.28   -0.64   -0.99   -0.79
+    75.0    0.00   -0.06   -0.16   -0.28   -0.40   -0.54   -0.77   -1.11   -1.52   -1.87   -1.99   -1.78   -1.28   -0.71   -0.35   -0.42   -0.83   -1.20   -0.96
+    80.0    0.00   -0.05   -0.15   -0.26   -0.36   -0.49   -0.70   -1.04   -1.45   -1.82   -1.96   -1.76   -1.28   -0.72   -0.39   -0.50   -0.96   -1.36   -1.11
+    85.0    0.00   -0.05   -0.14   -0.24   -0.32   -0.43   -0.63   -0.95   -1.36   -1.74   -1.89   -1.70   -1.23   -0.68   -0.38   -0.53   -1.03   -1.46   -1.22
+    90.0    0.00   -0.04   -0.13   -0.21   -0.29   -0.38   -0.55   -0.86   -1.26   -1.63   -1.78   -1.61   -1.14   -0.60   -0.32   -0.49   -1.02   -1.48   -1.25
+    95.0    0.00   -0.04   -0.11   -0.19   -0.25   -0.32   -0.48   -0.77   -1.15   -1.51   -1.66   -1.48   -1.01   -0.49   -0.21   -0.39   -0.94   -1.42   -1.19
+   100.0    0.00   -0.03   -0.10   -0.17   -0.21   -0.27   -0.41   -0.68   -1.04   -1.38   -1.52   -1.33   -0.86   -0.34   -0.06   -0.24   -0.80   -1.27   -1.05
+   105.0    0.00   -0.02   -0.08   -0.14   -0.18   -0.23   -0.35   -0.59   -0.94   -1.26   -1.38   -1.18   -0.70   -0.16    0.12   -0.06   -0.60   -1.06   -0.81
+   110.0    0.00   -0.01   -0.07   -0.12   -0.15   -0.18   -0.29   -0.52   -0.85   -1.14   -1.24   -1.02   -0.53    0.02    0.31    0.15   -0.37   -0.79   -0.51
+   115.0    0.00   -0.01   -0.05   -0.09   -0.12   -0.15   -0.25   -0.47   -0.77   -1.04   -1.11   -0.87   -0.36    0.20    0.51    0.37   -0.12   -0.50   -0.16
+   120.0    0.00    0.00   -0.04   -0.07   -0.09   -0.11   -0.21   -0.42   -0.71   -0.96   -1.00   -0.73   -0.20    0.37    0.69    0.58    0.13   -0.20    0.19
+   125.0    0.00    0.01   -0.02   -0.05   -0.06   -0.08   -0.18   -0.39   -0.67   -0.90   -0.92   -0.62   -0.07    0.52    0.86    0.77    0.36    0.07    0.52
+   130.0    0.00    0.01   -0.01   -0.02   -0.03   -0.06   -0.16   -0.37   -0.65   -0.86   -0.85   -0.54    0.04    0.64    1.00    0.94    0.56    0.31    0.80
+   135.0    0.00    0.02    0.01    0.00    0.00   -0.03   -0.14   -0.36   -0.63   -0.83   -0.81   -0.48    0.11    0.73    1.11    1.08    0.73    0.49    1.00
+   140.0    0.00    0.03    0.03    0.02    0.02   -0.01   -0.13   -0.35   -0.63   -0.83   -0.79   -0.45    0.15    0.79    1.19    1.18    0.85    0.63    1.10
+   145.0    0.00    0.03    0.04    0.04    0.05    0.01   -0.12   -0.35   -0.63   -0.83   -0.79   -0.44    0.16    0.81    1.23    1.25    0.94    0.70    1.11
+   150.0    0.00    0.04    0.05    0.06    0.07    0.03   -0.11   -0.35   -0.63   -0.84   -0.81   -0.46    0.14    0.80    1.24    1.29    1.00    0.74    1.04
+   155.0    0.00    0.04    0.06    0.08    0.09    0.04   -0.10   -0.35   -0.64   -0.85   -0.83   -0.50    0.10    0.76    1.22    1.30    1.04    0.73    0.91
+   160.0    0.00    0.05    0.07    0.09    0.10    0.05   -0.09   -0.35   -0.65   -0.87   -0.87   -0.55    0.03    0.69    1.18    1.30    1.05    0.71    0.73
+   165.0    0.00    0.05    0.08    0.11    0.11    0.06   -0.09   -0.35   -0.67   -0.90   -0.91   -0.61   -0.05    0.61    1.12    1.28    1.06    0.68    0.54
+   170.0    0.00    0.05    0.09    0.11    0.12    0.06   -0.10   -0.37   -0.68   -0.92   -0.95   -0.68   -0.14    0.52    1.05    1.24    1.05    0.64    0.36
+   175.0    0.00    0.06    0.09    0.12    0.12    0.05   -0.11   -0.38   -0.70   -0.95   -0.99   -0.74   -0.22    0.42    0.96    1.20    1.03    0.60    0.21
+   180.0    0.00    0.06    0.09    0.11    0.11    0.04   -0.14   -0.41   -0.73   -0.98   -1.03   -0.80   -0.30    0.33    0.88    1.13    1.00    0.57    0.10
+   185.0    0.00    0.06    0.09    0.11    0.09    0.01   -0.17   -0.44   -0.76   -1.01   -1.07   -0.85   -0.37    0.25    0.79    1.06    0.95    0.53    0.02
+   190.0    0.00    0.06    0.09    0.10    0.07   -0.02   -0.21   -0.49   -0.80   -1.04   -1.10   -0.89   -0.43    0.17    0.70    0.97    0.88    0.47   -0.02
+   195.0    0.00    0.05    0.08    0.08    0.05   -0.06   -0.25   -0.53   -0.84   -1.08   -1.13   -0.92   -0.47    0.10    0.61    0.87    0.78    0.40   -0.05
+   200.0    0.00    0.05    0.07    0.07    0.02   -0.10   -0.30   -0.58   -0.88   -1.11   -1.15   -0.94   -0.50    0.04    0.52    0.75    0.65    0.31   -0.07
+   205.0    0.00    0.05    0.06    0.05   -0.01   -0.14   -0.35   -0.63   -0.92   -1.14   -1.17   -0.96   -0.53   -0.01    0.43    0.62    0.51    0.18   -0.10
+   210.0    0.00    0.05    0.05    0.03   -0.04   -0.18   -0.39   -0.67   -0.96   -1.17   -1.19   -0.98   -0.56   -0.06    0.34    0.48    0.34    0.04   -0.14
+   215.0    0.00    0.04    0.04    0.01   -0.07   -0.21   -0.43   -0.71   -0.99   -1.20   -1.22   -1.01   -0.59   -0.12    0.25    0.35    0.17   -0.13   -0.21
+   220.0    0.00    0.04    0.03   -0.02   -0.10   -0.25   -0.46   -0.74   -1.02   -1.23   -1.25   -1.04   -0.63   -0.17    0.16    0.21   -0.01   -0.30   -0.30
+   225.0    0.00    0.03    0.02   -0.04   -0.13   -0.27   -0.49   -0.76   -1.05   -1.26   -1.29   -1.09   -0.69   -0.23    0.08    0.09   -0.16   -0.46   -0.40
+   230.0    0.00    0.03    0.00   -0.06   -0.16   -0.30   -0.50   -0.78   -1.07   -1.30   -1.34   -1.15   -0.75   -0.30    0.00   -0.01   -0.30   -0.60   -0.50
+   235.0    0.00    0.02   -0.01   -0.08   -0.18   -0.31   -0.51   -0.79   -1.09   -1.34   -1.40   -1.22   -0.82   -0.36   -0.06   -0.08   -0.39   -0.72   -0.58
+   240.0    0.00    0.01   -0.03   -0.10   -0.20   -0.33   -0.52   -0.80   -1.12   -1.38   -1.47   -1.30   -0.90   -0.42   -0.10   -0.12   -0.45   -0.79   -0.64
+   245.0    0.00    0.01   -0.04   -0.12   -0.22   -0.34   -0.53   -0.81   -1.14   -1.43   -1.55   -1.39   -0.97   -0.47   -0.12   -0.13   -0.46   -0.81   -0.66
+   250.0    0.00    0.00   -0.06   -0.14   -0.24   -0.36   -0.54   -0.82   -1.17   -1.49   -1.63   -1.47   -1.04   -0.50   -0.12   -0.10   -0.44   -0.80   -0.64
+   255.0    0.00   -0.01   -0.07   -0.16   -0.26   -0.37   -0.56   -0.85   -1.21   -1.55   -1.70   -1.54   -1.08   -0.50   -0.08   -0.04   -0.38   -0.74   -0.58
+   260.0    0.00   -0.01   -0.08   -0.18   -0.28   -0.39   -0.58   -0.87   -1.25   -1.60   -1.76   -1.59   -1.09   -0.47   -0.01    0.05   -0.28   -0.66   -0.49
+   265.0    0.00   -0.02   -0.10   -0.20   -0.30   -0.41   -0.60   -0.91   -1.30   -1.65   -1.80   -1.61   -1.08   -0.41    0.09    0.16   -0.18   -0.55   -0.38
+   270.0    0.00   -0.03   -0.11   -0.21   -0.32   -0.44   -0.63   -0.94   -1.34   -1.69   -1.83   -1.60   -1.02   -0.31    0.21    0.29   -0.06   -0.44   -0.25
+   275.0    0.00   -0.03   -0.12   -0.23   -0.34   -0.47   -0.67   -0.98   -1.37   -1.72   -1.82   -1.56   -0.93   -0.18    0.36    0.44    0.07   -0.34   -0.13
+   280.0    0.00   -0.04   -0.13   -0.25   -0.37   -0.50   -0.70   -1.02   -1.40   -1.72   -1.80   -1.48   -0.82   -0.03    0.53    0.59    0.19   -0.24   -0.02
+   285.0    0.00   -0.04   -0.15   -0.27   -0.39   -0.53   -0.74   -1.05   -1.42   -1.71   -1.74   -1.38   -0.67    0.14    0.69    0.73    0.30   -0.16    0.08
+   290.0    0.00   -0.05   -0.16   -0.29   -0.41   -0.56   -0.77   -1.07   -1.42   -1.68   -1.67   -1.26   -0.52    0.31    0.86    0.87    0.39   -0.09    0.16
+   295.0    0.00   -0.06   -0.17   -0.30   -0.44   -0.59   -0.80   -1.09   -1.41   -1.63   -1.58   -1.13   -0.36    0.48    1.02    0.99    0.48   -0.03    0.23
+   300.0    0.00   -0.06   -0.18   -0.32   -0.46   -0.61   -0.82   -1.10   -1.39   -1.57   -1.48   -1.00   -0.21    0.63    1.15    1.10    0.55    0.01    0.29
+   305.0    0.00   -0.07   -0.19   -0.33   -0.48   -0.64   -0.84   -1.10   -1.36   -1.51   -1.37   -0.87   -0.07    0.76    1.26    1.18    0.61    0.05    0.35
+   310.0    0.00   -0.07   -0.19   -0.34   -0.50   -0.66   -0.85   -1.09   -1.32   -1.43   -1.27   -0.75    0.05    0.86    1.34    1.25    0.65    0.09    0.41
+   315.0    0.00   -0.07   -0.20   -0.35   -0.51   -0.67   -0.86   -1.08   -1.28   -1.36   -1.18   -0.65    0.14    0.93    1.39    1.28    0.69    0.13    0.48
+   320.0    0.00   -0.08   -0.21   -0.36   -0.53   -0.69   -0.87   -1.07   -1.24   -1.29   -1.09   -0.57    0.20    0.97    1.42    1.30    0.71    0.16    0.55
+   325.0    0.00   -0.08   -0.21   -0.37   -0.54   -0.70   -0.87   -1.06   -1.21   -1.23   -1.02   -0.50    0.25    0.99    1.42    1.30    0.72    0.19    0.62
+   330.0    0.00   -0.08   -0.22   -0.38   -0.55   -0.72   -0.88   -1.05   -1.18   -1.18   -0.96   -0.45    0.27    0.99    1.40    1.28    0.72    0.21    0.67
+   335.0    0.00   -0.09   -0.22   -0.39   -0.56   -0.73   -0.89   -1.04   -1.15   -1.14   -0.91   -0.41    0.29    0.98    1.37    1.26    0.71    0.22    0.70
+   340.0    0.00   -0.09   -0.23   -0.40   -0.58   -0.75   -0.90   -1.04   -1.14   -1.11   -0.87   -0.38    0.30    0.96    1.34    1.23    0.70    0.22    0.70
+   345.0    0.00   -0.09   -0.23   -0.40   -0.59   -0.76   -0.92   -1.05   -1.13   -1.08   -0.83   -0.35    0.31    0.95    1.31    1.20    0.68    0.21    0.66
+   350.0    0.00   -0.09   -0.23   -0.41   -0.60   -0.77   -0.93   -1.06   -1.12   -1.06   -0.80   -0.33    0.31    0.94    1.29    1.18    0.67    0.19    0.59
+   355.0    0.00   -0.09   -0.24   -0.41   -0.60   -0.79   -0.95   -1.07   -1.12   -1.04   -0.78   -0.30    0.32    0.93    1.27    1.17    0.67    0.17    0.47
+   360.0    0.00   -0.10   -0.24   -0.42   -0.61   -0.80   -0.96   -1.08   -1.12   -1.03   -0.76   -0.29    0.33    0.92    1.27    1.17    0.67    0.14    0.34
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+LEIAX1202       NONE                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH              15    06-NOV-06 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+      1.45     -0.20     64.33                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.02   -0.09   -0.17   -0.26   -0.35   -0.43   -0.52   -0.62   -0.74   -0.86   -0.95   -0.93   -0.77   -0.44    0.03    0.54    0.98    1.23
+     0.0    0.00   -0.03   -0.12   -0.23   -0.36   -0.48   -0.58   -0.66   -0.73   -0.78   -0.81   -0.80   -0.73   -0.57   -0.29    0.13    0.65    1.17    1.51
+     5.0    0.00   -0.03   -0.12   -0.23   -0.36   -0.48   -0.59   -0.68   -0.75   -0.81   -0.84   -0.83   -0.75   -0.57   -0.26    0.18    0.70    1.20    1.52
+    10.0    0.00   -0.03   -0.12   -0.23   -0.36   -0.48   -0.59   -0.69   -0.78   -0.84   -0.87   -0.86   -0.76   -0.56   -0.22    0.23    0.76    1.24    1.53
+    15.0    0.00   -0.04   -0.12   -0.23   -0.36   -0.48   -0.60   -0.71   -0.80   -0.87   -0.91   -0.89   -0.78   -0.55   -0.19    0.29    0.82    1.30    1.58
+    20.0    0.00   -0.04   -0.12   -0.23   -0.36   -0.48   -0.60   -0.72   -0.82   -0.90   -0.95   -0.93   -0.81   -0.55   -0.16    0.35    0.89    1.37    1.65
+    25.0    0.00   -0.03   -0.12   -0.23   -0.35   -0.48   -0.60   -0.72   -0.83   -0.93   -0.99   -0.97   -0.85   -0.57   -0.15    0.39    0.97    1.46    1.74
+    30.0    0.00   -0.03   -0.12   -0.23   -0.35   -0.48   -0.60   -0.72   -0.84   -0.95   -1.03   -1.03   -0.90   -0.61   -0.16    0.42    1.03    1.55    1.85
+    35.0    0.00   -0.03   -0.11   -0.22   -0.34   -0.47   -0.59   -0.71   -0.84   -0.97   -1.06   -1.08   -0.97   -0.68   -0.20    0.42    1.08    1.63    1.95
+    40.0    0.00   -0.03   -0.11   -0.22   -0.34   -0.45   -0.57   -0.69   -0.83   -0.98   -1.10   -1.14   -1.05   -0.76   -0.26    0.40    1.10    1.69    2.03
+    45.0    0.00   -0.03   -0.11   -0.21   -0.33   -0.44   -0.55   -0.67   -0.81   -0.98   -1.13   -1.21   -1.13   -0.85   -0.34    0.35    1.08    1.71    2.07
+    50.0    0.00   -0.03   -0.11   -0.21   -0.32   -0.42   -0.53   -0.64   -0.79   -0.97   -1.15   -1.26   -1.22   -0.96   -0.44    0.26    1.03    1.68    2.06
+    55.0    0.00   -0.03   -0.10   -0.20   -0.31   -0.40   -0.50   -0.61   -0.76   -0.96   -1.16   -1.31   -1.30   -1.06   -0.56    0.15    0.93    1.59    1.99
+    60.0    0.00   -0.03   -0.10   -0.20   -0.30   -0.39   -0.47   -0.58   -0.73   -0.94   -1.17   -1.34   -1.37   -1.16   -0.68    0.02    0.79    1.45    1.84
+    65.0    0.00   -0.03   -0.10   -0.19   -0.28   -0.37   -0.45   -0.55   -0.70   -0.91   -1.16   -1.36   -1.42   -1.25   -0.80   -0.13    0.62    1.26    1.64
+    70.0    0.00   -0.03   -0.10   -0.18   -0.27   -0.35   -0.42   -0.52   -0.66   -0.88   -1.14   -1.36   -1.45   -1.32   -0.91   -0.28    0.43    1.03    1.39
+    75.0    0.00   -0.03   -0.09   -0.18   -0.26   -0.33   -0.40   -0.49   -0.63   -0.84   -1.11   -1.35   -1.46   -1.36   -0.99   -0.42    0.23    0.79    1.11
+    80.0    0.00   -0.03   -0.09   -0.17   -0.26   -0.32   -0.38   -0.46   -0.60   -0.81   -1.07   -1.31   -1.44   -1.37   -1.05   -0.54    0.06    0.56    0.84
+    85.0    0.00   -0.03   -0.09   -0.17   -0.25   -0.31   -0.36   -0.44   -0.56   -0.76   -1.02   -1.26   -1.41   -1.36   -1.08   -0.62   -0.08    0.36    0.60
+    90.0    0.00   -0.02   -0.09   -0.16   -0.24   -0.30   -0.35   -0.42   -0.53   -0.72   -0.96   -1.20   -1.35   -1.32   -1.08   -0.66   -0.17    0.22    0.41
+    95.0    0.00   -0.02   -0.08   -0.16   -0.23   -0.29   -0.34   -0.40   -0.50   -0.68   -0.91   -1.13   -1.28   -1.26   -1.04   -0.65   -0.20    0.16    0.31
+   100.0    0.00   -0.02   -0.08   -0.16   -0.23   -0.28   -0.32   -0.38   -0.47   -0.63   -0.85   -1.06   -1.20   -1.17   -0.96   -0.59   -0.16    0.18    0.29
+   105.0    0.00   -0.02   -0.08   -0.15   -0.23   -0.28   -0.31   -0.36   -0.44   -0.59   -0.79   -0.99   -1.11   -1.08   -0.86   -0.49   -0.06    0.27    0.37
+   110.0    0.00   -0.02   -0.08   -0.15   -0.22   -0.27   -0.30   -0.34   -0.42   -0.55   -0.73   -0.91   -1.02   -0.97   -0.74   -0.35    0.10    0.44    0.53
+   115.0    0.00   -0.02   -0.08   -0.15   -0.22   -0.27   -0.30   -0.33   -0.39   -0.51   -0.68   -0.84   -0.93   -0.86   -0.60   -0.18    0.29    0.66    0.75
+   120.0    0.00   -0.02   -0.08   -0.15   -0.21   -0.26   -0.29   -0.31   -0.37   -0.48   -0.63   -0.78   -0.85   -0.76   -0.47   -0.01    0.50    0.90    1.01
+   125.0    0.00   -0.02   -0.07   -0.15   -0.21   -0.26   -0.28   -0.30   -0.36   -0.46   -0.60   -0.73   -0.78   -0.66   -0.34    0.15    0.71    1.14    1.27
+   130.0    0.00   -0.02   -0.07   -0.15   -0.21   -0.26   -0.28   -0.30   -0.34   -0.44   -0.57   -0.69   -0.72   -0.58   -0.23    0.29    0.88    1.36    1.52
+   135.0    0.00   -0.02   -0.07   -0.15   -0.21   -0.26   -0.28   -0.30   -0.34   -0.43   -0.55   -0.66   -0.68   -0.52   -0.15    0.40    1.02    1.52    1.72
+   140.0    0.00   -0.02   -0.07   -0.15   -0.21   -0.26   -0.28   -0.30   -0.34   -0.43   -0.55   -0.65   -0.65   -0.48   -0.10    0.46    1.09    1.61    1.86
+   145.0    0.00   -0.02   -0.07   -0.15   -0.22   -0.26   -0.29   -0.31   -0.35   -0.44   -0.55   -0.65   -0.64   -0.47   -0.09    0.47    1.10    1.64    1.92
+   150.0    0.00   -0.02   -0.08   -0.15   -0.22   -0.27   -0.30   -0.32   -0.37   -0.46   -0.57   -0.66   -0.65   -0.48   -0.10    0.44    1.05    1.59    1.91
+   155.0    0.00   -0.02   -0.08   -0.15   -0.22   -0.28   -0.31   -0.34   -0.40   -0.49   -0.60   -0.69   -0.68   -0.51   -0.15    0.37    0.95    1.47    1.83
+   160.0    0.00   -0.02   -0.08   -0.16   -0.23   -0.29   -0.33   -0.37   -0.43   -0.52   -0.64   -0.73   -0.72   -0.56   -0.22    0.27    0.82    1.32    1.69
+   165.0    0.00   -0.02   -0.08   -0.16   -0.24   -0.30   -0.34   -0.39   -0.46   -0.56   -0.69   -0.78   -0.78   -0.62   -0.30    0.16    0.67    1.14    1.52
+   170.0    0.00   -0.02   -0.08   -0.16   -0.24   -0.31   -0.36   -0.41   -0.49   -0.60   -0.73   -0.83   -0.84   -0.69   -0.39    0.04    0.51    0.96    1.33
+   175.0    0.00   -0.02   -0.08   -0.17   -0.25   -0.32   -0.38   -0.44   -0.52   -0.64   -0.78   -0.88   -0.89   -0.76   -0.47   -0.07    0.38    0.79    1.15
+   180.0    0.00   -0.02   -0.08   -0.17   -0.26   -0.33   -0.39   -0.46   -0.55   -0.67   -0.82   -0.93   -0.94   -0.82   -0.54   -0.15    0.27    0.66    0.99
+   185.0    0.00   -0.02   -0.08   -0.17   -0.26   -0.34   -0.40   -0.47   -0.57   -0.70   -0.85   -0.96   -0.98   -0.87   -0.59   -0.21    0.20    0.56    0.86
+   190.0    0.00   -0.02   -0.08   -0.17   -0.27   -0.35   -0.41   -0.49   -0.58   -0.72   -0.86   -0.98   -1.01   -0.89   -0.62   -0.24    0.17    0.51    0.77
+   195.0    0.00   -0.02   -0.08   -0.17   -0.27   -0.35   -0.42   -0.49   -0.59   -0.72   -0.87   -0.99   -1.01   -0.90   -0.62   -0.24    0.17    0.50    0.72
+   200.0    0.00   -0.02   -0.08   -0.17   -0.27   -0.35   -0.42   -0.49   -0.59   -0.72   -0.86   -0.98   -1.00   -0.89   -0.61   -0.22    0.20    0.53    0.71
+   205.0    0.00   -0.02   -0.08   -0.17   -0.27   -0.35   -0.42   -0.49   -0.59   -0.71   -0.85   -0.96   -0.98   -0.86   -0.58   -0.18    0.24    0.57    0.73
+   210.0    0.00   -0.02   -0.08   -0.17   -0.27   -0.35   -0.42   -0.49   -0.58   -0.69   -0.83   -0.93   -0.95   -0.82   -0.54   -0.14    0.30    0.63    0.77
+   215.0    0.00   -0.02   -0.08   -0.17   -0.26   -0.34   -0.41   -0.48   -0.56   -0.68   -0.80   -0.90   -0.91   -0.79   -0.50   -0.09    0.35    0.69    0.82
+   220.0    0.00   -0.02   -0.08   -0.16   -0.25   -0.33   -0.40   -0.47   -0.55   -0.66   -0.78   -0.87   -0.88   -0.76   -0.48   -0.06    0.38    0.74    0.88
+   225.0    0.00   -0.02   -0.08   -0.16   -0.24   -0.32   -0.39   -0.45   -0.54   -0.65   -0.77   -0.86   -0.87   -0.74   -0.46   -0.05    0.41    0.78    0.94
+   230.0    0.00   -0.02   -0.07   -0.15   -0.23   -0.31   -0.37   -0.44   -0.53   -0.64   -0.76   -0.86   -0.87   -0.74   -0.46   -0.05    0.42    0.81    0.99
+   235.0    0.00   -0.02   -0.07   -0.14   -0.22   -0.29   -0.36   -0.43   -0.53   -0.65   -0.78   -0.87   -0.88   -0.76   -0.48   -0.06    0.41    0.82    1.03
+   240.0    0.00   -0.02   -0.07   -0.14   -0.21   -0.28   -0.34   -0.42   -0.53   -0.66   -0.80   -0.91   -0.92   -0.80   -0.51   -0.09    0.39    0.82    1.06
+   245.0    0.00   -0.02   -0.07   -0.13   -0.20   -0.26   -0.33   -0.42   -0.54   -0.69   -0.84   -0.95   -0.97   -0.84   -0.55   -0.12    0.37    0.81    1.07
+   250.0    0.00   -0.02   -0.06   -0.13   -0.19   -0.25   -0.32   -0.42   -0.55   -0.72   -0.88   -1.01   -1.03   -0.89   -0.59   -0.16    0.34    0.79    1.07
+   255.0    0.00   -0.01   -0.06   -0.12   -0.18   -0.24   -0.32   -0.42   -0.57   -0.75   -0.94   -1.07   -1.08   -0.94   -0.63   -0.18    0.32    0.77    1.05
+   260.0    0.00   -0.02   -0.06   -0.12   -0.18   -0.24   -0.32   -0.43   -0.59   -0.79   -0.98   -1.12   -1.13   -0.98   -0.65   -0.19    0.31    0.75    1.02
+   265.0    0.00   -0.02   -0.06   -0.12   -0.18   -0.24   -0.33   -0.45   -0.62   -0.83   -1.03   -1.16   -1.16   -0.99   -0.65   -0.19    0.30    0.72    0.98
+   270.0    0.00   -0.02   -0.06   -0.12   -0.18   -0.25   -0.34   -0.47   -0.65   -0.86   -1.06   -1.18   -1.16   -0.98   -0.63   -0.17    0.31    0.70    0.93
+   275.0    0.00   -0.02   -0.06   -0.12   -0.19   -0.26   -0.36   -0.50   -0.68   -0.88   -1.07   -1.17   -1.14   -0.94   -0.59   -0.14    0.32    0.67    0.87
+   280.0    0.00   -0.02   -0.06   -0.13   -0.20   -0.28   -0.38   -0.52   -0.70   -0.90   -1.07   -1.15   -1.09   -0.88   -0.52   -0.09    0.33    0.65    0.82
+   285.0    0.00   -0.02   -0.07   -0.13   -0.21   -0.30   -0.41   -0.55   -0.73   -0.91   -1.05   -1.10   -1.02   -0.80   -0.45   -0.04    0.35    0.63    0.77
+   290.0    0.00   -0.02   -0.07   -0.14   -0.22   -0.32   -0.44   -0.58   -0.74   -0.90   -1.01   -1.04   -0.93   -0.70   -0.37    0.01    0.37    0.62    0.75
+   295.0    0.00   -0.02   -0.07   -0.15   -0.24   -0.35   -0.47   -0.61   -0.76   -0.89   -0.97   -0.96   -0.84   -0.61   -0.29    0.06    0.38    0.62    0.74
+   300.0    0.00   -0.02   -0.08   -0.16   -0.26   -0.37   -0.50   -0.63   -0.76   -0.87   -0.91   -0.88   -0.74   -0.52   -0.22    0.10    0.40    0.63    0.76
+   305.0    0.00   -0.02   -0.08   -0.17   -0.27   -0.39   -0.52   -0.65   -0.76   -0.84   -0.86   -0.80   -0.66   -0.44   -0.17    0.13    0.41    0.65    0.82
+   310.0    0.00   -0.02   -0.09   -0.18   -0.29   -0.41   -0.54   -0.66   -0.75   -0.81   -0.81   -0.73   -0.59   -0.39   -0.14    0.14    0.43    0.69    0.89
+   315.0    0.00   -0.02   -0.09   -0.19   -0.30   -0.43   -0.55   -0.66   -0.74   -0.78   -0.76   -0.68   -0.55   -0.36   -0.13    0.14    0.44    0.75    0.99
+   320.0    0.00   -0.03   -0.09   -0.20   -0.32   -0.44   -0.56   -0.66   -0.73   -0.75   -0.73   -0.65   -0.53   -0.36   -0.14    0.13    0.46    0.81    1.10
+   325.0    0.00   -0.03   -0.10   -0.20   -0.33   -0.45   -0.57   -0.66   -0.72   -0.73   -0.70   -0.64   -0.53   -0.38   -0.17    0.11    0.48    0.88    1.21
+   330.0    0.00   -0.03   -0.10   -0.21   -0.33   -0.46   -0.57   -0.65   -0.70   -0.71   -0.69   -0.64   -0.55   -0.42   -0.21    0.09    0.49    0.94    1.31
+   335.0    0.00   -0.03   -0.11   -0.22   -0.34   -0.46   -0.57   -0.65   -0.69   -0.71   -0.69   -0.65   -0.58   -0.46   -0.25    0.08    0.51    1.00    1.40
+   340.0    0.00   -0.03   -0.11   -0.22   -0.34   -0.47   -0.57   -0.64   -0.69   -0.71   -0.70   -0.68   -0.62   -0.50   -0.28    0.06    0.54    1.06    1.46
+   345.0    0.00   -0.03   -0.11   -0.22   -0.35   -0.47   -0.57   -0.64   -0.69   -0.71   -0.72   -0.71   -0.66   -0.54   -0.31    0.06    0.56    1.10    1.50
+   350.0    0.00   -0.03   -0.11   -0.23   -0.35   -0.47   -0.57   -0.64   -0.70   -0.73   -0.74   -0.74   -0.69   -0.56   -0.32    0.07    0.58    1.13    1.52
+   355.0    0.00   -0.03   -0.12   -0.23   -0.35   -0.47   -0.57   -0.65   -0.71   -0.75   -0.77   -0.77   -0.71   -0.57   -0.31    0.10    0.62    1.15    1.52
+   360.0    0.00   -0.03   -0.12   -0.23   -0.36   -0.48   -0.58   -0.66   -0.73   -0.78   -0.81   -0.80   -0.73   -0.57   -0.29    0.13    0.65    1.17    1.51
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.43      0.01     62.76                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.01   -0.06   -0.15   -0.30   -0.49   -0.66   -0.76   -0.75   -0.63   -0.43   -0.25   -0.13   -0.12   -0.14   -0.11    0.08    0.50    1.08
+     0.0    0.00   -0.07   -0.17   -0.30   -0.44   -0.56   -0.62   -0.60   -0.50   -0.33   -0.16   -0.04   -0.01   -0.07   -0.14   -0.10    0.15    0.60    1.06
+     5.0    0.00   -0.07   -0.17   -0.31   -0.45   -0.58   -0.65   -0.63   -0.53   -0.36   -0.18   -0.06   -0.03   -0.09   -0.16   -0.15    0.05    0.44    0.89
+    10.0    0.00   -0.07   -0.18   -0.32   -0.47   -0.61   -0.68   -0.67   -0.57   -0.39   -0.21   -0.08   -0.05   -0.09   -0.18   -0.19   -0.05    0.28    0.74
+    15.0    0.00   -0.07   -0.18   -0.33   -0.49   -0.64   -0.72   -0.72   -0.62   -0.44   -0.25   -0.11   -0.06   -0.10   -0.19   -0.24   -0.15    0.14    0.63
+    20.0    0.00   -0.07   -0.19   -0.33   -0.51   -0.66   -0.77   -0.77   -0.68   -0.50   -0.30   -0.14   -0.08   -0.11   -0.22   -0.30   -0.25    0.02    0.55
+    25.0    0.00   -0.07   -0.19   -0.34   -0.52   -0.69   -0.81   -0.83   -0.74   -0.56   -0.35   -0.18   -0.10   -0.13   -0.24   -0.35   -0.33   -0.08    0.51
+    30.0    0.00   -0.07   -0.18   -0.34   -0.53   -0.72   -0.86   -0.90   -0.82   -0.63   -0.41   -0.22   -0.12   -0.15   -0.27   -0.40   -0.40   -0.15    0.50
+    35.0    0.00   -0.07   -0.18   -0.34   -0.53   -0.74   -0.89   -0.95   -0.88   -0.70   -0.47   -0.26   -0.15   -0.17   -0.30   -0.44   -0.46   -0.20    0.50
+    40.0    0.00   -0.07   -0.18   -0.33   -0.53   -0.75   -0.93   -1.00   -0.95   -0.77   -0.53   -0.31   -0.19   -0.20   -0.33   -0.48   -0.50   -0.22    0.52
+    45.0    0.00   -0.07   -0.17   -0.32   -0.53   -0.75   -0.95   -1.04   -1.00   -0.83   -0.59   -0.36   -0.23   -0.24   -0.36   -0.50   -0.51   -0.22    0.55
+    50.0    0.00   -0.06   -0.16   -0.31   -0.52   -0.75   -0.96   -1.07   -1.05   -0.89   -0.64   -0.41   -0.27   -0.28   -0.39   -0.52   -0.51   -0.20    0.57
+    55.0    0.00   -0.06   -0.15   -0.30   -0.50   -0.74   -0.96   -1.09   -1.08   -0.93   -0.69   -0.45   -0.31   -0.31   -0.42   -0.52   -0.49   -0.17    0.58
+    60.0    0.00   -0.06   -0.14   -0.28   -0.48   -0.72   -0.94   -1.09   -1.09   -0.95   -0.72   -0.49   -0.35   -0.34   -0.43   -0.52   -0.46   -0.13    0.58
+    65.0    0.00   -0.05   -0.13   -0.26   -0.45   -0.69   -0.92   -1.07   -1.09   -0.96   -0.74   -0.52   -0.38   -0.37   -0.45   -0.51   -0.42   -0.08    0.59
+    70.0    0.00   -0.05   -0.12   -0.24   -0.42   -0.66   -0.89   -1.05   -1.08   -0.96   -0.74   -0.53   -0.40   -0.38   -0.45   -0.49   -0.37   -0.03    0.59
+    75.0    0.00   -0.04   -0.11   -0.22   -0.39   -0.62   -0.85   -1.02   -1.05   -0.94   -0.73   -0.53   -0.40   -0.39   -0.44   -0.46   -0.32    0.03    0.59
+    80.0    0.00   -0.04   -0.10   -0.20   -0.36   -0.58   -0.81   -0.98   -1.01   -0.91   -0.71   -0.51   -0.39   -0.38   -0.43   -0.43   -0.28    0.08    0.61
+    85.0    0.00   -0.03   -0.09   -0.18   -0.33   -0.55   -0.77   -0.93   -0.97   -0.87   -0.67   -0.47   -0.36   -0.35   -0.40   -0.40   -0.23    0.14    0.64
+    90.0    0.00   -0.03   -0.07   -0.16   -0.31   -0.51   -0.73   -0.89   -0.92   -0.82   -0.62   -0.42   -0.31   -0.31   -0.36   -0.35   -0.18    0.20    0.68
+    95.0    0.00   -0.02   -0.06   -0.14   -0.28   -0.48   -0.69   -0.84   -0.87   -0.76   -0.56   -0.36   -0.25   -0.26   -0.31   -0.31   -0.12    0.26    0.75
+   100.0    0.00   -0.02   -0.06   -0.13   -0.26   -0.46   -0.66   -0.80   -0.82   -0.71   -0.50   -0.30   -0.19   -0.19   -0.25   -0.25   -0.06    0.32    0.82
+   105.0    0.00   -0.02   -0.05   -0.12   -0.25   -0.43   -0.63   -0.76   -0.77   -0.65   -0.43   -0.23   -0.11   -0.11   -0.18   -0.18    0.00    0.39    0.90
+   110.0    0.00   -0.01   -0.04   -0.11   -0.24   -0.42   -0.60   -0.73   -0.73   -0.59   -0.37   -0.15   -0.03   -0.03   -0.10   -0.10    0.07    0.46    0.98
+   115.0    0.00   -0.01   -0.03   -0.10   -0.23   -0.40   -0.58   -0.69   -0.68   -0.54   -0.31   -0.08    0.05    0.05   -0.01   -0.02    0.15    0.54    1.06
+   120.0    0.00    0.00   -0.03   -0.10   -0.22   -0.39   -0.56   -0.67   -0.64   -0.49   -0.25   -0.02    0.12    0.14    0.08    0.07    0.23    0.61    1.13
+   125.0    0.00    0.00   -0.02   -0.09   -0.22   -0.38   -0.55   -0.64   -0.61   -0.44   -0.20    0.04    0.19    0.22    0.17    0.16    0.32    0.69    1.19
+   130.0    0.00    0.00   -0.02   -0.09   -0.21   -0.38   -0.54   -0.62   -0.58   -0.41   -0.15    0.09    0.25    0.29    0.25    0.25    0.40    0.75    1.24
+   135.0    0.00    0.01   -0.02   -0.09   -0.21   -0.37   -0.53   -0.60   -0.55   -0.38   -0.12    0.13    0.30    0.35    0.32    0.32    0.47    0.82    1.28
+   140.0    0.00    0.01   -0.01   -0.08   -0.21   -0.37   -0.52   -0.59   -0.53   -0.35   -0.09    0.16    0.34    0.39    0.37    0.38    0.53    0.87    1.32
+   145.0    0.00    0.01   -0.01   -0.08   -0.21   -0.37   -0.51   -0.57   -0.52   -0.34   -0.08    0.18    0.36    0.42    0.40    0.41    0.56    0.90    1.36
+   150.0    0.00    0.02    0.00   -0.08   -0.20   -0.36   -0.50   -0.57   -0.51   -0.33   -0.07    0.19    0.37    0.43    0.41    0.42    0.57    0.93    1.39
+   155.0    0.00    0.02    0.00   -0.07   -0.20   -0.36   -0.50   -0.56   -0.50   -0.33   -0.07    0.19    0.36    0.42    0.40    0.40    0.56    0.93    1.41
+   160.0    0.00    0.02    0.00   -0.07   -0.20   -0.35   -0.49   -0.56   -0.51   -0.33   -0.07    0.18    0.35    0.39    0.36    0.35    0.52    0.92    1.43
+   165.0    0.00    0.02    0.01   -0.07   -0.19   -0.35   -0.49   -0.56   -0.51   -0.34   -0.09    0.16    0.32    0.35    0.30    0.29    0.46    0.89    1.43
+   170.0    0.00    0.03    0.01   -0.06   -0.18   -0.34   -0.49   -0.56   -0.52   -0.36   -0.12    0.13    0.27    0.29    0.22    0.20    0.39    0.85    1.42
+   175.0    0.00    0.03    0.01   -0.05   -0.18   -0.34   -0.49   -0.57   -0.54   -0.38   -0.15    0.09    0.22    0.22    0.13    0.10    0.30    0.79    1.38
+   180.0    0.00    0.03    0.02   -0.05   -0.17   -0.33   -0.49   -0.58   -0.56   -0.41   -0.19    0.04    0.16    0.14    0.03   -0.01    0.20    0.71    1.31
+   185.0    0.00    0.03    0.02   -0.04   -0.16   -0.33   -0.49   -0.59   -0.58   -0.45   -0.23   -0.02    0.08    0.05   -0.07   -0.11    0.10    0.63    1.22
+   190.0    0.00    0.04    0.03   -0.04   -0.16   -0.32   -0.49   -0.61   -0.61   -0.49   -0.28   -0.09    0.01   -0.04   -0.17   -0.21    0.00    0.53    1.11
+   195.0    0.00    0.04    0.03   -0.03   -0.15   -0.32   -0.50   -0.63   -0.64   -0.54   -0.34   -0.16   -0.07   -0.13   -0.26   -0.30   -0.09    0.42    0.97
+   200.0    0.00    0.04    0.03   -0.03   -0.15   -0.32   -0.51   -0.65   -0.68   -0.59   -0.41   -0.23   -0.16   -0.22   -0.34   -0.38   -0.17    0.32    0.83
+   205.0    0.00    0.04    0.04   -0.02   -0.15   -0.33   -0.53   -0.67   -0.72   -0.64   -0.47   -0.31   -0.24   -0.30   -0.42   -0.45   -0.25    0.21    0.69
+   210.0    0.00    0.04    0.04   -0.02   -0.15   -0.34   -0.54   -0.70   -0.76   -0.70   -0.54   -0.39   -0.32   -0.37   -0.48   -0.51   -0.32    0.11    0.56
+   215.0    0.00    0.04    0.04   -0.02   -0.15   -0.35   -0.56   -0.74   -0.81   -0.75   -0.61   -0.47   -0.40   -0.43   -0.53   -0.55   -0.38    0.02    0.47
+   220.0    0.00    0.04    0.04   -0.02   -0.16   -0.36   -0.59   -0.77   -0.85   -0.81   -0.68   -0.54   -0.46   -0.49   -0.57   -0.59   -0.43   -0.06    0.41
+   225.0    0.00    0.04    0.04   -0.02   -0.16   -0.37   -0.61   -0.80   -0.90   -0.87   -0.74   -0.60   -0.52   -0.53   -0.59   -0.61   -0.47   -0.12    0.39
+   230.0    0.00    0.04    0.04   -0.03   -0.17   -0.39   -0.63   -0.83   -0.94   -0.91   -0.80   -0.66   -0.57   -0.56   -0.60   -0.62   -0.50   -0.16    0.43
+   235.0    0.00    0.04    0.03   -0.03   -0.18   -0.40   -0.65   -0.86   -0.97   -0.95   -0.85   -0.71   -0.60   -0.58   -0.61   -0.62   -0.51   -0.17    0.50
+   240.0    0.00    0.03    0.03   -0.04   -0.19   -0.42   -0.67   -0.88   -1.00   -0.98   -0.88   -0.74   -0.63   -0.58   -0.59   -0.59   -0.49   -0.15    0.61
+   245.0    0.00    0.03    0.03   -0.04   -0.20   -0.43   -0.69   -0.90   -1.01   -1.00   -0.90   -0.76   -0.64   -0.58   -0.56   -0.56   -0.46   -0.11    0.74
+   250.0    0.00    0.03    0.02   -0.05   -0.21   -0.44   -0.69   -0.90   -1.01   -1.01   -0.90   -0.76   -0.63   -0.55   -0.52   -0.50   -0.39   -0.04    0.88
+   255.0    0.00    0.03    0.02   -0.06   -0.22   -0.45   -0.70   -0.90   -1.01   -0.99   -0.89   -0.75   -0.62   -0.52   -0.47   -0.42   -0.31    0.06    1.01
+   260.0    0.00    0.02    0.01   -0.07   -0.23   -0.45   -0.70   -0.89   -0.98   -0.97   -0.87   -0.72   -0.58   -0.47   -0.39   -0.33   -0.20    0.17    1.14
+   265.0    0.00    0.02    0.01   -0.07   -0.23   -0.46   -0.69   -0.87   -0.95   -0.93   -0.83   -0.68   -0.54   -0.41   -0.31   -0.22   -0.07    0.30    1.25
+   270.0    0.00    0.02    0.00   -0.08   -0.24   -0.46   -0.68   -0.84   -0.91   -0.88   -0.77   -0.63   -0.48   -0.34   -0.22   -0.10    0.08    0.45    1.34
+   275.0    0.00    0.01   -0.01   -0.09   -0.25   -0.45   -0.66   -0.81   -0.87   -0.82   -0.71   -0.56   -0.41   -0.27   -0.13    0.03    0.23    0.60    1.41
+   280.0    0.00    0.01   -0.02   -0.10   -0.25   -0.45   -0.65   -0.78   -0.82   -0.76   -0.64   -0.49   -0.34   -0.19   -0.04    0.14    0.38    0.74    1.47
+   285.0    0.00    0.00   -0.03   -0.11   -0.26   -0.45   -0.64   -0.75   -0.77   -0.70   -0.56   -0.41   -0.26   -0.12    0.05    0.25    0.52    0.89    1.52
+   290.0    0.00    0.00   -0.03   -0.12   -0.27   -0.45   -0.62   -0.73   -0.73   -0.64   -0.49   -0.33   -0.18   -0.04    0.12    0.34    0.64    1.02    1.57
+   295.0    0.00   -0.01   -0.04   -0.13   -0.28   -0.45   -0.61   -0.70   -0.69   -0.58   -0.41   -0.25   -0.11    0.02    0.17    0.40    0.73    1.14    1.63
+   300.0    0.00   -0.01   -0.05   -0.14   -0.28   -0.46   -0.61   -0.68   -0.65   -0.52   -0.34   -0.17   -0.04    0.07    0.21    0.44    0.80    1.25    1.70
+   305.0    0.00   -0.02   -0.06   -0.15   -0.29   -0.46   -0.60   -0.67   -0.62   -0.47   -0.28   -0.10    0.02    0.11    0.22    0.45    0.84    1.33    1.77
+   310.0    0.00   -0.02   -0.07   -0.17   -0.30   -0.46   -0.60   -0.65   -0.59   -0.43   -0.23   -0.05    0.07    0.13    0.22    0.44    0.85    1.39    1.84
+   315.0    0.00   -0.03   -0.08   -0.18   -0.32   -0.47   -0.60   -0.64   -0.57   -0.40   -0.19    0.00    0.10    0.14    0.20    0.41    0.84    1.42    1.90
+   320.0    0.00   -0.03   -0.09   -0.19   -0.33   -0.48   -0.59   -0.63   -0.55   -0.37   -0.15    0.03    0.12    0.13    0.17    0.36    0.80    1.43    1.94
+   325.0    0.00   -0.04   -0.10   -0.20   -0.34   -0.48   -0.59   -0.62   -0.53   -0.35   -0.13    0.04    0.12    0.11    0.12    0.30    0.75    1.41    1.95
+   330.0    0.00   -0.04   -0.12   -0.22   -0.35   -0.49   -0.59   -0.60   -0.51   -0.33   -0.12    0.05    0.11    0.09    0.07    0.23    0.68    1.36    1.92
+   335.0    0.00   -0.05   -0.13   -0.23   -0.36   -0.49   -0.58   -0.59   -0.50   -0.32   -0.11    0.05    0.10    0.05    0.03    0.17    0.61    1.28    1.85
+   340.0    0.00   -0.05   -0.14   -0.24   -0.37   -0.50   -0.58   -0.58   -0.49   -0.31   -0.11    0.04    0.07    0.02   -0.02    0.11    0.52    1.18    1.74
+   345.0    0.00   -0.06   -0.14   -0.26   -0.39   -0.51   -0.59   -0.58   -0.48   -0.30   -0.11    0.02    0.05   -0.01   -0.06    0.05    0.44    1.06    1.60
+   350.0    0.00   -0.06   -0.15   -0.27   -0.40   -0.52   -0.59   -0.58   -0.47   -0.30   -0.12    0.00    0.03   -0.04   -0.09    0.00    0.34    0.92    1.43
+   355.0    0.00   -0.06   -0.16   -0.28   -0.42   -0.54   -0.60   -0.59   -0.48   -0.31   -0.14   -0.02    0.00   -0.06   -0.12   -0.05    0.25    0.76    1.24
+   360.0    0.00   -0.07   -0.17   -0.30   -0.44   -0.56   -0.62   -0.60   -0.50   -0.33   -0.16   -0.04   -0.01   -0.07   -0.14   -0.10    0.15    0.60    1.06
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+LEIAX1202GG     NONE                                        TYPE / SERIAL NO    
+FIELD               NGS/TUM                  2    06-NOV-06 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      1.80      0.34     65.94                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.34   -0.42   -0.47   -0.68   -0.79   -1.05   -1.29   -1.47   -1.60   -1.64   -1.76   -2.07   -2.24   -2.40   -2.23   -1.71
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.30      0.28     66.06                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.73   -1.12   -1.30   -1.42   -1.42   -1.53   -1.71   -2.05   -2.33   -2.65   -2.73   -2.78   -2.65   -2.43   -2.21   -1.64
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+LEIAX1203+GNSS  NONE                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               5    14-JAN-09 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+     -0.81      1.50     58.55                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.02   -0.07   -0.18   -0.32   -0.49   -0.67   -0.83   -0.93   -0.97   -0.95   -0.89   -0.79   -0.62   -0.37    0.00    0.49    1.06    1.59
+     0.0    0.00   -0.09   -0.20   -0.33   -0.49   -0.66   -0.84   -0.98   -1.03   -0.96   -0.76   -0.45   -0.10    0.25    0.55    0.83    1.19    1.69    2.33
+     5.0    0.00   -0.08   -0.19   -0.32   -0.47   -0.64   -0.81   -0.95   -1.00   -0.95   -0.76   -0.47   -0.12    0.23    0.54    0.85    1.20    1.69    2.32
+    10.0    0.00   -0.08   -0.19   -0.31   -0.46   -0.62   -0.79   -0.92   -0.98   -0.94   -0.78   -0.51   -0.17    0.18    0.53    0.86    1.23    1.71    2.30
+    15.0    0.00   -0.08   -0.18   -0.31   -0.45   -0.60   -0.76   -0.89   -0.96   -0.94   -0.81   -0.57   -0.25    0.12    0.49    0.86    1.26    1.73    2.28
+    20.0    0.00   -0.07   -0.17   -0.30   -0.44   -0.58   -0.73   -0.86   -0.94   -0.94   -0.85   -0.65   -0.34    0.03    0.43    0.85    1.28    1.75    2.26
+    25.0    0.00   -0.07   -0.17   -0.29   -0.42   -0.56   -0.70   -0.82   -0.91   -0.95   -0.89   -0.74   -0.46   -0.10    0.34    0.80    1.27    1.75    2.23
+    30.0    0.00   -0.06   -0.16   -0.28   -0.41   -0.54   -0.67   -0.79   -0.89   -0.95   -0.94   -0.83   -0.60   -0.25    0.20    0.71    1.22    1.71    2.17
+    35.0    0.00   -0.06   -0.15   -0.26   -0.39   -0.52   -0.64   -0.76   -0.87   -0.95   -0.99   -0.93   -0.75   -0.42    0.03    0.57    1.12    1.63    2.08
+    40.0    0.00   -0.05   -0.14   -0.25   -0.38   -0.50   -0.62   -0.73   -0.84   -0.95   -1.03   -1.03   -0.91   -0.62   -0.17    0.38    0.95    1.48    1.93
+    45.0    0.00   -0.04   -0.13   -0.24   -0.36   -0.48   -0.60   -0.71   -0.82   -0.95   -1.07   -1.12   -1.06   -0.82   -0.40    0.14    0.72    1.26    1.73
+    50.0    0.00   -0.04   -0.12   -0.22   -0.35   -0.46   -0.58   -0.68   -0.81   -0.95   -1.10   -1.21   -1.20   -1.02   -0.65   -0.13    0.44    0.98    1.47
+    55.0    0.00   -0.03   -0.10   -0.21   -0.33   -0.45   -0.56   -0.67   -0.79   -0.95   -1.12   -1.27   -1.33   -1.21   -0.89   -0.42    0.12    0.64    1.15
+    60.0    0.00   -0.02   -0.09   -0.19   -0.31   -0.43   -0.55   -0.66   -0.78   -0.94   -1.14   -1.32   -1.43   -1.37   -1.12   -0.71   -0.21    0.28    0.80
+    65.0    0.00   -0.02   -0.08   -0.17   -0.29   -0.42   -0.53   -0.65   -0.77   -0.94   -1.14   -1.35   -1.50   -1.50   -1.32   -0.97   -0.54   -0.09    0.42
+    70.0    0.00   -0.01   -0.06   -0.15   -0.27   -0.40   -0.52   -0.64   -0.77   -0.93   -1.14   -1.36   -1.54   -1.59   -1.46   -1.19   -0.82   -0.43    0.06
+    75.0    0.00    0.00   -0.05   -0.13   -0.25   -0.38   -0.51   -0.63   -0.76   -0.92   -1.13   -1.36   -1.55   -1.63   -1.56   -1.34   -1.04   -0.70   -0.25
+    80.0    0.00    0.01   -0.03   -0.11   -0.23   -0.36   -0.49   -0.62   -0.75   -0.91   -1.11   -1.33   -1.53   -1.63   -1.59   -1.42   -1.17   -0.89   -0.49
+    85.0    0.00    0.01   -0.01   -0.09   -0.20   -0.34   -0.48   -0.60   -0.73   -0.89   -1.08   -1.30   -1.49   -1.60   -1.57   -1.42   -1.20   -0.96   -0.62
+    90.0    0.00    0.02    0.00   -0.07   -0.18   -0.31   -0.45   -0.58   -0.71   -0.86   -1.04   -1.25   -1.43   -1.53   -1.50   -1.34   -1.13   -0.92   -0.62
+    95.0    0.00    0.03    0.02   -0.05   -0.15   -0.29   -0.42   -0.55   -0.68   -0.82   -0.99   -1.19   -1.36   -1.44   -1.38   -1.21   -0.97   -0.76   -0.50
+   100.0    0.00    0.04    0.03   -0.02   -0.13   -0.26   -0.39   -0.52   -0.65   -0.78   -0.94   -1.12   -1.27   -1.33   -1.24   -1.02   -0.75   -0.50   -0.26
+   105.0    0.00    0.04    0.04    0.00   -0.10   -0.23   -0.36   -0.49   -0.61   -0.73   -0.88   -1.05   -1.18   -1.21   -1.08   -0.81   -0.48   -0.17    0.09
+   110.0    0.00    0.05    0.06    0.01   -0.08   -0.20   -0.33   -0.45   -0.57   -0.68   -0.82   -0.97   -1.08   -1.08   -0.92   -0.60   -0.19    0.19    0.50
+   115.0    0.00    0.05    0.07    0.03   -0.06   -0.18   -0.31   -0.42   -0.53   -0.63   -0.75   -0.89   -0.98   -0.97   -0.78   -0.41    0.07    0.54    0.93
+   120.0    0.00    0.06    0.08    0.05   -0.04   -0.16   -0.28   -0.40   -0.49   -0.58   -0.68   -0.80   -0.88   -0.85   -0.65   -0.25    0.30    0.86    1.35
+   125.0    0.00    0.06    0.09    0.06   -0.03   -0.14   -0.27   -0.38   -0.46   -0.53   -0.62   -0.71   -0.78   -0.75   -0.55   -0.13    0.46    1.11    1.71
+   130.0    0.00    0.07    0.09    0.07   -0.02   -0.14   -0.27   -0.37   -0.44   -0.50   -0.55   -0.63   -0.68   -0.66   -0.47   -0.07    0.55    1.28    1.99
+   135.0    0.00    0.07    0.10    0.07   -0.01   -0.14   -0.27   -0.37   -0.43   -0.47   -0.50   -0.54   -0.59   -0.58   -0.43   -0.05    0.56    1.35    2.16
+   140.0    0.00    0.07    0.10    0.07   -0.01   -0.14   -0.28   -0.38   -0.43   -0.45   -0.45   -0.47   -0.51   -0.52   -0.40   -0.07    0.52    1.33    2.23
+   145.0    0.00    0.07    0.10    0.07   -0.02   -0.15   -0.29   -0.40   -0.44   -0.44   -0.41   -0.41   -0.44   -0.46   -0.39   -0.12    0.43    1.25    2.19
+   150.0    0.00    0.07    0.10    0.07   -0.02   -0.17   -0.31   -0.42   -0.46   -0.44   -0.39   -0.36   -0.38   -0.42   -0.39   -0.18    0.33    1.13    2.08
+   155.0    0.00    0.07    0.10    0.07   -0.03   -0.18   -0.33   -0.44   -0.48   -0.45   -0.38   -0.33   -0.34   -0.39   -0.39   -0.23    0.23    0.99    1.93
+   160.0    0.00    0.07    0.10    0.06   -0.04   -0.20   -0.35   -0.47   -0.51   -0.47   -0.39   -0.32   -0.31   -0.36   -0.39   -0.26    0.15    0.88    1.76
+   165.0    0.00    0.07    0.09    0.05   -0.05   -0.21   -0.37   -0.49   -0.54   -0.50   -0.41   -0.33   -0.31   -0.34   -0.37   -0.26    0.12    0.80    1.62
+   170.0    0.00    0.06    0.08    0.04   -0.07   -0.22   -0.39   -0.52   -0.57   -0.53   -0.44   -0.35   -0.31   -0.33   -0.34   -0.23    0.13    0.77    1.52
+   175.0    0.00    0.06    0.08    0.03   -0.08   -0.24   -0.41   -0.54   -0.60   -0.57   -0.48   -0.39   -0.33   -0.32   -0.30   -0.17    0.19    0.80    1.48
+   180.0    0.00    0.06    0.07    0.02   -0.09   -0.25   -0.42   -0.56   -0.63   -0.61   -0.53   -0.43   -0.35   -0.31   -0.25   -0.08    0.29    0.89    1.52
+   185.0    0.00    0.05    0.06    0.01   -0.11   -0.26   -0.44   -0.58   -0.66   -0.66   -0.59   -0.48   -0.38   -0.30   -0.19    0.02    0.42    1.01    1.61
+   190.0    0.00    0.05    0.05   -0.01   -0.12   -0.28   -0.45   -0.60   -0.69   -0.70   -0.64   -0.53   -0.41   -0.28   -0.13    0.12    0.56    1.15    1.74
+   195.0    0.00    0.04    0.04   -0.02   -0.14   -0.30   -0.47   -0.63   -0.73   -0.75   -0.69   -0.57   -0.43   -0.27   -0.08    0.22    0.68    1.29    1.89
+   200.0    0.00    0.04    0.02   -0.04   -0.16   -0.32   -0.49   -0.65   -0.76   -0.79   -0.73   -0.61   -0.44   -0.26   -0.03    0.29    0.77    1.39    2.02
+   205.0    0.00    0.03    0.01   -0.06   -0.18   -0.34   -0.52   -0.68   -0.80   -0.83   -0.77   -0.64   -0.46   -0.25    0.00    0.33    0.81    1.45    2.11
+   210.0    0.00    0.02    0.00   -0.08   -0.20   -0.36   -0.55   -0.72   -0.83   -0.87   -0.80   -0.66   -0.47   -0.25    0.00    0.34    0.81    1.44    2.15
+   215.0    0.00    0.01   -0.02   -0.10   -0.22   -0.39   -0.58   -0.75   -0.87   -0.90   -0.83   -0.68   -0.49   -0.27   -0.02    0.30    0.75    1.38    2.11
+   220.0    0.00    0.01   -0.03   -0.12   -0.25   -0.42   -0.61   -0.78   -0.90   -0.93   -0.85   -0.71   -0.52   -0.31   -0.08    0.22    0.65    1.26    2.00
+   225.0    0.00    0.00   -0.05   -0.14   -0.28   -0.45   -0.65   -0.82   -0.93   -0.95   -0.88   -0.74   -0.56   -0.37   -0.16    0.11    0.51    1.10    1.83
+   230.0    0.00   -0.01   -0.06   -0.16   -0.31   -0.49   -0.68   -0.85   -0.95   -0.97   -0.91   -0.78   -0.62   -0.46   -0.28   -0.03    0.36    0.91    1.61
+   235.0    0.00   -0.01   -0.08   -0.18   -0.33   -0.52   -0.71   -0.88   -0.98   -1.00   -0.94   -0.83   -0.70   -0.57   -0.42   -0.18    0.19    0.72    1.36
+   240.0    0.00   -0.02   -0.09   -0.20   -0.36   -0.55   -0.74   -0.90   -1.00   -1.02   -0.98   -0.89   -0.81   -0.71   -0.57   -0.34    0.04    0.54    1.12
+   245.0    0.00   -0.03   -0.10   -0.22   -0.39   -0.58   -0.77   -0.93   -1.02   -1.05   -1.02   -0.97   -0.92   -0.86   -0.73   -0.48   -0.09    0.40    0.89
+   250.0    0.00   -0.04   -0.12   -0.24   -0.41   -0.61   -0.80   -0.96   -1.05   -1.08   -1.08   -1.06   -1.05   -1.01   -0.88   -0.61   -0.19    0.30    0.71
+   255.0    0.00   -0.04   -0.13   -0.26   -0.44   -0.64   -0.83   -0.99   -1.08   -1.12   -1.14   -1.15   -1.17   -1.15   -1.02   -0.71   -0.24    0.26    0.58
+   260.0    0.00   -0.05   -0.14   -0.28   -0.46   -0.67   -0.86   -1.02   -1.12   -1.17   -1.20   -1.24   -1.29   -1.28   -1.12   -0.77   -0.25    0.26    0.52
+   265.0    0.00   -0.06   -0.15   -0.30   -0.48   -0.69   -0.90   -1.06   -1.16   -1.22   -1.27   -1.33   -1.38   -1.36   -1.18   -0.78   -0.22    0.31    0.51
+   270.0    0.00   -0.06   -0.16   -0.31   -0.51   -0.72   -0.93   -1.10   -1.21   -1.28   -1.33   -1.39   -1.44   -1.41   -1.20   -0.75   -0.14    0.40    0.56
+   275.0    0.00   -0.07   -0.17   -0.33   -0.53   -0.75   -0.97   -1.15   -1.27   -1.34   -1.39   -1.44   -1.47   -1.41   -1.16   -0.68   -0.04    0.53    0.66
+   280.0    0.00   -0.07   -0.18   -0.34   -0.54   -0.78   -1.01   -1.20   -1.33   -1.40   -1.43   -1.46   -1.45   -1.36   -1.08   -0.56    0.10    0.67    0.79
+   285.0    0.00   -0.08   -0.19   -0.35   -0.56   -0.80   -1.05   -1.25   -1.38   -1.44   -1.46   -1.45   -1.40   -1.26   -0.94   -0.41    0.26    0.83    0.94
+   290.0    0.00   -0.08   -0.20   -0.36   -0.57   -0.82   -1.08   -1.29   -1.43   -1.48   -1.47   -1.41   -1.32   -1.13   -0.78   -0.24    0.43    0.98    1.10
+   295.0    0.00   -0.08   -0.20   -0.37   -0.58   -0.84   -1.11   -1.33   -1.47   -1.51   -1.46   -1.36   -1.20   -0.96   -0.59   -0.05    0.60    1.14    1.26
+   300.0    0.00   -0.09   -0.21   -0.37   -0.59   -0.85   -1.12   -1.35   -1.49   -1.51   -1.43   -1.28   -1.07   -0.78   -0.39    0.15    0.76    1.29    1.43
+   305.0    0.00   -0.09   -0.21   -0.37   -0.59   -0.86   -1.13   -1.36   -1.50   -1.50   -1.39   -1.19   -0.92   -0.60   -0.19    0.33    0.91    1.42    1.59
+   310.0    0.00   -0.09   -0.21   -0.37   -0.59   -0.85   -1.13   -1.36   -1.49   -1.48   -1.33   -1.08   -0.77   -0.42    0.00    0.49    1.05    1.54    1.74
+   315.0    0.00   -0.09   -0.21   -0.37   -0.59   -0.85   -1.12   -1.34   -1.46   -1.43   -1.26   -0.98   -0.64   -0.26    0.16    0.63    1.15    1.63    1.88
+   320.0    0.00   -0.10   -0.22   -0.37   -0.58   -0.83   -1.10   -1.31   -1.42   -1.38   -1.18   -0.87   -0.51   -0.12    0.28    0.73    1.22    1.71    2.01
+   325.0    0.00   -0.10   -0.21   -0.37   -0.57   -0.81   -1.07   -1.27   -1.37   -1.31   -1.10   -0.77   -0.40   -0.01    0.38    0.80    1.27    1.75    2.12
+   330.0    0.00   -0.10   -0.21   -0.36   -0.56   -0.79   -1.04   -1.23   -1.31   -1.24   -1.02   -0.68   -0.30    0.08    0.45    0.84    1.28    1.78    2.21
+   335.0    0.00   -0.10   -0.21   -0.36   -0.55   -0.77   -1.00   -1.18   -1.25   -1.17   -0.94   -0.61   -0.22    0.15    0.49    0.85    1.28    1.78    2.27
+   340.0    0.00   -0.10   -0.21   -0.35   -0.54   -0.75   -0.97   -1.13   -1.19   -1.11   -0.88   -0.54   -0.17    0.19    0.52    0.85    1.26    1.77    2.32
+   345.0    0.00   -0.09   -0.21   -0.35   -0.52   -0.73   -0.93   -1.09   -1.14   -1.06   -0.83   -0.49   -0.12    0.23    0.53    0.84    1.23    1.75    2.35
+   350.0    0.00   -0.09   -0.20   -0.34   -0.51   -0.70   -0.90   -1.05   -1.10   -1.01   -0.79   -0.46   -0.10    0.24    0.54    0.83    1.20    1.72    2.35
+   355.0    0.00   -0.09   -0.20   -0.34   -0.50   -0.68   -0.87   -1.01   -1.06   -0.98   -0.76   -0.45   -0.09    0.25    0.54    0.83    1.19    1.70    2.35
+   360.0    0.00   -0.09   -0.20   -0.33   -0.49   -0.66   -0.84   -0.98   -1.03   -0.96   -0.76   -0.45   -0.10    0.25    0.55    0.83    1.19    1.69    2.33
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.10     -2.69     55.45                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.03   -0.11   -0.21   -0.32   -0.42   -0.51   -0.58   -0.62   -0.58   -0.44   -0.19    0.10    0.31    0.33    0.15   -0.09   -0.09    0.53
+     0.0    0.00    0.04    0.06    0.07    0.10    0.12    0.13    0.09   -0.02   -0.17   -0.28   -0.27   -0.10    0.20    0.53    0.78    0.92    1.07    1.55
+     5.0    0.00    0.04    0.06    0.08    0.12    0.16    0.18    0.13    0.00   -0.16   -0.29   -0.29   -0.13    0.17    0.51    0.77    0.90    1.02    1.39
+    10.0    0.00    0.03    0.05    0.08    0.14    0.20    0.22    0.17    0.03   -0.15   -0.30   -0.32   -0.17    0.12    0.45    0.70    0.82    0.91    1.21
+    15.0    0.00    0.02    0.04    0.08    0.15    0.22    0.25    0.20    0.06   -0.14   -0.30   -0.33   -0.20    0.06    0.36    0.58    0.70    0.78    1.03
+    20.0    0.00    0.02    0.03    0.07    0.15    0.23    0.28    0.23    0.09   -0.11   -0.28   -0.33   -0.23    0.00    0.26    0.45    0.54    0.62    0.85
+    25.0    0.00    0.01    0.02    0.06    0.14    0.24    0.29    0.25    0.11   -0.09   -0.25   -0.31   -0.23   -0.05    0.16    0.31    0.39    0.47    0.70
+    30.0    0.00    0.00    0.00    0.04    0.12    0.22    0.28    0.25    0.13   -0.05   -0.21   -0.27   -0.21   -0.06    0.09    0.19    0.24    0.33    0.57
+    35.0    0.00   -0.01   -0.02    0.01    0.09    0.19    0.25    0.24    0.13   -0.03   -0.16   -0.21   -0.16   -0.05    0.05    0.10    0.13    0.22    0.49
+    40.0    0.00   -0.02   -0.04   -0.02    0.05    0.14    0.21    0.20    0.12    0.00   -0.10   -0.12   -0.07    0.01    0.05    0.05    0.04    0.14    0.45
+    45.0    0.00   -0.03   -0.07   -0.06    0.00    0.08    0.14    0.14    0.08    0.01   -0.04   -0.03    0.03    0.09    0.09    0.03   -0.01    0.10    0.46
+    50.0    0.00   -0.05   -0.09   -0.10   -0.06    0.00    0.05    0.05    0.03    0.00    0.01    0.07    0.16    0.20    0.16    0.05   -0.03    0.10    0.51
+    55.0    0.00   -0.06   -0.12   -0.15   -0.13   -0.10   -0.06   -0.05   -0.05   -0.03    0.04    0.16    0.28    0.32    0.25    0.09   -0.02    0.12    0.60
+    60.0    0.00   -0.07   -0.14   -0.20   -0.21   -0.20   -0.18   -0.17   -0.15   -0.09    0.04    0.22    0.38    0.44    0.34    0.14    0.00    0.15    0.71
+    65.0    0.00   -0.08   -0.17   -0.24   -0.28   -0.30   -0.31   -0.30   -0.27   -0.17    0.02    0.26    0.46    0.53    0.42    0.18    0.02    0.18    0.83
+    70.0    0.00   -0.09   -0.20   -0.29   -0.36   -0.40   -0.43   -0.44   -0.40   -0.27   -0.04    0.25    0.50    0.60    0.48    0.22    0.03    0.20    0.94
+    75.0    0.00   -0.10   -0.22   -0.34   -0.43   -0.50   -0.56   -0.58   -0.54   -0.40   -0.13    0.20    0.50    0.62    0.50    0.22    0.02    0.20    1.02
+    80.0    0.00   -0.11   -0.25   -0.38   -0.49   -0.59   -0.67   -0.72   -0.69   -0.54   -0.25    0.12    0.45    0.60    0.50    0.21   -0.02    0.17    1.05
+    85.0    0.00   -0.12   -0.27   -0.42   -0.55   -0.67   -0.77   -0.84   -0.83   -0.69   -0.40   -0.01    0.35    0.53    0.45    0.16   -0.08    0.10    1.02
+    90.0    0.00   -0.12   -0.28   -0.45   -0.60   -0.73   -0.86   -0.95   -0.96   -0.84   -0.56   -0.17    0.22    0.44    0.38    0.09   -0.16    0.00    0.93
+    95.0    0.00   -0.13   -0.30   -0.47   -0.64   -0.79   -0.93   -1.05   -1.09   -1.00   -0.73   -0.34    0.07    0.32    0.29    0.01   -0.26   -0.13    0.78
+   100.0    0.00   -0.13   -0.31   -0.49   -0.66   -0.83   -0.98   -1.13   -1.20   -1.14   -0.91   -0.52   -0.10    0.18    0.19   -0.08   -0.37   -0.29    0.58
+   105.0    0.00   -0.14   -0.32   -0.51   -0.68   -0.85   -1.03   -1.19   -1.30   -1.28   -1.07   -0.69   -0.26    0.06    0.09   -0.16   -0.47   -0.45    0.35
+   110.0    0.00   -0.14   -0.33   -0.52   -0.70   -0.87   -1.06   -1.25   -1.39   -1.40   -1.22   -0.85   -0.40   -0.06    0.01   -0.23   -0.57   -0.59    0.12
+   115.0    0.00   -0.14   -0.33   -0.52   -0.70   -0.88   -1.08   -1.29   -1.47   -1.51   -1.35   -0.98   -0.52   -0.15   -0.05   -0.28   -0.63   -0.72   -0.08
+   120.0    0.00   -0.14   -0.33   -0.52   -0.70   -0.89   -1.10   -1.33   -1.53   -1.60   -1.45   -1.08   -0.60   -0.20   -0.09   -0.30   -0.67   -0.80   -0.23
+   125.0    0.00   -0.14   -0.33   -0.52   -0.70   -0.89   -1.11   -1.36   -1.58   -1.66   -1.52   -1.15   -0.65   -0.23   -0.09   -0.30   -0.67   -0.83   -0.31
+   130.0    0.00   -0.14   -0.32   -0.51   -0.69   -0.88   -1.11   -1.38   -1.61   -1.70   -1.55   -1.17   -0.65   -0.22   -0.06   -0.26   -0.64   -0.80   -0.30
+   135.0    0.00   -0.14   -0.31   -0.50   -0.67   -0.87   -1.11   -1.38   -1.62   -1.71   -1.56   -1.16   -0.63   -0.18   -0.01   -0.20   -0.56   -0.71   -0.19
+   140.0    0.00   -0.13   -0.30   -0.48   -0.66   -0.86   -1.10   -1.37   -1.60   -1.68   -1.52   -1.11   -0.56   -0.11    0.06   -0.11   -0.45   -0.56   -0.01
+   145.0    0.00   -0.13   -0.29   -0.46   -0.64   -0.83   -1.08   -1.34   -1.57   -1.63   -1.45   -1.02   -0.47   -0.01    0.16    0.00   -0.32   -0.38    0.24
+   150.0    0.00   -0.12   -0.28   -0.44   -0.61   -0.80   -1.04   -1.30   -1.50   -1.54   -1.35   -0.91   -0.36    0.10    0.27    0.12   -0.16   -0.17    0.52
+   155.0    0.00   -0.12   -0.27   -0.42   -0.58   -0.77   -0.99   -1.23   -1.41   -1.43   -1.21   -0.77   -0.22    0.23    0.40    0.27    0.02    0.05    0.81
+   160.0    0.00   -0.11   -0.25   -0.40   -0.55   -0.72   -0.92   -1.14   -1.29   -1.28   -1.05   -0.61   -0.07    0.37    0.55    0.42    0.20    0.27    1.07
+   165.0    0.00   -0.10   -0.23   -0.37   -0.51   -0.67   -0.85   -1.03   -1.15   -1.12   -0.88   -0.44    0.09    0.53    0.70    0.58    0.37    0.45    1.29
+   170.0    0.00   -0.10   -0.22   -0.35   -0.48   -0.61   -0.76   -0.91   -0.99   -0.94   -0.69   -0.26    0.26    0.68    0.85    0.74    0.52    0.59    1.43
+   175.0    0.00   -0.09   -0.20   -0.32   -0.44   -0.55   -0.67   -0.78   -0.83   -0.76   -0.50   -0.08    0.43    0.84    1.00    0.89    0.65    0.68    1.51
+   180.0    0.00   -0.08   -0.18   -0.30   -0.40   -0.50   -0.59   -0.66   -0.68   -0.58   -0.32    0.09    0.58    0.99    1.15    1.02    0.75    0.73    1.51
+   185.0    0.00   -0.07   -0.17   -0.27   -0.37   -0.45   -0.51   -0.55   -0.53   -0.42   -0.16    0.25    0.72    1.12    1.28    1.13    0.81    0.72    1.45
+   190.0    0.00   -0.06   -0.15   -0.25   -0.34   -0.41   -0.45   -0.46   -0.42   -0.29   -0.03    0.37    0.83    1.22    1.37    1.21    0.84    0.67    1.34
+   195.0    0.00   -0.05   -0.14   -0.24   -0.32   -0.38   -0.40   -0.39   -0.33   -0.19    0.07    0.46    0.91    1.30    1.44    1.25    0.83    0.59    1.22
+   200.0    0.00   -0.05   -0.13   -0.22   -0.31   -0.37   -0.38   -0.36   -0.28   -0.13    0.13    0.51    0.96    1.33    1.46    1.25    0.79    0.50    1.09
+   205.0    0.00   -0.04   -0.11   -0.21   -0.31   -0.37   -0.38   -0.35   -0.27   -0.12    0.14    0.52    0.96    1.32    1.44    1.21    0.73    0.41    0.98
+   210.0    0.00   -0.03   -0.10   -0.21   -0.31   -0.38   -0.41   -0.38   -0.30   -0.14    0.12    0.49    0.91    1.26    1.37    1.13    0.64    0.32    0.90
+   215.0    0.00   -0.02   -0.09   -0.21   -0.32   -0.41   -0.46   -0.44   -0.36   -0.21    0.06    0.42    0.84    1.17    1.27    1.03    0.55    0.25    0.83
+   220.0    0.00   -0.01   -0.09   -0.21   -0.34   -0.46   -0.52   -0.52   -0.45   -0.29   -0.03    0.33    0.73    1.04    1.13    0.90    0.46    0.20    0.78
+   225.0    0.00   -0.01   -0.08   -0.21   -0.37   -0.50   -0.60   -0.62   -0.55   -0.40   -0.14    0.22    0.60    0.90    0.97    0.77    0.37    0.16    0.73
+   230.0    0.00    0.00   -0.07   -0.21   -0.39   -0.56   -0.68   -0.72   -0.67   -0.51   -0.25    0.10    0.46    0.74    0.81    0.63    0.29    0.13    0.66
+   235.0    0.00    0.01   -0.07   -0.22   -0.42   -0.61   -0.76   -0.82   -0.78   -0.62   -0.36   -0.02    0.33    0.59    0.66    0.50    0.22    0.09    0.54
+   240.0    0.00    0.01   -0.06   -0.22   -0.44   -0.66   -0.83   -0.91   -0.88   -0.72   -0.45   -0.12    0.22    0.46    0.52    0.38    0.14    0.04    0.37
+   245.0    0.00    0.02   -0.06   -0.22   -0.46   -0.70   -0.89   -0.99   -0.96   -0.80   -0.53   -0.20    0.12    0.35    0.40    0.28    0.07   -0.04    0.14
+   250.0    0.00    0.02   -0.05   -0.23   -0.47   -0.73   -0.94   -1.05   -1.03   -0.86   -0.59   -0.25    0.06    0.27    0.31    0.19   -0.02   -0.16   -0.15
+   255.0    0.00    0.03   -0.05   -0.22   -0.48   -0.75   -0.97   -1.09   -1.07   -0.90   -0.62   -0.28    0.02    0.21    0.24    0.10   -0.12   -0.33   -0.48
+   260.0    0.00    0.03   -0.04   -0.22   -0.48   -0.75   -0.98   -1.10   -1.08   -0.91   -0.63   -0.29    0.01    0.18    0.18    0.01   -0.25   -0.53   -0.84
+   265.0    0.00    0.04   -0.03   -0.21   -0.47   -0.75   -0.98   -1.10   -1.08   -0.91   -0.62   -0.28    0.01    0.17    0.13   -0.09   -0.41   -0.76   -1.19
+   270.0    0.00    0.04   -0.03   -0.20   -0.46   -0.73   -0.95   -1.08   -1.06   -0.89   -0.60   -0.26    0.02    0.15    0.08   -0.20   -0.59   -1.01   -1.50
+   275.0    0.00    0.05   -0.02   -0.19   -0.44   -0.70   -0.92   -1.03   -1.01   -0.85   -0.57   -0.24    0.03    0.14    0.01   -0.33   -0.79   -1.26   -1.74
+   280.0    0.00    0.05   -0.01   -0.18   -0.41   -0.66   -0.87   -0.98   -0.96   -0.80   -0.53   -0.22    0.03    0.11   -0.07   -0.48   -1.00   -1.48   -1.88
+   285.0    0.00    0.05    0.00   -0.16   -0.38   -0.62   -0.81   -0.91   -0.90   -0.75   -0.50   -0.21    0.02    0.06   -0.16   -0.63   -1.20   -1.67   -1.90
+   290.0    0.00    0.06    0.01   -0.14   -0.35   -0.57   -0.74   -0.84   -0.82   -0.70   -0.47   -0.21   -0.01    0.00   -0.27   -0.78   -1.37   -1.79   -1.80
+   295.0    0.00    0.06    0.01   -0.13   -0.32   -0.51   -0.67   -0.75   -0.75   -0.64   -0.44   -0.22   -0.06   -0.08   -0.37   -0.91   -1.50   -1.83   -1.59
+   300.0    0.00    0.06    0.02   -0.11   -0.28   -0.46   -0.60   -0.67   -0.67   -0.58   -0.42   -0.23   -0.10   -0.15   -0.46   -1.00   -1.56   -1.78   -1.27
+   305.0    0.00    0.06    0.03   -0.09   -0.25   -0.40   -0.52   -0.58   -0.58   -0.52   -0.40   -0.25   -0.15   -0.22   -0.53   -1.05   -1.55   -1.64   -0.87
+   310.0    0.00    0.06    0.04   -0.07   -0.21   -0.35   -0.45   -0.50   -0.50   -0.46   -0.37   -0.26   -0.20   -0.27   -0.56   -1.03   -1.46   -1.42   -0.42
+   315.0    0.00    0.07    0.04   -0.05   -0.18   -0.29   -0.38   -0.42   -0.43   -0.40   -0.35   -0.27   -0.23   -0.29   -0.54   -0.94   -1.28   -1.14    0.04
+   320.0    0.00    0.07    0.05   -0.04   -0.15   -0.24   -0.31   -0.34   -0.35   -0.35   -0.32   -0.28   -0.24   -0.28   -0.47   -0.79   -1.04   -0.80    0.49
+   325.0    0.00    0.06    0.05   -0.02   -0.11   -0.19   -0.24   -0.27   -0.29   -0.30   -0.30   -0.27   -0.23   -0.24   -0.36   -0.58   -0.74   -0.44    0.89
+   330.0    0.00    0.06    0.06    0.00   -0.08   -0.14   -0.18   -0.20   -0.23   -0.26   -0.28   -0.26   -0.21   -0.17   -0.21   -0.33   -0.40   -0.07    1.22
+   335.0    0.00    0.06    0.06    0.01   -0.05   -0.10   -0.12   -0.15   -0.18   -0.23   -0.26   -0.25   -0.18   -0.08   -0.03   -0.06   -0.07    0.27    1.48
+   340.0    0.00    0.06    0.06    0.03   -0.02   -0.05   -0.07   -0.09   -0.14   -0.20   -0.25   -0.24   -0.14    0.01    0.14    0.20    0.25    0.57    1.64
+   345.0    0.00    0.06    0.07    0.04    0.01   -0.01   -0.02   -0.05   -0.11   -0.19   -0.25   -0.23   -0.11    0.09    0.30    0.43    0.52    0.80    1.72
+   350.0    0.00    0.05    0.07    0.05    0.04    0.04    0.03    0.00   -0.08   -0.18   -0.25   -0.24   -0.09    0.16    0.42    0.61    0.73    0.97    1.73
+   355.0    0.00    0.05    0.06    0.07    0.07    0.08    0.08    0.04   -0.05   -0.17   -0.26   -0.25   -0.09    0.20    0.50    0.73    0.86    1.05    1.66
+   360.0    0.00    0.04    0.06    0.07    0.10    0.12    0.13    0.09   -0.02   -0.17   -0.28   -0.27   -0.10    0.20    0.53    0.78    0.92    1.07    1.55
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+LEIGS09         NONE                                        TYPE / SERIAL NO    
+COPIED              Geo++ GmbH               5    19-MAR-10 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+COPIED FROM LEIATX1230+GNSS NONE                            COMMENT             
+ATTENTION! COPIED WITHOUT VERIFICATION BY CALIBRATION!      COMMENT             
+   G01                                                      START OF FREQUENCY  
+     -1.39      1.61     87.82                              NORTH / EAST / UP   
+   NOAZI    0.00    0.02    0.04    0.01   -0.12   -0.36   -0.67   -0.97   -1.17   -1.23   -1.16   -1.01   -0.84   -0.67   -0.44   -0.06    0.56    1.39    2.28
+     0.0    0.00    0.06    0.13    0.16    0.06   -0.20   -0.58   -0.99   -1.30   -1.42   -1.31   -1.02   -0.63   -0.25    0.05    0.27    0.47    0.80    1.43
+     5.0    0.00    0.05    0.13    0.16    0.06   -0.20   -0.58   -0.97   -1.28   -1.39   -1.28   -0.99   -0.61   -0.22    0.10    0.35    0.57    0.83    1.30
+    10.0    0.00    0.05    0.13    0.15    0.05   -0.20   -0.56   -0.95   -1.24   -1.35   -1.25   -0.98   -0.61   -0.23    0.13    0.43    0.69    0.92    1.24
+    15.0    0.00    0.05    0.12    0.14    0.05   -0.20   -0.55   -0.92   -1.19   -1.29   -1.21   -0.97   -0.64   -0.26    0.12    0.49    0.81    1.05    1.26
+    20.0    0.00    0.04    0.11    0.14    0.04   -0.19   -0.53   -0.87   -1.13   -1.23   -1.17   -0.97   -0.69   -0.33    0.07    0.51    0.92    1.21    1.35
+    25.0    0.00    0.04    0.10    0.12    0.03   -0.19   -0.51   -0.83   -1.06   -1.16   -1.12   -0.98   -0.75   -0.44   -0.02    0.48    1.00    1.37    1.50
+    30.0    0.00    0.04    0.09    0.11    0.02   -0.19   -0.49   -0.78   -0.99   -1.08   -1.07   -0.98   -0.82   -0.56   -0.16    0.40    1.02    1.51    1.68
+    35.0    0.00    0.03    0.08    0.09    0.01   -0.20   -0.47   -0.73   -0.92   -1.00   -1.01   -0.97   -0.88   -0.70   -0.32    0.27    0.98    1.60    1.86
+    40.0    0.00    0.02    0.07    0.08   -0.01   -0.21   -0.46   -0.70   -0.85   -0.92   -0.94   -0.95   -0.93   -0.82   -0.50    0.10    0.88    1.62    2.01
+    45.0    0.00    0.02    0.06    0.05   -0.04   -0.22   -0.46   -0.67   -0.80   -0.85   -0.87   -0.91   -0.96   -0.92   -0.67   -0.10    0.73    1.57    2.11
+    50.0    0.00    0.01    0.04    0.03   -0.06   -0.25   -0.47   -0.66   -0.76   -0.79   -0.80   -0.86   -0.95   -0.99   -0.81   -0.29    0.53    1.46    2.14
+    55.0    0.00    0.01    0.03    0.01   -0.10   -0.28   -0.50   -0.67   -0.75   -0.75   -0.74   -0.79   -0.91   -1.01   -0.91   -0.47    0.33    1.29    2.10
+    60.0    0.00    0.00    0.01   -0.02   -0.13   -0.32   -0.53   -0.70   -0.76   -0.73   -0.69   -0.72   -0.84   -0.98   -0.96   -0.60    0.13    1.09    2.00
+    65.0    0.00    0.00    0.00   -0.04   -0.17   -0.37   -0.58   -0.74   -0.79   -0.73   -0.65   -0.64   -0.75   -0.90   -0.94   -0.68   -0.03    0.91    1.86
+    70.0    0.00   -0.01   -0.02   -0.07   -0.20   -0.41   -0.64   -0.80   -0.84   -0.76   -0.64   -0.58   -0.64   -0.79   -0.87   -0.69   -0.13    0.75    1.73
+    75.0    0.00   -0.02   -0.03   -0.09   -0.24   -0.46   -0.71   -0.88   -0.91   -0.81   -0.65   -0.53   -0.54   -0.65   -0.75   -0.63   -0.15    0.67    1.63
+    80.0    0.00   -0.02   -0.04   -0.12   -0.28   -0.51   -0.77   -0.96   -1.00   -0.89   -0.69   -0.51   -0.45   -0.51   -0.59   -0.51   -0.09    0.66    1.60
+    85.0    0.00   -0.02   -0.06   -0.14   -0.31   -0.56   -0.83   -1.04   -1.10   -0.98   -0.75   -0.52   -0.39   -0.39   -0.43   -0.34    0.04    0.76    1.66
+    90.0    0.00   -0.03   -0.07   -0.16   -0.34   -0.60   -0.89   -1.12   -1.20   -1.09   -0.84   -0.57   -0.37   -0.29   -0.27   -0.15    0.23    0.94    1.81
+    95.0    0.00   -0.03   -0.07   -0.17   -0.36   -0.64   -0.95   -1.20   -1.30   -1.21   -0.96   -0.65   -0.39   -0.24   -0.14    0.03    0.46    1.18    2.06
+   100.0    0.00   -0.03   -0.08   -0.18   -0.37   -0.66   -0.99   -1.26   -1.39   -1.33   -1.09   -0.76   -0.45   -0.23   -0.06    0.20    0.69    1.47    2.37
+   105.0    0.00   -0.04   -0.08   -0.19   -0.39   -0.68   -1.02   -1.32   -1.48   -1.44   -1.22   -0.89   -0.55   -0.28   -0.03    0.32    0.90    1.77    2.71
+   110.0    0.00   -0.04   -0.09   -0.19   -0.39   -0.69   -1.05   -1.37   -1.56   -1.55   -1.35   -1.03   -0.68   -0.36   -0.05    0.38    1.06    2.03    3.05
+   115.0    0.00   -0.04   -0.09   -0.19   -0.39   -0.69   -1.06   -1.40   -1.62   -1.65   -1.48   -1.17   -0.82   -0.48   -0.12    0.38    1.15    2.22    3.33
+   120.0    0.00   -0.04   -0.08   -0.19   -0.38   -0.69   -1.07   -1.42   -1.67   -1.72   -1.58   -1.30   -0.96   -0.61   -0.23    0.32    1.17    2.33    3.52
+   125.0    0.00   -0.04   -0.08   -0.18   -0.37   -0.68   -1.06   -1.43   -1.70   -1.78   -1.67   -1.41   -1.09   -0.75   -0.36    0.21    1.10    2.33    3.60
+   130.0    0.00   -0.04   -0.08   -0.17   -0.36   -0.67   -1.05   -1.43   -1.71   -1.81   -1.72   -1.49   -1.19   -0.87   -0.50    0.07    0.98    2.24    3.55
+   135.0    0.00   -0.04   -0.07   -0.16   -0.34   -0.65   -1.03   -1.42   -1.71   -1.82   -1.75   -1.53   -1.26   -0.97   -0.63   -0.09    0.80    2.06    3.39
+   140.0    0.00   -0.03   -0.06   -0.14   -0.32   -0.62   -1.01   -1.40   -1.70   -1.81   -1.75   -1.55   -1.30   -1.04   -0.74   -0.24    0.61    1.83    3.13
+   145.0    0.00   -0.03   -0.05   -0.13   -0.30   -0.60   -0.99   -1.38   -1.67   -1.78   -1.72   -1.53   -1.30   -1.07   -0.81   -0.37    0.42    1.58    2.82
+   150.0    0.00   -0.03   -0.05   -0.11   -0.28   -0.57   -0.95   -1.34   -1.62   -1.73   -1.67   -1.48   -1.26   -1.07   -0.85   -0.45    0.27    1.35    2.50
+   155.0    0.00   -0.02   -0.04   -0.09   -0.26   -0.54   -0.92   -1.30   -1.57   -1.67   -1.60   -1.41   -1.21   -1.03   -0.84   -0.49    0.16    1.15    2.22
+   160.0    0.00   -0.02   -0.03   -0.08   -0.24   -0.52   -0.89   -1.25   -1.51   -1.60   -1.51   -1.33   -1.13   -0.97   -0.80   -0.48    0.12    1.03    2.00
+   165.0    0.00   -0.02   -0.02   -0.06   -0.22   -0.49   -0.85   -1.21   -1.45   -1.52   -1.42   -1.23   -1.04   -0.89   -0.73   -0.43    0.14    0.99    1.87
+   170.0    0.00   -0.01   -0.01   -0.05   -0.20   -0.47   -0.82   -1.16   -1.38   -1.43   -1.32   -1.13   -0.94   -0.79   -0.63   -0.33    0.22    1.02    1.83
+   175.0    0.00   -0.01    0.00   -0.04   -0.18   -0.45   -0.79   -1.11   -1.32   -1.35   -1.23   -1.03   -0.84   -0.69   -0.52   -0.21    0.35    1.12    1.90
+   180.0    0.00   -0.01    0.01   -0.03   -0.17   -0.43   -0.77   -1.07   -1.25   -1.26   -1.13   -0.93   -0.74   -0.59   -0.41   -0.08    0.50    1.27    2.03
+   185.0    0.00    0.00    0.01   -0.02   -0.16   -0.42   -0.74   -1.03   -1.20   -1.18   -1.04   -0.83   -0.65   -0.50   -0.31    0.05    0.65    1.44    2.19
+   190.0    0.00    0.00    0.02   -0.01   -0.15   -0.41   -0.73   -1.00   -1.14   -1.11   -0.94   -0.74   -0.56   -0.41   -0.21    0.16    0.79    1.59    2.37
+   195.0    0.00    0.00    0.02   -0.01   -0.15   -0.40   -0.71   -0.97   -1.09   -1.04   -0.86   -0.64   -0.47   -0.33   -0.13    0.25    0.89    1.71    2.51
+   200.0    0.00    0.01    0.03    0.00   -0.14   -0.40   -0.70   -0.95   -1.04   -0.97   -0.77   -0.56   -0.39   -0.27   -0.08    0.30    0.95    1.78    2.60
+   205.0    0.00    0.01    0.03    0.00   -0.14   -0.39   -0.69   -0.92   -1.00   -0.90   -0.70   -0.48   -0.33   -0.23   -0.06    0.32    0.96    1.79    2.62
+   210.0    0.00    0.01    0.04    0.01   -0.14   -0.39   -0.67   -0.89   -0.95   -0.84   -0.63   -0.42   -0.28   -0.20   -0.06    0.29    0.91    1.73    2.57
+   215.0    0.00    0.01    0.04    0.01   -0.13   -0.38   -0.66   -0.86   -0.90   -0.78   -0.57   -0.37   -0.26   -0.21   -0.10    0.22    0.82    1.63    2.46
+   220.0    0.00    0.02    0.04    0.01   -0.13   -0.37   -0.63   -0.82   -0.86   -0.73   -0.52   -0.34   -0.26   -0.24   -0.17    0.12    0.70    1.48    2.32
+   225.0    0.00    0.02    0.05    0.02   -0.12   -0.35   -0.61   -0.79   -0.81   -0.69   -0.49   -0.34   -0.29   -0.31   -0.27    0.00    0.55    1.33    2.16
+   230.0    0.00    0.02    0.05    0.02   -0.11   -0.33   -0.58   -0.74   -0.77   -0.66   -0.48   -0.36   -0.35   -0.41   -0.39   -0.15    0.40    1.17    2.02
+   235.0    0.00    0.02    0.05    0.03   -0.10   -0.31   -0.54   -0.71   -0.73   -0.64   -0.50   -0.42   -0.44   -0.53   -0.53   -0.30    0.25    1.04    1.92
+   240.0    0.00    0.03    0.06    0.03   -0.09   -0.29   -0.51   -0.67   -0.71   -0.64   -0.54   -0.50   -0.56   -0.67   -0.69   -0.45    0.12    0.95    1.88
+   245.0    0.00    0.03    0.06    0.04   -0.07   -0.26   -0.48   -0.64   -0.70   -0.66   -0.60   -0.60   -0.69   -0.82   -0.84   -0.59    0.01    0.89    1.89
+   250.0    0.00    0.03    0.06    0.04   -0.06   -0.24   -0.46   -0.62   -0.70   -0.70   -0.68   -0.72   -0.84   -0.97   -0.98   -0.70   -0.06    0.88    1.97
+   255.0    0.00    0.03    0.07    0.05   -0.05   -0.23   -0.44   -0.62   -0.73   -0.76   -0.78   -0.85   -0.98   -1.10   -1.09   -0.78   -0.10    0.91    2.08
+   260.0    0.00    0.04    0.07    0.06   -0.04   -0.21   -0.43   -0.63   -0.77   -0.85   -0.90   -0.99   -1.11   -1.21   -1.16   -0.82   -0.10    0.97    2.23
+   265.0    0.00    0.04    0.07    0.06   -0.03   -0.21   -0.44   -0.66   -0.83   -0.95   -1.03   -1.12   -1.22   -1.28   -1.19   -0.81   -0.06    1.05    2.38
+   270.0    0.00    0.04    0.08    0.07   -0.02   -0.21   -0.45   -0.70   -0.91   -1.06   -1.16   -1.24   -1.30   -1.31   -1.17   -0.76    0.01    1.15    2.52
+   275.0    0.00    0.04    0.08    0.07   -0.02   -0.21   -0.47   -0.75   -1.00   -1.18   -1.29   -1.34   -1.35   -1.30   -1.11   -0.67    0.11    1.25    2.64
+   280.0    0.00    0.04    0.08    0.08   -0.01   -0.21   -0.50   -0.81   -1.10   -1.30   -1.40   -1.42   -1.37   -1.25   -1.01   -0.55    0.23    1.35    2.74
+   285.0    0.00    0.05    0.09    0.08   -0.01   -0.22   -0.53   -0.87   -1.19   -1.41   -1.51   -1.48   -1.37   -1.18   -0.88   -0.40    0.36    1.45    2.80
+   290.0    0.00    0.05    0.09    0.09   -0.01   -0.23   -0.56   -0.93   -1.27   -1.51   -1.59   -1.53   -1.34   -1.08   -0.73   -0.24    0.49    1.54    2.85
+   295.0    0.00    0.05    0.10    0.10   -0.01   -0.24   -0.58   -0.98   -1.34   -1.59   -1.65   -1.55   -1.30   -0.98   -0.59   -0.09    0.62    1.62    2.87
+   300.0    0.00    0.05    0.10    0.10    0.00   -0.24   -0.60   -1.02   -1.40   -1.64   -1.70   -1.55   -1.25   -0.88   -0.45    0.05    0.73    1.68    2.88
+   305.0    0.00    0.05    0.11    0.11    0.00   -0.24   -0.61   -1.04   -1.43   -1.68   -1.72   -1.54   -1.20   -0.79   -0.34    0.16    0.81    1.72    2.89
+   310.0    0.00    0.06    0.11    0.12    0.01   -0.24   -0.62   -1.06   -1.45   -1.70   -1.72   -1.52   -1.15   -0.71   -0.26    0.23    0.85    1.74    2.88
+   315.0    0.00    0.06    0.12    0.12    0.02   -0.23   -0.62   -1.06   -1.46   -1.69   -1.70   -1.48   -1.10   -0.66   -0.21    0.26    0.86    1.72    2.87
+   320.0    0.00    0.06    0.12    0.13    0.03   -0.23   -0.61   -1.06   -1.45   -1.67   -1.67   -1.44   -1.05   -0.61   -0.18    0.26    0.82    1.67    2.83
+   325.0    0.00    0.06    0.13    0.14    0.03   -0.22   -0.61   -1.05   -1.43   -1.65   -1.63   -1.39   -1.00   -0.58   -0.17    0.23    0.76    1.58    2.76
+   330.0    0.00    0.06    0.13    0.15    0.04   -0.21   -0.60   -1.04   -1.41   -1.61   -1.58   -1.33   -0.95   -0.54   -0.17    0.19    0.67    1.46    2.65
+   335.0    0.00    0.06    0.13    0.15    0.05   -0.21   -0.60   -1.03   -1.39   -1.58   -1.53   -1.28   -0.90   -0.51   -0.17    0.15    0.58    1.32    2.50
+   340.0    0.00    0.06    0.13    0.16    0.05   -0.20   -0.59   -1.02   -1.37   -1.54   -1.48   -1.22   -0.84   -0.46   -0.15    0.12    0.49    1.17    2.30
+   345.0    0.00    0.06    0.14    0.16    0.06   -0.20   -0.59   -1.02   -1.36   -1.51   -1.43   -1.16   -0.78   -0.41   -0.12    0.12    0.43    1.02    2.08
+   350.0    0.00    0.06    0.14    0.16    0.06   -0.20   -0.59   -1.01   -1.34   -1.48   -1.39   -1.10   -0.72   -0.35   -0.07    0.14    0.40    0.90    1.84
+   355.0    0.00    0.06    0.14    0.16    0.06   -0.20   -0.59   -1.00   -1.33   -1.45   -1.35   -1.06   -0.67   -0.29   -0.01    0.20    0.42    0.82    1.62
+   360.0    0.00    0.06    0.13    0.16    0.06   -0.20   -0.58   -0.99   -1.30   -1.42   -1.31   -1.02   -0.63   -0.25    0.05    0.27    0.47    0.80    1.43
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.32     -1.27     85.01                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.03   -0.10   -0.19   -0.29   -0.43   -0.61   -0.86   -1.13   -1.31   -1.27   -0.94   -0.36    0.28    0.71    0.74    0.39    0.00    0.14
+     0.0    0.00   -0.10   -0.24   -0.42   -0.61   -0.80   -0.96   -1.08   -1.12   -1.03   -0.76   -0.29    0.33    0.92    1.27    1.17    0.67    0.14    0.34
+     5.0    0.00   -0.10   -0.24   -0.42   -0.62   -0.81   -0.97   -1.09   -1.13   -1.04   -0.76   -0.28    0.33    0.92    1.26    1.18    0.69    0.12    0.19
+    10.0    0.00   -0.10   -0.24   -0.42   -0.62   -0.82   -0.99   -1.11   -1.14   -1.05   -0.77   -0.29    0.32    0.90    1.25    1.19    0.71    0.11    0.04
+    15.0    0.00   -0.10   -0.24   -0.42   -0.62   -0.82   -1.00   -1.12   -1.17   -1.07   -0.80   -0.33    0.28    0.87    1.24    1.20    0.74    0.12   -0.08
+    20.0    0.00   -0.09   -0.24   -0.42   -0.62   -0.82   -1.00   -1.14   -1.20   -1.11   -0.85   -0.39    0.22    0.82    1.20    1.19    0.76    0.13   -0.18
+    25.0    0.00   -0.09   -0.23   -0.41   -0.61   -0.82   -1.01   -1.16   -1.24   -1.17   -0.93   -0.47    0.13    0.73    1.14    1.16    0.76    0.14   -0.24
+    30.0    0.00   -0.09   -0.23   -0.41   -0.61   -0.81   -1.01   -1.18   -1.28   -1.25   -1.03   -0.59    0.01    0.62    1.05    1.10    0.74    0.14   -0.27
+    35.0    0.00   -0.09   -0.23   -0.40   -0.60   -0.80   -1.01   -1.21   -1.34   -1.35   -1.16   -0.74   -0.14    0.48    0.93    1.01    0.69    0.13   -0.28
+    40.0    0.00   -0.09   -0.22   -0.39   -0.58   -0.79   -1.01   -1.23   -1.40   -1.45   -1.30   -0.90   -0.31    0.32    0.78    0.88    0.59    0.08   -0.27
+    45.0    0.00   -0.09   -0.22   -0.38   -0.56   -0.77   -1.00   -1.24   -1.46   -1.56   -1.45   -1.08   -0.50    0.14    0.61    0.72    0.45   -0.01   -0.28
+    50.0    0.00   -0.08   -0.21   -0.37   -0.54   -0.74   -0.98   -1.26   -1.51   -1.66   -1.60   -1.26   -0.69   -0.05    0.42    0.53    0.27   -0.14   -0.31
+    55.0    0.00   -0.08   -0.20   -0.35   -0.52   -0.71   -0.96   -1.26   -1.56   -1.76   -1.74   -1.42   -0.86   -0.23    0.22    0.32    0.05   -0.32   -0.37
+    60.0    0.00   -0.07   -0.19   -0.34   -0.49   -0.68   -0.93   -1.24   -1.58   -1.83   -1.85   -1.57   -1.02   -0.40    0.04    0.10   -0.18   -0.53   -0.48
+    65.0    0.00   -0.07   -0.19   -0.32   -0.46   -0.64   -0.88   -1.22   -1.59   -1.88   -1.94   -1.68   -1.15   -0.54   -0.13   -0.10   -0.42   -0.76   -0.62
+    70.0    0.00   -0.07   -0.18   -0.30   -0.43   -0.59   -0.83   -1.17   -1.57   -1.89   -1.99   -1.75   -1.24   -0.65   -0.26   -0.28   -0.64   -0.99   -0.79
+    75.0    0.00   -0.06   -0.16   -0.28   -0.40   -0.54   -0.77   -1.11   -1.52   -1.87   -1.99   -1.78   -1.28   -0.71   -0.35   -0.42   -0.83   -1.20   -0.96
+    80.0    0.00   -0.05   -0.15   -0.26   -0.36   -0.49   -0.70   -1.04   -1.45   -1.82   -1.96   -1.76   -1.28   -0.72   -0.39   -0.50   -0.96   -1.36   -1.11
+    85.0    0.00   -0.05   -0.14   -0.24   -0.32   -0.43   -0.63   -0.95   -1.36   -1.74   -1.89   -1.70   -1.23   -0.68   -0.38   -0.53   -1.03   -1.46   -1.22
+    90.0    0.00   -0.04   -0.13   -0.21   -0.29   -0.38   -0.55   -0.86   -1.26   -1.63   -1.78   -1.61   -1.14   -0.60   -0.32   -0.49   -1.02   -1.48   -1.25
+    95.0    0.00   -0.04   -0.11   -0.19   -0.25   -0.32   -0.48   -0.77   -1.15   -1.51   -1.66   -1.48   -1.01   -0.49   -0.21   -0.39   -0.94   -1.42   -1.19
+   100.0    0.00   -0.03   -0.10   -0.17   -0.21   -0.27   -0.41   -0.68   -1.04   -1.38   -1.52   -1.33   -0.86   -0.34   -0.06   -0.24   -0.80   -1.27   -1.05
+   105.0    0.00   -0.02   -0.08   -0.14   -0.18   -0.23   -0.35   -0.59   -0.94   -1.26   -1.38   -1.18   -0.70   -0.16    0.12   -0.06   -0.60   -1.06   -0.81
+   110.0    0.00   -0.01   -0.07   -0.12   -0.15   -0.18   -0.29   -0.52   -0.85   -1.14   -1.24   -1.02   -0.53    0.02    0.31    0.15   -0.37   -0.79   -0.51
+   115.0    0.00   -0.01   -0.05   -0.09   -0.12   -0.15   -0.25   -0.47   -0.77   -1.04   -1.11   -0.87   -0.36    0.20    0.51    0.37   -0.12   -0.50   -0.16
+   120.0    0.00    0.00   -0.04   -0.07   -0.09   -0.11   -0.21   -0.42   -0.71   -0.96   -1.00   -0.73   -0.20    0.37    0.69    0.58    0.13   -0.20    0.19
+   125.0    0.00    0.01   -0.02   -0.05   -0.06   -0.08   -0.18   -0.39   -0.67   -0.90   -0.92   -0.62   -0.07    0.52    0.86    0.77    0.36    0.07    0.52
+   130.0    0.00    0.01   -0.01   -0.02   -0.03   -0.06   -0.16   -0.37   -0.65   -0.86   -0.85   -0.54    0.04    0.64    1.00    0.94    0.56    0.31    0.80
+   135.0    0.00    0.02    0.01    0.00    0.00   -0.03   -0.14   -0.36   -0.63   -0.83   -0.81   -0.48    0.11    0.73    1.11    1.08    0.73    0.49    1.00
+   140.0    0.00    0.03    0.03    0.02    0.02   -0.01   -0.13   -0.35   -0.63   -0.83   -0.79   -0.45    0.15    0.79    1.19    1.18    0.85    0.63    1.10
+   145.0    0.00    0.03    0.04    0.04    0.05    0.01   -0.12   -0.35   -0.63   -0.83   -0.79   -0.44    0.16    0.81    1.23    1.25    0.94    0.70    1.11
+   150.0    0.00    0.04    0.05    0.06    0.07    0.03   -0.11   -0.35   -0.63   -0.84   -0.81   -0.46    0.14    0.80    1.24    1.29    1.00    0.74    1.04
+   155.0    0.00    0.04    0.06    0.08    0.09    0.04   -0.10   -0.35   -0.64   -0.85   -0.83   -0.50    0.10    0.76    1.22    1.30    1.04    0.73    0.91
+   160.0    0.00    0.05    0.07    0.09    0.10    0.05   -0.09   -0.35   -0.65   -0.87   -0.87   -0.55    0.03    0.69    1.18    1.30    1.05    0.71    0.73
+   165.0    0.00    0.05    0.08    0.11    0.11    0.06   -0.09   -0.35   -0.67   -0.90   -0.91   -0.61   -0.05    0.61    1.12    1.28    1.06    0.68    0.54
+   170.0    0.00    0.05    0.09    0.11    0.12    0.06   -0.10   -0.37   -0.68   -0.92   -0.95   -0.68   -0.14    0.52    1.05    1.24    1.05    0.64    0.36
+   175.0    0.00    0.06    0.09    0.12    0.12    0.05   -0.11   -0.38   -0.70   -0.95   -0.99   -0.74   -0.22    0.42    0.96    1.20    1.03    0.60    0.21
+   180.0    0.00    0.06    0.09    0.11    0.11    0.04   -0.14   -0.41   -0.73   -0.98   -1.03   -0.80   -0.30    0.33    0.88    1.13    1.00    0.57    0.10
+   185.0    0.00    0.06    0.09    0.11    0.09    0.01   -0.17   -0.44   -0.76   -1.01   -1.07   -0.85   -0.37    0.25    0.79    1.06    0.95    0.53    0.02
+   190.0    0.00    0.06    0.09    0.10    0.07   -0.02   -0.21   -0.49   -0.80   -1.04   -1.10   -0.89   -0.43    0.17    0.70    0.97    0.88    0.47   -0.02
+   195.0    0.00    0.05    0.08    0.08    0.05   -0.06   -0.25   -0.53   -0.84   -1.08   -1.13   -0.92   -0.47    0.10    0.61    0.87    0.78    0.40   -0.05
+   200.0    0.00    0.05    0.07    0.07    0.02   -0.10   -0.30   -0.58   -0.88   -1.11   -1.15   -0.94   -0.50    0.04    0.52    0.75    0.65    0.31   -0.07
+   205.0    0.00    0.05    0.06    0.05   -0.01   -0.14   -0.35   -0.63   -0.92   -1.14   -1.17   -0.96   -0.53   -0.01    0.43    0.62    0.51    0.18   -0.10
+   210.0    0.00    0.05    0.05    0.03   -0.04   -0.18   -0.39   -0.67   -0.96   -1.17   -1.19   -0.98   -0.56   -0.06    0.34    0.48    0.34    0.04   -0.14
+   215.0    0.00    0.04    0.04    0.01   -0.07   -0.21   -0.43   -0.71   -0.99   -1.20   -1.22   -1.01   -0.59   -0.12    0.25    0.35    0.17   -0.13   -0.21
+   220.0    0.00    0.04    0.03   -0.02   -0.10   -0.25   -0.46   -0.74   -1.02   -1.23   -1.25   -1.04   -0.63   -0.17    0.16    0.21   -0.01   -0.30   -0.30
+   225.0    0.00    0.03    0.02   -0.04   -0.13   -0.27   -0.49   -0.76   -1.05   -1.26   -1.29   -1.09   -0.69   -0.23    0.08    0.09   -0.16   -0.46   -0.40
+   230.0    0.00    0.03    0.00   -0.06   -0.16   -0.30   -0.50   -0.78   -1.07   -1.30   -1.34   -1.15   -0.75   -0.30    0.00   -0.01   -0.30   -0.60   -0.50
+   235.0    0.00    0.02   -0.01   -0.08   -0.18   -0.31   -0.51   -0.79   -1.09   -1.34   -1.40   -1.22   -0.82   -0.36   -0.06   -0.08   -0.39   -0.72   -0.58
+   240.0    0.00    0.01   -0.03   -0.10   -0.20   -0.33   -0.52   -0.80   -1.12   -1.38   -1.47   -1.30   -0.90   -0.42   -0.10   -0.12   -0.45   -0.79   -0.64
+   245.0    0.00    0.01   -0.04   -0.12   -0.22   -0.34   -0.53   -0.81   -1.14   -1.43   -1.55   -1.39   -0.97   -0.47   -0.12   -0.13   -0.46   -0.81   -0.66
+   250.0    0.00    0.00   -0.06   -0.14   -0.24   -0.36   -0.54   -0.82   -1.17   -1.49   -1.63   -1.47   -1.04   -0.50   -0.12   -0.10   -0.44   -0.80   -0.64
+   255.0    0.00   -0.01   -0.07   -0.16   -0.26   -0.37   -0.56   -0.85   -1.21   -1.55   -1.70   -1.54   -1.08   -0.50   -0.08   -0.04   -0.38   -0.74   -0.58
+   260.0    0.00   -0.01   -0.08   -0.18   -0.28   -0.39   -0.58   -0.87   -1.25   -1.60   -1.76   -1.59   -1.09   -0.47   -0.01    0.05   -0.28   -0.66   -0.49
+   265.0    0.00   -0.02   -0.10   -0.20   -0.30   -0.41   -0.60   -0.91   -1.30   -1.65   -1.80   -1.61   -1.08   -0.41    0.09    0.16   -0.18   -0.55   -0.38
+   270.0    0.00   -0.03   -0.11   -0.21   -0.32   -0.44   -0.63   -0.94   -1.34   -1.69   -1.83   -1.60   -1.02   -0.31    0.21    0.29   -0.06   -0.44   -0.25
+   275.0    0.00   -0.03   -0.12   -0.23   -0.34   -0.47   -0.67   -0.98   -1.37   -1.72   -1.82   -1.56   -0.93   -0.18    0.36    0.44    0.07   -0.34   -0.13
+   280.0    0.00   -0.04   -0.13   -0.25   -0.37   -0.50   -0.70   -1.02   -1.40   -1.72   -1.80   -1.48   -0.82   -0.03    0.53    0.59    0.19   -0.24   -0.02
+   285.0    0.00   -0.04   -0.15   -0.27   -0.39   -0.53   -0.74   -1.05   -1.42   -1.71   -1.74   -1.38   -0.67    0.14    0.69    0.73    0.30   -0.16    0.08
+   290.0    0.00   -0.05   -0.16   -0.29   -0.41   -0.56   -0.77   -1.07   -1.42   -1.68   -1.67   -1.26   -0.52    0.31    0.86    0.87    0.39   -0.09    0.16
+   295.0    0.00   -0.06   -0.17   -0.30   -0.44   -0.59   -0.80   -1.09   -1.41   -1.63   -1.58   -1.13   -0.36    0.48    1.02    0.99    0.48   -0.03    0.23
+   300.0    0.00   -0.06   -0.18   -0.32   -0.46   -0.61   -0.82   -1.10   -1.39   -1.57   -1.48   -1.00   -0.21    0.63    1.15    1.10    0.55    0.01    0.29
+   305.0    0.00   -0.07   -0.19   -0.33   -0.48   -0.64   -0.84   -1.10   -1.36   -1.51   -1.37   -0.87   -0.07    0.76    1.26    1.18    0.61    0.05    0.35
+   310.0    0.00   -0.07   -0.19   -0.34   -0.50   -0.66   -0.85   -1.09   -1.32   -1.43   -1.27   -0.75    0.05    0.86    1.34    1.25    0.65    0.09    0.41
+   315.0    0.00   -0.07   -0.20   -0.35   -0.51   -0.67   -0.86   -1.08   -1.28   -1.36   -1.18   -0.65    0.14    0.93    1.39    1.28    0.69    0.13    0.48
+   320.0    0.00   -0.08   -0.21   -0.36   -0.53   -0.69   -0.87   -1.07   -1.24   -1.29   -1.09   -0.57    0.20    0.97    1.42    1.30    0.71    0.16    0.55
+   325.0    0.00   -0.08   -0.21   -0.37   -0.54   -0.70   -0.87   -1.06   -1.21   -1.23   -1.02   -0.50    0.25    0.99    1.42    1.30    0.72    0.19    0.62
+   330.0    0.00   -0.08   -0.22   -0.38   -0.55   -0.72   -0.88   -1.05   -1.18   -1.18   -0.96   -0.45    0.27    0.99    1.40    1.28    0.72    0.21    0.67
+   335.0    0.00   -0.09   -0.22   -0.39   -0.56   -0.73   -0.89   -1.04   -1.15   -1.14   -0.91   -0.41    0.29    0.98    1.37    1.26    0.71    0.22    0.70
+   340.0    0.00   -0.09   -0.23   -0.40   -0.58   -0.75   -0.90   -1.04   -1.14   -1.11   -0.87   -0.38    0.30    0.96    1.34    1.23    0.70    0.22    0.70
+   345.0    0.00   -0.09   -0.23   -0.40   -0.59   -0.76   -0.92   -1.05   -1.13   -1.08   -0.83   -0.35    0.31    0.95    1.31    1.20    0.68    0.21    0.66
+   350.0    0.00   -0.09   -0.23   -0.41   -0.60   -0.77   -0.93   -1.06   -1.12   -1.06   -0.80   -0.33    0.31    0.94    1.29    1.18    0.67    0.19    0.59
+   355.0    0.00   -0.09   -0.24   -0.41   -0.60   -0.79   -0.95   -1.07   -1.12   -1.04   -0.78   -0.30    0.32    0.93    1.27    1.17    0.67    0.17    0.47
+   360.0    0.00   -0.10   -0.24   -0.42   -0.61   -0.80   -0.96   -1.08   -1.12   -1.03   -0.76   -0.29    0.33    0.92    1.27    1.17    0.67    0.14    0.34
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+LEIGS15         NONE                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               5    28-JAN-10 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+     -0.81     -0.49    202.05                              NORTH / EAST / UP   
+   NOAZI    0.00    0.04    0.11    0.14    0.05   -0.18   -0.50   -0.81   -1.03   -1.10   -1.08   -1.02   -0.97   -0.92   -0.73   -0.27    0.52    1.52    2.40
+     0.0    0.00    0.00    0.12    0.27    0.31    0.15   -0.19   -0.57   -0.80   -0.77   -0.52   -0.24   -0.12   -0.21   -0.24    0.23    1.54    3.43    4.64
+     5.0    0.00   -0.01    0.10    0.24    0.29    0.13   -0.20   -0.58   -0.81   -0.79   -0.54   -0.26   -0.16   -0.27   -0.34    0.06    1.32    3.23    4.67
+    10.0    0.00   -0.02    0.08    0.22    0.25    0.10   -0.23   -0.60   -0.84   -0.83   -0.59   -0.32   -0.22   -0.34   -0.46   -0.14    1.02    2.90    4.55
+    15.0    0.00   -0.02    0.06    0.19    0.22    0.07   -0.25   -0.63   -0.88   -0.89   -0.67   -0.41   -0.30   -0.42   -0.58   -0.35    0.68    2.50    4.30
+    20.0    0.00   -0.03    0.04    0.15    0.19    0.04   -0.28   -0.67   -0.94   -0.97   -0.78   -0.52   -0.41   -0.52   -0.69   -0.54    0.34    2.04    3.93
+    25.0    0.00   -0.04    0.02    0.12    0.15    0.00   -0.32   -0.70   -0.99   -1.06   -0.90   -0.66   -0.53   -0.62   -0.80   -0.71    0.04    1.57    3.47
+    30.0    0.00   -0.05    0.00    0.09    0.11   -0.04   -0.35   -0.74   -1.05   -1.14   -1.02   -0.81   -0.68   -0.73   -0.88   -0.83   -0.21    1.15    2.95
+    35.0    0.00   -0.06   -0.02    0.06    0.07   -0.08   -0.38   -0.77   -1.09   -1.22   -1.15   -0.96   -0.83   -0.85   -0.96   -0.90   -0.37    0.80    2.44
+    40.0    0.00   -0.06   -0.04    0.02    0.03   -0.12   -0.42   -0.80   -1.13   -1.29   -1.25   -1.11   -0.98   -0.96   -1.01   -0.93   -0.45    0.56    1.97
+    45.0    0.00   -0.07   -0.06   -0.01   -0.02   -0.16   -0.45   -0.82   -1.15   -1.34   -1.34   -1.24   -1.13   -1.08   -1.06   -0.92   -0.46    0.42    1.59
+    50.0    0.00   -0.07   -0.07   -0.04   -0.06   -0.21   -0.49   -0.85   -1.17   -1.37   -1.41   -1.35   -1.26   -1.20   -1.11   -0.89   -0.40    0.38    1.31
+    55.0    0.00   -0.08   -0.09   -0.07   -0.11   -0.26   -0.54   -0.88   -1.18   -1.38   -1.45   -1.43   -1.37   -1.30   -1.17   -0.86   -0.32    0.42    1.16
+    60.0    0.00   -0.08   -0.10   -0.10   -0.15   -0.31   -0.59   -0.91   -1.19   -1.38   -1.46   -1.48   -1.46   -1.40   -1.23   -0.85   -0.23    0.51    1.12
+    65.0    0.00   -0.08   -0.11   -0.12   -0.20   -0.37   -0.64   -0.95   -1.21   -1.38   -1.46   -1.50   -1.52   -1.49   -1.30   -0.86   -0.17    0.61    1.17
+    70.0    0.00   -0.08   -0.11   -0.14   -0.24   -0.43   -0.71   -1.00   -1.23   -1.37   -1.44   -1.50   -1.55   -1.56   -1.38   -0.91   -0.15    0.70    1.28
+    75.0    0.00   -0.08   -0.12   -0.16   -0.28   -0.49   -0.78   -1.06   -1.27   -1.37   -1.42   -1.47   -1.56   -1.60   -1.46   -0.99   -0.19    0.74    1.40
+    80.0    0.00   -0.08   -0.12   -0.17   -0.31   -0.55   -0.85   -1.13   -1.31   -1.39   -1.40   -1.44   -1.54   -1.62   -1.53   -1.09   -0.27    0.72    1.50
+    85.0    0.00   -0.07   -0.11   -0.18   -0.33   -0.60   -0.92   -1.20   -1.37   -1.41   -1.38   -1.39   -1.49   -1.61   -1.57   -1.18   -0.39    0.65    1.55
+    90.0    0.00   -0.07   -0.11   -0.18   -0.35   -0.64   -0.98   -1.27   -1.42   -1.43   -1.37   -1.35   -1.44   -1.57   -1.58   -1.26   -0.51    0.53    1.53
+    95.0    0.00   -0.06   -0.10   -0.17   -0.36   -0.66   -1.02   -1.32   -1.48   -1.47   -1.37   -1.31   -1.37   -1.50   -1.54   -1.29   -0.62    0.38    1.45
+   100.0    0.00   -0.05   -0.08   -0.16   -0.35   -0.67   -1.04   -1.36   -1.52   -1.50   -1.38   -1.28   -1.30   -1.40   -1.45   -1.25   -0.67    0.25    1.32
+   105.0    0.00   -0.05   -0.07   -0.14   -0.33   -0.66   -1.05   -1.37   -1.54   -1.52   -1.38   -1.25   -1.22   -1.28   -1.31   -1.15   -0.66    0.15    1.16
+   110.0    0.00   -0.04   -0.05   -0.11   -0.31   -0.64   -1.03   -1.36   -1.53   -1.52   -1.38   -1.22   -1.14   -1.14   -1.13   -0.97   -0.56    0.13    1.02
+   115.0    0.00   -0.03   -0.03   -0.09   -0.27   -0.59   -0.98   -1.32   -1.50   -1.50   -1.37   -1.19   -1.06   -0.98   -0.90   -0.72   -0.36    0.18    0.92
+   120.0    0.00   -0.02    0.00   -0.05   -0.23   -0.54   -0.92   -1.25   -1.45   -1.46   -1.34   -1.16   -0.98   -0.83   -0.66   -0.42   -0.09    0.34    0.91
+   125.0    0.00   -0.01    0.02   -0.02   -0.18   -0.48   -0.84   -1.17   -1.36   -1.40   -1.30   -1.12   -0.91   -0.68   -0.41   -0.10    0.23    0.57    0.99
+   130.0    0.00    0.01    0.04    0.02   -0.14   -0.42   -0.76   -1.07   -1.26   -1.31   -1.23   -1.06   -0.83   -0.54   -0.18    0.22    0.59    0.88    1.18
+   135.0    0.00    0.02    0.06    0.05   -0.09   -0.35   -0.68   -0.96   -1.15   -1.20   -1.15   -1.00   -0.76   -0.42    0.03    0.52    0.95    1.23    1.45
+   140.0    0.00    0.03    0.09    0.08   -0.05   -0.30   -0.60   -0.86   -1.03   -1.09   -1.05   -0.92   -0.69   -0.32    0.19    0.77    1.27    1.59    1.80
+   145.0    0.00    0.04    0.11    0.11   -0.01   -0.25   -0.53   -0.77   -0.92   -0.97   -0.94   -0.84   -0.62   -0.24    0.31    0.95    1.53    1.92    2.18
+   150.0    0.00    0.05    0.13    0.14    0.02   -0.21   -0.47   -0.69   -0.82   -0.86   -0.83   -0.75   -0.56   -0.19    0.37    1.07    1.72    2.20    2.55
+   155.0    0.00    0.06    0.15    0.16    0.05   -0.18   -0.43   -0.63   -0.73   -0.75   -0.73   -0.67   -0.50   -0.17    0.39    1.11    1.83    2.40    2.87
+   160.0    0.00    0.07    0.16    0.18    0.06   -0.16   -0.40   -0.58   -0.66   -0.67   -0.64   -0.59   -0.46   -0.16    0.37    1.09    1.85    2.52    3.12
+   165.0    0.00    0.08    0.18    0.19    0.08   -0.15   -0.38   -0.55   -0.61   -0.60   -0.56   -0.53   -0.43   -0.17    0.32    1.02    1.80    2.54    3.26
+   170.0    0.00    0.09    0.19    0.21    0.09   -0.14   -0.38   -0.53   -0.58   -0.55   -0.51   -0.48   -0.41   -0.20    0.25    0.91    1.69    2.48    3.30
+   175.0    0.00    0.09    0.20    0.22    0.09   -0.14   -0.37   -0.52   -0.56   -0.52   -0.47   -0.45   -0.40   -0.23    0.16    0.78    1.55    2.36    3.23
+   180.0    0.00    0.10    0.21    0.22    0.09   -0.14   -0.37   -0.52   -0.55   -0.50   -0.45   -0.43   -0.41   -0.28    0.06    0.64    1.37    2.18    3.07
+   185.0    0.00    0.11    0.22    0.23    0.10   -0.14   -0.37   -0.52   -0.54   -0.49   -0.45   -0.44   -0.44   -0.34   -0.04    0.49    1.19    1.97    2.84
+   190.0    0.00    0.11    0.22    0.23    0.10   -0.13   -0.37   -0.51   -0.54   -0.50   -0.46   -0.46   -0.48   -0.41   -0.15    0.34    1.00    1.75    2.58
+   195.0    0.00    0.11    0.23    0.23    0.10   -0.13   -0.36   -0.51   -0.54   -0.51   -0.48   -0.50   -0.54   -0.50   -0.26    0.19    0.82    1.53    2.30
+   200.0    0.00    0.12    0.23    0.24    0.10   -0.13   -0.36   -0.51   -0.55   -0.53   -0.52   -0.56   -0.62   -0.60   -0.39    0.04    0.64    1.32    2.04
+   205.0    0.00    0.12    0.23    0.24    0.10   -0.13   -0.36   -0.51   -0.56   -0.56   -0.56   -0.63   -0.71   -0.72   -0.54   -0.12    0.47    1.13    1.81
+   210.0    0.00    0.12    0.23    0.23    0.10   -0.13   -0.36   -0.52   -0.58   -0.59   -0.62   -0.71   -0.82   -0.85   -0.69   -0.29    0.30    0.96    1.60
+   215.0    0.00    0.12    0.23    0.23    0.10   -0.13   -0.37   -0.54   -0.62   -0.64   -0.69   -0.80   -0.95   -1.01   -0.87   -0.47    0.14    0.82    1.44
+   220.0    0.00    0.12    0.23    0.23    0.09   -0.14   -0.39   -0.57   -0.66   -0.70   -0.77   -0.91   -1.08   -1.17   -1.05   -0.65   -0.01    0.70    1.30
+   225.0    0.00    0.13    0.23    0.22    0.08   -0.16   -0.41   -0.61   -0.72   -0.78   -0.87   -1.03   -1.23   -1.35   -1.23   -0.81   -0.13    0.61    1.19
+   230.0    0.00    0.12    0.22    0.22    0.07   -0.18   -0.45   -0.66   -0.78   -0.86   -0.97   -1.16   -1.39   -1.52   -1.41   -0.96   -0.23    0.56    1.10
+   235.0    0.00    0.12    0.22    0.21    0.06   -0.20   -0.48   -0.71   -0.86   -0.96   -1.09   -1.30   -1.54   -1.69   -1.57   -1.07   -0.28    0.54    1.03
+   240.0    0.00    0.12    0.22    0.21    0.05   -0.22   -0.52   -0.77   -0.93   -1.06   -1.21   -1.44   -1.70   -1.84   -1.69   -1.14   -0.29    0.56    0.98
+   245.0    0.00    0.12    0.22    0.20    0.05   -0.23   -0.55   -0.82   -1.01   -1.15   -1.33   -1.57   -1.84   -1.97   -1.78   -1.16   -0.24    0.62    0.95
+   250.0    0.00    0.12    0.21    0.20    0.04   -0.24   -0.58   -0.87   -1.08   -1.25   -1.44   -1.70   -1.96   -2.07   -1.82   -1.13   -0.15    0.71    0.95
+   255.0    0.00    0.12    0.21    0.20    0.05   -0.25   -0.59   -0.91   -1.14   -1.33   -1.54   -1.81   -2.06   -2.13   -1.82   -1.06   -0.03    0.84    0.99
+   260.0    0.00    0.12    0.21    0.21    0.05   -0.24   -0.60   -0.93   -1.19   -1.41   -1.63   -1.89   -2.12   -2.15   -1.78   -0.96    0.12    0.98    1.07
+   265.0    0.00    0.11    0.21    0.22    0.07   -0.23   -0.60   -0.95   -1.23   -1.46   -1.69   -1.94   -2.14   -2.12   -1.70   -0.83    0.27    1.13    1.20
+   270.0    0.00    0.11    0.21    0.23    0.08   -0.21   -0.58   -0.95   -1.26   -1.50   -1.73   -1.96   -2.12   -2.06   -1.60   -0.71    0.40    1.26    1.36
+   275.0    0.00    0.11    0.22    0.24    0.11   -0.18   -0.56   -0.95   -1.27   -1.53   -1.75   -1.95   -2.07   -1.96   -1.48   -0.59    0.51    1.37    1.55
+   280.0    0.00    0.11    0.22    0.25    0.14   -0.14   -0.53   -0.93   -1.28   -1.54   -1.74   -1.90   -1.97   -1.83   -1.35   -0.49    0.57    1.45    1.76
+   285.0    0.00    0.10    0.22    0.27    0.17   -0.11   -0.50   -0.92   -1.28   -1.54   -1.71   -1.82   -1.84   -1.67   -1.22   -0.42    0.58    1.49    1.96
+   290.0    0.00    0.10    0.22    0.28    0.20   -0.07   -0.47   -0.90   -1.27   -1.52   -1.66   -1.71   -1.68   -1.50   -1.09   -0.37    0.57    1.49    2.14
+   295.0    0.00    0.09    0.22    0.30    0.23   -0.03   -0.43   -0.89   -1.27   -1.50   -1.59   -1.58   -1.50   -1.32   -0.96   -0.34    0.52    1.48    2.29
+   300.0    0.00    0.09    0.23    0.32    0.26    0.01   -0.40   -0.87   -1.25   -1.47   -1.51   -1.44   -1.31   -1.14   -0.84   -0.32    0.48    1.47    2.42
+   305.0    0.00    0.09    0.23    0.33    0.29    0.04   -0.38   -0.85   -1.24   -1.43   -1.43   -1.29   -1.13   -0.96   -0.73   -0.29    0.46    1.47    2.51
+   310.0    0.00    0.08    0.23    0.34    0.32    0.08   -0.35   -0.83   -1.22   -1.39   -1.33   -1.14   -0.94   -0.79   -0.62   -0.24    0.48    1.53    2.60
+   315.0    0.00    0.07    0.22    0.35    0.34    0.10   -0.32   -0.81   -1.19   -1.33   -1.23   -1.00   -0.77   -0.64   -0.51   -0.17    0.55    1.64    2.69
+   320.0    0.00    0.07    0.22    0.36    0.35    0.13   -0.30   -0.78   -1.15   -1.26   -1.13   -0.86   -0.62   -0.50   -0.40   -0.08    0.69    1.82    2.79
+   325.0    0.00    0.06    0.21    0.36    0.37    0.15   -0.27   -0.75   -1.10   -1.19   -1.02   -0.72   -0.49   -0.39   -0.30    0.04    0.87    2.07    2.94
+   330.0    0.00    0.05    0.21    0.36    0.37    0.17   -0.25   -0.72   -1.05   -1.11   -0.91   -0.60   -0.37   -0.29   -0.22    0.16    1.09    2.37    3.14
+   335.0    0.00    0.05    0.20    0.35    0.38    0.18   -0.22   -0.68   -0.99   -1.03   -0.81   -0.49   -0.28   -0.22   -0.15    0.28    1.31    2.69    3.39
+   340.0    0.00    0.04    0.18    0.34    0.37    0.18   -0.20   -0.64   -0.93   -0.94   -0.71   -0.40   -0.21   -0.18   -0.11    0.37    1.51    3.00    3.68
+   345.0    0.00    0.03    0.17    0.33    0.37    0.19   -0.19   -0.61   -0.88   -0.87   -0.63   -0.33   -0.16   -0.15   -0.09    0.42    1.65    3.26    3.98
+   350.0    0.00    0.02    0.16    0.31    0.35    0.18   -0.18   -0.58   -0.84   -0.82   -0.57   -0.27   -0.12   -0.15   -0.11    0.42    1.72    3.44    4.27
+   355.0    0.00    0.01    0.14    0.29    0.33    0.17   -0.18   -0.57   -0.81   -0.78   -0.53   -0.24   -0.11   -0.17   -0.16    0.36    1.68    3.50    4.50
+   360.0    0.00    0.00    0.12    0.27    0.31    0.15   -0.19   -0.57   -0.80   -0.77   -0.52   -0.24   -0.12   -0.21   -0.24    0.23    1.54    3.43    4.64
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.76      2.14    200.73                              NORTH / EAST / UP   
+   NOAZI    0.00    0.07    0.23    0.33    0.25   -0.06   -0.48   -0.84   -0.99   -0.88   -0.64   -0.44   -0.41   -0.50   -0.52   -0.20    0.52    1.40    1.84
+     0.0    0.00   -0.03    0.09    0.27    0.37    0.27   -0.02   -0.38   -0.63   -0.65   -0.44   -0.14    0.07    0.10   -0.01   -0.04    0.21    0.70    0.91
+     5.0    0.00   -0.03    0.09    0.27    0.36    0.26   -0.03   -0.39   -0.65   -0.70   -0.53   -0.27   -0.10   -0.10   -0.23   -0.28   -0.05    0.43    0.71
+    10.0    0.00   -0.02    0.10    0.27    0.36    0.25   -0.04   -0.40   -0.68   -0.75   -0.62   -0.42   -0.29   -0.34   -0.48   -0.53   -0.30    0.18    0.49
+    15.0    0.00   -0.02    0.10    0.27    0.35    0.23   -0.06   -0.42   -0.70   -0.80   -0.71   -0.57   -0.51   -0.59   -0.75   -0.79   -0.54   -0.06    0.27
+    20.0    0.00   -0.01    0.11    0.27    0.33    0.21   -0.09   -0.45   -0.73   -0.84   -0.80   -0.71   -0.72   -0.85   -1.01   -1.03   -0.75   -0.27    0.05
+    25.0    0.00    0.00    0.12    0.27    0.32    0.18   -0.12   -0.48   -0.76   -0.88   -0.87   -0.84   -0.91   -1.09   -1.26   -1.24   -0.93   -0.43   -0.15
+    30.0    0.00    0.01    0.13    0.27    0.31    0.15   -0.16   -0.52   -0.78   -0.90   -0.92   -0.95   -1.08   -1.31   -1.49   -1.43   -1.05   -0.54   -0.31
+    35.0    0.00    0.02    0.14    0.28    0.29    0.12   -0.21   -0.56   -0.81   -0.92   -0.95   -1.02   -1.22   -1.49   -1.67   -1.57   -1.14   -0.60   -0.43
+    40.0    0.00    0.03    0.16    0.29    0.28    0.09   -0.25   -0.60   -0.83   -0.92   -0.95   -1.06   -1.30   -1.62   -1.82   -1.67   -1.18   -0.61   -0.48
+    45.0    0.00    0.04    0.18    0.30    0.28    0.06   -0.30   -0.64   -0.86   -0.92   -0.94   -1.06   -1.34   -1.70   -1.91   -1.74   -1.18   -0.56   -0.47
+    50.0    0.00    0.05    0.20    0.32    0.28    0.03   -0.34   -0.69   -0.88   -0.91   -0.91   -1.02   -1.33   -1.73   -1.95   -1.76   -1.15   -0.48   -0.39
+    55.0    0.00    0.06    0.22    0.34    0.28    0.01   -0.38   -0.73   -0.91   -0.90   -0.86   -0.96   -1.28   -1.70   -1.95   -1.75   -1.09   -0.36   -0.25
+    60.0    0.00    0.08    0.24    0.36    0.29    0.00   -0.41   -0.77   -0.93   -0.89   -0.80   -0.87   -1.18   -1.63   -1.90   -1.71   -1.02   -0.23   -0.06
+    65.0    0.00    0.09    0.27    0.39    0.31    0.00   -0.44   -0.81   -0.96   -0.88   -0.74   -0.77   -1.06   -1.52   -1.82   -1.64   -0.93   -0.09    0.16
+    70.0    0.00    0.10    0.29    0.42    0.34    0.01   -0.45   -0.84   -0.98   -0.87   -0.68   -0.65   -0.92   -1.38   -1.70   -1.55   -0.84    0.05    0.39
+    75.0    0.00    0.12    0.32    0.46    0.37    0.03   -0.46   -0.86   -1.00   -0.86   -0.62   -0.54   -0.76   -1.21   -1.55   -1.44   -0.74    0.18    0.62
+    80.0    0.00    0.13    0.35    0.50    0.41    0.06   -0.45   -0.87   -1.01   -0.85   -0.57   -0.42   -0.59   -1.02   -1.38   -1.30   -0.63    0.31    0.83
+    85.0    0.00    0.14    0.38    0.54    0.45    0.09   -0.43   -0.86   -1.01   -0.84   -0.51   -0.31   -0.42   -0.81   -1.18   -1.14   -0.50    0.45    1.03
+    90.0    0.00    0.16    0.40    0.57    0.50    0.13   -0.40   -0.85   -1.01   -0.82   -0.46   -0.20   -0.25   -0.60   -0.96   -0.94   -0.35    0.59    1.21
+    95.0    0.00    0.17    0.43    0.61    0.54    0.18   -0.36   -0.82   -0.99   -0.80   -0.40   -0.09   -0.08   -0.37   -0.71   -0.71   -0.16    0.74    1.38
+   100.0    0.00    0.18    0.45    0.65    0.59    0.22   -0.32   -0.79   -0.96   -0.76   -0.34    0.02    0.09   -0.14   -0.45   -0.46    0.06    0.93    1.56
+   105.0    0.00    0.19    0.47    0.68    0.63    0.27   -0.27   -0.75   -0.92   -0.72   -0.28    0.12    0.26    0.09   -0.18   -0.18    0.31    1.14    1.74
+   110.0    0.00    0.20    0.49    0.70    0.66    0.31   -0.23   -0.70   -0.88   -0.68   -0.22    0.22    0.41    0.31    0.10    0.12    0.59    1.39    1.95
+   115.0    0.00    0.21    0.51    0.72    0.68    0.34   -0.19   -0.66   -0.83   -0.63   -0.17    0.31    0.55    0.52    0.37    0.42    0.90    1.67    2.19
+   120.0    0.00    0.21    0.52    0.74    0.70    0.36   -0.16   -0.62   -0.79   -0.59   -0.12    0.38    0.67    0.70    0.61    0.71    1.20    1.96    2.47
+   125.0    0.00    0.22    0.53    0.74    0.71    0.37   -0.13   -0.58   -0.75   -0.55   -0.08    0.43    0.76    0.84    0.82    0.97    1.49    2.25    2.76
+   130.0    0.00    0.22    0.53    0.74    0.71    0.38   -0.12   -0.56   -0.73   -0.53   -0.06    0.46    0.82    0.94    0.98    1.19    1.73    2.52    3.06
+   135.0    0.00    0.22    0.53    0.74    0.70    0.37   -0.12   -0.55   -0.71   -0.52   -0.06    0.45    0.82    0.99    1.08    1.34    1.93    2.75    3.36
+   140.0    0.00    0.22    0.53    0.73    0.68    0.35   -0.13   -0.56   -0.72   -0.53   -0.09    0.41    0.79    0.98    1.11    1.41    2.04    2.92    3.62
+   145.0    0.00    0.22    0.52    0.71    0.65    0.32   -0.16   -0.57   -0.73   -0.56   -0.15    0.33    0.70    0.90    1.06    1.40    2.07    3.01    3.83
+   150.0    0.00    0.22    0.51    0.69    0.62    0.29   -0.19   -0.60   -0.77   -0.62   -0.23    0.22    0.56    0.76    0.94    1.30    2.01    3.02    3.96
+   155.0    0.00    0.22    0.50    0.66    0.58    0.25   -0.22   -0.64   -0.81   -0.69   -0.34    0.07    0.39    0.58    0.75    1.13    1.86    2.93    4.01
+   160.0    0.00    0.21    0.48    0.63    0.55    0.21   -0.27   -0.68   -0.87   -0.78   -0.47   -0.10    0.18    0.34    0.51    0.89    1.63    2.75    3.96
+   165.0    0.00    0.21    0.46    0.60    0.50    0.16   -0.32   -0.74   -0.94   -0.87   -0.61   -0.29   -0.05    0.08    0.23    0.59    1.34    2.50    3.83
+   170.0    0.00    0.20    0.44    0.57    0.46    0.11   -0.37   -0.80   -1.02   -0.98   -0.75   -0.48   -0.28   -0.19   -0.07    0.27    1.01    2.19    3.62
+   175.0    0.00    0.19    0.42    0.54    0.41    0.05   -0.43   -0.86   -1.10   -1.08   -0.89   -0.66   -0.51   -0.45   -0.37   -0.07    0.66    1.85    3.34
+   180.0    0.00    0.18    0.40    0.50    0.37    0.00   -0.50   -0.94   -1.18   -1.19   -1.02   -0.83   -0.72   -0.70   -0.66   -0.39    0.31    1.50    3.03
+   185.0    0.00    0.17    0.38    0.46    0.31   -0.07   -0.57   -1.02   -1.27   -1.28   -1.14   -0.97   -0.89   -0.92   -0.92   -0.68    0.00    1.18    2.70
+   190.0    0.00    0.16    0.36    0.43    0.26   -0.13   -0.65   -1.10   -1.36   -1.37   -1.23   -1.08   -1.04   -1.10   -1.14   -0.93   -0.27    0.89    2.38
+   195.0    0.00    0.15    0.33    0.39    0.21   -0.20   -0.73   -1.19   -1.44   -1.45   -1.31   -1.16   -1.14   -1.24   -1.31   -1.13   -0.48    0.66    2.09
+   200.0    0.00    0.14    0.31    0.35    0.15   -0.28   -0.82   -1.28   -1.53   -1.52   -1.36   -1.21   -1.20   -1.33   -1.43   -1.26   -0.62    0.50    1.84
+   205.0    0.00    0.13    0.28    0.31    0.09   -0.35   -0.91   -1.37   -1.61   -1.57   -1.39   -1.23   -1.23   -1.39   -1.51   -1.34   -0.68    0.41    1.65
+   210.0    0.00    0.12    0.26    0.27    0.04   -0.43   -1.00   -1.46   -1.67   -1.61   -1.39   -1.22   -1.24   -1.41   -1.54   -1.35   -0.68    0.40    1.50
+   215.0    0.00    0.11    0.24    0.23   -0.02   -0.50   -1.08   -1.54   -1.73   -1.63   -1.38   -1.20   -1.21   -1.40   -1.53   -1.32   -0.60    0.46    1.42
+   220.0    0.00    0.10    0.21    0.20   -0.07   -0.57   -1.16   -1.61   -1.77   -1.63   -1.35   -1.15   -1.18   -1.37   -1.49   -1.24   -0.47    0.58    1.39
+   225.0    0.00    0.08    0.19    0.16   -0.12   -0.63   -1.22   -1.66   -1.79   -1.62   -1.31   -1.10   -1.13   -1.33   -1.43   -1.12   -0.30    0.76    1.40
+   230.0    0.00    0.07    0.17    0.13   -0.16   -0.68   -1.26   -1.69   -1.79   -1.58   -1.25   -1.04   -1.08   -1.28   -1.35   -0.98   -0.08    0.97    1.46
+   235.0    0.00    0.06    0.15    0.11   -0.19   -0.71   -1.29   -1.69   -1.76   -1.53   -1.18   -0.97   -1.03   -1.23   -1.26   -0.81    0.15    1.20    1.56
+   240.0    0.00    0.05    0.13    0.09   -0.21   -0.73   -1.29   -1.67   -1.71   -1.46   -1.10   -0.90   -0.97   -1.17   -1.16   -0.63    0.40    1.46    1.69
+   245.0    0.00    0.04    0.12    0.07   -0.22   -0.73   -1.27   -1.62   -1.64   -1.37   -1.02   -0.84   -0.92   -1.11   -1.05   -0.45    0.65    1.72    1.86
+   250.0    0.00    0.03    0.11    0.06   -0.22   -0.71   -1.23   -1.55   -1.55   -1.27   -0.93   -0.77   -0.87   -1.04   -0.94   -0.26    0.90    1.97    2.05
+   255.0    0.00    0.02    0.09    0.05   -0.21   -0.67   -1.17   -1.46   -1.44   -1.16   -0.84   -0.70   -0.82   -0.98   -0.82   -0.08    1.14    2.22    2.26
+   260.0    0.00    0.01    0.08    0.05   -0.19   -0.63   -1.09   -1.36   -1.32   -1.05   -0.75   -0.64   -0.77   -0.91   -0.71    0.09    1.35    2.44    2.48
+   265.0    0.00    0.01    0.08    0.06   -0.17   -0.57   -1.00   -1.25   -1.21   -0.95   -0.67   -0.58   -0.71   -0.84   -0.60    0.24    1.54    2.64    2.70
+   270.0    0.00    0.00    0.07    0.07   -0.13   -0.51   -0.90   -1.13   -1.09   -0.85   -0.60   -0.53   -0.66   -0.76   -0.49    0.38    1.69    2.82    2.92
+   275.0    0.00   -0.01    0.07    0.08   -0.09   -0.43   -0.80   -1.02   -0.98   -0.76   -0.54   -0.48   -0.60   -0.68   -0.38    0.50    1.82    2.95    3.10
+   280.0    0.00   -0.01    0.06    0.09   -0.05   -0.36   -0.71   -0.91   -0.89   -0.69   -0.49   -0.43   -0.54   -0.60   -0.28    0.61    1.91    3.05    3.25
+   285.0    0.00   -0.02    0.06    0.11   -0.01   -0.29   -0.61   -0.82   -0.81   -0.63   -0.44   -0.39   -0.48   -0.52   -0.19    0.69    1.97    3.10    3.35
+   290.0    0.00   -0.03    0.06    0.12    0.03   -0.22   -0.53   -0.74   -0.75   -0.59   -0.41   -0.35   -0.41   -0.43   -0.10    0.75    2.00    3.12    3.39
+   295.0    0.00   -0.03    0.06    0.14    0.08   -0.15   -0.45   -0.67   -0.70   -0.56   -0.39   -0.31   -0.34   -0.33   -0.02    0.80    1.99    3.09    3.36
+   300.0    0.00   -0.03    0.06    0.16    0.12   -0.09   -0.38   -0.61   -0.66   -0.55   -0.37   -0.26   -0.27   -0.24    0.07    0.83    1.97    3.03    3.27
+   305.0    0.00   -0.04    0.07    0.17    0.16   -0.03   -0.32   -0.56   -0.64   -0.54   -0.35   -0.22   -0.18   -0.14    0.15    0.85    1.93    2.93    3.13
+   310.0    0.00   -0.04    0.07    0.19    0.19    0.02   -0.27   -0.52   -0.62   -0.53   -0.33   -0.16   -0.09   -0.03    0.22    0.87    1.86    2.81    2.94
+   315.0    0.00   -0.04    0.07    0.21    0.23    0.06   -0.22   -0.49   -0.61   -0.52   -0.31   -0.11    0.01    0.08    0.30    0.87    1.79    2.67    2.72
+   320.0    0.00   -0.04    0.07    0.22    0.26    0.11   -0.18   -0.46   -0.60   -0.52   -0.29   -0.05    0.10    0.19    0.37    0.86    1.69    2.50    2.49
+   325.0    0.00   -0.04    0.07    0.23    0.28    0.14   -0.14   -0.44   -0.59   -0.52   -0.27    0.01    0.19    0.29    0.43    0.84    1.58    2.33    2.25
+   330.0    0.00   -0.05    0.08    0.24    0.31    0.18   -0.11   -0.42   -0.58   -0.52   -0.26    0.06    0.27    0.37    0.47    0.81    1.45    2.14    2.03
+   335.0    0.00   -0.04    0.08    0.25    0.33    0.21   -0.08   -0.40   -0.58   -0.52   -0.25    0.09    0.33    0.43    0.49    0.74    1.30    1.93    1.82
+   340.0    0.00   -0.04    0.08    0.26    0.34    0.23   -0.06   -0.39   -0.58   -0.53   -0.25    0.10    0.36    0.45    0.48    0.65    1.13    1.71    1.63
+   345.0    0.00   -0.04    0.08    0.27    0.36    0.25   -0.04   -0.38   -0.58   -0.55   -0.27    0.09    0.35    0.44    0.42    0.53    0.93    1.48    1.45
+   350.0    0.00   -0.04    0.08    0.27    0.36    0.26   -0.03   -0.37   -0.59   -0.57   -0.31    0.04    0.30    0.37    0.32    0.37    0.71    1.23    1.28
+   355.0    0.00   -0.04    0.09    0.27    0.37    0.27   -0.02   -0.37   -0.61   -0.61   -0.37   -0.04    0.21    0.26    0.18    0.18    0.47    0.97    1.10
+   360.0    0.00   -0.03    0.09    0.27    0.37    0.27   -0.02   -0.38   -0.63   -0.65   -0.44   -0.14    0.07    0.10   -0.01   -0.04    0.21    0.70    0.91
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+LEIMNA950GG     NONE                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               4    19-MAR-10 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+      0.53      0.17     90.82                              NORTH / EAST / UP   
+   NOAZI    0.00    0.03    0.10    0.12    0.01   -0.29   -0.73   -1.23   -1.64   -1.84   -1.78   -1.50   -1.10   -0.69   -0.32    0.07    0.63    1.57    2.99
+     0.0    0.00    0.17    0.39    0.54    0.53    0.27   -0.20   -0.77   -1.29   -1.58   -1.56   -1.23   -0.76   -0.34   -0.20   -0.39   -0.70   -0.54    1.04
+     5.0    0.00    0.16    0.36    0.51    0.49    0.24   -0.21   -0.77   -1.27   -1.56   -1.54   -1.23   -0.75   -0.32   -0.14   -0.30   -0.62   -0.52    0.95
+    10.0    0.00    0.14    0.33    0.47    0.45    0.21   -0.22   -0.76   -1.25   -1.54   -1.54   -1.25   -0.77   -0.32   -0.09   -0.18   -0.47   -0.42    0.90
+    15.0    0.00    0.13    0.30    0.42    0.40    0.17   -0.24   -0.75   -1.22   -1.51   -1.53   -1.27   -0.82   -0.34   -0.04   -0.05   -0.27   -0.24    0.92
+    20.0    0.00    0.11    0.27    0.38    0.35    0.13   -0.26   -0.73   -1.18   -1.48   -1.52   -1.30   -0.87   -0.38   -0.02    0.07   -0.05    0.00    1.00
+    25.0    0.00    0.10    0.24    0.33    0.29    0.08   -0.28   -0.73   -1.15   -1.43   -1.50   -1.31   -0.92   -0.44   -0.03    0.17    0.17    0.27    1.16
+    30.0    0.00    0.08    0.20    0.27    0.22    0.02   -0.32   -0.73   -1.12   -1.39   -1.46   -1.31   -0.96   -0.49   -0.06    0.23    0.36    0.56    1.38
+    35.0    0.00    0.06    0.16    0.21    0.15   -0.05   -0.37   -0.75   -1.10   -1.34   -1.41   -1.28   -0.97   -0.54   -0.10    0.25    0.51    0.84    1.65
+    40.0    0.00    0.05    0.12    0.15    0.08   -0.13   -0.44   -0.79   -1.10   -1.30   -1.35   -1.23   -0.95   -0.58   -0.16    0.24    0.61    1.08    1.97
+    45.0    0.00    0.03    0.08    0.09    0.00   -0.22   -0.53   -0.86   -1.13   -1.28   -1.29   -1.15   -0.90   -0.58   -0.21    0.19    0.65    1.29    2.29
+    50.0    0.00    0.01    0.05    0.03   -0.09   -0.33   -0.64   -0.96   -1.19   -1.29   -1.23   -1.06   -0.82   -0.55   -0.25    0.13    0.66    1.46    2.62
+    55.0    0.00   -0.01    0.01   -0.03   -0.17   -0.44   -0.77   -1.09   -1.29   -1.32   -1.20   -0.97   -0.72   -0.49   -0.26    0.07    0.64    1.58    2.91
+    60.0    0.00   -0.02   -0.03   -0.08   -0.25   -0.55   -0.91   -1.23   -1.42   -1.40   -1.19   -0.89   -0.61   -0.40   -0.23    0.04    0.62    1.68    3.17
+    65.0    0.00   -0.04   -0.06   -0.14   -0.33   -0.66   -1.06   -1.40   -1.57   -1.51   -1.23   -0.84   -0.50   -0.29   -0.17    0.04    0.62    1.76    3.38
+    70.0    0.00   -0.05   -0.09   -0.19   -0.41   -0.77   -1.20   -1.57   -1.75   -1.65   -1.30   -0.83   -0.41   -0.18   -0.09    0.08    0.65    1.84    3.55
+    75.0    0.00   -0.07   -0.12   -0.23   -0.47   -0.86   -1.33   -1.74   -1.93   -1.81   -1.40   -0.85   -0.36   -0.08    0.02    0.16    0.71    1.94    3.68
+    80.0    0.00   -0.08   -0.15   -0.27   -0.53   -0.94   -1.45   -1.90   -2.12   -1.99   -1.55   -0.92   -0.35    0.00    0.12    0.27    0.82    2.05    3.79
+    85.0    0.00   -0.09   -0.17   -0.30   -0.57   -1.01   -1.54   -2.03   -2.28   -2.18   -1.71   -1.04   -0.39    0.03    0.22    0.40    0.96    2.18    3.88
+    90.0    0.00   -0.10   -0.19   -0.33   -0.61   -1.05   -1.61   -2.14   -2.43   -2.35   -1.89   -1.18   -0.48    0.02    0.28    0.52    1.12    2.33    3.97
+    95.0    0.00   -0.11   -0.21   -0.35   -0.63   -1.08   -1.66   -2.21   -2.54   -2.50   -2.07   -1.36   -0.61   -0.05    0.30    0.62    1.26    2.48    4.06
+   100.0    0.00   -0.12   -0.22   -0.36   -0.64   -1.09   -1.68   -2.25   -2.62   -2.63   -2.23   -1.54   -0.78   -0.16    0.27    0.68    1.39    2.62    4.15
+   105.0    0.00   -0.13   -0.23   -0.37   -0.64   -1.09   -1.68   -2.27   -2.67   -2.72   -2.37   -1.72   -0.97   -0.31    0.19    0.69    1.47    2.73    4.25
+   110.0    0.00   -0.14   -0.24   -0.38   -0.64   -1.08   -1.67   -2.26   -2.69   -2.78   -2.49   -1.88   -1.15   -0.48    0.07    0.64    1.49    2.80    4.33
+   115.0    0.00   -0.14   -0.24   -0.38   -0.64   -1.07   -1.64   -2.24   -2.68   -2.81   -2.57   -2.01   -1.32   -0.65   -0.07    0.55    1.46    2.81    4.39
+   120.0    0.00   -0.14   -0.25   -0.38   -0.63   -1.06   -1.62   -2.21   -2.66   -2.81   -2.61   -2.11   -1.46   -0.81   -0.22    0.44    1.38    2.77    4.41
+   125.0    0.00   -0.14   -0.25   -0.38   -0.63   -1.04   -1.59   -2.17   -2.62   -2.79   -2.62   -2.16   -1.56   -0.95   -0.36    0.30    1.27    2.67    4.38
+   130.0    0.00   -0.14   -0.24   -0.37   -0.62   -1.03   -1.57   -2.14   -2.58   -2.75   -2.59   -2.17   -1.61   -1.03   -0.47    0.18    1.14    2.55    4.30
+   135.0    0.00   -0.14   -0.24   -0.37   -0.61   -1.02   -1.55   -2.11   -2.53   -2.69   -2.55   -2.15   -1.62   -1.07   -0.54    0.09    1.01    2.40    4.18
+   140.0    0.00   -0.14   -0.23   -0.36   -0.60   -1.00   -1.53   -2.07   -2.48   -2.63   -2.48   -2.09   -1.58   -1.07   -0.56    0.03    0.92    2.25    4.01
+   145.0    0.00   -0.14   -0.23   -0.35   -0.59   -0.99   -1.51   -2.04   -2.43   -2.56   -2.40   -2.01   -1.51   -1.01   -0.54    0.03    0.86    2.12    3.82
+   150.0    0.00   -0.13   -0.21   -0.33   -0.57   -0.97   -1.48   -2.00   -2.37   -2.48   -2.31   -1.91   -1.42   -0.93   -0.47    0.07    0.86    2.03    3.62
+   155.0    0.00   -0.13   -0.20   -0.31   -0.54   -0.94   -1.45   -1.95   -2.30   -2.40   -2.21   -1.80   -1.31   -0.83   -0.37    0.16    0.90    1.98    3.44
+   160.0    0.00   -0.12   -0.19   -0.29   -0.51   -0.90   -1.40   -1.89   -2.22   -2.30   -2.10   -1.70   -1.20   -0.72   -0.25    0.27    0.98    1.98    3.30
+   165.0    0.00   -0.11   -0.17   -0.26   -0.47   -0.85   -1.33   -1.81   -2.13   -2.20   -1.99   -1.59   -1.10   -0.62   -0.14    0.38    1.08    2.01    3.20
+   170.0    0.00   -0.10   -0.15   -0.23   -0.43   -0.79   -1.25   -1.71   -2.02   -2.09   -1.89   -1.49   -1.01   -0.53   -0.05    0.49    1.18    2.08    3.15
+   175.0    0.00   -0.09   -0.12   -0.19   -0.37   -0.71   -1.16   -1.61   -1.91   -1.97   -1.78   -1.40   -0.94   -0.47    0.00    0.56    1.27    2.16    3.16
+   180.0    0.00   -0.08   -0.10   -0.15   -0.31   -0.63   -1.07   -1.50   -1.79   -1.85   -1.68   -1.32   -0.89   -0.45    0.02    0.59    1.32    2.23    3.21
+   185.0    0.00   -0.07   -0.08   -0.11   -0.25   -0.55   -0.96   -1.38   -1.67   -1.74   -1.58   -1.25   -0.85   -0.44    0.00    0.57    1.33    2.28    3.29
+   190.0    0.00   -0.06   -0.05   -0.07   -0.19   -0.47   -0.87   -1.27   -1.56   -1.64   -1.50   -1.20   -0.83   -0.46   -0.05    0.50    1.29    2.31    3.38
+   195.0    0.00   -0.04   -0.03   -0.03   -0.13   -0.39   -0.78   -1.18   -1.47   -1.56   -1.43   -1.15   -0.82   -0.50   -0.13    0.39    1.20    2.29    3.46
+   200.0    0.00   -0.03    0.00    0.01   -0.08   -0.32   -0.70   -1.10   -1.39   -1.49   -1.37   -1.12   -0.82   -0.54   -0.23    0.26    1.08    2.24    3.52
+   205.0    0.00   -0.02    0.02    0.05   -0.03   -0.27   -0.64   -1.04   -1.34   -1.45   -1.34   -1.10   -0.83   -0.59   -0.33    0.12    0.94    2.17    3.56
+   210.0    0.00    0.00    0.05    0.09    0.02   -0.22   -0.59   -1.00   -1.31   -1.42   -1.32   -1.09   -0.84   -0.64   -0.42   -0.01    0.80    2.07    3.58
+   215.0    0.00    0.01    0.07    0.12    0.05   -0.18   -0.55   -0.97   -1.30   -1.42   -1.32   -1.10   -0.86   -0.69   -0.51   -0.14    0.67    1.98    3.58
+   220.0    0.00    0.02    0.10    0.15    0.08   -0.15   -0.53   -0.96   -1.30   -1.43   -1.34   -1.12   -0.89   -0.73   -0.58   -0.24    0.56    1.91    3.58
+   225.0    0.00    0.04    0.12    0.17    0.11   -0.13   -0.52   -0.96   -1.30   -1.45   -1.37   -1.15   -0.93   -0.78   -0.65   -0.31    0.48    1.85    3.59
+   230.0    0.00    0.05    0.14    0.20    0.13   -0.11   -0.51   -0.96   -1.31   -1.47   -1.40   -1.20   -0.99   -0.84   -0.70   -0.36    0.44    1.84    3.62
+   235.0    0.00    0.06    0.16    0.22    0.15   -0.10   -0.50   -0.95   -1.32   -1.49   -1.45   -1.26   -1.05   -0.90   -0.75   -0.39    0.42    1.85    3.69
+   240.0    0.00    0.08    0.18    0.24    0.17   -0.08   -0.49   -0.95   -1.32   -1.51   -1.49   -1.32   -1.12   -0.96   -0.79   -0.41    0.44    1.90    3.80
+   245.0    0.00    0.09    0.20    0.27    0.19   -0.06   -0.47   -0.93   -1.32   -1.53   -1.53   -1.39   -1.20   -1.03   -0.84   -0.42    0.46    1.97    3.94
+   250.0    0.00    0.10    0.22    0.29    0.22   -0.04   -0.45   -0.91   -1.31   -1.54   -1.58   -1.46   -1.29   -1.11   -0.88   -0.42    0.50    2.05    4.10
+   255.0    0.00    0.11    0.24    0.31    0.24   -0.01   -0.42   -0.89   -1.30   -1.56   -1.63   -1.54   -1.38   -1.18   -0.92   -0.42    0.54    2.13    4.26
+   260.0    0.00    0.13    0.26    0.34    0.27    0.02   -0.39   -0.86   -1.29   -1.58   -1.68   -1.63   -1.47   -1.25   -0.95   -0.41    0.58    2.20    4.41
+   265.0    0.00    0.14    0.28    0.36    0.30    0.05   -0.35   -0.84   -1.29   -1.61   -1.75   -1.71   -1.55   -1.31   -0.96   -0.39    0.62    2.26    4.51
+   270.0    0.00    0.15    0.31    0.39    0.33    0.09   -0.32   -0.82   -1.29   -1.65   -1.82   -1.80   -1.63   -1.35   -0.96   -0.35    0.67    2.29    4.56
+   275.0    0.00    0.16    0.33    0.42    0.37    0.13   -0.29   -0.80   -1.31   -1.70   -1.90   -1.88   -1.69   -1.37   -0.92   -0.28    0.72    2.30    4.53
+   280.0    0.00    0.17    0.35    0.45    0.41    0.17   -0.26   -0.79   -1.33   -1.76   -1.98   -1.97   -1.75   -1.37   -0.87   -0.20    0.78    2.28    4.41
+   285.0    0.00    0.18    0.37    0.48    0.44    0.20   -0.23   -0.79   -1.36   -1.82   -2.07   -2.05   -1.79   -1.35   -0.79   -0.09    0.85    2.25    4.23
+   290.0    0.00    0.19    0.38    0.51    0.48    0.24   -0.21   -0.79   -1.40   -1.89   -2.15   -2.12   -1.81   -1.31   -0.69    0.02    0.92    2.19    3.98
+   295.0    0.00    0.19    0.40    0.54    0.52    0.27   -0.19   -0.80   -1.43   -1.95   -2.22   -2.17   -1.82   -1.25   -0.58    0.14    0.98    2.11    3.69
+   300.0    0.00    0.20    0.42    0.56    0.55    0.31   -0.17   -0.80   -1.46   -2.00   -2.27   -2.20   -1.80   -1.19   -0.48    0.24    1.02    2.00    3.38
+   305.0    0.00    0.21    0.43    0.59    0.58    0.33   -0.15   -0.80   -1.48   -2.03   -2.29   -2.20   -1.77   -1.12   -0.39    0.32    1.02    1.88    3.07
+   310.0    0.00    0.21    0.44    0.61    0.60    0.36   -0.14   -0.80   -1.49   -2.03   -2.29   -2.17   -1.72   -1.05   -0.32    0.35    0.98    1.72    2.77
+   315.0    0.00    0.21    0.45    0.63    0.62    0.37   -0.13   -0.80   -1.49   -2.02   -2.25   -2.11   -1.64   -0.98   -0.28    0.34    0.88    1.52    2.51
+   320.0    0.00    0.21    0.46    0.64    0.64    0.39   -0.12   -0.79   -1.47   -1.98   -2.19   -2.02   -1.55   -0.90   -0.26    0.27    0.73    1.30    2.27
+   325.0    0.00    0.21    0.46    0.64    0.65    0.39   -0.12   -0.78   -1.45   -1.93   -2.10   -1.91   -1.44   -0.83   -0.26    0.17    0.52    1.04    2.07
+   330.0    0.00    0.21    0.46    0.65    0.65    0.39   -0.12   -0.78   -1.42   -1.87   -2.00   -1.78   -1.31   -0.75   -0.28    0.04    0.28    0.75    1.90
+   335.0    0.00    0.21    0.46    0.64    0.64    0.38   -0.12   -0.77   -1.39   -1.80   -1.89   -1.65   -1.18   -0.68   -0.30   -0.11    0.02    0.46    1.74
+   340.0    0.00    0.20    0.45    0.63    0.63    0.37   -0.13   -0.77   -1.36   -1.74   -1.79   -1.52   -1.06   -0.60   -0.31   -0.24   -0.23    0.17    1.59
+   345.0    0.00    0.20    0.44    0.62    0.61    0.35   -0.15   -0.77   -1.34   -1.68   -1.70   -1.41   -0.95   -0.52   -0.31   -0.35   -0.45   -0.10    1.45
+   350.0    0.00    0.19    0.43    0.60    0.59    0.33   -0.16   -0.77   -1.32   -1.64   -1.63   -1.32   -0.86   -0.45   -0.29   -0.42   -0.61   -0.32    1.30
+   355.0    0.00    0.18    0.41    0.57    0.56    0.30   -0.18   -0.77   -1.30   -1.61   -1.58   -1.26   -0.79   -0.39   -0.25   -0.43   -0.69   -0.47    1.16
+   360.0    0.00    0.17    0.39    0.54    0.53    0.27   -0.20   -0.77   -1.29   -1.58   -1.56   -1.23   -0.76   -0.34   -0.20   -0.39   -0.70   -0.54    1.04
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.86      0.55     89.64                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.04   -0.15   -0.29   -0.41   -0.52   -0.68   -0.91   -1.18   -1.39   -1.37   -1.02   -0.37    0.35    0.83    0.81    0.33   -0.19   -0.05
+     0.0    0.00   -0.18   -0.44   -0.73   -0.98   -1.15   -1.27   -1.34   -1.39   -1.37   -1.18   -0.76   -0.12    0.58    1.04    1.03    0.59    0.23    0.94
+     5.0    0.00   -0.16   -0.41   -0.69   -0.94   -1.12   -1.24   -1.34   -1.41   -1.42   -1.26   -0.84   -0.17    0.56    1.06    1.06    0.60    0.21    0.94
+    10.0    0.00   -0.15   -0.38   -0.66   -0.91   -1.09   -1.22   -1.33   -1.44   -1.49   -1.35   -0.94   -0.24    0.55    1.10    1.12    0.63    0.19    0.89
+    15.0    0.00   -0.13   -0.35   -0.62   -0.86   -1.05   -1.18   -1.32   -1.46   -1.55   -1.45   -1.04   -0.31    0.54    1.14    1.19    0.68    0.17    0.81
+    20.0    0.00   -0.11   -0.32   -0.58   -0.82   -1.00   -1.15   -1.30   -1.48   -1.62   -1.55   -1.15   -0.39    0.51    1.18    1.26    0.74    0.16    0.70
+    25.0    0.00   -0.09   -0.28   -0.53   -0.77   -0.95   -1.11   -1.29   -1.50   -1.68   -1.65   -1.25   -0.48    0.46    1.18    1.31    0.78    0.16    0.59
+    30.0    0.00   -0.06   -0.24   -0.48   -0.71   -0.90   -1.06   -1.26   -1.51   -1.73   -1.73   -1.36   -0.58    0.39    1.15    1.31    0.80    0.15    0.48
+    35.0    0.00   -0.04   -0.20   -0.43   -0.65   -0.84   -1.02   -1.24   -1.52   -1.77   -1.81   -1.46   -0.69    0.29    1.08    1.28    0.79    0.13    0.38
+    40.0    0.00   -0.02   -0.16   -0.38   -0.59   -0.78   -0.97   -1.21   -1.52   -1.80   -1.86   -1.54   -0.80    0.17    0.97    1.18    0.74    0.09    0.29
+    45.0    0.00    0.00   -0.12   -0.32   -0.53   -0.72   -0.91   -1.18   -1.51   -1.81   -1.91   -1.62   -0.90    0.04    0.81    1.04    0.63    0.03    0.21
+    50.0    0.00    0.02   -0.08   -0.26   -0.46   -0.65   -0.86   -1.14   -1.49   -1.81   -1.93   -1.68   -1.01   -0.11    0.63    0.85    0.48   -0.06    0.13
+    55.0    0.00    0.04   -0.04   -0.20   -0.39   -0.58   -0.80   -1.10   -1.46   -1.80   -1.94   -1.72   -1.09   -0.26    0.43    0.62    0.28   -0.19    0.03
+    60.0    0.00    0.07    0.01   -0.13   -0.31   -0.50   -0.73   -1.04   -1.43   -1.78   -1.94   -1.74   -1.16   -0.40    0.22    0.38    0.04   -0.37   -0.10
+    65.0    0.00    0.09    0.05   -0.07   -0.23   -0.42   -0.66   -0.98   -1.38   -1.75   -1.92   -1.74   -1.21   -0.51    0.03    0.13   -0.22   -0.60   -0.28
+    70.0    0.00    0.11    0.10    0.00   -0.15   -0.33   -0.58   -0.91   -1.32   -1.70   -1.88   -1.72   -1.23   -0.59   -0.13   -0.10   -0.49   -0.86   -0.51
+    75.0    0.00    0.13    0.14    0.06   -0.07   -0.24   -0.48   -0.83   -1.25   -1.64   -1.82   -1.68   -1.22   -0.64   -0.25   -0.31   -0.75   -1.14   -0.79
+    80.0    0.00    0.15    0.18    0.13    0.02   -0.14   -0.38   -0.73   -1.16   -1.56   -1.75   -1.61   -1.17   -0.64   -0.32   -0.46   -0.99   -1.44   -1.11
+    85.0    0.00    0.16    0.22    0.19    0.11   -0.03   -0.26   -0.62   -1.06   -1.46   -1.66   -1.52   -1.10   -0.59   -0.34   -0.57   -1.19   -1.73   -1.45
+    90.0    0.00    0.18    0.25    0.25    0.20    0.08   -0.14   -0.50   -0.94   -1.35   -1.54   -1.41   -0.99   -0.51   -0.31   -0.62   -1.35   -1.99   -1.78
+    95.0    0.00    0.19    0.29    0.31    0.28    0.18   -0.02   -0.36   -0.81   -1.22   -1.41   -1.28   -0.85   -0.39   -0.23   -0.61   -1.44   -2.19   -2.08
+   100.0    0.00    0.20    0.32    0.36    0.36    0.29    0.10   -0.23   -0.67   -1.07   -1.26   -1.12   -0.70   -0.24   -0.11   -0.55   -1.47   -2.33   -2.31
+   105.0    0.00    0.21    0.34    0.41    0.43    0.38    0.22   -0.10   -0.52   -0.92   -1.10   -0.95   -0.53   -0.07    0.05   -0.44   -1.43   -2.39   -2.45
+   110.0    0.00    0.22    0.36    0.44    0.48    0.46    0.32    0.03   -0.38   -0.76   -0.93   -0.78   -0.34    0.11    0.22   -0.29   -1.33   -2.37   -2.50
+   115.0    0.00    0.23    0.38    0.47    0.53    0.52    0.40    0.13   -0.25   -0.61   -0.76   -0.60   -0.16    0.30    0.40   -0.11   -1.18   -2.27   -2.45
+   120.0    0.00    0.23    0.39    0.49    0.56    0.57    0.47    0.22   -0.13   -0.46   -0.60   -0.42    0.02    0.48    0.59    0.08   -0.99   -2.09   -2.31
+   125.0    0.00    0.23    0.39    0.50    0.58    0.60    0.51    0.29   -0.04   -0.34   -0.45   -0.26    0.19    0.65    0.77    0.28   -0.76   -1.85   -2.10
+   130.0    0.00    0.23    0.39    0.50    0.58    0.61    0.53    0.32    0.03   -0.24   -0.33   -0.12    0.34    0.80    0.93    0.48   -0.51   -1.58   -1.84
+   135.0    0.00    0.22    0.38    0.49    0.57    0.60    0.52    0.33    0.06   -0.18   -0.23    0.00    0.46    0.93    1.08    0.68   -0.26   -1.29   -1.58
+   140.0    0.00    0.22    0.37    0.48    0.55    0.57    0.50    0.32    0.07   -0.15   -0.17    0.07    0.54    1.03    1.21    0.85   -0.02   -1.01   -1.33
+   145.0    0.00    0.21    0.35    0.45    0.52    0.53    0.45    0.28    0.04   -0.15   -0.15    0.11    0.59    1.09    1.31    1.01    0.20   -0.75   -1.13
+   150.0    0.00    0.20    0.33    0.42    0.47    0.48    0.40    0.22   -0.01   -0.18   -0.17    0.11    0.61    1.13    1.38    1.14    0.39   -0.54   -0.99
+   155.0    0.00    0.18    0.30    0.38    0.43    0.42    0.33    0.15   -0.08   -0.25   -0.22    0.07    0.58    1.12    1.41    1.23    0.53   -0.38   -0.91
+   160.0    0.00    0.17    0.27    0.34    0.37    0.36    0.26    0.07   -0.17   -0.33   -0.31   -0.01    0.52    1.09    1.41    1.27    0.63   -0.28   -0.89
+   165.0    0.00    0.15    0.24    0.29    0.32    0.29    0.18   -0.02   -0.26   -0.44   -0.42   -0.11    0.43    1.02    1.38    1.28    0.67   -0.23   -0.92
+   170.0    0.00    0.13    0.20    0.24    0.26    0.23    0.11   -0.10   -0.36   -0.56   -0.55   -0.24    0.31    0.91    1.30    1.23    0.65   -0.24   -0.97
+   175.0    0.00    0.11    0.16    0.19    0.20    0.16    0.04   -0.19   -0.47   -0.69   -0.69   -0.39    0.16    0.79    1.19    1.14    0.59   -0.28   -1.03
+   180.0    0.00    0.09    0.12    0.13    0.13    0.09   -0.03   -0.27   -0.58   -0.81   -0.84   -0.55    0.01    0.64    1.05    1.01    0.48   -0.35   -1.07
+   185.0    0.00    0.07    0.08    0.07    0.07    0.02   -0.11   -0.36   -0.68   -0.94   -0.99   -0.71   -0.15    0.47    0.88    0.85    0.34   -0.43   -1.07
+   190.0    0.00    0.05    0.03    0.01    0.00   -0.05   -0.18   -0.45   -0.79   -1.07   -1.13   -0.86   -0.32    0.30    0.70    0.66    0.18   -0.52   -1.03
+   195.0    0.00    0.02   -0.01   -0.05   -0.08   -0.12   -0.27   -0.54   -0.89   -1.19   -1.26   -1.01   -0.47    0.13    0.51    0.46    0.01   -0.59   -0.95
+   200.0    0.00    0.00   -0.06   -0.12   -0.15   -0.21   -0.35   -0.63   -1.00   -1.31   -1.39   -1.14   -0.61   -0.03    0.32    0.27   -0.15   -0.63   -0.83
+   205.0    0.00   -0.02   -0.11   -0.18   -0.23   -0.30   -0.45   -0.73   -1.10   -1.42   -1.50   -1.26   -0.74   -0.18    0.15    0.09   -0.28   -0.65   -0.68
+   210.0    0.00   -0.05   -0.16   -0.25   -0.32   -0.39   -0.55   -0.84   -1.21   -1.53   -1.61   -1.36   -0.85   -0.31    0.00   -0.06   -0.39   -0.65   -0.51
+   215.0    0.00   -0.07   -0.20   -0.32   -0.41   -0.49   -0.66   -0.95   -1.32   -1.63   -1.70   -1.44   -0.94   -0.41   -0.11   -0.17   -0.45   -0.61   -0.35
+   220.0    0.00   -0.10   -0.25   -0.39   -0.49   -0.60   -0.77   -1.07   -1.43   -1.72   -1.78   -1.51   -1.00   -0.48   -0.19   -0.23   -0.46   -0.54   -0.19
+   225.0    0.00   -0.12   -0.29   -0.46   -0.58   -0.70   -0.88   -1.18   -1.53   -1.81   -1.84   -1.56   -1.05   -0.52   -0.22   -0.25   -0.43   -0.44   -0.04
+   230.0    0.00   -0.14   -0.34   -0.52   -0.66   -0.79   -0.99   -1.28   -1.62   -1.88   -1.90   -1.60   -1.07   -0.53   -0.21   -0.21   -0.35   -0.32    0.09
+   235.0    0.00   -0.16   -0.38   -0.58   -0.74   -0.88   -1.08   -1.37   -1.70   -1.95   -1.94   -1.63   -1.07   -0.51   -0.16   -0.12   -0.24   -0.19    0.21
+   240.0    0.00   -0.18   -0.42   -0.63   -0.81   -0.96   -1.17   -1.45   -1.77   -2.00   -1.98   -1.64   -1.06   -0.45   -0.07    0.01   -0.09   -0.04    0.32
+   245.0    0.00   -0.20   -0.45   -0.68   -0.87   -1.03   -1.23   -1.51   -1.82   -2.03   -2.00   -1.63   -1.02   -0.37    0.06    0.17    0.08    0.11    0.44
+   250.0    0.00   -0.22   -0.48   -0.73   -0.92   -1.08   -1.28   -1.55   -1.85   -2.05   -2.00   -1.61   -0.96   -0.27    0.22    0.36    0.27    0.25    0.56
+   255.0    0.00   -0.23   -0.51   -0.76   -0.96   -1.12   -1.32   -1.58   -1.87   -2.06   -2.00   -1.58   -0.89   -0.14    0.40    0.56    0.45    0.39    0.69
+   260.0    0.00   -0.24   -0.53   -0.79   -0.99   -1.15   -1.33   -1.59   -1.87   -2.06   -1.98   -1.54   -0.80    0.01    0.60    0.78    0.64    0.52    0.83
+   265.0    0.00   -0.26   -0.55   -0.81   -1.01   -1.16   -1.34   -1.58   -1.86   -2.04   -1.95   -1.48   -0.69    0.18    0.81    1.00    0.81    0.63    0.97
+   270.0    0.00   -0.27   -0.56   -0.83   -1.02   -1.16   -1.33   -1.57   -1.84   -2.02   -1.91   -1.42   -0.58    0.35    1.03    1.21    0.96    0.71    1.09
+   275.0    0.00   -0.27   -0.58   -0.84   -1.02   -1.16   -1.31   -1.54   -1.81   -1.98   -1.87   -1.34   -0.45    0.53    1.24    1.41    1.10    0.77    1.18
+   280.0    0.00   -0.28   -0.59   -0.85   -1.02   -1.15   -1.30   -1.51   -1.78   -1.94   -1.82   -1.26   -0.33    0.71    1.45    1.60    1.21    0.81    1.24
+   285.0    0.00   -0.29   -0.59   -0.85   -1.02   -1.14   -1.28   -1.49   -1.74   -1.90   -1.76   -1.18   -0.21    0.87    1.63    1.76    1.30    0.81    1.24
+   290.0    0.00   -0.29   -0.60   -0.85   -1.02   -1.13   -1.26   -1.46   -1.70   -1.85   -1.69   -1.09   -0.09    1.01    1.78    1.89    1.37    0.80    1.20
+   295.0    0.00   -0.29   -0.60   -0.85   -1.02   -1.12   -1.24   -1.43   -1.66   -1.80   -1.62   -1.01    0.01    1.13    1.90    1.99    1.41    0.76    1.11
+   300.0    0.00   -0.29   -0.60   -0.85   -1.02   -1.12   -1.24   -1.41   -1.63   -1.74   -1.55   -0.92    0.09    1.21    1.98    2.05    1.43    0.71    0.99
+   305.0    0.00   -0.29   -0.59   -0.85   -1.02   -1.12   -1.23   -1.39   -1.59   -1.67   -1.47   -0.85    0.16    1.25    2.01    2.06    1.42    0.66    0.85
+   310.0    0.00   -0.29   -0.59   -0.85   -1.02   -1.13   -1.23   -1.38   -1.55   -1.61   -1.39   -0.78    0.20    1.26    1.99    2.03    1.39    0.59    0.71
+   315.0    0.00   -0.28   -0.58   -0.84   -1.03   -1.14   -1.24   -1.37   -1.51   -1.54   -1.32   -0.72    0.22    1.23    1.92    1.96    1.33    0.54    0.59
+   320.0    0.00   -0.28   -0.57   -0.84   -1.03   -1.15   -1.25   -1.36   -1.47   -1.48   -1.24   -0.66    0.22    1.17    1.82    1.86    1.25    0.48    0.51
+   325.0    0.00   -0.27   -0.56   -0.83   -1.04   -1.17   -1.26   -1.35   -1.43   -1.42   -1.18   -0.62    0.21    1.09    1.69    1.72    1.15    0.43    0.47
+   330.0    0.00   -0.26   -0.55   -0.83   -1.04   -1.18   -1.27   -1.35   -1.40   -1.36   -1.12   -0.60    0.18    1.00    1.55    1.57    1.05    0.39    0.49
+   335.0    0.00   -0.25   -0.54   -0.82   -1.04   -1.19   -1.28   -1.35   -1.38   -1.32   -1.08   -0.58    0.14    0.90    1.41    1.42    0.93    0.36    0.55
+   340.0    0.00   -0.24   -0.52   -0.81   -1.04   -1.20   -1.29   -1.35   -1.36   -1.30   -1.06   -0.58    0.09    0.80    1.27    1.28    0.82    0.33    0.63
+   345.0    0.00   -0.23   -0.51   -0.79   -1.03   -1.20   -1.29   -1.34   -1.36   -1.29   -1.06   -0.60    0.04    0.72    1.16    1.16    0.73    0.30    0.74
+   350.0    0.00   -0.21   -0.49   -0.77   -1.02   -1.19   -1.29   -1.34   -1.36   -1.30   -1.08   -0.64   -0.01    0.65    1.09    1.08    0.66    0.28    0.83
+   355.0    0.00   -0.20   -0.46   -0.75   -1.00   -1.18   -1.28   -1.34   -1.37   -1.32   -1.12   -0.69   -0.06    0.61    1.05    1.03    0.61    0.25    0.91
+   360.0    0.00   -0.18   -0.44   -0.73   -0.98   -1.15   -1.27   -1.34   -1.39   -1.37   -1.18   -0.76   -0.12    0.58    1.04    1.03    0.59    0.23    0.94
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+LEISR299_INT    NONE                                        TYPE / SERIAL NO    
+CONVERTED           TUM                      0    16-APR-03 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+      3.70     -0.66     94.34                              NORTH / EAST / UP   
+   NOAZI    0.00    0.26    0.08    0.03    0.02   -0.19   -0.35   -0.09    0.53    0.70    0.16   -0.46   -0.47    0.16    1.20    2.67    5.59
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      1.20     -4.12    109.26                              NORTH / EAST / UP   
+   NOAZI    0.00    0.07   -0.12   -0.30   -0.32   -0.02    0.17   -0.01   -0.35   -0.23    0.05    0.17   -0.18   -0.25    0.17   -0.21   -2.24
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+LEISR399_INT    NONE                                        TYPE / SERIAL NO    
+CONVERTED           TUM                      0    16-APR-03 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+      3.70     -0.66     94.34                              NORTH / EAST / UP   
+   NOAZI    0.00    0.26    0.08    0.03    0.02   -0.19   -0.35   -0.09    0.53    0.70    0.16   -0.46   -0.47    0.16    1.20    2.67    5.59
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      1.20     -4.12    109.26                              NORTH / EAST / UP   
+   NOAZI    0.00    0.07   -0.12   -0.30   -0.32   -0.02    0.17   -0.01   -0.35   -0.23    0.05    0.17   -0.18   -0.25    0.17   -0.21   -2.24
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+LEISR399_INTA   NONE                                        TYPE / SERIAL NO    
+FIELD               NGS/TUM                  2    11-AUG-06 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      3.60      0.94    109.64                              NORTH / EAST / UP   
+   NOAZI    0.00    0.16    0.28    0.13   -0.18   -0.49   -0.75   -0.89   -0.87   -0.70   -0.34    0.14    0.53    0.76    1.10    0.97    0.89
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      2.30     -1.72    114.06                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.13   -0.32   -0.60   -0.82   -1.22   -1.63   -2.01   -2.45   -2.73   -2.85   -2.63   -2.18   -1.45   -0.63    0.49    2.06
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+MAC4647942      NONE                                        TYPE / SERIAL NO    
+CONVERTED           TUM                      0    16-APR-03 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+      2.80     -8.66    144.34                              NORTH / EAST / UP   
+   NOAZI    0.00   -3.94   -4.22   -2.27    0.62    3.81    6.25    7.81    7.93    6.50    3.46   -0.86   -6.17  -11.94  -17.30  -21.13  -22.21
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      4.20      1.38     83.36                              NORTH / EAST / UP   
+   NOAZI    0.00   -3.13   -3.42   -2.00    0.28    2.78    4.87    6.39    7.05    6.97    6.35    5.47    4.82    4.85    6.37   10.19   17.66
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+MAC4647942      MMAC                                        TYPE / SERIAL NO    
+FIELD               NGS/TUM                  1    10-AUG-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+     -0.80      2.34    120.84                              NORTH / EAST / UP   
+   NOAZI    0.00   -4.54   -4.92   -2.77    0.72    4.71    8.25   10.91   12.33   12.30   10.96    8.24    4.73    0.86   -2.30   -3.73   -2.21
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.40      2.68     93.26                              NORTH / EAST / UP   
+   NOAZI    0.00   -3.53   -4.22   -3.10   -1.12    1.08    2.97    4.19    4.45    3.97    2.75    1.27   -0.18   -1.15   -0.73    1.69    7.56
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+MPLL1/L2_SURV   NONE                                        TYPE / SERIAL NO    
+CONVERTED           TUM                      0    16-APR-03 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+      0.60     -0.46     60.84                              NORTH / EAST / UP   
+   NOAZI    0.00    0.16   -0.52   -1.07   -1.18   -1.59   -2.55   -3.59   -4.07   -4.50   -5.14   -5.26   -4.47   -2.84   -1.30    1.77    7.39
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.10     -0.62     85.26                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.03   -0.42   -1.10   -1.82   -2.02   -2.13   -2.51   -3.35   -4.03   -4.35   -4.13   -3.38   -2.05   -0.53   -0.01   -1.24
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+MPL_WAAS_2224NW NONE                                        TYPE / SERIAL NO    
+FIELD               NGS/TUM                  1    19-MAR-08 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.20     -4.76    448.54                              NORTH / EAST / UP   
+   NOAZI    0.00    0.16    0.38    0.73    1.02    1.31    1.65    2.11    2.63    3.10    3.56    3.84    3.73    3.06    1.90    0.17   -2.31
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.60     -4.52    458.56                              NORTH / EAST / UP   
+   NOAZI    0.00   -2.73   -3.72   -3.40   -2.42   -1.12    0.17    1.29    1.85    2.07    1.95    1.47    0.72   -0.05   -0.73   -0.91   -0.14
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+MPL_WAAS_2225NW NONE                                        TYPE / SERIAL NO    
+FIELD               NGS/TUM                  2    19-MAR-08 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.80     -3.96    443.84                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.54   -0.82   -0.87   -0.88   -0.79   -0.75   -0.69   -0.77   -0.80   -0.94   -1.26   -1.77   -2.54   -3.60   -4.63   -5.61
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.90     -1.02    456.76                              NORTH / EAST / UP   
+   NOAZI    0.00   -2.53   -3.32   -2.90   -1.82   -0.62    0.47    1.19    1.45    1.07    0.35   -0.83   -2.18   -3.65   -4.93   -5.61   -5.04
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+NAVAN2004T      NONE                                        TYPE / SERIAL NO    
+FIELD               NGS/TUM                  3    10-AUG-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+     -0.90     -1.06     39.94                              NORTH / EAST / UP   
+   NOAZI    0.00    1.76    2.78    3.33    3.32    3.11    2.65    2.21    1.93    1.90    2.06    2.34    2.83    3.36    4.10    5.07    6.19
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -3.40     -1.92     62.96                              NORTH / EAST / UP   
+   NOAZI    0.00   -1.33   -2.02   -2.10   -1.92   -1.52   -0.93   -0.51   -0.25    0.07    0.15    0.27    0.12   -0.25   -0.93   -2.01   -3.24
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+NAVAN2008T      NONE                                        TYPE / SERIAL NO    
+FIELD               NGS/TUM                  3    10-AUG-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      1.40      0.04     10.84                              NORTH / EAST / UP   
+   NOAZI    0.00    1.16    1.68    1.93    1.62    1.11    0.55    0.01   -0.37   -0.60   -0.44   -0.16    0.43    1.36    2.40    3.97    5.89
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.20     -1.02     25.86                              NORTH / EAST / UP   
+   NOAZI    0.00    0.67    1.08    1.10    0.88    0.38   -0.33   -1.11   -1.95   -2.53   -2.85   -2.63   -1.98   -0.65    1.27    3.99    7.66
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+NOV501          NONE                                        TYPE / SERIAL NO    
+FIELD               NGS/TUM                  3    11-AUG-06 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     1                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+     -0.20      1.54     37.04                              NORTH / EAST / UP   
+   NOAZI    0.00    3.96    6.28    7.13    7.02    6.31    5.35    4.41    3.73    3.40    3.56    3.94    4.63    5.56    6.30    6.97    7.29
+   G01                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+NOV501+CR       NONE                                        TYPE / SERIAL NO    
+FIELD               NGS/TUM                  3    11-AUG-06 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     1                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+     -0.40      1.64     78.24                              NORTH / EAST / UP   
+   NOAZI    0.00    0.16    0.18    0.03   -0.38   -0.89   -1.55   -2.19   -2.57   -2.90   -2.94   -2.66   -2.27   -1.44   -0.20    1.67    4.39
+   G01                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+NOV502          NONE                                        TYPE / SERIAL NO    
+FIELD               NGS/TUM                  3    10-AUG-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+     -0.50     -1.76     41.24                              NORTH / EAST / UP   
+   NOAZI    0.00   -2.34   -3.32   -3.57   -3.28   -2.79   -2.25   -1.89   -1.47   -1.40   -1.34   -1.36   -1.37   -1.14   -0.40    1.37    4.69
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.30     -2.32     59.06                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.83   -1.62   -2.50   -3.22   -3.82   -4.23   -4.51   -4.55   -4.33   -3.95   -3.43   -2.78   -2.35   -2.33   -3.01   -4.34
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+NOV502+CR       NONE                                        TYPE / SERIAL NO    
+FIELD               NGS/TUM                  3    10-AUG-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+     -0.70     -2.86     28.64                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.24   -0.62   -1.07   -1.78   -2.69   -3.65   -4.49   -5.17   -5.60   -5.64   -5.16   -4.17   -2.34    0.40    4.27    9.89
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.60     -1.32     67.76                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.23   -0.72   -1.30   -1.92   -2.52   -3.23   -3.81   -4.35   -4.63   -4.65   -4.23   -3.38   -2.25   -0.83    0.89    3.06
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+NOV503+CR       NONE                                        TYPE / SERIAL NO    
+FIELD               NGS/TUM                  2    20-APR-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      2.90     -1.86     67.74                              NORTH / EAST / UP   
+   NOAZI    0.00    0.06   -0.12   -0.47   -0.98   -1.69   -2.35   -2.99   -3.47   -3.70   -3.54   -3.26   -2.57   -1.54    0.10    2.47    5.79
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.20     -0.32     84.36                              NORTH / EAST / UP   
+   NOAZI    0.00   -1.63   -2.82   -3.60   -4.42   -5.12   -5.73   -6.41   -6.95   -7.43   -7.55   -7.33   -6.48   -5.15   -3.03   -0.21    3.86
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+NOV503+CR       SPKE                                        TYPE / SERIAL NO    
+FIELD               NGS/TUM                  2    20-APR-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      2.60     -3.06     68.34                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.34   -0.42   -0.57   -0.88   -1.29   -1.65   -2.09   -2.37   -2.70   -2.64   -2.46   -2.07   -1.24    0.20    2.37    5.69
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.90     -0.82     86.66                              NORTH / EAST / UP   
+   NOAZI    0.00   -1.23   -2.22   -3.00   -3.62   -4.12   -4.73   -5.21   -5.65   -6.03   -6.15   -5.73   -5.08   -3.85   -2.13    0.09    3.36
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+NOV531          NONE                                        TYPE / SERIAL NO    
+FIELD               NGS/TUM                  3    11-AUG-06 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     1                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      1.60     -1.66     46.54                              NORTH / EAST / UP   
+   NOAZI    0.00   -1.64   -2.32   -2.37   -2.18   -1.79   -1.55   -1.39   -1.37   -1.50   -1.64   -1.96   -2.27   -2.34   -2.00   -0.83    1.69
+   G01                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+NOV531+CR       NONE                                        TYPE / SERIAL NO    
+FIELD               NGS/TUM                  3    11-AUG-06 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     1                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      2.10     -2.26     32.94                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.44   -0.92   -1.57   -2.38   -3.29   -4.25   -5.09   -5.77   -6.10   -6.04   -5.66   -4.67   -3.24   -0.90    2.47    7.09
+   G01                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+NOV600          NONE                                        TYPE / SERIAL NO    
+FIELD               NGS/TUM                  3    20-APR-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+     -0.70     -0.16     71.74                              NORTH / EAST / UP   
+   NOAZI    0.00    0.46    0.68    0.73    0.72    0.51    0.15   -0.09   -0.17   -0.20   -0.04    0.14    0.43    0.86    1.40    2.27    3.59
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.10     -1.02     83.86                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.73   -1.12   -1.30   -1.32   -1.22   -1.23   -1.31   -1.55   -1.63   -1.75   -1.73   -1.58   -1.35   -1.03   -0.61    0.16
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+NOV702          NONE                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               2    01-OCT-08 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+      0.61      1.99     65.64                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.02   -0.07   -0.15   -0.24   -0.34   -0.43   -0.51   -0.56   -0.61   -0.65   -0.69   -0.69   -0.62   -0.44   -0.13    0.28    0.70    1.02
+     0.0    0.00    0.01   -0.03   -0.12   -0.27   -0.45   -0.60   -0.67   -0.63   -0.52   -0.43   -0.46   -0.64   -0.91   -1.13   -1.10   -0.74   -0.13    0.39
+     5.0    0.00    0.01   -0.03   -0.12   -0.27   -0.46   -0.62   -0.71   -0.69   -0.60   -0.51   -0.52   -0.69   -0.95   -1.18   -1.19   -0.88   -0.30    0.28
+    10.0    0.00    0.00   -0.03   -0.12   -0.27   -0.46   -0.63   -0.74   -0.75   -0.68   -0.59   -0.58   -0.71   -0.94   -1.17   -1.22   -0.97   -0.44    0.18
+    15.0    0.00    0.00   -0.03   -0.12   -0.27   -0.46   -0.64   -0.77   -0.80   -0.75   -0.67   -0.63   -0.71   -0.90   -1.11   -1.19   -1.01   -0.54    0.08
+    20.0    0.00    0.00   -0.03   -0.12   -0.26   -0.45   -0.64   -0.79   -0.85   -0.82   -0.74   -0.68   -0.70   -0.83   -1.01   -1.10   -0.98   -0.59    0.01
+    25.0    0.00    0.00   -0.04   -0.12   -0.26   -0.44   -0.63   -0.80   -0.88   -0.88   -0.80   -0.72   -0.69   -0.76   -0.88   -0.97   -0.90   -0.58   -0.04
+    30.0    0.00    0.00   -0.04   -0.12   -0.25   -0.43   -0.62   -0.79   -0.90   -0.92   -0.86   -0.76   -0.69   -0.68   -0.75   -0.81   -0.77   -0.51   -0.04
+    35.0    0.00    0.00   -0.04   -0.12   -0.25   -0.41   -0.60   -0.78   -0.91   -0.96   -0.91   -0.81   -0.70   -0.63   -0.63   -0.65   -0.60   -0.39    0.01
+    40.0    0.00    0.00   -0.05   -0.13   -0.25   -0.40   -0.58   -0.77   -0.91   -0.98   -0.96   -0.87   -0.73   -0.61   -0.53   -0.49   -0.42   -0.23    0.11
+    45.0    0.00   -0.01   -0.05   -0.13   -0.24   -0.39   -0.56   -0.74   -0.90   -1.00   -1.01   -0.93   -0.78   -0.62   -0.47   -0.36   -0.24   -0.05    0.24
+    50.0    0.00   -0.01   -0.06   -0.14   -0.24   -0.38   -0.54   -0.72   -0.89   -1.01   -1.06   -1.00   -0.86   -0.66   -0.46   -0.26   -0.08    0.12    0.39
+    55.0    0.00   -0.01   -0.06   -0.14   -0.25   -0.37   -0.53   -0.70   -0.88   -1.02   -1.10   -1.08   -0.95   -0.74   -0.49   -0.23    0.02    0.27    0.53
+    60.0    0.00   -0.01   -0.07   -0.15   -0.25   -0.37   -0.52   -0.69   -0.87   -1.03   -1.14   -1.15   -1.05   -0.84   -0.55   -0.24    0.07    0.36    0.63
+    65.0    0.00   -0.01   -0.07   -0.15   -0.26   -0.37   -0.51   -0.67   -0.86   -1.04   -1.17   -1.22   -1.15   -0.95   -0.65   -0.30    0.05    0.39    0.69
+    70.0    0.00   -0.02   -0.07   -0.16   -0.26   -0.38   -0.51   -0.66   -0.84   -1.03   -1.19   -1.28   -1.24   -1.06   -0.77   -0.41   -0.03    0.34    0.67
+    75.0    0.00   -0.02   -0.08   -0.17   -0.27   -0.38   -0.50   -0.65   -0.83   -1.02   -1.20   -1.31   -1.30   -1.15   -0.88   -0.52   -0.14    0.22    0.58
+    80.0    0.00   -0.02   -0.08   -0.17   -0.27   -0.38   -0.50   -0.64   -0.81   -1.00   -1.19   -1.31   -1.33   -1.21   -0.96   -0.63   -0.28    0.07    0.43
+    85.0    0.00   -0.02   -0.08   -0.17   -0.27   -0.37   -0.48   -0.61   -0.78   -0.96   -1.15   -1.28   -1.32   -1.22   -1.00   -0.71   -0.39   -0.08    0.26
+    90.0    0.00   -0.02   -0.08   -0.17   -0.27   -0.37   -0.47   -0.58   -0.73   -0.91   -1.09   -1.22   -1.26   -1.17   -0.98   -0.72   -0.46   -0.21    0.09
+    95.0    0.00   -0.02   -0.08   -0.17   -0.26   -0.35   -0.44   -0.54   -0.67   -0.83   -1.00   -1.13   -1.16   -1.07   -0.89   -0.65   -0.44   -0.26   -0.02
+   100.0    0.00   -0.02   -0.08   -0.16   -0.25   -0.33   -0.40   -0.48   -0.60   -0.74   -0.89   -1.00   -1.02   -0.92   -0.72   -0.50   -0.32   -0.20   -0.03
+   105.0    0.00   -0.02   -0.08   -0.15   -0.23   -0.30   -0.35   -0.42   -0.51   -0.63   -0.76   -0.85   -0.84   -0.72   -0.49   -0.25   -0.08   -0.01    0.08
+   110.0    0.00   -0.02   -0.07   -0.14   -0.21   -0.26   -0.30   -0.34   -0.41   -0.51   -0.62   -0.68   -0.64   -0.48   -0.21    0.07    0.26    0.32    0.34
+   115.0    0.00   -0.02   -0.07   -0.13   -0.18   -0.22   -0.24   -0.27   -0.31   -0.39   -0.47   -0.51   -0.43   -0.22    0.11    0.46    0.69    0.76    0.74
+   120.0    0.00   -0.02   -0.06   -0.11   -0.16   -0.18   -0.19   -0.19   -0.22   -0.27   -0.33   -0.34   -0.23    0.04    0.43    0.86    1.18    1.28    1.26
+   125.0    0.00   -0.02   -0.06   -0.10   -0.13   -0.15   -0.14   -0.13   -0.13   -0.16   -0.20   -0.18   -0.05    0.27    0.74    1.25    1.67    1.85    1.84
+   130.0    0.00   -0.02   -0.05   -0.09   -0.11   -0.11   -0.10   -0.07   -0.06   -0.07   -0.09   -0.06    0.11    0.46    0.99    1.59    2.11    2.39    2.43
+   135.0    0.00   -0.02   -0.05   -0.08   -0.09   -0.09   -0.06   -0.03   -0.01    0.00   -0.01    0.04    0.21    0.58    1.16    1.84    2.47    2.85    2.96
+   140.0    0.00   -0.02   -0.04   -0.07   -0.08   -0.07   -0.04   -0.01    0.02    0.04    0.04    0.09    0.27    0.64    1.24    1.98    2.69    3.18    3.36
+   145.0    0.00   -0.02   -0.04   -0.06   -0.07   -0.06   -0.04    0.00    0.03    0.05    0.06    0.10    0.26    0.62    1.21    1.97    2.75    3.33    3.58
+   150.0    0.00   -0.02   -0.04   -0.05   -0.06   -0.06   -0.04   -0.01    0.02    0.03    0.04    0.07    0.20    0.52    1.07    1.83    2.64    3.28    3.58
+   155.0    0.00   -0.02   -0.04   -0.05   -0.06   -0.07   -0.06   -0.04   -0.02   -0.01   -0.01   -0.01    0.08    0.34    0.84    1.57    2.37    3.03    3.36
+   160.0    0.00   -0.02   -0.04   -0.05   -0.07   -0.09   -0.09   -0.08   -0.07   -0.07   -0.09   -0.12   -0.08    0.11    0.54    1.19    1.95    2.60    2.92
+   165.0    0.00   -0.02   -0.04   -0.06   -0.08   -0.11   -0.12   -0.13   -0.13   -0.14   -0.19   -0.25   -0.28   -0.16    0.17    0.74    1.43    2.03    2.31
+   170.0    0.00   -0.02   -0.04   -0.07   -0.10   -0.13   -0.16   -0.18   -0.20   -0.23   -0.30   -0.41   -0.49   -0.45   -0.22    0.25    0.85    1.38    1.59
+   175.0    0.00   -0.02   -0.05   -0.08   -0.12   -0.16   -0.20   -0.24   -0.27   -0.32   -0.42   -0.56   -0.70   -0.74   -0.60   -0.24    0.26    0.69    0.83
+   180.0    0.00   -0.02   -0.05   -0.09   -0.14   -0.19   -0.25   -0.29   -0.34   -0.41   -0.54   -0.72   -0.90   -1.01   -0.95   -0.69   -0.30    0.04    0.09
+   185.0    0.00   -0.02   -0.06   -0.10   -0.16   -0.23   -0.29   -0.35   -0.41   -0.50   -0.64   -0.85   -1.08   -1.24   -1.25   -1.08   -0.78   -0.53   -0.55
+   190.0    0.00   -0.03   -0.06   -0.12   -0.19   -0.26   -0.34   -0.40   -0.47   -0.57   -0.74   -0.97   -1.22   -1.42   -1.48   -1.38   -1.16   -0.98   -1.04
+   195.0    0.00   -0.03   -0.07   -0.14   -0.21   -0.30   -0.38   -0.45   -0.53   -0.64   -0.81   -1.05   -1.32   -1.54   -1.64   -1.59   -1.43   -1.30   -1.36
+   200.0    0.00   -0.03   -0.08   -0.15   -0.24   -0.33   -0.42   -0.49   -0.58   -0.70   -0.87   -1.11   -1.38   -1.61   -1.73   -1.71   -1.59   -1.47   -1.51
+   205.0    0.00   -0.03   -0.09   -0.17   -0.26   -0.36   -0.46   -0.54   -0.62   -0.74   -0.91   -1.14   -1.40   -1.63   -1.76   -1.75   -1.64   -1.50   -1.49
+   210.0    0.00   -0.03   -0.09   -0.18   -0.29   -0.39   -0.49   -0.57   -0.66   -0.77   -0.93   -1.15   -1.39   -1.60   -1.73   -1.73   -1.60   -1.43   -1.33
+   215.0    0.00   -0.03   -0.10   -0.20   -0.31   -0.42   -0.52   -0.60   -0.68   -0.79   -0.94   -1.13   -1.35   -1.55   -1.67   -1.66   -1.50   -1.27   -1.07
+   220.0    0.00   -0.03   -0.11   -0.21   -0.33   -0.44   -0.54   -0.62   -0.70   -0.79   -0.93   -1.11   -1.31   -1.49   -1.59   -1.55   -1.36   -1.05   -0.75
+   225.0    0.00   -0.03   -0.11   -0.22   -0.34   -0.45   -0.55   -0.63   -0.70   -0.79   -0.91   -1.08   -1.26   -1.43   -1.51   -1.43   -1.19   -0.80   -0.40
+   230.0    0.00   -0.03   -0.11   -0.22   -0.34   -0.46   -0.55   -0.63   -0.70   -0.78   -0.89   -1.05   -1.22   -1.37   -1.42   -1.31   -1.00   -0.53   -0.06
+   235.0    0.00   -0.03   -0.11   -0.22   -0.35   -0.46   -0.55   -0.62   -0.68   -0.76   -0.87   -1.02   -1.19   -1.32   -1.35   -1.18   -0.80   -0.26    0.26
+   240.0    0.00   -0.03   -0.11   -0.22   -0.34   -0.45   -0.53   -0.60   -0.66   -0.74   -0.85   -1.01   -1.17   -1.29   -1.27   -1.05   -0.60    0.01    0.56
+   245.0    0.00   -0.03   -0.11   -0.22   -0.33   -0.43   -0.51   -0.57   -0.63   -0.72   -0.84   -1.00   -1.16   -1.26   -1.20   -0.92   -0.38    0.29    0.84
+   250.0    0.00   -0.03   -0.11   -0.21   -0.32   -0.41   -0.49   -0.54   -0.61   -0.70   -0.83   -1.00   -1.15   -1.23   -1.12   -0.76   -0.15    0.57    1.12
+   255.0    0.00   -0.03   -0.10   -0.20   -0.30   -0.39   -0.46   -0.51   -0.58   -0.68   -0.82   -0.99   -1.14   -1.18   -1.02   -0.59    0.09    0.87    1.40
+   260.0    0.00   -0.03   -0.10   -0.19   -0.29   -0.37   -0.43   -0.48   -0.56   -0.66   -0.81   -0.98   -1.11   -1.12   -0.90   -0.39    0.36    1.17    1.69
+   265.0    0.00   -0.03   -0.09   -0.18   -0.27   -0.34   -0.40   -0.46   -0.54   -0.66   -0.81   -0.96   -1.07   -1.02   -0.74   -0.17    0.63    1.47    2.00
+   270.0    0.00   -0.02   -0.09   -0.17   -0.25   -0.32   -0.39   -0.45   -0.54   -0.65   -0.79   -0.93   -0.99   -0.89   -0.55    0.07    0.91    1.77    2.32
+   275.0    0.00   -0.02   -0.08   -0.16   -0.23   -0.31   -0.37   -0.45   -0.54   -0.65   -0.77   -0.87   -0.88   -0.73   -0.34    0.32    1.17    2.04    2.62
+   280.0    0.00   -0.02   -0.07   -0.14   -0.22   -0.30   -0.37   -0.45   -0.54   -0.64   -0.74   -0.79   -0.75   -0.54   -0.11    0.56    1.41    2.27    2.88
+   285.0    0.00   -0.02   -0.07   -0.13   -0.21   -0.29   -0.38   -0.47   -0.55   -0.64   -0.70   -0.70   -0.59   -0.34    0.12    0.79    1.61    2.44    3.09
+   290.0    0.00   -0.01   -0.06   -0.13   -0.21   -0.30   -0.39   -0.48   -0.57   -0.63   -0.64   -0.58   -0.43   -0.13    0.33    0.97    1.75    2.55    3.21
+   295.0    0.00   -0.01   -0.05   -0.12   -0.20   -0.30   -0.41   -0.50   -0.58   -0.60   -0.57   -0.46   -0.26    0.06    0.52    1.11    1.83    2.57    3.24
+   300.0    0.00   -0.01   -0.05   -0.11   -0.20   -0.31   -0.43   -0.52   -0.58   -0.57   -0.50   -0.34   -0.11    0.22    0.65    1.19    1.83    2.52    3.17
+   305.0    0.00   -0.01   -0.04   -0.11   -0.21   -0.33   -0.44   -0.54   -0.57   -0.54   -0.42   -0.23    0.02    0.33    0.72    1.20    1.77    2.39    3.00
+   310.0    0.00    0.00   -0.04   -0.11   -0.21   -0.34   -0.46   -0.55   -0.56   -0.49   -0.34   -0.13    0.11    0.39    0.73    1.14    1.65    2.20    2.75
+   315.0    0.00    0.00   -0.03   -0.11   -0.22   -0.35   -0.48   -0.55   -0.54   -0.44   -0.27   -0.06    0.16    0.39    0.66    1.02    1.47    1.98    2.45
+   320.0    0.00    0.00   -0.03   -0.11   -0.22   -0.37   -0.49   -0.55   -0.52   -0.40   -0.21   -0.02    0.16    0.32    0.53    0.83    1.25    1.72    2.11
+   325.0    0.00    0.00   -0.03   -0.11   -0.23   -0.38   -0.50   -0.55   -0.50   -0.36   -0.17   -0.01    0.11    0.20    0.34    0.60    1.00    1.45    1.78
+   330.0    0.00    0.00   -0.03   -0.11   -0.24   -0.39   -0.51   -0.55   -0.48   -0.33   -0.15   -0.02    0.03    0.04    0.11    0.33    0.73    1.19    1.47
+   335.0    0.00    0.00   -0.03   -0.11   -0.25   -0.40   -0.52   -0.55   -0.47   -0.31   -0.15   -0.07   -0.08   -0.15   -0.15    0.05    0.46    0.94    1.20
+   340.0    0.00    0.01   -0.03   -0.11   -0.25   -0.41   -0.54   -0.56   -0.48   -0.32   -0.18   -0.13   -0.21   -0.35   -0.41   -0.24    0.18    0.70    0.97
+   345.0    0.00    0.01   -0.02   -0.11   -0.26   -0.42   -0.55   -0.58   -0.49   -0.34   -0.22   -0.21   -0.34   -0.54   -0.65   -0.51   -0.08    0.47    0.78
+   350.0    0.00    0.01   -0.03   -0.12   -0.26   -0.43   -0.57   -0.60   -0.53   -0.39   -0.28   -0.29   -0.46   -0.70   -0.86   -0.75   -0.33    0.26    0.63
+   355.0    0.00    0.01   -0.03   -0.12   -0.27   -0.44   -0.59   -0.63   -0.57   -0.45   -0.35   -0.38   -0.56   -0.83   -1.02   -0.96   -0.55    0.06    0.50
+   360.0    0.00    0.01   -0.03   -0.12   -0.27   -0.45   -0.60   -0.67   -0.63   -0.52   -0.43   -0.46   -0.64   -0.91   -1.13   -1.10   -0.74   -0.13    0.39
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.58      0.77     64.20                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.04   -0.15   -0.32   -0.52   -0.73   -0.91   -1.06   -1.14   -1.12   -1.00   -0.78   -0.53   -0.30   -0.14   -0.04    0.14    0.60    1.55
+     0.0    0.00    0.01   -0.08   -0.24   -0.44   -0.64   -0.83   -0.99   -1.12   -1.20   -1.17   -1.02   -0.77   -0.45   -0.15    0.10    0.37    0.83    1.67
+     5.0    0.00    0.00   -0.08   -0.24   -0.42   -0.62   -0.81   -1.00   -1.16   -1.26   -1.24   -1.08   -0.78   -0.42   -0.10    0.13    0.35    0.77    1.63
+    10.0    0.00    0.00   -0.08   -0.23   -0.40   -0.59   -0.79   -1.00   -1.19   -1.31   -1.30   -1.12   -0.79   -0.39   -0.06    0.16    0.36    0.76    1.67
+    15.0    0.00    0.00   -0.08   -0.22   -0.39   -0.57   -0.78   -1.00   -1.21   -1.35   -1.35   -1.15   -0.80   -0.38   -0.04    0.18    0.37    0.80    1.77
+    20.0    0.00    0.00   -0.08   -0.22   -0.38   -0.56   -0.77   -1.00   -1.22   -1.38   -1.37   -1.17   -0.81   -0.39   -0.04    0.19    0.40    0.87    1.93
+    25.0    0.00    0.00   -0.09   -0.21   -0.37   -0.55   -0.76   -1.00   -1.23   -1.38   -1.38   -1.18   -0.82   -0.41   -0.06    0.17    0.42    0.97    2.11
+    30.0    0.00   -0.01   -0.09   -0.22   -0.37   -0.55   -0.75   -0.99   -1.22   -1.37   -1.36   -1.17   -0.83   -0.44   -0.11    0.13    0.43    1.06    2.30
+    35.0    0.00   -0.01   -0.09   -0.22   -0.37   -0.55   -0.76   -0.99   -1.20   -1.34   -1.33   -1.14   -0.83   -0.48   -0.18    0.07    0.42    1.13    2.45
+    40.0    0.00   -0.01   -0.10   -0.22   -0.38   -0.56   -0.76   -0.98   -1.18   -1.29   -1.28   -1.11   -0.83   -0.53   -0.26   -0.01    0.38    1.16    2.56
+    45.0    0.00   -0.02   -0.10   -0.23   -0.39   -0.57   -0.77   -0.97   -1.15   -1.24   -1.22   -1.06   -0.83   -0.58   -0.35   -0.12    0.29    1.13    2.58
+    50.0    0.00   -0.02   -0.11   -0.24   -0.40   -0.58   -0.78   -0.96   -1.12   -1.19   -1.15   -1.02   -0.82   -0.63   -0.45   -0.24    0.17    1.03    2.53
+    55.0    0.00   -0.03   -0.12   -0.25   -0.42   -0.60   -0.78   -0.96   -1.08   -1.13   -1.09   -0.97   -0.82   -0.67   -0.55   -0.38    0.01    0.86    2.38
+    60.0    0.00   -0.03   -0.12   -0.26   -0.43   -0.61   -0.79   -0.94   -1.05   -1.08   -1.04   -0.93   -0.81   -0.71   -0.65   -0.54   -0.20    0.62    2.15
+    65.0    0.00   -0.03   -0.13   -0.27   -0.44   -0.62   -0.79   -0.93   -1.02   -1.04   -0.99   -0.90   -0.80   -0.75   -0.74   -0.69   -0.42    0.33    1.86
+    70.0    0.00   -0.04   -0.14   -0.28   -0.45   -0.63   -0.79   -0.91   -0.98   -0.99   -0.95   -0.87   -0.79   -0.77   -0.81   -0.84   -0.67    0.00    1.52
+    75.0    0.00   -0.04   -0.15   -0.29   -0.46   -0.63   -0.77   -0.88   -0.95   -0.95   -0.91   -0.84   -0.78   -0.79   -0.87   -0.97   -0.90   -0.34    1.16
+    80.0    0.00   -0.05   -0.15   -0.30   -0.46   -0.62   -0.75   -0.85   -0.91   -0.91   -0.87   -0.81   -0.76   -0.78   -0.90   -1.07   -1.12   -0.67    0.81
+    85.0    0.00   -0.05   -0.16   -0.31   -0.46   -0.61   -0.73   -0.81   -0.86   -0.87   -0.83   -0.78   -0.73   -0.76   -0.90   -1.14   -1.29   -0.96    0.48
+    90.0    0.00   -0.05   -0.17   -0.31   -0.46   -0.59   -0.70   -0.77   -0.81   -0.82   -0.79   -0.73   -0.68   -0.71   -0.87   -1.16   -1.41   -1.19    0.19
+    95.0    0.00   -0.06   -0.17   -0.31   -0.46   -0.58   -0.66   -0.72   -0.76   -0.76   -0.74   -0.68   -0.62   -0.63   -0.80   -1.13   -1.46   -1.33   -0.04
+   100.0    0.00   -0.06   -0.18   -0.32   -0.45   -0.56   -0.63   -0.68   -0.70   -0.71   -0.67   -0.60   -0.53   -0.53   -0.69   -1.04   -1.43   -1.39   -0.20
+   105.0    0.00   -0.07   -0.18   -0.32   -0.45   -0.54   -0.60   -0.64   -0.65   -0.65   -0.60   -0.52   -0.42   -0.39   -0.54   -0.90   -1.31   -1.36   -0.30
+   110.0    0.00   -0.07   -0.19   -0.32   -0.44   -0.53   -0.58   -0.61   -0.61   -0.59   -0.53   -0.42   -0.29   -0.24   -0.36   -0.70   -1.13   -1.24   -0.33
+   115.0    0.00   -0.07   -0.19   -0.33   -0.44   -0.53   -0.57   -0.59   -0.58   -0.54   -0.45   -0.31   -0.15   -0.06   -0.15   -0.46   -0.88   -1.03   -0.30
+   120.0    0.00   -0.08   -0.20   -0.33   -0.45   -0.53   -0.57   -0.59   -0.57   -0.51   -0.39   -0.20   -0.01    0.12    0.07   -0.20   -0.58   -0.77   -0.22
+   125.0    0.00   -0.08   -0.20   -0.33   -0.45   -0.54   -0.59   -0.60   -0.58   -0.49   -0.33   -0.11    0.13    0.30    0.30    0.08   -0.26   -0.46   -0.08
+   130.0    0.00   -0.08   -0.21   -0.34   -0.46   -0.55   -0.61   -0.63   -0.60   -0.49   -0.30   -0.03    0.26    0.47    0.51    0.34    0.06   -0.13    0.09
+   135.0    0.00   -0.08   -0.21   -0.35   -0.47   -0.57   -0.65   -0.68   -0.64   -0.52   -0.29    0.02    0.35    0.60    0.69    0.58    0.36    0.19    0.29
+   140.0    0.00   -0.09   -0.21   -0.35   -0.49   -0.60   -0.69   -0.73   -0.70   -0.56   -0.30    0.05    0.42    0.70    0.82    0.77    0.61    0.49    0.51
+   145.0    0.00   -0.09   -0.22   -0.36   -0.50   -0.62   -0.73   -0.79   -0.77   -0.62   -0.34    0.04    0.44    0.76    0.91    0.89    0.79    0.73    0.73
+   150.0    0.00   -0.09   -0.22   -0.37   -0.51   -0.65   -0.77   -0.85   -0.84   -0.70   -0.41    0.00    0.42    0.76    0.94    0.95    0.90    0.91    0.95
+   155.0    0.00   -0.09   -0.23   -0.38   -0.53   -0.68   -0.81   -0.91   -0.91   -0.78   -0.49   -0.08    0.37    0.72    0.91    0.94    0.93    1.01    1.14
+   160.0    0.00   -0.09   -0.23   -0.39   -0.54   -0.70   -0.84   -0.96   -0.99   -0.87   -0.59   -0.17    0.28    0.63    0.82    0.86    0.88    1.04    1.31
+   165.0    0.00   -0.09   -0.24   -0.40   -0.56   -0.72   -0.87   -1.00   -1.05   -0.96   -0.70   -0.29    0.16    0.51    0.70    0.73    0.76    0.98    1.42
+   170.0    0.00   -0.09   -0.24   -0.40   -0.57   -0.74   -0.90   -1.04   -1.11   -1.04   -0.80   -0.42    0.02    0.37    0.54    0.55    0.59    0.87    1.49
+   175.0    0.00   -0.09   -0.24   -0.41   -0.58   -0.75   -0.92   -1.07   -1.16   -1.12   -0.91   -0.55   -0.13    0.21    0.36    0.36    0.38    0.70    1.50
+   180.0    0.00   -0.09   -0.25   -0.42   -0.60   -0.77   -0.95   -1.10   -1.21   -1.19   -1.01   -0.67   -0.27    0.05    0.19    0.16    0.15    0.50    1.45
+   185.0    0.00   -0.09   -0.25   -0.43   -0.62   -0.79   -0.97   -1.13   -1.25   -1.25   -1.10   -0.79   -0.41   -0.10    0.02   -0.03   -0.06    0.29    1.37
+   190.0    0.00   -0.09   -0.25   -0.44   -0.64   -0.82   -1.00   -1.17   -1.29   -1.31   -1.17   -0.89   -0.53   -0.23   -0.12   -0.20   -0.25    0.09    1.25
+   195.0    0.00   -0.09   -0.25   -0.45   -0.66   -0.85   -1.03   -1.20   -1.33   -1.36   -1.24   -0.97   -0.63   -0.34   -0.24   -0.32   -0.40   -0.07    1.11
+   200.0    0.00   -0.09   -0.25   -0.46   -0.68   -0.88   -1.08   -1.25   -1.37   -1.40   -1.29   -1.04   -0.71   -0.43   -0.32   -0.40   -0.49   -0.18    0.99
+   205.0    0.00   -0.09   -0.25   -0.47   -0.70   -0.92   -1.12   -1.29   -1.41   -1.44   -1.33   -1.09   -0.77   -0.49   -0.38   -0.44   -0.52   -0.23    0.88
+   210.0    0.00   -0.08   -0.25   -0.48   -0.72   -0.96   -1.17   -1.34   -1.46   -1.48   -1.36   -1.13   -0.81   -0.54   -0.41   -0.44   -0.49   -0.21    0.82
+   215.0    0.00   -0.08   -0.25   -0.48   -0.74   -1.00   -1.22   -1.40   -1.50   -1.50   -1.38   -1.15   -0.84   -0.57   -0.42   -0.41   -0.41   -0.13    0.81
+   220.0    0.00   -0.08   -0.24   -0.48   -0.76   -1.03   -1.27   -1.44   -1.54   -1.53   -1.39   -1.15   -0.86   -0.59   -0.41   -0.35   -0.29    0.00    0.85
+   225.0    0.00   -0.07   -0.24   -0.48   -0.76   -1.05   -1.31   -1.49   -1.57   -1.54   -1.39   -1.15   -0.86   -0.59   -0.40   -0.28   -0.15    0.18    0.94
+   230.0    0.00   -0.07   -0.23   -0.47   -0.77   -1.07   -1.33   -1.52   -1.59   -1.54   -1.38   -1.13   -0.85   -0.58   -0.37   -0.20    0.01    0.38    1.08
+   235.0    0.00   -0.06   -0.22   -0.46   -0.76   -1.07   -1.35   -1.53   -1.60   -1.53   -1.36   -1.11   -0.83   -0.57   -0.34   -0.12    0.16    0.59    1.25
+   240.0    0.00   -0.06   -0.21   -0.45   -0.75   -1.06   -1.34   -1.53   -1.59   -1.52   -1.33   -1.07   -0.79   -0.54   -0.30   -0.04    0.30    0.79    1.43
+   245.0    0.00   -0.05   -0.19   -0.43   -0.72   -1.04   -1.33   -1.52   -1.58   -1.49   -1.29   -1.02   -0.75   -0.49   -0.25    0.03    0.42    0.96    1.61
+   250.0    0.00   -0.04   -0.18   -0.40   -0.70   -1.01   -1.30   -1.49   -1.55   -1.46   -1.25   -0.97   -0.69   -0.44   -0.20    0.09    0.51    1.09    1.77
+   255.0    0.00   -0.04   -0.17   -0.38   -0.66   -0.97   -1.26   -1.45   -1.51   -1.42   -1.20   -0.91   -0.62   -0.37   -0.14    0.15    0.58    1.19    1.91
+   260.0    0.00   -0.03   -0.15   -0.36   -0.63   -0.93   -1.21   -1.41   -1.48   -1.38   -1.16   -0.86   -0.55   -0.29   -0.07    0.20    0.62    1.24    2.01
+   265.0    0.00   -0.03   -0.14   -0.33   -0.59   -0.89   -1.16   -1.37   -1.44   -1.35   -1.11   -0.80   -0.48   -0.21    0.01    0.25    0.64    1.27    2.09
+   270.0    0.00   -0.02   -0.13   -0.31   -0.56   -0.84   -1.12   -1.32   -1.40   -1.31   -1.07   -0.74   -0.41   -0.13    0.08    0.30    0.66    1.27    2.15
+   275.0    0.00   -0.02   -0.11   -0.29   -0.53   -0.80   -1.07   -1.28   -1.36   -1.28   -1.04   -0.70   -0.35   -0.06    0.14    0.34    0.67    1.27    2.20
+   280.0    0.00   -0.01   -0.10   -0.27   -0.50   -0.77   -1.04   -1.25   -1.33   -1.25   -1.01   -0.66   -0.30   -0.01    0.19    0.37    0.67    1.28    2.26
+   285.0    0.00   -0.01   -0.09   -0.26   -0.49   -0.75   -1.01   -1.22   -1.30   -1.22   -0.98   -0.64   -0.27    0.02    0.22    0.38    0.68    1.30    2.33
+   290.0    0.00    0.00   -0.09   -0.25   -0.47   -0.74   -0.99   -1.19   -1.27   -1.20   -0.96   -0.62   -0.26    0.03    0.22    0.39    0.70    1.34    2.41
+   295.0    0.00    0.00   -0.08   -0.25   -0.47   -0.73   -0.98   -1.17   -1.25   -1.17   -0.94   -0.61   -0.27    0.00    0.20    0.38    0.72    1.40    2.51
+   300.0    0.00    0.00   -0.08   -0.24   -0.47   -0.73   -0.98   -1.15   -1.22   -1.14   -0.92   -0.62   -0.30   -0.05    0.14    0.36    0.74    1.48    2.63
+   305.0    0.00    0.00   -0.08   -0.25   -0.48   -0.74   -0.97   -1.14   -1.19   -1.10   -0.90   -0.63   -0.35   -0.12    0.07    0.32    0.76    1.55    2.73
+   310.0    0.00    0.01   -0.08   -0.25   -0.49   -0.75   -0.97   -1.12   -1.16   -1.07   -0.88   -0.64   -0.41   -0.21   -0.02    0.27    0.77    1.63    2.82
+   315.0    0.00    0.01   -0.08   -0.26   -0.50   -0.75   -0.97   -1.10   -1.12   -1.03   -0.86   -0.66   -0.47   -0.30   -0.11    0.21    0.77    1.68    2.88
+   320.0    0.00    0.01   -0.08   -0.26   -0.51   -0.76   -0.97   -1.08   -1.09   -1.00   -0.85   -0.69   -0.53   -0.39   -0.20    0.15    0.76    1.69    2.88
+   325.0    0.00    0.01   -0.08   -0.27   -0.51   -0.76   -0.96   -1.06   -1.06   -0.98   -0.85   -0.71   -0.59   -0.47   -0.27    0.10    0.73    1.67    2.82
+   330.0    0.00    0.01   -0.08   -0.27   -0.52   -0.76   -0.95   -1.04   -1.04   -0.96   -0.85   -0.74   -0.64   -0.52   -0.32    0.05    0.69    1.60    2.71
+   335.0    0.00    0.01   -0.08   -0.27   -0.51   -0.75   -0.93   -1.03   -1.03   -0.97   -0.87   -0.78   -0.68   -0.56   -0.35    0.02    0.63    1.50    2.55
+   340.0    0.00    0.01   -0.08   -0.27   -0.51   -0.74   -0.92   -1.01   -1.03   -0.99   -0.91   -0.82   -0.71   -0.57   -0.34    0.01    0.57    1.36    2.35
+   345.0    0.00    0.01   -0.08   -0.27   -0.50   -0.72   -0.90   -1.00   -1.04   -1.02   -0.96   -0.86   -0.73   -0.55   -0.32    0.01    0.50    1.21    2.14
+   350.0    0.00    0.01   -0.08   -0.26   -0.48   -0.70   -0.87   -1.00   -1.06   -1.07   -1.02   -0.92   -0.75   -0.53   -0.27    0.03    0.44    1.06    1.94
+   355.0    0.00    0.01   -0.08   -0.25   -0.46   -0.67   -0.85   -0.99   -1.09   -1.13   -1.10   -0.97   -0.76   -0.49   -0.21    0.06    0.40    0.93    1.77
+   360.0    0.00    0.01   -0.08   -0.24   -0.44   -0.64   -0.83   -0.99   -1.12   -1.20   -1.17   -1.02   -0.77   -0.45   -0.15    0.10    0.37    0.83    1.67
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+NOV702GG        NONE                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               2    21-NOV-07 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+      1.35      0.30     66.76                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.01   -0.05   -0.12   -0.22   -0.33   -0.45   -0.58   -0.71   -0.82   -0.93   -1.00   -1.00   -0.88   -0.58   -0.11    0.49    1.11    1.59
+     0.0    0.00    0.00   -0.05   -0.15   -0.29   -0.43   -0.54   -0.61   -0.65   -0.68   -0.73   -0.78   -0.80   -0.72   -0.51   -0.19    0.22    0.72    1.48
+     5.0    0.00    0.00   -0.04   -0.14   -0.29   -0.43   -0.55   -0.62   -0.66   -0.70   -0.76   -0.82   -0.85   -0.78   -0.58   -0.27    0.12    0.61    1.38
+    10.0    0.00    0.00   -0.04   -0.14   -0.29   -0.43   -0.55   -0.63   -0.67   -0.72   -0.79   -0.86   -0.89   -0.82   -0.62   -0.31    0.07    0.56    1.31
+    15.0    0.00    0.00   -0.04   -0.14   -0.29   -0.43   -0.55   -0.63   -0.69   -0.75   -0.82   -0.90   -0.93   -0.86   -0.64   -0.32    0.08    0.55    1.28
+    20.0    0.00    0.00   -0.04   -0.14   -0.28   -0.43   -0.56   -0.64   -0.71   -0.78   -0.87   -0.95   -0.98   -0.89   -0.65   -0.29    0.13    0.61    1.29
+    25.0    0.00    0.00   -0.04   -0.14   -0.28   -0.43   -0.56   -0.65   -0.73   -0.81   -0.91   -1.01   -1.03   -0.92   -0.65   -0.25    0.22    0.72    1.37
+    30.0    0.00    0.00   -0.04   -0.14   -0.28   -0.43   -0.55   -0.65   -0.74   -0.85   -0.97   -1.07   -1.09   -0.97   -0.65   -0.19    0.34    0.88    1.49
+    35.0    0.00    0.00   -0.04   -0.14   -0.28   -0.42   -0.55   -0.66   -0.76   -0.88   -1.02   -1.14   -1.17   -1.03   -0.68   -0.15    0.45    1.05    1.66
+    40.0    0.00    0.01   -0.04   -0.14   -0.27   -0.42   -0.55   -0.66   -0.77   -0.91   -1.07   -1.22   -1.26   -1.11   -0.73   -0.14    0.55    1.23    1.84
+    45.0    0.00    0.01   -0.04   -0.14   -0.27   -0.41   -0.54   -0.66   -0.78   -0.94   -1.13   -1.29   -1.36   -1.22   -0.82   -0.18    0.60    1.37    2.01
+    50.0    0.00    0.01   -0.04   -0.13   -0.26   -0.40   -0.53   -0.66   -0.79   -0.96   -1.17   -1.37   -1.46   -1.35   -0.95   -0.27    0.60    1.46    2.14
+    55.0    0.00    0.01   -0.04   -0.13   -0.26   -0.40   -0.52   -0.65   -0.79   -0.98   -1.21   -1.44   -1.57   -1.50   -1.12   -0.41    0.52    1.47    2.20
+    60.0    0.00    0.01   -0.04   -0.13   -0.25   -0.39   -0.52   -0.64   -0.79   -0.98   -1.23   -1.49   -1.67   -1.65   -1.31   -0.61    0.37    1.40    2.17
+    65.0    0.00    0.01   -0.04   -0.13   -0.25   -0.38   -0.51   -0.63   -0.78   -0.98   -1.24   -1.53   -1.76   -1.80   -1.51   -0.84    0.16    1.24    2.05
+    70.0    0.00    0.01   -0.04   -0.12   -0.24   -0.37   -0.49   -0.62   -0.76   -0.96   -1.23   -1.55   -1.83   -1.93   -1.71   -1.08   -0.10    1.00    1.82
+    75.0    0.00    0.01   -0.03   -0.12   -0.23   -0.36   -0.48   -0.60   -0.74   -0.93   -1.21   -1.54   -1.86   -2.02   -1.87   -1.31   -0.36    0.73    1.52
+    80.0    0.00    0.01   -0.03   -0.11   -0.22   -0.34   -0.46   -0.58   -0.71   -0.90   -1.17   -1.51   -1.86   -2.07   -1.99   -1.49   -0.61    0.44    1.18
+    85.0    0.00    0.01   -0.03   -0.10   -0.21   -0.33   -0.44   -0.55   -0.68   -0.85   -1.11   -1.45   -1.81   -2.06   -2.04   -1.61   -0.80    0.17    0.84
+    90.0    0.00    0.01   -0.03   -0.10   -0.20   -0.31   -0.42   -0.52   -0.63   -0.79   -1.03   -1.36   -1.72   -1.99   -2.01   -1.64   -0.91   -0.02    0.54
+    95.0    0.00    0.01   -0.02   -0.09   -0.18   -0.28   -0.39   -0.49   -0.59   -0.73   -0.95   -1.25   -1.59   -1.86   -1.89   -1.58   -0.92   -0.13    0.34
+   100.0    0.00    0.01   -0.02   -0.08   -0.16   -0.26   -0.36   -0.45   -0.54   -0.66   -0.85   -1.12   -1.42   -1.66   -1.70   -1.41   -0.82   -0.11    0.25
+   105.0    0.00    0.01   -0.02   -0.07   -0.14   -0.23   -0.32   -0.40   -0.48   -0.59   -0.74   -0.97   -1.22   -1.42   -1.43   -1.16   -0.61    0.03    0.31
+   110.0    0.00    0.01   -0.01   -0.05   -0.12   -0.20   -0.28   -0.35   -0.42   -0.51   -0.63   -0.81   -1.01   -1.15   -1.12   -0.83   -0.30    0.28    0.51
+   115.0    0.00    0.01   -0.01   -0.04   -0.09   -0.16   -0.23   -0.30   -0.37   -0.43   -0.53   -0.65   -0.78   -0.86   -0.78   -0.46    0.07    0.63    0.85
+   120.0    0.00    0.00   -0.01   -0.03   -0.07   -0.12   -0.19   -0.25   -0.31   -0.36   -0.42   -0.50   -0.57   -0.58   -0.43   -0.08    0.47    1.04    1.27
+   125.0    0.00    0.00    0.00   -0.02   -0.05   -0.09   -0.14   -0.20   -0.25   -0.29   -0.33   -0.36   -0.38   -0.32   -0.12    0.29    0.87    1.47    1.75
+   130.0    0.00    0.00    0.00   -0.01   -0.02   -0.06   -0.10   -0.16   -0.20   -0.24   -0.25   -0.25   -0.22   -0.10    0.16    0.61    1.24    1.87    2.21
+   135.0    0.00    0.00    0.00    0.00    0.00   -0.03   -0.07   -0.12   -0.17   -0.19   -0.20   -0.17   -0.10    0.06    0.36    0.86    1.53    2.21    2.62
+   140.0    0.00    0.00    0.00    0.01    0.01    0.00   -0.04   -0.09   -0.14   -0.17   -0.17   -0.13   -0.04    0.15    0.49    1.02    1.73    2.46    2.92
+   145.0    0.00    0.00    0.00    0.01    0.02    0.01   -0.02   -0.07   -0.13   -0.16   -0.16   -0.12   -0.02    0.18    0.54    1.09    1.82    2.58    3.09
+   150.0    0.00    0.00    0.00    0.02    0.03    0.02   -0.01   -0.07   -0.14   -0.18   -0.19   -0.15   -0.05    0.15    0.51    1.07    1.81    2.58    3.10
+   155.0    0.00    0.00    0.00    0.02    0.03    0.02   -0.02   -0.08   -0.16   -0.22   -0.24   -0.22   -0.13    0.06    0.41    0.97    1.70    2.46    2.95
+   160.0    0.00   -0.01    0.00    0.01    0.03    0.02   -0.03   -0.11   -0.20   -0.28   -0.32   -0.31   -0.24   -0.07    0.27    0.80    1.51    2.24    2.68
+   165.0    0.00   -0.01   -0.01    0.01    0.02    0.00   -0.06   -0.16   -0.26   -0.36   -0.42   -0.43   -0.38   -0.22    0.09    0.59    1.26    1.94    2.30
+   170.0    0.00   -0.01   -0.01    0.00    0.00   -0.03   -0.10   -0.21   -0.34   -0.45   -0.53   -0.56   -0.53   -0.40   -0.11    0.36    0.99    1.60    1.88
+   175.0    0.00   -0.01   -0.02   -0.02   -0.02   -0.06   -0.15   -0.28   -0.42   -0.56   -0.66   -0.70   -0.68   -0.57   -0.31    0.13    0.70    1.25    1.44
+   180.0    0.00   -0.02   -0.03   -0.03   -0.04   -0.09   -0.20   -0.35   -0.52   -0.67   -0.78   -0.84   -0.83   -0.73   -0.49   -0.09    0.43    0.91    1.03
+   185.0    0.00   -0.02   -0.04   -0.05   -0.07   -0.13   -0.25   -0.42   -0.61   -0.78   -0.90   -0.96   -0.96   -0.87   -0.65   -0.29    0.20    0.62    0.70
+   190.0    0.00   -0.02   -0.04   -0.06   -0.10   -0.18   -0.31   -0.50   -0.70   -0.88   -1.01   -1.08   -1.08   -0.99   -0.79   -0.45    0.00    0.40    0.46
+   195.0    0.00   -0.03   -0.05   -0.08   -0.13   -0.22   -0.37   -0.56   -0.78   -0.97   -1.10   -1.17   -1.17   -1.09   -0.90   -0.57   -0.15    0.24    0.32
+   200.0    0.00   -0.03   -0.06   -0.10   -0.15   -0.25   -0.42   -0.62   -0.85   -1.05   -1.19   -1.26   -1.25   -1.17   -0.98   -0.67   -0.25    0.15    0.29
+   205.0    0.00   -0.03   -0.07   -0.11   -0.18   -0.29   -0.46   -0.67   -0.90   -1.11   -1.25   -1.32   -1.32   -1.23   -1.04   -0.73   -0.31    0.12    0.35
+   210.0    0.00   -0.03   -0.08   -0.13   -0.20   -0.32   -0.49   -0.71   -0.95   -1.16   -1.30   -1.38   -1.37   -1.28   -1.09   -0.76   -0.32    0.15    0.47
+   215.0    0.00   -0.04   -0.09   -0.14   -0.22   -0.34   -0.52   -0.74   -0.98   -1.19   -1.35   -1.43   -1.42   -1.33   -1.12   -0.78   -0.31    0.22    0.64
+   220.0    0.00   -0.04   -0.09   -0.16   -0.24   -0.37   -0.54   -0.76   -1.00   -1.21   -1.38   -1.47   -1.47   -1.37   -1.14   -0.77   -0.26    0.32    0.83
+   225.0    0.00   -0.04   -0.10   -0.17   -0.26   -0.38   -0.55   -0.77   -1.01   -1.23   -1.41   -1.51   -1.51   -1.40   -1.16   -0.75   -0.20    0.44    1.03
+   230.0    0.00   -0.04   -0.10   -0.18   -0.27   -0.40   -0.56   -0.77   -1.01   -1.24   -1.43   -1.54   -1.56   -1.44   -1.16   -0.71   -0.11    0.57    1.21
+   235.0    0.00   -0.04   -0.11   -0.19   -0.28   -0.41   -0.57   -0.78   -1.01   -1.24   -1.45   -1.58   -1.59   -1.46   -1.16   -0.66   -0.01    0.71    1.37
+   240.0    0.00   -0.04   -0.11   -0.19   -0.29   -0.42   -0.58   -0.78   -1.01   -1.25   -1.46   -1.60   -1.62   -1.48   -1.14   -0.59    0.10    0.85    1.50
+   245.0    0.00   -0.04   -0.11   -0.20   -0.30   -0.43   -0.58   -0.78   -1.01   -1.25   -1.47   -1.62   -1.64   -1.48   -1.10   -0.51    0.23    0.99    1.60
+   250.0    0.00   -0.04   -0.12   -0.20   -0.31   -0.44   -0.59   -0.79   -1.01   -1.25   -1.47   -1.62   -1.63   -1.45   -1.04   -0.41    0.36    1.11    1.69
+   255.0    0.00   -0.04   -0.12   -0.21   -0.32   -0.45   -0.60   -0.79   -1.01   -1.25   -1.46   -1.60   -1.60   -1.40   -0.96   -0.30    0.48    1.23    1.75
+   260.0    0.00   -0.04   -0.12   -0.21   -0.32   -0.46   -0.62   -0.80   -1.02   -1.24   -1.44   -1.56   -1.54   -1.32   -0.85   -0.17    0.61    1.34    1.81
+   265.0    0.00   -0.04   -0.11   -0.21   -0.33   -0.47   -0.63   -0.81   -1.02   -1.22   -1.40   -1.50   -1.46   -1.20   -0.72   -0.04    0.73    1.42    1.84
+   270.0    0.00   -0.04   -0.11   -0.21   -0.34   -0.48   -0.64   -0.82   -1.01   -1.20   -1.35   -1.42   -1.34   -1.07   -0.58    0.09    0.84    1.49    1.87
+   275.0    0.00   -0.04   -0.11   -0.21   -0.34   -0.49   -0.66   -0.83   -1.01   -1.17   -1.28   -1.31   -1.20   -0.91   -0.42    0.23    0.93    1.54    1.88
+   280.0    0.00   -0.04   -0.11   -0.21   -0.34   -0.50   -0.67   -0.84   -0.99   -1.12   -1.20   -1.19   -1.05   -0.74   -0.26    0.36    1.02    1.57    1.89
+   285.0    0.00   -0.04   -0.10   -0.21   -0.34   -0.50   -0.67   -0.83   -0.97   -1.08   -1.12   -1.07   -0.90   -0.57   -0.10    0.48    1.08    1.59    1.87
+   290.0    0.00   -0.03   -0.10   -0.20   -0.34   -0.50   -0.67   -0.83   -0.95   -1.02   -1.03   -0.94   -0.74   -0.41    0.05    0.59    1.14    1.59    1.85
+   295.0    0.00   -0.03   -0.09   -0.20   -0.34   -0.50   -0.67   -0.81   -0.92   -0.96   -0.94   -0.82   -0.60   -0.26    0.18    0.69    1.18    1.58    1.83
+   300.0    0.00   -0.03   -0.09   -0.19   -0.33   -0.50   -0.66   -0.79   -0.88   -0.90   -0.86   -0.72   -0.48   -0.14    0.29    0.77    1.21    1.57    1.80
+   305.0    0.00   -0.03   -0.09   -0.19   -0.33   -0.49   -0.65   -0.77   -0.84   -0.85   -0.78   -0.64   -0.39   -0.05    0.37    0.82    1.23    1.56    1.77
+   310.0    0.00   -0.02   -0.08   -0.18   -0.32   -0.48   -0.63   -0.74   -0.80   -0.80   -0.73   -0.58   -0.33    0.00    0.41    0.85    1.24    1.54    1.75
+   315.0    0.00   -0.02   -0.08   -0.18   -0.31   -0.47   -0.61   -0.71   -0.76   -0.75   -0.68   -0.54   -0.31    0.02    0.42    0.84    1.23    1.52    1.75
+   320.0    0.00   -0.02   -0.07   -0.17   -0.31   -0.46   -0.59   -0.69   -0.73   -0.72   -0.65   -0.53   -0.31    0.00    0.39    0.81    1.20    1.50    1.75
+   325.0    0.00   -0.01   -0.07   -0.16   -0.30   -0.45   -0.58   -0.66   -0.70   -0.69   -0.64   -0.53   -0.35   -0.06    0.32    0.74    1.14    1.47    1.76
+   330.0    0.00   -0.01   -0.06   -0.16   -0.30   -0.44   -0.56   -0.64   -0.67   -0.67   -0.63   -0.55   -0.40   -0.14    0.23    0.65    1.06    1.42    1.77
+   335.0    0.00   -0.01   -0.06   -0.16   -0.29   -0.43   -0.55   -0.62   -0.65   -0.66   -0.64   -0.59   -0.47   -0.24    0.11    0.52    0.95    1.34    1.78
+   340.0    0.00   -0.01   -0.05   -0.15   -0.29   -0.43   -0.54   -0.61   -0.64   -0.65   -0.65   -0.63   -0.54   -0.34   -0.03    0.38    0.81    1.24    1.76
+   345.0    0.00   -0.01   -0.05   -0.15   -0.29   -0.43   -0.54   -0.61   -0.64   -0.65   -0.66   -0.67   -0.61   -0.45   -0.16    0.22    0.66    1.12    1.72
+   350.0    0.00    0.00   -0.05   -0.15   -0.29   -0.43   -0.54   -0.60   -0.63   -0.65   -0.68   -0.71   -0.68   -0.56   -0.30    0.07    0.50    0.98    1.65
+   355.0    0.00    0.00   -0.05   -0.15   -0.29   -0.43   -0.54   -0.61   -0.64   -0.66   -0.70   -0.75   -0.75   -0.65   -0.41   -0.07    0.35    0.84    1.57
+   360.0    0.00    0.00   -0.05   -0.15   -0.29   -0.43   -0.54   -0.61   -0.65   -0.68   -0.73   -0.78   -0.80   -0.72   -0.51   -0.19    0.22    0.72    1.48
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.00      0.13     66.08                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.04   -0.15   -0.31   -0.47   -0.62   -0.71   -0.75   -0.73   -0.67   -0.58   -0.47   -0.35   -0.24   -0.12    0.02    0.20    0.47    0.86
+     0.0    0.00   -0.09   -0.24   -0.44   -0.64   -0.77   -0.78   -0.67   -0.50   -0.36   -0.28   -0.29   -0.33   -0.33   -0.24   -0.06    0.17    0.47    1.02
+     5.0    0.00   -0.09   -0.24   -0.45   -0.66   -0.79   -0.81   -0.71   -0.53   -0.36   -0.26   -0.26   -0.32   -0.37   -0.33   -0.18    0.05    0.36    0.85
+    10.0    0.00   -0.09   -0.25   -0.46   -0.67   -0.81   -0.84   -0.74   -0.56   -0.37   -0.25   -0.24   -0.31   -0.39   -0.40   -0.28   -0.05    0.27    0.69
+    15.0    0.00   -0.09   -0.25   -0.47   -0.68   -0.84   -0.87   -0.78   -0.58   -0.38   -0.24   -0.22   -0.30   -0.41   -0.45   -0.35   -0.12    0.21    0.55
+    20.0    0.00   -0.10   -0.26   -0.47   -0.70   -0.86   -0.90   -0.81   -0.61   -0.39   -0.24   -0.20   -0.28   -0.41   -0.47   -0.39   -0.15    0.17    0.43
+    25.0    0.00   -0.10   -0.26   -0.48   -0.71   -0.88   -0.93   -0.84   -0.64   -0.41   -0.24   -0.19   -0.27   -0.40   -0.47   -0.38   -0.14    0.18    0.36
+    30.0    0.00   -0.10   -0.27   -0.49   -0.73   -0.90   -0.96   -0.88   -0.68   -0.44   -0.26   -0.19   -0.25   -0.37   -0.43   -0.34   -0.08    0.23    0.34
+    35.0    0.00   -0.10   -0.27   -0.50   -0.74   -0.93   -1.00   -0.92   -0.72   -0.48   -0.28   -0.20   -0.24   -0.33   -0.37   -0.26    0.01    0.31    0.36
+    40.0    0.00   -0.10   -0.28   -0.52   -0.76   -0.95   -1.03   -0.96   -0.77   -0.53   -0.32   -0.22   -0.23   -0.29   -0.30   -0.16    0.13    0.42    0.43
+    45.0    0.00   -0.10   -0.29   -0.53   -0.78   -0.98   -1.06   -1.00   -0.82   -0.58   -0.37   -0.26   -0.24   -0.26   -0.22   -0.05    0.26    0.55    0.54
+    50.0    0.00   -0.10   -0.29   -0.54   -0.80   -1.00   -1.09   -1.04   -0.87   -0.64   -0.44   -0.31   -0.26   -0.24   -0.16    0.05    0.38    0.68    0.67
+    55.0    0.00   -0.10   -0.30   -0.55   -0.82   -1.03   -1.13   -1.08   -0.92   -0.71   -0.51   -0.37   -0.29   -0.23   -0.11    0.13    0.48    0.79    0.80
+    60.0    0.00   -0.10   -0.30   -0.56   -0.83   -1.05   -1.16   -1.13   -0.98   -0.77   -0.58   -0.44   -0.35   -0.26   -0.10    0.18    0.54    0.86    0.91
+    65.0    0.00   -0.10   -0.30   -0.57   -0.85   -1.07   -1.18   -1.16   -1.03   -0.84   -0.66   -0.52   -0.41   -0.30   -0.11    0.18    0.55    0.88    0.98
+    70.0    0.00   -0.10   -0.30   -0.57   -0.86   -1.09   -1.21   -1.19   -1.07   -0.90   -0.73   -0.60   -0.49   -0.37   -0.17    0.13    0.50    0.84    0.99
+    75.0    0.00   -0.10   -0.30   -0.57   -0.86   -1.09   -1.22   -1.22   -1.11   -0.96   -0.80   -0.68   -0.57   -0.44   -0.24    0.05    0.40    0.74    0.93
+    80.0    0.00   -0.10   -0.30   -0.57   -0.86   -1.09   -1.22   -1.23   -1.14   -1.00   -0.86   -0.75   -0.65   -0.52   -0.33   -0.07    0.26    0.58    0.81
+    85.0    0.00   -0.10   -0.29   -0.56   -0.85   -1.08   -1.22   -1.24   -1.16   -1.04   -0.91   -0.80   -0.70   -0.59   -0.43   -0.20    0.08    0.38    0.62
+    90.0    0.00   -0.09   -0.28   -0.55   -0.83   -1.06   -1.20   -1.23   -1.16   -1.05   -0.93   -0.83   -0.73   -0.64   -0.50   -0.32   -0.10    0.15    0.39
+    95.0    0.00   -0.09   -0.27   -0.53   -0.80   -1.03   -1.17   -1.21   -1.15   -1.05   -0.93   -0.83   -0.73   -0.65   -0.55   -0.43   -0.27   -0.08    0.14
+   100.0    0.00   -0.08   -0.26   -0.50   -0.76   -0.98   -1.12   -1.17   -1.13   -1.03   -0.91   -0.79   -0.70   -0.62   -0.55   -0.49   -0.41   -0.28   -0.10
+   105.0    0.00   -0.08   -0.24   -0.47   -0.71   -0.92   -1.06   -1.12   -1.09   -0.99   -0.87   -0.73   -0.62   -0.54   -0.51   -0.50   -0.49   -0.42   -0.29
+   110.0    0.00   -0.07   -0.23   -0.44   -0.66   -0.86   -0.99   -1.05   -1.03   -0.94   -0.80   -0.65   -0.51   -0.43   -0.41   -0.45   -0.50   -0.50   -0.43
+   115.0    0.00   -0.06   -0.21   -0.40   -0.60   -0.78   -0.91   -0.97   -0.96   -0.87   -0.72   -0.54   -0.38   -0.28   -0.27   -0.35   -0.44   -0.49   -0.47
+   120.0    0.00   -0.05   -0.18   -0.36   -0.53   -0.69   -0.82   -0.89   -0.88   -0.80   -0.63   -0.43   -0.23   -0.11   -0.10   -0.19   -0.32   -0.40   -0.42
+   125.0    0.00   -0.05   -0.16   -0.31   -0.47   -0.61   -0.72   -0.79   -0.80   -0.72   -0.54   -0.31   -0.08    0.07    0.09    0.00   -0.13   -0.22   -0.28
+   130.0    0.00   -0.04   -0.14   -0.27   -0.40   -0.52   -0.62   -0.70   -0.71   -0.64   -0.45   -0.19    0.07    0.24    0.29    0.21    0.09    0.01   -0.05
+   135.0    0.00   -0.03   -0.12   -0.22   -0.33   -0.43   -0.53   -0.61   -0.63   -0.56   -0.37   -0.10    0.19    0.39    0.46    0.41    0.33    0.28    0.24
+   140.0    0.00   -0.02   -0.09   -0.18   -0.27   -0.36   -0.45   -0.53   -0.56   -0.50   -0.31   -0.02    0.28    0.51    0.61    0.60    0.56    0.57    0.56
+   145.0    0.00   -0.01   -0.07   -0.14   -0.21   -0.29   -0.37   -0.46   -0.50   -0.45   -0.26    0.03    0.34    0.59    0.72    0.74    0.76    0.83    0.88
+   150.0    0.00   -0.01   -0.05   -0.11   -0.17   -0.23   -0.31   -0.41   -0.46   -0.41   -0.24    0.05    0.37    0.63    0.77    0.84    0.90    1.04    1.18
+   155.0    0.00    0.00   -0.04   -0.08   -0.13   -0.19   -0.27   -0.37   -0.43   -0.40   -0.23    0.05    0.36    0.63    0.78    0.87    0.98    1.19    1.42
+   160.0    0.00    0.01   -0.02   -0.06   -0.09   -0.15   -0.24   -0.35   -0.42   -0.40   -0.24    0.03    0.33    0.59    0.75    0.85    1.00    1.26    1.59
+   165.0    0.00    0.01   -0.01   -0.04   -0.07   -0.14   -0.23   -0.35   -0.43   -0.42   -0.27   -0.01    0.28    0.52    0.68    0.78    0.94    1.25    1.67
+   170.0    0.00    0.02    0.00   -0.02   -0.06   -0.13   -0.24   -0.36   -0.45   -0.45   -0.31   -0.07    0.21    0.44    0.58    0.67    0.83    1.16    1.67
+   175.0    0.00    0.02    0.01   -0.01   -0.05   -0.13   -0.25   -0.39   -0.48   -0.48   -0.36   -0.13    0.14    0.35    0.46    0.53    0.67    1.01    1.60
+   180.0    0.00    0.03    0.02    0.00   -0.05   -0.14   -0.27   -0.41   -0.52   -0.53   -0.41   -0.19    0.06    0.25    0.34    0.38    0.48    0.81    1.46
+   185.0    0.00    0.03    0.03    0.00   -0.05   -0.15   -0.29   -0.45   -0.56   -0.57   -0.46   -0.26   -0.02    0.15    0.22    0.22    0.29    0.59    1.29
+   190.0    0.00    0.03    0.03    0.00   -0.06   -0.17   -0.32   -0.48   -0.60   -0.62   -0.52   -0.32   -0.10    0.05    0.10    0.08    0.10    0.37    1.09
+   195.0    0.00    0.04    0.03    0.00   -0.07   -0.18   -0.34   -0.50   -0.63   -0.66   -0.57   -0.39   -0.19   -0.04    0.00   -0.05   -0.07    0.17    0.89
+   200.0    0.00    0.04    0.03    0.00   -0.07   -0.19   -0.35   -0.52   -0.66   -0.70   -0.63   -0.47   -0.27   -0.13   -0.10   -0.16   -0.20   -0.01    0.70
+   205.0    0.00    0.04    0.03    0.00   -0.08   -0.20   -0.36   -0.54   -0.68   -0.74   -0.69   -0.55   -0.37   -0.23   -0.19   -0.25   -0.30   -0.13    0.53
+   210.0    0.00    0.04    0.03   -0.01   -0.09   -0.21   -0.37   -0.55   -0.70   -0.78   -0.75   -0.63   -0.46   -0.33   -0.28   -0.32   -0.37   -0.22    0.40
+   215.0    0.00    0.04    0.03   -0.01   -0.09   -0.21   -0.37   -0.55   -0.72   -0.82   -0.81   -0.72   -0.56   -0.42   -0.36   -0.37   -0.40   -0.26    0.29
+   220.0    0.00    0.04    0.02   -0.02   -0.10   -0.22   -0.38   -0.56   -0.74   -0.85   -0.88   -0.81   -0.67   -0.52   -0.43   -0.41   -0.40   -0.26    0.22
+   225.0    0.00    0.03    0.02   -0.03   -0.11   -0.23   -0.39   -0.57   -0.76   -0.89   -0.94   -0.89   -0.76   -0.61   -0.49   -0.43   -0.38   -0.24    0.17
+   230.0    0.00    0.03    0.01   -0.04   -0.12   -0.24   -0.40   -0.59   -0.78   -0.93   -1.00   -0.97   -0.85   -0.69   -0.55   -0.45   -0.35   -0.19    0.14
+   235.0    0.00    0.03    0.00   -0.06   -0.14   -0.26   -0.42   -0.61   -0.81   -0.97   -1.05   -1.03   -0.91   -0.75   -0.59   -0.45   -0.31   -0.13    0.14
+   240.0    0.00    0.02   -0.01   -0.07   -0.16   -0.29   -0.45   -0.64   -0.85   -1.01   -1.09   -1.06   -0.95   -0.79   -0.62   -0.45   -0.27   -0.06    0.16
+   245.0    0.00    0.02   -0.02   -0.09   -0.19   -0.32   -0.48   -0.68   -0.88   -1.03   -1.11   -1.08   -0.96   -0.80   -0.62   -0.43   -0.22    0.02    0.20
+   250.0    0.00    0.02   -0.03   -0.11   -0.22   -0.36   -0.52   -0.72   -0.91   -1.05   -1.10   -1.06   -0.94   -0.78   -0.60   -0.41   -0.17    0.10    0.27
+   255.0    0.00    0.01   -0.04   -0.14   -0.25   -0.40   -0.57   -0.76   -0.93   -1.05   -1.08   -1.02   -0.89   -0.73   -0.56   -0.37   -0.12    0.18    0.36
+   260.0    0.00    0.00   -0.06   -0.16   -0.29   -0.44   -0.61   -0.79   -0.94   -1.04   -1.04   -0.95   -0.81   -0.66   -0.50   -0.32   -0.06    0.26    0.48
+   265.0    0.00    0.00   -0.07   -0.19   -0.33   -0.48   -0.65   -0.81   -0.94   -1.00   -0.97   -0.86   -0.71   -0.57   -0.43   -0.26    0.00    0.36    0.62
+   270.0    0.00   -0.01   -0.09   -0.21   -0.36   -0.52   -0.68   -0.83   -0.93   -0.95   -0.89   -0.76   -0.61   -0.47   -0.34   -0.19    0.07    0.45    0.79
+   275.0    0.00   -0.01   -0.10   -0.24   -0.40   -0.56   -0.71   -0.83   -0.89   -0.89   -0.80   -0.66   -0.50   -0.37   -0.26   -0.11    0.15    0.55    0.97
+   280.0    0.00   -0.02   -0.12   -0.26   -0.43   -0.58   -0.72   -0.81   -0.85   -0.81   -0.71   -0.56   -0.40   -0.27   -0.17   -0.03    0.23    0.66    1.16
+   285.0    0.00   -0.02   -0.13   -0.28   -0.45   -0.61   -0.72   -0.78   -0.79   -0.73   -0.61   -0.47   -0.32   -0.20   -0.09    0.05    0.31    0.76    1.35
+   290.0    0.00   -0.03   -0.14   -0.31   -0.48   -0.62   -0.71   -0.74   -0.72   -0.64   -0.53   -0.40   -0.26   -0.14   -0.02    0.14    0.40    0.86    1.53
+   295.0    0.00   -0.03   -0.15   -0.32   -0.50   -0.63   -0.70   -0.70   -0.65   -0.56   -0.46   -0.34   -0.22   -0.09    0.04    0.22    0.49    0.95    1.68
+   300.0    0.00   -0.04   -0.17   -0.34   -0.51   -0.63   -0.68   -0.65   -0.58   -0.49   -0.40   -0.31   -0.21   -0.07    0.09    0.29    0.57    1.03    1.81
+   305.0    0.00   -0.05   -0.18   -0.36   -0.53   -0.63   -0.65   -0.60   -0.51   -0.43   -0.36   -0.30   -0.21   -0.06    0.13    0.36    0.64    1.08    1.90
+   310.0    0.00   -0.05   -0.19   -0.37   -0.54   -0.63   -0.63   -0.56   -0.46   -0.38   -0.34   -0.30   -0.22   -0.07    0.16    0.42    0.70    1.12    1.96
+   315.0    0.00   -0.05   -0.19   -0.38   -0.55   -0.63   -0.62   -0.53   -0.42   -0.35   -0.32   -0.31   -0.25   -0.08    0.18    0.46    0.75    1.14    1.98
+   320.0    0.00   -0.06   -0.20   -0.39   -0.55   -0.64   -0.61   -0.50   -0.39   -0.32   -0.32   -0.33   -0.27   -0.10    0.18    0.49    0.77    1.14    1.97
+   325.0    0.00   -0.06   -0.21   -0.40   -0.56   -0.64   -0.61   -0.50   -0.38   -0.32   -0.32   -0.35   -0.30   -0.12    0.18    0.50    0.78    1.11    1.92
+   330.0    0.00   -0.07   -0.21   -0.41   -0.57   -0.65   -0.61   -0.50   -0.38   -0.32   -0.33   -0.36   -0.32   -0.14    0.16    0.49    0.75    1.06    1.85
+   335.0    0.00   -0.07   -0.22   -0.41   -0.58   -0.66   -0.63   -0.51   -0.39   -0.32   -0.33   -0.37   -0.34   -0.16    0.13    0.45    0.71    1.00    1.76
+   340.0    0.00   -0.07   -0.22   -0.42   -0.59   -0.68   -0.65   -0.54   -0.40   -0.33   -0.33   -0.37   -0.34   -0.19    0.08    0.38    0.63    0.91    1.64
+   345.0    0.00   -0.08   -0.23   -0.43   -0.61   -0.70   -0.68   -0.57   -0.43   -0.34   -0.33   -0.36   -0.35   -0.22    0.02    0.29    0.54    0.81    1.51
+   350.0    0.00   -0.08   -0.23   -0.43   -0.62   -0.72   -0.71   -0.60   -0.45   -0.34   -0.32   -0.34   -0.34   -0.26   -0.06    0.19    0.42    0.70    1.36
+   355.0    0.00   -0.08   -0.24   -0.44   -0.63   -0.74   -0.74   -0.63   -0.48   -0.35   -0.30   -0.32   -0.34   -0.29   -0.15    0.06    0.30    0.59    1.19
+   360.0    0.00   -0.09   -0.24   -0.44   -0.64   -0.77   -0.78   -0.67   -0.50   -0.36   -0.28   -0.29   -0.33   -0.33   -0.24   -0.06    0.17    0.47    1.02
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+NOV750.R4       NONE                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               5    24-SEP-10 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+      0.26     -0.16    161.30                              NORTH / EAST / UP   
+   NOAZI    0.00    0.21    0.79    1.61    2.47    3.15    3.48    3.33    2.72    1.77    0.66   -0.41   -1.30   -1.91   -2.15   -1.91   -0.99    0.84    3.66
+     0.0    0.00    0.19    0.78    1.62    2.51    3.18    3.46    3.24    2.57    1.60    0.52   -0.49   -1.33   -1.94   -2.26   -2.13   -1.31    0.41    3.07
+     5.0    0.00    0.19    0.77    1.62    2.50    3.17    3.45    3.22    2.54    1.56    0.47   -0.55   -1.40   -2.02   -2.35   -2.24   -1.44    0.28    2.99
+    10.0    0.00    0.19    0.77    1.61    2.49    3.16    3.43    3.21    2.52    1.53    0.42   -0.61   -1.47   -2.10   -2.43   -2.32   -1.53    0.21    2.98
+    15.0    0.00    0.19    0.77    1.60    2.48    3.15    3.42    3.20    2.51    1.50    0.39   -0.66   -1.52   -2.15   -2.48   -2.37   -1.56    0.21    3.03
+    20.0    0.00    0.18    0.76    1.59    2.47    3.14    3.42    3.19    2.50    1.50    0.37   -0.69   -1.56   -2.19   -2.51   -2.38   -1.54    0.27    3.15
+    25.0    0.00    0.18    0.76    1.59    2.46    3.13    3.41    3.19    2.51    1.50    0.37   -0.70   -1.59   -2.21   -2.51   -2.34   -1.46    0.39    3.32
+    30.0    0.00    0.18    0.75    1.58    2.44    3.12    3.41    3.20    2.53    1.52    0.38   -0.70   -1.59   -2.21   -2.48   -2.27   -1.33    0.57    3.53
+    35.0    0.00    0.18    0.75    1.57    2.43    3.11    3.41    3.22    2.55    1.55    0.41   -0.67   -1.57   -2.18   -2.42   -2.16   -1.17    0.78    3.76
+    40.0    0.00    0.18    0.75    1.56    2.42    3.10    3.41    3.23    2.59    1.60    0.46   -0.63   -1.53   -2.13   -2.34   -2.04   -0.99    0.99    3.97
+    45.0    0.00    0.18    0.74    1.55    2.41    3.09    3.41    3.25    2.63    1.65    0.52   -0.57   -1.47   -2.06   -2.25   -1.91   -0.82    1.19    4.16
+    50.0    0.00    0.18    0.74    1.54    2.40    3.09    3.42    3.28    2.67    1.71    0.58   -0.50   -1.40   -1.98   -2.16   -1.78   -0.67    1.36    4.29
+    55.0    0.00    0.19    0.74    1.54    2.39    3.08    3.42    3.30    2.70    1.76    0.65   -0.43   -1.32   -1.90   -2.07   -1.68   -0.56    1.46    4.37
+    60.0    0.00    0.19    0.74    1.53    2.38    3.08    3.43    3.31    2.74    1.81    0.71   -0.36   -1.25   -1.83   -1.99   -1.61   -0.50    1.50    4.38
+    65.0    0.00    0.19    0.74    1.53    2.38    3.08    3.43    3.33    2.77    1.85    0.76   -0.30   -1.18   -1.76   -1.94   -1.57   -0.49    1.48    4.33
+    70.0    0.00    0.19    0.74    1.53    2.38    3.08    3.44    3.34    2.79    1.88    0.80   -0.26   -1.13   -1.71   -1.91   -1.57   -0.53    1.40    4.24
+    75.0    0.00    0.19    0.74    1.53    2.38    3.08    3.44    3.35    2.80    1.90    0.82   -0.23   -1.10   -1.69   -1.90   -1.61   -0.61    1.28    4.11
+    80.0    0.00    0.20    0.75    1.54    2.39    3.09    3.45    3.36    2.80    1.90    0.82   -0.23   -1.10   -1.69   -1.92   -1.66   -0.72    1.14    3.97
+    85.0    0.00    0.20    0.75    1.54    2.39    3.09    3.45    3.36    2.80    1.88    0.80   -0.25   -1.12   -1.71   -1.96   -1.73   -0.83    1.00    3.85
+    90.0    0.00    0.20    0.76    1.55    2.40    3.10    3.46    3.36    2.79    1.86    0.77   -0.29   -1.16   -1.76   -2.01   -1.81   -0.93    0.88    3.75
+    95.0    0.00    0.21    0.77    1.56    2.41    3.11    3.46    3.35    2.77    1.83    0.73   -0.34   -1.21   -1.81   -2.07   -1.87   -1.01    0.80    3.70
+   100.0    0.00    0.21    0.77    1.57    2.42    3.12    3.47    3.35    2.76    1.81    0.69   -0.39   -1.27   -1.87   -2.13   -1.93   -1.06    0.77    3.70
+   105.0    0.00    0.21    0.78    1.58    2.43    3.13    3.47    3.35    2.75    1.78    0.65   -0.44   -1.33   -1.93   -2.17   -1.95   -1.06    0.78    3.75
+   110.0    0.00    0.22    0.79    1.59    2.45    3.14    3.48    3.35    2.74    1.77    0.62   -0.48   -1.37   -1.97   -2.20   -1.96   -1.04    0.84    3.84
+   115.0    0.00    0.22    0.80    1.61    2.46    3.15    3.48    3.35    2.74    1.77    0.62   -0.49   -1.40   -1.99   -2.21   -1.94   -0.98    0.94    3.97
+   120.0    0.00    0.23    0.81    1.62    2.47    3.16    3.49    3.36    2.75    1.78    0.63   -0.49   -1.40   -2.00   -2.20   -1.91   -0.90    1.05    4.09
+   125.0    0.00    0.23    0.82    1.63    2.48    3.16    3.50    3.37    2.77    1.80    0.66   -0.46   -1.37   -1.97   -2.18   -1.86   -0.82    1.16    4.21
+   130.0    0.00    0.23    0.83    1.64    2.49    3.17    3.50    3.37    2.79    1.84    0.71   -0.40   -1.32   -1.93   -2.13   -1.81   -0.75    1.25    4.29
+   135.0    0.00    0.24    0.84    1.65    2.50    3.18    3.50    3.38    2.81    1.88    0.76   -0.34   -1.26   -1.88   -2.09   -1.76   -0.70    1.31    4.33
+   140.0    0.00    0.24    0.84    1.66    2.51    3.18    3.51    3.39    2.83    1.92    0.82   -0.27   -1.19   -1.82   -2.04   -1.72   -0.67    1.31    4.30
+   145.0    0.00    0.24    0.85    1.67    2.52    3.19    3.51    3.40    2.85    1.96    0.88   -0.20   -1.12   -1.76   -2.00   -1.70   -0.68    1.26    4.20
+   150.0    0.00    0.25    0.86    1.68    2.53    3.19    3.52    3.40    2.86    1.98    0.91   -0.16   -1.07   -1.71   -1.97   -1.70   -0.73    1.16    4.03
+   155.0    0.00    0.25    0.86    1.69    2.54    3.20    3.52    3.40    2.86    1.99    0.93   -0.13   -1.05   -1.69   -1.96   -1.73   -0.81    1.01    3.81
+   160.0    0.00    0.25    0.87    1.70    2.54    3.20    3.52    3.40    2.85    1.97    0.92   -0.14   -1.05   -1.69   -1.97   -1.77   -0.91    0.82    3.55
+   165.0    0.00    0.25    0.87    1.70    2.55    3.21    3.52    3.39    2.83    1.94    0.88   -0.18   -1.08   -1.72   -2.01   -1.83   -1.03    0.62    3.27
+   170.0    0.00    0.25    0.87    1.71    2.55    3.21    3.52    3.38    2.80    1.89    0.82   -0.25   -1.14   -1.77   -2.06   -1.91   -1.16    0.41    3.00
+   175.0    0.00    0.25    0.87    1.71    2.56    3.22    3.51    3.36    2.77    1.83    0.74   -0.34   -1.23   -1.84   -2.12   -1.99   -1.29    0.21    2.75
+   180.0    0.00    0.25    0.87    1.71    2.56    3.22    3.51    3.34    2.73    1.77    0.65   -0.44   -1.32   -1.92   -2.19   -2.06   -1.40    0.04    2.55
+   185.0    0.00    0.25    0.87    1.71    2.56    3.22    3.50    3.33    2.69    1.70    0.56   -0.54   -1.42   -2.00   -2.26   -2.13   -1.49   -0.08    2.42
+   190.0    0.00    0.25    0.87    1.70    2.55    3.21    3.50    3.31    2.65    1.65    0.48   -0.62   -1.51   -2.08   -2.32   -2.19   -1.56   -0.15    2.37
+   195.0    0.00    0.25    0.86    1.69    2.55    3.21    3.49    3.30    2.63    1.61    0.43   -0.69   -1.57   -2.14   -2.37   -2.23   -1.59   -0.16    2.41
+   200.0    0.00    0.24    0.85    1.69    2.54    3.20    3.49    3.29    2.62    1.59    0.40   -0.72   -1.60   -2.17   -2.40   -2.25   -1.59   -0.12    2.52
+   205.0    0.00    0.24    0.85    1.67    2.53    3.19    3.48    3.29    2.62    1.59    0.40   -0.72   -1.61   -2.18   -2.41   -2.25   -1.55   -0.02    2.70
+   210.0    0.00    0.24    0.84    1.66    2.51    3.18    3.47    3.29    2.63    1.62    0.44   -0.68   -1.58   -2.16   -2.40   -2.22   -1.49    0.12    2.94
+   215.0    0.00    0.23    0.83    1.65    2.50    3.17    3.47    3.30    2.66    1.66    0.50   -0.62   -1.53   -2.13   -2.37   -2.18   -1.39    0.30    3.22
+   220.0    0.00    0.23    0.82    1.63    2.48    3.15    3.47    3.32    2.70    1.73    0.58   -0.54   -1.46   -2.08   -2.33   -2.13   -1.28    0.50    3.50
+   225.0    0.00    0.23    0.81    1.62    2.46    3.14    3.47    3.34    2.75    1.80    0.66   -0.45   -1.38   -2.02   -2.29   -2.07   -1.16    0.71    3.78
+   230.0    0.00    0.22    0.80    1.60    2.45    3.13    3.47    3.36    2.79    1.87    0.75   -0.36   -1.31   -1.96   -2.24   -2.00   -1.04    0.91    4.02
+   235.0    0.00    0.22    0.79    1.59    2.44    3.13    3.48    3.39    2.84    1.93    0.82   -0.29   -1.24   -1.92   -2.20   -1.94   -0.92    1.09    4.21
+   240.0    0.00    0.21    0.78    1.58    2.43    3.12    3.49    3.41    2.88    1.98    0.88   -0.24   -1.20   -1.88   -2.16   -1.88   -0.82    1.23    4.35
+   245.0    0.00    0.21    0.77    1.57    2.42    3.12    3.49    3.43    2.90    2.01    0.91   -0.21   -1.18   -1.87   -2.14   -1.84   -0.75    1.33    4.41
+   250.0    0.00    0.21    0.77    1.56    2.41    3.12    3.50    3.44    2.92    2.02    0.92   -0.21   -1.18   -1.87   -2.13   -1.81   -0.70    1.38    4.41
+   255.0    0.00    0.20    0.76    1.56    2.41    3.12    3.51    3.45    2.92    2.02    0.90   -0.23   -1.20   -1.88   -2.14   -1.80   -0.69    1.38    4.35
+   260.0    0.00    0.20    0.76    1.55    2.41    3.13    3.51    3.45    2.91    1.99    0.87   -0.26   -1.23   -1.90   -2.15   -1.81   -0.70    1.34    4.24
+   265.0    0.00    0.20    0.75    1.55    2.42    3.14    3.52    3.44    2.89    1.96    0.82   -0.31   -1.27   -1.93   -2.17   -1.84   -0.75    1.25    4.11
+   270.0    0.00    0.20    0.75    1.55    2.42    3.14    3.52    3.44    2.87    1.92    0.77   -0.36   -1.31   -1.95   -2.18   -1.87   -0.82    1.14    3.97
+   275.0    0.00    0.19    0.75    1.56    2.43    3.15    3.53    3.42    2.84    1.87    0.72   -0.40   -1.33   -1.96   -2.20   -1.90   -0.89    1.03    3.83
+   280.0    0.00    0.19    0.75    1.56    2.44    3.16    3.53    3.41    2.81    1.83    0.68   -0.43   -1.34   -1.96   -2.20   -1.93   -0.96    0.92    3.73
+   285.0    0.00    0.19    0.75    1.57    2.45    3.17    3.53    3.40    2.78    1.80    0.66   -0.44   -1.33   -1.94   -2.19   -1.95   -1.02    0.83    3.66
+   290.0    0.00    0.19    0.75    1.57    2.46    3.18    3.53    3.39    2.76    1.78    0.64   -0.43   -1.31   -1.90   -2.16   -1.96   -1.06    0.78    3.63
+   295.0    0.00    0.19    0.76    1.58    2.47    3.18    3.53    3.38    2.74    1.76    0.65   -0.41   -1.27   -1.86   -2.12   -1.94   -1.07    0.76    3.64
+   300.0    0.00    0.19    0.76    1.59    2.48    3.19    3.53    3.37    2.74    1.76    0.66   -0.37   -1.21   -1.80   -2.07   -1.90   -1.04    0.79    3.69
+   305.0    0.00    0.19    0.76    1.59    2.49    3.20    3.53    3.37    2.73    1.77    0.69   -0.33   -1.16   -1.74   -2.01   -1.85   -0.99    0.85    3.76
+   310.0    0.00    0.19    0.76    1.60    2.49    3.20    3.53    3.36    2.73    1.78    0.71   -0.29   -1.10   -1.68   -1.96   -1.79   -0.92    0.93    3.84
+   315.0    0.00    0.19    0.77    1.61    2.50    3.21    3.53    3.36    2.73    1.79    0.74   -0.25   -1.05   -1.63   -1.90   -1.73   -0.84    1.02    3.90
+   320.0    0.00    0.19    0.77    1.61    2.51    3.21    3.53    3.36    2.73    1.80    0.76   -0.22   -1.02   -1.59   -1.86   -1.67   -0.77    1.09    3.94
+   325.0    0.00    0.19    0.77    1.62    2.51    3.21    3.52    3.35    2.73    1.81    0.77   -0.20   -1.00   -1.57   -1.84   -1.63   -0.71    1.14    3.94
+   330.0    0.00    0.19    0.78    1.62    2.52    3.22    3.52    3.34    2.72    1.80    0.77   -0.20   -1.01   -1.58   -1.83   -1.62   -0.69    1.15    3.90
+   335.0    0.00    0.19    0.78    1.63    2.52    3.21    3.52    3.33    2.71    1.79    0.75   -0.22   -1.03   -1.60   -1.86   -1.64   -0.71    1.11    3.81
+   340.0    0.00    0.19    0.78    1.63    2.52    3.21    3.51    3.32    2.69    1.76    0.72   -0.25   -1.06   -1.64   -1.90   -1.69   -0.78    1.02    3.67
+   345.0    0.00    0.19    0.78    1.63    2.52    3.21    3.50    3.30    2.66    1.73    0.68   -0.30   -1.12   -1.70   -1.97   -1.77   -0.88    0.89    3.52
+   350.0    0.00    0.19    0.78    1.63    2.52    3.20    3.49    3.28    2.63    1.69    0.63   -0.36   -1.18   -1.78   -2.06   -1.88   -1.02    0.73    3.35
+   355.0    0.00    0.19    0.78    1.63    2.51    3.19    3.47    3.26    2.60    1.64    0.58   -0.42   -1.26   -1.86   -2.16   -2.00   -1.17    0.56    3.19
+   360.0    0.00    0.19    0.78    1.62    2.51    3.18    3.46    3.24    2.57    1.60    0.52   -0.49   -1.33   -1.94   -2.26   -2.13   -1.31    0.41    3.07
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.22     -0.51    158.30                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.14   -0.51   -1.03   -1.60   -2.19   -2.80   -3.46   -4.15   -4.75   -5.07   -4.93   -4.23   -3.04   -1.50    0.27    2.33    4.98    8.59
+     0.0    0.00   -0.11   -0.46   -0.96   -1.54   -2.14   -2.76   -3.39   -4.02   -4.54   -4.81   -4.68   -4.09   -3.06   -1.68   -0.01    2.03    4.67    8.19
+     5.0    0.00   -0.11   -0.46   -0.97   -1.56   -2.17   -2.79   -3.44   -4.08   -4.61   -4.89   -4.78   -4.21   -3.21   -1.87   -0.24    1.77    4.42    7.98
+    10.0    0.00   -0.12   -0.47   -0.98   -1.57   -2.19   -2.83   -3.49   -4.15   -4.70   -4.99   -4.89   -4.32   -3.34   -2.04   -0.45    1.53    4.18    7.79
+    15.0    0.00   -0.12   -0.47   -0.99   -1.59   -2.22   -2.87   -3.55   -4.22   -4.79   -5.09   -4.99   -4.43   -3.46   -2.17   -0.62    1.34    3.98    7.63
+    20.0    0.00   -0.12   -0.48   -1.00   -1.60   -2.24   -2.90   -3.60   -4.29   -4.88   -5.19   -5.09   -4.52   -3.54   -2.26   -0.72    1.20    3.84    7.53
+    25.0    0.00   -0.12   -0.49   -1.01   -1.62   -2.26   -2.93   -3.65   -4.36   -4.96   -5.28   -5.17   -4.58   -3.58   -2.29   -0.77    1.15    3.78    7.50
+    30.0    0.00   -0.13   -0.49   -1.02   -1.63   -2.28   -2.96   -3.69   -4.42   -5.04   -5.36   -5.24   -4.62   -3.59   -2.28   -0.74    1.16    3.80    7.54
+    35.0    0.00   -0.13   -0.50   -1.03   -1.64   -2.29   -2.98   -3.72   -4.47   -5.10   -5.42   -5.28   -4.64   -3.56   -2.22   -0.66    1.26    3.90    7.67
+    40.0    0.00   -0.13   -0.51   -1.04   -1.65   -2.30   -2.99   -3.74   -4.50   -5.14   -5.46   -5.31   -4.62   -3.51   -2.12   -0.53    1.41    4.08    7.87
+    45.0    0.00   -0.13   -0.51   -1.05   -1.66   -2.31   -3.00   -3.76   -4.52   -5.16   -5.48   -5.30   -4.59   -3.43   -1.99   -0.37    1.61    4.32    8.13
+    50.0    0.00   -0.14   -0.52   -1.06   -1.67   -2.31   -3.00   -3.76   -4.52   -5.16   -5.47   -5.28   -4.54   -3.34   -1.86   -0.19    1.84    4.59    8.43
+    55.0    0.00   -0.14   -0.52   -1.06   -1.67   -2.31   -3.00   -3.74   -4.51   -5.14   -5.44   -5.24   -4.47   -3.25   -1.74   -0.02    2.07    4.87    8.74
+    60.0    0.00   -0.14   -0.53   -1.07   -1.68   -2.31   -2.99   -3.72   -4.47   -5.10   -5.39   -5.18   -4.41   -3.17   -1.63    0.14    2.28    5.14    9.04
+    65.0    0.00   -0.14   -0.53   -1.07   -1.68   -2.31   -2.97   -3.69   -4.43   -5.04   -5.33   -5.12   -4.35   -3.11   -1.55    0.26    2.45    5.38    9.30
+    70.0    0.00   -0.15   -0.54   -1.08   -1.68   -2.30   -2.95   -3.66   -4.38   -4.98   -5.26   -5.06   -4.30   -3.06   -1.50    0.34    2.58    5.55    9.49
+    75.0    0.00   -0.15   -0.54   -1.08   -1.68   -2.29   -2.93   -3.62   -4.32   -4.91   -5.19   -5.00   -4.25   -3.03   -1.47    0.38    2.65    5.65    9.60
+    80.0    0.00   -0.15   -0.54   -1.08   -1.68   -2.28   -2.91   -3.58   -4.27   -4.84   -5.13   -4.94   -4.22   -3.02   -1.47    0.38    2.67    5.68    9.61
+    85.0    0.00   -0.15   -0.54   -1.08   -1.67   -2.27   -2.88   -3.54   -4.21   -4.79   -5.07   -4.90   -4.19   -3.02   -1.48    0.36    2.64    5.64    9.54
+    90.0    0.00   -0.15   -0.55   -1.08   -1.67   -2.26   -2.86   -3.51   -4.17   -4.74   -5.02   -4.86   -4.17   -3.01   -1.50    0.32    2.58    5.55    9.40
+    95.0    0.00   -0.15   -0.55   -1.08   -1.66   -2.25   -2.84   -3.48   -4.14   -4.70   -4.98   -4.83   -4.15   -3.01   -1.51    0.29    2.51    5.42    9.21
+   100.0    0.00   -0.15   -0.55   -1.08   -1.66   -2.23   -2.83   -3.46   -4.11   -4.67   -4.95   -4.80   -4.13   -2.99   -1.50    0.27    2.44    5.28    8.99
+   105.0    0.00   -0.15   -0.55   -1.07   -1.65   -2.22   -2.81   -3.44   -4.09   -4.64   -4.93   -4.78   -4.10   -2.96   -1.47    0.28    2.40    5.15    8.79
+   110.0    0.00   -0.16   -0.54   -1.07   -1.64   -2.21   -2.79   -3.42   -4.07   -4.63   -4.91   -4.75   -4.06   -2.90   -1.41    0.32    2.38    5.05    8.62
+   115.0    0.00   -0.16   -0.54   -1.06   -1.63   -2.20   -2.78   -3.40   -4.05   -4.61   -4.89   -4.72   -4.01   -2.83   -1.32    0.40    2.42    5.01    8.51
+   120.0    0.00   -0.16   -0.54   -1.06   -1.62   -2.18   -2.76   -3.39   -4.04   -4.59   -4.87   -4.69   -3.96   -2.75   -1.22    0.51    2.49    5.02    8.47
+   125.0    0.00   -0.16   -0.54   -1.05   -1.61   -2.17   -2.74   -3.37   -4.02   -4.57   -4.85   -4.65   -3.90   -2.66   -1.10    0.64    2.60    5.08    8.50
+   130.0    0.00   -0.16   -0.54   -1.05   -1.60   -2.16   -2.73   -3.35   -3.99   -4.55   -4.82   -4.61   -3.84   -2.57   -0.97    0.79    2.74    5.19    8.59
+   135.0    0.00   -0.15   -0.53   -1.04   -1.59   -2.14   -2.71   -3.33   -3.97   -4.52   -4.79   -4.57   -3.78   -2.49   -0.86    0.93    2.90    5.34    8.73
+   140.0    0.00   -0.15   -0.53   -1.04   -1.58   -2.13   -2.70   -3.31   -3.95   -4.49   -4.76   -4.54   -3.74   -2.43   -0.77    1.05    3.04    5.49    8.88
+   145.0    0.00   -0.15   -0.53   -1.03   -1.58   -2.12   -2.68   -3.29   -3.92   -4.47   -4.74   -4.52   -3.72   -2.40   -0.72    1.13    3.16    5.62    9.03
+   150.0    0.00   -0.15   -0.53   -1.03   -1.57   -2.12   -2.67   -3.28   -3.91   -4.45   -4.72   -4.52   -3.73   -2.40   -0.71    1.17    3.23    5.72    9.14
+   155.0    0.00   -0.15   -0.53   -1.03   -1.57   -2.12   -2.67   -3.27   -3.90   -4.45   -4.73   -4.53   -3.76   -2.44   -0.74    1.16    3.24    5.76    9.19
+   160.0    0.00   -0.15   -0.53   -1.03   -1.57   -2.12   -2.68   -3.28   -3.91   -4.46   -4.75   -4.57   -3.82   -2.52   -0.83    1.08    3.19    5.73    9.16
+   165.0    0.00   -0.15   -0.52   -1.03   -1.57   -2.12   -2.68   -3.29   -3.92   -4.49   -4.79   -4.64   -3.91   -2.63   -0.96    0.96    3.08    5.64    9.07
+   170.0    0.00   -0.15   -0.52   -1.03   -1.58   -2.13   -2.70   -3.31   -3.96   -4.53   -4.85   -4.73   -4.03   -2.78   -1.12    0.78    2.92    5.49    8.91
+   175.0    0.00   -0.15   -0.52   -1.03   -1.58   -2.14   -2.72   -3.34   -4.00   -4.59   -4.93   -4.83   -4.16   -2.94   -1.31    0.58    2.71    5.28    8.71
+   180.0    0.00   -0.15   -0.52   -1.03   -1.59   -2.15   -2.74   -3.38   -4.05   -4.66   -5.03   -4.95   -4.31   -3.12   -1.51    0.35    2.47    5.05    8.48
+   185.0    0.00   -0.15   -0.52   -1.03   -1.60   -2.17   -2.76   -3.42   -4.11   -4.74   -5.13   -5.07   -4.46   -3.29   -1.72    0.13    2.24    4.82    8.26
+   190.0    0.00   -0.15   -0.52   -1.04   -1.60   -2.18   -2.79   -3.45   -4.17   -4.82   -5.23   -5.20   -4.60   -3.46   -1.90   -0.08    2.02    4.61    8.07
+   195.0    0.00   -0.15   -0.53   -1.04   -1.60   -2.19   -2.80   -3.48   -4.22   -4.90   -5.33   -5.31   -4.73   -3.60   -2.06   -0.25    1.84    4.45    7.93
+   200.0    0.00   -0.15   -0.53   -1.04   -1.61   -2.19   -2.82   -3.51   -4.26   -4.96   -5.41   -5.41   -4.83   -3.71   -2.18   -0.38    1.72    4.35    7.87
+   205.0    0.00   -0.15   -0.53   -1.04   -1.61   -2.20   -2.82   -3.53   -4.29   -5.01   -5.48   -5.49   -4.91   -3.79   -2.26   -0.46    1.65    4.32    7.88
+   210.0    0.00   -0.15   -0.53   -1.04   -1.61   -2.20   -2.82   -3.54   -4.31   -5.05   -5.52   -5.54   -4.96   -3.83   -2.29   -0.48    1.65    4.35    7.97
+   215.0    0.00   -0.15   -0.53   -1.04   -1.61   -2.19   -2.82   -3.54   -4.32   -5.06   -5.55   -5.56   -4.98   -3.84   -2.28   -0.44    1.71    4.45    8.11
+   220.0    0.00   -0.15   -0.53   -1.04   -1.61   -2.19   -2.82   -3.53   -4.32   -5.07   -5.56   -5.56   -4.97   -3.80   -2.22   -0.36    1.82    4.60    8.29
+   225.0    0.00   -0.15   -0.53   -1.04   -1.61   -2.19   -2.81   -3.52   -4.31   -5.06   -5.54   -5.54   -4.93   -3.74   -2.14   -0.25    1.97    4.77    8.50
+   230.0    0.00   -0.14   -0.52   -1.04   -1.61   -2.18   -2.80   -3.51   -4.30   -5.04   -5.51   -5.50   -4.86   -3.65   -2.02   -0.11    2.13    4.95    8.69
+   235.0    0.00   -0.14   -0.52   -1.04   -1.61   -2.18   -2.80   -3.50   -4.28   -5.01   -5.47   -5.44   -4.78   -3.55   -1.90    0.03    2.28    5.12    8.85
+   240.0    0.00   -0.14   -0.52   -1.04   -1.61   -2.18   -2.79   -3.49   -4.26   -4.98   -5.42   -5.37   -4.69   -3.44   -1.77    0.16    2.41    5.25    8.97
+   245.0    0.00   -0.14   -0.52   -1.04   -1.61   -2.18   -2.79   -3.49   -4.25   -4.95   -5.37   -5.29   -4.59   -3.32   -1.65    0.28    2.51    5.33    9.04
+   250.0    0.00   -0.14   -0.52   -1.04   -1.61   -2.18   -2.79   -3.48   -4.23   -4.92   -5.32   -5.22   -4.50   -3.22   -1.55    0.36    2.57    5.36    9.05
+   255.0    0.00   -0.14   -0.52   -1.04   -1.61   -2.19   -2.80   -3.48   -4.22   -4.89   -5.27   -5.14   -4.40   -3.12   -1.47    0.41    2.58    5.33    9.01
+   260.0    0.00   -0.13   -0.51   -1.03   -1.61   -2.19   -2.80   -3.48   -4.21   -4.86   -5.22   -5.07   -4.32   -3.04   -1.41    0.43    2.55    5.26    8.93
+   265.0    0.00   -0.13   -0.51   -1.03   -1.60   -2.18   -2.80   -3.47   -4.19   -4.83   -5.17   -5.00   -4.25   -2.98   -1.37    0.42    2.49    5.15    8.83
+   270.0    0.00   -0.13   -0.50   -1.02   -1.60   -2.18   -2.79   -3.47   -4.18   -4.80   -5.12   -4.94   -4.18   -2.92   -1.35    0.40    2.41    5.03    8.72
+   275.0    0.00   -0.13   -0.50   -1.02   -1.59   -2.17   -2.78   -3.45   -4.15   -4.76   -5.07   -4.88   -4.12   -2.88   -1.34    0.36    2.32    4.91    8.61
+   280.0    0.00   -0.13   -0.49   -1.01   -1.58   -2.16   -2.77   -3.43   -4.13   -4.72   -5.02   -4.83   -4.07   -2.84   -1.33    0.33    2.25    4.81    8.54
+   285.0    0.00   -0.12   -0.49   -1.00   -1.56   -2.14   -2.75   -3.40   -4.09   -4.68   -4.97   -4.78   -4.03   -2.81   -1.31    0.32    2.20    4.74    8.49
+   290.0    0.00   -0.12   -0.48   -0.99   -1.55   -2.12   -2.72   -3.37   -4.05   -4.63   -4.92   -4.73   -3.98   -2.77   -1.29    0.33    2.19    4.71    8.48
+   295.0    0.00   -0.12   -0.47   -0.98   -1.53   -2.10   -2.69   -3.34   -4.01   -4.58   -4.87   -4.68   -3.93   -2.72   -1.24    0.37    2.22    4.74    8.50
+   300.0    0.00   -0.12   -0.47   -0.97   -1.52   -2.08   -2.66   -3.30   -3.97   -4.54   -4.82   -4.62   -3.88   -2.67   -1.19    0.44    2.30    4.80    8.55
+   305.0    0.00   -0.11   -0.46   -0.96   -1.50   -2.06   -2.64   -3.27   -3.92   -4.49   -4.77   -4.57   -3.83   -2.61   -1.11    0.53    2.41    4.91    8.63
+   310.0    0.00   -0.11   -0.46   -0.95   -1.49   -2.04   -2.61   -3.24   -3.89   -4.44   -4.72   -4.53   -3.78   -2.56   -1.04    0.64    2.54    5.04    8.72
+   315.0    0.00   -0.11   -0.45   -0.94   -1.48   -2.03   -2.60   -3.21   -3.85   -4.40   -4.68   -4.48   -3.73   -2.50   -0.96    0.75    2.68    5.18    8.81
+   320.0    0.00   -0.11   -0.45   -0.93   -1.47   -2.02   -2.59   -3.20   -3.83   -4.37   -4.64   -4.44   -3.70   -2.46   -0.90    0.84    2.81    5.32    8.88
+   325.0    0.00   -0.11   -0.45   -0.93   -1.47   -2.02   -2.59   -3.19   -3.82   -4.35   -4.61   -4.42   -3.67   -2.44   -0.87    0.90    2.90    5.42    8.94
+   330.0    0.00   -0.11   -0.45   -0.93   -1.47   -2.02   -2.59   -3.20   -3.82   -4.34   -4.59   -4.40   -3.67   -2.44   -0.87    0.92    2.95    5.49    8.95
+   335.0    0.00   -0.11   -0.45   -0.93   -1.48   -2.03   -2.61   -3.21   -3.82   -4.34   -4.59   -4.40   -3.68   -2.47   -0.91    0.89    2.94    5.50    8.93
+   340.0    0.00   -0.11   -0.45   -0.93   -1.48   -2.05   -2.63   -3.23   -3.84   -4.35   -4.60   -4.42   -3.72   -2.54   -1.00    0.80    2.87    5.44    8.86
+   345.0    0.00   -0.11   -0.45   -0.94   -1.49   -2.07   -2.65   -3.26   -3.87   -4.38   -4.63   -4.46   -3.78   -2.64   -1.13    0.65    2.73    5.32    8.74
+   350.0    0.00   -0.11   -0.45   -0.94   -1.51   -2.09   -2.68   -3.30   -3.91   -4.42   -4.67   -4.52   -3.87   -2.76   -1.29    0.46    2.53    5.15    8.58
+   355.0    0.00   -0.11   -0.45   -0.95   -1.52   -2.11   -2.72   -3.34   -3.96   -4.47   -4.73   -4.59   -3.97   -2.90   -1.48    0.23    2.29    4.92    8.40
+   360.0    0.00   -0.11   -0.46   -0.96   -1.54   -2.14   -2.76   -3.39   -4.02   -4.54   -4.81   -4.68   -4.09   -3.06   -1.68   -0.01    2.03    4.67    8.19
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+NOV750.R4       NOVS                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               5    24-SEP-10 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+      0.21     -0.22    169.44                              NORTH / EAST / UP   
+   NOAZI    0.00    0.34    1.29    2.69    4.29    5.76    6.77    7.09    6.64    5.50    3.92    2.18    0.52   -0.91   -2.04   -2.76   -2.85   -1.98    0.12
+     0.0    0.00    0.28    1.20    2.61    4.25    5.75    6.78    7.06    6.54    5.33    3.71    1.97    0.34   -1.07   -2.22   -3.03   -3.25   -2.50   -0.48
+     5.0    0.00    0.29    1.21    2.62    4.25    5.74    6.76    7.03    6.50    5.28    3.64    1.88    0.24   -1.19   -2.35   -3.16   -3.39   -2.66   -0.68
+    10.0    0.00    0.29    1.22    2.63    4.25    5.74    6.74    7.01    6.46    5.23    3.58    1.81    0.15   -1.28   -2.45   -3.26   -3.49   -2.77   -0.80
+    15.0    0.00    0.30    1.23    2.64    4.26    5.74    6.73    6.99    6.44    5.20    3.54    1.76    0.09   -1.35   -2.51   -3.32   -3.53   -2.80   -0.83
+    20.0    0.00    0.31    1.25    2.66    4.27    5.74    6.73    6.98    6.43    5.19    3.53    1.74    0.07   -1.37   -2.53   -3.32   -3.52   -2.76   -0.75
+    25.0    0.00    0.32    1.26    2.67    4.28    5.75    6.73    6.98    6.43    5.19    3.53    1.74    0.07   -1.37   -2.52   -3.29   -3.45   -2.65   -0.59
+    30.0    0.00    0.33    1.28    2.69    4.30    5.76    6.74    6.99    6.44    5.21    3.55    1.76    0.09   -1.34   -2.47   -3.21   -3.33   -2.49   -0.35
+    35.0    0.00    0.33    1.29    2.71    4.31    5.77    6.75    7.00    6.46    5.24    3.58    1.80    0.14   -1.28   -2.39   -3.10   -3.19   -2.28   -0.06
+    40.0    0.00    0.34    1.31    2.72    4.33    5.79    6.77    7.02    6.49    5.27    3.63    1.86    0.20   -1.21   -2.30   -2.99   -3.03   -2.07    0.23
+    45.0    0.00    0.35    1.32    2.74    4.35    5.80    6.78    7.05    6.52    5.31    3.68    1.92    0.27   -1.13   -2.21   -2.87   -2.87   -1.86    0.50
+    50.0    0.00    0.36    1.34    2.76    4.37    5.82    6.80    7.07    6.55    5.35    3.73    1.98    0.34   -1.05   -2.12   -2.76   -2.74   -1.69    0.71
+    55.0    0.00    0.37    1.35    2.78    4.39    5.84    6.82    7.09    6.58    5.39    3.78    2.04    0.40   -0.98   -2.04   -2.67   -2.63   -1.57    0.84
+    60.0    0.00    0.38    1.37    2.80    4.40    5.85    6.83    7.11    6.60    5.43    3.83    2.09    0.46   -0.92   -1.98   -2.61   -2.57   -1.51    0.89
+    65.0    0.00    0.38    1.38    2.81    4.42    5.87    6.85    7.12    6.62    5.46    3.86    2.13    0.50   -0.88   -1.94   -2.58   -2.54   -1.50    0.85
+    70.0    0.00    0.39    1.39    2.83    4.43    5.88    6.85    7.13    6.64    5.48    3.89    2.17    0.54   -0.85   -1.93   -2.57   -2.55   -1.55    0.73
+    75.0    0.00    0.40    1.41    2.84    4.45    5.89    6.86    7.14    6.65    5.50    3.92    2.19    0.56   -0.84   -1.93   -2.59   -2.59   -1.63    0.56
+    80.0    0.00    0.40    1.42    2.86    4.46    5.90    6.87    7.14    6.66    5.51    3.93    2.21    0.57   -0.84   -1.94   -2.61   -2.65   -1.73    0.38
+    85.0    0.00    0.41    1.43    2.87    4.47    5.90    6.87    7.15    6.66    5.52    3.94    2.22    0.57   -0.85   -1.96   -2.65   -2.70   -1.82    0.20
+    90.0    0.00    0.42    1.44    2.88    4.48    5.91    6.87    7.15    6.66    5.52    3.95    2.22    0.57   -0.86   -1.98   -2.67   -2.74   -1.90    0.06
+    95.0    0.00    0.42    1.44    2.89    4.48    5.91    6.88    7.15    6.67    5.53    3.96    2.23    0.57   -0.86   -1.99   -2.69   -2.76   -1.94   -0.02
+   100.0    0.00    0.42    1.45    2.89    4.49    5.92    6.88    7.16    6.68    5.54    3.96    2.23    0.57   -0.86   -1.98   -2.68   -2.76   -1.93   -0.02
+   105.0    0.00    0.43    1.45    2.89    4.49    5.92    6.89    7.17    6.69    5.55    3.98    2.24    0.58   -0.85   -1.97   -2.66   -2.72   -1.88    0.06
+   110.0    0.00    0.43    1.46    2.90    4.49    5.92    6.89    7.18    6.71    5.57    4.00    2.26    0.60   -0.83   -1.94   -2.62   -2.66   -1.78    0.21
+   115.0    0.00    0.43    1.46    2.90    4.49    5.92    6.90    7.19    6.73    5.59    4.02    2.28    0.63   -0.80   -1.90   -2.56   -2.58   -1.66    0.41
+   120.0    0.00    0.43    1.46    2.90    4.49    5.93    6.91    7.21    6.75    5.62    4.05    2.31    0.66   -0.76   -1.85   -2.50   -2.49   -1.53    0.64
+   125.0    0.00    0.43    1.46    2.89    4.48    5.93    6.92    7.23    6.77    5.65    4.08    2.34    0.69   -0.72   -1.79   -2.43   -2.41   -1.40    0.86
+   130.0    0.00    0.43    1.45    2.89    4.48    5.93    6.92    7.24    6.80    5.68    4.11    2.37    0.73   -0.68   -1.75   -2.38   -2.35   -1.30    1.06
+   135.0    0.00    0.43    1.45    2.88    4.47    5.92    6.93    7.25    6.82    5.70    4.14    2.40    0.76   -0.64   -1.71   -2.34   -2.31   -1.25    1.19
+   140.0    0.00    0.43    1.44    2.87    4.46    5.92    6.93    7.26    6.84    5.73    4.16    2.43    0.78   -0.62   -1.69   -2.34   -2.31   -1.25    1.24
+   145.0    0.00    0.42    1.44    2.86    4.45    5.91    6.92    7.27    6.85    5.74    4.18    2.44    0.79   -0.61   -1.70   -2.36   -2.36   -1.31    1.21
+   150.0    0.00    0.42    1.43    2.85    4.44    5.90    6.92    7.27    6.85    5.75    4.18    2.44    0.79   -0.63   -1.73   -2.42   -2.45   -1.43    1.08
+   155.0    0.00    0.42    1.42    2.84    4.43    5.88    6.91    7.26    6.85    5.74    4.17    2.43    0.77   -0.66   -1.79   -2.50   -2.58   -1.61    0.87
+   160.0    0.00    0.41    1.41    2.83    4.41    5.87    6.89    7.25    6.83    5.73    4.15    2.40    0.72   -0.72   -1.87   -2.62   -2.75   -1.83    0.60
+   165.0    0.00    0.41    1.40    2.81    4.40    5.85    6.87    7.23    6.81    5.70    4.12    2.36    0.67   -0.80   -1.97   -2.76   -2.93   -2.07    0.28
+   170.0    0.00    0.40    1.39    2.80    4.38    5.83    6.85    7.20    6.78    5.66    4.08    2.30    0.60   -0.89   -2.09   -2.91   -3.13   -2.33   -0.06
+   175.0    0.00    0.40    1.38    2.79    4.36    5.81    6.83    7.17    6.75    5.62    4.03    2.24    0.52   -0.99   -2.21   -3.07   -3.32   -2.58   -0.38
+   180.0    0.00    0.39    1.37    2.77    4.35    5.79    6.80    7.14    6.71    5.58    3.97    2.18    0.44   -1.08   -2.33   -3.21   -3.50   -2.79   -0.66
+   185.0    0.00    0.38    1.36    2.76    4.33    5.77    6.78    7.11    6.67    5.53    3.92    2.12    0.37   -1.17   -2.44   -3.34   -3.64   -2.96   -0.87
+   190.0    0.00    0.38    1.35    2.74    4.31    5.75    6.76    7.08    6.63    5.49    3.87    2.07    0.31   -1.24   -2.52   -3.43   -3.74   -3.07   -1.01
+   195.0    0.00    0.37    1.33    2.73    4.30    5.74    6.73    7.05    6.60    5.45    3.83    2.03    0.27   -1.29   -2.57   -3.48   -3.79   -3.11   -1.05
+   200.0    0.00    0.36    1.32    2.71    4.28    5.72    6.71    7.02    6.57    5.42    3.81    2.01    0.25   -1.30   -2.59   -3.50   -3.79   -3.08   -1.00
+   205.0    0.00    0.35    1.31    2.70    4.27    5.70    6.69    7.00    6.54    5.40    3.79    2.00    0.26   -1.29   -2.57   -3.47   -3.73   -2.98   -0.85
+   210.0    0.00    0.35    1.30    2.68    4.25    5.69    6.67    6.98    6.52    5.39    3.80    2.02    0.29   -1.25   -2.53   -3.40   -3.63   -2.82   -0.63
+   215.0    0.00    0.34    1.28    2.67    4.24    5.67    6.66    6.97    6.51    5.38    3.81    2.05    0.34   -1.19   -2.45   -3.30   -3.49   -2.62   -0.36
+   220.0    0.00    0.33    1.27    2.65    4.22    5.65    6.64    6.95    6.50    5.39    3.83    2.09    0.40   -1.12   -2.36   -3.18   -3.32   -2.38   -0.05
+   225.0    0.00    0.32    1.26    2.64    4.21    5.64    6.63    6.94    6.50    5.40    3.86    2.14    0.46   -1.03   -2.26   -3.05   -3.14   -2.13    0.27
+   230.0    0.00    0.31    1.24    2.62    4.19    5.62    6.62    6.93    6.50    5.41    3.88    2.18    0.52   -0.96   -2.16   -2.92   -2.96   -1.90    0.56
+   235.0    0.00    0.31    1.23    2.61    4.17    5.61    6.60    6.93    6.50    5.43    3.91    2.23    0.58   -0.89   -2.07   -2.80   -2.80   -1.68    0.80
+   240.0    0.00    0.30    1.22    2.59    4.16    5.60    6.60    6.92    6.51    5.44    3.94    2.26    0.62   -0.84   -2.00   -2.71   -2.67   -1.51    0.98
+   245.0    0.00    0.29    1.21    2.58    4.15    5.59    6.59    6.92    6.51    5.45    3.95    2.28    0.64   -0.81   -1.96   -2.64   -2.57   -1.40    1.07
+   250.0    0.00    0.28    1.19    2.57    4.13    5.58    6.59    6.93    6.52    5.47    3.97    2.29    0.64   -0.81   -1.95   -2.61   -2.51   -1.34    1.07
+   255.0    0.00    0.28    1.18    2.55    4.12    5.58    6.59    6.94    6.54    5.48    3.97    2.29    0.63   -0.82   -1.96   -2.60   -2.50   -1.35    0.99
+   260.0    0.00    0.27    1.17    2.54    4.12    5.57    6.60    6.95    6.55    5.49    3.98    2.28    0.61   -0.85   -1.99   -2.63   -2.52   -1.40    0.84
+   265.0    0.00    0.27    1.16    2.53    4.11    5.58    6.61    6.97    6.57    5.51    3.98    2.27    0.59   -0.89   -2.02   -2.66   -2.57   -1.50    0.63
+   270.0    0.00    0.26    1.16    2.53    4.11    5.59    6.63    6.99    6.60    5.53    3.99    2.26    0.56   -0.92   -2.06   -2.71   -2.64   -1.62    0.40
+   275.0    0.00    0.26    1.15    2.52    4.12    5.60    6.65    7.02    6.63    5.55    4.00    2.26    0.55   -0.94   -2.08   -2.74   -2.70   -1.74    0.18
+   280.0    0.00    0.25    1.15    2.52    4.12    5.62    6.68    7.06    6.66    5.58    4.02    2.27    0.56   -0.94   -2.09   -2.76   -2.75   -1.86   -0.02
+   285.0    0.00    0.25    1.14    2.52    4.13    5.64    6.71    7.09    6.70    5.61    4.05    2.29    0.58   -0.91   -2.07   -2.76   -2.78   -1.94   -0.16
+   290.0    0.00    0.25    1.14    2.52    4.14    5.66    6.74    7.13    6.74    5.65    4.09    2.33    0.62   -0.86   -2.02   -2.72   -2.79   -1.98   -0.23
+   295.0    0.00    0.25    1.14    2.53    4.15    5.68    6.77    7.17    6.78    5.69    4.13    2.38    0.69   -0.79   -1.94   -2.66   -2.75   -1.97   -0.22
+   300.0    0.00    0.24    1.14    2.53    4.17    5.71    6.81    7.21    6.82    5.73    4.17    2.43    0.76   -0.70   -1.85   -2.58   -2.69   -1.92   -0.14
+   305.0    0.00    0.24    1.14    2.54    4.18    5.73    6.84    7.24    6.85    5.76    4.21    2.48    0.83   -0.60   -1.74   -2.48   -2.61   -1.84    0.00
+   310.0    0.00    0.24    1.14    2.54    4.19    5.75    6.86    7.27    6.87    5.78    4.23    2.53    0.91   -0.51   -1.64   -2.39   -2.52   -1.74    0.18
+   315.0    0.00    0.24    1.14    2.55    4.21    5.77    6.88    7.29    6.89    5.79    4.25    2.56    0.96   -0.43   -1.55   -2.30   -2.44   -1.63    0.36
+   320.0    0.00    0.25    1.14    2.56    4.22    5.78    6.90    7.29    6.89    5.79    4.25    2.58    1.00   -0.38   -1.49   -2.24   -2.38   -1.55    0.52
+   325.0    0.00    0.25    1.15    2.56    4.23    5.79    6.90    7.29    6.87    5.77    4.23    2.57    1.00   -0.36   -1.46   -2.21   -2.35   -1.50    0.63
+   330.0    0.00    0.25    1.15    2.57    4.23    5.79    6.90    7.27    6.85    5.73    4.19    2.53    0.97   -0.38   -1.48   -2.23   -2.37   -1.51    0.67
+   335.0    0.00    0.25    1.16    2.58    4.24    5.79    6.89    7.25    6.81    5.68    4.13    2.47    0.91   -0.44   -1.54   -2.29   -2.44   -1.58    0.62
+   340.0    0.00    0.26    1.17    2.58    4.24    5.79    6.87    7.22    6.76    5.62    4.06    2.39    0.83   -0.53   -1.64   -2.40   -2.55   -1.70    0.49
+   345.0    0.00    0.26    1.17    2.59    4.24    5.78    6.85    7.18    6.71    5.55    3.98    2.29    0.72   -0.65   -1.77   -2.54   -2.71   -1.88    0.29
+   350.0    0.00    0.27    1.18    2.60    4.24    5.77    6.82    7.14    6.65    5.47    3.88    2.18    0.59   -0.79   -1.92   -2.70   -2.89   -2.08    0.04
+   355.0    0.00    0.27    1.19    2.60    4.24    5.76    6.80    7.10    6.59    5.40    3.79    2.07    0.46   -0.93   -2.07   -2.87   -3.07   -2.30   -0.23
+   360.0    0.00    0.28    1.20    2.61    4.25    5.75    6.78    7.06    6.54    5.33    3.71    1.97    0.34   -1.07   -2.22   -3.03   -3.25   -2.50   -0.48
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.37     -0.42    156.70                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.20   -0.75   -1.53   -2.39   -3.24   -4.07   -4.90   -5.68   -6.28   -6.51   -6.16   -5.15   -3.56   -1.58    0.62    3.08    6.10   10.13
+     0.0    0.00   -0.20   -0.73   -1.49   -2.33   -3.18   -4.00   -4.81   -5.55   -6.12   -6.32   -5.99   -5.07   -3.62   -1.83    0.18    2.49    5.46    9.60
+     5.0    0.00   -0.20   -0.74   -1.49   -2.34   -3.20   -4.05   -4.87   -5.64   -6.22   -6.45   -6.14   -5.25   -3.85   -2.11   -0.15    2.10    5.04    9.18
+    10.0    0.00   -0.20   -0.74   -1.50   -2.36   -3.23   -4.09   -4.93   -5.72   -6.33   -6.58   -6.30   -5.42   -4.05   -2.35   -0.45    1.76    4.68    8.83
+    15.0    0.00   -0.20   -0.74   -1.51   -2.37   -3.25   -4.13   -4.99   -5.81   -6.44   -6.70   -6.43   -5.57   -4.22   -2.56   -0.70    1.49    4.40    8.58
+    20.0    0.00   -0.20   -0.75   -1.52   -2.39   -3.27   -4.16   -5.05   -5.88   -6.54   -6.81   -6.55   -5.69   -4.35   -2.70   -0.86    1.31    4.24    8.45
+    25.0    0.00   -0.20   -0.75   -1.52   -2.40   -3.29   -4.20   -5.10   -5.95   -6.62   -6.90   -6.64   -5.77   -4.42   -2.78   -0.94    1.24    4.20    8.44
+    30.0    0.00   -0.20   -0.75   -1.53   -2.41   -3.31   -4.22   -5.14   -6.00   -6.68   -6.97   -6.69   -5.82   -4.45   -2.78   -0.92    1.29    4.29    8.56
+    35.0    0.00   -0.20   -0.75   -1.53   -2.42   -3.32   -4.24   -5.16   -6.04   -6.72   -7.01   -6.72   -5.82   -4.42   -2.72   -0.81    1.46    4.51    8.80
+    40.0    0.00   -0.20   -0.76   -1.54   -2.42   -3.33   -4.25   -5.17   -6.05   -6.73   -7.01   -6.71   -5.79   -4.35   -2.60   -0.63    1.72    4.83    9.12
+    45.0    0.00   -0.20   -0.76   -1.55   -2.43   -3.34   -4.25   -5.17   -6.04   -6.72   -6.99   -6.68   -5.73   -4.25   -2.44   -0.38    2.05    5.23    9.49
+    50.0    0.00   -0.20   -0.76   -1.55   -2.44   -3.34   -4.24   -5.15   -6.02   -6.69   -6.95   -6.63   -5.66   -4.14   -2.25   -0.11    2.42    5.66    9.89
+    55.0    0.00   -0.21   -0.77   -1.56   -2.44   -3.34   -4.23   -5.13   -5.97   -6.63   -6.89   -6.56   -5.57   -4.01   -2.06    0.18    2.80    6.10   10.28
+    60.0    0.00   -0.21   -0.77   -1.56   -2.44   -3.34   -4.22   -5.09   -5.92   -6.56   -6.81   -6.47   -5.47   -3.88   -1.87    0.44    3.15    6.49   10.62
+    65.0    0.00   -0.21   -0.77   -1.56   -2.45   -3.33   -4.20   -5.05   -5.86   -6.49   -6.73   -6.39   -5.38   -3.77   -1.71    0.67    3.44    6.82   10.90
+    70.0    0.00   -0.21   -0.77   -1.57   -2.45   -3.33   -4.18   -5.02   -5.80   -6.41   -6.64   -6.30   -5.29   -3.67   -1.59    0.84    3.65    7.05   11.09
+    75.0    0.00   -0.21   -0.77   -1.57   -2.46   -3.33   -4.17   -4.98   -5.74   -6.33   -6.56   -6.22   -5.21   -3.59   -1.50    0.94    3.77    7.16   11.19
+    80.0    0.00   -0.21   -0.77   -1.57   -2.46   -3.33   -4.16   -4.96   -5.70   -6.27   -6.48   -6.14   -5.14   -3.53   -1.45    0.98    3.80    7.17   11.20
+    85.0    0.00   -0.21   -0.77   -1.58   -2.46   -3.33   -4.15   -4.94   -5.66   -6.21   -6.42   -6.07   -5.08   -3.49   -1.43    0.97    3.74    7.08   11.13
+    90.0    0.00   -0.21   -0.77   -1.58   -2.46   -3.33   -4.15   -4.92   -5.63   -6.17   -6.36   -6.01   -5.03   -3.45   -1.44    0.91    3.61    6.91   10.99
+    95.0    0.00   -0.20   -0.77   -1.58   -2.46   -3.33   -4.15   -4.91   -5.61   -6.14   -6.32   -5.96   -4.98   -3.42   -1.45    0.83    3.45    6.68   10.82
+   100.0    0.00   -0.20   -0.77   -1.57   -2.46   -3.33   -4.14   -4.90   -5.60   -6.11   -6.28   -5.92   -4.93   -3.39   -1.45    0.75    3.29    6.45   10.62
+   105.0    0.00   -0.20   -0.77   -1.57   -2.46   -3.32   -4.14   -4.90   -5.58   -6.09   -6.25   -5.87   -4.88   -3.35   -1.44    0.70    3.15    6.23   10.43
+   110.0    0.00   -0.20   -0.77   -1.56   -2.45   -3.31   -4.13   -4.88   -5.57   -6.07   -6.22   -5.83   -4.83   -3.29   -1.40    0.69    3.06    6.07   10.28
+   115.0    0.00   -0.20   -0.76   -1.56   -2.44   -3.30   -4.11   -4.86   -5.55   -6.05   -6.19   -5.79   -4.78   -3.22   -1.33    0.74    3.04    5.98   10.18
+   120.0    0.00   -0.20   -0.76   -1.55   -2.42   -3.28   -4.08   -4.84   -5.52   -6.02   -6.16   -5.75   -4.71   -3.14   -1.23    0.84    3.11    5.99   10.14
+   125.0    0.00   -0.20   -0.75   -1.54   -2.41   -3.26   -4.06   -4.80   -5.48   -5.98   -6.12   -5.70   -4.65   -3.04   -1.10    0.99    3.25    6.08   10.16
+   130.0    0.00   -0.20   -0.75   -1.53   -2.39   -3.23   -4.02   -4.77   -5.44   -5.94   -6.08   -5.66   -4.59   -2.94   -0.95    1.18    3.46    6.24   10.24
+   135.0    0.00   -0.20   -0.74   -1.52   -2.37   -3.21   -3.99   -4.73   -5.40   -5.90   -6.04   -5.62   -4.53   -2.85   -0.80    1.39    3.70    6.46   10.37
+   140.0    0.00   -0.20   -0.74   -1.51   -2.36   -3.18   -3.96   -4.69   -5.36   -5.86   -6.00   -5.58   -4.48   -2.77   -0.66    1.59    3.94    6.70   10.52
+   145.0    0.00   -0.19   -0.74   -1.50   -2.34   -3.16   -3.93   -4.66   -5.32   -5.83   -5.97   -5.55   -4.45   -2.71   -0.56    1.75    4.15    6.92   10.65
+   150.0    0.00   -0.19   -0.73   -1.49   -2.33   -3.15   -3.91   -4.64   -5.30   -5.81   -5.96   -5.54   -4.44   -2.69   -0.51    1.85    4.31    7.08   10.76
+   155.0    0.00   -0.19   -0.73   -1.49   -2.32   -3.14   -3.90   -4.63   -5.30   -5.81   -5.97   -5.56   -4.46   -2.71   -0.52    1.87    4.37    7.17   10.80
+   160.0    0.00   -0.19   -0.73   -1.48   -2.32   -3.14   -3.91   -4.64   -5.32   -5.83   -5.99   -5.60   -4.51   -2.78   -0.59    1.80    4.32    7.14   10.76
+   165.0    0.00   -0.19   -0.73   -1.48   -2.32   -3.14   -3.92   -4.67   -5.35   -5.88   -6.05   -5.66   -4.60   -2.89   -0.74    1.64    4.16    7.01   10.63
+   170.0    0.00   -0.19   -0.73   -1.48   -2.32   -3.15   -3.95   -4.71   -5.41   -5.94   -6.13   -5.76   -4.72   -3.06   -0.95    1.39    3.90    6.76   10.41
+   175.0    0.00   -0.19   -0.73   -1.49   -2.33   -3.17   -3.98   -4.76   -5.48   -6.03   -6.23   -5.88   -4.88   -3.27   -1.22    1.07    3.55    6.43   10.12
+   180.0    0.00   -0.19   -0.73   -1.49   -2.34   -3.19   -4.01   -4.81   -5.56   -6.13   -6.35   -6.03   -5.06   -3.50   -1.52    0.71    3.16    6.04    9.77
+   185.0    0.00   -0.19   -0.73   -1.49   -2.35   -3.21   -4.05   -4.87   -5.64   -6.24   -6.49   -6.19   -5.26   -3.75   -1.83    0.34    2.75    5.64    9.41
+   190.0    0.00   -0.19   -0.73   -1.50   -2.36   -3.23   -4.08   -4.92   -5.72   -6.35   -6.63   -6.36   -5.46   -3.99   -2.13   -0.01    2.36    5.26    9.06
+   195.0    0.00   -0.19   -0.73   -1.50   -2.36   -3.24   -4.11   -4.97   -5.79   -6.46   -6.76   -6.53   -5.66   -4.22   -2.39   -0.31    2.05    4.96    8.78
+   200.0    0.00   -0.19   -0.74   -1.50   -2.37   -3.25   -4.13   -5.01   -5.86   -6.55   -6.89   -6.68   -5.83   -4.41   -2.60   -0.54    1.82    4.75    8.59
+   205.0    0.00   -0.19   -0.74   -1.51   -2.37   -3.25   -4.14   -5.03   -5.91   -6.63   -6.99   -6.80   -5.97   -4.56   -2.74   -0.67    1.71    4.66    8.53
+   210.0    0.00   -0.20   -0.74   -1.51   -2.37   -3.26   -4.14   -5.05   -5.94   -6.68   -7.07   -6.90   -6.07   -4.64   -2.81   -0.70    1.72    4.71    8.59
+   215.0    0.00   -0.20   -0.74   -1.51   -2.37   -3.25   -4.14   -5.05   -5.96   -6.72   -7.13   -6.96   -6.12   -4.67   -2.79   -0.63    1.84    4.88    8.78
+   220.0    0.00   -0.20   -0.74   -1.51   -2.37   -3.25   -4.14   -5.05   -5.97   -6.74   -7.15   -6.98   -6.12   -4.63   -2.70   -0.48    2.06    5.16    9.08
+   225.0    0.00   -0.20   -0.74   -1.51   -2.37   -3.24   -4.13   -5.05   -5.97   -6.75   -7.16   -6.97   -6.08   -4.54   -2.55   -0.26    2.34    5.51    9.46
+   230.0    0.00   -0.20   -0.74   -1.51   -2.37   -3.24   -4.12   -5.04   -5.96   -6.74   -7.13   -6.92   -5.99   -4.41   -2.36   -0.01    2.66    5.89    9.89
+   235.0    0.00   -0.20   -0.75   -1.51   -2.36   -3.23   -4.11   -5.03   -5.95   -6.72   -7.10   -6.85   -5.88   -4.24   -2.14    0.26    2.98    6.26   10.31
+   240.0    0.00   -0.20   -0.75   -1.51   -2.36   -3.22   -4.11   -5.02   -5.94   -6.69   -7.05   -6.77   -5.75   -4.07   -1.93    0.51    3.27    6.59   10.69
+   245.0    0.00   -0.20   -0.75   -1.51   -2.36   -3.22   -4.10   -5.02   -5.93   -6.66   -6.99   -6.67   -5.61   -3.90   -1.73    0.72    3.49    6.84   10.99
+   250.0    0.00   -0.20   -0.74   -1.51   -2.35   -3.22   -4.10   -5.01   -5.91   -6.63   -6.93   -6.57   -5.48   -3.74   -1.56    0.88    3.65    6.99   11.18
+   255.0    0.00   -0.20   -0.74   -1.50   -2.35   -3.21   -4.09   -5.01   -5.90   -6.60   -6.87   -6.48   -5.36   -3.60   -1.43    0.99    3.72    7.05   11.26
+   260.0    0.00   -0.20   -0.74   -1.50   -2.34   -3.20   -4.09   -5.00   -5.88   -6.57   -6.81   -6.40   -5.26   -3.50   -1.35    1.03    3.71    7.01   11.23
+   265.0    0.00   -0.20   -0.74   -1.49   -2.33   -3.19   -4.07   -4.98   -5.86   -6.53   -6.76   -6.33   -5.18   -3.43   -1.30    1.03    3.65    6.89   11.11
+   270.0    0.00   -0.20   -0.74   -1.49   -2.32   -3.18   -4.06   -4.96   -5.83   -6.49   -6.70   -6.26   -5.11   -3.38   -1.29    0.99    3.54    6.73   10.93
+   275.0    0.00   -0.20   -0.74   -1.48   -2.31   -3.17   -4.04   -4.93   -5.79   -6.44   -6.65   -6.20   -5.06   -3.34   -1.29    0.93    3.42    6.55   10.73
+   280.0    0.00   -0.20   -0.73   -1.48   -2.30   -3.15   -4.01   -4.90   -5.75   -6.39   -6.59   -6.15   -5.01   -3.32   -1.30    0.88    3.32    6.39   10.54
+   285.0    0.00   -0.20   -0.73   -1.47   -2.29   -3.13   -3.98   -4.86   -5.69   -6.33   -6.52   -6.09   -4.97   -3.29   -1.30    0.85    3.24    6.27   10.41
+   290.0    0.00   -0.20   -0.73   -1.46   -2.28   -3.11   -3.95   -4.81   -5.63   -6.26   -6.45   -6.02   -4.91   -3.25   -1.28    0.85    3.22    6.21   10.35
+   295.0    0.00   -0.20   -0.73   -1.46   -2.27   -3.09   -3.92   -4.77   -5.57   -6.18   -6.37   -5.94   -4.84   -3.20   -1.23    0.89    3.25    6.24   10.38
+   300.0    0.00   -0.20   -0.72   -1.45   -2.26   -3.07   -3.89   -4.72   -5.51   -6.11   -6.29   -5.86   -4.77   -3.12   -1.16    0.97    3.34    6.33   10.49
+   305.0    0.00   -0.20   -0.72   -1.45   -2.25   -3.06   -3.87   -4.68   -5.45   -6.03   -6.20   -5.77   -4.68   -3.03   -1.06    1.08    3.47    6.48   10.67
+   310.0    0.00   -0.20   -0.72   -1.45   -2.25   -3.05   -3.85   -4.64   -5.40   -5.96   -6.12   -5.68   -4.59   -2.94   -0.95    1.21    3.63    6.67   10.90
+   315.0    0.00   -0.20   -0.72   -1.45   -2.25   -3.04   -3.83   -4.62   -5.35   -5.89   -6.04   -5.60   -4.50   -2.85   -0.85    1.34    3.79    6.87   11.13
+   320.0    0.00   -0.19   -0.72   -1.45   -2.25   -3.04   -3.83   -4.60   -5.32   -5.84   -5.97   -5.53   -4.43   -2.77   -0.76    1.45    3.93    7.03   11.32
+   325.0    0.00   -0.19   -0.72   -1.45   -2.25   -3.05   -3.83   -4.59   -5.29   -5.81   -5.93   -5.48   -4.38   -2.73   -0.71    1.52    4.02    7.14   11.45
+   330.0    0.00   -0.19   -0.72   -1.45   -2.26   -3.06   -3.84   -4.59   -5.29   -5.79   -5.91   -5.46   -4.37   -2.72   -0.71    1.53    4.04    7.17   11.48
+   335.0    0.00   -0.20   -0.72   -1.45   -2.26   -3.07   -3.85   -4.61   -5.30   -5.79   -5.91   -5.47   -4.39   -2.77   -0.76    1.46    3.97    7.10   11.39
+   340.0    0.00   -0.20   -0.72   -1.46   -2.28   -3.09   -3.87   -4.63   -5.32   -5.82   -5.94   -5.52   -4.46   -2.86   -0.88    1.32    3.82    6.93   11.19
+   345.0    0.00   -0.20   -0.73   -1.47   -2.29   -3.11   -3.90   -4.66   -5.36   -5.87   -6.00   -5.60   -4.57   -3.00   -1.06    1.11    3.57    6.65   10.88
+   350.0    0.00   -0.20   -0.73   -1.47   -2.30   -3.13   -3.93   -4.70   -5.41   -5.93   -6.09   -5.71   -4.71   -3.18   -1.29    0.84    3.26    6.30   10.49
+   355.0    0.00   -0.20   -0.73   -1.48   -2.31   -3.15   -3.97   -4.75   -5.48   -6.02   -6.20   -5.84   -4.88   -3.40   -1.55    0.52    2.89    5.89   10.05
+   360.0    0.00   -0.20   -0.73   -1.49   -2.33   -3.18   -4.00   -4.81   -5.55   -6.12   -6.32   -5.99   -5.07   -3.62   -1.83    0.18    2.49    5.46    9.60
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+NOV_WAAS_600    NONE                                        TYPE / SERIAL NO    
+FIELD               NGS/TUM                  2    10-AUG-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+     -1.60     -0.26    374.24                              NORTH / EAST / UP   
+   NOAZI    0.00    0.36    0.58    0.63    0.72    0.51    0.25    0.11    0.03   -0.00    0.06    0.24    0.53    1.06    1.60    2.77    4.29
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -3.10     -3.92    389.56                              NORTH / EAST / UP   
+   NOAZI    0.00    1.17    1.58    1.60    1.18    0.68   -0.13   -0.81   -1.45   -1.93   -2.05   -1.73   -0.98    0.25    1.67    3.19    5.16
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+SEN67157596+CR  NONE                                        TYPE / SERIAL NO    
+FIELD               NGS/TUM                  1    03-APR-08 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      1.80      0.84     13.24                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.04   -0.22   -0.67   -1.28   -1.99   -2.75   -3.49   -3.97   -4.20   -4.24   -3.96   -3.27   -2.34   -0.90    1.27    4.19
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      1.90     -0.72     26.26                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.23   -0.52   -1.00   -1.52   -2.12   -2.83   -3.41   -4.05   -4.33   -4.45   -4.13   -3.38   -2.35   -1.03    0.49    2.56
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+SOK502          NONE                                        TYPE / SERIAL NO    
+FIELD               NGS/TUM                  3    10-AUG-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+     -0.50     -1.76     41.24                              NORTH / EAST / UP   
+   NOAZI    0.00   -2.34   -3.32   -3.57   -3.28   -2.79   -2.25   -1.89   -1.47   -1.40   -1.34   -1.36   -1.37   -1.14   -0.40    1.37    4.69
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.30     -2.32     59.06                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.83   -1.62   -2.50   -3.22   -3.82   -4.23   -4.51   -4.55   -4.33   -3.95   -3.43   -2.78   -2.35   -2.33   -3.01   -4.34
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+SOK600          NONE                                        TYPE / SERIAL NO    
+FIELD               NGS/TUM                  3    10-AUG-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+     -0.70     -0.16     71.74                              NORTH / EAST / UP   
+   NOAZI    0.00    0.46    0.68    0.73    0.72    0.51    0.15   -0.09   -0.17   -0.20   -0.04    0.14    0.43    0.86    1.40    2.27    3.59
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.10     -1.02     83.86                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.73   -1.12   -1.30   -1.32   -1.22   -1.23   -1.31   -1.55   -1.63   -1.75   -1.73   -1.58   -1.35   -1.03   -0.61    0.16
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+SOK702          NONE                                        TYPE / SERIAL NO    
+FIELD               NGS/TUM                  2    11-AUG-06 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      3.00     -0.96     68.44                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.04    0.08    0.03    0.02   -0.19   -0.55   -0.79   -1.07   -1.30   -1.44   -1.66   -1.67   -1.74   -1.80   -1.33   -0.41
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.60     -1.42     70.86                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.93   -1.32   -1.50   -1.52   -1.52   -1.63   -1.71   -2.05   -2.23   -2.45   -2.73   -2.78   -2.85   -2.83   -2.71   -2.24
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+SOK_RADIAN_IS   NONE                                        TYPE / SERIAL NO    
+FIELD               NGS/TUM                  3    10-AUG-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.80     -1.16    145.04                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.54   -0.72   -0.77   -0.78   -0.69   -0.65   -0.59   -0.47   -0.30   -0.14    0.04    0.13    0.26    0.40    0.87    1.79
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -2.20     -0.72    154.06                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.73   -1.02   -1.20   -1.12   -1.02   -0.83   -0.81   -0.75   -0.73   -0.75   -0.63   -0.48   -0.45   -0.53   -0.71   -0.84
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+SPP571212238+GP NONE                                        TYPE / SERIAL NO    
+FIELD               NGS/TUM                  2    10-AUG-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.90      1.54     76.14                              NORTH / EAST / UP   
+   NOAZI    0.00   -1.34   -1.62   -1.27   -0.68   -0.19    0.45    0.81    1.03    1.10    1.16    0.94    1.03    1.26    2.10    4.17    7.59
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -1.50      2.48     68.56                              NORTH / EAST / UP   
+   NOAZI    0.00   -2.83   -5.02   -6.70   -8.02   -9.02   -9.83  -10.51  -10.85  -11.03  -10.85  -10.23   -9.18   -7.75   -5.93   -3.41   -0.34
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+SPP571908273    NONE                                        TYPE / SERIAL NO    
+FIELD               NGS/TUM                  1    10-AUG-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      5.90     -2.56     67.44                              NORTH / EAST / UP   
+   NOAZI    0.00    0.86    1.18    1.03    0.52   -0.29   -1.05   -1.79   -2.27   -2.40   -2.14   -1.66   -0.77    0.46    2.00    3.97    6.39
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      3.00      0.48     87.76                              NORTH / EAST / UP   
+   NOAZI    0.00    0.27    0.18   -0.30   -0.92   -1.82   -2.73   -3.61   -4.45   -5.03   -5.15   -4.73   -3.88   -2.45   -0.63    1.79    4.86
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+SPP571908273    SPKE                                        TYPE / SERIAL NO    
+FIELD               NGS/TUM                  1    10-AUG-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      6.00     -3.36     65.74                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.84   -1.32   -1.57   -1.68   -1.89   -2.15   -2.39   -2.57   -2.80   -2.84   -2.66   -2.27   -1.44    0.10    2.67    6.59
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      3.50     -0.02     88.76                              NORTH / EAST / UP   
+   NOAZI    0.00    1.17    1.58    1.40    0.78    0.08   -0.83   -1.71   -2.35   -2.73   -2.65   -2.23   -1.28   -0.05    1.27    2.69    4.26
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TOP700779A      NONE                                        TYPE / SERIAL NO    
+CONVERTED           TUM                      0    16-APR-03 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+      4.00      0.54     68.54                              NORTH / EAST / UP   
+   NOAZI    0.00    1.06    1.98    2.63    2.92    3.01    2.75    2.21    1.63    0.90    0.26   -0.36   -0.87   -1.04   -0.80    0.27    2.39
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      3.00     -1.92     55.46                              NORTH / EAST / UP   
+   NOAZI    0.00   -2.53   -4.52   -6.30   -7.72   -9.02  -10.23  -11.21  -12.05  -12.53  -12.65  -12.13  -10.98   -9.05   -6.43   -2.91    2.06
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TOP72110        NONE                                        TYPE / SERIAL NO    
+CONVERTED           TUM                      1    20-APR-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+     -3.30      6.84    128.34                              NORTH / EAST / UP   
+   NOAZI    0.00   -1.34   -2.02   -2.27   -2.38   -2.39   -2.35   -2.39   -2.67   -3.00   -3.64   -4.56   -5.97   -7.74   -9.80  -12.03  -14.21
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -4.50      5.88    119.86                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.63   -1.22   -1.90   -2.52   -3.22   -3.93   -4.71   -5.45   -6.23   -6.85   -7.33   -7.68   -8.05   -8.53   -9.11   -9.64
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TPSCR.G3        NONE                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH              17    11-AUG-09 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+     -0.16      0.30     88.41                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.31   -1.21   -2.55   -4.17   -5.84   -7.36   -8.58   -9.37   -9.66   -9.43   -8.65   -7.32   -5.40   -2.82    0.52    4.68    9.60   14.99
+     0.0    0.00   -0.30   -1.20   -2.56   -4.19   -5.87   -7.40   -8.61   -9.39   -9.68   -9.45   -8.68   -7.36   -5.46   -2.90    0.40    4.50    9.28   14.37
+     5.0    0.00   -0.31   -1.21   -2.57   -4.20   -5.89   -7.42   -8.65   -9.44   -9.73   -9.49   -8.71   -7.39   -5.49   -2.94    0.34    4.43    9.24   14.42
+    10.0    0.00   -0.31   -1.21   -2.58   -4.21   -5.91   -7.45   -8.68   -9.48   -9.78   -9.54   -8.75   -7.42   -5.52   -2.98    0.29    4.36    9.20   14.49
+    15.0    0.00   -0.31   -1.21   -2.58   -4.22   -5.92   -7.48   -8.72   -9.53   -9.83   -9.58   -8.79   -7.45   -5.55   -3.02    0.23    4.30    9.18   14.58
+    20.0    0.00   -0.31   -1.21   -2.59   -4.23   -5.94   -7.51   -8.77   -9.58   -9.88   -9.64   -8.83   -7.49   -5.58   -3.06    0.18    4.26    9.17   14.66
+    25.0    0.00   -0.31   -1.22   -2.59   -4.24   -5.96   -7.54   -8.81   -9.63   -9.94   -9.69   -8.88   -7.53   -5.62   -3.09    0.15    4.22    9.16   14.72
+    30.0    0.00   -0.31   -1.22   -2.59   -4.25   -5.97   -7.56   -8.84   -9.68   -9.99   -9.74   -8.93   -7.57   -5.65   -3.12    0.12    4.20    9.15   14.76
+    35.0    0.00   -0.31   -1.22   -2.59   -4.25   -5.98   -7.58   -8.87   -9.72  -10.04   -9.79   -8.98   -7.61   -5.68   -3.14    0.12    4.20    9.15   14.76
+    40.0    0.00   -0.31   -1.22   -2.59   -4.25   -5.99   -7.59   -8.89   -9.75  -10.07   -9.83   -9.02   -7.65   -5.71   -3.15    0.12    4.21    9.15   14.75
+    45.0    0.00   -0.31   -1.22   -2.59   -4.25   -5.98   -7.59   -8.89   -9.76  -10.09   -9.86   -9.06   -7.68   -5.73   -3.15    0.14    4.24    9.16   14.71
+    50.0    0.00   -0.31   -1.22   -2.59   -4.24   -5.97   -7.58   -8.88   -9.75  -10.09   -9.87   -9.07   -7.70   -5.74   -3.14    0.18    4.29    9.19   14.68
+    55.0    0.00   -0.31   -1.22   -2.58   -4.23   -5.95   -7.55   -8.85   -9.72  -10.07   -9.86   -9.08   -7.71   -5.73   -3.11    0.23    4.35    9.23   14.66
+    60.0    0.00   -0.32   -1.22   -2.58   -4.22   -5.93   -7.52   -8.81   -9.68  -10.03   -9.83   -9.06   -7.69   -5.71   -3.07    0.30    4.43    9.29   14.66
+    65.0    0.00   -0.32   -1.21   -2.57   -4.20   -5.90   -7.48   -8.76   -9.61   -9.97   -9.78   -9.02   -7.66   -5.68   -3.02    0.38    4.53    9.38   14.70
+    70.0    0.00   -0.32   -1.21   -2.56   -4.18   -5.87   -7.43   -8.69   -9.54   -9.90   -9.72   -8.97   -7.62   -5.63   -2.95    0.47    4.64    9.48   14.78
+    75.0    0.00   -0.32   -1.21   -2.55   -4.16   -5.83   -7.37   -8.62   -9.46   -9.82   -9.64   -8.90   -7.56   -5.57   -2.88    0.56    4.75    9.61   14.89
+    80.0    0.00   -0.32   -1.21   -2.54   -4.14   -5.80   -7.32   -8.55   -9.38   -9.74   -9.56   -8.83   -7.49   -5.50   -2.79    0.67    4.88    9.75   15.04
+    85.0    0.00   -0.32   -1.21   -2.54   -4.12   -5.77   -7.28   -8.49   -9.31   -9.66   -9.48   -8.75   -7.42   -5.42   -2.71    0.77    5.00    9.89   15.20
+    90.0    0.00   -0.32   -1.20   -2.53   -4.11   -5.74   -7.24   -8.44   -9.24   -9.58   -9.41   -8.68   -7.34   -5.34   -2.62    0.87    5.12   10.03   15.37
+    95.0    0.00   -0.32   -1.20   -2.52   -4.10   -5.72   -7.20   -8.40   -9.19   -9.52   -9.34   -8.60   -7.26   -5.27   -2.54    0.95    5.22   10.15   15.53
+   100.0    0.00   -0.32   -1.20   -2.52   -4.09   -5.71   -7.18   -8.37   -9.15   -9.47   -9.28   -8.54   -7.19   -5.19   -2.47    1.02    5.29   10.25   15.65
+   105.0    0.00   -0.32   -1.20   -2.52   -4.08   -5.70   -7.17   -8.35   -9.12   -9.43   -9.23   -8.48   -7.13   -5.13   -2.41    1.07    5.34   10.31   15.74
+   110.0    0.00   -0.32   -1.20   -2.52   -4.08   -5.69   -7.16   -8.34   -9.11   -9.41   -9.19   -8.42   -7.07   -5.08   -2.38    1.09    5.35   10.33   15.79
+   115.0    0.00   -0.32   -1.20   -2.52   -4.08   -5.69   -7.16   -8.33   -9.10   -9.39   -9.16   -8.38   -7.03   -5.04   -2.36    1.09    5.33   10.31   15.79
+   120.0    0.00   -0.32   -1.21   -2.52   -4.09   -5.70   -7.16   -8.33   -9.09   -9.37   -9.13   -8.35   -6.99   -5.02   -2.36    1.06    5.28   10.26   15.76
+   125.0    0.00   -0.32   -1.21   -2.52   -4.09   -5.70   -7.17   -8.34   -9.09   -9.36   -9.11   -8.32   -6.97   -5.01   -2.39    1.00    5.20   10.18   15.69
+   130.0    0.00   -0.32   -1.21   -2.53   -4.09   -5.71   -7.17   -8.34   -9.09   -9.35   -9.09   -8.30   -6.96   -5.02   -2.43    0.93    5.10   10.08   15.61
+   135.0    0.00   -0.32   -1.21   -2.53   -4.10   -5.71   -7.18   -8.34   -9.08   -9.34   -9.08   -8.29   -6.96   -5.05   -2.48    0.84    5.00    9.97   15.51
+   140.0    0.00   -0.33   -1.21   -2.53   -4.10   -5.71   -7.18   -8.34   -9.08   -9.34   -9.08   -8.29   -6.97   -5.08   -2.54    0.75    4.89    9.86   15.41
+   145.0    0.00   -0.33   -1.22   -2.54   -4.11   -5.72   -7.18   -8.34   -9.08   -9.34   -9.08   -8.30   -6.99   -5.12   -2.61    0.66    4.78    9.75   15.31
+   150.0    0.00   -0.33   -1.22   -2.54   -4.11   -5.72   -7.18   -8.34   -9.08   -9.35   -9.10   -8.33   -7.03   -5.17   -2.67    0.58    4.70    9.66   15.21
+   155.0    0.00   -0.33   -1.22   -2.55   -4.12   -5.73   -7.19   -8.35   -9.10   -9.37   -9.13   -8.36   -7.07   -5.22   -2.73    0.52    4.62    9.57   15.12
+   160.0    0.00   -0.33   -1.23   -2.56   -4.13   -5.74   -7.20   -8.36   -9.12   -9.40   -9.17   -8.41   -7.13   -5.27   -2.78    0.47    4.56    9.50   15.02
+   165.0    0.00   -0.33   -1.23   -2.56   -4.14   -5.75   -7.21   -8.39   -9.15   -9.44   -9.22   -8.47   -7.18   -5.32   -2.82    0.43    4.52    9.43   14.93
+   170.0    0.00   -0.33   -1.23   -2.57   -4.15   -5.77   -7.24   -8.42   -9.20   -9.50   -9.29   -8.54   -7.24   -5.37   -2.85    0.40    4.48    9.37   14.83
+   175.0    0.00   -0.33   -1.24   -2.58   -4.16   -5.79   -7.27   -8.46   -9.25   -9.57   -9.36   -8.61   -7.30   -5.41   -2.88    0.38    4.44    9.31   14.73
+   180.0    0.00   -0.33   -1.24   -2.59   -4.18   -5.81   -7.31   -8.51   -9.31   -9.64   -9.43   -8.68   -7.36   -5.45   -2.91    0.35    4.40    9.24   14.63
+   185.0    0.00   -0.33   -1.24   -2.59   -4.19   -5.84   -7.35   -8.57   -9.38   -9.70   -9.50   -8.74   -7.41   -5.50   -2.95    0.31    4.35    9.17   14.54
+   190.0    0.00   -0.33   -1.24   -2.60   -4.21   -5.87   -7.39   -8.62   -9.44   -9.77   -9.56   -8.80   -7.46   -5.54   -2.99    0.25    4.28    9.10   14.47
+   195.0    0.00   -0.33   -1.25   -2.61   -4.23   -5.90   -7.44   -8.67   -9.50   -9.82   -9.61   -8.84   -7.50   -5.59   -3.05    0.19    4.21    9.03   14.42
+   200.0    0.00   -0.33   -1.25   -2.61   -4.24   -5.93   -7.48   -8.72   -9.54   -9.86   -9.64   -8.87   -7.54   -5.63   -3.12    0.11    4.14    8.98   14.40
+   205.0    0.00   -0.33   -1.25   -2.62   -4.26   -5.95   -7.51   -8.76   -9.57   -9.89   -9.66   -8.89   -7.57   -5.69   -3.19    0.03    4.07    8.95   14.42
+   210.0    0.00   -0.33   -1.24   -2.62   -4.27   -5.97   -7.53   -8.78   -9.59   -9.90   -9.67   -8.90   -7.59   -5.74   -3.26   -0.05    4.02    8.94   14.48
+   215.0    0.00   -0.33   -1.24   -2.62   -4.27   -5.98   -7.54   -8.79   -9.60   -9.90   -9.66   -8.90   -7.62   -5.79   -3.33   -0.11    3.99    8.97   14.57
+   220.0    0.00   -0.32   -1.24   -2.62   -4.27   -5.98   -7.55   -8.79   -9.59   -9.89   -9.65   -8.90   -7.64   -5.83   -3.38   -0.15    4.00    9.04   14.68
+   225.0    0.00   -0.32   -1.23   -2.61   -4.26   -5.98   -7.54   -8.78   -9.58   -9.87   -9.64   -8.90   -7.66   -5.87   -3.41   -0.15    4.05    9.15   14.81
+   230.0    0.00   -0.32   -1.23   -2.60   -4.25   -5.96   -7.53   -8.77   -9.56   -9.85   -9.63   -8.90   -7.67   -5.89   -3.42   -0.11    4.14    9.28   14.94
+   235.0    0.00   -0.32   -1.22   -2.59   -4.24   -5.95   -7.51   -8.74   -9.54   -9.83   -9.62   -8.90   -7.68   -5.89   -3.39   -0.04    4.27    9.44   15.06
+   240.0    0.00   -0.31   -1.22   -2.58   -4.22   -5.92   -7.48   -8.71   -9.51   -9.81   -9.61   -8.91   -7.68   -5.86   -3.33    0.07    4.42    9.60   15.17
+   245.0    0.00   -0.31   -1.21   -2.57   -4.20   -5.90   -7.45   -8.69   -9.49   -9.80   -9.61   -8.90   -7.67   -5.82   -3.24    0.22    4.60    9.76   15.25
+   250.0    0.00   -0.31   -1.20   -2.56   -4.18   -5.87   -7.42   -8.66   -9.47   -9.79   -9.60   -8.89   -7.63   -5.75   -3.12    0.38    4.78    9.91   15.31
+   255.0    0.00   -0.31   -1.20   -2.54   -4.16   -5.85   -7.40   -8.63   -9.45   -9.78   -9.59   -8.87   -7.59   -5.66   -2.98    0.55    4.96   10.04   15.34
+   260.0    0.00   -0.31   -1.19   -2.53   -4.15   -5.83   -7.37   -8.61   -9.43   -9.76   -9.57   -8.83   -7.52   -5.55   -2.83    0.72    5.11   10.14   15.36
+   265.0    0.00   -0.30   -1.18   -2.52   -4.13   -5.81   -7.35   -8.59   -9.41   -9.74   -9.54   -8.78   -7.43   -5.43   -2.69    0.87    5.23   10.20   15.37
+   270.0    0.00   -0.30   -1.18   -2.51   -4.12   -5.79   -7.33   -8.57   -9.39   -9.71   -9.49   -8.71   -7.34   -5.31   -2.56    0.99    5.31   10.24   15.39
+   275.0    0.00   -0.30   -1.17   -2.50   -4.11   -5.78   -7.32   -8.56   -9.37   -9.67   -9.44   -8.63   -7.23   -5.19   -2.44    1.07    5.35   10.24   15.40
+   280.0    0.00   -0.30   -1.17   -2.50   -4.10   -5.77   -7.31   -8.54   -9.34   -9.63   -9.37   -8.54   -7.12   -5.08   -2.36    1.12    5.35   10.23   15.43
+   285.0    0.00   -0.30   -1.17   -2.50   -4.10   -5.77   -7.30   -8.53   -9.31   -9.58   -9.29   -8.44   -7.02   -4.99   -2.30    1.12    5.32   10.19   15.47
+   290.0    0.00   -0.30   -1.17   -2.49   -4.10   -5.77   -7.30   -8.51   -9.28   -9.53   -9.22   -8.36   -6.93   -4.93   -2.27    1.10    5.26   10.15   15.51
+   295.0    0.00   -0.29   -1.17   -2.50   -4.10   -5.77   -7.30   -8.50   -9.25   -9.48   -9.15   -8.28   -6.87   -4.89   -2.28    1.06    5.19   10.09   15.54
+   300.0    0.00   -0.29   -1.17   -2.50   -4.11   -5.78   -7.30   -8.49   -9.23   -9.44   -9.10   -8.23   -6.82   -4.87   -2.30    1.00    5.12   10.04   15.55
+   305.0    0.00   -0.29   -1.17   -2.50   -4.11   -5.78   -7.30   -8.48   -9.21   -9.40   -9.06   -8.19   -6.81   -4.89   -2.35    0.93    5.05    9.99   15.54
+   310.0    0.00   -0.29   -1.17   -2.51   -4.12   -5.79   -7.30   -8.48   -9.19   -9.38   -9.04   -8.18   -6.82   -4.92   -2.40    0.86    4.98    9.94   15.49
+   315.0    0.00   -0.29   -1.17   -2.51   -4.13   -5.80   -7.31   -8.48   -9.19   -9.38   -9.04   -8.20   -6.85   -4.97   -2.46    0.80    4.93    9.88   15.40
+   320.0    0.00   -0.29   -1.18   -2.52   -4.14   -5.81   -7.31   -8.48   -9.19   -9.39   -9.06   -8.24   -6.91   -5.03   -2.53    0.75    4.88    9.82   15.27
+   325.0    0.00   -0.30   -1.18   -2.52   -4.14   -5.81   -7.32   -8.49   -9.20   -9.41   -9.10   -8.29   -6.97   -5.10   -2.59    0.70    4.84    9.76   15.11
+   330.0    0.00   -0.30   -1.18   -2.53   -4.15   -5.82   -7.33   -8.50   -9.22   -9.44   -9.15   -8.35   -7.04   -5.17   -2.64    0.67    4.81    9.69   14.94
+   335.0    0.00   -0.30   -1.19   -2.54   -4.16   -5.83   -7.33   -8.51   -9.24   -9.47   -9.20   -8.42   -7.11   -5.24   -2.69    0.63    4.77    9.62   14.76
+   340.0    0.00   -0.30   -1.19   -2.54   -4.16   -5.83   -7.34   -8.52   -9.26   -9.51   -9.25   -8.48   -7.18   -5.29   -2.74    0.59    4.73    9.54   14.61
+   345.0    0.00   -0.30   -1.19   -2.55   -4.17   -5.84   -7.35   -8.54   -9.29   -9.55   -9.31   -8.54   -7.24   -5.34   -2.78    0.56    4.68    9.47   14.48
+   350.0    0.00   -0.30   -1.20   -2.55   -4.18   -5.85   -7.37   -8.56   -9.32   -9.60   -9.36   -8.59   -7.29   -5.39   -2.82    0.51    4.63    9.40   14.40
+   355.0    0.00   -0.30   -1.20   -2.56   -4.19   -5.86   -7.38   -8.58   -9.36   -9.64   -9.40   -8.64   -7.33   -5.42   -2.86    0.46    4.56    9.33   14.36
+   360.0    0.00   -0.30   -1.20   -2.56   -4.19   -5.87   -7.40   -8.61   -9.39   -9.68   -9.45   -8.68   -7.36   -5.46   -2.90    0.40    4.50    9.28   14.37
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.26     -0.03    119.38                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.09   -0.37   -0.81   -1.38   -2.05   -2.77   -3.46   -4.04   -4.39   -4.43   -4.12   -3.48   -2.56   -1.40    0.05    1.97    4.60    8.05
+     0.0    0.00   -0.08   -0.34   -0.76   -1.33   -2.00   -2.72   -3.42   -4.00   -4.37   -4.42   -4.10   -3.43   -2.46   -1.23    0.29    2.22    4.76    7.97
+     5.0    0.00   -0.08   -0.34   -0.77   -1.33   -2.00   -2.72   -3.42   -4.00   -4.37   -4.42   -4.12   -3.47   -2.51   -1.28    0.26    2.23    4.78    7.93
+    10.0    0.00   -0.08   -0.34   -0.77   -1.34   -2.01   -2.73   -3.43   -4.01   -4.38   -4.44   -4.15   -3.51   -2.57   -1.34    0.21    2.22    4.80    7.91
+    15.0    0.00   -0.08   -0.35   -0.78   -1.34   -2.01   -2.73   -3.43   -4.02   -4.39   -4.46   -4.18   -3.56   -2.63   -1.41    0.16    2.19    4.81    7.93
+    20.0    0.00   -0.09   -0.35   -0.78   -1.35   -2.01   -2.73   -3.43   -4.02   -4.40   -4.47   -4.21   -3.60   -2.69   -1.48    0.10    2.17    4.83    7.98
+    25.0    0.00   -0.09   -0.36   -0.79   -1.35   -2.02   -2.74   -3.44   -4.03   -4.41   -4.49   -4.24   -3.64   -2.75   -1.54    0.04    2.14    4.84    8.06
+    30.0    0.00   -0.09   -0.36   -0.79   -1.36   -2.02   -2.74   -3.44   -4.03   -4.42   -4.51   -4.26   -3.67   -2.79   -1.59   -0.01    2.11    4.87    8.17
+    35.0    0.00   -0.10   -0.37   -0.80   -1.36   -2.02   -2.74   -3.44   -4.04   -4.42   -4.51   -4.27   -3.69   -2.81   -1.62   -0.04    2.09    4.89    8.29
+    40.0    0.00   -0.10   -0.37   -0.80   -1.37   -2.03   -2.74   -3.44   -4.04   -4.42   -4.51   -4.27   -3.69   -2.82   -1.64   -0.06    2.08    4.92    8.40
+    45.0    0.00   -0.10   -0.38   -0.81   -1.37   -2.03   -2.75   -3.44   -4.04   -4.42   -4.50   -4.26   -3.68   -2.81   -1.63   -0.06    2.08    4.95    8.50
+    50.0    0.00   -0.10   -0.38   -0.82   -1.38   -2.04   -2.75   -3.44   -4.03   -4.41   -4.49   -4.24   -3.66   -2.78   -1.61   -0.04    2.10    4.98    8.58
+    55.0    0.00   -0.11   -0.39   -0.83   -1.39   -2.05   -2.75   -3.45   -4.03   -4.40   -4.47   -4.21   -3.63   -2.75   -1.58   -0.01    2.12    5.01    8.63
+    60.0    0.00   -0.11   -0.40   -0.83   -1.40   -2.05   -2.76   -3.45   -4.02   -4.39   -4.45   -4.18   -3.59   -2.71   -1.53    0.03    2.15    5.03    8.64
+    65.0    0.00   -0.11   -0.40   -0.84   -1.40   -2.06   -2.77   -3.45   -4.02   -4.38   -4.43   -4.16   -3.56   -2.67   -1.49    0.07    2.19    5.04    8.63
+    70.0    0.00   -0.11   -0.41   -0.85   -1.41   -2.07   -2.77   -3.45   -4.02   -4.37   -4.42   -4.13   -3.53   -2.63   -1.45    0.10    2.21    5.05    8.60
+    75.0    0.00   -0.12   -0.41   -0.85   -1.42   -2.08   -2.78   -3.46   -4.02   -4.36   -4.40   -4.11   -3.50   -2.61   -1.43    0.13    2.23    5.05    8.57
+    80.0    0.00   -0.12   -0.41   -0.86   -1.43   -2.08   -2.79   -3.46   -4.02   -4.35   -4.39   -4.10   -3.48   -2.59   -1.41    0.14    2.24    5.04    8.53
+    85.0    0.00   -0.12   -0.42   -0.86   -1.43   -2.09   -2.79   -3.47   -4.02   -4.35   -4.38   -4.09   -3.47   -2.58   -1.41    0.14    2.23    5.02    8.50
+    90.0    0.00   -0.12   -0.42   -0.87   -1.44   -2.09   -2.80   -3.47   -4.02   -4.35   -4.38   -4.08   -3.47   -2.59   -1.43    0.11    2.19    4.99    8.48
+    95.0    0.00   -0.12   -0.42   -0.87   -1.44   -2.10   -2.80   -3.47   -4.02   -4.35   -4.37   -4.07   -3.47   -2.60   -1.45    0.07    2.14    4.94    8.48
+   100.0    0.00   -0.12   -0.42   -0.87   -1.44   -2.10   -2.80   -3.47   -4.02   -4.35   -4.37   -4.07   -3.47   -2.61   -1.49    0.01    2.07    4.89    8.48
+   105.0    0.00   -0.13   -0.42   -0.87   -1.44   -2.09   -2.79   -3.47   -4.02   -4.35   -4.37   -4.06   -3.47   -2.62   -1.52   -0.05    1.99    4.82    8.48
+   110.0    0.00   -0.13   -0.43   -0.87   -1.43   -2.09   -2.79   -3.46   -4.02   -4.34   -4.36   -4.06   -3.46   -2.63   -1.55   -0.12    1.90    4.74    8.47
+   115.0    0.00   -0.13   -0.42   -0.87   -1.43   -2.08   -2.78   -3.46   -4.01   -4.34   -4.36   -4.05   -3.45   -2.62   -1.57   -0.18    1.81    4.65    8.45
+   120.0    0.00   -0.13   -0.42   -0.86   -1.42   -2.07   -2.77   -3.45   -4.01   -4.34   -4.35   -4.03   -3.43   -2.61   -1.58   -0.22    1.73    4.56    8.40
+   125.0    0.00   -0.13   -0.42   -0.86   -1.42   -2.06   -2.76   -3.45   -4.01   -4.33   -4.34   -4.02   -3.41   -2.59   -1.58   -0.24    1.67    4.47    8.33
+   130.0    0.00   -0.13   -0.42   -0.86   -1.41   -2.06   -2.76   -3.44   -4.00   -4.33   -4.34   -4.00   -3.38   -2.56   -1.55   -0.25    1.63    4.40    8.23
+   135.0    0.00   -0.12   -0.42   -0.85   -1.41   -2.05   -2.75   -3.43   -4.00   -4.33   -4.33   -3.99   -3.36   -2.53   -1.52   -0.23    1.62    4.34    8.12
+   140.0    0.00   -0.12   -0.42   -0.85   -1.40   -2.05   -2.75   -3.43   -4.00   -4.33   -4.33   -3.98   -3.34   -2.49   -1.48   -0.19    1.63    4.30    8.00
+   145.0    0.00   -0.12   -0.41   -0.85   -1.40   -2.04   -2.75   -3.43   -4.00   -4.33   -4.33   -3.97   -3.32   -2.46   -1.43   -0.13    1.67    4.29    7.89
+   150.0    0.00   -0.12   -0.41   -0.84   -1.40   -2.04   -2.75   -3.43   -4.00   -4.33   -4.33   -3.97   -3.31   -2.43   -1.38   -0.07    1.73    4.30    7.79
+   155.0    0.00   -0.12   -0.41   -0.84   -1.40   -2.05   -2.75   -3.44   -4.00   -4.33   -4.33   -3.97   -3.31   -2.42   -1.34   -0.01    1.80    4.34    7.71
+   160.0    0.00   -0.12   -0.40   -0.84   -1.40   -2.05   -2.75   -3.44   -4.01   -4.33   -4.34   -3.98   -3.31   -2.41   -1.31    0.05    1.88    4.40    7.66
+   165.0    0.00   -0.11   -0.40   -0.84   -1.40   -2.05   -2.76   -3.44   -4.01   -4.34   -4.34   -3.99   -3.33   -2.42   -1.30    0.10    1.96    4.47    7.64
+   170.0    0.00   -0.11   -0.40   -0.83   -1.40   -2.05   -2.76   -3.45   -4.01   -4.34   -4.35   -4.01   -3.35   -2.43   -1.29    0.14    2.03    4.54    7.64
+   175.0    0.00   -0.11   -0.39   -0.83   -1.40   -2.06   -2.77   -3.45   -4.01   -4.34   -4.36   -4.02   -3.37   -2.46   -1.31    0.16    2.08    4.60    7.65
+   180.0    0.00   -0.11   -0.39   -0.83   -1.40   -2.06   -2.77   -3.45   -4.01   -4.34   -4.36   -4.04   -3.40   -2.49   -1.33    0.16    2.11    4.64    7.67
+   185.0    0.00   -0.11   -0.39   -0.82   -1.39   -2.06   -2.77   -3.46   -4.02   -4.35   -4.38   -4.06   -3.43   -2.53   -1.36    0.14    2.12    4.67    7.69
+   190.0    0.00   -0.10   -0.38   -0.82   -1.39   -2.06   -2.77   -3.46   -4.02   -4.36   -4.39   -4.08   -3.46   -2.56   -1.39    0.12    2.10    4.66    7.70
+   195.0    0.00   -0.10   -0.38   -0.82   -1.39   -2.06   -2.77   -3.46   -4.02   -4.36   -4.40   -4.11   -3.49   -2.59   -1.42    0.09    2.07    4.64    7.70
+   200.0    0.00   -0.10   -0.37   -0.81   -1.39   -2.06   -2.78   -3.47   -4.03   -4.38   -4.42   -4.13   -3.51   -2.61   -1.44    0.06    2.03    4.60    7.69
+   205.0    0.00   -0.10   -0.37   -0.81   -1.38   -2.06   -2.78   -3.47   -4.04   -4.39   -4.44   -4.15   -3.53   -2.62   -1.46    0.03    1.99    4.54    7.67
+   210.0    0.00   -0.09   -0.37   -0.80   -1.38   -2.06   -2.78   -3.48   -4.06   -4.41   -4.46   -4.16   -3.53   -2.63   -1.46    0.02    1.95    4.49    7.66
+   215.0    0.00   -0.09   -0.36   -0.80   -1.38   -2.06   -2.78   -3.49   -4.07   -4.43   -4.48   -4.18   -3.54   -2.62   -1.45    0.01    1.92    4.45    7.66
+   220.0    0.00   -0.09   -0.36   -0.80   -1.38   -2.06   -2.79   -3.50   -4.09   -4.45   -4.50   -4.18   -3.53   -2.60   -1.43    0.02    1.91    4.43    7.67
+   225.0    0.00   -0.09   -0.36   -0.80   -1.38   -2.06   -2.80   -3.51   -4.10   -4.47   -4.51   -4.19   -3.52   -2.57   -1.40    0.04    1.91    4.42    7.71
+   230.0    0.00   -0.08   -0.35   -0.79   -1.38   -2.06   -2.80   -3.52   -4.11   -4.48   -4.51   -4.18   -3.50   -2.55   -1.37    0.07    1.93    4.44    7.77
+   235.0    0.00   -0.08   -0.35   -0.79   -1.38   -2.07   -2.81   -3.53   -4.12   -4.48   -4.51   -4.17   -3.48   -2.52   -1.33    0.11    1.96    4.48    7.86
+   240.0    0.00   -0.08   -0.35   -0.79   -1.38   -2.08   -2.82   -3.54   -4.13   -4.48   -4.50   -4.16   -3.46   -2.49   -1.30    0.14    2.00    4.53    7.95
+   245.0    0.00   -0.08   -0.35   -0.79   -1.39   -2.08   -2.83   -3.54   -4.12   -4.47   -4.49   -4.13   -3.44   -2.46   -1.27    0.17    2.04    4.59    8.05
+   250.0    0.00   -0.08   -0.35   -0.79   -1.39   -2.09   -2.83   -3.54   -4.12   -4.45   -4.47   -4.11   -3.41   -2.44   -1.25    0.20    2.07    4.64    8.13
+   255.0    0.00   -0.08   -0.35   -0.80   -1.39   -2.09   -2.83   -3.54   -4.10   -4.43   -4.44   -4.09   -3.40   -2.43   -1.24    0.21    2.09    4.67    8.19
+   260.0    0.00   -0.07   -0.34   -0.80   -1.40   -2.10   -2.84   -3.53   -4.09   -4.41   -4.42   -4.07   -3.39   -2.43   -1.25    0.21    2.09    4.68    8.20
+   265.0    0.00   -0.07   -0.34   -0.80   -1.40   -2.10   -2.83   -3.52   -4.07   -4.39   -4.40   -4.05   -3.38   -2.44   -1.26    0.19    2.07    4.66    8.18
+   270.0    0.00   -0.07   -0.34   -0.80   -1.40   -2.10   -2.83   -3.51   -4.06   -4.37   -4.38   -4.05   -3.39   -2.45   -1.28    0.16    2.04    4.61    8.13
+   275.0    0.00   -0.07   -0.34   -0.80   -1.40   -2.10   -2.83   -3.50   -4.05   -4.36   -4.38   -4.05   -3.40   -2.47   -1.31    0.13    1.98    4.53    8.04
+   280.0    0.00   -0.07   -0.34   -0.80   -1.40   -2.09   -2.82   -3.50   -4.04   -4.36   -4.38   -4.07   -3.42   -2.49   -1.33    0.08    1.91    4.43    7.93
+   285.0    0.00   -0.07   -0.34   -0.79   -1.39   -2.09   -2.81   -3.49   -4.03   -4.36   -4.40   -4.09   -3.44   -2.52   -1.36    0.04    1.84    4.33    7.82
+   290.0    0.00   -0.07   -0.34   -0.79   -1.39   -2.08   -2.80   -3.48   -4.03   -4.38   -4.42   -4.12   -3.47   -2.54   -1.38    0.00    1.77    4.23    7.73
+   295.0    0.00   -0.07   -0.34   -0.79   -1.38   -2.07   -2.79   -3.47   -4.04   -4.39   -4.45   -4.15   -3.50   -2.56   -1.40   -0.02    1.71    4.14    7.66
+   300.0    0.00   -0.07   -0.34   -0.78   -1.38   -2.06   -2.78   -3.47   -4.04   -4.41   -4.47   -4.17   -3.52   -2.57   -1.40   -0.04    1.67    4.08    7.63
+   305.0    0.00   -0.07   -0.33   -0.78   -1.37   -2.05   -2.77   -3.46   -4.05   -4.43   -4.50   -4.20   -3.53   -2.56   -1.40   -0.04    1.65    4.05    7.64
+   310.0    0.00   -0.07   -0.33   -0.78   -1.36   -2.04   -2.76   -3.46   -4.05   -4.44   -4.52   -4.21   -3.53   -2.55   -1.38   -0.03    1.66    4.06    7.69
+   315.0    0.00   -0.07   -0.33   -0.77   -1.35   -2.03   -2.75   -3.45   -4.06   -4.45   -4.53   -4.22   -3.53   -2.54   -1.35    0.00    1.68    4.09    7.77
+   320.0    0.00   -0.07   -0.33   -0.77   -1.35   -2.02   -2.74   -3.45   -4.06   -4.45   -4.53   -4.21   -3.51   -2.51   -1.32    0.04    1.73    4.16    7.87
+   325.0    0.00   -0.07   -0.33   -0.77   -1.34   -2.01   -2.73   -3.44   -4.05   -4.45   -4.52   -4.20   -3.49   -2.48   -1.28    0.09    1.80    4.25    7.96
+   330.0    0.00   -0.07   -0.33   -0.76   -1.34   -2.01   -2.73   -3.44   -4.05   -4.44   -4.51   -4.18   -3.46   -2.45   -1.24    0.15    1.88    4.34    8.05
+   335.0    0.00   -0.07   -0.33   -0.76   -1.33   -2.00   -2.72   -3.43   -4.04   -4.42   -4.49   -4.15   -3.43   -2.42   -1.20    0.20    1.96    4.44    8.10
+   340.0    0.00   -0.07   -0.33   -0.76   -1.33   -2.00   -2.72   -3.43   -4.03   -4.41   -4.46   -4.13   -3.41   -2.40   -1.18    0.25    2.04    4.53    8.13
+   345.0    0.00   -0.07   -0.33   -0.76   -1.33   -2.00   -2.72   -3.42   -4.02   -4.39   -4.44   -4.11   -3.40   -2.39   -1.17    0.28    2.11    4.61    8.12
+   350.0    0.00   -0.07   -0.33   -0.76   -1.33   -2.00   -2.72   -3.42   -4.01   -4.38   -4.43   -4.09   -3.40   -2.40   -1.17    0.30    2.16    4.68    8.08
+   355.0    0.00   -0.08   -0.34   -0.76   -1.33   -2.00   -2.72   -3.42   -4.00   -4.37   -4.42   -4.09   -3.41   -2.42   -1.19    0.30    2.20    4.72    8.03
+   360.0    0.00   -0.08   -0.34   -0.76   -1.33   -2.00   -2.72   -3.42   -4.00   -4.37   -4.42   -4.10   -3.43   -2.46   -1.23    0.29    2.22    4.76    7.97
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TPSCR.G3        SCIS                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               5    18-JAN-10 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+     -0.21      0.28     84.17                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.36   -1.39   -2.95   -4.84   -6.80   -8.59   -9.98  -10.81  -10.97  -10.44   -9.28   -7.53   -5.22   -2.32    1.33    5.91   11.47   17.81
+     0.0    0.00   -0.33   -1.33   -2.87   -4.75   -6.73   -8.56  -10.01  -10.88  -11.05  -10.51   -9.33   -7.60   -5.38   -2.61    0.90    5.38   10.87   16.96
+     5.0    0.00   -0.33   -1.34   -2.89   -4.78   -6.76   -8.60  -10.06  -10.95  -11.14  -10.61   -9.42   -7.66   -5.41   -2.62    0.89    5.33   10.77   16.83
+    10.0    0.00   -0.34   -1.35   -2.91   -4.80   -6.79   -8.64  -10.12  -11.03  -11.24  -10.71   -9.50   -7.72   -5.43   -2.62    0.89    5.29   10.68   16.74
+    15.0    0.00   -0.34   -1.36   -2.92   -4.82   -6.83   -8.69  -10.18  -11.11  -11.33  -10.81   -9.59   -7.77   -5.45   -2.61    0.89    5.26   10.61   16.70
+    20.0    0.00   -0.34   -1.37   -2.94   -4.85   -6.86   -8.73  -10.25  -11.19  -11.43  -10.90   -9.67   -7.82   -5.46   -2.59    0.90    5.24   10.57   16.70
+    25.0    0.00   -0.35   -1.38   -2.95   -4.87   -6.89   -8.78  -10.30  -11.26  -11.51  -10.99   -9.74   -7.86   -5.47   -2.59    0.91    5.24   10.57   16.76
+    30.0    0.00   -0.35   -1.39   -2.97   -4.88   -6.91   -8.81  -10.35  -11.32  -11.58  -11.07   -9.81   -7.91   -5.50   -2.59    0.92    5.26   10.60   16.85
+    35.0    0.00   -0.36   -1.40   -2.98   -4.90   -6.93   -8.83  -10.38  -11.36  -11.63  -11.12   -9.87   -7.96   -5.53   -2.60    0.94    5.30   10.67   16.98
+    40.0    0.00   -0.36   -1.40   -2.98   -4.90   -6.94   -8.84  -10.39  -11.38  -11.66  -11.16   -9.91   -8.01   -5.57   -2.62    0.95    5.36   10.78   17.13
+    45.0    0.00   -0.36   -1.41   -2.99   -4.91   -6.94   -8.84  -10.38  -11.37  -11.66  -11.17   -9.94   -8.05   -5.62   -2.64    0.97    5.44   10.91   17.30
+    50.0    0.00   -0.36   -1.41   -2.99   -4.91   -6.93   -8.82  -10.36  -11.34  -11.62  -11.15   -9.94   -8.08   -5.65   -2.67    1.00    5.54   11.08   17.47
+    55.0    0.00   -0.37   -1.41   -2.99   -4.90   -6.91   -8.79  -10.31  -11.28  -11.56  -11.10   -9.91   -8.09   -5.68   -2.68    1.04    5.66   11.26   17.64
+    60.0    0.00   -0.37   -1.41   -2.99   -4.89   -6.89   -8.75  -10.25  -11.20  -11.47  -11.02   -9.86   -8.07   -5.68   -2.67    1.10    5.79   11.46   17.80
+    65.0    0.00   -0.37   -1.41   -2.98   -4.87   -6.86   -8.70  -10.18  -11.10  -11.36  -10.92   -9.78   -8.02   -5.66   -2.64    1.18    5.94   11.66   17.96
+    70.0    0.00   -0.37   -1.41   -2.98   -4.86   -6.83   -8.65  -10.10  -11.00  -11.25  -10.80   -9.68   -7.94   -5.60   -2.58    1.27    6.10   11.86   18.11
+    75.0    0.00   -0.37   -1.41   -2.97   -4.84   -6.80   -8.60  -10.03  -10.90  -11.13  -10.67   -9.56   -7.84   -5.51   -2.48    1.39    6.26   12.05   18.26
+    80.0    0.00   -0.38   -1.41   -2.96   -4.83   -6.77   -8.55   -9.96  -10.81  -11.01  -10.54   -9.42   -7.71   -5.39   -2.36    1.53    6.43   12.23   18.41
+    85.0    0.00   -0.38   -1.41   -2.95   -4.81   -6.74   -8.52   -9.90  -10.73  -10.91  -10.42   -9.29   -7.57   -5.24   -2.22    1.68    6.59   12.39   18.54
+    90.0    0.00   -0.38   -1.41   -2.95   -4.80   -6.72   -8.48   -9.86  -10.67  -10.83  -10.31   -9.16   -7.42   -5.09   -2.06    1.84    6.74   12.53   18.67
+    95.0    0.00   -0.38   -1.41   -2.94   -4.79   -6.71   -8.46   -9.82  -10.62  -10.76  -10.22   -9.04   -7.28   -4.94   -1.90    1.99    6.86   12.63   18.77
+   100.0    0.00   -0.38   -1.40   -2.94   -4.78   -6.69   -8.44   -9.80  -10.59  -10.71  -10.15   -8.95   -7.16   -4.79   -1.75    2.12    6.96   12.70   18.86
+   105.0    0.00   -0.38   -1.40   -2.93   -4.77   -6.68   -8.43   -9.78  -10.56  -10.67  -10.10   -8.88   -7.06   -4.67   -1.63    2.22    7.03   12.73   18.91
+   110.0    0.00   -0.38   -1.40   -2.93   -4.77   -6.68   -8.42   -9.76  -10.54  -10.65  -10.06   -8.83   -6.99   -4.59   -1.54    2.29    7.05   12.72   18.92
+   115.0    0.00   -0.38   -1.41   -2.93   -4.77   -6.67   -8.41   -9.75  -10.53  -10.63  -10.04   -8.80   -6.95   -4.53   -1.49    2.32    7.03   12.66   18.89
+   120.0    0.00   -0.38   -1.41   -2.93   -4.77   -6.67   -8.40   -9.74  -10.52  -10.62  -10.03   -8.79   -6.94   -4.52   -1.48    2.30    6.97   12.56   18.82
+   125.0    0.00   -0.39   -1.41   -2.94   -4.77   -6.67   -8.40   -9.73  -10.50  -10.61  -10.03   -8.79   -6.95   -4.53   -1.51    2.24    6.86   12.41   18.71
+   130.0    0.00   -0.39   -1.41   -2.95   -4.78   -6.67   -8.39   -9.72  -10.49  -10.60  -10.03   -8.81   -6.98   -4.58   -1.57    2.15    6.72   12.23   18.56
+   135.0    0.00   -0.39   -1.42   -2.95   -4.79   -6.68   -8.39   -9.71  -10.47  -10.59  -10.03   -8.83   -7.02   -4.64   -1.66    2.03    6.55   12.03   18.39
+   140.0    0.00   -0.39   -1.43   -2.96   -4.80   -6.69   -8.40   -9.70  -10.46  -10.58  -10.04   -8.85   -7.07   -4.72   -1.76    1.89    6.37   11.82   18.19
+   145.0    0.00   -0.39   -1.43   -2.98   -4.82   -6.71   -8.41   -9.71  -10.46  -10.58  -10.05   -8.88   -7.13   -4.80   -1.87    1.74    6.19   11.60   18.00
+   150.0    0.00   -0.39   -1.44   -2.99   -4.84   -6.73   -8.43   -9.72  -10.47  -10.59  -10.06   -8.92   -7.18   -4.88   -1.98    1.60    6.01   11.41   17.81
+   155.0    0.00   -0.40   -1.45   -3.01   -4.86   -6.76   -8.46   -9.75  -10.49  -10.61  -10.09   -8.96   -7.24   -4.96   -2.08    1.47    5.85   11.23   17.64
+   160.0    0.00   -0.40   -1.45   -3.02   -4.89   -6.79   -8.49   -9.79  -10.53  -10.65  -10.13   -9.01   -7.30   -5.03   -2.18    1.35    5.72   11.08   17.49
+   165.0    0.00   -0.40   -1.46   -3.04   -4.92   -6.83   -8.54   -9.84  -10.58  -10.70  -10.19   -9.07   -7.36   -5.11   -2.26    1.26    5.61   10.97   17.36
+   170.0    0.00   -0.40   -1.47   -3.06   -4.95   -6.87   -8.59   -9.90  -10.64  -10.77  -10.26   -9.14   -7.44   -5.18   -2.34    1.17    5.53   10.89   17.26
+   175.0    0.00   -0.40   -1.48   -3.07   -4.98   -6.92   -8.65   -9.96  -10.72  -10.85  -10.34   -9.22   -7.51   -5.26   -2.42    1.10    5.47   10.83   17.18
+   180.0    0.00   -0.40   -1.48   -3.09   -5.00   -6.96   -8.70  -10.03  -10.80  -10.93  -10.43   -9.30   -7.60   -5.34   -2.50    1.04    5.42   10.79   17.13
+   185.0    0.00   -0.40   -1.49   -3.11   -5.03   -7.00   -8.76  -10.10  -10.88  -11.02  -10.52   -9.39   -7.69   -5.43   -2.58    0.97    5.37   10.77   17.10
+   190.0    0.00   -0.40   -1.49   -3.12   -5.06   -7.04   -8.81  -10.16  -10.95  -11.10  -10.60   -9.48   -7.78   -5.52   -2.67    0.89    5.33   10.76   17.08
+   195.0    0.00   -0.40   -1.49   -3.13   -5.08   -7.07   -8.85  -10.21  -11.01  -11.16  -10.67   -9.56   -7.87   -5.62   -2.76    0.81    5.28   10.74   17.08
+   200.0    0.00   -0.40   -1.49   -3.13   -5.09   -7.10   -8.89  -10.25  -11.05  -11.21  -10.73   -9.62   -7.94   -5.70   -2.86    0.73    5.22   10.73   17.10
+   205.0    0.00   -0.40   -1.49   -3.14   -5.10   -7.11   -8.91  -10.28  -11.09  -11.25  -10.76   -9.67   -8.00   -5.78   -2.95    0.64    5.16   10.73   17.15
+   210.0    0.00   -0.39   -1.49   -3.14   -5.10   -7.12   -8.93  -10.30  -11.10  -11.26  -10.78   -9.69   -8.04   -5.85   -3.03    0.56    5.11   10.73   17.23
+   215.0    0.00   -0.39   -1.48   -3.13   -5.10   -7.12   -8.93  -10.30  -11.10  -11.26  -10.77   -9.69   -8.06   -5.89   -3.09    0.49    5.07   10.75   17.34
+   220.0    0.00   -0.39   -1.48   -3.12   -5.09   -7.12   -8.92  -10.30  -11.09  -11.24  -10.75   -9.68   -8.06   -5.91   -3.13    0.46    5.06   10.80   17.48
+   225.0    0.00   -0.38   -1.47   -3.11   -5.08   -7.10   -8.91  -10.28  -11.07  -11.21  -10.72   -9.65   -8.04   -5.90   -3.13    0.46    5.09   10.89   17.65
+   230.0    0.00   -0.38   -1.46   -3.10   -5.06   -7.08   -8.88  -10.25  -11.04  -11.17  -10.68   -9.60   -8.00   -5.86   -3.09    0.50    5.16   11.01   17.86
+   235.0    0.00   -0.37   -1.45   -3.08   -5.04   -7.05   -8.85  -10.22  -11.00  -11.13  -10.63   -9.56   -7.95   -5.80   -3.02    0.59    5.28   11.17   18.08
+   240.0    0.00   -0.37   -1.43   -3.05   -5.00   -7.01   -8.81  -10.17  -10.96  -11.09  -10.59   -9.50   -7.89   -5.72   -2.92    0.73    5.44   11.36   18.31
+   245.0    0.00   -0.36   -1.42   -3.03   -4.97   -6.97   -8.76  -10.13  -10.91  -11.05  -10.55   -9.46   -7.82   -5.63   -2.79    0.90    5.65   11.58   18.53
+   250.0    0.00   -0.36   -1.40   -3.00   -4.93   -6.92   -8.71  -10.07  -10.86  -11.00  -10.50   -9.41   -7.76   -5.53   -2.63    1.10    5.88   11.81   18.73
+   255.0    0.00   -0.35   -1.39   -2.97   -4.89   -6.87   -8.65  -10.02  -10.81  -10.96  -10.47   -9.37   -7.69   -5.42   -2.47    1.32    6.13   12.04   18.90
+   260.0    0.00   -0.34   -1.37   -2.94   -4.85   -6.82   -8.59   -9.96  -10.75  -10.91  -10.43   -9.32   -7.62   -5.31   -2.30    1.55    6.38   12.26   19.02
+   265.0    0.00   -0.34   -1.35   -2.92   -4.81   -6.76   -8.53   -9.90  -10.70  -10.87  -10.39   -9.28   -7.56   -5.20   -2.14    1.75    6.60   12.43   19.10
+   270.0    0.00   -0.33   -1.34   -2.89   -4.76   -6.71   -8.48   -9.84  -10.65  -10.82  -10.35   -9.23   -7.49   -5.09   -1.99    1.93    6.78   12.56   19.13
+   275.0    0.00   -0.33   -1.33   -2.86   -4.73   -6.67   -8.42   -9.79  -10.60  -10.78  -10.30   -9.17   -7.41   -4.99   -1.86    2.07    6.90   12.64   19.11
+   280.0    0.00   -0.32   -1.31   -2.84   -4.69   -6.62   -8.38   -9.74  -10.55  -10.73  -10.25   -9.11   -7.33   -4.90   -1.76    2.17    6.97   12.66   19.06
+   285.0    0.00   -0.32   -1.30   -2.82   -4.66   -6.59   -8.34   -9.71  -10.52  -10.69  -10.19   -9.04   -7.25   -4.82   -1.69    2.21    6.98   12.62   18.97
+   290.0    0.00   -0.31   -1.29   -2.80   -4.64   -6.56   -8.32   -9.68  -10.49  -10.65  -10.14   -8.97   -7.17   -4.74   -1.65    2.21    6.93   12.54   18.88
+   295.0    0.00   -0.31   -1.28   -2.79   -4.62   -6.55   -8.31   -9.67  -10.48  -10.62  -10.08   -8.89   -7.09   -4.68   -1.64    2.16    6.83   12.42   18.77
+   300.0    0.00   -0.31   -1.28   -2.78   -4.61   -6.54   -8.30   -9.67  -10.47  -10.60  -10.04   -8.83   -7.02   -4.64   -1.65    2.08    6.70   12.28   18.66
+   305.0    0.00   -0.31   -1.27   -2.77   -4.61   -6.54   -8.31   -9.69  -10.48  -10.59  -10.00   -8.77   -6.97   -4.62   -1.70    1.96    6.54   12.13   18.56
+   310.0    0.00   -0.31   -1.27   -2.77   -4.61   -6.55   -8.33   -9.70  -10.49  -10.59   -9.98   -8.73   -6.93   -4.63   -1.77    1.83    6.37   11.98   18.46
+   315.0    0.00   -0.31   -1.27   -2.77   -4.61   -6.56   -8.34   -9.73  -10.52  -10.60   -9.98   -8.72   -6.93   -4.66   -1.85    1.69    6.21   11.84   18.36
+   320.0    0.00   -0.31   -1.27   -2.77   -4.62   -6.57   -8.37   -9.76  -10.55  -10.62   -9.99   -8.72   -6.95   -4.71   -1.95    1.55    6.06   11.71   18.26
+   325.0    0.00   -0.31   -1.27   -2.78   -4.63   -6.59   -8.39   -9.79  -10.58  -10.65  -10.01   -8.75   -6.99   -4.79   -2.06    1.41    5.92   11.60   18.14
+   330.0    0.00   -0.31   -1.28   -2.79   -4.64   -6.60   -8.41   -9.81  -10.61  -10.69  -10.06   -8.80   -7.06   -4.88   -2.18    1.29    5.81   11.49   18.01
+   335.0    0.00   -0.31   -1.28   -2.80   -4.66   -6.62   -8.43   -9.84  -10.64  -10.73  -10.11   -8.87   -7.15   -4.98   -2.29    1.18    5.71   11.39   17.85
+   340.0    0.00   -0.31   -1.29   -2.81   -4.67   -6.64   -8.45   -9.87  -10.68  -10.78  -10.18   -8.96   -7.24   -5.08   -2.39    1.09    5.62   11.29   17.68
+   345.0    0.00   -0.32   -1.30   -2.82   -4.69   -6.66   -8.48   -9.90  -10.72  -10.84  -10.25   -9.05   -7.34   -5.18   -2.47    1.02    5.55   11.19   17.50
+   350.0    0.00   -0.32   -1.31   -2.84   -4.71   -6.68   -8.50   -9.93  -10.76  -10.90  -10.33   -9.14   -7.43   -5.26   -2.54    0.96    5.49   11.09   17.31
+   355.0    0.00   -0.32   -1.32   -2.86   -4.73   -6.71   -8.53   -9.97  -10.82  -10.97  -10.42   -9.24   -7.52   -5.33   -2.58    0.92    5.43   10.98   17.13
+   360.0    0.00   -0.33   -1.33   -2.87   -4.75   -6.73   -8.56  -10.01  -10.88  -11.05  -10.51   -9.33   -7.60   -5.38   -2.61    0.90    5.38   10.87   16.96
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.45     -0.08    120.26                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.09   -0.36   -0.77   -1.29   -1.90   -2.57   -3.25   -3.85   -4.25   -4.31   -3.99   -3.30   -2.34   -1.20    0.14    1.94    4.58    8.40
+     0.0    0.00   -0.10   -0.35   -0.71   -1.18   -1.75   -2.40   -3.08   -3.71   -4.15   -4.27   -3.97   -3.28   -2.28   -1.06    0.36    2.16    4.74    8.63
+     5.0    0.00   -0.10   -0.35   -0.72   -1.18   -1.74   -2.39   -3.08   -3.72   -4.17   -4.29   -4.00   -3.30   -2.30   -1.09    0.33    2.15    4.78    8.75
+    10.0    0.00   -0.11   -0.35   -0.72   -1.18   -1.74   -2.39   -3.08   -3.73   -4.19   -4.32   -4.02   -3.33   -2.33   -1.13    0.28    2.12    4.80    8.84
+    15.0    0.00   -0.11   -0.36   -0.72   -1.18   -1.74   -2.39   -3.09   -3.75   -4.21   -4.34   -4.05   -3.35   -2.37   -1.18    0.21    2.06    4.80    8.91
+    20.0    0.00   -0.11   -0.36   -0.73   -1.19   -1.74   -2.40   -3.10   -3.77   -4.24   -4.36   -4.07   -3.38   -2.40   -1.24    0.13    1.99    4.78    8.94
+    25.0    0.00   -0.11   -0.37   -0.73   -1.20   -1.75   -2.41   -3.12   -3.79   -4.26   -4.38   -4.08   -3.39   -2.43   -1.30    0.04    1.90    4.74    8.95
+    30.0    0.00   -0.11   -0.37   -0.74   -1.21   -1.77   -2.43   -3.14   -3.81   -4.27   -4.39   -4.08   -3.39   -2.45   -1.36   -0.04    1.81    4.68    8.93
+    35.0    0.00   -0.11   -0.38   -0.75   -1.22   -1.79   -2.45   -3.17   -3.83   -4.29   -4.39   -4.07   -3.38   -2.45   -1.40   -0.11    1.73    4.63    8.90
+    40.0    0.00   -0.12   -0.38   -0.76   -1.24   -1.81   -2.47   -3.19   -3.86   -4.30   -4.39   -4.05   -3.36   -2.45   -1.42   -0.16    1.67    4.59    8.87
+    45.0    0.00   -0.12   -0.39   -0.78   -1.26   -1.83   -2.50   -3.22   -3.88   -4.31   -4.38   -4.03   -3.33   -2.43   -1.42   -0.19    1.64    4.57    8.83
+    50.0    0.00   -0.12   -0.39   -0.79   -1.27   -1.86   -2.53   -3.24   -3.89   -4.32   -4.38   -4.01   -3.30   -2.39   -1.40   -0.18    1.64    4.58    8.81
+    55.0    0.00   -0.12   -0.40   -0.80   -1.29   -1.88   -2.55   -3.27   -3.91   -4.32   -4.37   -3.98   -3.26   -2.36   -1.36   -0.15    1.68    4.61    8.80
+    60.0    0.00   -0.12   -0.40   -0.81   -1.31   -1.90   -2.57   -3.28   -3.92   -4.33   -4.36   -3.96   -3.23   -2.31   -1.31   -0.09    1.75    4.68    8.81
+    65.0    0.00   -0.12   -0.41   -0.82   -1.33   -1.92   -2.59   -3.30   -3.93   -4.33   -4.35   -3.94   -3.20   -2.27   -1.25   -0.01    1.84    4.76    8.84
+    70.0    0.00   -0.12   -0.41   -0.83   -1.34   -1.94   -2.61   -3.31   -3.94   -4.33   -4.34   -3.93   -3.17   -2.23   -1.18    0.08    1.95    4.86    8.88
+    75.0    0.00   -0.12   -0.41   -0.84   -1.35   -1.95   -2.62   -3.32   -3.94   -4.33   -4.34   -3.92   -3.16   -2.19   -1.12    0.18    2.06    4.95    8.92
+    80.0    0.00   -0.12   -0.42   -0.84   -1.36   -1.97   -2.64   -3.33   -3.94   -4.32   -4.34   -3.92   -3.15   -2.17   -1.07    0.26    2.15    5.03    8.96
+    85.0    0.00   -0.12   -0.42   -0.85   -1.37   -1.98   -2.65   -3.33   -3.94   -4.32   -4.34   -3.92   -3.15   -2.15   -1.03    0.32    2.22    5.09    8.98
+    90.0    0.00   -0.12   -0.41   -0.85   -1.38   -1.99   -2.65   -3.34   -3.94   -4.32   -4.34   -3.93   -3.16   -2.15   -1.00    0.36    2.26    5.10    8.96
+    95.0    0.00   -0.12   -0.41   -0.85   -1.38   -2.00   -2.66   -3.35   -3.94   -4.32   -4.34   -3.94   -3.17   -2.16   -1.00    0.38    2.27    5.07    8.91
+   100.0    0.00   -0.11   -0.41   -0.85   -1.39   -2.00   -2.67   -3.35   -3.95   -4.33   -4.35   -3.96   -3.19   -2.18   -1.01    0.37    2.24    5.00    8.80
+   105.0    0.00   -0.11   -0.41   -0.84   -1.39   -2.01   -2.68   -3.36   -3.95   -4.33   -4.36   -3.97   -3.22   -2.21   -1.04    0.34    2.18    4.89    8.65
+   110.0    0.00   -0.11   -0.40   -0.84   -1.39   -2.01   -2.69   -3.37   -3.96   -4.34   -4.37   -4.00   -3.25   -2.24   -1.07    0.29    2.11    4.74    8.46
+   115.0    0.00   -0.11   -0.40   -0.84   -1.39   -2.02   -2.70   -3.38   -3.97   -4.35   -4.38   -4.02   -3.28   -2.28   -1.11    0.25    2.02    4.59    8.24
+   120.0    0.00   -0.10   -0.39   -0.83   -1.38   -2.02   -2.71   -3.39   -3.98   -4.36   -4.40   -4.05   -3.32   -2.32   -1.15    0.21    1.95    4.43    8.01
+   125.0    0.00   -0.10   -0.38   -0.82   -1.38   -2.02   -2.71   -3.39   -3.98   -4.36   -4.42   -4.08   -3.36   -2.36   -1.18    0.18    1.89    4.29    7.78
+   130.0    0.00   -0.10   -0.38   -0.81   -1.37   -2.02   -2.71   -3.40   -3.99   -4.37   -4.43   -4.10   -3.39   -2.39   -1.19    0.18    1.86    4.19    7.59
+   135.0    0.00   -0.09   -0.37   -0.81   -1.37   -2.02   -2.71   -3.40   -3.99   -4.38   -4.44   -4.12   -3.42   -2.40   -1.19    0.19    1.86    4.12    7.45
+   140.0    0.00   -0.09   -0.36   -0.80   -1.36   -2.01   -2.71   -3.40   -3.99   -4.37   -4.45   -4.14   -3.43   -2.41   -1.17    0.23    1.89    4.11    7.37
+   145.0    0.00   -0.09   -0.36   -0.79   -1.35   -2.01   -2.70   -3.39   -3.98   -4.37   -4.45   -4.14   -3.44   -2.40   -1.14    0.28    1.94    4.14    7.36
+   150.0    0.00   -0.08   -0.35   -0.78   -1.34   -2.00   -2.70   -3.38   -3.97   -4.36   -4.44   -4.14   -3.43   -2.39   -1.10    0.35    2.02    4.20    7.42
+   155.0    0.00   -0.08   -0.34   -0.77   -1.33   -1.99   -2.69   -3.37   -3.95   -4.34   -4.42   -4.12   -3.41   -2.36   -1.06    0.41    2.10    4.29    7.55
+   160.0    0.00   -0.08   -0.34   -0.76   -1.32   -1.98   -2.68   -3.36   -3.94   -4.32   -4.40   -4.09   -3.38   -2.32   -1.01    0.46    2.17    4.40    7.73
+   165.0    0.00   -0.08   -0.33   -0.76   -1.32   -1.97   -2.67   -3.34   -3.92   -4.29   -4.36   -4.05   -3.34   -2.28   -0.98    0.50    2.22    4.50    7.93
+   170.0    0.00   -0.07   -0.33   -0.75   -1.31   -1.96   -2.66   -3.33   -3.90   -4.27   -4.33   -4.02   -3.30   -2.25   -0.96    0.51    2.24    4.58    8.13
+   175.0    0.00   -0.07   -0.32   -0.75   -1.30   -1.96   -2.65   -3.32   -3.88   -4.24   -4.30   -3.98   -3.26   -2.22   -0.95    0.50    2.24    4.63    8.31
+   180.0    0.00   -0.07   -0.32   -0.74   -1.30   -1.95   -2.64   -3.30   -3.87   -4.22   -4.27   -3.94   -3.23   -2.21   -0.97    0.46    2.20    4.65    8.44
+   185.0    0.00   -0.07   -0.32   -0.74   -1.30   -1.94   -2.63   -3.30   -3.85   -4.20   -4.25   -3.92   -3.21   -2.21   -1.00    0.40    2.14    4.64    8.50
+   190.0    0.00   -0.07   -0.32   -0.74   -1.29   -1.94   -2.63   -3.29   -3.85   -4.20   -4.23   -3.90   -3.20   -2.22   -1.04    0.33    2.06    4.59    8.50
+   195.0    0.00   -0.07   -0.32   -0.74   -1.29   -1.94   -2.62   -3.29   -3.84   -4.19   -4.23   -3.90   -3.21   -2.24   -1.09    0.25    1.98    4.53    8.44
+   200.0    0.00   -0.07   -0.32   -0.74   -1.29   -1.94   -2.62   -3.28   -3.84   -4.20   -4.24   -3.91   -3.22   -2.27   -1.14    0.18    1.90    4.45    8.32
+   205.0    0.00   -0.07   -0.32   -0.74   -1.30   -1.94   -2.62   -3.28   -3.85   -4.20   -4.25   -3.92   -3.24   -2.30   -1.19    0.12    1.84    4.38    8.17
+   210.0    0.00   -0.07   -0.32   -0.74   -1.30   -1.94   -2.62   -3.28   -3.85   -4.21   -4.27   -3.94   -3.27   -2.33   -1.22    0.08    1.80    4.32    8.00
+   215.0    0.00   -0.07   -0.32   -0.75   -1.30   -1.94   -2.62   -3.28   -3.86   -4.23   -4.28   -3.96   -3.28   -2.35   -1.24    0.06    1.78    4.29    7.86
+   220.0    0.00   -0.07   -0.33   -0.75   -1.30   -1.94   -2.61   -3.28   -3.86   -4.24   -4.30   -3.98   -3.30   -2.36   -1.25    0.07    1.80    4.29    7.75
+   225.0    0.00   -0.07   -0.33   -0.75   -1.30   -1.94   -2.61   -3.29   -3.87   -4.25   -4.31   -3.98   -3.29   -2.35   -1.23    0.09    1.83    4.33    7.71
+   230.0    0.00   -0.07   -0.33   -0.76   -1.31   -1.94   -2.61   -3.29   -3.87   -4.25   -4.31   -3.98   -3.28   -2.32   -1.20    0.13    1.89    4.40    7.74
+   235.0    0.00   -0.07   -0.33   -0.76   -1.31   -1.94   -2.61   -3.29   -3.87   -4.25   -4.30   -3.96   -3.25   -2.29   -1.16    0.17    1.95    4.49    7.83
+   240.0    0.00   -0.07   -0.34   -0.76   -1.31   -1.94   -2.61   -3.29   -3.87   -4.25   -4.29   -3.94   -3.22   -2.25   -1.12    0.21    2.01    4.60    8.00
+   245.0    0.00   -0.07   -0.34   -0.77   -1.31   -1.93   -2.61   -3.28   -3.87   -4.25   -4.28   -3.91   -3.18   -2.20   -1.08    0.25    2.07    4.71    8.21
+   250.0    0.00   -0.08   -0.34   -0.77   -1.31   -1.93   -2.61   -3.28   -3.87   -4.24   -4.26   -3.88   -3.14   -2.17   -1.06    0.27    2.11    4.82    8.45
+   255.0    0.00   -0.08   -0.34   -0.77   -1.31   -1.93   -2.60   -3.28   -3.87   -4.23   -4.25   -3.86   -3.11   -2.15   -1.05    0.27    2.12    4.91    8.70
+   260.0    0.00   -0.08   -0.35   -0.77   -1.31   -1.92   -2.60   -3.27   -3.86   -4.23   -4.24   -3.85   -3.10   -2.14   -1.06    0.25    2.12    4.97    8.92
+   265.0    0.00   -0.08   -0.35   -0.77   -1.30   -1.92   -2.59   -3.27   -3.86   -4.22   -4.24   -3.85   -3.11   -2.16   -1.09    0.21    2.09    5.01    9.10
+   270.0    0.00   -0.08   -0.35   -0.77   -1.30   -1.91   -2.58   -3.26   -3.85   -4.22   -4.25   -3.87   -3.14   -2.20   -1.14    0.16    2.05    5.01    9.21
+   275.0    0.00   -0.08   -0.35   -0.77   -1.29   -1.90   -2.57   -3.25   -3.84   -4.23   -4.26   -3.90   -3.19   -2.27   -1.20    0.10    2.00    4.97    9.26
+   280.0    0.00   -0.08   -0.35   -0.77   -1.29   -1.89   -2.56   -3.24   -3.84   -4.23   -4.29   -3.95   -3.26   -2.34   -1.28    0.03    1.93    4.91    9.23
+   285.0    0.00   -0.08   -0.35   -0.76   -1.28   -1.88   -2.55   -3.23   -3.83   -4.24   -4.31   -4.00   -3.33   -2.43   -1.36   -0.04    1.87    4.83    9.14
+   290.0    0.00   -0.09   -0.35   -0.76   -1.28   -1.88   -2.54   -3.21   -3.83   -4.24   -4.34   -4.05   -3.41   -2.51   -1.43   -0.09    1.81    4.73    8.99
+   295.0    0.00   -0.09   -0.35   -0.76   -1.27   -1.87   -2.52   -3.20   -3.82   -4.25   -4.36   -4.10   -3.47   -2.58   -1.49   -0.14    1.76    4.63    8.81
+   300.0    0.00   -0.09   -0.35   -0.75   -1.26   -1.86   -2.51   -3.19   -3.81   -4.24   -4.38   -4.13   -3.53   -2.64   -1.53   -0.16    1.72    4.53    8.60
+   305.0    0.00   -0.09   -0.35   -0.75   -1.26   -1.85   -2.51   -3.18   -3.80   -4.24   -4.38   -4.15   -3.56   -2.67   -1.55   -0.17    1.70    4.43    8.40
+   310.0    0.00   -0.09   -0.35   -0.75   -1.25   -1.84   -2.50   -3.17   -3.79   -4.23   -4.38   -4.16   -3.57   -2.67   -1.54   -0.15    1.70    4.36    8.23
+   315.0    0.00   -0.09   -0.35   -0.74   -1.25   -1.84   -2.49   -3.16   -3.78   -4.22   -4.36   -4.15   -3.55   -2.65   -1.51   -0.11    1.71    4.31    8.08
+   320.0    0.00   -0.09   -0.35   -0.74   -1.24   -1.83   -2.48   -3.16   -3.77   -4.20   -4.34   -4.12   -3.52   -2.61   -1.46   -0.06    1.74    4.28    7.99
+   325.0    0.00   -0.09   -0.35   -0.74   -1.23   -1.82   -2.48   -3.15   -3.75   -4.18   -4.32   -4.08   -3.48   -2.55   -1.39    0.01    1.79    4.28    7.95
+   330.0    0.00   -0.09   -0.35   -0.73   -1.23   -1.81   -2.47   -3.14   -3.74   -4.16   -4.29   -4.04   -3.42   -2.49   -1.32    0.08    1.85    4.31    7.95
+   335.0    0.00   -0.10   -0.35   -0.73   -1.22   -1.80   -2.46   -3.13   -3.73   -4.15   -4.27   -4.01   -3.37   -2.42   -1.24    0.16    1.91    4.36    8.01
+   340.0    0.00   -0.10   -0.35   -0.72   -1.21   -1.79   -2.44   -3.12   -3.72   -4.14   -4.25   -3.98   -3.32   -2.36   -1.17    0.23    1.98    4.43    8.10
+   345.0    0.00   -0.10   -0.35   -0.72   -1.20   -1.78   -2.43   -3.11   -3.72   -4.13   -4.24   -3.96   -3.29   -2.31   -1.11    0.29    2.04    4.51    8.22
+   350.0    0.00   -0.10   -0.35   -0.72   -1.19   -1.77   -2.42   -3.10   -3.71   -4.13   -4.24   -3.95   -3.27   -2.28   -1.07    0.34    2.10    4.59    8.36
+   355.0    0.00   -0.10   -0.35   -0.72   -1.19   -1.76   -2.41   -3.09   -3.71   -4.14   -4.25   -3.96   -3.27   -2.27   -1.06    0.36    2.14    4.67    8.50
+   360.0    0.00   -0.10   -0.35   -0.71   -1.18   -1.75   -2.40   -3.08   -3.71   -4.15   -4.27   -3.97   -3.28   -2.28   -1.06    0.36    2.16    4.74    8.63
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TPSCR.G3        TPSH                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH              51    15-MAY-08 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+     -0.05      0.36     84.40                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.36   -1.37   -2.90   -4.73   -6.62   -8.33   -9.68  -10.51  -10.76  -10.41   -9.44   -7.89   -5.72   -2.88    0.74    5.26   10.66   16.69
+     0.0    0.00   -0.36   -1.38   -2.93   -4.79   -6.70   -8.42   -9.76  -10.58  -10.82  -10.45   -9.51   -7.99   -5.87   -3.07    0.51    4.96   10.20   15.92
+     5.0    0.00   -0.36   -1.38   -2.94   -4.80   -6.72   -8.45   -9.81  -10.64  -10.88  -10.52   -9.56   -8.04   -5.92   -3.14    0.43    4.87   10.15   15.95
+    10.0    0.00   -0.36   -1.39   -2.94   -4.81   -6.74   -8.49   -9.86  -10.70  -10.95  -10.58   -9.62   -8.08   -5.97   -3.20    0.35    4.78   10.10   16.02
+    15.0    0.00   -0.36   -1.39   -2.95   -4.82   -6.76   -8.52   -9.90  -10.76  -11.01  -10.64   -9.67   -8.13   -6.02   -3.26    0.27    4.71   10.07   16.09
+    20.0    0.00   -0.36   -1.39   -2.95   -4.82   -6.77   -8.55   -9.95  -10.82  -11.08  -10.70   -9.72   -8.18   -6.06   -3.31    0.21    4.65   10.05   16.17
+    25.0    0.00   -0.36   -1.39   -2.95   -4.83   -6.78   -8.57   -9.98  -10.87  -11.14  -10.76   -9.78   -8.22   -6.11   -3.36    0.16    4.60   10.03   16.22
+    30.0    0.00   -0.36   -1.39   -2.95   -4.83   -6.79   -8.59  -10.01  -10.91  -11.19  -10.82   -9.83   -8.27   -6.14   -3.39    0.13    4.58   10.02   16.25
+    35.0    0.00   -0.36   -1.39   -2.95   -4.83   -6.79   -8.59  -10.03  -10.94  -11.23  -10.87   -9.88   -8.31   -6.17   -3.41    0.12    4.57   10.02   16.26
+    40.0    0.00   -0.36   -1.39   -2.94   -4.82   -6.78   -8.59  -10.03  -10.96  -11.26  -10.91   -9.93   -8.35   -6.19   -3.41    0.13    4.60   10.04   16.25
+    45.0    0.00   -0.36   -1.39   -2.94   -4.81   -6.77   -8.57  -10.03  -10.96  -11.28  -10.94   -9.96   -8.37   -6.19   -3.39    0.17    4.64   10.06   16.23
+    50.0    0.00   -0.36   -1.38   -2.93   -4.79   -6.74   -8.55  -10.00  -10.95  -11.28  -10.95   -9.97   -8.37   -6.18   -3.35    0.24    4.71   10.11   16.22
+    55.0    0.00   -0.36   -1.38   -2.92   -4.78   -6.71   -8.51   -9.96  -10.91  -11.25  -10.94   -9.96   -8.36   -6.15   -3.29    0.32    4.80   10.19   16.24
+    60.0    0.00   -0.36   -1.38   -2.91   -4.76   -6.68   -8.47   -9.91  -10.86  -11.21  -10.90   -9.94   -8.33   -6.10   -3.22    0.42    4.91   10.29   16.30
+    65.0    0.00   -0.36   -1.37   -2.90   -4.73   -6.64   -8.41   -9.85  -10.79  -11.15  -10.85   -9.88   -8.28   -6.03   -3.13    0.53    5.04   10.42   16.41
+    70.0    0.00   -0.36   -1.37   -2.89   -4.71   -6.61   -8.36   -9.78  -10.72  -11.07  -10.77   -9.81   -8.20   -5.95   -3.03    0.65    5.19   10.58   16.57
+    75.0    0.00   -0.35   -1.36   -2.88   -4.69   -6.57   -8.30   -9.71  -10.63  -10.97  -10.68   -9.72   -8.11   -5.86   -2.92    0.78    5.34   10.76   16.77
+    80.0    0.00   -0.35   -1.36   -2.87   -4.67   -6.53   -8.25   -9.63  -10.54  -10.88  -10.57   -9.62   -8.01   -5.76   -2.81    0.90    5.49   10.95   17.01
+    85.0    0.00   -0.35   -1.36   -2.86   -4.65   -6.50   -8.20   -9.57  -10.46  -10.78  -10.47   -9.51   -7.90   -5.65   -2.71    1.02    5.64   11.14   17.25
+    90.0    0.00   -0.35   -1.35   -2.85   -4.63   -6.47   -8.16   -9.50  -10.38  -10.68  -10.36   -9.40   -7.80   -5.55   -2.61    1.14    5.78   11.32   17.48
+    95.0    0.00   -0.35   -1.35   -2.84   -4.62   -6.45   -8.12   -9.45  -10.31  -10.59  -10.26   -9.30   -7.70   -5.45   -2.51    1.23    5.90   11.47   17.67
+   100.0    0.00   -0.35   -1.35   -2.84   -4.61   -6.43   -8.09   -9.41  -10.25  -10.52  -10.17   -9.20   -7.61   -5.37   -2.43    1.32    5.99   11.59   17.82
+   105.0    0.00   -0.35   -1.35   -2.83   -4.60   -6.42   -8.07   -9.38  -10.20  -10.46  -10.10   -9.12   -7.53   -5.30   -2.37    1.37    6.05   11.65   17.89
+   110.0    0.00   -0.35   -1.35   -2.83   -4.60   -6.41   -8.06   -9.36  -10.17  -10.41  -10.04   -9.06   -7.46   -5.24   -2.32    1.41    6.08   11.67   17.90
+   115.0    0.00   -0.35   -1.35   -2.83   -4.59   -6.41   -8.06   -9.35  -10.15  -10.38  -10.00   -9.01   -7.42   -5.21   -2.30    1.42    6.06   11.64   17.84
+   120.0    0.00   -0.35   -1.34   -2.83   -4.59   -6.41   -8.05   -9.34  -10.13  -10.35   -9.97   -8.97   -7.39   -5.19   -2.30    1.40    6.02   11.56   17.73
+   125.0    0.00   -0.35   -1.35   -2.83   -4.60   -6.41   -8.05   -9.34  -10.13  -10.34   -9.95   -8.95   -7.37   -5.19   -2.32    1.35    5.94   11.44   17.58
+   130.0    0.00   -0.35   -1.35   -2.83   -4.60   -6.41   -8.06   -9.34  -10.12  -10.33   -9.94   -8.95   -7.38   -5.20   -2.36    1.28    5.83   11.30   17.40
+   135.0    0.00   -0.35   -1.35   -2.83   -4.60   -6.42   -8.06   -9.34  -10.12  -10.33   -9.94   -8.95   -7.39   -5.24   -2.42    1.19    5.71   11.14   17.22
+   140.0    0.00   -0.35   -1.35   -2.84   -4.61   -6.42   -8.06   -9.34  -10.13  -10.34   -9.95   -8.97   -7.42   -5.28   -2.49    1.10    5.58   10.98   17.06
+   145.0    0.00   -0.35   -1.35   -2.84   -4.61   -6.43   -8.07   -9.35  -10.14  -10.35   -9.97   -9.01   -7.47   -5.34   -2.56    0.99    5.45   10.83   16.91
+   150.0    0.00   -0.36   -1.36   -2.85   -4.62   -6.44   -8.08   -9.37  -10.16  -10.38  -10.01   -9.05   -7.52   -5.41   -2.65    0.89    5.32   10.68   16.78
+   155.0    0.00   -0.36   -1.36   -2.85   -4.63   -6.45   -8.10   -9.39  -10.19  -10.42  -10.05   -9.11   -7.59   -5.48   -2.73    0.79    5.21   10.56   16.68
+   160.0    0.00   -0.36   -1.36   -2.86   -4.64   -6.47   -8.12   -9.42  -10.22  -10.47  -10.12   -9.18   -7.66   -5.56   -2.81    0.70    5.10   10.45   16.59
+   165.0    0.00   -0.36   -1.37   -2.87   -4.66   -6.49   -8.15   -9.46  -10.27  -10.53  -10.19   -9.26   -7.74   -5.64   -2.89    0.62    5.02   10.35   16.51
+   170.0    0.00   -0.36   -1.37   -2.88   -4.68   -6.52   -8.19   -9.50  -10.33  -10.60  -10.27   -9.34   -7.83   -5.72   -2.96    0.55    4.94   10.27   16.43
+   175.0    0.00   -0.36   -1.38   -2.90   -4.70   -6.55   -8.23   -9.56  -10.40  -10.68  -10.36   -9.43   -7.91   -5.79   -3.02    0.49    4.87   10.19   16.35
+   180.0    0.00   -0.36   -1.38   -2.91   -4.72   -6.59   -8.29   -9.63  -10.48  -10.76  -10.45   -9.52   -8.00   -5.87   -3.09    0.43    4.81   10.12   16.27
+   185.0    0.00   -0.36   -1.39   -2.92   -4.75   -6.63   -8.34   -9.69  -10.55  -10.85  -10.53   -9.61   -8.08   -5.94   -3.16    0.37    4.75   10.05   16.19
+   190.0    0.00   -0.36   -1.39   -2.94   -4.77   -6.67   -8.39   -9.76  -10.63  -10.92  -10.61   -9.68   -8.15   -6.01   -3.22    0.31    4.69    9.99   16.12
+   195.0    0.00   -0.37   -1.40   -2.95   -4.80   -6.71   -8.44   -9.82  -10.69  -10.99  -10.67   -9.75   -8.22   -6.08   -3.29    0.24    4.62    9.93   16.06
+   200.0    0.00   -0.37   -1.40   -2.96   -4.82   -6.74   -8.49   -9.87  -10.75  -11.04  -10.72   -9.79   -8.27   -6.14   -3.36    0.17    4.56    9.89   16.03
+   205.0    0.00   -0.37   -1.41   -2.97   -4.84   -6.77   -8.52   -9.91  -10.78  -11.07  -10.75   -9.83   -8.31   -6.20   -3.43    0.10    4.51    9.87   16.04
+   210.0    0.00   -0.37   -1.41   -2.98   -4.85   -6.79   -8.55   -9.93  -10.81  -11.09  -10.77   -9.85   -8.35   -6.25   -3.49    0.04    4.48    9.88   16.09
+   215.0    0.00   -0.37   -1.41   -2.98   -4.86   -6.80   -8.56   -9.95  -10.81  -11.09  -10.77   -9.85   -8.37   -6.29   -3.55    0.00    4.47    9.92   16.17
+   220.0    0.00   -0.37   -1.41   -2.98   -4.87   -6.81   -8.57   -9.94  -10.80  -11.08  -10.76   -9.85   -8.38   -6.32   -3.58   -0.02    4.49   10.00   16.29
+   225.0    0.00   -0.37   -1.41   -2.98   -4.86   -6.80   -8.56   -9.93  -10.78  -11.06  -10.74   -9.84   -8.39   -6.33   -3.59   -0.01    4.54   10.11   16.44
+   230.0    0.00   -0.37   -1.41   -2.98   -4.86   -6.79   -8.54   -9.90  -10.75  -11.03  -10.72   -9.83   -8.38   -6.33   -3.57    0.04    4.64   10.25   16.60
+   235.0    0.00   -0.36   -1.40   -2.97   -4.84   -6.77   -8.51   -9.87  -10.72  -11.00  -10.69   -9.82   -8.36   -6.30   -3.52    0.13    4.77   10.41   16.75
+   240.0    0.00   -0.36   -1.40   -2.96   -4.83   -6.75   -8.48   -9.84  -10.69  -10.97  -10.67   -9.80   -8.34   -6.25   -3.43    0.26    4.94   10.59   16.90
+   245.0    0.00   -0.36   -1.40   -2.95   -4.81   -6.72   -8.45   -9.81  -10.66  -10.95  -10.65   -9.77   -8.29   -6.18   -3.32    0.42    5.13   10.78   17.02
+   250.0    0.00   -0.36   -1.39   -2.94   -4.80   -6.70   -8.42   -9.77  -10.63  -10.93  -10.63   -9.74   -8.24   -6.08   -3.17    0.60    5.33   10.95   17.11
+   255.0    0.00   -0.36   -1.39   -2.93   -4.78   -6.67   -8.39   -9.74  -10.61  -10.90  -10.61   -9.70   -8.16   -5.96   -3.01    0.80    5.53   11.11   17.17
+   260.0    0.00   -0.36   -1.38   -2.92   -4.76   -6.65   -8.37   -9.72  -10.58  -10.88  -10.57   -9.64   -8.08   -5.83   -2.83    1.00    5.72   11.25   17.22
+   265.0    0.00   -0.36   -1.38   -2.91   -4.75   -6.63   -8.35   -9.70  -10.56  -10.85  -10.53   -9.58   -7.97   -5.69   -2.66    1.18    5.89   11.36   17.24
+   270.0    0.00   -0.36   -1.37   -2.91   -4.74   -6.62   -8.33   -9.68  -10.53  -10.81  -10.47   -9.49   -7.86   -5.54   -2.50    1.34    6.01   11.44   17.27
+   275.0    0.00   -0.35   -1.37   -2.90   -4.73   -6.61   -8.32   -9.66  -10.51  -10.77  -10.40   -9.40   -7.74   -5.41   -2.36    1.46    6.10   11.49   17.29
+   280.0    0.00   -0.35   -1.37   -2.89   -4.72   -6.60   -8.31   -9.64  -10.47  -10.71  -10.32   -9.29   -7.61   -5.28   -2.26    1.54    6.14   11.51   17.31
+   285.0    0.00   -0.35   -1.36   -2.89   -4.72   -6.60   -8.30   -9.62  -10.44  -10.65  -10.24   -9.18   -7.50   -5.18   -2.18    1.57    6.15   11.50   17.34
+   290.0    0.00   -0.35   -1.36   -2.89   -4.71   -6.59   -8.29   -9.61  -10.40  -10.59  -10.15   -9.08   -7.40   -5.11   -2.15    1.57    6.12   11.48   17.37
+   295.0    0.00   -0.35   -1.36   -2.89   -4.71   -6.59   -8.28   -9.59  -10.36  -10.53  -10.07   -8.99   -7.33   -5.06   -2.15    1.52    6.06   11.44   17.39
+   300.0    0.00   -0.35   -1.36   -2.89   -4.71   -6.59   -8.28   -9.57  -10.32  -10.47   -9.99   -8.92   -7.27   -5.05   -2.18    1.46    5.98   11.38   17.39
+   305.0    0.00   -0.35   -1.36   -2.89   -4.72   -6.59   -8.27   -9.55  -10.29  -10.42   -9.94   -8.87   -7.25   -5.07   -2.24    1.37    5.89   11.31   17.36
+   310.0    0.00   -0.35   -1.36   -2.89   -4.72   -6.59   -8.27   -9.54  -10.27  -10.39   -9.91   -8.85   -7.26   -5.11   -2.31    1.28    5.79   11.22   17.30
+   315.0    0.00   -0.35   -1.36   -2.89   -4.72   -6.60   -8.27   -9.53  -10.25  -10.37   -9.90   -8.86   -7.30   -5.17   -2.40    1.19    5.70   11.13   17.18
+   320.0    0.00   -0.35   -1.36   -2.89   -4.72   -6.60   -8.27   -9.53  -10.25  -10.38   -9.91   -8.90   -7.36   -5.25   -2.48    1.10    5.61   11.02   17.03
+   325.0    0.00   -0.35   -1.36   -2.90   -4.73   -6.60   -8.27   -9.53  -10.26  -10.40   -9.95   -8.96   -7.43   -5.34   -2.57    1.01    5.53   10.91   16.84
+   330.0    0.00   -0.35   -1.37   -2.90   -4.73   -6.61   -8.28   -9.55  -10.28  -10.43  -10.01   -9.03   -7.52   -5.43   -2.66    0.94    5.45   10.80   16.64
+   335.0    0.00   -0.35   -1.37   -2.91   -4.74   -6.62   -8.29   -9.57  -10.31  -10.48  -10.08   -9.12   -7.61   -5.52   -2.74    0.87    5.37   10.68   16.43
+   340.0    0.00   -0.35   -1.37   -2.91   -4.75   -6.63   -8.31   -9.60  -10.36  -10.54  -10.15   -9.21   -7.70   -5.61   -2.81    0.80    5.29   10.57   16.24
+   345.0    0.00   -0.35   -1.37   -2.92   -4.76   -6.64   -8.33   -9.63  -10.41  -10.61  -10.23   -9.29   -7.79   -5.68   -2.88    0.73    5.21   10.46   16.09
+   350.0    0.00   -0.35   -1.38   -2.92   -4.77   -6.66   -8.36   -9.67  -10.46  -10.68  -10.31   -9.37   -7.86   -5.75   -2.94    0.66    5.13   10.36   15.98
+   355.0    0.00   -0.35   -1.38   -2.93   -4.78   -6.68   -8.39   -9.71  -10.52  -10.75  -10.38   -9.44   -7.93   -5.81   -3.01    0.59    5.05   10.27   15.92
+   360.0    0.00   -0.36   -1.38   -2.93   -4.79   -6.70   -8.42   -9.76  -10.58  -10.82  -10.45   -9.51   -7.99   -5.87   -3.07    0.51    4.96   10.20   15.92
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.84      0.26    119.70                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.09   -0.34   -0.75   -1.29   -1.93   -2.63   -3.33   -3.93   -4.32   -4.41   -4.13   -3.51   -2.59   -1.42    0.07    2.03    4.71    8.25
+     0.0    0.00   -0.06   -0.29   -0.68   -1.21   -1.85   -2.54   -3.24   -3.83   -4.23   -4.34   -4.09   -3.47   -2.53   -1.29    0.26    2.24    4.81    8.14
+     5.0    0.00   -0.06   -0.29   -0.68   -1.20   -1.84   -2.53   -3.23   -3.83   -4.23   -4.35   -4.10   -3.49   -2.55   -1.30    0.26    2.24    4.83    8.16
+    10.0    0.00   -0.06   -0.29   -0.67   -1.20   -1.83   -2.52   -3.22   -3.82   -4.24   -4.36   -4.12   -3.52   -2.57   -1.32    0.25    2.24    4.83    8.19
+    15.0    0.00   -0.06   -0.29   -0.67   -1.19   -1.82   -2.52   -3.21   -3.82   -4.24   -4.37   -4.15   -3.54   -2.60   -1.35    0.23    2.22    4.83    8.22
+    20.0    0.00   -0.06   -0.29   -0.67   -1.19   -1.82   -2.51   -3.21   -3.83   -4.25   -4.39   -4.17   -3.57   -2.63   -1.38    0.19    2.19    4.81    8.26
+    25.0    0.00   -0.06   -0.29   -0.67   -1.19   -1.82   -2.52   -3.22   -3.83   -4.26   -4.40   -4.19   -3.60   -2.66   -1.42    0.15    2.15    4.80    8.30
+    30.0    0.00   -0.06   -0.29   -0.68   -1.20   -1.83   -2.52   -3.22   -3.84   -4.27   -4.41   -4.20   -3.62   -2.69   -1.46    0.10    2.11    4.79    8.35
+    35.0    0.00   -0.06   -0.29   -0.68   -1.21   -1.84   -2.54   -3.24   -3.85   -4.28   -4.42   -4.21   -3.63   -2.72   -1.50    0.06    2.08    4.78    8.39
+    40.0    0.00   -0.07   -0.30   -0.69   -1.22   -1.85   -2.55   -3.25   -3.87   -4.29   -4.43   -4.22   -3.65   -2.74   -1.53    0.02    2.05    4.79    8.44
+    45.0    0.00   -0.07   -0.30   -0.70   -1.23   -1.87   -2.57   -3.27   -3.88   -4.30   -4.44   -4.22   -3.65   -2.76   -1.55   -0.01    2.04    4.81    8.49
+    50.0    0.00   -0.07   -0.31   -0.71   -1.24   -1.88   -2.59   -3.29   -3.90   -4.31   -4.44   -4.22   -3.65   -2.76   -1.57   -0.02    2.04    4.84    8.54
+    55.0    0.00   -0.07   -0.32   -0.72   -1.26   -1.90   -2.61   -3.31   -3.91   -4.32   -4.44   -4.22   -3.65   -2.77   -1.57   -0.02    2.06    4.89    8.59
+    60.0    0.00   -0.08   -0.32   -0.73   -1.27   -1.92   -2.63   -3.32   -3.93   -4.33   -4.44   -4.21   -3.65   -2.76   -1.57    0.00    2.10    4.94    8.63
+    65.0    0.00   -0.08   -0.33   -0.74   -1.28   -1.93   -2.64   -3.34   -3.94   -4.34   -4.44   -4.21   -3.64   -2.75   -1.56    0.02    2.14    5.00    8.68
+    70.0    0.00   -0.08   -0.33   -0.75   -1.30   -1.95   -2.65   -3.35   -3.95   -4.34   -4.44   -4.21   -3.63   -2.74   -1.54    0.05    2.19    5.07    8.72
+    75.0    0.00   -0.08   -0.34   -0.76   -1.31   -1.96   -2.66   -3.36   -3.96   -4.35   -4.45   -4.20   -3.62   -2.72   -1.51    0.08    2.23    5.12    8.76
+    80.0    0.00   -0.09   -0.35   -0.76   -1.31   -1.96   -2.67   -3.37   -3.96   -4.36   -4.45   -4.20   -3.61   -2.71   -1.50    0.10    2.26    5.16    8.79
+    85.0    0.00   -0.09   -0.35   -0.77   -1.32   -1.97   -2.67   -3.37   -3.97   -4.36   -4.46   -4.20   -3.60   -2.69   -1.48    0.11    2.27    5.17    8.82
+    90.0    0.00   -0.09   -0.36   -0.78   -1.33   -1.97   -2.67   -3.37   -3.97   -4.37   -4.46   -4.20   -3.59   -2.68   -1.48    0.10    2.25    5.16    8.83
+    95.0    0.00   -0.10   -0.36   -0.78   -1.33   -1.97   -2.67   -3.37   -3.98   -4.38   -4.47   -4.20   -3.59   -2.68   -1.48    0.08    2.21    5.12    8.83
+   100.0    0.00   -0.10   -0.37   -0.79   -1.33   -1.97   -2.67   -3.37   -3.98   -4.38   -4.47   -4.20   -3.58   -2.67   -1.50    0.04    2.14    5.05    8.81
+   105.0    0.00   -0.10   -0.37   -0.79   -1.34   -1.97   -2.67   -3.37   -3.98   -4.38   -4.47   -4.19   -3.57   -2.67   -1.51   -0.02    2.06    4.96    8.77
+   110.0    0.00   -0.10   -0.38   -0.80   -1.34   -1.97   -2.67   -3.38   -3.99   -4.39   -4.47   -4.19   -3.56   -2.67   -1.53   -0.07    1.96    4.86    8.71
+   115.0    0.00   -0.10   -0.38   -0.80   -1.34   -1.98   -2.68   -3.38   -3.99   -4.39   -4.47   -4.18   -3.55   -2.66   -1.55   -0.12    1.87    4.75    8.62
+   120.0    0.00   -0.11   -0.38   -0.81   -1.34   -1.98   -2.68   -3.38   -3.99   -4.39   -4.46   -4.16   -3.53   -2.65   -1.56   -0.16    1.79    4.64    8.51
+   125.0    0.00   -0.11   -0.39   -0.81   -1.35   -1.98   -2.68   -3.39   -4.00   -4.39   -4.45   -4.14   -3.51   -2.63   -1.55   -0.18    1.74    4.54    8.38
+   130.0    0.00   -0.11   -0.39   -0.81   -1.35   -1.99   -2.69   -3.39   -4.00   -4.38   -4.44   -4.12   -3.48   -2.60   -1.53   -0.18    1.71    4.47    8.25
+   135.0    0.00   -0.11   -0.39   -0.81   -1.36   -2.00   -2.70   -3.40   -4.00   -4.37   -4.42   -4.10   -3.45   -2.57   -1.50   -0.15    1.72    4.43    8.12
+   140.0    0.00   -0.11   -0.39   -0.81   -1.36   -2.00   -2.70   -3.40   -3.99   -4.36   -4.40   -4.08   -3.42   -2.53   -1.45   -0.10    1.76    4.41    8.00
+   145.0    0.00   -0.11   -0.39   -0.82   -1.36   -2.00   -2.71   -3.40   -3.99   -4.35   -4.38   -4.05   -3.39   -2.49   -1.39   -0.02    1.83    4.43    7.90
+   150.0    0.00   -0.11   -0.39   -0.81   -1.36   -2.01   -2.71   -3.40   -3.98   -4.34   -4.36   -4.03   -3.36   -2.45   -1.33    0.06    1.92    4.48    7.83
+   155.0    0.00   -0.11   -0.39   -0.81   -1.36   -2.01   -2.71   -3.40   -3.97   -4.32   -4.34   -4.01   -3.34   -2.42   -1.27    0.15    2.01    4.54    7.79
+   160.0    0.00   -0.11   -0.39   -0.81   -1.36   -2.00   -2.70   -3.39   -3.96   -4.31   -4.33   -3.99   -3.32   -2.39   -1.22    0.22    2.11    4.61    7.79
+   165.0    0.00   -0.11   -0.39   -0.81   -1.35   -2.00   -2.70   -3.38   -3.95   -4.29   -4.32   -3.98   -3.32   -2.37   -1.19    0.29    2.19    4.69    7.83
+   170.0    0.00   -0.11   -0.38   -0.80   -1.35   -1.99   -2.69   -3.37   -3.94   -4.28   -4.31   -3.98   -3.32   -2.37   -1.17    0.33    2.25    4.75    7.88
+   175.0    0.00   -0.11   -0.38   -0.80   -1.34   -1.98   -2.68   -3.36   -3.93   -4.27   -4.31   -3.99   -3.33   -2.37   -1.16    0.34    2.28    4.80    7.96
+   180.0    0.00   -0.11   -0.38   -0.79   -1.33   -1.97   -2.66   -3.35   -3.92   -4.27   -4.31   -4.00   -3.34   -2.39   -1.18    0.33    2.28    4.82    8.04
+   185.0    0.00   -0.11   -0.37   -0.78   -1.32   -1.96   -2.65   -3.33   -3.91   -4.27   -4.32   -4.02   -3.37   -2.42   -1.21    0.30    2.25    4.82    8.11
+   190.0    0.00   -0.11   -0.37   -0.78   -1.31   -1.94   -2.64   -3.32   -3.91   -4.28   -4.34   -4.04   -3.40   -2.46   -1.25    0.25    2.20    4.79    8.16
+   195.0    0.00   -0.11   -0.37   -0.77   -1.30   -1.93   -2.63   -3.32   -3.91   -4.29   -4.36   -4.07   -3.43   -2.49   -1.30    0.19    2.14    4.75    8.19
+   200.0    0.00   -0.11   -0.37   -0.77   -1.29   -1.92   -2.62   -3.31   -3.91   -4.30   -4.38   -4.09   -3.46   -2.53   -1.34    0.14    2.07    4.69    8.18
+   205.0    0.00   -0.10   -0.36   -0.76   -1.29   -1.92   -2.61   -3.31   -3.92   -4.31   -4.40   -4.12   -3.49   -2.56   -1.38    0.09    2.00    4.62    8.15
+   210.0    0.00   -0.10   -0.36   -0.76   -1.28   -1.91   -2.61   -3.31   -3.92   -4.32   -4.41   -4.14   -3.51   -2.58   -1.41    0.05    1.95    4.56    8.09
+   215.0    0.00   -0.10   -0.36   -0.76   -1.28   -1.91   -2.61   -3.32   -3.93   -4.34   -4.43   -4.15   -3.52   -2.60   -1.43    0.02    1.91    4.50    8.02
+   220.0    0.00   -0.10   -0.36   -0.76   -1.28   -1.91   -2.62   -3.32   -3.94   -4.35   -4.44   -4.16   -3.53   -2.60   -1.43    0.01    1.89    4.46    7.94
+   225.0    0.00   -0.10   -0.36   -0.76   -1.29   -1.92   -2.62   -3.33   -3.95   -4.35   -4.44   -4.16   -3.52   -2.59   -1.42    0.02    1.89    4.44    7.87
+   230.0    0.00   -0.10   -0.36   -0.76   -1.29   -1.93   -2.63   -3.34   -3.96   -4.35   -4.44   -4.15   -3.51   -2.58   -1.41    0.03    1.90    4.43    7.82
+   235.0    0.00   -0.10   -0.36   -0.76   -1.30   -1.94   -2.65   -3.35   -3.96   -4.35   -4.43   -4.14   -3.50   -2.57   -1.39    0.05    1.92    4.45    7.79
+   240.0    0.00   -0.10   -0.36   -0.77   -1.31   -1.95   -2.66   -3.36   -3.97   -4.35   -4.42   -4.13   -3.48   -2.55   -1.38    0.07    1.95    4.48    7.79
+   245.0    0.00   -0.10   -0.36   -0.77   -1.31   -1.96   -2.67   -3.37   -3.97   -4.35   -4.41   -4.11   -3.47   -2.54   -1.37    0.08    1.97    4.52    7.83
+   250.0    0.00   -0.10   -0.36   -0.78   -1.32   -1.97   -2.68   -3.38   -3.97   -4.34   -4.40   -4.10   -3.46   -2.53   -1.36    0.09    1.99    4.56    7.89
+   255.0    0.00   -0.09   -0.36   -0.78   -1.33   -1.98   -2.69   -3.39   -3.97   -4.34   -4.40   -4.09   -3.45   -2.53   -1.37    0.08    2.00    4.60    7.97
+   260.0    0.00   -0.09   -0.36   -0.78   -1.33   -1.98   -2.69   -3.39   -3.97   -4.34   -4.39   -4.09   -3.45   -2.53   -1.38    0.07    1.99    4.63    8.07
+   265.0    0.00   -0.09   -0.36   -0.78   -1.34   -1.99   -2.69   -3.39   -3.97   -4.34   -4.40   -4.10   -3.46   -2.55   -1.40    0.04    1.98    4.65    8.17
+   270.0    0.00   -0.09   -0.36   -0.78   -1.34   -1.99   -2.69   -3.39   -3.97   -4.35   -4.41   -4.11   -3.47   -2.56   -1.42    0.01    1.95    4.66    8.26
+   275.0    0.00   -0.09   -0.36   -0.78   -1.33   -1.98   -2.69   -3.38   -3.97   -4.35   -4.42   -4.12   -3.49   -2.58   -1.45   -0.02    1.92    4.65    8.34
+   280.0    0.00   -0.09   -0.35   -0.78   -1.33   -1.98   -2.68   -3.38   -3.97   -4.36   -4.44   -4.15   -3.51   -2.60   -1.47   -0.04    1.89    4.64    8.39
+   285.0    0.00   -0.09   -0.35   -0.78   -1.33   -1.97   -2.67   -3.37   -3.97   -4.37   -4.45   -4.17   -3.53   -2.62   -1.49   -0.07    1.86    4.62    8.41
+   290.0    0.00   -0.08   -0.35   -0.77   -1.32   -1.96   -2.66   -3.36   -3.97   -4.38   -4.47   -4.19   -3.55   -2.64   -1.50   -0.08    1.83    4.59    8.42
+   295.0    0.00   -0.08   -0.35   -0.77   -1.31   -1.95   -2.65   -3.35   -3.97   -4.38   -4.48   -4.20   -3.57   -2.64   -1.50   -0.09    1.82    4.56    8.40
+   300.0    0.00   -0.08   -0.34   -0.76   -1.31   -1.95   -2.64   -3.35   -3.96   -4.38   -4.49   -4.21   -3.57   -2.64   -1.50   -0.08    1.81    4.53    8.36
+   305.0    0.00   -0.08   -0.34   -0.76   -1.30   -1.94   -2.64   -3.34   -3.96   -4.38   -4.49   -4.22   -3.57   -2.64   -1.48   -0.07    1.81    4.52    8.31
+   310.0    0.00   -0.08   -0.33   -0.75   -1.29   -1.93   -2.63   -3.33   -3.95   -4.37   -4.48   -4.21   -3.57   -2.63   -1.47   -0.05    1.83    4.51    8.26
+   315.0    0.00   -0.07   -0.33   -0.74   -1.28   -1.92   -2.62   -3.32   -3.94   -4.36   -4.47   -4.20   -3.55   -2.61   -1.44   -0.02    1.85    4.51    8.21
+   320.0    0.00   -0.07   -0.32   -0.73   -1.28   -1.92   -2.62   -3.32   -3.93   -4.35   -4.45   -4.18   -3.53   -2.59   -1.42    0.01    1.89    4.53    8.17
+   325.0    0.00   -0.07   -0.32   -0.73   -1.27   -1.91   -2.61   -3.31   -3.92   -4.33   -4.43   -4.15   -3.51   -2.57   -1.39    0.05    1.93    4.55    8.13
+   330.0    0.00   -0.07   -0.31   -0.72   -1.26   -1.90   -2.60   -3.30   -3.91   -4.31   -4.40   -4.13   -3.49   -2.55   -1.37    0.09    1.98    4.59    8.11
+   335.0    0.00   -0.07   -0.31   -0.71   -1.25   -1.89   -2.60   -3.29   -3.90   -4.29   -4.38   -4.11   -3.47   -2.53   -1.34    0.13    2.03    4.63    8.10
+   340.0    0.00   -0.06   -0.30   -0.71   -1.24   -1.89   -2.59   -3.28   -3.88   -4.27   -4.36   -4.09   -3.46   -2.52   -1.32    0.16    2.08    4.67    8.09
+   345.0    0.00   -0.06   -0.30   -0.70   -1.23   -1.88   -2.58   -3.27   -3.87   -4.26   -4.35   -4.08   -3.45   -2.51   -1.30    0.20    2.13    4.72    8.10
+   350.0    0.00   -0.06   -0.30   -0.69   -1.23   -1.87   -2.57   -3.26   -3.86   -4.25   -4.34   -4.07   -3.45   -2.51   -1.29    0.23    2.18    4.76    8.11
+   355.0    0.00   -0.06   -0.29   -0.69   -1.22   -1.86   -2.56   -3.25   -3.84   -4.24   -4.33   -4.08   -3.46   -2.51   -1.29    0.25    2.21    4.79    8.12
+   360.0    0.00   -0.06   -0.29   -0.68   -1.21   -1.85   -2.54   -3.24   -3.83   -4.23   -4.34   -4.09   -3.47   -2.53   -1.29    0.26    2.24    4.81    8.14
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TPSCR3_GGD      NONE                                        TYPE / SERIAL NO    
+FIELD               NGS/TUM                  3    20-APR-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.70     -0.46     61.74                              NORTH / EAST / UP   
+   NOAZI    0.00    0.56    0.38   -0.37   -1.58   -2.89   -4.25   -5.39   -6.17   -6.50   -6.24   -5.46   -4.27   -2.74   -0.70    1.77    4.69
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.60      0.18     95.56                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.63   -1.02   -1.30   -1.62   -1.92   -2.33   -2.71   -3.05   -3.43   -3.55   -3.33   -2.88   -2.05   -1.03    0.49    2.56
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TPSCR3_GGD      CONE                                        TYPE / SERIAL NO    
+FIELD               NGS/TUM                  3    20-APR-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.80     -0.36     61.54                              NORTH / EAST / UP   
+   NOAZI    0.00    0.96    0.98    0.43   -0.68   -2.09   -3.45   -4.69   -5.47   -5.90   -5.74   -5.06   -3.87   -2.14    0.10    2.97    6.39
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.30     -0.02     94.76                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.93   -1.52   -1.80   -1.92   -2.12   -2.33   -2.51   -2.85   -3.13   -3.35   -3.23   -2.88   -2.25   -1.23    0.19    2.36
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TPSCR3_GGD      OLGA                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               1    15-MAY-08 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+     -0.81     -0.19     54.32                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.14   -0.60   -1.43   -2.63   -4.10   -5.62   -6.90   -7.69   -7.85   -7.41   -6.52   -5.28   -3.69   -1.57    1.36    5.27    9.97   14.80
+     0.0    0.00   -0.18   -0.63   -1.39   -2.53   -4.00   -5.59   -6.96   -7.78   -7.88   -7.30   -6.28   -5.05   -3.58   -1.48    1.74    6.29   11.49   15.52
+     5.0    0.00   -0.18   -0.62   -1.37   -2.50   -3.95   -5.53   -6.89   -7.70   -7.77   -7.17   -6.13   -4.90   -3.47   -1.50    1.53    5.86   10.93   15.04
+    10.0    0.00   -0.18   -0.61   -1.36   -2.47   -3.91   -5.47   -6.82   -7.62   -7.67   -7.03   -5.95   -4.70   -3.31   -1.46    1.37    5.46   10.36   14.48
+    15.0    0.00   -0.18   -0.61   -1.35   -2.45   -3.88   -5.43   -6.77   -7.55   -7.57   -6.90   -5.78   -4.51   -3.14   -1.39    1.27    5.14    9.85   13.94
+    20.0    0.00   -0.18   -0.61   -1.34   -2.44   -3.86   -5.40   -6.74   -7.51   -7.51   -6.80   -5.65   -4.35   -2.99   -1.31    1.21    4.92    9.46   13.49
+    25.0    0.00   -0.18   -0.61   -1.34   -2.43   -3.85   -5.39   -6.72   -7.49   -7.49   -6.77   -5.60   -4.29   -2.92   -1.26    1.20    4.81    9.25   13.22
+    30.0    0.00   -0.18   -0.60   -1.34   -2.43   -3.85   -5.39   -6.73   -7.51   -7.53   -6.82   -5.66   -4.34   -2.96   -1.27    1.21    4.81    9.23   13.15
+    35.0    0.00   -0.17   -0.60   -1.34   -2.44   -3.86   -5.41   -6.76   -7.57   -7.62   -6.95   -5.82   -4.51   -3.11   -1.35    1.21    4.91    9.39   13.30
+    40.0    0.00   -0.17   -0.61   -1.34   -2.44   -3.87   -5.43   -6.81   -7.65   -7.76   -7.17   -6.09   -4.81   -3.37   -1.52    1.20    5.07    9.68   13.63
+    45.0    0.00   -0.17   -0.61   -1.35   -2.46   -3.89   -5.47   -6.87   -7.76   -7.94   -7.43   -6.44   -5.19   -3.71   -1.75    1.16    5.24   10.05   14.07
+    50.0    0.00   -0.17   -0.61   -1.36   -2.47   -3.91   -5.50   -6.93   -7.88   -8.13   -7.72   -6.81   -5.61   -4.10   -2.01    1.08    5.39   10.40   14.54
+    55.0    0.00   -0.17   -0.61   -1.37   -2.49   -3.93   -5.54   -6.99   -7.98   -8.32   -7.99   -7.17   -6.00   -4.47   -2.29    0.97    5.48   10.67   14.94
+    60.0    0.00   -0.17   -0.61   -1.37   -2.50   -3.95   -5.56   -7.04   -8.07   -8.47   -8.21   -7.45   -6.32   -4.78   -2.53    0.84    5.47   10.79   15.19
+    65.0    0.00   -0.16   -0.61   -1.38   -2.51   -3.97   -5.58   -7.07   -8.12   -8.56   -8.35   -7.64   -6.53   -4.98   -2.70    0.69    5.35   10.71   15.23
+    70.0    0.00   -0.16   -0.61   -1.38   -2.52   -3.98   -5.59   -7.07   -8.13   -8.58   -8.40   -7.69   -6.59   -5.04   -2.79    0.55    5.13   10.44   15.04
+    75.0    0.00   -0.16   -0.61   -1.39   -2.52   -3.98   -5.57   -7.04   -8.09   -8.53   -8.33   -7.62   -6.50   -4.97   -2.78    0.43    4.83   10.00   14.64
+    80.0    0.00   -0.16   -0.61   -1.39   -2.53   -3.97   -5.55   -6.99   -8.01   -8.42   -8.18   -7.43   -6.29   -4.78   -2.68    0.33    4.48    9.45   14.09
+    85.0    0.00   -0.15   -0.61   -1.39   -2.52   -3.95   -5.51   -6.92   -7.90   -8.25   -7.97   -7.16   -5.99   -4.50   -2.52    0.28    4.14    8.86   13.49
+    90.0    0.00   -0.15   -0.60   -1.39   -2.52   -3.94   -5.46   -6.83   -7.76   -8.06   -7.72   -6.87   -5.67   -4.19   -2.31    0.27    3.84    8.31   12.93
+    95.0    0.00   -0.14   -0.60   -1.39   -2.51   -3.91   -5.41   -6.73   -7.61   -7.87   -7.49   -6.59   -5.37   -3.91   -2.11    0.31    3.64    7.89   12.52
+   100.0    0.00   -0.14   -0.59   -1.38   -2.51   -3.89   -5.36   -6.64   -7.48   -7.70   -7.29   -6.38   -5.14   -3.68   -1.92    0.39    3.55    7.67   12.34
+   105.0    0.00   -0.13   -0.59   -1.38   -2.50   -3.87   -5.31   -6.56   -7.36   -7.57   -7.17   -6.26   -5.02   -3.55   -1.79    0.50    3.60    7.67   12.43
+   110.0    0.00   -0.13   -0.58   -1.37   -2.50   -3.86   -5.27   -6.50   -7.29   -7.50   -7.12   -6.24   -5.02   -3.53   -1.71    0.63    3.78    7.90   12.81
+   115.0    0.00   -0.12   -0.57   -1.37   -2.49   -3.85   -5.25   -6.45   -7.24   -7.48   -7.14   -6.32   -5.12   -3.60   -1.69    0.79    4.07    8.32   13.44
+   120.0    0.00   -0.12   -0.56   -1.36   -2.49   -3.84   -5.24   -6.44   -7.23   -7.50   -7.23   -6.47   -5.30   -3.73   -1.70    0.96    4.44    8.88   14.26
+   125.0    0.00   -0.11   -0.55   -1.35   -2.48   -3.84   -5.24   -6.44   -7.25   -7.55   -7.34   -6.64   -5.50   -3.88   -1.72    1.13    4.83    9.51   15.17
+   130.0    0.00   -0.11   -0.54   -1.34   -2.48   -3.85   -5.24   -6.45   -7.27   -7.62   -7.46   -6.81   -5.67   -4.01   -1.72    1.32    5.22   10.11   16.08
+   135.0    0.00   -0.10   -0.53   -1.33   -2.47   -3.85   -5.25   -6.46   -7.30   -7.66   -7.53   -6.91   -5.78   -4.06   -1.67    1.50    5.55   10.62   16.90
+   140.0    0.00   -0.10   -0.52   -1.32   -2.46   -3.84   -5.25   -6.47   -7.31   -7.68   -7.55   -6.93   -5.78   -4.02   -1.57    1.67    5.79   10.98   17.55
+   145.0    0.00   -0.09   -0.51   -1.30   -2.45   -3.83   -5.25   -6.46   -7.29   -7.64   -7.50   -6.85   -5.67   -3.88   -1.40    1.83    5.93   11.16   17.98
+   150.0    0.00   -0.08   -0.50   -1.28   -2.43   -3.81   -5.22   -6.42   -7.23   -7.56   -7.38   -6.68   -5.45   -3.64   -1.19    1.97    5.96   11.16   18.20
+   155.0    0.00   -0.08   -0.48   -1.26   -2.40   -3.78   -5.18   -6.36   -7.14   -7.43   -7.20   -6.45   -5.17   -3.35   -0.95    2.07    5.90   10.99   18.20
+   160.0    0.00   -0.08   -0.47   -1.24   -2.37   -3.74   -5.12   -6.28   -7.03   -7.27   -6.99   -6.18   -4.86   -3.05   -0.73    2.13    5.75   10.70   18.04
+   165.0    0.00   -0.07   -0.46   -1.22   -2.34   -3.69   -5.04   -6.18   -6.90   -7.10   -6.78   -5.93   -4.59   -2.79   -0.56    2.14    5.55   10.34   17.76
+   170.0    0.00   -0.07   -0.45   -1.20   -2.31   -3.63   -4.96   -6.07   -6.77   -6.95   -6.61   -5.74   -4.40   -2.62   -0.46    2.10    5.32    9.97   17.42
+   175.0    0.00   -0.07   -0.45   -1.19   -2.28   -3.58   -4.89   -5.97   -6.65   -6.84   -6.50   -5.65   -4.32   -2.58   -0.47    1.99    5.09    9.62   17.06
+   180.0    0.00   -0.07   -0.45   -1.18   -2.26   -3.54   -4.83   -5.89   -6.58   -6.78   -6.48   -5.67   -4.39   -2.67   -0.59    1.84    4.88    9.32   16.70
+   185.0    0.00   -0.07   -0.45   -1.18   -2.25   -3.52   -4.79   -5.85   -6.55   -6.79   -6.55   -5.81   -4.58   -2.89   -0.80    1.65    4.69    9.09   16.34
+   190.0    0.00   -0.07   -0.45   -1.19   -2.25   -3.52   -4.78   -5.85   -6.57   -6.87   -6.70   -6.04   -4.87   -3.20   -1.09    1.43    4.53    8.91   15.98
+   195.0    0.00   -0.08   -0.46   -1.21   -2.28   -3.55   -4.82   -5.90   -6.66   -7.01   -6.91   -6.33   -5.22   -3.56   -1.40    1.22    4.41    8.76   15.59
+   200.0    0.00   -0.08   -0.48   -1.23   -2.32   -3.61   -4.90   -6.01   -6.79   -7.19   -7.15   -6.64   -5.57   -3.91   -1.69    1.02    4.30    8.63   15.14
+   205.0    0.00   -0.08   -0.49   -1.27   -2.39   -3.71   -5.03   -6.16   -6.98   -7.40   -7.39   -6.90   -5.86   -4.19   -1.93    0.87    4.22    8.48   14.62
+   210.0    0.00   -0.09   -0.51   -1.32   -2.47   -3.83   -5.20   -6.36   -7.19   -7.61   -7.59   -7.09   -6.04   -4.36   -2.07    0.77    4.14    8.31   14.04
+   215.0    0.00   -0.10   -0.54   -1.37   -2.56   -3.98   -5.39   -6.58   -7.41   -7.80   -7.73   -7.18   -6.09   -4.40   -2.11    0.73    4.08    8.11   13.41
+   220.0    0.00   -0.11   -0.56   -1.43   -2.67   -4.14   -5.60   -6.82   -7.63   -7.95   -7.80   -7.16   -6.01   -4.30   -2.04    0.76    4.03    7.90   12.80
+   225.0    0.00   -0.11   -0.59   -1.49   -2.78   -4.30   -5.81   -7.05   -7.82   -8.07   -7.79   -7.03   -5.81   -4.09   -1.88    0.83    4.00    7.70   12.25
+   230.0    0.00   -0.12   -0.62   -1.55   -2.88   -4.46   -6.01   -7.26   -7.99   -8.14   -7.72   -6.84   -5.53   -3.81   -1.67    0.93    3.99    7.57   11.83
+   235.0    0.00   -0.13   -0.64   -1.60   -2.98   -4.60   -6.19   -7.44   -8.12   -8.17   -7.62   -6.60   -5.22   -3.52   -1.45    1.05    4.02    7.52   11.61
+   240.0    0.00   -0.14   -0.67   -1.65   -3.06   -4.72   -6.33   -7.58   -8.22   -8.16   -7.50   -6.38   -4.95   -3.26   -1.27    1.15    4.09    7.60   11.62
+   245.0    0.00   -0.15   -0.69   -1.69   -3.13   -4.81   -6.44   -7.67   -8.27   -8.15   -7.40   -6.21   -4.75   -3.09   -1.15    1.22    4.20    7.81   11.89
+   250.0    0.00   -0.16   -0.71   -1.73   -3.17   -4.87   -6.50   -7.72   -8.29   -8.12   -7.33   -6.11   -4.66   -3.04   -1.14    1.26    4.35    8.15   12.38
+   255.0    0.00   -0.16   -0.73   -1.75   -3.20   -4.89   -6.52   -7.73   -8.28   -8.10   -7.31   -6.11   -4.69   -3.12   -1.23    1.25    4.53    8.61   13.06
+   260.0    0.00   -0.17   -0.74   -1.76   -3.21   -4.89   -6.50   -7.70   -8.26   -8.10   -7.33   -6.19   -4.84   -3.31   -1.40    1.20    4.73    9.13   13.84
+   265.0    0.00   -0.18   -0.75   -1.77   -3.20   -4.86   -6.45   -7.66   -8.23   -8.10   -7.40   -6.33   -5.06   -3.57   -1.62    1.13    4.94    9.68   14.63
+   270.0    0.00   -0.18   -0.75   -1.76   -3.17   -4.81   -6.39   -7.59   -8.19   -8.12   -7.49   -6.52   -5.32   -3.86   -1.87    1.05    5.14   10.20   15.33
+   275.0    0.00   -0.19   -0.76   -1.75   -3.14   -4.75   -6.32   -7.53   -8.15   -8.14   -7.59   -6.69   -5.57   -4.13   -2.08    1.01    5.34   10.64   15.87
+   280.0    0.00   -0.19   -0.76   -1.74   -3.10   -4.69   -6.24   -7.46   -8.12   -8.16   -7.67   -6.83   -5.75   -4.32   -2.21    1.00    5.53   11.00   16.19
+   285.0    0.00   -0.19   -0.75   -1.72   -3.06   -4.63   -6.18   -7.41   -8.09   -8.16   -7.71   -6.90   -5.84   -4.41   -2.25    1.07    5.71   11.24   16.28
+   290.0    0.00   -0.19   -0.75   -1.70   -3.02   -4.58   -6.12   -7.37   -8.07   -8.16   -7.71   -6.90   -5.82   -4.37   -2.17    1.20    5.90   11.38   16.15
+   295.0    0.00   -0.20   -0.74   -1.68   -2.98   -4.53   -6.08   -7.34   -8.05   -8.14   -7.66   -6.82   -5.70   -4.21   -1.98    1.41    6.09   11.45   15.86
+   300.0    0.00   -0.20   -0.74   -1.65   -2.95   -4.49   -6.05   -7.32   -8.04   -8.10   -7.59   -6.67   -5.50   -3.96   -1.71    1.67    6.30   11.48   15.48
+   305.0    0.00   -0.20   -0.73   -1.63   -2.91   -4.46   -6.03   -7.32   -8.04   -8.07   -7.49   -6.50   -5.25   -3.66   -1.40    1.97    6.52   11.52   15.10
+   310.0    0.00   -0.20   -0.72   -1.61   -2.88   -4.43   -6.02   -7.32   -8.04   -8.04   -7.39   -6.33   -5.01   -3.37   -1.08    2.27    6.76   11.59   14.80
+   315.0    0.00   -0.20   -0.71   -1.59   -2.85   -4.41   -6.01   -7.33   -8.04   -8.01   -7.32   -6.19   -4.80   -3.13   -0.82    2.55    7.01   11.73   14.65
+   320.0    0.00   -0.20   -0.70   -1.57   -2.82   -4.38   -6.00   -7.33   -8.05   -8.00   -7.27   -6.10   -4.68   -2.97   -0.63    2.76    7.24   11.92   14.66
+   325.0    0.00   -0.20   -0.69   -1.54   -2.79   -4.35   -5.97   -7.32   -8.05   -8.01   -7.27   -6.08   -4.64   -2.91   -0.54    2.89    7.43   12.14   14.83
+   330.0    0.00   -0.19   -0.68   -1.52   -2.76   -4.31   -5.94   -7.30   -8.05   -8.02   -7.29   -6.11   -4.68   -2.96   -0.56    2.93    7.56   12.37   15.12
+   335.0    0.00   -0.19   -0.67   -1.50   -2.72   -4.27   -5.90   -7.27   -8.04   -8.04   -7.34   -6.19   -4.79   -3.08   -0.68    2.87    7.60   12.54   15.46
+   340.0    0.00   -0.19   -0.66   -1.47   -2.68   -4.22   -5.85   -7.23   -8.02   -8.05   -7.39   -6.29   -4.93   -3.25   -0.85    2.72    7.53   12.62   15.77
+   345.0    0.00   -0.19   -0.65   -1.45   -2.64   -4.16   -5.79   -7.18   -7.98   -8.04   -7.43   -6.37   -5.05   -3.42   -1.06    2.51    7.35   12.57   15.97
+   350.0    0.00   -0.19   -0.64   -1.43   -2.60   -4.11   -5.72   -7.11   -7.93   -8.02   -7.43   -6.40   -5.13   -3.54   -1.25    2.25    7.07   12.35   16.01
+   355.0    0.00   -0.19   -0.63   -1.41   -2.56   -4.05   -5.66   -7.04   -7.86   -7.96   -7.38   -6.38   -5.13   -3.60   -1.40    1.99    6.70   11.99   15.86
+   360.0    0.00   -0.18   -0.63   -1.39   -2.53   -4.00   -5.59   -6.96   -7.78   -7.88   -7.30   -6.28   -5.05   -3.58   -1.48    1.74    6.29   11.49   15.52
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.58     -0.09     94.54                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.09   -0.33   -0.68   -1.06   -1.48   -1.96   -2.51   -3.09   -3.59   -3.82   -3.64   -2.98   -1.94   -0.68    0.66    2.14    4.05    6.77
+     0.0    0.00   -0.10   -0.33   -0.66   -1.06   -1.53   -2.07   -2.64   -3.17   -3.57   -3.75   -3.62   -3.15   -2.29   -1.05    0.56    2.38    4.06    5.18
+     5.0    0.00   -0.10   -0.34   -0.67   -1.07   -1.55   -2.08   -2.65   -3.17   -3.54   -3.69   -3.55   -3.05   -2.16   -0.85    0.87    2.80    4.58    5.67
+    10.0    0.00   -0.10   -0.34   -0.67   -1.08   -1.55   -2.09   -2.65   -3.17   -3.53   -3.66   -3.48   -2.94   -2.00   -0.61    1.20    3.22    5.00    5.93
+    15.0    0.00   -0.11   -0.34   -0.67   -1.07   -1.54   -2.08   -2.65   -3.17   -3.53   -3.64   -3.43   -2.84   -1.84   -0.38    1.50    3.54    5.26    5.93
+    20.0    0.00   -0.11   -0.34   -0.66   -1.06   -1.52   -2.06   -2.64   -3.16   -3.53   -3.63   -3.39   -2.75   -1.69   -0.19    1.70    3.72    5.32    5.70
+    25.0    0.00   -0.11   -0.34   -0.66   -1.03   -1.49   -2.02   -2.61   -3.15   -3.53   -3.62   -3.35   -2.68   -1.58   -0.08    1.77    3.70    5.17    5.31
+    30.0    0.00   -0.11   -0.34   -0.65   -1.01   -1.44   -1.97   -2.57   -3.13   -3.52   -3.62   -3.33   -2.63   -1.53   -0.07    1.68    3.49    4.84    4.88
+    35.0    0.00   -0.11   -0.34   -0.64   -0.98   -1.39   -1.91   -2.51   -3.09   -3.51   -3.61   -3.30   -2.60   -1.54   -0.18    1.42    3.10    4.40    4.52
+    40.0    0.00   -0.12   -0.34   -0.63   -0.95   -1.34   -1.85   -2.45   -3.05   -3.48   -3.58   -3.28   -2.59   -1.60   -0.38    1.04    2.59    3.94    4.33
+    45.0    0.00   -0.12   -0.35   -0.62   -0.92   -1.30   -1.78   -2.38   -2.99   -3.43   -3.54   -3.25   -2.60   -1.71   -0.65    0.58    2.04    3.54    4.39
+    50.0    0.00   -0.12   -0.35   -0.62   -0.90   -1.26   -1.73   -2.32   -2.92   -3.37   -3.50   -3.22   -2.63   -1.84   -0.95    0.12    1.54    3.27    4.73
+    55.0    0.00   -0.12   -0.35   -0.62   -0.90   -1.23   -1.68   -2.25   -2.86   -3.31   -3.44   -3.20   -2.66   -1.98   -1.23   -0.27    1.17    3.20    5.29
+    60.0    0.00   -0.12   -0.36   -0.62   -0.90   -1.22   -1.65   -2.20   -2.80   -3.25   -3.39   -3.17   -2.69   -2.09   -1.44   -0.53    0.99    3.33    6.01
+    65.0    0.00   -0.12   -0.36   -0.64   -0.91   -1.22   -1.63   -2.17   -2.74   -3.19   -3.35   -3.16   -2.72   -2.17   -1.54   -0.62    1.02    3.64    6.74
+    70.0    0.00   -0.13   -0.37   -0.66   -0.93   -1.24   -1.64   -2.15   -2.70   -3.15   -3.32   -3.16   -2.75   -2.20   -1.54   -0.52    1.26    4.07    7.36
+    75.0    0.00   -0.13   -0.38   -0.68   -0.97   -1.28   -1.66   -2.14   -2.68   -3.12   -3.31   -3.18   -2.77   -2.18   -1.42   -0.26    1.67    4.54    7.73
+    80.0    0.00   -0.13   -0.39   -0.70   -1.01   -1.32   -1.69   -2.15   -2.67   -3.11   -3.32   -3.22   -2.80   -2.13   -1.21    0.13    2.16    4.95    7.75
+    85.0    0.00   -0.13   -0.40   -0.73   -1.06   -1.38   -1.74   -2.18   -2.68   -3.12   -3.36   -3.28   -2.83   -2.06   -0.96    0.56    2.65    5.22    7.41
+    90.0    0.00   -0.13   -0.41   -0.76   -1.11   -1.44   -1.79   -2.21   -2.70   -3.15   -3.41   -3.35   -2.88   -1.99   -0.71    0.97    3.05    5.28    6.71
+    95.0    0.00   -0.13   -0.42   -0.78   -1.15   -1.50   -1.85   -2.25   -2.72   -3.19   -3.48   -3.44   -2.94   -1.95   -0.51    1.28    3.29    5.10    5.77
+   100.0    0.00   -0.13   -0.42   -0.80   -1.19   -1.55   -1.89   -2.29   -2.76   -3.23   -3.56   -3.54   -3.02   -1.95   -0.40    1.44    3.31    4.71    4.72
+   105.0    0.00   -0.13   -0.43   -0.82   -1.22   -1.59   -1.94   -2.32   -2.79   -3.28   -3.63   -3.64   -3.12   -2.00   -0.40    1.42    3.10    4.14    3.73
+   110.0    0.00   -0.13   -0.43   -0.83   -1.24   -1.62   -1.96   -2.35   -2.82   -3.32   -3.71   -3.74   -3.22   -2.10   -0.52    1.21    2.70    3.48    2.97
+   115.0    0.00   -0.12   -0.43   -0.83   -1.25   -1.63   -1.98   -2.36   -2.84   -3.36   -3.77   -3.83   -3.33   -2.24   -0.72    0.87    2.15    2.82    2.59
+   120.0    0.00   -0.12   -0.42   -0.83   -1.25   -1.63   -1.98   -2.37   -2.85   -3.39   -3.82   -3.90   -3.43   -2.39   -0.98    0.43    1.55    2.26    2.68
+   125.0    0.00   -0.12   -0.41   -0.82   -1.24   -1.62   -1.97   -2.37   -2.87   -3.42   -3.86   -3.95   -3.50   -2.52   -1.25   -0.02    0.97    1.87    3.24
+   130.0    0.00   -0.11   -0.40   -0.80   -1.22   -1.60   -1.95   -2.36   -2.88   -3.44   -3.89   -3.98   -3.54   -2.62   -1.47   -0.41    0.51    1.71    4.21
+   135.0    0.00   -0.11   -0.39   -0.78   -1.19   -1.57   -1.93   -2.35   -2.89   -3.46   -3.91   -3.98   -3.54   -2.65   -1.60   -0.67    0.22    1.79    5.49
+   140.0    0.00   -0.10   -0.38   -0.76   -1.16   -1.53   -1.91   -2.35   -2.90   -3.48   -3.91   -3.95   -3.49   -2.61   -1.62   -0.77    0.13    2.07    6.88
+   145.0    0.00   -0.10   -0.37   -0.74   -1.13   -1.50   -1.89   -2.34   -2.91   -3.50   -3.91   -3.91   -3.39   -2.49   -1.51   -0.70    0.24    2.49    8.21
+   150.0    0.00   -0.10   -0.36   -0.72   -1.11   -1.48   -1.87   -2.35   -2.93   -3.51   -3.90   -3.84   -3.26   -2.29   -1.29   -0.47    0.51    2.97    9.31
+   155.0    0.00   -0.09   -0.35   -0.70   -1.09   -1.47   -1.87   -2.36   -2.94   -3.52   -3.87   -3.76   -3.10   -2.05   -0.98   -0.12    0.88    3.41   10.04
+   160.0    0.00   -0.09   -0.33   -0.69   -1.07   -1.46   -1.88   -2.38   -2.96   -3.52   -3.84   -3.67   -2.93   -1.80   -0.64    0.27    1.26    3.75   10.33
+   165.0    0.00   -0.08   -0.33   -0.68   -1.07   -1.47   -1.89   -2.40   -2.98   -3.52   -3.79   -3.57   -2.76   -1.55   -0.32    0.63    1.60    3.93   10.19
+   170.0    0.00   -0.08   -0.32   -0.67   -1.07   -1.48   -1.92   -2.43   -2.99   -3.50   -3.74   -3.47   -2.62   -1.35   -0.07    0.92    1.83    3.93    9.69
+   175.0    0.00   -0.07   -0.31   -0.67   -1.08   -1.50   -1.95   -2.45   -3.00   -3.47   -3.68   -3.38   -2.51   -1.23    0.09    1.08    1.92    3.76    8.97
+   180.0    0.00   -0.07   -0.31   -0.67   -1.09   -1.53   -1.99   -2.48   -2.99   -3.44   -3.61   -3.31   -2.45   -1.18    0.12    1.10    1.87    3.49    8.18
+   185.0    0.00   -0.07   -0.30   -0.67   -1.11   -1.56   -2.02   -2.50   -2.99   -3.40   -3.56   -3.26   -2.43   -1.21    0.04    0.98    1.70    3.17    7.51
+   190.0    0.00   -0.07   -0.30   -0.68   -1.12   -1.58   -2.04   -2.51   -2.98   -3.36   -3.51   -3.24   -2.47   -1.32   -0.13    0.77    1.47    2.90    7.08
+   195.0    0.00   -0.06   -0.30   -0.68   -1.13   -1.60   -2.06   -2.51   -2.96   -3.34   -3.49   -3.26   -2.54   -1.47   -0.35    0.52    1.24    2.74    7.01
+   200.0    0.00   -0.06   -0.30   -0.69   -1.14   -1.61   -2.06   -2.51   -2.95   -3.33   -3.50   -3.30   -2.65   -1.64   -0.58    0.28    1.08    2.76    7.31
+   205.0    0.00   -0.06   -0.30   -0.69   -1.15   -1.61   -2.06   -2.50   -2.95   -3.35   -3.55   -3.38   -2.77   -1.80   -0.76    0.12    1.03    2.97    7.96
+   210.0    0.00   -0.06   -0.30   -0.69   -1.14   -1.60   -2.04   -2.49   -2.96   -3.39   -3.63   -3.49   -2.89   -1.92   -0.86    0.09    1.14    3.37    8.85
+   215.0    0.00   -0.06   -0.30   -0.69   -1.14   -1.58   -2.02   -2.48   -2.98   -3.46   -3.74   -3.62   -3.00   -1.98   -0.85    0.19    1.39    3.91    9.87
+   220.0    0.00   -0.06   -0.30   -0.69   -1.12   -1.56   -1.99   -2.47   -3.02   -3.55   -3.87   -3.76   -3.09   -1.98   -0.73    0.43    1.77    4.51   10.84
+   225.0    0.00   -0.06   -0.30   -0.68   -1.11   -1.53   -1.97   -2.47   -3.07   -3.66   -4.02   -3.90   -3.15   -1.92   -0.53    0.76    2.23    5.10   11.65
+   230.0    0.00   -0.06   -0.30   -0.67   -1.09   -1.50   -1.94   -2.48   -3.12   -3.77   -4.17   -4.02   -3.18   -1.81   -0.27    1.14    2.69    5.61   12.17
+   235.0    0.00   -0.06   -0.30   -0.67   -1.07   -1.48   -1.93   -2.49   -3.19   -3.89   -4.30   -4.11   -3.18   -1.67    0.00    1.51    3.09    5.96   12.35
+   240.0    0.00   -0.06   -0.30   -0.66   -1.06   -1.46   -1.92   -2.51   -3.25   -3.98   -4.40   -4.17   -3.16   -1.54    0.24    1.81    3.38    6.13   12.18
+   245.0    0.00   -0.06   -0.30   -0.66   -1.05   -1.45   -1.92   -2.54   -3.31   -4.06   -4.46   -4.19   -3.11   -1.43    0.40    1.98    3.52    6.11   11.73
+   250.0    0.00   -0.06   -0.30   -0.65   -1.04   -1.45   -1.94   -2.58   -3.36   -4.10   -4.47   -4.16   -3.05   -1.36    0.45    2.01    3.50    5.93   11.07
+   255.0    0.00   -0.06   -0.30   -0.65   -1.04   -1.46   -1.97   -2.62   -3.40   -4.11   -4.44   -4.10   -2.99   -1.35    0.39    1.89    3.34    5.65   10.32
+   260.0    0.00   -0.06   -0.30   -0.65   -1.04   -1.48   -2.00   -2.67   -3.43   -4.09   -4.37   -4.01   -2.94   -1.40    0.22    1.65    3.08    5.33    9.58
+   265.0    0.00   -0.06   -0.30   -0.64   -1.05   -1.50   -2.04   -2.71   -3.44   -4.05   -4.27   -3.89   -2.89   -1.49   -0.02    1.33    2.78    5.04    8.93
+   270.0    0.00   -0.06   -0.29   -0.64   -1.05   -1.52   -2.08   -2.75   -3.44   -3.99   -4.16   -3.77   -2.85   -1.61   -0.29    0.99    2.51    4.83    8.42
+   275.0    0.00   -0.06   -0.29   -0.64   -1.05   -1.54   -2.11   -2.78   -3.44   -3.93   -4.04   -3.66   -2.83   -1.74   -0.57    0.68    2.30    4.73    8.05
+   280.0    0.00   -0.06   -0.29   -0.64   -1.06   -1.55   -2.14   -2.80   -3.43   -3.87   -3.94   -3.57   -2.82   -1.86   -0.79    0.46    2.20    4.73    7.79
+   285.0    0.00   -0.06   -0.29   -0.63   -1.05   -1.56   -2.15   -2.81   -3.42   -3.82   -3.87   -3.52   -2.83   -1.96   -0.95    0.34    2.22    4.82    7.57
+   290.0    0.00   -0.07   -0.29   -0.63   -1.05   -1.55   -2.15   -2.81   -3.41   -3.80   -3.83   -3.49   -2.85   -2.02   -1.02    0.34    2.33    4.94    7.31
+   295.0    0.00   -0.07   -0.29   -0.62   -1.03   -1.54   -2.14   -2.80   -3.40   -3.79   -3.83   -3.51   -2.88   -2.06   -1.01    0.44    2.51    5.03    6.94
+   300.0    0.00   -0.07   -0.29   -0.61   -1.02   -1.52   -2.12   -2.79   -3.40   -3.80   -3.86   -3.55   -2.93   -2.07   -0.94    0.60    2.69    5.05    6.44
+   305.0    0.00   -0.07   -0.29   -0.61   -1.00   -1.49   -2.09   -2.76   -3.39   -3.82   -3.92   -3.62   -2.98   -2.06   -0.84    0.78    2.84    4.94    5.78
+   310.0    0.00   -0.07   -0.29   -0.60   -0.99   -1.47   -2.06   -2.73   -3.39   -3.85   -3.98   -3.70   -3.04   -2.05   -0.74    0.92    2.90    4.70    5.01
+   315.0    0.00   -0.08   -0.29   -0.60   -0.98   -1.44   -2.02   -2.70   -3.37   -3.88   -4.05   -3.79   -3.11   -2.06   -0.68    1.00    2.85    4.33    4.20
+   320.0    0.00   -0.08   -0.29   -0.60   -0.97   -1.42   -1.99   -2.67   -3.36   -3.89   -4.10   -3.86   -3.17   -2.09   -0.67    0.98    2.69    3.89    3.44
+   325.0    0.00   -0.08   -0.30   -0.60   -0.96   -1.41   -1.97   -2.64   -3.34   -3.89   -4.12   -3.92   -3.24   -2.14   -0.72    0.88    2.44    3.43    2.85
+   330.0    0.00   -0.08   -0.30   -0.60   -0.97   -1.41   -1.96   -2.62   -3.31   -3.87   -4.12   -3.94   -3.29   -2.21   -0.83    0.71    2.16    3.03    2.49
+   335.0    0.00   -0.08   -0.31   -0.61   -0.98   -1.41   -1.96   -2.61   -3.28   -3.83   -4.10   -3.94   -3.32   -2.29   -0.96    0.52    1.90    2.76    2.42
+   340.0    0.00   -0.09   -0.31   -0.62   -0.99   -1.43   -1.97   -2.60   -3.25   -3.78   -4.04   -3.91   -3.34   -2.37   -1.09    0.34    1.72    2.67    2.65
+   345.0    0.00   -0.09   -0.32   -0.63   -1.01   -1.46   -1.99   -2.60   -3.22   -3.73   -3.97   -3.85   -3.33   -2.42   -1.19    0.23    1.66    2.78    3.14
+   350.0    0.00   -0.09   -0.32   -0.64   -1.03   -1.48   -2.02   -2.61   -3.20   -3.67   -3.89   -3.78   -3.29   -2.42   -1.22    0.23    1.76    3.08    3.80
+   355.0    0.00   -0.10   -0.33   -0.65   -1.05   -1.51   -2.04   -2.62   -3.18   -3.62   -3.82   -3.70   -3.23   -2.38   -1.18    0.34    2.01    3.53    4.52
+   360.0    0.00   -0.10   -0.33   -0.66   -1.06   -1.53   -2.07   -2.64   -3.17   -3.57   -3.75   -3.62   -3.15   -2.29   -1.05    0.56    2.38    4.06    5.18
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TPSCR3_GGD      PFAN                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               1    15-MAY-08 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+     -0.51     -0.47     61.69                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.22   -0.82   -1.71   -2.75   -3.85   -4.93   -5.95   -6.80   -7.33   -7.32   -6.60   -5.09   -2.89   -0.23    2.68    5.69    8.86   12.32
+     0.0    0.00   -0.18   -0.79   -1.73   -2.83   -3.97   -5.05   -5.99   -6.71   -7.12   -7.06   -6.42   -5.13   -3.24   -0.87    1.87    4.92    8.30   11.88
+     5.0    0.00   -0.19   -0.82   -1.76   -2.86   -3.99   -5.05   -5.97   -6.70   -7.14   -7.13   -6.52   -5.24   -3.33   -0.93    1.79    4.78    8.10   11.87
+    10.0    0.00   -0.20   -0.84   -1.79   -2.89   -4.01   -5.04   -5.95   -6.69   -7.16   -7.20   -6.64   -5.36   -3.42   -0.97    1.78    4.71    7.95   11.80
+    15.0    0.00   -0.21   -0.86   -1.81   -2.91   -4.01   -5.03   -5.93   -6.68   -7.19   -7.29   -6.76   -5.50   -3.50   -0.98    1.81    4.70    7.84   11.68
+    20.0    0.00   -0.22   -0.87   -1.83   -2.93   -4.02   -5.01   -5.90   -6.67   -7.21   -7.36   -6.89   -5.62   -3.58   -0.97    1.87    4.73    7.75   11.51
+    25.0    0.00   -0.23   -0.89   -1.85   -2.94   -4.01   -4.99   -5.87   -6.64   -7.22   -7.42   -6.99   -5.73   -3.65   -0.97    1.93    4.78    7.68   11.33
+    30.0    0.00   -0.24   -0.90   -1.86   -2.94   -4.00   -4.96   -5.83   -6.61   -7.21   -7.45   -7.06   -5.81   -3.70   -0.97    1.98    4.81    7.62   11.16
+    35.0    0.00   -0.24   -0.91   -1.86   -2.93   -3.97   -4.92   -5.78   -6.56   -7.19   -7.45   -7.09   -5.86   -3.74   -0.97    2.00    4.83    7.57   11.01
+    40.0    0.00   -0.25   -0.92   -1.86   -2.92   -3.94   -4.87   -5.73   -6.51   -7.14   -7.42   -7.08   -5.87   -3.76   -0.99    1.99    4.81    7.52   10.90
+    45.0    0.00   -0.25   -0.92   -1.85   -2.89   -3.90   -4.82   -5.67   -6.44   -7.08   -7.37   -7.04   -5.85   -3.76   -1.02    1.96    4.77    7.47   10.85
+    50.0    0.00   -0.26   -0.92   -1.83   -2.85   -3.84   -4.76   -5.60   -6.38   -7.01   -7.30   -6.97   -5.80   -3.75   -1.04    1.90    4.71    7.44   10.85
+    55.0    0.00   -0.26   -0.91   -1.81   -2.81   -3.78   -4.69   -5.54   -6.31   -6.94   -7.22   -6.89   -5.74   -3.72   -1.07    1.84    4.65    7.43   10.91
+    60.0    0.00   -0.27   -0.90   -1.78   -2.75   -3.71   -4.62   -5.47   -6.26   -6.88   -7.16   -6.82   -5.67   -3.68   -1.08    1.78    4.60    7.44   11.02
+    65.0    0.00   -0.27   -0.89   -1.75   -2.69   -3.63   -4.54   -5.41   -6.21   -6.85   -7.11   -6.75   -5.60   -3.63   -1.06    1.76    4.58    7.48   11.15
+    70.0    0.00   -0.27   -0.88   -1.71   -2.62   -3.55   -4.46   -5.35   -6.18   -6.83   -7.09   -6.71   -5.53   -3.56   -1.02    1.78    4.60    7.55   11.29
+    75.0    0.00   -0.27   -0.87   -1.67   -2.56   -3.46   -4.38   -5.30   -6.17   -6.85   -7.10   -6.70   -5.48   -3.49   -0.94    1.84    4.66    7.65   11.42
+    80.0    0.00   -0.27   -0.86   -1.63   -2.49   -3.38   -4.30   -5.25   -6.17   -6.88   -7.14   -6.71   -5.44   -3.40   -0.84    1.94    4.75    7.76   11.52
+    85.0    0.00   -0.27   -0.85   -1.60   -2.43   -3.30   -4.23   -5.21   -6.18   -6.93   -7.20   -6.73   -5.41   -3.30   -0.70    2.08    4.88    7.87   11.59
+    90.0    0.00   -0.27   -0.84   -1.56   -2.37   -3.23   -4.17   -5.19   -6.20   -6.99   -7.27   -6.77   -5.37   -3.19   -0.54    2.25    5.03    7.98   11.62
+    95.0    0.00   -0.27   -0.83   -1.54   -2.32   -3.17   -4.11   -5.16   -6.22   -7.05   -7.33   -6.79   -5.32   -3.07   -0.37    2.43    5.18    8.07   11.61
+   100.0    0.00   -0.27   -0.82   -1.52   -2.28   -3.12   -4.07   -5.15   -6.24   -7.09   -7.38   -6.80   -5.26   -2.94   -0.19    2.61    5.32    8.15   11.58
+   105.0    0.00   -0.27   -0.82   -1.50   -2.26   -3.09   -4.05   -5.14   -6.25   -7.12   -7.39   -6.78   -5.19   -2.81   -0.02    2.78    5.45    8.22   11.55
+   110.0    0.00   -0.27   -0.82   -1.50   -2.25   -3.08   -4.04   -5.14   -6.26   -7.12   -7.38   -6.73   -5.09   -2.67    0.13    2.92    5.56    8.29   11.53
+   115.0    0.00   -0.27   -0.82   -1.50   -2.26   -3.09   -4.04   -5.14   -6.25   -7.10   -7.34   -6.65   -4.99   -2.54    0.26    3.04    5.66    8.36   11.55
+   120.0    0.00   -0.28   -0.82   -1.52   -2.28   -3.11   -4.06   -5.15   -6.24   -7.06   -7.27   -6.56   -4.88   -2.43    0.37    3.14    5.76    8.46   11.63
+   125.0    0.00   -0.28   -0.83   -1.54   -2.31   -3.15   -4.10   -5.16   -6.22   -7.01   -7.18   -6.46   -4.77   -2.33    0.45    3.22    5.85    8.59   11.77
+   130.0    0.00   -0.28   -0.84   -1.56   -2.36   -3.21   -4.15   -5.19   -6.21   -6.96   -7.09   -6.36   -4.68   -2.27    0.50    3.28    5.96    8.76   11.99
+   135.0    0.00   -0.28   -0.85   -1.59   -2.41   -3.28   -4.22   -5.23   -6.21   -6.91   -7.02   -6.27   -4.61   -2.23    0.53    3.33    6.08    8.97   12.26
+   140.0    0.00   -0.28   -0.87   -1.63   -2.47   -3.35   -4.29   -5.28   -6.22   -6.88   -6.96   -6.21   -4.58   -2.22    0.53    3.37    6.21    9.21   12.58
+   145.0    0.00   -0.28   -0.88   -1.66   -2.53   -3.44   -4.38   -5.35   -6.25   -6.87   -6.92   -6.18   -4.57   -2.24    0.51    3.40    6.33    9.46   12.91
+   150.0    0.00   -0.28   -0.89   -1.70   -2.60   -3.52   -4.47   -5.43   -6.29   -6.88   -6.92   -6.18   -4.60   -2.28    0.47    3.41    6.44    9.68   13.23
+   155.0    0.00   -0.28   -0.90   -1.73   -2.66   -3.61   -4.57   -5.51   -6.36   -6.92   -6.95   -6.21   -4.64   -2.35    0.41    3.40    6.52    9.86   13.51
+   160.0    0.00   -0.28   -0.91   -1.76   -2.71   -3.69   -4.66   -5.61   -6.44   -6.98   -6.99   -6.26   -4.70   -2.43    0.34    3.35    6.54    9.97   13.70
+   165.0    0.00   -0.28   -0.92   -1.79   -2.76   -3.76   -4.75   -5.70   -6.53   -7.06   -7.05   -6.32   -4.77   -2.51    0.24    3.27    6.48    9.97   13.78
+   170.0    0.00   -0.28   -0.92   -1.81   -2.80   -3.82   -4.84   -5.80   -6.62   -7.14   -7.12   -6.38   -4.83   -2.59    0.14    3.13    6.34    9.85   13.74
+   175.0    0.00   -0.27   -0.92   -1.82   -2.83   -3.88   -4.91   -5.89   -6.71   -7.22   -7.18   -6.42   -4.88   -2.66    0.02    2.96    6.12    9.63   13.57
+   180.0    0.00   -0.27   -0.92   -1.83   -2.86   -3.92   -4.98   -5.97   -6.80   -7.29   -7.24   -6.46   -4.92   -2.73   -0.11    2.75    5.83    9.30   13.28
+   185.0    0.00   -0.27   -0.92   -1.83   -2.88   -3.96   -5.03   -6.04   -6.87   -7.36   -7.28   -6.48   -4.94   -2.79   -0.25    2.51    5.50    8.90   12.89
+   190.0    0.00   -0.26   -0.91   -1.83   -2.89   -3.99   -5.08   -6.10   -6.94   -7.41   -7.31   -6.49   -4.96   -2.84   -0.38    2.27    5.15    8.46   12.43
+   195.0    0.00   -0.25   -0.91   -1.83   -2.90   -4.02   -5.13   -6.16   -7.00   -7.46   -7.34   -6.50   -4.97   -2.89   -0.50    2.05    4.82    8.04   11.95
+   200.0    0.00   -0.25   -0.90   -1.83   -2.90   -4.04   -5.17   -6.22   -7.06   -7.51   -7.36   -6.51   -4.98   -2.94   -0.61    1.87    4.55    7.67   11.49
+   205.0    0.00   -0.24   -0.89   -1.82   -2.91   -4.06   -5.21   -6.28   -7.12   -7.55   -7.40   -6.54   -5.01   -2.99   -0.70    1.74    4.36    7.40   11.10
+   210.0    0.00   -0.23   -0.88   -1.81   -2.92   -4.09   -5.26   -6.34   -7.18   -7.61   -7.44   -6.57   -5.05   -3.05   -0.76    1.67    4.28    7.25   10.82
+   215.0    0.00   -0.23   -0.87   -1.81   -2.93   -4.13   -5.32   -6.41   -7.26   -7.67   -7.49   -6.63   -5.11   -3.10   -0.79    1.67    4.30    7.24   10.67
+   220.0    0.00   -0.22   -0.85   -1.80   -2.94   -4.17   -5.38   -6.49   -7.33   -7.75   -7.56   -6.69   -5.17   -3.14   -0.79    1.75    4.43    7.37   10.68
+   225.0    0.00   -0.21   -0.84   -1.80   -2.96   -4.21   -5.45   -6.57   -7.42   -7.83   -7.64   -6.77   -5.24   -3.17   -0.75    1.87    4.65    7.61   10.86
+   230.0    0.00   -0.20   -0.83   -1.80   -2.98   -4.26   -5.53   -6.66   -7.50   -7.91   -7.71   -6.84   -5.29   -3.19   -0.69    2.04    4.92    7.95   11.17
+   235.0    0.00   -0.19   -0.82   -1.79   -3.00   -4.31   -5.60   -6.74   -7.59   -7.98   -7.77   -6.89   -5.32   -3.18   -0.61    2.23    5.23    8.33   11.61
+   240.0    0.00   -0.18   -0.80   -1.79   -3.01   -4.35   -5.66   -6.81   -7.65   -8.03   -7.81   -6.91   -5.32   -3.14   -0.50    2.43    5.53    8.74   12.13
+   245.0    0.00   -0.17   -0.79   -1.78   -3.03   -4.39   -5.72   -6.87   -7.70   -8.06   -7.82   -6.90   -5.29   -3.07   -0.38    2.62    5.80    9.12   12.68
+   250.0    0.00   -0.16   -0.78   -1.77   -3.04   -4.41   -5.76   -6.91   -7.73   -8.06   -7.80   -6.85   -5.21   -2.97   -0.24    2.79    6.03    9.46   13.22
+   255.0    0.00   -0.16   -0.76   -1.76   -3.03   -4.43   -5.77   -6.92   -7.72   -8.03   -7.74   -6.76   -5.10   -2.84   -0.10    2.95    6.22    9.74   13.69
+   260.0    0.00   -0.15   -0.75   -1.75   -3.03   -4.42   -5.77   -6.90   -7.68   -7.97   -7.65   -6.65   -4.96   -2.69    0.04    3.08    6.36    9.94   14.06
+   265.0    0.00   -0.14   -0.73   -1.73   -3.01   -4.40   -5.73   -6.86   -7.62   -7.89   -7.54   -6.52   -4.82   -2.53    0.19    3.21    6.47   10.08   14.29
+   270.0    0.00   -0.13   -0.72   -1.71   -2.98   -4.36   -5.68   -6.79   -7.53   -7.78   -7.42   -6.38   -4.67   -2.38    0.34    3.34    6.58   10.17   14.38
+   275.0    0.00   -0.13   -0.71   -1.68   -2.94   -4.30   -5.61   -6.70   -7.43   -7.67   -7.31   -6.26   -4.54   -2.24    0.48    3.47    6.69   10.23   14.31
+   280.0    0.00   -0.12   -0.69   -1.66   -2.90   -4.24   -5.52   -6.59   -7.32   -7.57   -7.21   -6.17   -4.45   -2.13    0.61    3.62    6.82   10.27   14.10
+   285.0    0.00   -0.12   -0.68   -1.63   -2.85   -4.16   -5.42   -6.48   -7.21   -7.47   -7.14   -6.11   -4.39   -2.05    0.73    3.77    6.97   10.31   13.78
+   290.0    0.00   -0.12   -0.67   -1.60   -2.80   -4.09   -5.32   -6.37   -7.10   -7.39   -7.09   -6.09   -4.37   -2.01    0.82    3.93    7.15   10.36   13.36
+   295.0    0.00   -0.11   -0.66   -1.58   -2.75   -4.02   -5.23   -6.27   -7.01   -7.33   -7.07   -6.11   -4.40   -2.01    0.88    4.07    7.33   10.41   12.91
+   300.0    0.00   -0.11   -0.65   -1.56   -2.71   -3.95   -5.14   -6.18   -6.94   -7.29   -7.07   -6.15   -4.46   -2.05    0.91    4.19    7.50   10.46   12.45
+   305.0    0.00   -0.11   -0.65   -1.54   -2.67   -3.89   -5.07   -6.11   -6.89   -7.27   -7.09   -6.20   -4.54   -2.12    0.89    4.26    7.63   10.50   12.02
+   310.0    0.00   -0.11   -0.65   -1.53   -2.65   -3.85   -5.02   -6.06   -6.85   -7.25   -7.11   -6.26   -4.62   -2.22    0.83    4.26    7.69   10.51   11.66
+   315.0    0.00   -0.12   -0.65   -1.53   -2.63   -3.82   -4.99   -6.02   -6.82   -7.25   -7.13   -6.31   -4.71   -2.32    0.72    4.18    7.66   10.47   11.39
+   320.0    0.00   -0.12   -0.65   -1.53   -2.63   -3.81   -4.97   -6.00   -6.80   -7.24   -7.13   -6.35   -4.78   -2.44    0.57    4.03    7.54   10.37   11.22
+   325.0    0.00   -0.12   -0.66   -1.54   -2.63   -3.81   -4.96   -5.99   -6.79   -7.22   -7.13   -6.36   -4.83   -2.56    0.38    3.80    7.31   10.21   11.16
+   330.0    0.00   -0.13   -0.67   -1.55   -2.64   -3.82   -4.97   -5.99   -6.78   -7.20   -7.10   -6.35   -4.87   -2.67    0.17    3.51    7.00    9.99   11.18
+   335.0    0.00   -0.14   -0.69   -1.57   -2.67   -3.84   -4.98   -5.99   -6.77   -7.18   -7.07   -6.33   -4.89   -2.78   -0.04    3.18    6.63    9.72   11.27
+   340.0    0.00   -0.15   -0.71   -1.60   -2.70   -3.86   -5.00   -6.00   -6.76   -7.16   -7.04   -6.31   -4.91   -2.88   -0.26    2.84    6.22    9.43   11.41
+   345.0    0.00   -0.15   -0.73   -1.63   -2.73   -3.89   -5.01   -6.00   -6.75   -7.13   -7.02   -6.30   -4.94   -2.97   -0.46    2.51    5.82    9.12   11.57
+   350.0    0.00   -0.16   -0.75   -1.66   -2.76   -3.92   -5.03   -6.00   -6.74   -7.12   -7.01   -6.31   -4.98   -3.06   -0.63    2.23    5.45    8.81   11.71
+   355.0    0.00   -0.17   -0.77   -1.69   -2.80   -3.95   -5.04   -6.00   -6.72   -7.11   -7.02   -6.35   -5.04   -3.15   -0.77    2.01    5.15    8.54   11.82
+   360.0    0.00   -0.18   -0.79   -1.73   -2.83   -3.97   -5.05   -5.99   -6.71   -7.12   -7.06   -6.42   -5.13   -3.24   -0.87    1.87    4.92    8.30   11.88
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.69     -0.04     94.80                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.02   -0.10   -0.25   -0.48   -0.79   -1.13   -1.50   -1.86   -2.22   -2.57   -2.85   -2.94   -2.61   -1.65    0.08    2.48    5.16    7.48
+     0.0    0.00    0.02   -0.06   -0.27   -0.59   -0.97   -1.36   -1.72   -2.05   -2.39   -2.72   -2.99   -3.04   -2.67   -1.76   -0.31    1.62    4.09    7.66
+     5.0    0.00    0.01   -0.08   -0.28   -0.58   -0.95   -1.32   -1.68   -2.00   -2.33   -2.66   -2.92   -2.95   -2.58   -1.69   -0.29    1.51    3.72    6.84
+    10.0    0.00   -0.01   -0.10   -0.29   -0.57   -0.91   -1.27   -1.61   -1.93   -2.26   -2.59   -2.84   -2.87   -2.51   -1.64   -0.32    1.34    3.27    5.92
+    15.0    0.00   -0.02   -0.12   -0.30   -0.56   -0.87   -1.20   -1.53   -1.85   -2.18   -2.50   -2.76   -2.80   -2.46   -1.64   -0.39    1.13    2.83    5.05
+    20.0    0.00   -0.04   -0.13   -0.30   -0.54   -0.82   -1.13   -1.44   -1.76   -2.08   -2.40   -2.66   -2.71   -2.41   -1.66   -0.49    0.93    2.47    4.38
+    25.0    0.00   -0.05   -0.15   -0.30   -0.52   -0.78   -1.07   -1.37   -1.67   -1.98   -2.29   -2.54   -2.62   -2.38   -1.70   -0.60    0.77    2.26    4.02
+    30.0    0.00   -0.06   -0.16   -0.30   -0.50   -0.74   -1.01   -1.30   -1.59   -1.88   -2.16   -2.41   -2.52   -2.34   -1.75   -0.71    0.69    2.27    4.07
+    35.0    0.00   -0.07   -0.17   -0.31   -0.48   -0.71   -0.97   -1.25   -1.52   -1.78   -2.04   -2.27   -2.41   -2.31   -1.80   -0.78    0.71    2.51    4.52
+    40.0    0.00   -0.08   -0.19   -0.31   -0.47   -0.69   -0.95   -1.22   -1.48   -1.70   -1.92   -2.13   -2.30   -2.27   -1.83   -0.81    0.86    2.98    5.31
+    45.0    0.00   -0.10   -0.20   -0.31   -0.46   -0.67   -0.94   -1.21   -1.44   -1.63   -1.80   -2.00   -2.20   -2.24   -1.85   -0.77    1.12    3.64    6.32
+    50.0    0.00   -0.11   -0.21   -0.31   -0.46   -0.67   -0.93   -1.20   -1.42   -1.57   -1.71   -1.89   -2.11   -2.21   -1.85   -0.68    1.49    4.42    7.39
+    55.0    0.00   -0.12   -0.22   -0.32   -0.45   -0.66   -0.93   -1.19   -1.40   -1.52   -1.63   -1.81   -2.06   -2.20   -1.84   -0.53    1.94    5.23    8.34
+    60.0    0.00   -0.13   -0.23   -0.32   -0.45   -0.65   -0.92   -1.18   -1.37   -1.48   -1.58   -1.77   -2.06   -2.22   -1.82   -0.35    2.40    5.97    8.99
+    65.0    0.00   -0.13   -0.24   -0.32   -0.44   -0.63   -0.89   -1.15   -1.34   -1.44   -1.55   -1.77   -2.09   -2.27   -1.80   -0.16    2.85    6.54    9.22
+    70.0    0.00   -0.14   -0.25   -0.32   -0.43   -0.61   -0.86   -1.11   -1.30   -1.41   -1.55   -1.81   -2.17   -2.35   -1.80    0.02    3.21    6.89    8.96
+    75.0    0.00   -0.15   -0.25   -0.32   -0.41   -0.58   -0.82   -1.06   -1.25   -1.38   -1.57   -1.88   -2.29   -2.46   -1.82    0.16    3.46    6.98    8.21
+    80.0    0.00   -0.16   -0.26   -0.32   -0.40   -0.55   -0.76   -1.00   -1.19   -1.37   -1.60   -1.99   -2.44   -2.59   -1.86    0.24    3.57    6.79    7.04
+    85.0    0.00   -0.16   -0.27   -0.32   -0.38   -0.51   -0.71   -0.93   -1.15   -1.36   -1.66   -2.11   -2.59   -2.73   -1.94    0.24    3.53    6.36    5.57
+    90.0    0.00   -0.17   -0.27   -0.32   -0.37   -0.48   -0.66   -0.88   -1.11   -1.37   -1.73   -2.23   -2.75   -2.87   -2.04    0.16    3.34    5.74    3.98
+    95.0    0.00   -0.17   -0.28   -0.32   -0.36   -0.45   -0.62   -0.85   -1.10   -1.40   -1.81   -2.35   -2.88   -3.00   -2.15    0.01    3.03    5.02    2.43
+   100.0    0.00   -0.17   -0.28   -0.32   -0.35   -0.43   -0.60   -0.84   -1.12   -1.45   -1.90   -2.46   -3.00   -3.11   -2.28   -0.18    2.64    4.27    1.08
+   105.0    0.00   -0.18   -0.29   -0.33   -0.35   -0.43   -0.60   -0.86   -1.17   -1.53   -1.99   -2.56   -3.08   -3.19   -2.39   -0.41    2.23    3.59    0.06
+   110.0    0.00   -0.18   -0.29   -0.33   -0.36   -0.44   -0.63   -0.91   -1.24   -1.63   -2.09   -2.64   -3.14   -3.24   -2.49   -0.62    1.84    3.03   -0.56
+   115.0    0.00   -0.18   -0.30   -0.34   -0.37   -0.47   -0.68   -0.98   -1.35   -1.75   -2.20   -2.71   -3.17   -3.26   -2.56   -0.81    1.52    2.65   -0.78
+   120.0    0.00   -0.18   -0.30   -0.35   -0.40   -0.51   -0.74   -1.07   -1.47   -1.88   -2.31   -2.78   -3.19   -3.26   -2.59   -0.93    1.31    2.47   -0.64
+   125.0    0.00   -0.18   -0.30   -0.37   -0.42   -0.56   -0.81   -1.18   -1.59   -2.01   -2.43   -2.85   -3.21   -3.25   -2.59   -0.97    1.23    2.49   -0.20
+   130.0    0.00   -0.17   -0.30   -0.38   -0.45   -0.61   -0.89   -1.28   -1.71   -2.14   -2.54   -2.93   -3.24   -3.23   -2.55   -0.93    1.29    2.68    0.42
+   135.0    0.00   -0.17   -0.31   -0.39   -0.48   -0.66   -0.96   -1.37   -1.82   -2.26   -2.66   -3.02   -3.29   -3.22   -2.47   -0.81    1.47    3.00    1.15
+   140.0    0.00   -0.17   -0.30   -0.40   -0.51   -0.71   -1.02   -1.45   -1.91   -2.36   -2.77   -3.13   -3.35   -3.21   -2.37   -0.61    1.75    3.41    1.90
+   145.0    0.00   -0.16   -0.30   -0.41   -0.54   -0.75   -1.08   -1.51   -1.98   -2.44   -2.87   -3.23   -3.43   -3.21   -2.25   -0.37    2.09    3.87    2.63
+   150.0    0.00   -0.15   -0.30   -0.42   -0.57   -0.79   -1.13   -1.56   -2.03   -2.51   -2.96   -3.34   -3.51   -3.21   -2.13   -0.11    2.45    4.33    3.34
+   155.0    0.00   -0.15   -0.29   -0.43   -0.59   -0.83   -1.17   -1.59   -2.07   -2.56   -3.03   -3.42   -3.58   -3.21   -2.01    0.14    2.80    4.77    4.04
+   160.0    0.00   -0.14   -0.28   -0.43   -0.61   -0.86   -1.21   -1.63   -2.10   -2.60   -3.09   -3.49   -3.62   -3.19   -1.89    0.35    3.09    5.16    4.78
+   165.0    0.00   -0.13   -0.27   -0.43   -0.63   -0.90   -1.24   -1.66   -2.13   -2.63   -3.12   -3.52   -3.63   -3.14   -1.77    0.52    3.30    5.50    5.60
+   170.0    0.00   -0.11   -0.26   -0.43   -0.64   -0.93   -1.28   -1.70   -2.17   -2.66   -3.14   -3.52   -3.59   -3.06   -1.66    0.63    3.41    5.77    6.53
+   175.0    0.00   -0.10   -0.24   -0.42   -0.65   -0.96   -1.33   -1.75   -2.21   -2.68   -3.14   -3.47   -3.50   -2.94   -1.56    0.67    3.41    5.98    7.57
+   180.0    0.00   -0.09   -0.22   -0.41   -0.66   -0.99   -1.38   -1.81   -2.26   -2.71   -3.11   -3.39   -3.36   -2.79   -1.46    0.65    3.33    6.13    8.69
+   185.0    0.00   -0.07   -0.20   -0.39   -0.66   -1.01   -1.43   -1.88   -2.32   -2.73   -3.08   -3.28   -3.18   -2.60   -1.36    0.59    3.17    6.22    9.82
+   190.0    0.00   -0.06   -0.18   -0.37   -0.66   -1.03   -1.47   -1.94   -2.38   -2.76   -3.04   -3.15   -2.99   -2.40   -1.26    0.51    2.96    6.24   10.88
+   195.0    0.00   -0.04   -0.15   -0.35   -0.65   -1.04   -1.51   -1.99   -2.42   -2.77   -2.99   -3.02   -2.79   -2.20   -1.16    0.43    2.73    6.19   11.75
+   200.0    0.00   -0.02   -0.12   -0.32   -0.63   -1.04   -1.53   -2.02   -2.45   -2.78   -2.94   -2.90   -2.61   -2.01   -1.06    0.36    2.52    6.09   12.35
+   205.0    0.00   -0.01   -0.10   -0.29   -0.60   -1.03   -1.53   -2.03   -2.46   -2.77   -2.90   -2.80   -2.46   -1.85   -0.96    0.33    2.36    5.94   12.61
+   210.0    0.00    0.01   -0.07   -0.25   -0.57   -1.01   -1.51   -2.01   -2.44   -2.74   -2.85   -2.74   -2.36   -1.74   -0.86    0.35    2.27    5.77   12.52
+   215.0    0.00    0.03   -0.04   -0.22   -0.54   -0.97   -1.47   -1.96   -2.39   -2.69   -2.81   -2.70   -2.32   -1.67   -0.78    0.43    2.26    5.60   12.10
+   220.0    0.00    0.04   -0.01   -0.18   -0.50   -0.93   -1.42   -1.90   -2.32   -2.63   -2.77   -2.69   -2.32   -1.65   -0.70    0.55    2.35    5.47   11.42
+   225.0    0.00    0.06    0.02   -0.15   -0.46   -0.89   -1.36   -1.83   -2.24   -2.56   -2.74   -2.71   -2.37   -1.68   -0.64    0.72    2.55    5.42   10.61
+   230.0    0.00    0.07    0.05   -0.11   -0.43   -0.85   -1.31   -1.75   -2.15   -2.48   -2.71   -2.74   -2.45   -1.73   -0.59    0.93    2.83    5.47    9.80
+   235.0    0.00    0.09    0.08   -0.08   -0.40   -0.82   -1.27   -1.69   -2.07   -2.42   -2.69   -2.79   -2.54   -1.81   -0.55    1.16    3.19    5.66    9.13
+   240.0    0.00    0.10    0.10   -0.06   -0.38   -0.80   -1.24   -1.64   -2.01   -2.36   -2.67   -2.83   -2.64   -1.90   -0.52    1.39    3.61    5.98    8.70
+   245.0    0.00    0.12    0.13   -0.03   -0.36   -0.79   -1.23   -1.62   -1.98   -2.33   -2.66   -2.87   -2.72   -1.98   -0.50    1.61    4.04    6.43    8.58
+   250.0    0.00    0.13    0.15   -0.01   -0.35   -0.79   -1.24   -1.63   -1.98   -2.32   -2.66   -2.90   -2.79   -2.05   -0.49    1.80    4.47    6.97    8.77
+   255.0    0.00    0.14    0.16    0.00   -0.35   -0.80   -1.26   -1.66   -2.00   -2.33   -2.67   -2.92   -2.83   -2.10   -0.49    1.95    4.85    7.54    9.24
+   260.0    0.00    0.15    0.18    0.01   -0.34   -0.82   -1.30   -1.70   -2.04   -2.36   -2.68   -2.93   -2.86   -2.14   -0.51    2.04    5.15    8.09    9.88
+   265.0    0.00    0.15    0.19    0.02   -0.35   -0.84   -1.33   -1.75   -2.09   -2.40   -2.71   -2.95   -2.88   -2.18   -0.54    2.07    5.34    8.53   10.56
+   270.0    0.00    0.16    0.20    0.03   -0.35   -0.85   -1.36   -1.80   -2.14   -2.44   -2.74   -2.97   -2.91   -2.22   -0.60    2.03    5.40    8.82   11.15
+   275.0    0.00    0.16    0.20    0.04   -0.34   -0.85   -1.38   -1.82   -2.18   -2.49   -2.78   -3.01   -2.95   -2.27   -0.69    1.91    5.32    8.89   11.52
+   280.0    0.00    0.16    0.20    0.04   -0.34   -0.85   -1.37   -1.82   -2.19   -2.52   -2.83   -3.06   -3.00   -2.35   -0.81    1.73    5.10    8.73   11.59
+   285.0    0.00    0.16    0.20    0.04   -0.33   -0.83   -1.35   -1.80   -2.18   -2.53   -2.88   -3.13   -3.09   -2.46   -0.97    1.49    4.76    8.34   11.33
+   290.0    0.00    0.16    0.20    0.04   -0.32   -0.80   -1.30   -1.75   -2.15   -2.53   -2.92   -3.21   -3.19   -2.59   -1.15    1.20    4.32    7.75   10.76
+   295.0    0.00    0.16    0.20    0.04   -0.31   -0.77   -1.24   -1.68   -2.09   -2.52   -2.95   -3.30   -3.32   -2.74   -1.36    0.88    3.80    7.03    9.98
+   300.0    0.00    0.16    0.19    0.03   -0.30   -0.74   -1.18   -1.60   -2.02   -2.49   -2.98   -3.38   -3.45   -2.90   -1.58    0.54    3.26    6.25    9.09
+   305.0    0.00    0.15    0.17    0.02   -0.30   -0.71   -1.13   -1.53   -1.95   -2.45   -3.00   -3.46   -3.57   -3.06   -1.79    0.21    2.74    5.50    8.23
+   310.0    0.00    0.14    0.16    0.00   -0.31   -0.69   -1.08   -1.47   -1.89   -2.41   -3.00   -3.51   -3.67   -3.21   -1.99   -0.09    2.27    4.85    7.53
+   315.0    0.00    0.13    0.14   -0.02   -0.32   -0.69   -1.06   -1.43   -1.85   -2.38   -3.00   -3.54   -3.73   -3.31   -2.15   -0.34    1.89    4.36    7.09
+   320.0    0.00    0.12    0.12   -0.04   -0.35   -0.71   -1.07   -1.42   -1.83   -2.36   -2.98   -3.54   -3.76   -3.38   -2.27   -0.54    1.62    4.05    6.95
+   325.0    0.00    0.11    0.10   -0.07   -0.38   -0.74   -1.10   -1.45   -1.84   -2.36   -2.96   -3.51   -3.74   -3.39   -2.34   -0.66    1.45    3.94    7.08
+   330.0    0.00    0.10    0.08   -0.10   -0.42   -0.78   -1.15   -1.49   -1.88   -2.36   -2.94   -3.46   -3.69   -3.36   -2.35   -0.72    1.39    3.98    7.43
+   335.0    0.00    0.09    0.05   -0.14   -0.46   -0.83   -1.21   -1.55   -1.93   -2.38   -2.91   -3.39   -3.60   -3.28   -2.31   -0.71    1.42    4.12    7.89
+   340.0    0.00    0.08    0.03   -0.17   -0.50   -0.88   -1.27   -1.62   -1.98   -2.40   -2.88   -3.31   -3.49   -3.17   -2.23   -0.65    1.49    4.29    8.31
+   345.0    0.00    0.06    0.01   -0.20   -0.53   -0.93   -1.32   -1.68   -2.03   -2.42   -2.85   -3.23   -3.37   -3.04   -2.11   -0.56    1.58    4.42    8.57
+   350.0    0.00    0.05   -0.02   -0.23   -0.56   -0.96   -1.36   -1.72   -2.06   -2.42   -2.81   -3.14   -3.25   -2.91   -1.99   -0.46    1.65    4.45    8.57
+   355.0    0.00    0.03   -0.04   -0.25   -0.58   -0.97   -1.37   -1.73   -2.07   -2.41   -2.77   -3.07   -3.14   -2.78   -1.87   -0.37    1.67    4.34    8.26
+   360.0    0.00    0.02   -0.06   -0.27   -0.59   -0.97   -1.36   -1.72   -2.05   -2.39   -2.72   -2.99   -3.04   -2.67   -1.76   -0.31    1.62    4.09    7.66
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TPSCR4          NONE                                        TYPE / SERIAL NO    
+COPIED              TUM                      0    10-AUG-05 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+COPIED FROM AOAD/M_T                                        COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.60     -0.46     91.24                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.24   -0.92   -1.97   -3.28   -4.69   -6.05   -7.19   -7.97   -8.30   -8.14   -7.46   -6.27   -4.54   -2.20    0.87    4.79    9.56   14.88
+     0.0    0.00   -0.28   -1.01   -2.12   -3.49   -4.95   -6.35   -7.52   -8.32   -8.63   -8.43   -7.72   -6.51   -4.78   -2.47    0.58    4.48    9.16   14.25
+     5.0    0.00   -0.28   -1.01   -2.12   -3.48   -4.94   -6.34   -7.50   -8.30   -8.62   -8.42   -7.70   -6.48   -4.75   -2.42    0.63    4.53    9.23   14.33
+    10.0    0.00   -0.28   -1.01   -2.11   -3.46   -4.92   -6.32   -7.48   -8.27   -8.59   -8.39   -7.68   -6.46   -4.72   -2.38    0.69    4.60    9.32   14.45
+    15.0    0.00   -0.27   -1.00   -2.10   -3.45   -4.90   -6.29   -7.46   -8.25   -8.57   -8.37   -7.65   -6.43   -4.68   -2.33    0.75    4.69    9.43   14.61
+    20.0    0.00   -0.27   -0.99   -2.08   -3.43   -4.88   -6.27   -7.43   -8.22   -8.54   -8.35   -7.63   -6.40   -4.64   -2.28    0.83    4.78    9.56   14.80
+    25.0    0.00   -0.27   -0.98   -2.07   -3.41   -4.85   -6.24   -7.39   -8.19   -8.51   -8.32   -7.60   -6.37   -4.60   -2.22    0.90    4.89    9.71   15.02
+    30.0    0.00   -0.26   -0.98   -2.06   -3.39   -4.83   -6.21   -7.36   -8.15   -8.48   -8.29   -7.57   -6.33   -4.55   -2.15    0.99    5.00    9.87   15.25
+    35.0    0.00   -0.26   -0.97   -2.04   -3.37   -4.80   -6.17   -7.32   -8.11   -8.44   -8.25   -7.54   -6.29   -4.50   -2.09    1.08    5.12   10.03   15.48
+    40.0    0.00   -0.26   -0.96   -2.02   -3.34   -4.77   -6.13   -7.28   -8.07   -8.40   -8.21   -7.50   -6.25   -4.45   -2.02    1.17    5.25   10.19   15.70
+    45.0    0.00   -0.25   -0.95   -2.01   -3.32   -4.74   -6.10   -7.24   -8.03   -8.35   -8.17   -7.45   -6.20   -4.40   -1.95    1.26    5.36   10.34   15.89
+    50.0    0.00   -0.25   -0.94   -1.99   -3.29   -4.70   -6.06   -7.19   -7.98   -8.31   -8.12   -7.40   -6.15   -4.34   -1.88    1.34    5.46   10.46   16.05
+    55.0    0.00   -0.24   -0.93   -1.97   -3.27   -4.67   -6.02   -7.15   -7.93   -8.25   -8.07   -7.35   -6.10   -4.28   -1.82    1.41    5.54   10.55   16.15
+    60.0    0.00   -0.24   -0.92   -1.95   -3.24   -4.64   -5.98   -7.10   -7.88   -8.20   -8.01   -7.30   -6.04   -4.23   -1.76    1.47    5.59   10.60   16.20
+    65.0    0.00   -0.24   -0.91   -1.94   -3.22   -4.60   -5.94   -7.06   -7.83   -8.15   -7.96   -7.24   -5.99   -4.18   -1.72    1.50    5.61   10.60   16.20
+    70.0    0.00   -0.23   -0.90   -1.92   -3.19   -4.57   -5.90   -7.02   -7.79   -8.10   -7.91   -7.19   -5.94   -4.14   -1.70    1.50    5.60   10.57   16.14
+    75.0    0.00   -0.23   -0.89   -1.91   -3.17   -4.55   -5.87   -6.98   -7.75   -8.06   -7.87   -7.15   -5.91   -4.12   -1.70    1.48    5.55   10.50   16.04
+    80.0    0.00   -0.23   -0.88   -1.89   -3.16   -4.53   -5.84   -6.95   -7.72   -8.03   -7.83   -7.12   -5.89   -4.11   -1.71    1.44    5.47   10.39   15.91
+    85.0    0.00   -0.22   -0.87   -1.88   -3.14   -4.51   -5.82   -6.93   -7.69   -8.00   -7.81   -7.10   -5.88   -4.13   -1.75    1.36    5.36   10.25   15.74
+    90.0    0.00   -0.22   -0.87   -1.87   -3.13   -4.49   -5.81   -6.92   -7.68   -7.99   -7.80   -7.10   -5.90   -4.16   -1.82    1.27    5.24   10.09   15.56
+    95.0    0.00   -0.22   -0.86   -1.87   -3.12   -4.49   -5.80   -6.91   -7.68   -7.99   -7.81   -7.12   -5.93   -4.21   -1.90    1.16    5.10    9.92   15.37
+   100.0    0.00   -0.21   -0.86   -1.87   -3.12   -4.48   -5.80   -6.91   -7.68   -8.01   -7.84   -7.16   -5.98   -4.29   -1.99    1.04    4.96    9.76   15.18
+   105.0    0.00   -0.21   -0.86   -1.86   -3.12   -4.49   -5.81   -6.93   -7.70   -8.04   -7.88   -7.21   -6.05   -4.37   -2.09    0.93    4.82    9.60   15.00
+   110.0    0.00   -0.21   -0.86   -1.87   -3.13   -4.50   -5.82   -6.95   -7.73   -8.07   -7.93   -7.28   -6.13   -4.47   -2.20    0.81    4.69    9.46   14.84
+   115.0    0.00   -0.21   -0.86   -1.87   -3.13   -4.51   -5.84   -6.97   -7.76   -8.12   -7.99   -7.35   -6.22   -4.56   -2.30    0.71    4.59    9.34   14.71
+   120.0    0.00   -0.21   -0.86   -1.87   -3.15   -4.53   -5.87   -7.00   -7.80   -8.17   -8.05   -7.43   -6.31   -4.66   -2.39    0.62    4.50    9.24   14.60
+   125.0    0.00   -0.21   -0.86   -1.88   -3.16   -4.55   -5.89   -7.04   -7.85   -8.22   -8.12   -7.51   -6.39   -4.74   -2.47    0.55    4.44    9.18   14.52
+   130.0    0.00   -0.21   -0.86   -1.89   -3.17   -4.57   -5.92   -7.07   -7.89   -8.27   -8.18   -7.58   -6.47   -4.81   -2.53    0.51    4.40    9.13   14.47
+   135.0    0.00   -0.21   -0.86   -1.90   -3.19   -4.60   -5.95   -7.11   -7.93   -8.32   -8.23   -7.64   -6.53   -4.87   -2.57    0.47    4.37    9.11   14.44
+   140.0    0.00   -0.21   -0.87   -1.91   -3.21   -4.62   -5.98   -7.14   -7.96   -8.36   -8.28   -7.69   -6.58   -4.91   -2.60    0.46    4.37    9.10   14.43
+   145.0    0.00   -0.21   -0.87   -1.91   -3.22   -4.64   -6.01   -7.17   -8.00   -8.39   -8.31   -7.72   -6.61   -4.93   -2.62    0.45    4.36    9.10   14.44
+   150.0    0.00   -0.21   -0.87   -1.92   -3.24   -4.66   -6.04   -7.20   -8.02   -8.42   -8.33   -7.74   -6.63   -4.94   -2.62    0.45    4.37    9.10   14.45
+   155.0    0.00   -0.21   -0.87   -1.93   -3.25   -4.68   -6.06   -7.22   -8.05   -8.44   -8.35   -7.75   -6.63   -4.94   -2.62    0.46    4.36    9.10   14.46
+   160.0    0.00   -0.21   -0.88   -1.93   -3.26   -4.69   -6.07   -7.24   -8.06   -8.45   -8.35   -7.75   -6.62   -4.94   -2.61    0.45    4.36    9.09   14.46
+   165.0    0.00   -0.21   -0.88   -1.94   -3.27   -4.70   -6.09   -7.25   -8.07   -8.46   -8.35   -7.74   -6.61   -4.93   -2.61    0.45    4.34    9.08   14.46
+   170.0    0.00   -0.21   -0.88   -1.94   -3.27   -4.71   -6.10   -7.26   -8.08   -8.46   -8.35   -7.73   -6.60   -4.92   -2.61    0.43    4.32    9.05   14.44
+   175.0    0.00   -0.21   -0.88   -1.94   -3.27   -4.71   -6.10   -7.27   -8.08   -8.46   -8.34   -7.72   -6.59   -4.91   -2.61    0.42    4.29    9.02   14.41
+   180.0    0.00   -0.21   -0.88   -1.94   -3.27   -4.71   -6.10   -7.27   -8.08   -8.46   -8.34   -7.71   -6.57   -4.90   -2.62    0.40    4.26    9.00   14.38
+   185.0    0.00   -0.21   -0.88   -1.93   -3.26   -4.70   -6.09   -7.26   -8.08   -8.45   -8.33   -7.70   -6.56   -4.90   -2.62    0.38    4.24    8.98   14.35
+   190.0    0.00   -0.21   -0.87   -1.93   -3.25   -4.69   -6.08   -7.25   -8.07   -8.44   -8.32   -7.69   -6.55   -4.89   -2.62    0.38    4.24    8.98   14.33
+   195.0    0.00   -0.21   -0.87   -1.92   -3.24   -4.68   -6.07   -7.24   -8.06   -8.43   -8.30   -7.67   -6.54   -4.88   -2.61    0.39    4.26    9.00   14.33
+   200.0    0.00   -0.21   -0.87   -1.92   -3.23   -4.67   -6.05   -7.22   -8.04   -8.41   -8.29   -7.65   -6.52   -4.86   -2.59    0.42    4.30    9.06   14.37
+   205.0    0.00   -0.21   -0.87   -1.91   -3.22   -4.65   -6.03   -7.20   -8.02   -8.39   -8.26   -7.62   -6.48   -4.82   -2.55    0.47    4.38    9.15   14.44
+   210.0    0.00   -0.21   -0.87   -1.90   -3.21   -4.63   -6.01   -7.18   -8.00   -8.36   -8.23   -7.58   -6.44   -4.77   -2.49    0.55    4.48    9.28   14.55
+   215.0    0.00   -0.21   -0.87   -1.90   -3.20   -4.61   -5.99   -7.15   -7.97   -8.33   -8.18   -7.53   -6.38   -4.70   -2.41    0.65    4.61    9.43   14.69
+   220.0    0.00   -0.21   -0.87   -1.89   -3.19   -4.60   -5.97   -7.13   -7.93   -8.28   -8.13   -7.47   -6.31   -4.62   -2.31    0.78    4.77    9.61   14.87
+   225.0    0.00   -0.21   -0.87   -1.89   -3.18   -4.58   -5.94   -7.10   -7.89   -8.24   -8.07   -7.40   -6.22   -4.52   -2.19    0.91    4.93    9.80   15.07
+   230.0    0.00   -0.21   -0.87   -1.89   -3.17   -4.57   -5.92   -7.07   -7.85   -8.18   -8.01   -7.32   -6.13   -4.41   -2.07    1.06    5.10    9.98   15.28
+   235.0    0.00   -0.22   -0.87   -1.89   -3.16   -4.56   -5.90   -7.03   -7.81   -8.13   -7.94   -7.24   -6.03   -4.30   -1.94    1.20    5.25   10.15   15.47
+   240.0    0.00   -0.22   -0.87   -1.89   -3.16   -4.55   -5.88   -7.01   -7.77   -8.07   -7.87   -7.16   -5.94   -4.19   -1.82    1.33    5.39   10.29   15.63
+   245.0    0.00   -0.22   -0.87   -1.89   -3.16   -4.54   -5.87   -6.98   -7.73   -8.02   -7.81   -7.08   -5.86   -4.10   -1.71    1.44    5.49   10.39   15.74
+   250.0    0.00   -0.22   -0.88   -1.90   -3.17   -4.54   -5.86   -6.96   -7.70   -7.98   -7.76   -7.02   -5.79   -4.01   -1.62    1.53    5.56   10.44   15.79
+   255.0    0.00   -0.23   -0.88   -1.90   -3.17   -4.54   -5.86   -6.95   -7.68   -7.95   -7.72   -6.98   -5.73   -3.96   -1.56    1.58    5.58   10.43   15.78
+   260.0    0.00   -0.23   -0.89   -1.91   -3.18   -4.55   -5.86   -6.94   -7.66   -7.93   -7.70   -6.96   -5.71   -3.92   -1.53    1.59    5.57   10.37   15.71
+   265.0    0.00   -0.23   -0.90   -1.92   -3.19   -4.56   -5.86   -6.94   -7.66   -7.93   -7.70   -6.96   -5.70   -3.92   -1.53    1.57    5.51   10.26   15.58
+   270.0    0.00   -0.24   -0.91   -1.94   -3.21   -4.58   -5.88   -6.95   -7.67   -7.94   -7.71   -6.98   -5.73   -3.94   -1.56    1.52    5.41   10.11   15.40
+   275.0    0.00   -0.24   -0.92   -1.95   -3.23   -4.60   -5.90   -6.97   -7.69   -7.96   -7.74   -7.02   -5.77   -4.00   -1.62    1.44    5.28    9.93   15.20
+   280.0    0.00   -0.25   -0.93   -1.97   -3.25   -4.62   -5.93   -7.00   -7.72   -8.00   -7.79   -7.07   -5.84   -4.07   -1.71    1.33    5.14    9.74   14.98
+   285.0    0.00   -0.25   -0.94   -1.98   -3.27   -4.65   -5.96   -7.04   -7.77   -8.06   -7.86   -7.15   -5.92   -4.16   -1.81    1.21    4.99    9.55   14.77
+   290.0    0.00   -0.25   -0.95   -2.00   -3.30   -4.69   -6.00   -7.09   -7.82   -8.12   -7.93   -7.23   -6.01   -4.26   -1.92    1.08    4.84    9.38   14.58
+   295.0    0.00   -0.26   -0.96   -2.02   -3.33   -4.72   -6.04   -7.14   -7.88   -8.19   -8.00   -7.31   -6.11   -4.36   -2.04    0.96    4.70    9.23   14.43
+   300.0    0.00   -0.26   -0.97   -2.04   -3.35   -4.76   -6.09   -7.19   -7.95   -8.26   -8.08   -7.40   -6.20   -4.47   -2.15    0.83    4.58    9.10   14.31
+   305.0    0.00   -0.26   -0.98   -2.05   -3.38   -4.79   -6.14   -7.25   -8.01   -8.33   -8.16   -7.48   -6.29   -4.57   -2.26    0.73    4.47    9.01   14.22
+   310.0    0.00   -0.27   -0.98   -2.07   -3.40   -4.83   -6.18   -7.31   -8.08   -8.40   -8.23   -7.56   -6.37   -4.66   -2.35    0.63    4.40    8.96   14.17
+   315.0    0.00   -0.27   -0.99   -2.08   -3.43   -4.86   -6.23   -7.36   -8.14   -8.47   -8.30   -7.62   -6.44   -4.73   -2.43    0.56    4.34    8.93   14.15
+   320.0    0.00   -0.27   -1.00   -2.10   -3.45   -4.89   -6.27   -7.41   -8.19   -8.52   -8.35   -7.67   -6.49   -4.79   -2.49    0.50    4.31    8.92   14.15
+   325.0    0.00   -0.28   -1.01   -2.11   -3.46   -4.92   -6.30   -7.45   -8.24   -8.57   -8.39   -7.71   -6.53   -4.83   -2.54    0.47    4.29    8.93   14.15
+   330.0    0.00   -0.28   -1.01   -2.12   -3.48   -4.94   -6.33   -7.49   -8.28   -8.61   -8.43   -7.74   -6.56   -4.86   -2.56    0.45    4.29    8.95   14.16
+   335.0    0.00   -0.28   -1.02   -2.13   -3.49   -4.95   -6.35   -7.51   -8.31   -8.63   -8.45   -7.76   -6.57   -4.87   -2.57    0.45    4.31    8.98   14.16
+   340.0    0.00   -0.28   -1.02   -2.13   -3.50   -4.96   -6.36   -7.53   -8.33   -8.65   -8.46   -7.77   -6.57   -4.87   -2.57    0.46    4.33    9.01   14.16
+   345.0    0.00   -0.28   -1.02   -2.13   -3.50   -4.97   -6.37   -7.54   -8.33   -8.66   -8.46   -7.76   -6.57   -4.86   -2.56    0.48    4.36    9.04   14.16
+   350.0    0.00   -0.28   -1.02   -2.13   -3.50   -4.97   -6.37   -7.54   -8.34   -8.66   -8.46   -7.75   -6.55   -4.84   -2.53    0.51    4.39    9.07   14.17
+   355.0    0.00   -0.28   -1.02   -2.13   -3.49   -4.96   -6.37   -7.54   -8.33   -8.65   -8.45   -7.74   -6.53   -4.81   -2.50    0.54    4.43    9.11   14.20
+   360.0    0.00   -0.28   -1.01   -2.12   -3.49   -4.95   -6.35   -7.52   -8.32   -8.63   -8.43   -7.72   -6.51   -4.78   -2.47    0.58    4.48    9.16   14.25
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.10     -0.62    120.06                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.13   -0.52   -1.10   -1.82   -2.62   -3.43   -4.21   -4.85   -5.23   -5.25   -4.83   -3.98   -2.75   -1.23    0.59    2.86    5.83    9.66
+     0.0    0.00   -0.12   -0.48   -1.03   -1.72   -2.49   -3.29   -4.07   -4.73   -5.15   -5.20   -4.83   -4.05   -2.92   -1.50    0.25    2.53    5.61    9.51
+     5.0    0.00   -0.11   -0.47   -1.03   -1.71   -2.48   -3.29   -4.06   -4.72   -5.13   -5.20   -4.83   -4.05   -2.93   -1.51    0.25    2.54    5.58    9.37
+    10.0    0.00   -0.11   -0.47   -1.02   -1.71   -2.48   -3.28   -4.05   -4.71   -5.12   -5.19   -4.83   -4.06   -2.93   -1.51    0.26    2.55    5.55    9.26
+    15.0    0.00   -0.11   -0.46   -1.01   -1.71   -2.48   -3.28   -4.05   -4.70   -5.11   -5.17   -4.82   -4.05   -2.93   -1.50    0.27    2.55    5.53    9.17
+    20.0    0.00   -0.10   -0.45   -1.01   -1.70   -2.48   -3.28   -4.04   -4.69   -5.10   -5.16   -4.81   -4.04   -2.92   -1.48    0.29    2.57    5.52    9.12
+    25.0    0.00   -0.10   -0.45   -1.00   -1.70   -2.47   -3.28   -4.04   -4.68   -5.08   -5.14   -4.79   -4.02   -2.89   -1.45    0.32    2.59    5.52    9.12
+    30.0    0.00   -0.10   -0.44   -1.00   -1.69   -2.47   -3.27   -4.03   -4.67   -5.07   -5.13   -4.77   -3.99   -2.86   -1.41    0.36    2.61    5.53    9.16
+    35.0    0.00   -0.09   -0.44   -0.99   -1.69   -2.47   -3.27   -4.03   -4.66   -5.06   -5.11   -4.75   -3.96   -2.81   -1.36    0.41    2.65    5.57    9.23
+    40.0    0.00   -0.09   -0.44   -0.99   -1.68   -2.46   -3.27   -4.03   -4.66   -5.05   -5.10   -4.72   -3.92   -2.76   -1.30    0.47    2.69    5.61    9.34
+    45.0    0.00   -0.09   -0.43   -0.98   -1.68   -2.46   -3.26   -4.02   -4.66   -5.05   -5.09   -4.70   -3.88   -2.70   -1.23    0.53    2.74    5.66    9.47
+    50.0    0.00   -0.09   -0.43   -0.98   -1.67   -2.46   -3.26   -4.03   -4.66   -5.05   -5.08   -4.68   -3.84   -2.65   -1.17    0.59    2.79    5.72    9.60
+    55.0    0.00   -0.09   -0.43   -0.98   -1.67   -2.45   -3.26   -4.03   -4.66   -5.05   -5.07   -4.66   -3.81   -2.59   -1.11    0.65    2.84    5.77    9.73
+    60.0    0.00   -0.09   -0.43   -0.98   -1.67   -2.46   -3.27   -4.04   -4.67   -5.06   -5.07   -4.64   -3.77   -2.55   -1.05    0.70    2.88    5.81    9.83
+    65.0    0.00   -0.09   -0.43   -0.98   -1.67   -2.46   -3.27   -4.05   -4.69   -5.07   -5.07   -4.63   -3.75   -2.51   -1.02    0.74    2.91    5.84    9.91
+    70.0    0.00   -0.09   -0.43   -0.98   -1.68   -2.47   -3.29   -4.06   -4.70   -5.08   -5.08   -4.63   -3.74   -2.49   -0.99    0.75    2.92    5.85    9.95
+    75.0    0.00   -0.09   -0.43   -0.99   -1.69   -2.48   -3.30   -4.08   -4.72   -5.10   -5.09   -4.63   -3.74   -2.49   -0.99    0.76    2.92    5.85    9.96
+    80.0    0.00   -0.09   -0.44   -0.99   -1.70   -2.50   -3.32   -4.11   -4.74   -5.12   -5.11   -4.64   -3.74   -2.50   -1.00    0.74    2.90    5.82    9.93
+    85.0    0.00   -0.10   -0.44   -1.00   -1.71   -2.52   -3.35   -4.13   -4.77   -5.14   -5.12   -4.66   -3.76   -2.52   -1.03    0.71    2.86    5.78    9.86
+    90.0    0.00   -0.10   -0.45   -1.02   -1.73   -2.54   -3.37   -4.16   -4.79   -5.16   -5.14   -4.68   -3.79   -2.56   -1.07    0.66    2.82    5.73    9.78
+    95.0    0.00   -0.10   -0.46   -1.03   -1.75   -2.57   -3.40   -4.19   -4.82   -5.18   -5.16   -4.70   -3.82   -2.60   -1.12    0.61    2.77    5.67    9.68
+   100.0    0.00   -0.10   -0.47   -1.05   -1.78   -2.59   -3.43   -4.22   -4.84   -5.20   -5.18   -4.73   -3.86   -2.65   -1.18    0.56    2.72    5.61    9.58
+   105.0    0.00   -0.11   -0.48   -1.06   -1.80   -2.62   -3.46   -4.24   -4.87   -5.22   -5.20   -4.75   -3.90   -2.70   -1.23    0.52    2.68    5.56    9.48
+   110.0    0.00   -0.11   -0.49   -1.08   -1.82   -2.65   -3.49   -4.27   -4.89   -5.24   -5.22   -4.78   -3.93   -2.74   -1.27    0.48    2.66    5.53    9.40
+   115.0    0.00   -0.12   -0.50   -1.10   -1.85   -2.68   -3.52   -4.29   -4.90   -5.25   -5.24   -4.80   -3.96   -2.77   -1.30    0.46    2.65    5.51    9.33
+   120.0    0.00   -0.12   -0.51   -1.11   -1.87   -2.70   -3.54   -4.31   -4.92   -5.26   -5.25   -4.83   -3.99   -2.79   -1.31    0.46    2.66    5.51    9.29
+   125.0    0.00   -0.12   -0.52   -1.13   -1.89   -2.72   -3.56   -4.32   -4.93   -5.27   -5.26   -4.84   -4.00   -2.80   -1.31    0.48    2.69    5.53    9.26
+   130.0    0.00   -0.13   -0.52   -1.14   -1.91   -2.74   -3.57   -4.33   -4.93   -5.28   -5.28   -4.86   -4.01   -2.80   -1.29    0.52    2.73    5.57    9.26
+   135.0    0.00   -0.13   -0.53   -1.15   -1.92   -2.75   -3.58   -4.34   -4.94   -5.29   -5.29   -4.87   -4.02   -2.79   -1.26    0.57    2.79    5.61    9.27
+   140.0    0.00   -0.13   -0.54   -1.16   -1.93   -2.76   -3.59   -4.34   -4.94   -5.29   -5.30   -4.87   -4.02   -2.78   -1.22    0.62    2.85    5.66    9.28
+   145.0    0.00   -0.14   -0.55   -1.17   -1.94   -2.77   -3.59   -4.34   -4.95   -5.30   -5.30   -4.88   -4.01   -2.75   -1.18    0.67    2.91    5.71    9.29
+   150.0    0.00   -0.14   -0.55   -1.18   -1.95   -2.77   -3.59   -4.34   -4.95   -5.31   -5.31   -4.89   -4.01   -2.74   -1.15    0.72    2.95    5.75    9.30
+   155.0    0.00   -0.14   -0.56   -1.18   -1.95   -2.77   -3.59   -4.34   -4.95   -5.32   -5.32   -4.89   -4.01   -2.72   -1.12    0.75    2.99    5.78    9.30
+   160.0    0.00   -0.15   -0.56   -1.18   -1.95   -2.77   -3.59   -4.34   -4.96   -5.33   -5.34   -4.90   -4.01   -2.72   -1.11    0.76    3.00    5.79    9.28
+   165.0    0.00   -0.15   -0.56   -1.18   -1.94   -2.76   -3.58   -4.34   -4.96   -5.34   -5.35   -4.91   -4.01   -2.72   -1.12    0.76    3.00    5.79    9.26
+   170.0    0.00   -0.15   -0.56   -1.18   -1.94   -2.75   -3.57   -4.34   -4.97   -5.35   -5.36   -4.92   -4.02   -2.73   -1.14    0.73    2.97    5.77    9.23
+   175.0    0.00   -0.15   -0.57   -1.18   -1.93   -2.74   -3.57   -4.34   -4.98   -5.36   -5.37   -4.93   -4.03   -2.75   -1.17    0.69    2.93    5.74    9.20
+   180.0    0.00   -0.16   -0.57   -1.18   -1.92   -2.74   -3.56   -4.34   -4.98   -5.37   -5.38   -4.94   -4.04   -2.77   -1.21    0.63    2.88    5.71    9.17
+   185.0    0.00   -0.16   -0.57   -1.17   -1.91   -2.73   -3.56   -4.35   -4.99   -5.38   -5.38   -4.94   -4.05   -2.79   -1.25    0.58    2.83    5.69    9.16
+   190.0    0.00   -0.16   -0.57   -1.17   -1.90   -2.72   -3.56   -4.35   -5.00   -5.39   -5.39   -4.93   -4.05   -2.81   -1.29    0.53    2.79    5.68    9.18
+   195.0    0.00   -0.16   -0.56   -1.16   -1.90   -2.71   -3.55   -4.35   -5.01   -5.39   -5.38   -4.92   -4.04   -2.81   -1.31    0.49    2.76    5.69    9.22
+   200.0    0.00   -0.16   -0.56   -1.16   -1.89   -2.70   -3.55   -4.35   -5.01   -5.39   -5.37   -4.91   -4.02   -2.80   -1.32    0.48    2.76    5.72    9.30
+   205.0    0.00   -0.16   -0.56   -1.16   -1.88   -2.70   -3.55   -4.35   -5.01   -5.39   -5.36   -4.88   -3.99   -2.78   -1.30    0.49    2.79    5.79    9.40
+   210.0    0.00   -0.16   -0.56   -1.15   -1.88   -2.69   -3.54   -4.35   -5.01   -5.38   -5.34   -4.86   -3.96   -2.74   -1.27    0.53    2.85    5.88    9.53
+   215.0    0.00   -0.17   -0.56   -1.15   -1.88   -2.69   -3.54   -4.35   -5.01   -5.37   -5.32   -4.83   -3.92   -2.70   -1.21    0.60    2.93    5.99    9.69
+   220.0    0.00   -0.17   -0.57   -1.15   -1.87   -2.69   -3.54   -4.35   -5.00   -5.36   -5.31   -4.80   -3.88   -2.64   -1.14    0.69    3.04    6.13    9.85
+   225.0    0.00   -0.17   -0.57   -1.15   -1.87   -2.69   -3.54   -4.34   -4.99   -5.35   -5.29   -4.78   -3.85   -2.59   -1.06    0.79    3.17    6.27   10.02
+   230.0    0.00   -0.17   -0.57   -1.15   -1.88   -2.69   -3.53   -4.33   -4.98   -5.34   -5.28   -4.76   -3.82   -2.54   -0.98    0.90    3.30    6.41   10.17
+   235.0    0.00   -0.17   -0.57   -1.16   -1.88   -2.69   -3.53   -4.33   -4.97   -5.32   -5.27   -4.76   -3.81   -2.50   -0.91    1.01    3.43    6.54   10.30
+   240.0    0.00   -0.17   -0.57   -1.16   -1.88   -2.69   -3.52   -4.32   -4.96   -5.32   -5.27   -4.76   -3.81   -2.48   -0.85    1.11    3.55    6.65   10.40
+   245.0    0.00   -0.17   -0.58   -1.17   -1.89   -2.69   -3.52   -4.31   -4.95   -5.31   -5.28   -4.78   -3.82   -2.48   -0.82    1.18    3.64    6.72   10.45
+   250.0    0.00   -0.17   -0.58   -1.17   -1.89   -2.69   -3.52   -4.30   -4.93   -5.31   -5.29   -4.81   -3.86   -2.50   -0.80    1.23    3.69    6.76   10.46
+   255.0    0.00   -0.17   -0.58   -1.18   -1.90   -2.69   -3.51   -4.29   -4.92   -5.30   -5.30   -4.84   -3.90   -2.54   -0.82    1.24    3.71    6.75   10.43
+   260.0    0.00   -0.17   -0.58   -1.18   -1.90   -2.70   -3.51   -4.27   -4.91   -5.30   -5.32   -4.88   -3.96   -2.59   -0.86    1.22    3.69    6.70   10.36
+   265.0    0.00   -0.17   -0.58   -1.18   -1.91   -2.70   -3.50   -4.26   -4.90   -5.30   -5.34   -4.92   -4.02   -2.66   -0.92    1.16    3.63    6.61   10.26
+   270.0    0.00   -0.17   -0.58   -1.19   -1.91   -2.70   -3.50   -4.25   -4.89   -5.30   -5.36   -4.96   -4.08   -2.73   -0.99    1.08    3.53    6.49   10.15
+   275.0    0.00   -0.17   -0.58   -1.19   -1.91   -2.70   -3.49   -4.24   -4.88   -5.29   -5.37   -4.99   -4.13   -2.80   -1.08    0.98    3.41    6.35   10.04
+   280.0    0.00   -0.17   -0.58   -1.19   -1.91   -2.69   -3.48   -4.23   -4.87   -5.29   -5.37   -5.02   -4.17   -2.86   -1.16    0.86    3.26    6.20    9.93
+   285.0    0.00   -0.17   -0.58   -1.18   -1.91   -2.69   -3.47   -4.22   -4.86   -5.28   -5.37   -5.03   -4.20   -2.92   -1.25    0.74    3.11    6.05    9.85
+   290.0    0.00   -0.16   -0.58   -1.18   -1.90   -2.68   -3.46   -4.21   -4.85   -5.27   -5.37   -5.03   -4.21   -2.95   -1.33    0.62    2.96    5.90    9.79
+   295.0    0.00   -0.16   -0.57   -1.17   -1.89   -2.67   -3.45   -4.20   -4.84   -5.26   -5.35   -5.02   -4.21   -2.98   -1.39    0.51    2.82    5.78    9.77
+   300.0    0.00   -0.16   -0.57   -1.16   -1.88   -2.65   -3.44   -4.19   -4.83   -5.25   -5.34   -4.99   -4.19   -2.98   -1.44    0.42    2.69    5.68    9.78
+   305.0    0.00   -0.16   -0.56   -1.15   -1.87   -2.64   -3.42   -4.18   -4.82   -5.24   -5.32   -4.97   -4.17   -2.98   -1.47    0.34    2.59    5.61    9.82
+   310.0    0.00   -0.15   -0.56   -1.14   -1.85   -2.62   -3.41   -4.16   -4.81   -5.23   -5.30   -4.94   -4.14   -2.96   -1.49    0.28    2.51    5.57    9.87
+   315.0    0.00   -0.15   -0.55   -1.13   -1.83   -2.60   -3.39   -4.15   -4.80   -5.21   -5.28   -4.91   -4.10   -2.94   -1.49    0.24    2.46    5.55    9.94
+   320.0    0.00   -0.15   -0.54   -1.12   -1.82   -2.58   -3.38   -4.14   -4.79   -5.20   -5.26   -4.88   -4.07   -2.91   -1.49    0.22    2.43    5.55   10.00
+   325.0    0.00   -0.14   -0.53   -1.11   -1.80   -2.57   -3.36   -4.13   -4.78   -5.19   -5.24   -4.86   -4.04   -2.89   -1.49    0.21    2.43    5.57   10.04
+   330.0    0.00   -0.14   -0.53   -1.10   -1.79   -2.55   -3.34   -4.12   -4.77   -5.19   -5.23   -4.84   -4.02   -2.88   -1.48    0.21    2.43    5.60   10.06
+   335.0    0.00   -0.14   -0.52   -1.08   -1.77   -2.53   -3.33   -4.11   -4.77   -5.18   -5.22   -4.83   -4.01   -2.87   -1.48    0.21    2.45    5.62   10.04
+   340.0    0.00   -0.13   -0.51   -1.07   -1.76   -2.52   -3.32   -4.10   -4.76   -5.17   -5.22   -4.82   -4.01   -2.87   -1.48    0.22    2.47    5.64    9.99
+   345.0    0.00   -0.13   -0.50   -1.06   -1.75   -2.51   -3.31   -4.09   -4.75   -5.17   -5.22   -4.82   -4.01   -2.87   -1.48    0.23    2.49    5.65    9.90
+   350.0    0.00   -0.12   -0.49   -1.05   -1.74   -2.50   -3.30   -4.08   -4.74   -5.16   -5.21   -4.83   -4.02   -2.89   -1.49    0.24    2.51    5.65    9.79
+   355.0    0.00   -0.12   -0.49   -1.04   -1.73   -2.49   -3.29   -4.07   -4.73   -5.15   -5.21   -4.83   -4.03   -2.90   -1.50    0.24    2.52    5.63    9.65
+   360.0    0.00   -0.12   -0.48   -1.03   -1.72   -2.49   -3.29   -4.07   -4.73   -5.15   -5.20   -4.83   -4.05   -2.92   -1.50    0.25    2.53    5.61    9.51
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TPSCR4          CONE                                        TYPE / SERIAL NO    
+FIELD               NGS/TUM                  3    10-AUG-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.80      0.14     90.44                              NORTH / EAST / UP   
+   NOAZI    0.00    0.36   -0.02   -0.87   -2.08   -3.59   -5.05   -6.39   -7.37   -7.80   -7.74   -7.06   -5.77   -3.84   -1.10    2.57    7.19
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.10     -1.32    118.86                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.73   -1.42   -2.00   -2.62   -3.22   -3.93   -4.51   -5.15   -5.43   -5.55   -5.23   -4.58   -3.45   -2.03   -0.01    2.56
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TPSG3_A1        NONE                                        TYPE / SERIAL NO    
+FIELD               NGS/TUM                  3    19-MAR-08 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.80     -0.56     32.74                              NORTH / EAST / UP   
+   NOAZI    0.00    1.76    2.58    2.63    2.22    1.41    0.55   -0.19   -0.77   -1.10   -1.04   -0.66   -0.17    0.46    1.30    2.17    3.09
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.00     -0.82     40.96                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.03    0.08    0.30    0.58    0.78    0.77    0.49    0.25   -0.23   -0.55   -0.83   -0.88   -0.85   -0.63   -0.01    1.06
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TPSG3_A1        TPSD                                        TYPE / SERIAL NO    
+FIELD               NGS/TUM                  3    19-MAR-08 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      1.00     -0.26     32.54                              NORTH / EAST / UP   
+   NOAZI    0.00    1.46    2.08    2.13    1.72    1.01    0.15   -0.59   -1.17   -1.40   -1.44   -1.16   -0.67   -0.04    0.80    1.87    3.09
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.50      0.08     42.06                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.03    0.08    0.30    0.58    0.68    0.67    0.49    0.05   -0.33   -0.75   -1.03   -1.08   -1.05   -0.83   -0.31    0.76
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TPSHIPER_GD     NONE                                        TYPE / SERIAL NO    
+FIELD               NGS/TUM                  4    10-AUG-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+     -1.10     -1.26     87.24                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.54   -0.62   -0.47   -0.28   -0.09    0.05    0.11    0.13    0.20    0.16    0.04    0.03   -0.04    0.20    0.97    2.49
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -1.30     -1.42     93.26                              NORTH / EAST / UP   
+   NOAZI    0.00   -1.03   -1.52   -1.60   -1.72   -1.62   -1.53   -1.61   -1.55   -1.73   -1.75   -1.83   -1.78   -1.85   -1.93   -2.11   -2.24
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TPSHIPER_GGD    NONE                                        TYPE / SERIAL NO    
+FIELD               NGS/TUM                  4    10-AUG-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+     -1.10     -1.26     87.24                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.54   -0.62   -0.47   -0.28   -0.09    0.05    0.11    0.13    0.20    0.16    0.04    0.03   -0.04    0.20    0.97    2.49
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -1.30     -1.42     93.26                              NORTH / EAST / UP   
+   NOAZI    0.00   -1.03   -1.52   -1.60   -1.72   -1.62   -1.53   -1.61   -1.55   -1.73   -1.75   -1.83   -1.78   -1.85   -1.93   -2.11   -2.24
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TPSHIPER_LITE   NONE                                        TYPE / SERIAL NO    
+FIELD               NGS/TUM                  3    10-AUG-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.70      1.64     87.34                              NORTH / EAST / UP   
+   NOAZI    0.00    0.16    0.48    0.73    0.92    0.91    0.95    0.91    0.93    1.00    1.16    1.34    1.63    1.86    2.40    3.27    4.79
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.00      0.98     87.76                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.73   -1.02   -1.20   -1.12   -1.02   -1.03   -1.01   -1.15   -1.13   -1.15   -1.13   -0.98   -0.75   -0.43   -0.21    0.36
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TPSHIPER_PLUS   NONE                                        TYPE / SERIAL NO    
+FIELD               NGS/TUM                  3    10-AUG-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+     -0.20      1.14     87.14                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.04    0.18    0.63    0.92    1.11    1.25    1.41    1.43    1.50    1.46    1.54    1.53    1.66    2.00    2.77    4.29
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.80      0.08     89.16                              NORTH / EAST / UP   
+   NOAZI    0.00   -1.03   -1.62   -1.90   -1.92   -1.92   -1.83   -1.81   -1.95   -2.03   -2.05   -2.03   -1.78   -1.55   -1.23   -0.71    0.06
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TPSLEGANT2      NONE                                        TYPE / SERIAL NO    
+FIELD               NGS/TUM                  3    10-AUG-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.60     -0.96     38.94                              NORTH / EAST / UP   
+   NOAZI    0.00   -1.14   -1.72   -1.97   -1.98   -1.79   -1.75   -1.69   -1.57   -1.50   -1.44   -1.26   -1.07   -0.74   -0.10    1.27    3.59
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.00     -1.82     56.96                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.73   -1.12   -1.30   -1.32   -1.32   -1.23   -1.21   -1.15   -1.03   -0.95   -0.73   -0.58   -0.55   -0.73   -1.11   -1.64
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TPSLEGANT3_UHF  NONE                                        TYPE / SERIAL NO    
+FIELD               NGS/TUM                  3    10-AUG-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+     -0.10      0.14     95.34                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.14   -0.12   -0.07   -0.08   -0.09   -0.15   -0.09    0.03    0.30    0.46    0.74    0.83    0.76    0.50    0.27   -0.01
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.10     -0.32    104.66                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.63   -1.02   -1.20   -1.22   -1.22   -1.23   -1.31   -1.45   -1.53   -1.55   -1.43   -1.28   -1.05   -0.93   -0.81   -0.64
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TPSLEGANT_G     NONE                                        TYPE / SERIAL NO    
+FIELD               NGS/TUM                  3    11-AUG-06 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     1                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      3.10     -0.16     60.14                              NORTH / EAST / UP   
+   NOAZI    0.00    0.56    0.98    1.03    0.92    0.61    0.25   -0.19   -0.57   -0.80   -0.94   -0.86   -0.87   -0.64   -0.40    0.07    0.99
+   G01                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TPSODYSSEY_I    NONE                                        TYPE / SERIAL NO    
+FIELD               NGS/TUM                  1    10-AUG-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      1.00     -2.36     69.74                              NORTH / EAST / UP   
+   NOAZI    0.00    0.46    0.78    0.93    0.92    0.81    0.55    0.41    0.23    0.10    0.16    0.34    0.53    0.76    1.20    1.87    3.09
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.40     -2.32     80.96                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.03   -0.02   -0.00   -0.02   -0.02   -0.03   -0.11   -0.15   -0.23   -0.15    0.07    0.22    0.25    0.07   -0.51   -1.34
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TPSPG_A1        NONE                                        TYPE / SERIAL NO    
+FIELD               NGS/TUM                  3    10-AUG-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      1.30      1.74     35.54                              NORTH / EAST / UP   
+   NOAZI    0.00   -1.04   -1.42   -1.37   -1.08   -0.79   -0.65   -0.49   -0.47   -0.50   -0.64   -0.66   -0.57   -0.24    0.70    2.57    5.79
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.30     -0.82     52.56                              NORTH / EAST / UP   
+   NOAZI    0.00   -2.23   -3.72   -4.50   -4.92   -5.12   -5.03   -4.81   -4.65   -4.43   -4.15   -3.93   -3.68   -3.65   -3.83   -4.31   -4.94
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TRM14177.00     NONE                                        TYPE / SERIAL NO    
+COPIED              TUM                      0    27-JAN-03 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+COPIED FROM TRM14532.00                                     COMMENT             
+   G01                                                      START OF FREQUENCY  
+     -0.18     -3.17     74.69                              NORTH / EAST / UP   
+   NOAZI    0.00    0.65    2.39    4.68    6.80    8.13    8.29    7.29    5.45    3.27    1.20   -0.48   -1.76   -2.73   -3.40   -3.48   -2.40    0.56    5.75
+     0.0    0.00    0.68    2.60    5.17    7.58    9.09    9.28    8.15    6.07    3.59    1.18   -0.91   -2.63   -4.06   -5.14   -5.54   -4.67   -1.90    3.06
+     5.0    0.00    0.62    2.51    5.06    7.48    9.02    9.24    8.15    6.10    3.64    1.24   -0.82   -2.53   -3.96   -5.05   -5.46   -4.60   -1.80    3.20
+    10.0    0.00    0.56    2.40    4.94    7.37    8.94    9.21    8.16    6.14    3.70    1.33   -0.71   -2.40   -3.81   -4.91   -5.35   -4.49   -1.69    3.35
+    15.0    0.00    0.50    2.30    4.81    7.24    8.85    9.17    8.17    6.19    3.79    1.45   -0.56   -2.22   -3.62   -4.72   -5.17   -4.34   -1.55    3.51
+    20.0    0.00    0.44    2.18    4.67    7.11    8.75    9.13    8.18    6.26    3.90    1.59   -0.38   -2.01   -3.38   -4.48   -4.95   -4.14   -1.36    3.68
+    25.0    0.00    0.39    2.07    4.52    6.97    8.65    9.08    8.20    6.34    4.02    1.75   -0.19   -1.77   -3.11   -4.18   -4.66   -3.88   -1.13    3.88
+    30.0    0.00    0.33    1.95    4.37    6.82    8.53    9.03    8.22    6.41    4.15    1.92    0.03   -1.51   -2.81   -3.85   -4.33   -3.56   -0.84    4.11
+    35.0    0.00    0.27    1.84    4.22    6.66    8.41    8.97    8.23    6.49    4.28    2.10    0.25   -1.24   -2.49   -3.50   -3.96   -3.20   -0.50    4.37
+    40.0    0.00    0.22    1.73    4.06    6.50    8.28    8.90    8.23    6.56    4.40    2.27    0.47   -0.97   -2.16   -3.13   -3.56   -2.79   -0.12    4.67
+    45.0    0.00    0.16    1.62    3.91    6.33    8.14    8.81    8.21    6.61    4.51    2.43    0.68   -0.71   -1.85   -2.77   -3.16   -2.37    0.29    5.00
+    50.0    0.00    0.12    1.51    3.76    6.17    7.99    8.71    8.17    6.63    4.59    2.56    0.86   -0.48   -1.56   -2.43   -2.76   -1.94    0.73    5.37
+    55.0    0.00    0.07    1.41    3.61    6.00    7.84    8.59    8.11    6.63    4.65    2.67    1.01   -0.28   -1.31   -2.12   -2.40   -1.53    1.17    5.77
+    60.0    0.00    0.03    1.32    3.48    5.83    7.67    8.46    8.02    6.60    4.67    2.73    1.12   -0.12   -1.11   -1.86   -2.08   -1.14    1.61    6.20
+    65.0    0.00    0.00    1.24    3.35    5.67    7.51    8.31    7.91    6.53    4.65    2.76    1.18   -0.02   -0.96   -1.66   -1.82   -0.80    2.02    6.64
+    70.0    0.00   -0.03    1.17    3.23    5.53    7.34    8.15    7.78    6.44    4.59    2.74    1.20    0.03   -0.87   -1.52   -1.61   -0.51    2.40    7.08
+    75.0    0.00   -0.05    1.11    3.13    5.39    7.18    7.99    7.63    6.31    4.49    2.67    1.16    0.02   -0.85   -1.45   -1.47   -0.28    2.74    7.51
+    80.0    0.00   -0.07    1.06    3.05    5.27    7.03    7.83    7.47    6.16    4.36    2.57    1.08   -0.04   -0.88   -1.44   -1.39   -0.11    3.01    7.90
+    85.0    0.00   -0.08    1.03    2.99    5.17    6.90    7.67    7.30    5.99    4.21    2.42    0.95   -0.15   -0.96   -1.48   -1.38   -0.02    3.21    8.23
+    90.0    0.00   -0.08    1.02    2.95    5.10    6.79    7.52    7.13    5.82    4.03    2.25    0.78   -0.31   -1.10   -1.58   -1.42    0.01    3.33    8.48
+    95.0    0.00   -0.08    1.02    2.93    5.04    6.70    7.40    6.98    5.64    3.84    2.05    0.58   -0.50   -1.27   -1.73   -1.53   -0.04    3.36    8.62
+   100.0    0.00   -0.06    1.03    2.93    5.02    6.64    7.29    6.83    5.46    3.64    1.84    0.36   -0.72   -1.49   -1.91   -1.68   -0.15    3.28    8.63
+   105.0    0.00   -0.05    1.06    2.96    5.03    6.60    7.21    6.70    5.30    3.44    1.61    0.12   -0.97   -1.73   -2.14   -1.89   -0.35    3.10    8.49
+   110.0    0.00   -0.02    1.11    3.01    5.06    6.60    7.15    6.59    5.14    3.24    1.39   -0.13   -1.23   -1.99   -2.39   -2.14   -0.62    2.80    8.21
+   115.0    0.00    0.01    1.17    3.09    5.12    6.62    7.12    6.50    5.00    3.06    1.16   -0.38   -1.50   -2.27   -2.68   -2.44   -0.96    2.40    7.79
+   120.0    0.00    0.05    1.25    3.18    5.21    6.67    7.12    6.44    4.87    2.88    0.94   -0.64   -1.78   -2.57   -3.00   -2.79   -1.37    1.91    7.24
+   125.0    0.00    0.09    1.34    3.30    5.32    6.74    7.13    6.38    4.75    2.71    0.73   -0.89   -2.07   -2.88   -3.34   -3.18   -1.83    1.34    6.61
+   130.0    0.00    0.14    1.44    3.43    5.45    6.84    7.16    6.35    4.65    2.55    0.52   -1.14   -2.35   -3.20   -3.70   -3.59   -2.33    0.73    5.91
+   135.0    0.00    0.20    1.55    3.58    5.60    6.95    7.21    6.32    4.56    2.40    0.32   -1.38   -2.64   -3.53   -4.07   -4.02   -2.85    0.10    5.21
+   140.0    0.00    0.25    1.67    3.73    5.76    7.08    7.28    6.31    4.48    2.26    0.13   -1.61   -2.92   -3.85   -4.43   -4.45   -3.36   -0.51    4.55
+   145.0    0.00    0.31    1.79    3.90    5.93    7.21    7.35    6.31    4.41    2.13   -0.05   -1.84   -3.18   -4.16   -4.79   -4.85   -3.83   -1.05    3.96
+   150.0    0.00    0.38    1.92    4.07    6.11    7.36    7.43    6.32    4.35    2.02   -0.21   -2.04   -3.42   -4.44   -5.10   -5.21   -4.23   -1.50    3.49
+   155.0    0.00    0.44    2.05    4.25    6.29    7.51    7.53    6.34    4.31    1.92   -0.35   -2.21   -3.63   -4.67   -5.37   -5.50   -4.55   -1.84    3.18
+   160.0    0.00    0.50    2.18    4.42    6.47    7.66    7.62    6.38    4.28    1.85   -0.45   -2.35   -3.79   -4.86   -5.56   -5.70   -4.74   -2.03    3.02
+   165.0    0.00    0.57    2.30    4.59    6.65    7.81    7.73    6.43    4.28    1.81   -0.52   -2.44   -3.89   -4.96   -5.67   -5.79   -4.82   -2.07    3.03
+   170.0    0.00    0.63    2.43    4.75    6.82    7.97    7.84    6.49    4.30    1.80   -0.54   -2.47   -3.92   -4.99   -5.67   -5.76   -4.75   -1.96    3.20
+   175.0    0.00    0.70    2.55    4.91    6.98    8.11    7.95    6.57    4.36    1.84   -0.51   -2.43   -3.87   -4.91   -5.57   -5.62   -4.56   -1.71    3.52
+   180.0    0.00    0.76    2.66    5.05    7.13    8.25    8.07    6.67    4.44    1.93   -0.41   -2.31   -3.73   -4.74   -5.35   -5.35   -4.24   -1.33    3.95
+   185.0    0.00    0.82    2.76    5.18    7.27    8.38    8.19    6.78    4.56    2.06   -0.26   -2.12   -3.50   -4.46   -5.03   -4.98   -3.81   -0.86    4.46
+   190.0    0.00    0.87    2.86    5.29    7.39    8.49    8.30    6.90    4.70    2.23   -0.05   -1.86   -3.19   -4.10   -4.61   -4.51   -3.30   -0.30    5.05
+   195.0    0.00    0.92    2.95    5.39    7.49    8.59    8.40    7.02    4.86    2.43    0.21   -1.54   -2.81   -3.66   -4.13   -3.99   -2.73    0.30    5.66
+   200.0    0.00    0.97    3.02    5.48    7.56    8.66    8.49    7.14    5.02    2.66    0.51   -1.18   -2.38   -3.18   -3.59   -3.42   -2.14    0.92    6.30
+   205.0    0.00    1.02    3.09    5.54    7.62    8.72    8.56    7.25    5.19    2.90    0.82   -0.79   -1.92   -2.67   -3.04   -2.84   -1.54    1.55    6.93
+   210.0    0.00    1.06    3.14    5.59    7.65    8.75    8.60    7.34    5.34    3.12    1.13   -0.41   -1.47   -2.16   -2.50   -2.28   -0.96    2.15    7.54
+   215.0    0.00    1.09    3.19    5.62    7.66    8.75    8.62    7.40    5.46    3.33    1.42   -0.04   -1.04   -1.69   -2.00   -1.76   -0.42    2.72    8.13
+   220.0    0.00    1.12    3.22    5.63    7.65    8.73    8.61    7.42    5.55    3.49    1.66    0.27   -0.67   -1.27   -1.57   -1.31    0.06    3.24    8.68
+   225.0    0.00    1.15    3.25    5.64    7.63    8.68    8.57    7.42    5.60    3.61    1.84    0.52   -0.37   -0.94   -1.22   -0.94    0.46    3.70    9.18
+   230.0    0.00    1.18    3.26    5.63    7.58    8.61    8.50    7.37    5.60    3.67    1.96    0.69   -0.16   -0.70   -0.97   -0.67    0.77    4.07    9.62
+   235.0    0.00    1.20    3.27    5.61    7.53    8.53    8.42    7.30    5.56    3.67    2.01    0.78   -0.04   -0.57   -0.82   -0.51    0.97    4.35    9.97
+   240.0    0.00    1.21    3.28    5.58    7.47    8.45    8.31    7.20    5.48    3.61    1.98    0.77   -0.03   -0.55   -0.78   -0.45    1.08    4.52   10.22
+   245.0    0.00    1.22    3.28    5.56    7.41    8.35    8.21    7.09    5.37    3.51    1.89    0.69   -0.10   -0.62   -0.85   -0.50    1.06    4.58   10.35
+   250.0    0.00    1.23    3.28    5.53    7.35    8.27    8.10    6.97    5.24    3.38    1.75    0.55   -0.25   -0.77   -1.00   -0.65    0.94    4.50   10.34
+   255.0    0.00    1.24    3.27    5.50    7.30    8.20    8.00    6.85    5.11    3.22    1.58    0.36   -0.46   -0.99   -1.24   -0.89    0.70    4.28   10.17
+   260.0    0.00    1.24    3.27    5.48    7.26    8.14    7.93    6.76    4.98    3.07    1.39    0.14   -0.71   -1.26   -1.53   -1.21    0.36    3.93    9.84
+   265.0    0.00    1.24    3.26    5.47    7.24    8.11    7.88    6.69    4.88    2.92    1.20   -0.09   -0.97   -1.56   -1.87   -1.59   -0.08    3.45    9.36
+   270.0    0.00    1.24    3.25    5.46    7.23    8.10    7.87    6.65    4.81    2.81    1.04   -0.30   -1.23   -1.86   -2.22   -2.02   -0.59    2.86    8.74
+   275.0    0.00    1.23    3.25    5.46    7.25    8.12    7.89    6.65    4.78    2.72    0.90   -0.49   -1.47   -2.16   -2.59   -2.47   -1.16    2.19    8.01
+   280.0    0.00    1.22    3.24    5.47    7.28    8.18    7.95    6.70    4.79    2.68    0.80   -0.65   -1.68   -2.43   -2.94   -2.94   -1.75    1.46    7.20
+   285.0    0.00    1.21    3.23    5.48    7.32    8.25    8.04    6.78    4.84    2.69    0.75   -0.76   -1.86   -2.68   -3.28   -3.39   -2.34    0.71    6.36
+   290.0    0.00    1.19    3.22    5.50    7.38    8.35    8.16    6.90    4.93    2.73    0.73   -0.84   -2.00   -2.90   -3.59   -3.81   -2.91   -0.01    5.52
+   295.0    0.00    1.18    3.21    5.52    7.45    8.46    8.30    7.04    5.05    2.80    0.75   -0.89   -2.12   -3.09   -3.86   -4.19   -3.43   -0.68    4.73
+   300.0    0.00    1.16    3.20    5.55    7.53    8.59    8.45    7.20    5.19    2.90    0.79   -0.91   -2.21   -3.25   -4.10   -4.52   -3.87   -1.26    4.03
+   305.0    0.00    1.13    3.19    5.57    7.60    8.71    8.61    7.37    5.33    3.01    0.85   -0.91   -2.28   -3.39   -4.31   -4.80   -4.24   -1.73    3.44
+   310.0    0.00    1.11    3.17    5.59    7.67    8.83    8.77    7.53    5.48    3.13    0.91   -0.91   -2.34   -3.51   -4.48   -5.02   -4.51   -2.08    2.97
+   315.0    0.00    1.08    3.14    5.60    7.74    8.95    8.91    7.69    5.62    3.23    0.97   -0.91   -2.40   -3.62   -4.63   -5.19   -4.70   -2.32    2.64
+   320.0    0.00    1.05    3.11    5.60    7.79    9.04    9.04    7.82    5.74    3.32    1.02   -0.91   -2.45   -3.72   -4.76   -5.32   -4.81   -2.45    2.43
+   325.0    0.00    1.01    3.08    5.60    7.83    9.12    9.15    7.93    5.85    3.40    1.06   -0.92   -2.51   -3.82   -4.86   -5.41   -4.87   -2.49    2.34
+   330.0    0.00    0.97    3.03    5.58    7.85    9.18    9.23    8.02    5.92    3.45    1.08   -0.94   -2.57   -3.91   -4.96   -5.47   -4.88   -2.46    2.33
+   335.0    0.00    0.93    2.98    5.54    7.85    9.22    9.28    8.08    5.98    3.49    1.09   -0.96   -2.63   -3.99   -5.04   -5.52   -4.86   -2.38    2.39
+   340.0    0.00    0.88    2.92    5.50    7.83    9.23    9.32    8.12    6.01    3.51    1.09   -0.98   -2.67   -4.06   -5.11   -5.55   -4.82   -2.28    2.50
+   345.0    0.00    0.84    2.85    5.44    7.79    9.22    9.33    8.14    6.03    3.53    1.10   -0.99   -2.70   -4.10   -5.16   -5.57   -4.79   -2.18    2.63
+   350.0    0.00    0.79    2.78    5.36    7.74    9.19    9.32    8.15    6.04    3.54    1.11   -0.99   -2.71   -4.13   -5.18   -5.58   -4.75   -2.08    2.77
+   355.0    0.00    0.73    2.69    5.27    7.67    9.15    9.30    8.15    6.06    3.56    1.13   -0.96   -2.69   -4.11   -5.18   -5.57   -4.71   -1.99    2.92
+   360.0    0.00    0.68    2.60    5.17    7.58    9.09    9.28    8.15    6.07    3.59    1.18   -0.91   -2.63   -4.06   -5.14   -5.54   -4.67   -1.90    3.06
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -3.07     -1.05     67.21                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.02   -0.10   -0.28   -0.58   -1.03   -1.62   -2.30   -2.96   -3.44   -3.64   -3.50   -3.06   -2.41   -1.58   -0.45    1.31    4.14    8.34
+     0.0    0.00    0.56    0.90    0.92    0.57   -0.12   -1.05   -2.08   -3.07   -3.88   -4.44   -4.71   -4.74   -4.55   -4.15   -3.40   -2.04    0.38    4.30
+     5.0    0.00    0.59    0.97    1.03    0.71    0.05   -0.87   -1.90   -2.89   -3.71   -4.26   -4.54   -4.58   -4.41   -4.02   -3.27   -1.88    0.60    4.60
+    10.0    0.00    0.60    1.02    1.13    0.85    0.21   -0.69   -1.72   -2.71   -3.52   -4.07   -4.35   -4.38   -4.21   -3.82   -3.06   -1.64    0.89    4.97
+    15.0    0.00    0.62    1.07    1.22    0.98    0.37   -0.52   -1.54   -2.52   -3.33   -3.87   -4.13   -4.15   -3.96   -3.55   -2.78   -1.32    1.27    5.39
+    20.0    0.00    0.62    1.10    1.29    1.10    0.52   -0.35   -1.36   -2.34   -3.14   -3.66   -3.90   -3.89   -3.67   -3.23   -2.41   -0.91    1.72    5.87
+    25.0    0.00    0.63    1.13    1.35    1.20    0.66   -0.19   -1.19   -2.16   -2.94   -3.45   -3.67   -3.62   -3.35   -2.86   -1.99   -0.42    2.25    6.38
+    30.0    0.00    0.62    1.14    1.40    1.28    0.77   -0.05   -1.03   -1.98   -2.76   -3.25   -3.43   -3.34   -3.02   -2.45   -1.51    0.13    2.83    6.94
+    35.0    0.00    0.61    1.14    1.42    1.33    0.86    0.07   -0.89   -1.82   -2.58   -3.05   -3.20   -3.05   -2.67   -2.03   -0.99    0.72    3.47    7.52
+    40.0    0.00    0.60    1.12    1.42    1.36    0.91    0.16   -0.77   -1.68   -2.42   -2.86   -2.97   -2.78   -2.32   -1.60   -0.46    1.33    4.13    8.12
+    45.0    0.00    0.57    1.09    1.39    1.35    0.94    0.22   -0.68   -1.57   -2.28   -2.69   -2.76   -2.52   -1.99   -1.17    0.06    1.95    4.79    8.72
+    50.0    0.00    0.54    1.05    1.35    1.32    0.94    0.25   -0.61   -1.47   -2.15   -2.54   -2.58   -2.28   -1.68   -0.77    0.56    2.55    5.44    9.32
+    55.0    0.00    0.51    0.99    1.27    1.26    0.90    0.24   -0.58   -1.41   -2.06   -2.41   -2.41   -2.06   -1.40   -0.41    1.01    3.10    6.06    9.92
+    60.0    0.00    0.47    0.91    1.18    1.16    0.82    0.20   -0.59   -1.37   -1.99   -2.32   -2.28   -1.88   -1.16   -0.10    1.42    3.59    6.63   10.49
+    65.0    0.00    0.42    0.82    1.05    1.03    0.70    0.12   -0.63   -1.37   -1.96   -2.25   -2.18   -1.74   -0.96    0.17    1.75    4.01    7.13   11.04
+    70.0    0.00    0.37    0.71    0.91    0.87    0.55    0.00   -0.71   -1.41   -1.96   -2.22   -2.11   -1.63   -0.81    0.37    2.02    4.35    7.56   11.54
+    75.0    0.00    0.32    0.60    0.75    0.68    0.37   -0.16   -0.82   -1.49   -2.00   -2.22   -2.08   -1.57   -0.70    0.52    2.22    4.61    7.90   12.00
+    80.0    0.00    0.26    0.47    0.56    0.47    0.15   -0.35   -0.98   -1.61   -2.08   -2.27   -2.09   -1.54   -0.64    0.62    2.35    4.79    8.16   12.38
+    85.0    0.00    0.19    0.34    0.36    0.23   -0.09   -0.58   -1.18   -1.76   -2.20   -2.36   -2.15   -1.57   -0.63    0.65    2.41    4.88    8.32   12.68
+    90.0    0.00    0.13    0.19    0.15   -0.03   -0.37   -0.85   -1.41   -1.96   -2.36   -2.49   -2.25   -1.63   -0.67    0.64    2.40    4.89    8.38   12.88
+    95.0    0.00    0.06    0.05   -0.07   -0.30   -0.66   -1.13   -1.68   -2.20   -2.57   -2.66   -2.39   -1.74   -0.75    0.57    2.34    4.83    8.34   12.96
+   100.0    0.00   -0.01   -0.10   -0.30   -0.59   -0.97   -1.45   -1.97   -2.47   -2.81   -2.87   -2.57   -1.88   -0.87    0.46    2.22    4.68    8.21   12.90
+   105.0    0.00   -0.08   -0.25   -0.52   -0.87   -1.29   -1.78   -2.29   -2.77   -3.09   -3.12   -2.79   -2.07   -1.03    0.30    2.04    4.47    7.96   12.70
+   110.0    0.00   -0.15   -0.40   -0.75   -1.16   -1.62   -2.12   -2.63   -3.09   -3.39   -3.40   -3.04   -2.30   -1.24    0.09    1.80    4.18    7.62   12.36
+   115.0    0.00   -0.21   -0.55   -0.97   -1.44   -1.94   -2.45   -2.97   -3.43   -3.71   -3.70   -3.32   -2.56   -1.49   -0.17    1.51    3.82    7.19   11.87
+   120.0    0.00   -0.27   -0.68   -1.17   -1.70   -2.24   -2.79   -3.31   -3.76   -4.04   -4.02   -3.62   -2.85   -1.79   -0.48    1.16    3.40    6.67   11.27
+   125.0    0.00   -0.34   -0.81   -1.37   -1.95   -2.53   -3.10   -3.64   -4.09   -4.36   -4.34   -3.94   -3.17   -2.12   -0.83    0.76    2.92    6.09   10.56
+   130.0    0.00   -0.39   -0.93   -1.54   -2.17   -2.79   -3.38   -3.94   -4.40   -4.68   -4.65   -4.26   -3.51   -2.48   -1.23    0.31    2.40    5.46    9.79
+   135.0    0.00   -0.44   -1.03   -1.69   -2.37   -3.02   -3.63   -4.21   -4.68   -4.96   -4.95   -4.58   -3.86   -2.86   -1.66   -0.18    1.84    4.80    9.00
+   140.0    0.00   -0.49   -1.13   -1.82   -2.53   -3.20   -3.84   -4.43   -4.92   -5.22   -5.22   -4.88   -4.20   -3.26   -2.11   -0.69    1.27    4.15    8.22
+   145.0    0.00   -0.53   -1.20   -1.93   -2.65   -3.34   -3.99   -4.60   -5.10   -5.42   -5.46   -5.15   -4.53   -3.66   -2.57   -1.20    0.71    3.52    7.49
+   150.0    0.00   -0.57   -1.26   -2.00   -2.73   -3.43   -4.09   -4.71   -5.23   -5.57   -5.64   -5.39   -4.83   -4.03   -3.02   -1.69    0.18    2.95    6.85
+   155.0    0.00   -0.60   -1.31   -2.05   -2.78   -3.47   -4.14   -4.76   -5.30   -5.66   -5.77   -5.57   -5.09   -4.37   -3.42   -2.15   -0.29    2.47    6.34
+   160.0    0.00   -0.62   -1.34   -2.07   -2.78   -3.46   -4.13   -4.76   -5.31   -5.69   -5.83   -5.69   -5.28   -4.64   -3.77   -2.54   -0.69    2.09    5.97
+   165.0    0.00   -0.64   -1.36   -2.07   -2.75   -3.41   -4.06   -4.69   -5.25   -5.66   -5.84   -5.74   -5.40   -4.84   -4.04   -2.85   -1.00    1.82    5.76
+   170.0    0.00   -0.65   -1.36   -2.04   -2.69   -3.31   -3.94   -4.57   -5.14   -5.56   -5.77   -5.72   -5.44   -4.95   -4.21   -3.05   -1.19    1.69    5.70
+   175.0    0.00   -0.66   -1.34   -1.99   -2.59   -3.18   -3.79   -4.41   -4.98   -5.41   -5.64   -5.62   -5.38   -4.95   -4.26   -3.14   -1.26    1.68    5.81
+   180.0    0.00   -0.66   -1.32   -1.92   -2.47   -3.01   -3.59   -4.20   -4.77   -5.21   -5.44   -5.44   -5.24   -4.84   -4.20   -3.10   -1.21    1.81    6.06
+   185.0    0.00   -0.66   -1.28   -1.83   -2.32   -2.82   -3.37   -3.96   -4.53   -4.97   -5.20   -5.20   -5.00   -4.63   -4.02   -2.94   -1.03    2.06    6.43
+   190.0    0.00   -0.65   -1.23   -1.73   -2.17   -2.62   -3.13   -3.70   -4.26   -4.69   -4.91   -4.89   -4.69   -4.32   -3.73   -2.66   -0.74    2.42    6.91
+   195.0    0.00   -0.63   -1.18   -1.62   -2.00   -2.40   -2.88   -3.43   -3.98   -4.39   -4.58   -4.54   -4.31   -3.93   -3.34   -2.28   -0.34    2.88    7.47
+   200.0    0.00   -0.61   -1.12   -1.50   -1.82   -2.17   -2.62   -3.15   -3.68   -4.07   -4.23   -4.15   -3.87   -3.47   -2.87   -1.81    0.15    3.41    8.08
+   205.0    0.00   -0.59   -1.05   -1.38   -1.64   -1.95   -2.36   -2.88   -3.39   -3.75   -3.87   -3.74   -3.41   -2.97   -2.35   -1.27    0.70    4.00    8.73
+   210.0    0.00   -0.57   -0.99   -1.26   -1.47   -1.73   -2.12   -2.61   -3.10   -3.44   -3.51   -3.32   -2.94   -2.45   -1.79   -0.70    1.29    4.62    9.38
+   215.0    0.00   -0.54   -0.92   -1.14   -1.30   -1.52   -1.88   -2.35   -2.82   -3.13   -3.17   -2.92   -2.48   -1.93   -1.23   -0.11    1.90    5.25   10.03
+   220.0    0.00   -0.51   -0.84   -1.02   -1.14   -1.33   -1.66   -2.11   -2.56   -2.84   -2.84   -2.55   -2.05   -1.44   -0.69    0.47    2.50    5.87   10.63
+   225.0    0.00   -0.48   -0.77   -0.91   -1.00   -1.15   -1.46   -1.89   -2.32   -2.58   -2.55   -2.21   -1.65   -0.99   -0.19    1.00    3.06    6.43   11.17
+   230.0    0.00   -0.44   -0.70   -0.81   -0.87   -1.00   -1.28   -1.70   -2.11   -2.36   -2.30   -1.92   -1.31   -0.60    0.25    1.48    3.55    6.92   11.63
+   235.0    0.00   -0.41   -0.64   -0.72   -0.75   -0.86   -1.13   -1.53   -1.94   -2.17   -2.09   -1.68   -1.04   -0.27    0.62    1.88    3.96    7.31   11.99
+   240.0    0.00   -0.37   -0.57   -0.63   -0.65   -0.75   -1.01   -1.40   -1.80   -2.02   -1.93   -1.50   -0.83   -0.02    0.90    2.18    4.25    7.58   12.22
+   245.0    0.00   -0.33   -0.51   -0.56   -0.57   -0.67   -0.92   -1.30   -1.69   -1.92   -1.83   -1.39   -0.68    0.15    1.10    2.38    4.42    7.70   12.31
+   250.0    0.00   -0.29   -0.45   -0.49   -0.51   -0.60   -0.85   -1.24   -1.64   -1.87   -1.78   -1.33   -0.61    0.25    1.21    2.47    4.47    7.68   12.25
+   255.0    0.00   -0.25   -0.39   -0.44   -0.46   -0.57   -0.82   -1.22   -1.62   -1.86   -1.78   -1.33   -0.60    0.28    1.24    2.46    4.37    7.50   12.04
+   260.0    0.00   -0.21   -0.34   -0.39   -0.43   -0.55   -0.83   -1.23   -1.65   -1.91   -1.84   -1.39   -0.65    0.24    1.18    2.34    4.15    7.17   11.68
+   265.0    0.00   -0.17   -0.29   -0.35   -0.41   -0.56   -0.86   -1.28   -1.73   -2.00   -1.95   -1.50   -0.75    0.13    1.05    2.13    3.82    6.71   11.18
+   270.0    0.00   -0.13   -0.24   -0.31   -0.40   -0.59   -0.91   -1.37   -1.84   -2.14   -2.10   -1.66   -0.91   -0.03    0.85    1.84    3.38    6.14   10.57
+   275.0    0.00   -0.09   -0.19   -0.28   -0.41   -0.63   -0.99   -1.49   -1.99   -2.32   -2.30   -1.87   -1.11   -0.25    0.59    1.48    2.88    5.48    9.87
+   280.0    0.00   -0.05   -0.14   -0.25   -0.42   -0.68   -1.09   -1.62   -2.16   -2.52   -2.53   -2.11   -1.36   -0.51    0.28    1.08    2.33    4.77    9.10
+   285.0    0.00   -0.01   -0.09   -0.22   -0.43   -0.74   -1.20   -1.78   -2.36   -2.75   -2.78   -2.38   -1.65   -0.81   -0.07    0.64    1.75    4.05    8.31
+   290.0    0.00    0.03   -0.04   -0.19   -0.44   -0.81   -1.32   -1.94   -2.56   -3.00   -3.06   -2.68   -1.97   -1.15   -0.45    0.18    1.18    3.35    7.52
+   295.0    0.00    0.07    0.01   -0.16   -0.45   -0.87   -1.43   -2.11   -2.77   -3.24   -3.34   -3.00   -2.31   -1.52   -0.85   -0.27    0.64    2.69    6.77
+   300.0    0.00    0.11    0.07   -0.12   -0.45   -0.92   -1.54   -2.27   -2.97   -3.48   -3.62   -3.32   -2.67   -1.91   -1.26   -0.72    0.13    2.10    6.07
+   305.0    0.00    0.16    0.13   -0.08   -0.44   -0.97   -1.64   -2.41   -3.16   -3.71   -3.89   -3.64   -3.04   -2.31   -1.68   -1.14   -0.32    1.59    5.46
+   310.0    0.00    0.20    0.19   -0.03   -0.42   -0.99   -1.71   -2.53   -3.32   -3.91   -4.14   -3.94   -3.40   -2.71   -2.09   -1.54   -0.71    1.16    4.93
+   315.0    0.00    0.24    0.25    0.04   -0.39   -1.00   -1.77   -2.62   -3.45   -4.08   -4.36   -4.22   -3.74   -3.10   -2.49   -1.91   -1.04    0.83    4.50
+   320.0    0.00    0.28    0.32    0.11   -0.34   -0.99   -1.79   -2.69   -3.55   -4.21   -4.54   -4.47   -4.05   -3.46   -2.86   -2.25   -1.32    0.57    4.17
+   325.0    0.00    0.32    0.39    0.18   -0.27   -0.95   -1.79   -2.72   -3.61   -4.31   -4.68   -4.68   -4.33   -3.79   -3.20   -2.55   -1.55    0.37    3.93
+   330.0    0.00    0.36    0.46    0.27   -0.19   -0.89   -1.76   -2.72   -3.63   -4.36   -4.78   -4.83   -4.56   -4.08   -3.50   -2.82   -1.75    0.24    3.77
+   335.0    0.00    0.40    0.54    0.37   -0.09   -0.81   -1.70   -2.68   -3.61   -4.37   -4.83   -4.94   -4.74   -4.31   -3.76   -3.04   -1.90    0.15    3.69
+   340.0    0.00    0.44    0.61    0.47    0.02   -0.70   -1.61   -2.61   -3.56   -4.34   -4.83   -4.99   -4.85   -4.49   -3.96   -3.23   -2.02    0.11    3.68
+   345.0    0.00    0.47    0.69    0.58    0.15   -0.58   -1.50   -2.51   -3.48   -4.27   -4.79   -4.99   -4.91   -4.60   -4.11   -3.36   -2.10    0.11    3.74
+   350.0    0.00    0.51    0.76    0.70    0.28   -0.43   -1.37   -2.39   -3.36   -4.17   -4.70   -4.94   -4.91   -4.65   -4.19   -3.44   -2.14    0.15    3.86
+   355.0    0.00    0.54    0.84    0.81    0.42   -0.28   -1.21   -2.24   -3.23   -4.03   -4.59   -4.85   -4.85   -4.63   -4.20   -3.46   -2.12    0.23    4.05
+   360.0    0.00    0.56    0.90    0.92    0.57   -0.12   -1.05   -2.08   -3.07   -3.88   -4.44   -4.71   -4.74   -4.55   -4.15   -3.40   -2.04    0.38    4.30
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TRM14532.00     NONE                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               4    27-JAN-03 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+     -0.18     -3.17     74.69                              NORTH / EAST / UP   
+   NOAZI    0.00    0.65    2.39    4.68    6.80    8.13    8.29    7.29    5.45    3.27    1.20   -0.48   -1.76   -2.73   -3.40   -3.48   -2.40    0.56    5.75
+     0.0    0.00    0.68    2.60    5.17    7.58    9.09    9.28    8.15    6.07    3.59    1.18   -0.91   -2.63   -4.06   -5.14   -5.54   -4.67   -1.90    3.06
+     5.0    0.00    0.62    2.51    5.06    7.48    9.02    9.24    8.15    6.10    3.64    1.24   -0.82   -2.53   -3.96   -5.05   -5.46   -4.60   -1.80    3.20
+    10.0    0.00    0.56    2.40    4.94    7.37    8.94    9.21    8.16    6.14    3.70    1.33   -0.71   -2.40   -3.81   -4.91   -5.35   -4.49   -1.69    3.35
+    15.0    0.00    0.50    2.30    4.81    7.24    8.85    9.17    8.17    6.19    3.79    1.45   -0.56   -2.22   -3.62   -4.72   -5.17   -4.34   -1.55    3.51
+    20.0    0.00    0.44    2.18    4.67    7.11    8.75    9.13    8.18    6.26    3.90    1.59   -0.38   -2.01   -3.38   -4.48   -4.95   -4.14   -1.36    3.68
+    25.0    0.00    0.39    2.07    4.52    6.97    8.65    9.08    8.20    6.34    4.02    1.75   -0.19   -1.77   -3.11   -4.18   -4.66   -3.88   -1.13    3.88
+    30.0    0.00    0.33    1.95    4.37    6.82    8.53    9.03    8.22    6.41    4.15    1.92    0.03   -1.51   -2.81   -3.85   -4.33   -3.56   -0.84    4.11
+    35.0    0.00    0.27    1.84    4.22    6.66    8.41    8.97    8.23    6.49    4.28    2.10    0.25   -1.24   -2.49   -3.50   -3.96   -3.20   -0.50    4.37
+    40.0    0.00    0.22    1.73    4.06    6.50    8.28    8.90    8.23    6.56    4.40    2.27    0.47   -0.97   -2.16   -3.13   -3.56   -2.79   -0.12    4.67
+    45.0    0.00    0.16    1.62    3.91    6.33    8.14    8.81    8.21    6.61    4.51    2.43    0.68   -0.71   -1.85   -2.77   -3.16   -2.37    0.29    5.00
+    50.0    0.00    0.12    1.51    3.76    6.17    7.99    8.71    8.17    6.63    4.59    2.56    0.86   -0.48   -1.56   -2.43   -2.76   -1.94    0.73    5.37
+    55.0    0.00    0.07    1.41    3.61    6.00    7.84    8.59    8.11    6.63    4.65    2.67    1.01   -0.28   -1.31   -2.12   -2.40   -1.53    1.17    5.77
+    60.0    0.00    0.03    1.32    3.48    5.83    7.67    8.46    8.02    6.60    4.67    2.73    1.12   -0.12   -1.11   -1.86   -2.08   -1.14    1.61    6.20
+    65.0    0.00    0.00    1.24    3.35    5.67    7.51    8.31    7.91    6.53    4.65    2.76    1.18   -0.02   -0.96   -1.66   -1.82   -0.80    2.02    6.64
+    70.0    0.00   -0.03    1.17    3.23    5.53    7.34    8.15    7.78    6.44    4.59    2.74    1.20    0.03   -0.87   -1.52   -1.61   -0.51    2.40    7.08
+    75.0    0.00   -0.05    1.11    3.13    5.39    7.18    7.99    7.63    6.31    4.49    2.67    1.16    0.02   -0.85   -1.45   -1.47   -0.28    2.74    7.51
+    80.0    0.00   -0.07    1.06    3.05    5.27    7.03    7.83    7.47    6.16    4.36    2.57    1.08   -0.04   -0.88   -1.44   -1.39   -0.11    3.01    7.90
+    85.0    0.00   -0.08    1.03    2.99    5.17    6.90    7.67    7.30    5.99    4.21    2.42    0.95   -0.15   -0.96   -1.48   -1.38   -0.02    3.21    8.23
+    90.0    0.00   -0.08    1.02    2.95    5.10    6.79    7.52    7.13    5.82    4.03    2.25    0.78   -0.31   -1.10   -1.58   -1.42    0.01    3.33    8.48
+    95.0    0.00   -0.08    1.02    2.93    5.04    6.70    7.40    6.98    5.64    3.84    2.05    0.58   -0.50   -1.27   -1.73   -1.53   -0.04    3.36    8.62
+   100.0    0.00   -0.06    1.03    2.93    5.02    6.64    7.29    6.83    5.46    3.64    1.84    0.36   -0.72   -1.49   -1.91   -1.68   -0.15    3.28    8.63
+   105.0    0.00   -0.05    1.06    2.96    5.03    6.60    7.21    6.70    5.30    3.44    1.61    0.12   -0.97   -1.73   -2.14   -1.89   -0.35    3.10    8.49
+   110.0    0.00   -0.02    1.11    3.01    5.06    6.60    7.15    6.59    5.14    3.24    1.39   -0.13   -1.23   -1.99   -2.39   -2.14   -0.62    2.80    8.21
+   115.0    0.00    0.01    1.17    3.09    5.12    6.62    7.12    6.50    5.00    3.06    1.16   -0.38   -1.50   -2.27   -2.68   -2.44   -0.96    2.40    7.79
+   120.0    0.00    0.05    1.25    3.18    5.21    6.67    7.12    6.44    4.87    2.88    0.94   -0.64   -1.78   -2.57   -3.00   -2.79   -1.37    1.91    7.24
+   125.0    0.00    0.09    1.34    3.30    5.32    6.74    7.13    6.38    4.75    2.71    0.73   -0.89   -2.07   -2.88   -3.34   -3.18   -1.83    1.34    6.61
+   130.0    0.00    0.14    1.44    3.43    5.45    6.84    7.16    6.35    4.65    2.55    0.52   -1.14   -2.35   -3.20   -3.70   -3.59   -2.33    0.73    5.91
+   135.0    0.00    0.20    1.55    3.58    5.60    6.95    7.21    6.32    4.56    2.40    0.32   -1.38   -2.64   -3.53   -4.07   -4.02   -2.85    0.10    5.21
+   140.0    0.00    0.25    1.67    3.73    5.76    7.08    7.28    6.31    4.48    2.26    0.13   -1.61   -2.92   -3.85   -4.43   -4.45   -3.36   -0.51    4.55
+   145.0    0.00    0.31    1.79    3.90    5.93    7.21    7.35    6.31    4.41    2.13   -0.05   -1.84   -3.18   -4.16   -4.79   -4.85   -3.83   -1.05    3.96
+   150.0    0.00    0.38    1.92    4.07    6.11    7.36    7.43    6.32    4.35    2.02   -0.21   -2.04   -3.42   -4.44   -5.10   -5.21   -4.23   -1.50    3.49
+   155.0    0.00    0.44    2.05    4.25    6.29    7.51    7.53    6.34    4.31    1.92   -0.35   -2.21   -3.63   -4.67   -5.37   -5.50   -4.55   -1.84    3.18
+   160.0    0.00    0.50    2.18    4.42    6.47    7.66    7.62    6.38    4.28    1.85   -0.45   -2.35   -3.79   -4.86   -5.56   -5.70   -4.74   -2.03    3.02
+   165.0    0.00    0.57    2.30    4.59    6.65    7.81    7.73    6.43    4.28    1.81   -0.52   -2.44   -3.89   -4.96   -5.67   -5.79   -4.82   -2.07    3.03
+   170.0    0.00    0.63    2.43    4.75    6.82    7.97    7.84    6.49    4.30    1.80   -0.54   -2.47   -3.92   -4.99   -5.67   -5.76   -4.75   -1.96    3.20
+   175.0    0.00    0.70    2.55    4.91    6.98    8.11    7.95    6.57    4.36    1.84   -0.51   -2.43   -3.87   -4.91   -5.57   -5.62   -4.56   -1.71    3.52
+   180.0    0.00    0.76    2.66    5.05    7.13    8.25    8.07    6.67    4.44    1.93   -0.41   -2.31   -3.73   -4.74   -5.35   -5.35   -4.24   -1.33    3.95
+   185.0    0.00    0.82    2.76    5.18    7.27    8.38    8.19    6.78    4.56    2.06   -0.26   -2.12   -3.50   -4.46   -5.03   -4.98   -3.81   -0.86    4.46
+   190.0    0.00    0.87    2.86    5.29    7.39    8.49    8.30    6.90    4.70    2.23   -0.05   -1.86   -3.19   -4.10   -4.61   -4.51   -3.30   -0.30    5.05
+   195.0    0.00    0.92    2.95    5.39    7.49    8.59    8.40    7.02    4.86    2.43    0.21   -1.54   -2.81   -3.66   -4.13   -3.99   -2.73    0.30    5.66
+   200.0    0.00    0.97    3.02    5.48    7.56    8.66    8.49    7.14    5.02    2.66    0.51   -1.18   -2.38   -3.18   -3.59   -3.42   -2.14    0.92    6.30
+   205.0    0.00    1.02    3.09    5.54    7.62    8.72    8.56    7.25    5.19    2.90    0.82   -0.79   -1.92   -2.67   -3.04   -2.84   -1.54    1.55    6.93
+   210.0    0.00    1.06    3.14    5.59    7.65    8.75    8.60    7.34    5.34    3.12    1.13   -0.41   -1.47   -2.16   -2.50   -2.28   -0.96    2.15    7.54
+   215.0    0.00    1.09    3.19    5.62    7.66    8.75    8.62    7.40    5.46    3.33    1.42   -0.04   -1.04   -1.69   -2.00   -1.76   -0.42    2.72    8.13
+   220.0    0.00    1.12    3.22    5.63    7.65    8.73    8.61    7.42    5.55    3.49    1.66    0.27   -0.67   -1.27   -1.57   -1.31    0.06    3.24    8.68
+   225.0    0.00    1.15    3.25    5.64    7.63    8.68    8.57    7.42    5.60    3.61    1.84    0.52   -0.37   -0.94   -1.22   -0.94    0.46    3.70    9.18
+   230.0    0.00    1.18    3.26    5.63    7.58    8.61    8.50    7.37    5.60    3.67    1.96    0.69   -0.16   -0.70   -0.97   -0.67    0.77    4.07    9.62
+   235.0    0.00    1.20    3.27    5.61    7.53    8.53    8.42    7.30    5.56    3.67    2.01    0.78   -0.04   -0.57   -0.82   -0.51    0.97    4.35    9.97
+   240.0    0.00    1.21    3.28    5.58    7.47    8.45    8.31    7.20    5.48    3.61    1.98    0.77   -0.03   -0.55   -0.78   -0.45    1.08    4.52   10.22
+   245.0    0.00    1.22    3.28    5.56    7.41    8.35    8.21    7.09    5.37    3.51    1.89    0.69   -0.10   -0.62   -0.85   -0.50    1.06    4.58   10.35
+   250.0    0.00    1.23    3.28    5.53    7.35    8.27    8.10    6.97    5.24    3.38    1.75    0.55   -0.25   -0.77   -1.00   -0.65    0.94    4.50   10.34
+   255.0    0.00    1.24    3.27    5.50    7.30    8.20    8.00    6.85    5.11    3.22    1.58    0.36   -0.46   -0.99   -1.24   -0.89    0.70    4.28   10.17
+   260.0    0.00    1.24    3.27    5.48    7.26    8.14    7.93    6.76    4.98    3.07    1.39    0.14   -0.71   -1.26   -1.53   -1.21    0.36    3.93    9.84
+   265.0    0.00    1.24    3.26    5.47    7.24    8.11    7.88    6.69    4.88    2.92    1.20   -0.09   -0.97   -1.56   -1.87   -1.59   -0.08    3.45    9.36
+   270.0    0.00    1.24    3.25    5.46    7.23    8.10    7.87    6.65    4.81    2.81    1.04   -0.30   -1.23   -1.86   -2.22   -2.02   -0.59    2.86    8.74
+   275.0    0.00    1.23    3.25    5.46    7.25    8.12    7.89    6.65    4.78    2.72    0.90   -0.49   -1.47   -2.16   -2.59   -2.47   -1.16    2.19    8.01
+   280.0    0.00    1.22    3.24    5.47    7.28    8.18    7.95    6.70    4.79    2.68    0.80   -0.65   -1.68   -2.43   -2.94   -2.94   -1.75    1.46    7.20
+   285.0    0.00    1.21    3.23    5.48    7.32    8.25    8.04    6.78    4.84    2.69    0.75   -0.76   -1.86   -2.68   -3.28   -3.39   -2.34    0.71    6.36
+   290.0    0.00    1.19    3.22    5.50    7.38    8.35    8.16    6.90    4.93    2.73    0.73   -0.84   -2.00   -2.90   -3.59   -3.81   -2.91   -0.01    5.52
+   295.0    0.00    1.18    3.21    5.52    7.45    8.46    8.30    7.04    5.05    2.80    0.75   -0.89   -2.12   -3.09   -3.86   -4.19   -3.43   -0.68    4.73
+   300.0    0.00    1.16    3.20    5.55    7.53    8.59    8.45    7.20    5.19    2.90    0.79   -0.91   -2.21   -3.25   -4.10   -4.52   -3.87   -1.26    4.03
+   305.0    0.00    1.13    3.19    5.57    7.60    8.71    8.61    7.37    5.33    3.01    0.85   -0.91   -2.28   -3.39   -4.31   -4.80   -4.24   -1.73    3.44
+   310.0    0.00    1.11    3.17    5.59    7.67    8.83    8.77    7.53    5.48    3.13    0.91   -0.91   -2.34   -3.51   -4.48   -5.02   -4.51   -2.08    2.97
+   315.0    0.00    1.08    3.14    5.60    7.74    8.95    8.91    7.69    5.62    3.23    0.97   -0.91   -2.40   -3.62   -4.63   -5.19   -4.70   -2.32    2.64
+   320.0    0.00    1.05    3.11    5.60    7.79    9.04    9.04    7.82    5.74    3.32    1.02   -0.91   -2.45   -3.72   -4.76   -5.32   -4.81   -2.45    2.43
+   325.0    0.00    1.01    3.08    5.60    7.83    9.12    9.15    7.93    5.85    3.40    1.06   -0.92   -2.51   -3.82   -4.86   -5.41   -4.87   -2.49    2.34
+   330.0    0.00    0.97    3.03    5.58    7.85    9.18    9.23    8.02    5.92    3.45    1.08   -0.94   -2.57   -3.91   -4.96   -5.47   -4.88   -2.46    2.33
+   335.0    0.00    0.93    2.98    5.54    7.85    9.22    9.28    8.08    5.98    3.49    1.09   -0.96   -2.63   -3.99   -5.04   -5.52   -4.86   -2.38    2.39
+   340.0    0.00    0.88    2.92    5.50    7.83    9.23    9.32    8.12    6.01    3.51    1.09   -0.98   -2.67   -4.06   -5.11   -5.55   -4.82   -2.28    2.50
+   345.0    0.00    0.84    2.85    5.44    7.79    9.22    9.33    8.14    6.03    3.53    1.10   -0.99   -2.70   -4.10   -5.16   -5.57   -4.79   -2.18    2.63
+   350.0    0.00    0.79    2.78    5.36    7.74    9.19    9.32    8.15    6.04    3.54    1.11   -0.99   -2.71   -4.13   -5.18   -5.58   -4.75   -2.08    2.77
+   355.0    0.00    0.73    2.69    5.27    7.67    9.15    9.30    8.15    6.06    3.56    1.13   -0.96   -2.69   -4.11   -5.18   -5.57   -4.71   -1.99    2.92
+   360.0    0.00    0.68    2.60    5.17    7.58    9.09    9.28    8.15    6.07    3.59    1.18   -0.91   -2.63   -4.06   -5.14   -5.54   -4.67   -1.90    3.06
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -3.07     -1.05     67.21                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.02   -0.10   -0.28   -0.58   -1.03   -1.62   -2.30   -2.96   -3.44   -3.64   -3.50   -3.06   -2.41   -1.58   -0.45    1.31    4.14    8.34
+     0.0    0.00    0.56    0.90    0.92    0.57   -0.12   -1.05   -2.08   -3.07   -3.88   -4.44   -4.71   -4.74   -4.55   -4.15   -3.40   -2.04    0.38    4.30
+     5.0    0.00    0.59    0.97    1.03    0.71    0.05   -0.87   -1.90   -2.89   -3.71   -4.26   -4.54   -4.58   -4.41   -4.02   -3.27   -1.88    0.60    4.60
+    10.0    0.00    0.60    1.02    1.13    0.85    0.21   -0.69   -1.72   -2.71   -3.52   -4.07   -4.35   -4.38   -4.21   -3.82   -3.06   -1.64    0.89    4.97
+    15.0    0.00    0.62    1.07    1.22    0.98    0.37   -0.52   -1.54   -2.52   -3.33   -3.87   -4.13   -4.15   -3.96   -3.55   -2.78   -1.32    1.27    5.39
+    20.0    0.00    0.62    1.10    1.29    1.10    0.52   -0.35   -1.36   -2.34   -3.14   -3.66   -3.90   -3.89   -3.67   -3.23   -2.41   -0.91    1.72    5.87
+    25.0    0.00    0.63    1.13    1.35    1.20    0.66   -0.19   -1.19   -2.16   -2.94   -3.45   -3.67   -3.62   -3.35   -2.86   -1.99   -0.42    2.25    6.38
+    30.0    0.00    0.62    1.14    1.40    1.28    0.77   -0.05   -1.03   -1.98   -2.76   -3.25   -3.43   -3.34   -3.02   -2.45   -1.51    0.13    2.83    6.94
+    35.0    0.00    0.61    1.14    1.42    1.33    0.86    0.07   -0.89   -1.82   -2.58   -3.05   -3.20   -3.05   -2.67   -2.03   -0.99    0.72    3.47    7.52
+    40.0    0.00    0.60    1.12    1.42    1.36    0.91    0.16   -0.77   -1.68   -2.42   -2.86   -2.97   -2.78   -2.32   -1.60   -0.46    1.33    4.13    8.12
+    45.0    0.00    0.57    1.09    1.39    1.35    0.94    0.22   -0.68   -1.57   -2.28   -2.69   -2.76   -2.52   -1.99   -1.17    0.06    1.95    4.79    8.72
+    50.0    0.00    0.54    1.05    1.35    1.32    0.94    0.25   -0.61   -1.47   -2.15   -2.54   -2.58   -2.28   -1.68   -0.77    0.56    2.55    5.44    9.32
+    55.0    0.00    0.51    0.99    1.27    1.26    0.90    0.24   -0.58   -1.41   -2.06   -2.41   -2.41   -2.06   -1.40   -0.41    1.01    3.10    6.06    9.92
+    60.0    0.00    0.47    0.91    1.18    1.16    0.82    0.20   -0.59   -1.37   -1.99   -2.32   -2.28   -1.88   -1.16   -0.10    1.42    3.59    6.63   10.49
+    65.0    0.00    0.42    0.82    1.05    1.03    0.70    0.12   -0.63   -1.37   -1.96   -2.25   -2.18   -1.74   -0.96    0.17    1.75    4.01    7.13   11.04
+    70.0    0.00    0.37    0.71    0.91    0.87    0.55    0.00   -0.71   -1.41   -1.96   -2.22   -2.11   -1.63   -0.81    0.37    2.02    4.35    7.56   11.54
+    75.0    0.00    0.32    0.60    0.75    0.68    0.37   -0.16   -0.82   -1.49   -2.00   -2.22   -2.08   -1.57   -0.70    0.52    2.22    4.61    7.90   12.00
+    80.0    0.00    0.26    0.47    0.56    0.47    0.15   -0.35   -0.98   -1.61   -2.08   -2.27   -2.09   -1.54   -0.64    0.62    2.35    4.79    8.16   12.38
+    85.0    0.00    0.19    0.34    0.36    0.23   -0.09   -0.58   -1.18   -1.76   -2.20   -2.36   -2.15   -1.57   -0.63    0.65    2.41    4.88    8.32   12.68
+    90.0    0.00    0.13    0.19    0.15   -0.03   -0.37   -0.85   -1.41   -1.96   -2.36   -2.49   -2.25   -1.63   -0.67    0.64    2.40    4.89    8.38   12.88
+    95.0    0.00    0.06    0.05   -0.07   -0.30   -0.66   -1.13   -1.68   -2.20   -2.57   -2.66   -2.39   -1.74   -0.75    0.57    2.34    4.83    8.34   12.96
+   100.0    0.00   -0.01   -0.10   -0.30   -0.59   -0.97   -1.45   -1.97   -2.47   -2.81   -2.87   -2.57   -1.88   -0.87    0.46    2.22    4.68    8.21   12.90
+   105.0    0.00   -0.08   -0.25   -0.52   -0.87   -1.29   -1.78   -2.29   -2.77   -3.09   -3.12   -2.79   -2.07   -1.03    0.30    2.04    4.47    7.96   12.70
+   110.0    0.00   -0.15   -0.40   -0.75   -1.16   -1.62   -2.12   -2.63   -3.09   -3.39   -3.40   -3.04   -2.30   -1.24    0.09    1.80    4.18    7.62   12.36
+   115.0    0.00   -0.21   -0.55   -0.97   -1.44   -1.94   -2.45   -2.97   -3.43   -3.71   -3.70   -3.32   -2.56   -1.49   -0.17    1.51    3.82    7.19   11.87
+   120.0    0.00   -0.27   -0.68   -1.17   -1.70   -2.24   -2.79   -3.31   -3.76   -4.04   -4.02   -3.62   -2.85   -1.79   -0.48    1.16    3.40    6.67   11.27
+   125.0    0.00   -0.34   -0.81   -1.37   -1.95   -2.53   -3.10   -3.64   -4.09   -4.36   -4.34   -3.94   -3.17   -2.12   -0.83    0.76    2.92    6.09   10.56
+   130.0    0.00   -0.39   -0.93   -1.54   -2.17   -2.79   -3.38   -3.94   -4.40   -4.68   -4.65   -4.26   -3.51   -2.48   -1.23    0.31    2.40    5.46    9.79
+   135.0    0.00   -0.44   -1.03   -1.69   -2.37   -3.02   -3.63   -4.21   -4.68   -4.96   -4.95   -4.58   -3.86   -2.86   -1.66   -0.18    1.84    4.80    9.00
+   140.0    0.00   -0.49   -1.13   -1.82   -2.53   -3.20   -3.84   -4.43   -4.92   -5.22   -5.22   -4.88   -4.20   -3.26   -2.11   -0.69    1.27    4.15    8.22
+   145.0    0.00   -0.53   -1.20   -1.93   -2.65   -3.34   -3.99   -4.60   -5.10   -5.42   -5.46   -5.15   -4.53   -3.66   -2.57   -1.20    0.71    3.52    7.49
+   150.0    0.00   -0.57   -1.26   -2.00   -2.73   -3.43   -4.09   -4.71   -5.23   -5.57   -5.64   -5.39   -4.83   -4.03   -3.02   -1.69    0.18    2.95    6.85
+   155.0    0.00   -0.60   -1.31   -2.05   -2.78   -3.47   -4.14   -4.76   -5.30   -5.66   -5.77   -5.57   -5.09   -4.37   -3.42   -2.15   -0.29    2.47    6.34
+   160.0    0.00   -0.62   -1.34   -2.07   -2.78   -3.46   -4.13   -4.76   -5.31   -5.69   -5.83   -5.69   -5.28   -4.64   -3.77   -2.54   -0.69    2.09    5.97
+   165.0    0.00   -0.64   -1.36   -2.07   -2.75   -3.41   -4.06   -4.69   -5.25   -5.66   -5.84   -5.74   -5.40   -4.84   -4.04   -2.85   -1.00    1.82    5.76
+   170.0    0.00   -0.65   -1.36   -2.04   -2.69   -3.31   -3.94   -4.57   -5.14   -5.56   -5.77   -5.72   -5.44   -4.95   -4.21   -3.05   -1.19    1.69    5.70
+   175.0    0.00   -0.66   -1.34   -1.99   -2.59   -3.18   -3.79   -4.41   -4.98   -5.41   -5.64   -5.62   -5.38   -4.95   -4.26   -3.14   -1.26    1.68    5.81
+   180.0    0.00   -0.66   -1.32   -1.92   -2.47   -3.01   -3.59   -4.20   -4.77   -5.21   -5.44   -5.44   -5.24   -4.84   -4.20   -3.10   -1.21    1.81    6.06
+   185.0    0.00   -0.66   -1.28   -1.83   -2.32   -2.82   -3.37   -3.96   -4.53   -4.97   -5.20   -5.20   -5.00   -4.63   -4.02   -2.94   -1.03    2.06    6.43
+   190.0    0.00   -0.65   -1.23   -1.73   -2.17   -2.62   -3.13   -3.70   -4.26   -4.69   -4.91   -4.89   -4.69   -4.32   -3.73   -2.66   -0.74    2.42    6.91
+   195.0    0.00   -0.63   -1.18   -1.62   -2.00   -2.40   -2.88   -3.43   -3.98   -4.39   -4.58   -4.54   -4.31   -3.93   -3.34   -2.28   -0.34    2.88    7.47
+   200.0    0.00   -0.61   -1.12   -1.50   -1.82   -2.17   -2.62   -3.15   -3.68   -4.07   -4.23   -4.15   -3.87   -3.47   -2.87   -1.81    0.15    3.41    8.08
+   205.0    0.00   -0.59   -1.05   -1.38   -1.64   -1.95   -2.36   -2.88   -3.39   -3.75   -3.87   -3.74   -3.41   -2.97   -2.35   -1.27    0.70    4.00    8.73
+   210.0    0.00   -0.57   -0.99   -1.26   -1.47   -1.73   -2.12   -2.61   -3.10   -3.44   -3.51   -3.32   -2.94   -2.45   -1.79   -0.70    1.29    4.62    9.38
+   215.0    0.00   -0.54   -0.92   -1.14   -1.30   -1.52   -1.88   -2.35   -2.82   -3.13   -3.17   -2.92   -2.48   -1.93   -1.23   -0.11    1.90    5.25   10.03
+   220.0    0.00   -0.51   -0.84   -1.02   -1.14   -1.33   -1.66   -2.11   -2.56   -2.84   -2.84   -2.55   -2.05   -1.44   -0.69    0.47    2.50    5.87   10.63
+   225.0    0.00   -0.48   -0.77   -0.91   -1.00   -1.15   -1.46   -1.89   -2.32   -2.58   -2.55   -2.21   -1.65   -0.99   -0.19    1.00    3.06    6.43   11.17
+   230.0    0.00   -0.44   -0.70   -0.81   -0.87   -1.00   -1.28   -1.70   -2.11   -2.36   -2.30   -1.92   -1.31   -0.60    0.25    1.48    3.55    6.92   11.63
+   235.0    0.00   -0.41   -0.64   -0.72   -0.75   -0.86   -1.13   -1.53   -1.94   -2.17   -2.09   -1.68   -1.04   -0.27    0.62    1.88    3.96    7.31   11.99
+   240.0    0.00   -0.37   -0.57   -0.63   -0.65   -0.75   -1.01   -1.40   -1.80   -2.02   -1.93   -1.50   -0.83   -0.02    0.90    2.18    4.25    7.58   12.22
+   245.0    0.00   -0.33   -0.51   -0.56   -0.57   -0.67   -0.92   -1.30   -1.69   -1.92   -1.83   -1.39   -0.68    0.15    1.10    2.38    4.42    7.70   12.31
+   250.0    0.00   -0.29   -0.45   -0.49   -0.51   -0.60   -0.85   -1.24   -1.64   -1.87   -1.78   -1.33   -0.61    0.25    1.21    2.47    4.47    7.68   12.25
+   255.0    0.00   -0.25   -0.39   -0.44   -0.46   -0.57   -0.82   -1.22   -1.62   -1.86   -1.78   -1.33   -0.60    0.28    1.24    2.46    4.37    7.50   12.04
+   260.0    0.00   -0.21   -0.34   -0.39   -0.43   -0.55   -0.83   -1.23   -1.65   -1.91   -1.84   -1.39   -0.65    0.24    1.18    2.34    4.15    7.17   11.68
+   265.0    0.00   -0.17   -0.29   -0.35   -0.41   -0.56   -0.86   -1.28   -1.73   -2.00   -1.95   -1.50   -0.75    0.13    1.05    2.13    3.82    6.71   11.18
+   270.0    0.00   -0.13   -0.24   -0.31   -0.40   -0.59   -0.91   -1.37   -1.84   -2.14   -2.10   -1.66   -0.91   -0.03    0.85    1.84    3.38    6.14   10.57
+   275.0    0.00   -0.09   -0.19   -0.28   -0.41   -0.63   -0.99   -1.49   -1.99   -2.32   -2.30   -1.87   -1.11   -0.25    0.59    1.48    2.88    5.48    9.87
+   280.0    0.00   -0.05   -0.14   -0.25   -0.42   -0.68   -1.09   -1.62   -2.16   -2.52   -2.53   -2.11   -1.36   -0.51    0.28    1.08    2.33    4.77    9.10
+   285.0    0.00   -0.01   -0.09   -0.22   -0.43   -0.74   -1.20   -1.78   -2.36   -2.75   -2.78   -2.38   -1.65   -0.81   -0.07    0.64    1.75    4.05    8.31
+   290.0    0.00    0.03   -0.04   -0.19   -0.44   -0.81   -1.32   -1.94   -2.56   -3.00   -3.06   -2.68   -1.97   -1.15   -0.45    0.18    1.18    3.35    7.52
+   295.0    0.00    0.07    0.01   -0.16   -0.45   -0.87   -1.43   -2.11   -2.77   -3.24   -3.34   -3.00   -2.31   -1.52   -0.85   -0.27    0.64    2.69    6.77
+   300.0    0.00    0.11    0.07   -0.12   -0.45   -0.92   -1.54   -2.27   -2.97   -3.48   -3.62   -3.32   -2.67   -1.91   -1.26   -0.72    0.13    2.10    6.07
+   305.0    0.00    0.16    0.13   -0.08   -0.44   -0.97   -1.64   -2.41   -3.16   -3.71   -3.89   -3.64   -3.04   -2.31   -1.68   -1.14   -0.32    1.59    5.46
+   310.0    0.00    0.20    0.19   -0.03   -0.42   -0.99   -1.71   -2.53   -3.32   -3.91   -4.14   -3.94   -3.40   -2.71   -2.09   -1.54   -0.71    1.16    4.93
+   315.0    0.00    0.24    0.25    0.04   -0.39   -1.00   -1.77   -2.62   -3.45   -4.08   -4.36   -4.22   -3.74   -3.10   -2.49   -1.91   -1.04    0.83    4.50
+   320.0    0.00    0.28    0.32    0.11   -0.34   -0.99   -1.79   -2.69   -3.55   -4.21   -4.54   -4.47   -4.05   -3.46   -2.86   -2.25   -1.32    0.57    4.17
+   325.0    0.00    0.32    0.39    0.18   -0.27   -0.95   -1.79   -2.72   -3.61   -4.31   -4.68   -4.68   -4.33   -3.79   -3.20   -2.55   -1.55    0.37    3.93
+   330.0    0.00    0.36    0.46    0.27   -0.19   -0.89   -1.76   -2.72   -3.63   -4.36   -4.78   -4.83   -4.56   -4.08   -3.50   -2.82   -1.75    0.24    3.77
+   335.0    0.00    0.40    0.54    0.37   -0.09   -0.81   -1.70   -2.68   -3.61   -4.37   -4.83   -4.94   -4.74   -4.31   -3.76   -3.04   -1.90    0.15    3.69
+   340.0    0.00    0.44    0.61    0.47    0.02   -0.70   -1.61   -2.61   -3.56   -4.34   -4.83   -4.99   -4.85   -4.49   -3.96   -3.23   -2.02    0.11    3.68
+   345.0    0.00    0.47    0.69    0.58    0.15   -0.58   -1.50   -2.51   -3.48   -4.27   -4.79   -4.99   -4.91   -4.60   -4.11   -3.36   -2.10    0.11    3.74
+   350.0    0.00    0.51    0.76    0.70    0.28   -0.43   -1.37   -2.39   -3.36   -4.17   -4.70   -4.94   -4.91   -4.65   -4.19   -3.44   -2.14    0.15    3.86
+   355.0    0.00    0.54    0.84    0.81    0.42   -0.28   -1.21   -2.24   -3.23   -4.03   -4.59   -4.85   -4.85   -4.63   -4.20   -3.46   -2.12    0.23    4.05
+   360.0    0.00    0.56    0.90    0.92    0.57   -0.12   -1.05   -2.08   -3.07   -3.88   -4.44   -4.71   -4.74   -4.55   -4.15   -3.40   -2.04    0.38    4.30
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TRM14532.10     NONE                                        TYPE / SERIAL NO    
+CONVERTED           TUM                      0    16-APR-03 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+     -1.00      0.44     77.24                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.24   -0.22   -0.27   -0.28   -0.39   -0.45   -0.59   -0.67   -0.80   -0.84   -0.86   -0.97   -0.94   -0.90   -0.53    0.29
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      1.50      3.48     86.46                              NORTH / EAST / UP   
+   NOAZI    0.00   -1.13   -1.82   -2.20   -2.42   -2.42   -2.53   -2.61   -2.75   -2.93   -3.15   -3.23   -3.38   -3.55   -3.83   -4.21   -4.44
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TRM22020.00+GP  NONE                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               8    27-JAN-03 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+      1.14     -1.51     70.69                              NORTH / EAST / UP   
+   NOAZI    0.00    0.66    2.39    4.60    6.54    7.58    7.46    6.27    4.43    2.42    0.59   -0.91   -2.10   -3.03   -3.56   -3.29   -1.69    1.65    6.58
+     0.0    0.00    0.91    2.86    5.19    7.16    8.16    7.95    6.69    4.78    2.69    0.74   -0.93   -2.35   -3.51   -4.20   -4.00   -2.38    0.96    5.78
+     5.0    0.00    0.87    2.80    5.12    7.09    8.11    7.92    6.68    4.79    2.72    0.80   -0.85   -2.25   -3.40   -4.10   -3.94   -2.38    0.93    5.77
+    10.0    0.00    0.84    2.73    5.04    7.02    8.05    7.89    6.67    4.80    2.75    0.85   -0.77   -2.13   -3.27   -3.99   -3.87   -2.36    0.90    5.79
+    15.0    0.00    0.80    2.67    4.96    6.94    7.98    7.85    6.65    4.81    2.78    0.91   -0.67   -2.01   -3.12   -3.85   -3.77   -2.32    0.91    5.84
+    20.0    0.00    0.76    2.60    4.88    6.85    7.92    7.80    6.63    4.81    2.81    0.97   -0.58   -1.88   -2.96   -3.69   -3.64   -2.25    0.95    5.93
+    25.0    0.00    0.73    2.52    4.79    6.76    7.85    7.76    6.62    4.82    2.84    1.02   -0.49   -1.75   -2.81   -3.52   -3.49   -2.14    1.03    6.04
+    30.0    0.00    0.69    2.45    4.70    6.67    7.77    7.71    6.60    4.82    2.86    1.07   -0.41   -1.64   -2.66   -3.35   -3.33   -2.00    1.15    6.17
+    35.0    0.00    0.65    2.38    4.60    6.58    7.70    7.66    6.57    4.82    2.88    1.11   -0.35   -1.54   -2.52   -3.19   -3.15   -1.83    1.30    6.30
+    40.0    0.00    0.61    2.30    4.51    6.49    7.62    7.61    6.55    4.82    2.89    1.13   -0.31   -1.47   -2.41   -3.04   -2.97   -1.65    1.45    6.42
+    45.0    0.00    0.57    2.23    4.42    6.40    7.55    7.56    6.52    4.81    2.89    1.14   -0.29   -1.42   -2.33   -2.91   -2.81   -1.48    1.60    6.51
+    50.0    0.00    0.53    2.16    4.33    6.31    7.47    7.51    6.49    4.80    2.89    1.14   -0.28   -1.41   -2.28   -2.83   -2.69   -1.33    1.72    6.56
+    55.0    0.00    0.49    2.09    4.24    6.22    7.40    7.45    6.46    4.77    2.87    1.12   -0.31   -1.42   -2.27   -2.78   -2.60   -1.23    1.81    6.55
+    60.0    0.00    0.46    2.03    4.16    6.13    7.32    7.40    6.42    4.74    2.84    1.08   -0.35   -1.46   -2.29   -2.77   -2.56   -1.17    1.84    6.50
+    65.0    0.00    0.42    1.96    4.08    6.05    7.25    7.34    6.37    4.70    2.79    1.03   -0.41   -1.52   -2.35   -2.80   -2.57   -1.17    1.82    6.39
+    70.0    0.00    0.39    1.91    4.01    5.98    7.18    7.28    6.33    4.66    2.74    0.96   -0.49   -1.61   -2.43   -2.88   -2.63   -1.21    1.76    6.25
+    75.0    0.00    0.36    1.85    3.94    5.91    7.12    7.23    6.28    4.61    2.68    0.89   -0.58   -1.71   -2.54   -2.98   -2.71   -1.29    1.67    6.09
+    80.0    0.00    0.33    1.81    3.89    5.85    7.07    7.18    6.23    4.55    2.62    0.81   -0.68   -1.82   -2.66   -3.09   -2.82   -1.39    1.57    5.94
+    85.0    0.00    0.31    1.76    3.84    5.80    7.02    7.14    6.19    4.50    2.55    0.72   -0.78   -1.94   -2.78   -3.22   -2.93   -1.48    1.48    5.82
+    90.0    0.00    0.29    1.73    3.79    5.76    6.99    7.11    6.15    4.46    2.49    0.64   -0.88   -2.05   -2.90   -3.33   -3.04   -1.57    1.41    5.75
+    95.0    0.00    0.27    1.70    3.76    5.73    6.96    7.08    6.12    4.42    2.43    0.57   -0.97   -2.16   -3.01   -3.44   -3.13   -1.63    1.39    5.74
+   100.0    0.00    0.26    1.68    3.74    5.71    6.95    7.07    6.10    4.39    2.38    0.50   -1.05   -2.25   -3.11   -3.53   -3.20   -1.66    1.41    5.80
+   105.0    0.00    0.24    1.66    3.72    5.70    6.94    7.07    6.10    4.37    2.35    0.45   -1.11   -2.32   -3.18   -3.60   -3.24   -1.66    1.47    5.93
+   110.0    0.00    0.24    1.65    3.71    5.70    6.94    7.07    6.10    4.36    2.33    0.42   -1.16   -2.37   -3.24   -3.65   -3.27   -1.64    1.57    6.11
+   115.0    0.00    0.23    1.65    3.72    5.71    6.95    7.08    6.11    4.36    2.33    0.41   -1.18   -2.40   -3.28   -3.69   -3.29   -1.60    1.69    6.33
+   120.0    0.00    0.23    1.65    3.72    5.72    6.97    7.10    6.12    4.38    2.34    0.42   -1.18   -2.42   -3.31   -3.72   -3.31   -1.57    1.81    6.56
+   125.0    0.00    0.23    1.65    3.74    5.74    7.00    7.12    6.14    4.40    2.36    0.44   -1.16   -2.42   -3.33   -3.76   -3.33   -1.55    1.91    6.79
+   130.0    0.00    0.23    1.67    3.76    5.77    7.02    7.15    6.16    4.42    2.39    0.47   -1.14   -2.41   -3.34   -3.80   -3.38   -1.56    1.98    6.99
+   135.0    0.00    0.24    1.68    3.79    5.80    7.05    7.17    6.19    4.44    2.41    0.50   -1.11   -2.39   -3.36   -3.84   -3.44   -1.60    2.01    7.14
+   140.0    0.00    0.25    1.71    3.82    5.83    7.08    7.20    6.20    4.46    2.44    0.53   -1.08   -2.38   -3.38   -3.90   -3.52   -1.67    1.99    7.22
+   145.0    0.00    0.27    1.73    3.85    5.87    7.11    7.22    6.22    4.47    2.46    0.56   -1.05   -2.37   -3.40   -3.96   -3.61   -1.77    1.93    7.23
+   150.0    0.00    0.28    1.76    3.89    5.91    7.14    7.23    6.22    4.48    2.47    0.57   -1.04   -2.37   -3.42   -4.01   -3.69   -1.87    1.84    7.17
+   155.0    0.00    0.30    1.80    3.93    5.95    7.17    7.25    6.23    4.47    2.46    0.57   -1.04   -2.38   -3.45   -4.06   -3.77   -1.97    1.72    7.05
+   160.0    0.00    0.32    1.84    3.98    5.99    7.20    7.26    6.22    4.46    2.44    0.56   -1.05   -2.39   -3.46   -4.09   -3.81   -2.05    1.60    6.88
+   165.0    0.00    0.35    1.88    4.02    6.03    7.22    7.26    6.21    4.43    2.42    0.53   -1.07   -2.40   -3.46   -4.08   -3.82   -2.09    1.49    6.69
+   170.0    0.00    0.37    1.92    4.07    6.07    7.25    7.27    6.19    4.41    2.38    0.50   -1.09   -2.40   -3.44   -4.04   -3.78   -2.10    1.40    6.47
+   175.0    0.00    0.40    1.96    4.12    6.11    7.27    7.27    6.18    4.37    2.34    0.46   -1.11   -2.39   -3.40   -3.97   -3.70   -2.06    1.33    6.27
+   180.0    0.00    0.43    2.01    4.17    6.15    7.29    7.27    6.16    4.34    2.30    0.43   -1.12   -2.37   -3.33   -3.86   -3.59   -1.98    1.31    6.10
+   185.0    0.00    0.46    2.06    4.22    6.19    7.31    7.27    6.14    4.31    2.27    0.41   -1.12   -2.32   -3.23   -3.72   -3.44   -1.88    1.31    5.97
+   190.0    0.00    0.49    2.11    4.28    6.23    7.33    7.27    6.12    4.28    2.25    0.40   -1.09   -2.25   -3.11   -3.57   -3.28   -1.76    1.34    5.89
+   195.0    0.00    0.52    2.16    4.33    6.27    7.35    7.27    6.10    4.27    2.24    0.42   -1.04   -2.16   -2.97   -3.40   -3.11   -1.63    1.40    5.88
+   200.0    0.00    0.55    2.21    4.38    6.31    7.37    7.27    6.09    4.25    2.24    0.45   -0.98   -2.05   -2.83   -3.24   -2.96   -1.51    1.48    5.93
+   205.0    0.00    0.59    2.27    4.44    6.36    7.39    7.27    6.08    4.25    2.26    0.49   -0.90   -1.94   -2.70   -3.10   -2.83   -1.41    1.57    6.05
+   210.0    0.00    0.62    2.32    4.50    6.40    7.42    7.27    6.08    4.25    2.28    0.54   -0.81   -1.82   -2.58   -2.99   -2.74   -1.32    1.68    6.23
+   215.0    0.00    0.66    2.38    4.55    6.44    7.44    7.27    6.07    4.25    2.31    0.60   -0.73   -1.73   -2.48   -2.91   -2.67   -1.25    1.80    6.46
+   220.0    0.00    0.69    2.43    4.61    6.49    7.46    7.28    6.07    4.26    2.33    0.65   -0.66   -1.65   -2.41   -2.86   -2.63   -1.18    1.94    6.74
+   225.0    0.00    0.73    2.49    4.67    6.53    7.49    7.29    6.07    4.26    2.35    0.69   -0.61   -1.60   -2.38   -2.85   -2.62   -1.13    2.10    7.04
+   230.0    0.00    0.76    2.54    4.73    6.58    7.52    7.30    6.07    4.26    2.35    0.70   -0.59   -1.59   -2.39   -2.86   -2.62   -1.06    2.27    7.35
+   235.0    0.00    0.79    2.60    4.79    6.63    7.55    7.31    6.06    4.25    2.35    0.70   -0.60   -1.61   -2.42   -2.90   -2.62   -0.99    2.46    7.65
+   240.0    0.00    0.83    2.65    4.85    6.69    7.59    7.32    6.06    4.23    2.32    0.66   -0.64   -1.67   -2.49   -2.95   -2.62   -0.91    2.64    7.92
+   245.0    0.00    0.86    2.71    4.91    6.74    7.62    7.34    6.05    4.20    2.28    0.61   -0.71   -1.75   -2.57   -3.01   -2.62   -0.83    2.82    8.15
+   250.0    0.00    0.89    2.76    4.97    6.80    7.66    7.35    6.04    4.17    2.22    0.53   -0.80   -1.85   -2.66   -3.06   -2.62   -0.75    2.97    8.32
+   255.0    0.00    0.92    2.81    5.03    6.85    7.70    7.37    6.03    4.13    2.16    0.44   -0.91   -1.96   -2.75   -3.12   -2.62   -0.68    3.08    8.41
+   260.0    0.00    0.94    2.86    5.09    6.91    7.75    7.39    6.02    4.09    2.09    0.35   -1.01   -2.06   -2.83   -3.17   -2.63   -0.65    3.12    8.42
+   265.0    0.00    0.97    2.90    5.15    6.97    7.79    7.41    6.02    4.05    2.02    0.26   -1.11   -2.15   -2.91   -3.22   -2.66   -0.67    3.10    8.35
+   270.0    0.00    0.99    2.95    5.21    7.03    7.84    7.44    6.01    4.02    1.96    0.19   -1.19   -2.23   -2.97   -3.27   -2.72   -0.74    2.99    8.21
+   275.0    0.00    1.02    2.99    5.26    7.08    7.88    7.46    6.02    4.00    1.92    0.13   -1.25   -2.28   -3.02   -3.33   -2.80   -0.87    2.82    8.01
+   280.0    0.00    1.03    3.02    5.31    7.13    7.93    7.49    6.03    3.99    1.89    0.10   -1.28   -2.31   -3.06   -3.40   -2.92   -1.06    2.57    7.76
+   285.0    0.00    1.05    3.06    5.35    7.18    7.97    7.53    6.05    3.99    1.89    0.09   -1.29   -2.33   -3.10   -3.48   -3.07   -1.29    2.28    7.48
+   290.0    0.00    1.06    3.08    5.39    7.23    8.02    7.57    6.08    4.01    1.90    0.10   -1.28   -2.33   -3.13   -3.57   -3.23   -1.54    1.97    7.19
+   295.0    0.00    1.07    3.11    5.43    7.27    8.07    7.61    6.12    4.05    1.94    0.13   -1.26   -2.33   -3.16   -3.67   -3.42   -1.80    1.66    6.92
+   300.0    0.00    1.08    3.12    5.46    7.31    8.11    7.66    6.17    4.10    1.99    0.18   -1.23   -2.32   -3.21   -3.77   -3.60   -2.05    1.38    6.67
+   305.0    0.00    1.08    3.14    5.48    7.34    8.15    7.71    6.22    4.17    2.05    0.24   -1.19   -2.33   -3.26   -3.88   -3.76   -2.26    1.15    6.46
+   310.0    0.00    1.08    3.14    5.49    7.37    8.19    7.76    6.29    4.24    2.13    0.29   -1.16   -2.34   -3.33   -3.99   -3.91   -2.43    0.97    6.30
+   315.0    0.00    1.08    3.14    5.50    7.38    8.22    7.81    6.36    4.32    2.20    0.35   -1.14   -2.37   -3.39   -4.09   -4.02   -2.54    0.87    6.17
+   320.0    0.00    1.07    3.13    5.50    7.40    8.25    7.86    6.43    4.40    2.28    0.41   -1.13   -2.40   -3.47   -4.18   -4.10   -2.59    0.82    6.09
+   325.0    0.00    1.06    3.12    5.49    7.40    8.27    7.91    6.49    4.48    2.35    0.46   -1.12   -2.44   -3.54   -4.26   -4.15   -2.60    0.83    6.03
+   330.0    0.00    1.05    3.10    5.47    7.39    8.28    7.94    6.55    4.55    2.42    0.50   -1.12   -2.48   -3.60   -4.31   -4.16   -2.57    0.86    5.99
+   335.0    0.00    1.03    3.07    5.44    7.38    8.29    7.97    6.60    4.61    2.48    0.54   -1.11   -2.51   -3.65   -4.35   -4.16   -2.53    0.92    5.96
+   340.0    0.00    1.01    3.04    5.41    7.35    8.28    7.99    6.64    4.66    2.53    0.57   -1.10   -2.52   -3.68   -4.36   -4.14   -2.47    0.96    5.93
+   345.0    0.00    0.99    3.00    5.37    7.32    8.27    7.99    6.67    4.71    2.58    0.61   -1.08   -2.52   -3.68   -4.36   -4.11   -2.43    1.00    5.89
+   350.0    0.00    0.97    2.96    5.32    7.27    8.24    7.99    6.68    4.74    2.62    0.65   -1.05   -2.49   -3.65   -4.33   -4.08   -2.40    1.00    5.85
+   355.0    0.00    0.94    2.91    5.26    7.22    8.20    7.98    6.69    4.76    2.65    0.69   -1.00   -2.43   -3.59   -4.28   -4.05   -2.39    0.99    5.81
+   360.0    0.00    0.91    2.86    5.19    7.16    8.16    7.95    6.69    4.78    2.69    0.74   -0.93   -2.35   -3.51   -4.20   -4.00   -2.38    0.96    5.78
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -1.56      1.26     63.20                              NORTH / EAST / UP   
+   NOAZI    0.00    0.09    0.29    0.49    0.53    0.29   -0.23   -0.94   -1.65   -2.20   -2.45   -2.44   -2.25   -2.00   -1.66   -0.99    0.47    3.23    7.50
+     0.0    0.00   -0.04    0.09    0.26    0.32    0.12   -0.36   -1.02   -1.67   -2.12   -2.27   -2.15   -1.93   -1.78   -1.67   -1.31   -0.09    2.63    7.16
+     5.0    0.00   -0.05    0.07    0.26    0.33    0.15   -0.31   -0.97   -1.62   -2.06   -2.20   -2.06   -1.82   -1.65   -1.53   -1.17    0.03    2.74    7.27
+    10.0    0.00   -0.06    0.06    0.25    0.34    0.17   -0.28   -0.92   -1.57   -2.01   -2.14   -1.99   -1.73   -1.53   -1.40   -1.03    0.16    2.86    7.38
+    15.0    0.00   -0.07    0.05    0.25    0.34    0.20   -0.24   -0.88   -1.52   -1.97   -2.10   -1.93   -1.65   -1.42   -1.26   -0.88    0.31    2.99    7.49
+    20.0    0.00   -0.08    0.04    0.24    0.35    0.21   -0.21   -0.84   -1.49   -1.94   -2.06   -1.89   -1.58   -1.32   -1.12   -0.72    0.48    3.14    7.62
+    25.0    0.00   -0.09    0.03    0.23    0.35    0.23   -0.19   -0.81   -1.45   -1.91   -2.03   -1.85   -1.52   -1.22   -0.98   -0.55    0.66    3.31    7.77
+    30.0    0.00   -0.10    0.02    0.22    0.34    0.23   -0.17   -0.78   -1.43   -1.88   -2.01   -1.83   -1.47   -1.14   -0.85   -0.37    0.86    3.50    7.94
+    35.0    0.00   -0.10    0.00    0.21    0.33    0.23   -0.16   -0.77   -1.40   -1.86   -1.99   -1.80   -1.43   -1.06   -0.73   -0.20    1.06    3.70    8.12
+    40.0    0.00   -0.11   -0.01    0.19    0.32    0.22   -0.16   -0.76   -1.39   -1.84   -1.97   -1.78   -1.40   -0.99   -0.61   -0.04    1.25    3.90    8.32
+    45.0    0.00   -0.11   -0.02    0.17    0.30    0.20   -0.18   -0.77   -1.39   -1.84   -1.96   -1.77   -1.37   -0.94   -0.52    0.10    1.43    4.10    8.50
+    50.0    0.00   -0.12   -0.03    0.15    0.27    0.17   -0.21   -0.79   -1.40   -1.84   -1.96   -1.76   -1.36   -0.91   -0.46    0.20    1.57    4.26    8.66
+    55.0    0.00   -0.12   -0.04    0.13    0.24    0.13   -0.25   -0.82   -1.42   -1.85   -1.97   -1.77   -1.37   -0.91   -0.44    0.26    1.67    4.38    8.76
+    60.0    0.00   -0.12   -0.05    0.11    0.20    0.08   -0.30   -0.86   -1.46   -1.88   -1.99   -1.80   -1.40   -0.95   -0.47    0.27    1.72    4.45    8.80
+    65.0    0.00   -0.12   -0.06    0.09    0.16    0.03   -0.36   -0.92   -1.51   -1.92   -2.03   -1.85   -1.47   -1.03   -0.54    0.23    1.72    4.46    8.76
+    70.0    0.00   -0.12   -0.07    0.06    0.12   -0.03   -0.42   -0.99   -1.57   -1.98   -2.10   -1.92   -1.57   -1.15   -0.66    0.13    1.66    4.42    8.65
+    75.0    0.00   -0.12   -0.07    0.04    0.08   -0.09   -0.49   -1.07   -1.64   -2.05   -2.18   -2.03   -1.71   -1.31   -0.82   -0.01    1.56    4.33    8.47
+    80.0    0.00   -0.11   -0.07    0.03    0.04   -0.14   -0.56   -1.14   -1.72   -2.13   -2.28   -2.16   -1.88   -1.51   -1.02   -0.18    1.43    4.20    8.23
+    85.0    0.00   -0.11   -0.07    0.02    0.01   -0.20   -0.63   -1.22   -1.80   -2.23   -2.39   -2.31   -2.07   -1.74   -1.25   -0.38    1.28    4.06    7.97
+    90.0    0.00   -0.10   -0.07    0.01   -0.02   -0.24   -0.69   -1.29   -1.88   -2.32   -2.52   -2.48   -2.28   -1.98   -1.50   -0.59    1.12    3.91    7.71
+    95.0    0.00   -0.09   -0.06    0.01   -0.03   -0.28   -0.75   -1.36   -1.96   -2.42   -2.64   -2.64   -2.49   -2.22   -1.74   -0.79    0.97    3.77    7.48
+   100.0    0.00   -0.08   -0.04    0.01   -0.04   -0.31   -0.79   -1.41   -2.03   -2.50   -2.76   -2.80   -2.70   -2.46   -1.97   -0.99    0.83    3.66    7.30
+   105.0    0.00   -0.07   -0.03    0.02   -0.05   -0.32   -0.82   -1.46   -2.09   -2.58   -2.86   -2.94   -2.87   -2.66   -2.18   -1.16    0.71    3.58    7.19
+   110.0    0.00   -0.05   -0.01    0.04   -0.04   -0.33   -0.84   -1.49   -2.14   -2.64   -2.95   -3.06   -3.02   -2.83   -2.35   -1.31    0.61    3.53    7.16
+   115.0    0.00   -0.04    0.02    0.07   -0.02   -0.32   -0.85   -1.51   -2.17   -2.69   -3.01   -3.14   -3.13   -2.95   -2.48   -1.43    0.53    3.51    7.21
+   120.0    0.00   -0.02    0.05    0.10    0.01   -0.30   -0.85   -1.53   -2.20   -2.73   -3.05   -3.19   -3.19   -3.03   -2.57   -1.52    0.46    3.51    7.32
+   125.0    0.00    0.00    0.08    0.14    0.05   -0.27   -0.83   -1.52   -2.21   -2.74   -3.07   -3.21   -3.21   -3.07   -2.63   -1.59    0.40    3.51    7.46
+   130.0    0.00    0.02    0.12    0.19    0.10   -0.23   -0.80   -1.51   -2.20   -2.74   -3.07   -3.20   -3.19   -3.06   -2.65   -1.64    0.35    3.52    7.62
+   135.0    0.00    0.04    0.16    0.25    0.16   -0.17   -0.76   -1.48   -2.19   -2.73   -3.04   -3.16   -3.15   -3.03   -2.64   -1.67    0.30    3.51    7.77
+   140.0    0.00    0.06    0.21    0.31    0.23   -0.11   -0.70   -1.44   -2.15   -2.70   -3.01   -3.11   -3.09   -2.97   -2.62   -1.69    0.25    3.48    7.87
+   145.0    0.00    0.08    0.25    0.38    0.31   -0.03   -0.63   -1.38   -2.11   -2.66   -2.96   -3.06   -3.03   -2.91   -2.58   -1.69    0.20    3.44    7.92
+   150.0    0.00    0.11    0.30    0.45    0.40    0.06   -0.54   -1.31   -2.05   -2.61   -2.91   -3.00   -2.96   -2.85   -2.54   -1.69    0.16    3.38    7.90
+   155.0    0.00    0.13    0.35    0.52    0.49    0.16   -0.45   -1.22   -1.98   -2.55   -2.86   -2.95   -2.91   -2.79   -2.49   -1.67    0.13    3.30    7.81
+   160.0    0.00    0.15    0.40    0.59    0.58    0.27   -0.34   -1.12   -1.89   -2.48   -2.81   -2.90   -2.86   -2.74   -2.44   -1.64    0.12    3.23    7.66
+   165.0    0.00    0.18    0.45    0.67    0.68    0.38   -0.22   -1.01   -1.80   -2.41   -2.75   -2.86   -2.81   -2.69   -2.38   -1.60    0.12    3.16    7.48
+   170.0    0.00    0.20    0.50    0.75    0.78    0.49   -0.10   -0.90   -1.70   -2.33   -2.70   -2.82   -2.78   -2.64   -2.32   -1.53    0.15    3.11    7.28
+   175.0    0.00    0.22    0.54    0.82    0.88    0.61    0.02   -0.78   -1.60   -2.25   -2.64   -2.78   -2.73   -2.58   -2.24   -1.45    0.21    3.07    7.10
+   180.0    0.00    0.24    0.59    0.89    0.97    0.71    0.13   -0.67   -1.49   -2.17   -2.58   -2.73   -2.68   -2.51   -2.15   -1.35    0.28    3.07    6.95
+   185.0    0.00    0.26    0.63    0.95    1.05    0.81    0.24   -0.56   -1.40   -2.09   -2.52   -2.67   -2.62   -2.43   -2.04   -1.23    0.37    3.08    6.85
+   190.0    0.00    0.27    0.67    1.01    1.13    0.90    0.34   -0.46   -1.31   -2.01   -2.45   -2.60   -2.53   -2.32   -1.92   -1.10    0.47    3.13    6.81
+   195.0    0.00    0.29    0.70    1.06    1.19    0.98    0.42   -0.38   -1.23   -1.94   -2.38   -2.52   -2.43   -2.19   -1.77   -0.97    0.58    3.19    6.84
+   200.0    0.00    0.30    0.73    1.10    1.25    1.04    0.48   -0.32   -1.17   -1.88   -2.30   -2.42   -2.31   -2.05   -1.62   -0.83    0.68    3.26    6.93
+   205.0    0.00    0.31    0.75    1.13    1.29    1.09    0.53   -0.27   -1.12   -1.82   -2.23   -2.32   -2.17   -1.89   -1.46   -0.70    0.78    3.34    7.08
+   210.0    0.00    0.32    0.77    1.16    1.32    1.12    0.56   -0.24   -1.09   -1.77   -2.15   -2.21   -2.03   -1.73   -1.30   -0.57    0.87    3.43    7.26
+   215.0    0.00    0.33    0.78    1.17    1.33    1.14    0.58   -0.22   -1.06   -1.73   -2.09   -2.11   -1.90   -1.58   -1.16   -0.46    0.94    3.51    7.47
+   220.0    0.00    0.33    0.78    1.18    1.34    1.14    0.59   -0.21   -1.04   -1.70   -2.03   -2.02   -1.78   -1.44   -1.03   -0.36    1.01    3.59    7.68
+   225.0    0.00    0.33    0.78    1.18    1.33    1.13    0.58   -0.22   -1.04   -1.67   -1.98   -1.94   -1.68   -1.33   -0.92   -0.28    1.07    3.66    7.88
+   230.0    0.00    0.33    0.78    1.16    1.31    1.11    0.56   -0.23   -1.04   -1.66   -1.94   -1.89   -1.61   -1.25   -0.85   -0.22    1.11    3.73    8.06
+   235.0    0.00    0.33    0.77    1.14    1.29    1.08    0.53   -0.25   -1.05   -1.65   -1.93   -1.86   -1.57   -1.21   -0.81   -0.18    1.14    3.79    8.21
+   240.0    0.00    0.32    0.75    1.12    1.25    1.04    0.50   -0.27   -1.06   -1.66   -1.92   -1.86   -1.57   -1.20   -0.80   -0.17    1.16    3.82    8.31
+   245.0    0.00    0.32    0.73    1.08    1.20    0.99    0.45   -0.31   -1.08   -1.67   -1.94   -1.88   -1.60   -1.23   -0.82   -0.18    1.17    3.84    8.37
+   250.0    0.00    0.31    0.71    1.04    1.15    0.94    0.40   -0.35   -1.12   -1.70   -1.98   -1.93   -1.66   -1.30   -0.88   -0.22    1.14    3.83    8.39
+   255.0    0.00    0.29    0.68    1.00    1.09    0.87    0.33   -0.41   -1.17   -1.75   -2.03   -1.99   -1.74   -1.39   -0.97   -0.29    1.09    3.79    8.35
+   260.0    0.00    0.28    0.65    0.95    1.03    0.80    0.26   -0.48   -1.23   -1.81   -2.10   -2.08   -1.84   -1.50   -1.08   -0.40    1.00    3.70    8.27
+   265.0    0.00    0.27    0.61    0.89    0.96    0.71    0.17   -0.56   -1.31   -1.89   -2.18   -2.18   -1.96   -1.63   -1.22   -0.53    0.87    3.57    8.14
+   270.0    0.00    0.25    0.58    0.84    0.88    0.63    0.08   -0.66   -1.40   -1.98   -2.28   -2.29   -2.08   -1.77   -1.37   -0.69    0.70    3.40    7.97
+   275.0    0.00    0.24    0.54    0.78    0.81    0.54   -0.02   -0.76   -1.51   -2.09   -2.39   -2.40   -2.21   -1.92   -1.53   -0.88    0.50    3.18    7.76
+   280.0    0.00    0.22    0.50    0.72    0.73    0.45   -0.12   -0.87   -1.62   -2.21   -2.51   -2.52   -2.34   -2.06   -1.70   -1.07    0.27    2.94    7.51
+   285.0    0.00    0.20    0.46    0.66    0.66    0.36   -0.22   -0.98   -1.74   -2.32   -2.62   -2.64   -2.46   -2.19   -1.87   -1.28    0.02    2.67    7.25
+   290.0    0.00    0.18    0.43    0.61    0.59    0.27   -0.32   -1.09   -1.86   -2.44   -2.73   -2.74   -2.57   -2.32   -2.03   -1.48   -0.22    2.40    6.99
+   295.0    0.00    0.16    0.39    0.56    0.52    0.20   -0.41   -1.19   -1.96   -2.54   -2.84   -2.84   -2.66   -2.43   -2.17   -1.67   -0.45    2.15    6.74
+   300.0    0.00    0.14    0.36    0.51    0.46    0.13   -0.49   -1.27   -2.05   -2.63   -2.92   -2.92   -2.74   -2.53   -2.29   -1.83   -0.64    1.93    6.51
+   305.0    0.00    0.13    0.32    0.46    0.41    0.07   -0.55   -1.34   -2.11   -2.70   -2.98   -2.97   -2.80   -2.60   -2.39   -1.95   -0.80    1.76    6.33
+   310.0    0.00    0.11    0.29    0.42    0.37    0.03   -0.59   -1.38   -2.15   -2.73   -3.01   -3.00   -2.83   -2.64   -2.45   -2.04   -0.90    1.65    6.20
+   315.0    0.00    0.09    0.26    0.39    0.34    0.00   -0.61   -1.40   -2.17   -2.74   -3.02   -3.01   -2.84   -2.66   -2.49   -2.09   -0.95    1.61    6.13
+   320.0    0.00    0.07    0.23    0.36    0.31   -0.02   -0.62   -1.40   -2.16   -2.72   -2.99   -2.98   -2.82   -2.65   -2.49   -2.09   -0.94    1.62    6.12
+   325.0    0.00    0.06    0.21    0.34    0.29   -0.02   -0.61   -1.38   -2.13   -2.68   -2.94   -2.92   -2.76   -2.61   -2.45   -2.06   -0.90    1.69    6.17
+   330.0    0.00    0.04    0.19    0.32    0.28   -0.02   -0.59   -1.34   -2.08   -2.62   -2.86   -2.84   -2.68   -2.53   -2.39   -1.99   -0.81    1.80    6.27
+   335.0    0.00    0.02    0.17    0.30    0.28    0.00   -0.56   -1.29   -2.01   -2.54   -2.77   -2.74   -2.58   -2.44   -2.30   -1.91   -0.71    1.94    6.41
+   340.0    0.00    0.01    0.15    0.29    0.28    0.02   -0.53   -1.24   -1.94   -2.45   -2.66   -2.62   -2.46   -2.32   -2.20   -1.80   -0.59    2.09    6.57
+   345.0    0.00    0.00    0.13    0.28    0.29    0.04   -0.48   -1.18   -1.87   -2.36   -2.56   -2.50   -2.33   -2.19   -2.07   -1.68   -0.46    2.24    6.73
+   350.0    0.00   -0.02    0.11    0.27    0.30    0.07   -0.44   -1.12   -1.80   -2.27   -2.45   -2.37   -2.19   -2.05   -1.94   -1.56   -0.34    2.38    6.89
+   355.0    0.00   -0.03    0.10    0.27    0.31    0.09   -0.40   -1.07   -1.73   -2.19   -2.35   -2.26   -2.06   -1.91   -1.81   -1.44   -0.21    2.51    7.03
+   360.0    0.00   -0.04    0.09    0.26    0.32    0.12   -0.36   -1.02   -1.67   -2.12   -2.27   -2.15   -1.93   -1.78   -1.67   -1.31   -0.09    2.63    7.16
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TRM22020.00-GP  NONE                                        TYPE / SERIAL NO    
+CONVERTED           TUM                      0    16-APR-03 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+      3.70      0.44     67.84                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.04   -0.52   -0.77   -0.78   -1.09   -1.55   -2.09   -2.37   -2.50   -2.64   -2.46   -2.07   -1.84   -1.60   -0.63    2.19
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      1.10     -0.72     73.76                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.13   -0.02    0.10    0.18    0.28    0.07   -0.31   -0.55   -0.53   -0.35   -0.33   -0.48   -0.55   -0.23   -0.51   -1.94
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TRM23903.00     NONE                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               7    15-MAY-08 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+      1.38     -1.45     73.52                              NORTH / EAST / UP   
+   NOAZI    0.00    0.61    2.23    4.36    6.32    7.51    7.60    6.61    4.85    2.79    0.86   -0.71   -1.90   -2.79   -3.35   -3.30   -2.09    0.89    5.90
+     0.0    0.00    0.81    2.61    4.84    6.80    7.92    7.92    6.87    5.11    3.08    1.16   -0.49   -1.89   -3.09   -4.01   -4.26   -3.17   -0.11    5.12
+     5.0    0.00    0.78    2.57    4.79    6.75    7.89    7.90    6.86    5.10    3.08    1.18   -0.44   -1.81   -3.00   -3.94   -4.23   -3.17   -0.09    5.24
+    10.0    0.00    0.76    2.52    4.73    6.71    7.86    7.89    6.85    5.09    3.08    1.20   -0.39   -1.72   -2.90   -3.85   -4.18   -3.16   -0.08    5.34
+    15.0    0.00    0.73    2.47    4.67    6.66    7.84    7.88    6.85    5.10    3.09    1.22   -0.33   -1.63   -2.78   -3.74   -4.11   -3.14   -0.07    5.43
+    20.0    0.00    0.69    2.41    4.61    6.61    7.81    7.88    6.86    5.11    3.10    1.25   -0.28   -1.54   -2.67   -3.62   -4.00   -3.09   -0.05    5.48
+    25.0    0.00    0.66    2.35    4.55    6.56    7.78    7.87    6.87    5.13    3.12    1.27   -0.24   -1.46   -2.55   -3.47   -3.87   -3.00   -0.01    5.50
+    30.0    0.00    0.63    2.29    4.48    6.50    7.74    7.87    6.89    5.16    3.15    1.30   -0.20   -1.40   -2.44   -3.32   -3.71   -2.87    0.05    5.50
+    35.0    0.00    0.60    2.23    4.40    6.43    7.70    7.86    6.91    5.19    3.18    1.32   -0.17   -1.34   -2.33   -3.18   -3.54   -2.71    0.14    5.49
+    40.0    0.00    0.56    2.17    4.33    6.36    7.66    7.85    6.93    5.22    3.21    1.34   -0.15   -1.30   -2.25   -3.03   -3.36   -2.54    0.25    5.46
+    45.0    0.00    0.53    2.11    4.25    6.29    7.60    7.83    6.94    5.25    3.24    1.36   -0.14   -1.27   -2.18   -2.91   -3.19   -2.36    0.37    5.45
+    50.0    0.00    0.50    2.05    4.17    6.21    7.54    7.79    6.93    5.26    3.26    1.38   -0.13   -1.26   -2.14   -2.82   -3.04   -2.18    0.50    5.46
+    55.0    0.00    0.47    1.99    4.09    6.13    7.47    7.74    6.91    5.26    3.27    1.38   -0.13   -1.26   -2.12   -2.76   -2.92   -2.03    0.64    5.50
+    60.0    0.00    0.44    1.93    4.01    6.04    7.39    7.68    6.87    5.24    3.26    1.37   -0.15   -1.28   -2.13   -2.73   -2.85   -1.92    0.77    5.58
+    65.0    0.00    0.41    1.87    3.94    5.95    7.30    7.60    6.81    5.19    3.23    1.35   -0.18   -1.31   -2.16   -2.74   -2.82   -1.84    0.88    5.69
+    70.0    0.00    0.38    1.82    3.86    5.86    7.21    7.51    6.72    5.13    3.17    1.30   -0.22   -1.36   -2.21   -2.79   -2.84   -1.80    0.98    5.84
+    75.0    0.00    0.36    1.77    3.80    5.78    7.12    7.41    6.63    5.03    3.09    1.23   -0.29   -1.43   -2.29   -2.86   -2.88   -1.80    1.06    5.99
+    80.0    0.00    0.33    1.73    3.74    5.71    7.03    7.31    6.52    4.93    2.99    1.13   -0.38   -1.52   -2.38   -2.95   -2.96   -1.82    1.11    6.14
+    85.0    0.00    0.31    1.69    3.69    5.64    6.95    7.22    6.41    4.81    2.87    1.02   -0.49   -1.63   -2.49   -3.06   -3.05   -1.87    1.14    6.27
+    90.0    0.00    0.30    1.66    3.65    5.59    6.88    7.13    6.31    4.69    2.74    0.90   -0.61   -1.74   -2.60   -3.16   -3.14   -1.92    1.15    6.35
+    95.0    0.00    0.28    1.64    3.62    5.56    6.84    7.07    6.22    4.59    2.62    0.77   -0.73   -1.86   -2.71   -3.26   -3.22   -1.98    1.13    6.37
+   100.0    0.00    0.27    1.62    3.60    5.53    6.81    7.03    6.16    4.50    2.51    0.65   -0.85   -1.97   -2.81   -3.34   -3.29   -2.03    1.09    6.33
+   105.0    0.00    0.26    1.61    3.59    5.53    6.80    7.01    6.12    4.44    2.43    0.55   -0.96   -2.07   -2.89   -3.41   -3.33   -2.07    1.04    6.23
+   110.0    0.00    0.25    1.60    3.59    5.54    6.82    7.02    6.12    4.41    2.37    0.47   -1.04   -2.15   -2.95   -3.45   -3.36   -2.10    0.97    6.09
+   115.0    0.00    0.25    1.61    3.60    5.56    6.85    7.06    6.14    4.41    2.35    0.43   -1.10   -2.20   -2.99   -3.47   -3.37   -2.13    0.90    5.93
+   120.0    0.00    0.25    1.61    3.62    5.60    6.90    7.11    6.19    4.44    2.36    0.42   -1.12   -2.23   -3.01   -3.48   -3.38   -2.14    0.83    5.77
+   125.0    0.00    0.25    1.62    3.65    5.64    6.96    7.18    6.26    4.50    2.40    0.44   -1.12   -2.23   -3.01   -3.48   -3.37   -2.15    0.78    5.63
+   130.0    0.00    0.26    1.64    3.68    5.69    7.02    7.25    6.33    4.57    2.46    0.48   -1.08   -2.21   -3.00   -3.47   -3.37   -2.16    0.74    5.54
+   135.0    0.00    0.27    1.66    3.71    5.74    7.08    7.32    6.40    4.64    2.53    0.54   -1.04   -2.18   -2.98   -3.46   -3.37   -2.17    0.72    5.50
+   140.0    0.00    0.28    1.68    3.75    5.79    7.14    7.38    6.47    4.71    2.59    0.60   -0.99   -2.15   -2.96   -3.45   -3.37   -2.17    0.72    5.53
+   145.0    0.00    0.29    1.71    3.78    5.83    7.18    7.42    6.51    4.75    2.64    0.65   -0.95   -2.12   -2.95   -3.46   -3.37   -2.17    0.75    5.62
+   150.0    0.00    0.30    1.74    3.82    5.86    7.21    7.45    6.53    4.77    2.66    0.67   -0.93   -2.11   -2.95   -3.46   -3.38   -2.16    0.80    5.74
+   155.0    0.00    0.32    1.77    3.85    5.90    7.23    7.45    6.53    4.76    2.65    0.66   -0.94   -2.12   -2.96   -3.47   -3.39   -2.15    0.86    5.89
+   160.0    0.00    0.34    1.80    3.89    5.92    7.24    7.44    6.50    4.73    2.62    0.63   -0.97   -2.14   -2.98   -3.49   -3.38   -2.12    0.92    6.02
+   165.0    0.00    0.36    1.83    3.92    5.94    7.23    7.41    6.45    4.67    2.56    0.57   -1.02   -2.19   -3.01   -3.50   -3.37   -2.09    0.98    6.11
+   170.0    0.00    0.38    1.86    3.95    5.95    7.22    7.38    6.40    4.60    2.48    0.50   -1.09   -2.24   -3.04   -3.50   -3.35   -2.05    1.02    6.16
+   175.0    0.00    0.40    1.90    3.99    5.97    7.21    7.34    6.33    4.52    2.40    0.42   -1.16   -2.29   -3.06   -3.48   -3.31   -2.01    1.03    6.15
+   180.0    0.00    0.43    1.94    4.02    5.98    7.20    7.30    6.28    4.46    2.33    0.35   -1.22   -2.33   -3.07   -3.46   -3.26   -1.97    1.03    6.08
+   185.0    0.00    0.45    1.98    4.05    6.00    7.20    7.28    6.24    4.41    2.28    0.30   -1.25   -2.34   -3.05   -3.41   -3.21   -1.94    1.01    5.97
+   190.0    0.00    0.48    2.01    4.09    6.03    7.20    7.26    6.22    4.39    2.26    0.29   -1.25   -2.32   -3.01   -3.35   -3.14   -1.90    0.98    5.86
+   195.0    0.00    0.50    2.06    4.13    6.05    7.22    7.27    6.22    4.40    2.28    0.31   -1.22   -2.27   -2.95   -3.28   -3.08   -1.87    0.95    5.76
+   200.0    0.00    0.53    2.10    4.17    6.09    7.24    7.29    6.25    4.43    2.33    0.38   -1.14   -2.19   -2.86   -3.20   -3.01   -1.82    0.96    5.71
+   205.0    0.00    0.56    2.14    4.22    6.13    7.27    7.32    6.29    4.49    2.40    0.47   -1.04   -2.09   -2.76   -3.11   -2.93   -1.76    1.00    5.73
+   210.0    0.00    0.59    2.19    4.27    6.17    7.32    7.37    6.35    4.57    2.50    0.58   -0.92   -1.97   -2.66   -3.02   -2.85   -1.68    1.10    5.86
+   215.0    0.00    0.62    2.23    4.32    6.22    7.37    7.42    6.41    4.65    2.60    0.70   -0.80   -1.86   -2.56   -2.93   -2.77   -1.57    1.27    6.08
+   220.0    0.00    0.65    2.28    4.37    6.28    7.42    7.48    6.48    4.73    2.70    0.80   -0.70   -1.77   -2.48   -2.86   -2.67   -1.41    1.51    6.40
+   225.0    0.00    0.67    2.32    4.43    6.33    7.47    7.52    6.53    4.79    2.77    0.88   -0.62   -1.71   -2.43   -2.80   -2.57   -1.22    1.81    6.78
+   230.0    0.00    0.70    2.37    4.48    6.38    7.51    7.57    6.57    4.83    2.81    0.92   -0.60   -1.69   -2.42   -2.76   -2.46   -1.01    2.15    7.19
+   235.0    0.00    0.73    2.42    4.53    6.43    7.56    7.60    6.59    4.84    2.81    0.91   -0.62   -1.72   -2.44   -2.74   -2.35   -0.77    2.51    7.59
+   240.0    0.00    0.76    2.46    4.59    6.48    7.59    7.62    6.59    4.83    2.78    0.86   -0.68   -1.79   -2.49   -2.74   -2.25   -0.55    2.85    7.94
+   245.0    0.00    0.78    2.51    4.64    6.53    7.62    7.63    6.58    4.79    2.72    0.77   -0.79   -1.90   -2.58   -2.76   -2.17   -0.34    3.14    8.20
+   250.0    0.00    0.81    2.55    4.69    6.57    7.65    7.63    6.55    4.73    2.63    0.66   -0.92   -2.04   -2.69   -2.81   -2.12   -0.19    3.34    8.34
+   255.0    0.00    0.83    2.59    4.73    6.61    7.67    7.63    6.52    4.67    2.53    0.53   -1.07   -2.18   -2.81   -2.88   -2.11   -0.12    3.43    8.33
+   260.0    0.00    0.85    2.63    4.78    6.65    7.69    7.62    6.48    4.60    2.44    0.42   -1.20   -2.32   -2.93   -2.96   -2.16   -0.13    3.39    8.19
+   265.0    0.00    0.87    2.66    4.82    6.69    7.71    7.62    6.45    4.55    2.36    0.32   -1.31   -2.43   -3.04   -3.06   -2.25   -0.25    3.21    7.92
+   270.0    0.00    0.89    2.70    4.86    6.72    7.73    7.62    6.43    4.51    2.31    0.26   -1.38   -2.51   -3.13   -3.17   -2.41   -0.47    2.90    7.54
+   275.0    0.00    0.91    2.73    4.89    6.75    7.75    7.62    6.43    4.50    2.29    0.24   -1.40   -2.55   -3.20   -3.30   -2.61   -0.79    2.48    7.09
+   280.0    0.00    0.92    2.75    4.93    6.78    7.78    7.64    6.44    4.51    2.31    0.26   -1.38   -2.54   -3.24   -3.42   -2.86   -1.18    1.98    6.59
+   285.0    0.00    0.93    2.78    4.96    6.81    7.80    7.66    6.47    4.54    2.36    0.33   -1.31   -2.50   -3.26   -3.54   -3.13   -1.61    1.44    6.10
+   290.0    0.00    0.94    2.80    4.98    6.84    7.83    7.70    6.51    4.60    2.44    0.42   -1.22   -2.43   -3.26   -3.66   -3.41   -2.06    0.90    5.64
+   295.0    0.00    0.95    2.81    5.01    6.87    7.86    7.74    6.56    4.68    2.54    0.54   -1.10   -2.34   -3.24   -3.77   -3.68   -2.48    0.40    5.24
+   300.0    0.00    0.96    2.82    5.02    6.89    7.90    7.78    6.62    4.76    2.65    0.67   -0.97   -2.25   -3.23   -3.87   -3.93   -2.86   -0.04    4.91
+   305.0    0.00    0.96    2.83    5.04    6.91    7.93    7.82    6.68    4.85    2.76    0.79   -0.86   -2.17   -3.21   -3.96   -4.13   -3.16   -0.39    4.66
+   310.0    0.00    0.96    2.83    5.05    6.93    7.95    7.87    6.75    4.93    2.86    0.90   -0.76   -2.10   -3.20   -4.02   -4.28   -3.38   -0.63    4.48
+   315.0    0.00    0.95    2.83    5.05    6.94    7.98    7.90    6.80    5.00    2.94    0.99   -0.68   -2.06   -3.20   -4.08   -4.38   -3.51   -0.77    4.38
+   320.0    0.00    0.95    2.83    5.05    6.95    8.00    7.94    6.85    5.06    3.01    1.05   -0.63   -2.03   -3.21   -4.11   -4.43   -3.57   -0.81    4.34
+   325.0    0.00    0.94    2.82    5.04    6.95    8.01    7.96    6.88    5.11    3.06    1.10   -0.60   -2.03   -3.23   -4.14   -4.44   -3.55   -0.77    4.35
+   330.0    0.00    0.93    2.80    5.03    6.95    8.01    7.97    6.91    5.14    3.09    1.12   -0.59   -2.03   -3.24   -4.15   -4.43   -3.49   -0.68    4.40
+   335.0    0.00    0.92    2.78    5.01    6.93    8.01    7.98    6.92    5.15    3.11    1.13   -0.59   -2.04   -3.26   -4.15   -4.40   -3.41   -0.56    4.49
+   340.0    0.00    0.90    2.75    4.99    6.92    8.00    7.98    6.92    5.15    3.11    1.14   -0.58   -2.04   -3.26   -4.15   -4.36   -3.33   -0.43    4.59
+   345.0    0.00    0.88    2.73    4.96    6.89    7.99    7.97    6.91    5.15    3.10    1.14   -0.58   -2.03   -3.25   -4.13   -4.33   -3.25   -0.31    4.71
+   350.0    0.00    0.86    2.69    4.92    6.87    7.97    7.96    6.90    5.14    3.10    1.14   -0.56   -2.00   -3.22   -4.11   -4.30   -3.20   -0.22    4.85
+   355.0    0.00    0.84    2.65    4.88    6.83    7.94    7.94    6.88    5.12    3.09    1.15   -0.53   -1.95   -3.17   -4.07   -4.28   -3.18   -0.15    4.98
+   360.0    0.00    0.81    2.61    4.84    6.80    7.92    7.92    6.87    5.11    3.08    1.16   -0.49   -1.89   -3.09   -4.01   -4.26   -3.17   -0.11    5.12
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -1.40      1.46     66.45                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.07   -0.28   -0.64   -1.14   -1.77   -2.50   -3.24   -3.89   -4.30   -4.36   -4.02   -3.35   -2.46   -1.41   -0.11    1.73    4.54    8.63
+     0.0    0.00   -0.28   -0.65   -1.09   -1.61   -2.23   -2.94   -3.67   -4.26   -4.56   -4.44   -3.90   -3.06   -2.10   -1.15   -0.10    1.36    3.74    7.35
+     5.0    0.00   -0.28   -0.64   -1.06   -1.55   -2.14   -2.84   -3.57   -4.18   -4.49   -4.38   -3.83   -2.97   -2.00   -1.04    0.01    1.50    3.94    7.63
+    10.0    0.00   -0.29   -0.63   -1.02   -1.48   -2.05   -2.74   -3.47   -4.10   -4.43   -4.32   -3.76   -2.89   -1.91   -0.94    0.12    1.65    4.16    7.95
+    15.0    0.00   -0.29   -0.62   -0.98   -1.41   -1.95   -2.63   -3.37   -4.01   -4.36   -4.27   -3.71   -2.83   -1.83   -0.84    0.25    1.82    4.39    8.30
+    20.0    0.00   -0.29   -0.61   -0.94   -1.34   -1.86   -2.52   -3.26   -3.92   -4.29   -4.22   -3.67   -2.79   -1.77   -0.75    0.38    2.00    4.65    8.66
+    25.0    0.00   -0.29   -0.59   -0.91   -1.28   -1.78   -2.42   -3.16   -3.82   -4.21   -4.16   -3.64   -2.76   -1.73   -0.67    0.50    2.19    4.91    9.03
+    30.0    0.00   -0.29   -0.58   -0.88   -1.24   -1.71   -2.33   -3.06   -3.72   -4.13   -4.11   -3.61   -2.75   -1.71   -0.61    0.63    2.38    5.19    9.39
+    35.0    0.00   -0.29   -0.58   -0.86   -1.20   -1.66   -2.26   -2.97   -3.63   -4.04   -4.05   -3.58   -2.74   -1.70   -0.57    0.74    2.58    5.46    9.72
+    40.0    0.00   -0.29   -0.57   -0.85   -1.18   -1.62   -2.21   -2.89   -3.54   -3.96   -3.98   -3.55   -2.74   -1.70   -0.54    0.83    2.76    5.71   10.02
+    45.0    0.00   -0.28   -0.57   -0.85   -1.18   -1.61   -2.18   -2.84   -3.47   -3.88   -3.92   -3.51   -2.73   -1.71   -0.53    0.90    2.91    5.94   10.27
+    50.0    0.00   -0.28   -0.57   -0.86   -1.19   -1.63   -2.18   -2.82   -3.42   -3.81   -3.85   -3.47   -2.72   -1.72   -0.53    0.96    3.04    6.13   10.47
+    55.0    0.00   -0.28   -0.57   -0.87   -1.22   -1.66   -2.21   -2.83   -3.40   -3.77   -3.80   -3.43   -2.72   -1.73   -0.54    0.98    3.13    6.27   10.62
+    60.0    0.00   -0.27   -0.57   -0.89   -1.26   -1.72   -2.27   -2.87   -3.41   -3.75   -3.77   -3.41   -2.71   -1.75   -0.56    0.99    3.18    6.36   10.72
+    65.0    0.00   -0.27   -0.57   -0.91   -1.31   -1.79   -2.35   -2.94   -3.46   -3.76   -3.76   -3.40   -2.72   -1.78   -0.60    0.96    3.19    6.41   10.78
+    70.0    0.00   -0.26   -0.58   -0.94   -1.37   -1.88   -2.45   -3.04   -3.53   -3.82   -3.79   -3.42   -2.75   -1.83   -0.65    0.91    3.17    6.42   10.79
+    75.0    0.00   -0.26   -0.58   -0.97   -1.43   -1.97   -2.57   -3.16   -3.64   -3.90   -3.86   -3.48   -2.81   -1.90   -0.73    0.84    3.11    6.39   10.77
+    80.0    0.00   -0.25   -0.59   -1.00   -1.50   -2.07   -2.69   -3.29   -3.77   -4.02   -3.97   -3.58   -2.91   -2.00   -0.83    0.74    3.02    6.32   10.72
+    85.0    0.00   -0.24   -0.59   -1.03   -1.55   -2.16   -2.81   -3.43   -3.92   -4.17   -4.11   -3.72   -3.04   -2.13   -0.96    0.62    2.92    6.23   10.64
+    90.0    0.00   -0.23   -0.59   -1.05   -1.61   -2.24   -2.92   -3.56   -4.07   -4.34   -4.28   -3.90   -3.22   -2.30   -1.12    0.48    2.79    6.12   10.53
+    95.0    0.00   -0.22   -0.58   -1.06   -1.65   -2.31   -3.01   -3.68   -4.22   -4.51   -4.48   -4.10   -3.43   -2.50   -1.30    0.31    2.65    5.99   10.41
+   100.0    0.00   -0.21   -0.57   -1.07   -1.68   -2.37   -3.09   -3.79   -4.35   -4.68   -4.67   -4.32   -3.65   -2.72   -1.50    0.14    2.49    5.85   10.27
+   105.0    0.00   -0.19   -0.56   -1.07   -1.70   -2.40   -3.15   -3.87   -4.47   -4.83   -4.86   -4.54   -3.88   -2.94   -1.72   -0.05    2.32    5.70   10.12
+   110.0    0.00   -0.18   -0.54   -1.06   -1.70   -2.42   -3.19   -3.93   -4.56   -4.95   -5.03   -4.74   -4.10   -3.17   -1.93   -0.25    2.15    5.54    9.97
+   115.0    0.00   -0.16   -0.52   -1.04   -1.69   -2.42   -3.20   -3.96   -4.61   -5.05   -5.16   -4.90   -4.29   -3.37   -2.13   -0.44    1.97    5.38    9.81
+   120.0    0.00   -0.14   -0.49   -1.02   -1.67   -2.41   -3.19   -3.97   -4.64   -5.10   -5.24   -5.02   -4.43   -3.53   -2.31   -0.62    1.80    5.22    9.66
+   125.0    0.00   -0.12   -0.46   -0.98   -1.63   -2.37   -3.17   -3.95   -4.64   -5.11   -5.28   -5.08   -4.53   -3.66   -2.46   -0.78    1.64    5.07    9.53
+   130.0    0.00   -0.10   -0.42   -0.93   -1.58   -2.33   -3.12   -3.91   -4.60   -5.09   -5.27   -5.10   -4.58   -3.74   -2.57   -0.92    1.50    4.94    9.40
+   135.0    0.00   -0.08   -0.38   -0.88   -1.52   -2.27   -3.06   -3.85   -4.54   -5.03   -5.22   -5.06   -4.58   -3.78   -2.65   -1.02    1.38    4.82    9.30
+   140.0    0.00   -0.05   -0.34   -0.82   -1.45   -2.19   -2.99   -3.77   -4.46   -4.94   -5.13   -4.99   -4.53   -3.78   -2.69   -1.10    1.29    4.73    9.22
+   145.0    0.00   -0.03   -0.28   -0.75   -1.37   -2.10   -2.90   -3.68   -4.36   -4.83   -5.02   -4.90   -4.46   -3.75   -2.70   -1.14    1.23    4.67    9.15
+   150.0    0.00    0.00   -0.23   -0.67   -1.28   -2.00   -2.79   -3.57   -4.24   -4.71   -4.90   -4.79   -4.38   -3.69   -2.68   -1.15    1.20    4.62    9.10
+   155.0    0.00    0.02   -0.18   -0.59   -1.17   -1.89   -2.68   -3.45   -4.11   -4.58   -4.78   -4.68   -4.29   -3.63   -2.64   -1.13    1.20    4.60    9.06
+   160.0    0.00    0.05   -0.12   -0.50   -1.06   -1.77   -2.55   -3.31   -3.98   -4.45   -4.66   -4.58   -4.21   -3.57   -2.59   -1.08    1.22    4.59    9.02
+   165.0    0.00    0.08   -0.06   -0.41   -0.95   -1.64   -2.41   -3.17   -3.85   -4.33   -4.56   -4.49   -4.14   -3.51   -2.52   -1.02    1.27    4.59    8.97
+   170.0    0.00    0.10    0.00   -0.31   -0.83   -1.50   -2.26   -3.03   -3.71   -4.22   -4.47   -4.43   -4.09   -3.44   -2.45   -0.94    1.32    4.59    8.92
+   175.0    0.00    0.12    0.06   -0.22   -0.70   -1.35   -2.11   -2.88   -3.58   -4.12   -4.40   -4.38   -4.04   -3.38   -2.36   -0.85    1.37    4.58    8.86
+   180.0    0.00    0.15    0.11   -0.13   -0.58   -1.21   -1.96   -2.74   -3.46   -4.03   -4.34   -4.33   -3.99   -3.31   -2.27   -0.76    1.43    4.56    8.80
+   185.0    0.00    0.17    0.17   -0.04   -0.47   -1.07   -1.81   -2.61   -3.35   -3.95   -4.29   -4.29   -3.94   -3.22   -2.16   -0.65    1.48    4.53    8.74
+   190.0    0.00    0.19    0.21    0.04   -0.36   -0.95   -1.68   -2.49   -3.26   -3.88   -4.24   -4.24   -3.86   -3.11   -2.02   -0.54    1.53    4.50    8.70
+   195.0    0.00    0.20    0.26    0.11   -0.26   -0.83   -1.57   -2.39   -3.18   -3.82   -4.18   -4.17   -3.76   -2.97   -1.87   -0.42    1.58    4.48    8.67
+   200.0    0.00    0.22    0.29    0.17   -0.17   -0.74   -1.47   -2.31   -3.12   -3.77   -4.13   -4.08   -3.62   -2.81   -1.70   -0.28    1.64    4.47    8.68
+   205.0    0.00    0.23    0.32    0.22   -0.10   -0.66   -1.41   -2.25   -3.08   -3.73   -4.06   -3.98   -3.47   -2.61   -1.50   -0.13    1.71    4.49    8.72
+   210.0    0.00    0.24    0.35    0.26   -0.06   -0.61   -1.36   -2.22   -3.05   -3.69   -3.99   -3.85   -3.29   -2.40   -1.30    0.02    1.81    4.54    8.79
+   215.0    0.00    0.24    0.36    0.29   -0.02   -0.58   -1.34   -2.21   -3.04   -3.66   -3.91   -3.72   -3.10   -2.19   -1.10    0.18    1.92    4.63    8.90
+   220.0    0.00    0.24    0.36    0.30   -0.01   -0.58   -1.35   -2.22   -3.04   -3.63   -3.83   -3.58   -2.92   -2.00   -0.92    0.34    2.05    4.76    9.02
+   225.0    0.00    0.24    0.36    0.29   -0.02   -0.59   -1.37   -2.25   -3.05   -3.61   -3.76   -3.46   -2.77   -1.83   -0.76    0.48    2.19    4.91    9.15
+   230.0    0.00    0.23    0.35    0.27   -0.05   -0.63   -1.42   -2.29   -3.07   -3.59   -3.70   -3.35   -2.64   -1.70   -0.64    0.60    2.34    5.08    9.27
+   235.0    0.00    0.22    0.33    0.24   -0.10   -0.69   -1.48   -2.34   -3.10   -3.58   -3.65   -3.28   -2.56   -1.63   -0.58    0.68    2.47    5.24    9.36
+   240.0    0.00    0.21    0.30    0.19   -0.16   -0.76   -1.55   -2.40   -3.14   -3.58   -3.62   -3.24   -2.53   -1.61   -0.56    0.72    2.56    5.37    9.39
+   245.0    0.00    0.20    0.26    0.13   -0.24   -0.85   -1.64   -2.47   -3.18   -3.60   -3.62   -3.24   -2.54   -1.65   -0.60    0.72    2.61    5.44    9.35
+   250.0    0.00    0.18    0.22    0.06   -0.33   -0.95   -1.73   -2.55   -3.23   -3.63   -3.64   -3.27   -2.60   -1.73   -0.69    0.66    2.59    5.44    9.24
+   255.0    0.00    0.16    0.17   -0.02   -0.43   -1.06   -1.84   -2.64   -3.30   -3.68   -3.69   -3.34   -2.69   -1.84   -0.81    0.55    2.51    5.35    9.06
+   260.0    0.00    0.13    0.11   -0.11   -0.55   -1.18   -1.95   -2.74   -3.38   -3.75   -3.77   -3.43   -2.80   -1.98   -0.96    0.39    2.35    5.16    8.80
+   265.0    0.00    0.11    0.05   -0.20   -0.66   -1.31   -2.08   -2.85   -3.48   -3.84   -3.86   -3.53   -2.92   -2.12   -1.12    0.21    2.12    4.89    8.48
+   270.0    0.00    0.08   -0.01   -0.30   -0.79   -1.45   -2.21   -2.97   -3.59   -3.95   -3.97   -3.65   -3.05   -2.25   -1.28    0.00    1.84    4.54    8.13
+   275.0    0.00    0.06   -0.07   -0.40   -0.91   -1.59   -2.35   -3.10   -3.72   -4.08   -4.10   -3.77   -3.16   -2.36   -1.42   -0.21    1.53    4.14    7.77
+   280.0    0.00    0.03   -0.14   -0.50   -1.04   -1.73   -2.49   -3.24   -3.86   -4.22   -4.23   -3.88   -3.25   -2.45   -1.54   -0.42    1.20    3.72    7.41
+   285.0    0.00    0.00   -0.20   -0.60   -1.17   -1.87   -2.64   -3.39   -4.01   -4.36   -4.36   -3.99   -3.33   -2.51   -1.62   -0.60    0.88    3.30    7.08
+   290.0    0.00   -0.03   -0.27   -0.70   -1.29   -2.00   -2.78   -3.53   -4.15   -4.51   -4.50   -4.09   -3.39   -2.54   -1.68   -0.74    0.60    2.92    6.80
+   295.0    0.00   -0.06   -0.33   -0.79   -1.40   -2.13   -2.91   -3.67   -4.29   -4.65   -4.62   -4.18   -3.43   -2.56   -1.71   -0.85    0.37    2.60    6.57
+   300.0    0.00   -0.08   -0.39   -0.88   -1.51   -2.24   -3.03   -3.79   -4.42   -4.77   -4.72   -4.26   -3.47   -2.56   -1.71   -0.91    0.21    2.37    6.40
+   305.0    0.00   -0.11   -0.44   -0.95   -1.60   -2.34   -3.13   -3.90   -4.52   -4.87   -4.81   -4.32   -3.50   -2.56   -1.70   -0.93    0.13    2.22    6.29
+   310.0    0.00   -0.14   -0.49   -1.02   -1.68   -2.42   -3.21   -3.98   -4.60   -4.94   -4.88   -4.37   -3.52   -2.55   -1.68   -0.92    0.11    2.17    6.23
+   315.0    0.00   -0.16   -0.53   -1.08   -1.74   -2.49   -3.28   -4.03   -4.65   -4.99   -4.92   -4.40   -3.53   -2.55   -1.66   -0.88    0.15    2.19    6.22
+   320.0    0.00   -0.18   -0.57   -1.12   -1.79   -2.53   -3.31   -4.07   -4.68   -5.01   -4.93   -4.41   -3.54   -2.54   -1.63   -0.81    0.25    2.29    6.25
+   325.0    0.00   -0.20   -0.60   -1.15   -1.82   -2.56   -3.33   -4.07   -4.68   -5.00   -4.92   -4.40   -3.53   -2.53   -1.60   -0.74    0.37    2.43    6.30
+   330.0    0.00   -0.22   -0.62   -1.18   -1.83   -2.56   -3.32   -4.06   -4.65   -4.97   -4.88   -4.37   -3.51   -2.52   -1.56   -0.65    0.52    2.61    6.37
+   335.0    0.00   -0.23   -0.64   -1.19   -1.83   -2.55   -3.30   -4.02   -4.61   -4.91   -4.83   -4.32   -3.47   -2.49   -1.52   -0.57    0.68    2.80    6.47
+   340.0    0.00   -0.25   -0.65   -1.18   -1.81   -2.51   -3.25   -3.97   -4.55   -4.85   -4.76   -4.25   -3.42   -2.44   -1.47   -0.48    0.83    2.99    6.58
+   345.0    0.00   -0.26   -0.66   -1.17   -1.78   -2.46   -3.19   -3.91   -4.48   -4.78   -4.68   -4.17   -3.34   -2.38   -1.41   -0.39    0.97    3.18    6.72
+   350.0    0.00   -0.27   -0.66   -1.15   -1.73   -2.40   -3.12   -3.83   -4.41   -4.70   -4.60   -4.08   -3.25   -2.30   -1.33   -0.30    1.11    3.37    6.89
+   355.0    0.00   -0.27   -0.66   -1.13   -1.68   -2.32   -3.04   -3.75   -4.34   -4.63   -4.52   -3.99   -3.16   -2.20   -1.25   -0.21    1.23    3.55    7.10
+   360.0    0.00   -0.28   -0.65   -1.09   -1.61   -2.23   -2.94   -3.67   -4.26   -4.56   -4.44   -3.90   -3.06   -2.10   -1.15   -0.10    1.36    3.74    7.35
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TRM27947.00+GP  NONE                                        TYPE / SERIAL NO    
+FIELD               NGS/TUM                  1    10-AUG-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      2.20     -0.86     56.44                              NORTH / EAST / UP   
+   NOAZI    0.00    4.96    8.98   12.03   14.12   15.31   15.75   15.61   15.13   14.40   13.56   12.94   12.63   12.86   14.00   16.57   20.89
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.50      2.18     67.66                              NORTH / EAST / UP   
+   NOAZI    0.00    0.27    0.38    0.50    0.48    0.38    0.07   -0.41   -0.85   -1.33   -1.55   -1.63   -1.28   -0.65    0.37    1.69    3.76
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TRM27947.00-GP  NONE                                        TYPE / SERIAL NO    
+FIELD               NGS/TUM                  1    10-AUG-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      4.00     -0.36     72.94                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.54   -0.82   -1.17   -1.48   -1.79   -2.15   -2.39   -2.67   -2.80   -2.84   -2.66   -2.47   -2.04   -1.20    0.17    2.39
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -1.50      1.48     86.96                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.63   -1.22   -1.70   -2.22   -2.72   -3.23   -3.61   -4.05   -4.23   -4.35   -4.23   -3.88   -3.55   -3.33   -3.21   -3.14
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TRM29659.00     NONE                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH              12    27-JAN-03 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+     -0.06     -0.91     91.95                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.24   -0.94   -2.02   -3.37   -4.83   -6.23   -7.40   -8.21   -8.58   -8.45   -7.84   -6.73   -5.10   -2.83    0.20    4.11    8.84   14.09
+     0.0    0.00   -0.24   -0.94   -2.02   -3.37   -4.83   -6.23   -7.37   -8.11   -8.37   -8.13   -7.43   -6.28   -4.65   -2.41    0.65    4.64    9.52   14.80
+     5.0    0.00   -0.24   -0.94   -2.01   -3.36   -4.83   -6.22   -7.37   -8.12   -8.38   -8.14   -7.43   -6.27   -4.65   -2.42    0.60    4.56    9.41   14.73
+    10.0    0.00   -0.24   -0.93   -2.01   -3.35   -4.82   -6.22   -7.38   -8.14   -8.40   -8.16   -7.45   -6.29   -4.66   -2.45    0.53    4.45    9.28   14.64
+    15.0    0.00   -0.24   -0.93   -2.00   -3.35   -4.81   -6.22   -7.39   -8.16   -8.44   -8.20   -7.48   -6.32   -4.69   -2.49    0.46    4.34    9.16   14.56
+    20.0    0.00   -0.24   -0.93   -2.00   -3.34   -4.81   -6.22   -7.40   -8.18   -8.48   -8.25   -7.54   -6.37   -4.74   -2.54    0.39    4.24    9.04   14.47
+    25.0    0.00   -0.24   -0.92   -1.99   -3.34   -4.81   -6.22   -7.41   -8.21   -8.52   -8.31   -7.61   -6.44   -4.80   -2.60    0.33    4.16    8.94   14.39
+    30.0    0.00   -0.23   -0.92   -1.99   -3.34   -4.80   -6.23   -7.42   -8.23   -8.57   -8.38   -7.68   -6.52   -4.87   -2.66    0.28    4.10    8.86   14.32
+    35.0    0.00   -0.23   -0.92   -1.99   -3.33   -4.80   -6.23   -7.43   -8.26   -8.61   -8.44   -7.76   -6.60   -4.94   -2.72    0.23    4.06    8.81   14.25
+    40.0    0.00   -0.23   -0.92   -1.99   -3.33   -4.80   -6.22   -7.43   -8.28   -8.65   -8.50   -7.84   -6.69   -5.02   -2.77    0.21    4.05    8.78   14.19
+    45.0    0.00   -0.23   -0.92   -1.99   -3.33   -4.80   -6.22   -7.43   -8.29   -8.68   -8.55   -7.91   -6.77   -5.09   -2.82    0.18    4.04    8.77   14.13
+    50.0    0.00   -0.23   -0.92   -1.99   -3.33   -4.80   -6.22   -7.43   -8.29   -8.70   -8.60   -7.97   -6.83   -5.16   -2.86    0.17    4.04    8.76   14.08
+    55.0    0.00   -0.23   -0.92   -1.99   -3.33   -4.80   -6.22   -7.43   -8.30   -8.71   -8.62   -8.02   -6.89   -5.21   -2.90    0.15    4.05    8.76   14.04
+    60.0    0.00   -0.23   -0.92   -1.99   -3.33   -4.80   -6.22   -7.43   -8.29   -8.71   -8.64   -8.05   -6.93   -5.25   -2.94    0.13    4.04    8.75   13.99
+    65.0    0.00   -0.23   -0.92   -1.99   -3.33   -4.80   -6.22   -7.43   -8.29   -8.71   -8.64   -8.06   -6.95   -5.28   -2.97    0.10    4.02    8.73   13.95
+    70.0    0.00   -0.23   -0.92   -1.99   -3.34   -4.80   -6.22   -7.42   -8.28   -8.71   -8.64   -8.06   -6.97   -5.31   -3.00    0.07    3.98    8.69   13.90
+    75.0    0.00   -0.23   -0.92   -1.99   -3.34   -4.81   -6.22   -7.42   -8.28   -8.70   -8.63   -8.06   -6.97   -5.33   -3.03    0.03    3.94    8.64   13.85
+    80.0    0.00   -0.23   -0.92   -2.00   -3.34   -4.81   -6.23   -7.43   -8.28   -8.69   -8.62   -8.05   -6.97   -5.34   -3.06   -0.02    3.88    8.58   13.79
+    85.0    0.00   -0.23   -0.92   -2.00   -3.35   -4.82   -6.23   -7.43   -8.28   -8.69   -8.62   -8.05   -6.98   -5.36   -3.10   -0.07    3.82    8.52   13.73
+    90.0    0.00   -0.23   -0.92   -2.00   -3.35   -4.82   -6.24   -7.44   -8.29   -8.70   -8.62   -8.05   -6.99   -5.37   -3.13   -0.12    3.76    8.45   13.67
+    95.0    0.00   -0.23   -0.92   -2.00   -3.35   -4.82   -6.24   -7.45   -8.30   -8.71   -8.63   -8.07   -7.00   -5.40   -3.16   -0.16    3.71    8.39   13.61
+   100.0    0.00   -0.23   -0.92   -2.00   -3.35   -4.83   -6.25   -7.45   -8.31   -8.72   -8.65   -8.08   -7.02   -5.42   -3.18   -0.19    3.67    8.35   13.56
+   105.0    0.00   -0.23   -0.92   -2.00   -3.36   -4.83   -6.25   -7.46   -8.31   -8.73   -8.67   -8.11   -7.05   -5.44   -3.20   -0.20    3.66    8.34   13.53
+   110.0    0.00   -0.23   -0.92   -2.00   -3.35   -4.83   -6.25   -7.46   -8.32   -8.74   -8.68   -8.13   -7.07   -5.47   -3.22   -0.20    3.67    8.35   13.52
+   115.0    0.00   -0.23   -0.92   -2.00   -3.35   -4.82   -6.25   -7.46   -8.32   -8.75   -8.69   -8.15   -7.09   -5.48   -3.22   -0.18    3.71    8.39   13.54
+   120.0    0.00   -0.23   -0.92   -2.00   -3.35   -4.82   -6.24   -7.45   -8.31   -8.74   -8.70   -8.16   -7.10   -5.48   -3.20   -0.14    3.77    8.46   13.60
+   125.0    0.00   -0.23   -0.92   -2.00   -3.35   -4.82   -6.23   -7.44   -8.30   -8.73   -8.69   -8.15   -7.09   -5.47   -3.17   -0.09    3.85    8.56   13.70
+   130.0    0.00   -0.23   -0.92   -1.99   -3.34   -4.81   -6.22   -7.42   -8.28   -8.70   -8.66   -8.12   -7.06   -5.43   -3.12   -0.02    3.95    8.68   13.83
+   135.0    0.00   -0.23   -0.92   -1.99   -3.34   -4.80   -6.21   -7.40   -8.25   -8.66   -8.61   -8.07   -7.01   -5.38   -3.06    0.07    4.06    8.81   13.99
+   140.0    0.00   -0.23   -0.92   -1.99   -3.33   -4.79   -6.19   -7.37   -8.21   -8.62   -8.55   -8.01   -6.95   -5.30   -2.98    0.16    4.17    8.96   14.16
+   145.0    0.00   -0.23   -0.92   -1.99   -3.33   -4.78   -6.18   -7.35   -8.17   -8.56   -8.49   -7.93   -6.86   -5.22   -2.88    0.26    4.29    9.10   14.34
+   150.0    0.00   -0.23   -0.91   -1.99   -3.32   -4.77   -6.16   -7.32   -8.13   -8.50   -8.41   -7.84   -6.76   -5.12   -2.78    0.36    4.39    9.22   14.50
+   155.0    0.00   -0.23   -0.91   -1.98   -3.32   -4.76   -6.14   -7.30   -8.09   -8.45   -8.34   -7.75   -6.66   -5.01   -2.68    0.46    4.49    9.32   14.63
+   160.0    0.00   -0.23   -0.91   -1.98   -3.32   -4.76   -6.13   -7.27   -8.05   -8.39   -8.27   -7.67   -6.57   -4.91   -2.58    0.55    4.56    9.39   14.71
+   165.0    0.00   -0.23   -0.91   -1.98   -3.31   -4.75   -6.12   -7.25   -8.02   -8.35   -8.21   -7.59   -6.49   -4.82   -2.50    0.62    4.62    9.43   14.74
+   170.0    0.00   -0.23   -0.92   -1.98   -3.31   -4.74   -6.11   -7.24   -8.00   -8.32   -8.17   -7.54   -6.42   -4.75   -2.43    0.68    4.65    9.42   14.72
+   175.0    0.00   -0.23   -0.92   -1.98   -3.31   -4.74   -6.10   -7.22   -7.98   -8.30   -8.14   -7.51   -6.37   -4.70   -2.37    0.71    4.65    9.38   14.64
+   180.0    0.00   -0.23   -0.92   -1.98   -3.31   -4.74   -6.09   -7.22   -7.98   -8.30   -8.14   -7.49   -6.35   -4.67   -2.35    0.72    4.62    9.31   14.52
+   185.0    0.00   -0.23   -0.92   -1.98   -3.31   -4.73   -6.09   -7.22   -7.98   -8.30   -8.14   -7.50   -6.35   -4.66   -2.35    0.71    4.57    9.21   14.37
+   190.0    0.00   -0.24   -0.92   -1.98   -3.31   -4.73   -6.09   -7.22   -7.99   -8.32   -8.17   -7.52   -6.37   -4.68   -2.37    0.67    4.50    9.09   14.21
+   195.0    0.00   -0.24   -0.92   -1.99   -3.31   -4.74   -6.10   -7.23   -8.01   -8.34   -8.20   -7.56   -6.41   -4.72   -2.41    0.61    4.41    8.97   14.05
+   200.0    0.00   -0.24   -0.93   -1.99   -3.31   -4.74   -6.10   -7.24   -8.03   -8.37   -8.23   -7.60   -6.46   -4.77   -2.48    0.53    4.31    8.85   13.92
+   205.0    0.00   -0.24   -0.93   -1.99   -3.32   -4.75   -6.11   -7.26   -8.05   -8.40   -8.27   -7.64   -6.51   -4.83   -2.55    0.44    4.22    8.76   13.83
+   210.0    0.00   -0.24   -0.93   -2.00   -3.32   -4.75   -6.12   -7.27   -8.07   -8.43   -8.31   -7.69   -6.56   -4.90   -2.63    0.35    4.13    8.69   13.78
+   215.0    0.00   -0.24   -0.94   -2.00   -3.33   -4.76   -6.13   -7.29   -8.09   -8.45   -8.34   -7.73   -6.62   -4.97   -2.71    0.27    4.06    8.65   13.78
+   220.0    0.00   -0.24   -0.94   -2.01   -3.34   -4.77   -6.15   -7.30   -8.11   -8.48   -8.37   -7.77   -6.67   -5.04   -2.79    0.20    4.01    8.64   13.82
+   225.0    0.00   -0.25   -0.94   -2.02   -3.35   -4.78   -6.16   -7.32   -8.12   -8.50   -8.39   -7.80   -6.72   -5.10   -2.85    0.14    3.98    8.65   13.88
+   230.0    0.00   -0.25   -0.95   -2.02   -3.35   -4.79   -6.17   -7.33   -8.14   -8.52   -8.42   -7.83   -6.76   -5.15   -2.91    0.10    3.97    8.69   13.95
+   235.0    0.00   -0.25   -0.95   -2.03   -3.36   -4.80   -6.18   -7.35   -8.16   -8.54   -8.44   -7.87   -6.80   -5.20   -2.95    0.07    3.98    8.74   14.02
+   240.0    0.00   -0.25   -0.96   -2.04   -3.37   -4.82   -6.20   -7.36   -8.18   -8.56   -8.47   -7.90   -6.84   -5.24   -2.99    0.06    4.00    8.78   14.06
+   245.0    0.00   -0.25   -0.96   -2.04   -3.38   -4.83   -6.21   -7.38   -8.19   -8.58   -8.50   -7.94   -6.88   -5.28   -3.01    0.05    4.02    8.81   14.07
+   250.0    0.00   -0.25   -0.96   -2.05   -3.39   -4.84   -6.23   -7.39   -8.22   -8.61   -8.53   -7.97   -6.92   -5.31   -3.03    0.05    4.02    8.81   14.03
+   255.0    0.00   -0.26   -0.97   -2.06   -3.40   -4.85   -6.24   -7.41   -8.24   -8.64   -8.56   -8.01   -6.95   -5.34   -3.05    0.04    4.02    8.78   13.95
+   260.0    0.00   -0.26   -0.97   -2.06   -3.41   -4.86   -6.26   -7.44   -8.27   -8.67   -8.60   -8.05   -6.99   -5.36   -3.07    0.02    3.99    8.72   13.84
+   265.0    0.00   -0.26   -0.97   -2.07   -3.42   -4.88   -6.28   -7.46   -8.30   -8.70   -8.63   -8.08   -7.01   -5.38   -3.09    0.00    3.93    8.63   13.71
+   270.0    0.00   -0.26   -0.98   -2.07   -3.43   -4.89   -6.30   -7.48   -8.32   -8.73   -8.66   -8.10   -7.03   -5.40   -3.11   -0.04    3.86    8.52   13.57
+   275.0    0.00   -0.26   -0.98   -2.08   -3.44   -4.90   -6.31   -7.51   -8.35   -8.76   -8.69   -8.12   -7.04   -5.41   -3.13   -0.09    3.77    8.40   13.45
+   280.0    0.00   -0.26   -0.98   -2.08   -3.44   -4.92   -6.33   -7.53   -8.38   -8.78   -8.70   -8.12   -7.04   -5.41   -3.15   -0.14    3.68    8.29   13.36
+   285.0    0.00   -0.26   -0.98   -2.08   -3.45   -4.93   -6.35   -7.55   -8.40   -8.80   -8.71   -8.12   -7.02   -5.40   -3.16   -0.19    3.60    8.19   13.31
+   290.0    0.00   -0.26   -0.98   -2.09   -3.46   -4.94   -6.36   -7.57   -8.41   -8.80   -8.70   -8.10   -7.00   -5.38   -3.17   -0.23    3.54    8.14   13.33
+   295.0    0.00   -0.26   -0.98   -2.09   -3.46   -4.95   -6.37   -7.58   -8.42   -8.80   -8.68   -8.07   -6.97   -5.36   -3.16   -0.24    3.52    8.14   13.39
+   300.0    0.00   -0.26   -0.98   -2.09   -3.46   -4.95   -6.38   -7.58   -8.42   -8.79   -8.65   -8.03   -6.92   -5.32   -3.14   -0.23    3.53    8.19   13.52
+   305.0    0.00   -0.26   -0.98   -2.09   -3.46   -4.95   -6.38   -7.58   -8.41   -8.76   -8.62   -7.98   -6.87   -5.27   -3.10   -0.19    3.59    8.29   13.68
+   310.0    0.00   -0.26   -0.98   -2.08   -3.46   -4.95   -6.38   -7.57   -8.39   -8.73   -8.57   -7.93   -6.82   -5.22   -3.04   -0.12    3.70    8.45   13.88
+   315.0    0.00   -0.26   -0.97   -2.08   -3.45   -4.94   -6.37   -7.56   -8.36   -8.69   -8.52   -7.87   -6.76   -5.16   -2.97   -0.02    3.84    8.64   14.09
+   320.0    0.00   -0.26   -0.97   -2.07   -3.45   -4.93   -6.36   -7.53   -8.32   -8.64   -8.46   -7.81   -6.69   -5.09   -2.89    0.09    4.01    8.85   14.30
+   325.0    0.00   -0.25   -0.97   -2.07   -3.44   -4.92   -6.34   -7.51   -8.29   -8.59   -8.40   -7.74   -6.63   -5.02   -2.80    0.22    4.19    9.06   14.49
+   330.0    0.00   -0.25   -0.96   -2.06   -3.43   -4.91   -6.32   -7.48   -8.25   -8.54   -8.35   -7.68   -6.57   -4.95   -2.71    0.35    4.36    9.26   14.65
+   335.0    0.00   -0.25   -0.96   -2.06   -3.42   -4.90   -6.30   -7.45   -8.21   -8.49   -8.29   -7.62   -6.50   -4.88   -2.62    0.47    4.51    9.42   14.77
+   340.0    0.00   -0.25   -0.96   -2.05   -3.41   -4.88   -6.28   -7.43   -8.18   -8.45   -8.24   -7.56   -6.44   -4.82   -2.54    0.56    4.63    9.55   14.85
+   345.0    0.00   -0.25   -0.95   -2.04   -3.40   -4.87   -6.26   -7.40   -8.15   -8.42   -8.19   -7.51   -6.39   -4.76   -2.48    0.63    4.70    9.61   14.89
+   350.0    0.00   -0.25   -0.95   -2.03   -3.39   -4.85   -6.25   -7.39   -8.13   -8.39   -8.16   -7.47   -6.34   -4.71   -2.44    0.67    4.72    9.63   14.89
+   355.0    0.00   -0.24   -0.94   -2.03   -3.38   -4.84   -6.24   -7.38   -8.12   -8.37   -8.14   -7.44   -6.30   -4.67   -2.41    0.67    4.70    9.59   14.86
+   360.0    0.00   -0.24   -0.94   -2.02   -3.37   -4.83   -6.23   -7.37   -8.11   -8.37   -8.13   -7.43   -6.28   -4.65   -2.41    0.65    4.64    9.52   14.80
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.16      0.16    120.49                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.14   -0.55   -1.17   -1.93   -2.76   -3.61   -4.42   -5.10   -5.53   -5.59   -5.21   -4.37   -3.15   -1.61    0.24    2.54    5.52    9.37
+     0.0    0.00   -0.15   -0.57   -1.17   -1.91   -2.71   -3.55   -4.37   -5.07   -5.52   -5.58   -5.18   -4.31   -3.05   -1.48    0.42    2.83    6.03   10.22
+     5.0    0.00   -0.15   -0.57   -1.18   -1.91   -2.72   -3.56   -4.38   -5.08   -5.53   -5.60   -5.19   -4.32   -3.05   -1.47    0.43    2.81    5.97   10.09
+    10.0    0.00   -0.15   -0.57   -1.18   -1.92   -2.73   -3.57   -4.39   -5.09   -5.55   -5.62   -5.21   -4.33   -3.05   -1.46    0.43    2.80    5.91    9.95
+    15.0    0.00   -0.15   -0.57   -1.19   -1.93   -2.74   -3.58   -4.40   -5.10   -5.56   -5.63   -5.22   -4.34   -3.05   -1.46    0.44    2.78    5.85    9.82
+    20.0    0.00   -0.15   -0.57   -1.19   -1.94   -2.75   -3.60   -4.41   -5.11   -5.57   -5.64   -5.24   -4.35   -3.05   -1.45    0.44    2.77    5.80    9.70
+    25.0    0.00   -0.15   -0.57   -1.19   -1.94   -2.76   -3.61   -4.42   -5.12   -5.57   -5.65   -5.24   -4.35   -3.06   -1.45    0.45    2.77    5.77    9.61
+    30.0    0.00   -0.15   -0.57   -1.20   -1.95   -2.78   -3.62   -4.43   -5.13   -5.58   -5.65   -5.25   -4.36   -3.06   -1.44    0.46    2.78    5.76    9.56
+    35.0    0.00   -0.15   -0.57   -1.20   -1.96   -2.79   -3.63   -4.44   -5.13   -5.58   -5.65   -5.25   -4.36   -3.06   -1.44    0.47    2.80    5.77    9.55
+    40.0    0.00   -0.15   -0.57   -1.20   -1.97   -2.80   -3.65   -4.46   -5.14   -5.58   -5.64   -5.24   -4.37   -3.07   -1.45    0.48    2.83    5.81    9.57
+    45.0    0.00   -0.15   -0.57   -1.21   -1.98   -2.82   -3.67   -4.47   -5.15   -5.58   -5.64   -5.24   -4.37   -3.08   -1.46    0.48    2.85    5.86    9.62
+    50.0    0.00   -0.15   -0.57   -1.21   -1.99   -2.83   -3.68   -4.49   -5.16   -5.58   -5.63   -5.24   -4.38   -3.10   -1.49    0.47    2.87    5.91    9.69
+    55.0    0.00   -0.15   -0.57   -1.21   -1.99   -2.84   -3.70   -4.51   -5.17   -5.58   -5.63   -5.24   -4.39   -3.13   -1.52    0.45    2.88    5.96    9.76
+    60.0    0.00   -0.15   -0.57   -1.21   -2.00   -2.86   -3.72   -4.52   -5.18   -5.59   -5.63   -5.25   -4.41   -3.17   -1.56    0.42    2.88    6.00    9.82
+    65.0    0.00   -0.15   -0.57   -1.21   -2.00   -2.87   -3.74   -4.54   -5.20   -5.60   -5.64   -5.26   -4.44   -3.21   -1.62    0.37    2.87    6.03    9.86
+    70.0    0.00   -0.15   -0.57   -1.21   -2.01   -2.88   -3.75   -4.56   -5.21   -5.61   -5.66   -5.29   -4.48   -3.27   -1.68    0.32    2.84    6.03    9.88
+    75.0    0.00   -0.15   -0.57   -1.21   -2.01   -2.88   -3.77   -4.58   -5.23   -5.64   -5.69   -5.32   -4.53   -3.33   -1.74    0.26    2.81    6.01    9.86
+    80.0    0.00   -0.14   -0.56   -1.21   -2.01   -2.89   -3.77   -4.59   -5.25   -5.66   -5.72   -5.36   -4.58   -3.39   -1.81    0.21    2.76    5.97    9.81
+    85.0    0.00   -0.14   -0.56   -1.21   -2.01   -2.89   -3.78   -4.60   -5.27   -5.68   -5.75   -5.40   -4.63   -3.45   -1.86    0.15    2.71    5.92    9.74
+    90.0    0.00   -0.14   -0.56   -1.20   -2.01   -2.89   -3.78   -4.61   -5.28   -5.71   -5.78   -5.45   -4.68   -3.50   -1.91    0.10    2.66    5.85    9.66
+    95.0    0.00   -0.14   -0.56   -1.20   -2.00   -2.89   -3.78   -4.61   -5.30   -5.73   -5.81   -5.49   -4.72   -3.54   -1.95    0.07    2.61    5.79    9.58
+   100.0    0.00   -0.14   -0.55   -1.20   -2.00   -2.88   -3.78   -4.62   -5.30   -5.74   -5.84   -5.51   -4.75   -3.56   -1.97    0.04    2.58    5.73    9.50
+   105.0    0.00   -0.14   -0.55   -1.19   -1.99   -2.88   -3.77   -4.61   -5.30   -5.75   -5.85   -5.53   -4.76   -3.57   -1.98    0.04    2.55    5.68    9.45
+   110.0    0.00   -0.14   -0.55   -1.19   -1.99   -2.87   -3.77   -4.60   -5.30   -5.75   -5.85   -5.53   -4.76   -3.56   -1.96    0.04    2.54    5.66    9.43
+   115.0    0.00   -0.14   -0.55   -1.19   -1.99   -2.87   -3.76   -4.59   -5.29   -5.74   -5.84   -5.51   -4.74   -3.53   -1.93    0.07    2.55    5.65    9.45
+   120.0    0.00   -0.14   -0.55   -1.19   -1.99   -2.86   -3.75   -4.58   -5.27   -5.71   -5.81   -5.48   -4.70   -3.49   -1.88    0.11    2.58    5.67    9.49
+   125.0    0.00   -0.14   -0.55   -1.19   -1.98   -2.86   -3.74   -4.57   -5.25   -5.69   -5.78   -5.44   -4.65   -3.43   -1.83    0.16    2.62    5.72    9.57
+   130.0    0.00   -0.14   -0.55   -1.19   -1.98   -2.85   -3.73   -4.55   -5.22   -5.65   -5.73   -5.39   -4.59   -3.37   -1.76    0.22    2.68    5.78    9.66
+   135.0    0.00   -0.14   -0.55   -1.19   -1.98   -2.85   -3.72   -4.53   -5.19   -5.61   -5.69   -5.33   -4.53   -3.30   -1.69    0.29    2.74    5.85    9.76
+   140.0    0.00   -0.14   -0.55   -1.19   -1.98   -2.85   -3.71   -4.51   -5.16   -5.57   -5.64   -5.28   -4.47   -3.24   -1.63    0.36    2.82    5.93    9.85
+   145.0    0.00   -0.14   -0.55   -1.19   -1.98   -2.84   -3.70   -4.49   -5.13   -5.54   -5.60   -5.23   -4.42   -3.18   -1.56    0.43    2.89    6.00    9.91
+   150.0    0.00   -0.14   -0.55   -1.19   -1.98   -2.84   -3.69   -4.47   -5.11   -5.50   -5.56   -5.20   -4.38   -3.13   -1.51    0.49    2.96    6.06    9.93
+   155.0    0.00   -0.14   -0.55   -1.19   -1.98   -2.83   -3.68   -4.45   -5.08   -5.48   -5.54   -5.17   -4.35   -3.10   -1.46    0.55    3.01    6.09    9.91
+   160.0    0.00   -0.14   -0.55   -1.19   -1.98   -2.83   -3.67   -4.44   -5.07   -5.46   -5.52   -5.16   -4.33   -3.07   -1.43    0.59    3.05    6.10    9.85
+   165.0    0.00   -0.14   -0.55   -1.19   -1.98   -2.82   -3.66   -4.43   -5.06   -5.46   -5.52   -5.16   -4.33   -3.06   -1.41    0.61    3.06    6.08    9.74
+   170.0    0.00   -0.14   -0.55   -1.19   -1.97   -2.81   -3.65   -4.42   -5.06   -5.46   -5.53   -5.16   -4.33   -3.06   -1.40    0.62    3.05    6.02    9.60
+   175.0    0.00   -0.14   -0.55   -1.19   -1.97   -2.81   -3.64   -4.41   -5.06   -5.47   -5.54   -5.18   -4.34   -3.05   -1.40    0.61    3.01    5.93    9.44
+   180.0    0.00   -0.14   -0.55   -1.19   -1.96   -2.80   -3.63   -4.41   -5.06   -5.48   -5.56   -5.19   -4.34   -3.06   -1.40    0.58    2.95    5.82    9.27
+   185.0    0.00   -0.14   -0.55   -1.19   -1.96   -2.79   -3.63   -4.41   -5.07   -5.50   -5.57   -5.20   -4.34   -3.05   -1.41    0.54    2.86    5.69    9.12
+   190.0    0.00   -0.14   -0.55   -1.18   -1.95   -2.78   -3.62   -4.41   -5.08   -5.51   -5.58   -5.20   -4.33   -3.05   -1.43    0.49    2.76    5.56    8.98
+   195.0    0.00   -0.14   -0.55   -1.18   -1.94   -2.77   -3.62   -4.42   -5.09   -5.52   -5.59   -5.19   -4.32   -3.03   -1.44    0.43    2.65    5.43    8.88
+   200.0    0.00   -0.14   -0.55   -1.17   -1.93   -2.76   -3.61   -4.41   -5.09   -5.52   -5.58   -5.17   -4.29   -3.02   -1.45    0.37    2.55    5.31    8.80
+   205.0    0.00   -0.14   -0.55   -1.17   -1.93   -2.75   -3.60   -4.41   -5.09   -5.52   -5.57   -5.15   -4.26   -2.99   -1.46    0.31    2.45    5.21    8.77
+   210.0    0.00   -0.14   -0.55   -1.17   -1.92   -2.75   -3.59   -4.40   -5.09   -5.51   -5.55   -5.11   -4.22   -2.97   -1.46    0.27    2.38    5.13    8.77
+   215.0    0.00   -0.14   -0.55   -1.16   -1.91   -2.73   -3.58   -4.39   -5.07   -5.49   -5.52   -5.08   -4.18   -2.94   -1.46    0.24    2.32    5.09    8.78
+   220.0    0.00   -0.14   -0.55   -1.16   -1.90   -2.72   -3.57   -4.38   -5.06   -5.47   -5.49   -5.04   -4.15   -2.92   -1.46    0.22    2.29    5.07    8.81
+   225.0    0.00   -0.14   -0.54   -1.15   -1.89   -2.71   -3.56   -4.36   -5.03   -5.44   -5.46   -5.01   -4.12   -2.90   -1.45    0.21    2.27    5.06    8.84
+   230.0    0.00   -0.14   -0.54   -1.15   -1.89   -2.70   -3.54   -4.34   -5.01   -5.42   -5.43   -4.99   -4.10   -2.89   -1.45    0.21    2.28    5.07    8.85
+   235.0    0.00   -0.14   -0.54   -1.15   -1.88   -2.69   -3.53   -4.32   -4.99   -5.39   -5.41   -4.97   -4.10   -2.89   -1.45    0.22    2.29    5.08    8.85
+   240.0    0.00   -0.14   -0.54   -1.14   -1.88   -2.68   -3.51   -4.31   -4.97   -5.37   -5.40   -4.97   -4.10   -2.89   -1.45    0.23    2.30    5.08    8.81
+   245.0    0.00   -0.14   -0.54   -1.14   -1.87   -2.67   -3.50   -4.29   -4.95   -5.36   -5.39   -4.97   -4.12   -2.91   -1.46    0.22    2.30    5.06    8.74
+   250.0    0.00   -0.14   -0.54   -1.14   -1.87   -2.67   -3.49   -4.28   -4.94   -5.35   -5.39   -4.99   -4.14   -2.94   -1.49    0.21    2.29    5.02    8.65
+   255.0    0.00   -0.14   -0.54   -1.14   -1.86   -2.67   -3.49   -4.28   -4.94   -5.35   -5.40   -5.01   -4.18   -2.98   -1.52    0.18    2.25    4.95    8.53
+   260.0    0.00   -0.14   -0.54   -1.14   -1.86   -2.66   -3.49   -4.27   -4.94   -5.36   -5.42   -5.04   -4.21   -3.02   -1.56    0.13    2.19    4.86    8.41
+   265.0    0.00   -0.14   -0.54   -1.14   -1.86   -2.66   -3.49   -4.28   -4.95   -5.38   -5.45   -5.07   -4.25   -3.06   -1.61    0.07    2.10    4.75    8.29
+   270.0    0.00   -0.14   -0.54   -1.14   -1.86   -2.66   -3.49   -4.29   -4.96   -5.40   -5.47   -5.10   -4.29   -3.11   -1.67    0.00    2.01    4.63    8.18
+   275.0    0.00   -0.14   -0.54   -1.14   -1.86   -2.67   -3.50   -4.30   -4.98   -5.42   -5.50   -5.13   -4.32   -3.15   -1.72   -0.08    1.90    4.52    8.11
+   280.0    0.00   -0.14   -0.54   -1.14   -1.86   -2.67   -3.50   -4.31   -4.99   -5.44   -5.52   -5.15   -4.34   -3.18   -1.77   -0.16    1.80    4.43    8.08
+   285.0    0.00   -0.15   -0.54   -1.14   -1.87   -2.67   -3.51   -4.32   -5.01   -5.46   -5.54   -5.17   -4.36   -3.21   -1.82   -0.23    1.72    4.37    8.11
+   290.0    0.00   -0.15   -0.55   -1.14   -1.87   -2.67   -3.51   -4.32   -5.02   -5.47   -5.55   -5.18   -4.38   -3.23   -1.85   -0.27    1.67    4.35    8.19
+   295.0    0.00   -0.15   -0.55   -1.14   -1.87   -2.67   -3.51   -4.33   -5.03   -5.48   -5.56   -5.19   -4.38   -3.24   -1.87   -0.30    1.66    4.38    8.32
+   300.0    0.00   -0.15   -0.55   -1.14   -1.87   -2.67   -3.52   -4.33   -5.03   -5.48   -5.56   -5.19   -4.38   -3.24   -1.88   -0.30    1.68    4.46    8.51
+   305.0    0.00   -0.15   -0.55   -1.14   -1.87   -2.67   -3.52   -4.33   -5.03   -5.48   -5.56   -5.19   -4.38   -3.23   -1.86   -0.27    1.75    4.60    8.74
+   310.0    0.00   -0.15   -0.55   -1.14   -1.87   -2.67   -3.52   -4.33   -5.03   -5.48   -5.56   -5.18   -4.37   -3.22   -1.84   -0.22    1.85    4.77    9.00
+   315.0    0.00   -0.15   -0.55   -1.15   -1.87   -2.67   -3.51   -4.33   -5.03   -5.48   -5.55   -5.17   -4.36   -3.20   -1.80   -0.15    1.98    4.98    9.28
+   320.0    0.00   -0.15   -0.55   -1.15   -1.87   -2.67   -3.51   -4.33   -5.02   -5.47   -5.54   -5.16   -4.35   -3.18   -1.76   -0.06    2.13    5.20    9.55
+   325.0    0.00   -0.15   -0.55   -1.15   -1.87   -2.68   -3.51   -4.32   -5.02   -5.46   -5.54   -5.15   -4.33   -3.16   -1.71    0.03    2.29    5.42    9.81
+   330.0    0.00   -0.15   -0.56   -1.15   -1.88   -2.68   -3.51   -4.32   -5.02   -5.46   -5.53   -5.15   -4.32   -3.13   -1.66    0.13    2.44    5.63   10.03
+   335.0    0.00   -0.15   -0.56   -1.16   -1.88   -2.68   -3.52   -4.33   -5.02   -5.46   -5.53   -5.14   -4.31   -3.11   -1.61    0.21    2.57    5.80   10.20
+   340.0    0.00   -0.15   -0.56   -1.16   -1.88   -2.69   -3.52   -4.33   -5.02   -5.47   -5.53   -5.14   -4.30   -3.09   -1.57    0.28    2.67    5.93   10.32
+   345.0    0.00   -0.15   -0.56   -1.16   -1.89   -2.69   -3.53   -4.34   -5.03   -5.48   -5.54   -5.15   -4.30   -3.07   -1.54    0.34    2.75    6.02   10.37
+   350.0    0.00   -0.15   -0.56   -1.17   -1.89   -2.70   -3.54   -4.35   -5.04   -5.49   -5.55   -5.15   -4.30   -3.06   -1.51    0.38    2.80    6.06   10.37
+   355.0    0.00   -0.15   -0.56   -1.17   -1.90   -2.71   -3.54   -4.36   -5.05   -5.50   -5.57   -5.17   -4.30   -3.05   -1.49    0.40    2.82    6.06   10.32
+   360.0    0.00   -0.15   -0.57   -1.17   -1.91   -2.71   -3.55   -4.37   -5.07   -5.52   -5.58   -5.18   -4.31   -3.05   -1.48    0.42    2.83    6.03   10.22
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TRM29659.00     OLGA                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               1    15-MAY-08 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+     -0.73     -0.96     83.24                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.26   -1.02   -2.16   -3.54   -5.01   -6.41   -7.56   -8.33   -8.59   -8.25   -7.32   -5.84   -3.88   -1.46    1.56    5.45   10.51   16.76
+     0.0    0.00   -0.30   -1.11   -2.31   -3.73   -5.20   -6.55   -7.63   -8.31   -8.50   -8.12   -7.13   -5.56   -3.49   -1.00    1.90    5.39    9.96   16.37
+     5.0    0.00   -0.30   -1.10   -2.27   -3.68   -5.14   -6.48   -7.55   -8.20   -8.34   -7.89   -6.84   -5.25   -3.20   -0.79    2.00    5.36    9.74   15.84
+    10.0    0.00   -0.30   -1.08   -2.24   -3.63   -5.08   -6.42   -7.48   -8.11   -8.20   -7.68   -6.58   -4.96   -2.93   -0.58    2.13    5.41    9.69   15.56
+    15.0    0.00   -0.30   -1.07   -2.21   -3.58   -5.03   -6.37   -7.43   -8.04   -8.09   -7.52   -6.37   -4.73   -2.72   -0.42    2.26    5.53    9.79   15.56
+    20.0    0.00   -0.29   -1.05   -2.17   -3.53   -4.98   -6.32   -7.39   -8.01   -8.04   -7.43   -6.25   -4.60   -2.61   -0.33    2.35    5.69   10.06   15.85
+    25.0    0.00   -0.29   -1.04   -2.14   -3.49   -4.93   -6.28   -7.37   -8.00   -8.03   -7.43   -6.24   -4.61   -2.64   -0.36    2.38    5.87   10.45   16.37
+    30.0    0.00   -0.29   -1.02   -2.11   -3.45   -4.88   -6.25   -7.36   -8.01   -8.08   -7.50   -6.35   -4.74   -2.80   -0.50    2.34    6.04   10.90   17.03
+    35.0    0.00   -0.29   -1.01   -2.09   -3.41   -4.84   -6.22   -7.36   -8.05   -8.16   -7.64   -6.54   -4.99   -3.08   -0.75    2.23    6.17   11.36   17.73
+    40.0    0.00   -0.28   -1.00   -2.06   -3.37   -4.80   -6.19   -7.36   -8.10   -8.27   -7.83   -6.81   -5.32   -3.44   -1.06    2.05    6.26   11.76   18.35
+    45.0    0.00   -0.28   -0.99   -2.05   -3.34   -4.77   -6.17   -7.36   -8.15   -8.39   -8.03   -7.10   -5.68   -3.83   -1.41    1.84    6.28   12.05   18.80
+    50.0    0.00   -0.28   -0.99   -2.03   -3.32   -4.74   -6.14   -7.36   -8.19   -8.50   -8.21   -7.36   -6.02   -4.18   -1.74    1.63    6.24   12.19   19.00
+    55.0    0.00   -0.28   -0.98   -2.02   -3.30   -4.72   -6.12   -7.35   -8.22   -8.58   -8.36   -7.57   -6.27   -4.46   -1.99    1.44    6.15   12.17   18.92
+    60.0    0.00   -0.28   -0.98   -2.02   -3.29   -4.70   -6.10   -7.33   -8.22   -8.62   -8.43   -7.68   -6.41   -4.61   -2.13    1.31    6.01   11.98   18.57
+    65.0    0.00   -0.28   -0.98   -2.02   -3.29   -4.69   -6.08   -7.31   -8.21   -8.61   -8.44   -7.69   -6.41   -4.61   -2.15    1.24    5.84   11.67   18.00
+    70.0    0.00   -0.28   -0.99   -2.02   -3.29   -4.68   -6.07   -7.29   -8.17   -8.56   -8.37   -7.59   -6.29   -4.48   -2.06    1.23    5.67   11.26   17.29
+    75.0    0.00   -0.28   -0.99   -2.03   -3.30   -4.69   -6.06   -7.27   -8.13   -8.49   -8.25   -7.42   -6.06   -4.24   -1.88    1.27    5.48   10.80   16.53
+    80.0    0.00   -0.28   -1.00   -2.04   -3.31   -4.70   -6.06   -7.25   -8.08   -8.40   -8.10   -7.20   -5.78   -3.95   -1.65    1.33    5.30   10.33   15.80
+    85.0    0.00   -0.28   -1.00   -2.06   -3.33   -4.71   -6.06   -7.23   -8.04   -8.31   -7.95   -6.98   -5.50   -3.66   -1.43    1.39    5.12    9.91   15.18
+    90.0    0.00   -0.28   -1.01   -2.07   -3.35   -4.73   -6.07   -7.23   -8.02   -8.26   -7.84   -6.81   -5.29   -3.43   -1.26    1.42    4.95    9.55   14.71
+    95.0    0.00   -0.28   -1.02   -2.09   -3.38   -4.75   -6.09   -7.25   -8.02   -8.24   -7.80   -6.73   -5.17   -3.31   -1.19    1.39    4.79    9.26   14.40
+   100.0    0.00   -0.28   -1.03   -2.11   -3.40   -4.78   -6.12   -7.28   -8.06   -8.28   -7.84   -6.76   -5.19   -3.32   -1.23    1.29    4.62    9.06   14.24
+   105.0    0.00   -0.29   -1.04   -2.13   -3.42   -4.81   -6.16   -7.32   -8.13   -8.38   -7.97   -6.90   -5.34   -3.48   -1.38    1.14    4.47    8.93   14.18
+   110.0    0.00   -0.29   -1.04   -2.14   -3.45   -4.84   -6.20   -7.38   -8.22   -8.52   -8.17   -7.15   -5.61   -3.74   -1.61    0.95    4.34    8.86   14.17
+   115.0    0.00   -0.29   -1.05   -2.16   -3.47   -4.87   -6.24   -7.45   -8.34   -8.70   -8.42   -7.46   -5.96   -4.08   -1.89    0.76    4.24    8.82   14.17
+   120.0    0.00   -0.28   -1.05   -2.17   -3.49   -4.90   -6.29   -7.53   -8.46   -8.90   -8.69   -7.80   -6.32   -4.42   -2.16    0.60    4.17    8.81   14.14
+   125.0    0.00   -0.28   -1.06   -2.18   -3.51   -4.93   -6.33   -7.60   -8.58   -9.07   -8.93   -8.10   -6.65   -4.72   -2.37    0.50    4.16    8.81   14.06
+   130.0    0.00   -0.28   -1.06   -2.19   -3.53   -4.95   -6.37   -7.67   -8.68   -9.22   -9.12   -8.33   -6.88   -4.91   -2.48    0.48    4.21    8.84   13.96
+   135.0    0.00   -0.28   -1.05   -2.19   -3.54   -4.98   -6.40   -7.71   -8.74   -9.30   -9.23   -8.44   -6.99   -4.97   -2.47    0.57    4.32    8.88   13.85
+   140.0    0.00   -0.28   -1.05   -2.19   -3.54   -4.99   -6.42   -7.73   -8.75   -9.31   -9.23   -8.43   -6.94   -4.88   -2.33    0.74    4.48    8.95   13.79
+   145.0    0.00   -0.27   -1.05   -2.19   -3.54   -4.99   -6.43   -7.72   -8.72   -9.24   -9.12   -8.29   -6.76   -4.66   -2.08    0.99    4.68    9.06   13.83
+   150.0    0.00   -0.27   -1.04   -2.18   -3.54   -4.99   -6.41   -7.68   -8.64   -9.10   -8.93   -8.04   -6.48   -4.36   -1.78    1.26    4.90    9.22   14.01
+   155.0    0.00   -0.26   -1.03   -2.17   -3.53   -4.98   -6.38   -7.61   -8.51   -8.91   -8.66   -7.72   -6.13   -4.02   -1.47    1.52    5.10    9.41   14.36
+   160.0    0.00   -0.26   -1.02   -2.15   -3.51   -4.95   -6.34   -7.52   -8.35   -8.67   -8.36   -7.38   -5.78   -3.70   -1.21    1.73    5.28    9.64   14.86
+   165.0    0.00   -0.25   -1.01   -2.14   -3.49   -4.92   -6.28   -7.41   -8.18   -8.43   -8.06   -7.06   -5.49   -3.46   -1.03    1.85    5.40    9.89   15.48
+   170.0    0.00   -0.25   -0.99   -2.12   -3.47   -4.88   -6.21   -7.30   -8.00   -8.20   -7.80   -6.81   -5.29   -3.34   -0.98    1.87    5.46   10.13   16.18
+   175.0    0.00   -0.24   -0.98   -2.10   -3.44   -4.84   -6.14   -7.19   -7.84   -8.00   -7.61   -6.66   -5.22   -3.34   -1.04    1.80    5.46   10.35   16.88
+   180.0    0.00   -0.24   -0.97   -2.08   -3.42   -4.81   -6.08   -7.09   -7.71   -7.86   -7.50   -6.62   -5.26   -3.47   -1.22    1.65    5.41   10.53   17.50
+   185.0    0.00   -0.23   -0.95   -2.06   -3.39   -4.77   -6.03   -7.02   -7.63   -7.79   -7.47   -6.67   -5.41   -3.69   -1.45    1.46    5.34   10.66   17.98
+   190.0    0.00   -0.23   -0.94   -2.05   -3.38   -4.75   -6.00   -6.98   -7.59   -7.78   -7.53   -6.81   -5.62   -3.94   -1.69    1.28    5.27   10.73   18.27
+   195.0    0.00   -0.22   -0.93   -2.03   -3.37   -4.75   -6.00   -6.98   -7.61   -7.84   -7.63   -6.98   -5.84   -4.17   -1.88    1.17    5.24   10.75   18.35
+   200.0    0.00   -0.22   -0.92   -2.02   -3.36   -4.75   -6.02   -7.02   -7.67   -7.93   -7.77   -7.16   -6.03   -4.32   -1.97    1.16    5.27   10.75   18.26
+   205.0    0.00   -0.21   -0.91   -2.02   -3.37   -4.78   -6.07   -7.09   -7.78   -8.06   -7.92   -7.30   -6.13   -4.36   -1.92    1.27    5.37   10.75   18.02
+   210.0    0.00   -0.21   -0.91   -2.02   -3.38   -4.82   -6.14   -7.20   -7.90   -8.20   -8.04   -7.37   -6.13   -4.27   -1.74    1.50    5.56   10.78   17.72
+   215.0    0.00   -0.21   -0.91   -2.02   -3.41   -4.87   -6.23   -7.32   -8.05   -8.33   -8.12   -7.37   -6.02   -4.04   -1.43    1.83    5.83   10.84   17.41
+   220.0    0.00   -0.21   -0.90   -2.03   -3.43   -4.93   -6.33   -7.46   -8.19   -8.44   -8.16   -7.29   -5.82   -3.72   -1.04    2.22    6.14   10.96   17.18
+   225.0    0.00   -0.20   -0.91   -2.04   -3.47   -5.00   -6.43   -7.59   -8.31   -8.52   -8.15   -7.16   -5.55   -3.36   -0.62    2.62    6.45   11.13   17.06
+   230.0    0.00   -0.21   -0.91   -2.05   -3.50   -5.06   -6.53   -7.70   -8.42   -8.57   -8.10   -6.99   -5.27   -3.01   -0.26    2.95    6.73   11.34   17.08
+   235.0    0.00   -0.21   -0.91   -2.07   -3.53   -5.12   -6.61   -7.79   -8.49   -8.60   -8.04   -6.83   -5.03   -2.73   -0.01    3.17    6.93   11.55   17.24
+   240.0    0.00   -0.21   -0.92   -2.08   -3.56   -5.17   -6.67   -7.86   -8.54   -8.59   -7.97   -6.70   -4.87   -2.59    0.09    3.23    7.02   11.73   17.48
+   245.0    0.00   -0.21   -0.93   -2.10   -3.59   -5.20   -6.71   -7.89   -8.55   -8.57   -7.92   -6.63   -4.82   -2.60    0.00    3.11    6.97   11.85   17.75
+   250.0    0.00   -0.21   -0.94   -2.12   -3.61   -5.22   -6.73   -7.89   -8.54   -8.55   -7.89   -6.63   -4.89   -2.77   -0.26    2.82    6.78   11.88   17.97
+   255.0    0.00   -0.22   -0.95   -2.13   -3.63   -5.23   -6.72   -7.87   -8.51   -8.52   -7.90   -6.71   -5.08   -3.08   -0.67    2.39    6.46   11.79   18.10
+   260.0    0.00   -0.22   -0.96   -2.15   -3.64   -5.23   -6.70   -7.84   -8.47   -8.51   -7.95   -6.86   -5.36   -3.49   -1.18    1.87    6.06   11.60   18.07
+   265.0    0.00   -0.23   -0.98   -2.17   -3.65   -5.23   -6.67   -7.79   -8.43   -8.51   -8.03   -7.05   -5.68   -3.94   -1.70    1.34    5.61   11.30   17.88
+   270.0    0.00   -0.24   -0.99   -2.19   -3.66   -5.22   -6.64   -7.75   -8.40   -8.53   -8.13   -7.26   -6.00   -4.36   -2.18    0.86    5.18   10.95   17.55
+   275.0    0.00   -0.24   -1.01   -2.21   -3.68   -5.21   -6.62   -7.71   -8.39   -8.57   -8.24   -7.46   -6.28   -4.70   -2.55    0.48    4.81   10.57   17.13
+   280.0    0.00   -0.25   -1.02   -2.23   -3.69   -5.21   -6.60   -7.70   -8.39   -8.62   -8.36   -7.63   -6.49   -4.92   -2.77    0.26    4.55   10.24   16.69
+   285.0    0.00   -0.26   -1.04   -2.25   -3.71   -5.23   -6.60   -7.70   -8.42   -8.68   -8.46   -7.76   -6.60   -5.00   -2.82    0.21    4.43    9.99   16.32
+   290.0    0.00   -0.26   -1.06   -2.28   -3.74   -5.25   -6.62   -7.73   -8.47   -8.76   -8.55   -7.83   -6.63   -4.94   -2.70    0.32    4.45    9.87   16.10
+   295.0    0.00   -0.27   -1.08   -2.30   -3.77   -5.27   -6.65   -7.77   -8.53   -8.84   -8.63   -7.87   -6.57   -4.78   -2.45    0.58    4.62    9.89   16.08
+   300.0    0.00   -0.28   -1.09   -2.33   -3.80   -5.31   -6.70   -7.83   -8.61   -8.92   -8.70   -7.87   -6.47   -4.55   -2.13    0.92    4.88   10.05   16.29
+   305.0    0.00   -0.28   -1.11   -2.35   -3.83   -5.35   -6.74   -7.89   -8.69   -9.01   -8.76   -7.87   -6.36   -4.31   -1.78    1.30    5.21   10.33   16.72
+   310.0    0.00   -0.29   -1.12   -2.37   -3.86   -5.38   -6.79   -7.96   -8.76   -9.09   -8.82   -7.87   -6.26   -4.10   -1.47    1.65    5.56   10.68   17.30
+   315.0    0.00   -0.29   -1.13   -2.39   -3.88   -5.42   -6.83   -8.01   -8.83   -9.16   -8.87   -7.88   -6.20   -3.94   -1.23    1.95    5.87   11.04   17.95
+   320.0    0.00   -0.30   -1.14   -2.40   -3.90   -5.44   -6.86   -8.05   -8.87   -9.21   -8.92   -7.91   -6.19   -3.87   -1.09    2.14    6.10   11.36   18.57
+   325.0    0.00   -0.30   -1.15   -2.41   -3.91   -5.45   -6.88   -8.06   -8.89   -9.24   -8.95   -7.95   -6.22   -3.87   -1.05    2.23    6.24   11.59   19.06
+   330.0    0.00   -0.30   -1.15   -2.41   -3.91   -5.45   -6.87   -8.05   -8.88   -9.23   -8.96   -7.98   -6.26   -3.92   -1.08    2.22    6.26   11.67   19.32
+   335.0    0.00   -0.30   -1.15   -2.41   -3.90   -5.43   -6.85   -8.02   -8.84   -9.19   -8.94   -7.98   -6.30   -3.99   -1.16    2.15    6.19   11.61   19.32
+   340.0    0.00   -0.31   -1.15   -2.40   -3.88   -5.40   -6.80   -7.96   -8.77   -9.11   -8.86   -7.94   -6.30   -4.03   -1.24    2.04    6.04   11.39   19.03
+   345.0    0.00   -0.31   -1.14   -2.38   -3.85   -5.36   -6.75   -7.89   -8.67   -8.99   -8.74   -7.83   -6.23   -4.01   -1.28    1.93    5.85   11.07   18.51
+   350.0    0.00   -0.31   -1.13   -2.36   -3.82   -5.31   -6.69   -7.81   -8.56   -8.85   -8.57   -7.65   -6.08   -3.92   -1.26    1.86    5.66   10.68   17.82
+   355.0    0.00   -0.31   -1.12   -2.33   -3.78   -5.26   -6.62   -7.72   -8.44   -8.68   -8.36   -7.41   -5.85   -3.74   -1.16    1.85    5.50   10.28   17.07
+   360.0    0.00   -0.30   -1.11   -2.31   -3.73   -5.20   -6.55   -7.63   -8.31   -8.50   -8.12   -7.13   -5.56   -3.49   -1.00    1.90    5.39    9.96   16.37
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.54     -0.27    114.63                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.18   -0.68   -1.37   -2.14   -2.92   -3.68   -4.45   -5.22   -5.84   -6.12   -5.82   -4.80   -3.08   -0.83    1.71    4.40    7.27   10.46
+     0.0    0.00   -0.19   -0.71   -1.45   -2.25   -3.00   -3.69   -4.36   -5.05   -5.70   -6.11   -5.93   -4.92   -3.00   -0.43    2.36    4.99    7.45   10.28
+     5.0    0.00   -0.19   -0.71   -1.45   -2.25   -3.01   -3.70   -4.38   -5.07   -5.72   -6.10   -5.89   -4.85   -2.91   -0.32    2.48    5.13    7.61   10.40
+    10.0    0.00   -0.20   -0.72   -1.45   -2.25   -3.01   -3.71   -4.40   -5.10   -5.74   -6.09   -5.85   -4.78   -2.84   -0.26    2.54    5.21    7.73   10.58
+    15.0    0.00   -0.20   -0.72   -1.45   -2.24   -3.00   -3.72   -4.42   -5.12   -5.75   -6.07   -5.81   -4.72   -2.79   -0.25    2.51    5.18    7.77   10.74
+    20.0    0.00   -0.20   -0.73   -1.45   -2.24   -3.00   -3.72   -4.43   -5.14   -5.76   -6.06   -5.76   -4.67   -2.78   -0.31    2.38    5.03    7.69   10.82
+    25.0    0.00   -0.21   -0.73   -1.45   -2.23   -2.99   -3.71   -4.44   -5.15   -5.76   -6.04   -5.72   -4.64   -2.80   -0.42    2.17    4.77    7.48   10.77
+    30.0    0.00   -0.21   -0.73   -1.45   -2.22   -2.98   -3.71   -4.44   -5.16   -5.75   -6.01   -5.68   -4.62   -2.85   -0.58    1.89    4.41    7.15   10.57
+    35.0    0.00   -0.22   -0.74   -1.44   -2.21   -2.97   -3.70   -4.44   -5.16   -5.74   -5.98   -5.65   -4.61   -2.91   -0.77    1.57    4.00    6.73   10.22
+    40.0    0.00   -0.22   -0.74   -1.44   -2.20   -2.96   -3.69   -4.43   -5.15   -5.73   -5.95   -5.62   -4.61   -2.99   -0.96    1.25    3.59    6.27    9.75
+    45.0    0.00   -0.22   -0.74   -1.44   -2.20   -2.95   -3.69   -4.43   -5.15   -5.71   -5.93   -5.59   -4.61   -3.06   -1.13    0.97    3.22    5.83    9.22
+    50.0    0.00   -0.23   -0.75   -1.45   -2.20   -2.95   -3.69   -4.43   -5.14   -5.70   -5.90   -5.57   -4.61   -3.10   -1.25    0.77    2.94    5.47    8.69
+    55.0    0.00   -0.23   -0.75   -1.45   -2.20   -2.95   -3.69   -4.44   -5.15   -5.69   -5.89   -5.55   -4.60   -3.13   -1.31    0.67    2.79    5.22    8.23
+    60.0    0.00   -0.23   -0.76   -1.45   -2.21   -2.96   -3.70   -4.45   -5.16   -5.70   -5.88   -5.54   -4.59   -3.11   -1.30    0.68    2.78    5.12    7.88
+    65.0    0.00   -0.23   -0.76   -1.46   -2.22   -2.97   -3.72   -4.47   -5.18   -5.72   -5.89   -5.53   -4.56   -3.07   -1.23    0.78    2.89    5.17    7.67
+    70.0    0.00   -0.23   -0.76   -1.47   -2.23   -2.99   -3.75   -4.51   -5.21   -5.74   -5.90   -5.52   -4.53   -3.01   -1.11    0.96    3.12    5.34    7.59
+    75.0    0.00   -0.24   -0.77   -1.47   -2.24   -3.01   -3.78   -4.54   -5.25   -5.78   -5.93   -5.52   -4.50   -2.93   -0.97    1.19    3.40    5.59    7.63
+    80.0    0.00   -0.24   -0.77   -1.48   -2.25   -3.02   -3.80   -4.58   -5.30   -5.82   -5.96   -5.53   -4.48   -2.85   -0.82    1.42    3.69    5.87    7.72
+    85.0    0.00   -0.24   -0.77   -1.48   -2.25   -3.04   -3.82   -4.61   -5.34   -5.86   -5.99   -5.55   -4.46   -2.79   -0.69    1.62    3.96    6.13    7.83
+    90.0    0.00   -0.24   -0.77   -1.48   -2.25   -3.04   -3.84   -4.64   -5.37   -5.90   -6.03   -5.57   -4.46   -2.75   -0.61    1.76    4.15    6.32    7.90
+    95.0    0.00   -0.24   -0.77   -1.47   -2.25   -3.04   -3.84   -4.65   -5.40   -5.93   -6.06   -5.60   -4.48   -2.74   -0.57    1.84    4.25    6.41    7.89
+   100.0    0.00   -0.23   -0.76   -1.47   -2.24   -3.02   -3.83   -4.65   -5.41   -5.96   -6.09   -5.64   -4.51   -2.77   -0.58    1.84    4.26    6.40    7.78
+   105.0    0.00   -0.23   -0.76   -1.46   -2.22   -3.00   -3.80   -4.63   -5.40   -5.97   -6.13   -5.68   -4.56   -2.82   -0.63    1.79    4.21    6.31    7.60
+   110.0    0.00   -0.23   -0.75   -1.44   -2.19   -2.97   -3.77   -4.59   -5.38   -5.97   -6.15   -5.73   -4.62   -2.89   -0.71    1.71    4.11    6.18    7.38
+   115.0    0.00   -0.23   -0.74   -1.42   -2.16   -2.92   -3.72   -4.55   -5.35   -5.97   -6.18   -5.78   -4.69   -2.97   -0.78    1.63    4.03    6.07    7.17
+   120.0    0.00   -0.22   -0.73   -1.40   -2.13   -2.88   -3.66   -4.50   -5.32   -5.96   -6.20   -5.82   -4.75   -3.03   -0.84    1.59    4.00    6.02    7.03
+   125.0    0.00   -0.22   -0.72   -1.38   -2.10   -2.83   -3.61   -4.45   -5.28   -5.95   -6.21   -5.86   -4.80   -3.08   -0.87    1.60    4.04    6.07    7.02
+   130.0    0.00   -0.22   -0.71   -1.36   -2.06   -2.78   -3.56   -4.40   -5.25   -5.94   -6.23   -5.90   -4.84   -3.10   -0.85    1.68    4.19    6.25    7.18
+   135.0    0.00   -0.21   -0.70   -1.34   -2.03   -2.74   -3.51   -4.36   -5.23   -5.93   -6.24   -5.92   -4.86   -3.09   -0.79    1.82    4.42    6.57    7.51
+   140.0    0.00   -0.21   -0.69   -1.32   -2.00   -2.70   -3.48   -4.33   -5.21   -5.93   -6.24   -5.92   -4.85   -3.06   -0.69    2.00    4.72    6.98    7.99
+   145.0    0.00   -0.20   -0.68   -1.30   -1.97   -2.68   -3.45   -4.32   -5.20   -5.93   -6.24   -5.92   -4.83   -3.01   -0.59    2.20    5.05    7.45    8.59
+   150.0    0.00   -0.20   -0.66   -1.28   -1.95   -2.66   -3.44   -4.31   -5.20   -5.93   -6.24   -5.90   -4.80   -2.95   -0.48    2.38    5.35    7.91    9.23
+   155.0    0.00   -0.19   -0.65   -1.27   -1.94   -2.65   -3.44   -4.32   -5.21   -5.93   -6.23   -5.88   -4.77   -2.90   -0.41    2.50    5.57    8.30    9.86
+   160.0    0.00   -0.18   -0.64   -1.25   -1.93   -2.65   -3.45   -4.33   -5.22   -5.92   -6.21   -5.85   -4.73   -2.88   -0.40    2.54    5.68    8.57   10.39
+   165.0    0.00   -0.18   -0.63   -1.24   -1.92   -2.65   -3.46   -4.34   -5.22   -5.91   -6.18   -5.82   -4.71   -2.89   -0.45    2.47    5.65    8.68   10.79
+   170.0    0.00   -0.17   -0.63   -1.24   -1.92   -2.66   -3.47   -4.35   -5.22   -5.89   -6.15   -5.79   -4.71   -2.94   -0.56    2.30    5.48    8.63   11.04
+   175.0    0.00   -0.17   -0.62   -1.23   -1.92   -2.66   -3.48   -4.35   -5.20   -5.87   -6.12   -5.77   -4.73   -3.03   -0.73    2.05    5.20    8.43   11.15
+   180.0    0.00   -0.17   -0.61   -1.23   -1.92   -2.67   -3.48   -4.35   -5.19   -5.84   -6.09   -5.76   -4.77   -3.14   -0.95    1.74    4.84    8.15   11.16
+   185.0    0.00   -0.16   -0.61   -1.23   -1.93   -2.68   -3.49   -4.34   -5.16   -5.80   -6.06   -5.76   -4.83   -3.28   -1.18    1.42    4.47    7.84   11.15
+   190.0    0.00   -0.16   -0.60   -1.23   -1.94   -2.69   -3.49   -4.32   -5.13   -5.77   -6.04   -5.78   -4.90   -3.42   -1.39    1.13    4.14    7.58   11.17
+   195.0    0.00   -0.15   -0.60   -1.23   -1.95   -2.70   -3.49   -4.31   -5.11   -5.75   -6.04   -5.81   -4.98   -3.55   -1.57    0.91    3.91    7.43   11.32
+   200.0    0.00   -0.15   -0.60   -1.24   -1.96   -2.71   -3.49   -4.30   -5.09   -5.73   -6.05   -5.85   -5.05   -3.64   -1.68    0.79    3.81    7.44   11.61
+   205.0    0.00   -0.15   -0.60   -1.24   -1.98   -2.73   -3.51   -4.31   -5.09   -5.73   -6.07   -5.90   -5.11   -3.70   -1.72    0.79    3.87    7.62   12.09
+   210.0    0.00   -0.14   -0.60   -1.25   -1.99   -2.76   -3.53   -4.32   -5.10   -5.75   -6.10   -5.94   -5.16   -3.72   -1.68    0.91    4.08    7.97   12.71
+   215.0    0.00   -0.14   -0.60   -1.26   -2.02   -2.79   -3.56   -4.35   -5.12   -5.78   -6.14   -5.98   -5.18   -3.68   -1.57    1.11    4.39    8.43   13.42
+   220.0    0.00   -0.14   -0.60   -1.28   -2.04   -2.83   -3.61   -4.39   -5.17   -5.82   -6.18   -6.01   -5.17   -3.62   -1.41    1.38    4.77    8.94   14.13
+   225.0    0.00   -0.14   -0.60   -1.29   -2.07   -2.87   -3.66   -4.45   -5.22   -5.88   -6.22   -6.03   -5.14   -3.52   -1.22    1.67    5.15    9.41   14.74
+   230.0    0.00   -0.14   -0.61   -1.30   -2.10   -2.92   -3.72   -4.51   -5.28   -5.93   -6.25   -6.03   -5.10   -3.40   -1.02    1.93    5.47    9.77   15.14
+   235.0    0.00   -0.13   -0.61   -1.32   -2.13   -2.97   -3.78   -4.58   -5.35   -5.98   -6.28   -6.02   -5.04   -3.28   -0.85    2.14    5.68    9.95   15.26
+   240.0    0.00   -0.13   -0.61   -1.33   -2.16   -3.01   -3.84   -4.65   -5.41   -6.02   -6.29   -6.00   -4.97   -3.17   -0.72    2.27    5.76    9.91   15.06
+   245.0    0.00   -0.13   -0.61   -1.34   -2.19   -3.06   -3.90   -4.70   -5.46   -6.05   -6.29   -5.96   -4.90   -3.08   -0.63    2.31    5.68    9.64   14.52
+   250.0    0.00   -0.13   -0.62   -1.35   -2.21   -3.09   -3.94   -4.75   -5.49   -6.06   -6.28   -5.92   -4.84   -3.01   -0.59    2.26    5.47    9.18   13.71
+   255.0    0.00   -0.13   -0.62   -1.36   -2.23   -3.12   -3.97   -4.78   -5.51   -6.06   -6.26   -5.88   -4.78   -2.97   -0.59    2.15    5.16    8.57   12.70
+   260.0    0.00   -0.13   -0.62   -1.37   -2.24   -3.13   -3.98   -4.78   -5.51   -6.05   -6.24   -5.85   -4.74   -2.94   -0.62    2.00    4.80    7.90   11.62
+   265.0    0.00   -0.13   -0.62   -1.37   -2.25   -3.13   -3.98   -4.77   -5.49   -6.03   -6.21   -5.82   -4.72   -2.94   -0.66    1.85    4.45    7.25   10.60
+   270.0    0.00   -0.13   -0.63   -1.37   -2.24   -3.12   -3.96   -4.75   -5.46   -6.00   -6.19   -5.80   -4.71   -2.94   -0.71    1.71    4.14    6.70    9.75
+   275.0    0.00   -0.13   -0.63   -1.37   -2.24   -3.11   -3.93   -4.71   -5.42   -5.97   -6.17   -5.80   -4.71   -2.95   -0.74    1.61    3.92    6.31    9.17
+   280.0    0.00   -0.14   -0.63   -1.37   -2.23   -3.09   -3.90   -4.66   -5.38   -5.94   -6.16   -5.81   -4.73   -2.96   -0.76    1.56    3.81    6.11    8.92
+   285.0    0.00   -0.14   -0.63   -1.37   -2.22   -3.06   -3.85   -4.61   -5.33   -5.91   -6.16   -5.83   -4.76   -2.98   -0.76    1.57    3.80    6.10    8.99
+   290.0    0.00   -0.14   -0.63   -1.37   -2.21   -3.03   -3.81   -4.56   -5.29   -5.89   -6.17   -5.86   -4.79   -3.00   -0.75    1.61    3.88    6.26    9.35
+   295.0    0.00   -0.14   -0.63   -1.37   -2.19   -3.00   -3.77   -4.51   -5.24   -5.87   -6.18   -5.90   -4.84   -3.03   -0.74    1.67    4.02    6.54    9.91
+   300.0    0.00   -0.14   -0.64   -1.37   -2.19   -2.98   -3.73   -4.46   -5.20   -5.85   -6.19   -5.94   -4.88   -3.06   -0.73    1.74    4.18    6.86   10.57
+   305.0    0.00   -0.15   -0.64   -1.37   -2.18   -2.96   -3.70   -4.42   -5.17   -5.84   -6.20   -5.98   -4.94   -3.10   -0.74    1.79    4.32    7.18   11.21
+   310.0    0.00   -0.15   -0.65   -1.37   -2.18   -2.95   -3.67   -4.39   -5.13   -5.82   -6.21   -6.01   -4.99   -3.15   -0.77    1.81    4.42    7.43   11.74
+   315.0    0.00   -0.15   -0.65   -1.38   -2.18   -2.94   -3.65   -4.36   -5.10   -5.80   -6.22   -6.04   -5.04   -3.21   -0.81    1.80    4.47    7.58   12.08
+   320.0    0.00   -0.16   -0.66   -1.38   -2.18   -2.94   -3.64   -4.33   -5.07   -5.78   -6.21   -6.06   -5.08   -3.26   -0.85    1.78    4.48    7.62   12.20
+   325.0    0.00   -0.16   -0.66   -1.39   -2.19   -2.94   -3.63   -4.32   -5.05   -5.76   -6.20   -6.08   -5.12   -3.31   -0.89    1.75    4.45    7.56   12.10
+   330.0    0.00   -0.16   -0.67   -1.40   -2.20   -2.95   -3.63   -4.30   -5.03   -5.73   -6.19   -6.08   -5.14   -3.33   -0.92    1.73    4.41    7.45   11.81
+   335.0    0.00   -0.17   -0.68   -1.41   -2.21   -2.96   -3.63   -4.30   -5.01   -5.71   -6.17   -6.07   -5.14   -3.34   -0.91    1.75    4.40    7.32   11.42
+   340.0    0.00   -0.17   -0.68   -1.42   -2.22   -2.97   -3.64   -4.30   -5.00   -5.70   -6.16   -6.06   -5.13   -3.32   -0.87    1.80    4.43    7.21   11.01
+   345.0    0.00   -0.18   -0.69   -1.43   -2.23   -2.98   -3.65   -4.31   -5.00   -5.69   -6.14   -6.04   -5.10   -3.27   -0.79    1.91    4.51    7.16   10.64
+   350.0    0.00   -0.18   -0.70   -1.44   -2.24   -2.99   -3.66   -4.32   -5.01   -5.69   -6.13   -6.01   -5.05   -3.19   -0.68    2.05    4.65    7.19   10.38
+   355.0    0.00   -0.18   -0.70   -1.44   -2.25   -3.00   -3.68   -4.33   -5.03   -5.69   -6.11   -5.97   -4.99   -3.10   -0.56    2.21    4.82    7.29   10.26
+   360.0    0.00   -0.19   -0.71   -1.45   -2.25   -3.00   -3.69   -4.36   -5.05   -5.70   -6.11   -5.93   -4.92   -3.00   -0.43    2.36    4.99    7.45   10.28
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TRM29659.00     SCIS                                        TYPE / SERIAL NO    
+FIELD               NGS/TUM                  3    21-FEB-06 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      1.60     -0.16     87.74                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.24   -1.02   -2.27   -3.78   -5.39   -6.95   -8.29   -9.17   -9.50   -9.24   -8.46   -7.17   -5.24   -2.70    0.57    4.59
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.10     -0.62    117.86                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.13   -0.52   -1.20   -1.92   -2.82   -3.73   -4.51   -5.25   -5.63   -5.65   -5.13   -4.28   -2.95   -1.33    0.59    2.96
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TRM29659.00     SCIT                                        TYPE / SERIAL NO    
+FIELD               NGS/TUM                  3    21-FEB-06 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      1.50      0.44     88.04                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.44   -1.42   -2.67   -4.08   -5.49   -6.95   -8.09   -8.87   -9.10   -8.94   -8.16   -6.97   -5.24   -3.00   -0.13    3.49
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.10      1.08    117.16                              NORTH / EAST / UP   
+   NOAZI    0.00    0.07   -0.12   -0.60   -1.32   -2.12   -2.93   -3.71   -4.45   -4.83   -4.95   -4.53   -3.58   -2.25   -0.53    1.49    4.16
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TRM29659.00     SNOW                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               2    15-MAY-08 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+      0.04      0.76     91.41                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.23   -0.92   -1.98   -3.33   -4.83   -6.35   -7.71   -8.76   -9.33   -9.32   -8.64   -7.27   -5.22   -2.52    0.81    4.76    9.26   14.10
+     0.0    0.00   -0.22   -0.90   -1.97   -3.34   -4.87   -6.38   -7.68   -8.61   -9.05   -8.92   -8.19   -6.83   -4.82   -2.10    1.37    5.52   10.08   14.53
+     5.0    0.00   -0.22   -0.90   -1.97   -3.34   -4.86   -6.37   -7.68   -8.62   -9.06   -8.93   -8.19   -6.84   -4.84   -2.16    1.26    5.36    9.90   14.39
+    10.0    0.00   -0.22   -0.90   -1.97   -3.33   -4.86   -6.37   -7.69   -8.64   -9.09   -8.96   -8.22   -6.86   -4.88   -2.23    1.12    5.16    9.69   14.24
+    15.0    0.00   -0.22   -0.90   -1.96   -3.33   -4.85   -6.37   -7.71   -8.67   -9.14   -9.01   -8.26   -6.90   -4.93   -2.32    0.97    4.95    9.46   14.10
+    20.0    0.00   -0.22   -0.89   -1.96   -3.33   -4.85   -6.38   -7.72   -8.71   -9.20   -9.08   -8.33   -6.96   -4.99   -2.41    0.82    4.74    9.25   13.98
+    25.0    0.00   -0.22   -0.89   -1.96   -3.32   -4.85   -6.38   -7.75   -8.76   -9.27   -9.16   -8.41   -7.03   -5.06   -2.50    0.69    4.56    9.06   13.88
+    30.0    0.00   -0.22   -0.89   -1.96   -3.32   -4.85   -6.39   -7.77   -8.81   -9.34   -9.25   -8.50   -7.12   -5.14   -2.59    0.57    4.41    8.91   13.81
+    35.0    0.00   -0.22   -0.90   -1.96   -3.32   -4.85   -6.39   -7.79   -8.86   -9.41   -9.34   -8.60   -7.21   -5.22   -2.67    0.48    4.30    8.80   13.75
+    40.0    0.00   -0.22   -0.90   -1.96   -3.32   -4.85   -6.40   -7.81   -8.90   -9.48   -9.43   -8.70   -7.31   -5.30   -2.73    0.42    4.24    8.74   13.72
+    45.0    0.00   -0.22   -0.90   -1.96   -3.32   -4.85   -6.41   -7.83   -8.93   -9.54   -9.52   -8.80   -7.40   -5.38   -2.79    0.38    4.21    8.71   13.69
+    50.0    0.00   -0.22   -0.90   -1.96   -3.32   -4.85   -6.41   -7.84   -8.96   -9.58   -9.58   -8.88   -7.48   -5.45   -2.84    0.36    4.21    8.72   13.67
+    55.0    0.00   -0.22   -0.90   -1.97   -3.32   -4.85   -6.41   -7.85   -8.97   -9.61   -9.63   -8.94   -7.55   -5.52   -2.88    0.36    4.23    8.74   13.65
+    60.0    0.00   -0.22   -0.90   -1.97   -3.33   -4.86   -6.42   -7.85   -8.98   -9.63   -9.66   -8.99   -7.61   -5.57   -2.91    0.35    4.25    8.77   13.64
+    65.0    0.00   -0.22   -0.90   -1.98   -3.33   -4.86   -6.42   -7.85   -8.97   -9.63   -9.66   -9.01   -7.64   -5.60   -2.94    0.35    4.27    8.79   13.63
+    70.0    0.00   -0.22   -0.91   -1.98   -3.34   -4.87   -6.42   -7.84   -8.96   -9.61   -9.66   -9.01   -7.66   -5.63   -2.96    0.34    4.28    8.80   13.61
+    75.0    0.00   -0.22   -0.91   -1.98   -3.34   -4.87   -6.42   -7.83   -8.94   -9.59   -9.63   -8.99   -7.65   -5.64   -2.97    0.33    4.28    8.81   13.61
+    80.0    0.00   -0.23   -0.91   -1.98   -3.34   -4.87   -6.41   -7.82   -8.92   -9.56   -9.60   -8.97   -7.64   -5.63   -2.98    0.32    4.27    8.80   13.61
+    85.0    0.00   -0.23   -0.91   -1.98   -3.35   -4.87   -6.41   -7.80   -8.90   -9.53   -9.57   -8.93   -7.61   -5.61   -2.97    0.32    4.26    8.79   13.62
+    90.0    0.00   -0.23   -0.91   -1.98   -3.34   -4.86   -6.40   -7.79   -8.87   -9.50   -9.53   -8.90   -7.58   -5.59   -2.96    0.32    4.26    8.79   13.64
+    95.0    0.00   -0.23   -0.91   -1.98   -3.34   -4.85   -6.38   -7.77   -8.85   -9.47   -9.50   -8.86   -7.54   -5.56   -2.93    0.34    4.27    8.80   13.69
+   100.0    0.00   -0.23   -0.91   -1.98   -3.33   -4.84   -6.37   -7.75   -8.82   -9.44   -9.47   -8.83   -7.51   -5.51   -2.88    0.38    4.30    8.83   13.75
+   105.0    0.00   -0.23   -0.91   -1.97   -3.32   -4.83   -6.35   -7.73   -8.80   -9.42   -9.44   -8.81   -7.47   -5.47   -2.82    0.45    4.36    8.88   13.84
+   110.0    0.00   -0.23   -0.91   -1.97   -3.31   -4.81   -6.33   -7.70   -8.77   -9.39   -9.42   -8.78   -7.44   -5.42   -2.75    0.53    4.45    8.97   13.95
+   115.0    0.00   -0.23   -0.90   -1.96   -3.30   -4.79   -6.30   -7.67   -8.75   -9.37   -9.40   -8.76   -7.40   -5.36   -2.67    0.64    4.56    9.08   14.07
+   120.0    0.00   -0.23   -0.90   -1.96   -3.29   -4.78   -6.28   -7.65   -8.72   -9.34   -9.38   -8.73   -7.36   -5.30   -2.58    0.76    4.70    9.22   14.22
+   125.0    0.00   -0.23   -0.90   -1.95   -3.28   -4.76   -6.26   -7.62   -8.69   -9.32   -9.35   -8.70   -7.32   -5.23   -2.48    0.89    4.85    9.38   14.38
+   130.0    0.00   -0.23   -0.90   -1.95   -3.27   -4.75   -6.24   -7.60   -8.67   -9.28   -9.31   -8.65   -7.26   -5.16   -2.38    1.02    5.00    9.54   14.54
+   135.0    0.00   -0.23   -0.90   -1.94   -3.26   -4.73   -6.22   -7.58   -8.64   -9.25   -9.27   -8.60   -7.20   -5.08   -2.28    1.14    5.15    9.69   14.70
+   140.0    0.00   -0.23   -0.90   -1.94   -3.26   -4.73   -6.21   -7.56   -8.61   -9.21   -9.22   -8.54   -7.13   -5.00   -2.18    1.26    5.28    9.83   14.84
+   145.0    0.00   -0.23   -0.90   -1.94   -3.26   -4.73   -6.21   -7.55   -8.59   -9.17   -9.17   -8.48   -7.06   -4.92   -2.10    1.35    5.38    9.95   14.96
+   150.0    0.00   -0.23   -0.90   -1.94   -3.26   -4.73   -6.21   -7.54   -8.57   -9.14   -9.12   -8.41   -6.99   -4.85   -2.02    1.43    5.46   10.03   15.03
+   155.0    0.00   -0.23   -0.90   -1.94   -3.26   -4.73   -6.22   -7.54   -8.56   -9.11   -9.07   -8.35   -6.92   -4.78   -1.97    1.48    5.51   10.07   15.06
+   160.0    0.00   -0.24   -0.91   -1.95   -3.27   -4.74   -6.23   -7.55   -8.55   -9.09   -9.03   -8.31   -6.87   -4.74   -1.93    1.51    5.53   10.07   15.03
+   165.0    0.00   -0.24   -0.91   -1.95   -3.28   -4.76   -6.24   -7.56   -8.56   -9.08   -9.01   -8.28   -6.84   -4.71   -1.91    1.52    5.51   10.02   14.94
+   170.0    0.00   -0.24   -0.91   -1.96   -3.29   -4.77   -6.25   -7.57   -8.57   -9.08   -9.01   -8.27   -6.83   -4.70   -1.91    1.50    5.47    9.93   14.79
+   175.0    0.00   -0.24   -0.92   -1.97   -3.30   -4.78   -6.27   -7.59   -8.58   -9.10   -9.03   -8.29   -6.85   -4.72   -1.93    1.46    5.39    9.80   14.59
+   180.0    0.00   -0.24   -0.92   -1.98   -3.31   -4.80   -6.28   -7.60   -8.60   -9.13   -9.06   -8.33   -6.89   -4.76   -1.98    1.40    5.29    9.64   14.35
+   185.0    0.00   -0.24   -0.93   -1.99   -3.33   -4.81   -6.30   -7.62   -8.62   -9.16   -9.11   -8.39   -6.96   -4.82   -2.04    1.32    5.17    9.46   14.10
+   190.0    0.00   -0.25   -0.94   -2.00   -3.34   -4.82   -6.31   -7.64   -8.65   -9.21   -9.17   -8.47   -7.04   -4.91   -2.13    1.21    5.03    9.26   13.84
+   195.0    0.00   -0.25   -0.94   -2.01   -3.35   -4.84   -6.32   -7.65   -8.68   -9.25   -9.24   -8.55   -7.13   -5.00   -2.22    1.10    4.88    9.07   13.60
+   200.0    0.00   -0.25   -0.95   -2.02   -3.36   -4.85   -6.33   -7.67   -8.71   -9.30   -9.31   -8.64   -7.23   -5.10   -2.33    0.97    4.73    8.89   13.41
+   205.0    0.00   -0.25   -0.95   -2.03   -3.37   -4.86   -6.34   -7.68   -8.73   -9.34   -9.37   -8.72   -7.32   -5.20   -2.45    0.84    4.58    8.73   13.27
+   210.0    0.00   -0.25   -0.96   -2.04   -3.38   -4.87   -6.36   -7.70   -8.76   -9.38   -9.43   -8.79   -7.40   -5.30   -2.56    0.72    4.45    8.61   13.20
+   215.0    0.00   -0.26   -0.96   -2.04   -3.39   -4.88   -6.37   -7.72   -8.78   -9.41   -9.47   -8.84   -7.47   -5.38   -2.66    0.60    4.34    8.53   13.20
+   220.0    0.00   -0.26   -0.97   -2.05   -3.40   -4.89   -6.38   -7.73   -8.80   -9.44   -9.50   -8.88   -7.52   -5.45   -2.75    0.51    4.25    8.51   13.26
+   225.0    0.00   -0.26   -0.97   -2.06   -3.41   -4.90   -6.39   -7.74   -8.82   -9.46   -9.52   -8.91   -7.56   -5.50   -2.81    0.43    4.21    8.53   13.38
+   230.0    0.00   -0.26   -0.97   -2.06   -3.42   -4.91   -6.40   -7.76   -8.83   -9.46   -9.53   -8.92   -7.58   -5.54   -2.86    0.39    4.20    8.59   13.54
+   235.0    0.00   -0.26   -0.97   -2.07   -3.42   -4.92   -6.41   -7.77   -8.83   -9.47   -9.53   -8.91   -7.58   -5.55   -2.89    0.37    4.23    8.69   13.70
+   240.0    0.00   -0.26   -0.97   -2.07   -3.43   -4.92   -6.42   -7.77   -8.84   -9.47   -9.52   -8.91   -7.58   -5.56   -2.89    0.39    4.28    8.81   13.86
+   245.0    0.00   -0.26   -0.97   -2.07   -3.43   -4.92   -6.42   -7.77   -8.84   -9.46   -9.51   -8.89   -7.57   -5.55   -2.88    0.42    4.36    8.94   14.00
+   250.0    0.00   -0.26   -0.97   -2.06   -3.42   -4.92   -6.42   -7.77   -8.83   -9.45   -9.50   -8.88   -7.56   -5.54   -2.86    0.47    4.45    9.06   14.09
+   255.0    0.00   -0.26   -0.97   -2.06   -3.42   -4.91   -6.41   -7.77   -8.83   -9.45   -9.49   -8.87   -7.55   -5.52   -2.83    0.53    4.54    9.15   14.13
+   260.0    0.00   -0.26   -0.97   -2.05   -3.41   -4.90   -6.40   -7.76   -8.82   -9.44   -9.48   -8.86   -7.53   -5.50   -2.79    0.58    4.61    9.21   14.11
+   265.0    0.00   -0.25   -0.96   -2.04   -3.40   -4.89   -6.39   -7.75   -8.81   -9.43   -9.48   -8.86   -7.52   -5.48   -2.76    0.62    4.65    9.22   14.05
+   270.0    0.00   -0.25   -0.96   -2.04   -3.39   -4.88   -6.38   -7.74   -8.80   -9.43   -9.47   -8.85   -7.51   -5.47   -2.74    0.65    4.66    9.20   13.96
+   275.0    0.00   -0.25   -0.95   -2.03   -3.37   -4.87   -6.37   -7.73   -8.80   -9.42   -9.47   -8.84   -7.50   -5.45   -2.72    0.66    4.64    9.14   13.86
+   280.0    0.00   -0.25   -0.95   -2.02   -3.36   -4.85   -6.36   -7.72   -8.80   -9.42   -9.46   -8.83   -7.48   -5.43   -2.71    0.65    4.60    9.06   13.76
+   285.0    0.00   -0.25   -0.94   -2.01   -3.35   -4.85   -6.35   -7.72   -8.79   -9.42   -9.45   -8.81   -7.45   -5.40   -2.69    0.63    4.55    8.98   13.69
+   290.0    0.00   -0.25   -0.94   -2.00   -3.35   -4.84   -6.35   -7.72   -8.80   -9.41   -9.44   -8.78   -7.42   -5.37   -2.68    0.61    4.49    8.91   13.66
+   295.0    0.00   -0.24   -0.93   -2.00   -3.34   -4.84   -6.35   -7.73   -8.80   -9.41   -9.42   -8.75   -7.38   -5.34   -2.66    0.60    4.46    8.87   13.68
+   300.0    0.00   -0.24   -0.93   -1.99   -3.34   -4.84   -6.36   -7.73   -8.80   -9.40   -9.40   -8.72   -7.34   -5.29   -2.63    0.61    4.45    8.88   13.76
+   305.0    0.00   -0.24   -0.92   -1.99   -3.33   -4.84   -6.36   -7.74   -8.80   -9.39   -9.37   -8.67   -7.29   -5.24   -2.59    0.65    4.49    8.94   13.88
+   310.0    0.00   -0.24   -0.92   -1.98   -3.34   -4.85   -6.37   -7.75   -8.80   -9.37   -9.33   -8.62   -7.23   -5.19   -2.54    0.71    4.58    9.05   14.05
+   315.0    0.00   -0.23   -0.92   -1.98   -3.34   -4.85   -6.38   -7.75   -8.79   -9.34   -9.29   -8.57   -7.17   -5.13   -2.47    0.81    4.71    9.22   14.23
+   320.0    0.00   -0.23   -0.91   -1.98   -3.34   -4.86   -6.39   -7.75   -8.78   -9.31   -9.24   -8.52   -7.12   -5.07   -2.39    0.92    4.88    9.43   14.42
+   325.0    0.00   -0.23   -0.91   -1.98   -3.34   -4.87   -6.40   -7.75   -8.76   -9.27   -9.19   -8.46   -7.06   -5.01   -2.30    1.06    5.07    9.65   14.59
+   330.0    0.00   -0.23   -0.91   -1.98   -3.35   -4.87   -6.40   -7.74   -8.73   -9.23   -9.14   -8.41   -7.01   -4.96   -2.22    1.19    5.26    9.87   14.73
+   335.0    0.00   -0.23   -0.91   -1.98   -3.35   -4.88   -6.40   -7.73   -8.70   -9.19   -9.08   -8.35   -6.97   -4.91   -2.15    1.31    5.44   10.05   14.82
+   340.0    0.00   -0.23   -0.90   -1.98   -3.35   -4.88   -6.40   -7.72   -8.67   -9.14   -9.03   -8.30   -6.92   -4.86   -2.09    1.41    5.58   10.20   14.85
+   345.0    0.00   -0.23   -0.90   -1.98   -3.35   -4.88   -6.39   -7.70   -8.65   -9.10   -8.99   -8.26   -6.89   -4.83   -2.06    1.47    5.66   10.27   14.84
+   350.0    0.00   -0.22   -0.90   -1.98   -3.35   -4.88   -6.39   -7.69   -8.63   -9.07   -8.95   -8.22   -6.86   -4.82   -2.04    1.48    5.68   10.28   14.77
+   355.0    0.00   -0.22   -0.90   -1.97   -3.35   -4.87   -6.38   -7.68   -8.61   -9.05   -8.93   -8.20   -6.84   -4.81   -2.06    1.45    5.63   10.21   14.67
+   360.0    0.00   -0.22   -0.90   -1.97   -3.34   -4.87   -6.38   -7.68   -8.61   -9.05   -8.92   -8.19   -6.83   -4.82   -2.10    1.37    5.52   10.08   14.53
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.27     -0.49    120.45                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.12   -0.48   -1.01   -1.67   -2.41   -3.20   -4.00   -4.74   -5.31   -5.56   -5.40   -4.75   -3.61   -2.03    0.00    2.57    5.84    9.87
+     0.0    0.00   -0.18   -0.57   -1.12   -1.76   -2.47   -3.23   -4.02   -4.76   -5.34   -5.61   -5.43   -4.74   -3.53   -1.80    0.45    3.25    6.60   10.28
+     5.0    0.00   -0.18   -0.57   -1.13   -1.77   -2.48   -3.24   -4.02   -4.76   -5.33   -5.60   -5.42   -4.73   -3.52   -1.80    0.42    3.18    6.47   10.10
+    10.0    0.00   -0.17   -0.57   -1.13   -1.78   -2.49   -3.25   -4.02   -4.76   -5.32   -5.58   -5.40   -4.71   -3.50   -1.82    0.36    3.06    6.33    9.97
+    15.0    0.00   -0.17   -0.57   -1.13   -1.79   -2.50   -3.26   -4.03   -4.75   -5.30   -5.55   -5.36   -4.67   -3.49   -1.84    0.27    2.92    6.18    9.89
+    20.0    0.00   -0.16   -0.57   -1.13   -1.80   -2.51   -3.26   -4.02   -4.73   -5.28   -5.51   -5.32   -4.63   -3.47   -1.87    0.18    2.77    6.03    9.87
+    25.0    0.00   -0.16   -0.56   -1.13   -1.80   -2.52   -3.26   -4.02   -4.71   -5.25   -5.47   -5.27   -4.59   -3.45   -1.90    0.09    2.63    5.90    9.90
+    30.0    0.00   -0.15   -0.55   -1.13   -1.80   -2.52   -3.26   -4.00   -4.69   -5.21   -5.43   -5.23   -4.55   -3.43   -1.92    0.00    2.50    5.79    9.95
+    35.0    0.00   -0.15   -0.54   -1.12   -1.79   -2.51   -3.25   -3.98   -4.66   -5.18   -5.40   -5.20   -4.53   -3.43   -1.95   -0.06    2.40    5.71   10.01
+    40.0    0.00   -0.14   -0.53   -1.11   -1.78   -2.50   -3.23   -3.96   -4.64   -5.15   -5.37   -5.18   -4.52   -3.43   -1.97   -0.11    2.34    5.66   10.07
+    45.0    0.00   -0.14   -0.52   -1.09   -1.77   -2.49   -3.22   -3.94   -4.61   -5.13   -5.36   -5.17   -4.53   -3.44   -1.99   -0.13    2.30    5.63   10.09
+    50.0    0.00   -0.13   -0.51   -1.07   -1.75   -2.47   -3.20   -3.92   -4.59   -5.12   -5.36   -5.19   -4.55   -3.47   -2.00   -0.14    2.30    5.62   10.08
+    55.0    0.00   -0.12   -0.49   -1.05   -1.73   -2.45   -3.18   -3.91   -4.59   -5.12   -5.38   -5.22   -4.59   -3.51   -2.02   -0.14    2.30    5.61   10.03
+    60.0    0.00   -0.11   -0.48   -1.03   -1.70   -2.43   -3.17   -3.90   -4.59   -5.13   -5.41   -5.27   -4.65   -3.56   -2.05   -0.14    2.31    5.59    9.95
+    65.0    0.00   -0.11   -0.46   -1.01   -1.68   -2.41   -3.15   -3.90   -4.60   -5.16   -5.45   -5.33   -4.71   -3.62   -2.09   -0.15    2.32    5.57    9.83
+    70.0    0.00   -0.10   -0.44   -0.99   -1.65   -2.39   -3.14   -3.90   -4.61   -5.19   -5.49   -5.39   -4.79   -3.68   -2.14   -0.18    2.31    5.53    9.70
+    75.0    0.00   -0.09   -0.43   -0.96   -1.63   -2.37   -3.14   -3.91   -4.64   -5.23   -5.54   -5.45   -4.86   -3.76   -2.20   -0.22    2.28    5.48    9.57
+    80.0    0.00   -0.08   -0.41   -0.94   -1.60   -2.35   -3.13   -3.92   -4.66   -5.26   -5.59   -5.51   -4.93   -3.84   -2.28   -0.28    2.23    5.42    9.45
+    85.0    0.00   -0.08   -0.39   -0.91   -1.58   -2.33   -3.13   -3.93   -4.69   -5.30   -5.63   -5.56   -4.99   -3.91   -2.36   -0.36    2.16    5.36    9.36
+    90.0    0.00   -0.07   -0.38   -0.89   -1.56   -2.32   -3.13   -3.94   -4.71   -5.32   -5.66   -5.60   -5.05   -3.99   -2.45   -0.44    2.09    5.30    9.31
+    95.0    0.00   -0.06   -0.36   -0.87   -1.54   -2.30   -3.12   -3.95   -4.72   -5.34   -5.68   -5.63   -5.09   -4.05   -2.52   -0.52    2.03    5.26    9.29
+   100.0    0.00   -0.06   -0.35   -0.85   -1.52   -2.29   -3.11   -3.95   -4.72   -5.34   -5.69   -5.65   -5.13   -4.10   -2.58   -0.58    1.98    5.23    9.32
+   105.0    0.00   -0.05   -0.34   -0.84   -1.50   -2.28   -3.11   -3.94   -4.72   -5.34   -5.69   -5.66   -5.15   -4.13   -2.62   -0.61    1.96    5.24    9.39
+   110.0    0.00   -0.05   -0.33   -0.83   -1.49   -2.27   -3.10   -3.93   -4.70   -5.33   -5.68   -5.65   -5.15   -4.14   -2.63   -0.61    1.98    5.28    9.49
+   115.0    0.00   -0.05   -0.33   -0.82   -1.49   -2.26   -3.09   -3.92   -4.69   -5.31   -5.66   -5.64   -5.14   -4.12   -2.60   -0.56    2.03    5.35    9.61
+   120.0    0.00   -0.05   -0.33   -0.82   -1.48   -2.25   -3.08   -3.91   -4.67   -5.29   -5.64   -5.61   -5.11   -4.08   -2.53   -0.48    2.12    5.45    9.74
+   125.0    0.00   -0.05   -0.33   -0.82   -1.48   -2.25   -3.08   -3.89   -4.65   -5.26   -5.62   -5.58   -5.06   -4.01   -2.44   -0.36    2.25    5.56    9.87
+   130.0    0.00   -0.05   -0.33   -0.83   -1.49   -2.26   -3.08   -3.89   -4.64   -5.24   -5.59   -5.54   -5.00   -3.92   -2.31   -0.22    2.39    5.68   10.00
+   135.0    0.00   -0.05   -0.33   -0.84   -1.50   -2.27   -3.08   -3.89   -4.63   -5.22   -5.56   -5.50   -4.93   -3.81   -2.17   -0.05    2.54    5.80   10.10
+   140.0    0.00   -0.05   -0.34   -0.85   -1.52   -2.29   -3.10   -3.89   -4.62   -5.21   -5.53   -5.45   -4.85   -3.70   -2.02    0.11    2.70    5.91   10.18
+   145.0    0.00   -0.05   -0.35   -0.87   -1.54   -2.31   -3.11   -3.90   -4.62   -5.19   -5.50   -5.40   -4.77   -3.58   -1.87    0.27    2.83    6.00   10.22
+   150.0    0.00   -0.05   -0.36   -0.88   -1.57   -2.34   -3.13   -3.91   -4.62   -5.18   -5.47   -5.35   -4.69   -3.47   -1.74    0.41    2.94    6.06   10.22
+   155.0    0.00   -0.06   -0.37   -0.90   -1.59   -2.36   -3.15   -3.92   -4.63   -5.17   -5.45   -5.30   -4.62   -3.37   -1.62    0.52    3.03    6.09   10.18
+   160.0    0.00   -0.06   -0.38   -0.92   -1.62   -2.39   -3.17   -3.94   -4.63   -5.16   -5.42   -5.26   -4.56   -3.29   -1.54    0.59    3.07    6.09   10.09
+   165.0    0.00   -0.07   -0.40   -0.95   -1.64   -2.41   -3.19   -3.95   -4.63   -5.16   -5.40   -5.22   -4.51   -3.25   -1.50    0.62    3.09    6.06    9.96
+   170.0    0.00   -0.07   -0.41   -0.97   -1.66   -2.43   -3.21   -3.96   -4.63   -5.15   -5.38   -5.20   -4.49   -3.22   -1.49    0.62    3.07    6.01    9.79
+   175.0    0.00   -0.08   -0.42   -0.98   -1.68   -2.45   -3.22   -3.96   -4.63   -5.14   -5.37   -5.19   -4.48   -3.23   -1.50    0.59    3.02    5.93    9.60
+   180.0    0.00   -0.09   -0.44   -1.00   -1.70   -2.46   -3.22   -3.96   -4.62   -5.14   -5.37   -5.18   -4.48   -3.25   -1.55    0.53    2.96    5.83    9.39
+   185.0    0.00   -0.09   -0.45   -1.02   -1.72   -2.47   -3.23   -3.96   -4.62   -5.14   -5.37   -5.19   -4.50   -3.29   -1.61    0.45    2.87    5.73    9.17
+   190.0    0.00   -0.10   -0.46   -1.03   -1.73   -2.48   -3.23   -3.96   -4.63   -5.14   -5.38   -5.20   -4.52   -3.33   -1.68    0.36    2.78    5.63    8.98
+   195.0    0.00   -0.11   -0.47   -1.04   -1.73   -2.48   -3.23   -3.97   -4.64   -5.15   -5.39   -5.21   -4.54   -3.37   -1.75    0.27    2.68    5.53    8.82
+   200.0    0.00   -0.11   -0.48   -1.05   -1.74   -2.48   -3.24   -3.98   -4.66   -5.17   -5.40   -5.22   -4.55   -3.40   -1.81    0.18    2.58    5.44    8.71
+   205.0    0.00   -0.12   -0.49   -1.06   -1.74   -2.49   -3.25   -4.00   -4.68   -5.20   -5.42   -5.23   -4.56   -3.42   -1.86    0.09    2.48    5.37    8.65
+   210.0    0.00   -0.12   -0.50   -1.06   -1.75   -2.49   -3.26   -4.02   -4.71   -5.23   -5.44   -5.23   -4.55   -3.42   -1.90    0.01    2.40    5.33    8.65
+   215.0    0.00   -0.13   -0.50   -1.07   -1.75   -2.49   -3.27   -4.04   -4.75   -5.27   -5.46   -5.23   -4.53   -3.41   -1.93   -0.05    2.32    5.30    8.71
+   220.0    0.00   -0.13   -0.51   -1.07   -1.74   -2.49   -3.28   -4.07   -4.79   -5.31   -5.48   -5.22   -4.51   -3.40   -1.94   -0.10    2.27    5.30    8.82
+   225.0    0.00   -0.14   -0.51   -1.07   -1.74   -2.49   -3.29   -4.10   -4.83   -5.34   -5.50   -5.21   -4.48   -3.37   -1.94   -0.13    2.24    5.33    8.96
+   230.0    0.00   -0.14   -0.52   -1.07   -1.74   -2.49   -3.30   -4.12   -4.86   -5.38   -5.52   -5.21   -4.46   -3.36   -1.94   -0.15    2.23    5.38    9.12
+   235.0    0.00   -0.14   -0.52   -1.06   -1.73   -2.48   -3.30   -4.14   -4.89   -5.41   -5.54   -5.22   -4.46   -3.35   -1.94   -0.15    2.24    5.44    9.27
+   240.0    0.00   -0.15   -0.52   -1.06   -1.72   -2.47   -3.30   -4.15   -4.91   -5.43   -5.57   -5.24   -4.48   -3.36   -1.94   -0.14    2.28    5.51    9.39
+   245.0    0.00   -0.15   -0.52   -1.06   -1.71   -2.46   -3.29   -4.15   -4.92   -5.45   -5.60   -5.28   -4.51   -3.39   -1.95   -0.12    2.33    5.59    9.47
+   250.0    0.00   -0.15   -0.52   -1.05   -1.70   -2.45   -3.28   -4.14   -4.92   -5.47   -5.63   -5.33   -4.57   -3.44   -1.97   -0.09    2.40    5.66    9.51
+   255.0    0.00   -0.16   -0.52   -1.05   -1.69   -2.43   -3.26   -4.12   -4.91   -5.48   -5.67   -5.39   -4.65   -3.50   -2.00   -0.06    2.47    5.72    9.50
+   260.0    0.00   -0.16   -0.53   -1.05   -1.68   -2.42   -3.24   -4.10   -4.90   -5.49   -5.71   -5.46   -4.74   -3.58   -2.03   -0.04    2.53    5.77    9.46
+   265.0    0.00   -0.16   -0.53   -1.04   -1.67   -2.41   -3.22   -4.09   -4.89   -5.50   -5.75   -5.54   -4.83   -3.67   -2.08   -0.03    2.58    5.79    9.40
+   270.0    0.00   -0.16   -0.53   -1.04   -1.67   -2.40   -3.21   -4.07   -4.88   -5.50   -5.78   -5.60   -4.92   -3.75   -2.12   -0.03    2.61    5.80    9.34
+   275.0    0.00   -0.17   -0.53   -1.04   -1.66   -2.39   -3.20   -4.06   -4.88   -5.51   -5.81   -5.66   -5.00   -3.82   -2.17   -0.04    2.61    5.79    9.30
+   280.0    0.00   -0.17   -0.53   -1.04   -1.66   -2.39   -3.20   -4.05   -4.87   -5.52   -5.83   -5.70   -5.05   -3.88   -2.22   -0.07    2.59    5.77    9.32
+   285.0    0.00   -0.17   -0.53   -1.04   -1.66   -2.39   -3.20   -4.06   -4.87   -5.52   -5.84   -5.71   -5.07   -3.91   -2.26   -0.12    2.54    5.74    9.39
+   290.0    0.00   -0.17   -0.53   -1.04   -1.67   -2.39   -3.21   -4.06   -4.88   -5.52   -5.84   -5.71   -5.07   -3.93   -2.29   -0.17    2.49    5.73    9.54
+   295.0    0.00   -0.17   -0.54   -1.05   -1.67   -2.40   -3.22   -4.08   -4.89   -5.51   -5.82   -5.68   -5.05   -3.91   -2.31   -0.21    2.43    5.73    9.75
+   300.0    0.00   -0.18   -0.54   -1.05   -1.68   -2.41   -3.23   -4.09   -4.89   -5.50   -5.79   -5.63   -5.00   -3.88   -2.31   -0.25    2.38    5.76   10.01
+   305.0    0.00   -0.18   -0.54   -1.05   -1.69   -2.42   -3.24   -4.10   -4.89   -5.49   -5.75   -5.58   -4.94   -3.84   -2.30   -0.28    2.36    5.82   10.30
+   310.0    0.00   -0.18   -0.55   -1.06   -1.69   -2.43   -3.25   -4.10   -4.89   -5.47   -5.71   -5.52   -4.87   -3.78   -2.27   -0.27    2.37    5.91   10.59
+   315.0    0.00   -0.18   -0.55   -1.06   -1.70   -2.44   -3.26   -4.10   -4.88   -5.44   -5.67   -5.46   -4.81   -3.73   -2.23   -0.24    2.42    6.03   10.86
+   320.0    0.00   -0.18   -0.55   -1.07   -1.71   -2.44   -3.26   -4.10   -4.87   -5.42   -5.63   -5.42   -4.76   -3.67   -2.18   -0.19    2.50    6.18   11.08
+   325.0    0.00   -0.18   -0.56   -1.08   -1.71   -2.44   -3.25   -4.09   -4.85   -5.40   -5.60   -5.39   -4.72   -3.63   -2.12   -0.10    2.62    6.32   11.22
+   330.0    0.00   -0.18   -0.56   -1.08   -1.72   -2.44   -3.25   -4.07   -4.83   -5.38   -5.59   -5.37   -4.70   -3.60   -2.05    0.00    2.77    6.47   11.28
+   335.0    0.00   -0.18   -0.56   -1.09   -1.72   -2.44   -3.24   -4.06   -4.81   -5.36   -5.58   -5.37   -4.70   -3.57   -1.99    0.12    2.92    6.59   11.24
+   340.0    0.00   -0.18   -0.57   -1.09   -1.73   -2.45   -3.23   -4.04   -4.79   -5.35   -5.58   -5.38   -4.71   -3.56   -1.93    0.23    3.06    6.69   11.13
+   345.0    0.00   -0.18   -0.57   -1.10   -1.73   -2.45   -3.23   -4.03   -4.78   -5.35   -5.59   -5.40   -4.72   -3.55   -1.88    0.33    3.17    6.73   10.95
+   350.0    0.00   -0.18   -0.57   -1.11   -1.74   -2.45   -3.22   -4.02   -4.77   -5.34   -5.60   -5.42   -4.73   -3.54   -1.84    0.40    3.25    6.74   10.73
+   355.0    0.00   -0.18   -0.57   -1.11   -1.75   -2.46   -3.23   -4.02   -4.76   -5.34   -5.61   -5.43   -4.74   -3.54   -1.81    0.44    3.28    6.69   10.50
+   360.0    0.00   -0.18   -0.57   -1.12   -1.76   -2.47   -3.23   -4.02   -4.76   -5.34   -5.61   -5.43   -4.74   -3.53   -1.80    0.45    3.25    6.60   10.28
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TRM29659.00     TCWD                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               6    20-APR-05 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+      0.00     -0.30     95.61                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.22   -0.87   -1.88   -3.20   -4.73   -6.34   -7.86   -9.05   -9.65   -9.42   -8.28   -6.30   -3.76   -1.03    1.63    4.17    6.86   10.13
+     0.0    0.00   -0.23   -0.87   -1.88   -3.17   -4.66   -6.23   -7.72   -8.91   -9.51   -9.30   -8.15   -6.13   -3.52   -0.70    1.98    4.45    7.00   10.19
+     5.0    0.00   -0.23   -0.87   -1.87   -3.16   -4.65   -6.23   -7.73   -8.92   -9.53   -9.33   -8.19   -6.18   -3.58   -0.77    1.91    4.38    6.91   10.05
+    10.0    0.00   -0.23   -0.87   -1.86   -3.15   -4.65   -6.24   -7.74   -8.93   -9.56   -9.36   -8.24   -6.24   -3.66   -0.86    1.82    4.29    6.82    9.93
+    15.0    0.00   -0.23   -0.86   -1.86   -3.15   -4.65   -6.24   -7.75   -8.95   -9.58   -9.40   -8.29   -6.31   -3.75   -0.96    1.71    4.20    6.74    9.84
+    20.0    0.00   -0.23   -0.86   -1.86   -3.15   -4.65   -6.25   -7.76   -8.97   -9.60   -9.43   -8.33   -6.38   -3.84   -1.07    1.60    4.10    6.66    9.78
+    25.0    0.00   -0.23   -0.86   -1.85   -3.15   -4.65   -6.25   -7.77   -8.98   -9.62   -9.46   -8.38   -6.45   -3.93   -1.18    1.49    4.00    6.60    9.76
+    30.0    0.00   -0.23   -0.86   -1.85   -3.15   -4.65   -6.26   -7.78   -8.99   -9.64   -9.48   -8.42   -6.51   -4.01   -1.28    1.38    3.92    6.56    9.77
+    35.0    0.00   -0.23   -0.86   -1.85   -3.15   -4.66   -6.26   -7.78   -9.00   -9.65   -9.50   -8.44   -6.55   -4.08   -1.37    1.29    3.84    6.53    9.81
+    40.0    0.00   -0.23   -0.86   -1.85   -3.15   -4.66   -6.26   -7.79   -9.01   -9.65   -9.51   -8.46   -6.58   -4.13   -1.44    1.21    3.78    6.51    9.86
+    45.0    0.00   -0.23   -0.86   -1.85   -3.15   -4.66   -6.26   -7.79   -9.01   -9.66   -9.51   -8.46   -6.59   -4.16   -1.49    1.16    3.74    6.51    9.93
+    50.0    0.00   -0.23   -0.86   -1.86   -3.15   -4.66   -6.26   -7.79   -9.01   -9.65   -9.50   -8.45   -6.59   -4.16   -1.50    1.13    3.72    6.53    9.99
+    55.0    0.00   -0.23   -0.86   -1.86   -3.15   -4.66   -6.26   -7.79   -9.00   -9.64   -9.49   -8.43   -6.57   -4.14   -1.49    1.14    3.73    6.56   10.04
+    60.0    0.00   -0.23   -0.86   -1.86   -3.16   -4.66   -6.26   -7.79   -9.00   -9.63   -9.47   -8.41   -6.53   -4.11   -1.46    1.17    3.77    6.60   10.07
+    65.0    0.00   -0.23   -0.87   -1.86   -3.16   -4.66   -6.26   -7.78   -8.99   -9.62   -9.45   -8.37   -6.49   -4.05   -1.40    1.23    3.83    6.65   10.08
+    70.0    0.00   -0.23   -0.87   -1.87   -3.16   -4.66   -6.26   -7.78   -8.99   -9.61   -9.43   -8.34   -6.44   -3.99   -1.33    1.31    3.90    6.70   10.07
+    75.0    0.00   -0.23   -0.87   -1.87   -3.16   -4.67   -6.26   -7.78   -8.99   -9.60   -9.41   -8.31   -6.39   -3.92   -1.25    1.39    3.98    6.75   10.05
+    80.0    0.00   -0.23   -0.87   -1.87   -3.17   -4.67   -6.27   -7.79   -8.99   -9.60   -9.40   -8.28   -6.34   -3.86   -1.17    1.48    4.06    6.80   10.02
+    85.0    0.00   -0.23   -0.87   -1.88   -3.17   -4.67   -6.27   -7.80   -9.00   -9.61   -9.40   -8.27   -6.31   -3.80   -1.10    1.56    4.13    6.84    9.99
+    90.0    0.00   -0.23   -0.88   -1.88   -3.18   -4.68   -6.28   -7.81   -9.01   -9.63   -9.41   -8.26   -6.28   -3.76   -1.04    1.62    4.19    6.87    9.96
+    95.0    0.00   -0.23   -0.88   -1.88   -3.18   -4.69   -6.29   -7.82   -9.03   -9.65   -9.42   -8.26   -6.27   -3.72   -0.99    1.67    4.23    6.89    9.95
+   100.0    0.00   -0.23   -0.88   -1.89   -3.18   -4.69   -6.30   -7.84   -9.06   -9.67   -9.45   -8.27   -6.26   -3.70   -0.96    1.70    4.25    6.91    9.96
+   105.0    0.00   -0.23   -0.88   -1.89   -3.19   -4.70   -6.32   -7.86   -9.08   -9.70   -9.47   -8.29   -6.26   -3.69   -0.94    1.72    4.26    6.92    9.98
+   110.0    0.00   -0.23   -0.88   -1.89   -3.19   -4.71   -6.33   -7.88   -9.11   -9.73   -9.50   -8.31   -6.27   -3.69   -0.94    1.72    4.26    6.92   10.03
+   115.0    0.00   -0.23   -0.88   -1.89   -3.19   -4.71   -6.34   -7.89   -9.13   -9.76   -9.52   -8.32   -6.27   -3.69   -0.93    1.71    4.25    6.93   10.09
+   120.0    0.00   -0.23   -0.88   -1.89   -3.19   -4.71   -6.34   -7.90   -9.15   -9.77   -9.53   -8.33   -6.27   -3.68   -0.93    1.71    4.24    6.94   10.16
+   125.0    0.00   -0.22   -0.87   -1.89   -3.19   -4.72   -6.35   -7.91   -9.15   -9.78   -9.54   -8.33   -6.27   -3.67   -0.92    1.72    4.24    6.96   10.24
+   130.0    0.00   -0.22   -0.87   -1.88   -3.19   -4.71   -6.35   -7.91   -9.15   -9.78   -9.53   -8.31   -6.25   -3.65   -0.90    1.73    4.26    6.98   10.31
+   135.0    0.00   -0.22   -0.87   -1.88   -3.19   -4.71   -6.34   -7.90   -9.14   -9.76   -9.51   -8.29   -6.22   -3.61   -0.87    1.76    4.28    7.01   10.38
+   140.0    0.00   -0.22   -0.87   -1.88   -3.18   -4.71   -6.34   -7.89   -9.12   -9.73   -9.48   -8.25   -6.18   -3.57   -0.83    1.80    4.32    7.05   10.44
+   145.0    0.00   -0.22   -0.86   -1.87   -3.18   -4.70   -6.33   -7.88   -9.10   -9.70   -9.43   -8.20   -6.13   -3.52   -0.78    1.85    4.37    7.10   10.47
+   150.0    0.00   -0.22   -0.86   -1.87   -3.17   -4.70   -6.32   -7.86   -9.08   -9.66   -9.39   -8.15   -6.07   -3.47   -0.72    1.90    4.41    7.13   10.49
+   155.0    0.00   -0.21   -0.85   -1.86   -3.17   -4.70   -6.32   -7.85   -9.05   -9.63   -9.34   -8.10   -6.02   -3.42   -0.68    1.95    4.46    7.17   10.49
+   160.0    0.00   -0.21   -0.85   -1.85   -3.17   -4.69   -6.32   -7.85   -9.04   -9.60   -9.30   -8.05   -5.97   -3.38   -0.64    1.98    4.49    7.18   10.47
+   165.0    0.00   -0.21   -0.84   -1.85   -3.16   -4.69   -6.32   -7.85   -9.03   -9.58   -9.27   -8.02   -5.94   -3.35   -0.61    2.00    4.51    7.18   10.43
+   170.0    0.00   -0.21   -0.83   -1.84   -3.16   -4.69   -6.32   -7.85   -9.03   -9.57   -9.25   -8.00   -5.92   -3.34   -0.61    2.00    4.50    7.16   10.37
+   175.0    0.00   -0.20   -0.83   -1.83   -3.15   -4.70   -6.33   -7.87   -9.04   -9.58   -9.25   -7.99   -5.92   -3.35   -0.63    1.97    4.47    7.12   10.30
+   180.0    0.00   -0.20   -0.82   -1.83   -3.15   -4.70   -6.35   -7.89   -9.06   -9.60   -9.27   -8.01   -5.94   -3.38   -0.68    1.92    4.41    7.06   10.23
+   185.0    0.00   -0.20   -0.82   -1.82   -3.15   -4.70   -6.36   -7.91   -9.09   -9.63   -9.30   -8.04   -5.98   -3.43   -0.74    1.85    4.34    6.98   10.14
+   190.0    0.00   -0.20   -0.81   -1.81   -3.14   -4.71   -6.37   -7.93   -9.12   -9.66   -9.34   -8.08   -6.04   -3.50   -0.82    1.76    4.25    6.90   10.06
+   195.0    0.00   -0.20   -0.81   -1.81   -3.14   -4.71   -6.38   -7.95   -9.15   -9.70   -9.38   -8.14   -6.10   -3.57   -0.90    1.67    4.16    6.81    9.98
+   200.0    0.00   -0.20   -0.81   -1.80   -3.13   -4.70   -6.38   -7.96   -9.17   -9.73   -9.43   -8.20   -6.18   -3.66   -0.99    1.58    4.07    6.73    9.91
+   205.0    0.00   -0.19   -0.80   -1.80   -3.13   -4.70   -6.38   -7.96   -9.18   -9.76   -9.47   -8.26   -6.25   -3.74   -1.08    1.50    4.00    6.67    9.86
+   210.0    0.00   -0.19   -0.80   -1.80   -3.12   -4.69   -6.37   -7.95   -9.18   -9.77   -9.51   -8.31   -6.32   -3.81   -1.15    1.43    3.94    6.62    9.83
+   215.0    0.00   -0.19   -0.80   -1.79   -3.12   -4.68   -6.36   -7.94   -9.17   -9.78   -9.53   -8.35   -6.37   -3.88   -1.21    1.38    3.90    6.59    9.81
+   220.0    0.00   -0.20   -0.80   -1.80   -3.11   -4.67   -6.34   -7.92   -9.15   -9.77   -9.54   -8.38   -6.42   -3.93   -1.26    1.35    3.88    6.58    9.81
+   225.0    0.00   -0.20   -0.81   -1.80   -3.11   -4.67   -6.32   -7.89   -9.13   -9.75   -9.53   -8.40   -6.45   -3.96   -1.28    1.34    3.88    6.58    9.82
+   230.0    0.00   -0.20   -0.81   -1.80   -3.12   -4.66   -6.31   -7.87   -9.10   -9.72   -9.52   -8.40   -6.46   -3.98   -1.30    1.34    3.89    6.60    9.85
+   235.0    0.00   -0.20   -0.82   -1.81   -3.12   -4.66   -6.30   -7.85   -9.06   -9.69   -9.49   -8.39   -6.47   -3.99   -1.30    1.35    3.91    6.63    9.89
+   240.0    0.00   -0.20   -0.82   -1.82   -3.14   -4.67   -6.30   -7.83   -9.04   -9.66   -9.47   -8.37   -6.46   -3.98   -1.29    1.36    3.93    6.66    9.93
+   245.0    0.00   -0.20   -0.83   -1.84   -3.15   -4.69   -6.30   -7.82   -9.02   -9.63   -9.44   -8.35   -6.44   -3.97   -1.27    1.38    3.96    6.68    9.96
+   250.0    0.00   -0.21   -0.84   -1.85   -3.18   -4.71   -6.32   -7.83   -9.01   -9.61   -9.42   -8.33   -6.42   -3.95   -1.26    1.40    3.97    6.70    9.99
+   255.0    0.00   -0.21   -0.85   -1.87   -3.20   -4.74   -6.34   -7.84   -9.01   -9.60   -9.40   -8.31   -6.41   -3.94   -1.24    1.42    3.98    6.71   10.00
+   260.0    0.00   -0.21   -0.86   -1.89   -3.23   -4.77   -6.37   -7.86   -9.02   -9.60   -9.40   -8.30   -6.39   -3.92   -1.22    1.43    3.99    6.71   10.00
+   265.0    0.00   -0.22   -0.87   -1.91   -3.26   -4.80   -6.40   -7.89   -9.04   -9.61   -9.40   -8.30   -6.38   -3.91   -1.21    1.45    4.00    6.71   10.00
+   270.0    0.00   -0.22   -0.88   -1.93   -3.29   -4.84   -6.44   -7.92   -9.06   -9.63   -9.41   -8.30   -6.38   -3.89   -1.19    1.46    4.01    6.70    9.98
+   275.0    0.00   -0.22   -0.89   -1.95   -3.31   -4.87   -6.47   -7.95   -9.09   -9.65   -9.42   -8.31   -6.38   -3.88   -1.17    1.48    4.03    6.70    9.97
+   280.0    0.00   -0.22   -0.90   -1.96   -3.34   -4.89   -6.50   -7.98   -9.11   -9.67   -9.44   -8.32   -6.38   -3.87   -1.15    1.51    4.05    6.72    9.97
+   285.0    0.00   -0.23   -0.90   -1.98   -3.35   -4.91   -6.52   -7.99   -9.13   -9.68   -9.45   -8.33   -6.38   -3.86   -1.12    1.55    4.09    6.74    9.99
+   290.0    0.00   -0.23   -0.91   -1.99   -3.36   -4.93   -6.53   -8.00   -9.13   -9.69   -9.46   -8.34   -6.38   -3.85   -1.09    1.60    4.14    6.79   10.02
+   295.0    0.00   -0.23   -0.92   -1.99   -3.37   -4.93   -6.53   -8.00   -9.13   -9.69   -9.47   -8.34   -6.37   -3.82   -1.04    1.65    4.20    6.84   10.08
+   300.0    0.00   -0.23   -0.92   -2.00   -3.37   -4.92   -6.52   -7.98   -9.12   -9.68   -9.46   -8.33   -6.36   -3.79   -1.00    1.71    4.27    6.92   10.16
+   305.0    0.00   -0.23   -0.92   -1.99   -3.36   -4.91   -6.49   -7.96   -9.10   -9.67   -9.45   -8.32   -6.34   -3.76   -0.94    1.78    4.34    6.99   10.26
+   310.0    0.00   -0.24   -0.92   -1.99   -3.35   -4.89   -6.47   -7.93   -9.07   -9.64   -9.43   -8.30   -6.31   -3.71   -0.89    1.85    4.41    7.08   10.37
+   315.0    0.00   -0.24   -0.92   -1.98   -3.33   -4.86   -6.43   -7.89   -9.03   -9.61   -9.40   -8.27   -6.27   -3.66   -0.83    1.91    4.48    7.15   10.48
+   320.0    0.00   -0.24   -0.91   -1.97   -3.31   -4.83   -6.40   -7.86   -9.00   -9.58   -9.37   -8.23   -6.22   -3.61   -0.77    1.97    4.54    7.22   10.58
+   325.0    0.00   -0.24   -0.91   -1.96   -3.29   -4.80   -6.36   -7.82   -8.97   -9.55   -9.34   -8.19   -6.18   -3.56   -0.71    2.02    4.58    7.27   10.66
+   330.0    0.00   -0.24   -0.91   -1.95   -3.27   -4.77   -6.33   -7.79   -8.94   -9.52   -9.31   -8.16   -6.14   -3.51   -0.67    2.06    4.61    7.29   10.70
+   335.0    0.00   -0.24   -0.90   -1.93   -3.25   -4.75   -6.30   -7.76   -8.92   -9.50   -9.29   -8.13   -6.10   -3.47   -0.63    2.09    4.63    7.30   10.70
+   340.0    0.00   -0.23   -0.89   -1.92   -3.23   -4.72   -6.28   -7.74   -8.90   -9.49   -9.27   -8.11   -6.08   -3.45   -0.61    2.10    4.63    7.28   10.66
+   345.0    0.00   -0.23   -0.89   -1.91   -3.21   -4.70   -6.26   -7.73   -8.89   -9.48   -9.27   -8.10   -6.07   -3.43   -0.60    2.10    4.61    7.23   10.58
+   350.0    0.00   -0.23   -0.88   -1.90   -3.19   -4.68   -6.25   -7.72   -8.89   -9.49   -9.27   -8.11   -6.07   -3.44   -0.61    2.08    4.57    7.17   10.47
+   355.0    0.00   -0.23   -0.88   -1.89   -3.18   -4.67   -6.24   -7.72   -8.90   -9.50   -9.28   -8.12   -6.09   -3.47   -0.65    2.04    4.52    7.09   10.34
+   360.0    0.00   -0.23   -0.87   -1.88   -3.17   -4.66   -6.23   -7.72   -8.91   -9.51   -9.30   -8.15   -6.13   -3.52   -0.70    1.98    4.45    7.00   10.19
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.33     -0.41    124.05                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.09   -0.34   -0.73   -1.21   -1.77   -2.41   -3.13   -3.89   -4.59   -5.11   -5.27   -4.94   -4.03   -2.52   -0.44    2.15    5.19    8.54
+     0.0    0.00   -0.04   -0.26   -0.63   -1.11   -1.67   -2.31   -3.02   -3.77   -4.48   -5.01   -5.19   -4.87   -3.97   -2.47   -0.41    2.17    5.24    8.74
+     5.0    0.00   -0.05   -0.27   -0.63   -1.10   -1.66   -2.30   -3.02   -3.77   -4.48   -5.01   -5.18   -4.87   -3.97   -2.49   -0.45    2.12    5.19    8.66
+    10.0    0.00   -0.05   -0.27   -0.63   -1.10   -1.66   -2.30   -3.02   -3.78   -4.49   -5.01   -5.18   -4.86   -3.98   -2.51   -0.48    2.08    5.14    8.58
+    15.0    0.00   -0.06   -0.28   -0.64   -1.11   -1.66   -2.31   -3.03   -3.80   -4.51   -5.03   -5.19   -4.86   -3.97   -2.51   -0.50    2.05    5.10    8.52
+    20.0    0.00   -0.06   -0.29   -0.65   -1.11   -1.67   -2.32   -3.05   -3.82   -4.53   -5.04   -5.20   -4.86   -3.97   -2.52   -0.51    2.04    5.08    8.47
+    25.0    0.00   -0.07   -0.29   -0.65   -1.12   -1.68   -2.34   -3.07   -3.85   -4.56   -5.07   -5.21   -4.87   -3.97   -2.52   -0.51    2.04    5.08    8.44
+    30.0    0.00   -0.07   -0.30   -0.67   -1.14   -1.70   -2.36   -3.11   -3.88   -4.60   -5.10   -5.23   -4.88   -3.98   -2.51   -0.50    2.05    5.09    8.45
+    35.0    0.00   -0.08   -0.31   -0.68   -1.15   -1.73   -2.39   -3.14   -3.92   -4.63   -5.13   -5.26   -4.89   -3.99   -2.51   -0.49    2.07    5.13    8.48
+    40.0    0.00   -0.09   -0.32   -0.70   -1.17   -1.75   -2.42   -3.18   -3.96   -4.67   -5.16   -5.28   -4.91   -4.00   -2.52   -0.48    2.10    5.18    8.54
+    45.0    0.00   -0.09   -0.34   -0.71   -1.19   -1.77   -2.45   -3.21   -3.99   -4.70   -5.19   -5.31   -4.94   -4.02   -2.53   -0.48    2.13    5.24    8.62
+    50.0    0.00   -0.10   -0.35   -0.73   -1.21   -1.80   -2.48   -3.24   -4.02   -4.73   -5.21   -5.33   -4.96   -4.04   -2.55   -0.48    2.17    5.31    8.70
+    55.0    0.00   -0.11   -0.36   -0.74   -1.23   -1.82   -2.50   -3.26   -4.04   -4.75   -5.23   -5.35   -4.99   -4.08   -2.57   -0.48    2.20    5.38    8.79
+    60.0    0.00   -0.11   -0.37   -0.76   -1.25   -1.84   -2.52   -3.28   -4.06   -4.76   -5.25   -5.38   -5.02   -4.11   -2.60   -0.48    2.24    5.45    8.86
+    65.0    0.00   -0.12   -0.39   -0.78   -1.27   -1.85   -2.53   -3.28   -4.06   -4.76   -5.26   -5.40   -5.06   -4.15   -2.64   -0.49    2.27    5.51    8.92
+    70.0    0.00   -0.13   -0.40   -0.79   -1.28   -1.86   -2.53   -3.28   -4.06   -4.76   -5.26   -5.42   -5.09   -4.20   -2.67   -0.49    2.30    5.57    8.95
+    75.0    0.00   -0.13   -0.41   -0.80   -1.29   -1.87   -2.53   -3.27   -4.05   -4.76   -5.27   -5.44   -5.13   -4.24   -2.70   -0.49    2.33    5.61    8.96
+    80.0    0.00   -0.14   -0.42   -0.82   -1.30   -1.87   -2.53   -3.26   -4.04   -4.75   -5.27   -5.46   -5.16   -4.27   -2.72   -0.49    2.36    5.64    8.95
+    85.0    0.00   -0.14   -0.43   -0.83   -1.31   -1.87   -2.52   -3.26   -4.03   -4.75   -5.28   -5.48   -5.19   -4.30   -2.74   -0.49    2.38    5.66    8.92
+    90.0    0.00   -0.15   -0.44   -0.84   -1.32   -1.88   -2.52   -3.25   -4.02   -4.75   -5.29   -5.49   -5.21   -4.32   -2.75   -0.48    2.40    5.67    8.89
+    95.0    0.00   -0.15   -0.45   -0.85   -1.33   -1.88   -2.52   -3.25   -4.03   -4.76   -5.30   -5.50   -5.22   -4.32   -2.74   -0.47    2.42    5.67    8.86
+   100.0    0.00   -0.16   -0.46   -0.86   -1.34   -1.89   -2.53   -3.26   -4.04   -4.77   -5.31   -5.51   -5.21   -4.30   -2.72   -0.44    2.43    5.67    8.83
+   105.0    0.00   -0.16   -0.47   -0.87   -1.35   -1.90   -2.54   -3.27   -4.06   -4.79   -5.33   -5.51   -5.20   -4.28   -2.68   -0.42    2.44    5.66    8.82
+   110.0    0.00   -0.17   -0.47   -0.88   -1.36   -1.91   -2.56   -3.30   -4.08   -4.81   -5.34   -5.50   -5.17   -4.23   -2.63   -0.38    2.45    5.65    8.83
+   115.0    0.00   -0.17   -0.48   -0.89   -1.37   -1.92   -2.57   -3.32   -4.11   -4.83   -5.35   -5.49   -5.13   -4.17   -2.58   -0.34    2.47    5.65    8.86
+   120.0    0.00   -0.17   -0.48   -0.89   -1.38   -1.94   -2.59   -3.34   -4.13   -4.85   -5.35   -5.46   -5.08   -4.11   -2.51   -0.29    2.49    5.66    8.90
+   125.0    0.00   -0.17   -0.49   -0.90   -1.39   -1.95   -2.61   -3.36   -4.15   -4.86   -5.34   -5.43   -5.02   -4.03   -2.44   -0.24    2.51    5.68    8.95
+   130.0    0.00   -0.17   -0.49   -0.90   -1.39   -1.96   -2.62   -3.37   -4.16   -4.86   -5.33   -5.40   -4.97   -3.97   -2.37   -0.19    2.54    5.70    9.00
+   135.0    0.00   -0.17   -0.49   -0.91   -1.39   -1.96   -2.62   -3.38   -4.16   -4.85   -5.31   -5.36   -4.92   -3.90   -2.30   -0.13    2.58    5.72    9.04
+   140.0    0.00   -0.17   -0.49   -0.90   -1.39   -1.96   -2.62   -3.37   -4.14   -4.83   -5.28   -5.33   -4.87   -3.85   -2.25   -0.08    2.62    5.75    9.06
+   145.0    0.00   -0.17   -0.49   -0.90   -1.39   -1.95   -2.61   -3.35   -4.12   -4.80   -5.25   -5.30   -4.84   -3.82   -2.21   -0.03    2.66    5.77    9.06
+   150.0    0.00   -0.17   -0.48   -0.89   -1.38   -1.94   -2.58   -3.31   -4.08   -4.76   -5.22   -5.28   -4.83   -3.80   -2.19    0.00    2.69    5.78    9.03
+   155.0    0.00   -0.16   -0.47   -0.89   -1.37   -1.92   -2.55   -3.27   -4.03   -4.72   -5.19   -5.26   -4.83   -3.80   -2.18    0.01    2.71    5.77    8.98
+   160.0    0.00   -0.16   -0.47   -0.87   -1.35   -1.89   -2.52   -3.23   -3.98   -4.68   -5.16   -5.26   -4.84   -3.82   -2.19    0.01    2.70    5.74    8.90
+   165.0    0.00   -0.15   -0.46   -0.86   -1.33   -1.87   -2.48   -3.18   -3.93   -4.64   -5.13   -5.26   -4.86   -3.85   -2.23   -0.02    2.67    5.69    8.80
+   170.0    0.00   -0.15   -0.45   -0.84   -1.31   -1.84   -2.44   -3.14   -3.89   -4.60   -5.12   -5.26   -4.88   -3.89   -2.27   -0.07    2.61    5.61    8.68
+   175.0    0.00   -0.14   -0.43   -0.83   -1.29   -1.81   -2.41   -3.10   -3.85   -4.57   -5.10   -5.27   -4.91   -3.93   -2.32   -0.14    2.53    5.51    8.57
+   180.0    0.00   -0.14   -0.42   -0.81   -1.26   -1.78   -2.38   -3.07   -3.82   -4.55   -5.09   -5.27   -4.93   -3.97   -2.38   -0.22    2.42    5.39    8.46
+   185.0    0.00   -0.13   -0.41   -0.79   -1.24   -1.76   -2.36   -3.05   -3.80   -4.53   -5.08   -5.27   -4.94   -4.00   -2.44   -0.31    2.30    5.26    8.37
+   190.0    0.00   -0.12   -0.39   -0.77   -1.22   -1.73   -2.34   -3.03   -3.79   -4.53   -5.08   -5.26   -4.94   -4.01   -2.49   -0.40    2.18    5.14    8.30
+   195.0    0.00   -0.11   -0.38   -0.75   -1.19   -1.72   -2.32   -3.03   -3.79   -4.52   -5.07   -5.25   -4.93   -4.02   -2.53   -0.48    2.06    5.02    8.24
+   200.0    0.00   -0.11   -0.36   -0.73   -1.17   -1.70   -2.31   -3.02   -3.79   -4.52   -5.06   -5.23   -4.91   -4.02   -2.56   -0.55    1.95    4.92    8.21
+   205.0    0.00   -0.10   -0.35   -0.71   -1.15   -1.68   -2.31   -3.02   -3.80   -4.52   -5.05   -5.21   -4.88   -4.00   -2.57   -0.61    1.87    4.85    8.20
+   210.0    0.00   -0.09   -0.33   -0.69   -1.13   -1.67   -2.30   -3.03   -3.80   -4.52   -5.03   -5.18   -4.86   -3.99   -2.58   -0.65    1.82    4.81    8.21
+   215.0    0.00   -0.08   -0.32   -0.67   -1.12   -1.66   -2.30   -3.03   -3.80   -4.51   -5.02   -5.16   -4.83   -3.97   -2.58   -0.66    1.79    4.80    8.22
+   220.0    0.00   -0.08   -0.30   -0.65   -1.10   -1.65   -2.29   -3.02   -3.80   -4.51   -5.01   -5.15   -4.82   -3.96   -2.58   -0.67    1.80    4.81    8.23
+   225.0    0.00   -0.07   -0.29   -0.64   -1.09   -1.64   -2.28   -3.02   -3.79   -4.50   -4.99   -5.14   -4.81   -3.96   -2.58   -0.66    1.82    4.84    8.24
+   230.0    0.00   -0.06   -0.28   -0.62   -1.07   -1.63   -2.28   -3.01   -3.78   -4.49   -4.99   -5.14   -4.82   -3.98   -2.58   -0.64    1.85    4.87    8.23
+   235.0    0.00   -0.06   -0.27   -0.61   -1.07   -1.62   -2.27   -3.00   -3.77   -4.48   -4.98   -5.15   -4.84   -4.00   -2.60   -0.63    1.89    4.90    8.22
+   240.0    0.00   -0.05   -0.26   -0.60   -1.06   -1.61   -2.26   -2.99   -3.76   -4.47   -4.99   -5.16   -4.87   -4.03   -2.62   -0.63    1.91    4.93    8.19
+   245.0    0.00   -0.05   -0.25   -0.60   -1.05   -1.61   -2.26   -2.99   -3.75   -4.46   -4.99   -5.18   -4.91   -4.08   -2.65   -0.64    1.92    4.93    8.14
+   250.0    0.00   -0.04   -0.24   -0.59   -1.05   -1.61   -2.26   -2.98   -3.74   -4.46   -5.00   -5.21   -4.95   -4.12   -2.69   -0.66    1.91    4.90    8.09
+   255.0    0.00   -0.04   -0.24   -0.59   -1.06   -1.62   -2.27   -2.98   -3.74   -4.46   -5.00   -5.23   -4.99   -4.16   -2.73   -0.69    1.87    4.85    8.02
+   260.0    0.00   -0.03   -0.24   -0.59   -1.06   -1.63   -2.27   -2.99   -3.74   -4.45   -5.01   -5.25   -5.01   -4.20   -2.76   -0.73    1.82    4.77    7.95
+   265.0    0.00   -0.03   -0.23   -0.59   -1.07   -1.64   -2.29   -2.99   -3.74   -4.45   -5.01   -5.26   -5.03   -4.22   -2.79   -0.78    1.75    4.68    7.89
+   270.0    0.00   -0.03   -0.23   -0.60   -1.08   -1.66   -2.30   -3.00   -3.74   -4.45   -5.01   -5.26   -5.04   -4.23   -2.81   -0.81    1.68    4.59    7.84
+   275.0    0.00   -0.02   -0.23   -0.60   -1.10   -1.68   -2.32   -3.01   -3.75   -4.45   -5.01   -5.26   -5.04   -4.23   -2.81   -0.84    1.62    4.50    7.80
+   280.0    0.00   -0.02   -0.23   -0.61   -1.11   -1.69   -2.33   -3.03   -3.75   -4.45   -5.01   -5.25   -5.02   -4.21   -2.79   -0.84    1.57    4.43    7.79
+   285.0    0.00   -0.02   -0.23   -0.62   -1.13   -1.71   -2.35   -3.04   -3.76   -4.45   -5.00   -5.23   -4.99   -4.17   -2.76   -0.82    1.56    4.38    7.80
+   290.0    0.00   -0.02   -0.24   -0.63   -1.14   -1.73   -2.37   -3.05   -3.76   -4.45   -4.99   -5.22   -4.96   -4.13   -2.71   -0.78    1.57    4.38    7.83
+   295.0    0.00   -0.02   -0.24   -0.63   -1.15   -1.74   -2.38   -3.06   -3.76   -4.44   -4.98   -5.20   -4.93   -4.08   -2.64   -0.72    1.62    4.41    7.90
+   300.0    0.00   -0.02   -0.24   -0.64   -1.16   -1.75   -2.39   -3.06   -3.77   -4.44   -4.97   -5.19   -4.91   -4.03   -2.57   -0.63    1.70    4.48    7.99
+   305.0    0.00   -0.02   -0.24   -0.64   -1.17   -1.76   -2.40   -3.07   -3.77   -4.44   -4.97   -5.18   -4.88   -3.99   -2.51   -0.54    1.80    4.58    8.10
+   310.0    0.00   -0.02   -0.24   -0.65   -1.17   -1.77   -2.40   -3.07   -3.77   -4.45   -4.97   -5.17   -4.87   -3.95   -2.44   -0.45    1.91    4.71    8.23
+   315.0    0.00   -0.02   -0.25   -0.65   -1.17   -1.77   -2.40   -3.07   -3.77   -4.45   -4.98   -5.18   -4.86   -3.92   -2.39   -0.37    2.03    4.84    8.37
+   320.0    0.00   -0.02   -0.25   -0.65   -1.17   -1.76   -2.40   -3.07   -3.78   -4.46   -4.99   -5.18   -4.86   -3.91   -2.35   -0.30    2.14    4.98    8.50
+   325.0    0.00   -0.02   -0.25   -0.65   -1.17   -1.76   -2.39   -3.07   -3.78   -4.46   -4.99   -5.19   -4.86   -3.90   -2.33   -0.25    2.22    5.11    8.63
+   330.0    0.00   -0.02   -0.25   -0.65   -1.16   -1.75   -2.38   -3.06   -3.78   -4.47   -5.00   -5.19   -4.86   -3.90   -2.32   -0.22    2.29    5.21    8.73
+   335.0    0.00   -0.03   -0.25   -0.64   -1.15   -1.74   -2.37   -3.06   -3.78   -4.47   -5.01   -5.20   -4.87   -3.91   -2.33   -0.22    2.32    5.28    8.81
+   340.0    0.00   -0.03   -0.25   -0.64   -1.14   -1.72   -2.36   -3.05   -3.78   -4.48   -5.01   -5.20   -4.87   -3.93   -2.35   -0.24    2.33    5.33    8.86
+   345.0    0.00   -0.03   -0.25   -0.64   -1.13   -1.71   -2.35   -3.04   -3.78   -4.48   -5.01   -5.20   -4.88   -3.94   -2.38   -0.27    2.31    5.34    8.87
+   350.0    0.00   -0.04   -0.26   -0.63   -1.12   -1.69   -2.33   -3.03   -3.77   -4.48   -5.01   -5.20   -4.88   -3.95   -2.42   -0.32    2.27    5.32    8.85
+   355.0    0.00   -0.04   -0.26   -0.63   -1.12   -1.68   -2.32   -3.02   -3.77   -4.48   -5.01   -5.19   -4.87   -3.96   -2.45   -0.37    2.22    5.29    8.81
+   360.0    0.00   -0.04   -0.26   -0.63   -1.11   -1.67   -2.31   -3.02   -3.77   -4.48   -5.01   -5.19   -4.87   -3.97   -2.47   -0.41    2.17    5.24    8.74
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TRM29659.00     UNAV                                        TYPE / SERIAL NO    
+FIELD               NGS/TUM                  1    20-APR-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      1.40      1.44     88.94                              NORTH / EAST / UP   
+   NOAZI    0.00    0.56    0.38   -0.57   -1.88   -3.39   -4.95   -6.29   -7.17   -7.60   -7.44   -6.66   -5.37   -3.44   -0.90    2.27    6.19
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.80     -0.72    119.36                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.43   -0.92   -1.60   -2.42   -3.22   -4.03   -4.81   -5.45   -5.83   -5.85   -5.43   -4.48   -3.25   -1.53    0.49    3.06
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TRM33429.00+GP  NONE                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               4    27-JAN-03 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+     -0.04     -0.50     69.66                              NORTH / EAST / UP   
+   NOAZI    0.00    0.61    2.21    4.26    6.07    7.07    6.99    5.92    4.23    2.34    0.60   -0.84   -2.00   -2.87   -3.33   -3.03   -1.50    1.57    5.98
+     0.0    0.00    0.61    2.21    4.26    6.04    6.99    6.85    5.72    4.01    2.15    0.49   -0.86   -1.93   -2.79   -3.29   -3.04   -1.48    1.73    6.35
+     5.0    0.00    0.60    2.20    4.25    6.04    7.00    6.86    5.72    3.98    2.10    0.41   -0.95   -2.04   -2.91   -3.43   -3.22   -1.73    1.44    6.08
+    10.0    0.00    0.59    2.19    4.24    6.05    7.02    6.88    5.74    3.98    2.06    0.35   -1.03   -2.13   -3.01   -3.55   -3.38   -1.96    1.14    5.80
+    15.0    0.00    0.58    2.17    4.24    6.06    7.04    6.91    5.76    3.98    2.04    0.30   -1.10   -2.21   -3.09   -3.65   -3.53   -2.17    0.86    5.53
+    20.0    0.00    0.56    2.16    4.23    6.07    7.07    6.95    5.80    4.00    2.04    0.27   -1.15   -2.27   -3.16   -3.73   -3.64   -2.35    0.61    5.26
+    25.0    0.00    0.55    2.15    4.23    6.08    7.10    6.99    5.84    4.04    2.06    0.26   -1.19   -2.32   -3.21   -3.79   -3.73   -2.50    0.39    5.02
+    30.0    0.00    0.54    2.14    4.22    6.09    7.13    7.04    5.90    4.09    2.09    0.27   -1.21   -2.35   -3.25   -3.84   -3.79   -2.61    0.22    4.80
+    35.0    0.00    0.53    2.12    4.22    6.10    7.15    7.08    5.96    4.15    2.13    0.28   -1.21   -2.38   -3.28   -3.87   -3.83   -2.67    0.10    4.61
+    40.0    0.00    0.52    2.11    4.21    6.10    7.18    7.13    6.02    4.21    2.18    0.31   -1.20   -2.39   -3.30   -3.89   -3.85   -2.71    0.02    4.46
+    45.0    0.00    0.51    2.09    4.19    6.10    7.20    7.16    6.07    4.27    2.23    0.35   -1.19   -2.39   -3.31   -3.90   -3.85   -2.70   -0.01    4.35
+    50.0    0.00    0.50    2.08    4.18    6.10    7.21    7.19    6.11    4.32    2.29    0.40   -1.16   -2.39   -3.32   -3.90   -3.84   -2.68    0.00    4.28
+    55.0    0.00    0.49    2.06    4.16    6.08    7.20    7.21    6.15    4.37    2.34    0.45   -1.13   -2.37   -3.32   -3.89   -3.81   -2.63    0.04    4.25
+    60.0    0.00    0.48    2.04    4.14    6.06    7.19    7.21    6.17    4.41    2.39    0.50   -1.09   -2.35   -3.31   -3.88   -3.78   -2.57    0.11    4.26
+    65.0    0.00    0.47    2.03    4.12    6.04    7.18    7.20    6.18    4.44    2.43    0.54   -1.05   -2.32   -3.29   -3.86   -3.73   -2.49    0.20    4.29
+    70.0    0.00    0.47    2.01    4.09    6.01    7.15    7.19    6.18    4.45    2.47    0.59   -1.00   -2.28   -3.26   -3.82   -3.68   -2.40    0.31    4.35
+    75.0    0.00    0.46    1.99    4.07    5.98    7.12    7.16    6.17    4.46    2.50    0.64   -0.94   -2.23   -3.21   -3.77   -3.61   -2.30    0.42    4.43
+    80.0    0.00    0.45    1.98    4.04    5.94    7.08    7.13    6.15    4.47    2.53    0.69   -0.89   -2.16   -3.15   -3.70   -3.52   -2.19    0.55    4.53
+    85.0    0.00    0.45    1.96    4.01    5.91    7.04    7.10    6.13    4.48    2.56    0.73   -0.82   -2.09   -3.07   -3.61   -3.41   -2.06    0.69    4.64
+    90.0    0.00    0.44    1.95    3.98    5.87    7.00    7.07    6.12    4.48    2.59    0.78   -0.76   -2.01   -2.98   -3.51   -3.29   -1.92    0.84    4.79
+    95.0    0.00    0.44    1.93    3.96    5.83    6.96    7.04    6.10    4.49    2.62    0.84   -0.69   -1.93   -2.87   -3.38   -3.14   -1.76    1.01    4.95
+   100.0    0.00    0.44    1.92    3.94    5.80    6.93    7.01    6.10    4.50    2.65    0.89   -0.61   -1.83   -2.76   -3.25   -2.99   -1.58    1.20    5.15
+   105.0    0.00    0.44    1.91    3.92    5.77    6.90    6.99    6.09    4.52    2.69    0.94   -0.54   -1.74   -2.64   -3.11   -2.82   -1.39    1.41    5.38
+   110.0    0.00    0.44    1.91    3.90    5.75    6.87    6.97    6.09    4.53    2.72    1.00   -0.47   -1.65   -2.53   -2.96   -2.65   -1.20    1.63    5.63
+   115.0    0.00    0.44    1.90    3.89    5.73    6.85    6.95    6.08    4.55    2.75    1.05   -0.41   -1.57   -2.42   -2.83   -2.48   -1.00    1.87    5.92
+   120.0    0.00    0.44    1.91    3.88    5.71    6.83    6.94    6.08    4.56    2.78    1.09   -0.35   -1.49   -2.33   -2.71   -2.33   -0.80    2.11    6.21
+   125.0    0.00    0.45    1.91    3.88    5.70    6.81    6.92    6.07    4.56    2.80    1.12   -0.30   -1.43   -2.25   -2.61   -2.20   -0.63    2.35    6.51
+   130.0    0.00    0.46    1.92    3.88    5.69    6.79    6.90    6.05    4.55    2.80    1.14   -0.27   -1.39   -2.19   -2.53   -2.09   -0.47    2.56    6.80
+   135.0    0.00    0.46    1.93    3.89    5.69    6.78    6.87    6.02    4.53    2.79    1.14   -0.26   -1.37   -2.16   -2.49   -2.02   -0.35    2.76    7.06
+   140.0    0.00    0.47    1.94    3.90    5.69    6.76    6.84    5.98    4.49    2.77    1.13   -0.26   -1.37   -2.16   -2.48   -1.99   -0.27    2.91    7.27
+   145.0    0.00    0.49    1.96    3.92    5.70    6.75    6.81    5.94    4.44    2.72    1.09   -0.29   -1.39   -2.19   -2.50   -1.99   -0.23    3.01    7.42
+   150.0    0.00    0.50    1.99    3.94    5.71    6.75    6.78    5.89    4.38    2.66    1.04   -0.33   -1.44   -2.24   -2.56   -2.03   -0.23    3.06    7.51
+   155.0    0.00    0.51    2.01    3.97    5.73    6.74    6.75    5.83    4.31    2.59    0.97   -0.40   -1.50   -2.31   -2.64   -2.11   -0.28    3.06    7.52
+   160.0    0.00    0.53    2.04    4.00    5.76    6.75    6.73    5.78    4.24    2.50    0.88   -0.48   -1.59   -2.40   -2.74   -2.21   -0.36    3.00    7.46
+   165.0    0.00    0.54    2.07    4.04    5.79    6.76    6.71    5.73    4.16    2.41    0.78   -0.58   -1.69   -2.52   -2.86   -2.34   -0.48    2.89    7.34
+   170.0    0.00    0.56    2.11    4.09    5.83    6.78    6.70    5.69    4.08    2.31    0.68   -0.69   -1.80   -2.64   -3.00   -2.48   -0.63    2.74    7.17
+   175.0    0.00    0.58    2.14    4.14    5.88    6.82    6.71    5.65    4.02    2.22    0.57   -0.81   -1.92   -2.77   -3.14   -2.64   -0.81    2.56    6.97
+   180.0    0.00    0.60    2.18    4.19    5.93    6.86    6.72    5.63    3.96    2.14    0.47   -0.92   -2.05   -2.90   -3.29   -2.81   -0.99    2.36    6.76
+   185.0    0.00    0.62    2.22    4.24    5.99    6.91    6.75    5.63    3.92    2.06    0.37   -1.03   -2.16   -3.02   -3.43   -2.98   -1.19    2.14    6.55
+   190.0    0.00    0.63    2.26    4.30    6.05    6.97    6.79    5.64    3.89    2.00    0.29   -1.13   -2.27   -3.14   -3.56   -3.14   -1.38    1.93    6.35
+   195.0    0.00    0.65    2.30    4.35    6.12    7.03    6.84    5.66    3.89    1.96    0.22   -1.22   -2.37   -3.25   -3.69   -3.29   -1.57    1.72    6.18
+   200.0    0.00    0.67    2.33    4.41    6.18    7.09    6.89    5.69    3.89    1.94    0.17   -1.29   -2.46   -3.34   -3.80   -3.43   -1.74    1.53    6.03
+   205.0    0.00    0.69    2.37    4.46    6.25    7.16    6.95    5.74    3.91    1.93    0.13   -1.34   -2.52   -3.42   -3.89   -3.55   -1.90    1.35    5.91
+   210.0    0.00    0.70    2.40    4.50    6.30    7.22    7.01    5.79    3.94    1.94    0.12   -1.38   -2.58   -3.49   -3.97   -3.65   -2.03    1.20    5.81
+   215.0    0.00    0.72    2.43    4.55    6.36    7.28    7.07    5.84    3.98    1.96    0.12   -1.40   -2.61   -3.53   -4.03   -3.72   -2.14    1.07    5.72
+   220.0    0.00    0.73    2.46    4.58    6.40    7.33    7.12    5.89    4.03    1.99    0.13   -1.41   -2.64   -3.57   -4.07   -3.78   -2.22    0.96    5.64
+   225.0    0.00    0.74    2.48    4.61    6.44    7.37    7.17    5.94    4.08    2.03    0.15   -1.41   -2.65   -3.59   -4.09   -3.81   -2.27    0.88    5.56
+   230.0    0.00    0.75    2.50    4.64    6.46    7.40    7.21    5.98    4.12    2.07    0.18   -1.39   -2.65   -3.59   -4.10   -3.82   -2.30    0.82    5.47
+   235.0    0.00    0.76    2.51    4.65    6.48    7.42    7.23    6.02    4.16    2.12    0.22   -1.37   -2.64   -3.59   -4.09   -3.81   -2.29    0.79    5.39
+   240.0    0.00    0.77    2.52    4.66    6.49    7.43    7.24    6.04    4.20    2.16    0.26   -1.34   -2.62   -3.58   -4.07   -3.78   -2.27    0.77    5.31
+   245.0    0.00    0.77    2.53    4.67    6.49    7.43    7.25    6.06    4.23    2.20    0.30   -1.31   -2.59   -3.55   -4.03   -3.72   -2.22    0.79    5.24
+   250.0    0.00    0.78    2.53    4.66    6.48    7.41    7.24    6.06    4.25    2.23    0.34   -1.27   -2.56   -3.51   -3.98   -3.66   -2.15    0.82    5.20
+   255.0    0.00    0.78    2.53    4.65    6.46    7.39    7.22    6.05    4.26    2.26    0.38   -1.22   -2.51   -3.45   -3.91   -3.57   -2.06    0.88    5.19
+   260.0    0.00    0.78    2.52    4.64    6.43    7.36    7.19    6.04    4.26    2.28    0.42   -1.17   -2.45   -3.38   -3.83   -3.48   -1.96    0.96    5.23
+   265.0    0.00    0.78    2.51    4.62    6.41    7.33    7.16    6.02    4.26    2.30    0.46   -1.11   -2.37   -3.29   -3.73   -3.37   -1.85    1.07    5.32
+   270.0    0.00    0.78    2.50    4.60    6.38    7.30    7.13    6.00    4.25    2.32    0.50   -1.04   -2.28   -3.19   -3.61   -3.25   -1.73    1.21    5.46
+   275.0    0.00    0.77    2.49    4.58    6.35    7.26    7.10    5.98    4.25    2.33    0.55   -0.96   -2.17   -3.06   -3.48   -3.12   -1.60    1.36    5.65
+   280.0    0.00    0.77    2.48    4.55    6.31    7.23    7.07    5.95    4.24    2.35    0.60   -0.87   -2.05   -2.92   -3.34   -2.99   -1.46    1.53    5.89
+   285.0    0.00    0.76    2.46    4.53    6.28    7.20    7.04    5.93    4.24    2.37    0.66   -0.77   -1.92   -2.78   -3.20   -2.85   -1.31    1.72    6.15
+   290.0    0.00    0.75    2.45    4.50    6.25    7.17    7.01    5.91    4.23    2.40    0.72   -0.67   -1.79   -2.63   -3.05   -2.71   -1.16    1.91    6.42
+   295.0    0.00    0.75    2.43    4.48    6.23    7.14    6.99    5.90    4.23    2.42    0.78   -0.58   -1.66   -2.48   -2.90   -2.57   -1.01    2.11    6.69
+   300.0    0.00    0.74    2.41    4.46    6.20    7.12    6.97    5.89    4.24    2.45    0.83   -0.48   -1.53   -2.34   -2.76   -2.44   -0.87    2.30    6.94
+   305.0    0.00    0.73    2.39    4.43    6.18    7.10    6.96    5.88    4.24    2.47    0.88   -0.40   -1.43   -2.22   -2.65   -2.32   -0.74    2.47    7.16
+   310.0    0.00    0.72    2.37    4.41    6.16    7.08    6.95    5.88    4.25    2.49    0.93   -0.34   -1.35   -2.13   -2.55   -2.23   -0.62    2.63    7.33
+   315.0    0.00    0.71    2.36    4.39    6.14    7.06    6.94    5.87    4.25    2.50    0.95   -0.30   -1.29   -2.07   -2.49   -2.16   -0.53    2.75    7.45
+   320.0    0.00    0.70    2.34    4.37    6.12    7.05    6.92    5.86    4.25    2.51    0.96   -0.28   -1.27   -2.05   -2.47   -2.12   -0.47    2.83    7.51
+   325.0    0.00    0.69    2.32    4.35    6.10    7.04    6.91    5.85    4.24    2.50    0.95   -0.29   -1.28   -2.06   -2.48   -2.12   -0.45    2.87    7.52
+   330.0    0.00    0.68    2.30    4.33    6.09    7.02    6.90    5.84    4.22    2.47    0.93   -0.32   -1.32   -2.11   -2.53   -2.16   -0.47    2.85    7.47
+   335.0    0.00    0.66    2.29    4.32    6.07    7.01    6.89    5.82    4.19    2.44    0.88   -0.38   -1.39   -2.19   -2.61   -2.24   -0.54    2.79    7.37
+   340.0    0.00    0.65    2.27    4.30    6.06    7.00    6.87    5.80    4.16    2.39    0.82   -0.46   -1.48   -2.29   -2.72   -2.36   -0.66    2.66    7.23
+   345.0    0.00    0.64    2.26    4.29    6.05    6.99    6.86    5.77    4.12    2.33    0.74   -0.55   -1.59   -2.41   -2.85   -2.50   -0.82    2.49    7.05
+   350.0    0.00    0.63    2.24    4.27    6.04    6.99    6.85    5.75    4.08    2.27    0.66   -0.65   -1.70   -2.54   -3.00   -2.67   -1.02    2.27    6.84
+   355.0    0.00    0.62    2.23    4.26    6.04    6.98    6.84    5.73    4.04    2.21    0.57   -0.75   -1.82   -2.67   -3.15   -2.85   -1.24    2.01    6.60
+   360.0    0.00    0.61    2.21    4.26    6.04    6.99    6.85    5.72    4.01    2.15    0.49   -0.86   -1.93   -2.79   -3.29   -3.04   -1.48    1.73    6.35
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.14     -0.05     62.32                              NORTH / EAST / UP   
+   NOAZI    0.00    0.00   -0.01   -0.09   -0.30   -0.68   -1.21   -1.82   -2.39   -2.79   -2.94   -2.83   -2.55   -2.14   -1.60   -0.69    0.96    3.79    7.98
+     0.0    0.00    0.07    0.09    0.03   -0.17   -0.55   -1.10   -1.75   -2.34   -2.72   -2.79   -2.54   -2.09   -1.55   -0.92    0.00    1.70    4.76    9.54
+     5.0    0.00    0.06    0.08    0.01   -0.21   -0.62   -1.18   -1.83   -2.43   -2.82   -2.91   -2.69   -2.25   -1.70   -1.07   -0.13    1.56    4.57    9.28
+    10.0    0.00    0.06    0.07   -0.02   -0.26   -0.68   -1.26   -1.92   -2.52   -2.93   -3.04   -2.85   -2.43   -1.88   -1.22   -0.27    1.41    4.35    8.98
+    15.0    0.00    0.06    0.06   -0.05   -0.30   -0.74   -1.33   -2.00   -2.62   -3.04   -3.18   -3.01   -2.61   -2.06   -1.38   -0.41    1.25    4.12    8.65
+    20.0    0.00    0.06    0.05   -0.07   -0.34   -0.79   -1.40   -2.08   -2.71   -3.16   -3.32   -3.18   -2.79   -2.24   -1.54   -0.55    1.08    3.88    8.31
+    25.0    0.00    0.06    0.04   -0.08   -0.37   -0.84   -1.46   -2.16   -2.80   -3.26   -3.45   -3.33   -2.96   -2.40   -1.69   -0.69    0.92    3.65    7.99
+    30.0    0.00    0.05    0.04   -0.10   -0.40   -0.88   -1.51   -2.22   -2.88   -3.36   -3.57   -3.47   -3.10   -2.54   -1.82   -0.82    0.77    3.44    7.71
+    35.0    0.00    0.05    0.03   -0.11   -0.41   -0.91   -1.55   -2.27   -2.95   -3.44   -3.67   -3.58   -3.23   -2.67   -1.94   -0.94    0.63    3.26    7.47
+    40.0    0.00    0.05    0.03   -0.11   -0.42   -0.92   -1.58   -2.31   -3.00   -3.51   -3.74   -3.67   -3.32   -2.77   -2.04   -1.05    0.51    3.11    7.29
+    45.0    0.00    0.05    0.03   -0.11   -0.42   -0.93   -1.60   -2.34   -3.03   -3.55   -3.79   -3.73   -3.39   -2.85   -2.14   -1.14    0.42    3.01    7.17
+    50.0    0.00    0.05    0.03   -0.11   -0.42   -0.93   -1.60   -2.35   -3.04   -3.56   -3.81   -3.75   -3.43   -2.91   -2.21   -1.23    0.34    2.95    7.11
+    55.0    0.00    0.04    0.03   -0.10   -0.40   -0.91   -1.58   -2.33   -3.03   -3.55   -3.80   -3.75   -3.45   -2.95   -2.28   -1.30    0.28    2.93    7.10
+    60.0    0.00    0.04    0.04   -0.08   -0.38   -0.88   -1.56   -2.30   -3.00   -3.51   -3.76   -3.72   -3.44   -2.98   -2.34   -1.37    0.25    2.94    7.12
+    65.0    0.00    0.04    0.04   -0.07   -0.36   -0.85   -1.51   -2.26   -2.95   -3.45   -3.70   -3.67   -3.42   -3.00   -2.39   -1.41    0.24    2.99    7.17
+    70.0    0.00    0.04    0.05   -0.05   -0.33   -0.81   -1.46   -2.19   -2.87   -3.37   -3.62   -3.61   -3.39   -3.01   -2.42   -1.45    0.25    3.07    7.22
+    75.0    0.00    0.04    0.05   -0.04   -0.29   -0.76   -1.40   -2.12   -2.78   -3.28   -3.52   -3.53   -3.35   -3.01   -2.45   -1.47    0.29    3.16    7.27
+    80.0    0.00    0.04    0.05   -0.02   -0.26   -0.71   -1.33   -2.03   -2.68   -3.17   -3.42   -3.44   -3.29   -2.99   -2.46   -1.46    0.35    3.26    7.31
+    85.0    0.00    0.03    0.06    0.00   -0.23   -0.65   -1.25   -1.94   -2.57   -3.05   -3.31   -3.35   -3.23   -2.97   -2.45   -1.44    0.42    3.37    7.34
+    90.0    0.00    0.03    0.06    0.01   -0.20   -0.60   -1.18   -1.84   -2.46   -2.93   -3.19   -3.26   -3.17   -2.93   -2.42   -1.38    0.52    3.49    7.37
+    95.0    0.00    0.03    0.06    0.02   -0.17   -0.55   -1.11   -1.75   -2.36   -2.82   -3.08   -3.16   -3.09   -2.87   -2.36   -1.31    0.63    3.62    7.40
+   100.0    0.00    0.02    0.05    0.02   -0.15   -0.51   -1.04   -1.66   -2.25   -2.71   -2.98   -3.06   -3.00   -2.79   -2.28   -1.20    0.76    3.75    7.45
+   105.0    0.00    0.02    0.05    0.02   -0.13   -0.48   -0.98   -1.58   -2.16   -2.61   -2.87   -2.96   -2.91   -2.68   -2.16   -1.06    0.91    3.90    7.53
+   110.0    0.00    0.01    0.04    0.02   -0.13   -0.45   -0.93   -1.51   -2.07   -2.51   -2.77   -2.86   -2.79   -2.55   -2.01   -0.90    1.08    4.05    7.64
+   115.0    0.00    0.00    0.03    0.01   -0.13   -0.43   -0.90   -1.45   -2.00   -2.43   -2.68   -2.75   -2.67   -2.40   -1.84   -0.71    1.26    4.22    7.81
+   120.0    0.00    0.00    0.02    0.00   -0.14   -0.43   -0.87   -1.41   -1.94   -2.35   -2.59   -2.64   -2.53   -2.23   -1.63   -0.51    1.45    4.39    8.01
+   125.0    0.00   -0.01    0.00   -0.02   -0.15   -0.44   -0.86   -1.38   -1.89   -2.29   -2.51   -2.53   -2.38   -2.04   -1.42   -0.29    1.65    4.58    8.25
+   130.0    0.00   -0.02   -0.01   -0.05   -0.18   -0.45   -0.86   -1.36   -1.85   -2.23   -2.43   -2.42   -2.22   -1.84   -1.19   -0.06    1.85    4.76    8.50
+   135.0    0.00   -0.03   -0.03   -0.08   -0.21   -0.48   -0.88   -1.36   -1.83   -2.19   -2.36   -2.31   -2.07   -1.64   -0.97    0.16    2.04    4.93    8.76
+   140.0    0.00   -0.03   -0.05   -0.11   -0.25   -0.52   -0.90   -1.37   -1.82   -2.16   -2.30   -2.22   -1.93   -1.45   -0.75    0.36    2.21    5.08    8.99
+   145.0    0.00   -0.04   -0.07   -0.14   -0.30   -0.56   -0.94   -1.39   -1.82   -2.14   -2.25   -2.13   -1.80   -1.29   -0.56    0.54    2.35    5.19    9.17
+   150.0    0.00   -0.05   -0.10   -0.18   -0.34   -0.62   -0.99   -1.43   -1.84   -2.13   -2.22   -2.07   -1.70   -1.15   -0.41    0.68    2.45    5.26    9.29
+   155.0    0.00   -0.06   -0.12   -0.22   -0.40   -0.67   -1.05   -1.48   -1.88   -2.15   -2.21   -2.03   -1.63   -1.05   -0.30    0.78    2.50    5.28    9.33
+   160.0    0.00   -0.07   -0.14   -0.26   -0.45   -0.74   -1.12   -1.54   -1.93   -2.19   -2.23   -2.02   -1.59   -1.00   -0.25    0.82    2.50    5.24    9.29
+   165.0    0.00   -0.07   -0.16   -0.29   -0.50   -0.81   -1.20   -1.62   -2.01   -2.25   -2.27   -2.05   -1.60   -1.00   -0.25    0.79    2.45    5.14    9.17
+   170.0    0.00   -0.08   -0.18   -0.33   -0.56   -0.88   -1.28   -1.72   -2.10   -2.34   -2.35   -2.11   -1.65   -1.05   -0.31    0.71    2.33    4.98    8.99
+   175.0    0.00   -0.08   -0.19   -0.36   -0.61   -0.95   -1.37   -1.82   -2.21   -2.44   -2.45   -2.20   -1.74   -1.15   -0.42    0.57    2.16    4.78    8.75
+   180.0    0.00   -0.09   -0.21   -0.39   -0.65   -1.02   -1.46   -1.93   -2.33   -2.57   -2.57   -2.32   -1.87   -1.29   -0.59    0.38    1.95    4.54    8.48
+   185.0    0.00   -0.09   -0.22   -0.41   -0.69   -1.08   -1.55   -2.05   -2.47   -2.71   -2.71   -2.46   -2.02   -1.46   -0.79    0.15    1.70    4.28    8.20
+   190.0    0.00   -0.09   -0.23   -0.43   -0.73   -1.14   -1.64   -2.16   -2.60   -2.86   -2.87   -2.62   -2.19   -1.66   -1.02   -0.10    1.43    4.01    7.92
+   195.0    0.00   -0.10   -0.23   -0.44   -0.75   -1.18   -1.71   -2.27   -2.73   -3.01   -3.02   -2.79   -2.37   -1.87   -1.26   -0.37    1.15    3.74    7.66
+   200.0    0.00   -0.10   -0.23   -0.45   -0.77   -1.22   -1.78   -2.36   -2.86   -3.15   -3.17   -2.94   -2.55   -2.07   -1.50   -0.64    0.88    3.48    7.42
+   205.0    0.00   -0.09   -0.23   -0.44   -0.77   -1.24   -1.82   -2.44   -2.96   -3.27   -3.31   -3.09   -2.71   -2.26   -1.72   -0.89    0.62    3.24    7.22
+   210.0    0.00   -0.09   -0.23   -0.44   -0.77   -1.25   -1.85   -2.49   -3.04   -3.37   -3.42   -3.21   -2.85   -2.42   -1.91   -1.11    0.39    3.03    7.04
+   215.0    0.00   -0.09   -0.22   -0.42   -0.76   -1.24   -1.86   -2.52   -3.09   -3.44   -3.50   -3.30   -2.96   -2.56   -2.07   -1.29    0.20    2.84    6.88
+   220.0    0.00   -0.08   -0.20   -0.40   -0.73   -1.22   -1.85   -2.53   -3.11   -3.47   -3.54   -3.36   -3.04   -2.65   -2.20   -1.43    0.04    2.69    6.75
+   225.0    0.00   -0.08   -0.19   -0.38   -0.70   -1.19   -1.82   -2.50   -3.10   -3.47   -3.56   -3.39   -3.08   -2.72   -2.28   -1.54   -0.08    2.56    6.62
+   230.0    0.00   -0.07   -0.17   -0.35   -0.66   -1.14   -1.77   -2.45   -3.05   -3.44   -3.53   -3.38   -3.09   -2.75   -2.33   -1.61   -0.17    2.46    6.51
+   235.0    0.00   -0.06   -0.15   -0.31   -0.61   -1.08   -1.70   -2.38   -2.98   -3.37   -3.48   -3.35   -3.07   -2.75   -2.36   -1.65   -0.23    2.38    6.41
+   240.0    0.00   -0.05   -0.13   -0.27   -0.55   -1.01   -1.62   -2.30   -2.89   -3.28   -3.41   -3.29   -3.03   -2.74   -2.36   -1.68   -0.27    2.31    6.32
+   245.0    0.00   -0.05   -0.10   -0.23   -0.49   -0.93   -1.53   -2.19   -2.79   -3.18   -3.31   -3.21   -2.98   -2.71   -2.35   -1.68   -0.29    2.27    6.26
+   250.0    0.00   -0.04   -0.08   -0.19   -0.43   -0.85   -1.43   -2.08   -2.67   -3.06   -3.21   -3.13   -2.92   -2.67   -2.34   -1.68   -0.30    2.25    6.22
+   255.0    0.00   -0.03   -0.05   -0.14   -0.37   -0.77   -1.33   -1.97   -2.55   -2.94   -3.10   -3.04   -2.86   -2.64   -2.32   -1.68   -0.30    2.25    6.23
+   260.0    0.00   -0.02   -0.03   -0.10   -0.31   -0.69   -1.23   -1.86   -2.43   -2.82   -2.99   -2.96   -2.80   -2.60   -2.31   -1.67   -0.29    2.28    6.28
+   265.0    0.00   -0.01    0.00   -0.06   -0.24   -0.61   -1.14   -1.75   -2.31   -2.71   -2.89   -2.88   -2.75   -2.58   -2.29   -1.66   -0.26    2.35    6.38
+   270.0    0.00    0.00    0.02   -0.02   -0.18   -0.53   -1.05   -1.64   -2.21   -2.61   -2.81   -2.81   -2.70   -2.55   -2.28   -1.64   -0.22    2.44    6.54
+   275.0    0.00    0.01    0.04    0.02   -0.13   -0.46   -0.96   -1.55   -2.11   -2.53   -2.73   -2.75   -2.66   -2.51   -2.25   -1.60   -0.15    2.57    6.75
+   280.0    0.00    0.02    0.07    0.06   -0.07   -0.39   -0.88   -1.47   -2.04   -2.46   -2.67   -2.70   -2.61   -2.47   -2.21   -1.55   -0.05    2.74    7.01
+   285.0    0.00    0.03    0.09    0.10   -0.02   -0.33   -0.81   -1.40   -1.97   -2.40   -2.62   -2.65   -2.57   -2.42   -2.14   -1.46    0.07    2.93    7.30
+   290.0    0.00    0.04    0.10    0.13    0.02   -0.27   -0.75   -1.34   -1.92   -2.36   -2.58   -2.61   -2.51   -2.35   -2.05   -1.35    0.23    3.16    7.62
+   295.0    0.00    0.05    0.12    0.15    0.06   -0.23   -0.71   -1.30   -1.88   -2.33   -2.55   -2.56   -2.44   -2.25   -1.94   -1.21    0.41    3.41    7.96
+   300.0    0.00    0.05    0.13    0.17    0.08   -0.19   -0.67   -1.27   -1.86   -2.30   -2.52   -2.51   -2.36   -2.14   -1.79   -1.04    0.62    3.67    8.29
+   305.0    0.00    0.06    0.14    0.19    0.11   -0.17   -0.64   -1.25   -1.85   -2.29   -2.49   -2.45   -2.26   -2.00   -1.63   -0.85    0.84    3.94    8.62
+   310.0    0.00    0.06    0.15    0.20    0.12   -0.15   -0.63   -1.24   -1.84   -2.29   -2.47   -2.40   -2.16   -1.86   -1.44   -0.64    1.06    4.19    8.93
+   315.0    0.00    0.07    0.16    0.20    0.12   -0.15   -0.63   -1.25   -1.85   -2.29   -2.45   -2.34   -2.06   -1.71   -1.26   -0.44    1.28    4.43    9.21
+   320.0    0.00    0.07    0.16    0.20    0.12   -0.16   -0.64   -1.26   -1.87   -2.30   -2.43   -2.28   -1.95   -1.56   -1.08   -0.24    1.48    4.65    9.46
+   325.0    0.00    0.07    0.16    0.19    0.10   -0.18   -0.67   -1.29   -1.90   -2.31   -2.42   -2.24   -1.86   -1.43   -0.92   -0.08    1.65    4.83    9.67
+   330.0    0.00    0.07    0.15    0.18    0.08   -0.21   -0.71   -1.33   -1.93   -2.34   -2.43   -2.21   -1.80   -1.33   -0.80    0.06    1.79    4.97    9.83
+   335.0    0.00    0.07    0.15    0.16    0.05   -0.25   -0.75   -1.38   -1.98   -2.37   -2.44   -2.19   -1.75   -1.26   -0.71    0.16    1.88    5.06    9.94
+   340.0    0.00    0.07    0.14    0.14    0.02   -0.30   -0.81   -1.44   -2.03   -2.42   -2.47   -2.21   -1.75   -1.23   -0.67    0.21    1.93    5.10    9.99
+   345.0    0.00    0.07    0.13    0.12   -0.02   -0.36   -0.88   -1.51   -2.10   -2.47   -2.52   -2.25   -1.78   -1.25   -0.67    0.21    1.93    5.09    9.98
+   350.0    0.00    0.07    0.12    0.09   -0.07   -0.42   -0.95   -1.58   -2.17   -2.54   -2.59   -2.32   -1.85   -1.31   -0.72    0.18    1.89    5.03    9.90
+   355.0    0.00    0.07    0.11    0.06   -0.12   -0.48   -1.03   -1.66   -2.25   -2.62   -2.68   -2.42   -1.95   -1.41   -0.80    0.10    1.81    4.92    9.75
+   360.0    0.00    0.07    0.09    0.03   -0.17   -0.55   -1.10   -1.75   -2.34   -2.72   -2.79   -2.54   -2.09   -1.55   -0.92    0.00    1.70    4.76    9.54
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TRM33429.00-GP  NONE                                        TYPE / SERIAL NO    
+FIELD               NGS/TUM                  4    10-AUG-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.50     -0.86     61.74                              NORTH / EAST / UP   
+   NOAZI    0.00    0.46    0.88    1.03    0.92    0.61    0.35    0.01   -0.17   -0.20   -0.14    0.14    0.53    1.06    1.90    3.07    4.79
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.70     -1.52     71.46                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.23   -0.42   -0.50   -0.62   -0.72   -0.83   -0.91   -1.15   -1.23   -1.15   -0.93   -0.58   -0.25    0.17    0.39    0.86
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TRM33429.20+GP  NONE                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               4    22-APR-03 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+      0.11     -0.79     72.86                              NORTH / EAST / UP   
+   NOAZI    0.00    0.60    2.22    4.32    6.26    7.44    7.51    6.50    4.72    2.65    0.71   -0.85   -2.00   -2.84   -3.36   -3.29   -2.04    1.04    6.27
+     0.0    0.00    0.63    2.24    4.29    6.15    7.24    7.27    6.29    4.61    2.69    0.89   -0.63   -1.88   -2.94   -3.68   -3.70   -2.31    1.12    6.64
+     5.0    0.00    0.63    2.25    4.32    6.19    7.28    7.29    6.27    4.56    2.61    0.80   -0.71   -1.95   -3.00   -3.78   -3.85   -2.52    0.85    6.39
+    10.0    0.00    0.64    2.26    4.35    6.24    7.33    7.32    6.27    4.52    2.55    0.73   -0.77   -2.00   -3.05   -3.85   -3.98   -2.74    0.55    6.09
+    15.0    0.00    0.64    2.28    4.39    6.29    7.38    7.36    6.28    4.50    2.49    0.66   -0.83   -2.04   -3.08   -3.89   -4.09   -2.95    0.25    5.77
+    20.0    0.00    0.64    2.29    4.42    6.34    7.44    7.41    6.30    4.48    2.45    0.60   -0.89   -2.08   -3.10   -3.92   -4.16   -3.12   -0.03    5.44
+    25.0    0.00    0.64    2.30    4.45    6.38    7.49    7.46    6.33    4.49    2.42    0.56   -0.93   -2.11   -3.11   -3.93   -4.21   -3.25   -0.28    5.12
+    30.0    0.00    0.64    2.31    4.48    6.43    7.55    7.52    6.38    4.51    2.41    0.52   -0.98   -2.14   -3.12   -3.93   -4.22   -3.33   -0.47    4.83
+    35.0    0.00    0.64    2.32    4.50    6.46    7.60    7.57    6.43    4.54    2.42    0.51   -1.01   -2.17   -3.13   -3.91   -4.21   -3.36   -0.59    4.59
+    40.0    0.00    0.64    2.32    4.51    6.49    7.64    7.63    6.49    4.59    2.45    0.50   -1.03   -2.20   -3.14   -3.89   -4.16   -3.33   -0.64    4.42
+    45.0    0.00    0.63    2.32    4.52    6.51    7.68    7.67    6.54    4.64    2.49    0.52   -1.04   -2.22   -3.15   -3.87   -4.10   -3.26   -0.61    4.34
+    50.0    0.00    0.63    2.32    4.52    6.52    7.70    7.71    6.59    4.70    2.54    0.55   -1.04   -2.23   -3.16   -3.84   -4.03   -3.15   -0.51    4.35
+    55.0    0.00    0.63    2.32    4.52    6.52    7.71    7.74    6.64    4.76    2.59    0.59   -1.02   -2.23   -3.15   -3.81   -3.94   -3.01   -0.35    4.46
+    60.0    0.00    0.62    2.31    4.50    6.51    7.71    7.75    6.67    4.81    2.65    0.64   -0.99   -2.21   -3.14   -3.76   -3.85   -2.86   -0.15    4.67
+    65.0    0.00    0.62    2.29    4.48    6.49    7.69    7.75    6.69    4.84    2.70    0.69   -0.94   -2.18   -3.10   -3.71   -3.75   -2.69    0.09    4.94
+    70.0    0.00    0.61    2.28    4.46    6.46    7.66    7.73    6.69    4.86    2.74    0.74   -0.89   -2.13   -3.05   -3.65   -3.65   -2.53    0.34    5.27
+    75.0    0.00    0.60    2.26    4.43    6.42    7.62    7.70    6.67    4.86    2.76    0.78   -0.84   -2.06   -2.98   -3.57   -3.55   -2.37    0.59    5.63
+    80.0    0.00    0.59    2.24    4.40    6.38    7.58    7.66    6.64    4.84    2.76    0.80   -0.79   -1.99   -2.90   -3.47   -3.44   -2.22    0.83    5.98
+    85.0    0.00    0.59    2.22    4.36    6.33    7.53    7.61    6.59    4.81    2.74    0.81   -0.74   -1.92   -2.80   -3.37   -3.33   -2.08    1.04    6.30
+    90.0    0.00    0.58    2.19    4.32    6.29    7.48    7.55    6.54    4.76    2.71    0.81   -0.71   -1.85   -2.70   -3.26   -3.22   -1.97    1.21    6.57
+    95.0    0.00    0.57    2.17    4.29    6.24    7.43    7.50    6.49    4.71    2.67    0.79   -0.69   -1.78   -2.60   -3.15   -3.12   -1.86    1.34    6.77
+   100.0    0.00    0.56    2.15    4.25    6.20    7.38    7.46    6.44    4.66    2.63    0.77   -0.67   -1.72   -2.51   -3.04   -3.02   -1.77    1.44    6.90
+   105.0    0.00    0.55    2.13    4.22    6.16    7.34    7.42    6.40    4.63    2.59    0.75   -0.66   -1.67   -2.42   -2.94   -2.92   -1.69    1.50    6.95
+   110.0    0.00    0.55    2.11    4.19    6.12    7.31    7.39    6.38    4.60    2.57    0.74   -0.65   -1.63   -2.35   -2.86   -2.84   -1.62    1.55    6.96
+   115.0    0.00    0.54    2.09    4.16    6.09    7.28    7.38    6.37    4.60    2.57    0.74   -0.64   -1.60   -2.30   -2.78   -2.76   -1.55    1.60    6.94
+   120.0    0.00    0.53    2.07    4.13    6.07    7.27    7.37    6.38    4.62    2.59    0.76   -0.62   -1.57   -2.26   -2.72   -2.69   -1.48    1.64    6.91
+   125.0    0.00    0.53    2.06    4.11    6.04    7.25    7.37    6.40    4.65    2.62    0.79   -0.59   -1.54   -2.22   -2.68   -2.62   -1.41    1.70    6.91
+   130.0    0.00    0.52    2.04    4.09    6.02    7.24    7.38    6.42    4.69    2.67    0.84   -0.56   -1.52   -2.21   -2.65   -2.57   -1.33    1.79    6.94
+   135.0    0.00    0.52    2.03    4.07    6.01    7.23    7.38    6.44    4.73    2.72    0.89   -0.52   -1.50   -2.20   -2.63   -2.52   -1.24    1.89    7.03
+   140.0    0.00    0.52    2.03    4.06    5.99    7.22    7.38    6.46    4.76    2.77    0.93   -0.49   -1.50   -2.20   -2.62   -2.48   -1.16    2.01    7.16
+   145.0    0.00    0.52    2.02    4.05    5.97    7.20    7.37    6.46    4.78    2.80    0.96   -0.48   -1.50   -2.21   -2.63   -2.45   -1.08    2.13    7.32
+   150.0    0.00    0.52    2.02    4.05    5.96    7.18    7.35    6.45    4.78    2.80    0.96   -0.49   -1.52   -2.24   -2.64   -2.43   -1.02    2.23    7.49
+   155.0    0.00    0.52    2.02    4.04    5.95    7.16    7.32    6.42    4.75    2.78    0.94   -0.52   -1.57   -2.28   -2.67   -2.43   -0.99    2.30    7.64
+   160.0    0.00    0.52    2.03    4.05    5.94    7.14    7.29    6.38    4.70    2.72    0.88   -0.59   -1.64   -2.35   -2.71   -2.46   -0.99    2.32    7.73
+   165.0    0.00    0.52    2.03    4.05    5.94    7.12    7.25    6.32    4.63    2.64    0.78   -0.69   -1.73   -2.43   -2.78   -2.51   -1.05    2.26    7.74
+   170.0    0.00    0.53    2.05    4.07    5.95    7.11    7.22    6.26    4.55    2.54    0.67   -0.81   -1.85   -2.54   -2.86   -2.59   -1.15    2.12    7.64
+   175.0    0.00    0.53    2.06    4.08    5.96    7.11    7.19    6.21    4.47    2.43    0.54   -0.95   -1.99   -2.66   -2.97   -2.71   -1.32    1.90    7.42
+   180.0    0.00    0.54    2.08    4.11    5.98    7.11    7.17    6.16    4.39    2.32    0.41   -1.10   -2.13   -2.79   -3.10   -2.86   -1.53    1.60    7.10
+   185.0    0.00    0.55    2.10    4.14    6.01    7.14    7.18    6.14    4.33    2.23    0.29   -1.23   -2.27   -2.93   -3.24   -3.03   -1.79    1.24    6.69
+   190.0    0.00    0.56    2.12    4.17    6.05    7.17    7.20    6.14    4.30    2.17    0.19   -1.35   -2.40   -3.06   -3.39   -3.23   -2.07    0.84    6.23
+   195.0    0.00    0.57    2.15    4.21    6.10    7.22    7.24    6.16    4.30    2.14    0.13   -1.44   -2.51   -3.19   -3.55   -3.43   -2.35    0.46    5.75
+   200.0    0.00    0.58    2.17    4.26    6.16    7.29    7.30    6.21    4.33    2.15    0.11   -1.49   -2.60   -3.30   -3.69   -3.62   -2.61    0.11    5.32
+   205.0    0.00    0.59    2.20    4.30    6.22    7.36    7.38    6.28    4.39    2.19    0.12   -1.51   -2.65   -3.39   -3.82   -3.78   -2.82   -0.17    4.96
+   210.0    0.00    0.60    2.22    4.35    6.28    7.44    7.46    6.37    4.47    2.25    0.17   -1.49   -2.67   -3.46   -3.92   -3.91   -2.96   -0.34    4.72
+   215.0    0.00    0.61    2.25    4.39    6.35    7.51    7.55    6.46    4.56    2.34    0.24   -1.45   -2.67   -3.50   -3.98   -3.98   -3.02   -0.38    4.61
+   220.0    0.00    0.62    2.27    4.44    6.41    7.59    7.63    6.55    4.66    2.43    0.31   -1.40   -2.65   -3.51   -4.02   -4.00   -2.98   -0.30    4.65
+   225.0    0.00    0.62    2.30    4.47    6.47    7.66    7.71    6.63    4.74    2.51    0.39   -1.35   -2.63   -3.51   -4.02   -3.96   -2.86   -0.09    4.82
+   230.0    0.00    0.63    2.32    4.51    6.51    7.72    7.78    6.70    4.81    2.57    0.45   -1.30   -2.60   -3.50   -3.99   -3.86   -2.65    0.21    5.11
+   235.0    0.00    0.64    2.33    4.54    6.55    7.76    7.83    6.75    4.86    2.62    0.48   -1.28   -2.59   -3.48   -3.94   -3.73   -2.39    0.59    5.46
+   240.0    0.00    0.64    2.35    4.56    6.58    7.80    7.86    6.78    4.88    2.64    0.50   -1.27   -2.58   -3.46   -3.87   -3.57   -2.10    1.00    5.85
+   245.0    0.00    0.65    2.36    4.57    6.60    7.82    7.88    6.79    4.88    2.63    0.48   -1.28   -2.58   -3.44   -3.79   -3.39   -1.80    1.40    6.23
+   250.0    0.00    0.65    2.36    4.58    6.61    7.83    7.88    6.79    4.87    2.61    0.46   -1.30   -2.59   -3.42   -3.71   -3.23   -1.53    1.75    6.57
+   255.0    0.00    0.66    2.36    4.58    6.61    7.82    7.88    6.78    4.85    2.58    0.43   -1.33   -2.60   -3.39   -3.63   -3.08   -1.32    2.02    6.82
+   260.0    0.00    0.66    2.36    4.57    6.60    7.81    7.86    6.76    4.83    2.56    0.40   -1.35   -2.59   -3.35   -3.56   -2.97   -1.17    2.19    6.99
+   265.0    0.00    0.66    2.36    4.56    6.58    7.79    7.84    6.75    4.81    2.54    0.39   -1.34   -2.57   -3.30   -3.49   -2.90   -1.11    2.24    7.05
+   270.0    0.00    0.66    2.35    4.54    6.55    7.76    7.82    6.73    4.81    2.54    0.41   -1.31   -2.51   -3.22   -3.42   -2.87   -1.13    2.19    7.04
+   275.0    0.00    0.66    2.34    4.52    6.52    7.73    7.80    6.73    4.82    2.57    0.45   -1.24   -2.42   -3.13   -3.35   -2.86   -1.21    2.05    6.95
+   280.0    0.00    0.65    2.32    4.49    6.48    7.69    7.78    6.73    4.85    2.63    0.53   -1.13   -2.30   -3.01   -3.29   -2.89   -1.35    1.85    6.83
+   285.0    0.00    0.65    2.31    4.46    6.44    7.65    7.75    6.73    4.88    2.70    0.64   -1.00   -2.15   -2.88   -3.21   -2.93   -1.51    1.62    6.69
+   290.0    0.00    0.65    2.29    4.42    6.39    7.61    7.73    6.74    4.93    2.79    0.77   -0.84   -1.97   -2.73   -3.14   -2.97   -1.68    1.39    6.57
+   295.0    0.00    0.65    2.28    4.39    6.35    7.56    7.70    6.74    4.98    2.89    0.91   -0.66   -1.80   -2.58   -3.07   -3.01   -1.83    1.20    6.48
+   300.0    0.00    0.64    2.26    4.36    6.30    7.51    7.67    6.74    5.03    2.98    1.05   -0.49   -1.62   -2.44   -2.99   -3.03   -1.94    1.06    6.44
+   305.0    0.00    0.64    2.24    4.32    6.25    7.46    7.63    6.73    5.06    3.07    1.18   -0.34   -1.47   -2.33   -2.93   -3.04   -2.00    0.99    6.45
+   310.0    0.00    0.64    2.23    4.29    6.21    7.41    7.59    6.72    5.08    3.13    1.28   -0.22   -1.36   -2.24   -2.89   -3.03   -2.02    0.99    6.52
+   315.0    0.00    0.63    2.22    4.27    6.17    7.36    7.54    6.69    5.09    3.17    1.35   -0.14   -1.28   -2.19   -2.86   -3.02   -1.99    1.05    6.62
+   320.0    0.00    0.63    2.21    4.25    6.13    7.32    7.49    6.65    5.07    3.19    1.39   -0.09   -1.25   -2.18   -2.87   -3.01   -1.93    1.16    6.74
+   325.0    0.00    0.63    2.20    4.23    6.10    7.28    7.44    6.61    5.04    3.18    1.40   -0.09   -1.26   -2.21   -2.90   -3.01   -1.87    1.30    6.87
+   330.0    0.00    0.63    2.20    4.22    6.08    7.24    7.39    6.55    5.00    3.14    1.37   -0.12   -1.32   -2.28   -2.97   -3.03   -1.81    1.43    6.98
+   335.0    0.00    0.63    2.20    4.22    6.07    7.21    7.35    6.50    4.94    3.09    1.31   -0.18   -1.40   -2.38   -3.06   -3.08   -1.77    1.53    7.06
+   340.0    0.00    0.63    2.20    4.22    6.07    7.20    7.32    6.44    4.87    3.02    1.24   -0.27   -1.50   -2.50   -3.18   -3.16   -1.78    1.59    7.09
+   345.0    0.00    0.63    2.20    4.23    6.07    7.19    7.29    6.39    4.80    2.94    1.16   -0.36   -1.60   -2.62   -3.31   -3.26   -1.84    1.58    7.07
+   350.0    0.00    0.63    2.21    4.24    6.09    7.20    7.27    6.35    4.73    2.85    1.07   -0.45   -1.71   -2.74   -3.44   -3.40   -1.95    1.49    6.99
+   355.0    0.00    0.63    2.22    4.27    6.12    7.22    7.27    6.31    4.67    2.77    0.98   -0.54   -1.80   -2.85   -3.57   -3.54   -2.11    1.34    6.84
+   360.0    0.00    0.63    2.24    4.29    6.15    7.24    7.27    6.29    4.61    2.69    0.89   -0.63   -1.88   -2.94   -3.68   -3.70   -2.31    1.12    6.64
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.14     -0.38     65.90                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.02   -0.10   -0.28   -0.61   -1.10   -1.76   -2.50   -3.18   -3.64   -3.75   -3.47   -2.87   -2.07   -1.15   -0.03    1.58    4.10    7.84
+     0.0    0.00   -0.03   -0.12   -0.30   -0.64   -1.17   -1.88   -2.68   -3.39   -3.80   -3.76   -3.24   -2.38   -1.36   -0.32    0.81    2.36    4.80    8.53
+     5.0    0.00   -0.03   -0.12   -0.30   -0.64   -1.20   -1.94   -2.77   -3.51   -3.94   -3.90   -3.38   -2.51   -1.49   -0.45    0.68    2.20    4.58    8.18
+    10.0    0.00   -0.03   -0.11   -0.30   -0.65   -1.22   -1.99   -2.86   -3.63   -4.07   -4.05   -3.54   -2.66   -1.64   -0.60    0.52    2.02    4.36    7.87
+    15.0    0.00   -0.02   -0.10   -0.29   -0.65   -1.24   -2.04   -2.93   -3.73   -4.20   -4.20   -3.70   -2.84   -1.82   -0.78    0.34    1.84    4.15    7.60
+    20.0    0.00   -0.02   -0.10   -0.28   -0.65   -1.25   -2.07   -3.00   -3.82   -4.32   -4.34   -3.87   -3.03   -2.02   -0.99    0.14    1.65    3.98    7.41
+    25.0    0.00   -0.02   -0.09   -0.27   -0.64   -1.25   -2.09   -3.04   -3.89   -4.42   -4.48   -4.04   -3.23   -2.25   -1.22   -0.08    1.46    3.83    7.28
+    30.0    0.00   -0.01   -0.08   -0.26   -0.64   -1.25   -2.10   -3.06   -3.93   -4.49   -4.59   -4.19   -3.43   -2.49   -1.47   -0.32    1.28    3.71    7.23
+    35.0    0.00   -0.01   -0.07   -0.25   -0.63   -1.25   -2.10   -3.07   -3.95   -4.54   -4.67   -4.33   -3.62   -2.72   -1.73   -0.55    1.11    3.63    7.22
+    40.0    0.00    0.00   -0.07   -0.25   -0.62   -1.24   -2.09   -3.06   -3.94   -4.54   -4.71   -4.43   -3.79   -2.94   -1.97   -0.77    0.95    3.57    7.26
+    45.0    0.00    0.00   -0.06   -0.24   -0.61   -1.23   -2.07   -3.03   -3.91   -4.52   -4.72   -4.49   -3.92   -3.13   -2.19   -0.97    0.82    3.52    7.32
+    50.0    0.00    0.00   -0.06   -0.23   -0.61   -1.22   -2.05   -2.98   -3.85   -4.47   -4.70   -4.52   -4.00   -3.27   -2.36   -1.13    0.71    3.50    7.39
+    55.0    0.00    0.00   -0.05   -0.23   -0.60   -1.20   -2.02   -2.93   -3.78   -4.39   -4.63   -4.49   -4.04   -3.36   -2.48   -1.24    0.64    3.50    7.45
+    60.0    0.00    0.01   -0.05   -0.23   -0.60   -1.19   -1.98   -2.87   -3.69   -4.29   -4.54   -4.43   -4.02   -3.39   -2.53   -1.30    0.61    3.51    7.50
+    65.0    0.00    0.01   -0.05   -0.23   -0.59   -1.17   -1.94   -2.80   -3.60   -4.17   -4.43   -4.34   -3.96   -3.36   -2.52   -1.29    0.63    3.55    7.55
+    70.0    0.00    0.01   -0.04   -0.22   -0.59   -1.16   -1.91   -2.73   -3.50   -4.05   -4.30   -4.22   -3.86   -3.27   -2.45   -1.22    0.69    3.61    7.60
+    75.0    0.00    0.01   -0.04   -0.22   -0.58   -1.14   -1.87   -2.67   -3.40   -3.94   -4.17   -4.09   -3.72   -3.14   -2.32   -1.10    0.80    3.69    7.65
+    80.0    0.00    0.01   -0.04   -0.22   -0.58   -1.13   -1.83   -2.61   -3.31   -3.83   -4.05   -3.95   -3.58   -2.98   -2.15   -0.94    0.95    3.80    7.72
+    85.0    0.00    0.02   -0.04   -0.22   -0.57   -1.11   -1.80   -2.55   -3.23   -3.73   -3.93   -3.82   -3.43   -2.81   -1.96   -0.74    1.12    3.94    7.81
+    90.0    0.00    0.02   -0.04   -0.22   -0.57   -1.09   -1.76   -2.49   -3.16   -3.64   -3.83   -3.70   -3.29   -2.64   -1.76   -0.53    1.31    4.09    7.93
+    95.0    0.00    0.02   -0.04   -0.22   -0.56   -1.07   -1.72   -2.43   -3.09   -3.56   -3.75   -3.60   -3.16   -2.47   -1.56   -0.32    1.51    4.26    8.08
+   100.0    0.00    0.02   -0.04   -0.22   -0.55   -1.04   -1.68   -2.38   -3.03   -3.50   -3.68   -3.52   -3.05   -2.32   -1.38   -0.12    1.71    4.45    8.26
+   105.0    0.00    0.02   -0.04   -0.21   -0.54   -1.02   -1.63   -2.32   -2.97   -3.44   -3.62   -3.45   -2.95   -2.19   -1.21    0.07    1.90    4.63    8.47
+   110.0    0.00    0.02   -0.04   -0.21   -0.52   -0.99   -1.59   -2.27   -2.91   -3.38   -3.56   -3.39   -2.87   -2.08   -1.07    0.24    2.08    4.82    8.70
+   115.0    0.00    0.01   -0.04   -0.21   -0.51   -0.96   -1.55   -2.21   -2.85   -3.33   -3.51   -3.33   -2.79   -1.97   -0.93    0.39    2.24    5.00    8.93
+   120.0    0.00    0.01   -0.04   -0.21   -0.50   -0.94   -1.51   -2.16   -2.79   -3.27   -3.45   -3.27   -2.71   -1.87   -0.82    0.52    2.39    5.18    9.17
+   125.0    0.00    0.01   -0.05   -0.21   -0.49   -0.92   -1.47   -2.12   -2.74   -3.21   -3.39   -3.20   -2.63   -1.78   -0.70    0.64    2.53    5.34    9.40
+   130.0    0.00    0.01   -0.05   -0.21   -0.49   -0.90   -1.45   -2.08   -2.69   -3.16   -3.33   -3.12   -2.55   -1.68   -0.60    0.76    2.66    5.50    9.60
+   135.0    0.00    0.01   -0.05   -0.21   -0.49   -0.89   -1.43   -2.05   -2.65   -3.10   -3.26   -3.04   -2.46   -1.58   -0.49    0.87    2.77    5.64    9.79
+   140.0    0.00    0.01   -0.06   -0.22   -0.49   -0.90   -1.43   -2.03   -2.62   -3.06   -3.20   -2.97   -2.37   -1.49   -0.40    0.97    2.88    5.76    9.93
+   145.0    0.00    0.00   -0.06   -0.22   -0.50   -0.91   -1.43   -2.03   -2.61   -3.03   -3.15   -2.90   -2.29   -1.41   -0.31    1.05    2.97    5.85   10.04
+   150.0    0.00    0.00   -0.07   -0.23   -0.52   -0.93   -1.45   -2.05   -2.61   -3.01   -3.11   -2.85   -2.23   -1.34   -0.25    1.12    3.04    5.91   10.09
+   155.0    0.00    0.00   -0.08   -0.25   -0.54   -0.95   -1.49   -2.08   -2.63   -3.02   -3.10   -2.83   -2.20   -1.31   -0.21    1.16    3.07    5.94   10.09
+   160.0    0.00   -0.01   -0.08   -0.26   -0.56   -0.99   -1.53   -2.13   -2.68   -3.05   -3.12   -2.83   -2.20   -1.31   -0.21    1.16    3.07    5.91   10.01
+   165.0    0.00   -0.01   -0.09   -0.28   -0.59   -1.04   -1.59   -2.19   -2.74   -3.10   -3.17   -2.88   -2.25   -1.35   -0.25    1.12    3.02    5.82    9.86
+   170.0    0.00   -0.01   -0.10   -0.30   -0.62   -1.08   -1.65   -2.27   -2.82   -3.18   -3.24   -2.95   -2.33   -1.44   -0.34    1.03    2.91    5.67    9.64
+   175.0    0.00   -0.02   -0.11   -0.31   -0.66   -1.14   -1.72   -2.35   -2.91   -3.27   -3.34   -3.06   -2.44   -1.56   -0.47    0.89    2.74    5.44    9.34
+   180.0    0.00   -0.02   -0.12   -0.33   -0.69   -1.19   -1.80   -2.44   -3.01   -3.39   -3.46   -3.19   -2.59   -1.72   -0.63    0.71    2.52    5.16    8.96
+   185.0    0.00   -0.02   -0.13   -0.35   -0.72   -1.24   -1.87   -2.54   -3.12   -3.51   -3.60   -3.34   -2.74   -1.89   -0.82    0.49    2.25    4.81    8.53
+   190.0    0.00   -0.03   -0.13   -0.37   -0.75   -1.29   -1.95   -2.63   -3.23   -3.64   -3.74   -3.49   -2.91   -2.07   -1.02    0.25    1.96    4.43    8.07
+   195.0    0.00   -0.03   -0.14   -0.38   -0.78   -1.34   -2.01   -2.72   -3.34   -3.76   -3.87   -3.63   -3.06   -2.24   -1.22    0.01    1.64    4.03    7.58
+   200.0    0.00   -0.03   -0.15   -0.39   -0.80   -1.38   -2.08   -2.80   -3.44   -3.87   -3.99   -3.75   -3.19   -2.39   -1.41   -0.23    1.33    3.63    7.11
+   205.0    0.00   -0.03   -0.15   -0.40   -0.82   -1.41   -2.13   -2.88   -3.53   -3.97   -4.09   -3.86   -3.30   -2.51   -1.57   -0.45    1.03    3.26    6.68
+   210.0    0.00   -0.04   -0.16   -0.41   -0.84   -1.44   -2.17   -2.94   -3.61   -4.05   -4.17   -3.93   -3.38   -2.61   -1.71   -0.65    0.77    2.93    6.31
+   215.0    0.00   -0.04   -0.16   -0.41   -0.84   -1.45   -2.20   -2.98   -3.67   -4.12   -4.23   -3.98   -3.43   -2.67   -1.81   -0.81    0.55    2.67    6.02
+   220.0    0.00   -0.04   -0.16   -0.41   -0.84   -1.46   -2.21   -3.01   -3.70   -4.15   -4.26   -4.01   -3.45   -2.71   -1.89   -0.93    0.38    2.47    5.82
+   225.0    0.00   -0.04   -0.16   -0.41   -0.83   -1.45   -2.21   -3.02   -3.72   -4.17   -4.27   -4.01   -3.45   -2.73   -1.94   -1.03    0.26    2.34    5.70
+   230.0    0.00   -0.04   -0.16   -0.40   -0.82   -1.43   -2.19   -3.00   -3.71   -4.16   -4.26   -3.99   -3.44   -2.74   -1.98   -1.10    0.18    2.28    5.66
+   235.0    0.00   -0.05   -0.16   -0.39   -0.79   -1.40   -2.16   -2.97   -3.68   -4.13   -4.23   -3.96   -3.41   -2.74   -2.01   -1.14    0.14    2.28    5.68
+   240.0    0.00   -0.05   -0.15   -0.37   -0.77   -1.35   -2.10   -2.91   -3.62   -4.08   -4.18   -3.91   -3.38   -2.73   -2.02   -1.17    0.12    2.31    5.73
+   245.0    0.00   -0.05   -0.15   -0.36   -0.73   -1.30   -2.04   -2.84   -3.55   -4.01   -4.11   -3.86   -3.35   -2.72   -2.03   -1.19    0.13    2.36    5.81
+   250.0    0.00   -0.05   -0.15   -0.34   -0.70   -1.24   -1.96   -2.75   -3.46   -3.92   -4.03   -3.79   -3.30   -2.70   -2.03   -1.19    0.15    2.42    5.88
+   255.0    0.00   -0.05   -0.14   -0.32   -0.66   -1.18   -1.87   -2.65   -3.35   -3.82   -3.95   -3.72   -3.25   -2.66   -2.02   -1.18    0.18    2.48    5.93
+   260.0    0.00   -0.05   -0.14   -0.31   -0.62   -1.11   -1.78   -2.54   -3.24   -3.71   -3.85   -3.64   -3.18   -2.61   -1.98   -1.15    0.22    2.53    5.96
+   265.0    0.00   -0.05   -0.13   -0.29   -0.58   -1.04   -1.69   -2.43   -3.13   -3.60   -3.75   -3.54   -3.10   -2.54   -1.92   -1.09    0.27    2.57    5.98
+   270.0    0.00   -0.05   -0.13   -0.27   -0.54   -0.98   -1.60   -2.32   -3.01   -3.49   -3.64   -3.44   -2.99   -2.43   -1.81   -1.01    0.34    2.62    5.99
+   275.0    0.00   -0.05   -0.13   -0.26   -0.51   -0.92   -1.52   -2.22   -2.90   -3.38   -3.53   -3.33   -2.87   -2.30   -1.68   -0.88    0.44    2.68    6.02
+   280.0    0.00   -0.05   -0.13   -0.25   -0.48   -0.87   -1.44   -2.13   -2.80   -3.28   -3.43   -3.21   -2.73   -2.14   -1.51   -0.72    0.56    2.77    6.08
+   285.0    0.00   -0.05   -0.13   -0.24   -0.46   -0.83   -1.38   -2.06   -2.72   -3.19   -3.33   -3.10   -2.59   -1.96   -1.30   -0.52    0.73    2.90    6.21
+   290.0    0.00   -0.05   -0.13   -0.24   -0.44   -0.80   -1.34   -2.00   -2.65   -3.12   -3.25   -2.99   -2.44   -1.77   -1.08   -0.30    0.93    3.08    6.42
+   295.0    0.00   -0.05   -0.13   -0.24   -0.44   -0.78   -1.31   -1.96   -2.61   -3.06   -3.17   -2.88   -2.29   -1.57   -0.86   -0.06    1.17    3.31    6.70
+   300.0    0.00   -0.05   -0.13   -0.24   -0.44   -0.78   -1.29   -1.94   -2.58   -3.03   -3.12   -2.80   -2.16   -1.39   -0.63    0.19    1.42    3.59    7.07
+   305.0    0.00   -0.05   -0.13   -0.24   -0.44   -0.78   -1.30   -1.94   -2.57   -3.01   -3.08   -2.73   -2.05   -1.24   -0.43    0.43    1.69    3.91    7.49
+   310.0    0.00   -0.05   -0.13   -0.25   -0.45   -0.80   -1.31   -1.95   -2.58   -3.01   -3.06   -2.69   -1.97   -1.11   -0.26    0.64    1.95    4.24    7.95
+   315.0    0.00   -0.05   -0.13   -0.26   -0.47   -0.82   -1.34   -1.98   -2.60   -3.02   -3.06   -2.66   -1.92   -1.02   -0.12    0.83    2.20    4.56    8.41
+   320.0    0.00   -0.05   -0.14   -0.27   -0.49   -0.85   -1.38   -2.02   -2.64   -3.05   -3.08   -2.66   -1.89   -0.96   -0.03    0.97    2.41    4.86    8.83
+   325.0    0.00   -0.05   -0.14   -0.28   -0.51   -0.89   -1.43   -2.08   -2.70   -3.10   -3.11   -2.68   -1.90   -0.94    0.03    1.08    2.57    5.10    9.18
+   330.0    0.00   -0.05   -0.14   -0.29   -0.53   -0.93   -1.48   -2.14   -2.77   -3.16   -3.16   -2.72   -1.92   -0.95    0.05    1.14    2.69    5.28    9.42
+   335.0    0.00   -0.05   -0.14   -0.29   -0.56   -0.97   -1.55   -2.22   -2.85   -3.24   -3.23   -2.77   -1.96   -0.98    0.03    1.16    2.75    5.38    9.54
+   340.0    0.00   -0.05   -0.14   -0.30   -0.58   -1.01   -1.61   -2.30   -2.94   -3.32   -3.31   -2.84   -2.02   -1.03    0.00    1.14    2.75    5.39    9.53
+   345.0    0.00   -0.04   -0.14   -0.30   -0.60   -1.05   -1.68   -2.39   -3.04   -3.42   -3.40   -2.92   -2.09   -1.09   -0.06    1.10    2.71    5.33    9.40
+   350.0    0.00   -0.04   -0.13   -0.31   -0.61   -1.09   -1.75   -2.49   -3.15   -3.54   -3.50   -3.01   -2.17   -1.17   -0.13    1.02    2.63    5.20    9.17
+   355.0    0.00   -0.04   -0.13   -0.31   -0.63   -1.13   -1.82   -2.59   -3.27   -3.66   -3.62   -3.12   -2.27   -1.25   -0.21    0.93    2.51    5.02    8.87
+   360.0    0.00   -0.03   -0.12   -0.30   -0.64   -1.17   -1.88   -2.68   -3.39   -3.80   -3.76   -3.24   -2.38   -1.36   -0.32    0.81    2.36    4.80    8.53
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TRM33429.20+GP  TCWD                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               2    15-MAY-08 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+     -0.37     -0.86     72.15                              NORTH / EAST / UP   
+   NOAZI    0.00    0.64    2.34    4.47    6.25    7.04    6.55    4.93    2.69    0.52   -1.07   -1.86   -1.99   -1.85   -1.74   -1.68   -1.25    0.23    3.34
+     0.0    0.00    0.63    2.25    4.24    5.87    6.54    6.01    4.44    2.34    0.34   -1.10   -1.80   -1.92   -1.83   -1.81   -1.84   -1.47    0.05    3.34
+     5.0    0.00    0.62    2.25    4.26    5.91    6.59    6.07    4.50    2.40    0.37   -1.11   -1.87   -2.07   -2.04   -2.07   -2.11   -1.74   -0.25    2.96
+    10.0    0.00    0.62    2.26    4.29    5.96    6.66    6.14    4.58    2.47    0.41   -1.12   -1.94   -2.21   -2.24   -2.30   -2.36   -1.99   -0.53    2.59
+    15.0    0.00    0.62    2.26    4.31    6.01    6.73    6.23    4.66    2.53    0.45   -1.12   -2.00   -2.33   -2.41   -2.51   -2.57   -2.21   -0.77    2.29
+    20.0    0.00    0.61    2.27    4.35    6.06    6.81    6.31    4.74    2.60    0.48   -1.13   -2.05   -2.42   -2.55   -2.67   -2.74   -2.37   -0.95    2.06
+    25.0    0.00    0.61    2.28    4.38    6.12    6.88    6.39    4.81    2.64    0.50   -1.14   -2.10   -2.50   -2.64   -2.77   -2.84   -2.46   -1.04    1.92
+    30.0    0.00    0.61    2.29    4.41    6.17    6.95    6.45    4.86    2.67    0.50   -1.17   -2.14   -2.55   -2.69   -2.81   -2.86   -2.47   -1.04    1.89
+    35.0    0.00    0.60    2.30    4.44    6.22    7.00    6.50    4.89    2.67    0.48   -1.20   -2.18   -2.58   -2.70   -2.80   -2.82   -2.39   -0.95    1.96
+    40.0    0.00    0.60    2.30    4.46    6.26    7.05    6.54    4.90    2.65    0.44   -1.25   -2.21   -2.59   -2.68   -2.72   -2.70   -2.24   -0.77    2.13
+    45.0    0.00    0.60    2.31    4.48    6.29    7.08    6.56    4.90    2.62    0.39   -1.30   -2.24   -2.58   -2.62   -2.61   -2.53   -2.02   -0.52    2.38
+    50.0    0.00    0.59    2.31    4.49    6.31    7.11    6.57    4.88    2.58    0.33   -1.35   -2.27   -2.56   -2.54   -2.47   -2.32   -1.75   -0.22    2.67
+    55.0    0.00    0.59    2.30    4.49    6.33    7.12    6.57    4.87    2.54    0.27   -1.41   -2.30   -2.54   -2.45   -2.31   -2.09   -1.47    0.10    2.99
+    60.0    0.00    0.58    2.30    4.49    6.33    7.13    6.57    4.85    2.50    0.23   -1.45   -2.31   -2.51   -2.36   -2.15   -1.87   -1.19    0.41    3.31
+    65.0    0.00    0.58    2.29    4.49    6.33    7.13    6.58    4.84    2.48    0.19   -1.48   -2.32   -2.48   -2.28   -2.00   -1.67   -0.95    0.68    3.59
+    70.0    0.00    0.57    2.28    4.48    6.33    7.14    6.58    4.85    2.48    0.18   -1.49   -2.32   -2.45   -2.20   -1.89   -1.51   -0.76    0.89    3.82
+    75.0    0.00    0.56    2.26    4.46    6.32    7.14    6.60    4.87    2.50    0.20   -1.48   -2.31   -2.41   -2.14   -1.80   -1.40   -0.64    1.02    3.98
+    80.0    0.00    0.55    2.25    4.44    6.30    7.14    6.63    4.92    2.55    0.24   -1.45   -2.28   -2.38   -2.09   -1.73   -1.34   -0.59    1.07    4.05
+    85.0    0.00    0.55    2.23    4.41    6.29    7.15    6.66    4.98    2.63    0.31   -1.39   -2.23   -2.33   -2.05   -1.70   -1.33   -0.61    1.03    4.03
+    90.0    0.00    0.54    2.21    4.38    6.26    7.15    6.70    5.05    2.72    0.41   -1.31   -2.17   -2.28   -2.01   -1.68   -1.34   -0.67    0.92    3.94
+    95.0    0.00    0.53    2.18    4.35    6.24    7.15    6.75    5.13    2.83    0.52   -1.21   -2.08   -2.22   -1.96   -1.66   -1.38   -0.77    0.77    3.79
+   100.0    0.00    0.53    2.16    4.32    6.21    7.15    6.78    5.22    2.94    0.64   -1.10   -1.99   -2.14   -1.91   -1.64   -1.40   -0.88    0.60    3.61
+   105.0    0.00    0.52    2.14    4.28    6.18    7.14    6.81    5.29    3.05    0.76   -0.98   -1.89   -2.05   -1.83   -1.59   -1.41   -0.96    0.44    3.43
+   110.0    0.00    0.52    2.12    4.24    6.14    7.12    6.83    5.35    3.14    0.87   -0.87   -1.78   -1.94   -1.73   -1.51   -1.39   -1.01    0.32    3.27
+   115.0    0.00    0.51    2.10    4.21    6.09    7.08    6.82    5.37    3.20    0.95   -0.77   -1.67   -1.83   -1.61   -1.40   -1.32   -1.00    0.25    3.17
+   120.0    0.00    0.51    2.08    4.17    6.04    7.04    6.79    5.37    3.22    1.01   -0.69   -1.57   -1.70   -1.47   -1.27   -1.20   -0.94    0.27    3.14
+   125.0    0.00    0.51    2.07    4.14    5.99    6.98    6.74    5.33    3.21    1.02   -0.64   -1.48   -1.58   -1.32   -1.10   -1.05   -0.81    0.35    3.20
+   130.0    0.00    0.51    2.06    4.11    5.94    6.91    6.66    5.26    3.15    1.00   -0.62   -1.41   -1.46   -1.17   -0.93   -0.88   -0.65    0.51    3.34
+   135.0    0.00    0.51    2.05    4.08    5.89    6.83    6.56    5.15    3.06    0.93   -0.64   -1.37   -1.37   -1.03   -0.76   -0.70   -0.46    0.71    3.56
+   140.0    0.00    0.51    2.05    4.07    5.85    6.76    6.45    5.02    2.93    0.83   -0.69   -1.36   -1.30   -0.91   -0.62   -0.53   -0.27    0.94    3.82
+   145.0    0.00    0.52    2.06    4.06    5.82    6.68    6.34    4.88    2.78    0.71   -0.76   -1.37   -1.26   -0.84   -0.53   -0.42   -0.11    1.16    4.09
+   150.0    0.00    0.53    2.07    4.07    5.80    6.63    6.24    4.74    2.63    0.57   -0.86   -1.42   -1.27   -0.82   -0.49   -0.36   -0.01    1.33    4.34
+   155.0    0.00    0.54    2.09    4.08    5.79    6.59    6.15    4.61    2.48    0.43   -0.97   -1.50   -1.31   -0.86   -0.52   -0.38    0.02    1.45    4.53
+   160.0    0.00    0.55    2.11    4.11    5.81    6.57    6.09    4.52    2.36    0.30   -1.09   -1.60   -1.41   -0.95   -0.63   -0.48   -0.03    1.47    4.63
+   165.0    0.00    0.56    2.14    4.15    5.85    6.59    6.07    4.45    2.26    0.19   -1.20   -1.72   -1.54   -1.11   -0.81   -0.66   -0.18    1.39    4.62
+   170.0    0.00    0.58    2.18    4.20    5.91    6.63    6.09    4.44    2.21    0.12   -1.30   -1.84   -1.70   -1.32   -1.06   -0.91   -0.40    1.22    4.47
+   175.0    0.00    0.60    2.22    4.27    5.98    6.71    6.15    4.47    2.21    0.08   -1.38   -1.97   -1.89   -1.56   -1.34   -1.21   -0.68    0.96    4.21
+   180.0    0.00    0.61    2.26    4.34    6.08    6.81    6.24    4.54    2.25    0.08   -1.43   -2.09   -2.08   -1.82   -1.66   -1.54   -1.01    0.64    3.85
+   185.0    0.00    0.63    2.31    4.42    6.18    6.93    6.37    4.65    2.34    0.12   -1.46   -2.19   -2.27   -2.09   -1.97   -1.87   -1.34    0.29    3.43
+   190.0    0.00    0.65    2.36    4.50    6.29    7.06    6.50    4.78    2.44    0.18   -1.46   -2.27   -2.44   -2.33   -2.26   -2.18   -1.66   -0.07    2.98
+   195.0    0.00    0.67    2.40    4.58    6.40    7.19    6.65    4.92    2.57    0.26   -1.44   -2.34   -2.58   -2.54   -2.51   -2.45   -1.95   -0.40    2.55
+   200.0    0.00    0.69    2.45    4.66    6.51    7.32    6.78    5.06    2.69    0.35   -1.41   -2.37   -2.69   -2.70   -2.70   -2.65   -2.17   -0.67    2.19
+   205.0    0.00    0.70    2.49    4.73    6.60    7.42    6.90    5.17    2.79    0.42   -1.37   -2.39   -2.75   -2.81   -2.82   -2.78   -2.32   -0.86    1.92
+   210.0    0.00    0.72    2.53    4.79    6.67    7.51    6.98    5.25    2.86    0.48   -1.34   -2.38   -2.77   -2.85   -2.88   -2.84   -2.39   -0.97    1.78
+   215.0    0.00    0.74    2.57    4.84    6.73    7.56    7.02    5.28    2.89    0.51   -1.31   -2.36   -2.76   -2.84   -2.86   -2.84   -2.39   -0.99    1.77
+   220.0    0.00    0.75    2.60    4.88    6.76    7.58    7.02    5.28    2.88    0.51   -1.29   -2.32   -2.70   -2.77   -2.80   -2.77   -2.33   -0.93    1.88
+   225.0    0.00    0.76    2.62    4.90    6.78    7.57    6.99    5.22    2.83    0.48   -1.29   -2.28   -2.62   -2.67   -2.68   -2.66   -2.23   -0.81    2.09
+   230.0    0.00    0.77    2.64    4.91    6.77    7.53    6.92    5.14    2.75    0.43   -1.30   -2.23   -2.53   -2.54   -2.55   -2.52   -2.10   -0.64    2.37
+   235.0    0.00    0.78    2.65    4.92    6.75    7.48    6.84    5.04    2.65    0.36   -1.31   -2.18   -2.43   -2.41   -2.40   -2.38   -1.95   -0.46    2.68
+   240.0    0.00    0.79    2.65    4.91    6.72    7.41    6.74    4.92    2.55    0.29   -1.32   -2.14   -2.33   -2.27   -2.25   -2.24   -1.81   -0.28    2.98
+   245.0    0.00    0.79    2.65    4.89    6.68    7.34    6.65    4.82    2.46    0.23   -1.33   -2.09   -2.24   -2.15   -2.12   -2.12   -1.69   -0.12    3.22
+   250.0    0.00    0.79    2.65    4.87    6.64    7.28    6.57    4.74    2.39    0.20   -1.33   -2.04   -2.15   -2.05   -2.02   -2.02   -1.59    0.00    3.40
+   255.0    0.00    0.79    2.64    4.85    6.59    7.23    6.52    4.70    2.37    0.20   -1.30   -1.99   -2.09   -1.97   -1.94   -1.94   -1.51    0.07    3.48
+   260.0    0.00    0.79    2.63    4.82    6.56    7.19    6.49    4.69    2.38    0.24   -1.25   -1.94   -2.03   -1.91   -1.88   -1.88   -1.47    0.11    3.47
+   265.0    0.00    0.79    2.61    4.79    6.52    7.17    6.49    4.73    2.44    0.31   -1.18   -1.88   -1.98   -1.87   -1.84   -1.84   -1.44    0.10    3.39
+   270.0    0.00    0.78    2.60    4.76    6.50    7.16    6.52    4.80    2.54    0.41   -1.09   -1.81   -1.93   -1.83   -1.80   -1.81   -1.42    0.08    3.26
+   275.0    0.00    0.78    2.57    4.73    6.47    7.17    6.57    4.89    2.66    0.54   -0.98   -1.73   -1.88   -1.79   -1.77   -1.78   -1.40    0.05    3.12
+   280.0    0.00    0.77    2.55    4.70    6.45    7.18    6.63    4.99    2.79    0.67   -0.87   -1.64   -1.82   -1.74   -1.72   -1.74   -1.37    0.02    2.99
+   285.0    0.00    0.76    2.53    4.67    6.43    7.18    6.68    5.09    2.92    0.80   -0.75   -1.55   -1.75   -1.68   -1.66   -1.68   -1.33    0.02    2.90
+   290.0    0.00    0.75    2.50    4.63    6.40    7.19    6.73    5.18    3.03    0.92   -0.65   -1.46   -1.66   -1.60   -1.58   -1.60   -1.27    0.05    2.89
+   295.0    0.00    0.74    2.48    4.59    6.36    7.17    6.75    5.23    3.11    1.00   -0.57   -1.38   -1.58   -1.50   -1.47   -1.50   -1.19    0.12    2.96
+   300.0    0.00    0.73    2.45    4.55    6.32    7.15    6.74    5.25    3.14    1.05   -0.51   -1.31   -1.48   -1.39   -1.35   -1.39   -1.09    0.23    3.11
+   305.0    0.00    0.72    2.42    4.51    6.27    7.10    6.71    5.22    3.13    1.05   -0.49   -1.25   -1.39   -1.27   -1.22   -1.27   -0.98    0.36    3.34
+   310.0    0.00    0.71    2.39    4.47    6.22    7.03    6.64    5.16    3.07    1.01   -0.49   -1.22   -1.31   -1.15   -1.09   -1.14   -0.86    0.52    3.61
+   315.0    0.00    0.70    2.37    4.42    6.15    6.95    6.55    5.06    2.98    0.94   -0.53   -1.20   -1.25   -1.05   -0.98   -1.03   -0.75    0.67    3.89
+   320.0    0.00    0.69    2.34    4.38    6.09    6.87    6.44    4.94    2.86    0.84   -0.58   -1.21   -1.21   -0.98   -0.89   -0.94   -0.65    0.82    4.16
+   325.0    0.00    0.68    2.32    4.34    6.02    6.77    6.32    4.81    2.73    0.73   -0.66   -1.24   -1.20   -0.94   -0.83   -0.88   -0.58    0.93    4.38
+   330.0    0.00    0.67    2.30    4.30    5.96    6.69    6.21    4.67    2.60    0.61   -0.75   -1.30   -1.22   -0.94   -0.83   -0.87   -0.56    0.99    4.52
+   335.0    0.00    0.66    2.28    4.27    5.91    6.61    6.11    4.56    2.48    0.51   -0.83   -1.36   -1.28   -0.99   -0.87   -0.91   -0.58    0.99    4.56
+   340.0    0.00    0.65    2.27    4.25    5.87    6.55    6.03    4.47    2.39    0.42   -0.91   -1.45   -1.37   -1.09   -0.98   -1.00   -0.66    0.92    4.49
+   345.0    0.00    0.65    2.26    4.23    5.85    6.51    5.98    4.41    2.32    0.36   -0.98   -1.53   -1.48   -1.23   -1.13   -1.15   -0.79    0.79    4.32
+   350.0    0.00    0.64    2.25    4.23    5.84    6.50    5.96    4.39    2.30    0.33   -1.04   -1.62   -1.62   -1.41   -1.33   -1.35   -0.98    0.59    4.06
+   355.0    0.00    0.63    2.25    4.23    5.85    6.51    5.97    4.40    2.31    0.32   -1.08   -1.71   -1.77   -1.61   -1.56   -1.59   -1.21    0.33    3.72
+   360.0    0.00    0.63    2.25    4.24    5.87    6.54    6.01    4.44    2.34    0.34   -1.10   -1.80   -1.92   -1.83   -1.81   -1.84   -1.47    0.05    3.34
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.10     -0.29     76.51                              NORTH / EAST / UP   
+   NOAZI    0.00    0.09    0.34    0.69    1.04    1.22    1.05    0.41   -0.69   -2.06   -3.37   -4.28   -4.53   -4.05   -2.90   -1.22    0.95    3.71    7.24
+     0.0    0.00    0.28    0.68    1.12    1.50    1.67    1.49    0.84   -0.28   -1.70   -3.08   -4.03   -4.23   -3.60   -2.26   -0.44    1.72    4.43    8.19
+     5.0    0.00    0.28    0.67    1.08    1.42    1.58    1.40    0.77   -0.31   -1.67   -3.00   -3.92   -4.13   -3.54   -2.27   -0.52    1.59    4.26    7.91
+    10.0    0.00    0.28    0.65    1.03    1.34    1.47    1.28    0.66   -0.38   -1.70   -2.99   -3.88   -4.10   -3.55   -2.33   -0.64    1.44    4.06    7.60
+    15.0    0.00    0.28    0.63    0.98    1.25    1.35    1.14    0.52   -0.51   -1.79   -3.05   -3.92   -4.14   -3.62   -2.45   -0.80    1.26    3.86    7.30
+    20.0    0.00    0.28    0.60    0.92    1.16    1.22    0.98    0.34   -0.69   -1.96   -3.19   -4.04   -4.26   -3.76   -2.62   -0.99    1.07    3.68    7.04
+    25.0    0.00    0.27    0.58    0.87    1.07    1.08    0.80    0.14   -0.91   -2.18   -3.39   -4.24   -4.45   -3.95   -2.82   -1.19    0.89    3.52    6.83
+    30.0    0.00    0.27    0.56    0.82    0.98    0.95    0.62   -0.08   -1.16   -2.44   -3.65   -4.48   -4.69   -4.18   -3.04   -1.39    0.73    3.40    6.71
+    35.0    0.00    0.26    0.54    0.78    0.91    0.83    0.45   -0.30   -1.41   -2.72   -3.94   -4.76   -4.94   -4.42   -3.25   -1.57    0.60    3.33    6.67
+    40.0    0.00    0.25    0.52    0.74    0.84    0.73    0.31   -0.50   -1.65   -2.99   -4.22   -5.03   -5.19   -4.64   -3.44   -1.71    0.51    3.32    6.72
+    45.0    0.00    0.25    0.51    0.71    0.79    0.65    0.19   -0.65   -1.85   -3.22   -4.46   -5.27   -5.41   -4.83   -3.59   -1.82    0.48    3.37    6.86
+    50.0    0.00    0.24    0.49    0.69    0.76    0.61    0.12   -0.76   -1.99   -3.38   -4.64   -5.44   -5.57   -4.96   -3.69   -1.86    0.49    3.47    7.07
+    55.0    0.00    0.23    0.48    0.68    0.75    0.60    0.10   -0.80   -2.05   -3.47   -4.74   -5.54   -5.66   -5.02   -3.72   -1.86    0.55    3.60    7.32
+    60.0    0.00    0.23    0.48    0.69    0.77    0.62    0.13   -0.77   -2.03   -3.46   -4.74   -5.56   -5.67   -5.03   -3.70   -1.81    0.64    3.76    7.59
+    65.0    0.00    0.22    0.48    0.70    0.80    0.67    0.21   -0.68   -1.93   -3.36   -4.66   -5.48   -5.61   -4.97   -3.64   -1.72    0.76    3.93    7.83
+    70.0    0.00    0.22    0.48    0.71    0.85    0.76    0.33   -0.52   -1.76   -3.18   -4.49   -5.34   -5.49   -4.86   -3.54   -1.61    0.89    4.08    8.04
+    75.0    0.00    0.21    0.48    0.74    0.91    0.87    0.49   -0.32   -1.53   -2.94   -4.26   -5.13   -5.32   -4.73   -3.42   -1.50    1.01    4.20    8.18
+    80.0    0.00    0.20    0.48    0.77    0.98    1.00    0.67   -0.09   -1.26   -2.66   -3.98   -4.90   -5.13   -4.57   -3.29   -1.38    1.11    4.29    8.25
+    85.0    0.00    0.19    0.48    0.80    1.06    1.13    0.86    0.15   -0.97   -2.36   -3.70   -4.64   -4.92   -4.42   -3.17   -1.28    1.20    4.33    8.24
+    90.0    0.00    0.19    0.49    0.84    1.14    1.26    1.05    0.39   -0.70   -2.07   -3.42   -4.40   -4.73   -4.28   -3.06   -1.20    1.25    4.33    8.16
+    95.0    0.00    0.18    0.49    0.87    1.22    1.38    1.22    0.61   -0.46   -1.82   -3.18   -4.19   -4.57   -4.15   -2.97   -1.13    1.28    4.30    8.03
+   100.0    0.00    0.17    0.49    0.90    1.28    1.49    1.37    0.79   -0.26   -1.61   -2.98   -4.02   -4.43   -4.05   -2.90   -1.09    1.30    4.25    7.87
+   105.0    0.00    0.16    0.49    0.92    1.34    1.58    1.49    0.92   -0.11   -1.46   -2.84   -3.89   -4.32   -3.97   -2.84   -1.05    1.31    4.20    7.72
+   110.0    0.00    0.15    0.49    0.94    1.39    1.65    1.57    1.02   -0.02   -1.37   -2.76   -3.82   -4.25   -3.91   -2.79   -1.01    1.32    4.16    7.60
+   115.0    0.00    0.14    0.48    0.95    1.42    1.70    1.63    1.07    0.03   -1.34   -2.72   -3.78   -4.21   -3.86   -2.74   -0.96    1.35    4.15    7.52
+   120.0    0.00    0.12    0.47    0.95    1.44    1.73    1.66    1.09    0.03   -1.35   -2.73   -3.78   -4.18   -3.81   -2.68   -0.90    1.40    4.18    7.52
+   125.0    0.00    0.11    0.45    0.95    1.45    1.75    1.67    1.08    0.00   -1.39   -2.77   -3.80   -4.18   -3.77   -2.62   -0.83    1.48    4.26    7.58
+   130.0    0.00    0.09    0.43    0.94    1.44    1.75    1.66    1.05   -0.05   -1.45   -2.83   -3.83   -4.17   -3.74   -2.55   -0.74    1.58    4.38    7.70
+   135.0    0.00    0.08    0.41    0.91    1.43    1.74    1.64    1.02   -0.11   -1.52   -2.89   -3.87   -4.18   -3.70   -2.48   -0.65    1.70    4.53    7.87
+   140.0    0.00    0.06    0.38    0.88    1.40    1.72    1.62    0.98   -0.16   -1.58   -2.95   -3.91   -4.18   -3.67   -2.41   -0.55    1.83    4.69    8.06
+   145.0    0.00    0.04    0.35    0.85    1.37    1.69    1.59    0.95   -0.20   -1.63   -2.99   -3.93   -4.18   -3.64   -2.36   -0.46    1.94    4.84    8.24
+   150.0    0.00    0.02    0.32    0.80    1.32    1.65    1.56    0.92   -0.22   -1.66   -3.02   -3.95   -4.18   -3.61   -2.31   -0.40    2.04    4.97    8.38
+   155.0    0.00    0.00    0.28    0.75    1.27    1.61    1.53    0.90   -0.24   -1.67   -3.04   -3.96   -4.17   -3.60   -2.29   -0.36    2.09    5.05    8.45
+   160.0    0.00   -0.02    0.23    0.69    1.21    1.55    1.48    0.87   -0.26   -1.68   -3.03   -3.95   -4.16   -3.59   -2.28   -0.37    2.09    5.05    8.44
+   165.0    0.00   -0.04    0.19    0.63    1.13    1.48    1.43    0.84   -0.27   -1.68   -3.02   -3.93   -4.15   -3.58   -2.30   -0.40    2.03    4.98    8.33
+   170.0    0.00   -0.06    0.14    0.56    1.05    1.40    1.36    0.79   -0.30   -1.68   -3.01   -3.91   -4.13   -3.58   -2.33   -0.48    1.91    4.83    8.13
+   175.0    0.00   -0.07    0.10    0.48    0.96    1.30    1.27    0.72   -0.34   -1.70   -3.00   -3.89   -4.11   -3.59   -2.38   -0.59    1.74    4.60    7.84
+   180.0    0.00   -0.09    0.05    0.41    0.86    1.19    1.16    0.63   -0.41   -1.73   -3.00   -3.87   -4.09   -3.59   -2.45   -0.73    1.51    4.31    7.49
+   185.0    0.00   -0.11    0.00    0.33    0.75    1.06    1.04    0.51   -0.49   -1.78   -3.02   -3.85   -4.07   -3.60   -2.51   -0.89    1.26    3.97    7.10
+   190.0    0.00   -0.12   -0.04    0.25    0.64    0.93    0.89    0.38   -0.60   -1.86   -3.05   -3.85   -4.05   -3.61   -2.59   -1.07    0.98    3.61    6.71
+   195.0    0.00   -0.14   -0.08    0.18    0.53    0.79    0.74    0.23   -0.74   -1.96   -3.11   -3.87   -4.06   -3.63   -2.67   -1.24    0.70    3.26    6.34
+   200.0    0.00   -0.15   -0.12    0.11    0.43    0.66    0.59    0.07   -0.88   -2.07   -3.19   -3.92   -4.08   -3.67   -2.76   -1.41    0.44    2.93    6.01
+   205.0    0.00   -0.16   -0.15    0.05    0.33    0.53    0.44   -0.09   -1.04   -2.20   -3.29   -3.99   -4.13   -3.73   -2.86   -1.58    0.19    2.64    5.76
+   210.0    0.00   -0.17   -0.17    0.00    0.25    0.42    0.30   -0.24   -1.18   -2.34   -3.41   -4.08   -4.21   -3.81   -2.96   -1.73   -0.01    2.41    5.58
+   215.0    0.00   -0.17   -0.19   -0.04    0.19    0.33    0.19   -0.37   -1.32   -2.48   -3.53   -4.20   -4.32   -3.91   -3.08   -1.87   -0.18    2.25    5.48
+   220.0    0.00   -0.17   -0.19   -0.06    0.14    0.27    0.11   -0.46   -1.43   -2.60   -3.66   -4.33   -4.45   -4.04   -3.20   -2.00   -0.30    2.15    5.46
+   225.0    0.00   -0.17   -0.20   -0.07    0.13    0.24    0.06   -0.52   -1.50   -2.69   -3.77   -4.46   -4.59   -4.18   -3.33   -2.10   -0.38    2.11    5.50
+   230.0    0.00   -0.16   -0.19   -0.06    0.13    0.24    0.06   -0.54   -1.54   -2.75   -3.86   -4.58   -4.73   -4.31   -3.44   -2.18   -0.42    2.12    5.59
+   235.0    0.00   -0.15   -0.17   -0.04    0.16    0.27    0.10   -0.51   -1.52   -2.76   -3.92   -4.67   -4.85   -4.43   -3.54   -2.24   -0.42    2.17    5.70
+   240.0    0.00   -0.14   -0.14    0.00    0.22    0.34    0.17   -0.43   -1.46   -2.73   -3.92   -4.72   -4.93   -4.52   -3.61   -2.26   -0.39    2.24    5.82
+   245.0    0.00   -0.13   -0.11    0.06    0.30    0.44    0.29   -0.31   -1.34   -2.64   -3.87   -4.72   -4.96   -4.57   -3.64   -2.25   -0.34    2.33    5.93
+   250.0    0.00   -0.11   -0.07    0.13    0.39    0.56    0.43   -0.15   -1.19   -2.50   -3.77   -4.65   -4.93   -4.56   -3.62   -2.21   -0.26    2.42    6.03
+   255.0    0.00   -0.09   -0.02    0.20    0.50    0.71    0.60    0.04   -0.99   -2.31   -3.61   -4.53   -4.84   -4.49   -3.56   -2.13   -0.17    2.51    6.09
+   260.0    0.00   -0.07    0.03    0.29    0.63    0.86    0.79    0.24   -0.78   -2.10   -3.41   -4.35   -4.70   -4.37   -3.44   -2.01   -0.06    2.60    6.13
+   265.0    0.00   -0.05    0.09    0.39    0.76    1.02    0.97    0.46   -0.55   -1.86   -3.18   -4.14   -4.51   -4.20   -3.29   -1.87    0.07    2.69    6.16
+   270.0    0.00   -0.02    0.15    0.48    0.89    1.18    1.16    0.66   -0.33   -1.63   -2.94   -3.92   -4.30   -4.01   -3.12   -1.71    0.20    2.77    6.18
+   275.0    0.00    0.00    0.21    0.58    1.02    1.34    1.33    0.85   -0.12   -1.42   -2.73   -3.71   -4.10   -3.82   -2.93   -1.54    0.35    2.87    6.20
+   280.0    0.00    0.03    0.27    0.68    1.14    1.48    1.49    1.01    0.05   -1.24   -2.55   -3.53   -3.93   -3.65   -2.76   -1.37    0.50    2.97    6.24
+   285.0    0.00    0.05    0.33    0.77    1.26    1.61    1.62    1.14    0.17   -1.12   -2.43   -3.41   -3.81   -3.52   -2.61   -1.21    0.65    3.08    6.31
+   290.0    0.00    0.08    0.39    0.86    1.36    1.72    1.72    1.23    0.25   -1.06   -2.38   -3.37   -3.76   -3.45   -2.51   -1.07    0.80    3.22    6.42
+   295.0    0.00    0.11    0.44    0.94    1.46    1.81    1.80    1.28    0.27   -1.07   -2.41   -3.41   -3.78   -3.44   -2.44   -0.96    0.95    3.37    6.58
+   300.0    0.00    0.13    0.49    1.01    1.53    1.88    1.84    1.29    0.24   -1.14   -2.51   -3.52   -3.88   -3.49   -2.42   -0.86    1.09    3.54    6.79
+   305.0    0.00    0.15    0.54    1.07    1.60    1.93    1.86    1.27    0.17   -1.26   -2.67   -3.70   -4.04   -3.59   -2.44   -0.80    1.23    3.72    7.03
+   310.0    0.00    0.18    0.58    1.12    1.65    1.96    1.86    1.23    0.07   -1.41   -2.87   -3.91   -4.23   -3.72   -2.49   -0.75    1.35    3.91    7.31
+   315.0    0.00    0.20    0.62    1.17    1.69    1.98    1.85    1.17   -0.04   -1.58   -3.08   -4.14   -4.44   -3.87   -2.54   -0.71    1.47    4.10    7.61
+   320.0    0.00    0.21    0.65    1.20    1.71    1.98    1.82    1.10   -0.15   -1.74   -3.28   -4.35   -4.63   -4.00   -2.59   -0.67    1.58    4.28    7.90
+   325.0    0.00    0.23    0.67    1.22    1.72    1.98    1.79    1.04   -0.25   -1.87   -3.44   -4.52   -4.78   -4.10   -2.62   -0.63    1.68    4.44    8.17
+   330.0    0.00    0.24    0.69    1.24    1.72    1.96    1.76    1.00   -0.32   -1.96   -3.54   -4.63   -4.86   -4.14   -2.62   -0.59    1.76    4.57    8.40
+   335.0    0.00    0.26    0.70    1.24    1.71    1.94    1.73    0.96   -0.36   -2.00   -3.58   -4.66   -4.88   -4.13   -2.59   -0.54    1.83    4.66    8.57
+   340.0    0.00    0.26    0.71    1.23    1.69    1.91    1.70    0.94   -0.36   -1.99   -3.55   -4.61   -4.82   -4.07   -2.53   -0.48    1.87    4.71    8.66
+   345.0    0.00    0.27    0.71    1.22    1.66    1.87    1.66    0.92   -0.34   -1.93   -3.46   -4.50   -4.70   -3.96   -2.45   -0.44    1.89    4.71    8.66
+   350.0    0.00    0.28    0.71    1.19    1.62    1.82    1.62    0.91   -0.31   -1.85   -3.34   -4.35   -4.54   -3.83   -2.36   -0.41    1.87    4.67    8.58
+   355.0    0.00    0.28    0.70    1.16    1.56    1.75    1.57    0.89   -0.29   -1.77   -3.20   -4.18   -4.38   -3.70   -2.29   -0.41    1.81    4.57    8.42
+   360.0    0.00    0.28    0.68    1.12    1.50    1.67    1.49    0.84   -0.28   -1.70   -3.08   -4.03   -4.23   -3.60   -2.26   -0.44    1.72    4.43    8.19
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TRM33429.20+GP  UNAV                                        TYPE / SERIAL NO    
+FIELD               NGS/TUM                  3    20-APR-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.00     -0.76     57.04                              NORTH / EAST / UP   
+   NOAZI    0.00    4.86    8.88   12.23   14.52   16.01   16.85   17.01   16.73   16.30   15.56   14.94   14.63   14.76   15.70   17.87   21.79
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -1.10     -2.02     68.96                              NORTH / EAST / UP   
+   NOAZI    0.00    0.87    1.58    1.90    2.08    1.98    1.77    1.29    0.85    0.47    0.35    0.37    0.82    1.55    2.47    3.79    5.66
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TRM39105.00     NONE                                        TYPE / SERIAL NO    
+FIELD               NGS/TUM                  4    10-AUG-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.60     -0.26     52.44                              NORTH / EAST / UP   
+   NOAZI    0.00    0.76    1.28    1.43    1.32    1.11    0.95    0.81    0.73    0.90    1.16    1.44    1.73    1.96    2.10    2.27    2.29
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.80      0.28     59.46                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.43   -0.62   -0.70   -0.72   -0.72   -0.63   -0.71   -0.85   -0.83   -0.85   -0.73   -0.68   -0.65   -0.63   -0.91   -1.14
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TRM41249.00     NONE                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH              12    27-JAN-03 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+     -0.08      0.55     55.29                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.09   -0.35   -0.75   -1.24   -1.79   -2.36   -2.92   -3.40   -3.72   -3.82   -3.63   -3.14   -2.38   -1.38   -0.11    1.55    3.75    6.59
+     0.0    0.00   -0.09   -0.36   -0.76   -1.27   -1.83   -2.41   -2.97   -3.47   -3.82   -3.94   -3.77   -3.28   -2.49   -1.44   -0.13    1.49    3.56    6.22
+     5.0    0.00   -0.09   -0.36   -0.76   -1.27   -1.83   -2.41   -2.98   -3.48   -3.84   -3.97   -3.82   -3.33   -2.54   -1.47   -0.16    1.45    3.49    6.10
+    10.0    0.00   -0.09   -0.36   -0.77   -1.27   -1.83   -2.41   -2.98   -3.48   -3.84   -3.99   -3.84   -3.36   -2.56   -1.49   -0.17    1.44    3.46    6.03
+    15.0    0.00   -0.09   -0.36   -0.77   -1.27   -1.83   -2.41   -2.97   -3.47   -3.83   -3.98   -3.84   -3.36   -2.57   -1.49   -0.17    1.46    3.48    6.04
+    20.0    0.00   -0.10   -0.36   -0.77   -1.28   -1.83   -2.40   -2.96   -3.45   -3.81   -3.96   -3.82   -3.35   -2.56   -1.48   -0.14    1.50    3.55    6.11
+    25.0    0.00   -0.10   -0.37   -0.78   -1.28   -1.83   -2.40   -2.94   -3.42   -3.77   -3.91   -3.77   -3.31   -2.53   -1.46   -0.11    1.56    3.64    6.25
+    30.0    0.00   -0.10   -0.37   -0.78   -1.28   -1.83   -2.39   -2.93   -3.39   -3.73   -3.86   -3.72   -3.26   -2.49   -1.43   -0.07    1.63    3.77    6.44
+    35.0    0.00   -0.10   -0.37   -0.78   -1.29   -1.83   -2.39   -2.91   -3.36   -3.68   -3.80   -3.65   -3.21   -2.45   -1.40   -0.03    1.69    3.89    6.65
+    40.0    0.00   -0.10   -0.37   -0.78   -1.29   -1.84   -2.38   -2.89   -3.33   -3.63   -3.74   -3.59   -3.15   -2.41   -1.37   -0.01    1.74    4.01    6.86
+    45.0    0.00   -0.10   -0.37   -0.79   -1.29   -1.84   -2.38   -2.88   -3.31   -3.60   -3.69   -3.54   -3.11   -2.38   -1.36   -0.01    1.77    4.09    7.03
+    50.0    0.00   -0.10   -0.37   -0.79   -1.29   -1.84   -2.38   -2.88   -3.29   -3.57   -3.66   -3.50   -3.07   -2.36   -1.36   -0.02    1.76    4.11    7.13
+    55.0    0.00   -0.10   -0.37   -0.79   -1.29   -1.84   -2.38   -2.88   -3.29   -3.56   -3.64   -3.48   -3.06   -2.36   -1.38   -0.07    1.70    4.08    7.15
+    60.0    0.00   -0.10   -0.37   -0.79   -1.29   -1.84   -2.38   -2.88   -3.29   -3.57   -3.64   -3.48   -3.05   -2.37   -1.42   -0.13    1.61    3.98    7.07
+    65.0    0.00   -0.10   -0.37   -0.79   -1.29   -1.84   -2.39   -2.89   -3.31   -3.58   -3.66   -3.49   -3.07   -2.39   -1.46   -0.22    1.49    3.82    6.90
+    70.0    0.00   -0.10   -0.37   -0.78   -1.29   -1.84   -2.39   -2.90   -3.33   -3.61   -3.69   -3.52   -3.09   -2.43   -1.52   -0.31    1.34    3.62    6.65
+    75.0    0.00   -0.10   -0.37   -0.78   -1.29   -1.84   -2.39   -2.92   -3.35   -3.64   -3.72   -3.55   -3.12   -2.46   -1.58   -0.41    1.18    3.39    6.36
+    80.0    0.00   -0.10   -0.37   -0.78   -1.28   -1.83   -2.39   -2.93   -3.37   -3.67   -3.75   -3.58   -3.15   -2.49   -1.63   -0.50    1.03    3.17    6.05
+    85.0    0.00   -0.10   -0.37   -0.77   -1.27   -1.82   -2.39   -2.93   -3.39   -3.69   -3.78   -3.61   -3.17   -2.52   -1.67   -0.57    0.91    2.98    5.77
+    90.0    0.00   -0.10   -0.36   -0.77   -1.26   -1.81   -2.38   -2.93   -3.39   -3.71   -3.79   -3.62   -3.18   -2.53   -1.68   -0.61    0.84    2.85    5.55
+    95.0    0.00   -0.09   -0.36   -0.76   -1.25   -1.80   -2.37   -2.92   -3.39   -3.71   -3.80   -3.62   -3.18   -2.52   -1.68   -0.61    0.82    2.79    5.42
+   100.0    0.00   -0.09   -0.36   -0.75   -1.24   -1.79   -2.36   -2.91   -3.38   -3.69   -3.78   -3.60   -3.16   -2.49   -1.64   -0.57    0.85    2.81    5.40
+   105.0    0.00   -0.09   -0.35   -0.75   -1.23   -1.78   -2.34   -2.89   -3.36   -3.67   -3.75   -3.56   -3.11   -2.44   -1.58   -0.50    0.95    2.92    5.49
+   110.0    0.00   -0.09   -0.35   -0.74   -1.22   -1.76   -2.33   -2.87   -3.33   -3.64   -3.71   -3.52   -3.06   -2.38   -1.50   -0.38    1.09    3.10    5.68
+   115.0    0.00   -0.09   -0.35   -0.73   -1.21   -1.75   -2.31   -2.85   -3.31   -3.60   -3.67   -3.46   -2.99   -2.30   -1.40   -0.25    1.27    3.33    5.95
+   120.0    0.00   -0.09   -0.34   -0.73   -1.20   -1.74   -2.30   -2.83   -3.29   -3.57   -3.63   -3.41   -2.93   -2.22   -1.29   -0.11    1.46    3.58    6.26
+   125.0    0.00   -0.09   -0.34   -0.72   -1.19   -1.73   -2.29   -2.82   -3.27   -3.55   -3.59   -3.36   -2.87   -2.14   -1.19    0.03    1.65    3.83    6.57
+   130.0    0.00   -0.09   -0.34   -0.71   -1.19   -1.72   -2.28   -2.81   -3.26   -3.54   -3.57   -3.33   -2.82   -2.07   -1.10    0.14    1.80    4.03    6.85
+   135.0    0.00   -0.09   -0.33   -0.71   -1.18   -1.71   -2.27   -2.81   -3.26   -3.54   -3.56   -3.31   -2.79   -2.03   -1.04    0.22    1.91    4.18    7.06
+   140.0    0.00   -0.09   -0.33   -0.70   -1.17   -1.71   -2.27   -2.82   -3.27   -3.55   -3.58   -3.32   -2.78   -2.01   -1.02    0.26    1.96    4.25    7.18
+   145.0    0.00   -0.09   -0.33   -0.70   -1.17   -1.70   -2.27   -2.82   -3.28   -3.57   -3.60   -3.34   -2.80   -2.02   -1.02    0.25    1.94    4.25    7.20
+   150.0    0.00   -0.08   -0.33   -0.70   -1.16   -1.70   -2.27   -2.83   -3.30   -3.60   -3.64   -3.39   -2.84   -2.06   -1.07    0.19    1.88    4.17    7.14
+   155.0    0.00   -0.08   -0.33   -0.69   -1.16   -1.69   -2.27   -2.84   -3.33   -3.64   -3.69   -3.45   -2.91   -2.13   -1.14    0.10    1.76    4.03    7.00
+   160.0    0.00   -0.08   -0.32   -0.69   -1.15   -1.69   -2.27   -2.85   -3.35   -3.68   -3.75   -3.52   -2.99   -2.22   -1.24   -0.01    1.62    3.86    6.82
+   165.0    0.00   -0.08   -0.32   -0.69   -1.15   -1.69   -2.27   -2.85   -3.37   -3.72   -3.81   -3.60   -3.08   -2.32   -1.35   -0.14    1.47    3.68    6.62
+   170.0    0.00   -0.08   -0.32   -0.69   -1.15   -1.68   -2.27   -2.86   -3.38   -3.75   -3.87   -3.67   -3.18   -2.42   -1.46   -0.25    1.34    3.53    6.44
+   175.0    0.00   -0.08   -0.33   -0.69   -1.15   -1.68   -2.26   -2.86   -3.39   -3.78   -3.91   -3.74   -3.26   -2.51   -1.55   -0.34    1.24    3.41    6.31
+   180.0    0.00   -0.08   -0.33   -0.69   -1.15   -1.69   -2.27   -2.86   -3.40   -3.80   -3.95   -3.80   -3.33   -2.59   -1.62   -0.40    1.19    3.36    6.23
+   185.0    0.00   -0.09   -0.33   -0.70   -1.16   -1.69   -2.27   -2.86   -3.41   -3.81   -3.98   -3.83   -3.37   -2.63   -1.65   -0.41    1.20    3.36    6.23
+   190.0    0.00   -0.09   -0.33   -0.70   -1.17   -1.70   -2.28   -2.87   -3.41   -3.82   -3.99   -3.85   -3.39   -2.65   -1.65   -0.38    1.25    3.43    6.29
+   195.0    0.00   -0.09   -0.33   -0.71   -1.18   -1.71   -2.29   -2.88   -3.42   -3.82   -3.99   -3.85   -3.39   -2.63   -1.61   -0.32    1.35    3.55    6.40
+   200.0    0.00   -0.09   -0.34   -0.72   -1.19   -1.72   -2.30   -2.89   -3.42   -3.82   -3.98   -3.83   -3.36   -2.58   -1.54   -0.22    1.48    3.69    6.55
+   205.0    0.00   -0.09   -0.34   -0.72   -1.20   -1.74   -2.32   -2.90   -3.43   -3.81   -3.96   -3.80   -3.31   -2.52   -1.45   -0.11    1.61    3.85    6.71
+   210.0    0.00   -0.09   -0.34   -0.73   -1.21   -1.76   -2.34   -2.92   -3.44   -3.81   -3.94   -3.76   -3.25   -2.44   -1.36    0.01    1.74    3.99    6.85
+   215.0    0.00   -0.09   -0.35   -0.74   -1.22   -1.77   -2.36   -2.93   -3.44   -3.80   -3.91   -3.71   -3.19   -2.37   -1.27    0.10    1.84    4.10    6.96
+   220.0    0.00   -0.09   -0.35   -0.74   -1.23   -1.79   -2.37   -2.95   -3.44   -3.78   -3.88   -3.67   -3.13   -2.30   -1.21    0.17    1.91    4.16    7.03
+   225.0    0.00   -0.09   -0.35   -0.75   -1.24   -1.80   -2.39   -2.95   -3.45   -3.77   -3.85   -3.63   -3.09   -2.26   -1.17    0.19    1.92    4.17    7.04
+   230.0    0.00   -0.09   -0.35   -0.75   -1.25   -1.81   -2.39   -2.96   -3.44   -3.76   -3.83   -3.60   -3.06   -2.23   -1.16    0.18    1.89    4.12    7.01
+   235.0    0.00   -0.09   -0.35   -0.76   -1.26   -1.81   -2.40   -2.96   -3.44   -3.75   -3.82   -3.59   -3.05   -2.24   -1.19    0.13    1.81    4.03    6.93
+   240.0    0.00   -0.09   -0.36   -0.76   -1.26   -1.82   -2.40   -2.96   -3.43   -3.75   -3.82   -3.59   -3.07   -2.27   -1.25    0.04    1.70    3.91    6.83
+   245.0    0.00   -0.09   -0.36   -0.76   -1.26   -1.81   -2.39   -2.95   -3.43   -3.74   -3.82   -3.61   -3.10   -2.33   -1.33   -0.07    1.57    3.78    6.72
+   250.0    0.00   -0.09   -0.36   -0.76   -1.26   -1.81   -2.38   -2.94   -3.42   -3.75   -3.84   -3.64   -3.16   -2.40   -1.42   -0.18    1.44    3.65    6.61
+   255.0    0.00   -0.09   -0.36   -0.76   -1.25   -1.80   -2.38   -2.93   -3.42   -3.75   -3.86   -3.68   -3.22   -2.48   -1.52   -0.29    1.33    3.54    6.52
+   260.0    0.00   -0.09   -0.35   -0.76   -1.25   -1.80   -2.37   -2.93   -3.42   -3.77   -3.89   -3.73   -3.28   -2.56   -1.60   -0.37    1.25    3.47    6.46
+   265.0    0.00   -0.09   -0.35   -0.75   -1.25   -1.79   -2.37   -2.93   -3.43   -3.78   -3.92   -3.77   -3.33   -2.62   -1.66   -0.43    1.20    3.44    6.43
+   270.0    0.00   -0.09   -0.35   -0.75   -1.24   -1.79   -2.37   -2.93   -3.44   -3.80   -3.95   -3.81   -3.37   -2.66   -1.69   -0.44    1.20    3.45    6.44
+   275.0    0.00   -0.09   -0.35   -0.75   -1.24   -1.79   -2.37   -2.94   -3.45   -3.83   -3.97   -3.84   -3.39   -2.67   -1.68   -0.42    1.25    3.50    6.48
+   280.0    0.00   -0.09   -0.35   -0.75   -1.24   -1.80   -2.38   -2.96   -3.47   -3.84   -3.99   -3.84   -3.39   -2.65   -1.64   -0.36    1.33    3.59    6.55
+   285.0    0.00   -0.09   -0.35   -0.75   -1.25   -1.81   -2.39   -2.97   -3.49   -3.86   -3.99   -3.83   -3.36   -2.60   -1.57   -0.26    1.44    3.70    6.64
+   290.0    0.00   -0.09   -0.35   -0.75   -1.25   -1.81   -2.41   -2.99   -3.50   -3.86   -3.98   -3.80   -3.31   -2.53   -1.48   -0.15    1.57    3.84    6.74
+   295.0    0.00   -0.09   -0.35   -0.75   -1.25   -1.82   -2.42   -3.00   -3.51   -3.85   -3.96   -3.76   -3.24   -2.44   -1.38   -0.03    1.70    3.97    6.85
+   300.0    0.00   -0.09   -0.35   -0.75   -1.26   -1.83   -2.43   -3.01   -3.51   -3.84   -3.92   -3.70   -3.16   -2.34   -1.27    0.08    1.82    4.10    6.97
+   305.0    0.00   -0.09   -0.35   -0.75   -1.26   -1.84   -2.44   -3.02   -3.50   -3.81   -3.87   -3.63   -3.08   -2.25   -1.17    0.18    1.93    4.20    7.07
+   310.0    0.00   -0.09   -0.35   -0.75   -1.27   -1.84   -2.44   -3.02   -3.49   -3.78   -3.83   -3.57   -3.01   -2.17   -1.10    0.26    2.01    4.29    7.15
+   315.0    0.00   -0.09   -0.35   -0.75   -1.27   -1.85   -2.45   -3.01   -3.47   -3.75   -3.78   -3.51   -2.95   -2.12   -1.04    0.31    2.05    4.34    7.21
+   320.0    0.00   -0.09   -0.35   -0.75   -1.27   -1.85   -2.44   -3.00   -3.45   -3.72   -3.74   -3.47   -2.91   -2.08   -1.02    0.32    2.06    4.35    7.24
+   325.0    0.00   -0.09   -0.35   -0.75   -1.27   -1.85   -2.44   -2.99   -3.44   -3.70   -3.72   -3.45   -2.89   -2.08   -1.02    0.31    2.04    4.33    7.23
+   330.0    0.00   -0.09   -0.35   -0.76   -1.27   -1.84   -2.43   -2.98   -3.42   -3.69   -3.71   -3.45   -2.90   -2.10   -1.05    0.27    1.99    4.27    7.17
+   335.0    0.00   -0.09   -0.35   -0.76   -1.27   -1.84   -2.42   -2.97   -3.42   -3.69   -3.73   -3.48   -2.94   -2.14   -1.11    0.21    1.91    4.17    7.07
+   340.0    0.00   -0.09   -0.35   -0.76   -1.27   -1.84   -2.42   -2.97   -3.42   -3.70   -3.75   -3.52   -3.00   -2.21   -1.17    0.13    1.82    4.06    6.93
+   345.0    0.00   -0.09   -0.35   -0.76   -1.27   -1.83   -2.41   -2.96   -3.43   -3.73   -3.80   -3.58   -3.07   -2.28   -1.25    0.06    1.73    3.93    6.76
+   350.0    0.00   -0.09   -0.35   -0.76   -1.27   -1.83   -2.41   -2.97   -3.44   -3.76   -3.85   -3.65   -3.14   -2.36   -1.32   -0.02    1.63    3.79    6.58
+   355.0    0.00   -0.09   -0.35   -0.76   -1.27   -1.83   -2.41   -2.97   -3.45   -3.79   -3.90   -3.72   -3.22   -2.43   -1.39   -0.08    1.55    3.67    6.39
+   360.0    0.00   -0.09   -0.36   -0.76   -1.27   -1.83   -2.41   -2.97   -3.47   -3.82   -3.94   -3.77   -3.28   -2.49   -1.44   -0.13    1.49    3.56    6.22
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.10      0.41     57.42                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.14   -0.51   -1.01   -1.54   -2.03   -2.49   -2.97   -3.45   -3.87   -4.09   -3.95   -3.37   -2.38   -1.14    0.23    1.73    3.56    6.04
+     0.0    0.00   -0.20   -0.62   -1.17   -1.74   -2.26   -2.71   -3.13   -3.52   -3.86   -4.05   -3.96   -3.51   -2.68   -1.52   -0.10    1.54    3.48    5.75
+     5.0    0.00   -0.20   -0.62   -1.18   -1.75   -2.27   -2.72   -3.14   -3.54   -3.88   -4.08   -4.00   -3.56   -2.74   -1.58   -0.17    1.48    3.41    5.68
+    10.0    0.00   -0.20   -0.63   -1.18   -1.76   -2.28   -2.73   -3.15   -3.56   -3.91   -4.11   -4.04   -3.60   -2.77   -1.62   -0.22    1.41    3.33    5.60
+    15.0    0.00   -0.20   -0.63   -1.19   -1.77   -2.29   -2.75   -3.18   -3.58   -3.94   -4.14   -4.06   -3.61   -2.78   -1.64   -0.26    1.35    3.25    5.52
+    20.0    0.00   -0.20   -0.63   -1.20   -1.78   -2.31   -2.77   -3.20   -3.62   -3.97   -4.16   -4.07   -3.60   -2.77   -1.63   -0.27    1.31    3.18    5.47
+    25.0    0.00   -0.20   -0.64   -1.20   -1.79   -2.32   -2.80   -3.23   -3.65   -4.00   -4.18   -4.06   -3.58   -2.72   -1.58   -0.24    1.29    3.14    5.44
+    30.0    0.00   -0.20   -0.64   -1.21   -1.80   -2.34   -2.82   -3.26   -3.68   -4.03   -4.19   -4.05   -3.53   -2.65   -1.50   -0.18    1.32    3.14    5.46
+    35.0    0.00   -0.20   -0.64   -1.21   -1.80   -2.35   -2.84   -3.29   -3.72   -4.06   -4.21   -4.04   -3.48   -2.56   -1.40   -0.08    1.40    3.18    5.53
+    40.0    0.00   -0.20   -0.64   -1.21   -1.81   -2.36   -2.85   -3.31   -3.74   -4.08   -4.22   -4.02   -3.42   -2.47   -1.27    0.05    1.51    3.28    5.65
+    45.0    0.00   -0.20   -0.64   -1.21   -1.81   -2.36   -2.85   -3.32   -3.75   -4.10   -4.23   -4.01   -3.37   -2.37   -1.14    0.21    1.66    3.43    5.83
+    50.0    0.00   -0.19   -0.63   -1.21   -1.80   -2.35   -2.85   -3.32   -3.76   -4.11   -4.24   -4.00   -3.33   -2.29   -1.01    0.36    1.83    3.60    6.05
+    55.0    0.00   -0.19   -0.63   -1.20   -1.79   -2.34   -2.83   -3.30   -3.75   -4.11   -4.25   -4.00   -3.31   -2.22   -0.90    0.51    2.00    3.80    6.30
+    60.0    0.00   -0.19   -0.62   -1.19   -1.78   -2.32   -2.80   -3.28   -3.74   -4.11   -4.26   -4.02   -3.30   -2.18   -0.81    0.64    2.16    3.98    6.55
+    65.0    0.00   -0.18   -0.61   -1.18   -1.76   -2.29   -2.77   -3.24   -3.71   -4.11   -4.27   -4.04   -3.31   -2.16   -0.76    0.73    2.28    4.14    6.79
+    70.0    0.00   -0.18   -0.60   -1.16   -1.74   -2.26   -2.73   -3.20   -3.68   -4.10   -4.28   -4.06   -3.34   -2.17   -0.74    0.77    2.35    4.26    6.99
+    75.0    0.00   -0.17   -0.59   -1.15   -1.71   -2.22   -2.69   -3.16   -3.65   -4.08   -4.29   -4.08   -3.37   -2.19   -0.75    0.77    2.37    4.31    7.12
+    80.0    0.00   -0.17   -0.58   -1.13   -1.68   -2.18   -2.64   -3.11   -3.61   -4.06   -4.29   -4.10   -3.40   -2.23   -0.79    0.73    2.33    4.30    7.18
+    85.0    0.00   -0.16   -0.57   -1.11   -1.65   -2.14   -2.60   -3.07   -3.58   -4.04   -4.28   -4.11   -3.42   -2.27   -0.85    0.65    2.24    4.23    7.16
+    90.0    0.00   -0.16   -0.56   -1.09   -1.62   -2.11   -2.56   -3.03   -3.55   -4.02   -4.27   -4.11   -3.43   -2.30   -0.91    0.56    2.12    4.10    7.05
+    95.0    0.00   -0.15   -0.54   -1.06   -1.59   -2.07   -2.52   -3.00   -3.51   -3.99   -4.24   -4.09   -3.43   -2.33   -0.97    0.46    1.98    3.94    6.87
+   100.0    0.00   -0.14   -0.53   -1.04   -1.56   -2.04   -2.49   -2.97   -3.48   -3.96   -4.21   -4.06   -3.41   -2.33   -1.01    0.37    1.85    3.76    6.64
+   105.0    0.00   -0.13   -0.51   -1.02   -1.54   -2.01   -2.46   -2.94   -3.45   -3.92   -4.17   -4.01   -3.37   -2.32   -1.04    0.30    1.73    3.59    6.38
+   110.0    0.00   -0.13   -0.49   -0.99   -1.51   -1.99   -2.44   -2.92   -3.43   -3.88   -4.12   -3.96   -3.33   -2.29   -1.04    0.26    1.65    3.45    6.13
+   115.0    0.00   -0.12   -0.48   -0.97   -1.48   -1.96   -2.42   -2.90   -3.40   -3.85   -4.07   -3.90   -3.27   -2.25   -1.03    0.25    1.61    3.35    5.90
+   120.0    0.00   -0.11   -0.46   -0.95   -1.45   -1.94   -2.40   -2.88   -3.38   -3.82   -4.03   -3.85   -3.22   -2.21   -1.00    0.27    1.61    3.31    5.73
+   125.0    0.00   -0.11   -0.45   -0.92   -1.43   -1.91   -2.38   -2.86   -3.36   -3.79   -3.99   -3.80   -3.17   -2.17   -0.96    0.31    1.66    3.31    5.62
+   130.0    0.00   -0.10   -0.43   -0.90   -1.40   -1.89   -2.36   -2.85   -3.34   -3.76   -3.96   -3.77   -3.14   -2.13   -0.91    0.37    1.73    3.37    5.58
+   135.0    0.00   -0.09   -0.42   -0.88   -1.38   -1.86   -2.34   -2.83   -3.33   -3.75   -3.94   -3.75   -3.12   -2.11   -0.88    0.43    1.81    3.46    5.61
+   140.0    0.00   -0.09   -0.40   -0.86   -1.35   -1.84   -2.32   -2.82   -3.32   -3.74   -3.93   -3.74   -3.11   -2.10   -0.85    0.49    1.90    3.57    5.70
+   145.0    0.00   -0.08   -0.39   -0.84   -1.33   -1.81   -2.30   -2.80   -3.31   -3.74   -3.93   -3.75   -3.12   -2.10   -0.84    0.53    1.98    3.67    5.83
+   150.0    0.00   -0.08   -0.38   -0.82   -1.30   -1.79   -2.28   -2.79   -3.30   -3.74   -3.95   -3.77   -3.14   -2.12   -0.84    0.54    2.02    3.76    5.98
+   155.0    0.00   -0.07   -0.37   -0.80   -1.28   -1.76   -2.25   -2.77   -3.30   -3.75   -3.96   -3.79   -3.17   -2.14   -0.86    0.54    2.04    3.81    6.11
+   160.0    0.00   -0.07   -0.36   -0.79   -1.26   -1.74   -2.23   -2.76   -3.29   -3.75   -3.98   -3.82   -3.20   -2.18   -0.89    0.51    2.01    3.82    6.21
+   165.0    0.00   -0.07   -0.35   -0.78   -1.25   -1.72   -2.21   -2.74   -3.29   -3.76   -4.00   -3.85   -3.24   -2.22   -0.94    0.45    1.96    3.78    6.27
+   170.0    0.00   -0.06   -0.35   -0.77   -1.23   -1.71   -2.20   -2.73   -3.28   -3.76   -4.02   -3.88   -3.28   -2.26   -0.99    0.38    1.87    3.70    6.27
+   175.0    0.00   -0.06   -0.35   -0.76   -1.23   -1.69   -2.18   -2.71   -3.27   -3.76   -4.03   -3.91   -3.32   -2.31   -1.05    0.30    1.76    3.58    6.21
+   180.0    0.00   -0.06   -0.35   -0.76   -1.22   -1.69   -2.17   -2.70   -3.26   -3.76   -4.04   -3.94   -3.36   -2.37   -1.13    0.21    1.64    3.44    6.10
+   185.0    0.00   -0.06   -0.35   -0.77   -1.23   -1.69   -2.16   -2.69   -3.25   -3.76   -4.05   -3.96   -3.41   -2.43   -1.21    0.11    1.52    3.30    5.96
+   190.0    0.00   -0.06   -0.35   -0.77   -1.23   -1.69   -2.16   -2.68   -3.24   -3.75   -4.06   -4.00   -3.46   -2.51   -1.30    0.01    1.40    3.16    5.81
+   195.0    0.00   -0.07   -0.36   -0.78   -1.25   -1.70   -2.17   -2.68   -3.23   -3.75   -4.08   -4.03   -3.52   -2.59   -1.39   -0.10    1.29    3.04    5.66
+   200.0    0.00   -0.07   -0.37   -0.80   -1.26   -1.72   -2.18   -2.69   -3.24   -3.76   -4.10   -4.07   -3.59   -2.68   -1.50   -0.20    1.21    2.96    5.54
+   205.0    0.00   -0.07   -0.37   -0.81   -1.29   -1.75   -2.20   -2.70   -3.25   -3.77   -4.12   -4.12   -3.67   -2.78   -1.61   -0.29    1.14    2.91    5.46
+   210.0    0.00   -0.07   -0.38   -0.83   -1.31   -1.78   -2.23   -2.72   -3.26   -3.79   -4.15   -4.17   -3.75   -2.88   -1.71   -0.37    1.09    2.89    5.43
+   215.0    0.00   -0.08   -0.40   -0.85   -1.34   -1.81   -2.27   -2.76   -3.29   -3.82   -4.19   -4.23   -3.82   -2.98   -1.80   -0.44    1.07    2.92    5.45
+   220.0    0.00   -0.08   -0.41   -0.87   -1.37   -1.84   -2.30   -2.79   -3.33   -3.85   -4.22   -4.27   -3.89   -3.05   -1.88   -0.49    1.08    2.98    5.53
+   225.0    0.00   -0.09   -0.42   -0.89   -1.40   -1.88   -2.34   -2.83   -3.36   -3.89   -4.26   -4.31   -3.93   -3.10   -1.92   -0.51    1.11    3.07    5.64
+   230.0    0.00   -0.09   -0.43   -0.91   -1.42   -1.91   -2.38   -2.87   -3.40   -3.92   -4.29   -4.34   -3.95   -3.11   -1.92   -0.49    1.16    3.18    5.79
+   235.0    0.00   -0.10   -0.44   -0.93   -1.45   -1.94   -2.41   -2.90   -3.44   -3.95   -4.31   -4.34   -3.94   -3.08   -1.88   -0.43    1.25    3.30    5.94
+   240.0    0.00   -0.10   -0.45   -0.94   -1.46   -1.96   -2.43   -2.93   -3.46   -3.97   -4.32   -4.33   -3.89   -3.02   -1.80   -0.34    1.36    3.43    6.10
+   245.0    0.00   -0.11   -0.46   -0.96   -1.48   -1.97   -2.45   -2.94   -3.48   -3.98   -4.31   -4.29   -3.82   -2.91   -1.67   -0.20    1.49    3.56    6.24
+   250.0    0.00   -0.11   -0.47   -0.97   -1.49   -1.98   -2.45   -2.95   -3.48   -3.98   -4.29   -4.24   -3.72   -2.77   -1.50   -0.03    1.64    3.69    6.35
+   255.0    0.00   -0.12   -0.48   -0.98   -1.49   -1.98   -2.44   -2.94   -3.47   -3.97   -4.25   -4.16   -3.60   -2.61   -1.31    0.15    1.79    3.80    6.43
+   260.0    0.00   -0.12   -0.49   -0.98   -1.50   -1.97   -2.43   -2.92   -3.45   -3.94   -4.21   -4.08   -3.48   -2.44   -1.11    0.34    1.95    3.89    6.47
+   265.0    0.00   -0.13   -0.50   -0.99   -1.50   -1.96   -2.42   -2.90   -3.43   -3.90   -4.15   -4.00   -3.35   -2.27   -0.92    0.53    2.09    3.96    6.47
+   270.0    0.00   -0.13   -0.50   -1.00   -1.50   -1.96   -2.40   -2.88   -3.39   -3.86   -4.09   -3.91   -3.23   -2.11   -0.75    0.69    2.20    4.01    6.45
+   275.0    0.00   -0.14   -0.51   -1.00   -1.50   -1.95   -2.38   -2.85   -3.36   -3.82   -4.03   -3.83   -3.12   -1.98   -0.61    0.81    2.28    4.02    6.39
+   280.0    0.00   -0.14   -0.52   -1.01   -1.50   -1.95   -2.37   -2.83   -3.33   -3.78   -3.98   -3.76   -3.03   -1.88   -0.51    0.89    2.31    4.00    6.33
+   285.0    0.00   -0.15   -0.52   -1.01   -1.51   -1.95   -2.37   -2.83   -3.31   -3.74   -3.93   -3.70   -2.97   -1.82   -0.46    0.92    2.31    3.95    6.25
+   290.0    0.00   -0.15   -0.53   -1.02   -1.52   -1.96   -2.38   -2.83   -3.31   -3.72   -3.90   -3.66   -2.92   -1.78   -0.45    0.90    2.26    3.88    6.17
+   295.0    0.00   -0.16   -0.54   -1.03   -1.53   -1.98   -2.40   -2.85   -3.31   -3.71   -3.87   -3.63   -2.90   -1.78   -0.48    0.85    2.18    3.80    6.10
+   300.0    0.00   -0.16   -0.55   -1.04   -1.55   -2.01   -2.44   -2.87   -3.33   -3.71   -3.86   -3.61   -2.90   -1.81   -0.54    0.76    2.08    3.71    6.03
+   305.0    0.00   -0.16   -0.55   -1.06   -1.57   -2.04   -2.47   -2.91   -3.36   -3.72   -3.85   -3.60   -2.91   -1.85   -0.62    0.65    1.97    3.62    5.98
+   310.0    0.00   -0.17   -0.56   -1.07   -1.59   -2.07   -2.52   -2.96   -3.39   -3.74   -3.86   -3.61   -2.93   -1.91   -0.71    0.54    1.87    3.54    5.94
+   315.0    0.00   -0.17   -0.57   -1.08   -1.62   -2.11   -2.56   -3.00   -3.42   -3.75   -3.86   -3.62   -2.96   -1.98   -0.80    0.43    1.77    3.48    5.92
+   320.0    0.00   -0.18   -0.57   -1.10   -1.64   -2.14   -2.60   -3.04   -3.45   -3.77   -3.87   -3.63   -3.00   -2.04   -0.90    0.33    1.70    3.45    5.91
+   325.0    0.00   -0.18   -0.58   -1.11   -1.66   -2.17   -2.64   -3.08   -3.48   -3.79   -3.89   -3.66   -3.05   -2.12   -0.99    0.26    1.66    3.44    5.90
+   330.0    0.00   -0.18   -0.59   -1.12   -1.68   -2.20   -2.67   -3.10   -3.50   -3.80   -3.90   -3.69   -3.10   -2.19   -1.07    0.19    1.63    3.45    5.90
+   335.0    0.00   -0.19   -0.59   -1.13   -1.69   -2.22   -2.69   -3.12   -3.51   -3.82   -3.92   -3.72   -3.16   -2.27   -1.14    0.14    1.63    3.48    5.91
+   340.0    0.00   -0.19   -0.60   -1.14   -1.71   -2.23   -2.70   -3.13   -3.52   -3.82   -3.94   -3.77   -3.23   -2.35   -1.22    0.10    1.63    3.51    5.90
+   345.0    0.00   -0.19   -0.61   -1.15   -1.72   -2.24   -2.71   -3.13   -3.52   -3.83   -3.97   -3.81   -3.30   -2.44   -1.29    0.06    1.63    3.53    5.89
+   350.0    0.00   -0.19   -0.61   -1.16   -1.73   -2.25   -2.71   -3.13   -3.52   -3.84   -3.99   -3.87   -3.38   -2.52   -1.37    0.01    1.62    3.54    5.86
+   355.0    0.00   -0.20   -0.62   -1.16   -1.73   -2.25   -2.71   -3.13   -3.52   -3.85   -4.02   -3.92   -3.45   -2.60   -1.45   -0.04    1.59    3.52    5.81
+   360.0    0.00   -0.20   -0.62   -1.17   -1.74   -2.26   -2.71   -3.13   -3.52   -3.86   -4.05   -3.96   -3.51   -2.68   -1.52   -0.10    1.54    3.48    5.75
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TRM41249.00     SCIT                                        TYPE / SERIAL NO    
+FIELD               NGS/TUM                  3    21-FEB-06 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      1.40      1.24     57.04                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.34   -0.62   -0.97   -1.48   -2.09   -2.65   -3.19   -3.57   -3.80   -3.94   -3.86   -3.67   -3.24   -2.60   -1.43    0.39
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.40      0.58     59.16                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.53   -0.92   -1.40   -1.82   -2.32   -2.83   -3.41   -3.85   -4.23   -4.45   -4.23   -3.78   -2.95   -1.83   -0.41    1.66
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TRM41249.00     TZGD                                        TYPE / SERIAL NO    
+FIELD               NGS/TUM                  3    10-AUG-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.90      0.14     52.74                              NORTH / EAST / UP   
+   NOAZI    0.00    0.16    0.28    0.03   -0.28   -0.79   -1.25   -1.79   -2.07   -2.20   -2.04   -1.66   -1.07   -0.34    0.80    2.47    4.79
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.50     -0.82     59.46                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.23   -0.52   -0.90   -1.32   -1.82   -2.23   -2.71   -3.15   -3.43   -3.35   -3.03   -2.38   -1.55   -0.53    0.59    1.96
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TRM41249USCG    SCIT                                        TYPE / SERIAL NO    
+FIELD               NGS/TUM                  4    11-AUG-06 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+     -2.80     -2.36     62.54                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.04   -0.22   -0.47   -0.78   -1.29   -1.85   -2.29   -2.67   -2.90   -3.04   -2.96   -2.77   -2.34   -1.70   -0.53    1.29
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -3.80     -2.12     60.96                              NORTH / EAST / UP   
+   NOAZI    0.00    0.57    0.78    0.70    0.48   -0.02   -0.53   -1.11   -1.65   -2.03   -2.05   -1.83   -1.18   -0.35    0.57    1.79    3.26
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TRM4800         NONE                                        TYPE / SERIAL NO    
+FIELD               NGS/TUM                  1    10-AUG-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.40      1.04    157.14                              NORTH / EAST / UP   
+   NOAZI    0.00    0.46    0.98    1.43    1.62    1.71    1.65    1.41    1.13    0.80    0.56    0.34    0.33    0.66    1.40    2.97    5.69
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.70      0.68    170.96                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.43   -0.52   -0.50   -0.42   -0.42   -0.43   -0.71   -1.15   -1.53   -1.85   -2.03   -1.98   -1.65   -1.03    0.09    2.06
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TRM55971.00     NONE                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               3    06-NOV-06 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+      1.07     -0.19     67.17                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.03   -0.14   -0.30   -0.53   -0.82   -1.17   -1.56   -1.93   -2.22   -2.36   -2.31   -2.05   -1.61   -1.01   -0.21    0.94    2.62    4.97
+     0.0    0.00   -0.03   -0.12   -0.28   -0.52   -0.84   -1.24   -1.66   -2.07   -2.40   -2.58   -2.58   -2.39   -2.02   -1.49   -0.76    0.25    1.66    3.53
+     5.0    0.00   -0.03   -0.13   -0.29   -0.53   -0.85   -1.24   -1.67   -2.08   -2.42   -2.61   -2.62   -2.43   -2.06   -1.51   -0.76    0.27    1.68    3.51
+    10.0    0.00   -0.04   -0.13   -0.29   -0.53   -0.85   -1.24   -1.67   -2.09   -2.43   -2.63   -2.64   -2.45   -2.07   -1.50   -0.72    0.33    1.76    3.58
+    15.0    0.00   -0.04   -0.13   -0.29   -0.53   -0.84   -1.23   -1.66   -2.08   -2.43   -2.63   -2.65   -2.45   -2.06   -1.46   -0.65    0.44    1.89    3.75
+    20.0    0.00   -0.04   -0.13   -0.30   -0.53   -0.84   -1.22   -1.64   -2.06   -2.41   -2.61   -2.63   -2.43   -2.01   -1.40   -0.56    0.57    2.08    3.99
+    25.0    0.00   -0.04   -0.14   -0.30   -0.53   -0.83   -1.20   -1.62   -2.03   -2.37   -2.58   -2.59   -2.38   -1.95   -1.32   -0.45    0.73    2.31    4.32
+    30.0    0.00   -0.04   -0.14   -0.30   -0.53   -0.82   -1.18   -1.58   -1.98   -2.32   -2.52   -2.52   -2.31   -1.87   -1.22   -0.32    0.91    2.57    4.70
+    35.0    0.00   -0.04   -0.15   -0.31   -0.53   -0.81   -1.16   -1.54   -1.93   -2.26   -2.45   -2.45   -2.22   -1.79   -1.13   -0.20    1.08    2.84    5.10
+    40.0    0.00   -0.04   -0.15   -0.31   -0.53   -0.81   -1.14   -1.50   -1.88   -2.19   -2.37   -2.36   -2.14   -1.70   -1.03   -0.09    1.24    3.09    5.50
+    45.0    0.00   -0.04   -0.15   -0.32   -0.54   -0.80   -1.12   -1.47   -1.82   -2.11   -2.28   -2.27   -2.05   -1.62   -0.95    0.00    1.38    3.33    5.87
+    50.0    0.00   -0.05   -0.16   -0.33   -0.54   -0.80   -1.10   -1.44   -1.77   -2.05   -2.20   -2.19   -1.97   -1.55   -0.89    0.07    1.49    3.51    6.18
+    55.0    0.00   -0.05   -0.16   -0.33   -0.55   -0.80   -1.10   -1.42   -1.73   -2.00   -2.14   -2.12   -1.91   -1.50   -0.86    0.11    1.55    3.63    6.39
+    60.0    0.00   -0.05   -0.17   -0.34   -0.56   -0.81   -1.10   -1.41   -1.71   -1.96   -2.10   -2.08   -1.87   -1.47   -0.84    0.11    1.57    3.69    6.50
+    65.0    0.00   -0.05   -0.17   -0.35   -0.57   -0.82   -1.10   -1.41   -1.70   -1.94   -2.08   -2.05   -1.86   -1.47   -0.86    0.08    1.53    3.66    6.49
+    70.0    0.00   -0.05   -0.17   -0.36   -0.58   -0.83   -1.12   -1.42   -1.71   -1.95   -2.08   -2.06   -1.87   -1.49   -0.90    0.02    1.46    3.57    6.37
+    75.0    0.00   -0.05   -0.18   -0.36   -0.59   -0.85   -1.13   -1.44   -1.73   -1.97   -2.10   -2.08   -1.89   -1.53   -0.96   -0.06    1.34    3.41    6.16
+    80.0    0.00   -0.05   -0.18   -0.37   -0.60   -0.86   -1.15   -1.46   -1.76   -2.00   -2.13   -2.12   -1.94   -1.59   -1.03   -0.16    1.20    3.21    5.88
+    85.0    0.00   -0.05   -0.18   -0.37   -0.60   -0.87   -1.17   -1.49   -1.79   -2.04   -2.18   -2.16   -1.98   -1.64   -1.10   -0.27    1.04    2.98    5.57
+    90.0    0.00   -0.05   -0.18   -0.37   -0.61   -0.88   -1.18   -1.51   -1.82   -2.08   -2.22   -2.20   -2.03   -1.69   -1.17   -0.36    0.89    2.76    5.26
+    95.0    0.00   -0.05   -0.18   -0.37   -0.61   -0.88   -1.19   -1.52   -1.84   -2.11   -2.25   -2.24   -2.06   -1.72   -1.21   -0.44    0.76    2.56    4.99
+   100.0    0.00   -0.05   -0.18   -0.37   -0.60   -0.88   -1.19   -1.53   -1.86   -2.12   -2.27   -2.25   -2.07   -1.73   -1.23   -0.48    0.67    2.41    4.79
+   105.0    0.00   -0.05   -0.17   -0.36   -0.60   -0.87   -1.19   -1.53   -1.86   -2.12   -2.27   -2.25   -2.06   -1.71   -1.22   -0.49    0.62    2.32    4.67
+   110.0    0.00   -0.05   -0.17   -0.35   -0.59   -0.86   -1.18   -1.52   -1.85   -2.11   -2.25   -2.22   -2.02   -1.67   -1.17   -0.46    0.62    2.29    4.65
+   115.0    0.00   -0.04   -0.16   -0.34   -0.57   -0.85   -1.16   -1.50   -1.83   -2.09   -2.22   -2.18   -1.96   -1.60   -1.10   -0.40    0.67    2.33    4.71
+   120.0    0.00   -0.04   -0.16   -0.33   -0.56   -0.83   -1.15   -1.49   -1.81   -2.07   -2.19   -2.13   -1.89   -1.51   -1.01   -0.31    0.75    2.41    4.85
+   125.0    0.00   -0.04   -0.15   -0.32   -0.55   -0.82   -1.13   -1.47   -1.80   -2.05   -2.15   -2.07   -1.82   -1.42   -0.90   -0.20    0.86    2.53    5.02
+   130.0    0.00   -0.04   -0.14   -0.31   -0.53   -0.80   -1.12   -1.47   -1.79   -2.04   -2.13   -2.03   -1.75   -1.34   -0.81   -0.10    0.97    2.66    5.19
+   135.0    0.00   -0.04   -0.14   -0.30   -0.52   -0.80   -1.12   -1.47   -1.80   -2.04   -2.12   -2.00   -1.71   -1.27   -0.73   -0.01    1.07    2.77    5.34
+   140.0    0.00   -0.03   -0.13   -0.29   -0.51   -0.79   -1.12   -1.49   -1.82   -2.06   -2.13   -2.00   -1.69   -1.24   -0.68    0.05    1.13    2.85    5.42
+   145.0    0.00   -0.03   -0.12   -0.28   -0.50   -0.79   -1.14   -1.51   -1.86   -2.10   -2.17   -2.03   -1.70   -1.24   -0.67    0.07    1.16    2.87    5.43
+   150.0    0.00   -0.03   -0.12   -0.27   -0.49   -0.79   -1.15   -1.54   -1.90   -2.16   -2.23   -2.09   -1.76   -1.28   -0.70    0.04    1.13    2.83    5.35
+   155.0    0.00   -0.03   -0.11   -0.26   -0.49   -0.80   -1.17   -1.58   -1.96   -2.23   -2.31   -2.17   -1.84   -1.37   -0.78   -0.03    1.06    2.73    5.18
+   160.0    0.00   -0.02   -0.11   -0.26   -0.49   -0.80   -1.19   -1.62   -2.02   -2.30   -2.40   -2.28   -1.96   -1.49   -0.90   -0.14    0.94    2.58    4.95
+   165.0    0.00   -0.02   -0.10   -0.25   -0.48   -0.81   -1.21   -1.66   -2.08   -2.38   -2.50   -2.39   -2.09   -1.63   -1.04   -0.29    0.79    2.39    4.67
+   170.0    0.00   -0.02   -0.10   -0.25   -0.48   -0.82   -1.23   -1.69   -2.13   -2.45   -2.59   -2.51   -2.22   -1.78   -1.20   -0.44    0.63    2.20    4.38
+   175.0    0.00   -0.02   -0.10   -0.25   -0.48   -0.82   -1.25   -1.72   -2.17   -2.51   -2.67   -2.61   -2.34   -1.91   -1.34   -0.58    0.48    2.01    4.12
+   180.0    0.00   -0.02   -0.10   -0.25   -0.48   -0.82   -1.25   -1.74   -2.20   -2.55   -2.73   -2.69   -2.44   -2.03   -1.46   -0.70    0.36    1.87    3.91
+   185.0    0.00   -0.02   -0.10   -0.25   -0.49   -0.83   -1.26   -1.74   -2.21   -2.57   -2.76   -2.74   -2.51   -2.10   -1.53   -0.78    0.28    1.78    3.79
+   190.0    0.00   -0.02   -0.10   -0.25   -0.49   -0.83   -1.26   -1.74   -2.21   -2.58   -2.77   -2.76   -2.53   -2.13   -1.56   -0.80    0.26    1.75    3.76
+   195.0    0.00   -0.02   -0.10   -0.25   -0.49   -0.83   -1.25   -1.73   -2.20   -2.56   -2.76   -2.74   -2.51   -2.10   -1.54   -0.77    0.29    1.80    3.84
+   200.0    0.00   -0.02   -0.10   -0.26   -0.50   -0.83   -1.25   -1.72   -2.18   -2.54   -2.73   -2.70   -2.46   -2.03   -1.46   -0.69    0.38    1.90    3.99
+   205.0    0.00   -0.02   -0.11   -0.26   -0.50   -0.83   -1.25   -1.71   -2.15   -2.50   -2.68   -2.63   -2.37   -1.93   -1.34   -0.57    0.50    2.06    4.22
+   210.0    0.00   -0.02   -0.11   -0.27   -0.51   -0.84   -1.24   -1.69   -2.13   -2.46   -2.61   -2.54   -2.26   -1.80   -1.20   -0.42    0.66    2.24    4.49
+   215.0    0.00   -0.02   -0.11   -0.28   -0.52   -0.84   -1.24   -1.68   -2.10   -2.42   -2.55   -2.45   -2.14   -1.65   -1.04   -0.27    0.82    2.43    4.76
+   220.0    0.00   -0.02   -0.12   -0.28   -0.53   -0.85   -1.24   -1.67   -2.08   -2.38   -2.48   -2.36   -2.02   -1.52   -0.90   -0.12    0.96    2.61    5.02
+   225.0    0.00   -0.03   -0.12   -0.29   -0.54   -0.85   -1.24   -1.66   -2.05   -2.33   -2.42   -2.28   -1.92   -1.40   -0.78    0.00    1.08    2.75    5.24
+   230.0    0.00   -0.03   -0.13   -0.30   -0.54   -0.86   -1.23   -1.64   -2.03   -2.29   -2.37   -2.21   -1.84   -1.32   -0.69    0.08    1.16    2.85    5.39
+   235.0    0.00   -0.03   -0.13   -0.31   -0.55   -0.86   -1.23   -1.63   -2.00   -2.26   -2.32   -2.16   -1.79   -1.27   -0.65    0.11    1.20    2.90    5.48
+   240.0    0.00   -0.03   -0.14   -0.31   -0.56   -0.86   -1.22   -1.61   -1.97   -2.22   -2.29   -2.13   -1.76   -1.26   -0.65    0.10    1.19    2.91    5.50
+   245.0    0.00   -0.03   -0.14   -0.32   -0.56   -0.86   -1.21   -1.58   -1.93   -2.18   -2.25   -2.11   -1.77   -1.28   -0.69    0.06    1.15    2.88    5.47
+   250.0    0.00   -0.03   -0.14   -0.32   -0.56   -0.85   -1.19   -1.55   -1.90   -2.15   -2.23   -2.11   -1.79   -1.33   -0.75   -0.01    1.09    2.82    5.40
+   255.0    0.00   -0.03   -0.14   -0.32   -0.55   -0.84   -1.17   -1.52   -1.86   -2.11   -2.21   -2.12   -1.83   -1.39   -0.83   -0.09    1.02    2.76    5.31
+   260.0    0.00   -0.03   -0.15   -0.32   -0.55   -0.82   -1.14   -1.49   -1.82   -2.08   -2.20   -2.13   -1.87   -1.46   -0.91   -0.16    0.96    2.70    5.23
+   265.0    0.00   -0.03   -0.15   -0.32   -0.54   -0.81   -1.12   -1.45   -1.79   -2.06   -2.19   -2.15   -1.91   -1.52   -0.97   -0.21    0.92    2.67    5.16
+   270.0    0.00   -0.03   -0.15   -0.32   -0.53   -0.79   -1.09   -1.43   -1.76   -2.04   -2.19   -2.16   -1.94   -1.56   -1.01   -0.24    0.91    2.66    5.12
+   275.0    0.00   -0.03   -0.14   -0.31   -0.52   -0.78   -1.07   -1.41   -1.75   -2.03   -2.20   -2.18   -1.97   -1.57   -1.01   -0.23    0.93    2.68    5.12
+   280.0    0.00   -0.03   -0.14   -0.31   -0.51   -0.76   -1.06   -1.40   -1.74   -2.04   -2.21   -2.19   -1.97   -1.57   -0.99   -0.18    0.98    2.72    5.15
+   285.0    0.00   -0.03   -0.14   -0.30   -0.51   -0.75   -1.05   -1.39   -1.75   -2.05   -2.22   -2.20   -1.97   -1.54   -0.93   -0.12    1.05    2.78    5.21
+   290.0    0.00   -0.03   -0.14   -0.30   -0.50   -0.75   -1.05   -1.40   -1.76   -2.07   -2.24   -2.21   -1.95   -1.49   -0.87   -0.04    1.13    2.85    5.27
+   295.0    0.00   -0.03   -0.14   -0.29   -0.49   -0.74   -1.05   -1.42   -1.79   -2.10   -2.26   -2.21   -1.92   -1.44   -0.79    0.04    1.20    2.91    5.34
+   300.0    0.00   -0.03   -0.13   -0.29   -0.49   -0.75   -1.06   -1.44   -1.82   -2.13   -2.29   -2.21   -1.90   -1.39   -0.72    0.11    1.26    2.95    5.38
+   305.0    0.00   -0.03   -0.13   -0.28   -0.49   -0.75   -1.08   -1.46   -1.85   -2.17   -2.31   -2.22   -1.88   -1.34   -0.67    0.16    1.28    2.95    5.40
+   310.0    0.00   -0.03   -0.13   -0.28   -0.49   -0.76   -1.09   -1.49   -1.88   -2.20   -2.33   -2.22   -1.87   -1.32   -0.65    0.17    1.27    2.92    5.37
+   315.0    0.00   -0.03   -0.13   -0.28   -0.49   -0.76   -1.11   -1.51   -1.91   -2.22   -2.35   -2.23   -1.87   -1.32   -0.66    0.14    1.22    2.85    5.29
+   320.0    0.00   -0.03   -0.12   -0.28   -0.49   -0.77   -1.13   -1.54   -1.94   -2.24   -2.36   -2.24   -1.88   -1.35   -0.70    0.08    1.13    2.74    5.16
+   325.0    0.00   -0.03   -0.12   -0.27   -0.49   -0.78   -1.15   -1.56   -1.96   -2.26   -2.38   -2.26   -1.92   -1.40   -0.78   -0.02    1.01    2.59    4.98
+   330.0    0.00   -0.03   -0.12   -0.27   -0.50   -0.79   -1.16   -1.58   -1.98   -2.28   -2.40   -2.29   -1.97   -1.48   -0.88   -0.15    0.87    2.42    4.76
+   335.0    0.00   -0.03   -0.12   -0.27   -0.50   -0.80   -1.18   -1.60   -1.99   -2.29   -2.42   -2.33   -2.03   -1.57   -1.00   -0.28    0.72    2.24    4.52
+   340.0    0.00   -0.03   -0.12   -0.28   -0.51   -0.81   -1.19   -1.61   -2.01   -2.31   -2.44   -2.37   -2.10   -1.68   -1.13   -0.42    0.57    2.07    4.26
+   345.0    0.00   -0.03   -0.12   -0.28   -0.51   -0.82   -1.21   -1.63   -2.03   -2.33   -2.48   -2.42   -2.18   -1.78   -1.25   -0.55    0.44    1.91    4.02
+   350.0    0.00   -0.03   -0.12   -0.28   -0.52   -0.83   -1.22   -1.64   -2.04   -2.35   -2.51   -2.48   -2.26   -1.88   -1.35   -0.65    0.34    1.78    3.80
+   355.0    0.00   -0.03   -0.12   -0.28   -0.52   -0.84   -1.23   -1.65   -2.06   -2.38   -2.55   -2.53   -2.33   -1.96   -1.44   -0.72    0.27    1.69    3.63
+   360.0    0.00   -0.03   -0.12   -0.28   -0.52   -0.84   -1.24   -1.66   -2.07   -2.40   -2.58   -2.58   -2.39   -2.02   -1.49   -0.76    0.25    1.66    3.53
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.14      0.42     57.65                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.12   -0.43   -0.88   -1.38   -1.89   -2.40   -2.93   -3.43   -3.83   -3.96   -3.71   -3.02   -1.99   -0.76    0.50    1.83    3.44    5.66
+     0.0    0.00   -0.19   -0.57   -1.04   -1.51   -1.94   -2.34   -2.72   -3.10   -3.43   -3.57   -3.37   -2.75   -1.72   -0.45    0.92    2.30    3.84    5.87
+     5.0    0.00   -0.19   -0.57   -1.04   -1.51   -1.94   -2.33   -2.71   -3.10   -3.43   -3.58   -3.39   -2.78   -1.77   -0.51    0.84    2.21    3.72    5.69
+    10.0    0.00   -0.20   -0.57   -1.04   -1.52   -1.94   -2.33   -2.72   -3.11   -3.44   -3.60   -3.42   -2.81   -1.82   -0.58    0.74    2.08    3.57    5.50
+    15.0    0.00   -0.20   -0.58   -1.05   -1.52   -1.95   -2.35   -2.74   -3.13   -3.47   -3.62   -3.44   -2.85   -1.87   -0.65    0.63    1.94    3.41    5.32
+    20.0    0.00   -0.20   -0.58   -1.05   -1.53   -1.97   -2.37   -2.77   -3.17   -3.51   -3.66   -3.47   -2.87   -1.91   -0.72    0.53    1.80    3.26    5.18
+    25.0    0.00   -0.20   -0.58   -1.06   -1.55   -1.99   -2.41   -2.82   -3.22   -3.56   -3.70   -3.50   -2.89   -1.93   -0.77    0.44    1.68    3.13    5.09
+    30.0    0.00   -0.20   -0.58   -1.06   -1.56   -2.02   -2.45   -2.88   -3.29   -3.62   -3.74   -3.52   -2.90   -1.94   -0.80    0.37    1.58    3.04    5.07
+    35.0    0.00   -0.20   -0.58   -1.07   -1.58   -2.06   -2.51   -2.95   -3.37   -3.69   -3.79   -3.54   -2.89   -1.93   -0.81    0.34    1.53    3.01    5.14
+    40.0    0.00   -0.20   -0.58   -1.08   -1.60   -2.09   -2.56   -3.02   -3.45   -3.77   -3.85   -3.56   -2.89   -1.91   -0.79    0.33    1.52    3.05    5.30
+    45.0    0.00   -0.20   -0.58   -1.08   -1.61   -2.13   -2.61   -3.09   -3.53   -3.84   -3.90   -3.59   -2.88   -1.88   -0.76    0.36    1.56    3.15    5.53
+    50.0    0.00   -0.19   -0.58   -1.09   -1.63   -2.16   -2.66   -3.15   -3.60   -3.91   -3.95   -3.61   -2.88   -1.86   -0.72    0.41    1.65    3.31    5.82
+    55.0    0.00   -0.19   -0.58   -1.09   -1.64   -2.18   -2.71   -3.21   -3.66   -3.97   -4.00   -3.64   -2.89   -1.84   -0.69    0.48    1.76    3.51    6.14
+    60.0    0.00   -0.19   -0.58   -1.09   -1.65   -2.20   -2.73   -3.25   -3.71   -4.02   -4.05   -3.68   -2.91   -1.84   -0.66    0.55    1.90    3.73    6.47
+    65.0    0.00   -0.18   -0.57   -1.09   -1.66   -2.21   -2.75   -3.27   -3.74   -4.06   -4.09   -3.73   -2.95   -1.87   -0.65    0.61    2.03    3.94    6.76
+    70.0    0.00   -0.18   -0.57   -1.09   -1.65   -2.22   -2.76   -3.28   -3.75   -4.08   -4.13   -3.78   -3.01   -1.91   -0.66    0.66    2.13    4.11    6.98
+    75.0    0.00   -0.18   -0.56   -1.08   -1.65   -2.21   -2.75   -3.28   -3.76   -4.10   -4.17   -3.84   -3.08   -1.97   -0.69    0.67    2.20    4.22    7.11
+    80.0    0.00   -0.17   -0.55   -1.07   -1.64   -2.20   -2.74   -3.27   -3.75   -4.11   -4.20   -3.90   -3.16   -2.06   -0.76    0.64    2.20    4.24    7.13
+    85.0    0.00   -0.16   -0.54   -1.06   -1.62   -2.18   -2.72   -3.25   -3.75   -4.12   -4.24   -3.96   -3.24   -2.15   -0.84    0.57    2.15    4.18    7.04
+    90.0    0.00   -0.16   -0.53   -1.05   -1.61   -2.16   -2.70   -3.23   -3.74   -4.13   -4.27   -4.02   -3.32   -2.24   -0.93    0.47    2.03    4.02    6.84
+    95.0    0.00   -0.15   -0.52   -1.03   -1.59   -2.14   -2.68   -3.22   -3.73   -4.14   -4.30   -4.07   -3.39   -2.32   -1.03    0.35    1.86    3.79    6.55
+   100.0    0.00   -0.14   -0.51   -1.01   -1.57   -2.12   -2.66   -3.20   -3.73   -4.15   -4.33   -4.11   -3.44   -2.39   -1.13    0.21    1.65    3.50    6.21
+   105.0    0.00   -0.14   -0.49   -0.99   -1.54   -2.10   -2.64   -3.20   -3.73   -4.16   -4.35   -4.14   -3.47   -2.43   -1.20    0.08    1.43    3.18    5.84
+   110.0    0.00   -0.13   -0.48   -0.97   -1.52   -2.07   -2.63   -3.19   -3.74   -4.18   -4.36   -4.15   -3.48   -2.45   -1.25   -0.03    1.22    2.87    5.48
+   115.0    0.00   -0.12   -0.46   -0.95   -1.49   -2.05   -2.61   -3.18   -3.74   -4.18   -4.36   -4.14   -3.46   -2.43   -1.26   -0.11    1.05    2.60    5.16
+   120.0    0.00   -0.11   -0.45   -0.92   -1.46   -2.02   -2.59   -3.17   -3.74   -4.18   -4.35   -4.11   -3.42   -2.38   -1.23   -0.14    0.93    2.39    4.92
+   125.0    0.00   -0.11   -0.43   -0.90   -1.43   -1.99   -2.56   -3.15   -3.72   -4.17   -4.33   -4.07   -3.35   -2.31   -1.17   -0.12    0.89    2.26    4.76
+   130.0    0.00   -0.10   -0.41   -0.87   -1.40   -1.95   -2.53   -3.12   -3.69   -4.14   -4.29   -4.00   -3.27   -2.21   -1.07   -0.04    0.92    2.24    4.70
+   135.0    0.00   -0.09   -0.39   -0.84   -1.36   -1.91   -2.48   -3.08   -3.65   -4.09   -4.23   -3.93   -3.17   -2.09   -0.93    0.09    1.03    2.31    4.74
+   140.0    0.00   -0.08   -0.38   -0.81   -1.32   -1.86   -2.43   -3.02   -3.59   -4.02   -4.15   -3.84   -3.06   -1.96   -0.78    0.26    1.20    2.46    4.84
+   145.0    0.00   -0.07   -0.36   -0.79   -1.28   -1.81   -2.36   -2.95   -3.51   -3.94   -4.06   -3.74   -2.95   -1.82   -0.61    0.47    1.43    2.68    5.01
+   150.0    0.00   -0.07   -0.34   -0.76   -1.24   -1.76   -2.30   -2.87   -3.42   -3.84   -3.96   -3.64   -2.84   -1.69   -0.44    0.68    1.68    2.94    5.21
+   155.0    0.00   -0.06   -0.33   -0.73   -1.20   -1.70   -2.22   -2.78   -3.32   -3.74   -3.86   -3.54   -2.74   -1.57   -0.29    0.89    1.95    3.22    5.42
+   160.0    0.00   -0.05   -0.31   -0.70   -1.16   -1.64   -2.15   -2.70   -3.23   -3.64   -3.76   -3.45   -2.64   -1.47   -0.15    1.08    2.19    3.49    5.62
+   165.0    0.00   -0.05   -0.30   -0.68   -1.12   -1.59   -2.09   -2.62   -3.14   -3.55   -3.67   -3.36   -2.57   -1.39   -0.05    1.23    2.40    3.73    5.80
+   170.0    0.00   -0.04   -0.28   -0.66   -1.09   -1.55   -2.03   -2.55   -3.06   -3.47   -3.60   -3.30   -2.51   -1.34    0.01    1.33    2.55    3.92    5.94
+   175.0    0.00   -0.04   -0.27   -0.64   -1.06   -1.51   -1.99   -2.50   -3.00   -3.41   -3.54   -3.25   -2.48   -1.32    0.04    1.38    2.65    4.05    6.05
+   180.0    0.00   -0.03   -0.26   -0.62   -1.04   -1.49   -1.96   -2.46   -2.97   -3.37   -3.50   -3.22   -2.47   -1.33    0.02    1.37    2.68    4.13    6.11
+   185.0    0.00   -0.03   -0.26   -0.61   -1.03   -1.47   -1.94   -2.44   -2.95   -3.35   -3.50   -3.23   -2.49   -1.37   -0.04    1.31    2.66    4.15    6.14
+   190.0    0.00   -0.03   -0.25   -0.60   -1.02   -1.46   -1.93   -2.44   -2.96   -3.36   -3.51   -3.25   -2.54   -1.44   -0.14    1.21    2.59    4.14    6.14
+   195.0    0.00   -0.02   -0.25   -0.60   -1.01   -1.46   -1.94   -2.46   -2.98   -3.39   -3.55   -3.30   -2.61   -1.54   -0.27    1.08    2.48    4.09    6.12
+   200.0    0.00   -0.02   -0.24   -0.60   -1.02   -1.47   -1.96   -2.49   -3.02   -3.44   -3.61   -3.37   -2.70   -1.67   -0.42    0.92    2.35    4.01    6.09
+   205.0    0.00   -0.02   -0.25   -0.60   -1.02   -1.48   -1.99   -2.53   -3.07   -3.50   -3.68   -3.46   -2.81   -1.80   -0.58    0.76    2.22    3.93    6.04
+   210.0    0.00   -0.02   -0.25   -0.61   -1.04   -1.51   -2.02   -2.57   -3.13   -3.58   -3.76   -3.56   -2.93   -1.94   -0.74    0.60    2.08    3.85    5.98
+   215.0    0.00   -0.03   -0.25   -0.61   -1.05   -1.53   -2.05   -2.62   -3.19   -3.65   -3.85   -3.66   -3.05   -2.08   -0.89    0.45    1.96    3.76    5.90
+   220.0    0.00   -0.03   -0.26   -0.62   -1.07   -1.56   -2.09   -2.68   -3.26   -3.73   -3.94   -3.76   -3.16   -2.21   -1.02    0.32    1.85    3.68    5.81
+   225.0    0.00   -0.03   -0.26   -0.64   -1.09   -1.59   -2.14   -2.73   -3.33   -3.80   -4.02   -3.85   -3.26   -2.32   -1.13    0.21    1.76    3.60    5.69
+   230.0    0.00   -0.04   -0.27   -0.65   -1.11   -1.62   -2.18   -2.78   -3.39   -3.88   -4.10   -3.93   -3.34   -2.40   -1.22    0.13    1.68    3.52    5.56
+   235.0    0.00   -0.04   -0.28   -0.67   -1.13   -1.65   -2.22   -2.84   -3.45   -3.94   -4.16   -3.99   -3.40   -2.45   -1.27    0.08    1.62    3.43    5.41
+   240.0    0.00   -0.04   -0.30   -0.69   -1.16   -1.69   -2.26   -2.89   -3.51   -4.00   -4.22   -4.04   -3.44   -2.48   -1.29    0.05    1.58    3.35    5.26
+   245.0    0.00   -0.05   -0.31   -0.71   -1.19   -1.72   -2.30   -2.94   -3.56   -4.05   -4.26   -4.07   -3.45   -2.48   -1.29    0.04    1.54    3.26    5.10
+   250.0    0.00   -0.06   -0.32   -0.73   -1.21   -1.75   -2.34   -2.98   -3.61   -4.10   -4.30   -4.09   -3.45   -2.46   -1.27    0.05    1.51    3.17    4.95
+   255.0    0.00   -0.06   -0.33   -0.75   -1.24   -1.79   -2.38   -3.02   -3.65   -4.13   -4.32   -4.09   -3.43   -2.43   -1.23    0.07    1.48    3.09    4.81
+   260.0    0.00   -0.07   -0.35   -0.77   -1.27   -1.82   -2.42   -3.06   -3.68   -4.15   -4.33   -4.08   -3.40   -2.39   -1.19    0.09    1.46    3.01    4.71
+   265.0    0.00   -0.08   -0.36   -0.79   -1.29   -1.85   -2.44   -3.08   -3.70   -4.16   -4.33   -4.07   -3.37   -2.34   -1.14    0.11    1.44    2.95    4.64
+   270.0    0.00   -0.09   -0.38   -0.81   -1.32   -1.87   -2.47   -3.10   -3.71   -4.16   -4.32   -4.04   -3.34   -2.30   -1.11    0.14    1.44    2.91    4.61
+   275.0    0.00   -0.09   -0.40   -0.83   -1.34   -1.89   -2.48   -3.10   -3.70   -4.15   -4.30   -4.02   -3.31   -2.27   -1.07    0.16    1.44    2.89    4.63
+   280.0    0.00   -0.10   -0.41   -0.86   -1.37   -1.91   -2.49   -3.10   -3.69   -4.13   -4.27   -3.99   -3.28   -2.24   -1.04    0.18    1.44    2.90    4.68
+   285.0    0.00   -0.11   -0.43   -0.88   -1.39   -1.93   -2.50   -3.09   -3.66   -4.09   -4.23   -3.96   -3.25   -2.22   -1.02    0.20    1.47    2.93    4.78
+   290.0    0.00   -0.12   -0.44   -0.90   -1.41   -1.94   -2.50   -3.07   -3.62   -4.04   -4.18   -3.92   -3.23   -2.20   -1.00    0.23    1.50    2.98    4.90
+   295.0    0.00   -0.12   -0.45   -0.92   -1.43   -1.95   -2.49   -3.05   -3.58   -3.99   -4.13   -3.88   -3.20   -2.18   -0.98    0.27    1.55    3.05    5.05
+   300.0    0.00   -0.13   -0.47   -0.93   -1.45   -1.96   -2.49   -3.02   -3.53   -3.93   -4.08   -3.83   -3.17   -2.15   -0.94    0.31    1.61    3.14    5.22
+   305.0    0.00   -0.14   -0.48   -0.95   -1.46   -1.97   -2.48   -2.99   -3.49   -3.87   -4.02   -3.78   -3.12   -2.11   -0.90    0.37    1.69    3.25    5.39
+   310.0    0.00   -0.14   -0.49   -0.97   -1.48   -1.98   -2.47   -2.96   -3.44   -3.81   -3.95   -3.72   -3.07   -2.06   -0.84    0.44    1.77    3.36    5.57
+   315.0    0.00   -0.15   -0.51   -0.98   -1.49   -1.98   -2.46   -2.93   -3.39   -3.75   -3.89   -3.66   -3.01   -2.00   -0.77    0.52    1.87    3.48    5.74
+   320.0    0.00   -0.16   -0.52   -0.99   -1.50   -1.99   -2.45   -2.91   -3.35   -3.70   -3.83   -3.60   -2.95   -1.93   -0.70    0.61    1.98    3.60    5.89
+   325.0    0.00   -0.16   -0.53   -1.00   -1.51   -1.99   -2.44   -2.88   -3.31   -3.65   -3.77   -3.54   -2.89   -1.86   -0.61    0.71    2.08    3.71    6.02
+   330.0    0.00   -0.17   -0.53   -1.01   -1.51   -1.99   -2.43   -2.86   -3.27   -3.60   -3.72   -3.48   -2.82   -1.80   -0.54    0.80    2.18    3.82    6.13
+   335.0    0.00   -0.17   -0.54   -1.02   -1.52   -1.98   -2.41   -2.83   -3.24   -3.56   -3.67   -3.43   -2.77   -1.74   -0.47    0.88    2.27    3.90    6.20
+   340.0    0.00   -0.18   -0.55   -1.02   -1.52   -1.98   -2.40   -2.81   -3.20   -3.52   -3.63   -3.39   -2.74   -1.69   -0.41    0.95    2.34    3.96    6.23
+   345.0    0.00   -0.18   -0.55   -1.03   -1.52   -1.97   -2.38   -2.78   -3.17   -3.49   -3.60   -3.37   -2.71   -1.67   -0.38    0.98    2.39    3.99    6.21
+   350.0    0.00   -0.19   -0.56   -1.03   -1.52   -1.96   -2.36   -2.76   -3.14   -3.46   -3.58   -3.36   -2.71   -1.67   -0.38    0.99    2.40    3.98    6.14
+   355.0    0.00   -0.19   -0.56   -1.04   -1.51   -1.95   -2.35   -2.74   -3.12   -3.44   -3.57   -3.36   -2.72   -1.69   -0.40    0.97    2.37    3.93    6.03
+   360.0    0.00   -0.19   -0.57   -1.04   -1.51   -1.94   -2.34   -2.72   -3.10   -3.43   -3.57   -3.37   -2.75   -1.72   -0.45    0.92    2.30    3.84    5.87
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TRM55971.00     SCIT                                        TYPE / SERIAL NO    
+FIELD               NGS/TUM                  2    06-NOV-06 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      2.30      1.14     67.14                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.44   -0.82   -1.17   -1.48   -1.89   -2.35   -2.79   -3.07   -3.30   -3.34   -3.36   -3.27   -3.14   -2.80   -2.13   -0.71
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.80      0.98     59.86                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.43   -0.82   -1.20   -1.62   -1.82   -2.33   -2.81   -3.35   -3.73   -3.85   -3.73   -3.38   -2.65   -1.73   -0.41    1.66
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TRM55971.00     TZGD                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               8    15-MAY-08 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+      1.13     -0.17     65.02                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.06   -0.25   -0.54   -0.92   -1.36   -1.84   -2.29   -2.67   -2.94   -3.03   -2.93   -2.61   -2.05   -1.22   -0.08    1.45    3.39    5.68
+     0.0    0.00   -0.05   -0.22   -0.50   -0.87   -1.33   -1.85   -2.38   -2.88   -3.25   -3.43   -3.37   -3.08   -2.59   -1.94   -1.08    0.09    1.72    3.87
+     5.0    0.00   -0.05   -0.22   -0.50   -0.87   -1.32   -1.84   -2.37   -2.87   -3.24   -3.42   -3.37   -3.08   -2.59   -1.92   -1.04    0.16    1.81    3.98
+    10.0    0.00   -0.05   -0.22   -0.50   -0.87   -1.32   -1.82   -2.35   -2.84   -3.21   -3.39   -3.35   -3.06   -2.56   -1.87   -0.94    0.31    2.00    4.17
+    15.0    0.00   -0.05   -0.22   -0.49   -0.86   -1.31   -1.80   -2.32   -2.79   -3.16   -3.34   -3.30   -3.02   -2.51   -1.78   -0.80    0.52    2.26    4.44
+    20.0    0.00   -0.05   -0.22   -0.49   -0.86   -1.29   -1.78   -2.28   -2.74   -3.09   -3.27   -3.23   -2.96   -2.44   -1.67   -0.62    0.77    2.57    4.77
+    25.0    0.00   -0.05   -0.22   -0.49   -0.86   -1.28   -1.76   -2.24   -2.67   -3.01   -3.19   -3.15   -2.88   -2.35   -1.54   -0.43    1.05    2.92    5.14
+    30.0    0.00   -0.05   -0.22   -0.49   -0.85   -1.28   -1.74   -2.20   -2.61   -2.93   -3.09   -3.06   -2.78   -2.24   -1.40   -0.23    1.33    3.27    5.53
+    35.0    0.00   -0.05   -0.22   -0.49   -0.85   -1.27   -1.72   -2.16   -2.56   -2.85   -3.00   -2.96   -2.68   -2.14   -1.27   -0.04    1.58    3.60    5.91
+    40.0    0.00   -0.05   -0.22   -0.49   -0.86   -1.27   -1.71   -2.14   -2.51   -2.78   -2.91   -2.86   -2.58   -2.03   -1.15    0.12    1.80    3.88    6.27
+    45.0    0.00   -0.05   -0.22   -0.50   -0.86   -1.28   -1.71   -2.13   -2.48   -2.73   -2.84   -2.78   -2.49   -1.94   -1.05    0.24    1.96    4.10    6.57
+    50.0    0.00   -0.05   -0.22   -0.50   -0.87   -1.29   -1.72   -2.12   -2.46   -2.69   -2.78   -2.70   -2.42   -1.86   -0.97    0.32    2.07    4.26    6.80
+    55.0    0.00   -0.05   -0.22   -0.51   -0.88   -1.30   -1.74   -2.13   -2.46   -2.67   -2.74   -2.65   -2.36   -1.81   -0.92    0.36    2.11    4.33    6.95
+    60.0    0.00   -0.05   -0.23   -0.51   -0.89   -1.32   -1.76   -2.15   -2.47   -2.67   -2.72   -2.62   -2.32   -1.77   -0.90    0.37    2.10    4.33    7.02
+    65.0    0.00   -0.05   -0.23   -0.52   -0.90   -1.33   -1.78   -2.18   -2.49   -2.68   -2.72   -2.60   -2.29   -1.75   -0.90    0.34    2.04    4.26    6.99
+    70.0    0.00   -0.06   -0.23   -0.52   -0.91   -1.35   -1.80   -2.21   -2.52   -2.70   -2.73   -2.60   -2.28   -1.74   -0.91    0.30    1.96    4.15    6.89
+    75.0    0.00   -0.06   -0.24   -0.53   -0.92   -1.37   -1.83   -2.24   -2.55   -2.73   -2.75   -2.61   -2.28   -1.74   -0.92    0.24    1.86    4.01    6.73
+    80.0    0.00   -0.06   -0.24   -0.54   -0.93   -1.39   -1.85   -2.26   -2.58   -2.76   -2.78   -2.62   -2.29   -1.75   -0.94    0.20    1.77    3.87    6.53
+    85.0    0.00   -0.06   -0.24   -0.54   -0.94   -1.40   -1.86   -2.28   -2.60   -2.78   -2.80   -2.64   -2.30   -1.75   -0.95    0.16    1.69    3.74    6.34
+    90.0    0.00   -0.06   -0.25   -0.55   -0.95   -1.41   -1.88   -2.30   -2.62   -2.80   -2.81   -2.65   -2.30   -1.75   -0.95    0.15    1.65    3.64    6.16
+    95.0    0.00   -0.06   -0.25   -0.56   -0.96   -1.42   -1.88   -2.30   -2.62   -2.80   -2.82   -2.65   -2.29   -1.74   -0.94    0.16    1.64    3.60    6.03
+   100.0    0.00   -0.07   -0.26   -0.56   -0.96   -1.42   -1.89   -2.31   -2.63   -2.80   -2.81   -2.64   -2.28   -1.72   -0.91    0.19    1.67    3.60    5.96
+   105.0    0.00   -0.07   -0.26   -0.57   -0.97   -1.43   -1.89   -2.31   -2.62   -2.80   -2.81   -2.64   -2.27   -1.70   -0.88    0.24    1.74    3.66    5.96
+   110.0    0.00   -0.07   -0.27   -0.58   -0.98   -1.43   -1.89   -2.31   -2.62   -2.80   -2.81   -2.63   -2.26   -1.67   -0.84    0.30    1.82    3.75    6.01
+   115.0    0.00   -0.07   -0.27   -0.58   -0.98   -1.44   -1.90   -2.31   -2.62   -2.80   -2.81   -2.63   -2.25   -1.66   -0.81    0.36    1.91    3.87    6.11
+   120.0    0.00   -0.08   -0.28   -0.59   -0.99   -1.45   -1.91   -2.32   -2.63   -2.81   -2.82   -2.64   -2.26   -1.66   -0.79    0.40    1.99    3.99    6.23
+   125.0    0.00   -0.08   -0.28   -0.60   -1.00   -1.46   -1.92   -2.33   -2.65   -2.84   -2.85   -2.67   -2.29   -1.68   -0.80    0.42    2.05    4.08    6.34
+   130.0    0.00   -0.08   -0.29   -0.60   -1.01   -1.47   -1.93   -2.35   -2.68   -2.88   -2.90   -2.72   -2.34   -1.72   -0.83    0.41    2.06    4.12    6.42
+   135.0    0.00   -0.08   -0.29   -0.61   -1.02   -1.48   -1.95   -2.38   -2.72   -2.93   -2.96   -2.80   -2.41   -1.79   -0.89    0.35    2.02    4.11    6.43
+   140.0    0.00   -0.08   -0.30   -0.62   -1.03   -1.50   -1.97   -2.41   -2.77   -2.99   -3.04   -2.89   -2.51   -1.89   -0.99    0.26    1.92    4.01    6.35
+   145.0    0.00   -0.09   -0.30   -0.63   -1.04   -1.51   -1.99   -2.45   -2.82   -3.07   -3.14   -3.00   -2.63   -2.02   -1.12    0.12    1.77    3.85    6.20
+   150.0    0.00   -0.09   -0.30   -0.63   -1.05   -1.53   -2.01   -2.48   -2.87   -3.14   -3.23   -3.12   -2.76   -2.15   -1.27   -0.05    1.57    3.61    5.96
+   155.0    0.00   -0.09   -0.31   -0.64   -1.06   -1.54   -2.03   -2.51   -2.92   -3.21   -3.33   -3.23   -2.89   -2.30   -1.43   -0.25    1.33    3.33    5.66
+   160.0    0.00   -0.09   -0.31   -0.65   -1.07   -1.55   -2.05   -2.53   -2.96   -3.28   -3.42   -3.34   -3.02   -2.44   -1.59   -0.44    1.08    3.03    5.34
+   165.0    0.00   -0.09   -0.31   -0.65   -1.07   -1.55   -2.06   -2.55   -2.99   -3.33   -3.49   -3.44   -3.13   -2.57   -1.74   -0.63    0.84    2.73    5.02
+   170.0    0.00   -0.09   -0.31   -0.65   -1.07   -1.55   -2.06   -2.56   -3.01   -3.36   -3.55   -3.51   -3.22   -2.68   -1.87   -0.79    0.64    2.47    4.74
+   175.0    0.00   -0.09   -0.31   -0.65   -1.07   -1.55   -2.06   -2.56   -3.02   -3.38   -3.58   -3.56   -3.28   -2.75   -1.96   -0.90    0.48    2.28    4.54
+   180.0    0.00   -0.09   -0.31   -0.65   -1.07   -1.55   -2.05   -2.55   -3.01   -3.37   -3.58   -3.57   -3.30   -2.78   -2.00   -0.96    0.40    2.17    4.44
+   185.0    0.00   -0.09   -0.31   -0.65   -1.07   -1.54   -2.04   -2.53   -2.99   -3.35   -3.56   -3.55   -3.29   -2.77   -2.00   -0.96    0.39    2.16    4.45
+   190.0    0.00   -0.09   -0.31   -0.64   -1.06   -1.53   -2.03   -2.51   -2.96   -3.32   -3.52   -3.51   -3.25   -2.73   -1.95   -0.90    0.46    2.25    4.58
+   195.0    0.00   -0.09   -0.31   -0.64   -1.05   -1.52   -2.01   -2.49   -2.93   -3.27   -3.46   -3.44   -3.17   -2.64   -1.85   -0.79    0.61    2.43    4.80
+   200.0    0.00   -0.09   -0.30   -0.63   -1.04   -1.51   -1.99   -2.47   -2.89   -3.21   -3.39   -3.35   -3.07   -2.53   -1.73   -0.63    0.81    2.68    5.09
+   205.0    0.00   -0.08   -0.30   -0.62   -1.03   -1.49   -1.97   -2.44   -2.85   -3.16   -3.31   -3.26   -2.96   -2.41   -1.57   -0.44    1.04    2.97    5.42
+   210.0    0.00   -0.08   -0.29   -0.61   -1.02   -1.48   -1.96   -2.41   -2.81   -3.10   -3.23   -3.15   -2.84   -2.27   -1.41   -0.24    1.30    3.27    5.75
+   215.0    0.00   -0.08   -0.29   -0.60   -1.01   -1.46   -1.94   -2.39   -2.77   -3.04   -3.15   -3.05   -2.72   -2.13   -1.25   -0.04    1.54    3.56    6.05
+   220.0    0.00   -0.08   -0.28   -0.59   -0.99   -1.45   -1.92   -2.36   -2.74   -2.99   -3.07   -2.96   -2.61   -2.00   -1.10    0.14    1.76    3.80    6.29
+   225.0    0.00   -0.08   -0.27   -0.58   -0.98   -1.43   -1.90   -2.34   -2.70   -2.94   -3.01   -2.87   -2.51   -1.89   -0.97    0.29    1.93    3.99    6.45
+   230.0    0.00   -0.07   -0.27   -0.57   -0.96   -1.41   -1.88   -2.32   -2.68   -2.90   -2.95   -2.80   -2.42   -1.79   -0.87    0.39    2.04    4.11    6.54
+   235.0    0.00   -0.07   -0.26   -0.56   -0.95   -1.40   -1.86   -2.30   -2.65   -2.86   -2.90   -2.74   -2.35   -1.73   -0.81    0.45    2.10    4.16    6.55
+   240.0    0.00   -0.07   -0.25   -0.55   -0.93   -1.38   -1.85   -2.28   -2.63   -2.83   -2.86   -2.69   -2.30   -1.68   -0.78    0.47    2.11    4.15    6.51
+   245.0    0.00   -0.07   -0.25   -0.54   -0.92   -1.36   -1.83   -2.26   -2.61   -2.81   -2.83   -2.65   -2.27   -1.66   -0.77    0.45    2.07    4.10    6.44
+   250.0    0.00   -0.06   -0.24   -0.52   -0.90   -1.34   -1.81   -2.25   -2.59   -2.79   -2.80   -2.62   -2.24   -1.65   -0.79    0.40    2.00    4.03    6.36
+   255.0    0.00   -0.06   -0.24   -0.51   -0.89   -1.33   -1.80   -2.23   -2.58   -2.77   -2.78   -2.61   -2.24   -1.66   -0.83    0.34    1.93    3.96    6.31
+   260.0    0.00   -0.06   -0.23   -0.51   -0.87   -1.31   -1.78   -2.22   -2.57   -2.76   -2.77   -2.60   -2.24   -1.68   -0.87    0.28    1.86    3.91    6.29
+   265.0    0.00   -0.06   -0.23   -0.50   -0.86   -1.30   -1.77   -2.21   -2.56   -2.75   -2.77   -2.60   -2.25   -1.70   -0.91    0.23    1.82    3.89    6.31
+   270.0    0.00   -0.06   -0.22   -0.49   -0.85   -1.29   -1.76   -2.20   -2.55   -2.75   -2.77   -2.61   -2.26   -1.72   -0.94    0.20    1.81    3.91    6.38
+   275.0    0.00   -0.05   -0.22   -0.49   -0.85   -1.28   -1.75   -2.19   -2.54   -2.75   -2.78   -2.62   -2.28   -1.75   -0.96    0.19    1.82    3.97    6.47
+   280.0    0.00   -0.05   -0.22   -0.48   -0.84   -1.27   -1.74   -2.18   -2.54   -2.76   -2.79   -2.64   -2.31   -1.77   -0.97    0.20    1.87    4.05    6.59
+   285.0    0.00   -0.05   -0.21   -0.48   -0.84   -1.27   -1.73   -2.18   -2.54   -2.76   -2.81   -2.67   -2.33   -1.79   -0.97    0.23    1.93    4.15    6.69
+   290.0    0.00   -0.05   -0.21   -0.48   -0.84   -1.26   -1.73   -2.17   -2.54   -2.77   -2.83   -2.70   -2.36   -1.81   -0.97    0.26    2.00    4.23    6.76
+   295.0    0.00   -0.05   -0.21   -0.48   -0.83   -1.26   -1.72   -2.17   -2.54   -2.79   -2.86   -2.73   -2.40   -1.83   -0.97    0.29    2.05    4.29    6.78
+   300.0    0.00   -0.05   -0.21   -0.48   -0.84   -1.26   -1.72   -2.17   -2.55   -2.80   -2.88   -2.77   -2.43   -1.86   -0.98    0.30    2.06    4.29    6.72
+   305.0    0.00   -0.05   -0.21   -0.48   -0.84   -1.26   -1.72   -2.18   -2.56   -2.83   -2.92   -2.81   -2.47   -1.89   -1.00    0.29    2.04    4.22    6.59
+   310.0    0.00   -0.05   -0.21   -0.48   -0.84   -1.27   -1.73   -2.19   -2.58   -2.85   -2.96   -2.85   -2.52   -1.93   -1.04    0.23    1.95    4.09    6.37
+   315.0    0.00   -0.05   -0.21   -0.49   -0.85   -1.27   -1.74   -2.20   -2.60   -2.89   -3.00   -2.90   -2.57   -1.99   -1.10    0.14    1.81    3.88    6.09
+   320.0    0.00   -0.05   -0.21   -0.49   -0.85   -1.28   -1.75   -2.22   -2.63   -2.93   -3.05   -2.95   -2.63   -2.05   -1.19    0.01    1.62    3.60    5.76
+   325.0    0.00   -0.05   -0.22   -0.49   -0.86   -1.29   -1.77   -2.25   -2.67   -2.97   -3.10   -3.01   -2.69   -2.12   -1.29   -0.15    1.38    3.28    5.39
+   330.0    0.00   -0.05   -0.22   -0.49   -0.86   -1.30   -1.78   -2.27   -2.71   -3.03   -3.16   -3.07   -2.75   -2.20   -1.41   -0.33    1.11    2.93    5.02
+   335.0    0.00   -0.05   -0.22   -0.50   -0.87   -1.31   -1.80   -2.30   -2.75   -3.08   -3.22   -3.14   -2.82   -2.29   -1.54   -0.53    0.83    2.59    4.66
+   340.0    0.00   -0.05   -0.22   -0.50   -0.87   -1.32   -1.82   -2.33   -2.80   -3.13   -3.28   -3.20   -2.89   -2.37   -1.66   -0.71    0.57    2.27    4.35
+   345.0    0.00   -0.05   -0.22   -0.50   -0.87   -1.33   -1.83   -2.36   -2.83   -3.18   -3.34   -3.26   -2.95   -2.45   -1.77   -0.87    0.35    2.01    4.10
+   350.0    0.00   -0.05   -0.22   -0.50   -0.88   -1.33   -1.84   -2.38   -2.86   -3.22   -3.38   -3.31   -3.01   -2.52   -1.86   -0.99    0.19    1.82    3.94
+   355.0    0.00   -0.05   -0.22   -0.50   -0.88   -1.33   -1.85   -2.39   -2.88   -3.25   -3.42   -3.35   -3.05   -2.56   -1.91   -1.06    0.10    1.72    3.86
+   360.0    0.00   -0.05   -0.22   -0.50   -0.87   -1.33   -1.85   -2.38   -2.88   -3.25   -3.43   -3.37   -3.08   -2.59   -1.94   -1.08    0.09    1.72    3.87
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.23      0.84     57.43                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.10   -0.37   -0.75   -1.18   -1.62   -2.07   -2.53   -2.98   -3.32   -3.43   -3.21   -2.64   -1.79   -0.80    0.26    1.46    3.07    5.41
+     0.0    0.00   -0.12   -0.41   -0.81   -1.23   -1.62   -2.00   -2.39   -2.79   -3.14   -3.35   -3.26   -2.79   -1.95   -0.82    0.50    1.95    3.58    5.46
+     5.0    0.00   -0.12   -0.41   -0.80   -1.21   -1.61   -2.00   -2.40   -2.81   -3.18   -3.39   -3.30   -2.82   -1.96   -0.79    0.56    2.05    3.73    5.65
+    10.0    0.00   -0.12   -0.40   -0.79   -1.20   -1.60   -2.00   -2.41   -2.83   -3.21   -3.42   -3.32   -2.83   -1.95   -0.78    0.59    2.10    3.81    5.81
+    15.0    0.00   -0.11   -0.39   -0.78   -1.19   -1.60   -2.00   -2.42   -2.86   -3.24   -3.44   -3.33   -2.83   -1.95   -0.78    0.57    2.08    3.83    5.91
+    20.0    0.00   -0.11   -0.39   -0.77   -1.18   -1.59   -2.01   -2.44   -2.88   -3.26   -3.45   -3.33   -2.82   -1.94   -0.80    0.53    2.02    3.78    5.95
+    25.0    0.00   -0.11   -0.38   -0.76   -1.17   -1.59   -2.02   -2.46   -2.91   -3.28   -3.46   -3.32   -2.80   -1.94   -0.82    0.47    1.92    3.69    5.94
+    30.0    0.00   -0.11   -0.38   -0.75   -1.16   -1.59   -2.03   -2.49   -2.94   -3.31   -3.48   -3.32   -2.79   -1.93   -0.84    0.40    1.81    3.57    5.88
+    35.0    0.00   -0.10   -0.37   -0.74   -1.15   -1.59   -2.04   -2.51   -2.97   -3.34   -3.50   -3.32   -2.78   -1.92   -0.85    0.35    1.72    3.45    5.80
+    40.0    0.00   -0.10   -0.36   -0.73   -1.14   -1.58   -2.05   -2.53   -3.01   -3.38   -3.53   -3.33   -2.77   -1.90   -0.85    0.31    1.64    3.36    5.74
+    45.0    0.00   -0.10   -0.36   -0.72   -1.14   -1.58   -2.05   -2.56   -3.05   -3.43   -3.57   -3.36   -2.77   -1.89   -0.83    0.31    1.61    3.31    5.70
+    50.0    0.00   -0.10   -0.36   -0.72   -1.13   -1.57   -2.06   -2.58   -3.08   -3.47   -3.61   -3.39   -2.78   -1.88   -0.80    0.34    1.63    3.31    5.72
+    55.0    0.00   -0.10   -0.35   -0.71   -1.12   -1.57   -2.06   -2.59   -3.11   -3.52   -3.66   -3.43   -2.80   -1.86   -0.77    0.39    1.68    3.37    5.80
+    60.0    0.00   -0.10   -0.35   -0.70   -1.11   -1.56   -2.06   -2.60   -3.14   -3.56   -3.71   -3.47   -2.82   -1.86   -0.73    0.45    1.76    3.47    5.93
+    65.0    0.00   -0.10   -0.35   -0.70   -1.11   -1.55   -2.05   -2.60   -3.15   -3.59   -3.75   -3.51   -2.85   -1.86   -0.71    0.51    1.85    3.59    6.09
+    70.0    0.00   -0.09   -0.35   -0.70   -1.10   -1.55   -2.04   -2.60   -3.15   -3.60   -3.78   -3.55   -2.89   -1.88   -0.70    0.55    1.92    3.70    6.27
+    75.0    0.00   -0.09   -0.35   -0.70   -1.10   -1.54   -2.03   -2.58   -3.15   -3.61   -3.80   -3.58   -2.92   -1.91   -0.72    0.55    1.96    3.79    6.42
+    80.0    0.00   -0.09   -0.35   -0.70   -1.10   -1.54   -2.02   -2.57   -3.13   -3.60   -3.80   -3.60   -2.96   -1.96   -0.77    0.50    1.94    3.82    6.51
+    85.0    0.00   -0.09   -0.35   -0.70   -1.10   -1.53   -2.01   -2.55   -3.11   -3.57   -3.79   -3.61   -3.00   -2.03   -0.86    0.41    1.86    3.77    6.52
+    90.0    0.00   -0.09   -0.35   -0.71   -1.11   -1.54   -2.00   -2.53   -3.08   -3.54   -3.77   -3.61   -3.03   -2.11   -0.97    0.28    1.72    3.65    6.43
+    95.0    0.00   -0.09   -0.35   -0.71   -1.12   -1.54   -2.00   -2.51   -3.05   -3.50   -3.74   -3.61   -3.07   -2.19   -1.10    0.11    1.53    3.45    6.23
+   100.0    0.00   -0.09   -0.35   -0.72   -1.13   -1.55   -2.00   -2.50   -3.02   -3.47   -3.70   -3.59   -3.09   -2.26   -1.23   -0.07    1.31    3.20    5.96
+   105.0    0.00   -0.09   -0.36   -0.73   -1.14   -1.56   -2.00   -2.49   -2.99   -3.43   -3.67   -3.57   -3.11   -2.32   -1.35   -0.25    1.07    2.92    5.62
+   110.0    0.00   -0.09   -0.36   -0.73   -1.15   -1.57   -2.01   -2.48   -2.98   -3.40   -3.63   -3.55   -3.11   -2.36   -1.44   -0.40    0.86    2.64    5.27
+   115.0    0.00   -0.09   -0.36   -0.74   -1.15   -1.58   -2.02   -2.48   -2.96   -3.38   -3.60   -3.52   -3.09   -2.37   -1.49   -0.50    0.70    2.40    4.95
+   120.0    0.00   -0.09   -0.36   -0.74   -1.16   -1.59   -2.02   -2.49   -2.96   -3.36   -3.57   -3.47   -3.04   -2.34   -1.49   -0.54    0.59    2.22    4.69
+   125.0    0.00   -0.09   -0.36   -0.74   -1.16   -1.59   -2.03   -2.49   -2.95   -3.34   -3.53   -3.42   -2.98   -2.27   -1.43   -0.51    0.57    2.12    4.54
+   130.0    0.00   -0.09   -0.36   -0.74   -1.16   -1.59   -2.02   -2.48   -2.94   -3.32   -3.49   -3.36   -2.89   -2.16   -1.31   -0.42    0.62    2.12    4.50
+   135.0    0.00   -0.09   -0.35   -0.73   -1.15   -1.58   -2.01   -2.47   -2.93   -3.29   -3.45   -3.28   -2.78   -2.02   -1.15   -0.27    0.75    2.21    4.58
+   140.0    0.00   -0.09   -0.35   -0.72   -1.14   -1.56   -2.00   -2.45   -2.90   -3.26   -3.40   -3.20   -2.65   -1.85   -0.96   -0.07    0.93    2.38    4.77
+   145.0    0.00   -0.08   -0.35   -0.71   -1.12   -1.54   -1.97   -2.42   -2.87   -3.22   -3.34   -3.11   -2.52   -1.68   -0.75    0.15    1.14    2.59    5.04
+   150.0    0.00   -0.08   -0.34   -0.70   -1.10   -1.51   -1.93   -2.38   -2.83   -3.17   -3.27   -3.01   -2.38   -1.50   -0.55    0.37    1.36    2.83    5.36
+   155.0    0.00   -0.08   -0.34   -0.69   -1.08   -1.47   -1.89   -2.33   -2.78   -3.11   -3.20   -2.92   -2.26   -1.34   -0.36    0.57    1.57    3.06    5.66
+   160.0    0.00   -0.08   -0.33   -0.68   -1.05   -1.44   -1.84   -2.28   -2.72   -3.06   -3.13   -2.83   -2.15   -1.21   -0.21    0.73    1.73    3.25    5.93
+   165.0    0.00   -0.08   -0.33   -0.66   -1.03   -1.41   -1.80   -2.23   -2.67   -3.00   -3.07   -2.77   -2.07   -1.12   -0.10    0.84    1.85    3.39    6.12
+   170.0    0.00   -0.08   -0.32   -0.65   -1.01   -1.38   -1.76   -2.19   -2.62   -2.96   -3.03   -2.72   -2.02   -1.07   -0.05    0.90    1.91    3.46    6.22
+   175.0    0.00   -0.08   -0.32   -0.65   -1.00   -1.36   -1.74   -2.16   -2.59   -2.93   -3.00   -2.71   -2.02   -1.07   -0.06    0.89    1.92    3.47    6.21
+   180.0    0.00   -0.08   -0.31   -0.64   -0.99   -1.35   -1.73   -2.15   -2.58   -2.91   -3.00   -2.72   -2.04   -1.11   -0.11    0.84    1.87    3.41    6.11
+   185.0    0.00   -0.08   -0.31   -0.64   -0.99   -1.35   -1.73   -2.15   -2.58   -2.92   -3.02   -2.75   -2.11   -1.20   -0.21    0.74    1.78    3.31    5.94
+   190.0    0.00   -0.08   -0.31   -0.64   -1.00   -1.36   -1.75   -2.17   -2.61   -2.95   -3.06   -2.81   -2.20   -1.31   -0.34    0.62    1.67    3.19    5.72
+   195.0    0.00   -0.08   -0.31   -0.65   -1.01   -1.39   -1.79   -2.22   -2.65   -3.00   -3.12   -2.89   -2.31   -1.45   -0.49    0.48    1.55    3.06    5.49
+   200.0    0.00   -0.08   -0.32   -0.66   -1.03   -1.42   -1.84   -2.28   -2.71   -3.06   -3.19   -2.98   -2.43   -1.60   -0.65    0.34    1.43    2.94    5.27
+   205.0    0.00   -0.08   -0.32   -0.67   -1.06   -1.47   -1.90   -2.35   -2.79   -3.14   -3.27   -3.08   -2.55   -1.74   -0.80    0.20    1.33    2.85    5.09
+   210.0    0.00   -0.08   -0.33   -0.68   -1.09   -1.52   -1.96   -2.42   -2.87   -3.22   -3.35   -3.18   -2.66   -1.88   -0.94    0.08    1.25    2.78    4.95
+   215.0    0.00   -0.08   -0.33   -0.70   -1.12   -1.57   -2.03   -2.50   -2.95   -3.30   -3.43   -3.26   -2.76   -1.99   -1.05   -0.01    1.19    2.75    4.86
+   220.0    0.00   -0.08   -0.34   -0.71   -1.15   -1.62   -2.10   -2.58   -3.03   -3.37   -3.50   -3.34   -2.85   -2.08   -1.14   -0.08    1.17    2.75    4.82
+   225.0    0.00   -0.09   -0.34   -0.73   -1.18   -1.67   -2.16   -2.65   -3.10   -3.44   -3.57   -3.40   -2.91   -2.14   -1.19   -0.11    1.16    2.76    4.82
+   230.0    0.00   -0.09   -0.35   -0.75   -1.21   -1.71   -2.21   -2.71   -3.16   -3.50   -3.62   -3.45   -2.95   -2.17   -1.21   -0.11    1.18    2.79    4.84
+   235.0    0.00   -0.09   -0.36   -0.76   -1.23   -1.74   -2.25   -2.76   -3.22   -3.56   -3.67   -3.48   -2.97   -2.18   -1.20   -0.08    1.21    2.82    4.86
+   240.0    0.00   -0.09   -0.37   -0.77   -1.25   -1.77   -2.29   -2.80   -3.26   -3.60   -3.71   -3.51   -2.97   -2.15   -1.15   -0.02    1.26    2.86    4.89
+   245.0    0.00   -0.10   -0.37   -0.78   -1.27   -1.79   -2.31   -2.83   -3.30   -3.64   -3.74   -3.52   -2.95   -2.10   -1.07    0.06    1.33    2.90    4.92
+   250.0    0.00   -0.10   -0.38   -0.79   -1.28   -1.80   -2.33   -2.85   -3.33   -3.67   -3.76   -3.52   -2.92   -2.03   -0.97    0.16    1.40    2.93    4.94
+   255.0    0.00   -0.10   -0.38   -0.80   -1.29   -1.81   -2.34   -2.87   -3.35   -3.69   -3.78   -3.51   -2.87   -1.94   -0.86    0.27    1.48    2.96    4.96
+   260.0    0.00   -0.10   -0.39   -0.81   -1.30   -1.82   -2.34   -2.87   -3.36   -3.70   -3.78   -3.49   -2.81   -1.84   -0.74    0.38    1.55    2.99    4.99
+   265.0    0.00   -0.11   -0.40   -0.82   -1.30   -1.82   -2.35   -2.88   -3.36   -3.71   -3.77   -3.45   -2.74   -1.74   -0.62    0.48    1.62    3.02    5.04
+   270.0    0.00   -0.11   -0.40   -0.82   -1.31   -1.82   -2.35   -2.88   -3.36   -3.70   -3.75   -3.40   -2.66   -1.64   -0.52    0.57    1.66    3.05    5.11
+   275.0    0.00   -0.11   -0.41   -0.83   -1.31   -1.82   -2.34   -2.87   -3.35   -3.67   -3.70   -3.34   -2.58   -1.54   -0.43    0.62    1.68    3.06    5.19
+   280.0    0.00   -0.11   -0.41   -0.83   -1.32   -1.82   -2.34   -2.86   -3.32   -3.63   -3.64   -3.26   -2.49   -1.46   -0.38    0.64    1.67    3.06    5.28
+   285.0    0.00   -0.12   -0.42   -0.84   -1.32   -1.83   -2.33   -2.84   -3.28   -3.57   -3.56   -3.17   -2.40   -1.40   -0.35    0.62    1.62    3.04    5.36
+   290.0    0.00   -0.12   -0.42   -0.85   -1.33   -1.82   -2.32   -2.81   -3.23   -3.50   -3.47   -3.07   -2.32   -1.35   -0.37    0.55    1.54    2.99    5.42
+   295.0    0.00   -0.12   -0.42   -0.85   -1.33   -1.82   -2.31   -2.77   -3.17   -3.41   -3.37   -2.97   -2.24   -1.33   -0.41    0.46    1.43    2.91    5.46
+   300.0    0.00   -0.12   -0.43   -0.86   -1.33   -1.82   -2.29   -2.73   -3.11   -3.32   -3.26   -2.87   -2.19   -1.34   -0.48    0.33    1.29    2.82    5.44
+   305.0    0.00   -0.12   -0.43   -0.86   -1.34   -1.81   -2.27   -2.69   -3.03   -3.22   -3.16   -2.79   -2.15   -1.37   -0.57    0.20    1.15    2.71    5.39
+   310.0    0.00   -0.12   -0.43   -0.86   -1.33   -1.80   -2.24   -2.64   -2.96   -3.14   -3.08   -2.73   -2.14   -1.41   -0.67    0.07    1.01    2.60    5.29
+   315.0    0.00   -0.12   -0.43   -0.86   -1.33   -1.79   -2.21   -2.59   -2.89   -3.06   -3.01   -2.70   -2.15   -1.48   -0.77   -0.05    0.91    2.50    5.16
+   320.0    0.00   -0.12   -0.44   -0.86   -1.32   -1.77   -2.18   -2.54   -2.83   -3.01   -2.98   -2.70   -2.19   -1.55   -0.86   -0.12    0.85    2.44    5.02
+   325.0    0.00   -0.12   -0.43   -0.86   -1.32   -1.75   -2.15   -2.50   -2.79   -2.97   -2.97   -2.73   -2.26   -1.63   -0.93   -0.16    0.85    2.43    4.90
+   330.0    0.00   -0.12   -0.43   -0.86   -1.31   -1.73   -2.11   -2.46   -2.75   -2.95   -2.98   -2.78   -2.33   -1.70   -0.97   -0.14    0.91    2.47    4.81
+   335.0    0.00   -0.12   -0.43   -0.85   -1.29   -1.71   -2.09   -2.43   -2.73   -2.96   -3.03   -2.86   -2.42   -1.77   -0.98   -0.08    1.03    2.58    4.77
+   340.0    0.00   -0.12   -0.43   -0.84   -1.28   -1.69   -2.06   -2.40   -2.73   -2.98   -3.08   -2.94   -2.52   -1.83   -0.97    0.02    1.20    2.74    4.80
+   345.0    0.00   -0.12   -0.43   -0.84   -1.27   -1.67   -2.04   -2.39   -2.73   -3.02   -3.15   -3.04   -2.60   -1.88   -0.94    0.14    1.40    2.94    4.90
+   350.0    0.00   -0.12   -0.42   -0.83   -1.25   -1.65   -2.02   -2.38   -2.74   -3.06   -3.22   -3.12   -2.68   -1.91   -0.90    0.28    1.60    3.16    5.06
+   355.0    0.00   -0.12   -0.42   -0.82   -1.24   -1.64   -2.01   -2.38   -2.76   -3.10   -3.29   -3.20   -2.75   -1.94   -0.86    0.40    1.79    3.39    5.25
+   360.0    0.00   -0.12   -0.41   -0.81   -1.23   -1.62   -2.00   -2.39   -2.79   -3.14   -3.35   -3.26   -2.79   -1.95   -0.82    0.50    1.95    3.58    5.46
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TRM57970.00     NONE                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               6    18-JAN-10 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+      0.58     -0.59     63.16                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.04   -0.15   -0.32   -0.49   -0.60   -0.59   -0.43   -0.18    0.01    0.00   -0.27   -0.69   -1.00   -0.92   -0.30    0.64    1.28    0.79
+     0.0    0.00   -0.01   -0.10   -0.27   -0.50   -0.71   -0.80   -0.71   -0.48   -0.23   -0.13   -0.32   -0.73   -1.14   -1.21   -0.71    0.28    1.26    1.40
+     5.0    0.00    0.00   -0.09   -0.26   -0.48   -0.68   -0.76   -0.67   -0.43   -0.19   -0.10   -0.30   -0.72   -1.15   -1.26   -0.80    0.15    1.09    1.20
+    10.0    0.00    0.00   -0.09   -0.25   -0.46   -0.64   -0.71   -0.61   -0.38   -0.14   -0.07   -0.27   -0.71   -1.16   -1.29   -0.87    0.04    0.93    0.98
+    15.0    0.00    0.00   -0.08   -0.24   -0.43   -0.60   -0.65   -0.55   -0.32   -0.09   -0.02   -0.24   -0.69   -1.14   -1.29   -0.90   -0.04    0.81    0.78
+    20.0    0.00    0.00   -0.08   -0.22   -0.40   -0.55   -0.58   -0.47   -0.24   -0.02    0.03   -0.20   -0.66   -1.12   -1.28   -0.90   -0.06    0.73    0.63
+    25.0    0.00    0.00   -0.07   -0.21   -0.37   -0.50   -0.51   -0.39   -0.15    0.05    0.08   -0.16   -0.63   -1.09   -1.24   -0.86   -0.03    0.72    0.55
+    30.0    0.00    0.00   -0.07   -0.20   -0.35   -0.45   -0.45   -0.30   -0.07    0.13    0.15   -0.11   -0.59   -1.05   -1.19   -0.79    0.05    0.78    0.55
+    35.0    0.00    0.00   -0.07   -0.19   -0.32   -0.41   -0.38   -0.22    0.02    0.22    0.22   -0.06   -0.54   -1.00   -1.12   -0.69    0.17    0.91    0.64
+    40.0    0.00    0.00   -0.07   -0.18   -0.30   -0.37   -0.32   -0.15    0.10    0.30    0.29    0.01   -0.49   -0.94   -1.04   -0.58    0.31    1.08    0.79
+    45.0    0.00    0.00   -0.07   -0.18   -0.29   -0.34   -0.28   -0.09    0.17    0.38    0.37    0.08   -0.42   -0.87   -0.95   -0.46    0.47    1.27    0.99
+    50.0    0.00    0.00   -0.07   -0.18   -0.28   -0.33   -0.25   -0.04    0.23    0.45    0.45    0.16   -0.34   -0.79   -0.86   -0.34    0.62    1.46    1.19
+    55.0    0.00   -0.01   -0.08   -0.18   -0.29   -0.32   -0.23   -0.01    0.28    0.51    0.52    0.24   -0.26   -0.71   -0.77   -0.24    0.75    1.62    1.38
+    60.0    0.00   -0.01   -0.08   -0.19   -0.29   -0.33   -0.23    0.00    0.31    0.56    0.59    0.32   -0.17   -0.62   -0.69   -0.16    0.85    1.73    1.51
+    65.0    0.00   -0.01   -0.09   -0.20   -0.31   -0.34   -0.25   -0.01    0.32    0.59    0.64    0.39   -0.09   -0.55   -0.63   -0.11    0.89    1.78    1.56
+    70.0    0.00   -0.01   -0.09   -0.21   -0.32   -0.36   -0.27   -0.03    0.31    0.60    0.68    0.45   -0.02   -0.48   -0.58   -0.08    0.89    1.75    1.52
+    75.0    0.00   -0.02   -0.10   -0.23   -0.35   -0.39   -0.31   -0.06    0.29    0.60    0.70    0.49    0.03   -0.44   -0.55   -0.09    0.85    1.66    1.40
+    80.0    0.00   -0.02   -0.11   -0.24   -0.37   -0.43   -0.35   -0.10    0.25    0.58    0.70    0.51    0.05   -0.42   -0.55   -0.12    0.76    1.51    1.19
+    85.0    0.00   -0.02   -0.12   -0.26   -0.39   -0.46   -0.39   -0.15    0.21    0.54    0.67    0.49    0.04   -0.43   -0.58   -0.18    0.64    1.32    0.93
+    90.0    0.00   -0.03   -0.13   -0.27   -0.42   -0.50   -0.43   -0.20    0.15    0.49    0.62    0.44    0.00   -0.47   -0.63   -0.26    0.50    1.10    0.62
+    95.0    0.00   -0.03   -0.13   -0.29   -0.44   -0.53   -0.48   -0.25    0.09    0.42    0.55    0.37   -0.07   -0.54   -0.70   -0.35    0.36    0.87    0.31
+   100.0    0.00   -0.03   -0.14   -0.30   -0.46   -0.56   -0.52   -0.30    0.03    0.34    0.45    0.26   -0.18   -0.63   -0.79   -0.45    0.22    0.66    0.03
+   105.0    0.00   -0.04   -0.15   -0.31   -0.48   -0.59   -0.55   -0.35   -0.04    0.25    0.35    0.14   -0.30   -0.74   -0.89   -0.55    0.10    0.49   -0.21
+   110.0    0.00   -0.04   -0.15   -0.32   -0.50   -0.61   -0.58   -0.40   -0.10    0.16    0.23    0.01   -0.43   -0.87   -0.99   -0.64    0.00    0.35   -0.39
+   115.0    0.00   -0.04   -0.16   -0.33   -0.51   -0.63   -0.61   -0.44   -0.16    0.08    0.12   -0.12   -0.57   -0.99   -1.09   -0.72   -0.08    0.26   -0.50
+   120.0    0.00   -0.04   -0.16   -0.34   -0.52   -0.64   -0.63   -0.47   -0.22    0.00    0.02   -0.24   -0.69   -1.11   -1.18   -0.79   -0.12    0.22   -0.53
+   125.0    0.00   -0.05   -0.17   -0.34   -0.52   -0.65   -0.65   -0.50   -0.26   -0.06   -0.06   -0.34   -0.80   -1.20   -1.26   -0.83   -0.14    0.23   -0.50
+   130.0    0.00   -0.05   -0.17   -0.34   -0.53   -0.66   -0.66   -0.52   -0.29   -0.11   -0.13   -0.42   -0.88   -1.28   -1.32   -0.86   -0.13    0.28   -0.41
+   135.0    0.00   -0.05   -0.17   -0.34   -0.53   -0.66   -0.67   -0.53   -0.31   -0.14   -0.17   -0.47   -0.94   -1.33   -1.35   -0.87   -0.09    0.36   -0.28
+   140.0    0.00   -0.05   -0.17   -0.34   -0.53   -0.66   -0.67   -0.54   -0.32   -0.16   -0.19   -0.49   -0.97   -1.36   -1.37   -0.86   -0.04    0.46   -0.13
+   145.0    0.00   -0.05   -0.17   -0.34   -0.52   -0.65   -0.66   -0.53   -0.32   -0.15   -0.19   -0.49   -0.97   -1.36   -1.36   -0.83    0.02    0.58    0.03
+   150.0    0.00   -0.05   -0.17   -0.34   -0.52   -0.64   -0.65   -0.52   -0.31   -0.14   -0.17   -0.48   -0.96   -1.35   -1.35   -0.80    0.09    0.70    0.19
+   155.0    0.00   -0.06   -0.17   -0.34   -0.51   -0.63   -0.64   -0.50   -0.28   -0.11   -0.14   -0.45   -0.93   -1.33   -1.32   -0.75    0.17    0.82    0.34
+   160.0    0.00   -0.06   -0.17   -0.33   -0.50   -0.62   -0.62   -0.48   -0.26   -0.08   -0.11   -0.42   -0.90   -1.30   -1.29   -0.71    0.24    0.92    0.47
+   165.0    0.00   -0.06   -0.17   -0.33   -0.50   -0.61   -0.60   -0.46   -0.23   -0.05   -0.08   -0.38   -0.87   -1.27   -1.26   -0.67    0.30    1.02    0.58
+   170.0    0.00   -0.06   -0.17   -0.33   -0.49   -0.60   -0.59   -0.43   -0.20   -0.02   -0.05   -0.36   -0.85   -1.24   -1.23   -0.63    0.36    1.09    0.66
+   175.0    0.00   -0.06   -0.17   -0.33   -0.48   -0.58   -0.57   -0.41   -0.17    0.01   -0.02   -0.33   -0.82   -1.22   -1.20   -0.59    0.40    1.15    0.73
+   180.0    0.00   -0.06   -0.18   -0.33   -0.48   -0.57   -0.55   -0.39   -0.15    0.03   -0.01   -0.32   -0.80   -1.20   -1.17   -0.56    0.44    1.19    0.77
+   185.0    0.00   -0.06   -0.18   -0.33   -0.48   -0.56   -0.54   -0.37   -0.13    0.04    0.00   -0.31   -0.79   -1.17   -1.14   -0.53    0.47    1.22    0.80
+   190.0    0.00   -0.06   -0.18   -0.33   -0.47   -0.56   -0.52   -0.36   -0.12    0.05    0.01   -0.30   -0.77   -1.14   -1.10   -0.49    0.50    1.24    0.83
+   195.0    0.00   -0.06   -0.18   -0.33   -0.48   -0.56   -0.52   -0.34   -0.11    0.06    0.02   -0.28   -0.75   -1.11   -1.06   -0.45    0.53    1.26    0.86
+   200.0    0.00   -0.06   -0.18   -0.34   -0.48   -0.56   -0.51   -0.33   -0.09    0.07    0.03   -0.27   -0.72   -1.07   -1.01   -0.40    0.57    1.30    0.91
+   205.0    0.00   -0.07   -0.19   -0.34   -0.48   -0.56   -0.51   -0.32   -0.08    0.09    0.05   -0.25   -0.69   -1.03   -0.95   -0.33    0.64    1.36    0.97
+   210.0    0.00   -0.07   -0.19   -0.35   -0.49   -0.56   -0.50   -0.31   -0.06    0.11    0.07   -0.22   -0.66   -0.98   -0.88   -0.25    0.73    1.45    1.05
+   215.0    0.00   -0.07   -0.19   -0.36   -0.50   -0.57   -0.50   -0.30   -0.04    0.14    0.10   -0.20   -0.63   -0.93   -0.81   -0.14    0.85    1.57    1.17
+   220.0    0.00   -0.07   -0.20   -0.36   -0.51   -0.58   -0.50   -0.29   -0.02    0.17    0.13   -0.17   -0.60   -0.89   -0.74   -0.03    1.00    1.74    1.31
+   225.0    0.00   -0.07   -0.20   -0.37   -0.52   -0.58   -0.50   -0.27    0.01    0.19    0.15   -0.16   -0.59   -0.86   -0.67    0.10    1.18    1.93    1.48
+   230.0    0.00   -0.07   -0.20   -0.38   -0.53   -0.59   -0.50   -0.26    0.03    0.22    0.17   -0.16   -0.59   -0.84   -0.61    0.23    1.37    2.16    1.67
+   235.0    0.00   -0.07   -0.21   -0.39   -0.55   -0.60   -0.50   -0.25    0.05    0.23    0.17   -0.17   -0.61   -0.85   -0.56    0.35    1.57    2.38    1.86
+   240.0    0.00   -0.07   -0.21   -0.39   -0.56   -0.61   -0.51   -0.25    0.05    0.23    0.15   -0.20   -0.65   -0.87   -0.53    0.46    1.76    2.60    2.03
+   245.0    0.00   -0.07   -0.21   -0.40   -0.57   -0.63   -0.52   -0.26    0.04    0.22    0.12   -0.26   -0.72   -0.91   -0.51    0.55    1.92    2.78    2.16
+   250.0    0.00   -0.07   -0.21   -0.40   -0.58   -0.64   -0.54   -0.28    0.02    0.18    0.07   -0.33   -0.79   -0.96   -0.52    0.61    2.03    2.91    2.24
+   255.0    0.00   -0.07   -0.21   -0.41   -0.58   -0.65   -0.56   -0.31   -0.02    0.13    0.00   -0.41   -0.87   -1.02   -0.53    0.64    2.10    2.96    2.24
+   260.0    0.00   -0.06   -0.21   -0.41   -0.59   -0.67   -0.58   -0.34   -0.07    0.06   -0.09   -0.50   -0.95   -1.08   -0.56    0.64    2.10    2.93    2.15
+   265.0    0.00   -0.06   -0.21   -0.41   -0.60   -0.68   -0.61   -0.39   -0.14   -0.02   -0.18   -0.58   -1.02   -1.13   -0.59    0.62    2.04    2.81    1.97
+   270.0    0.00   -0.06   -0.21   -0.41   -0.60   -0.70   -0.64   -0.44   -0.21   -0.11   -0.27   -0.66   -1.08   -1.16   -0.62    0.56    1.92    2.61    1.70
+   275.0    0.00   -0.06   -0.20   -0.40   -0.60   -0.71   -0.68   -0.50   -0.29   -0.20   -0.35   -0.73   -1.12   -1.18   -0.64    0.49    1.76    2.34    1.38
+   280.0    0.00   -0.06   -0.20   -0.40   -0.60   -0.72   -0.71   -0.56   -0.37   -0.28   -0.42   -0.77   -1.13   -1.17   -0.65    0.41    1.57    2.04    1.01
+   285.0    0.00   -0.05   -0.19   -0.39   -0.60   -0.73   -0.74   -0.61   -0.43   -0.35   -0.48   -0.79   -1.12   -1.15   -0.65    0.33    1.37    1.72    0.64
+   290.0    0.00   -0.05   -0.19   -0.39   -0.60   -0.74   -0.76   -0.66   -0.49   -0.41   -0.51   -0.79   -1.08   -1.11   -0.65    0.26    1.18    1.42    0.31
+   295.0    0.00   -0.05   -0.18   -0.38   -0.59   -0.75   -0.79   -0.69   -0.54   -0.45   -0.53   -0.77   -1.04   -1.05   -0.63    0.19    1.02    1.17    0.04
+   300.0    0.00   -0.04   -0.17   -0.37   -0.59   -0.75   -0.80   -0.72   -0.57   -0.47   -0.52   -0.74   -0.98   -1.00   -0.62    0.14    0.89    1.00   -0.13
+   305.0    0.00   -0.04   -0.17   -0.36   -0.58   -0.76   -0.82   -0.74   -0.59   -0.47   -0.50   -0.69   -0.92   -0.95   -0.60    0.10    0.81    0.90   -0.19
+   310.0    0.00   -0.04   -0.16   -0.35   -0.58   -0.76   -0.83   -0.75   -0.60   -0.46   -0.47   -0.64   -0.87   -0.92   -0.60    0.07    0.76    0.89   -0.13
+   315.0    0.00   -0.03   -0.15   -0.35   -0.57   -0.76   -0.83   -0.76   -0.59   -0.44   -0.43   -0.59   -0.82   -0.89   -0.61    0.04    0.76    0.95    0.04
+   320.0    0.00   -0.03   -0.15   -0.34   -0.57   -0.76   -0.84   -0.77   -0.59   -0.42   -0.39   -0.54   -0.78   -0.89   -0.64    0.01    0.77    1.07    0.30
+   325.0    0.00   -0.03   -0.14   -0.33   -0.57   -0.76   -0.85   -0.77   -0.58   -0.39   -0.34   -0.50   -0.76   -0.90   -0.68   -0.03    0.79    1.22    0.60
+   330.0    0.00   -0.02   -0.13   -0.33   -0.56   -0.77   -0.85   -0.77   -0.57   -0.36   -0.31   -0.46   -0.75   -0.93   -0.74   -0.09    0.80    1.37    0.92
+   335.0    0.00   -0.02   -0.13   -0.32   -0.56   -0.77   -0.85   -0.77   -0.56   -0.34   -0.27   -0.43   -0.74   -0.96   -0.82   -0.17    0.79    1.49    1.20
+   340.0    0.00   -0.02   -0.12   -0.31   -0.55   -0.76   -0.86   -0.77   -0.55   -0.32   -0.24   -0.40   -0.74   -1.01   -0.90   -0.26    0.75    1.56    1.43
+   345.0    0.00   -0.01   -0.11   -0.30   -0.54   -0.76   -0.85   -0.77   -0.54   -0.30   -0.21   -0.38   -0.74   -1.05   -0.99   -0.37    0.67    1.58    1.56
+   350.0    0.00   -0.01   -0.11   -0.29   -0.53   -0.75   -0.84   -0.76   -0.53   -0.28   -0.19   -0.36   -0.74   -1.09   -1.07   -0.49    0.56    1.53    1.60
+   355.0    0.00   -0.01   -0.10   -0.28   -0.52   -0.73   -0.83   -0.74   -0.51   -0.25   -0.16   -0.34   -0.74   -1.12   -1.15   -0.60    0.42    1.42    1.54
+   360.0    0.00   -0.01   -0.10   -0.27   -0.50   -0.71   -0.80   -0.71   -0.48   -0.23   -0.13   -0.32   -0.73   -1.14   -1.21   -0.71    0.28    1.26    1.40
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.04      2.02     56.57                              NORTH / EAST / UP   
+   NOAZI    0.00    0.03    0.08    0.03   -0.21   -0.64   -1.12   -1.43   -1.34   -0.78    0.14    1.09    1.65    1.52    0.69   -0.41   -1.04   -0.37    2.12
+     0.0    0.00   -0.12   -0.17   -0.23   -0.41   -0.73   -1.09   -1.30   -1.15   -0.56    0.36    1.29    1.81    1.59    0.61   -0.68   -1.41   -0.53    2.84
+     5.0    0.00   -0.11   -0.16   -0.23   -0.41   -0.73   -1.09   -1.30   -1.16   -0.56    0.36    1.29    1.79    1.52    0.48   -0.88   -1.69   -0.85    2.51
+    10.0    0.00   -0.10   -0.14   -0.21   -0.40   -0.73   -1.10   -1.31   -1.16   -0.56    0.37    1.29    1.78    1.47    0.37   -1.08   -1.98   -1.23    2.04
+    15.0    0.00   -0.09   -0.13   -0.20   -0.40   -0.73   -1.11   -1.33   -1.18   -0.58    0.37    1.30    1.78    1.45    0.29   -1.25   -2.26   -1.64    1.47
+    20.0    0.00   -0.08   -0.11   -0.19   -0.39   -0.74   -1.13   -1.36   -1.21   -0.60    0.36    1.31    1.80    1.46    0.25   -1.37   -2.50   -2.03    0.86
+    25.0    0.00   -0.07   -0.09   -0.17   -0.38   -0.75   -1.15   -1.40   -1.26   -0.64    0.34    1.32    1.84    1.51    0.28   -1.41   -2.65   -2.36    0.26
+    30.0    0.00   -0.05   -0.07   -0.15   -0.37   -0.75   -1.18   -1.44   -1.32   -0.70    0.30    1.32    1.88    1.58    0.36   -1.37   -2.71   -2.59   -0.25
+    35.0    0.00   -0.04   -0.05   -0.13   -0.35   -0.75   -1.20   -1.50   -1.39   -0.78    0.24    1.30    1.92    1.68    0.49   -1.25   -2.66   -2.69   -0.62
+    40.0    0.00   -0.02   -0.03   -0.10   -0.33   -0.75   -1.23   -1.55   -1.47   -0.87    0.16    1.26    1.95    1.79    0.66   -1.05   -2.49   -2.63   -0.79
+    45.0    0.00   -0.01    0.00   -0.07   -0.31   -0.74   -1.24   -1.59   -1.55   -0.97    0.06    1.21    1.96    1.88    0.84   -0.80   -2.21   -2.41   -0.74
+    50.0    0.00    0.01    0.02   -0.04   -0.28   -0.72   -1.24   -1.63   -1.61   -1.06   -0.04    1.13    1.94    1.95    1.02   -0.51   -1.85   -2.04   -0.47
+    55.0    0.00    0.02    0.05    0.00   -0.24   -0.69   -1.23   -1.64   -1.66   -1.14   -0.14    1.03    1.88    1.98    1.17   -0.22   -1.44   -1.55    0.02
+    60.0    0.00    0.04    0.08    0.04   -0.20   -0.65   -1.20   -1.63   -1.69   -1.20   -0.23    0.92    1.80    1.97    1.28    0.04   -1.01   -0.98    0.68
+    65.0    0.00    0.05    0.11    0.08   -0.15   -0.60   -1.16   -1.60   -1.68   -1.24   -0.31    0.81    1.69    1.91    1.33    0.25   -0.61   -0.38    1.45
+    70.0    0.00    0.07    0.14    0.12   -0.10   -0.55   -1.10   -1.55   -1.65   -1.24   -0.36    0.71    1.56    1.81    1.32    0.40   -0.26    0.19    2.26
+    75.0    0.00    0.09    0.17    0.16   -0.05   -0.48   -1.03   -1.48   -1.58   -1.21   -0.38    0.63    1.44    1.68    1.26    0.48    0.01    0.69    3.05
+    80.0    0.00    0.10    0.20    0.20    0.00   -0.42   -0.95   -1.39   -1.50   -1.14   -0.37    0.58    1.32    1.54    1.16    0.48    0.18    1.09    3.74
+    85.0    0.00    0.12    0.23    0.24    0.05   -0.36   -0.88   -1.30   -1.40   -1.06   -0.32    0.56    1.24    1.41    1.03    0.41    0.24    1.34    4.27
+    90.0    0.00    0.13    0.26    0.28    0.09   -0.30   -0.80   -1.20   -1.29   -0.95   -0.25    0.58    1.19    1.30    0.89    0.30    0.20    1.43    4.62
+    95.0    0.00    0.15    0.29    0.31    0.14   -0.25   -0.74   -1.11   -1.18   -0.84   -0.15    0.63    1.17    1.22    0.76    0.15    0.07    1.38    4.76
+   100.0    0.00    0.16    0.31    0.35    0.17   -0.21   -0.68   -1.04   -1.08   -0.72   -0.04    0.71    1.20    1.18    0.66   -0.02   -0.13    1.19    4.70
+   105.0    0.00    0.17    0.33    0.38    0.20   -0.18   -0.64   -0.97   -0.99   -0.61    0.08    0.81    1.26    1.18    0.58   -0.18   -0.37    0.90    4.47
+   110.0    0.00    0.18    0.35    0.40    0.23   -0.15   -0.61   -0.93   -0.92   -0.51    0.19    0.92    1.34    1.21    0.54   -0.32   -0.63    0.54    4.09
+   115.0    0.00    0.19    0.37    0.42    0.25   -0.14   -0.59   -0.90   -0.87   -0.44    0.29    1.03    1.43    1.27    0.52   -0.43   -0.87    0.16    3.63
+   120.0    0.00    0.20    0.39    0.44    0.26   -0.13   -0.59   -0.89   -0.85   -0.39    0.36    1.11    1.52    1.33    0.53   -0.51   -1.09   -0.21    3.14
+   125.0    0.00    0.21    0.40    0.45    0.27   -0.13   -0.59   -0.89   -0.84   -0.36    0.41    1.18    1.59    1.39    0.55   -0.57   -1.25   -0.53    2.65
+   130.0    0.00    0.21    0.41    0.46    0.27   -0.14   -0.60   -0.91   -0.85   -0.36    0.42    1.21    1.63    1.43    0.58   -0.59   -1.36   -0.78    2.22
+   135.0    0.00    0.22    0.41    0.46    0.27   -0.15   -0.62   -0.94   -0.88   -0.39    0.41    1.20    1.64    1.44    0.59   -0.59   -1.42   -0.95    1.88
+   140.0    0.00    0.22    0.42    0.46    0.26   -0.16   -0.65   -0.97   -0.92   -0.43    0.37    1.17    1.62    1.43    0.60   -0.58   -1.42   -1.02    1.65
+   145.0    0.00    0.22    0.42    0.46    0.25   -0.19   -0.69   -1.02   -0.97   -0.49    0.30    1.11    1.56    1.40    0.59   -0.55   -1.38   -1.01    1.52
+   150.0    0.00    0.22    0.41    0.45    0.23   -0.21   -0.73   -1.07   -1.04   -0.56    0.22    1.03    1.49    1.34    0.56   -0.53   -1.31   -0.93    1.49
+   155.0    0.00    0.21    0.41    0.43    0.21   -0.25   -0.77   -1.13   -1.11   -0.65    0.13    0.94    1.40    1.27    0.53   -0.50   -1.21   -0.79    1.55
+   160.0    0.00    0.21    0.40    0.42    0.18   -0.29   -0.83   -1.20   -1.20   -0.74    0.04    0.84    1.31    1.20    0.49   -0.48   -1.09   -0.61    1.68
+   165.0    0.00    0.20    0.38    0.39    0.15   -0.34   -0.89   -1.28   -1.29   -0.84   -0.06    0.75    1.23    1.13    0.45   -0.45   -0.98   -0.40    1.84
+   170.0    0.00    0.20    0.37    0.37    0.11   -0.39   -0.96   -1.37   -1.38   -0.93   -0.15    0.67    1.16    1.07    0.42   -0.43   -0.86   -0.20    2.03
+   175.0    0.00    0.19    0.35    0.34    0.07   -0.45   -1.04   -1.45   -1.48   -1.03   -0.23    0.60    1.10    1.02    0.39   -0.40   -0.75    0.01    2.23
+   180.0    0.00    0.18    0.33    0.31    0.02   -0.51   -1.11   -1.54   -1.57   -1.12   -0.30    0.54    1.06    0.99    0.38   -0.38   -0.64    0.20    2.42
+   185.0    0.00    0.17    0.30    0.27   -0.03   -0.57   -1.19   -1.63   -1.66   -1.19   -0.37    0.50    1.03    0.97    0.37   -0.35   -0.54    0.38    2.60
+   190.0    0.00    0.15    0.28    0.23   -0.08   -0.63   -1.25   -1.70   -1.73   -1.26   -0.42    0.47    1.01    0.95    0.37   -0.32   -0.46    0.54    2.76
+   195.0    0.00    0.14    0.25    0.19   -0.13   -0.68   -1.32   -1.77   -1.79   -1.31   -0.45    0.45    1.00    0.95    0.37   -0.30   -0.38    0.68    2.90
+   200.0    0.00    0.13    0.22    0.15   -0.17   -0.74   -1.37   -1.81   -1.84   -1.35   -0.48    0.43    0.99    0.94    0.37   -0.27   -0.31    0.80    3.03
+   205.0    0.00    0.11    0.19    0.11   -0.22   -0.78   -1.41   -1.85   -1.86   -1.36   -0.49    0.43    0.99    0.94    0.38   -0.25   -0.26    0.90    3.14
+   210.0    0.00    0.10    0.16    0.07   -0.26   -0.82   -1.44   -1.87   -1.87   -1.36   -0.48    0.44    1.00    0.95    0.38   -0.24   -0.22    0.97    3.24
+   215.0    0.00    0.08    0.13    0.03   -0.31   -0.86   -1.46   -1.87   -1.86   -1.35   -0.46    0.46    1.02    0.97    0.40   -0.22   -0.19    1.02    3.33
+   220.0    0.00    0.06    0.10   -0.01   -0.35   -0.89   -1.48   -1.87   -1.85   -1.32   -0.43    0.49    1.05    1.00    0.42   -0.21   -0.19    1.04    3.40
+   225.0    0.00    0.05    0.07   -0.05   -0.38   -0.91   -1.49   -1.86   -1.82   -1.28   -0.38    0.55    1.11    1.06    0.47   -0.19   -0.20    1.03    3.45
+   230.0    0.00    0.03    0.04   -0.08   -0.42   -0.94   -1.50   -1.85   -1.79   -1.24   -0.32    0.63    1.20    1.14    0.53   -0.17   -0.23    0.98    3.47
+   235.0    0.00    0.02    0.01   -0.12   -0.45   -0.96   -1.51   -1.84   -1.77   -1.19   -0.25    0.72    1.31    1.25    0.60   -0.16   -0.28    0.90    3.46
+   240.0    0.00    0.00   -0.02   -0.15   -0.48   -0.99   -1.52   -1.84   -1.74   -1.14   -0.17    0.83    1.44    1.38    0.69   -0.14   -0.35    0.78    3.41
+   245.0    0.00   -0.02   -0.04   -0.19   -0.51   -1.01   -1.53   -1.84   -1.72   -1.08   -0.08    0.96    1.59    1.52    0.79   -0.13   -0.44    0.63    3.31
+   250.0    0.00   -0.03   -0.07   -0.21   -0.54   -1.03   -1.54   -1.84   -1.70   -1.03    0.01    1.08    1.74    1.66    0.88   -0.13   -0.55    0.45    3.17
+   255.0    0.00   -0.04   -0.09   -0.24   -0.57   -1.05   -1.55   -1.84   -1.67   -0.98    0.10    1.21    1.89    1.79    0.95   -0.15   -0.67    0.25    2.98
+   260.0    0.00   -0.06   -0.11   -0.27   -0.59   -1.07   -1.56   -1.83   -1.65   -0.92    0.20    1.33    2.01    1.90    1.00   -0.19   -0.81    0.03    2.75
+   265.0    0.00   -0.07   -0.13   -0.29   -0.60   -1.08   -1.56   -1.82   -1.61   -0.86    0.28    1.43    2.11    1.97    1.02   -0.25   -0.96   -0.20    2.47
+   270.0    0.00   -0.08   -0.15   -0.30   -0.61   -1.08   -1.55   -1.79   -1.57   -0.80    0.36    1.52    2.18    2.00    0.99   -0.34   -1.12   -0.43    2.17
+   275.0    0.00   -0.09   -0.17   -0.31   -0.62   -1.07   -1.53   -1.75   -1.51   -0.73    0.43    1.58    2.21    1.99    0.93   -0.45   -1.27   -0.66    1.84
+   280.0    0.00   -0.10   -0.18   -0.32   -0.62   -1.05   -1.49   -1.70   -1.45   -0.66    0.50    1.61    2.21    1.93    0.84   -0.57   -1.42   -0.86    1.51
+   285.0    0.00   -0.11   -0.19   -0.33   -0.61   -1.03   -1.45   -1.64   -1.37   -0.59    0.55    1.63    2.17    1.85    0.73   -0.69   -1.55   -1.04    1.20
+   290.0    0.00   -0.12   -0.20   -0.33   -0.60   -1.00   -1.40   -1.57   -1.30   -0.52    0.59    1.63    2.12    1.76    0.62   -0.79   -1.65   -1.18    0.92
+   295.0    0.00   -0.13   -0.21   -0.33   -0.58   -0.96   -1.34   -1.50   -1.22   -0.46    0.62    1.61    2.05    1.66    0.51   -0.87   -1.71   -1.27    0.71
+   300.0    0.00   -0.13   -0.21   -0.33   -0.56   -0.92   -1.29   -1.43   -1.16   -0.41    0.64    1.58    1.99    1.58    0.44   -0.92   -1.73   -1.31    0.57
+   305.0    0.00   -0.14   -0.21   -0.32   -0.54   -0.89   -1.24   -1.37   -1.10   -0.37    0.64    1.55    1.93    1.52    0.41   -0.91   -1.70   -1.30    0.53
+   310.0    0.00   -0.14   -0.22   -0.31   -0.52   -0.85   -1.19   -1.33   -1.07   -0.36    0.63    1.52    1.90    1.50    0.42   -0.87   -1.63   -1.22    0.59
+   315.0    0.00   -0.14   -0.22   -0.31   -0.50   -0.82   -1.15   -1.29   -1.05   -0.36    0.61    1.49    1.87    1.51    0.47   -0.78   -1.51   -1.09    0.76
+   320.0    0.00   -0.14   -0.22   -0.30   -0.48   -0.79   -1.12   -1.27   -1.04   -0.37    0.58    1.46    1.87    1.54    0.55   -0.66   -1.37   -0.91    1.04
+   325.0    0.00   -0.14   -0.21   -0.29   -0.47   -0.77   -1.10   -1.26   -1.05   -0.40    0.54    1.43    1.87    1.59    0.64   -0.53   -1.22   -0.71    1.39
+   330.0    0.00   -0.14   -0.21   -0.28   -0.46   -0.76   -1.09   -1.26   -1.07   -0.44    0.50    1.41    1.88    1.65    0.74   -0.41   -1.08   -0.51    1.78
+   335.0    0.00   -0.14   -0.21   -0.27   -0.45   -0.75   -1.09   -1.27   -1.09   -0.48    0.46    1.38    1.89    1.69    0.82   -0.32   -0.97   -0.32    2.19
+   340.0    0.00   -0.14   -0.20   -0.27   -0.44   -0.74   -1.08   -1.28   -1.11   -0.51    0.42    1.36    1.89    1.72    0.86   -0.27   -0.91   -0.19    2.55
+   345.0    0.00   -0.13   -0.19   -0.26   -0.43   -0.73   -1.08   -1.28   -1.13   -0.54    0.39    1.34    1.88    1.72    0.86   -0.29   -0.93   -0.13    2.83
+   350.0    0.00   -0.13   -0.19   -0.25   -0.42   -0.73   -1.08   -1.29   -1.14   -0.55    0.37    1.32    1.86    1.70    0.81   -0.36   -1.01   -0.16    2.99
+   355.0    0.00   -0.12   -0.18   -0.24   -0.42   -0.73   -1.08   -1.29   -1.15   -0.56    0.36    1.30    1.84    1.65    0.72   -0.50   -1.18   -0.29    3.00
+   360.0    0.00   -0.12   -0.17   -0.23   -0.41   -0.73   -1.09   -1.30   -1.15   -0.56    0.36    1.29    1.81    1.59    0.61   -0.68   -1.41   -0.53    2.84
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TRM57971.00     NONE                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               8    15-MAY-08 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+      1.19     -0.34     66.88                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.03   -0.14   -0.32   -0.58   -0.92   -1.32   -1.75   -2.14   -2.43   -2.55   -2.47   -2.19   -1.73   -1.07   -0.16    1.11    2.87    5.13
+     0.0    0.00   -0.03   -0.11   -0.25   -0.48   -0.80   -1.22   -1.71   -2.21   -2.63   -2.87   -2.88   -2.65   -2.25   -1.72   -1.08   -0.21    1.17    3.40
+     5.0    0.00   -0.02   -0.10   -0.25   -0.48   -0.80   -1.22   -1.71   -2.21   -2.64   -2.89   -2.92   -2.70   -2.28   -1.73   -1.04   -0.11    1.29    3.51
+    10.0    0.00   -0.02   -0.10   -0.25   -0.47   -0.79   -1.21   -1.70   -2.20   -2.63   -2.89   -2.92   -2.71   -2.29   -1.69   -0.94    0.05    1.50    3.71
+    15.0    0.00   -0.02   -0.10   -0.24   -0.47   -0.79   -1.20   -1.68   -2.18   -2.60   -2.86   -2.90   -2.69   -2.25   -1.62   -0.80    0.27    1.78    3.99
+    20.0    0.00   -0.01   -0.09   -0.24   -0.47   -0.79   -1.19   -1.66   -2.14   -2.55   -2.81   -2.85   -2.64   -2.19   -1.51   -0.63    0.53    2.11    4.32
+    25.0    0.00   -0.01   -0.09   -0.24   -0.47   -0.78   -1.18   -1.63   -2.09   -2.49   -2.74   -2.78   -2.56   -2.09   -1.38   -0.43    0.80    2.45    4.68
+    30.0    0.00   -0.01   -0.09   -0.24   -0.47   -0.78   -1.16   -1.60   -2.05   -2.42   -2.66   -2.68   -2.46   -1.98   -1.24   -0.24    1.07    2.79    5.03
+    35.0    0.00   -0.01   -0.09   -0.24   -0.47   -0.77   -1.15   -1.58   -2.00   -2.35   -2.57   -2.58   -2.35   -1.86   -1.10   -0.06    1.31    3.09    5.35
+    40.0    0.00   -0.01   -0.08   -0.24   -0.47   -0.77   -1.15   -1.56   -1.96   -2.29   -2.49   -2.48   -2.24   -1.74   -0.96    0.10    1.51    3.33    5.62
+    45.0    0.00    0.00   -0.08   -0.24   -0.47   -0.78   -1.15   -1.55   -1.93   -2.24   -2.41   -2.39   -2.14   -1.63   -0.85    0.23    1.66    3.52    5.81
+    50.0    0.00    0.00   -0.08   -0.24   -0.47   -0.78   -1.15   -1.54   -1.92   -2.21   -2.36   -2.32   -2.05   -1.54   -0.76    0.32    1.76    3.63    5.93
+    55.0    0.00    0.00   -0.08   -0.24   -0.48   -0.79   -1.16   -1.55   -1.92   -2.19   -2.32   -2.27   -1.99   -1.47   -0.70    0.37    1.80    3.67    5.96
+    60.0    0.00    0.00   -0.08   -0.24   -0.48   -0.80   -1.18   -1.57   -1.93   -2.20   -2.31   -2.24   -1.95   -1.43   -0.67    0.38    1.79    3.64    5.92
+    65.0    0.00    0.00   -0.08   -0.24   -0.49   -0.82   -1.20   -1.59   -1.95   -2.21   -2.32   -2.23   -1.93   -1.42   -0.67    0.35    1.74    3.57    5.82
+    70.0    0.00    0.00   -0.08   -0.24   -0.50   -0.83   -1.22   -1.62   -1.98   -2.24   -2.34   -2.24   -1.94   -1.42   -0.69    0.31    1.66    3.46    5.67
+    75.0    0.00    0.00   -0.08   -0.25   -0.50   -0.84   -1.24   -1.65   -2.02   -2.28   -2.37   -2.27   -1.95   -1.44   -0.73    0.25    1.57    3.34    5.50
+    80.0    0.00    0.00   -0.08   -0.25   -0.51   -0.86   -1.26   -1.68   -2.06   -2.32   -2.41   -2.30   -1.98   -1.47   -0.77    0.18    1.48    3.22    5.34
+    85.0    0.00    0.00   -0.08   -0.25   -0.52   -0.87   -1.28   -1.71   -2.09   -2.35   -2.44   -2.33   -2.01   -1.50   -0.81    0.13    1.41    3.12    5.20
+    90.0    0.00    0.00   -0.08   -0.25   -0.52   -0.88   -1.30   -1.73   -2.11   -2.38   -2.47   -2.35   -2.03   -1.52   -0.84    0.09    1.35    3.05    5.11
+    95.0    0.00    0.00   -0.08   -0.25   -0.53   -0.89   -1.31   -1.75   -2.13   -2.40   -2.48   -2.36   -2.04   -1.54   -0.86    0.06    1.33    3.02    5.06
+   100.0    0.00    0.00   -0.08   -0.25   -0.53   -0.89   -1.32   -1.75   -2.14   -2.40   -2.48   -2.36   -2.04   -1.54   -0.86    0.06    1.34    3.04    5.08
+   105.0    0.00    0.00   -0.08   -0.26   -0.53   -0.90   -1.32   -1.76   -2.14   -2.40   -2.47   -2.35   -2.03   -1.53   -0.85    0.08    1.37    3.10    5.15
+   110.0    0.00    0.00   -0.08   -0.26   -0.53   -0.90   -1.32   -1.75   -2.13   -2.38   -2.46   -2.33   -2.02   -1.52   -0.83    0.12    1.44    3.19    5.27
+   115.0    0.00    0.00   -0.08   -0.26   -0.54   -0.90   -1.32   -1.75   -2.12   -2.37   -2.44   -2.32   -2.00   -1.50   -0.81    0.16    1.51    3.31    5.42
+   120.0    0.00    0.00   -0.08   -0.26   -0.54   -0.90   -1.32   -1.74   -2.11   -2.35   -2.42   -2.30   -1.99   -1.49   -0.79    0.20    1.58    3.42    5.57
+   125.0    0.00    0.00   -0.09   -0.26   -0.54   -0.90   -1.31   -1.73   -2.10   -2.34   -2.41   -2.29   -1.99   -1.49   -0.78    0.23    1.64    3.51    5.71
+   130.0    0.00    0.00   -0.09   -0.27   -0.54   -0.90   -1.31   -1.73   -2.09   -2.34   -2.41   -2.30   -2.00   -1.51   -0.79    0.23    1.67    3.57    5.81
+   135.0    0.00   -0.01   -0.09   -0.27   -0.55   -0.90   -1.32   -1.73   -2.10   -2.34   -2.43   -2.32   -2.03   -1.54   -0.82    0.21    1.66    3.58    5.86
+   140.0    0.00   -0.01   -0.10   -0.28   -0.55   -0.91   -1.32   -1.74   -2.11   -2.36   -2.45   -2.36   -2.08   -1.60   -0.89    0.14    1.59    3.53    5.84
+   145.0    0.00   -0.01   -0.10   -0.28   -0.56   -0.92   -1.33   -1.75   -2.12   -2.38   -2.49   -2.42   -2.15   -1.68   -0.98    0.04    1.48    3.41    5.75
+   150.0    0.00   -0.01   -0.11   -0.29   -0.57   -0.93   -1.34   -1.77   -2.15   -2.42   -2.54   -2.48   -2.23   -1.78   -1.09   -0.10    1.31    3.23    5.60
+   155.0    0.00   -0.02   -0.11   -0.30   -0.58   -0.94   -1.36   -1.79   -2.18   -2.46   -2.59   -2.55   -2.32   -1.89   -1.23   -0.27    1.11    3.00    5.40
+   160.0    0.00   -0.02   -0.12   -0.31   -0.59   -0.95   -1.38   -1.81   -2.21   -2.50   -2.65   -2.62   -2.41   -2.00   -1.38   -0.45    0.88    2.74    5.17
+   165.0    0.00   -0.02   -0.12   -0.31   -0.60   -0.97   -1.39   -1.84   -2.24   -2.55   -2.70   -2.69   -2.49   -2.11   -1.52   -0.64    0.64    2.47    4.93
+   170.0    0.00   -0.03   -0.13   -0.32   -0.61   -0.98   -1.42   -1.86   -2.27   -2.58   -2.75   -2.75   -2.56   -2.21   -1.65   -0.81    0.43    2.23    4.71
+   175.0    0.00   -0.03   -0.14   -0.33   -0.62   -1.00   -1.43   -1.89   -2.30   -2.62   -2.79   -2.79   -2.62   -2.28   -1.75   -0.95    0.25    2.03    4.54
+   180.0    0.00   -0.04   -0.15   -0.34   -0.64   -1.01   -1.45   -1.91   -2.32   -2.64   -2.81   -2.81   -2.65   -2.32   -1.82   -1.05    0.12    1.89    4.43
+   185.0    0.00   -0.04   -0.15   -0.35   -0.65   -1.03   -1.47   -1.93   -2.34   -2.65   -2.82   -2.82   -2.65   -2.33   -1.84   -1.09    0.07    1.83    4.39
+   190.0    0.00   -0.04   -0.16   -0.36   -0.66   -1.04   -1.48   -1.94   -2.35   -2.66   -2.81   -2.81   -2.63   -2.31   -1.81   -1.06    0.10    1.86    4.43
+   195.0    0.00   -0.05   -0.17   -0.37   -0.67   -1.05   -1.49   -1.95   -2.35   -2.65   -2.80   -2.77   -2.59   -2.25   -1.74   -0.97    0.20    1.98    4.54
+   200.0    0.00   -0.05   -0.18   -0.38   -0.68   -1.06   -1.50   -1.95   -2.35   -2.63   -2.76   -2.73   -2.52   -2.16   -1.62   -0.83    0.37    2.16    4.70
+   205.0    0.00   -0.05   -0.18   -0.39   -0.69   -1.07   -1.50   -1.94   -2.33   -2.61   -2.72   -2.66   -2.43   -2.04   -1.47   -0.64    0.59    2.40    4.90
+   210.0    0.00   -0.06   -0.19   -0.40   -0.70   -1.07   -1.50   -1.94   -2.32   -2.58   -2.68   -2.59   -2.34   -1.91   -1.30   -0.42    0.85    2.66    5.11
+   215.0    0.00   -0.06   -0.19   -0.41   -0.70   -1.08   -1.50   -1.93   -2.30   -2.54   -2.62   -2.52   -2.23   -1.78   -1.12   -0.20    1.11    2.92    5.31
+   220.0    0.00   -0.06   -0.20   -0.41   -0.71   -1.08   -1.50   -1.91   -2.27   -2.51   -2.57   -2.44   -2.13   -1.64   -0.95    0.01    1.35    3.17    5.48
+   225.0    0.00   -0.07   -0.20   -0.42   -0.71   -1.08   -1.49   -1.90   -2.25   -2.47   -2.52   -2.37   -2.04   -1.52   -0.80    0.19    1.55    3.37    5.61
+   230.0    0.00   -0.07   -0.21   -0.42   -0.71   -1.08   -1.48   -1.88   -2.22   -2.43   -2.47   -2.30   -1.95   -1.42   -0.68    0.33    1.70    3.51    5.69
+   235.0    0.00   -0.07   -0.21   -0.43   -0.72   -1.07   -1.47   -1.87   -2.20   -2.40   -2.43   -2.25   -1.88   -1.34   -0.59    0.42    1.80    3.59    5.72
+   240.0    0.00   -0.07   -0.22   -0.43   -0.72   -1.07   -1.47   -1.86   -2.19   -2.38   -2.39   -2.21   -1.84   -1.29   -0.55    0.46    1.83    3.62    5.72
+   245.0    0.00   -0.07   -0.22   -0.43   -0.71   -1.06   -1.46   -1.85   -2.17   -2.36   -2.37   -2.18   -1.81   -1.27   -0.55    0.44    1.81    3.60    5.69
+   250.0    0.00   -0.08   -0.22   -0.43   -0.71   -1.06   -1.45   -1.84   -2.16   -2.35   -2.36   -2.17   -1.80   -1.28   -0.57    0.40    1.75    3.56    5.67
+   255.0    0.00   -0.08   -0.22   -0.43   -0.71   -1.05   -1.44   -1.83   -2.15   -2.35   -2.35   -2.17   -1.81   -1.31   -0.63    0.32    1.67    3.50    5.66
+   260.0    0.00   -0.08   -0.22   -0.43   -0.70   -1.04   -1.43   -1.82   -2.15   -2.35   -2.36   -2.19   -1.84   -1.35   -0.69    0.24    1.59    3.46    5.68
+   265.0    0.00   -0.08   -0.22   -0.42   -0.69   -1.03   -1.42   -1.81   -2.15   -2.35   -2.37   -2.21   -1.88   -1.40   -0.76    0.16    1.53    3.44    5.74
+   270.0    0.00   -0.08   -0.21   -0.42   -0.69   -1.02   -1.41   -1.80   -2.14   -2.36   -2.39   -2.24   -1.92   -1.46   -0.82    0.10    1.49    3.45    5.84
+   275.0    0.00   -0.07   -0.21   -0.41   -0.67   -1.01   -1.39   -1.79   -2.14   -2.36   -2.41   -2.27   -1.96   -1.50   -0.87    0.07    1.48    3.50    5.97
+   280.0    0.00   -0.07   -0.21   -0.40   -0.66   -0.99   -1.37   -1.77   -2.13   -2.36   -2.42   -2.29   -1.99   -1.54   -0.90    0.06    1.51    3.57    6.12
+   285.0    0.00   -0.07   -0.20   -0.39   -0.65   -0.97   -1.35   -1.75   -2.11   -2.36   -2.43   -2.31   -2.02   -1.56   -0.90    0.07    1.55    3.66    6.27
+   290.0    0.00   -0.07   -0.20   -0.38   -0.63   -0.95   -1.33   -1.73   -2.10   -2.35   -2.44   -2.33   -2.03   -1.57   -0.89    0.10    1.60    3.73    6.39
+   295.0    0.00   -0.07   -0.19   -0.37   -0.61   -0.93   -1.30   -1.71   -2.08   -2.34   -2.44   -2.33   -2.04   -1.56   -0.88    0.13    1.64    3.78    6.46
+   300.0    0.00   -0.06   -0.19   -0.36   -0.60   -0.90   -1.28   -1.68   -2.06   -2.33   -2.43   -2.33   -2.03   -1.55   -0.86    0.15    1.65    3.78    6.46
+   305.0    0.00   -0.06   -0.18   -0.35   -0.58   -0.88   -1.25   -1.66   -2.04   -2.32   -2.43   -2.33   -2.03   -1.54   -0.84    0.15    1.62    3.71    6.38
+   310.0    0.00   -0.06   -0.17   -0.34   -0.56   -0.86   -1.23   -1.64   -2.03   -2.31   -2.42   -2.32   -2.02   -1.53   -0.85    0.12    1.54    3.56    6.21
+   315.0    0.00   -0.06   -0.16   -0.32   -0.55   -0.85   -1.22   -1.63   -2.02   -2.31   -2.43   -2.33   -2.03   -1.54   -0.87    0.05    1.39    3.34    5.95
+   320.0    0.00   -0.05   -0.16   -0.31   -0.53   -0.83   -1.20   -1.62   -2.02   -2.32   -2.44   -2.35   -2.04   -1.57   -0.93   -0.06    1.20    3.05    5.61
+   325.0    0.00   -0.05   -0.15   -0.30   -0.52   -0.82   -1.20   -1.62   -2.03   -2.34   -2.47   -2.38   -2.08   -1.61   -1.01   -0.20    0.96    2.71    5.23
+   330.0    0.00   -0.05   -0.14   -0.29   -0.51   -0.81   -1.19   -1.63   -2.05   -2.37   -2.51   -2.43   -2.13   -1.68   -1.11   -0.37    0.70    2.35    4.81
+   335.0    0.00   -0.04   -0.14   -0.29   -0.50   -0.81   -1.20   -1.64   -2.08   -2.41   -2.56   -2.49   -2.21   -1.77   -1.23   -0.55    0.43    1.99    4.41
+   340.0    0.00   -0.04   -0.13   -0.28   -0.50   -0.80   -1.20   -1.66   -2.11   -2.46   -2.63   -2.57   -2.30   -1.88   -1.36   -0.73    0.19    1.66    4.04
+   345.0    0.00   -0.04   -0.12   -0.27   -0.49   -0.80   -1.21   -1.68   -2.14   -2.51   -2.70   -2.65   -2.39   -1.99   -1.49   -0.88   -0.02    1.40    3.73
+   350.0    0.00   -0.03   -0.12   -0.26   -0.49   -0.80   -1.21   -1.69   -2.17   -2.56   -2.77   -2.74   -2.49   -2.09   -1.59   -1.00   -0.16    1.22    3.51
+   355.0    0.00   -0.03   -0.11   -0.26   -0.48   -0.80   -1.22   -1.71   -2.20   -2.60   -2.82   -2.82   -2.58   -2.18   -1.68   -1.07   -0.22    1.14    3.40
+   360.0    0.00   -0.03   -0.11   -0.25   -0.48   -0.80   -1.22   -1.71   -2.21   -2.63   -2.87   -2.88   -2.65   -2.25   -1.72   -1.08   -0.21    1.17    3.40
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.28      0.81     57.83                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.12   -0.45   -0.91   -1.44   -1.97   -2.49   -2.99   -3.44   -3.77   -3.85   -3.60   -2.99   -2.07   -0.95    0.29    1.71    3.53    6.00
+     0.0    0.00   -0.17   -0.55   -1.07   -1.64   -2.19   -2.68   -3.11   -3.44   -3.66   -3.68   -3.43   -2.86   -1.96   -0.79    0.61    2.25    4.21    6.63
+     5.0    0.00   -0.16   -0.54   -1.06   -1.63   -2.19   -2.69   -3.11   -3.46   -3.67   -3.70   -3.45   -2.88   -1.97   -0.78    0.63    2.27    4.22    6.65
+    10.0    0.00   -0.16   -0.53   -1.05   -1.62   -2.19   -2.69   -3.13   -3.47   -3.69   -3.72   -3.47   -2.88   -1.97   -0.77    0.64    2.26    4.17    6.59
+    15.0    0.00   -0.15   -0.52   -1.03   -1.61   -2.18   -2.70   -3.14   -3.50   -3.72   -3.74   -3.48   -2.88   -1.95   -0.75    0.64    2.22    4.08    6.47
+    20.0    0.00   -0.15   -0.51   -1.02   -1.60   -2.17   -2.70   -3.16   -3.52   -3.75   -3.77   -3.50   -2.88   -1.93   -0.73    0.65    2.18    3.98    6.31
+    25.0    0.00   -0.14   -0.50   -1.00   -1.58   -2.16   -2.70   -3.17   -3.55   -3.79   -3.81   -3.52   -2.88   -1.91   -0.69    0.67    2.16    3.89    6.16
+    30.0    0.00   -0.14   -0.48   -0.99   -1.57   -2.15   -2.70   -3.19   -3.58   -3.84   -3.86   -3.56   -2.89   -1.89   -0.65    0.71    2.16    3.84    6.05
+    35.0    0.00   -0.13   -0.47   -0.97   -1.55   -2.14   -2.69   -3.20   -3.61   -3.88   -3.91   -3.61   -2.92   -1.89   -0.62    0.76    2.20    3.85    6.01
+    40.0    0.00   -0.12   -0.46   -0.95   -1.53   -2.12   -2.68   -3.20   -3.64   -3.94   -3.98   -3.68   -2.97   -1.90   -0.60    0.81    2.27    3.93    6.07
+    45.0    0.00   -0.12   -0.45   -0.94   -1.51   -2.10   -2.67   -3.21   -3.67   -3.99   -4.05   -3.76   -3.04   -1.94   -0.60    0.86    2.37    4.06    6.23
+    50.0    0.00   -0.11   -0.44   -0.92   -1.48   -2.07   -2.65   -3.20   -3.69   -4.03   -4.13   -3.84   -3.12   -2.01   -0.62    0.88    2.46    4.24    6.48
+    55.0    0.00   -0.11   -0.43   -0.90   -1.46   -2.05   -2.63   -3.19   -3.70   -4.07   -4.19   -3.93   -3.22   -2.10   -0.68    0.88    2.54    4.43    6.79
+    60.0    0.00   -0.10   -0.42   -0.89   -1.44   -2.03   -2.61   -3.17   -3.70   -4.10   -4.25   -4.01   -3.32   -2.20   -0.77    0.82    2.57    4.59    7.12
+    65.0    0.00   -0.10   -0.41   -0.88   -1.43   -2.00   -2.58   -3.15   -3.68   -4.11   -4.28   -4.08   -3.41   -2.32   -0.90    0.72    2.53    4.68    7.41
+    70.0    0.00   -0.09   -0.40   -0.87   -1.41   -1.98   -2.55   -3.12   -3.66   -4.10   -4.30   -4.12   -3.49   -2.43   -1.05    0.56    2.41    4.68    7.61
+    75.0    0.00   -0.09   -0.39   -0.86   -1.40   -1.96   -2.52   -3.08   -3.63   -4.07   -4.29   -4.14   -3.55   -2.54   -1.21    0.35    2.20    4.57    7.69
+    80.0    0.00   -0.08   -0.39   -0.85   -1.39   -1.94   -2.49   -3.05   -3.58   -4.03   -4.26   -4.13   -3.58   -2.63   -1.38    0.11    1.93    4.34    7.62
+    85.0    0.00   -0.08   -0.39   -0.85   -1.38   -1.93   -2.47   -3.01   -3.54   -3.98   -4.21   -4.10   -3.58   -2.70   -1.54   -0.15    1.60    4.00    7.39
+    90.0    0.00   -0.08   -0.38   -0.84   -1.38   -1.91   -2.44   -2.97   -3.48   -3.91   -4.14   -4.04   -3.56   -2.74   -1.67   -0.39    1.25    3.59    7.03
+    95.0    0.00   -0.08   -0.38   -0.84   -1.37   -1.91   -2.42   -2.93   -3.43   -3.84   -4.06   -3.97   -3.51   -2.74   -1.76   -0.60    0.91    3.15    6.57
+   100.0    0.00   -0.07   -0.38   -0.84   -1.37   -1.90   -2.40   -2.90   -3.38   -3.78   -3.98   -3.89   -3.44   -2.71   -1.80   -0.75    0.61    2.72    6.07
+   105.0    0.00   -0.07   -0.38   -0.84   -1.37   -1.89   -2.39   -2.87   -3.33   -3.71   -3.91   -3.80   -3.36   -2.65   -1.79   -0.84    0.39    2.35    5.58
+   110.0    0.00   -0.07   -0.38   -0.84   -1.37   -1.89   -2.37   -2.84   -3.28   -3.65   -3.84   -3.72   -3.27   -2.56   -1.73   -0.84    0.27    2.08    5.16
+   115.0    0.00   -0.07   -0.38   -0.84   -1.37   -1.88   -2.36   -2.81   -3.25   -3.61   -3.78   -3.65   -3.18   -2.45   -1.62   -0.77    0.26    1.93    4.87
+   120.0    0.00   -0.07   -0.37   -0.84   -1.37   -1.88   -2.35   -2.79   -3.22   -3.57   -3.72   -3.58   -3.08   -2.33   -1.47   -0.63    0.35    1.91    4.72
+   125.0    0.00   -0.07   -0.37   -0.84   -1.37   -1.88   -2.34   -2.78   -3.19   -3.53   -3.68   -3.51   -2.99   -2.20   -1.30   -0.43    0.52    2.01    4.73
+   130.0    0.00   -0.07   -0.37   -0.84   -1.37   -1.87   -2.33   -2.76   -3.17   -3.50   -3.64   -3.46   -2.91   -2.07   -1.12   -0.20    0.76    2.22    4.88
+   135.0    0.00   -0.07   -0.37   -0.84   -1.36   -1.86   -2.32   -2.75   -3.15   -3.48   -3.60   -3.40   -2.82   -1.94   -0.94    0.03    1.03    2.49    5.15
+   140.0    0.00   -0.07   -0.37   -0.83   -1.35   -1.85   -2.31   -2.74   -3.13   -3.45   -3.57   -3.35   -2.74   -1.82   -0.77    0.25    1.30    2.78    5.47
+   145.0    0.00   -0.06   -0.37   -0.83   -1.34   -1.84   -2.30   -2.72   -3.12   -3.43   -3.53   -3.30   -2.67   -1.72   -0.63    0.44    1.53    3.06    5.79
+   150.0    0.00   -0.07   -0.36   -0.82   -1.33   -1.83   -2.29   -2.71   -3.10   -3.40   -3.49   -3.25   -2.61   -1.64   -0.52    0.58    1.72    3.29    6.07
+   155.0    0.00   -0.07   -0.36   -0.81   -1.32   -1.82   -2.28   -2.70   -3.09   -3.38   -3.46   -3.20   -2.55   -1.58   -0.45    0.67    1.84    3.45    6.26
+   160.0    0.00   -0.07   -0.36   -0.81   -1.31   -1.81   -2.27   -2.69   -3.08   -3.36   -3.43   -3.16   -2.51   -1.54   -0.42    0.71    1.89    3.53    6.34
+   165.0    0.00   -0.07   -0.36   -0.80   -1.30   -1.79   -2.26   -2.69   -3.07   -3.35   -3.41   -3.14   -2.49   -1.54   -0.43    0.70    1.89    3.52    6.30
+   170.0    0.00   -0.07   -0.36   -0.79   -1.29   -1.78   -2.25   -2.69   -3.07   -3.35   -3.40   -3.13   -2.49   -1.55   -0.46    0.66    1.85    3.46    6.15
+   175.0    0.00   -0.07   -0.36   -0.79   -1.28   -1.77   -2.25   -2.69   -3.08   -3.36   -3.41   -3.15   -2.52   -1.60   -0.52    0.59    1.78    3.36    5.93
+   180.0    0.00   -0.07   -0.36   -0.78   -1.27   -1.77   -2.25   -2.70   -3.10   -3.38   -3.44   -3.19   -2.58   -1.67   -0.61    0.51    1.70    3.25    5.67
+   185.0    0.00   -0.07   -0.36   -0.78   -1.27   -1.77   -2.25   -2.72   -3.13   -3.42   -3.49   -3.25   -2.65   -1.77   -0.70    0.43    1.64    3.15    5.42
+   190.0    0.00   -0.08   -0.36   -0.78   -1.26   -1.77   -2.26   -2.74   -3.16   -3.47   -3.55   -3.32   -2.75   -1.87   -0.81    0.35    1.59    3.10    5.21
+   195.0    0.00   -0.08   -0.36   -0.78   -1.26   -1.77   -2.28   -2.76   -3.20   -3.52   -3.62   -3.41   -2.86   -1.99   -0.91    0.28    1.58    3.09    5.08
+   200.0    0.00   -0.08   -0.36   -0.78   -1.27   -1.78   -2.29   -2.80   -3.25   -3.58   -3.70   -3.51   -2.97   -2.11   -1.02    0.22    1.58    3.14    5.04
+   205.0    0.00   -0.09   -0.37   -0.79   -1.28   -1.79   -2.32   -2.83   -3.30   -3.64   -3.77   -3.60   -3.07   -2.22   -1.11    0.17    1.61    3.24    5.10
+   210.0    0.00   -0.09   -0.38   -0.80   -1.29   -1.81   -2.34   -2.86   -3.34   -3.70   -3.84   -3.67   -3.16   -2.32   -1.20    0.13    1.65    3.36    5.24
+   215.0    0.00   -0.10   -0.38   -0.80   -1.30   -1.82   -2.36   -2.90   -3.38   -3.75   -3.89   -3.73   -3.23   -2.39   -1.27    0.10    1.70    3.51    5.45
+   220.0    0.00   -0.10   -0.39   -0.82   -1.31   -1.84   -2.39   -2.93   -3.42   -3.79   -3.93   -3.77   -3.27   -2.44   -1.32    0.07    1.73    3.65    5.68
+   225.0    0.00   -0.11   -0.40   -0.83   -1.33   -1.86   -2.41   -2.96   -3.45   -3.82   -3.96   -3.80   -3.30   -2.47   -1.35    0.05    1.76    3.77    5.91
+   230.0    0.00   -0.11   -0.41   -0.84   -1.34   -1.88   -2.43   -2.98   -3.48   -3.84   -3.97   -3.80   -3.29   -2.47   -1.37    0.04    1.78    3.87    6.12
+   235.0    0.00   -0.12   -0.42   -0.86   -1.36   -1.89   -2.45   -3.00   -3.50   -3.86   -3.98   -3.79   -3.28   -2.45   -1.35    0.04    1.79    3.93    6.27
+   240.0    0.00   -0.12   -0.44   -0.87   -1.37   -1.91   -2.46   -3.01   -3.51   -3.87   -3.99   -3.78   -3.25   -2.42   -1.32    0.05    1.79    3.96    6.37
+   245.0    0.00   -0.13   -0.45   -0.89   -1.39   -1.92   -2.47   -3.03   -3.53   -3.89   -3.99   -3.77   -3.21   -2.37   -1.28    0.08    1.80    3.96    6.42
+   250.0    0.00   -0.14   -0.46   -0.90   -1.40   -1.93   -2.48   -3.04   -3.55   -3.91   -4.00   -3.76   -3.18   -2.31   -1.22    0.12    1.81    3.94    6.41
+   255.0    0.00   -0.14   -0.47   -0.92   -1.42   -1.94   -2.49   -3.05   -3.56   -3.93   -4.02   -3.76   -3.15   -2.25   -1.15    0.17    1.82    3.91    6.36
+   260.0    0.00   -0.15   -0.48   -0.93   -1.43   -1.95   -2.50   -3.06   -3.58   -3.95   -4.04   -3.77   -3.13   -2.20   -1.08    0.23    1.83    3.87    6.29
+   265.0    0.00   -0.15   -0.49   -0.95   -1.44   -1.96   -2.51   -3.07   -3.60   -3.98   -4.07   -3.78   -3.11   -2.15   -1.01    0.28    1.83    3.81    6.20
+   270.0    0.00   -0.16   -0.51   -0.96   -1.46   -1.97   -2.52   -3.08   -3.62   -4.01   -4.10   -3.79   -3.09   -2.10   -0.96    0.32    1.82    3.75    6.10
+   275.0    0.00   -0.16   -0.52   -0.97   -1.47   -1.99   -2.53   -3.10   -3.64   -4.03   -4.12   -3.79   -3.07   -2.06   -0.91    0.34    1.80    3.67    5.99
+   280.0    0.00   -0.17   -0.53   -0.99   -1.49   -2.00   -2.54   -3.11   -3.66   -4.05   -4.13   -3.79   -3.05   -2.03   -0.88    0.34    1.75    3.57    5.88
+   285.0    0.00   -0.17   -0.54   -1.00   -1.50   -2.02   -2.56   -3.13   -3.67   -4.05   -4.12   -3.77   -3.01   -1.99   -0.86    0.32    1.67    3.44    5.76
+   290.0    0.00   -0.18   -0.55   -1.02   -1.52   -2.03   -2.57   -3.14   -3.68   -4.05   -4.10   -3.73   -2.97   -1.95   -0.85    0.28    1.57    3.31    5.63
+   295.0    0.00   -0.18   -0.55   -1.03   -1.54   -2.05   -2.59   -3.15   -3.67   -4.03   -4.06   -3.67   -2.91   -1.91   -0.85    0.22    1.46    3.16    5.49
+   300.0    0.00   -0.18   -0.56   -1.04   -1.55   -2.07   -2.61   -3.16   -3.66   -3.99   -4.00   -3.61   -2.85   -1.87   -0.86    0.16    1.35    3.01    5.36
+   305.0    0.00   -0.19   -0.57   -1.05   -1.57   -2.09   -2.62   -3.16   -3.64   -3.95   -3.94   -3.53   -2.78   -1.84   -0.86    0.11    1.25    2.89    5.25
+   310.0    0.00   -0.19   -0.57   -1.06   -1.59   -2.11   -2.64   -3.16   -3.62   -3.90   -3.87   -3.46   -2.72   -1.80   -0.86    0.07    1.18    2.80    5.16
+   315.0    0.00   -0.19   -0.58   -1.07   -1.60   -2.13   -2.65   -3.16   -3.59   -3.85   -3.80   -3.39   -2.67   -1.78   -0.86    0.06    1.16    2.77    5.12
+   320.0    0.00   -0.19   -0.58   -1.08   -1.62   -2.14   -2.66   -3.15   -3.56   -3.79   -3.74   -3.33   -2.63   -1.76   -0.85    0.07    1.19    2.81    5.14
+   325.0    0.00   -0.19   -0.58   -1.09   -1.63   -2.16   -2.66   -3.14   -3.53   -3.75   -3.69   -3.30   -2.62   -1.76   -0.84    0.12    1.28    2.91    5.23
+   330.0    0.00   -0.19   -0.58   -1.09   -1.64   -2.17   -2.67   -3.13   -3.50   -3.71   -3.65   -3.28   -2.62   -1.77   -0.83    0.19    1.41    3.08    5.38
+   335.0    0.00   -0.19   -0.58   -1.09   -1.64   -2.17   -2.67   -3.12   -3.48   -3.68   -3.63   -3.28   -2.65   -1.79   -0.81    0.27    1.57    3.29    5.59
+   340.0    0.00   -0.18   -0.58   -1.09   -1.65   -2.18   -2.67   -3.11   -3.46   -3.66   -3.63   -3.30   -2.68   -1.83   -0.80    0.36    1.75    3.53    5.84
+   345.0    0.00   -0.18   -0.57   -1.09   -1.65   -2.19   -2.67   -3.10   -3.44   -3.65   -3.63   -3.33   -2.73   -1.87   -0.80    0.45    1.92    3.76    6.10
+   350.0    0.00   -0.18   -0.57   -1.09   -1.65   -2.19   -2.68   -3.10   -3.44   -3.64   -3.64   -3.37   -2.78   -1.90   -0.79    0.52    2.07    3.97    6.33
+   355.0    0.00   -0.17   -0.56   -1.08   -1.65   -2.19   -2.68   -3.10   -3.44   -3.65   -3.66   -3.40   -2.82   -1.94   -0.79    0.58    2.19    4.12    6.52
+   360.0    0.00   -0.17   -0.55   -1.07   -1.64   -2.19   -2.68   -3.11   -3.44   -3.66   -3.68   -3.43   -2.86   -1.96   -0.79    0.61    2.25    4.21    6.63
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TRM5800         NONE                                        TYPE / SERIAL NO    
+FIELD               NGS/TUM                  3    10-AUG-05 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.80      1.04     74.24                              NORTH / EAST / UP   
+   NOAZI    0.00    1.36    2.48    3.03    3.22    3.21    3.05    2.81    2.63    2.60    2.66    2.84    3.13    3.66    4.30    5.37    6.89
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.10     -2.22     76.96                              NORTH / EAST / UP   
+   NOAZI    0.00   -1.03   -1.12   -0.70   -0.02    0.78    1.37    1.89    2.15    2.07    1.95    1.77    1.42    1.05    0.77    0.59    0.96
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TRM59800.00     NONE                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               5    02-MAR-09 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+      0.37      0.86     90.02                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.25   -0.97   -2.08   -3.44   -4.92   -6.32   -7.50   -8.33   -8.71   -8.60   -7.99   -6.86   -5.15   -2.77    0.41    4.46    9.30   14.58
+     0.0    0.00   -0.27   -1.00   -2.09   -3.44   -4.89   -6.29   -7.47   -8.30   -8.65   -8.49   -7.81   -6.64   -4.96   -2.66    0.39    4.33    9.13   14.47
+     5.0    0.00   -0.27   -1.00   -2.09   -3.44   -4.89   -6.30   -7.50   -8.33   -8.68   -8.50   -7.81   -6.62   -4.94   -2.68    0.33    4.23    9.05   14.51
+    10.0    0.00   -0.27   -1.00   -2.09   -3.44   -4.89   -6.31   -7.52   -8.36   -8.71   -8.53   -7.81   -6.61   -4.93   -2.69    0.27    4.14    8.99   14.54
+    15.0    0.00   -0.27   -1.00   -2.09   -3.44   -4.90   -6.32   -7.54   -8.39   -8.75   -8.55   -7.82   -6.61   -4.93   -2.71    0.23    4.09    8.96   14.59
+    20.0    0.00   -0.27   -1.00   -2.09   -3.44   -4.90   -6.33   -7.56   -8.42   -8.78   -8.58   -7.85   -6.62   -4.94   -2.72    0.21    4.07    8.97   14.64
+    25.0    0.00   -0.27   -1.00   -2.09   -3.44   -4.90   -6.34   -7.57   -8.44   -8.80   -8.61   -7.88   -6.65   -4.96   -2.73    0.22    4.11    9.02   14.70
+    30.0    0.00   -0.28   -1.00   -2.09   -3.44   -4.91   -6.34   -7.58   -8.45   -8.82   -8.64   -7.91   -6.68   -4.98   -2.72    0.26    4.18    9.12   14.77
+    35.0    0.00   -0.28   -1.00   -2.09   -3.44   -4.91   -6.35   -7.58   -8.46   -8.84   -8.66   -7.94   -6.71   -5.00   -2.71    0.32    4.30    9.25   14.85
+    40.0    0.00   -0.28   -1.00   -2.09   -3.44   -4.91   -6.34   -7.58   -8.45   -8.84   -8.67   -7.97   -6.75   -5.02   -2.69    0.40    4.43    9.41   14.93
+    45.0    0.00   -0.28   -1.00   -2.10   -3.44   -4.91   -6.34   -7.57   -8.44   -8.83   -8.68   -7.98   -6.77   -5.03   -2.67    0.48    4.57    9.56   15.01
+    50.0    0.00   -0.28   -1.00   -2.10   -3.45   -4.91   -6.34   -7.56   -8.42   -8.81   -8.67   -7.99   -6.79   -5.04   -2.64    0.57    4.71    9.71   15.08
+    55.0    0.00   -0.27   -1.00   -2.10   -3.45   -4.92   -6.33   -7.54   -8.40   -8.78   -8.65   -7.99   -6.80   -5.04   -2.61    0.64    4.82    9.82   15.13
+    60.0    0.00   -0.27   -1.00   -2.10   -3.46   -4.92   -6.33   -7.53   -8.37   -8.76   -8.63   -7.98   -6.79   -5.03   -2.59    0.69    4.89    9.89   15.16
+    65.0    0.00   -0.27   -1.00   -2.11   -3.46   -4.93   -6.33   -7.52   -8.35   -8.73   -8.60   -7.95   -6.78   -5.02   -2.56    0.72    4.93    9.92   15.16
+    70.0    0.00   -0.27   -1.00   -2.11   -3.47   -4.93   -6.33   -7.51   -8.33   -8.70   -8.57   -7.93   -6.75   -5.00   -2.55    0.74    4.93    9.91   15.14
+    75.0    0.00   -0.27   -1.00   -2.11   -3.48   -4.94   -6.33   -7.50   -8.32   -8.68   -8.54   -7.90   -6.73   -4.98   -2.54    0.73    4.90    9.85   15.09
+    80.0    0.00   -0.27   -1.00   -2.12   -3.48   -4.95   -6.34   -7.50   -8.31   -8.66   -8.52   -7.88   -6.71   -4.96   -2.54    0.70    4.84    9.76   15.02
+    85.0    0.00   -0.27   -1.00   -2.12   -3.49   -4.96   -6.35   -7.51   -8.31   -8.65   -8.51   -7.87   -6.70   -4.96   -2.55    0.66    4.76    9.66   14.93
+    90.0    0.00   -0.27   -1.00   -2.12   -3.50   -4.97   -6.36   -7.52   -8.31   -8.65   -8.51   -7.86   -6.70   -4.96   -2.57    0.62    4.68    9.54   14.82
+    95.0    0.00   -0.27   -1.00   -2.12   -3.50   -4.98   -6.37   -7.53   -8.32   -8.66   -8.52   -7.88   -6.71   -4.99   -2.60    0.57    4.60    9.43   14.72
+   100.0    0.00   -0.27   -1.00   -2.13   -3.51   -4.99   -6.38   -7.54   -8.33   -8.68   -8.54   -7.90   -6.75   -5.02   -2.64    0.52    4.53    9.34   14.62
+   105.0    0.00   -0.26   -1.00   -2.13   -3.51   -5.00   -6.40   -7.55   -8.35   -8.70   -8.57   -7.94   -6.79   -5.08   -2.70    0.46    4.47    9.26   14.53
+   110.0    0.00   -0.26   -1.00   -2.13   -3.52   -5.00   -6.41   -7.57   -8.36   -8.72   -8.60   -7.98   -6.85   -5.14   -2.76    0.41    4.42    9.21   14.46
+   115.0    0.00   -0.26   -1.00   -2.13   -3.52   -5.01   -6.42   -7.58   -8.38   -8.74   -8.63   -8.03   -6.91   -5.21   -2.82    0.36    4.38    9.17   14.41
+   120.0    0.00   -0.26   -0.99   -2.13   -3.53   -5.02   -6.43   -7.59   -8.39   -8.76   -8.66   -8.07   -6.97   -5.27   -2.88    0.31    4.36    9.16   14.38
+   125.0    0.00   -0.26   -0.99   -2.13   -3.53   -5.03   -6.44   -7.60   -8.40   -8.77   -8.68   -8.11   -7.02   -5.33   -2.94    0.27    4.34    9.16   14.38
+   130.0    0.00   -0.25   -0.99   -2.12   -3.53   -5.03   -6.45   -7.61   -8.41   -8.78   -8.69   -8.13   -7.05   -5.38   -2.99    0.24    4.33    9.16   14.40
+   135.0    0.00   -0.25   -0.99   -2.12   -3.53   -5.04   -6.45   -7.62   -8.41   -8.78   -8.69   -8.13   -7.07   -5.41   -3.02    0.21    4.32    9.18   14.43
+   140.0    0.00   -0.25   -0.98   -2.12   -3.53   -5.04   -6.45   -7.62   -8.41   -8.77   -8.68   -8.13   -7.07   -5.41   -3.03    0.20    4.32    9.19   14.47
+   145.0    0.00   -0.25   -0.98   -2.12   -3.53   -5.04   -6.45   -7.61   -8.40   -8.76   -8.66   -8.11   -7.05   -5.40   -3.02    0.21    4.32    9.20   14.51
+   150.0    0.00   -0.25   -0.98   -2.12   -3.53   -5.04   -6.45   -7.61   -8.39   -8.74   -8.64   -8.08   -7.02   -5.36   -2.98    0.24    4.33    9.20   14.55
+   155.0    0.00   -0.24   -0.97   -2.11   -3.52   -5.03   -6.45   -7.60   -8.38   -8.72   -8.62   -8.05   -6.98   -5.31   -2.93    0.27    4.35    9.21   14.57
+   160.0    0.00   -0.24   -0.97   -2.11   -3.52   -5.03   -6.44   -7.59   -8.36   -8.70   -8.59   -8.02   -6.93   -5.26   -2.88    0.32    4.37    9.20   14.59
+   165.0    0.00   -0.24   -0.97   -2.11   -3.52   -5.02   -6.43   -7.57   -8.34   -8.68   -8.57   -7.99   -6.89   -5.20   -2.81    0.37    4.40    9.19   14.59
+   170.0    0.00   -0.24   -0.96   -2.10   -3.51   -5.01   -6.41   -7.56   -8.33   -8.67   -8.56   -7.97   -6.86   -5.15   -2.75    0.42    4.42    9.18   14.58
+   175.0    0.00   -0.24   -0.96   -2.10   -3.51   -5.00   -6.40   -7.54   -8.31   -8.66   -8.55   -7.96   -6.84   -5.12   -2.71    0.46    4.43    9.17   14.57
+   180.0    0.00   -0.23   -0.96   -2.09   -3.50   -4.99   -6.39   -7.53   -8.30   -8.65   -8.55   -7.95   -6.83   -5.10   -2.68    0.49    4.44    9.16   14.56
+   185.0    0.00   -0.23   -0.95   -2.09   -3.49   -4.99   -6.38   -7.51   -8.29   -8.65   -8.55   -7.96   -6.83   -5.10   -2.67    0.49    4.43    9.15   14.57
+   190.0    0.00   -0.23   -0.95   -2.09   -3.49   -4.98   -6.37   -7.50   -8.28   -8.64   -8.55   -7.97   -6.85   -5.11   -2.69    0.48    4.42    9.15   14.59
+   195.0    0.00   -0.23   -0.95   -2.08   -3.48   -4.97   -6.36   -7.50   -8.28   -8.64   -8.56   -7.98   -6.87   -5.14   -2.72    0.44    4.40    9.16   14.65
+   200.0    0.00   -0.23   -0.94   -2.08   -3.48   -4.97   -6.36   -7.49   -8.27   -8.64   -8.56   -7.99   -6.89   -5.17   -2.77    0.40    4.39    9.19   14.73
+   205.0    0.00   -0.22   -0.94   -2.07   -3.47   -4.96   -6.35   -7.49   -8.27   -8.64   -8.56   -8.00   -6.91   -5.21   -2.81    0.36    4.38    9.24   14.83
+   210.0    0.00   -0.22   -0.94   -2.06   -3.46   -4.95   -6.34   -7.48   -8.27   -8.63   -8.55   -8.00   -6.92   -5.24   -2.86    0.33    4.39    9.32   14.96
+   215.0    0.00   -0.22   -0.93   -2.06   -3.45   -4.94   -6.34   -7.48   -8.26   -8.62   -8.54   -7.99   -6.92   -5.26   -2.89    0.31    4.42    9.42   15.10
+   220.0    0.00   -0.22   -0.93   -2.05   -3.44   -4.93   -6.32   -7.47   -8.25   -8.61   -8.53   -7.97   -6.91   -5.26   -2.89    0.32    4.48    9.54   15.24
+   225.0    0.00   -0.22   -0.92   -2.04   -3.43   -4.91   -6.31   -7.46   -8.24   -8.60   -8.51   -7.95   -6.90   -5.25   -2.88    0.36    4.56    9.68   15.37
+   230.0    0.00   -0.22   -0.92   -2.03   -3.41   -4.89   -6.29   -7.44   -8.22   -8.58   -8.49   -7.93   -6.87   -5.22   -2.84    0.42    4.67    9.82   15.47
+   235.0    0.00   -0.22   -0.92   -2.02   -3.39   -4.87   -6.26   -7.42   -8.21   -8.57   -8.48   -7.92   -6.85   -5.19   -2.79    0.51    4.80    9.96   15.53
+   240.0    0.00   -0.22   -0.91   -2.01   -3.37   -4.84   -6.24   -7.39   -8.19   -8.56   -8.47   -7.91   -6.83   -5.15   -2.72    0.61    4.92   10.07   15.54
+   245.0    0.00   -0.22   -0.91   -2.00   -3.35   -4.82   -6.21   -7.37   -8.18   -8.56   -8.48   -7.90   -6.81   -5.11   -2.65    0.70    5.02   10.14   15.49
+   250.0    0.00   -0.22   -0.91   -1.99   -3.33   -4.79   -6.18   -7.35   -8.17   -8.57   -8.49   -7.91   -6.80   -5.07   -2.59    0.78    5.09   10.16   15.39
+   255.0    0.00   -0.22   -0.90   -1.98   -3.32   -4.77   -6.16   -7.34   -8.17   -8.58   -8.51   -7.93   -6.80   -5.05   -2.55    0.82    5.12   10.12   15.24
+   260.0    0.00   -0.22   -0.90   -1.97   -3.30   -4.75   -6.14   -7.33   -8.18   -8.60   -8.54   -7.95   -6.81   -5.05   -2.54    0.83    5.09   10.02   15.05
+   265.0    0.00   -0.22   -0.90   -1.97   -3.29   -4.73   -6.13   -7.32   -8.19   -8.63   -8.57   -7.98   -6.83   -5.06   -2.55    0.79    5.00    9.86   14.82
+   270.0    0.00   -0.22   -0.91   -1.97   -3.29   -4.73   -6.12   -7.33   -8.21   -8.66   -8.61   -8.02   -6.86   -5.08   -2.59    0.72    4.86    9.66   14.59
+   275.0    0.00   -0.22   -0.91   -1.97   -3.29   -4.73   -6.13   -7.35   -8.23   -8.69   -8.64   -8.05   -6.89   -5.12   -2.65    0.60    4.68    9.42   14.36
+   280.0    0.00   -0.23   -0.91   -1.97   -3.29   -4.74   -6.14   -7.37   -8.26   -8.72   -8.68   -8.09   -6.93   -5.17   -2.73    0.47    4.48    9.18   14.14
+   285.0    0.00   -0.23   -0.92   -1.98   -3.30   -4.75   -6.16   -7.39   -8.29   -8.76   -8.71   -8.11   -6.96   -5.22   -2.82    0.32    4.27    8.95   13.96
+   290.0    0.00   -0.23   -0.92   -1.99   -3.32   -4.77   -6.19   -7.42   -8.32   -8.78   -8.73   -8.13   -6.99   -5.26   -2.90    0.19    4.10    8.75   13.82
+   295.0    0.00   -0.23   -0.93   -2.00   -3.33   -4.79   -6.21   -7.45   -8.34   -8.79   -8.74   -8.14   -7.00   -5.30   -2.98    0.08    3.96    8.61   13.73
+   300.0    0.00   -0.24   -0.94   -2.01   -3.35   -4.81   -6.24   -7.47   -8.36   -8.80   -8.74   -8.14   -7.02   -5.33   -3.03    0.02    3.88    8.53   13.69
+   305.0    0.00   -0.24   -0.94   -2.03   -3.37   -4.84   -6.26   -7.48   -8.36   -8.80   -8.72   -8.13   -7.02   -5.35   -3.05   -0.01    3.86    8.52   13.69
+   310.0    0.00   -0.24   -0.95   -2.04   -3.39   -4.85   -6.28   -7.49   -8.36   -8.78   -8.70   -8.12   -7.01   -5.35   -3.05    0.01    3.90    8.57   13.73
+   315.0    0.00   -0.25   -0.96   -2.05   -3.40   -4.87   -6.29   -7.49   -8.35   -8.76   -8.68   -8.09   -6.99   -5.33   -3.02    0.07    3.99    8.67   13.80
+   320.0    0.00   -0.25   -0.97   -2.06   -3.42   -4.88   -6.29   -7.49   -8.33   -8.73   -8.65   -8.06   -6.97   -5.30   -2.97    0.15    4.11    8.81   13.89
+   325.0    0.00   -0.25   -0.97   -2.07   -3.43   -4.89   -6.29   -7.48   -8.31   -8.70   -8.61   -8.03   -6.94   -5.26   -2.90    0.25    4.25    8.96   13.99
+   330.0    0.00   -0.26   -0.98   -2.08   -3.43   -4.89   -6.29   -7.47   -8.29   -8.67   -8.58   -8.00   -6.90   -5.22   -2.84    0.35    4.38    9.09   14.10
+   335.0    0.00   -0.26   -0.98   -2.08   -3.44   -4.89   -6.29   -7.45   -8.27   -8.64   -8.55   -7.96   -6.85   -5.16   -2.78    0.43    4.48    9.20   14.19
+   340.0    0.00   -0.26   -0.99   -2.09   -3.44   -4.89   -6.28   -7.45   -8.26   -8.63   -8.52   -7.92   -6.81   -5.11   -2.72    0.48    4.53    9.27   14.27
+   345.0    0.00   -0.26   -0.99   -2.09   -3.44   -4.89   -6.28   -7.44   -8.25   -8.62   -8.50   -7.89   -6.76   -5.06   -2.68    0.50    4.54    9.29   14.34
+   350.0    0.00   -0.27   -0.99   -2.09   -3.44   -4.89   -6.28   -7.45   -8.26   -8.62   -8.49   -7.86   -6.72   -5.02   -2.66    0.49    4.50    9.27   14.40
+   355.0    0.00   -0.27   -1.00   -2.09   -3.44   -4.89   -6.28   -7.46   -8.27   -8.63   -8.48   -7.83   -6.68   -4.98   -2.65    0.45    4.43    9.21   14.44
+   360.0    0.00   -0.27   -1.00   -2.09   -3.44   -4.89   -6.29   -7.47   -8.30   -8.65   -8.49   -7.81   -6.64   -4.96   -2.66    0.39    4.33    9.13   14.47
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.09      0.01    119.89                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.15   -0.57   -1.21   -1.99   -2.83   -3.67   -4.44   -5.06   -5.42   -5.42   -5.00   -4.18   -3.02   -1.58    0.17    2.42    5.47    9.51
+     0.0    0.00   -0.14   -0.58   -1.23   -2.03   -2.87   -3.68   -4.40   -4.98   -5.37   -5.46   -5.17   -4.46   -3.35   -1.92   -0.19    1.94    4.82    9.05
+     5.0    0.00   -0.14   -0.57   -1.23   -2.02   -2.86   -3.68   -4.40   -4.99   -5.37   -5.46   -5.16   -4.45   -3.34   -1.92   -0.19    1.96    4.88    9.14
+    10.0    0.00   -0.14   -0.56   -1.22   -2.01   -2.85   -3.68   -4.41   -5.01   -5.38   -5.44   -5.13   -4.40   -3.31   -1.89   -0.17    2.01    4.99    9.27
+    15.0    0.00   -0.14   -0.56   -1.20   -1.99   -2.84   -3.67   -4.42   -5.02   -5.38   -5.42   -5.08   -4.34   -3.24   -1.84   -0.12    2.09    5.13    9.43
+    20.0    0.00   -0.14   -0.55   -1.19   -1.98   -2.83   -3.67   -4.43   -5.03   -5.38   -5.40   -5.02   -4.25   -3.15   -1.76   -0.04    2.20    5.29    9.61
+    25.0    0.00   -0.14   -0.55   -1.18   -1.96   -2.82   -3.67   -4.44   -5.04   -5.38   -5.37   -4.95   -4.16   -3.04   -1.65    0.07    2.34    5.49    9.81
+    30.0    0.00   -0.13   -0.54   -1.17   -1.95   -2.81   -3.67   -4.45   -5.06   -5.38   -5.34   -4.89   -4.06   -2.93   -1.54    0.19    2.50    5.70   10.02
+    35.0    0.00   -0.13   -0.54   -1.16   -1.94   -2.79   -3.66   -4.46   -5.07   -5.39   -5.32   -4.83   -3.97   -2.82   -1.42    0.33    2.67    5.93   10.23
+    40.0    0.00   -0.13   -0.53   -1.15   -1.92   -2.78   -3.66   -4.46   -5.08   -5.39   -5.30   -4.79   -3.90   -2.72   -1.31    0.46    2.84    6.15   10.43
+    45.0    0.00   -0.13   -0.53   -1.14   -1.91   -2.77   -3.65   -4.47   -5.09   -5.40   -5.30   -4.76   -3.84   -2.65   -1.21    0.58    3.00    6.35   10.61
+    50.0    0.00   -0.13   -0.53   -1.14   -1.91   -2.77   -3.65   -4.47   -5.10   -5.41   -5.31   -4.76   -3.82   -2.61   -1.15    0.68    3.15    6.53   10.75
+    55.0    0.00   -0.13   -0.53   -1.14   -1.90   -2.76   -3.65   -4.47   -5.11   -5.43   -5.32   -4.77   -3.83   -2.60   -1.11    0.75    3.26    6.66   10.84
+    60.0    0.00   -0.13   -0.53   -1.14   -1.91   -2.76   -3.64   -4.47   -5.11   -5.44   -5.35   -4.81   -3.87   -2.63   -1.11    0.78    3.32    6.74   10.87
+    65.0    0.00   -0.13   -0.53   -1.15   -1.91   -2.77   -3.64   -4.47   -5.11   -5.45   -5.38   -4.86   -3.93   -2.68   -1.15    0.78    3.34    6.75   10.84
+    70.0    0.00   -0.13   -0.54   -1.15   -1.92   -2.77   -3.65   -4.46   -5.11   -5.46   -5.41   -4.92   -4.01   -2.76   -1.21    0.74    3.31    6.71   10.74
+    75.0    0.00   -0.13   -0.54   -1.16   -1.93   -2.78   -3.65   -4.46   -5.11   -5.47   -5.45   -4.98   -4.09   -2.86   -1.30    0.66    3.23    6.59   10.58
+    80.0    0.00   -0.14   -0.55   -1.17   -1.95   -2.80   -3.66   -4.46   -5.10   -5.48   -5.48   -5.04   -4.18   -2.96   -1.40    0.56    3.11    6.42   10.36
+    85.0    0.00   -0.14   -0.55   -1.19   -1.97   -2.81   -3.67   -4.46   -5.10   -5.48   -5.50   -5.10   -4.26   -3.06   -1.51    0.44    2.96    6.21   10.11
+    90.0    0.00   -0.14   -0.56   -1.20   -1.98   -2.83   -3.68   -4.46   -5.09   -5.48   -5.52   -5.14   -4.33   -3.14   -1.60    0.32    2.79    5.97    9.84
+    95.0    0.00   -0.14   -0.56   -1.21   -2.00   -2.85   -3.69   -4.46   -5.09   -5.48   -5.53   -5.17   -4.38   -3.21   -1.69    0.21    2.62    5.73    9.59
+   100.0    0.00   -0.14   -0.57   -1.22   -2.02   -2.86   -3.70   -4.46   -5.08   -5.47   -5.53   -5.19   -4.42   -3.25   -1.75    0.12    2.47    5.51    9.35
+   105.0    0.00   -0.14   -0.58   -1.23   -2.03   -2.88   -3.71   -4.46   -5.07   -5.46   -5.53   -5.19   -4.43   -3.27   -1.78    0.05    2.34    5.32    9.17
+   110.0    0.00   -0.15   -0.58   -1.24   -2.04   -2.89   -3.71   -4.46   -5.07   -5.46   -5.52   -5.19   -4.43   -3.27   -1.79    0.01    2.26    5.19    9.05
+   115.0    0.00   -0.15   -0.58   -1.25   -2.05   -2.89   -3.72   -4.46   -5.07   -5.45   -5.52   -5.18   -4.41   -3.25   -1.77    0.01    2.22    5.11    8.98
+   120.0    0.00   -0.15   -0.59   -1.25   -2.05   -2.89   -3.72   -4.46   -5.07   -5.45   -5.51   -5.16   -4.39   -3.22   -1.74    0.03    2.22    5.09    8.99
+   125.0    0.00   -0.15   -0.59   -1.25   -2.05   -2.89   -3.71   -4.46   -5.07   -5.45   -5.51   -5.15   -4.36   -3.18   -1.69    0.08    2.25    5.11    9.04
+   130.0    0.00   -0.15   -0.59   -1.25   -2.04   -2.88   -3.71   -4.46   -5.08   -5.46   -5.51   -5.14   -4.34   -3.14   -1.64    0.14    2.31    5.18    9.12
+   135.0    0.00   -0.15   -0.59   -1.24   -2.03   -2.87   -3.70   -4.46   -5.09   -5.47   -5.51   -5.13   -4.32   -3.11   -1.60    0.19    2.38    5.26    9.22
+   140.0    0.00   -0.15   -0.59   -1.24   -2.02   -2.86   -3.69   -4.47   -5.10   -5.48   -5.52   -5.13   -4.30   -3.09   -1.57    0.23    2.44    5.34    9.31
+   145.0    0.00   -0.15   -0.58   -1.23   -2.01   -2.84   -3.69   -4.47   -5.11   -5.50   -5.53   -5.13   -4.29   -3.07   -1.56    0.25    2.48    5.40    9.38
+   150.0    0.00   -0.15   -0.58   -1.22   -1.99   -2.83   -3.68   -4.47   -5.11   -5.51   -5.54   -5.13   -4.29   -3.08   -1.57    0.24    2.48    5.43    9.40
+   155.0    0.00   -0.15   -0.58   -1.21   -1.98   -2.82   -3.67   -4.47   -5.12   -5.52   -5.55   -5.13   -4.30   -3.09   -1.60    0.19    2.44    5.41    9.38
+   160.0    0.00   -0.15   -0.58   -1.20   -1.97   -2.80   -3.66   -4.47   -5.13   -5.52   -5.55   -5.13   -4.30   -3.12   -1.66    0.12    2.37    5.35    9.32
+   165.0    0.00   -0.15   -0.57   -1.20   -1.96   -2.79   -3.65   -4.47   -5.13   -5.53   -5.54   -5.13   -4.31   -3.16   -1.73    0.02    2.26    5.26    9.23
+   170.0    0.00   -0.15   -0.57   -1.19   -1.95   -2.79   -3.65   -4.46   -5.13   -5.52   -5.53   -5.12   -4.32   -3.20   -1.81   -0.10    2.13    5.15    9.12
+   175.0    0.00   -0.15   -0.57   -1.19   -1.94   -2.78   -3.65   -4.46   -5.12   -5.51   -5.52   -5.11   -4.32   -3.23   -1.88   -0.21    2.01    5.03    9.02
+   180.0    0.00   -0.15   -0.57   -1.19   -1.94   -2.78   -3.64   -4.46   -5.12   -5.50   -5.50   -5.09   -4.32   -3.26   -1.94   -0.30    1.90    4.94    8.96
+   185.0    0.00   -0.15   -0.57   -1.19   -1.94   -2.78   -3.64   -4.45   -5.10   -5.48   -5.48   -5.07   -4.31   -3.27   -1.98   -0.36    1.83    4.88    8.94
+   190.0    0.00   -0.15   -0.57   -1.19   -1.94   -2.78   -3.64   -4.45   -5.09   -5.46   -5.45   -5.05   -4.29   -3.26   -1.98   -0.37    1.82    4.88    8.98
+   195.0    0.00   -0.15   -0.57   -1.19   -1.95   -2.79   -3.64   -4.44   -5.07   -5.43   -5.43   -5.02   -4.26   -3.22   -1.94   -0.33    1.86    4.94    9.08
+   200.0    0.00   -0.16   -0.57   -1.19   -1.96   -2.79   -3.64   -4.43   -5.06   -5.41   -5.40   -4.99   -4.22   -3.17   -1.87   -0.24    1.96    5.06    9.24
+   205.0    0.00   -0.16   -0.57   -1.20   -1.96   -2.80   -3.65   -4.43   -5.05   -5.40   -5.38   -4.96   -4.17   -3.09   -1.76   -0.10    2.12    5.23    9.44
+   210.0    0.00   -0.16   -0.58   -1.20   -1.97   -2.81   -3.65   -4.42   -5.04   -5.38   -5.36   -4.93   -4.12   -3.00   -1.62    0.08    2.32    5.44    9.67
+   215.0    0.00   -0.16   -0.58   -1.21   -1.98   -2.81   -3.65   -4.42   -5.03   -5.37   -5.34   -4.90   -4.05   -2.89   -1.46    0.27    2.54    5.67    9.89
+   220.0    0.00   -0.16   -0.58   -1.21   -1.98   -2.82   -3.65   -4.42   -5.03   -5.36   -5.33   -4.87   -3.99   -2.78   -1.30    0.48    2.76    5.88   10.09
+   225.0    0.00   -0.16   -0.58   -1.22   -1.99   -2.83   -3.66   -4.42   -5.03   -5.36   -5.32   -4.84   -3.93   -2.68   -1.15    0.66    2.96    6.07   10.24
+   230.0    0.00   -0.16   -0.58   -1.22   -2.00   -2.83   -3.66   -4.43   -5.03   -5.37   -5.32   -4.82   -3.88   -2.59   -1.03    0.81    3.11    6.20   10.33
+   235.0    0.00   -0.16   -0.59   -1.23   -2.00   -2.84   -3.67   -4.44   -5.04   -5.38   -5.32   -4.81   -3.84   -2.52   -0.94    0.91    3.21    6.27   10.35
+   240.0    0.00   -0.16   -0.59   -1.23   -2.00   -2.84   -3.68   -4.44   -5.05   -5.39   -5.33   -4.80   -3.82   -2.48   -0.89    0.95    3.24    6.28   10.30
+   245.0    0.00   -0.16   -0.59   -1.23   -2.00   -2.84   -3.68   -4.45   -5.07   -5.40   -5.33   -4.80   -3.81   -2.48   -0.90    0.94    3.20    6.22   10.19
+   250.0    0.00   -0.16   -0.59   -1.23   -2.00   -2.84   -3.68   -4.46   -5.08   -5.41   -5.34   -4.81   -3.83   -2.51   -0.95    0.86    3.11    6.11   10.03
+   255.0    0.00   -0.16   -0.59   -1.23   -2.00   -2.84   -3.69   -4.47   -5.09   -5.43   -5.36   -4.82   -3.86   -2.57   -1.05    0.73    2.97    5.96    9.85
+   260.0    0.00   -0.16   -0.59   -1.22   -2.00   -2.84   -3.69   -4.48   -5.10   -5.44   -5.37   -4.85   -3.91   -2.65   -1.17    0.57    2.79    5.79    9.66
+   265.0    0.00   -0.16   -0.59   -1.22   -1.99   -2.83   -3.69   -4.48   -5.11   -5.45   -5.39   -4.88   -3.97   -2.75   -1.32    0.39    2.60    5.62    9.49
+   270.0    0.00   -0.16   -0.59   -1.22   -1.99   -2.83   -3.69   -4.48   -5.11   -5.45   -5.40   -4.91   -4.03   -2.86   -1.48    0.21    2.42    5.46    9.35
+   275.0    0.00   -0.16   -0.59   -1.22   -1.99   -2.83   -3.68   -4.48   -5.11   -5.46   -5.41   -4.94   -4.09   -2.97   -1.62    0.04    2.26    5.33    9.25
+   280.0    0.00   -0.16   -0.59   -1.22   -1.98   -2.82   -3.68   -4.47   -5.10   -5.45   -5.42   -4.97   -4.15   -3.06   -1.74   -0.10    2.13    5.23    9.19
+   285.0    0.00   -0.16   -0.59   -1.22   -1.98   -2.82   -3.67   -4.46   -5.09   -5.45   -5.42   -4.99   -4.20   -3.14   -1.84   -0.20    2.04    5.17    9.16
+   290.0    0.00   -0.16   -0.59   -1.22   -1.98   -2.82   -3.66   -4.45   -5.08   -5.44   -5.42   -5.00   -4.23   -3.19   -1.90   -0.26    1.99    5.13    9.16
+   295.0    0.00   -0.16   -0.59   -1.22   -1.98   -2.82   -3.66   -4.44   -5.07   -5.42   -5.41   -5.01   -4.25   -3.21   -1.92   -0.28    1.98    5.12    9.19
+   300.0    0.00   -0.16   -0.59   -1.22   -1.99   -2.82   -3.65   -4.43   -5.05   -5.41   -5.41   -5.01   -4.26   -3.22   -1.92   -0.26    1.99    5.12    9.21
+   305.0    0.00   -0.16   -0.59   -1.23   -1.99   -2.82   -3.65   -4.42   -5.03   -5.39   -5.40   -5.01   -4.26   -3.20   -1.89   -0.22    2.01    5.12    9.23
+   310.0    0.00   -0.16   -0.59   -1.23   -2.00   -2.83   -3.65   -4.41   -5.02   -5.37   -5.39   -5.01   -4.25   -3.18   -1.84   -0.17    2.05    5.11    9.24
+   315.0    0.00   -0.16   -0.59   -1.24   -2.01   -2.83   -3.65   -4.40   -5.00   -5.36   -5.38   -5.01   -4.25   -3.16   -1.79   -0.11    2.08    5.09    9.23
+   320.0    0.00   -0.16   -0.59   -1.24   -2.02   -2.84   -3.65   -4.39   -4.99   -5.35   -5.38   -5.01   -4.25   -3.14   -1.75   -0.06    2.10    5.06    9.19
+   325.0    0.00   -0.15   -0.59   -1.24   -2.02   -2.85   -3.65   -4.39   -4.98   -5.34   -5.38   -5.03   -4.26   -3.14   -1.73   -0.03    2.11    5.02    9.15
+   330.0    0.00   -0.15   -0.59   -1.25   -2.03   -2.86   -3.66   -4.38   -4.97   -5.34   -5.39   -5.05   -4.29   -3.15   -1.72   -0.01    2.10    4.96    9.09
+   335.0    0.00   -0.15   -0.59   -1.25   -2.04   -2.86   -3.66   -4.38   -4.96   -5.34   -5.40   -5.07   -4.32   -3.18   -1.73   -0.02    2.07    4.90    9.04
+   340.0    0.00   -0.15   -0.59   -1.25   -2.04   -2.87   -3.67   -4.38   -4.96   -5.34   -5.42   -5.10   -4.36   -3.22   -1.76   -0.05    2.04    4.85    8.99
+   345.0    0.00   -0.15   -0.59   -1.25   -2.04   -2.87   -3.67   -4.38   -4.96   -5.35   -5.43   -5.13   -4.40   -3.26   -1.81   -0.08    2.00    4.80    8.96
+   350.0    0.00   -0.15   -0.58   -1.25   -2.04   -2.87   -3.67   -4.39   -4.97   -5.35   -5.45   -5.16   -4.44   -3.31   -1.85   -0.13    1.96    4.78    8.96
+   355.0    0.00   -0.15   -0.58   -1.24   -2.04   -2.87   -3.67   -4.39   -4.98   -5.36   -5.46   -5.17   -4.46   -3.34   -1.89   -0.17    1.94    4.78    8.99
+   360.0    0.00   -0.14   -0.58   -1.23   -2.03   -2.87   -3.68   -4.40   -4.98   -5.37   -5.46   -5.17   -4.46   -3.35   -1.92   -0.19    1.94    4.82    9.05
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TRM59800.00     SCIS                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               5    02-MAR-09 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+      0.16      0.81     86.60                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.34   -1.30   -2.72   -4.41   -6.14   -7.72   -8.99   -9.83  -10.15   -9.89   -9.04   -7.60   -5.58   -2.95    0.44    4.78   10.25   16.80
+     0.0    0.00   -0.29   -1.21   -2.62   -4.30   -6.05   -7.67   -8.98   -9.86  -10.19   -9.90   -8.98   -7.47   -5.43   -2.85    0.43    4.66   10.08   16.61
+     5.0    0.00   -0.30   -1.22   -2.62   -4.30   -6.05   -7.67   -8.99   -9.87  -10.20   -9.90   -8.97   -7.44   -5.40   -2.82    0.43    4.62   10.03   16.62
+    10.0    0.00   -0.30   -1.23   -2.62   -4.30   -6.05   -7.67   -8.99   -9.88  -10.21   -9.91   -8.97   -7.44   -5.39   -2.81    0.42    4.59    9.99   16.63
+    15.0    0.00   -0.31   -1.23   -2.63   -4.30   -6.05   -7.67   -9.00   -9.89  -10.23   -9.93   -8.99   -7.46   -5.40   -2.82    0.42    4.59    9.99   16.65
+    20.0    0.00   -0.31   -1.24   -2.64   -4.31   -6.05   -7.67   -9.00   -9.90  -10.24   -9.96   -9.03   -7.49   -5.43   -2.83    0.42    4.61   10.01   16.68
+    25.0    0.00   -0.32   -1.25   -2.65   -4.32   -6.05   -7.66   -8.99   -9.89  -10.25   -9.98   -9.07   -7.55   -5.47   -2.85    0.44    4.66   10.07   16.73
+    30.0    0.00   -0.32   -1.26   -2.66   -4.32   -6.05   -7.66   -8.98   -9.88  -10.25  -10.00   -9.11   -7.60   -5.52   -2.86    0.48    4.74   10.16   16.79
+    35.0    0.00   -0.33   -1.27   -2.67   -4.34   -6.06   -7.65   -8.96   -9.86  -10.24  -10.01   -9.15   -7.66   -5.57   -2.87    0.53    4.84   10.27   16.87
+    40.0    0.00   -0.34   -1.28   -2.69   -4.35   -6.07   -7.65   -8.94   -9.83  -10.21  -10.01   -9.17   -7.70   -5.60   -2.86    0.60    4.95   10.40   16.96
+    45.0    0.00   -0.34   -1.29   -2.70   -4.37   -6.08   -7.64   -8.92   -9.80  -10.18   -9.99   -9.17   -7.72   -5.61   -2.84    0.67    5.07   10.52   17.08
+    50.0    0.00   -0.35   -1.31   -2.72   -4.39   -6.09   -7.64   -8.91   -9.77  -10.14   -9.96   -9.16   -7.71   -5.60   -2.80    0.74    5.17   10.64   17.20
+    55.0    0.00   -0.36   -1.32   -2.74   -4.41   -6.10   -7.65   -8.89   -9.74  -10.10   -9.92   -9.12   -7.68   -5.56   -2.75    0.81    5.26   10.74   17.33
+    60.0    0.00   -0.36   -1.33   -2.76   -4.43   -6.12   -7.65   -8.88   -9.71  -10.06   -9.87   -9.07   -7.62   -5.51   -2.70    0.87    5.32   10.81   17.46
+    65.0    0.00   -0.37   -1.35   -2.78   -4.46   -6.15   -7.67   -8.88   -9.69  -10.03   -9.82   -9.01   -7.56   -5.44   -2.64    0.92    5.35   10.86   17.58
+    70.0    0.00   -0.38   -1.36   -2.80   -4.48   -6.17   -7.69   -8.89   -9.68  -10.00   -9.77   -8.95   -7.49   -5.38   -2.59    0.95    5.36   10.87   17.68
+    75.0    0.00   -0.38   -1.38   -2.82   -4.51   -6.20   -7.71   -8.90   -9.68   -9.98   -9.74   -8.90   -7.43   -5.32   -2.55    0.95    5.34   10.86   17.75
+    80.0    0.00   -0.39   -1.39   -2.84   -4.53   -6.22   -7.73   -8.92   -9.69   -9.98   -9.72   -8.87   -7.39   -5.29   -2.53    0.94    5.31   10.83   17.78
+    85.0    0.00   -0.39   -1.40   -2.86   -4.55   -6.25   -7.76   -8.94   -9.71   -9.98   -9.72   -8.86   -7.38   -5.28   -2.55    0.91    5.26   10.79   17.76
+    90.0    0.00   -0.40   -1.41   -2.88   -4.57   -6.27   -7.78   -8.96   -9.73  -10.00   -9.73   -8.87   -7.40   -5.31   -2.58    0.85    5.20   10.73   17.70
+    95.0    0.00   -0.40   -1.42   -2.89   -4.59   -6.29   -7.80   -8.99   -9.75  -10.03   -9.76   -8.91   -7.44   -5.36   -2.65    0.78    5.13   10.66   17.59
+   100.0    0.00   -0.41   -1.43   -2.91   -4.61   -6.31   -7.83   -9.01   -9.78  -10.07   -9.81   -8.96   -7.51   -5.44   -2.74    0.70    5.06   10.59   17.45
+   105.0    0.00   -0.41   -1.44   -2.92   -4.63   -6.33   -7.85   -9.04   -9.81  -10.11   -9.86   -9.03   -7.59   -5.54   -2.84    0.61    4.98   10.51   17.28
+   110.0    0.00   -0.41   -1.44   -2.93   -4.64   -6.35   -7.87   -9.07   -9.85  -10.15   -9.91   -9.09   -7.68   -5.64   -2.94    0.51    4.91   10.43   17.10
+   115.0    0.00   -0.42   -1.45   -2.93   -4.65   -6.36   -7.89   -9.09   -9.88  -10.19   -9.96   -9.15   -7.75   -5.73   -3.05    0.41    4.83   10.35   16.92
+   120.0    0.00   -0.42   -1.45   -2.94   -4.65   -6.37   -7.91   -9.12   -9.91  -10.22   -9.99   -9.20   -7.81   -5.81   -3.15    0.32    4.74   10.27   16.77
+   125.0    0.00   -0.42   -1.45   -2.94   -4.66   -6.38   -7.93   -9.14   -9.94  -10.25  -10.02   -9.22   -7.85   -5.87   -3.22    0.22    4.66   10.20   16.64
+   130.0    0.00   -0.42   -1.45   -2.94   -4.66   -6.39   -7.94   -9.17   -9.97  -10.27  -10.03   -9.23   -7.86   -5.89   -3.28    0.15    4.58   10.12   16.56
+   135.0    0.00   -0.42   -1.45   -2.94   -4.66   -6.40   -7.95   -9.19   -9.99  -10.29  -10.03   -9.22   -7.84   -5.89   -3.31    0.08    4.50   10.06   16.53
+   140.0    0.00   -0.42   -1.45   -2.93   -4.66   -6.40   -7.96   -9.20  -10.01  -10.29  -10.02   -9.19   -7.80   -5.87   -3.32    0.03    4.43   10.01   16.53
+   145.0    0.00   -0.41   -1.44   -2.93   -4.65   -6.39   -7.96   -9.21  -10.01  -10.29  -10.01   -9.15   -7.75   -5.83   -3.30    0.01    4.38    9.97   16.56
+   150.0    0.00   -0.41   -1.44   -2.92   -4.64   -6.38   -7.96   -9.21  -10.01  -10.29   -9.98   -9.11   -7.70   -5.78   -3.28    0.00    4.34    9.95   16.61
+   155.0    0.00   -0.41   -1.43   -2.91   -4.62   -6.36   -7.94   -9.20  -10.00  -10.27   -9.96   -9.08   -7.66   -5.73   -3.24    0.01    4.33    9.93   16.66
+   160.0    0.00   -0.40   -1.42   -2.89   -4.60   -6.34   -7.92   -9.17   -9.98  -10.26   -9.95   -9.05   -7.62   -5.69   -3.19    0.04    4.34    9.93   16.70
+   165.0    0.00   -0.40   -1.41   -2.88   -4.58   -6.32   -7.89   -9.14   -9.96  -10.24   -9.93   -9.04   -7.60   -5.65   -3.15    0.09    4.36    9.94   16.72
+   170.0    0.00   -0.40   -1.40   -2.86   -4.56   -6.29   -7.85   -9.10   -9.92  -10.22   -9.93   -9.04   -7.60   -5.64   -3.11    0.14    4.41    9.95   16.71
+   175.0    0.00   -0.39   -1.39   -2.85   -4.54   -6.26   -7.82   -9.06   -9.89  -10.19   -9.92   -9.05   -7.61   -5.63   -3.08    0.20    4.46    9.96   16.67
+   180.0    0.00   -0.38   -1.38   -2.83   -4.52   -6.23   -7.78   -9.02   -9.85  -10.17   -9.92   -9.07   -7.63   -5.63   -3.05    0.25    4.51    9.97   16.62
+   185.0    0.00   -0.38   -1.37   -2.81   -4.50   -6.20   -7.75   -8.99   -9.82  -10.15   -9.92   -9.08   -7.65   -5.64   -3.02    0.30    4.56    9.97   16.56
+   190.0    0.00   -0.37   -1.36   -2.80   -4.48   -6.18   -7.72   -8.96   -9.79  -10.13   -9.91   -9.09   -7.67   -5.64   -3.01    0.35    4.61    9.99   16.51
+   195.0    0.00   -0.37   -1.35   -2.78   -4.46   -6.16   -7.70   -8.93   -9.77  -10.11   -9.90   -9.09   -7.67   -5.64   -2.99    0.38    4.64   10.00   16.50
+   200.0    0.00   -0.36   -1.33   -2.77   -4.45   -6.15   -7.69   -8.92   -9.75  -10.09   -9.88   -9.07   -7.66   -5.63   -2.97    0.41    4.68   10.03   16.53
+   205.0    0.00   -0.35   -1.32   -2.75   -4.43   -6.14   -7.68   -8.92   -9.74  -10.08   -9.86   -9.05   -7.63   -5.60   -2.95    0.43    4.71   10.09   16.61
+   210.0    0.00   -0.35   -1.31   -2.74   -4.42   -6.13   -7.68   -8.92   -9.74  -10.06   -9.83   -9.01   -7.59   -5.57   -2.92    0.45    4.75   10.16   16.75
+   215.0    0.00   -0.34   -1.30   -2.72   -4.41   -6.13   -7.68   -8.93   -9.74  -10.05   -9.80   -8.96   -7.54   -5.53   -2.90    0.48    4.79   10.26   16.94
+   220.0    0.00   -0.33   -1.29   -2.71   -4.39   -6.12   -7.69   -8.93   -9.75  -10.04   -9.77   -8.92   -7.49   -5.49   -2.86    0.51    4.86   10.39   17.16
+   225.0    0.00   -0.33   -1.27   -2.69   -4.38   -6.11   -7.68   -8.94   -9.74  -10.03   -9.74   -8.87   -7.44   -5.45   -2.83    0.55    4.93   10.54   17.40
+   230.0    0.00   -0.32   -1.26   -2.68   -4.36   -6.10   -7.67   -8.93   -9.74  -10.02   -9.72   -8.84   -7.41   -5.41   -2.80    0.60    5.03   10.69   17.62
+   235.0    0.00   -0.31   -1.25   -2.66   -4.34   -6.08   -7.66   -8.92   -9.73  -10.01   -9.70   -8.83   -7.39   -5.39   -2.77    0.66    5.12   10.84   17.80
+   240.0    0.00   -0.31   -1.24   -2.64   -4.32   -6.06   -7.64   -8.90   -9.72  -10.00   -9.70   -8.82   -7.39   -5.38   -2.74    0.71    5.22   10.97   17.92
+   245.0    0.00   -0.30   -1.23   -2.63   -4.30   -6.03   -7.61   -8.88   -9.70   -9.99   -9.70   -8.83   -7.40   -5.39   -2.73    0.76    5.30   11.06   17.96
+   250.0    0.00   -0.30   -1.22   -2.61   -4.28   -6.01   -7.59   -8.86   -9.69   -9.99   -9.72   -8.86   -7.42   -5.40   -2.72    0.80    5.36   11.11   17.92
+   255.0    0.00   -0.29   -1.21   -2.60   -4.26   -5.98   -7.56   -8.84   -9.68   -9.99   -9.74   -8.89   -7.46   -5.43   -2.72    0.81    5.38   11.09   17.79
+   260.0    0.00   -0.29   -1.20   -2.59   -4.25   -5.97   -7.54   -8.82   -9.67  -10.00   -9.76   -8.92   -7.49   -5.45   -2.74    0.80    5.35   11.00   17.58
+   265.0    0.00   -0.28   -1.19   -2.58   -4.24   -5.95   -7.54   -8.82   -9.68  -10.02   -9.79   -8.96   -7.53   -5.48   -2.76    0.77    5.28   10.86   17.32
+   270.0    0.00   -0.28   -1.19   -2.57   -4.23   -5.95   -7.54   -8.83   -9.70  -10.05   -9.82   -8.99   -7.56   -5.51   -2.80    0.70    5.16   10.67   17.02
+   275.0    0.00   -0.28   -1.18   -2.57   -4.23   -5.96   -7.55   -8.85   -9.73  -10.08   -9.86   -9.02   -7.58   -5.54   -2.85    0.61    5.01   10.45   16.72
+   280.0    0.00   -0.28   -1.18   -2.57   -4.24   -5.97   -7.57   -8.88   -9.77  -10.12   -9.89   -9.05   -7.60   -5.57   -2.91    0.50    4.84   10.21   16.44
+   285.0    0.00   -0.27   -1.18   -2.57   -4.25   -5.99   -7.60   -8.92   -9.81  -10.16   -9.92   -9.07   -7.62   -5.60   -2.97    0.39    4.67    9.99   16.19
+   290.0    0.00   -0.27   -1.18   -2.58   -4.26   -6.02   -7.64   -8.97   -9.86  -10.21   -9.95   -9.09   -7.63   -5.63   -3.03    0.27    4.50    9.80   16.01
+   295.0    0.00   -0.27   -1.18   -2.59   -4.28   -6.04   -7.68   -9.01   -9.90  -10.24   -9.98   -9.10   -7.65   -5.66   -3.10    0.17    4.37    9.66   15.89
+   300.0    0.00   -0.27   -1.18   -2.59   -4.29   -6.07   -7.71   -9.05   -9.94  -10.28  -10.00   -9.12   -7.67   -5.69   -3.15    0.10    4.28    9.57   15.83
+   305.0    0.00   -0.27   -1.18   -2.60   -4.31   -6.09   -7.74   -9.08   -9.97  -10.30  -10.02   -9.14   -7.70   -5.73   -3.20    0.05    4.24    9.55   15.84
+   310.0    0.00   -0.27   -1.19   -2.61   -4.32   -6.11   -7.76   -9.10   -9.98  -10.31  -10.04   -9.16   -7.73   -5.76   -3.23    0.03    4.24    9.59   15.90
+   315.0    0.00   -0.27   -1.19   -2.61   -4.33   -6.12   -7.77   -9.10   -9.98  -10.31  -10.04   -9.18   -7.75   -5.79   -3.24    0.04    4.29    9.67   15.99
+   320.0    0.00   -0.27   -1.19   -2.61   -4.33   -6.12   -7.77   -9.10   -9.97  -10.30  -10.04   -9.18   -7.76   -5.80   -3.24    0.07    4.36    9.78   16.10
+   325.0    0.00   -0.27   -1.19   -2.62   -4.34   -6.12   -7.76   -9.08   -9.95  -10.28  -10.03   -9.18   -7.77   -5.80   -3.22    0.13    4.46    9.90   16.22
+   330.0    0.00   -0.28   -1.20   -2.62   -4.33   -6.11   -7.74   -9.06   -9.93  -10.26  -10.01   -9.17   -7.76   -5.78   -3.18    0.20    4.55   10.01   16.33
+   335.0    0.00   -0.28   -1.20   -2.62   -4.33   -6.10   -7.73   -9.03   -9.90  -10.24   -9.99   -9.15   -7.73   -5.74   -3.12    0.26    4.63   10.10   16.42
+   340.0    0.00   -0.28   -1.20   -2.62   -4.32   -6.09   -7.71   -9.01   -9.88  -10.21   -9.96   -9.12   -7.69   -5.69   -3.06    0.32    4.69   10.15   16.49
+   345.0    0.00   -0.28   -1.20   -2.62   -4.32   -6.08   -7.69   -9.00   -9.86  -10.20   -9.94   -9.08   -7.63   -5.62   -3.00    0.37    4.72   10.17   16.55
+   350.0    0.00   -0.29   -1.21   -2.62   -4.31   -6.07   -7.68   -8.99   -9.85  -10.18   -9.92   -9.04   -7.57   -5.55   -2.94    0.41    4.72   10.16   16.58
+   355.0    0.00   -0.29   -1.21   -2.62   -4.31   -6.06   -7.67   -8.98   -9.85  -10.18   -9.90   -9.00   -7.52   -5.49   -2.89    0.43    4.69   10.12   16.60
+   360.0    0.00   -0.29   -1.21   -2.62   -4.30   -6.05   -7.67   -8.98   -9.86  -10.19   -9.90   -8.98   -7.47   -5.43   -2.85    0.43    4.66   10.08   16.61
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.13      0.00    119.69                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.16   -0.60   -1.28   -2.12   -3.04   -3.99   -4.87   -5.60   -6.02   -6.02   -5.52   -4.54   -3.16   -1.51    0.42    2.75    5.78    9.74
+     0.0    0.00   -0.16   -0.62   -1.30   -2.14   -3.05   -3.96   -4.82   -5.52   -5.95   -6.00   -5.59   -4.71   -3.43   -1.87   -0.07    2.08    4.81    8.40
+     5.0    0.00   -0.16   -0.61   -1.30   -2.14   -3.06   -3.99   -4.85   -5.55   -5.97   -5.99   -5.56   -4.67   -3.42   -1.88   -0.08    2.09    4.88    8.52
+    10.0    0.00   -0.16   -0.61   -1.29   -2.14   -3.08   -4.02   -4.89   -5.58   -5.98   -5.98   -5.52   -4.63   -3.38   -1.85   -0.05    2.16    5.03    8.77
+    15.0    0.00   -0.15   -0.60   -1.29   -2.15   -3.09   -4.04   -4.91   -5.60   -5.98   -5.96   -5.48   -4.57   -3.32   -1.80    0.02    2.28    5.25    9.11
+    20.0    0.00   -0.15   -0.60   -1.29   -2.15   -3.10   -4.06   -4.93   -5.61   -5.98   -5.94   -5.44   -4.52   -3.26   -1.72    0.12    2.46    5.53    9.53
+    25.0    0.00   -0.15   -0.59   -1.29   -2.15   -3.10   -4.07   -4.94   -5.61   -5.97   -5.91   -5.40   -4.47   -3.19   -1.63    0.26    2.66    5.85    9.98
+    30.0    0.00   -0.15   -0.59   -1.28   -2.15   -3.10   -4.06   -4.94   -5.61   -5.96   -5.90   -5.37   -4.42   -3.12   -1.53    0.41    2.88    6.17   10.43
+    35.0    0.00   -0.14   -0.59   -1.28   -2.15   -3.10   -4.06   -4.92   -5.59   -5.94   -5.88   -5.35   -4.39   -3.06   -1.43    0.56    3.09    6.46   10.84
+    40.0    0.00   -0.14   -0.58   -1.28   -2.14   -3.09   -4.04   -4.91   -5.57   -5.93   -5.87   -5.35   -4.37   -3.01   -1.33    0.70    3.28    6.71   11.18
+    45.0    0.00   -0.14   -0.58   -1.27   -2.14   -3.08   -4.03   -4.89   -5.56   -5.92   -5.88   -5.36   -4.37   -2.98   -1.26    0.82    3.44    6.90   11.43
+    50.0    0.00   -0.14   -0.58   -1.27   -2.13   -3.08   -4.01   -4.87   -5.54   -5.92   -5.89   -5.37   -4.38   -2.96   -1.21    0.90    3.54    7.01   11.58
+    55.0    0.00   -0.13   -0.57   -1.27   -2.13   -3.07   -4.00   -4.85   -5.53   -5.92   -5.90   -5.40   -4.40   -2.96   -1.18    0.95    3.58    7.04   11.62
+    60.0    0.00   -0.13   -0.57   -1.27   -2.13   -3.06   -3.99   -4.84   -5.52   -5.92   -5.92   -5.43   -4.43   -2.98   -1.18    0.95    3.57    6.99   11.56
+    65.0    0.00   -0.13   -0.57   -1.26   -2.13   -3.06   -3.99   -4.83   -5.52   -5.93   -5.94   -5.47   -4.47   -3.01   -1.21    0.92    3.50    6.88   11.42
+    70.0    0.00   -0.13   -0.57   -1.26   -2.13   -3.06   -3.98   -4.83   -5.52   -5.94   -5.97   -5.50   -4.51   -3.06   -1.26    0.85    3.40    6.72   11.20
+    75.0    0.00   -0.13   -0.57   -1.26   -2.13   -3.06   -3.98   -4.83   -5.52   -5.94   -5.98   -5.53   -4.55   -3.11   -1.32    0.76    3.27    6.53   10.94
+    80.0    0.00   -0.13   -0.56   -1.26   -2.13   -3.06   -3.98   -4.83   -5.52   -5.95   -6.00   -5.55   -4.59   -3.17   -1.40    0.66    3.13    6.33   10.65
+    85.0    0.00   -0.13   -0.56   -1.26   -2.12   -3.06   -3.99   -4.83   -5.52   -5.95   -6.00   -5.57   -4.63   -3.22   -1.47    0.56    3.00    6.13   10.35
+    90.0    0.00   -0.12   -0.56   -1.26   -2.12   -3.06   -3.99   -4.83   -5.52   -5.95   -6.00   -5.58   -4.65   -3.27   -1.55    0.47    2.87    5.95   10.06
+    95.0    0.00   -0.12   -0.56   -1.25   -2.12   -3.06   -3.98   -4.83   -5.51   -5.94   -6.00   -5.59   -4.68   -3.32   -1.61    0.39    2.78    5.80    9.79
+   100.0    0.00   -0.12   -0.56   -1.25   -2.12   -3.05   -3.98   -4.82   -5.51   -5.94   -6.00   -5.59   -4.69   -3.34   -1.65    0.34    2.71    5.69    9.57
+   105.0    0.00   -0.12   -0.56   -1.25   -2.11   -3.05   -3.98   -4.82   -5.51   -5.93   -5.99   -5.59   -4.69   -3.36   -1.68    0.31    2.67    5.62    9.39
+   110.0    0.00   -0.12   -0.56   -1.24   -2.10   -3.04   -3.97   -4.82   -5.51   -5.94   -5.99   -5.58   -4.69   -3.36   -1.68    0.30    2.66    5.58    9.27
+   115.0    0.00   -0.12   -0.55   -1.24   -2.10   -3.03   -3.97   -4.83   -5.52   -5.95   -6.00   -5.58   -4.68   -3.34   -1.66    0.31    2.67    5.58    9.21
+   120.0    0.00   -0.12   -0.55   -1.23   -2.09   -3.02   -3.97   -4.83   -5.54   -5.97   -6.01   -5.58   -4.66   -3.32   -1.63    0.34    2.69    5.60    9.20
+   125.0    0.00   -0.13   -0.55   -1.23   -2.08   -3.02   -3.97   -4.85   -5.56   -6.00   -6.03   -5.58   -4.64   -3.28   -1.59    0.38    2.72    5.63    9.25
+   130.0    0.00   -0.13   -0.55   -1.23   -2.07   -3.01   -3.97   -4.87   -5.59   -6.03   -6.05   -5.58   -4.62   -3.24   -1.55    0.41    2.75    5.66    9.32
+   135.0    0.00   -0.13   -0.55   -1.23   -2.07   -3.01   -3.98   -4.89   -5.63   -6.07   -6.08   -5.59   -4.60   -3.20   -1.51    0.44    2.76    5.69    9.41
+   140.0    0.00   -0.13   -0.56   -1.23   -2.07   -3.01   -3.98   -4.91   -5.66   -6.11   -6.12   -5.60   -4.59   -3.18   -1.49    0.45    2.76    5.70    9.50
+   145.0    0.00   -0.13   -0.56   -1.23   -2.07   -3.01   -3.99   -4.93   -5.69   -6.15   -6.15   -5.62   -4.59   -3.16   -1.48    0.44    2.74    5.69    9.56
+   150.0    0.00   -0.13   -0.56   -1.23   -2.07   -3.01   -4.00   -4.94   -5.72   -6.18   -6.17   -5.64   -4.60   -3.17   -1.49    0.41    2.69    5.65    9.58
+   155.0    0.00   -0.14   -0.57   -1.23   -2.07   -3.01   -4.00   -4.95   -5.73   -6.19   -6.19   -5.66   -4.62   -3.19   -1.52    0.36    2.62    5.58    9.55
+   160.0    0.00   -0.14   -0.57   -1.24   -2.08   -3.02   -4.00   -4.95   -5.73   -6.20   -6.20   -5.68   -4.65   -3.23   -1.58    0.29    2.54    5.49    9.48
+   165.0    0.00   -0.14   -0.58   -1.24   -2.08   -3.02   -4.00   -4.94   -5.72   -6.19   -6.21   -5.69   -4.68   -3.29   -1.64    0.21    2.44    5.38    9.36
+   170.0    0.00   -0.15   -0.58   -1.25   -2.09   -3.03   -4.00   -4.93   -5.70   -6.17   -6.20   -5.71   -4.72   -3.34   -1.71    0.14    2.36    5.27    9.22
+   175.0    0.00   -0.15   -0.59   -1.26   -2.10   -3.03   -3.99   -4.91   -5.68   -6.15   -6.18   -5.71   -4.75   -3.40   -1.78    0.07    2.28    5.17    9.08
+   180.0    0.00   -0.15   -0.59   -1.27   -2.10   -3.03   -3.99   -4.90   -5.65   -6.12   -6.16   -5.71   -4.77   -3.44   -1.83    0.02    2.24    5.11    8.98
+   185.0    0.00   -0.15   -0.60   -1.28   -2.11   -3.04   -3.99   -4.88   -5.63   -6.09   -6.14   -5.70   -4.78   -3.46   -1.85    0.01    2.23    5.09    8.93
+   190.0    0.00   -0.16   -0.60   -1.28   -2.12   -3.04   -3.98   -4.87   -5.61   -6.06   -6.11   -5.68   -4.76   -3.45   -1.84    0.03    2.26    5.13    8.96
+   195.0    0.00   -0.16   -0.61   -1.29   -2.12   -3.05   -3.99   -4.87   -5.59   -6.04   -6.09   -5.65   -4.73   -3.41   -1.79    0.09    2.34    5.23    9.09
+   200.0    0.00   -0.16   -0.61   -1.29   -2.13   -3.05   -3.99   -4.87   -5.59   -6.03   -6.07   -5.61   -4.68   -3.34   -1.70    0.19    2.46    5.39    9.31
+   205.0    0.00   -0.17   -0.62   -1.30   -2.13   -3.05   -3.99   -4.87   -5.60   -6.03   -6.05   -5.57   -4.60   -3.24   -1.59    0.33    2.63    5.62    9.62
+   210.0    0.00   -0.17   -0.62   -1.30   -2.13   -3.05   -3.99   -4.88   -5.61   -6.04   -6.04   -5.53   -4.52   -3.12   -1.45    0.48    2.82    5.88    9.99
+   215.0    0.00   -0.17   -0.62   -1.29   -2.12   -3.04   -3.99   -4.89   -5.63   -6.05   -6.03   -5.48   -4.43   -3.00   -1.30    0.65    3.02    6.15   10.38
+   220.0    0.00   -0.17   -0.62   -1.29   -2.11   -3.03   -3.99   -4.90   -5.64   -6.07   -6.02   -5.44   -4.35   -2.88   -1.15    0.82    3.22    6.42   10.74
+   225.0    0.00   -0.17   -0.62   -1.29   -2.10   -3.02   -3.98   -4.90   -5.65   -6.08   -6.02   -5.41   -4.28   -2.78   -1.03    0.96    3.40    6.65   11.04
+   230.0    0.00   -0.18   -0.62   -1.28   -2.09   -3.00   -3.96   -4.89   -5.66   -6.09   -6.02   -5.39   -4.23   -2.70   -0.94    1.06    3.53    6.82   11.23
+   235.0    0.00   -0.18   -0.62   -1.28   -2.08   -2.98   -3.94   -4.88   -5.66   -6.09   -6.02   -5.37   -4.20   -2.66   -0.89    1.12    3.60    6.91   11.29
+   240.0    0.00   -0.18   -0.62   -1.27   -2.06   -2.96   -3.92   -4.87   -5.65   -6.09   -6.02   -5.37   -4.19   -2.65   -0.88    1.13    3.60    6.90   11.20
+   245.0    0.00   -0.18   -0.62   -1.27   -2.05   -2.94   -3.90   -4.85   -5.64   -6.09   -6.03   -5.38   -4.21   -2.68   -0.92    1.08    3.54    6.80   10.98
+   250.0    0.00   -0.18   -0.62   -1.26   -2.04   -2.93   -3.88   -4.83   -5.63   -6.08   -6.03   -5.39   -4.24   -2.74   -1.00    0.97    3.42    6.62   10.63
+   255.0    0.00   -0.18   -0.62   -1.26   -2.04   -2.92   -3.87   -4.82   -5.61   -6.07   -6.03   -5.41   -4.29   -2.82   -1.12    0.83    3.24    6.37   10.21
+   260.0    0.00   -0.18   -0.63   -1.26   -2.04   -2.92   -3.87   -4.81   -5.60   -6.06   -6.03   -5.43   -4.34   -2.91   -1.25    0.66    3.02    6.08    9.77
+   265.0    0.00   -0.18   -0.63   -1.27   -2.04   -2.93   -3.88   -4.82   -5.60   -6.06   -6.02   -5.45   -4.39   -2.99   -1.38    0.48    2.80    5.78    9.35
+   270.0    0.00   -0.18   -0.63   -1.27   -2.05   -2.94   -3.89   -4.83   -5.61   -6.06   -6.02   -5.46   -4.43   -3.07   -1.51    0.31    2.58    5.51    9.01
+   275.0    0.00   -0.19   -0.63   -1.28   -2.07   -2.96   -3.92   -4.85   -5.62   -6.06   -6.02   -5.46   -4.45   -3.13   -1.61    0.16    2.39    5.29    8.77
+   280.0    0.00   -0.19   -0.64   -1.29   -2.09   -2.99   -3.95   -4.87   -5.63   -6.06   -6.01   -5.46   -4.46   -3.17   -1.69    0.04    2.24    5.14    8.67
+   285.0    0.00   -0.19   -0.64   -1.30   -2.10   -3.01   -3.98   -4.90   -5.65   -6.06   -6.01   -5.45   -4.46   -3.19   -1.73   -0.02    2.15    5.06    8.69
+   290.0    0.00   -0.19   -0.64   -1.31   -2.12   -3.04   -4.00   -4.92   -5.66   -6.06   -6.00   -5.44   -4.45   -3.18   -1.73   -0.05    2.12    5.06    8.84
+   295.0    0.00   -0.19   -0.64   -1.32   -2.14   -3.06   -4.02   -4.94   -5.67   -6.06   -5.99   -5.43   -4.44   -3.17   -1.71   -0.02    2.15    5.13    9.06
+   300.0    0.00   -0.19   -0.65   -1.32   -2.15   -3.07   -4.03   -4.94   -5.66   -6.05   -5.98   -5.42   -4.42   -3.14   -1.67    0.03    2.21    5.24    9.33
+   305.0    0.00   -0.19   -0.65   -1.33   -2.16   -3.08   -4.03   -4.93   -5.65   -6.03   -5.97   -5.41   -4.42   -3.12   -1.62    0.11    2.30    5.36    9.59
+   310.0    0.00   -0.18   -0.65   -1.33   -2.16   -3.08   -4.02   -4.91   -5.62   -6.01   -5.97   -5.42   -4.42   -3.10   -1.57    0.19    2.40    5.48    9.80
+   315.0    0.00   -0.18   -0.65   -1.33   -2.16   -3.08   -4.01   -4.88   -5.59   -5.99   -5.96   -5.43   -4.44   -3.10   -1.53    0.26    2.49    5.56    9.91
+   320.0    0.00   -0.18   -0.65   -1.33   -2.16   -3.06   -3.98   -4.84   -5.55   -5.96   -5.96   -5.46   -4.47   -3.12   -1.51    0.32    2.55    5.59    9.92
+   325.0    0.00   -0.18   -0.65   -1.33   -2.15   -3.05   -3.96   -4.81   -5.51   -5.94   -5.96   -5.49   -4.52   -3.15   -1.52    0.34    2.57    5.57    9.82
+   330.0    0.00   -0.18   -0.64   -1.33   -2.15   -3.04   -3.93   -4.78   -5.48   -5.92   -5.97   -5.52   -4.57   -3.20   -1.55    0.33    2.55    5.48    9.61
+   335.0    0.00   -0.18   -0.64   -1.32   -2.14   -3.02   -3.91   -4.75   -5.46   -5.91   -5.98   -5.55   -4.62   -3.26   -1.60    0.29    2.49    5.35    9.34
+   340.0    0.00   -0.17   -0.63   -1.32   -2.14   -3.02   -3.91   -4.74   -5.45   -5.91   -5.99   -5.58   -4.67   -3.31   -1.66    0.22    2.40    5.19    9.04
+   345.0    0.00   -0.17   -0.63   -1.31   -2.13   -3.02   -3.91   -4.74   -5.45   -5.91   -6.00   -5.60   -4.70   -3.37   -1.73    0.14    2.30    5.03    8.76
+   350.0    0.00   -0.17   -0.63   -1.31   -2.13   -3.02   -3.92   -4.76   -5.46   -5.92   -6.00   -5.61   -4.72   -3.41   -1.79    0.05    2.19    4.90    8.54
+   355.0    0.00   -0.17   -0.62   -1.30   -2.13   -3.03   -3.94   -4.78   -5.49   -5.94   -6.01   -5.61   -4.72   -3.43   -1.84   -0.02    2.12    4.82    8.41
+   360.0    0.00   -0.16   -0.62   -1.30   -2.14   -3.05   -3.96   -4.82   -5.52   -5.95   -6.00   -5.59   -4.71   -3.43   -1.87   -0.07    2.08    4.81    8.40
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TRM59800.00     SCIT                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               5    02-OCT-09 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+      1.32      0.88     84.85                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.40   -1.51   -3.05   -4.69   -6.17   -7.38   -8.27   -8.85   -9.07   -8.82   -7.97   -6.45   -4.33   -1.74    1.26    4.82    9.34   15.24
+     0.0    0.00   -0.36   -1.43   -2.94   -4.55   -6.00   -7.17   -8.04   -8.62   -8.86   -8.62   -7.77   -6.24   -4.13   -1.63    1.14    4.35    8.52   14.41
+     5.0    0.00   -0.37   -1.45   -2.96   -4.58   -6.04   -7.20   -8.07   -8.64   -8.88   -8.64   -7.79   -6.27   -4.16   -1.66    1.13    4.36    8.54   14.41
+    10.0    0.00   -0.38   -1.46   -2.99   -4.61   -6.08   -7.24   -8.10   -8.67   -8.90   -8.67   -7.83   -6.31   -4.21   -1.69    1.12    4.37    8.56   14.41
+    15.0    0.00   -0.38   -1.48   -3.01   -4.65   -6.12   -7.29   -8.14   -8.70   -8.92   -8.69   -7.86   -6.36   -4.26   -1.72    1.11    4.38    8.58   14.42
+    20.0    0.00   -0.39   -1.50   -3.04   -4.69   -6.16   -7.33   -8.18   -8.73   -8.95   -8.73   -7.90   -6.41   -4.30   -1.75    1.11    4.41    8.62   14.43
+    25.0    0.00   -0.40   -1.51   -3.07   -4.73   -6.21   -7.38   -8.23   -8.77   -8.99   -8.76   -7.94   -6.44   -4.33   -1.77    1.12    4.44    8.66   14.46
+    30.0    0.00   -0.40   -1.53   -3.09   -4.76   -6.25   -7.43   -8.27   -8.81   -9.02   -8.79   -7.97   -6.47   -4.35   -1.77    1.15    4.49    8.72   14.49
+    35.0    0.00   -0.41   -1.54   -3.12   -4.80   -6.30   -7.48   -8.32   -8.86   -9.06   -8.83   -8.00   -6.49   -4.35   -1.75    1.19    4.56    8.80   14.55
+    40.0    0.00   -0.42   -1.56   -3.14   -4.83   -6.34   -7.53   -8.37   -8.91   -9.10   -8.86   -8.01   -6.49   -4.34   -1.71    1.26    4.65    8.89   14.63
+    45.0    0.00   -0.42   -1.57   -3.16   -4.86   -6.38   -7.57   -8.42   -8.95   -9.14   -8.88   -8.03   -6.48   -4.31   -1.65    1.34    4.75    9.01   14.74
+    50.0    0.00   -0.43   -1.58   -3.18   -4.88   -6.41   -7.61   -8.46   -8.99   -9.17   -8.90   -8.03   -6.47   -4.27   -1.59    1.42    4.86    9.14   14.88
+    55.0    0.00   -0.43   -1.59   -3.19   -4.90   -6.43   -7.64   -8.50   -9.02   -9.20   -8.92   -8.03   -6.45   -4.22   -1.52    1.52    4.98    9.28   15.04
+    60.0    0.00   -0.44   -1.60   -3.20   -4.91   -6.45   -7.66   -8.52   -9.05   -9.22   -8.93   -8.03   -6.43   -4.18   -1.46    1.61    5.10    9.44   15.21
+    65.0    0.00   -0.44   -1.60   -3.21   -4.92   -6.46   -7.67   -8.53   -9.06   -9.24   -8.94   -8.02   -6.41   -4.15   -1.40    1.69    5.21    9.59   15.38
+    70.0    0.00   -0.45   -1.61   -3.21   -4.92   -6.45   -7.67   -8.53   -9.06   -9.24   -8.94   -8.02   -6.40   -4.12   -1.37    1.75    5.31    9.73   15.54
+    75.0    0.00   -0.45   -1.61   -3.21   -4.92   -6.45   -7.65   -8.52   -9.06   -9.24   -8.94   -8.02   -6.40   -4.12   -1.35    1.79    5.39    9.85   15.68
+    80.0    0.00   -0.45   -1.61   -3.21   -4.91   -6.43   -7.63   -8.50   -9.04   -9.23   -8.94   -8.03   -6.41   -4.13   -1.36    1.81    5.45    9.95   15.79
+    85.0    0.00   -0.46   -1.62   -3.21   -4.90   -6.41   -7.61   -8.47   -9.02   -9.21   -8.94   -8.04   -6.43   -4.16   -1.38    1.80    5.48   10.03   15.87
+    90.0    0.00   -0.46   -1.62   -3.20   -4.88   -6.39   -7.58   -8.45   -9.00   -9.20   -8.94   -8.05   -6.46   -4.21   -1.43    1.77    5.49   10.08   15.92
+    95.0    0.00   -0.46   -1.62   -3.20   -4.87   -6.37   -7.55   -8.42   -8.98   -9.19   -8.94   -8.07   -6.50   -4.26   -1.49    1.72    5.48   10.10   15.94
+   100.0    0.00   -0.46   -1.62   -3.19   -4.86   -6.35   -7.53   -8.40   -8.96   -9.18   -8.95   -8.10   -6.55   -4.33   -1.56    1.66    5.45   10.11   15.94
+   105.0    0.00   -0.46   -1.62   -3.19   -4.85   -6.33   -7.51   -8.38   -8.95   -9.18   -8.96   -8.12   -6.59   -4.39   -1.63    1.59    5.41   10.10   15.94
+   110.0    0.00   -0.46   -1.62   -3.18   -4.84   -6.32   -7.50   -8.38   -8.95   -9.19   -8.97   -8.15   -6.63   -4.44   -1.70    1.53    5.37   10.09   15.93
+   115.0    0.00   -0.47   -1.62   -3.18   -4.83   -6.31   -7.50   -8.38   -8.96   -9.21   -9.00   -8.18   -6.67   -4.49   -1.76    1.48    5.33   10.08   15.94
+   120.0    0.00   -0.47   -1.62   -3.18   -4.83   -6.31   -7.50   -8.39   -8.98   -9.23   -9.02   -8.20   -6.70   -4.53   -1.80    1.44    5.31   10.08   15.97
+   125.0    0.00   -0.47   -1.62   -3.18   -4.83   -6.32   -7.51   -8.40   -9.00   -9.25   -9.04   -8.22   -6.72   -4.55   -1.82    1.42    5.30   10.10   16.01
+   130.0    0.00   -0.47   -1.62   -3.18   -4.83   -6.32   -7.52   -8.42   -9.01   -9.27   -9.06   -8.23   -6.73   -4.56   -1.83    1.41    5.30   10.13   16.06
+   135.0    0.00   -0.47   -1.62   -3.18   -4.83   -6.33   -7.53   -8.43   -9.03   -9.28   -9.07   -8.24   -6.73   -4.56   -1.83    1.42    5.32   10.16   16.13
+   140.0    0.00   -0.47   -1.62   -3.18   -4.84   -6.33   -7.54   -8.44   -9.04   -9.29   -9.07   -8.24   -6.73   -4.55   -1.82    1.44    5.35   10.20   16.18
+   145.0    0.00   -0.46   -1.62   -3.18   -4.84   -6.33   -7.54   -8.44   -9.04   -9.29   -9.07   -8.24   -6.72   -4.54   -1.80    1.46    5.38   10.23   16.21
+   150.0    0.00   -0.46   -1.62   -3.18   -4.84   -6.33   -7.53   -8.43   -9.02   -9.27   -9.05   -8.23   -6.71   -4.54   -1.79    1.48    5.39   10.24   16.21
+   155.0    0.00   -0.46   -1.61   -3.18   -4.84   -6.33   -7.52   -8.41   -9.00   -9.25   -9.03   -8.21   -6.70   -4.53   -1.78    1.49    5.40   10.22   16.16
+   160.0    0.00   -0.46   -1.61   -3.18   -4.83   -6.32   -7.51   -8.38   -8.97   -9.21   -9.00   -8.19   -6.70   -4.53   -1.79    1.48    5.39   10.18   16.07
+   165.0    0.00   -0.46   -1.61   -3.17   -4.83   -6.30   -7.48   -8.35   -8.93   -9.17   -8.97   -8.17   -6.69   -4.54   -1.80    1.46    5.35   10.10   15.94
+   170.0    0.00   -0.46   -1.61   -3.17   -4.82   -6.29   -7.46   -8.32   -8.88   -9.12   -8.93   -8.15   -6.69   -4.55   -1.83    1.42    5.28    9.99   15.77
+   175.0    0.00   -0.45   -1.60   -3.16   -4.81   -6.27   -7.43   -8.28   -8.84   -9.08   -8.89   -8.13   -6.68   -4.56   -1.86    1.37    5.20    9.86   15.58
+   180.0    0.00   -0.45   -1.60   -3.16   -4.80   -6.26   -7.41   -8.25   -8.81   -9.05   -8.86   -8.10   -6.68   -4.58   -1.90    1.30    5.10    9.72   15.39
+   185.0    0.00   -0.45   -1.59   -3.15   -4.79   -6.25   -7.40   -8.23   -8.78   -9.02   -8.83   -8.08   -6.67   -4.59   -1.94    1.23    4.99    9.58   15.22
+   190.0    0.00   -0.44   -1.58   -3.14   -4.78   -6.24   -7.39   -8.22   -8.77   -9.00   -8.81   -8.06   -6.65   -4.60   -1.98    1.15    4.88    9.45   15.09
+   195.0    0.00   -0.44   -1.58   -3.13   -4.77   -6.23   -7.38   -8.22   -8.77   -8.99   -8.79   -8.03   -6.63   -4.59   -2.01    1.09    4.78    9.34   15.00
+   200.0    0.00   -0.43   -1.57   -3.12   -4.76   -6.22   -7.39   -8.23   -8.78   -8.99   -8.78   -8.00   -6.60   -4.57   -2.02    1.04    4.71    9.27   14.97
+   205.0    0.00   -0.43   -1.56   -3.11   -4.75   -6.22   -7.39   -8.25   -8.80   -9.00   -8.77   -7.98   -6.56   -4.54   -2.01    1.01    4.65    9.23   15.00
+   210.0    0.00   -0.42   -1.55   -3.10   -4.74   -6.22   -7.41   -8.27   -8.82   -9.02   -8.76   -7.94   -6.50   -4.49   -1.98    1.00    4.63    9.23   15.08
+   215.0    0.00   -0.41   -1.54   -3.08   -4.73   -6.22   -7.42   -8.30   -8.85   -9.04   -8.76   -7.91   -6.45   -4.43   -1.94    1.02    4.64    9.27   15.20
+   220.0    0.00   -0.41   -1.52   -3.07   -4.72   -6.22   -7.43   -8.32   -8.88   -9.06   -8.75   -7.87   -6.38   -4.36   -1.88    1.06    4.67    9.33   15.34
+   225.0    0.00   -0.40   -1.51   -3.05   -4.70   -6.21   -7.44   -8.34   -8.91   -9.08   -8.75   -7.83   -6.32   -4.28   -1.81    1.12    4.72    9.41   15.48
+   230.0    0.00   -0.40   -1.50   -3.04   -4.69   -6.20   -7.44   -8.36   -8.93   -9.09   -8.74   -7.80   -6.26   -4.20   -1.73    1.18    4.79    9.50   15.61
+   235.0    0.00   -0.39   -1.49   -3.02   -4.67   -6.19   -7.44   -8.36   -8.94   -9.10   -8.74   -7.77   -6.20   -4.13   -1.66    1.25    4.85    9.57   15.71
+   240.0    0.00   -0.38   -1.47   -3.00   -4.65   -6.17   -7.43   -8.36   -8.95   -9.11   -8.73   -7.75   -6.16   -4.07   -1.59    1.31    4.91    9.63   15.78
+   245.0    0.00   -0.38   -1.46   -2.98   -4.62   -6.15   -7.41   -8.35   -8.95   -9.11   -8.73   -7.74   -6.14   -4.03   -1.54    1.36    4.95    9.67   15.80
+   250.0    0.00   -0.37   -1.45   -2.96   -4.60   -6.12   -7.39   -8.34   -8.94   -9.11   -8.74   -7.74   -6.13   -4.02   -1.52    1.39    4.97    9.67   15.79
+   255.0    0.00   -0.36   -1.43   -2.94   -4.57   -6.09   -7.36   -8.32   -8.93   -9.11   -8.74   -7.75   -6.14   -4.02   -1.52    1.39    4.96    9.65   15.74
+   260.0    0.00   -0.36   -1.42   -2.92   -4.55   -6.06   -7.33   -8.29   -8.91   -9.10   -8.76   -7.78   -6.17   -4.05   -1.55    1.36    4.93    9.59   15.66
+   265.0    0.00   -0.35   -1.41   -2.90   -4.52   -6.03   -7.29   -8.26   -8.89   -9.10   -8.77   -7.81   -6.22   -4.10   -1.60    1.31    4.87    9.52   15.57
+   270.0    0.00   -0.35   -1.40   -2.88   -4.50   -6.00   -7.26   -8.23   -8.87   -9.10   -8.79   -7.86   -6.28   -4.17   -1.67    1.23    4.79    9.43   15.47
+   275.0    0.00   -0.34   -1.38   -2.86   -4.47   -5.97   -7.23   -8.19   -8.84   -9.09   -8.82   -7.90   -6.35   -4.25   -1.75    1.15    4.69    9.33   15.37
+   280.0    0.00   -0.34   -1.38   -2.85   -4.45   -5.94   -7.19   -8.16   -8.82   -9.09   -8.84   -7.95   -6.42   -4.34   -1.84    1.05    4.59    9.22   15.28
+   285.0    0.00   -0.34   -1.37   -2.84   -4.43   -5.92   -7.16   -8.13   -8.80   -9.08   -8.85   -7.99   -6.48   -4.42   -1.93    0.96    4.49    9.12   15.20
+   290.0    0.00   -0.33   -1.36   -2.82   -4.42   -5.90   -7.14   -8.10   -8.77   -9.07   -8.86   -8.03   -6.54   -4.49   -2.01    0.88    4.40    9.02   15.12
+   295.0    0.00   -0.33   -1.36   -2.82   -4.40   -5.88   -7.11   -8.07   -8.75   -9.06   -8.87   -8.05   -6.58   -4.54   -2.07    0.81    4.32    8.93   15.05
+   300.0    0.00   -0.33   -1.35   -2.81   -4.39   -5.86   -7.09   -8.05   -8.72   -9.04   -8.86   -8.06   -6.60   -4.57   -2.10    0.77    4.26    8.85   14.99
+   305.0    0.00   -0.33   -1.35   -2.81   -4.39   -5.85   -7.07   -8.03   -8.70   -9.01   -8.84   -8.05   -6.60   -4.57   -2.11    0.74    4.21    8.78   14.92
+   310.0    0.00   -0.33   -1.35   -2.81   -4.39   -5.84   -7.06   -8.01   -8.67   -8.99   -8.82   -8.03   -6.58   -4.55   -2.09    0.75    4.19    8.72   14.85
+   315.0    0.00   -0.33   -1.35   -2.81   -4.39   -5.84   -7.05   -7.99   -8.65   -8.96   -8.79   -8.00   -6.54   -4.51   -2.05    0.77    4.18    8.66   14.77
+   320.0    0.00   -0.33   -1.35   -2.81   -4.39   -5.84   -7.05   -7.98   -8.63   -8.94   -8.76   -7.96   -6.49   -4.45   -1.99    0.82    4.18    8.62   14.70
+   325.0    0.00   -0.33   -1.36   -2.82   -4.40   -5.85   -7.05   -7.97   -8.61   -8.91   -8.72   -7.91   -6.43   -4.38   -1.92    0.87    4.20    8.58   14.63
+   330.0    0.00   -0.33   -1.36   -2.83   -4.41   -5.86   -7.05   -7.97   -8.60   -8.89   -8.69   -7.87   -6.37   -4.30   -1.84    0.94    4.22    8.55   14.57
+   335.0    0.00   -0.34   -1.37   -2.84   -4.42   -5.87   -7.06   -7.97   -8.59   -8.87   -8.66   -7.82   -6.31   -4.23   -1.76    1.00    4.25    8.53   14.51
+   340.0    0.00   -0.34   -1.38   -2.86   -4.44   -5.89   -7.07   -7.98   -8.59   -8.86   -8.64   -7.79   -6.27   -4.17   -1.70    1.05    4.27    8.51   14.47
+   345.0    0.00   -0.35   -1.39   -2.87   -4.46   -5.91   -7.09   -7.99   -8.59   -8.85   -8.62   -7.76   -6.23   -4.13   -1.65    1.09    4.30    8.51   14.44
+   350.0    0.00   -0.35   -1.41   -2.89   -4.49   -5.94   -7.11   -8.00   -8.60   -8.85   -8.61   -7.75   -6.22   -4.11   -1.63    1.12    4.32    8.51   14.42
+   355.0    0.00   -0.36   -1.42   -2.91   -4.51   -5.97   -7.14   -8.02   -8.61   -8.85   -8.62   -7.75   -6.22   -4.11   -1.62    1.14    4.33    8.51   14.41
+   360.0    0.00   -0.36   -1.43   -2.94   -4.55   -6.00   -7.17   -8.04   -8.62   -8.86   -8.62   -7.77   -6.24   -4.13   -1.63    1.14    4.35    8.52   14.41
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      1.02     -0.32    118.08                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.13   -0.52   -1.11   -1.83   -2.62   -3.44   -4.22   -4.92   -5.46   -5.72   -5.60   -4.99   -3.83   -2.07    0.32    3.33    6.88   10.76
+     0.0    0.00   -0.10   -0.48   -1.07   -1.81   -2.62   -3.43   -4.19   -4.87   -5.41   -5.72   -5.68   -5.16   -4.05   -2.32   -0.03    2.78    6.08    9.97
+     5.0    0.00   -0.11   -0.48   -1.08   -1.82   -2.62   -3.42   -4.18   -4.86   -5.41   -5.73   -5.70   -5.17   -4.05   -2.32   -0.01    2.81    6.13   10.06
+    10.0    0.00   -0.11   -0.48   -1.08   -1.81   -2.61   -3.41   -4.17   -4.85   -5.40   -5.73   -5.70   -5.17   -4.04   -2.29    0.04    2.89    6.25   10.21
+    15.0    0.00   -0.11   -0.49   -1.08   -1.81   -2.61   -3.40   -4.16   -4.84   -5.40   -5.73   -5.69   -5.15   -4.01   -2.23    0.14    3.02    6.42   10.40
+    20.0    0.00   -0.11   -0.49   -1.08   -1.81   -2.60   -3.39   -4.15   -4.83   -5.39   -5.71   -5.67   -5.12   -3.95   -2.14    0.26    3.19    6.63   10.62
+    25.0    0.00   -0.12   -0.49   -1.09   -1.81   -2.60   -3.39   -4.14   -4.83   -5.38   -5.70   -5.64   -5.07   -3.88   -2.04    0.41    3.39    6.87   10.88
+    30.0    0.00   -0.12   -0.50   -1.09   -1.81   -2.60   -3.39   -4.14   -4.83   -5.37   -5.68   -5.60   -5.01   -3.79   -1.92    0.57    3.60    7.13   11.14
+    35.0    0.00   -0.12   -0.50   -1.09   -1.82   -2.60   -3.39   -4.15   -4.83   -5.37   -5.66   -5.56   -4.94   -3.70   -1.80    0.72    3.80    7.38   11.40
+    40.0    0.00   -0.12   -0.51   -1.10   -1.82   -2.61   -3.40   -4.16   -4.84   -5.37   -5.64   -5.52   -4.88   -3.61   -1.70    0.85    3.97    7.60   11.65
+    45.0    0.00   -0.13   -0.51   -1.10   -1.83   -2.62   -3.42   -4.18   -4.86   -5.37   -5.63   -5.49   -4.82   -3.54   -1.61    0.95    4.10    7.78   11.87
+    50.0    0.00   -0.13   -0.51   -1.11   -1.84   -2.63   -3.44   -4.20   -4.87   -5.38   -5.62   -5.46   -4.78   -3.49   -1.56    1.00    4.18    7.90   12.04
+    55.0    0.00   -0.13   -0.52   -1.12   -1.85   -2.65   -3.45   -4.22   -4.89   -5.39   -5.61   -5.44   -4.75   -3.47   -1.55    1.01    4.19    7.95   12.15
+    60.0    0.00   -0.13   -0.52   -1.12   -1.86   -2.66   -3.47   -4.24   -4.90   -5.39   -5.61   -5.43   -4.75   -3.48   -1.58    0.96    4.14    7.93   12.20
+    65.0    0.00   -0.14   -0.53   -1.13   -1.87   -2.67   -3.48   -4.25   -4.91   -5.40   -5.61   -5.44   -4.77   -3.52   -1.65    0.86    4.03    7.84   12.18
+    70.0    0.00   -0.14   -0.54   -1.14   -1.88   -2.68   -3.49   -4.25   -4.91   -5.40   -5.62   -5.46   -4.80   -3.58   -1.75    0.72    3.87    7.69   12.09
+    75.0    0.00   -0.14   -0.54   -1.14   -1.88   -2.69   -3.49   -4.25   -4.91   -5.40   -5.63   -5.48   -4.85   -3.67   -1.88    0.55    3.67    7.49   11.93
+    80.0    0.00   -0.15   -0.54   -1.15   -1.89   -2.69   -3.49   -4.24   -4.90   -5.40   -5.64   -5.51   -4.91   -3.76   -2.01    0.37    3.45    7.26   11.72
+    85.0    0.00   -0.15   -0.55   -1.16   -1.89   -2.69   -3.48   -4.23   -4.89   -5.39   -5.64   -5.54   -4.97   -3.86   -2.15    0.20    3.23    7.01   11.48
+    90.0    0.00   -0.15   -0.55   -1.16   -1.90   -2.69   -3.47   -4.21   -4.87   -5.38   -5.65   -5.57   -5.03   -3.94   -2.27    0.04    3.03    6.76   11.22
+    95.0    0.00   -0.15   -0.56   -1.16   -1.90   -2.68   -3.46   -4.20   -4.86   -5.37   -5.66   -5.59   -5.07   -4.01   -2.36   -0.09    2.85    6.55   10.98
+   100.0    0.00   -0.16   -0.56   -1.17   -1.90   -2.68   -3.46   -4.19   -4.85   -5.37   -5.66   -5.61   -5.10   -4.06   -2.43   -0.19    2.72    6.37   10.76
+   105.0    0.00   -0.16   -0.56   -1.17   -1.90   -2.68   -3.45   -4.19   -4.84   -5.37   -5.66   -5.62   -5.11   -4.08   -2.46   -0.24    2.64    6.25   10.59
+   110.0    0.00   -0.16   -0.57   -1.17   -1.90   -2.68   -3.45   -4.19   -4.85   -5.37   -5.66   -5.61   -5.11   -4.07   -2.46   -0.25    2.61    6.19   10.48
+   115.0    0.00   -0.16   -0.57   -1.17   -1.90   -2.68   -3.46   -4.20   -4.86   -5.38   -5.67   -5.60   -5.08   -4.04   -2.43   -0.22    2.62    6.18   10.42
+   120.0    0.00   -0.16   -0.57   -1.17   -1.90   -2.68   -3.47   -4.22   -4.88   -5.40   -5.67   -5.58   -5.05   -3.99   -2.38   -0.17    2.68    6.22   10.41
+   125.0    0.00   -0.17   -0.57   -1.18   -1.90   -2.69   -3.48   -4.24   -4.91   -5.42   -5.67   -5.56   -5.01   -3.94   -2.31   -0.09    2.76    6.29   10.42
+   130.0    0.00   -0.17   -0.58   -1.18   -1.90   -2.70   -3.50   -4.27   -4.94   -5.44   -5.67   -5.55   -4.97   -3.88   -2.24   -0.01    2.86    6.38   10.45
+   135.0    0.00   -0.17   -0.58   -1.18   -1.91   -2.70   -3.52   -4.29   -4.97   -5.46   -5.68   -5.53   -4.93   -3.83   -2.18    0.07    2.96    6.48   10.47
+   140.0    0.00   -0.17   -0.58   -1.18   -1.91   -2.71   -3.53   -4.32   -4.99   -5.48   -5.69   -5.52   -4.90   -3.79   -2.12    0.14    3.04    6.55   10.45
+   145.0    0.00   -0.17   -0.58   -1.18   -1.91   -2.72   -3.54   -4.34   -5.02   -5.50   -5.70   -5.51   -4.89   -3.76   -2.09    0.19    3.11    6.59   10.39
+   150.0    0.00   -0.17   -0.58   -1.18   -1.91   -2.72   -3.55   -4.35   -5.04   -5.52   -5.71   -5.52   -4.88   -3.75   -2.07    0.22    3.14    6.59   10.26
+   155.0    0.00   -0.17   -0.58   -1.18   -1.91   -2.72   -3.56   -4.36   -5.05   -5.53   -5.72   -5.52   -4.89   -3.75   -2.06    0.24    3.15    6.55   10.09
+   160.0    0.00   -0.17   -0.58   -1.18   -1.91   -2.72   -3.56   -4.37   -5.06   -5.54   -5.73   -5.54   -4.90   -3.76   -2.07    0.23    3.13    6.47    9.88
+   165.0    0.00   -0.17   -0.58   -1.18   -1.91   -2.72   -3.56   -4.37   -5.06   -5.55   -5.74   -5.55   -4.91   -3.78   -2.08    0.22    3.10    6.38    9.66
+   170.0    0.00   -0.17   -0.58   -1.18   -1.90   -2.72   -3.56   -4.37   -5.06   -5.56   -5.75   -5.56   -4.93   -3.79   -2.09    0.20    3.06    6.29    9.47
+   175.0    0.00   -0.17   -0.58   -1.17   -1.90   -2.71   -3.56   -4.37   -5.07   -5.56   -5.76   -5.58   -4.94   -3.79   -2.09    0.20    3.03    6.21    9.33
+   180.0    0.00   -0.17   -0.58   -1.17   -1.90   -2.71   -3.55   -4.36   -5.07   -5.57   -5.77   -5.58   -4.94   -3.79   -2.08    0.21    3.03    6.19    9.28
+   185.0    0.00   -0.17   -0.58   -1.17   -1.90   -2.71   -3.55   -4.36   -5.07   -5.57   -5.77   -5.59   -4.94   -3.78   -2.05    0.25    3.07    6.22    9.33
+   190.0    0.00   -0.17   -0.57   -1.17   -1.90   -2.71   -3.55   -4.36   -5.07   -5.57   -5.78   -5.59   -4.93   -3.75   -2.01    0.31    3.14    6.33    9.50
+   195.0    0.00   -0.16   -0.57   -1.17   -1.90   -2.71   -3.54   -4.36   -5.06   -5.57   -5.78   -5.59   -4.92   -3.72   -1.95    0.40    3.27    6.51    9.79
+   200.0    0.00   -0.16   -0.57   -1.16   -1.89   -2.70   -3.54   -4.35   -5.06   -5.57   -5.78   -5.58   -4.90   -3.68   -1.88    0.51    3.44    6.76   10.17
+   205.0    0.00   -0.16   -0.56   -1.16   -1.89   -2.69   -3.53   -4.34   -5.05   -5.57   -5.78   -5.58   -4.89   -3.64   -1.80    0.64    3.64    7.06   10.61
+   210.0    0.00   -0.16   -0.56   -1.15   -1.88   -2.68   -3.52   -4.33   -5.04   -5.57   -5.78   -5.58   -4.88   -3.61   -1.73    0.78    3.86    7.38   11.08
+   215.0    0.00   -0.15   -0.55   -1.14   -1.87   -2.67   -3.50   -4.32   -5.03   -5.56   -5.78   -5.59   -4.88   -3.59   -1.66    0.91    4.08    7.71   11.53
+   220.0    0.00   -0.15   -0.54   -1.13   -1.85   -2.65   -3.48   -4.29   -5.01   -5.55   -5.78   -5.60   -4.89   -3.58   -1.62    1.02    4.27    8.00   11.91
+   225.0    0.00   -0.15   -0.54   -1.12   -1.84   -2.63   -3.46   -4.27   -5.00   -5.54   -5.79   -5.61   -4.91   -3.59   -1.60    1.09    4.42    8.23   12.19
+   230.0    0.00   -0.14   -0.53   -1.10   -1.82   -2.61   -3.43   -4.24   -4.98   -5.53   -5.79   -5.63   -4.94   -3.62   -1.60    1.13    4.52    8.38   12.34
+   235.0    0.00   -0.14   -0.52   -1.09   -1.79   -2.58   -3.40   -4.22   -4.96   -5.52   -5.80   -5.66   -4.98   -3.66   -1.64    1.11    4.54    8.42   12.37
+   240.0    0.00   -0.13   -0.51   -1.07   -1.77   -2.55   -3.38   -4.19   -4.94   -5.52   -5.81   -5.68   -5.02   -3.72   -1.70    1.05    4.48    8.37   12.26
+   245.0    0.00   -0.13   -0.50   -1.05   -1.75   -2.52   -3.35   -4.17   -4.93   -5.52   -5.82   -5.71   -5.06   -3.78   -1.79    0.94    4.35    8.22   12.05
+   250.0    0.00   -0.12   -0.49   -1.04   -1.72   -2.50   -3.32   -4.16   -4.92   -5.52   -5.83   -5.72   -5.10   -3.85   -1.90    0.79    4.16    7.99   11.76
+   255.0    0.00   -0.12   -0.48   -1.02   -1.70   -2.47   -3.30   -4.14   -4.92   -5.52   -5.83   -5.74   -5.13   -3.91   -2.01    0.61    3.92    7.71   11.43
+   260.0    0.00   -0.12   -0.47   -1.00   -1.68   -2.45   -3.29   -4.13   -4.92   -5.52   -5.84   -5.74   -5.15   -3.97   -2.13    0.41    3.66    7.40   11.10
+   265.0    0.00   -0.11   -0.46   -0.99   -1.66   -2.43   -3.28   -4.13   -4.92   -5.53   -5.84   -5.74   -5.16   -4.01   -2.25    0.22    3.39    7.10   10.80
+   270.0    0.00   -0.11   -0.45   -0.98   -1.65   -2.42   -3.27   -4.13   -4.92   -5.53   -5.83   -5.73   -5.15   -4.05   -2.34    0.04    3.15    6.83   10.56
+   275.0    0.00   -0.11   -0.44   -0.97   -1.63   -2.41   -3.26   -4.13   -4.92   -5.53   -5.82   -5.71   -5.14   -4.07   -2.42   -0.10    2.95    6.61   10.40
+   280.0    0.00   -0.10   -0.44   -0.96   -1.63   -2.41   -3.26   -4.13   -4.92   -5.52   -5.80   -5.69   -5.12   -4.07   -2.47   -0.21    2.80    6.46   10.32
+   285.0    0.00   -0.10   -0.43   -0.95   -1.62   -2.41   -3.26   -4.13   -4.92   -5.50   -5.78   -5.66   -5.09   -4.06   -2.49   -0.27    2.71    6.38   10.31
+   290.0    0.00   -0.10   -0.43   -0.95   -1.63   -2.41   -3.26   -4.13   -4.91   -5.48   -5.75   -5.62   -5.06   -4.04   -2.48   -0.28    2.68    6.37   10.35
+   295.0    0.00   -0.10   -0.43   -0.96   -1.63   -2.42   -3.27   -4.13   -4.89   -5.46   -5.72   -5.59   -5.03   -4.00   -2.45   -0.25    2.71    6.40   10.42
+   300.0    0.00   -0.09   -0.43   -0.96   -1.64   -2.43   -3.28   -4.12   -4.88   -5.43   -5.68   -5.55   -4.99   -3.97   -2.40   -0.19    2.78    6.46   10.51
+   305.0    0.00   -0.09   -0.43   -0.97   -1.65   -2.44   -3.29   -4.12   -4.86   -5.41   -5.66   -5.53   -4.97   -3.93   -2.34   -0.11    2.86    6.54   10.57
+   310.0    0.00   -0.09   -0.43   -0.98   -1.67   -2.46   -3.30   -4.12   -4.85   -5.38   -5.63   -5.51   -4.95   -3.89   -2.28   -0.02    2.96    6.61   10.61
+   315.0    0.00   -0.09   -0.44   -0.99   -1.69   -2.48   -3.32   -4.13   -4.84   -5.36   -5.61   -5.49   -4.93   -3.86   -2.22    0.07    3.04    6.65   10.60
+   320.0    0.00   -0.09   -0.44   -1.00   -1.71   -2.51   -3.34   -4.13   -4.83   -5.35   -5.60   -5.49   -4.93   -3.84   -2.18    0.13    3.09    6.65   10.56
+   325.0    0.00   -0.09   -0.44   -1.01   -1.73   -2.53   -3.35   -4.14   -4.83   -5.35   -5.60   -5.50   -4.94   -3.84   -2.15    0.17    3.12    6.62   10.47
+   330.0    0.00   -0.10   -0.45   -1.02   -1.75   -2.55   -3.37   -4.15   -4.83   -5.35   -5.61   -5.51   -4.96   -3.85   -2.14    0.18    3.10    6.54   10.35
+   335.0    0.00   -0.10   -0.45   -1.03   -1.77   -2.58   -3.39   -4.17   -4.84   -5.36   -5.63   -5.54   -4.98   -3.87   -2.16    0.17    3.06    6.44   10.22
+   340.0    0.00   -0.10   -0.46   -1.04   -1.78   -2.59   -3.41   -4.18   -4.85   -5.37   -5.65   -5.57   -5.02   -3.91   -2.19    0.13    2.99    6.33   10.10
+   345.0    0.00   -0.10   -0.46   -1.05   -1.80   -2.61   -3.42   -4.19   -4.86   -5.38   -5.67   -5.60   -5.06   -3.94   -2.23    0.08    2.91    6.22   10.01
+   350.0    0.00   -0.10   -0.47   -1.06   -1.80   -2.62   -3.43   -4.19   -4.87   -5.39   -5.69   -5.63   -5.10   -3.99   -2.27    0.03    2.84    6.13    9.94
+   355.0    0.00   -0.10   -0.47   -1.07   -1.81   -2.62   -3.43   -4.19   -4.87   -5.40   -5.71   -5.66   -5.13   -4.02   -2.30   -0.01    2.79    6.08    9.93
+   360.0    0.00   -0.10   -0.48   -1.07   -1.81   -2.62   -3.43   -4.19   -4.87   -5.41   -5.72   -5.68   -5.16   -4.05   -2.32   -0.03    2.78    6.08    9.97
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TRM59800.80     NONE                                        TYPE / SERIAL NO    
+COPIED              Geo++ GmbH               5    11-AUG-09 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+COPIED FROM TRM59800.00     NONE                            COMMENT             
+ATTENTION! COPIED WITHOUT VERIFICATION BY CALIBRATION!      COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.37      0.86     90.02                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.25   -0.97   -2.08   -3.44   -4.92   -6.32   -7.50   -8.33   -8.71   -8.60   -7.99   -6.86   -5.15   -2.77    0.41    4.46    9.30   14.58
+     0.0    0.00   -0.27   -1.00   -2.09   -3.44   -4.89   -6.29   -7.47   -8.30   -8.65   -8.49   -7.81   -6.64   -4.96   -2.66    0.39    4.33    9.13   14.47
+     5.0    0.00   -0.27   -1.00   -2.09   -3.44   -4.89   -6.30   -7.50   -8.33   -8.68   -8.50   -7.81   -6.62   -4.94   -2.68    0.33    4.23    9.05   14.51
+    10.0    0.00   -0.27   -1.00   -2.09   -3.44   -4.89   -6.31   -7.52   -8.36   -8.71   -8.53   -7.81   -6.61   -4.93   -2.69    0.27    4.14    8.99   14.54
+    15.0    0.00   -0.27   -1.00   -2.09   -3.44   -4.90   -6.32   -7.54   -8.39   -8.75   -8.55   -7.82   -6.61   -4.93   -2.71    0.23    4.09    8.96   14.59
+    20.0    0.00   -0.27   -1.00   -2.09   -3.44   -4.90   -6.33   -7.56   -8.42   -8.78   -8.58   -7.85   -6.62   -4.94   -2.72    0.21    4.07    8.97   14.64
+    25.0    0.00   -0.27   -1.00   -2.09   -3.44   -4.90   -6.34   -7.57   -8.44   -8.80   -8.61   -7.88   -6.65   -4.96   -2.73    0.22    4.11    9.02   14.70
+    30.0    0.00   -0.28   -1.00   -2.09   -3.44   -4.91   -6.34   -7.58   -8.45   -8.82   -8.64   -7.91   -6.68   -4.98   -2.72    0.26    4.18    9.12   14.77
+    35.0    0.00   -0.28   -1.00   -2.09   -3.44   -4.91   -6.35   -7.58   -8.46   -8.84   -8.66   -7.94   -6.71   -5.00   -2.71    0.32    4.30    9.25   14.85
+    40.0    0.00   -0.28   -1.00   -2.09   -3.44   -4.91   -6.34   -7.58   -8.45   -8.84   -8.67   -7.97   -6.75   -5.02   -2.69    0.40    4.43    9.41   14.93
+    45.0    0.00   -0.28   -1.00   -2.10   -3.44   -4.91   -6.34   -7.57   -8.44   -8.83   -8.68   -7.98   -6.77   -5.03   -2.67    0.48    4.57    9.56   15.01
+    50.0    0.00   -0.28   -1.00   -2.10   -3.45   -4.91   -6.34   -7.56   -8.42   -8.81   -8.67   -7.99   -6.79   -5.04   -2.64    0.57    4.71    9.71   15.08
+    55.0    0.00   -0.27   -1.00   -2.10   -3.45   -4.92   -6.33   -7.54   -8.40   -8.78   -8.65   -7.99   -6.80   -5.04   -2.61    0.64    4.82    9.82   15.13
+    60.0    0.00   -0.27   -1.00   -2.10   -3.46   -4.92   -6.33   -7.53   -8.37   -8.76   -8.63   -7.98   -6.79   -5.03   -2.59    0.69    4.89    9.89   15.16
+    65.0    0.00   -0.27   -1.00   -2.11   -3.46   -4.93   -6.33   -7.52   -8.35   -8.73   -8.60   -7.95   -6.78   -5.02   -2.56    0.72    4.93    9.92   15.16
+    70.0    0.00   -0.27   -1.00   -2.11   -3.47   -4.93   -6.33   -7.51   -8.33   -8.70   -8.57   -7.93   -6.75   -5.00   -2.55    0.74    4.93    9.91   15.14
+    75.0    0.00   -0.27   -1.00   -2.11   -3.48   -4.94   -6.33   -7.50   -8.32   -8.68   -8.54   -7.90   -6.73   -4.98   -2.54    0.73    4.90    9.85   15.09
+    80.0    0.00   -0.27   -1.00   -2.12   -3.48   -4.95   -6.34   -7.50   -8.31   -8.66   -8.52   -7.88   -6.71   -4.96   -2.54    0.70    4.84    9.76   15.02
+    85.0    0.00   -0.27   -1.00   -2.12   -3.49   -4.96   -6.35   -7.51   -8.31   -8.65   -8.51   -7.87   -6.70   -4.96   -2.55    0.66    4.76    9.66   14.93
+    90.0    0.00   -0.27   -1.00   -2.12   -3.50   -4.97   -6.36   -7.52   -8.31   -8.65   -8.51   -7.86   -6.70   -4.96   -2.57    0.62    4.68    9.54   14.82
+    95.0    0.00   -0.27   -1.00   -2.12   -3.50   -4.98   -6.37   -7.53   -8.32   -8.66   -8.52   -7.88   -6.71   -4.99   -2.60    0.57    4.60    9.43   14.72
+   100.0    0.00   -0.27   -1.00   -2.13   -3.51   -4.99   -6.38   -7.54   -8.33   -8.68   -8.54   -7.90   -6.75   -5.02   -2.64    0.52    4.53    9.34   14.62
+   105.0    0.00   -0.26   -1.00   -2.13   -3.51   -5.00   -6.40   -7.55   -8.35   -8.70   -8.57   -7.94   -6.79   -5.08   -2.70    0.46    4.47    9.26   14.53
+   110.0    0.00   -0.26   -1.00   -2.13   -3.52   -5.00   -6.41   -7.57   -8.36   -8.72   -8.60   -7.98   -6.85   -5.14   -2.76    0.41    4.42    9.21   14.46
+   115.0    0.00   -0.26   -1.00   -2.13   -3.52   -5.01   -6.42   -7.58   -8.38   -8.74   -8.63   -8.03   -6.91   -5.21   -2.82    0.36    4.38    9.17   14.41
+   120.0    0.00   -0.26   -0.99   -2.13   -3.53   -5.02   -6.43   -7.59   -8.39   -8.76   -8.66   -8.07   -6.97   -5.27   -2.88    0.31    4.36    9.16   14.38
+   125.0    0.00   -0.26   -0.99   -2.13   -3.53   -5.03   -6.44   -7.60   -8.40   -8.77   -8.68   -8.11   -7.02   -5.33   -2.94    0.27    4.34    9.16   14.38
+   130.0    0.00   -0.25   -0.99   -2.12   -3.53   -5.03   -6.45   -7.61   -8.41   -8.78   -8.69   -8.13   -7.05   -5.38   -2.99    0.24    4.33    9.16   14.40
+   135.0    0.00   -0.25   -0.99   -2.12   -3.53   -5.04   -6.45   -7.62   -8.41   -8.78   -8.69   -8.13   -7.07   -5.41   -3.02    0.21    4.32    9.18   14.43
+   140.0    0.00   -0.25   -0.98   -2.12   -3.53   -5.04   -6.45   -7.62   -8.41   -8.77   -8.68   -8.13   -7.07   -5.41   -3.03    0.20    4.32    9.19   14.47
+   145.0    0.00   -0.25   -0.98   -2.12   -3.53   -5.04   -6.45   -7.61   -8.40   -8.76   -8.66   -8.11   -7.05   -5.40   -3.02    0.21    4.32    9.20   14.51
+   150.0    0.00   -0.25   -0.98   -2.12   -3.53   -5.04   -6.45   -7.61   -8.39   -8.74   -8.64   -8.08   -7.02   -5.36   -2.98    0.24    4.33    9.20   14.55
+   155.0    0.00   -0.24   -0.97   -2.11   -3.52   -5.03   -6.45   -7.60   -8.38   -8.72   -8.62   -8.05   -6.98   -5.31   -2.93    0.27    4.35    9.21   14.57
+   160.0    0.00   -0.24   -0.97   -2.11   -3.52   -5.03   -6.44   -7.59   -8.36   -8.70   -8.59   -8.02   -6.93   -5.26   -2.88    0.32    4.37    9.20   14.59
+   165.0    0.00   -0.24   -0.97   -2.11   -3.52   -5.02   -6.43   -7.57   -8.34   -8.68   -8.57   -7.99   -6.89   -5.20   -2.81    0.37    4.40    9.19   14.59
+   170.0    0.00   -0.24   -0.96   -2.10   -3.51   -5.01   -6.41   -7.56   -8.33   -8.67   -8.56   -7.97   -6.86   -5.15   -2.75    0.42    4.42    9.18   14.58
+   175.0    0.00   -0.24   -0.96   -2.10   -3.51   -5.00   -6.40   -7.54   -8.31   -8.66   -8.55   -7.96   -6.84   -5.12   -2.71    0.46    4.43    9.17   14.57
+   180.0    0.00   -0.23   -0.96   -2.09   -3.50   -4.99   -6.39   -7.53   -8.30   -8.65   -8.55   -7.95   -6.83   -5.10   -2.68    0.49    4.44    9.16   14.56
+   185.0    0.00   -0.23   -0.95   -2.09   -3.49   -4.99   -6.38   -7.51   -8.29   -8.65   -8.55   -7.96   -6.83   -5.10   -2.67    0.49    4.43    9.15   14.57
+   190.0    0.00   -0.23   -0.95   -2.09   -3.49   -4.98   -6.37   -7.50   -8.28   -8.64   -8.55   -7.97   -6.85   -5.11   -2.69    0.48    4.42    9.15   14.59
+   195.0    0.00   -0.23   -0.95   -2.08   -3.48   -4.97   -6.36   -7.50   -8.28   -8.64   -8.56   -7.98   -6.87   -5.14   -2.72    0.44    4.40    9.16   14.65
+   200.0    0.00   -0.23   -0.94   -2.08   -3.48   -4.97   -6.36   -7.49   -8.27   -8.64   -8.56   -7.99   -6.89   -5.17   -2.77    0.40    4.39    9.19   14.73
+   205.0    0.00   -0.22   -0.94   -2.07   -3.47   -4.96   -6.35   -7.49   -8.27   -8.64   -8.56   -8.00   -6.91   -5.21   -2.81    0.36    4.38    9.24   14.83
+   210.0    0.00   -0.22   -0.94   -2.06   -3.46   -4.95   -6.34   -7.48   -8.27   -8.63   -8.55   -8.00   -6.92   -5.24   -2.86    0.33    4.39    9.32   14.96
+   215.0    0.00   -0.22   -0.93   -2.06   -3.45   -4.94   -6.34   -7.48   -8.26   -8.62   -8.54   -7.99   -6.92   -5.26   -2.89    0.31    4.42    9.42   15.10
+   220.0    0.00   -0.22   -0.93   -2.05   -3.44   -4.93   -6.32   -7.47   -8.25   -8.61   -8.53   -7.97   -6.91   -5.26   -2.89    0.32    4.48    9.54   15.24
+   225.0    0.00   -0.22   -0.92   -2.04   -3.43   -4.91   -6.31   -7.46   -8.24   -8.60   -8.51   -7.95   -6.90   -5.25   -2.88    0.36    4.56    9.68   15.37
+   230.0    0.00   -0.22   -0.92   -2.03   -3.41   -4.89   -6.29   -7.44   -8.22   -8.58   -8.49   -7.93   -6.87   -5.22   -2.84    0.42    4.67    9.82   15.47
+   235.0    0.00   -0.22   -0.92   -2.02   -3.39   -4.87   -6.26   -7.42   -8.21   -8.57   -8.48   -7.92   -6.85   -5.19   -2.79    0.51    4.80    9.96   15.53
+   240.0    0.00   -0.22   -0.91   -2.01   -3.37   -4.84   -6.24   -7.39   -8.19   -8.56   -8.47   -7.91   -6.83   -5.15   -2.72    0.61    4.92   10.07   15.54
+   245.0    0.00   -0.22   -0.91   -2.00   -3.35   -4.82   -6.21   -7.37   -8.18   -8.56   -8.48   -7.90   -6.81   -5.11   -2.65    0.70    5.02   10.14   15.49
+   250.0    0.00   -0.22   -0.91   -1.99   -3.33   -4.79   -6.18   -7.35   -8.17   -8.57   -8.49   -7.91   -6.80   -5.07   -2.59    0.78    5.09   10.16   15.39
+   255.0    0.00   -0.22   -0.90   -1.98   -3.32   -4.77   -6.16   -7.34   -8.17   -8.58   -8.51   -7.93   -6.80   -5.05   -2.55    0.82    5.12   10.12   15.24
+   260.0    0.00   -0.22   -0.90   -1.97   -3.30   -4.75   -6.14   -7.33   -8.18   -8.60   -8.54   -7.95   -6.81   -5.05   -2.54    0.83    5.09   10.02   15.05
+   265.0    0.00   -0.22   -0.90   -1.97   -3.29   -4.73   -6.13   -7.32   -8.19   -8.63   -8.57   -7.98   -6.83   -5.06   -2.55    0.79    5.00    9.86   14.82
+   270.0    0.00   -0.22   -0.91   -1.97   -3.29   -4.73   -6.12   -7.33   -8.21   -8.66   -8.61   -8.02   -6.86   -5.08   -2.59    0.72    4.86    9.66   14.59
+   275.0    0.00   -0.22   -0.91   -1.97   -3.29   -4.73   -6.13   -7.35   -8.23   -8.69   -8.64   -8.05   -6.89   -5.12   -2.65    0.60    4.68    9.42   14.36
+   280.0    0.00   -0.23   -0.91   -1.97   -3.29   -4.74   -6.14   -7.37   -8.26   -8.72   -8.68   -8.09   -6.93   -5.17   -2.73    0.47    4.48    9.18   14.14
+   285.0    0.00   -0.23   -0.92   -1.98   -3.30   -4.75   -6.16   -7.39   -8.29   -8.76   -8.71   -8.11   -6.96   -5.22   -2.82    0.32    4.27    8.95   13.96
+   290.0    0.00   -0.23   -0.92   -1.99   -3.32   -4.77   -6.19   -7.42   -8.32   -8.78   -8.73   -8.13   -6.99   -5.26   -2.90    0.19    4.10    8.75   13.82
+   295.0    0.00   -0.23   -0.93   -2.00   -3.33   -4.79   -6.21   -7.45   -8.34   -8.79   -8.74   -8.14   -7.00   -5.30   -2.98    0.08    3.96    8.61   13.73
+   300.0    0.00   -0.24   -0.94   -2.01   -3.35   -4.81   -6.24   -7.47   -8.36   -8.80   -8.74   -8.14   -7.02   -5.33   -3.03    0.02    3.88    8.53   13.69
+   305.0    0.00   -0.24   -0.94   -2.03   -3.37   -4.84   -6.26   -7.48   -8.36   -8.80   -8.72   -8.13   -7.02   -5.35   -3.05   -0.01    3.86    8.52   13.69
+   310.0    0.00   -0.24   -0.95   -2.04   -3.39   -4.85   -6.28   -7.49   -8.36   -8.78   -8.70   -8.12   -7.01   -5.35   -3.05    0.01    3.90    8.57   13.73
+   315.0    0.00   -0.25   -0.96   -2.05   -3.40   -4.87   -6.29   -7.49   -8.35   -8.76   -8.68   -8.09   -6.99   -5.33   -3.02    0.07    3.99    8.67   13.80
+   320.0    0.00   -0.25   -0.97   -2.06   -3.42   -4.88   -6.29   -7.49   -8.33   -8.73   -8.65   -8.06   -6.97   -5.30   -2.97    0.15    4.11    8.81   13.89
+   325.0    0.00   -0.25   -0.97   -2.07   -3.43   -4.89   -6.29   -7.48   -8.31   -8.70   -8.61   -8.03   -6.94   -5.26   -2.90    0.25    4.25    8.96   13.99
+   330.0    0.00   -0.26   -0.98   -2.08   -3.43   -4.89   -6.29   -7.47   -8.29   -8.67   -8.58   -8.00   -6.90   -5.22   -2.84    0.35    4.38    9.09   14.10
+   335.0    0.00   -0.26   -0.98   -2.08   -3.44   -4.89   -6.29   -7.45   -8.27   -8.64   -8.55   -7.96   -6.85   -5.16   -2.78    0.43    4.48    9.20   14.19
+   340.0    0.00   -0.26   -0.99   -2.09   -3.44   -4.89   -6.28   -7.45   -8.26   -8.63   -8.52   -7.92   -6.81   -5.11   -2.72    0.48    4.53    9.27   14.27
+   345.0    0.00   -0.26   -0.99   -2.09   -3.44   -4.89   -6.28   -7.44   -8.25   -8.62   -8.50   -7.89   -6.76   -5.06   -2.68    0.50    4.54    9.29   14.34
+   350.0    0.00   -0.27   -0.99   -2.09   -3.44   -4.89   -6.28   -7.45   -8.26   -8.62   -8.49   -7.86   -6.72   -5.02   -2.66    0.49    4.50    9.27   14.40
+   355.0    0.00   -0.27   -1.00   -2.09   -3.44   -4.89   -6.28   -7.46   -8.27   -8.63   -8.48   -7.83   -6.68   -4.98   -2.65    0.45    4.43    9.21   14.44
+   360.0    0.00   -0.27   -1.00   -2.09   -3.44   -4.89   -6.29   -7.47   -8.30   -8.65   -8.49   -7.81   -6.64   -4.96   -2.66    0.39    4.33    9.13   14.47
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.09      0.01    119.89                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.15   -0.57   -1.21   -1.99   -2.83   -3.67   -4.44   -5.06   -5.42   -5.42   -5.00   -4.18   -3.02   -1.58    0.17    2.42    5.47    9.51
+     0.0    0.00   -0.14   -0.58   -1.23   -2.03   -2.87   -3.68   -4.40   -4.98   -5.37   -5.46   -5.17   -4.46   -3.35   -1.92   -0.19    1.94    4.82    9.05
+     5.0    0.00   -0.14   -0.57   -1.23   -2.02   -2.86   -3.68   -4.40   -4.99   -5.37   -5.46   -5.16   -4.45   -3.34   -1.92   -0.19    1.96    4.88    9.14
+    10.0    0.00   -0.14   -0.56   -1.22   -2.01   -2.85   -3.68   -4.41   -5.01   -5.38   -5.44   -5.13   -4.40   -3.31   -1.89   -0.17    2.01    4.99    9.27
+    15.0    0.00   -0.14   -0.56   -1.20   -1.99   -2.84   -3.67   -4.42   -5.02   -5.38   -5.42   -5.08   -4.34   -3.24   -1.84   -0.12    2.09    5.13    9.43
+    20.0    0.00   -0.14   -0.55   -1.19   -1.98   -2.83   -3.67   -4.43   -5.03   -5.38   -5.40   -5.02   -4.25   -3.15   -1.76   -0.04    2.20    5.29    9.61
+    25.0    0.00   -0.14   -0.55   -1.18   -1.96   -2.82   -3.67   -4.44   -5.04   -5.38   -5.37   -4.95   -4.16   -3.04   -1.65    0.07    2.34    5.49    9.81
+    30.0    0.00   -0.13   -0.54   -1.17   -1.95   -2.81   -3.67   -4.45   -5.06   -5.38   -5.34   -4.89   -4.06   -2.93   -1.54    0.19    2.50    5.70   10.02
+    35.0    0.00   -0.13   -0.54   -1.16   -1.94   -2.79   -3.66   -4.46   -5.07   -5.39   -5.32   -4.83   -3.97   -2.82   -1.42    0.33    2.67    5.93   10.23
+    40.0    0.00   -0.13   -0.53   -1.15   -1.92   -2.78   -3.66   -4.46   -5.08   -5.39   -5.30   -4.79   -3.90   -2.72   -1.31    0.46    2.84    6.15   10.43
+    45.0    0.00   -0.13   -0.53   -1.14   -1.91   -2.77   -3.65   -4.47   -5.09   -5.40   -5.30   -4.76   -3.84   -2.65   -1.21    0.58    3.00    6.35   10.61
+    50.0    0.00   -0.13   -0.53   -1.14   -1.91   -2.77   -3.65   -4.47   -5.10   -5.41   -5.31   -4.76   -3.82   -2.61   -1.15    0.68    3.15    6.53   10.75
+    55.0    0.00   -0.13   -0.53   -1.14   -1.90   -2.76   -3.65   -4.47   -5.11   -5.43   -5.32   -4.77   -3.83   -2.60   -1.11    0.75    3.26    6.66   10.84
+    60.0    0.00   -0.13   -0.53   -1.14   -1.91   -2.76   -3.64   -4.47   -5.11   -5.44   -5.35   -4.81   -3.87   -2.63   -1.11    0.78    3.32    6.74   10.87
+    65.0    0.00   -0.13   -0.53   -1.15   -1.91   -2.77   -3.64   -4.47   -5.11   -5.45   -5.38   -4.86   -3.93   -2.68   -1.15    0.78    3.34    6.75   10.84
+    70.0    0.00   -0.13   -0.54   -1.15   -1.92   -2.77   -3.65   -4.46   -5.11   -5.46   -5.41   -4.92   -4.01   -2.76   -1.21    0.74    3.31    6.71   10.74
+    75.0    0.00   -0.13   -0.54   -1.16   -1.93   -2.78   -3.65   -4.46   -5.11   -5.47   -5.45   -4.98   -4.09   -2.86   -1.30    0.66    3.23    6.59   10.58
+    80.0    0.00   -0.14   -0.55   -1.17   -1.95   -2.80   -3.66   -4.46   -5.10   -5.48   -5.48   -5.04   -4.18   -2.96   -1.40    0.56    3.11    6.42   10.36
+    85.0    0.00   -0.14   -0.55   -1.19   -1.97   -2.81   -3.67   -4.46   -5.10   -5.48   -5.50   -5.10   -4.26   -3.06   -1.51    0.44    2.96    6.21   10.11
+    90.0    0.00   -0.14   -0.56   -1.20   -1.98   -2.83   -3.68   -4.46   -5.09   -5.48   -5.52   -5.14   -4.33   -3.14   -1.60    0.32    2.79    5.97    9.84
+    95.0    0.00   -0.14   -0.56   -1.21   -2.00   -2.85   -3.69   -4.46   -5.09   -5.48   -5.53   -5.17   -4.38   -3.21   -1.69    0.21    2.62    5.73    9.59
+   100.0    0.00   -0.14   -0.57   -1.22   -2.02   -2.86   -3.70   -4.46   -5.08   -5.47   -5.53   -5.19   -4.42   -3.25   -1.75    0.12    2.47    5.51    9.35
+   105.0    0.00   -0.14   -0.58   -1.23   -2.03   -2.88   -3.71   -4.46   -5.07   -5.46   -5.53   -5.19   -4.43   -3.27   -1.78    0.05    2.34    5.32    9.17
+   110.0    0.00   -0.15   -0.58   -1.24   -2.04   -2.89   -3.71   -4.46   -5.07   -5.46   -5.52   -5.19   -4.43   -3.27   -1.79    0.01    2.26    5.19    9.05
+   115.0    0.00   -0.15   -0.58   -1.25   -2.05   -2.89   -3.72   -4.46   -5.07   -5.45   -5.52   -5.18   -4.41   -3.25   -1.77    0.01    2.22    5.11    8.98
+   120.0    0.00   -0.15   -0.59   -1.25   -2.05   -2.89   -3.72   -4.46   -5.07   -5.45   -5.51   -5.16   -4.39   -3.22   -1.74    0.03    2.22    5.09    8.99
+   125.0    0.00   -0.15   -0.59   -1.25   -2.05   -2.89   -3.71   -4.46   -5.07   -5.45   -5.51   -5.15   -4.36   -3.18   -1.69    0.08    2.25    5.11    9.04
+   130.0    0.00   -0.15   -0.59   -1.25   -2.04   -2.88   -3.71   -4.46   -5.08   -5.46   -5.51   -5.14   -4.34   -3.14   -1.64    0.14    2.31    5.18    9.12
+   135.0    0.00   -0.15   -0.59   -1.24   -2.03   -2.87   -3.70   -4.46   -5.09   -5.47   -5.51   -5.13   -4.32   -3.11   -1.60    0.19    2.38    5.26    9.22
+   140.0    0.00   -0.15   -0.59   -1.24   -2.02   -2.86   -3.69   -4.47   -5.10   -5.48   -5.52   -5.13   -4.30   -3.09   -1.57    0.23    2.44    5.34    9.31
+   145.0    0.00   -0.15   -0.58   -1.23   -2.01   -2.84   -3.69   -4.47   -5.11   -5.50   -5.53   -5.13   -4.29   -3.07   -1.56    0.25    2.48    5.40    9.38
+   150.0    0.00   -0.15   -0.58   -1.22   -1.99   -2.83   -3.68   -4.47   -5.11   -5.51   -5.54   -5.13   -4.29   -3.08   -1.57    0.24    2.48    5.43    9.40
+   155.0    0.00   -0.15   -0.58   -1.21   -1.98   -2.82   -3.67   -4.47   -5.12   -5.52   -5.55   -5.13   -4.30   -3.09   -1.60    0.19    2.44    5.41    9.38
+   160.0    0.00   -0.15   -0.58   -1.20   -1.97   -2.80   -3.66   -4.47   -5.13   -5.52   -5.55   -5.13   -4.30   -3.12   -1.66    0.12    2.37    5.35    9.32
+   165.0    0.00   -0.15   -0.57   -1.20   -1.96   -2.79   -3.65   -4.47   -5.13   -5.53   -5.54   -5.13   -4.31   -3.16   -1.73    0.02    2.26    5.26    9.23
+   170.0    0.00   -0.15   -0.57   -1.19   -1.95   -2.79   -3.65   -4.46   -5.13   -5.52   -5.53   -5.12   -4.32   -3.20   -1.81   -0.10    2.13    5.15    9.12
+   175.0    0.00   -0.15   -0.57   -1.19   -1.94   -2.78   -3.65   -4.46   -5.12   -5.51   -5.52   -5.11   -4.32   -3.23   -1.88   -0.21    2.01    5.03    9.02
+   180.0    0.00   -0.15   -0.57   -1.19   -1.94   -2.78   -3.64   -4.46   -5.12   -5.50   -5.50   -5.09   -4.32   -3.26   -1.94   -0.30    1.90    4.94    8.96
+   185.0    0.00   -0.15   -0.57   -1.19   -1.94   -2.78   -3.64   -4.45   -5.10   -5.48   -5.48   -5.07   -4.31   -3.27   -1.98   -0.36    1.83    4.88    8.94
+   190.0    0.00   -0.15   -0.57   -1.19   -1.94   -2.78   -3.64   -4.45   -5.09   -5.46   -5.45   -5.05   -4.29   -3.26   -1.98   -0.37    1.82    4.88    8.98
+   195.0    0.00   -0.15   -0.57   -1.19   -1.95   -2.79   -3.64   -4.44   -5.07   -5.43   -5.43   -5.02   -4.26   -3.22   -1.94   -0.33    1.86    4.94    9.08
+   200.0    0.00   -0.16   -0.57   -1.19   -1.96   -2.79   -3.64   -4.43   -5.06   -5.41   -5.40   -4.99   -4.22   -3.17   -1.87   -0.24    1.96    5.06    9.24
+   205.0    0.00   -0.16   -0.57   -1.20   -1.96   -2.80   -3.65   -4.43   -5.05   -5.40   -5.38   -4.96   -4.17   -3.09   -1.76   -0.10    2.12    5.23    9.44
+   210.0    0.00   -0.16   -0.58   -1.20   -1.97   -2.81   -3.65   -4.42   -5.04   -5.38   -5.36   -4.93   -4.12   -3.00   -1.62    0.08    2.32    5.44    9.67
+   215.0    0.00   -0.16   -0.58   -1.21   -1.98   -2.81   -3.65   -4.42   -5.03   -5.37   -5.34   -4.90   -4.05   -2.89   -1.46    0.27    2.54    5.67    9.89
+   220.0    0.00   -0.16   -0.58   -1.21   -1.98   -2.82   -3.65   -4.42   -5.03   -5.36   -5.33   -4.87   -3.99   -2.78   -1.30    0.48    2.76    5.88   10.09
+   225.0    0.00   -0.16   -0.58   -1.22   -1.99   -2.83   -3.66   -4.42   -5.03   -5.36   -5.32   -4.84   -3.93   -2.68   -1.15    0.66    2.96    6.07   10.24
+   230.0    0.00   -0.16   -0.58   -1.22   -2.00   -2.83   -3.66   -4.43   -5.03   -5.37   -5.32   -4.82   -3.88   -2.59   -1.03    0.81    3.11    6.20   10.33
+   235.0    0.00   -0.16   -0.59   -1.23   -2.00   -2.84   -3.67   -4.44   -5.04   -5.38   -5.32   -4.81   -3.84   -2.52   -0.94    0.91    3.21    6.27   10.35
+   240.0    0.00   -0.16   -0.59   -1.23   -2.00   -2.84   -3.68   -4.44   -5.05   -5.39   -5.33   -4.80   -3.82   -2.48   -0.89    0.95    3.24    6.28   10.30
+   245.0    0.00   -0.16   -0.59   -1.23   -2.00   -2.84   -3.68   -4.45   -5.07   -5.40   -5.33   -4.80   -3.81   -2.48   -0.90    0.94    3.20    6.22   10.19
+   250.0    0.00   -0.16   -0.59   -1.23   -2.00   -2.84   -3.68   -4.46   -5.08   -5.41   -5.34   -4.81   -3.83   -2.51   -0.95    0.86    3.11    6.11   10.03
+   255.0    0.00   -0.16   -0.59   -1.23   -2.00   -2.84   -3.69   -4.47   -5.09   -5.43   -5.36   -4.82   -3.86   -2.57   -1.05    0.73    2.97    5.96    9.85
+   260.0    0.00   -0.16   -0.59   -1.22   -2.00   -2.84   -3.69   -4.48   -5.10   -5.44   -5.37   -4.85   -3.91   -2.65   -1.17    0.57    2.79    5.79    9.66
+   265.0    0.00   -0.16   -0.59   -1.22   -1.99   -2.83   -3.69   -4.48   -5.11   -5.45   -5.39   -4.88   -3.97   -2.75   -1.32    0.39    2.60    5.62    9.49
+   270.0    0.00   -0.16   -0.59   -1.22   -1.99   -2.83   -3.69   -4.48   -5.11   -5.45   -5.40   -4.91   -4.03   -2.86   -1.48    0.21    2.42    5.46    9.35
+   275.0    0.00   -0.16   -0.59   -1.22   -1.99   -2.83   -3.68   -4.48   -5.11   -5.46   -5.41   -4.94   -4.09   -2.97   -1.62    0.04    2.26    5.33    9.25
+   280.0    0.00   -0.16   -0.59   -1.22   -1.98   -2.82   -3.68   -4.47   -5.10   -5.45   -5.42   -4.97   -4.15   -3.06   -1.74   -0.10    2.13    5.23    9.19
+   285.0    0.00   -0.16   -0.59   -1.22   -1.98   -2.82   -3.67   -4.46   -5.09   -5.45   -5.42   -4.99   -4.20   -3.14   -1.84   -0.20    2.04    5.17    9.16
+   290.0    0.00   -0.16   -0.59   -1.22   -1.98   -2.82   -3.66   -4.45   -5.08   -5.44   -5.42   -5.00   -4.23   -3.19   -1.90   -0.26    1.99    5.13    9.16
+   295.0    0.00   -0.16   -0.59   -1.22   -1.98   -2.82   -3.66   -4.44   -5.07   -5.42   -5.41   -5.01   -4.25   -3.21   -1.92   -0.28    1.98    5.12    9.19
+   300.0    0.00   -0.16   -0.59   -1.22   -1.99   -2.82   -3.65   -4.43   -5.05   -5.41   -5.41   -5.01   -4.26   -3.22   -1.92   -0.26    1.99    5.12    9.21
+   305.0    0.00   -0.16   -0.59   -1.23   -1.99   -2.82   -3.65   -4.42   -5.03   -5.39   -5.40   -5.01   -4.26   -3.20   -1.89   -0.22    2.01    5.12    9.23
+   310.0    0.00   -0.16   -0.59   -1.23   -2.00   -2.83   -3.65   -4.41   -5.02   -5.37   -5.39   -5.01   -4.25   -3.18   -1.84   -0.17    2.05    5.11    9.24
+   315.0    0.00   -0.16   -0.59   -1.24   -2.01   -2.83   -3.65   -4.40   -5.00   -5.36   -5.38   -5.01   -4.25   -3.16   -1.79   -0.11    2.08    5.09    9.23
+   320.0    0.00   -0.16   -0.59   -1.24   -2.02   -2.84   -3.65   -4.39   -4.99   -5.35   -5.38   -5.01   -4.25   -3.14   -1.75   -0.06    2.10    5.06    9.19
+   325.0    0.00   -0.15   -0.59   -1.24   -2.02   -2.85   -3.65   -4.39   -4.98   -5.34   -5.38   -5.03   -4.26   -3.14   -1.73   -0.03    2.11    5.02    9.15
+   330.0    0.00   -0.15   -0.59   -1.25   -2.03   -2.86   -3.66   -4.38   -4.97   -5.34   -5.39   -5.05   -4.29   -3.15   -1.72   -0.01    2.10    4.96    9.09
+   335.0    0.00   -0.15   -0.59   -1.25   -2.04   -2.86   -3.66   -4.38   -4.96   -5.34   -5.40   -5.07   -4.32   -3.18   -1.73   -0.02    2.07    4.90    9.04
+   340.0    0.00   -0.15   -0.59   -1.25   -2.04   -2.87   -3.67   -4.38   -4.96   -5.34   -5.42   -5.10   -4.36   -3.22   -1.76   -0.05    2.04    4.85    8.99
+   345.0    0.00   -0.15   -0.59   -1.25   -2.04   -2.87   -3.67   -4.38   -4.96   -5.35   -5.43   -5.13   -4.40   -3.26   -1.81   -0.08    2.00    4.80    8.96
+   350.0    0.00   -0.15   -0.58   -1.25   -2.04   -2.87   -3.67   -4.39   -4.97   -5.35   -5.45   -5.16   -4.44   -3.31   -1.85   -0.13    1.96    4.78    8.96
+   355.0    0.00   -0.15   -0.58   -1.24   -2.04   -2.87   -3.67   -4.39   -4.98   -5.36   -5.46   -5.17   -4.46   -3.34   -1.89   -0.17    1.94    4.78    8.99
+   360.0    0.00   -0.14   -0.58   -1.23   -2.03   -2.87   -3.68   -4.40   -4.98   -5.37   -5.46   -5.17   -4.46   -3.35   -1.92   -0.19    1.94    4.82    9.05
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TRM59800.80     SCIS                                        TYPE / SERIAL NO    
+COPIED              Geo++ GmbH               5    11-AUG-09 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+COPIED FROM TRM59800.00     SCIS                            COMMENT             
+ATTENTION! COPIED WITHOUT VERIFICATION BY CALIBRATION!      COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.16      0.81     86.60                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.34   -1.30   -2.72   -4.41   -6.14   -7.72   -8.99   -9.83  -10.15   -9.89   -9.04   -7.60   -5.58   -2.95    0.44    4.78   10.25   16.80
+     0.0    0.00   -0.29   -1.21   -2.62   -4.30   -6.05   -7.67   -8.98   -9.86  -10.19   -9.90   -8.98   -7.47   -5.43   -2.85    0.43    4.66   10.08   16.61
+     5.0    0.00   -0.30   -1.22   -2.62   -4.30   -6.05   -7.67   -8.99   -9.87  -10.20   -9.90   -8.97   -7.44   -5.40   -2.82    0.43    4.62   10.03   16.62
+    10.0    0.00   -0.30   -1.23   -2.62   -4.30   -6.05   -7.67   -8.99   -9.88  -10.21   -9.91   -8.97   -7.44   -5.39   -2.81    0.42    4.59    9.99   16.63
+    15.0    0.00   -0.31   -1.23   -2.63   -4.30   -6.05   -7.67   -9.00   -9.89  -10.23   -9.93   -8.99   -7.46   -5.40   -2.82    0.42    4.59    9.99   16.65
+    20.0    0.00   -0.31   -1.24   -2.64   -4.31   -6.05   -7.67   -9.00   -9.90  -10.24   -9.96   -9.03   -7.49   -5.43   -2.83    0.42    4.61   10.01   16.68
+    25.0    0.00   -0.32   -1.25   -2.65   -4.32   -6.05   -7.66   -8.99   -9.89  -10.25   -9.98   -9.07   -7.55   -5.47   -2.85    0.44    4.66   10.07   16.73
+    30.0    0.00   -0.32   -1.26   -2.66   -4.32   -6.05   -7.66   -8.98   -9.88  -10.25  -10.00   -9.11   -7.60   -5.52   -2.86    0.48    4.74   10.16   16.79
+    35.0    0.00   -0.33   -1.27   -2.67   -4.34   -6.06   -7.65   -8.96   -9.86  -10.24  -10.01   -9.15   -7.66   -5.57   -2.87    0.53    4.84   10.27   16.87
+    40.0    0.00   -0.34   -1.28   -2.69   -4.35   -6.07   -7.65   -8.94   -9.83  -10.21  -10.01   -9.17   -7.70   -5.60   -2.86    0.60    4.95   10.40   16.96
+    45.0    0.00   -0.34   -1.29   -2.70   -4.37   -6.08   -7.64   -8.92   -9.80  -10.18   -9.99   -9.17   -7.72   -5.61   -2.84    0.67    5.07   10.52   17.08
+    50.0    0.00   -0.35   -1.31   -2.72   -4.39   -6.09   -7.64   -8.91   -9.77  -10.14   -9.96   -9.16   -7.71   -5.60   -2.80    0.74    5.17   10.64   17.20
+    55.0    0.00   -0.36   -1.32   -2.74   -4.41   -6.10   -7.65   -8.89   -9.74  -10.10   -9.92   -9.12   -7.68   -5.56   -2.75    0.81    5.26   10.74   17.33
+    60.0    0.00   -0.36   -1.33   -2.76   -4.43   -6.12   -7.65   -8.88   -9.71  -10.06   -9.87   -9.07   -7.62   -5.51   -2.70    0.87    5.32   10.81   17.46
+    65.0    0.00   -0.37   -1.35   -2.78   -4.46   -6.15   -7.67   -8.88   -9.69  -10.03   -9.82   -9.01   -7.56   -5.44   -2.64    0.92    5.35   10.86   17.58
+    70.0    0.00   -0.38   -1.36   -2.80   -4.48   -6.17   -7.69   -8.89   -9.68  -10.00   -9.77   -8.95   -7.49   -5.38   -2.59    0.95    5.36   10.87   17.68
+    75.0    0.00   -0.38   -1.38   -2.82   -4.51   -6.20   -7.71   -8.90   -9.68   -9.98   -9.74   -8.90   -7.43   -5.32   -2.55    0.95    5.34   10.86   17.75
+    80.0    0.00   -0.39   -1.39   -2.84   -4.53   -6.22   -7.73   -8.92   -9.69   -9.98   -9.72   -8.87   -7.39   -5.29   -2.53    0.94    5.31   10.83   17.78
+    85.0    0.00   -0.39   -1.40   -2.86   -4.55   -6.25   -7.76   -8.94   -9.71   -9.98   -9.72   -8.86   -7.38   -5.28   -2.55    0.91    5.26   10.79   17.76
+    90.0    0.00   -0.40   -1.41   -2.88   -4.57   -6.27   -7.78   -8.96   -9.73  -10.00   -9.73   -8.87   -7.40   -5.31   -2.58    0.85    5.20   10.73   17.70
+    95.0    0.00   -0.40   -1.42   -2.89   -4.59   -6.29   -7.80   -8.99   -9.75  -10.03   -9.76   -8.91   -7.44   -5.36   -2.65    0.78    5.13   10.66   17.59
+   100.0    0.00   -0.41   -1.43   -2.91   -4.61   -6.31   -7.83   -9.01   -9.78  -10.07   -9.81   -8.96   -7.51   -5.44   -2.74    0.70    5.06   10.59   17.45
+   105.0    0.00   -0.41   -1.44   -2.92   -4.63   -6.33   -7.85   -9.04   -9.81  -10.11   -9.86   -9.03   -7.59   -5.54   -2.84    0.61    4.98   10.51   17.28
+   110.0    0.00   -0.41   -1.44   -2.93   -4.64   -6.35   -7.87   -9.07   -9.85  -10.15   -9.91   -9.09   -7.68   -5.64   -2.94    0.51    4.91   10.43   17.10
+   115.0    0.00   -0.42   -1.45   -2.93   -4.65   -6.36   -7.89   -9.09   -9.88  -10.19   -9.96   -9.15   -7.75   -5.73   -3.05    0.41    4.83   10.35   16.92
+   120.0    0.00   -0.42   -1.45   -2.94   -4.65   -6.37   -7.91   -9.12   -9.91  -10.22   -9.99   -9.20   -7.81   -5.81   -3.15    0.32    4.74   10.27   16.77
+   125.0    0.00   -0.42   -1.45   -2.94   -4.66   -6.38   -7.93   -9.14   -9.94  -10.25  -10.02   -9.22   -7.85   -5.87   -3.22    0.22    4.66   10.20   16.64
+   130.0    0.00   -0.42   -1.45   -2.94   -4.66   -6.39   -7.94   -9.17   -9.97  -10.27  -10.03   -9.23   -7.86   -5.89   -3.28    0.15    4.58   10.12   16.56
+   135.0    0.00   -0.42   -1.45   -2.94   -4.66   -6.40   -7.95   -9.19   -9.99  -10.29  -10.03   -9.22   -7.84   -5.89   -3.31    0.08    4.50   10.06   16.53
+   140.0    0.00   -0.42   -1.45   -2.93   -4.66   -6.40   -7.96   -9.20  -10.01  -10.29  -10.02   -9.19   -7.80   -5.87   -3.32    0.03    4.43   10.01   16.53
+   145.0    0.00   -0.41   -1.44   -2.93   -4.65   -6.39   -7.96   -9.21  -10.01  -10.29  -10.01   -9.15   -7.75   -5.83   -3.30    0.01    4.38    9.97   16.56
+   150.0    0.00   -0.41   -1.44   -2.92   -4.64   -6.38   -7.96   -9.21  -10.01  -10.29   -9.98   -9.11   -7.70   -5.78   -3.28    0.00    4.34    9.95   16.61
+   155.0    0.00   -0.41   -1.43   -2.91   -4.62   -6.36   -7.94   -9.20  -10.00  -10.27   -9.96   -9.08   -7.66   -5.73   -3.24    0.01    4.33    9.93   16.66
+   160.0    0.00   -0.40   -1.42   -2.89   -4.60   -6.34   -7.92   -9.17   -9.98  -10.26   -9.95   -9.05   -7.62   -5.69   -3.19    0.04    4.34    9.93   16.70
+   165.0    0.00   -0.40   -1.41   -2.88   -4.58   -6.32   -7.89   -9.14   -9.96  -10.24   -9.93   -9.04   -7.60   -5.65   -3.15    0.09    4.36    9.94   16.72
+   170.0    0.00   -0.40   -1.40   -2.86   -4.56   -6.29   -7.85   -9.10   -9.92  -10.22   -9.93   -9.04   -7.60   -5.64   -3.11    0.14    4.41    9.95   16.71
+   175.0    0.00   -0.39   -1.39   -2.85   -4.54   -6.26   -7.82   -9.06   -9.89  -10.19   -9.92   -9.05   -7.61   -5.63   -3.08    0.20    4.46    9.96   16.67
+   180.0    0.00   -0.38   -1.38   -2.83   -4.52   -6.23   -7.78   -9.02   -9.85  -10.17   -9.92   -9.07   -7.63   -5.63   -3.05    0.25    4.51    9.97   16.62
+   185.0    0.00   -0.38   -1.37   -2.81   -4.50   -6.20   -7.75   -8.99   -9.82  -10.15   -9.92   -9.08   -7.65   -5.64   -3.02    0.30    4.56    9.97   16.56
+   190.0    0.00   -0.37   -1.36   -2.80   -4.48   -6.18   -7.72   -8.96   -9.79  -10.13   -9.91   -9.09   -7.67   -5.64   -3.01    0.35    4.61    9.99   16.51
+   195.0    0.00   -0.37   -1.35   -2.78   -4.46   -6.16   -7.70   -8.93   -9.77  -10.11   -9.90   -9.09   -7.67   -5.64   -2.99    0.38    4.64   10.00   16.50
+   200.0    0.00   -0.36   -1.33   -2.77   -4.45   -6.15   -7.69   -8.92   -9.75  -10.09   -9.88   -9.07   -7.66   -5.63   -2.97    0.41    4.68   10.03   16.53
+   205.0    0.00   -0.35   -1.32   -2.75   -4.43   -6.14   -7.68   -8.92   -9.74  -10.08   -9.86   -9.05   -7.63   -5.60   -2.95    0.43    4.71   10.09   16.61
+   210.0    0.00   -0.35   -1.31   -2.74   -4.42   -6.13   -7.68   -8.92   -9.74  -10.06   -9.83   -9.01   -7.59   -5.57   -2.92    0.45    4.75   10.16   16.75
+   215.0    0.00   -0.34   -1.30   -2.72   -4.41   -6.13   -7.68   -8.93   -9.74  -10.05   -9.80   -8.96   -7.54   -5.53   -2.90    0.48    4.79   10.26   16.94
+   220.0    0.00   -0.33   -1.29   -2.71   -4.39   -6.12   -7.69   -8.93   -9.75  -10.04   -9.77   -8.92   -7.49   -5.49   -2.86    0.51    4.86   10.39   17.16
+   225.0    0.00   -0.33   -1.27   -2.69   -4.38   -6.11   -7.68   -8.94   -9.74  -10.03   -9.74   -8.87   -7.44   -5.45   -2.83    0.55    4.93   10.54   17.40
+   230.0    0.00   -0.32   -1.26   -2.68   -4.36   -6.10   -7.67   -8.93   -9.74  -10.02   -9.72   -8.84   -7.41   -5.41   -2.80    0.60    5.03   10.69   17.62
+   235.0    0.00   -0.31   -1.25   -2.66   -4.34   -6.08   -7.66   -8.92   -9.73  -10.01   -9.70   -8.83   -7.39   -5.39   -2.77    0.66    5.12   10.84   17.80
+   240.0    0.00   -0.31   -1.24   -2.64   -4.32   -6.06   -7.64   -8.90   -9.72  -10.00   -9.70   -8.82   -7.39   -5.38   -2.74    0.71    5.22   10.97   17.92
+   245.0    0.00   -0.30   -1.23   -2.63   -4.30   -6.03   -7.61   -8.88   -9.70   -9.99   -9.70   -8.83   -7.40   -5.39   -2.73    0.76    5.30   11.06   17.96
+   250.0    0.00   -0.30   -1.22   -2.61   -4.28   -6.01   -7.59   -8.86   -9.69   -9.99   -9.72   -8.86   -7.42   -5.40   -2.72    0.80    5.36   11.11   17.92
+   255.0    0.00   -0.29   -1.21   -2.60   -4.26   -5.98   -7.56   -8.84   -9.68   -9.99   -9.74   -8.89   -7.46   -5.43   -2.72    0.81    5.38   11.09   17.79
+   260.0    0.00   -0.29   -1.20   -2.59   -4.25   -5.97   -7.54   -8.82   -9.67  -10.00   -9.76   -8.92   -7.49   -5.45   -2.74    0.80    5.35   11.00   17.58
+   265.0    0.00   -0.28   -1.19   -2.58   -4.24   -5.95   -7.54   -8.82   -9.68  -10.02   -9.79   -8.96   -7.53   -5.48   -2.76    0.77    5.28   10.86   17.32
+   270.0    0.00   -0.28   -1.19   -2.57   -4.23   -5.95   -7.54   -8.83   -9.70  -10.05   -9.82   -8.99   -7.56   -5.51   -2.80    0.70    5.16   10.67   17.02
+   275.0    0.00   -0.28   -1.18   -2.57   -4.23   -5.96   -7.55   -8.85   -9.73  -10.08   -9.86   -9.02   -7.58   -5.54   -2.85    0.61    5.01   10.45   16.72
+   280.0    0.00   -0.28   -1.18   -2.57   -4.24   -5.97   -7.57   -8.88   -9.77  -10.12   -9.89   -9.05   -7.60   -5.57   -2.91    0.50    4.84   10.21   16.44
+   285.0    0.00   -0.27   -1.18   -2.57   -4.25   -5.99   -7.60   -8.92   -9.81  -10.16   -9.92   -9.07   -7.62   -5.60   -2.97    0.39    4.67    9.99   16.19
+   290.0    0.00   -0.27   -1.18   -2.58   -4.26   -6.02   -7.64   -8.97   -9.86  -10.21   -9.95   -9.09   -7.63   -5.63   -3.03    0.27    4.50    9.80   16.01
+   295.0    0.00   -0.27   -1.18   -2.59   -4.28   -6.04   -7.68   -9.01   -9.90  -10.24   -9.98   -9.10   -7.65   -5.66   -3.10    0.17    4.37    9.66   15.89
+   300.0    0.00   -0.27   -1.18   -2.59   -4.29   -6.07   -7.71   -9.05   -9.94  -10.28  -10.00   -9.12   -7.67   -5.69   -3.15    0.10    4.28    9.57   15.83
+   305.0    0.00   -0.27   -1.18   -2.60   -4.31   -6.09   -7.74   -9.08   -9.97  -10.30  -10.02   -9.14   -7.70   -5.73   -3.20    0.05    4.24    9.55   15.84
+   310.0    0.00   -0.27   -1.19   -2.61   -4.32   -6.11   -7.76   -9.10   -9.98  -10.31  -10.04   -9.16   -7.73   -5.76   -3.23    0.03    4.24    9.59   15.90
+   315.0    0.00   -0.27   -1.19   -2.61   -4.33   -6.12   -7.77   -9.10   -9.98  -10.31  -10.04   -9.18   -7.75   -5.79   -3.24    0.04    4.29    9.67   15.99
+   320.0    0.00   -0.27   -1.19   -2.61   -4.33   -6.12   -7.77   -9.10   -9.97  -10.30  -10.04   -9.18   -7.76   -5.80   -3.24    0.07    4.36    9.78   16.10
+   325.0    0.00   -0.27   -1.19   -2.62   -4.34   -6.12   -7.76   -9.08   -9.95  -10.28  -10.03   -9.18   -7.77   -5.80   -3.22    0.13    4.46    9.90   16.22
+   330.0    0.00   -0.28   -1.20   -2.62   -4.33   -6.11   -7.74   -9.06   -9.93  -10.26  -10.01   -9.17   -7.76   -5.78   -3.18    0.20    4.55   10.01   16.33
+   335.0    0.00   -0.28   -1.20   -2.62   -4.33   -6.10   -7.73   -9.03   -9.90  -10.24   -9.99   -9.15   -7.73   -5.74   -3.12    0.26    4.63   10.10   16.42
+   340.0    0.00   -0.28   -1.20   -2.62   -4.32   -6.09   -7.71   -9.01   -9.88  -10.21   -9.96   -9.12   -7.69   -5.69   -3.06    0.32    4.69   10.15   16.49
+   345.0    0.00   -0.28   -1.20   -2.62   -4.32   -6.08   -7.69   -9.00   -9.86  -10.20   -9.94   -9.08   -7.63   -5.62   -3.00    0.37    4.72   10.17   16.55
+   350.0    0.00   -0.29   -1.21   -2.62   -4.31   -6.07   -7.68   -8.99   -9.85  -10.18   -9.92   -9.04   -7.57   -5.55   -2.94    0.41    4.72   10.16   16.58
+   355.0    0.00   -0.29   -1.21   -2.62   -4.31   -6.06   -7.67   -8.98   -9.85  -10.18   -9.90   -9.00   -7.52   -5.49   -2.89    0.43    4.69   10.12   16.60
+   360.0    0.00   -0.29   -1.21   -2.62   -4.30   -6.05   -7.67   -8.98   -9.86  -10.19   -9.90   -8.98   -7.47   -5.43   -2.85    0.43    4.66   10.08   16.61
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.13      0.00    119.69                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.16   -0.60   -1.28   -2.12   -3.04   -3.99   -4.87   -5.60   -6.02   -6.02   -5.52   -4.54   -3.16   -1.51    0.42    2.75    5.78    9.74
+     0.0    0.00   -0.16   -0.62   -1.30   -2.14   -3.05   -3.96   -4.82   -5.52   -5.95   -6.00   -5.59   -4.71   -3.43   -1.87   -0.07    2.08    4.81    8.40
+     5.0    0.00   -0.16   -0.61   -1.30   -2.14   -3.06   -3.99   -4.85   -5.55   -5.97   -5.99   -5.56   -4.67   -3.42   -1.88   -0.08    2.09    4.88    8.52
+    10.0    0.00   -0.16   -0.61   -1.29   -2.14   -3.08   -4.02   -4.89   -5.58   -5.98   -5.98   -5.52   -4.63   -3.38   -1.85   -0.05    2.16    5.03    8.77
+    15.0    0.00   -0.15   -0.60   -1.29   -2.15   -3.09   -4.04   -4.91   -5.60   -5.98   -5.96   -5.48   -4.57   -3.32   -1.80    0.02    2.28    5.25    9.11
+    20.0    0.00   -0.15   -0.60   -1.29   -2.15   -3.10   -4.06   -4.93   -5.61   -5.98   -5.94   -5.44   -4.52   -3.26   -1.72    0.12    2.46    5.53    9.53
+    25.0    0.00   -0.15   -0.59   -1.29   -2.15   -3.10   -4.07   -4.94   -5.61   -5.97   -5.91   -5.40   -4.47   -3.19   -1.63    0.26    2.66    5.85    9.98
+    30.0    0.00   -0.15   -0.59   -1.28   -2.15   -3.10   -4.06   -4.94   -5.61   -5.96   -5.90   -5.37   -4.42   -3.12   -1.53    0.41    2.88    6.17   10.43
+    35.0    0.00   -0.14   -0.59   -1.28   -2.15   -3.10   -4.06   -4.92   -5.59   -5.94   -5.88   -5.35   -4.39   -3.06   -1.43    0.56    3.09    6.46   10.84
+    40.0    0.00   -0.14   -0.58   -1.28   -2.14   -3.09   -4.04   -4.91   -5.57   -5.93   -5.87   -5.35   -4.37   -3.01   -1.33    0.70    3.28    6.71   11.18
+    45.0    0.00   -0.14   -0.58   -1.27   -2.14   -3.08   -4.03   -4.89   -5.56   -5.92   -5.88   -5.36   -4.37   -2.98   -1.26    0.82    3.44    6.90   11.43
+    50.0    0.00   -0.14   -0.58   -1.27   -2.13   -3.08   -4.01   -4.87   -5.54   -5.92   -5.89   -5.37   -4.38   -2.96   -1.21    0.90    3.54    7.01   11.58
+    55.0    0.00   -0.13   -0.57   -1.27   -2.13   -3.07   -4.00   -4.85   -5.53   -5.92   -5.90   -5.40   -4.40   -2.96   -1.18    0.95    3.58    7.04   11.62
+    60.0    0.00   -0.13   -0.57   -1.27   -2.13   -3.06   -3.99   -4.84   -5.52   -5.92   -5.92   -5.43   -4.43   -2.98   -1.18    0.95    3.57    6.99   11.56
+    65.0    0.00   -0.13   -0.57   -1.26   -2.13   -3.06   -3.99   -4.83   -5.52   -5.93   -5.94   -5.47   -4.47   -3.01   -1.21    0.92    3.50    6.88   11.42
+    70.0    0.00   -0.13   -0.57   -1.26   -2.13   -3.06   -3.98   -4.83   -5.52   -5.94   -5.97   -5.50   -4.51   -3.06   -1.26    0.85    3.40    6.72   11.20
+    75.0    0.00   -0.13   -0.57   -1.26   -2.13   -3.06   -3.98   -4.83   -5.52   -5.94   -5.98   -5.53   -4.55   -3.11   -1.32    0.76    3.27    6.53   10.94
+    80.0    0.00   -0.13   -0.56   -1.26   -2.13   -3.06   -3.98   -4.83   -5.52   -5.95   -6.00   -5.55   -4.59   -3.17   -1.40    0.66    3.13    6.33   10.65
+    85.0    0.00   -0.13   -0.56   -1.26   -2.12   -3.06   -3.99   -4.83   -5.52   -5.95   -6.00   -5.57   -4.63   -3.22   -1.47    0.56    3.00    6.13   10.35
+    90.0    0.00   -0.12   -0.56   -1.26   -2.12   -3.06   -3.99   -4.83   -5.52   -5.95   -6.00   -5.58   -4.65   -3.27   -1.55    0.47    2.87    5.95   10.06
+    95.0    0.00   -0.12   -0.56   -1.25   -2.12   -3.06   -3.98   -4.83   -5.51   -5.94   -6.00   -5.59   -4.68   -3.32   -1.61    0.39    2.78    5.80    9.79
+   100.0    0.00   -0.12   -0.56   -1.25   -2.12   -3.05   -3.98   -4.82   -5.51   -5.94   -6.00   -5.59   -4.69   -3.34   -1.65    0.34    2.71    5.69    9.57
+   105.0    0.00   -0.12   -0.56   -1.25   -2.11   -3.05   -3.98   -4.82   -5.51   -5.93   -5.99   -5.59   -4.69   -3.36   -1.68    0.31    2.67    5.62    9.39
+   110.0    0.00   -0.12   -0.56   -1.24   -2.10   -3.04   -3.97   -4.82   -5.51   -5.94   -5.99   -5.58   -4.69   -3.36   -1.68    0.30    2.66    5.58    9.27
+   115.0    0.00   -0.12   -0.55   -1.24   -2.10   -3.03   -3.97   -4.83   -5.52   -5.95   -6.00   -5.58   -4.68   -3.34   -1.66    0.31    2.67    5.58    9.21
+   120.0    0.00   -0.12   -0.55   -1.23   -2.09   -3.02   -3.97   -4.83   -5.54   -5.97   -6.01   -5.58   -4.66   -3.32   -1.63    0.34    2.69    5.60    9.20
+   125.0    0.00   -0.13   -0.55   -1.23   -2.08   -3.02   -3.97   -4.85   -5.56   -6.00   -6.03   -5.58   -4.64   -3.28   -1.59    0.38    2.72    5.63    9.25
+   130.0    0.00   -0.13   -0.55   -1.23   -2.07   -3.01   -3.97   -4.87   -5.59   -6.03   -6.05   -5.58   -4.62   -3.24   -1.55    0.41    2.75    5.66    9.32
+   135.0    0.00   -0.13   -0.55   -1.23   -2.07   -3.01   -3.98   -4.89   -5.63   -6.07   -6.08   -5.59   -4.60   -3.20   -1.51    0.44    2.76    5.69    9.41
+   140.0    0.00   -0.13   -0.56   -1.23   -2.07   -3.01   -3.98   -4.91   -5.66   -6.11   -6.12   -5.60   -4.59   -3.18   -1.49    0.45    2.76    5.70    9.50
+   145.0    0.00   -0.13   -0.56   -1.23   -2.07   -3.01   -3.99   -4.93   -5.69   -6.15   -6.15   -5.62   -4.59   -3.16   -1.48    0.44    2.74    5.69    9.56
+   150.0    0.00   -0.13   -0.56   -1.23   -2.07   -3.01   -4.00   -4.94   -5.72   -6.18   -6.17   -5.64   -4.60   -3.17   -1.49    0.41    2.69    5.65    9.58
+   155.0    0.00   -0.14   -0.57   -1.23   -2.07   -3.01   -4.00   -4.95   -5.73   -6.19   -6.19   -5.66   -4.62   -3.19   -1.52    0.36    2.62    5.58    9.55
+   160.0    0.00   -0.14   -0.57   -1.24   -2.08   -3.02   -4.00   -4.95   -5.73   -6.20   -6.20   -5.68   -4.65   -3.23   -1.58    0.29    2.54    5.49    9.48
+   165.0    0.00   -0.14   -0.58   -1.24   -2.08   -3.02   -4.00   -4.94   -5.72   -6.19   -6.21   -5.69   -4.68   -3.29   -1.64    0.21    2.44    5.38    9.36
+   170.0    0.00   -0.15   -0.58   -1.25   -2.09   -3.03   -4.00   -4.93   -5.70   -6.17   -6.20   -5.71   -4.72   -3.34   -1.71    0.14    2.36    5.27    9.22
+   175.0    0.00   -0.15   -0.59   -1.26   -2.10   -3.03   -3.99   -4.91   -5.68   -6.15   -6.18   -5.71   -4.75   -3.40   -1.78    0.07    2.28    5.17    9.08
+   180.0    0.00   -0.15   -0.59   -1.27   -2.10   -3.03   -3.99   -4.90   -5.65   -6.12   -6.16   -5.71   -4.77   -3.44   -1.83    0.02    2.24    5.11    8.98
+   185.0    0.00   -0.15   -0.60   -1.28   -2.11   -3.04   -3.99   -4.88   -5.63   -6.09   -6.14   -5.70   -4.78   -3.46   -1.85    0.01    2.23    5.09    8.93
+   190.0    0.00   -0.16   -0.60   -1.28   -2.12   -3.04   -3.98   -4.87   -5.61   -6.06   -6.11   -5.68   -4.76   -3.45   -1.84    0.03    2.26    5.13    8.96
+   195.0    0.00   -0.16   -0.61   -1.29   -2.12   -3.05   -3.99   -4.87   -5.59   -6.04   -6.09   -5.65   -4.73   -3.41   -1.79    0.09    2.34    5.23    9.09
+   200.0    0.00   -0.16   -0.61   -1.29   -2.13   -3.05   -3.99   -4.87   -5.59   -6.03   -6.07   -5.61   -4.68   -3.34   -1.70    0.19    2.46    5.39    9.31
+   205.0    0.00   -0.17   -0.62   -1.30   -2.13   -3.05   -3.99   -4.87   -5.60   -6.03   -6.05   -5.57   -4.60   -3.24   -1.59    0.33    2.63    5.62    9.62
+   210.0    0.00   -0.17   -0.62   -1.30   -2.13   -3.05   -3.99   -4.88   -5.61   -6.04   -6.04   -5.53   -4.52   -3.12   -1.45    0.48    2.82    5.88    9.99
+   215.0    0.00   -0.17   -0.62   -1.29   -2.12   -3.04   -3.99   -4.89   -5.63   -6.05   -6.03   -5.48   -4.43   -3.00   -1.30    0.65    3.02    6.15   10.38
+   220.0    0.00   -0.17   -0.62   -1.29   -2.11   -3.03   -3.99   -4.90   -5.64   -6.07   -6.02   -5.44   -4.35   -2.88   -1.15    0.82    3.22    6.42   10.74
+   225.0    0.00   -0.17   -0.62   -1.29   -2.10   -3.02   -3.98   -4.90   -5.65   -6.08   -6.02   -5.41   -4.28   -2.78   -1.03    0.96    3.40    6.65   11.04
+   230.0    0.00   -0.18   -0.62   -1.28   -2.09   -3.00   -3.96   -4.89   -5.66   -6.09   -6.02   -5.39   -4.23   -2.70   -0.94    1.06    3.53    6.82   11.23
+   235.0    0.00   -0.18   -0.62   -1.28   -2.08   -2.98   -3.94   -4.88   -5.66   -6.09   -6.02   -5.37   -4.20   -2.66   -0.89    1.12    3.60    6.91   11.29
+   240.0    0.00   -0.18   -0.62   -1.27   -2.06   -2.96   -3.92   -4.87   -5.65   -6.09   -6.02   -5.37   -4.19   -2.65   -0.88    1.13    3.60    6.90   11.20
+   245.0    0.00   -0.18   -0.62   -1.27   -2.05   -2.94   -3.90   -4.85   -5.64   -6.09   -6.03   -5.38   -4.21   -2.68   -0.92    1.08    3.54    6.80   10.98
+   250.0    0.00   -0.18   -0.62   -1.26   -2.04   -2.93   -3.88   -4.83   -5.63   -6.08   -6.03   -5.39   -4.24   -2.74   -1.00    0.97    3.42    6.62   10.63
+   255.0    0.00   -0.18   -0.62   -1.26   -2.04   -2.92   -3.87   -4.82   -5.61   -6.07   -6.03   -5.41   -4.29   -2.82   -1.12    0.83    3.24    6.37   10.21
+   260.0    0.00   -0.18   -0.63   -1.26   -2.04   -2.92   -3.87   -4.81   -5.60   -6.06   -6.03   -5.43   -4.34   -2.91   -1.25    0.66    3.02    6.08    9.77
+   265.0    0.00   -0.18   -0.63   -1.27   -2.04   -2.93   -3.88   -4.82   -5.60   -6.06   -6.02   -5.45   -4.39   -2.99   -1.38    0.48    2.80    5.78    9.35
+   270.0    0.00   -0.18   -0.63   -1.27   -2.05   -2.94   -3.89   -4.83   -5.61   -6.06   -6.02   -5.46   -4.43   -3.07   -1.51    0.31    2.58    5.51    9.01
+   275.0    0.00   -0.19   -0.63   -1.28   -2.07   -2.96   -3.92   -4.85   -5.62   -6.06   -6.02   -5.46   -4.45   -3.13   -1.61    0.16    2.39    5.29    8.77
+   280.0    0.00   -0.19   -0.64   -1.29   -2.09   -2.99   -3.95   -4.87   -5.63   -6.06   -6.01   -5.46   -4.46   -3.17   -1.69    0.04    2.24    5.14    8.67
+   285.0    0.00   -0.19   -0.64   -1.30   -2.10   -3.01   -3.98   -4.90   -5.65   -6.06   -6.01   -5.45   -4.46   -3.19   -1.73   -0.02    2.15    5.06    8.69
+   290.0    0.00   -0.19   -0.64   -1.31   -2.12   -3.04   -4.00   -4.92   -5.66   -6.06   -6.00   -5.44   -4.45   -3.18   -1.73   -0.05    2.12    5.06    8.84
+   295.0    0.00   -0.19   -0.64   -1.32   -2.14   -3.06   -4.02   -4.94   -5.67   -6.06   -5.99   -5.43   -4.44   -3.17   -1.71   -0.02    2.15    5.13    9.06
+   300.0    0.00   -0.19   -0.65   -1.32   -2.15   -3.07   -4.03   -4.94   -5.66   -6.05   -5.98   -5.42   -4.42   -3.14   -1.67    0.03    2.21    5.24    9.33
+   305.0    0.00   -0.19   -0.65   -1.33   -2.16   -3.08   -4.03   -4.93   -5.65   -6.03   -5.97   -5.41   -4.42   -3.12   -1.62    0.11    2.30    5.36    9.59
+   310.0    0.00   -0.18   -0.65   -1.33   -2.16   -3.08   -4.02   -4.91   -5.62   -6.01   -5.97   -5.42   -4.42   -3.10   -1.57    0.19    2.40    5.48    9.80
+   315.0    0.00   -0.18   -0.65   -1.33   -2.16   -3.08   -4.01   -4.88   -5.59   -5.99   -5.96   -5.43   -4.44   -3.10   -1.53    0.26    2.49    5.56    9.91
+   320.0    0.00   -0.18   -0.65   -1.33   -2.16   -3.06   -3.98   -4.84   -5.55   -5.96   -5.96   -5.46   -4.47   -3.12   -1.51    0.32    2.55    5.59    9.92
+   325.0    0.00   -0.18   -0.65   -1.33   -2.15   -3.05   -3.96   -4.81   -5.51   -5.94   -5.96   -5.49   -4.52   -3.15   -1.52    0.34    2.57    5.57    9.82
+   330.0    0.00   -0.18   -0.64   -1.33   -2.15   -3.04   -3.93   -4.78   -5.48   -5.92   -5.97   -5.52   -4.57   -3.20   -1.55    0.33    2.55    5.48    9.61
+   335.0    0.00   -0.18   -0.64   -1.32   -2.14   -3.02   -3.91   -4.75   -5.46   -5.91   -5.98   -5.55   -4.62   -3.26   -1.60    0.29    2.49    5.35    9.34
+   340.0    0.00   -0.17   -0.63   -1.32   -2.14   -3.02   -3.91   -4.74   -5.45   -5.91   -5.99   -5.58   -4.67   -3.31   -1.66    0.22    2.40    5.19    9.04
+   345.0    0.00   -0.17   -0.63   -1.31   -2.13   -3.02   -3.91   -4.74   -5.45   -5.91   -6.00   -5.60   -4.70   -3.37   -1.73    0.14    2.30    5.03    8.76
+   350.0    0.00   -0.17   -0.63   -1.31   -2.13   -3.02   -3.92   -4.76   -5.46   -5.92   -6.00   -5.61   -4.72   -3.41   -1.79    0.05    2.19    4.90    8.54
+   355.0    0.00   -0.17   -0.62   -1.30   -2.13   -3.03   -3.94   -4.78   -5.49   -5.94   -6.01   -5.61   -4.72   -3.43   -1.84   -0.02    2.12    4.82    8.41
+   360.0    0.00   -0.16   -0.62   -1.30   -2.14   -3.05   -3.96   -4.82   -5.52   -5.95   -6.00   -5.59   -4.71   -3.43   -1.87   -0.07    2.08    4.81    8.40
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TRM59800.80     SCIT                                        TYPE / SERIAL NO    
+COPIED              Geo++ GmbH               5    02-OCT-09 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+COPIED FROM TRM59800.00     SCIT                            COMMENT             
+ATTENTION! COPIED WITHOUT VERIFICATION BY CALIBRATION!      COMMENT             
+   G01                                                      START OF FREQUENCY  
+      1.32      0.88     84.85                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.40   -1.51   -3.05   -4.69   -6.17   -7.38   -8.27   -8.85   -9.07   -8.82   -7.97   -6.45   -4.33   -1.74    1.26    4.82    9.34   15.24
+     0.0    0.00   -0.36   -1.43   -2.94   -4.55   -6.00   -7.17   -8.04   -8.62   -8.86   -8.62   -7.77   -6.24   -4.13   -1.63    1.14    4.35    8.52   14.41
+     5.0    0.00   -0.37   -1.45   -2.96   -4.58   -6.04   -7.20   -8.07   -8.64   -8.88   -8.64   -7.79   -6.27   -4.16   -1.66    1.13    4.36    8.54   14.41
+    10.0    0.00   -0.38   -1.46   -2.99   -4.61   -6.08   -7.24   -8.10   -8.67   -8.90   -8.67   -7.83   -6.31   -4.21   -1.69    1.12    4.37    8.56   14.41
+    15.0    0.00   -0.38   -1.48   -3.01   -4.65   -6.12   -7.29   -8.14   -8.70   -8.92   -8.69   -7.86   -6.36   -4.26   -1.72    1.11    4.38    8.58   14.42
+    20.0    0.00   -0.39   -1.50   -3.04   -4.69   -6.16   -7.33   -8.18   -8.73   -8.95   -8.73   -7.90   -6.41   -4.30   -1.75    1.11    4.41    8.62   14.43
+    25.0    0.00   -0.40   -1.51   -3.07   -4.73   -6.21   -7.38   -8.23   -8.77   -8.99   -8.76   -7.94   -6.44   -4.33   -1.77    1.12    4.44    8.66   14.46
+    30.0    0.00   -0.40   -1.53   -3.09   -4.76   -6.25   -7.43   -8.27   -8.81   -9.02   -8.79   -7.97   -6.47   -4.35   -1.77    1.15    4.49    8.72   14.49
+    35.0    0.00   -0.41   -1.54   -3.12   -4.80   -6.30   -7.48   -8.32   -8.86   -9.06   -8.83   -8.00   -6.49   -4.35   -1.75    1.19    4.56    8.80   14.55
+    40.0    0.00   -0.42   -1.56   -3.14   -4.83   -6.34   -7.53   -8.37   -8.91   -9.10   -8.86   -8.01   -6.49   -4.34   -1.71    1.26    4.65    8.89   14.63
+    45.0    0.00   -0.42   -1.57   -3.16   -4.86   -6.38   -7.57   -8.42   -8.95   -9.14   -8.88   -8.03   -6.48   -4.31   -1.65    1.34    4.75    9.01   14.74
+    50.0    0.00   -0.43   -1.58   -3.18   -4.88   -6.41   -7.61   -8.46   -8.99   -9.17   -8.90   -8.03   -6.47   -4.27   -1.59    1.42    4.86    9.14   14.88
+    55.0    0.00   -0.43   -1.59   -3.19   -4.90   -6.43   -7.64   -8.50   -9.02   -9.20   -8.92   -8.03   -6.45   -4.22   -1.52    1.52    4.98    9.28   15.04
+    60.0    0.00   -0.44   -1.60   -3.20   -4.91   -6.45   -7.66   -8.52   -9.05   -9.22   -8.93   -8.03   -6.43   -4.18   -1.46    1.61    5.10    9.44   15.21
+    65.0    0.00   -0.44   -1.60   -3.21   -4.92   -6.46   -7.67   -8.53   -9.06   -9.24   -8.94   -8.02   -6.41   -4.15   -1.40    1.69    5.21    9.59   15.38
+    70.0    0.00   -0.45   -1.61   -3.21   -4.92   -6.45   -7.67   -8.53   -9.06   -9.24   -8.94   -8.02   -6.40   -4.12   -1.37    1.75    5.31    9.73   15.54
+    75.0    0.00   -0.45   -1.61   -3.21   -4.92   -6.45   -7.65   -8.52   -9.06   -9.24   -8.94   -8.02   -6.40   -4.12   -1.35    1.79    5.39    9.85   15.68
+    80.0    0.00   -0.45   -1.61   -3.21   -4.91   -6.43   -7.63   -8.50   -9.04   -9.23   -8.94   -8.03   -6.41   -4.13   -1.36    1.81    5.45    9.95   15.79
+    85.0    0.00   -0.46   -1.62   -3.21   -4.90   -6.41   -7.61   -8.47   -9.02   -9.21   -8.94   -8.04   -6.43   -4.16   -1.38    1.80    5.48   10.03   15.87
+    90.0    0.00   -0.46   -1.62   -3.20   -4.88   -6.39   -7.58   -8.45   -9.00   -9.20   -8.94   -8.05   -6.46   -4.21   -1.43    1.77    5.49   10.08   15.92
+    95.0    0.00   -0.46   -1.62   -3.20   -4.87   -6.37   -7.55   -8.42   -8.98   -9.19   -8.94   -8.07   -6.50   -4.26   -1.49    1.72    5.48   10.10   15.94
+   100.0    0.00   -0.46   -1.62   -3.19   -4.86   -6.35   -7.53   -8.40   -8.96   -9.18   -8.95   -8.10   -6.55   -4.33   -1.56    1.66    5.45   10.11   15.94
+   105.0    0.00   -0.46   -1.62   -3.19   -4.85   -6.33   -7.51   -8.38   -8.95   -9.18   -8.96   -8.12   -6.59   -4.39   -1.63    1.59    5.41   10.10   15.94
+   110.0    0.00   -0.46   -1.62   -3.18   -4.84   -6.32   -7.50   -8.38   -8.95   -9.19   -8.97   -8.15   -6.63   -4.44   -1.70    1.53    5.37   10.09   15.93
+   115.0    0.00   -0.47   -1.62   -3.18   -4.83   -6.31   -7.50   -8.38   -8.96   -9.21   -9.00   -8.18   -6.67   -4.49   -1.76    1.48    5.33   10.08   15.94
+   120.0    0.00   -0.47   -1.62   -3.18   -4.83   -6.31   -7.50   -8.39   -8.98   -9.23   -9.02   -8.20   -6.70   -4.53   -1.80    1.44    5.31   10.08   15.97
+   125.0    0.00   -0.47   -1.62   -3.18   -4.83   -6.32   -7.51   -8.40   -9.00   -9.25   -9.04   -8.22   -6.72   -4.55   -1.82    1.42    5.30   10.10   16.01
+   130.0    0.00   -0.47   -1.62   -3.18   -4.83   -6.32   -7.52   -8.42   -9.01   -9.27   -9.06   -8.23   -6.73   -4.56   -1.83    1.41    5.30   10.13   16.06
+   135.0    0.00   -0.47   -1.62   -3.18   -4.83   -6.33   -7.53   -8.43   -9.03   -9.28   -9.07   -8.24   -6.73   -4.56   -1.83    1.42    5.32   10.16   16.13
+   140.0    0.00   -0.47   -1.62   -3.18   -4.84   -6.33   -7.54   -8.44   -9.04   -9.29   -9.07   -8.24   -6.73   -4.55   -1.82    1.44    5.35   10.20   16.18
+   145.0    0.00   -0.46   -1.62   -3.18   -4.84   -6.33   -7.54   -8.44   -9.04   -9.29   -9.07   -8.24   -6.72   -4.54   -1.80    1.46    5.38   10.23   16.21
+   150.0    0.00   -0.46   -1.62   -3.18   -4.84   -6.33   -7.53   -8.43   -9.02   -9.27   -9.05   -8.23   -6.71   -4.54   -1.79    1.48    5.39   10.24   16.21
+   155.0    0.00   -0.46   -1.61   -3.18   -4.84   -6.33   -7.52   -8.41   -9.00   -9.25   -9.03   -8.21   -6.70   -4.53   -1.78    1.49    5.40   10.22   16.16
+   160.0    0.00   -0.46   -1.61   -3.18   -4.83   -6.32   -7.51   -8.38   -8.97   -9.21   -9.00   -8.19   -6.70   -4.53   -1.79    1.48    5.39   10.18   16.07
+   165.0    0.00   -0.46   -1.61   -3.17   -4.83   -6.30   -7.48   -8.35   -8.93   -9.17   -8.97   -8.17   -6.69   -4.54   -1.80    1.46    5.35   10.10   15.94
+   170.0    0.00   -0.46   -1.61   -3.17   -4.82   -6.29   -7.46   -8.32   -8.88   -9.12   -8.93   -8.15   -6.69   -4.55   -1.83    1.42    5.28    9.99   15.77
+   175.0    0.00   -0.45   -1.60   -3.16   -4.81   -6.27   -7.43   -8.28   -8.84   -9.08   -8.89   -8.13   -6.68   -4.56   -1.86    1.37    5.20    9.86   15.58
+   180.0    0.00   -0.45   -1.60   -3.16   -4.80   -6.26   -7.41   -8.25   -8.81   -9.05   -8.86   -8.10   -6.68   -4.58   -1.90    1.30    5.10    9.72   15.39
+   185.0    0.00   -0.45   -1.59   -3.15   -4.79   -6.25   -7.40   -8.23   -8.78   -9.02   -8.83   -8.08   -6.67   -4.59   -1.94    1.23    4.99    9.58   15.22
+   190.0    0.00   -0.44   -1.58   -3.14   -4.78   -6.24   -7.39   -8.22   -8.77   -9.00   -8.81   -8.06   -6.65   -4.60   -1.98    1.15    4.88    9.45   15.09
+   195.0    0.00   -0.44   -1.58   -3.13   -4.77   -6.23   -7.38   -8.22   -8.77   -8.99   -8.79   -8.03   -6.63   -4.59   -2.01    1.09    4.78    9.34   15.00
+   200.0    0.00   -0.43   -1.57   -3.12   -4.76   -6.22   -7.39   -8.23   -8.78   -8.99   -8.78   -8.00   -6.60   -4.57   -2.02    1.04    4.71    9.27   14.97
+   205.0    0.00   -0.43   -1.56   -3.11   -4.75   -6.22   -7.39   -8.25   -8.80   -9.00   -8.77   -7.98   -6.56   -4.54   -2.01    1.01    4.65    9.23   15.00
+   210.0    0.00   -0.42   -1.55   -3.10   -4.74   -6.22   -7.41   -8.27   -8.82   -9.02   -8.76   -7.94   -6.50   -4.49   -1.98    1.00    4.63    9.23   15.08
+   215.0    0.00   -0.41   -1.54   -3.08   -4.73   -6.22   -7.42   -8.30   -8.85   -9.04   -8.76   -7.91   -6.45   -4.43   -1.94    1.02    4.64    9.27   15.20
+   220.0    0.00   -0.41   -1.52   -3.07   -4.72   -6.22   -7.43   -8.32   -8.88   -9.06   -8.75   -7.87   -6.38   -4.36   -1.88    1.06    4.67    9.33   15.34
+   225.0    0.00   -0.40   -1.51   -3.05   -4.70   -6.21   -7.44   -8.34   -8.91   -9.08   -8.75   -7.83   -6.32   -4.28   -1.81    1.12    4.72    9.41   15.48
+   230.0    0.00   -0.40   -1.50   -3.04   -4.69   -6.20   -7.44   -8.36   -8.93   -9.09   -8.74   -7.80   -6.26   -4.20   -1.73    1.18    4.79    9.50   15.61
+   235.0    0.00   -0.39   -1.49   -3.02   -4.67   -6.19   -7.44   -8.36   -8.94   -9.10   -8.74   -7.77   -6.20   -4.13   -1.66    1.25    4.85    9.57   15.71
+   240.0    0.00   -0.38   -1.47   -3.00   -4.65   -6.17   -7.43   -8.36   -8.95   -9.11   -8.73   -7.75   -6.16   -4.07   -1.59    1.31    4.91    9.63   15.78
+   245.0    0.00   -0.38   -1.46   -2.98   -4.62   -6.15   -7.41   -8.35   -8.95   -9.11   -8.73   -7.74   -6.14   -4.03   -1.54    1.36    4.95    9.67   15.80
+   250.0    0.00   -0.37   -1.45   -2.96   -4.60   -6.12   -7.39   -8.34   -8.94   -9.11   -8.74   -7.74   -6.13   -4.02   -1.52    1.39    4.97    9.67   15.79
+   255.0    0.00   -0.36   -1.43   -2.94   -4.57   -6.09   -7.36   -8.32   -8.93   -9.11   -8.74   -7.75   -6.14   -4.02   -1.52    1.39    4.96    9.65   15.74
+   260.0    0.00   -0.36   -1.42   -2.92   -4.55   -6.06   -7.33   -8.29   -8.91   -9.10   -8.76   -7.78   -6.17   -4.05   -1.55    1.36    4.93    9.59   15.66
+   265.0    0.00   -0.35   -1.41   -2.90   -4.52   -6.03   -7.29   -8.26   -8.89   -9.10   -8.77   -7.81   -6.22   -4.10   -1.60    1.31    4.87    9.52   15.57
+   270.0    0.00   -0.35   -1.40   -2.88   -4.50   -6.00   -7.26   -8.23   -8.87   -9.10   -8.79   -7.86   -6.28   -4.17   -1.67    1.23    4.79    9.43   15.47
+   275.0    0.00   -0.34   -1.38   -2.86   -4.47   -5.97   -7.23   -8.19   -8.84   -9.09   -8.82   -7.90   -6.35   -4.25   -1.75    1.15    4.69    9.33   15.37
+   280.0    0.00   -0.34   -1.38   -2.85   -4.45   -5.94   -7.19   -8.16   -8.82   -9.09   -8.84   -7.95   -6.42   -4.34   -1.84    1.05    4.59    9.22   15.28
+   285.0    0.00   -0.34   -1.37   -2.84   -4.43   -5.92   -7.16   -8.13   -8.80   -9.08   -8.85   -7.99   -6.48   -4.42   -1.93    0.96    4.49    9.12   15.20
+   290.0    0.00   -0.33   -1.36   -2.82   -4.42   -5.90   -7.14   -8.10   -8.77   -9.07   -8.86   -8.03   -6.54   -4.49   -2.01    0.88    4.40    9.02   15.12
+   295.0    0.00   -0.33   -1.36   -2.82   -4.40   -5.88   -7.11   -8.07   -8.75   -9.06   -8.87   -8.05   -6.58   -4.54   -2.07    0.81    4.32    8.93   15.05
+   300.0    0.00   -0.33   -1.35   -2.81   -4.39   -5.86   -7.09   -8.05   -8.72   -9.04   -8.86   -8.06   -6.60   -4.57   -2.10    0.77    4.26    8.85   14.99
+   305.0    0.00   -0.33   -1.35   -2.81   -4.39   -5.85   -7.07   -8.03   -8.70   -9.01   -8.84   -8.05   -6.60   -4.57   -2.11    0.74    4.21    8.78   14.92
+   310.0    0.00   -0.33   -1.35   -2.81   -4.39   -5.84   -7.06   -8.01   -8.67   -8.99   -8.82   -8.03   -6.58   -4.55   -2.09    0.75    4.19    8.72   14.85
+   315.0    0.00   -0.33   -1.35   -2.81   -4.39   -5.84   -7.05   -7.99   -8.65   -8.96   -8.79   -8.00   -6.54   -4.51   -2.05    0.77    4.18    8.66   14.77
+   320.0    0.00   -0.33   -1.35   -2.81   -4.39   -5.84   -7.05   -7.98   -8.63   -8.94   -8.76   -7.96   -6.49   -4.45   -1.99    0.82    4.18    8.62   14.70
+   325.0    0.00   -0.33   -1.36   -2.82   -4.40   -5.85   -7.05   -7.97   -8.61   -8.91   -8.72   -7.91   -6.43   -4.38   -1.92    0.87    4.20    8.58   14.63
+   330.0    0.00   -0.33   -1.36   -2.83   -4.41   -5.86   -7.05   -7.97   -8.60   -8.89   -8.69   -7.87   -6.37   -4.30   -1.84    0.94    4.22    8.55   14.57
+   335.0    0.00   -0.34   -1.37   -2.84   -4.42   -5.87   -7.06   -7.97   -8.59   -8.87   -8.66   -7.82   -6.31   -4.23   -1.76    1.00    4.25    8.53   14.51
+   340.0    0.00   -0.34   -1.38   -2.86   -4.44   -5.89   -7.07   -7.98   -8.59   -8.86   -8.64   -7.79   -6.27   -4.17   -1.70    1.05    4.27    8.51   14.47
+   345.0    0.00   -0.35   -1.39   -2.87   -4.46   -5.91   -7.09   -7.99   -8.59   -8.85   -8.62   -7.76   -6.23   -4.13   -1.65    1.09    4.30    8.51   14.44
+   350.0    0.00   -0.35   -1.41   -2.89   -4.49   -5.94   -7.11   -8.00   -8.60   -8.85   -8.61   -7.75   -6.22   -4.11   -1.63    1.12    4.32    8.51   14.42
+   355.0    0.00   -0.36   -1.42   -2.91   -4.51   -5.97   -7.14   -8.02   -8.61   -8.85   -8.62   -7.75   -6.22   -4.11   -1.62    1.14    4.33    8.51   14.41
+   360.0    0.00   -0.36   -1.43   -2.94   -4.55   -6.00   -7.17   -8.04   -8.62   -8.86   -8.62   -7.77   -6.24   -4.13   -1.63    1.14    4.35    8.52   14.41
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      1.02     -0.32    118.08                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.13   -0.52   -1.11   -1.83   -2.62   -3.44   -4.22   -4.92   -5.46   -5.72   -5.60   -4.99   -3.83   -2.07    0.32    3.33    6.88   10.76
+     0.0    0.00   -0.10   -0.48   -1.07   -1.81   -2.62   -3.43   -4.19   -4.87   -5.41   -5.72   -5.68   -5.16   -4.05   -2.32   -0.03    2.78    6.08    9.97
+     5.0    0.00   -0.11   -0.48   -1.08   -1.82   -2.62   -3.42   -4.18   -4.86   -5.41   -5.73   -5.70   -5.17   -4.05   -2.32   -0.01    2.81    6.13   10.06
+    10.0    0.00   -0.11   -0.48   -1.08   -1.81   -2.61   -3.41   -4.17   -4.85   -5.40   -5.73   -5.70   -5.17   -4.04   -2.29    0.04    2.89    6.25   10.21
+    15.0    0.00   -0.11   -0.49   -1.08   -1.81   -2.61   -3.40   -4.16   -4.84   -5.40   -5.73   -5.69   -5.15   -4.01   -2.23    0.14    3.02    6.42   10.40
+    20.0    0.00   -0.11   -0.49   -1.08   -1.81   -2.60   -3.39   -4.15   -4.83   -5.39   -5.71   -5.67   -5.12   -3.95   -2.14    0.26    3.19    6.63   10.62
+    25.0    0.00   -0.12   -0.49   -1.09   -1.81   -2.60   -3.39   -4.14   -4.83   -5.38   -5.70   -5.64   -5.07   -3.88   -2.04    0.41    3.39    6.87   10.88
+    30.0    0.00   -0.12   -0.50   -1.09   -1.81   -2.60   -3.39   -4.14   -4.83   -5.37   -5.68   -5.60   -5.01   -3.79   -1.92    0.57    3.60    7.13   11.14
+    35.0    0.00   -0.12   -0.50   -1.09   -1.82   -2.60   -3.39   -4.15   -4.83   -5.37   -5.66   -5.56   -4.94   -3.70   -1.80    0.72    3.80    7.38   11.40
+    40.0    0.00   -0.12   -0.51   -1.10   -1.82   -2.61   -3.40   -4.16   -4.84   -5.37   -5.64   -5.52   -4.88   -3.61   -1.70    0.85    3.97    7.60   11.65
+    45.0    0.00   -0.13   -0.51   -1.10   -1.83   -2.62   -3.42   -4.18   -4.86   -5.37   -5.63   -5.49   -4.82   -3.54   -1.61    0.95    4.10    7.78   11.87
+    50.0    0.00   -0.13   -0.51   -1.11   -1.84   -2.63   -3.44   -4.20   -4.87   -5.38   -5.62   -5.46   -4.78   -3.49   -1.56    1.00    4.18    7.90   12.04
+    55.0    0.00   -0.13   -0.52   -1.12   -1.85   -2.65   -3.45   -4.22   -4.89   -5.39   -5.61   -5.44   -4.75   -3.47   -1.55    1.01    4.19    7.95   12.15
+    60.0    0.00   -0.13   -0.52   -1.12   -1.86   -2.66   -3.47   -4.24   -4.90   -5.39   -5.61   -5.43   -4.75   -3.48   -1.58    0.96    4.14    7.93   12.20
+    65.0    0.00   -0.14   -0.53   -1.13   -1.87   -2.67   -3.48   -4.25   -4.91   -5.40   -5.61   -5.44   -4.77   -3.52   -1.65    0.86    4.03    7.84   12.18
+    70.0    0.00   -0.14   -0.54   -1.14   -1.88   -2.68   -3.49   -4.25   -4.91   -5.40   -5.62   -5.46   -4.80   -3.58   -1.75    0.72    3.87    7.69   12.09
+    75.0    0.00   -0.14   -0.54   -1.14   -1.88   -2.69   -3.49   -4.25   -4.91   -5.40   -5.63   -5.48   -4.85   -3.67   -1.88    0.55    3.67    7.49   11.93
+    80.0    0.00   -0.15   -0.54   -1.15   -1.89   -2.69   -3.49   -4.24   -4.90   -5.40   -5.64   -5.51   -4.91   -3.76   -2.01    0.37    3.45    7.26   11.72
+    85.0    0.00   -0.15   -0.55   -1.16   -1.89   -2.69   -3.48   -4.23   -4.89   -5.39   -5.64   -5.54   -4.97   -3.86   -2.15    0.20    3.23    7.01   11.48
+    90.0    0.00   -0.15   -0.55   -1.16   -1.90   -2.69   -3.47   -4.21   -4.87   -5.38   -5.65   -5.57   -5.03   -3.94   -2.27    0.04    3.03    6.76   11.22
+    95.0    0.00   -0.15   -0.56   -1.16   -1.90   -2.68   -3.46   -4.20   -4.86   -5.37   -5.66   -5.59   -5.07   -4.01   -2.36   -0.09    2.85    6.55   10.98
+   100.0    0.00   -0.16   -0.56   -1.17   -1.90   -2.68   -3.46   -4.19   -4.85   -5.37   -5.66   -5.61   -5.10   -4.06   -2.43   -0.19    2.72    6.37   10.76
+   105.0    0.00   -0.16   -0.56   -1.17   -1.90   -2.68   -3.45   -4.19   -4.84   -5.37   -5.66   -5.62   -5.11   -4.08   -2.46   -0.24    2.64    6.25   10.59
+   110.0    0.00   -0.16   -0.57   -1.17   -1.90   -2.68   -3.45   -4.19   -4.85   -5.37   -5.66   -5.61   -5.11   -4.07   -2.46   -0.25    2.61    6.19   10.48
+   115.0    0.00   -0.16   -0.57   -1.17   -1.90   -2.68   -3.46   -4.20   -4.86   -5.38   -5.67   -5.60   -5.08   -4.04   -2.43   -0.22    2.62    6.18   10.42
+   120.0    0.00   -0.16   -0.57   -1.17   -1.90   -2.68   -3.47   -4.22   -4.88   -5.40   -5.67   -5.58   -5.05   -3.99   -2.38   -0.17    2.68    6.22   10.41
+   125.0    0.00   -0.17   -0.57   -1.18   -1.90   -2.69   -3.48   -4.24   -4.91   -5.42   -5.67   -5.56   -5.01   -3.94   -2.31   -0.09    2.76    6.29   10.42
+   130.0    0.00   -0.17   -0.58   -1.18   -1.90   -2.70   -3.50   -4.27   -4.94   -5.44   -5.67   -5.55   -4.97   -3.88   -2.24   -0.01    2.86    6.38   10.45
+   135.0    0.00   -0.17   -0.58   -1.18   -1.91   -2.70   -3.52   -4.29   -4.97   -5.46   -5.68   -5.53   -4.93   -3.83   -2.18    0.07    2.96    6.48   10.47
+   140.0    0.00   -0.17   -0.58   -1.18   -1.91   -2.71   -3.53   -4.32   -4.99   -5.48   -5.69   -5.52   -4.90   -3.79   -2.12    0.14    3.04    6.55   10.45
+   145.0    0.00   -0.17   -0.58   -1.18   -1.91   -2.72   -3.54   -4.34   -5.02   -5.50   -5.70   -5.51   -4.89   -3.76   -2.09    0.19    3.11    6.59   10.39
+   150.0    0.00   -0.17   -0.58   -1.18   -1.91   -2.72   -3.55   -4.35   -5.04   -5.52   -5.71   -5.52   -4.88   -3.75   -2.07    0.22    3.14    6.59   10.26
+   155.0    0.00   -0.17   -0.58   -1.18   -1.91   -2.72   -3.56   -4.36   -5.05   -5.53   -5.72   -5.52   -4.89   -3.75   -2.06    0.24    3.15    6.55   10.09
+   160.0    0.00   -0.17   -0.58   -1.18   -1.91   -2.72   -3.56   -4.37   -5.06   -5.54   -5.73   -5.54   -4.90   -3.76   -2.07    0.23    3.13    6.47    9.88
+   165.0    0.00   -0.17   -0.58   -1.18   -1.91   -2.72   -3.56   -4.37   -5.06   -5.55   -5.74   -5.55   -4.91   -3.78   -2.08    0.22    3.10    6.38    9.66
+   170.0    0.00   -0.17   -0.58   -1.18   -1.90   -2.72   -3.56   -4.37   -5.06   -5.56   -5.75   -5.56   -4.93   -3.79   -2.09    0.20    3.06    6.29    9.47
+   175.0    0.00   -0.17   -0.58   -1.17   -1.90   -2.71   -3.56   -4.37   -5.07   -5.56   -5.76   -5.58   -4.94   -3.79   -2.09    0.20    3.03    6.21    9.33
+   180.0    0.00   -0.17   -0.58   -1.17   -1.90   -2.71   -3.55   -4.36   -5.07   -5.57   -5.77   -5.58   -4.94   -3.79   -2.08    0.21    3.03    6.19    9.28
+   185.0    0.00   -0.17   -0.58   -1.17   -1.90   -2.71   -3.55   -4.36   -5.07   -5.57   -5.77   -5.59   -4.94   -3.78   -2.05    0.25    3.07    6.22    9.33
+   190.0    0.00   -0.17   -0.57   -1.17   -1.90   -2.71   -3.55   -4.36   -5.07   -5.57   -5.78   -5.59   -4.93   -3.75   -2.01    0.31    3.14    6.33    9.50
+   195.0    0.00   -0.16   -0.57   -1.17   -1.90   -2.71   -3.54   -4.36   -5.06   -5.57   -5.78   -5.59   -4.92   -3.72   -1.95    0.40    3.27    6.51    9.79
+   200.0    0.00   -0.16   -0.57   -1.16   -1.89   -2.70   -3.54   -4.35   -5.06   -5.57   -5.78   -5.58   -4.90   -3.68   -1.88    0.51    3.44    6.76   10.17
+   205.0    0.00   -0.16   -0.56   -1.16   -1.89   -2.69   -3.53   -4.34   -5.05   -5.57   -5.78   -5.58   -4.89   -3.64   -1.80    0.64    3.64    7.06   10.61
+   210.0    0.00   -0.16   -0.56   -1.15   -1.88   -2.68   -3.52   -4.33   -5.04   -5.57   -5.78   -5.58   -4.88   -3.61   -1.73    0.78    3.86    7.38   11.08
+   215.0    0.00   -0.15   -0.55   -1.14   -1.87   -2.67   -3.50   -4.32   -5.03   -5.56   -5.78   -5.59   -4.88   -3.59   -1.66    0.91    4.08    7.71   11.53
+   220.0    0.00   -0.15   -0.54   -1.13   -1.85   -2.65   -3.48   -4.29   -5.01   -5.55   -5.78   -5.60   -4.89   -3.58   -1.62    1.02    4.27    8.00   11.91
+   225.0    0.00   -0.15   -0.54   -1.12   -1.84   -2.63   -3.46   -4.27   -5.00   -5.54   -5.79   -5.61   -4.91   -3.59   -1.60    1.09    4.42    8.23   12.19
+   230.0    0.00   -0.14   -0.53   -1.10   -1.82   -2.61   -3.43   -4.24   -4.98   -5.53   -5.79   -5.63   -4.94   -3.62   -1.60    1.13    4.52    8.38   12.34
+   235.0    0.00   -0.14   -0.52   -1.09   -1.79   -2.58   -3.40   -4.22   -4.96   -5.52   -5.80   -5.66   -4.98   -3.66   -1.64    1.11    4.54    8.42   12.37
+   240.0    0.00   -0.13   -0.51   -1.07   -1.77   -2.55   -3.38   -4.19   -4.94   -5.52   -5.81   -5.68   -5.02   -3.72   -1.70    1.05    4.48    8.37   12.26
+   245.0    0.00   -0.13   -0.50   -1.05   -1.75   -2.52   -3.35   -4.17   -4.93   -5.52   -5.82   -5.71   -5.06   -3.78   -1.79    0.94    4.35    8.22   12.05
+   250.0    0.00   -0.12   -0.49   -1.04   -1.72   -2.50   -3.32   -4.16   -4.92   -5.52   -5.83   -5.72   -5.10   -3.85   -1.90    0.79    4.16    7.99   11.76
+   255.0    0.00   -0.12   -0.48   -1.02   -1.70   -2.47   -3.30   -4.14   -4.92   -5.52   -5.83   -5.74   -5.13   -3.91   -2.01    0.61    3.92    7.71   11.43
+   260.0    0.00   -0.12   -0.47   -1.00   -1.68   -2.45   -3.29   -4.13   -4.92   -5.52   -5.84   -5.74   -5.15   -3.97   -2.13    0.41    3.66    7.40   11.10
+   265.0    0.00   -0.11   -0.46   -0.99   -1.66   -2.43   -3.28   -4.13   -4.92   -5.53   -5.84   -5.74   -5.16   -4.01   -2.25    0.22    3.39    7.10   10.80
+   270.0    0.00   -0.11   -0.45   -0.98   -1.65   -2.42   -3.27   -4.13   -4.92   -5.53   -5.83   -5.73   -5.15   -4.05   -2.34    0.04    3.15    6.83   10.56
+   275.0    0.00   -0.11   -0.44   -0.97   -1.63   -2.41   -3.26   -4.13   -4.92   -5.53   -5.82   -5.71   -5.14   -4.07   -2.42   -0.10    2.95    6.61   10.40
+   280.0    0.00   -0.10   -0.44   -0.96   -1.63   -2.41   -3.26   -4.13   -4.92   -5.52   -5.80   -5.69   -5.12   -4.07   -2.47   -0.21    2.80    6.46   10.32
+   285.0    0.00   -0.10   -0.43   -0.95   -1.62   -2.41   -3.26   -4.13   -4.92   -5.50   -5.78   -5.66   -5.09   -4.06   -2.49   -0.27    2.71    6.38   10.31
+   290.0    0.00   -0.10   -0.43   -0.95   -1.63   -2.41   -3.26   -4.13   -4.91   -5.48   -5.75   -5.62   -5.06   -4.04   -2.48   -0.28    2.68    6.37   10.35
+   295.0    0.00   -0.10   -0.43   -0.96   -1.63   -2.42   -3.27   -4.13   -4.89   -5.46   -5.72   -5.59   -5.03   -4.00   -2.45   -0.25    2.71    6.40   10.42
+   300.0    0.00   -0.09   -0.43   -0.96   -1.64   -2.43   -3.28   -4.12   -4.88   -5.43   -5.68   -5.55   -4.99   -3.97   -2.40   -0.19    2.78    6.46   10.51
+   305.0    0.00   -0.09   -0.43   -0.97   -1.65   -2.44   -3.29   -4.12   -4.86   -5.41   -5.66   -5.53   -4.97   -3.93   -2.34   -0.11    2.86    6.54   10.57
+   310.0    0.00   -0.09   -0.43   -0.98   -1.67   -2.46   -3.30   -4.12   -4.85   -5.38   -5.63   -5.51   -4.95   -3.89   -2.28   -0.02    2.96    6.61   10.61
+   315.0    0.00   -0.09   -0.44   -0.99   -1.69   -2.48   -3.32   -4.13   -4.84   -5.36   -5.61   -5.49   -4.93   -3.86   -2.22    0.07    3.04    6.65   10.60
+   320.0    0.00   -0.09   -0.44   -1.00   -1.71   -2.51   -3.34   -4.13   -4.83   -5.35   -5.60   -5.49   -4.93   -3.84   -2.18    0.13    3.09    6.65   10.56
+   325.0    0.00   -0.09   -0.44   -1.01   -1.73   -2.53   -3.35   -4.14   -4.83   -5.35   -5.60   -5.50   -4.94   -3.84   -2.15    0.17    3.12    6.62   10.47
+   330.0    0.00   -0.10   -0.45   -1.02   -1.75   -2.55   -3.37   -4.15   -4.83   -5.35   -5.61   -5.51   -4.96   -3.85   -2.14    0.18    3.10    6.54   10.35
+   335.0    0.00   -0.10   -0.45   -1.03   -1.77   -2.58   -3.39   -4.17   -4.84   -5.36   -5.63   -5.54   -4.98   -3.87   -2.16    0.17    3.06    6.44   10.22
+   340.0    0.00   -0.10   -0.46   -1.04   -1.78   -2.59   -3.41   -4.18   -4.85   -5.37   -5.65   -5.57   -5.02   -3.91   -2.19    0.13    2.99    6.33   10.10
+   345.0    0.00   -0.10   -0.46   -1.05   -1.80   -2.61   -3.42   -4.19   -4.86   -5.38   -5.67   -5.60   -5.06   -3.94   -2.23    0.08    2.91    6.22   10.01
+   350.0    0.00   -0.10   -0.47   -1.06   -1.80   -2.62   -3.43   -4.19   -4.87   -5.39   -5.69   -5.63   -5.10   -3.99   -2.27    0.03    2.84    6.13    9.94
+   355.0    0.00   -0.10   -0.47   -1.07   -1.81   -2.62   -3.43   -4.19   -4.87   -5.40   -5.71   -5.66   -5.13   -4.02   -2.30   -0.01    2.79    6.08    9.93
+   360.0    0.00   -0.10   -0.48   -1.07   -1.81   -2.62   -3.43   -4.19   -4.87   -5.41   -5.72   -5.68   -5.16   -4.05   -2.32   -0.03    2.78    6.08    9.97
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TRMR8_GNSS      NONE                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               4    02-FEB-10 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+      0.57     -0.16     83.67                              NORTH / EAST / UP   
+   NOAZI    0.00    0.05    0.14    0.10   -0.18   -0.70   -1.27   -1.65   -1.65   -1.28   -0.77   -0.40   -0.36   -0.56   -0.65   -0.23    0.80    2.03    2.53
+     0.0    0.00   -0.01    0.02   -0.08   -0.45   -1.08   -1.77   -2.21   -2.14   -1.55   -0.65    0.21    0.75    0.93    0.98    1.23    1.83    2.54    2.82
+     5.0    0.00   -0.01    0.02   -0.08   -0.46   -1.11   -1.82   -2.30   -2.29   -1.76   -0.91   -0.08    0.46    0.67    0.78    1.12    1.83    2.65    2.98
+    10.0    0.00   -0.01    0.02   -0.09   -0.47   -1.13   -1.86   -2.38   -2.43   -1.97   -1.18   -0.40    0.12    0.35    0.52    0.96    1.80    2.75    3.11
+    15.0    0.00   -0.01    0.01   -0.09   -0.48   -1.14   -1.90   -2.45   -2.56   -2.16   -1.45   -0.73   -0.25   -0.02    0.21    0.76    1.74    2.83    3.24
+    20.0    0.00   -0.01    0.01   -0.10   -0.49   -1.15   -1.92   -2.50   -2.65   -2.33   -1.70   -1.06   -0.63   -0.42   -0.15    0.50    1.65    2.90    3.36
+    25.0    0.00   -0.01    0.01   -0.10   -0.49   -1.16   -1.93   -2.53   -2.72   -2.46   -1.91   -1.36   -1.01   -0.84   -0.55    0.20    1.51    2.94    3.48
+    30.0    0.00    0.00    0.01   -0.11   -0.50   -1.16   -1.93   -2.54   -2.76   -2.54   -2.07   -1.62   -1.37   -1.26   -0.97   -0.13    1.34    2.95    3.60
+    35.0    0.00    0.00    0.01   -0.11   -0.50   -1.16   -1.93   -2.53   -2.76   -2.58   -2.18   -1.82   -1.67   -1.64   -1.38   -0.49    1.13    2.93    3.71
+    40.0    0.00    0.00    0.01   -0.11   -0.51   -1.16   -1.91   -2.49   -2.72   -2.57   -2.22   -1.95   -1.91   -1.98   -1.77   -0.84    0.89    2.87    3.79
+    45.0    0.00    0.01    0.02   -0.12   -0.51   -1.15   -1.88   -2.45   -2.65   -2.50   -2.20   -2.00   -2.07   -2.24   -2.10   -1.18    0.64    2.76    3.83
+    50.0    0.00    0.01    0.02   -0.11   -0.51   -1.14   -1.85   -2.38   -2.56   -2.40   -2.11   -1.98   -2.14   -2.42   -2.36   -1.47    0.38    2.62    3.83
+    55.0    0.00    0.02    0.03   -0.11   -0.50   -1.13   -1.81   -2.31   -2.45   -2.26   -1.98   -1.88   -2.12   -2.49   -2.53   -1.71    0.14    2.44    3.76
+    60.0    0.00    0.02    0.04   -0.10   -0.49   -1.11   -1.77   -2.23   -2.32   -2.10   -1.80   -1.72   -2.01   -2.47   -2.61   -1.87   -0.07    2.24    3.63
+    65.0    0.00    0.03    0.05   -0.09   -0.47   -1.08   -1.72   -2.14   -2.19   -1.92   -1.59   -1.51   -1.83   -2.35   -2.58   -1.94   -0.23    2.03    3.45
+    70.0    0.00    0.04    0.06   -0.07   -0.45   -1.04   -1.66   -2.05   -2.05   -1.74   -1.37   -1.27   -1.59   -2.15   -2.46   -1.92   -0.33    1.83    3.22
+    75.0    0.00    0.04    0.08   -0.04   -0.41   -1.00   -1.59   -1.95   -1.92   -1.56   -1.14   -1.00   -1.31   -1.88   -2.24   -1.81   -0.36    1.66    2.98
+    80.0    0.00    0.05    0.10   -0.01   -0.37   -0.94   -1.52   -1.85   -1.79   -1.39   -0.93   -0.74   -1.01   -1.57   -1.96   -1.62   -0.31    1.55    2.75
+    85.0    0.00    0.06    0.12    0.03   -0.32   -0.87   -1.44   -1.75   -1.67   -1.23   -0.73   -0.49   -0.70   -1.23   -1.63   -1.36   -0.19    1.50    2.55
+    90.0    0.00    0.07    0.15    0.07   -0.26   -0.80   -1.35   -1.65   -1.55   -1.10   -0.55   -0.26   -0.41   -0.89   -1.27   -1.05    0.01    1.52    2.43
+    95.0    0.00    0.08    0.17    0.12   -0.19   -0.71   -1.25   -1.55   -1.44   -0.97   -0.40   -0.06   -0.14   -0.56   -0.91   -0.71    0.25    1.62    2.39
+   100.0    0.00    0.09    0.20    0.17   -0.11   -0.62   -1.15   -1.44   -1.34   -0.86   -0.27    0.12    0.09   -0.27   -0.57   -0.38    0.53    1.78    2.44
+   105.0    0.00    0.10    0.23    0.22   -0.03   -0.52   -1.04   -1.34   -1.24   -0.76   -0.16    0.26    0.28   -0.01   -0.27   -0.06    0.81    2.00    2.58
+   110.0    0.00    0.11    0.26    0.28    0.05   -0.42   -0.93   -1.23   -1.14   -0.68   -0.06    0.37    0.43    0.18   -0.03    0.20    1.07    2.23    2.79
+   115.0    0.00    0.12    0.29    0.33    0.13   -0.32   -0.82   -1.13   -1.05   -0.59    0.02    0.47    0.55    0.33    0.14    0.40    1.28    2.45    3.04
+   120.0    0.00    0.13    0.31    0.38    0.21   -0.22   -0.72   -1.03   -0.95   -0.51    0.09    0.54    0.62    0.41    0.24    0.52    1.43    2.63    3.28
+   125.0    0.00    0.14    0.34    0.43    0.28   -0.13   -0.62   -0.93   -0.87   -0.43    0.16    0.59    0.67    0.45    0.27    0.56    1.50    2.74    3.46
+   130.0    0.00    0.15    0.36    0.47    0.34   -0.05   -0.53   -0.84   -0.78   -0.36    0.22    0.63    0.68    0.43    0.24    0.52    1.47    2.76    3.55
+   135.0    0.00    0.15    0.38    0.51    0.39    0.02   -0.45   -0.76   -0.70   -0.29    0.27    0.66    0.67    0.38    0.14    0.41    1.35    2.67    3.52
+   140.0    0.00    0.16    0.39    0.54    0.43    0.07   -0.39   -0.69   -0.64   -0.23    0.31    0.67    0.63    0.29    0.00    0.23    1.16    2.47    3.34
+   145.0    0.00    0.16    0.40    0.55    0.46    0.11   -0.34   -0.64   -0.58   -0.18    0.34    0.66    0.57    0.17   -0.17    0.00    0.89    2.17    3.02
+   150.0    0.00    0.16    0.41    0.56    0.48    0.13   -0.31   -0.60   -0.54   -0.14    0.35    0.63    0.50    0.03   -0.36   -0.24    0.58    1.79    2.57
+   155.0    0.00    0.16    0.41    0.56    0.48    0.14   -0.30   -0.58   -0.52   -0.13    0.35    0.59    0.40   -0.11   -0.56   -0.50    0.26    1.37    2.03
+   160.0    0.00    0.16    0.40    0.55    0.47    0.13   -0.31   -0.58   -0.51   -0.13    0.32    0.52    0.30   -0.26   -0.74   -0.73   -0.05    0.93    1.45
+   165.0    0.00    0.16    0.39    0.54    0.44    0.10   -0.33   -0.60   -0.53   -0.16    0.27    0.44    0.18   -0.40   -0.91   -0.93   -0.33    0.53    0.89
+   170.0    0.00    0.15    0.38    0.51    0.40    0.06   -0.37   -0.63   -0.56   -0.21    0.20    0.34    0.06   -0.52   -1.04   -1.09   -0.55    0.19    0.40
+   175.0    0.00    0.15    0.36    0.48    0.36    0.00   -0.42   -0.68   -0.62   -0.27    0.11    0.23   -0.06   -0.64   -1.14   -1.19   -0.70   -0.05    0.03
+   180.0    0.00    0.14    0.34    0.44    0.30   -0.06   -0.49   -0.75   -0.69   -0.36    0.01    0.12   -0.17   -0.73   -1.21   -1.24   -0.76   -0.17   -0.16
+   185.0    0.00    0.13    0.32    0.40    0.24   -0.13   -0.57   -0.83   -0.78   -0.46   -0.10    0.00   -0.28   -0.81   -1.24   -1.23   -0.73   -0.16   -0.18
+   190.0    0.00    0.12    0.29    0.35    0.18   -0.21   -0.65   -0.92   -0.87   -0.56   -0.23   -0.13   -0.39   -0.88   -1.25   -1.18   -0.63   -0.02   -0.01
+   195.0    0.00    0.12    0.27    0.31    0.11   -0.29   -0.74   -1.02   -0.98   -0.68   -0.35   -0.25   -0.49   -0.93   -1.24   -1.09   -0.46    0.23    0.33
+   200.0    0.00    0.11    0.24    0.26    0.05   -0.37   -0.84   -1.12   -1.09   -0.80   -0.48   -0.37   -0.59   -0.98   -1.22   -0.98   -0.25    0.58    0.81
+   205.0    0.00    0.10    0.22    0.22   -0.02   -0.45   -0.92   -1.22   -1.20   -0.92   -0.60   -0.49   -0.69   -1.04   -1.20   -0.87    0.00    0.98    1.38
+   210.0    0.00    0.09    0.20    0.18   -0.07   -0.52   -1.01   -1.31   -1.31   -1.04   -0.73   -0.62   -0.79   -1.10   -1.20   -0.76    0.25    1.42    2.00
+   215.0    0.00    0.08    0.17    0.14   -0.12   -0.59   -1.08   -1.40   -1.41   -1.16   -0.86   -0.74   -0.90   -1.18   -1.22   -0.67    0.49    1.84    2.60
+   220.0    0.00    0.07    0.15    0.11   -0.17   -0.64   -1.15   -1.48   -1.51   -1.27   -0.98   -0.86   -1.02   -1.27   -1.26   -0.62    0.70    2.24    3.15
+   225.0    0.00    0.06    0.13    0.08   -0.20   -0.68   -1.21   -1.55   -1.60   -1.38   -1.10   -0.99   -1.14   -1.38   -1.32   -0.59    0.86    2.57    3.60
+   230.0    0.00    0.06    0.12    0.06   -0.23   -0.72   -1.25   -1.61   -1.68   -1.47   -1.21   -1.11   -1.26   -1.49   -1.40   -0.60    0.97    2.82    3.93
+   235.0    0.00    0.05    0.10    0.04   -0.25   -0.74   -1.28   -1.66   -1.74   -1.56   -1.31   -1.22   -1.38   -1.60   -1.48   -0.63    1.03    2.98    4.13
+   240.0    0.00    0.04    0.09    0.03   -0.26   -0.75   -1.31   -1.70   -1.80   -1.64   -1.40   -1.32   -1.48   -1.70   -1.57   -0.68    1.04    3.06    4.20
+   245.0    0.00    0.03    0.08    0.02   -0.26   -0.76   -1.32   -1.73   -1.85   -1.70   -1.47   -1.39   -1.55   -1.77   -1.63   -0.73    1.01    3.04    4.14
+   250.0    0.00    0.03    0.08    0.02   -0.26   -0.76   -1.33   -1.76   -1.89   -1.75   -1.52   -1.44   -1.59   -1.80   -1.67   -0.78    0.94    2.95    3.97
+   255.0    0.00    0.02    0.07    0.02   -0.26   -0.76   -1.33   -1.77   -1.92   -1.79   -1.55   -1.45   -1.58   -1.79   -1.67   -0.82    0.85    2.79    3.72
+   260.0    0.00    0.02    0.07    0.02   -0.26   -0.75   -1.33   -1.78   -1.94   -1.80   -1.55   -1.41   -1.52   -1.72   -1.63   -0.83    0.76    2.59    3.40
+   265.0    0.00    0.02    0.07    0.02   -0.25   -0.75   -1.33   -1.79   -1.95   -1.80   -1.51   -1.34   -1.41   -1.59   -1.53   -0.80    0.67    2.36    3.04
+   270.0    0.00    0.01    0.06    0.02   -0.25   -0.74   -1.33   -1.79   -1.94   -1.77   -1.45   -1.23   -1.25   -1.41   -1.38   -0.74    0.59    2.12    2.66
+   275.0    0.00    0.01    0.06    0.02   -0.24   -0.74   -1.33   -1.79   -1.93   -1.72   -1.35   -1.07   -1.04   -1.19   -1.18   -0.64    0.54    1.88    2.28
+   280.0    0.00    0.01    0.06    0.02   -0.24   -0.74   -1.34   -1.78   -1.90   -1.66   -1.23   -0.89   -0.80   -0.92   -0.94   -0.50    0.51    1.66    1.92
+   285.0    0.00    0.00    0.06    0.02   -0.24   -0.75   -1.34   -1.77   -1.86   -1.57   -1.09   -0.68   -0.54   -0.64   -0.68   -0.34    0.51    1.48    1.60
+   290.0    0.00    0.00    0.06    0.02   -0.25   -0.75   -1.34   -1.76   -1.81   -1.47   -0.92   -0.45   -0.26   -0.34   -0.41   -0.15    0.55    1.33    1.32
+   295.0    0.00    0.00    0.06    0.02   -0.26   -0.76   -1.35   -1.74   -1.75   -1.36   -0.75   -0.22    0.01   -0.04   -0.14    0.04    0.61    1.23    1.10
+   300.0    0.00    0.00    0.06    0.01   -0.27   -0.78   -1.35   -1.72   -1.69   -1.24   -0.57    0.01    0.28    0.24    0.12    0.24    0.70    1.17    0.94
+   305.0    0.00    0.00    0.05    0.01   -0.28   -0.79   -1.36   -1.71   -1.63   -1.13   -0.40    0.23    0.53    0.50    0.37    0.43    0.80    1.16    0.86
+   310.0    0.00   -0.01    0.05    0.00   -0.29   -0.81   -1.37   -1.69   -1.57   -1.02   -0.24    0.43    0.75    0.73    0.58    0.61    0.91    1.20    0.86
+   315.0    0.00   -0.01    0.05   -0.01   -0.31   -0.83   -1.39   -1.69   -1.53   -0.92   -0.10    0.61    0.95    0.92    0.77    0.78    1.04    1.27    0.92
+   320.0    0.00   -0.01    0.05   -0.02   -0.32   -0.86   -1.41   -1.69   -1.50   -0.85    0.01    0.75    1.11    1.09    0.93    0.92    1.16    1.38    1.06
+   325.0    0.00   -0.01    0.04   -0.02   -0.34   -0.88   -1.43   -1.71   -1.49   -0.81    0.09    0.85    1.23    1.22    1.05    1.04    1.28    1.51    1.24
+   330.0    0.00   -0.01    0.04   -0.03   -0.36   -0.91   -1.47   -1.74   -1.51   -0.80    0.13    0.92    1.31    1.31    1.15    1.14    1.40    1.66    1.47
+   335.0    0.00   -0.01    0.04   -0.04   -0.38   -0.94   -1.51   -1.79   -1.56   -0.84    0.12    0.93    1.35    1.36    1.21    1.22    1.50    1.82    1.72
+   340.0    0.00   -0.01    0.03   -0.05   -0.39   -0.97   -1.56   -1.85   -1.63   -0.91    0.06    0.90    1.34    1.38    1.25    1.28    1.60    1.98    1.97
+   345.0    0.00   -0.01    0.03   -0.06   -0.41   -1.00   -1.61   -1.93   -1.73   -1.02   -0.05    0.81    1.28    1.35    1.25    1.31    1.68    2.13    2.22
+   350.0    0.00   -0.01    0.03   -0.06   -0.42   -1.03   -1.66   -2.02   -1.86   -1.17   -0.21    0.66    1.16    1.26    1.21    1.32    1.75    2.28    2.45
+   355.0    0.00   -0.01    0.02   -0.07   -0.44   -1.06   -1.72   -2.11   -2.00   -1.35   -0.41    0.46    0.98    1.13    1.12    1.29    1.80    2.41    2.65
+   360.0    0.00   -0.01    0.02   -0.08   -0.45   -1.08   -1.77   -2.21   -2.14   -1.55   -0.65    0.21    0.75    0.93    0.98    1.23    1.83    2.54    2.82
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.69     -0.25     72.09                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.04   -0.14   -0.25   -0.36   -0.49   -0.69   -0.96   -1.23   -1.28   -0.93   -0.11    0.96    1.81    1.91    1.02   -0.50   -1.59   -0.78
+     0.0    0.00   -0.03   -0.08   -0.07    0.01    0.13    0.21    0.17    0.01   -0.16   -0.18    0.05    0.42    0.57    0.04   -1.43   -3.57   -5.30   -4.81
+     5.0    0.00   -0.02   -0.06   -0.04    0.05    0.20    0.31    0.32    0.24    0.16    0.23    0.54    0.94    1.09    0.54   -0.94   -3.07   -4.76   -4.30
+    10.0    0.00   -0.01   -0.04   -0.02    0.09    0.25    0.38    0.44    0.43    0.45    0.63    1.02    1.49    1.65    1.10   -0.40   -2.50   -4.13   -3.71
+    15.0    0.00   -0.01   -0.03    0.00    0.11    0.27    0.43    0.53    0.59    0.70    1.00    1.50    2.04    2.24    1.68    0.19   -1.87   -3.46   -3.04
+    20.0    0.00    0.00   -0.01    0.01    0.11    0.27    0.44    0.57    0.69    0.90    1.32    1.94    2.57    2.84    2.30    0.82   -1.21   -2.74   -2.34
+    25.0    0.00    0.01   -0.01    0.01    0.11    0.26    0.42    0.57    0.74    1.04    1.57    2.32    3.08    3.42    2.93    1.48   -0.52   -2.01   -1.61
+    30.0    0.00    0.01    0.00    0.01    0.08    0.22    0.37    0.53    0.74    1.11    1.75    2.64    3.53    3.98    3.56    2.14    0.16   -1.28   -0.87
+    35.0    0.00    0.02    0.00    0.00    0.05    0.16    0.29    0.44    0.67    1.10    1.85    2.87    3.90    4.48    4.15    2.78    0.83   -0.58   -0.14
+    40.0    0.00    0.02    0.00   -0.02    0.01    0.09    0.19    0.32    0.55    1.02    1.85    3.00    4.18    4.91    4.68    3.37    1.46    0.07    0.56
+    45.0    0.00    0.03    0.00   -0.04   -0.04    0.00    0.06    0.16    0.37    0.86    1.75    3.01    4.35    5.23    5.12    3.88    2.00    0.64    1.21
+    50.0    0.00    0.03   -0.01   -0.06   -0.09   -0.09   -0.07   -0.02    0.16    0.64    1.57    2.92    4.39    5.42    5.44    4.28    2.43    1.11    1.77
+    55.0    0.00    0.03   -0.01   -0.08   -0.14   -0.18   -0.21   -0.22   -0.09    0.36    1.30    2.71    4.29    5.46    5.61    4.53    2.72    1.44    2.22
+    60.0    0.00    0.03   -0.01   -0.10   -0.19   -0.27   -0.36   -0.42   -0.36    0.04    0.96    2.40    4.07    5.35    5.61    4.61    2.84    1.61    2.53
+    65.0    0.00    0.04   -0.02   -0.13   -0.24   -0.36   -0.49   -0.63   -0.64   -0.31    0.56    2.00    3.71    5.08    5.44    4.51    2.78    1.60    2.67
+    70.0    0.00    0.04   -0.02   -0.15   -0.28   -0.44   -0.62   -0.82   -0.91   -0.67    0.13    1.54    3.25    4.66    5.09    4.21    2.52    1.39    2.61
+    75.0    0.00    0.04   -0.03   -0.16   -0.32   -0.50   -0.73   -1.00   -1.17   -1.03   -0.32    1.02    2.71    4.13    4.58    3.74    2.07    0.99    2.36
+    80.0    0.00    0.04   -0.03   -0.17   -0.35   -0.56   -0.83   -1.16   -1.42   -1.37   -0.76    0.48    2.11    3.50    3.95    3.11    1.46    0.41    1.89
+    85.0    0.00    0.04   -0.03   -0.18   -0.37   -0.60   -0.91   -1.29   -1.63   -1.69   -1.19   -0.05    1.49    2.82    3.23    2.38    0.71   -0.33    1.25
+    90.0    0.00    0.04   -0.03   -0.18   -0.38   -0.63   -0.97   -1.41   -1.82   -1.97   -1.58   -0.55    0.88    2.13    2.48    1.57   -0.13   -1.18    0.45
+    95.0    0.00    0.04   -0.03   -0.18   -0.39   -0.65   -1.02   -1.50   -1.98   -2.21   -1.92   -1.00    0.32    1.46    1.73    0.76   -1.00   -2.09   -0.45
+   100.0    0.00    0.04   -0.03   -0.18   -0.39   -0.66   -1.06   -1.57   -2.10   -2.40   -2.20   -1.38   -0.17    0.87    1.03   -0.02   -1.85   -3.01   -1.41
+   105.0    0.00    0.04   -0.03   -0.18   -0.38   -0.67   -1.08   -1.63   -2.20   -2.56   -2.42   -1.69   -0.57    0.36    0.43   -0.71   -2.62   -3.87   -2.35
+   110.0    0.00    0.04   -0.02   -0.17   -0.37   -0.66   -1.09   -1.67   -2.27   -2.67   -2.59   -1.91   -0.87   -0.03   -0.04   -1.27   -3.27   -4.62   -3.22
+   115.0    0.00    0.04   -0.02   -0.16   -0.36   -0.65   -1.10   -1.69   -2.32   -2.75   -2.69   -2.06   -1.08   -0.30   -0.38   -1.68   -3.76   -5.22   -3.95
+   120.0    0.00    0.04   -0.02   -0.15   -0.34   -0.64   -1.09   -1.71   -2.35   -2.79   -2.76   -2.15   -1.19   -0.45   -0.58   -1.93   -4.07   -5.62   -4.52
+   125.0    0.00    0.04   -0.02   -0.14   -0.33   -0.63   -1.09   -1.71   -2.37   -2.81   -2.78   -2.17   -1.22   -0.49   -0.64   -2.01   -4.19   -5.82   -4.88
+   130.0    0.00    0.04   -0.01   -0.13   -0.32   -0.61   -1.07   -1.70   -2.36   -2.80   -2.76   -2.15   -1.19   -0.45   -0.59   -1.94   -4.12   -5.81   -5.04
+   135.0    0.00    0.03   -0.01   -0.13   -0.30   -0.60   -1.06   -1.69   -2.35   -2.78   -2.72   -2.09   -1.11   -0.34   -0.43   -1.73   -3.88   -5.61   -4.98
+   140.0    0.00    0.03   -0.02   -0.12   -0.30   -0.58   -1.05   -1.67   -2.32   -2.74   -2.66   -2.01   -1.00   -0.19   -0.21   -1.42   -3.50   -5.22   -4.73
+   145.0    0.00    0.03   -0.02   -0.12   -0.29   -0.58   -1.03   -1.64   -2.28   -2.68   -2.59   -1.91   -0.88   -0.01    0.06   -1.04   -3.01   -4.69   -4.31
+   150.0    0.00    0.02   -0.03   -0.13   -0.29   -0.57   -1.02   -1.61   -2.23   -2.61   -2.50   -1.81   -0.74    0.18    0.35   -0.62   -2.44   -4.05   -3.77
+   155.0    0.00    0.02   -0.04   -0.14   -0.30   -0.57   -1.00   -1.58   -2.17   -2.53   -2.40   -1.69   -0.60    0.38    0.65   -0.17   -1.82   -3.34   -3.13
+   160.0    0.00    0.01   -0.05   -0.15   -0.32   -0.58   -0.99   -1.55   -2.10   -2.43   -2.28   -1.56   -0.45    0.58    0.94    0.29   -1.19   -2.59   -2.42
+   165.0    0.00    0.00   -0.06   -0.17   -0.33   -0.59   -0.99   -1.51   -2.03   -2.32   -2.15   -1.42   -0.29    0.77    1.24    0.74   -0.56   -1.82   -1.68
+   170.0    0.00   -0.01   -0.07   -0.19   -0.36   -0.61   -0.99   -1.48   -1.96   -2.21   -2.01   -1.26   -0.13    0.98    1.52    1.17    0.06   -1.05   -0.93
+   175.0    0.00   -0.01   -0.09   -0.22   -0.39   -0.64   -0.99   -1.45   -1.88   -2.09   -1.85   -1.09    0.06    1.19    1.80    1.59    0.65   -0.31   -0.18
+   180.0    0.00   -0.02   -0.11   -0.24   -0.42   -0.66   -1.00   -1.42   -1.81   -1.96   -1.69   -0.90    0.25    1.41    2.09    1.99    1.21    0.39    0.55
+   185.0    0.00   -0.03   -0.13   -0.27   -0.45   -0.69   -1.01   -1.40   -1.73   -1.84   -1.52   -0.71    0.47    1.64    2.37    2.37    1.73    1.06    1.26
+   190.0    0.00   -0.04   -0.14   -0.30   -0.49   -0.72   -1.03   -1.38   -1.67   -1.72   -1.36   -0.51    0.69    1.89    2.66    2.73    2.21    1.67    1.94
+   195.0    0.00   -0.05   -0.16   -0.32   -0.52   -0.75   -1.04   -1.36   -1.61   -1.62   -1.20   -0.31    0.92    2.14    2.94    3.07    2.65    2.22    2.58
+   200.0    0.00   -0.06   -0.18   -0.35   -0.54   -0.78   -1.05   -1.35   -1.56   -1.52   -1.06   -0.11    1.15    2.40    3.21    3.38    3.02    2.71    3.16
+   205.0    0.00   -0.07   -0.20   -0.37   -0.57   -0.79   -1.06   -1.34   -1.53   -1.45   -0.93    0.07    1.38    2.65    3.47    3.65    3.34    3.12    3.68
+   210.0    0.00   -0.08   -0.22   -0.39   -0.59   -0.81   -1.06   -1.33   -1.50   -1.38   -0.82    0.22    1.58    2.88    3.71    3.88    3.58    3.43    4.13
+   215.0    0.00   -0.09   -0.23   -0.41   -0.60   -0.81   -1.06   -1.32   -1.48   -1.34   -0.74    0.36    1.76    3.09    3.91    4.05    3.75    3.65    4.48
+   220.0    0.00   -0.09   -0.25   -0.43   -0.61   -0.81   -1.05   -1.31   -1.46   -1.32   -0.68    0.46    1.92    3.27    4.07    4.17    3.83    3.77    4.72
+   225.0    0.00   -0.10   -0.26   -0.44   -0.61   -0.81   -1.04   -1.30   -1.46   -1.30   -0.65    0.54    2.04    3.41    4.19    4.22    3.83    3.79    4.86
+   230.0    0.00   -0.11   -0.28   -0.45   -0.61   -0.80   -1.03   -1.29   -1.46   -1.30   -0.63    0.60    2.14    3.52    4.26    4.21    3.75    3.70    4.88
+   235.0    0.00   -0.12   -0.29   -0.46   -0.61   -0.79   -1.02   -1.29   -1.46   -1.31   -0.62    0.64    2.20    3.58    4.28    4.14    3.59    3.52    4.81
+   240.0    0.00   -0.12   -0.30   -0.47   -0.61   -0.78   -1.00   -1.28   -1.47   -1.33   -0.63    0.65    2.24    3.61    4.24    4.01    3.36    3.27    4.64
+   245.0    0.00   -0.13   -0.31   -0.47   -0.61   -0.77   -0.99   -1.28   -1.48   -1.35   -0.65    0.65    2.24    3.59    4.16    3.82    3.07    2.95    4.39
+   250.0    0.00   -0.14   -0.32   -0.48   -0.62   -0.76   -0.99   -1.28   -1.50   -1.37   -0.67    0.62    2.21    3.52    4.02    3.58    2.74    2.58    4.09
+   255.0    0.00   -0.14   -0.33   -0.49   -0.62   -0.77   -0.99   -1.29   -1.51   -1.40   -0.71    0.58    2.14    3.41    3.83    3.29    2.37    2.18    3.75
+   260.0    0.00   -0.14   -0.33   -0.50   -0.63   -0.77   -1.00   -1.30   -1.53   -1.42   -0.75    0.51    2.04    3.24    3.58    2.96    1.96    1.75    3.38
+   265.0    0.00   -0.15   -0.34   -0.51   -0.64   -0.78   -1.01   -1.31   -1.55   -1.46   -0.81    0.41    1.88    3.02    3.28    2.58    1.53    1.31    2.99
+   270.0    0.00   -0.15   -0.35   -0.52   -0.66   -0.80   -1.03   -1.33   -1.57   -1.50   -0.88    0.28    1.68    2.74    2.92    2.16    1.07    0.84    2.58
+   275.0    0.00   -0.15   -0.35   -0.53   -0.67   -0.82   -1.04   -1.35   -1.60   -1.54   -0.98    0.12    1.43    2.40    2.51    1.70    0.59    0.35    2.14
+   280.0    0.00   -0.15   -0.35   -0.54   -0.68   -0.84   -1.06   -1.37   -1.62   -1.60   -1.09   -0.08    1.13    2.01    2.06    1.21    0.08   -0.16    1.66
+   285.0    0.00   -0.15   -0.35   -0.54   -0.69   -0.85   -1.08   -1.38   -1.65   -1.66   -1.22   -0.31    0.79    1.57    1.56    0.69   -0.46   -0.72    1.14
+   290.0    0.00   -0.15   -0.35   -0.54   -0.70   -0.86   -1.08   -1.39   -1.67   -1.73   -1.37   -0.56    0.42    1.11    1.05    0.15   -1.02   -1.31    0.55
+   295.0    0.00   -0.14   -0.34   -0.54   -0.70   -0.86   -1.08   -1.39   -1.69   -1.80   -1.52   -0.83    0.04    0.64    0.53   -0.40   -1.60   -1.94   -0.10
+   300.0    0.00   -0.14   -0.33   -0.53   -0.69   -0.84   -1.06   -1.37   -1.70   -1.86   -1.68   -1.10   -0.34    0.18    0.02   -0.93   -2.18   -2.60   -0.80
+   305.0    0.00   -0.13   -0.32   -0.51   -0.67   -0.82   -1.03   -1.34   -1.69   -1.91   -1.82   -1.35   -0.69   -0.24   -0.44   -1.42   -2.74   -3.27   -1.55
+   310.0    0.00   -0.13   -0.31   -0.49   -0.63   -0.78   -0.98   -1.29   -1.66   -1.94   -1.94   -1.57   -1.01   -0.62   -0.84   -1.87   -3.27   -3.94   -2.32
+   315.0    0.00   -0.12   -0.29   -0.46   -0.59   -0.72   -0.91   -1.22   -1.61   -1.94   -2.02   -1.75   -1.25   -0.91   -1.17   -2.24   -3.75   -4.58   -3.08
+   320.0    0.00   -0.11   -0.27   -0.42   -0.54   -0.65   -0.83   -1.13   -1.54   -1.91   -2.05   -1.85   -1.42   -1.12   -1.41   -2.53   -4.15   -5.16   -3.79
+   325.0    0.00   -0.10   -0.25   -0.39   -0.48   -0.57   -0.72   -1.01   -1.43   -1.83   -2.03   -1.89   -1.51   -1.23   -1.55   -2.72   -4.46   -5.64   -4.42
+   330.0    0.00   -0.09   -0.23   -0.34   -0.41   -0.47   -0.60   -0.88   -1.29   -1.71   -1.94   -1.84   -1.49   -1.24   -1.58   -2.81   -4.66   -6.01   -4.94
+   335.0    0.00   -0.08   -0.20   -0.29   -0.34   -0.37   -0.47   -0.72   -1.12   -1.54   -1.79   -1.70   -1.38   -1.15   -1.52   -2.81   -4.76   -6.25   -5.32
+   340.0    0.00   -0.07   -0.17   -0.25   -0.26   -0.26   -0.33   -0.55   -0.92   -1.33   -1.56   -1.49   -1.17   -0.96   -1.36   -2.70   -4.73   -6.34   -5.54
+   345.0    0.00   -0.06   -0.15   -0.20   -0.19   -0.15   -0.18   -0.37   -0.70   -1.07   -1.28   -1.19   -0.88   -0.69   -1.12   -2.50   -4.59   -6.28   -5.59
+   350.0    0.00   -0.05   -0.12   -0.15   -0.12   -0.05   -0.04   -0.18   -0.47   -0.79   -0.95   -0.83   -0.51   -0.33   -0.80   -2.22   -4.35   -6.08   -5.47
+   355.0    0.00   -0.04   -0.10   -0.11   -0.05    0.05    0.09    0.00   -0.22   -0.48   -0.57   -0.41   -0.07    0.09   -0.41   -1.86   -4.00   -5.75   -5.21
+   360.0    0.00   -0.03   -0.08   -0.07    0.01    0.13    0.21    0.17    0.01   -0.16   -0.18    0.05    0.42    0.57    0.04   -1.43   -3.57   -5.30   -4.81
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TRMR8_GNSS3     NONE                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               5    02-FEB-10 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS05_1617                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+      0.93     -0.40     84.66                              NORTH / EAST / UP   
+   NOAZI    0.00    0.06    0.17    0.19   -0.03   -0.49   -1.03   -1.41   -1.47   -1.19   -0.75   -0.41   -0.35   -0.50   -0.58   -0.23    0.69    1.85    2.51
+     0.0    0.00   -0.01    0.02   -0.08   -0.42   -0.99   -1.59   -1.96   -1.89   -1.34   -0.50    0.33    0.86    1.04    1.06    1.19    1.63    2.22    2.44
+     5.0    0.00   -0.01    0.01   -0.09   -0.44   -1.01   -1.64   -2.05   -2.03   -1.54   -0.75    0.04    0.57    0.78    0.86    1.07    1.61    2.30    2.60
+    10.0    0.00   -0.02    0.00   -0.10   -0.45   -1.03   -1.68   -2.14   -2.17   -1.75   -1.03   -0.28    0.23    0.47    0.60    0.91    1.56    2.37    2.76
+    15.0    0.00   -0.02    0.00   -0.11   -0.45   -1.04   -1.71   -2.20   -2.30   -1.95   -1.30   -0.62   -0.13    0.10    0.28    0.68    1.47    2.42    2.93
+    20.0    0.00   -0.02    0.00   -0.11   -0.45   -1.04   -1.73   -2.25   -2.41   -2.13   -1.56   -0.95   -0.52   -0.30   -0.08    0.41    1.34    2.46    3.10
+    25.0    0.00   -0.02   -0.01   -0.11   -0.45   -1.04   -1.73   -2.28   -2.48   -2.27   -1.78   -1.26   -0.91   -0.72   -0.48    0.10    1.18    2.48    3.27
+    30.0    0.00   -0.02   -0.01   -0.10   -0.44   -1.02   -1.72   -2.28   -2.52   -2.37   -1.96   -1.54   -1.26   -1.13   -0.90   -0.24    0.98    2.47    3.43
+    35.0    0.00   -0.02    0.00   -0.09   -0.42   -1.00   -1.69   -2.26   -2.52   -2.42   -2.08   -1.75   -1.57   -1.52   -1.31   -0.60    0.75    2.43    3.57
+    40.0    0.00   -0.02    0.00   -0.08   -0.40   -0.97   -1.65   -2.22   -2.48   -2.41   -2.14   -1.89   -1.82   -1.85   -1.69   -0.95    0.50    2.35    3.67
+    45.0    0.00   -0.02    0.01   -0.07   -0.38   -0.94   -1.60   -2.15   -2.41   -2.36   -2.13   -1.95   -1.98   -2.11   -2.01   -1.28    0.24    2.23    3.72
+    50.0    0.00   -0.01    0.01   -0.06   -0.36   -0.90   -1.54   -2.07   -2.31   -2.25   -2.05   -1.93   -2.04   -2.27   -2.26   -1.57   -0.01    2.07    3.70
+    55.0    0.00   -0.01    0.02   -0.05   -0.34   -0.86   -1.48   -1.98   -2.20   -2.12   -1.91   -1.83   -2.01   -2.33   -2.41   -1.79   -0.25    1.88    3.62
+    60.0    0.00   -0.01    0.03   -0.03   -0.31   -0.82   -1.42   -1.89   -2.07   -1.95   -1.74   -1.67   -1.89   -2.29   -2.46   -1.93   -0.45    1.67    3.48
+    65.0    0.00    0.00    0.04   -0.01   -0.29   -0.78   -1.36   -1.80   -1.93   -1.78   -1.53   -1.45   -1.70   -2.15   -2.41   -1.97   -0.59    1.47    3.30
+    70.0    0.00    0.00    0.05    0.00   -0.26   -0.74   -1.30   -1.71   -1.81   -1.61   -1.31   -1.21   -1.45   -1.93   -2.26   -1.93   -0.66    1.30    3.10
+    75.0    0.00    0.01    0.06    0.02   -0.23   -0.70   -1.24   -1.63   -1.69   -1.45   -1.10   -0.95   -1.16   -1.65   -2.02   -1.79   -0.66    1.18    2.91
+    80.0    0.00    0.01    0.08    0.04   -0.20   -0.67   -1.19   -1.55   -1.59   -1.30   -0.91   -0.70   -0.86   -1.32   -1.72   -1.56   -0.56    1.12    2.76
+    85.0    0.00    0.02    0.09    0.07   -0.17   -0.62   -1.14   -1.49   -1.50   -1.18   -0.74   -0.46   -0.57   -0.98   -1.37   -1.28   -0.39    1.15    2.68
+    90.0    0.00    0.03    0.10    0.09   -0.14   -0.58   -1.09   -1.43   -1.42   -1.08   -0.59   -0.27   -0.30   -0.66   -1.02   -0.94   -0.15    1.26    2.67
+    95.0    0.00    0.03    0.12    0.12   -0.10   -0.53   -1.03   -1.37   -1.35   -1.00   -0.48   -0.11   -0.07   -0.36   -0.67   -0.59    0.15    1.44    2.75
+   100.0    0.00    0.04    0.14    0.15   -0.06   -0.48   -0.97   -1.30   -1.29   -0.93   -0.40    0.02    0.11   -0.10   -0.35   -0.25    0.47    1.68    2.90
+   105.0    0.00    0.05    0.15    0.18   -0.02   -0.43   -0.91   -1.24   -1.23   -0.86   -0.33    0.11    0.24    0.09   -0.09    0.06    0.78    1.96    3.10
+   110.0    0.00    0.05    0.17    0.21    0.03   -0.37   -0.84   -1.16   -1.16   -0.80   -0.27    0.17    0.34    0.23    0.11    0.32    1.06    2.22    3.32
+   115.0    0.00    0.06    0.19    0.24    0.08   -0.30   -0.76   -1.08   -1.08   -0.73   -0.22    0.22    0.39    0.32    0.24    0.50    1.28    2.45    3.53
+   120.0    0.00    0.07    0.21    0.27    0.12   -0.24   -0.69   -1.00   -0.99   -0.66   -0.16    0.26    0.42    0.35    0.30    0.59    1.40    2.59    3.67
+   125.0    0.00    0.08    0.22    0.30    0.17   -0.18   -0.61   -0.91   -0.90   -0.58   -0.09    0.30    0.43    0.34    0.29    0.59    1.43    2.64    3.72
+   130.0    0.00    0.08    0.24    0.33    0.21   -0.12   -0.53   -0.82   -0.81   -0.49   -0.02    0.34    0.43    0.31    0.22    0.50    1.35    2.57    3.65
+   135.0    0.00    0.09    0.25    0.35    0.25   -0.06   -0.46   -0.73   -0.71   -0.40    0.05    0.38    0.43    0.25    0.10    0.35    1.16    2.37    3.44
+   140.0    0.00    0.09    0.27    0.38    0.29   -0.01   -0.39   -0.65   -0.63   -0.32    0.12    0.42    0.42    0.17   -0.05    0.13    0.89    2.06    3.11
+   145.0    0.00    0.10    0.28    0.40    0.32    0.03   -0.34   -0.59   -0.56   -0.24    0.18    0.45    0.40    0.09   -0.21   -0.12    0.55    1.66    2.67
+   150.0    0.00    0.11    0.29    0.42    0.35    0.07   -0.30   -0.54   -0.50   -0.19    0.22    0.47    0.38    0.00   -0.38   -0.39    0.19    1.21    2.16
+   155.0    0.00    0.11    0.30    0.43    0.37    0.09   -0.27   -0.51   -0.47   -0.16    0.24    0.48    0.35   -0.08   -0.54   -0.64   -0.17    0.75    1.61
+   160.0    0.00    0.11    0.31    0.44    0.38    0.11   -0.25   -0.49   -0.46   -0.15    0.24    0.46    0.31   -0.16   -0.68   -0.87   -0.49    0.32    1.08
+   165.0    0.00    0.12    0.31    0.44    0.39    0.12   -0.24   -0.49   -0.46   -0.17    0.21    0.41    0.25   -0.24   -0.80   -1.04   -0.76   -0.05    0.62
+   170.0    0.00    0.12    0.31    0.44    0.38    0.11   -0.25   -0.50   -0.49   -0.22    0.15    0.34    0.18   -0.32   -0.88   -1.16   -0.94   -0.31    0.26
+   175.0    0.00    0.12    0.31    0.44    0.38    0.10   -0.27   -0.53   -0.54   -0.28    0.07    0.25    0.09   -0.39   -0.94   -1.22   -1.02   -0.45    0.03
+   180.0    0.00    0.12    0.31    0.44    0.36    0.08   -0.29   -0.57   -0.59   -0.36   -0.03    0.15    0.00   -0.46   -0.97   -1.22   -1.01   -0.47   -0.04
+   185.0    0.00    0.12    0.31    0.43    0.35    0.06   -0.33   -0.62   -0.66   -0.44   -0.13    0.03   -0.11   -0.52   -0.98   -1.16   -0.91   -0.35    0.04
+   190.0    0.00    0.12    0.31    0.41    0.32    0.02   -0.38   -0.68   -0.73   -0.54   -0.25   -0.09   -0.21   -0.59   -0.97   -1.07   -0.74   -0.13    0.26
+   195.0    0.00    0.12    0.30    0.40    0.30   -0.02   -0.43   -0.74   -0.81   -0.64   -0.36   -0.21   -0.33   -0.66   -0.97   -0.96   -0.51    0.18    0.61
+   200.0    0.00    0.12    0.29    0.38    0.27   -0.06   -0.49   -0.81   -0.90   -0.73   -0.48   -0.34   -0.44   -0.73   -0.96   -0.85   -0.26    0.56    1.04
+   205.0    0.00    0.12    0.29    0.36    0.23   -0.11   -0.55   -0.89   -0.98   -0.83   -0.59   -0.46   -0.56   -0.82   -0.98   -0.74   -0.01    0.96    1.53
+   210.0    0.00    0.12    0.28    0.34    0.20   -0.17   -0.62   -0.97   -1.07   -0.93   -0.70   -0.58   -0.68   -0.92   -1.01   -0.66    0.23    1.36    2.05
+   215.0    0.00    0.12    0.27    0.32    0.16   -0.22   -0.69   -1.05   -1.16   -1.03   -0.81   -0.70   -0.81   -1.04   -1.08   -0.62    0.43    1.74    2.55
+   220.0    0.00    0.12    0.26    0.31    0.13   -0.27   -0.76   -1.14   -1.26   -1.13   -0.92   -0.83   -0.95   -1.17   -1.17   -0.61    0.59    2.08    3.02
+   225.0    0.00    0.11    0.26    0.29    0.09   -0.32   -0.83   -1.22   -1.35   -1.24   -1.03   -0.96   -1.10   -1.33   -1.29   -0.64    0.71    2.36    3.42
+   230.0    0.00    0.11    0.25    0.27    0.07   -0.37   -0.90   -1.30   -1.45   -1.34   -1.15   -1.09   -1.25   -1.49   -1.43   -0.71    0.77    2.58    3.75
+   235.0    0.00    0.11    0.25    0.26    0.04   -0.41   -0.96   -1.38   -1.54   -1.44   -1.27   -1.23   -1.41   -1.65   -1.58   -0.79    0.80    2.73    3.98
+   240.0    0.00    0.11    0.24    0.25    0.02   -0.45   -1.01   -1.45   -1.62   -1.54   -1.38   -1.36   -1.55   -1.81   -1.72   -0.88    0.79    2.82    4.12
+   245.0    0.00    0.10    0.24    0.24    0.01   -0.47   -1.05   -1.51   -1.70   -1.63   -1.48   -1.47   -1.68   -1.94   -1.84   -0.97    0.76    2.84    4.16
+   250.0    0.00    0.10    0.23    0.24    0.00   -0.49   -1.08   -1.56   -1.76   -1.71   -1.57   -1.56   -1.77   -2.03   -1.92   -1.03    0.72    2.81    4.11
+   255.0    0.00    0.10    0.23    0.23   -0.01   -0.50   -1.10   -1.59   -1.81   -1.76   -1.63   -1.62   -1.82   -2.07   -1.95   -1.07    0.67    2.72    3.96
+   260.0    0.00    0.09    0.22    0.23   -0.01   -0.50   -1.11   -1.61   -1.83   -1.79   -1.65   -1.63   -1.82   -2.05   -1.93   -1.06    0.62    2.59    3.73
+   265.0    0.00    0.09    0.22    0.23   -0.01   -0.50   -1.11   -1.61   -1.84   -1.80   -1.64   -1.60   -1.75   -1.96   -1.84   -1.01    0.58    2.43    3.42
+   270.0    0.00    0.09    0.22    0.23   -0.01   -0.50   -1.10   -1.60   -1.83   -1.78   -1.60   -1.51   -1.62   -1.80   -1.68   -0.92    0.55    2.23    3.06
+   275.0    0.00    0.08    0.21    0.23    0.00   -0.49   -1.09   -1.59   -1.80   -1.73   -1.51   -1.37   -1.43   -1.57   -1.47   -0.78    0.54    2.02    2.66
+   280.0    0.00    0.08    0.21    0.22    0.00   -0.49   -1.08   -1.57   -1.76   -1.65   -1.38   -1.19   -1.19   -1.29   -1.21   -0.62    0.54    1.81    2.25
+   285.0    0.00    0.07    0.20    0.22   -0.01   -0.48   -1.07   -1.54   -1.71   -1.56   -1.23   -0.96   -0.90   -0.97   -0.91   -0.42    0.55    1.60    1.85
+   290.0    0.00    0.07    0.19    0.21   -0.01   -0.49   -1.06   -1.51   -1.65   -1.44   -1.05   -0.71   -0.58   -0.63   -0.60   -0.22    0.58    1.41    1.49
+   295.0    0.00    0.06    0.18    0.20   -0.03   -0.50   -1.06   -1.49   -1.58   -1.32   -0.85   -0.44   -0.25   -0.27   -0.28    0.00    0.62    1.26    1.18
+   300.0    0.00    0.06    0.17    0.18   -0.05   -0.51   -1.07   -1.47   -1.52   -1.19   -0.65   -0.16    0.08    0.07    0.03    0.20    0.68    1.15    0.94
+   305.0    0.00    0.05    0.16    0.16   -0.07   -0.54   -1.08   -1.45   -1.46   -1.07   -0.46    0.10    0.39    0.40    0.31    0.40    0.75    1.09    0.80
+   310.0    0.00    0.05    0.15    0.14   -0.10   -0.57   -1.10   -1.44   -1.40   -0.95   -0.27    0.35    0.68    0.69    0.57    0.58    0.83    1.08    0.74
+   315.0    0.00    0.04    0.13    0.12   -0.13   -0.60   -1.13   -1.44   -1.36   -0.85   -0.11    0.57    0.93    0.94    0.79    0.74    0.93    1.12    0.77
+   320.0    0.00    0.04    0.12    0.09   -0.16   -0.64   -1.16   -1.46   -1.33   -0.77    0.03    0.75    1.13    1.14    0.97    0.89    1.03    1.20    0.88
+   325.0    0.00    0.03    0.10    0.07   -0.20   -0.69   -1.20   -1.48   -1.32   -0.72    0.12    0.88    1.29    1.30    1.11    1.01    1.14    1.32    1.04
+   330.0    0.00    0.02    0.09    0.04   -0.24   -0.73   -1.25   -1.52   -1.33   -0.70    0.18    0.97    1.40    1.41    1.22    1.11    1.25    1.46    1.24
+   335.0    0.00    0.02    0.08    0.02   -0.28   -0.78   -1.30   -1.56   -1.37   -0.71    0.19    1.00    1.45    1.48    1.29    1.19    1.35    1.61    1.47
+   340.0    0.00    0.01    0.06   -0.01   -0.31   -0.83   -1.36   -1.63   -1.43   -0.77    0.15    0.98    1.45    1.50    1.33    1.25    1.45    1.76    1.69
+   345.0    0.00    0.01    0.05   -0.03   -0.35   -0.87   -1.42   -1.70   -1.52   -0.86    0.06    0.90    1.39    1.47    1.33    1.29    1.53    1.90    1.90
+   350.0    0.00    0.00    0.04   -0.05   -0.38   -0.92   -1.48   -1.78   -1.62   -0.99   -0.08    0.76    1.27    1.38    1.29    1.29    1.59    2.02    2.10
+   355.0    0.00    0.00    0.02   -0.07   -0.40   -0.96   -1.54   -1.87   -1.75   -1.15   -0.27    0.57    1.10    1.24    1.20    1.26    1.62    2.13    2.28
+   360.0    0.00   -0.01    0.02   -0.08   -0.42   -0.99   -1.59   -1.96   -1.89   -1.34   -0.50    0.33    0.86    1.04    1.06    1.19    1.63    2.22    2.44
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.92     -0.37     73.39                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.03   -0.10   -0.18   -0.27   -0.38   -0.57   -0.84   -1.11   -1.19   -0.89   -0.18    0.75    1.49    1.55    0.78   -0.44   -1.07    0.23
+     0.0    0.00   -0.05   -0.12   -0.15   -0.09    0.04    0.15    0.12   -0.09   -0.38   -0.59   -0.55   -0.29   -0.08   -0.34   -1.40   -3.09   -4.45   -3.72
+     5.0    0.00   -0.04   -0.10   -0.11   -0.02    0.14    0.28    0.30    0.15   -0.07   -0.21   -0.11    0.19    0.42    0.14   -0.97   -2.73   -4.16   -3.49
+    10.0    0.00   -0.03   -0.08   -0.07    0.04    0.23    0.40    0.46    0.37    0.23    0.18    0.36    0.73    0.98    0.67   -0.48   -2.28   -3.74   -3.08
+    15.0    0.00   -0.02   -0.05   -0.03    0.09    0.29    0.49    0.59    0.56    0.50    0.56    0.85    1.29    1.58    1.26    0.07   -1.76   -3.20   -2.50
+    20.0    0.00   -0.01   -0.03    0.00    0.14    0.34    0.55    0.68    0.71    0.74    0.92    1.33    1.87    2.20    1.88    0.66   -1.17   -2.56   -1.79
+    25.0    0.00    0.00   -0.01    0.03    0.17    0.37    0.58    0.72    0.80    0.93    1.23    1.77    2.42    2.81    2.51    1.28   -0.53   -1.84   -0.96
+    30.0    0.00    0.00    0.00    0.05    0.19    0.38    0.58    0.72    0.84    1.05    1.48    2.16    2.93    3.40    3.12    1.90    0.14   -1.07   -0.06
+    35.0    0.00    0.01    0.02    0.07    0.20    0.37    0.55    0.68    0.83    1.11    1.65    2.47    3.37    3.93    3.70    2.51    0.81   -0.27    0.87
+    40.0    0.00    0.02    0.03    0.08    0.19    0.35    0.49    0.61    0.76    1.09    1.73    2.68    3.71    4.37    4.20    3.07    1.45    0.51    1.77
+    45.0    0.00    0.02    0.04    0.09    0.18    0.31    0.41    0.49    0.64    1.00    1.72    2.78    3.92    4.68    4.60    3.54    2.03    1.22    2.60
+    50.0    0.00    0.03    0.05    0.09    0.17    0.26    0.32    0.36    0.47    0.84    1.61    2.75    4.00    4.86    4.87    3.90    2.50    1.83    3.31
+    55.0    0.00    0.03    0.05    0.08    0.14    0.20    0.21    0.20    0.27    0.62    1.40    2.60    3.93    4.88    4.98    4.12    2.83    2.28    3.85
+    60.0    0.00    0.04    0.05    0.08    0.12    0.14    0.10    0.03    0.05    0.35    1.11    2.33    3.71    4.74    4.93    4.16    2.98    2.55    4.19
+    65.0    0.00    0.04    0.05    0.07    0.09    0.07   -0.01   -0.14   -0.20    0.04    0.75    1.96    3.36    4.44    4.70    4.02    2.94    2.61    4.31
+    70.0    0.00    0.04    0.05    0.05    0.06    0.01   -0.12   -0.32   -0.46   -0.30    0.34    1.50    2.89    4.00    4.31    3.70    2.68    2.42    4.19
+    75.0    0.00    0.04    0.05    0.04    0.02   -0.05   -0.23   -0.49   -0.71   -0.65   -0.10    0.98    2.34    3.44    3.78    3.20    2.22    2.01    3.83
+    80.0    0.00    0.04    0.04    0.02   -0.01   -0.11   -0.33   -0.65   -0.96   -1.00   -0.56    0.44    1.73    2.80    3.13    2.55    1.58    1.38    3.25
+    85.0    0.00    0.04    0.03    0.00   -0.05   -0.17   -0.42   -0.80   -1.19   -1.34   -1.00   -0.11    1.10    2.12    2.41    1.79    0.78    0.56    2.47
+    90.0    0.00    0.04    0.03   -0.02   -0.08   -0.22   -0.51   -0.94   -1.40   -1.64   -1.41   -0.63    0.50    1.44    1.66    0.98   -0.12   -0.40    1.53
+    95.0    0.00    0.04    0.02   -0.04   -0.12   -0.28   -0.59   -1.06   -1.58   -1.91   -1.78   -1.09   -0.06    0.80    0.94    0.15   -1.05   -1.43    0.48
+   100.0    0.00    0.04    0.01   -0.06   -0.15   -0.33   -0.66   -1.17   -1.74   -2.13   -2.08   -1.48   -0.54    0.23    0.27   -0.63   -1.97   -2.48   -0.61
+   105.0    0.00    0.03    0.00   -0.08   -0.18   -0.37   -0.72   -1.25   -1.86   -2.31   -2.32   -1.79   -0.92   -0.23   -0.29   -1.32   -2.81   -3.47   -1.68
+   110.0    0.00    0.03   -0.01   -0.10   -0.21   -0.41   -0.78   -1.32   -1.95   -2.43   -2.48   -2.01   -1.20   -0.58   -0.72   -1.86   -3.51   -4.34   -2.67
+   115.0    0.00    0.03   -0.02   -0.11   -0.24   -0.45   -0.82   -1.37   -2.01   -2.51   -2.58   -2.14   -1.37   -0.80   -1.01   -2.25   -4.02   -5.03   -3.51
+   120.0    0.00    0.03   -0.03   -0.13   -0.27   -0.48   -0.85   -1.41   -2.04   -2.54   -2.62   -2.19   -1.45   -0.90   -1.15   -2.45   -4.34   -5.50   -4.16
+   125.0    0.00    0.02   -0.04   -0.15   -0.29   -0.51   -0.88   -1.42   -2.05   -2.53   -2.60   -2.17   -1.43   -0.89   -1.15   -2.47   -4.43   -5.73   -4.57
+   130.0    0.00    0.02   -0.05   -0.16   -0.31   -0.53   -0.89   -1.42   -2.03   -2.49   -2.55   -2.10   -1.35   -0.79   -1.02   -2.33   -4.31   -5.71   -4.73
+   135.0    0.00    0.01   -0.06   -0.17   -0.32   -0.54   -0.90   -1.41   -1.99   -2.43   -2.46   -1.99   -1.22   -0.62   -0.79   -2.04   -3.99   -5.44   -4.62
+   140.0    0.00    0.01   -0.06   -0.18   -0.33   -0.55   -0.89   -1.39   -1.95   -2.35   -2.36   -1.86   -1.05   -0.40   -0.49   -1.64   -3.51   -4.96   -4.25
+   145.0    0.00    0.01   -0.07   -0.19   -0.34   -0.55   -0.89   -1.36   -1.89   -2.27   -2.24   -1.72   -0.86   -0.14   -0.13   -1.15   -2.91   -4.31   -3.66
+   150.0    0.00    0.00   -0.08   -0.20   -0.34   -0.55   -0.87   -1.33   -1.84   -2.18   -2.13   -1.57   -0.67    0.12    0.24   -0.62   -2.23   -3.52   -2.89
+   155.0    0.00    0.00   -0.08   -0.20   -0.35   -0.55   -0.86   -1.30   -1.78   -2.10   -2.01   -1.42   -0.48    0.39    0.63   -0.08   -1.50   -2.66   -1.99
+   160.0    0.00    0.00   -0.09   -0.21   -0.35   -0.55   -0.85   -1.27   -1.73   -2.02   -1.90   -1.28   -0.29    0.64    1.00    0.45   -0.78   -1.76   -1.01
+   165.0    0.00   -0.01   -0.09   -0.21   -0.35   -0.54   -0.84   -1.25   -1.68   -1.94   -1.79   -1.14   -0.11    0.89    1.35    0.96   -0.08   -0.88   -0.02
+   170.0    0.00   -0.01   -0.10   -0.22   -0.36   -0.54   -0.83   -1.23   -1.64   -1.87   -1.69   -1.00    0.07    1.12    1.68    1.43    0.57   -0.05    0.94
+   175.0    0.00   -0.02   -0.10   -0.22   -0.36   -0.55   -0.83   -1.21   -1.60   -1.79   -1.58   -0.85    0.25    1.35    1.98    1.85    1.15    0.71    1.82
+   180.0    0.00   -0.02   -0.11   -0.23   -0.37   -0.56   -0.83   -1.20   -1.56   -1.72   -1.47   -0.71    0.43    1.56    2.25    2.22    1.66    1.37    2.58
+   185.0    0.00   -0.03   -0.12   -0.24   -0.38   -0.57   -0.84   -1.19   -1.53   -1.65   -1.35   -0.56    0.61    1.77    2.49    2.54    2.09    1.93    3.21
+   190.0    0.00   -0.03   -0.12   -0.25   -0.40   -0.59   -0.86   -1.19   -1.49   -1.57   -1.23   -0.40    0.79    1.97    2.72    2.81    2.45    2.38    3.70
+   195.0    0.00   -0.04   -0.13   -0.26   -0.41   -0.61   -0.87   -1.19   -1.46   -1.50   -1.11   -0.24    0.97    2.15    2.91    3.03    2.73    2.73    4.05
+   200.0    0.00   -0.04   -0.14   -0.28   -0.44   -0.63   -0.90   -1.20   -1.43   -1.43   -0.99   -0.09    1.14    2.33    3.08    3.21    2.94    2.98    4.27
+   205.0    0.00   -0.05   -0.15   -0.29   -0.46   -0.66   -0.92   -1.21   -1.41   -1.36   -0.88    0.07    1.31    2.49    3.22    3.34    3.08    3.14    4.38
+   210.0    0.00   -0.05   -0.16   -0.31   -0.48   -0.69   -0.95   -1.22   -1.39   -1.30   -0.77    0.21    1.46    2.63    3.33    3.42    3.16    3.21    4.40
+   215.0    0.00   -0.06   -0.17   -0.32   -0.51   -0.73   -0.99   -1.24   -1.39   -1.25   -0.67    0.34    1.60    2.75    3.42    3.46    3.16    3.21    4.36
+   220.0    0.00   -0.06   -0.18   -0.34   -0.53   -0.76   -1.02   -1.27   -1.39   -1.21   -0.59    0.45    1.73    2.85    3.47    3.45    3.11    3.14    4.26
+   225.0    0.00   -0.07   -0.19   -0.36   -0.56   -0.79   -1.05   -1.30   -1.40   -1.18   -0.53    0.55    1.83    2.93    3.49    3.40    3.00    3.01    4.13
+   230.0    0.00   -0.07   -0.20   -0.38   -0.58   -0.82   -1.09   -1.33   -1.41   -1.18   -0.49    0.62    1.92    2.99    3.48    3.30    2.84    2.83    3.97
+   235.0    0.00   -0.08   -0.21   -0.39   -0.60   -0.85   -1.12   -1.36   -1.44   -1.19   -0.47    0.68    1.98    3.03    3.45    3.18    2.63    2.60    3.81
+   240.0    0.00   -0.08   -0.22   -0.41   -0.62   -0.87   -1.15   -1.40   -1.47   -1.21   -0.46    0.71    2.02    3.05    3.40    3.03    2.39    2.34    3.64
+   245.0    0.00   -0.09   -0.23   -0.42   -0.64   -0.89   -1.17   -1.43   -1.51   -1.24   -0.48    0.71    2.04    3.05    3.33    2.85    2.12    2.06    3.46
+   250.0    0.00   -0.09   -0.24   -0.43   -0.65   -0.90   -1.19   -1.45   -1.55   -1.28   -0.51    0.70    2.04    3.02    3.23    2.66    1.84    1.76    3.29
+   255.0    0.00   -0.10   -0.25   -0.44   -0.66   -0.91   -1.20   -1.47   -1.58   -1.32   -0.56    0.65    2.00    2.96    3.11    2.44    1.54    1.46    3.11
+   260.0    0.00   -0.10   -0.26   -0.45   -0.66   -0.91   -1.20   -1.48   -1.61   -1.37   -0.62    0.59    1.92    2.86    2.97    2.22    1.24    1.15    2.93
+   265.0    0.00   -0.11   -0.27   -0.46   -0.67   -0.91   -1.19   -1.49   -1.63   -1.42   -0.70    0.49    1.81    2.73    2.78    1.97    0.94    0.85    2.76
+   270.0    0.00   -0.11   -0.28   -0.47   -0.67   -0.90   -1.18   -1.48   -1.65   -1.48   -0.79    0.37    1.66    2.54    2.56    1.70    0.62    0.55    2.58
+   275.0    0.00   -0.11   -0.28   -0.47   -0.67   -0.89   -1.17   -1.47   -1.66   -1.53   -0.89    0.21    1.46    2.30    2.29    1.40    0.31    0.25    2.39
+   280.0    0.00   -0.12   -0.29   -0.48   -0.67   -0.88   -1.15   -1.45   -1.67   -1.58   -1.01    0.03    1.21    2.02    1.97    1.07   -0.02   -0.05    2.19
+   285.0    0.00   -0.12   -0.29   -0.48   -0.66   -0.86   -1.12   -1.44   -1.68   -1.64   -1.14   -0.18    0.93    1.68    1.62    0.71   -0.37   -0.37    1.97
+   290.0    0.00   -0.12   -0.30   -0.49   -0.66   -0.85   -1.10   -1.41   -1.68   -1.69   -1.27   -0.41    0.61    1.31    1.22    0.32   -0.73   -0.69    1.72
+   295.0    0.00   -0.12   -0.30   -0.49   -0.66   -0.84   -1.08   -1.39   -1.68   -1.75   -1.41   -0.66    0.27    0.90    0.80   -0.09   -1.11   -1.04    1.43
+   300.0    0.00   -0.12   -0.30   -0.48   -0.65   -0.82   -1.05   -1.36   -1.68   -1.80   -1.56   -0.90   -0.08    0.49    0.36   -0.50   -1.50   -1.41    1.10
+   305.0    0.00   -0.12   -0.30   -0.48   -0.64   -0.80   -1.02   -1.33   -1.67   -1.85   -1.69   -1.15   -0.42    0.08   -0.07   -0.91   -1.89   -1.81    0.71
+   310.0    0.00   -0.12   -0.29   -0.47   -0.62   -0.77   -0.98   -1.29   -1.65   -1.88   -1.81   -1.37   -0.74   -0.31   -0.47   -1.30   -2.28   -2.23    0.26
+   315.0    0.00   -0.11   -0.29   -0.46   -0.60   -0.74   -0.93   -1.24   -1.61   -1.90   -1.91   -1.57   -1.03   -0.65   -0.83   -1.65   -2.64   -2.65   -0.24
+   320.0    0.00   -0.11   -0.28   -0.44   -0.57   -0.69   -0.87   -1.17   -1.56   -1.88   -1.97   -1.72   -1.26   -0.94   -1.12   -1.95   -2.97   -3.08   -0.79
+   325.0    0.00   -0.10   -0.26   -0.42   -0.54   -0.64   -0.79   -1.08   -1.47   -1.84   -1.99   -1.82   -1.44   -1.15   -1.34   -2.18   -3.25   -3.49   -1.36
+   330.0    0.00   -0.10   -0.25   -0.40   -0.49   -0.57   -0.70   -0.96   -1.36   -1.75   -1.96   -1.86   -1.53   -1.27   -1.48   -2.32   -3.47   -3.87   -1.94
+   335.0    0.00   -0.09   -0.23   -0.36   -0.44   -0.48   -0.58   -0.82   -1.21   -1.62   -1.87   -1.83   -1.55   -1.31   -1.52   -2.39   -3.62   -4.19   -2.48
+   340.0    0.00   -0.08   -0.21   -0.33   -0.38   -0.39   -0.45   -0.66   -1.03   -1.45   -1.73   -1.72   -1.47   -1.25   -1.46   -2.36   -3.69   -4.45   -2.97
+   345.0    0.00   -0.07   -0.19   -0.29   -0.31   -0.29   -0.31   -0.48   -0.82   -1.23   -1.52   -1.54   -1.31   -1.09   -1.31   -2.25   -3.67   -4.61   -3.37
+   350.0    0.00   -0.07   -0.17   -0.24   -0.24   -0.18   -0.16   -0.28   -0.59   -0.97   -1.26   -1.28   -1.05   -0.84   -1.07   -2.04   -3.57   -4.68   -3.64
+   355.0    0.00   -0.06   -0.15   -0.20   -0.16   -0.07    0.00   -0.08   -0.34   -0.69   -0.94   -0.95   -0.71   -0.50   -0.75   -1.76   -3.37   -4.63   -3.76
+   360.0    0.00   -0.05   -0.12   -0.15   -0.09    0.04    0.15    0.12   -0.09   -0.38   -0.59   -0.55   -0.29   -0.08   -0.34   -1.40   -3.09   -4.45   -3.72
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
Index: branches/BNC_LM/IGS_08.ATX
===================================================================
--- branches/BNC_LM/IGS_08.ATX	(revision 3570)
+++ branches/BNC_LM/IGS_08.ATX	(revision 3570)
@@ -0,0 +1,33682 @@
+     1.3            M                                       ANTEX VERSION / SYST
+A                                                           PCV TYPE / REFANT   
+########################################################### COMMENT             
+GPS satellite antenna corrections:                          COMMENT             
+  - z-offsets:                                              COMMENT             
+    + satellite-specific                                    COMMENT             
+    + based on reprocessed (1994-2007) and operational      COMMENT             
+      (2008-2010) AC SINEX files                            COMMENT             
+    + solutions aligned to ITRF2008                         COMMENT             
+    + unweighted mean of five ACs (CODE, ESA, GFZ, MIT,     COMMENT             
+      NRCan)                                                COMMENT             
+    + analyzed and combined by IGN and TUM                  COMMENT             
+    + L1 and L2 set to the results for the ionosphere-free  COMMENT             
+      linear combination                                    COMMENT             
+    + block-specific values for historical satellites       COMMENT             
+      (active prior to 1994)                                COMMENT             
+  - phase center variations:                                COMMENT             
+    + block-specific                                        COMMENT             
+    + purely nadir-dependent (no azimuth-dependence)        COMMENT             
+    + maximum nadir angle: 14 degrees                       COMMENT             
+    + adopted from igs05.atx                                COMMENT             
+    + solutions aligned to IGb00                            COMMENT             
+    + unweighted mean of two ACs (GFZ, TUM)                 COMMENT             
+    + L1 and L2 set to the results for the ionosphere-free  COMMENT             
+      linear combination                                    COMMENT             
+    + Block IIF: solutions aligned to IGS08, unweighted     COMMENT             
+      mean of CODE and ESOC                                 COMMENT             
+  - x- and y-offsets:                                       COMMENT             
+    + block-specific                                        COMMENT             
+    + based on manufacturer information                     COMMENT             
+                                                            COMMENT             
+GLONASS satellite antenna corrections:                      COMMENT             
+  - z-offsets:                                              COMMENT             
+    + satellite-specific                                    COMMENT             
+    + based on reprocessed CODE (2003-2011) and ESOC        COMMENT             
+      (2008-2011) solutions                                 COMMENT             
+    + solutions aligned to ITRF2008                         COMMENT             
+    + L1 and L2 set to the results for the ionosphere-free  COMMENT             
+      linear combination                                    COMMENT             
+    + block-specific values for historical satellites       COMMENT             
+      (active between 1998 and 2003)                        COMMENT             
+  - phase center variations:                                COMMENT             
+    + block-specific (common parameters for GLONASS and     COMMENT             
+      GLONASS-M), satellite-specific values for R714        COMMENT             
+    + purely nadir-dependent (no azimuth-dependence)        COMMENT             
+    + maximum nadir angle: 15 degrees                       COMMENT             
+    + solutions aligned to ITRF2008                         COMMENT             
+    + unweighted mean of two ACs (CODE, ESOC)               COMMENT             
+    + L1 and L2 set to the results for the ionosphere-free  COMMENT             
+      linear combination                                    COMMENT             
+  - x- and y-offsets:                                       COMMENT             
+    + block-specific                                        COMMENT             
+    + based on manufacturer information                     COMMENT             
+                                                            COMMENT             
+Receiver antenna corrections:                               COMMENT             
+  - absolute elevation- and azimuth-dependent corrections   COMMENT             
+    from robot calibrations in the field performed by       COMMENT             
+    Geo++ GmbH for GPS and, to some extent, for GLONASS     COMMENT             
+    (http://gnpcvdb.geopp.de)                               COMMENT             
+  - purely elevation-dependent corrections from relative    COMMENT             
+    field calibrations performed by NGS and/or other        COMMENT             
+    institutions; converted to absolute corrections by      COMMENT             
+    adding                                                  COMMENT             
+      d_offset (AOAD/M_T_abs - AOAD/M_T_rel)  and           COMMENT             
+      d_pattern (AOAD/M_T_abs - AOAD/M_T_rel)               COMMENT             
+    (http://www.ngs.noaa.gov/ANTCAL,                        COMMENT             
+     ftp://igs.org/igscb/station/general/igs_01.pcv)        COMMENT             
+  - IMPORTANT hints:                                        COMMENT             
+    If no corrections are available for a combination of an COMMENT             
+    antenna with one specific radome, the values for the    COMMENT             
+    corresponding antenna without a radome (radome code:    COMMENT             
+    NONE) are used within the IGS.                          COMMENT             
+    If no corrections for the GLONASS frequencies are       COMMENT             
+    available, the values for the GPS frequencies are used  COMMENT             
+    within the IGS instead.                                 COMMENT             
+                                                            COMMENT             
+References:                                                 COMMENT             
+  Rothacher M, Schmid R (2010) ANTEX: The Antenna Exchange  COMMENT             
+  Format, Version 1.4 (ftp://igs.org/igscb/station/general/ COMMENT             
+  antex14.txt)                                              COMMENT             
+  Schmid R (2011) Upcoming switch to IGS08/igs08.atx -      COMMENT             
+  Details on igs08.atx. IGSMAIL-6355 (http://igs.org/       COMMENT             
+  pipermail/igsmail/2011/006347.html)                       COMMENT             
+                                                            COMMENT             
+Changes:                                                    COMMENT             
+  week 1645  Added G063                                     COMMENT             
+  week 1644  Decommission date: G035 (G01)                  COMMENT             
+             Added ASH701946.2     SNOW                     COMMENT             
+  week 1643  z-offset UPDATED: R801                         COMMENT             
+             Added TRM59900.00     NONE                     COMMENT             
+                   TRM59900.00     SCIS                     COMMENT             
+  week 1639  Added G035 (G01)                               COMMENT             
+             Decommission date: G049                        COMMENT             
+  week 1636  Added APSAPS-3        NONE                     COMMENT             
+                   LEIGG02PLUS     NONE                     COMMENT             
+                   LEIGS08         NONE                     COMMENT             
+                   LEIGS12         NONE                     COMMENT             
+                   TPSPG_A1+GP     NONE                     COMMENT             
+  week 1633  Added R801 (R04)                               COMMENT             
+             Added JAVRINGANT_DM   JVDM                     COMMENT             
+                   NAX3G+C         NONE                     COMMENT             
+                   STXS9SA7224V3.0 NONE                     COMMENT             
+                                                            COMMENT             
+Major changes w.r.t. igs05.atx:                             COMMENT             
+  - satellite antenna corrections consistent with IGS08     COMMENT             
+  - satellite antenna z-offsets based on the results of     COMMENT             
+    more ACs (GPS: 5 instead of 2, GLONASS: 2 instead of 1) COMMENT             
+  - satellite antenna z-offsets no longer trend-corrected   COMMENT             
+  - bigger maximum nadir angle for GLONASS satellite        COMMENT             
+    antenna corrections (15 instead of 14 degrees)          COMMENT             
+  - information on historical satellites                    COMMENT             
+  - GLONASS-specific receiver antenna corrections           COMMENT             
+  - type-specific robot-based values updated with results   COMMENT             
+    from recent individual antenna calibrations             COMMENT             
+  - conversion of relative receiver antenna corrections     COMMENT             
+    with updated AOAD/M_T values                            COMMENT             
+  - additional ROBOT calibrations:                          COMMENT             
+      ASH701941.B     SCIS                                  COMMENT             
+      ASH701945C_M    NONE                                  COMMENT             
+      ASH701945C_M    OLGA                                  COMMENT             
+      ASH701945E_M    NONE                                  COMMENT             
+      ASH701945E_M    SNOW                                  COMMENT             
+      ASH701945G_M    SNOW                                  COMMENT             
+      LEIAX1202GG     NONE                                  COMMENT             
+      NOV503+CR       SPKE                                  COMMENT             
+      NOV600          NONE                                  COMMENT             
+      TPSCR3_GGD      NONE                                  COMMENT             
+      TPSCR3_GGD      CONE                                  COMMENT             
+      TRM29659.00     SCIS                                  COMMENT             
+      TRM29659.00     SCIT                                  COMMENT             
+      TRM39105.00     NONE                                  COMMENT             
+      TRM41249.00     TZGD                                  COMMENT             
+  - additional COPIED calibrations:                         COMMENT             
+      ASH700228B      NONE                                  COMMENT             
+      ASH700228E      NONE                                  COMMENT             
+      ASH700718A      NONE                                  COMMENT             
+      ASH700936A_M    SNOW                                  COMMENT             
+      ASH700936E_C    SNOW                                  COMMENT             
+      ASH701945B_M    SNOW                                  COMMENT             
+      ASH701945D_M    SNOW                                  COMMENT             
+      LEIAS05         NONE                                  COMMENT             
+      LEIAT202-GP     NONE                                  COMMENT             
+  - FIELD (NGS) instead of CONVERTED (igs_01.pcv):          COMMENT             
+      ASH700228C      NONE                                  COMMENT             
+      LEISR299_INT    NONE                                  COMMENT             
+      LEISR399_INT    NONE                                  COMMENT             
+  - antenna types removed:                                  COMMENT             
+      SPP571908273    NONE                                  COMMENT             
+      SPP571908273    SPKE                                  COMMENT             
+                                                            COMMENT             
+Compiled by Ralf Schmid (TUM), e-mail: schmid@bv.tum.de     COMMENT             
+########################################################### COMMENT             
+                                                            END OF HEADER       
+                                                            START OF ANTENNA    
+BLOCK IIA           G01                 G032      1992-079A TYPE / SERIAL NO    
+                    COD/EMR/ESA/GFZ/MIT      0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  1992    11    22     0     0    0.0000000                 VALID FROM          
+  2008    10    16    23    59   59.9999999                 VALID UNTIL         
+IGS08_1645                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+    279.00      0.00   2380.80                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+    279.00      0.00   2380.80                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK IIA           G01                 G037      1993-032A TYPE / SERIAL NO    
+                    COD/EMR/ESA/GFZ/MIT      0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2008    10    23     0     0    0.0000000                 VALID FROM          
+  2009     1     6    23    59   59.9999999                 VALID UNTIL         
+IGS08_1645                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+    279.00      0.00   2352.20                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+    279.00      0.00   2352.20                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK IIR-M         G01                 G049      2009-014A TYPE / SERIAL NO    
+                    COD/EMR/ESA/GFZ/MIT      0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2009     3    24     0     0    0.0000000                 VALID FROM          
+  2011     5     6    23    59   59.9999999                 VALID UNTIL         
+IGS08_1645                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+      0.00      0.00    965.60                              NORTH / EAST / UP   
+   NOAZI   10.70   10.10    8.00    4.60    0.50   -3.80   -7.50   -9.70  -10.30   -9.50   -7.40   -4.10    0.30    6.00   12.10
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.00      0.00    965.60                              NORTH / EAST / UP   
+   NOAZI   10.70   10.10    8.00    4.60    0.50   -3.80   -7.50   -9.70  -10.30   -9.50   -7.40   -4.10    0.30    6.00   12.10
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK IIA           G01                 G035      1993-054A TYPE / SERIAL NO    
+                    COD/EMR/ESA/GFZ/MIT      0    06-JUN-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2011     6     2     0     0    0.0000000                 VALID FROM          
+  2011     7    12    23    59   59.9999999                 VALID UNTIL         
+IGS08_1645                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+    279.00      0.00   2622.00                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+    279.00      0.00   2622.00                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK IIF           G01                 G063      2011-036A TYPE / SERIAL NO    
+                                             0    18-JUL-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2011     7    13     0     0    0.0000000                 VALID FROM          
+IGS08_1645                                                  SINEX CODE          
+ATTENTION! PRELIMINARY PHASE CENTER CORRECTIONS!            COMMENT             
+   G01                                                      START OF FREQUENCY  
+    394.00      0.00   1650.00                              NORTH / EAST / UP   
+   NOAZI    6.10    4.40    2.80    1.30   -0.20   -1.40   -2.80   -3.90   -4.40   -4.40   -3.70   -2.30   -0.20    3.00    5.70
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+    394.00      0.00   1650.00                              NORTH / EAST / UP   
+   NOAZI    6.10    4.40    2.80    1.30   -0.20   -1.40   -2.80   -3.90   -4.40   -4.40   -3.70   -2.30   -0.20    3.00    5.70
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK II            G02                 G013      1989-044A TYPE / SERIAL NO    
+                    COD/EMR/ESA/GFZ/MIT      0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  1989     6    10     0     0    0.0000000                 VALID FROM          
+  2004     5    12    23    59   59.9999999                 VALID UNTIL         
+IGS08_1645                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+    279.00      0.00   2712.20                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+    279.00      0.00   2712.20                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK IIR-B         G02                 G061      2004-045A TYPE / SERIAL NO    
+                    COD/EMR/ESA/GFZ/MIT      0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2004    11     6     0     0    0.0000000                 VALID FROM          
+IGS08_1645                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+      0.00      0.00    778.60                              NORTH / EAST / UP   
+   NOAZI   10.70   10.10    8.00    4.60    0.50   -3.80   -7.50   -9.70  -10.30   -9.50   -7.40   -4.10    0.30    6.00   12.10
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.00      0.00    778.60                              NORTH / EAST / UP   
+   NOAZI   10.70   10.10    8.00    4.60    0.50   -3.80   -7.50   -9.70  -10.30   -9.50   -7.40   -4.10    0.30    6.00   12.10
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK I             G03                 G011      1985-093A TYPE / SERIAL NO    
+                    COD/GFZ                  0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  1985    10     9     0     0    0.0000000                 VALID FROM          
+  1994     4    17    23    59   59.9999999                 VALID UNTIL         
+IGS08_1645                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+    210.00      0.00   1923.90                              NORTH / EAST / UP   
+   NOAZI   -1.00   -2.60   -1.20   -0.90    0.50    1.40    2.00    2.00    1.70    0.50   -0.10   -0.60   -0.70   -0.60   -0.30
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+    210.00      0.00   1923.90                              NORTH / EAST / UP   
+   NOAZI   -1.00   -2.60   -1.20   -0.90    0.50    1.40    2.00    2.00    1.70    0.50   -0.10   -0.60   -0.70   -0.60   -0.30
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK IIA           G03                 G033      1996-019A TYPE / SERIAL NO    
+                    COD/EMR/ESA/GFZ/MIT      0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  1996     3    28     0     0    0.0000000                 VALID FROM          
+IGS08_1645                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+    279.00      0.00   2792.60                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+    279.00      0.00   2792.60                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK I             G04                 G001      1978-020A TYPE / SERIAL NO    
+                                             0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  1978     2    22     0     0    0.0000000                 VALID FROM          
+  1985     7    17    23    59   59.9999999                 VALID UNTIL         
+IGS08_1645                                                  SINEX CODE          
+ATTENTION! ROUNDED BLOCK MEAN Z-OFFSET VALUE!               COMMENT             
+   G01                                                      START OF FREQUENCY  
+    210.00      0.00   1950.00                              NORTH / EAST / UP   
+   NOAZI   -1.00   -2.60   -1.20   -0.90    0.50    1.40    2.00    2.00    1.70    0.50   -0.10   -0.60   -0.70   -0.60   -0.30
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+    210.00      0.00   1950.00                              NORTH / EAST / UP   
+   NOAZI   -1.00   -2.60   -1.20   -0.90    0.50    1.40    2.00    2.00    1.70    0.50   -0.10   -0.60   -0.70   -0.60   -0.30
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK IIA           G04                 G034      1993-068A TYPE / SERIAL NO    
+                    COD/EMR/ESA/GFZ/MIT      0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  1993    10    26     0     0    0.0000000                 VALID FROM          
+IGS08_1645                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+    279.00      0.00   2420.00                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+    279.00      0.00   2420.00                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK I             G05                 G005      1980-011A TYPE / SERIAL NO    
+                                             0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  1980     2     9     0     0    0.0000000                 VALID FROM          
+  1984     5    11    23    59   59.9999999                 VALID UNTIL         
+IGS08_1645                                                  SINEX CODE          
+ATTENTION! ROUNDED BLOCK MEAN Z-OFFSET VALUE!               COMMENT             
+   G01                                                      START OF FREQUENCY  
+    210.00      0.00   1950.00                              NORTH / EAST / UP   
+   NOAZI   -1.00   -2.60   -1.20   -0.90    0.50    1.40    2.00    2.00    1.70    0.50   -0.10   -0.60   -0.70   -0.60   -0.30
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+    210.00      0.00   1950.00                              NORTH / EAST / UP   
+   NOAZI   -1.00   -2.60   -1.20   -0.90    0.50    1.40    2.00    2.00    1.70    0.50   -0.10   -0.60   -0.70   -0.60   -0.30
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK IIA           G05                 G035      1993-054A TYPE / SERIAL NO    
+                    COD/EMR/ESA/GFZ/MIT      0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  1993     8    30     0     0    0.0000000                 VALID FROM          
+  2009     6     8    23    59   59.9999999                 VALID UNTIL         
+IGS08_1645                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+    279.00      0.00   2622.00                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+    279.00      0.00   2622.00                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK IIR-M         G05                 G050      2009-043A TYPE / SERIAL NO    
+                    COD/EMR/ESA/GFZ/MIT      0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2009     8    17     0     0    0.0000000                 VALID FROM          
+IGS08_1645                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+      0.00      0.00    822.60                              NORTH / EAST / UP   
+   NOAZI   10.70   10.10    8.00    4.60    0.50   -3.80   -7.50   -9.70  -10.30   -9.50   -7.40   -4.10    0.30    6.00   12.10
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.00      0.00    822.60                              NORTH / EAST / UP   
+   NOAZI   10.70   10.10    8.00    4.60    0.50   -3.80   -7.50   -9.70  -10.30   -9.50   -7.40   -4.10    0.30    6.00   12.10
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK I             G06                 G003      1978-093A TYPE / SERIAL NO    
+                                             0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  1978    10     6     0     0    0.0000000                 VALID FROM          
+  1992     5    18    23    59   59.9999999                 VALID UNTIL         
+IGS08_1645                                                  SINEX CODE          
+ATTENTION! ROUNDED BLOCK MEAN Z-OFFSET VALUE!               COMMENT             
+   G01                                                      START OF FREQUENCY  
+    210.00      0.00   1950.00                              NORTH / EAST / UP   
+   NOAZI   -1.00   -2.60   -1.20   -0.90    0.50    1.40    2.00    2.00    1.70    0.50   -0.10   -0.60   -0.70   -0.60   -0.30
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+    210.00      0.00   1950.00                              NORTH / EAST / UP   
+   NOAZI   -1.00   -2.60   -1.20   -0.90    0.50    1.40    2.00    2.00    1.70    0.50   -0.10   -0.60   -0.70   -0.60   -0.30
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK IIA           G06                 G036      1994-016A TYPE / SERIAL NO    
+                    COD/EMR/ESA/GFZ/MIT      0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  1994     3    10     0     0    0.0000000                 VALID FROM          
+IGS08_1645                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+    279.00      0.00   2878.60                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+    279.00      0.00   2878.60                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK I             G07                 G002      1978-047A TYPE / SERIAL NO    
+                                             0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  1978     5    13     0     0    0.0000000                 VALID FROM          
+  1988     2    12    23    59   59.9999999                 VALID UNTIL         
+IGS08_1645                                                  SINEX CODE          
+ATTENTION! ROUNDED BLOCK MEAN Z-OFFSET VALUE!               COMMENT             
+   G01                                                      START OF FREQUENCY  
+    210.00      0.00   1950.00                              NORTH / EAST / UP   
+   NOAZI   -1.00   -2.60   -1.20   -0.90    0.50    1.40    2.00    2.00    1.70    0.50   -0.10   -0.60   -0.70   -0.60   -0.30
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+    210.00      0.00   1950.00                              NORTH / EAST / UP   
+   NOAZI   -1.00   -2.60   -1.20   -0.90    0.50    1.40    2.00    2.00    1.70    0.50   -0.10   -0.60   -0.70   -0.60   -0.30
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK IIA           G07                 G037      1993-032A TYPE / SERIAL NO    
+                    COD/EMR/ESA/GFZ/MIT      0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  1993     5    13     0     0    0.0000000                 VALID FROM          
+  2008     1    14    23    59   59.9999999                 VALID UNTIL         
+IGS08_1645                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+    279.00      0.00   2352.20                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+    279.00      0.00   2352.20                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK IIR-M         G07                 G048      2008-012A TYPE / SERIAL NO    
+                    COD/EMR/ESA/GFZ/MIT      0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2008     3    15     0     0    0.0000000                 VALID FROM          
+IGS08_1645                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+      0.00      0.00    852.90                              NORTH / EAST / UP   
+   NOAZI   10.70   10.10    8.00    4.60    0.50   -3.80   -7.50   -9.70  -10.30   -9.50   -7.40   -4.10    0.30    6.00   12.10
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.00      0.00    852.90                              NORTH / EAST / UP   
+   NOAZI   10.70   10.10    8.00    4.60    0.50   -3.80   -7.50   -9.70  -10.30   -9.50   -7.40   -4.10    0.30    6.00   12.10
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK I             G08                 G004      1978-112A TYPE / SERIAL NO    
+                                             0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  1978    12    10     0     0    0.0000000                 VALID FROM          
+  1989    10    14    23    59   59.9999999                 VALID UNTIL         
+IGS08_1645                                                  SINEX CODE          
+ATTENTION! ROUNDED BLOCK MEAN Z-OFFSET VALUE!               COMMENT             
+   G01                                                      START OF FREQUENCY  
+    210.00      0.00   1950.00                              NORTH / EAST / UP   
+   NOAZI   -1.00   -2.60   -1.20   -0.90    0.50    1.40    2.00    2.00    1.70    0.50   -0.10   -0.60   -0.70   -0.60   -0.30
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+    210.00      0.00   1950.00                              NORTH / EAST / UP   
+   NOAZI   -1.00   -2.60   -1.20   -0.90    0.50    1.40    2.00    2.00    1.70    0.50   -0.10   -0.60   -0.70   -0.60   -0.30
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK IIA           G08                 G038      1997-067A TYPE / SERIAL NO    
+                    COD/EMR/ESA/GFZ/MIT      0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  1997    11     6     0     0    0.0000000                 VALID FROM          
+IGS08_1645                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+    279.00      0.00   2578.10                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+    279.00      0.00   2578.10                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK I             G09                 G006      1980-032A TYPE / SERIAL NO    
+                                             0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  1980     4    26     0     0    0.0000000                 VALID FROM          
+  1991     3     6    23    59   59.9999999                 VALID UNTIL         
+IGS08_1645                                                  SINEX CODE          
+ATTENTION! ROUNDED BLOCK MEAN Z-OFFSET VALUE!               COMMENT             
+   G01                                                      START OF FREQUENCY  
+    210.00      0.00   1950.00                              NORTH / EAST / UP   
+   NOAZI   -1.00   -2.60   -1.20   -0.90    0.50    1.40    2.00    2.00    1.70    0.50   -0.10   -0.60   -0.70   -0.60   -0.30
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+    210.00      0.00   1950.00                              NORTH / EAST / UP   
+   NOAZI   -1.00   -2.60   -1.20   -0.90    0.50    1.40    2.00    2.00    1.70    0.50   -0.10   -0.60   -0.70   -0.60   -0.30
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK IIA           G09                 G039      1993-042A TYPE / SERIAL NO    
+                    COD/EMR/ESA/GFZ/MIT      0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  1993     6    26     0     0    0.0000000                 VALID FROM          
+IGS08_1645                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+    279.00      0.00   2461.40                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+    279.00      0.00   2461.40                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK IIA           G10                 G040      1996-041A TYPE / SERIAL NO    
+                    COD/EMR/ESA/GFZ/MIT      0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  1996     7    16     0     0    0.0000000                 VALID FROM          
+IGS08_1645                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+    279.00      0.00   2546.50                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+    279.00      0.00   2546.50                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK I             G11                 G008      1983-072A TYPE / SERIAL NO    
+                                             0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  1983     7    14     0     0    0.0000000                 VALID FROM          
+  1993     5     4    23    59   59.9999999                 VALID UNTIL         
+IGS08_1645                                                  SINEX CODE          
+ATTENTION! ROUNDED BLOCK MEAN Z-OFFSET VALUE!               COMMENT             
+   G01                                                      START OF FREQUENCY  
+    210.00      0.00   1950.00                              NORTH / EAST / UP   
+   NOAZI   -1.00   -2.60   -1.20   -0.90    0.50    1.40    2.00    2.00    1.70    0.50   -0.10   -0.60   -0.70   -0.60   -0.30
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+    210.00      0.00   1950.00                              NORTH / EAST / UP   
+   NOAZI   -1.00   -2.60   -1.20   -0.90    0.50    1.40    2.00    2.00    1.70    0.50   -0.10   -0.60   -0.70   -0.60   -0.30
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK IIR-A         G11                 G046      1999-055A TYPE / SERIAL NO    
+                    COD/EMR/ESA/GFZ/MIT      0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  1999    10     7     0     0    0.0000000                 VALID FROM          
+IGS08_1645                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+      0.00      0.00   1141.30                              NORTH / EAST / UP   
+   NOAZI   -6.10   -5.20   -3.30   -1.00    1.40    3.50    4.70    4.90    4.10    2.80    0.80   -1.00   -2.10   -2.10   -1.40
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.00      0.00   1141.30                              NORTH / EAST / UP   
+   NOAZI   -6.10   -5.20   -3.30   -1.00    1.40    3.50    4.70    4.90    4.10    2.80    0.80   -1.00   -2.10   -2.10   -1.40
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK I             G12                 G010      1984-097A TYPE / SERIAL NO    
+                    COD/EMR/GFZ              0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  1984     9     8     0     0    0.0000000                 VALID FROM          
+  1996     3    26    23    59   59.9999999                 VALID UNTIL         
+IGS08_1645                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+    210.00      0.00   1875.40                              NORTH / EAST / UP   
+   NOAZI   -1.00   -2.60   -1.20   -0.90    0.50    1.40    2.00    2.00    1.70    0.50   -0.10   -0.60   -0.70   -0.60   -0.30
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+    210.00      0.00   1875.40                              NORTH / EAST / UP   
+   NOAZI   -1.00   -2.60   -1.20   -0.90    0.50    1.40    2.00    2.00    1.70    0.50   -0.10   -0.60   -0.70   -0.60   -0.30
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK IIR-M         G12                 G058      2006-052A TYPE / SERIAL NO    
+                    COD/EMR/ESA/GFZ/MIT      0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2006    11    17     0     0    0.0000000                 VALID FROM          
+IGS08_1645                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+      0.00      0.00    840.80                              NORTH / EAST / UP   
+   NOAZI   10.70   10.10    8.00    4.60    0.50   -3.80   -7.50   -9.70  -10.30   -9.50   -7.40   -4.10    0.30    6.00   12.10
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.00      0.00    840.80                              NORTH / EAST / UP   
+   NOAZI   10.70   10.10    8.00    4.60    0.50   -3.80   -7.50   -9.70  -10.30   -9.50   -7.40   -4.10    0.30    6.00   12.10
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK I             G13                 G009      1984-059A TYPE / SERIAL NO    
+                    COD/GFZ                  0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  1984     6    13     0     0    0.0000000                 VALID FROM          
+  1994     6    20    23    59   59.9999999                 VALID UNTIL         
+IGS08_1645                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+    210.00      0.00   2057.80                              NORTH / EAST / UP   
+   NOAZI   -1.00   -2.60   -1.20   -0.90    0.50    1.40    2.00    2.00    1.70    0.50   -0.10   -0.60   -0.70   -0.60   -0.30
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+    210.00      0.00   2057.80                              NORTH / EAST / UP   
+   NOAZI   -1.00   -2.60   -1.20   -0.90    0.50    1.40    2.00    2.00    1.70    0.50   -0.10   -0.60   -0.70   -0.60   -0.30
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK IIR-A         G13                 G043      1997-035A TYPE / SERIAL NO    
+                    COD/EMR/ESA/GFZ/MIT      0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  1997     7    23     0     0    0.0000000                 VALID FROM          
+IGS08_1645                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+      0.00      0.00   1389.50                              NORTH / EAST / UP   
+   NOAZI   -6.10   -5.20   -3.30   -1.00    1.40    3.50    4.70    4.90    4.10    2.80    0.80   -1.00   -2.10   -2.10   -1.40
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.00      0.00   1389.50                              NORTH / EAST / UP   
+   NOAZI   -6.10   -5.20   -3.30   -1.00    1.40    3.50    4.70    4.90    4.10    2.80    0.80   -1.00   -2.10   -2.10   -1.40
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK II            G14                 G014      1989-013A TYPE / SERIAL NO    
+                    COD/EMR/ESA/GFZ/MIT      0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  1989     2    14     0     0    0.0000000                 VALID FROM          
+  2000     4    17    23    59   59.9999999                 VALID UNTIL         
+IGS08_1645                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+    279.00      0.00   2849.50                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+    279.00      0.00   2849.50                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK IIR-A         G14                 G041      2000-071A TYPE / SERIAL NO    
+                    COD/EMR/ESA/GFZ/MIT      0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2000    11    10     0     0    0.0000000                 VALID FROM          
+IGS08_1645                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+      0.00      0.00   1345.40                              NORTH / EAST / UP   
+   NOAZI   -6.10   -5.20   -3.30   -1.00    1.40    3.50    4.70    4.90    4.10    2.80    0.80   -1.00   -2.10   -2.10   -1.40
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.00      0.00   1345.40                              NORTH / EAST / UP   
+   NOAZI   -6.10   -5.20   -3.30   -1.00    1.40    3.50    4.70    4.90    4.10    2.80    0.80   -1.00   -2.10   -2.10   -1.40
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK II            G15                 G015      1990-088A TYPE / SERIAL NO    
+                    COD/EMR/ESA/GFZ/MIT      0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  1990    10     1     0     0    0.0000000                 VALID FROM          
+  2007     3    14    23    59   59.9999999                 VALID UNTIL         
+IGS08_1645                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+    279.00      0.00   2468.60                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+    279.00      0.00   2468.60                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK IIR-M         G15                 G055      2007-047A TYPE / SERIAL NO    
+                    COD/EMR/ESA/GFZ/MIT      0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2007    10    17     0     0    0.0000000                 VALID FROM          
+IGS08_1645                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+      0.00      0.00    681.10                              NORTH / EAST / UP   
+   NOAZI   10.70   10.10    8.00    4.60    0.50   -3.80   -7.50   -9.70  -10.30   -9.50   -7.40   -4.10    0.30    6.00   12.10
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.00      0.00    681.10                              NORTH / EAST / UP   
+   NOAZI   10.70   10.10    8.00    4.60    0.50   -3.80   -7.50   -9.70  -10.30   -9.50   -7.40   -4.10    0.30    6.00   12.10
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK II            G16                 G016      1989-064A TYPE / SERIAL NO    
+                    COD/EMR/ESA/GFZ/MIT      0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  1989     8    18     0     0    0.0000000                 VALID FROM          
+  2000    10    13    23    59   59.9999999                 VALID UNTIL         
+IGS08_1645                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+    279.00      0.00   2521.10                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+    279.00      0.00   2521.10                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK IIR-A         G16                 G056      2003-005A TYPE / SERIAL NO    
+                    COD/EMR/ESA/GFZ/MIT      0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2003     1    29     0     0    0.0000000                 VALID FROM          
+IGS08_1645                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+      0.00      0.00   1506.40                              NORTH / EAST / UP   
+   NOAZI   -6.10   -5.20   -3.30   -1.00    1.40    3.50    4.70    4.90    4.10    2.80    0.80   -1.00   -2.10   -2.10   -1.40
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.00      0.00   1506.40                              NORTH / EAST / UP   
+   NOAZI   -6.10   -5.20   -3.30   -1.00    1.40    3.50    4.70    4.90    4.10    2.80    0.80   -1.00   -2.10   -2.10   -1.40
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK II            G17                 G017      1989-097A TYPE / SERIAL NO    
+                    COD/EMR/ESA/GFZ/MIT      0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  1989    12    11     0     0    0.0000000                 VALID FROM          
+  2005     2    23    23    59   59.9999999                 VALID UNTIL         
+IGS08_1645                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+    279.00      0.00   2422.80                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+    279.00      0.00   2422.80                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK IIR-M         G17                 G053      2005-038A TYPE / SERIAL NO    
+                    COD/EMR/ESA/GFZ/MIT      0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2005     9    26     0     0    0.0000000                 VALID FROM          
+IGS08_1645                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+      0.00      0.00    827.10                              NORTH / EAST / UP   
+   NOAZI   10.70   10.10    8.00    4.60    0.50   -3.80   -7.50   -9.70  -10.30   -9.50   -7.40   -4.10    0.30    6.00   12.10
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.00      0.00    827.10                              NORTH / EAST / UP   
+   NOAZI   10.70   10.10    8.00    4.60    0.50   -3.80   -7.50   -9.70  -10.30   -9.50   -7.40   -4.10    0.30    6.00   12.10
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK II            G18                 G018      1990-008A TYPE / SERIAL NO    
+                    COD/EMR/ESA/GFZ/MIT      0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  1990     1    24     0     0    0.0000000                 VALID FROM          
+  2000     8    18    23    59   59.9999999                 VALID UNTIL         
+IGS08_1645                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+    279.00      0.00   2581.80                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+    279.00      0.00   2581.80                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK IIR-A         G18                 G054      2001-004A TYPE / SERIAL NO    
+                    COD/EMR/ESA/GFZ/MIT      0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2001     1    30     0     0    0.0000000                 VALID FROM          
+IGS08_1645                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+      0.00      0.00   1290.90                              NORTH / EAST / UP   
+   NOAZI   -6.10   -5.20   -3.30   -1.00    1.40    3.50    4.70    4.90    4.10    2.80    0.80   -1.00   -2.10   -2.10   -1.40
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.00      0.00   1290.90                              NORTH / EAST / UP   
+   NOAZI   -6.10   -5.20   -3.30   -1.00    1.40    3.50    4.70    4.90    4.10    2.80    0.80   -1.00   -2.10   -2.10   -1.40
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK II            G19                 G019      1989-085A TYPE / SERIAL NO    
+                    COD/EMR/ESA/GFZ/MIT      0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  1989    10    21     0     0    0.0000000                 VALID FROM          
+  2001     9    13    23    59   59.9999999                 VALID UNTIL         
+IGS08_1645                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+    279.00      0.00   2971.60                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+    279.00      0.00   2971.60                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK IIR-B         G19                 G059      2004-009A TYPE / SERIAL NO    
+                    COD/EMR/ESA/GFZ/MIT      0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2004     3    20     0     0    0.0000000                 VALID FROM          
+IGS08_1645                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+      0.00      0.00    849.60                              NORTH / EAST / UP   
+   NOAZI   10.70   10.10    8.00    4.60    0.50   -3.80   -7.50   -9.70  -10.30   -9.50   -7.40   -4.10    0.30    6.00   12.10
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.00      0.00    849.60                              NORTH / EAST / UP   
+   NOAZI   10.70   10.10    8.00    4.60    0.50   -3.80   -7.50   -9.70  -10.30   -9.50   -7.40   -4.10    0.30    6.00   12.10
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK II            G20                 G020      1990-025A TYPE / SERIAL NO    
+                    COD/EMR/ESA/GFZ          0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  1990     3    26     0     0    0.0000000                 VALID FROM          
+  1996    12    13    23    59   59.9999999                 VALID UNTIL         
+IGS08_1645                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+    279.00      0.00   2565.20                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+    279.00      0.00   2565.20                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK IIR-A         G20                 G051      2000-025A TYPE / SERIAL NO    
+                    COD/EMR/ESA/GFZ/MIT      0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2000     5    11     0     0    0.0000000                 VALID FROM          
+IGS08_1645                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+      0.00      0.00   1343.60                              NORTH / EAST / UP   
+   NOAZI   -6.10   -5.20   -3.30   -1.00    1.40    3.50    4.70    4.90    4.10    2.80    0.80   -1.00   -2.10   -2.10   -1.40
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.00      0.00   1343.60                              NORTH / EAST / UP   
+   NOAZI   -6.10   -5.20   -3.30   -1.00    1.40    3.50    4.70    4.90    4.10    2.80    0.80   -1.00   -2.10   -2.10   -1.40
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK II            G21                 G021      1990-068A TYPE / SERIAL NO    
+                    COD/EMR/ESA/GFZ/MIT      0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  1990     8     2     0     0    0.0000000                 VALID FROM          
+  2003     1    27    23    59   59.9999999                 VALID UNTIL         
+IGS08_1645                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+    279.00      0.00   2523.90                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+    279.00      0.00   2523.90                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK IIR-A         G21                 G045      2003-010A TYPE / SERIAL NO    
+                    COD/EMR/ESA/GFZ/MIT      0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2003     3    31     0     0    0.0000000                 VALID FROM          
+IGS08_1645                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+      0.00      0.00   1405.40                              NORTH / EAST / UP   
+   NOAZI   -6.10   -5.20   -3.30   -1.00    1.40    3.50    4.70    4.90    4.10    2.80    0.80   -1.00   -2.10   -2.10   -1.40
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.00      0.00   1405.40                              NORTH / EAST / UP   
+   NOAZI   -6.10   -5.20   -3.30   -1.00    1.40    3.50    4.70    4.90    4.10    2.80    0.80   -1.00   -2.10   -2.10   -1.40
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK IIA           G22                 G022      1993-007A TYPE / SERIAL NO    
+                    COD/EMR/ESA/GFZ/MIT      0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  1993     2     3     0     0    0.0000000                 VALID FROM          
+  2003     8     6    23    59   59.9999999                 VALID UNTIL         
+IGS08_1645                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+    279.00      0.00   2451.40                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+    279.00      0.00   2451.40                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK IIR-B         G22                 G047      2003-058A TYPE / SERIAL NO    
+                    COD/EMR/ESA/GFZ/MIT      0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2003    12    21     0     0    0.0000000                 VALID FROM          
+IGS08_1645                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+      0.00      0.00    905.80                              NORTH / EAST / UP   
+   NOAZI   10.70   10.10    8.00    4.60    0.50   -3.80   -7.50   -9.70  -10.30   -9.50   -7.40   -4.10    0.30    6.00   12.10
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.00      0.00    905.80                              NORTH / EAST / UP   
+   NOAZI   10.70   10.10    8.00    4.60    0.50   -3.80   -7.50   -9.70  -10.30   -9.50   -7.40   -4.10    0.30    6.00   12.10
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK IIA           G23                 G023      1990-103A TYPE / SERIAL NO    
+                    COD/EMR/ESA/GFZ/MIT      0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  1990    11    26     0     0    0.0000000                 VALID FROM          
+  2004     2    22    23    59   59.9999999                 VALID UNTIL         
+IGS08_1645                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+    279.00      0.00   2777.20                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+    279.00      0.00   2777.20                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK IIR-B         G23                 G060      2004-023A TYPE / SERIAL NO    
+                    COD/EMR/ESA/GFZ/MIT      0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2004     6    23     0     0    0.0000000                 VALID FROM          
+IGS08_1645                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+      0.00      0.00    808.20                              NORTH / EAST / UP   
+   NOAZI   10.70   10.10    8.00    4.60    0.50   -3.80   -7.50   -9.70  -10.30   -9.50   -7.40   -4.10    0.30    6.00   12.10
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.00      0.00    808.20                              NORTH / EAST / UP   
+   NOAZI   10.70   10.10    8.00    4.60    0.50   -3.80   -7.50   -9.70  -10.30   -9.50   -7.40   -4.10    0.30    6.00   12.10
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK IIA           G24                 G024      1991-047A TYPE / SERIAL NO    
+                    COD/EMR/ESA/GFZ/MIT      0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  1991     7     4     0     0    0.0000000                 VALID FROM          
+IGS08_1645                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+    279.00      0.00   2603.80                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+    279.00      0.00   2603.80                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK IIA           G25                 G025      1992-009A TYPE / SERIAL NO    
+                    COD/EMR/ESA/GFZ/MIT      0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  1992     2    23     0     0    0.0000000                 VALID FROM          
+  2010     2     8    23    59   59.9999999                 VALID UNTIL         
+IGS08_1645                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+    279.00      0.00   2489.00                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+    279.00      0.00   2489.00                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK IIA           G25                 G035      1993-054A TYPE / SERIAL NO    
+                    COD/EMR/ESA/GFZ/MIT      0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2010     2     9     0     0    0.0000000                 VALID FROM          
+  2010     5    27    23    59   59.9999999                 VALID UNTIL         
+IGS08_1645                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+    279.00      0.00   2622.00                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+    279.00      0.00   2622.00                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK IIF           G25                 G062      2010-022A TYPE / SERIAL NO    
+                    COD/ESA                  0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2010     5    28     0     0    0.0000000                 VALID FROM          
+IGS08_1645                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+    394.00      0.00   1663.20                              NORTH / EAST / UP   
+   NOAZI    6.10    4.40    2.80    1.30   -0.20   -1.40   -2.80   -3.90   -4.40   -4.40   -3.70   -2.30   -0.20    3.00    5.70
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+    394.00      0.00   1663.20                              NORTH / EAST / UP   
+   NOAZI    6.10    4.40    2.80    1.30   -0.20   -1.40   -2.80   -3.90   -4.40   -4.40   -3.70   -2.30   -0.20    3.00    5.70
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK IIA           G26                 G026      1992-039A TYPE / SERIAL NO    
+                    COD/EMR/ESA/GFZ/MIT      0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  1992     7     7     0     0    0.0000000                 VALID FROM          
+IGS08_1645                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+    279.00      0.00   2459.40                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+    279.00      0.00   2459.40                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK IIA           G27                 G027      1992-058A TYPE / SERIAL NO    
+                    COD/EMR/ESA/GFZ/MIT      0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  1992     9     9     0     0    0.0000000                 VALID FROM          
+IGS08_1645                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+    279.00      0.00   2633.40                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+    279.00      0.00   2633.40                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK IIA           G28                 G028      1992-019A TYPE / SERIAL NO    
+                    COD/EMR/ESA/GFZ          0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  1992     4    10     0     0    0.0000000                 VALID FROM          
+  1997     8    15    23    59   59.9999999                 VALID UNTIL         
+IGS08_1645                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+    279.00      0.00   2338.50                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+    279.00      0.00   2338.50                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK IIR-A         G28                 G044      2000-040A TYPE / SERIAL NO    
+                    COD/EMR/ESA/GFZ/MIT      0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2000     7    16     0     0    0.0000000                 VALID FROM          
+IGS08_1645                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+      0.00      0.00   1042.80                              NORTH / EAST / UP   
+   NOAZI   -6.10   -5.20   -3.30   -1.00    1.40    3.50    4.70    4.90    4.10    2.80    0.80   -1.00   -2.10   -2.10   -1.40
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.00      0.00   1042.80                              NORTH / EAST / UP   
+   NOAZI   -6.10   -5.20   -3.30   -1.00    1.40    3.50    4.70    4.90    4.10    2.80    0.80   -1.00   -2.10   -2.10   -1.40
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK IIA           G29                 G029      1992-089A TYPE / SERIAL NO    
+                    COD/EMR/ESA/GFZ/MIT      0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  1992    12    18     0     0    0.0000000                 VALID FROM          
+  2007    10    23    23    59   59.9999999                 VALID UNTIL         
+IGS08_1645                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+    279.00      0.00   2514.30                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+    279.00      0.00   2514.30                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK IIR-M         G29                 G057      2007-062A TYPE / SERIAL NO    
+                    COD/EMR/ESA/GFZ/MIT      0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2007    12    20     0     0    0.0000000                 VALID FROM          
+IGS08_1645                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+      0.00      0.00    857.10                              NORTH / EAST / UP   
+   NOAZI   10.70   10.10    8.00    4.60    0.50   -3.80   -7.50   -9.70  -10.30   -9.50   -7.40   -4.10    0.30    6.00   12.10
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.00      0.00    857.10                              NORTH / EAST / UP   
+   NOAZI   10.70   10.10    8.00    4.60    0.50   -3.80   -7.50   -9.70  -10.30   -9.50   -7.40   -4.10    0.30    6.00   12.10
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK IIA           G30                 G030      1996-056A TYPE / SERIAL NO    
+                    COD/EMR/ESA/GFZ/MIT      0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  1996     9    12     0     0    0.0000000                 VALID FROM          
+  2011     8     4    23    59   59.9999999                 VALID UNTIL         
+IGS08_1645                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+    279.00      0.00   2612.70                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+    279.00      0.00   2612.70                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK IIA           G30                 G035      1993-054A TYPE / SERIAL NO    
+                    COD/EMR/ESA/GFZ/MIT      0    11-AUG-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2011     8     5     0     0    0.0000000                 VALID FROM          
+IGS08_1645                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+    279.00      0.00   2622.00                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+    279.00      0.00   2622.00                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK IIA           G31                 G031      1993-017A TYPE / SERIAL NO    
+                    COD/EMR/ESA/GFZ/MIT      0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  1993     3    30     0     0    0.0000000                 VALID FROM          
+  2005    10    24    23    59   59.9999999                 VALID UNTIL         
+IGS08_1645                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+    279.00      0.00   2256.50                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+    279.00      0.00   2256.50                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK IIR-M         G31                 G052      2006-042A TYPE / SERIAL NO    
+                    COD/EMR/ESA/GFZ/MIT      0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2006     9    25     0     0    0.0000000                 VALID FROM          
+IGS08_1645                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+      0.00      0.00    971.40                              NORTH / EAST / UP   
+   NOAZI   10.70   10.10    8.00    4.60    0.50   -3.80   -7.50   -9.70  -10.30   -9.50   -7.40   -4.10    0.30    6.00   12.10
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.00      0.00    971.40                              NORTH / EAST / UP   
+   NOAZI   10.70   10.10    8.00    4.60    0.50   -3.80   -7.50   -9.70  -10.30   -9.50   -7.40   -4.10    0.30    6.00   12.10
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+BLOCK IIA           G32                 G023      1990-103A TYPE / SERIAL NO    
+                    COD/EMR/ESA/GFZ/MIT      0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  14.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2006    12     2     0     0    0.0000000                 VALID FROM          
+IGS08_1645                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+    279.00      0.00   2777.20                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+    279.00      0.00   2777.20                              NORTH / EAST / UP   
+   NOAZI   -0.80   -0.90   -0.90   -0.80   -0.40    0.20    0.80    1.30    1.40    1.20    0.70    0.00   -0.40   -0.70   -0.90
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS             R01                 R779      1998-077A TYPE / SERIAL NO    
+                                             0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  15.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  1998    12    30     0     0    0.0000000                 VALID FROM          
+  2004    12    25    23    59   59.9999999                 VALID UNTIL         
+IGS08_1645                                                  SINEX CODE          
+ATTENTION! ROUNDED BLOCK MEAN Z-OFFSET VALUE!               COMMENT             
+   R01                                                      START OF FREQUENCY  
+      0.00      0.00   2100.00                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+      0.00      0.00   2100.00                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS             R01                 R796      2004-053A TYPE / SERIAL NO    
+                    COD                      0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  15.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2004    12    26     0     0    0.0000000                 VALID FROM          
+  2009    12    13    23    59   59.9999999                 VALID UNTIL         
+IGS08_1645                                                  SINEX CODE          
+   R01                                                      START OF FREQUENCY  
+      0.00      0.00   2100.90                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+      0.00      0.00   2100.90                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS-M           R01                 R730      2009-070A TYPE / SERIAL NO    
+                    COD/ESA                  0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  15.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2009    12    14     0     0    0.0000000                 VALID FROM          
+IGS08_1645                                                  SINEX CODE          
+   R01                                                      START OF FREQUENCY  
+   -545.00      0.00   2500.30                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+   -545.00      0.00   2500.30                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS             R02                 R794      2003-056B TYPE / SERIAL NO    
+                    COD                      0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  15.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2003    12    10     0     0    0.0000000                 VALID FROM          
+  2008    12    24    23    59   59.9999999                 VALID UNTIL         
+IGS08_1645                                                  SINEX CODE          
+   R01                                                      START OF FREQUENCY  
+      0.00      0.00   2049.20                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+      0.00      0.00   2049.20                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS-M           R02                 R728      2008-067C TYPE / SERIAL NO    
+                    COD/ESA                  0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  15.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2008    12    25     0     0    0.0000000                 VALID FROM          
+IGS08_1645                                                  SINEX CODE          
+   R01                                                      START OF FREQUENCY  
+   -545.00      0.00   2466.30                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+   -545.00      0.00   2466.30                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS             R03                 R763      1994-076A TYPE / SERIAL NO    
+                                             0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  15.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  1994    11    20     0     0    0.0000000                 VALID FROM          
+  2001    11    30    23    59   59.9999999                 VALID UNTIL         
+IGS08_1645                                                  SINEX CODE          
+ATTENTION! ROUNDED BLOCK MEAN Z-OFFSET VALUE!               COMMENT             
+   R01                                                      START OF FREQUENCY  
+      0.00      0.00   2100.00                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+      0.00      0.00   2100.00                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS             R03                 R789      2001-053B TYPE / SERIAL NO    
+                    COD                      0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  15.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2001    12     1     0     0    0.0000000                 VALID FROM          
+  2008    12    24    23    59   59.9999999                 VALID UNTIL         
+IGS08_1645                                                  SINEX CODE          
+   R01                                                      START OF FREQUENCY  
+      0.00      0.00   2103.60                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+      0.00      0.00   2103.60                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS-M           R03                 R727      2008-067A TYPE / SERIAL NO    
+                    COD/ESA                  0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  15.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2008    12    25     0     0    0.0000000                 VALID FROM          
+  2010     9    30    23    59   59.9999999                 VALID UNTIL         
+IGS08_1645                                                  SINEX CODE          
+   R01                                                      START OF FREQUENCY  
+   -545.00      0.00   2380.50                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+   -545.00      0.00   2380.50                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS-M           R03                 R722      2007-065B TYPE / SERIAL NO    
+                    COD/ESA                  0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  15.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2010    10     1     0     0    0.0000000                 VALID FROM          
+  2010    12    15    23    59   59.9999999                 VALID UNTIL         
+IGS08_1645                                                  SINEX CODE          
+   R01                                                      START OF FREQUENCY  
+   -545.00      0.00   2548.50                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+   -545.00      0.00   2548.50                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS-M           R03                 R727      2008-067A TYPE / SERIAL NO    
+                    COD/ESA                  0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  15.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2010    12    16     0     0    0.0000000                 VALID FROM          
+  2011     3    10    23    59   59.9999999                 VALID UNTIL         
+IGS08_1645                                                  SINEX CODE          
+   R01                                                      START OF FREQUENCY  
+   -545.00      0.00   2380.50                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+   -545.00      0.00   2380.50                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS-M           R03                 R715      2006-062C TYPE / SERIAL NO    
+                    COD/ESA                  0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  15.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2011     3    11     0     0    0.0000000                 VALID FROM          
+IGS08_1645                                                  SINEX CODE          
+   R01                                                      START OF FREQUENCY  
+   -545.00      0.00   2505.60                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+   -545.00      0.00   2505.60                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS             R04                 R762      1994-076C TYPE / SERIAL NO    
+                                             0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  15.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  1994    11    20     0     0    0.0000000                 VALID FROM          
+  2003    12     9    23    59   59.9999999                 VALID UNTIL         
+IGS08_1645                                                  SINEX CODE          
+ATTENTION! ROUNDED BLOCK MEAN Z-OFFSET VALUE!               COMMENT             
+   R01                                                      START OF FREQUENCY  
+      0.00      0.00   2100.00                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+      0.00      0.00   2100.00                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS             R04                 R795      2003-056C TYPE / SERIAL NO    
+                    COD/ESA                  0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  15.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2003    12    10     0     0    0.0000000                 VALID FROM          
+  2009    12    13    23    59   59.9999999                 VALID UNTIL         
+IGS08_1645                                                  SINEX CODE          
+   R01                                                      START OF FREQUENCY  
+      0.00      0.00   2114.80                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+      0.00      0.00   2114.80                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS-M           R04                 R733      2009-070B TYPE / SERIAL NO    
+                    COD/ESA                  0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  15.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2009    12    14     0     0    0.0000000                 VALID FROM          
+  2010     9    30    23    59   59.9999999                 VALID UNTIL         
+IGS08_1645                                                  SINEX CODE          
+   R01                                                      START OF FREQUENCY  
+   -545.00      0.00   2459.80                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+   -545.00      0.00   2459.80                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS-M           R04                 R727      2008-067A TYPE / SERIAL NO    
+                    COD/ESA                  0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  15.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2010    10     1     0     0    0.0000000                 VALID FROM          
+  2010    12    15    23    59   59.9999999                 VALID UNTIL         
+IGS08_1645                                                  SINEX CODE          
+   R01                                                      START OF FREQUENCY  
+   -545.00      0.00   2380.50                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+   -545.00      0.00   2380.50                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS-K1          R04                 R801      2011-009A TYPE / SERIAL NO    
+                    COD                      0    03-JUL-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  15.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2011     2    26     0     0    0.0000000                 VALID FROM          
+IGS08_1645                                                  SINEX CODE          
+ATTENTION! PRELIMINARY SATELLITE CODE (R801)!               COMMENT             
+ATTENTION! PRELIMINARY PHASE CENTER CORRECTIONS!            COMMENT             
+Z-OFFSET UPDATE IN GPS WEEK 1643: 0.0 mm --> 1750.0 mm      COMMENT             
+   R01                                                      START OF FREQUENCY  
+      0.00      0.00   1750.00                              NORTH / EAST / UP   
+   NOAZI    0.00    0.00    0.00    0.00    0.00    0.00    0.00    0.00    0.00    0.00    0.00    0.00    0.00    0.00    0.00    0.00
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+      0.00      0.00   1750.00                              NORTH / EAST / UP   
+   NOAZI    0.00    0.00    0.00    0.00    0.00    0.00    0.00    0.00    0.00    0.00    0.00    0.00    0.00    0.00    0.00    0.00
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS             R05                 R711      2001-053A TYPE / SERIAL NO    
+                    COD                      0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  15.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2001    12     1     0     0    0.0000000                 VALID FROM          
+  2009    12    13    23    59   59.9999999                 VALID UNTIL         
+IGS08_1645                                                  SINEX CODE          
+GLONASS-M PROTOTYPE, WITH INFERRED GLONASS DIMENSIONS?      COMMENT             
+   R01                                                      START OF FREQUENCY  
+      0.00      0.00   2113.30                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+      0.00      0.00   2113.30                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS-M           R05                 R734      2009-070C TYPE / SERIAL NO    
+                    COD/ESA                  0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  15.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2009    12    14     0     0    0.0000000                 VALID FROM          
+IGS08_1645                                                  SINEX CODE          
+   R01                                                      START OF FREQUENCY  
+   -545.00      0.00   2489.30                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+   -545.00      0.00   2489.30                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS             R06                 R764      1994-076B TYPE / SERIAL NO    
+                                             0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  15.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  1994    11    20     0     0    0.0000000                 VALID FROM          
+  2001    11    30    23    59   59.9999999                 VALID UNTIL         
+IGS08_1645                                                  SINEX CODE          
+ATTENTION! ROUNDED BLOCK MEAN Z-OFFSET VALUE!               COMMENT             
+   R01                                                      START OF FREQUENCY  
+      0.00      0.00   2100.00                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+      0.00      0.00   2100.00                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS             R06                 R790      2001-053C TYPE / SERIAL NO    
+                                             0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  15.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2001    12     1     0     0    0.0000000                 VALID FROM          
+  2003    12     9    23    59   59.9999999                 VALID UNTIL         
+IGS08_1645                                                  SINEX CODE          
+ATTENTION! ROUNDED BLOCK MEAN Z-OFFSET VALUE!               COMMENT             
+   R01                                                      START OF FREQUENCY  
+      0.00      0.00   2100.00                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+      0.00      0.00   2100.00                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS-M           R06                 R701      2003-056A TYPE / SERIAL NO    
+                    COD/ESA                  0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  15.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2003    12    10     0     0    0.0000000                 VALID FROM          
+  2010     4    27    23    59   59.9999999                 VALID UNTIL         
+IGS08_1645                                                  SINEX CODE          
+   R01                                                      START OF FREQUENCY  
+   -545.00      0.00   2330.30                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+   -545.00      0.00   2330.30                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS-M           R06                 R714      2005-050A TYPE / SERIAL NO    
+                    COD/ESA                  0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  15.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2010     4    28     0     0    0.0000000                 VALID FROM          
+  2010     9    30    23    59   59.9999999                 VALID UNTIL         
+IGS08_1645                                                  SINEX CODE          
+   R01                                                      START OF FREQUENCY  
+   -545.00      0.00   2179.40                              NORTH / EAST / UP   
+   NOAZI    5.20    4.50    3.20    2.00    0.40   -1.00   -2.30   -3.50   -4.00   -4.30   -4.00   -3.20   -1.80    0.50    3.20    5.20
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+   -545.00      0.00   2179.40                              NORTH / EAST / UP   
+   NOAZI    5.20    4.50    3.20    2.00    0.40   -1.00   -2.30   -3.50   -4.00   -4.30   -4.00   -3.20   -1.80    0.50    3.20    5.20
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS-M           R06                 R733      2009-070B TYPE / SERIAL NO    
+                    COD/ESA                  0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  15.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2010    10     1     0     0    0.0000000                 VALID FROM          
+IGS08_1645                                                  SINEX CODE          
+   R01                                                      START OF FREQUENCY  
+   -545.00      0.00   2459.80                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+   -545.00      0.00   2459.80                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS             R07                 R786      1998-077C TYPE / SERIAL NO    
+                                             0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  15.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  1998    12    30     0     0    0.0000000                 VALID FROM          
+  2004    12    25    23    59   59.9999999                 VALID UNTIL         
+IGS08_1645                                                  SINEX CODE          
+ATTENTION! ROUNDED BLOCK MEAN Z-OFFSET VALUE!               COMMENT             
+   R01                                                      START OF FREQUENCY  
+      0.00      0.00   2100.00                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+      0.00      0.00   2100.00                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS-M           R07                 R712      2004-053B TYPE / SERIAL NO    
+                    COD/ESA                  0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  15.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2004    12    26     0     0    0.0000000                 VALID FROM          
+IGS08_1645                                                  SINEX CODE          
+   R01                                                      START OF FREQUENCY  
+   -545.00      0.00   2427.50                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+   -545.00      0.00   2427.50                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS             R08                 R784      1998-077B TYPE / SERIAL NO    
+                    COD                      0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  15.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  1998    12    30     0     0    0.0000000                 VALID FROM          
+  2004    12    25    23    59   59.9999999                 VALID UNTIL         
+IGS08_1645                                                  SINEX CODE          
+   R01                                                      START OF FREQUENCY  
+      0.00      0.00   2076.40                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+      0.00      0.00   2076.40                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS             R08                 R797      2004-053C TYPE / SERIAL NO    
+                    COD                      0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  15.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2004    12    26     0     0    0.0000000                 VALID FROM          
+  2008    12    24    23    59   59.9999999                 VALID UNTIL         
+IGS08_1645                                                  SINEX CODE          
+   R01                                                      START OF FREQUENCY  
+      0.00      0.00   1962.00                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+      0.00      0.00   1962.00                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS-M           R08                 R729      2008-067B TYPE / SERIAL NO    
+                    COD/ESA                  0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  15.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2008    12    25     0     0    0.0000000                 VALID FROM          
+IGS08_1645                                                  SINEX CODE          
+   R01                                                      START OF FREQUENCY  
+   -545.00      0.00   2558.00                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+   -545.00      0.00   2558.00                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS             R09                 R776      1995-068C TYPE / SERIAL NO    
+                                             0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  15.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  1995    12    14     0     0    0.0000000                 VALID FROM          
+  2007    12    24    23    59   59.9999999                 VALID UNTIL         
+IGS08_1645                                                  SINEX CODE          
+ATTENTION! ROUNDED BLOCK MEAN Z-OFFSET VALUE!               COMMENT             
+   R01                                                      START OF FREQUENCY  
+      0.00      0.00   2100.00                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+      0.00      0.00   2100.00                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS-M           R09                 R722      2007-065B TYPE / SERIAL NO    
+                    COD/ESA                  0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  15.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2007    12    25     0     0    0.0000000                 VALID FROM          
+  2010     9    30    23    59   59.9999999                 VALID UNTIL         
+IGS08_1645                                                  SINEX CODE          
+   R01                                                      START OF FREQUENCY  
+   -545.00      0.00   2548.50                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+   -545.00      0.00   2548.50                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS-M           R09                 R736      2010-041C TYPE / SERIAL NO    
+                    COD/ESA                  0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  15.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2010    10     1     0     0    0.0000000                 VALID FROM          
+IGS08_1645                                                  SINEX CODE          
+   R01                                                      START OF FREQUENCY  
+   -545.00      0.00   2401.70                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+   -545.00      0.00   2401.70                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS             R10                 R781      1995-037B TYPE / SERIAL NO    
+                                             0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  15.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  1995     7    24     0     0    0.0000000                 VALID FROM          
+  2006    12    24    23    59   59.9999999                 VALID UNTIL         
+IGS08_1645                                                  SINEX CODE          
+ATTENTION! ROUNDED BLOCK MEAN Z-OFFSET VALUE!               COMMENT             
+   R01                                                      START OF FREQUENCY  
+      0.00      0.00   2100.00                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+      0.00      0.00   2100.00                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS-M           R10                 R717      2006-062B TYPE / SERIAL NO    
+                    COD/ESA                  0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  15.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2006    12    25     0     0    0.0000000                 VALID FROM          
+IGS08_1645                                                  SINEX CODE          
+   R01                                                      START OF FREQUENCY  
+   -545.00      0.00   2369.00                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+   -545.00      0.00   2369.00                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS             R11                 R785      1995-037C TYPE / SERIAL NO    
+                                             0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  15.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  1995     7    24     0     0    0.0000000                 VALID FROM          
+  2007    12    24    23    59   59.9999999                 VALID UNTIL         
+IGS08_1645                                                  SINEX CODE          
+ATTENTION! ROUNDED BLOCK MEAN Z-OFFSET VALUE!               COMMENT             
+   R01                                                      START OF FREQUENCY  
+      0.00      0.00   2100.00                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+      0.00      0.00   2100.00                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS-M           R11                 R723      2007-065C TYPE / SERIAL NO    
+                    COD/ESA                  0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  15.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2007    12    25     0     0    0.0000000                 VALID FROM          
+IGS08_1645                                                  SINEX CODE          
+   R01                                                      START OF FREQUENCY  
+   -545.00      0.00   2425.40                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+   -545.00      0.00   2425.40                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS             R12                 R767      1994-050A TYPE / SERIAL NO    
+                                             0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  15.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  1994     8    11     0     0    0.0000000                 VALID FROM          
+  2010     9     1    23    59   59.9999999                 VALID UNTIL         
+IGS08_1645                                                  SINEX CODE          
+ATTENTION! ROUNDED BLOCK MEAN Z-OFFSET VALUE!               COMMENT             
+   R01                                                      START OF FREQUENCY  
+      0.00      0.00   2100.00                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+      0.00      0.00   2100.00                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS-M           R12                 R737      2010-041B TYPE / SERIAL NO    
+                    COD/ESA                  0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  15.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2010     9     2     0     0    0.0000000                 VALID FROM          
+IGS08_1645                                                  SINEX CODE          
+   R01                                                      START OF FREQUENCY  
+   -545.00      0.00   2508.40                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+   -545.00      0.00   2508.40                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS             R13                 R782      1995-068A TYPE / SERIAL NO    
+                                             0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  15.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  1995    12    14     0     0    0.0000000                 VALID FROM          
+  2007    12    24    23    59   59.9999999                 VALID UNTIL         
+IGS08_1645                                                  SINEX CODE          
+ATTENTION! ROUNDED BLOCK MEAN Z-OFFSET VALUE!               COMMENT             
+   R01                                                      START OF FREQUENCY  
+      0.00      0.00   2100.00                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+      0.00      0.00   2100.00                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS-M           R13                 R721      2007-065A TYPE / SERIAL NO    
+                    COD/ESA                  0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  15.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2007    12    25     0     0    0.0000000                 VALID FROM          
+IGS08_1645                                                  SINEX CODE          
+   R01                                                      START OF FREQUENCY  
+   -545.00      0.00   2417.90                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+   -545.00      0.00   2417.90                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS             R14                 R770      1994-050C TYPE / SERIAL NO    
+                                             0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  15.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  1994     8    11     0     0    0.0000000                 VALID FROM          
+  2006    12    24    23    59   59.9999999                 VALID UNTIL         
+IGS08_1645                                                  SINEX CODE          
+ATTENTION! ROUNDED BLOCK MEAN Z-OFFSET VALUE!               COMMENT             
+   R01                                                      START OF FREQUENCY  
+      0.00      0.00   2100.00                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+      0.00      0.00   2100.00                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS-M           R14                 R715      2006-062C TYPE / SERIAL NO    
+                    COD/ESA                  0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  15.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2006    12    25     0     0    0.0000000                 VALID FROM          
+  2010    12    15    23    59   59.9999999                 VALID UNTIL         
+IGS08_1645                                                  SINEX CODE          
+   R01                                                      START OF FREQUENCY  
+   -545.00      0.00   2505.60                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+   -545.00      0.00   2505.60                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS-M           R14                 R722      2007-065B TYPE / SERIAL NO    
+                    COD/ESA                  0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  15.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2010    12    16     0     0    0.0000000                 VALID FROM          
+IGS08_1645                                                  SINEX CODE          
+   R01                                                      START OF FREQUENCY  
+   -545.00      0.00   2548.50                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+   -545.00      0.00   2548.50                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS             R15                 R780      1995-037A TYPE / SERIAL NO    
+                                             0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  15.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  1995     7    24     0     0    0.0000000                 VALID FROM          
+  1999     4     6    23    59   59.9999999                 VALID UNTIL         
+IGS08_1645                                                  SINEX CODE          
+ATTENTION! ROUNDED BLOCK MEAN Z-OFFSET VALUE!               COMMENT             
+   R01                                                      START OF FREQUENCY  
+      0.00      0.00   2100.00                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+      0.00      0.00   2100.00                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS             R15                 R778      1995-068B TYPE / SERIAL NO    
+                                             0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  15.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  1999     4     7     0     0    0.0000000                 VALID FROM          
+  2006    12    24    23    59   59.9999999                 VALID UNTIL         
+IGS08_1645                                                  SINEX CODE          
+ATTENTION! ROUNDED BLOCK MEAN Z-OFFSET VALUE!               COMMENT             
+   R01                                                      START OF FREQUENCY  
+      0.00      0.00   2100.00                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+      0.00      0.00   2100.00                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS-M           R15                 R716      2006-062A TYPE / SERIAL NO    
+                    COD/ESA                  0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  15.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2006    12    25     0     0    0.0000000                 VALID FROM          
+IGS08_1645                                                  SINEX CODE          
+   R01                                                      START OF FREQUENCY  
+   -545.00      0.00   2505.10                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+   -545.00      0.00   2505.10                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS             R16                 R775      1994-050B TYPE / SERIAL NO    
+                                             0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  15.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  1994     8    11     0     0    0.0000000                 VALID FROM          
+  2010     9     1    23    59   59.9999999                 VALID UNTIL         
+IGS08_1645                                                  SINEX CODE          
+ATTENTION! ROUNDED BLOCK MEAN Z-OFFSET VALUE!               COMMENT             
+   R01                                                      START OF FREQUENCY  
+      0.00      0.00   2100.00                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+      0.00      0.00   2100.00                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS-M           R16                 R736      2010-041C TYPE / SERIAL NO    
+                    COD/ESA                  0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  15.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2010     9     2     0     0    0.0000000                 VALID FROM          
+  2010     9    30    23    59   59.9999999                 VALID UNTIL         
+IGS08_1645                                                  SINEX CODE          
+   R01                                                      START OF FREQUENCY  
+   -545.00      0.00   2401.70                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+   -545.00      0.00   2401.70                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS-M           R16                 R738      2010-041A TYPE / SERIAL NO    
+                    COD/ESA                  0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  15.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2010    10     1     0     0    0.0000000                 VALID FROM          
+IGS08_1645                                                  SINEX CODE          
+   R01                                                      START OF FREQUENCY  
+   -545.00      0.00   2516.10                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+   -545.00      0.00   2516.10                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS             R17                 R760      1994-021A TYPE / SERIAL NO    
+                                             0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  15.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  1994     4    11     0     0    0.0000000                 VALID FROM          
+  2000    10    12    23    59   59.9999999                 VALID UNTIL         
+IGS08_1645                                                  SINEX CODE          
+ATTENTION! ROUNDED BLOCK MEAN Z-OFFSET VALUE!               COMMENT             
+   R01                                                      START OF FREQUENCY  
+      0.00      0.00   2100.00                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+      0.00      0.00   2100.00                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS             R17                 R787      2000-063A TYPE / SERIAL NO    
+                    COD                      0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  15.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2000    10    13     0     0    0.0000000                 VALID FROM          
+  2007    10    25    23    59   59.9999999                 VALID UNTIL         
+IGS08_1645                                                  SINEX CODE          
+   R01                                                      START OF FREQUENCY  
+      0.00      0.00   2208.20                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+      0.00      0.00   2208.20                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS-M           R17                 R718      2007-052C TYPE / SERIAL NO    
+                    COD/ESA                  0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  15.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2007    10    26     0     0    0.0000000                 VALID FROM          
+  2010    12    15    23    59   59.9999999                 VALID UNTIL         
+IGS08_1645                                                  SINEX CODE          
+   R01                                                      START OF FREQUENCY  
+   -545.00      0.00   2534.90                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+   -545.00      0.00   2534.90                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS-M           R17                 R714      2005-050A TYPE / SERIAL NO    
+                    COD/ESA                  0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  15.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2010    12    16     0     0    0.0000000                 VALID FROM          
+IGS08_1645                                                  SINEX CODE          
+   R01                                                      START OF FREQUENCY  
+   -545.00      0.00   2179.40                              NORTH / EAST / UP   
+   NOAZI    5.20    4.50    3.20    2.00    0.40   -1.00   -2.30   -3.50   -4.00   -4.30   -4.00   -3.20   -1.80    0.50    3.20    5.20
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+   -545.00      0.00   2179.40                              NORTH / EAST / UP   
+   NOAZI    5.20    4.50    3.20    2.00    0.40   -1.00   -2.30   -3.50   -4.00   -4.30   -4.00   -3.20   -1.80    0.50    3.20    5.20
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS             R18                 R758      1994-021C TYPE / SERIAL NO    
+                                             0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  15.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  1994     4    11     0     0    0.0000000                 VALID FROM          
+  2000    10    12    23    59   59.9999999                 VALID UNTIL         
+IGS08_1645                                                  SINEX CODE          
+ATTENTION! ROUNDED BLOCK MEAN Z-OFFSET VALUE!               COMMENT             
+   R01                                                      START OF FREQUENCY  
+      0.00      0.00   2100.00                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+      0.00      0.00   2100.00                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS             R18                 R783      2000-063C TYPE / SERIAL NO    
+                    COD                      0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  15.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2000    10    13     0     0    0.0000000                 VALID FROM          
+  2008     9    24    23    59   59.9999999                 VALID UNTIL         
+IGS08_1645                                                  SINEX CODE          
+   R01                                                      START OF FREQUENCY  
+      0.00      0.00   2069.40                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+      0.00      0.00   2069.40                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS-M           R18                 R724      2008-046A TYPE / SERIAL NO    
+                    COD/ESA                  0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  15.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2008     9    25     0     0    0.0000000                 VALID FROM          
+IGS08_1645                                                  SINEX CODE          
+   R01                                                      START OF FREQUENCY  
+   -545.00      0.00   2448.40                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+   -545.00      0.00   2448.40                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS             R19                 R777      1995-009C TYPE / SERIAL NO    
+                                             0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  15.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  1995     3     7     0     0    0.0000000                 VALID FROM          
+  2005    12    24    23    59   59.9999999                 VALID UNTIL         
+IGS08_1645                                                  SINEX CODE          
+ATTENTION! ROUNDED BLOCK MEAN Z-OFFSET VALUE!               COMMENT             
+   R01                                                      START OF FREQUENCY  
+      0.00      0.00   2100.00                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+      0.00      0.00   2100.00                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS             R19                 R798      2005-050C TYPE / SERIAL NO    
+                    COD                      0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  15.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2005    12    25     0     0    0.0000000                 VALID FROM          
+  2007    10    25    23    59   59.9999999                 VALID UNTIL         
+IGS08_1645                                                  SINEX CODE          
+   R01                                                      START OF FREQUENCY  
+      0.00      0.00   2103.10                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+      0.00      0.00   2103.10                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS-M           R19                 R720      2007-052A TYPE / SERIAL NO    
+                    COD/ESA                  0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  15.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2007    10    26     0     0    0.0000000                 VALID FROM          
+IGS08_1645                                                  SINEX CODE          
+   R01                                                      START OF FREQUENCY  
+   -545.00      0.00   2498.40                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+   -545.00      0.00   2498.40                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS             R20                 R765      1995-009A TYPE / SERIAL NO    
+                                             0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  15.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  1995     3     7     0     0    0.0000000                 VALID FROM          
+  2006     2    27    23    59   59.9999999                 VALID UNTIL         
+IGS08_1645                                                  SINEX CODE          
+ATTENTION! ROUNDED BLOCK MEAN Z-OFFSET VALUE!               COMMENT             
+   R01                                                      START OF FREQUENCY  
+      0.00      0.00   2100.00                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+      0.00      0.00   2100.00                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS             R20                 R793      2002-060B TYPE / SERIAL NO    
+                    COD                      0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  15.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2006     2    28     0     0    0.0000000                 VALID FROM          
+  2007    10    25    23    59   59.9999999                 VALID UNTIL         
+IGS08_1645                                                  SINEX CODE          
+   R01                                                      START OF FREQUENCY  
+      0.00      0.00   2122.70                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+      0.00      0.00   2122.70                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS-M           R20                 R719      2007-052B TYPE / SERIAL NO    
+                    COD/ESA                  0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  15.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2007    10    26     0     0    0.0000000                 VALID FROM          
+IGS08_1645                                                  SINEX CODE          
+   R01                                                      START OF FREQUENCY  
+   -545.00      0.00   2448.20                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+   -545.00      0.00   2448.20                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS             R21                 R792      2002-060C TYPE / SERIAL NO    
+                    COD                      0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  15.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2002    12    25     0     0    0.0000000                 VALID FROM          
+  2008     9    24    23    59   59.9999999                 VALID UNTIL         
+IGS08_1645                                                  SINEX CODE          
+   R01                                                      START OF FREQUENCY  
+      0.00      0.00   2097.90                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+      0.00      0.00   2097.90                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS-M           R21                 R725      2008-046B TYPE / SERIAL NO    
+                    COD/ESA                  0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  15.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2008     9    25     0     0    0.0000000                 VALID FROM          
+IGS08_1645                                                  SINEX CODE          
+   R01                                                      START OF FREQUENCY  
+   -545.00      0.00   2329.80                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+   -545.00      0.00   2329.80                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS             R22                 R766      1995-009B TYPE / SERIAL NO    
+                                             0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  15.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  1995     3     7     0     0    0.0000000                 VALID FROM          
+  2002    12    24    23    59   59.9999999                 VALID UNTIL         
+IGS08_1645                                                  SINEX CODE          
+ATTENTION! ROUNDED BLOCK MEAN Z-OFFSET VALUE!               COMMENT             
+   R01                                                      START OF FREQUENCY  
+      0.00      0.00   2100.00                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+      0.00      0.00   2100.00                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS             R22                 R791      2002-060A TYPE / SERIAL NO    
+                    COD                      0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  15.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2002    12    25     0     0    0.0000000                 VALID FROM          
+  2007    10    25    23    59   59.9999999                 VALID UNTIL         
+IGS08_1645                                                  SINEX CODE          
+   R01                                                      START OF FREQUENCY  
+      0.00      0.00   2099.30                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+      0.00      0.00   2099.30                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS             R22                 R798      2005-050C TYPE / SERIAL NO    
+                    COD                      0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  15.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2007    10    26     0     0    0.0000000                 VALID FROM          
+  2008     9    24    23    59   59.9999999                 VALID UNTIL         
+IGS08_1645                                                  SINEX CODE          
+   R01                                                      START OF FREQUENCY  
+      0.00      0.00   2103.10                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+      0.00      0.00   2103.10                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS-M           R22                 R726      2008-046C TYPE / SERIAL NO    
+                    COD/ESA                  0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  15.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2008     9    25     0     0    0.0000000                 VALID FROM          
+  2010     2    28    23    59   59.9999999                 VALID UNTIL         
+IGS08_1645                                                  SINEX CODE          
+   R01                                                      START OF FREQUENCY  
+   -545.00      0.00   2401.70                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+   -545.00      0.00   2401.70                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS-M           R22                 R731      2010-007A TYPE / SERIAL NO    
+                    COD/ESA                  0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  15.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2010     3     1     0     0    0.0000000                 VALID FROM          
+IGS08_1645                                                  SINEX CODE          
+   R01                                                      START OF FREQUENCY  
+   -545.00      0.00   2411.00                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+   -545.00      0.00   2411.00                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS             R23                 R761      1994-021B TYPE / SERIAL NO    
+                                             0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  15.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  1994     4    11     0     0    0.0000000                 VALID FROM          
+  2002    12    24    23    59   59.9999999                 VALID UNTIL         
+IGS08_1645                                                  SINEX CODE          
+ATTENTION! ROUNDED BLOCK MEAN Z-OFFSET VALUE!               COMMENT             
+   R01                                                      START OF FREQUENCY  
+      0.00      0.00   2100.00                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+      0.00      0.00   2100.00                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS             R23                 R793      2002-060B TYPE / SERIAL NO    
+                    COD                      0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  15.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2002    12    25     0     0    0.0000000                 VALID FROM          
+  2006     2    27    23    59   59.9999999                 VALID UNTIL         
+IGS08_1645                                                  SINEX CODE          
+   R01                                                      START OF FREQUENCY  
+      0.00      0.00   2122.70                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+      0.00      0.00   2122.70                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS-M           R23                 R714      2005-050A TYPE / SERIAL NO    
+                    COD/ESA                  0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  15.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2006     2    28     0     0    0.0000000                 VALID FROM          
+  2010     3    18    23    59   59.9999999                 VALID UNTIL         
+IGS08_1645                                                  SINEX CODE          
+   R01                                                      START OF FREQUENCY  
+   -545.00      0.00   2179.40                              NORTH / EAST / UP   
+   NOAZI    5.20    4.50    3.20    2.00    0.40   -1.00   -2.30   -3.50   -4.00   -4.30   -4.00   -3.20   -1.80    0.50    3.20    5.20
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+   -545.00      0.00   2179.40                              NORTH / EAST / UP   
+   NOAZI    5.20    4.50    3.20    2.00    0.40   -1.00   -2.30   -3.50   -4.00   -4.30   -4.00   -3.20   -1.80    0.50    3.20    5.20
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS-M           R23                 R732      2010-007C TYPE / SERIAL NO    
+                    COD/ESA                  0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  15.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2010     3    19     0     0    0.0000000                 VALID FROM          
+IGS08_1645                                                  SINEX CODE          
+   R01                                                      START OF FREQUENCY  
+   -545.00      0.00   2318.20                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+   -545.00      0.00   2318.20                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS             R24                 R788      2000-063B TYPE / SERIAL NO    
+                    COD                      0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  15.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2000    10    13     0     0    0.0000000                 VALID FROM          
+  2005    12    24    23    59   59.9999999                 VALID UNTIL         
+IGS08_1645                                                  SINEX CODE          
+   R01                                                      START OF FREQUENCY  
+      0.00      0.00   2222.30                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+      0.00      0.00   2222.30                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS-M           R24                 R713      2005-050B TYPE / SERIAL NO    
+                    COD/ESA                  0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  15.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2005    12    25     0     0    0.0000000                 VALID FROM          
+  2010     2    28    23    59   59.9999999                 VALID UNTIL         
+IGS08_1645                                                  SINEX CODE          
+   R01                                                      START OF FREQUENCY  
+   -545.00      0.00   2495.40                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+   -545.00      0.00   2495.40                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+GLONASS-M           R24                 R735      2010-007B TYPE / SERIAL NO    
+                    COD/ESA                  0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  15.0   1.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+  2010     3     1     0     0    0.0000000                 VALID FROM          
+IGS08_1645                                                  SINEX CODE          
+   R01                                                      START OF FREQUENCY  
+   -545.00      0.00   2483.00                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+   -545.00      0.00   2483.00                              NORTH / EAST / UP   
+   NOAZI    1.90    1.50    1.10    0.80    0.20   -0.20   -0.60   -1.10   -1.30   -1.60   -1.80   -1.60   -1.10    0.00    1.50    2.20
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+3S-02-TSADM     NONE                                        TYPE / SERIAL NO    
+CONVERTED           TUM                      1    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+CONVERTED FROM igs_01.pcv                                   COMMENT             
+   G01                                                      START OF FREQUENCY  
+      2.28      3.23    254.35                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.23   -0.70   -1.43   -2.22   -3.12   -3.96   -4.59   -4.97   -4.91   -4.46   -3.49   -2.03   -0.05    2.62    6.09   10.47
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.72      3.61    283.95                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.03   -0.21   -0.68   -1.19   -1.68   -2.29   -2.67   -3.01   -3.01   -2.75   -1.96   -0.73    0.77    2.57    4.69    7.05
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+3S-02-TSATE     NONE                                        TYPE / SERIAL NO    
+CONVERTED           TUM                      0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+CONVERTED FROM igs_01.pcv                                   COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.58     -0.37    152.85                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.23   -0.90   -1.93   -3.22   -4.62   -5.96   -7.09   -7.87   -8.21   -8.06   -7.39   -6.23   -4.55   -2.28    0.69    4.47    9.08   14.23
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.08     -0.59    163.35                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.13   -0.51   -1.08   -1.79   -2.58   -3.39   -4.17   -4.81   -5.21   -5.25   -4.86   -4.03   -2.83   -1.33    0.49    2.75    5.68    9.44
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+AERAT2775_43    NONE                                        TYPE / SERIAL NO    
+FIELD               NGS                      3    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      2.88     -0.97     70.15                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.13   -0.30   -0.63   -1.22   -1.92   -2.56   -3.29   -3.77   -4.01   -4.06   -3.69   -3.03   -1.95   -0.18    2.29    5.77
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.28     -0.39     86.45                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.83   -1.51   -2.28   -3.09   -3.88   -4.69   -5.57   -6.21   -6.81   -6.95   -6.56   -5.73   -4.23   -2.13    0.79    4.55
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+AERAT2775_43    SPKE                                        TYPE / SERIAL NO    
+FIELD               NGS                      3    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      2.48     -1.57     69.75                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.33   -0.40   -0.63   -0.92   -1.22   -1.66   -2.09   -2.57   -2.81   -2.86   -2.79   -2.23   -1.45    0.02    2.49    6.07
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.48     -0.49     88.45                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.33   -0.71   -1.18   -1.79   -2.38   -3.19   -3.87   -4.51   -5.01   -5.05   -4.76   -3.93   -2.73   -1.03    1.29    4.25
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+AOAD/M_B        NONE                                        TYPE / SERIAL NO    
+CONVERTED           TUM                      0    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+CONVERTED FROM igs_01.pcv                                   COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.58     -0.37     59.85                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.23   -0.90   -1.93   -3.22   -4.62   -5.96   -7.09   -7.87   -8.21   -8.06   -7.39   -6.23   -4.55   -2.28    0.69    4.47    9.08   14.23
+     0.0    0.00   -0.27   -0.98   -2.07   -3.42   -4.87   -6.26   -7.43   -8.21   -8.53   -8.32   -7.62   -6.44   -4.77   -2.54    0.39    4.14    8.68   13.67
+     5.0    0.00   -0.27   -0.98   -2.06   -3.41   -4.86   -6.25   -7.41   -8.20   -8.52   -8.31   -7.60   -6.41   -4.74   -2.50    0.42    4.18    8.73   13.73
+    10.0    0.00   -0.26   -0.97   -2.05   -3.39   -4.84   -6.23   -7.40   -8.19   -8.50   -8.30   -7.58   -6.38   -4.70   -2.46    0.47    4.23    8.79   13.83
+    15.0    0.00   -0.26   -0.97   -2.05   -3.38   -4.82   -6.21   -7.37   -8.17   -8.49   -8.28   -7.56   -6.36   -4.66   -2.41    0.53    4.30    8.88   13.96
+    20.0    0.00   -0.26   -0.96   -2.03   -3.36   -4.80   -6.18   -7.35   -8.15   -8.47   -8.27   -7.54   -6.33   -4.62   -2.36    0.60    4.38    9.00   14.12
+    25.0    0.00   -0.26   -0.96   -2.02   -3.34   -4.77   -6.16   -7.32   -8.12   -8.44   -8.25   -7.53   -6.30   -4.58   -2.30    0.68    4.49    9.13   14.31
+    30.0    0.00   -0.26   -0.95   -2.01   -3.32   -4.75   -6.12   -7.28   -8.08   -8.42   -8.22   -7.51   -6.28   -4.54   -2.24    0.77    4.61    9.29   14.51
+    35.0    0.00   -0.25   -0.94   -2.00   -3.30   -4.72   -6.09   -7.25   -8.05   -8.38   -8.20   -7.48   -6.25   -4.50   -2.17    0.87    4.75    9.46   14.71
+    40.0    0.00   -0.25   -0.93   -1.98   -3.28   -4.69   -6.05   -7.21   -8.01   -8.35   -8.17   -7.46   -6.23   -4.46   -2.10    0.97    4.88    9.62   14.90
+    45.0    0.00   -0.25   -0.93   -1.97   -3.26   -4.66   -6.02   -7.16   -7.96   -8.30   -8.13   -7.43   -6.19   -4.42   -2.03    1.08    5.02    9.78   15.07
+    50.0    0.00   -0.24   -0.92   -1.95   -3.24   -4.63   -5.98   -7.12   -7.91   -8.26   -8.09   -7.39   -6.16   -4.37   -1.97    1.17    5.14    9.92   15.22
+    55.0    0.00   -0.24   -0.91   -1.94   -3.21   -4.60   -5.94   -7.07   -7.86   -8.20   -8.04   -7.35   -6.12   -4.33   -1.91    1.24    5.24   10.04   15.34
+    60.0    0.00   -0.24   -0.90   -1.92   -3.19   -4.57   -5.90   -7.02   -7.81   -8.15   -7.99   -7.30   -6.08   -4.29   -1.87    1.30    5.31   10.11   15.41
+    65.0    0.00   -0.23   -0.89   -1.91   -3.17   -4.54   -5.86   -6.97   -7.75   -8.09   -7.93   -7.25   -6.03   -4.25   -1.83    1.33    5.34   10.15   15.45
+    70.0    0.00   -0.23   -0.89   -1.90   -3.15   -4.51   -5.82   -6.93   -7.70   -8.03   -7.88   -7.20   -5.99   -4.22   -1.82    1.33    5.33   10.14   15.45
+    75.0    0.00   -0.23   -0.88   -1.88   -3.13   -4.49   -5.79   -6.89   -7.65   -7.98   -7.82   -7.15   -5.96   -4.21   -1.82    1.31    5.28   10.08   15.40
+    80.0    0.00   -0.23   -0.87   -1.87   -3.12   -4.46   -5.76   -6.85   -7.61   -7.94   -7.78   -7.11   -5.93   -4.20   -1.85    1.25    5.20    9.99   15.32
+    85.0    0.00   -0.22   -0.87   -1.86   -3.10   -4.44   -5.74   -6.83   -7.58   -7.91   -7.75   -7.09   -5.92   -4.21   -1.89    1.17    5.09    9.86   15.20
+    90.0    0.00   -0.22   -0.86   -1.86   -3.09   -4.43   -5.72   -6.81   -7.56   -7.89   -7.73   -7.08   -5.92   -4.24   -1.95    1.08    4.96    9.71   15.05
+    95.0    0.00   -0.22   -0.86   -1.85   -3.09   -4.42   -5.71   -6.80   -7.56   -7.89   -7.73   -7.09   -5.94   -4.28   -2.02    0.97    4.82    9.54   14.88
+   100.0    0.00   -0.22   -0.86   -1.85   -3.08   -4.42   -5.71   -6.80   -7.56   -7.90   -7.75   -7.11   -5.98   -4.34   -2.11    0.86    4.68    9.37   14.70
+   105.0    0.00   -0.22   -0.86   -1.85   -3.08   -4.42   -5.72   -6.81   -7.58   -7.92   -7.78   -7.16   -6.04   -4.41   -2.19    0.75    4.54    9.21   14.52
+   110.0    0.00   -0.21   -0.85   -1.85   -3.09   -4.43   -5.73   -6.83   -7.61   -7.96   -7.83   -7.21   -6.10   -4.49   -2.28    0.64    4.42    9.07   14.35
+   115.0    0.00   -0.21   -0.85   -1.85   -3.09   -4.44   -5.75   -6.86   -7.65   -8.01   -7.89   -7.28   -6.18   -4.57   -2.36    0.56    4.32    8.95   14.20
+   120.0    0.00   -0.21   -0.86   -1.86   -3.10   -4.46   -5.77   -6.90   -7.69   -8.06   -7.95   -7.35   -6.25   -4.64   -2.44    0.48    4.25    8.86   14.08
+   125.0    0.00   -0.21   -0.86   -1.86   -3.12   -4.48   -5.80   -6.93   -7.73   -8.11   -8.01   -7.42   -6.33   -4.72   -2.50    0.43    4.20    8.81   13.99
+   130.0    0.00   -0.21   -0.86   -1.87   -3.13   -4.50   -5.83   -6.97   -7.78   -8.16   -8.07   -7.48   -6.39   -4.78   -2.55    0.40    4.18    8.78   13.94
+   135.0    0.00   -0.21   -0.86   -1.88   -3.15   -4.53   -5.86   -7.01   -7.82   -8.21   -8.12   -7.54   -6.45   -4.83   -2.59    0.38    4.17    8.78   13.92
+   140.0    0.00   -0.21   -0.86   -1.89   -3.16   -4.55   -5.89   -7.04   -7.85   -8.24   -8.16   -7.58   -6.49   -4.87   -2.62    0.37    4.18    8.79   13.93
+   145.0    0.00   -0.21   -0.87   -1.89   -3.18   -4.57   -5.92   -7.07   -7.88   -8.28   -8.19   -7.61   -6.52   -4.89   -2.63    0.37    4.19    8.81   13.95
+   150.0    0.00   -0.21   -0.87   -1.90   -3.19   -4.59   -5.95   -7.10   -7.91   -8.30   -8.21   -7.63   -6.54   -4.90   -2.63    0.37    4.21    8.83   13.98
+   155.0    0.00   -0.21   -0.87   -1.91   -3.20   -4.61   -5.97   -7.12   -7.93   -8.32   -8.23   -7.65   -6.55   -4.91   -2.64    0.38    4.21    8.84   14.00
+   160.0    0.00   -0.21   -0.87   -1.91   -3.21   -4.63   -5.98   -7.13   -7.94   -8.33   -8.24   -7.65   -6.56   -4.91   -2.64    0.38    4.21    8.83   14.00
+   165.0    0.00   -0.21   -0.88   -1.92   -3.22   -4.64   -6.00   -7.14   -7.95   -8.34   -8.24   -7.65   -6.55   -4.91   -2.64    0.37    4.19    8.81   13.98
+   170.0    0.00   -0.21   -0.88   -1.92   -3.23   -4.64   -6.00   -7.15   -7.96   -8.34   -8.25   -7.65   -6.55   -4.91   -2.64    0.35    4.16    8.76   13.93
+   175.0    0.00   -0.21   -0.88   -1.92   -3.23   -4.65   -6.01   -7.16   -7.97   -8.35   -8.25   -7.65   -6.55   -4.90   -2.64    0.33    4.11    8.70   13.87
+   180.0    0.00   -0.21   -0.88   -1.92   -3.23   -4.65   -6.01   -7.16   -7.97   -8.35   -8.25   -7.66   -6.55   -4.90   -2.65    0.31    4.07    8.63   13.79
+   185.0    0.00   -0.21   -0.88   -1.92   -3.23   -4.64   -6.00   -7.16   -7.97   -8.36   -8.26   -7.66   -6.55   -4.90   -2.66    0.28    4.02    8.57   13.72
+   190.0    0.00   -0.21   -0.87   -1.92   -3.22   -4.64   -6.00   -7.15   -7.97   -8.36   -8.26   -7.66   -6.54   -4.90   -2.67    0.26    3.99    8.52   13.66
+   195.0    0.00   -0.21   -0.87   -1.91   -3.21   -4.63   -5.99   -7.15   -7.97   -8.35   -8.25   -7.65   -6.53   -4.89   -2.66    0.26    3.97    8.50   13.64
+   200.0    0.00   -0.21   -0.87   -1.91   -3.20   -4.61   -5.98   -7.14   -7.96   -8.34   -8.24   -7.63   -6.52   -4.88   -2.65    0.27    3.98    8.52   13.67
+   205.0    0.00   -0.21   -0.87   -1.90   -3.19   -4.60   -5.96   -7.12   -7.94   -8.33   -8.22   -7.61   -6.49   -4.85   -2.62    0.30    4.03    8.58   13.75
+   210.0    0.00   -0.21   -0.87   -1.89   -3.18   -4.59   -5.94   -7.10   -7.92   -8.30   -8.19   -7.57   -6.45   -4.80   -2.57    0.35    4.11    8.70   13.88
+   215.0    0.00   -0.21   -0.86   -1.89   -3.17   -4.57   -5.92   -7.08   -7.89   -8.26   -8.14   -7.52   -6.39   -4.74   -2.51    0.44    4.22    8.85   14.06
+   220.0    0.00   -0.21   -0.86   -1.88   -3.16   -4.55   -5.90   -7.05   -7.85   -8.22   -8.09   -7.46   -6.32   -4.67   -2.42    0.54    4.36    9.04   14.28
+   225.0    0.00   -0.21   -0.86   -1.88   -3.15   -4.53   -5.88   -7.01   -7.81   -8.17   -8.03   -7.38   -6.24   -4.58   -2.32    0.67    4.53    9.25   14.52
+   230.0    0.00   -0.21   -0.86   -1.87   -3.14   -4.52   -5.85   -6.98   -7.77   -8.11   -7.96   -7.30   -6.15   -4.48   -2.20    0.81    4.71    9.46   14.74
+   235.0    0.00   -0.21   -0.86   -1.87   -3.13   -4.50   -5.83   -6.95   -7.72   -8.05   -7.89   -7.22   -6.06   -4.37   -2.08    0.96    4.88    9.66   14.94
+   240.0    0.00   -0.22   -0.86   -1.86   -3.12   -4.49   -5.80   -6.91   -7.68   -7.99   -7.82   -7.14   -5.97   -4.27   -1.96    1.10    5.04    9.83   15.09
+   245.0    0.00   -0.22   -0.86   -1.86   -3.12   -4.48   -5.78   -6.88   -7.64   -7.94   -7.76   -7.07   -5.88   -4.17   -1.84    1.23    5.18    9.95   15.17
+   250.0    0.00   -0.22   -0.86   -1.87   -3.11   -4.47   -5.77   -6.86   -7.60   -7.90   -7.71   -7.01   -5.81   -4.08   -1.74    1.34    5.27   10.01   15.19
+   255.0    0.00   -0.22   -0.87   -1.87   -3.12   -4.47   -5.76   -6.84   -7.58   -7.87   -7.67   -6.97   -5.76   -4.01   -1.66    1.41    5.32   10.00   15.12
+   260.0    0.00   -0.22   -0.87   -1.87   -3.12   -4.47   -5.76   -6.84   -7.57   -7.86   -7.65   -6.94   -5.72   -3.97   -1.61    1.45    5.32    9.94   15.00
+   265.0    0.00   -0.23   -0.88   -1.88   -3.13   -4.48   -5.77   -6.84   -7.57   -7.86   -7.65   -6.93   -5.70   -3.94   -1.59    1.45    5.26    9.81   14.82
+   270.0    0.00   -0.23   -0.88   -1.89   -3.14   -4.49   -5.78   -6.85   -7.58   -7.87   -7.66   -6.94   -5.71   -3.94   -1.60    1.41    5.16    9.65   14.61
+   275.0    0.00   -0.23   -0.89   -1.90   -3.16   -4.51   -5.80   -6.88   -7.61   -7.90   -7.69   -6.97   -5.73   -3.97   -1.64    1.33    5.03    9.45   14.39
+   280.0    0.00   -0.23   -0.90   -1.92   -3.18   -4.54   -5.83   -6.91   -7.64   -7.93   -7.73   -7.01   -5.77   -4.02   -1.71    1.23    4.87    9.24   14.18
+   285.0    0.00   -0.24   -0.91   -1.93   -3.20   -4.56   -5.87   -6.95   -7.69   -7.98   -7.78   -7.06   -5.83   -4.09   -1.80    1.10    4.70    9.04   13.99
+   290.0    0.00   -0.24   -0.91   -1.95   -3.23   -4.60   -5.91   -7.00   -7.74   -8.04   -7.83   -7.12   -5.90   -4.17   -1.91    0.96    4.53    8.85   13.85
+   295.0    0.00   -0.24   -0.92   -1.96   -3.25   -4.63   -5.95   -7.05   -7.79   -8.09   -7.90   -7.19   -5.97   -4.26   -2.02    0.82    4.37    8.70   13.74
+   300.0    0.00   -0.25   -0.93   -1.98   -3.28   -4.67   -6.00   -7.10   -7.85   -8.15   -7.96   -7.26   -6.06   -4.36   -2.14    0.69    4.23    8.58   13.68
+   305.0    0.00   -0.25   -0.94   -2.00   -3.30   -4.71   -6.04   -7.16   -7.91   -8.21   -8.02   -7.32   -6.14   -4.46   -2.26    0.57    4.12    8.51   13.66
+   310.0    0.00   -0.25   -0.95   -2.01   -3.33   -4.74   -6.09   -7.21   -7.97   -8.27   -8.08   -7.39   -6.22   -4.55   -2.36    0.46    4.04    8.47   13.66
+   315.0    0.00   -0.26   -0.96   -2.03   -3.35   -4.78   -6.13   -7.26   -8.02   -8.33   -8.14   -7.45   -6.29   -4.64   -2.45    0.39    4.00    8.46   13.68
+   320.0    0.00   -0.26   -0.96   -2.04   -3.37   -4.81   -6.17   -7.30   -8.07   -8.38   -8.19   -7.51   -6.35   -4.71   -2.52    0.33    3.97    8.47   13.69
+   325.0    0.00   -0.26   -0.97   -2.05   -3.39   -4.83   -6.20   -7.34   -8.11   -8.42   -8.23   -7.55   -6.40   -4.76   -2.57    0.30    3.97    8.50   13.71
+   330.0    0.00   -0.26   -0.98   -2.06   -3.41   -4.85   -6.23   -7.37   -8.14   -8.45   -8.27   -7.59   -6.44   -4.81   -2.61    0.28    3.98    8.53   13.70
+   335.0    0.00   -0.26   -0.98   -2.07   -3.42   -4.87   -6.25   -7.40   -8.17   -8.48   -8.30   -7.62   -6.47   -4.83   -2.63    0.28    4.01    8.56   13.69
+   340.0    0.00   -0.27   -0.98   -2.07   -3.42   -4.88   -6.27   -7.42   -8.19   -8.51   -8.32   -7.64   -6.48   -4.84   -2.63    0.29    4.03    8.59   13.67
+   345.0    0.00   -0.27   -0.98   -2.08   -3.43   -4.88   -6.27   -7.43   -8.21   -8.52   -8.33   -7.64   -6.48   -4.84   -2.62    0.30    4.06    8.61   13.65
+   350.0    0.00   -0.27   -0.98   -2.08   -3.43   -4.88   -6.28   -7.43   -8.22   -8.53   -8.33   -7.64   -6.48   -4.82   -2.60    0.33    4.08    8.63   13.63
+   355.0    0.00   -0.27   -0.98   -2.07   -3.42   -4.88   -6.27   -7.43   -8.22   -8.53   -8.33   -7.63   -6.46   -4.80   -2.58    0.35    4.11    8.65   13.64
+   360.0    0.00   -0.27   -0.98   -2.07   -3.42   -4.87   -6.26   -7.43   -8.21   -8.53   -8.32   -7.62   -6.44   -4.77   -2.54    0.39    4.14    8.68   13.67
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.08     -0.59     88.35                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.13   -0.51   -1.08   -1.79   -2.58   -3.39   -4.17   -4.81   -5.21   -5.25   -4.86   -4.03   -2.83   -1.33    0.49    2.75    5.68    9.44
+     0.0    0.00   -0.12   -0.48   -1.02   -1.69   -2.44   -3.24   -4.04   -4.72   -5.17   -5.25   -4.89   -4.12   -3.00   -1.59    0.15    2.44    5.50    9.31
+     5.0    0.00   -0.12   -0.48   -1.02   -1.69   -2.44   -3.24   -4.03   -4.72   -5.16   -5.25   -4.90   -4.13   -3.01   -1.61    0.14    2.42    5.45    9.20
+    10.0    0.00   -0.12   -0.47   -1.01   -1.68   -2.44   -3.24   -4.03   -4.71   -5.15   -5.24   -4.90   -4.13   -3.02   -1.61    0.14    2.41    5.41    9.12
+    15.0    0.00   -0.12   -0.47   -1.01   -1.68   -2.44   -3.24   -4.02   -4.70   -5.14   -5.23   -4.89   -4.13   -3.02   -1.60    0.15    2.41    5.38    9.06
+    20.0    0.00   -0.11   -0.47   -1.01   -1.68   -2.44   -3.24   -4.02   -4.69   -5.13   -5.21   -4.88   -4.12   -3.00   -1.58    0.18    2.43    5.37    9.05
+    25.0    0.00   -0.11   -0.46   -1.00   -1.68   -2.44   -3.24   -4.02   -4.68   -5.11   -5.20   -4.86   -4.10   -2.97   -1.54    0.22    2.46    5.39    9.06
+    30.0    0.00   -0.11   -0.46   -1.00   -1.68   -2.45   -3.24   -4.01   -4.67   -5.09   -5.18   -4.84   -4.07   -2.93   -1.49    0.28    2.51    5.42    9.11
+    35.0    0.00   -0.11   -0.46   -1.00   -1.68   -2.45   -3.24   -4.01   -4.66   -5.08   -5.16   -4.81   -4.03   -2.88   -1.42    0.35    2.58    5.48    9.19
+    40.0    0.00   -0.11   -0.45   -1.00   -1.68   -2.45   -3.25   -4.01   -4.65   -5.06   -5.13   -4.78   -4.00   -2.83   -1.36    0.42    2.65    5.55    9.30
+    45.0    0.00   -0.10   -0.45   -0.99   -1.68   -2.45   -3.25   -4.01   -4.65   -5.05   -5.11   -4.75   -3.96   -2.78   -1.30    0.49    2.72    5.62    9.41
+    50.0    0.00   -0.10   -0.45   -0.99   -1.68   -2.45   -3.25   -4.01   -4.65   -5.05   -5.10   -4.72   -3.92   -2.73   -1.24    0.56    2.78    5.69    9.52
+    55.0    0.00   -0.10   -0.45   -0.99   -1.68   -2.46   -3.26   -4.02   -4.65   -5.04   -5.09   -4.70   -3.88   -2.69   -1.19    0.60    2.84    5.76    9.62
+    60.0    0.00   -0.10   -0.44   -0.99   -1.68   -2.46   -3.27   -4.03   -4.66   -5.05   -5.08   -4.68   -3.86   -2.66   -1.16    0.64    2.87    5.81    9.70
+    65.0    0.00   -0.10   -0.44   -0.99   -1.69   -2.47   -3.28   -4.05   -4.68   -5.06   -5.08   -4.67   -3.84   -2.64   -1.15    0.65    2.89    5.84    9.76
+    70.0    0.00   -0.10   -0.44   -0.99   -1.69   -2.48   -3.30   -4.07   -4.70   -5.07   -5.08   -4.67   -3.83   -2.64   -1.15    0.64    2.88    5.85    9.79
+    75.0    0.00   -0.10   -0.44   -0.99   -1.69   -2.49   -3.31   -4.09   -4.72   -5.09   -5.09   -4.67   -3.84   -2.65   -1.17    0.61    2.86    5.83    9.78
+    80.0    0.00   -0.10   -0.45   -1.00   -1.70   -2.50   -3.33   -4.12   -4.75   -5.11   -5.11   -4.68   -3.85   -2.67   -1.21    0.57    2.82    5.80    9.74
+    85.0    0.00   -0.10   -0.45   -1.00   -1.71   -2.52   -3.36   -4.14   -4.78   -5.14   -5.13   -4.70   -3.87   -2.70   -1.25    0.52    2.77    5.75    9.67
+    90.0    0.00   -0.10   -0.45   -1.01   -1.72   -2.54   -3.38   -4.17   -4.81   -5.17   -5.15   -4.72   -3.89   -2.73   -1.29    0.47    2.71    5.68    9.57
+    95.0    0.00   -0.10   -0.46   -1.02   -1.74   -2.55   -3.40   -4.20   -4.83   -5.19   -5.18   -4.74   -3.92   -2.77   -1.33    0.42    2.66    5.62    9.47
+   100.0    0.00   -0.11   -0.46   -1.03   -1.75   -2.58   -3.43   -4.22   -4.86   -5.22   -5.20   -4.77   -3.95   -2.80   -1.37    0.38    2.61    5.56    9.36
+   105.0    0.00   -0.11   -0.47   -1.04   -1.77   -2.60   -3.45   -4.25   -4.88   -5.24   -5.22   -4.79   -3.97   -2.82   -1.40    0.35    2.58    5.51    9.26
+   110.0    0.00   -0.11   -0.48   -1.05   -1.79   -2.62   -3.47   -4.27   -4.90   -5.26   -5.25   -4.82   -4.00   -2.84   -1.41    0.35    2.57    5.48    9.18
+   115.0    0.00   -0.11   -0.48   -1.07   -1.81   -2.64   -3.50   -4.29   -4.92   -5.28   -5.26   -4.84   -4.01   -2.85   -1.41    0.36    2.58    5.46    9.13
+   120.0    0.00   -0.12   -0.49   -1.08   -1.83   -2.66   -3.52   -4.30   -4.93   -5.29   -5.28   -4.85   -4.03   -2.86   -1.39    0.38    2.61    5.47    9.10
+   125.0    0.00   -0.12   -0.50   -1.10   -1.85   -2.68   -3.53   -4.32   -4.94   -5.30   -5.29   -4.87   -4.03   -2.85   -1.37    0.43    2.65    5.50    9.09
+   130.0    0.00   -0.12   -0.50   -1.11   -1.86   -2.70   -3.55   -4.33   -4.95   -5.30   -5.30   -4.88   -4.04   -2.84   -1.33    0.48    2.71    5.54    9.11
+   135.0    0.00   -0.12   -0.51   -1.12   -1.88   -2.72   -3.56   -4.33   -4.95   -5.30   -5.30   -4.88   -4.04   -2.82   -1.29    0.54    2.77    5.60    9.15
+   140.0    0.00   -0.13   -0.52   -1.13   -1.89   -2.73   -3.57   -4.33   -4.95   -5.31   -5.31   -4.89   -4.04   -2.80   -1.25    0.60    2.84    5.66    9.19
+   145.0    0.00   -0.13   -0.52   -1.14   -1.90   -2.74   -3.57   -4.33   -4.94   -5.31   -5.31   -4.89   -4.04   -2.79   -1.22    0.65    2.90    5.71    9.23
+   150.0    0.00   -0.13   -0.53   -1.15   -1.91   -2.74   -3.57   -4.33   -4.94   -5.31   -5.32   -4.90   -4.04   -2.78   -1.19    0.69    2.94    5.74    9.25
+   155.0    0.00   -0.13   -0.53   -1.15   -1.91   -2.74   -3.57   -4.33   -4.94   -5.31   -5.33   -4.91   -4.05   -2.78   -1.18    0.71    2.97    5.76    9.25
+   160.0    0.00   -0.13   -0.53   -1.15   -1.91   -2.74   -3.56   -4.32   -4.93   -5.31   -5.33   -4.92   -4.06   -2.78   -1.18    0.71    2.97    5.76    9.23
+   165.0    0.00   -0.14   -0.54   -1.15   -1.91   -2.73   -3.55   -4.31   -4.93   -5.31   -5.34   -4.94   -4.07   -2.80   -1.19    0.70    2.95    5.73    9.18
+   170.0    0.00   -0.14   -0.54   -1.15   -1.90   -2.72   -3.54   -4.30   -4.93   -5.32   -5.35   -4.95   -4.09   -2.82   -1.22    0.66    2.91    5.68    9.11
+   175.0    0.00   -0.14   -0.54   -1.15   -1.90   -2.71   -3.53   -4.30   -4.93   -5.32   -5.36   -4.96   -4.11   -2.84   -1.26    0.61    2.85    5.62    9.03
+   180.0    0.00   -0.14   -0.54   -1.14   -1.89   -2.70   -3.52   -4.29   -4.93   -5.33   -5.37   -4.97   -4.12   -2.87   -1.30    0.55    2.77    5.55    8.96
+   185.0    0.00   -0.14   -0.54   -1.14   -1.87   -2.69   -3.51   -4.29   -4.93   -5.34   -5.38   -4.98   -4.13   -2.89   -1.35    0.48    2.70    5.48    8.89
+   190.0    0.00   -0.14   -0.53   -1.13   -1.86   -2.67   -3.50   -4.29   -4.94   -5.34   -5.38   -4.97   -4.12   -2.90   -1.38    0.42    2.63    5.42    8.86
+   195.0    0.00   -0.14   -0.53   -1.12   -1.85   -2.66   -3.49   -4.28   -4.94   -5.34   -5.37   -4.96   -4.11   -2.90   -1.40    0.38    2.58    5.39    8.87
+   200.0    0.00   -0.14   -0.53   -1.12   -1.84   -2.65   -3.49   -4.29   -4.95   -5.34   -5.36   -4.94   -4.09   -2.89   -1.41    0.35    2.55    5.39    8.92
+   205.0    0.00   -0.15   -0.53   -1.11   -1.83   -2.64   -3.48   -4.29   -4.95   -5.34   -5.35   -4.91   -4.05   -2.86   -1.40    0.35    2.55    5.43    9.01
+   210.0    0.00   -0.15   -0.53   -1.11   -1.82   -2.63   -3.48   -4.29   -4.95   -5.34   -5.33   -4.88   -4.01   -2.82   -1.36    0.38    2.59    5.50    9.15
+   215.0    0.00   -0.15   -0.53   -1.10   -1.82   -2.63   -3.48   -4.29   -4.95   -5.33   -5.32   -4.85   -3.97   -2.77   -1.31    0.44    2.67    5.61    9.32
+   220.0    0.00   -0.15   -0.53   -1.10   -1.82   -2.63   -3.48   -4.29   -4.95   -5.32   -5.30   -4.82   -3.93   -2.71   -1.24    0.52    2.78    5.76    9.50
+   225.0    0.00   -0.15   -0.53   -1.10   -1.82   -2.63   -3.47   -4.28   -4.94   -5.31   -5.28   -4.79   -3.89   -2.66   -1.17    0.63    2.91    5.91    9.68
+   230.0    0.00   -0.15   -0.53   -1.11   -1.82   -2.63   -3.47   -4.28   -4.93   -5.30   -5.27   -4.78   -3.86   -2.61   -1.09    0.75    3.06    6.07    9.84
+   235.0    0.00   -0.15   -0.54   -1.11   -1.82   -2.63   -3.47   -4.27   -4.92   -5.29   -5.26   -4.77   -3.85   -2.58   -1.01    0.86    3.21    6.22    9.96
+   240.0    0.00   -0.15   -0.54   -1.11   -1.83   -2.63   -3.47   -4.26   -4.91   -5.28   -5.26   -4.78   -3.86   -2.56   -0.95    0.97    3.35    6.35   10.04
+   245.0    0.00   -0.15   -0.54   -1.12   -1.83   -2.63   -3.46   -4.25   -4.89   -5.27   -5.26   -4.80   -3.88   -2.56   -0.91    1.06    3.46    6.44   10.07
+   250.0    0.00   -0.15   -0.54   -1.12   -1.84   -2.63   -3.46   -4.23   -4.88   -5.26   -5.27   -4.83   -3.92   -2.58   -0.90    1.12    3.53    6.48   10.05
+   255.0    0.00   -0.16   -0.55   -1.13   -1.84   -2.64   -3.45   -4.22   -4.86   -5.26   -5.29   -4.87   -3.97   -2.63   -0.91    1.14    3.56    6.47    9.98
+   260.0    0.00   -0.16   -0.55   -1.13   -1.85   -2.64   -3.44   -4.20   -4.84   -5.25   -5.31   -4.91   -4.03   -2.68   -0.95    1.12    3.54    6.41    9.87
+   265.0    0.00   -0.16   -0.55   -1.14   -1.85   -2.64   -3.43   -4.19   -4.83   -5.25   -5.33   -4.96   -4.09   -2.75   -1.01    1.07    3.48    6.31    9.74
+   270.0    0.00   -0.16   -0.56   -1.14   -1.86   -2.63   -3.43   -4.18   -4.82   -5.25   -5.34   -5.00   -4.15   -2.82   -1.08    0.98    3.37    6.18    9.61
+   275.0    0.00   -0.16   -0.56   -1.14   -1.86   -2.63   -3.42   -4.16   -4.80   -5.24   -5.36   -5.03   -4.20   -2.89   -1.17    0.87    3.23    6.03    9.50
+   280.0    0.00   -0.16   -0.56   -1.15   -1.86   -2.63   -3.41   -4.15   -4.79   -5.24   -5.36   -5.05   -4.24   -2.95   -1.26    0.75    3.08    5.88    9.41
+   285.0    0.00   -0.16   -0.56   -1.14   -1.85   -2.62   -3.40   -4.14   -4.79   -5.23   -5.36   -5.06   -4.27   -3.00   -1.35    0.62    2.92    5.73    9.36
+   290.0    0.00   -0.16   -0.56   -1.14   -1.85   -2.61   -3.39   -4.13   -4.78   -5.23   -5.36   -5.06   -4.28   -3.04   -1.42    0.50    2.77    5.60    9.35
+   295.0    0.00   -0.16   -0.55   -1.14   -1.84   -2.60   -3.38   -4.12   -4.77   -5.22   -5.35   -5.05   -4.27   -3.05   -1.48    0.39    2.64    5.51    9.38
+   300.0    0.00   -0.15   -0.55   -1.13   -1.83   -2.59   -3.37   -4.12   -4.77   -5.21   -5.33   -5.02   -4.25   -3.06   -1.53    0.30    2.53    5.45    9.45
+   305.0    0.00   -0.15   -0.55   -1.12   -1.82   -2.57   -3.35   -4.11   -4.76   -5.20   -5.31   -4.99   -4.22   -3.04   -1.55    0.24    2.46    5.42    9.53
+   310.0    0.00   -0.15   -0.54   -1.11   -1.80   -2.56   -3.34   -4.10   -4.76   -5.20   -5.29   -4.96   -4.18   -3.02   -1.56    0.20    2.41    5.42    9.63
+   315.0    0.00   -0.15   -0.54   -1.10   -1.79   -2.54   -3.33   -4.09   -4.75   -5.19   -5.28   -4.93   -4.14   -2.99   -1.55    0.18    2.40    5.45    9.72
+   320.0    0.00   -0.15   -0.53   -1.09   -1.77   -2.52   -3.31   -4.08   -4.75   -5.18   -5.26   -4.90   -4.11   -2.96   -1.54    0.18    2.40    5.50    9.80
+   325.0    0.00   -0.14   -0.53   -1.08   -1.76   -2.51   -3.30   -4.07   -4.74   -5.18   -5.25   -4.88   -4.08   -2.94   -1.53    0.18    2.42    5.54    9.84
+   330.0    0.00   -0.14   -0.52   -1.07   -1.74   -2.49   -3.28   -4.07   -4.74   -5.18   -5.24   -4.86   -4.06   -2.92   -1.52    0.19    2.45    5.59    9.85
+   335.0    0.00   -0.14   -0.51   -1.06   -1.73   -2.48   -3.27   -4.06   -4.74   -5.17   -5.24   -4.86   -4.05   -2.92   -1.52    0.20    2.47    5.62    9.83
+   340.0    0.00   -0.14   -0.51   -1.05   -1.72   -2.46   -3.26   -4.05   -4.74   -5.17   -5.24   -4.86   -4.06   -2.92   -1.52    0.21    2.49    5.63    9.76
+   345.0    0.00   -0.13   -0.50   -1.04   -1.71   -2.46   -3.25   -4.05   -4.73   -5.17   -5.24   -4.86   -4.07   -2.93   -1.53    0.20    2.49    5.62    9.67
+   350.0    0.00   -0.13   -0.49   -1.03   -1.70   -2.45   -3.25   -4.04   -4.73   -5.17   -5.24   -4.87   -4.08   -2.95   -1.55    0.19    2.48    5.59    9.55
+   355.0    0.00   -0.13   -0.49   -1.03   -1.69   -2.44   -3.24   -4.04   -4.73   -5.17   -5.25   -4.88   -4.10   -2.98   -1.57    0.17    2.46    5.55    9.43
+   360.0    0.00   -0.12   -0.48   -1.02   -1.69   -2.44   -3.24   -4.04   -4.72   -5.17   -5.25   -4.89   -4.12   -3.00   -1.59    0.15    2.44    5.50    9.31
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+AOAD/M_T        NONE                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               2    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+Number of Calibrated Antennas GPS:      002                 COMMENT             
+Number of Individual Calibrations GPS:  062                 COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.58     -0.37     91.85                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.23   -0.90   -1.93   -3.22   -4.62   -5.96   -7.09   -7.87   -8.21   -8.06   -7.39   -6.23   -4.55   -2.28    0.69    4.47    9.08   14.23
+     0.0    0.00   -0.27   -0.98   -2.07   -3.42   -4.87   -6.26   -7.43   -8.21   -8.53   -8.32   -7.62   -6.44   -4.77   -2.54    0.39    4.14    8.68   13.67
+     5.0    0.00   -0.27   -0.98   -2.06   -3.41   -4.86   -6.25   -7.41   -8.20   -8.52   -8.31   -7.60   -6.41   -4.74   -2.50    0.42    4.18    8.73   13.73
+    10.0    0.00   -0.26   -0.97   -2.05   -3.39   -4.84   -6.23   -7.40   -8.19   -8.50   -8.30   -7.58   -6.38   -4.70   -2.46    0.47    4.23    8.79   13.83
+    15.0    0.00   -0.26   -0.97   -2.05   -3.38   -4.82   -6.21   -7.37   -8.17   -8.49   -8.28   -7.56   -6.36   -4.66   -2.41    0.53    4.30    8.88   13.96
+    20.0    0.00   -0.26   -0.96   -2.03   -3.36   -4.80   -6.18   -7.35   -8.15   -8.47   -8.27   -7.54   -6.33   -4.62   -2.36    0.60    4.38    9.00   14.12
+    25.0    0.00   -0.26   -0.96   -2.02   -3.34   -4.77   -6.16   -7.32   -8.12   -8.44   -8.25   -7.53   -6.30   -4.58   -2.30    0.68    4.49    9.13   14.31
+    30.0    0.00   -0.26   -0.95   -2.01   -3.32   -4.75   -6.12   -7.28   -8.08   -8.42   -8.22   -7.51   -6.28   -4.54   -2.24    0.77    4.61    9.29   14.51
+    35.0    0.00   -0.25   -0.94   -2.00   -3.30   -4.72   -6.09   -7.25   -8.05   -8.38   -8.20   -7.48   -6.25   -4.50   -2.17    0.87    4.75    9.46   14.71
+    40.0    0.00   -0.25   -0.93   -1.98   -3.28   -4.69   -6.05   -7.21   -8.01   -8.35   -8.17   -7.46   -6.23   -4.46   -2.10    0.97    4.88    9.62   14.90
+    45.0    0.00   -0.25   -0.93   -1.97   -3.26   -4.66   -6.02   -7.16   -7.96   -8.30   -8.13   -7.43   -6.19   -4.42   -2.03    1.08    5.02    9.78   15.07
+    50.0    0.00   -0.24   -0.92   -1.95   -3.24   -4.63   -5.98   -7.12   -7.91   -8.26   -8.09   -7.39   -6.16   -4.37   -1.97    1.17    5.14    9.92   15.22
+    55.0    0.00   -0.24   -0.91   -1.94   -3.21   -4.60   -5.94   -7.07   -7.86   -8.20   -8.04   -7.35   -6.12   -4.33   -1.91    1.24    5.24   10.04   15.34
+    60.0    0.00   -0.24   -0.90   -1.92   -3.19   -4.57   -5.90   -7.02   -7.81   -8.15   -7.99   -7.30   -6.08   -4.29   -1.87    1.30    5.31   10.11   15.41
+    65.0    0.00   -0.23   -0.89   -1.91   -3.17   -4.54   -5.86   -6.97   -7.75   -8.09   -7.93   -7.25   -6.03   -4.25   -1.83    1.33    5.34   10.15   15.45
+    70.0    0.00   -0.23   -0.89   -1.90   -3.15   -4.51   -5.82   -6.93   -7.70   -8.03   -7.88   -7.20   -5.99   -4.22   -1.82    1.33    5.33   10.14   15.45
+    75.0    0.00   -0.23   -0.88   -1.88   -3.13   -4.49   -5.79   -6.89   -7.65   -7.98   -7.82   -7.15   -5.96   -4.21   -1.82    1.31    5.28   10.08   15.40
+    80.0    0.00   -0.23   -0.87   -1.87   -3.12   -4.46   -5.76   -6.85   -7.61   -7.94   -7.78   -7.11   -5.93   -4.20   -1.85    1.25    5.20    9.99   15.32
+    85.0    0.00   -0.22   -0.87   -1.86   -3.10   -4.44   -5.74   -6.83   -7.58   -7.91   -7.75   -7.09   -5.92   -4.21   -1.89    1.17    5.09    9.86   15.20
+    90.0    0.00   -0.22   -0.86   -1.86   -3.09   -4.43   -5.72   -6.81   -7.56   -7.89   -7.73   -7.08   -5.92   -4.24   -1.95    1.08    4.96    9.71   15.05
+    95.0    0.00   -0.22   -0.86   -1.85   -3.09   -4.42   -5.71   -6.80   -7.56   -7.89   -7.73   -7.09   -5.94   -4.28   -2.02    0.97    4.82    9.54   14.88
+   100.0    0.00   -0.22   -0.86   -1.85   -3.08   -4.42   -5.71   -6.80   -7.56   -7.90   -7.75   -7.11   -5.98   -4.34   -2.11    0.86    4.68    9.37   14.70
+   105.0    0.00   -0.22   -0.86   -1.85   -3.08   -4.42   -5.72   -6.81   -7.58   -7.92   -7.78   -7.16   -6.04   -4.41   -2.19    0.75    4.54    9.21   14.52
+   110.0    0.00   -0.21   -0.85   -1.85   -3.09   -4.43   -5.73   -6.83   -7.61   -7.96   -7.83   -7.21   -6.10   -4.49   -2.28    0.64    4.42    9.07   14.35
+   115.0    0.00   -0.21   -0.85   -1.85   -3.09   -4.44   -5.75   -6.86   -7.65   -8.01   -7.89   -7.28   -6.18   -4.57   -2.36    0.56    4.32    8.95   14.20
+   120.0    0.00   -0.21   -0.86   -1.86   -3.10   -4.46   -5.77   -6.90   -7.69   -8.06   -7.95   -7.35   -6.25   -4.64   -2.44    0.48    4.25    8.86   14.08
+   125.0    0.00   -0.21   -0.86   -1.86   -3.12   -4.48   -5.80   -6.93   -7.73   -8.11   -8.01   -7.42   -6.33   -4.72   -2.50    0.43    4.20    8.81   13.99
+   130.0    0.00   -0.21   -0.86   -1.87   -3.13   -4.50   -5.83   -6.97   -7.78   -8.16   -8.07   -7.48   -6.39   -4.78   -2.55    0.40    4.18    8.78   13.94
+   135.0    0.00   -0.21   -0.86   -1.88   -3.15   -4.53   -5.86   -7.01   -7.82   -8.21   -8.12   -7.54   -6.45   -4.83   -2.59    0.38    4.17    8.78   13.92
+   140.0    0.00   -0.21   -0.86   -1.89   -3.16   -4.55   -5.89   -7.04   -7.85   -8.24   -8.16   -7.58   -6.49   -4.87   -2.62    0.37    4.18    8.79   13.93
+   145.0    0.00   -0.21   -0.87   -1.89   -3.18   -4.57   -5.92   -7.07   -7.88   -8.28   -8.19   -7.61   -6.52   -4.89   -2.63    0.37    4.19    8.81   13.95
+   150.0    0.00   -0.21   -0.87   -1.90   -3.19   -4.59   -5.95   -7.10   -7.91   -8.30   -8.21   -7.63   -6.54   -4.90   -2.63    0.37    4.21    8.83   13.98
+   155.0    0.00   -0.21   -0.87   -1.91   -3.20   -4.61   -5.97   -7.12   -7.93   -8.32   -8.23   -7.65   -6.55   -4.91   -2.64    0.38    4.21    8.84   14.00
+   160.0    0.00   -0.21   -0.87   -1.91   -3.21   -4.63   -5.98   -7.13   -7.94   -8.33   -8.24   -7.65   -6.56   -4.91   -2.64    0.38    4.21    8.83   14.00
+   165.0    0.00   -0.21   -0.88   -1.92   -3.22   -4.64   -6.00   -7.14   -7.95   -8.34   -8.24   -7.65   -6.55   -4.91   -2.64    0.37    4.19    8.81   13.98
+   170.0    0.00   -0.21   -0.88   -1.92   -3.23   -4.64   -6.00   -7.15   -7.96   -8.34   -8.25   -7.65   -6.55   -4.91   -2.64    0.35    4.16    8.76   13.93
+   175.0    0.00   -0.21   -0.88   -1.92   -3.23   -4.65   -6.01   -7.16   -7.97   -8.35   -8.25   -7.65   -6.55   -4.90   -2.64    0.33    4.11    8.70   13.87
+   180.0    0.00   -0.21   -0.88   -1.92   -3.23   -4.65   -6.01   -7.16   -7.97   -8.35   -8.25   -7.66   -6.55   -4.90   -2.65    0.31    4.07    8.63   13.79
+   185.0    0.00   -0.21   -0.88   -1.92   -3.23   -4.64   -6.00   -7.16   -7.97   -8.36   -8.26   -7.66   -6.55   -4.90   -2.66    0.28    4.02    8.57   13.72
+   190.0    0.00   -0.21   -0.87   -1.92   -3.22   -4.64   -6.00   -7.15   -7.97   -8.36   -8.26   -7.66   -6.54   -4.90   -2.67    0.26    3.99    8.52   13.66
+   195.0    0.00   -0.21   -0.87   -1.91   -3.21   -4.63   -5.99   -7.15   -7.97   -8.35   -8.25   -7.65   -6.53   -4.89   -2.66    0.26    3.97    8.50   13.64
+   200.0    0.00   -0.21   -0.87   -1.91   -3.20   -4.61   -5.98   -7.14   -7.96   -8.34   -8.24   -7.63   -6.52   -4.88   -2.65    0.27    3.98    8.52   13.67
+   205.0    0.00   -0.21   -0.87   -1.90   -3.19   -4.60   -5.96   -7.12   -7.94   -8.33   -8.22   -7.61   -6.49   -4.85   -2.62    0.30    4.03    8.58   13.75
+   210.0    0.00   -0.21   -0.87   -1.89   -3.18   -4.59   -5.94   -7.10   -7.92   -8.30   -8.19   -7.57   -6.45   -4.80   -2.57    0.35    4.11    8.70   13.88
+   215.0    0.00   -0.21   -0.86   -1.89   -3.17   -4.57   -5.92   -7.08   -7.89   -8.26   -8.14   -7.52   -6.39   -4.74   -2.51    0.44    4.22    8.85   14.06
+   220.0    0.00   -0.21   -0.86   -1.88   -3.16   -4.55   -5.90   -7.05   -7.85   -8.22   -8.09   -7.46   -6.32   -4.67   -2.42    0.54    4.36    9.04   14.28
+   225.0    0.00   -0.21   -0.86   -1.88   -3.15   -4.53   -5.88   -7.01   -7.81   -8.17   -8.03   -7.38   -6.24   -4.58   -2.32    0.67    4.53    9.25   14.52
+   230.0    0.00   -0.21   -0.86   -1.87   -3.14   -4.52   -5.85   -6.98   -7.77   -8.11   -7.96   -7.30   -6.15   -4.48   -2.20    0.81    4.71    9.46   14.74
+   235.0    0.00   -0.21   -0.86   -1.87   -3.13   -4.50   -5.83   -6.95   -7.72   -8.05   -7.89   -7.22   -6.06   -4.37   -2.08    0.96    4.88    9.66   14.94
+   240.0    0.00   -0.22   -0.86   -1.86   -3.12   -4.49   -5.80   -6.91   -7.68   -7.99   -7.82   -7.14   -5.97   -4.27   -1.96    1.10    5.04    9.83   15.09
+   245.0    0.00   -0.22   -0.86   -1.86   -3.12   -4.48   -5.78   -6.88   -7.64   -7.94   -7.76   -7.07   -5.88   -4.17   -1.84    1.23    5.18    9.95   15.17
+   250.0    0.00   -0.22   -0.86   -1.87   -3.11   -4.47   -5.77   -6.86   -7.60   -7.90   -7.71   -7.01   -5.81   -4.08   -1.74    1.34    5.27   10.01   15.19
+   255.0    0.00   -0.22   -0.87   -1.87   -3.12   -4.47   -5.76   -6.84   -7.58   -7.87   -7.67   -6.97   -5.76   -4.01   -1.66    1.41    5.32   10.00   15.12
+   260.0    0.00   -0.22   -0.87   -1.87   -3.12   -4.47   -5.76   -6.84   -7.57   -7.86   -7.65   -6.94   -5.72   -3.97   -1.61    1.45    5.32    9.94   15.00
+   265.0    0.00   -0.23   -0.88   -1.88   -3.13   -4.48   -5.77   -6.84   -7.57   -7.86   -7.65   -6.93   -5.70   -3.94   -1.59    1.45    5.26    9.81   14.82
+   270.0    0.00   -0.23   -0.88   -1.89   -3.14   -4.49   -5.78   -6.85   -7.58   -7.87   -7.66   -6.94   -5.71   -3.94   -1.60    1.41    5.16    9.65   14.61
+   275.0    0.00   -0.23   -0.89   -1.90   -3.16   -4.51   -5.80   -6.88   -7.61   -7.90   -7.69   -6.97   -5.73   -3.97   -1.64    1.33    5.03    9.45   14.39
+   280.0    0.00   -0.23   -0.90   -1.92   -3.18   -4.54   -5.83   -6.91   -7.64   -7.93   -7.73   -7.01   -5.77   -4.02   -1.71    1.23    4.87    9.24   14.18
+   285.0    0.00   -0.24   -0.91   -1.93   -3.20   -4.56   -5.87   -6.95   -7.69   -7.98   -7.78   -7.06   -5.83   -4.09   -1.80    1.10    4.70    9.04   13.99
+   290.0    0.00   -0.24   -0.91   -1.95   -3.23   -4.60   -5.91   -7.00   -7.74   -8.04   -7.83   -7.12   -5.90   -4.17   -1.91    0.96    4.53    8.85   13.85
+   295.0    0.00   -0.24   -0.92   -1.96   -3.25   -4.63   -5.95   -7.05   -7.79   -8.09   -7.90   -7.19   -5.97   -4.26   -2.02    0.82    4.37    8.70   13.74
+   300.0    0.00   -0.25   -0.93   -1.98   -3.28   -4.67   -6.00   -7.10   -7.85   -8.15   -7.96   -7.26   -6.06   -4.36   -2.14    0.69    4.23    8.58   13.68
+   305.0    0.00   -0.25   -0.94   -2.00   -3.30   -4.71   -6.04   -7.16   -7.91   -8.21   -8.02   -7.32   -6.14   -4.46   -2.26    0.57    4.12    8.51   13.66
+   310.0    0.00   -0.25   -0.95   -2.01   -3.33   -4.74   -6.09   -7.21   -7.97   -8.27   -8.08   -7.39   -6.22   -4.55   -2.36    0.46    4.04    8.47   13.66
+   315.0    0.00   -0.26   -0.96   -2.03   -3.35   -4.78   -6.13   -7.26   -8.02   -8.33   -8.14   -7.45   -6.29   -4.64   -2.45    0.39    4.00    8.46   13.68
+   320.0    0.00   -0.26   -0.96   -2.04   -3.37   -4.81   -6.17   -7.30   -8.07   -8.38   -8.19   -7.51   -6.35   -4.71   -2.52    0.33    3.97    8.47   13.69
+   325.0    0.00   -0.26   -0.97   -2.05   -3.39   -4.83   -6.20   -7.34   -8.11   -8.42   -8.23   -7.55   -6.40   -4.76   -2.57    0.30    3.97    8.50   13.71
+   330.0    0.00   -0.26   -0.98   -2.06   -3.41   -4.85   -6.23   -7.37   -8.14   -8.45   -8.27   -7.59   -6.44   -4.81   -2.61    0.28    3.98    8.53   13.70
+   335.0    0.00   -0.26   -0.98   -2.07   -3.42   -4.87   -6.25   -7.40   -8.17   -8.48   -8.30   -7.62   -6.47   -4.83   -2.63    0.28    4.01    8.56   13.69
+   340.0    0.00   -0.27   -0.98   -2.07   -3.42   -4.88   -6.27   -7.42   -8.19   -8.51   -8.32   -7.64   -6.48   -4.84   -2.63    0.29    4.03    8.59   13.67
+   345.0    0.00   -0.27   -0.98   -2.08   -3.43   -4.88   -6.27   -7.43   -8.21   -8.52   -8.33   -7.64   -6.48   -4.84   -2.62    0.30    4.06    8.61   13.65
+   350.0    0.00   -0.27   -0.98   -2.08   -3.43   -4.88   -6.28   -7.43   -8.22   -8.53   -8.33   -7.64   -6.48   -4.82   -2.60    0.33    4.08    8.63   13.63
+   355.0    0.00   -0.27   -0.98   -2.07   -3.42   -4.88   -6.27   -7.43   -8.22   -8.53   -8.33   -7.63   -6.46   -4.80   -2.58    0.35    4.11    8.65   13.64
+   360.0    0.00   -0.27   -0.98   -2.07   -3.42   -4.87   -6.26   -7.43   -8.21   -8.53   -8.32   -7.62   -6.44   -4.77   -2.54    0.39    4.14    8.68   13.67
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.08     -0.59    120.35                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.13   -0.51   -1.08   -1.79   -2.58   -3.39   -4.17   -4.81   -5.21   -5.25   -4.86   -4.03   -2.83   -1.33    0.49    2.75    5.68    9.44
+     0.0    0.00   -0.12   -0.48   -1.02   -1.69   -2.44   -3.24   -4.04   -4.72   -5.17   -5.25   -4.89   -4.12   -3.00   -1.59    0.15    2.44    5.50    9.31
+     5.0    0.00   -0.12   -0.48   -1.02   -1.69   -2.44   -3.24   -4.03   -4.72   -5.16   -5.25   -4.90   -4.13   -3.01   -1.61    0.14    2.42    5.45    9.20
+    10.0    0.00   -0.12   -0.47   -1.01   -1.68   -2.44   -3.24   -4.03   -4.71   -5.15   -5.24   -4.90   -4.13   -3.02   -1.61    0.14    2.41    5.41    9.12
+    15.0    0.00   -0.12   -0.47   -1.01   -1.68   -2.44   -3.24   -4.02   -4.70   -5.14   -5.23   -4.89   -4.13   -3.02   -1.60    0.15    2.41    5.38    9.06
+    20.0    0.00   -0.11   -0.47   -1.01   -1.68   -2.44   -3.24   -4.02   -4.69   -5.13   -5.21   -4.88   -4.12   -3.00   -1.58    0.18    2.43    5.37    9.05
+    25.0    0.00   -0.11   -0.46   -1.00   -1.68   -2.44   -3.24   -4.02   -4.68   -5.11   -5.20   -4.86   -4.10   -2.97   -1.54    0.22    2.46    5.39    9.06
+    30.0    0.00   -0.11   -0.46   -1.00   -1.68   -2.45   -3.24   -4.01   -4.67   -5.09   -5.18   -4.84   -4.07   -2.93   -1.49    0.28    2.51    5.42    9.11
+    35.0    0.00   -0.11   -0.46   -1.00   -1.68   -2.45   -3.24   -4.01   -4.66   -5.08   -5.16   -4.81   -4.03   -2.88   -1.42    0.35    2.58    5.48    9.19
+    40.0    0.00   -0.11   -0.45   -1.00   -1.68   -2.45   -3.25   -4.01   -4.65   -5.06   -5.13   -4.78   -4.00   -2.83   -1.36    0.42    2.65    5.55    9.30
+    45.0    0.00   -0.10   -0.45   -0.99   -1.68   -2.45   -3.25   -4.01   -4.65   -5.05   -5.11   -4.75   -3.96   -2.78   -1.30    0.49    2.72    5.62    9.41
+    50.0    0.00   -0.10   -0.45   -0.99   -1.68   -2.45   -3.25   -4.01   -4.65   -5.05   -5.10   -4.72   -3.92   -2.73   -1.24    0.56    2.78    5.69    9.52
+    55.0    0.00   -0.10   -0.45   -0.99   -1.68   -2.46   -3.26   -4.02   -4.65   -5.04   -5.09   -4.70   -3.88   -2.69   -1.19    0.60    2.84    5.76    9.62
+    60.0    0.00   -0.10   -0.44   -0.99   -1.68   -2.46   -3.27   -4.03   -4.66   -5.05   -5.08   -4.68   -3.86   -2.66   -1.16    0.64    2.87    5.81    9.70
+    65.0    0.00   -0.10   -0.44   -0.99   -1.69   -2.47   -3.28   -4.05   -4.68   -5.06   -5.08   -4.67   -3.84   -2.64   -1.15    0.65    2.89    5.84    9.76
+    70.0    0.00   -0.10   -0.44   -0.99   -1.69   -2.48   -3.30   -4.07   -4.70   -5.07   -5.08   -4.67   -3.83   -2.64   -1.15    0.64    2.88    5.85    9.79
+    75.0    0.00   -0.10   -0.44   -0.99   -1.69   -2.49   -3.31   -4.09   -4.72   -5.09   -5.09   -4.67   -3.84   -2.65   -1.17    0.61    2.86    5.83    9.78
+    80.0    0.00   -0.10   -0.45   -1.00   -1.70   -2.50   -3.33   -4.12   -4.75   -5.11   -5.11   -4.68   -3.85   -2.67   -1.21    0.57    2.82    5.80    9.74
+    85.0    0.00   -0.10   -0.45   -1.00   -1.71   -2.52   -3.36   -4.14   -4.78   -5.14   -5.13   -4.70   -3.87   -2.70   -1.25    0.52    2.77    5.75    9.67
+    90.0    0.00   -0.10   -0.45   -1.01   -1.72   -2.54   -3.38   -4.17   -4.81   -5.17   -5.15   -4.72   -3.89   -2.73   -1.29    0.47    2.71    5.68    9.57
+    95.0    0.00   -0.10   -0.46   -1.02   -1.74   -2.55   -3.40   -4.20   -4.83   -5.19   -5.18   -4.74   -3.92   -2.77   -1.33    0.42    2.66    5.62    9.47
+   100.0    0.00   -0.11   -0.46   -1.03   -1.75   -2.58   -3.43   -4.22   -4.86   -5.22   -5.20   -4.77   -3.95   -2.80   -1.37    0.38    2.61    5.56    9.36
+   105.0    0.00   -0.11   -0.47   -1.04   -1.77   -2.60   -3.45   -4.25   -4.88   -5.24   -5.22   -4.79   -3.97   -2.82   -1.40    0.35    2.58    5.51    9.26
+   110.0    0.00   -0.11   -0.48   -1.05   -1.79   -2.62   -3.47   -4.27   -4.90   -5.26   -5.25   -4.82   -4.00   -2.84   -1.41    0.35    2.57    5.48    9.18
+   115.0    0.00   -0.11   -0.48   -1.07   -1.81   -2.64   -3.50   -4.29   -4.92   -5.28   -5.26   -4.84   -4.01   -2.85   -1.41    0.36    2.58    5.46    9.13
+   120.0    0.00   -0.12   -0.49   -1.08   -1.83   -2.66   -3.52   -4.30   -4.93   -5.29   -5.28   -4.85   -4.03   -2.86   -1.39    0.38    2.61    5.47    9.10
+   125.0    0.00   -0.12   -0.50   -1.10   -1.85   -2.68   -3.53   -4.32   -4.94   -5.30   -5.29   -4.87   -4.03   -2.85   -1.37    0.43    2.65    5.50    9.09
+   130.0    0.00   -0.12   -0.50   -1.11   -1.86   -2.70   -3.55   -4.33   -4.95   -5.30   -5.30   -4.88   -4.04   -2.84   -1.33    0.48    2.71    5.54    9.11
+   135.0    0.00   -0.12   -0.51   -1.12   -1.88   -2.72   -3.56   -4.33   -4.95   -5.30   -5.30   -4.88   -4.04   -2.82   -1.29    0.54    2.77    5.60    9.15
+   140.0    0.00   -0.13   -0.52   -1.13   -1.89   -2.73   -3.57   -4.33   -4.95   -5.31   -5.31   -4.89   -4.04   -2.80   -1.25    0.60    2.84    5.66    9.19
+   145.0    0.00   -0.13   -0.52   -1.14   -1.90   -2.74   -3.57   -4.33   -4.94   -5.31   -5.31   -4.89   -4.04   -2.79   -1.22    0.65    2.90    5.71    9.23
+   150.0    0.00   -0.13   -0.53   -1.15   -1.91   -2.74   -3.57   -4.33   -4.94   -5.31   -5.32   -4.90   -4.04   -2.78   -1.19    0.69    2.94    5.74    9.25
+   155.0    0.00   -0.13   -0.53   -1.15   -1.91   -2.74   -3.57   -4.33   -4.94   -5.31   -5.33   -4.91   -4.05   -2.78   -1.18    0.71    2.97    5.76    9.25
+   160.0    0.00   -0.13   -0.53   -1.15   -1.91   -2.74   -3.56   -4.32   -4.93   -5.31   -5.33   -4.92   -4.06   -2.78   -1.18    0.71    2.97    5.76    9.23
+   165.0    0.00   -0.14   -0.54   -1.15   -1.91   -2.73   -3.55   -4.31   -4.93   -5.31   -5.34   -4.94   -4.07   -2.80   -1.19    0.70    2.95    5.73    9.18
+   170.0    0.00   -0.14   -0.54   -1.15   -1.90   -2.72   -3.54   -4.30   -4.93   -5.32   -5.35   -4.95   -4.09   -2.82   -1.22    0.66    2.91    5.68    9.11
+   175.0    0.00   -0.14   -0.54   -1.15   -1.90   -2.71   -3.53   -4.30   -4.93   -5.32   -5.36   -4.96   -4.11   -2.84   -1.26    0.61    2.85    5.62    9.03
+   180.0    0.00   -0.14   -0.54   -1.14   -1.89   -2.70   -3.52   -4.29   -4.93   -5.33   -5.37   -4.97   -4.12   -2.87   -1.30    0.55    2.77    5.55    8.96
+   185.0    0.00   -0.14   -0.54   -1.14   -1.87   -2.69   -3.51   -4.29   -4.93   -5.34   -5.38   -4.98   -4.13   -2.89   -1.35    0.48    2.70    5.48    8.89
+   190.0    0.00   -0.14   -0.53   -1.13   -1.86   -2.67   -3.50   -4.29   -4.94   -5.34   -5.38   -4.97   -4.12   -2.90   -1.38    0.42    2.63    5.42    8.86
+   195.0    0.00   -0.14   -0.53   -1.12   -1.85   -2.66   -3.49   -4.28   -4.94   -5.34   -5.37   -4.96   -4.11   -2.90   -1.40    0.38    2.58    5.39    8.87
+   200.0    0.00   -0.14   -0.53   -1.12   -1.84   -2.65   -3.49   -4.29   -4.95   -5.34   -5.36   -4.94   -4.09   -2.89   -1.41    0.35    2.55    5.39    8.92
+   205.0    0.00   -0.15   -0.53   -1.11   -1.83   -2.64   -3.48   -4.29   -4.95   -5.34   -5.35   -4.91   -4.05   -2.86   -1.40    0.35    2.55    5.43    9.01
+   210.0    0.00   -0.15   -0.53   -1.11   -1.82   -2.63   -3.48   -4.29   -4.95   -5.34   -5.33   -4.88   -4.01   -2.82   -1.36    0.38    2.59    5.50    9.15
+   215.0    0.00   -0.15   -0.53   -1.10   -1.82   -2.63   -3.48   -4.29   -4.95   -5.33   -5.32   -4.85   -3.97   -2.77   -1.31    0.44    2.67    5.61    9.32
+   220.0    0.00   -0.15   -0.53   -1.10   -1.82   -2.63   -3.48   -4.29   -4.95   -5.32   -5.30   -4.82   -3.93   -2.71   -1.24    0.52    2.78    5.76    9.50
+   225.0    0.00   -0.15   -0.53   -1.10   -1.82   -2.63   -3.47   -4.28   -4.94   -5.31   -5.28   -4.79   -3.89   -2.66   -1.17    0.63    2.91    5.91    9.68
+   230.0    0.00   -0.15   -0.53   -1.11   -1.82   -2.63   -3.47   -4.28   -4.93   -5.30   -5.27   -4.78   -3.86   -2.61   -1.09    0.75    3.06    6.07    9.84
+   235.0    0.00   -0.15   -0.54   -1.11   -1.82   -2.63   -3.47   -4.27   -4.92   -5.29   -5.26   -4.77   -3.85   -2.58   -1.01    0.86    3.21    6.22    9.96
+   240.0    0.00   -0.15   -0.54   -1.11   -1.83   -2.63   -3.47   -4.26   -4.91   -5.28   -5.26   -4.78   -3.86   -2.56   -0.95    0.97    3.35    6.35   10.04
+   245.0    0.00   -0.15   -0.54   -1.12   -1.83   -2.63   -3.46   -4.25   -4.89   -5.27   -5.26   -4.80   -3.88   -2.56   -0.91    1.06    3.46    6.44   10.07
+   250.0    0.00   -0.15   -0.54   -1.12   -1.84   -2.63   -3.46   -4.23   -4.88   -5.26   -5.27   -4.83   -3.92   -2.58   -0.90    1.12    3.53    6.48   10.05
+   255.0    0.00   -0.16   -0.55   -1.13   -1.84   -2.64   -3.45   -4.22   -4.86   -5.26   -5.29   -4.87   -3.97   -2.63   -0.91    1.14    3.56    6.47    9.98
+   260.0    0.00   -0.16   -0.55   -1.13   -1.85   -2.64   -3.44   -4.20   -4.84   -5.25   -5.31   -4.91   -4.03   -2.68   -0.95    1.12    3.54    6.41    9.87
+   265.0    0.00   -0.16   -0.55   -1.14   -1.85   -2.64   -3.43   -4.19   -4.83   -5.25   -5.33   -4.96   -4.09   -2.75   -1.01    1.07    3.48    6.31    9.74
+   270.0    0.00   -0.16   -0.56   -1.14   -1.86   -2.63   -3.43   -4.18   -4.82   -5.25   -5.34   -5.00   -4.15   -2.82   -1.08    0.98    3.37    6.18    9.61
+   275.0    0.00   -0.16   -0.56   -1.14   -1.86   -2.63   -3.42   -4.16   -4.80   -5.24   -5.36   -5.03   -4.20   -2.89   -1.17    0.87    3.23    6.03    9.50
+   280.0    0.00   -0.16   -0.56   -1.15   -1.86   -2.63   -3.41   -4.15   -4.79   -5.24   -5.36   -5.05   -4.24   -2.95   -1.26    0.75    3.08    5.88    9.41
+   285.0    0.00   -0.16   -0.56   -1.14   -1.85   -2.62   -3.40   -4.14   -4.79   -5.23   -5.36   -5.06   -4.27   -3.00   -1.35    0.62    2.92    5.73    9.36
+   290.0    0.00   -0.16   -0.56   -1.14   -1.85   -2.61   -3.39   -4.13   -4.78   -5.23   -5.36   -5.06   -4.28   -3.04   -1.42    0.50    2.77    5.60    9.35
+   295.0    0.00   -0.16   -0.55   -1.14   -1.84   -2.60   -3.38   -4.12   -4.77   -5.22   -5.35   -5.05   -4.27   -3.05   -1.48    0.39    2.64    5.51    9.38
+   300.0    0.00   -0.15   -0.55   -1.13   -1.83   -2.59   -3.37   -4.12   -4.77   -5.21   -5.33   -5.02   -4.25   -3.06   -1.53    0.30    2.53    5.45    9.45
+   305.0    0.00   -0.15   -0.55   -1.12   -1.82   -2.57   -3.35   -4.11   -4.76   -5.20   -5.31   -4.99   -4.22   -3.04   -1.55    0.24    2.46    5.42    9.53
+   310.0    0.00   -0.15   -0.54   -1.11   -1.80   -2.56   -3.34   -4.10   -4.76   -5.20   -5.29   -4.96   -4.18   -3.02   -1.56    0.20    2.41    5.42    9.63
+   315.0    0.00   -0.15   -0.54   -1.10   -1.79   -2.54   -3.33   -4.09   -4.75   -5.19   -5.28   -4.93   -4.14   -2.99   -1.55    0.18    2.40    5.45    9.72
+   320.0    0.00   -0.15   -0.53   -1.09   -1.77   -2.52   -3.31   -4.08   -4.75   -5.18   -5.26   -4.90   -4.11   -2.96   -1.54    0.18    2.40    5.50    9.80
+   325.0    0.00   -0.14   -0.53   -1.08   -1.76   -2.51   -3.30   -4.07   -4.74   -5.18   -5.25   -4.88   -4.08   -2.94   -1.53    0.18    2.42    5.54    9.84
+   330.0    0.00   -0.14   -0.52   -1.07   -1.74   -2.49   -3.28   -4.07   -4.74   -5.18   -5.24   -4.86   -4.06   -2.92   -1.52    0.19    2.45    5.59    9.85
+   335.0    0.00   -0.14   -0.51   -1.06   -1.73   -2.48   -3.27   -4.06   -4.74   -5.17   -5.24   -4.86   -4.05   -2.92   -1.52    0.20    2.47    5.62    9.83
+   340.0    0.00   -0.14   -0.51   -1.05   -1.72   -2.46   -3.26   -4.05   -4.74   -5.17   -5.24   -4.86   -4.06   -2.92   -1.52    0.21    2.49    5.63    9.76
+   345.0    0.00   -0.13   -0.50   -1.04   -1.71   -2.46   -3.25   -4.05   -4.73   -5.17   -5.24   -4.86   -4.07   -2.93   -1.53    0.20    2.49    5.62    9.67
+   350.0    0.00   -0.13   -0.49   -1.03   -1.70   -2.45   -3.25   -4.04   -4.73   -5.17   -5.24   -4.87   -4.08   -2.95   -1.55    0.19    2.48    5.59    9.55
+   355.0    0.00   -0.13   -0.49   -1.03   -1.69   -2.44   -3.24   -4.04   -4.73   -5.17   -5.25   -4.88   -4.10   -2.98   -1.57    0.17    2.46    5.55    9.43
+   360.0    0.00   -0.12   -0.48   -1.02   -1.69   -2.44   -3.24   -4.04   -4.72   -5.17   -5.25   -4.89   -4.12   -3.00   -1.59    0.15    2.44    5.50    9.31
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+AOAD/M_TA_NGS   NONE                                        TYPE / SERIAL NO    
+COPIED              Geo++ GmbH               2    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+COPIED FROM AOAD/M_T        NONE                            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.58     -0.37     91.85                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.23   -0.90   -1.93   -3.22   -4.62   -5.96   -7.09   -7.87   -8.21   -8.06   -7.39   -6.23   -4.55   -2.28    0.69    4.47    9.08   14.23
+     0.0    0.00   -0.27   -0.98   -2.07   -3.42   -4.87   -6.26   -7.43   -8.21   -8.53   -8.32   -7.62   -6.44   -4.77   -2.54    0.39    4.14    8.68   13.67
+     5.0    0.00   -0.27   -0.98   -2.06   -3.41   -4.86   -6.25   -7.41   -8.20   -8.52   -8.31   -7.60   -6.41   -4.74   -2.50    0.42    4.18    8.73   13.73
+    10.0    0.00   -0.26   -0.97   -2.05   -3.39   -4.84   -6.23   -7.40   -8.19   -8.50   -8.30   -7.58   -6.38   -4.70   -2.46    0.47    4.23    8.79   13.83
+    15.0    0.00   -0.26   -0.97   -2.05   -3.38   -4.82   -6.21   -7.37   -8.17   -8.49   -8.28   -7.56   -6.36   -4.66   -2.41    0.53    4.30    8.88   13.96
+    20.0    0.00   -0.26   -0.96   -2.03   -3.36   -4.80   -6.18   -7.35   -8.15   -8.47   -8.27   -7.54   -6.33   -4.62   -2.36    0.60    4.38    9.00   14.12
+    25.0    0.00   -0.26   -0.96   -2.02   -3.34   -4.77   -6.16   -7.32   -8.12   -8.44   -8.25   -7.53   -6.30   -4.58   -2.30    0.68    4.49    9.13   14.31
+    30.0    0.00   -0.26   -0.95   -2.01   -3.32   -4.75   -6.12   -7.28   -8.08   -8.42   -8.22   -7.51   -6.28   -4.54   -2.24    0.77    4.61    9.29   14.51
+    35.0    0.00   -0.25   -0.94   -2.00   -3.30   -4.72   -6.09   -7.25   -8.05   -8.38   -8.20   -7.48   -6.25   -4.50   -2.17    0.87    4.75    9.46   14.71
+    40.0    0.00   -0.25   -0.93   -1.98   -3.28   -4.69   -6.05   -7.21   -8.01   -8.35   -8.17   -7.46   -6.23   -4.46   -2.10    0.97    4.88    9.62   14.90
+    45.0    0.00   -0.25   -0.93   -1.97   -3.26   -4.66   -6.02   -7.16   -7.96   -8.30   -8.13   -7.43   -6.19   -4.42   -2.03    1.08    5.02    9.78   15.07
+    50.0    0.00   -0.24   -0.92   -1.95   -3.24   -4.63   -5.98   -7.12   -7.91   -8.26   -8.09   -7.39   -6.16   -4.37   -1.97    1.17    5.14    9.92   15.22
+    55.0    0.00   -0.24   -0.91   -1.94   -3.21   -4.60   -5.94   -7.07   -7.86   -8.20   -8.04   -7.35   -6.12   -4.33   -1.91    1.24    5.24   10.04   15.34
+    60.0    0.00   -0.24   -0.90   -1.92   -3.19   -4.57   -5.90   -7.02   -7.81   -8.15   -7.99   -7.30   -6.08   -4.29   -1.87    1.30    5.31   10.11   15.41
+    65.0    0.00   -0.23   -0.89   -1.91   -3.17   -4.54   -5.86   -6.97   -7.75   -8.09   -7.93   -7.25   -6.03   -4.25   -1.83    1.33    5.34   10.15   15.45
+    70.0    0.00   -0.23   -0.89   -1.90   -3.15   -4.51   -5.82   -6.93   -7.70   -8.03   -7.88   -7.20   -5.99   -4.22   -1.82    1.33    5.33   10.14   15.45
+    75.0    0.00   -0.23   -0.88   -1.88   -3.13   -4.49   -5.79   -6.89   -7.65   -7.98   -7.82   -7.15   -5.96   -4.21   -1.82    1.31    5.28   10.08   15.40
+    80.0    0.00   -0.23   -0.87   -1.87   -3.12   -4.46   -5.76   -6.85   -7.61   -7.94   -7.78   -7.11   -5.93   -4.20   -1.85    1.25    5.20    9.99   15.32
+    85.0    0.00   -0.22   -0.87   -1.86   -3.10   -4.44   -5.74   -6.83   -7.58   -7.91   -7.75   -7.09   -5.92   -4.21   -1.89    1.17    5.09    9.86   15.20
+    90.0    0.00   -0.22   -0.86   -1.86   -3.09   -4.43   -5.72   -6.81   -7.56   -7.89   -7.73   -7.08   -5.92   -4.24   -1.95    1.08    4.96    9.71   15.05
+    95.0    0.00   -0.22   -0.86   -1.85   -3.09   -4.42   -5.71   -6.80   -7.56   -7.89   -7.73   -7.09   -5.94   -4.28   -2.02    0.97    4.82    9.54   14.88
+   100.0    0.00   -0.22   -0.86   -1.85   -3.08   -4.42   -5.71   -6.80   -7.56   -7.90   -7.75   -7.11   -5.98   -4.34   -2.11    0.86    4.68    9.37   14.70
+   105.0    0.00   -0.22   -0.86   -1.85   -3.08   -4.42   -5.72   -6.81   -7.58   -7.92   -7.78   -7.16   -6.04   -4.41   -2.19    0.75    4.54    9.21   14.52
+   110.0    0.00   -0.21   -0.85   -1.85   -3.09   -4.43   -5.73   -6.83   -7.61   -7.96   -7.83   -7.21   -6.10   -4.49   -2.28    0.64    4.42    9.07   14.35
+   115.0    0.00   -0.21   -0.85   -1.85   -3.09   -4.44   -5.75   -6.86   -7.65   -8.01   -7.89   -7.28   -6.18   -4.57   -2.36    0.56    4.32    8.95   14.20
+   120.0    0.00   -0.21   -0.86   -1.86   -3.10   -4.46   -5.77   -6.90   -7.69   -8.06   -7.95   -7.35   -6.25   -4.64   -2.44    0.48    4.25    8.86   14.08
+   125.0    0.00   -0.21   -0.86   -1.86   -3.12   -4.48   -5.80   -6.93   -7.73   -8.11   -8.01   -7.42   -6.33   -4.72   -2.50    0.43    4.20    8.81   13.99
+   130.0    0.00   -0.21   -0.86   -1.87   -3.13   -4.50   -5.83   -6.97   -7.78   -8.16   -8.07   -7.48   -6.39   -4.78   -2.55    0.40    4.18    8.78   13.94
+   135.0    0.00   -0.21   -0.86   -1.88   -3.15   -4.53   -5.86   -7.01   -7.82   -8.21   -8.12   -7.54   -6.45   -4.83   -2.59    0.38    4.17    8.78   13.92
+   140.0    0.00   -0.21   -0.86   -1.89   -3.16   -4.55   -5.89   -7.04   -7.85   -8.24   -8.16   -7.58   -6.49   -4.87   -2.62    0.37    4.18    8.79   13.93
+   145.0    0.00   -0.21   -0.87   -1.89   -3.18   -4.57   -5.92   -7.07   -7.88   -8.28   -8.19   -7.61   -6.52   -4.89   -2.63    0.37    4.19    8.81   13.95
+   150.0    0.00   -0.21   -0.87   -1.90   -3.19   -4.59   -5.95   -7.10   -7.91   -8.30   -8.21   -7.63   -6.54   -4.90   -2.63    0.37    4.21    8.83   13.98
+   155.0    0.00   -0.21   -0.87   -1.91   -3.20   -4.61   -5.97   -7.12   -7.93   -8.32   -8.23   -7.65   -6.55   -4.91   -2.64    0.38    4.21    8.84   14.00
+   160.0    0.00   -0.21   -0.87   -1.91   -3.21   -4.63   -5.98   -7.13   -7.94   -8.33   -8.24   -7.65   -6.56   -4.91   -2.64    0.38    4.21    8.83   14.00
+   165.0    0.00   -0.21   -0.88   -1.92   -3.22   -4.64   -6.00   -7.14   -7.95   -8.34   -8.24   -7.65   -6.55   -4.91   -2.64    0.37    4.19    8.81   13.98
+   170.0    0.00   -0.21   -0.88   -1.92   -3.23   -4.64   -6.00   -7.15   -7.96   -8.34   -8.25   -7.65   -6.55   -4.91   -2.64    0.35    4.16    8.76   13.93
+   175.0    0.00   -0.21   -0.88   -1.92   -3.23   -4.65   -6.01   -7.16   -7.97   -8.35   -8.25   -7.65   -6.55   -4.90   -2.64    0.33    4.11    8.70   13.87
+   180.0    0.00   -0.21   -0.88   -1.92   -3.23   -4.65   -6.01   -7.16   -7.97   -8.35   -8.25   -7.66   -6.55   -4.90   -2.65    0.31    4.07    8.63   13.79
+   185.0    0.00   -0.21   -0.88   -1.92   -3.23   -4.64   -6.00   -7.16   -7.97   -8.36   -8.26   -7.66   -6.55   -4.90   -2.66    0.28    4.02    8.57   13.72
+   190.0    0.00   -0.21   -0.87   -1.92   -3.22   -4.64   -6.00   -7.15   -7.97   -8.36   -8.26   -7.66   -6.54   -4.90   -2.67    0.26    3.99    8.52   13.66
+   195.0    0.00   -0.21   -0.87   -1.91   -3.21   -4.63   -5.99   -7.15   -7.97   -8.35   -8.25   -7.65   -6.53   -4.89   -2.66    0.26    3.97    8.50   13.64
+   200.0    0.00   -0.21   -0.87   -1.91   -3.20   -4.61   -5.98   -7.14   -7.96   -8.34   -8.24   -7.63   -6.52   -4.88   -2.65    0.27    3.98    8.52   13.67
+   205.0    0.00   -0.21   -0.87   -1.90   -3.19   -4.60   -5.96   -7.12   -7.94   -8.33   -8.22   -7.61   -6.49   -4.85   -2.62    0.30    4.03    8.58   13.75
+   210.0    0.00   -0.21   -0.87   -1.89   -3.18   -4.59   -5.94   -7.10   -7.92   -8.30   -8.19   -7.57   -6.45   -4.80   -2.57    0.35    4.11    8.70   13.88
+   215.0    0.00   -0.21   -0.86   -1.89   -3.17   -4.57   -5.92   -7.08   -7.89   -8.26   -8.14   -7.52   -6.39   -4.74   -2.51    0.44    4.22    8.85   14.06
+   220.0    0.00   -0.21   -0.86   -1.88   -3.16   -4.55   -5.90   -7.05   -7.85   -8.22   -8.09   -7.46   -6.32   -4.67   -2.42    0.54    4.36    9.04   14.28
+   225.0    0.00   -0.21   -0.86   -1.88   -3.15   -4.53   -5.88   -7.01   -7.81   -8.17   -8.03   -7.38   -6.24   -4.58   -2.32    0.67    4.53    9.25   14.52
+   230.0    0.00   -0.21   -0.86   -1.87   -3.14   -4.52   -5.85   -6.98   -7.77   -8.11   -7.96   -7.30   -6.15   -4.48   -2.20    0.81    4.71    9.46   14.74
+   235.0    0.00   -0.21   -0.86   -1.87   -3.13   -4.50   -5.83   -6.95   -7.72   -8.05   -7.89   -7.22   -6.06   -4.37   -2.08    0.96    4.88    9.66   14.94
+   240.0    0.00   -0.22   -0.86   -1.86   -3.12   -4.49   -5.80   -6.91   -7.68   -7.99   -7.82   -7.14   -5.97   -4.27   -1.96    1.10    5.04    9.83   15.09
+   245.0    0.00   -0.22   -0.86   -1.86   -3.12   -4.48   -5.78   -6.88   -7.64   -7.94   -7.76   -7.07   -5.88   -4.17   -1.84    1.23    5.18    9.95   15.17
+   250.0    0.00   -0.22   -0.86   -1.87   -3.11   -4.47   -5.77   -6.86   -7.60   -7.90   -7.71   -7.01   -5.81   -4.08   -1.74    1.34    5.27   10.01   15.19
+   255.0    0.00   -0.22   -0.87   -1.87   -3.12   -4.47   -5.76   -6.84   -7.58   -7.87   -7.67   -6.97   -5.76   -4.01   -1.66    1.41    5.32   10.00   15.12
+   260.0    0.00   -0.22   -0.87   -1.87   -3.12   -4.47   -5.76   -6.84   -7.57   -7.86   -7.65   -6.94   -5.72   -3.97   -1.61    1.45    5.32    9.94   15.00
+   265.0    0.00   -0.23   -0.88   -1.88   -3.13   -4.48   -5.77   -6.84   -7.57   -7.86   -7.65   -6.93   -5.70   -3.94   -1.59    1.45    5.26    9.81   14.82
+   270.0    0.00   -0.23   -0.88   -1.89   -3.14   -4.49   -5.78   -6.85   -7.58   -7.87   -7.66   -6.94   -5.71   -3.94   -1.60    1.41    5.16    9.65   14.61
+   275.0    0.00   -0.23   -0.89   -1.90   -3.16   -4.51   -5.80   -6.88   -7.61   -7.90   -7.69   -6.97   -5.73   -3.97   -1.64    1.33    5.03    9.45   14.39
+   280.0    0.00   -0.23   -0.90   -1.92   -3.18   -4.54   -5.83   -6.91   -7.64   -7.93   -7.73   -7.01   -5.77   -4.02   -1.71    1.23    4.87    9.24   14.18
+   285.0    0.00   -0.24   -0.91   -1.93   -3.20   -4.56   -5.87   -6.95   -7.69   -7.98   -7.78   -7.06   -5.83   -4.09   -1.80    1.10    4.70    9.04   13.99
+   290.0    0.00   -0.24   -0.91   -1.95   -3.23   -4.60   -5.91   -7.00   -7.74   -8.04   -7.83   -7.12   -5.90   -4.17   -1.91    0.96    4.53    8.85   13.85
+   295.0    0.00   -0.24   -0.92   -1.96   -3.25   -4.63   -5.95   -7.05   -7.79   -8.09   -7.90   -7.19   -5.97   -4.26   -2.02    0.82    4.37    8.70   13.74
+   300.0    0.00   -0.25   -0.93   -1.98   -3.28   -4.67   -6.00   -7.10   -7.85   -8.15   -7.96   -7.26   -6.06   -4.36   -2.14    0.69    4.23    8.58   13.68
+   305.0    0.00   -0.25   -0.94   -2.00   -3.30   -4.71   -6.04   -7.16   -7.91   -8.21   -8.02   -7.32   -6.14   -4.46   -2.26    0.57    4.12    8.51   13.66
+   310.0    0.00   -0.25   -0.95   -2.01   -3.33   -4.74   -6.09   -7.21   -7.97   -8.27   -8.08   -7.39   -6.22   -4.55   -2.36    0.46    4.04    8.47   13.66
+   315.0    0.00   -0.26   -0.96   -2.03   -3.35   -4.78   -6.13   -7.26   -8.02   -8.33   -8.14   -7.45   -6.29   -4.64   -2.45    0.39    4.00    8.46   13.68
+   320.0    0.00   -0.26   -0.96   -2.04   -3.37   -4.81   -6.17   -7.30   -8.07   -8.38   -8.19   -7.51   -6.35   -4.71   -2.52    0.33    3.97    8.47   13.69
+   325.0    0.00   -0.26   -0.97   -2.05   -3.39   -4.83   -6.20   -7.34   -8.11   -8.42   -8.23   -7.55   -6.40   -4.76   -2.57    0.30    3.97    8.50   13.71
+   330.0    0.00   -0.26   -0.98   -2.06   -3.41   -4.85   -6.23   -7.37   -8.14   -8.45   -8.27   -7.59   -6.44   -4.81   -2.61    0.28    3.98    8.53   13.70
+   335.0    0.00   -0.26   -0.98   -2.07   -3.42   -4.87   -6.25   -7.40   -8.17   -8.48   -8.30   -7.62   -6.47   -4.83   -2.63    0.28    4.01    8.56   13.69
+   340.0    0.00   -0.27   -0.98   -2.07   -3.42   -4.88   -6.27   -7.42   -8.19   -8.51   -8.32   -7.64   -6.48   -4.84   -2.63    0.29    4.03    8.59   13.67
+   345.0    0.00   -0.27   -0.98   -2.08   -3.43   -4.88   -6.27   -7.43   -8.21   -8.52   -8.33   -7.64   -6.48   -4.84   -2.62    0.30    4.06    8.61   13.65
+   350.0    0.00   -0.27   -0.98   -2.08   -3.43   -4.88   -6.28   -7.43   -8.22   -8.53   -8.33   -7.64   -6.48   -4.82   -2.60    0.33    4.08    8.63   13.63
+   355.0    0.00   -0.27   -0.98   -2.07   -3.42   -4.88   -6.27   -7.43   -8.22   -8.53   -8.33   -7.63   -6.46   -4.80   -2.58    0.35    4.11    8.65   13.64
+   360.0    0.00   -0.27   -0.98   -2.07   -3.42   -4.87   -6.26   -7.43   -8.21   -8.53   -8.32   -7.62   -6.44   -4.77   -2.54    0.39    4.14    8.68   13.67
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.08     -0.59    120.35                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.13   -0.51   -1.08   -1.79   -2.58   -3.39   -4.17   -4.81   -5.21   -5.25   -4.86   -4.03   -2.83   -1.33    0.49    2.75    5.68    9.44
+     0.0    0.00   -0.12   -0.48   -1.02   -1.69   -2.44   -3.24   -4.04   -4.72   -5.17   -5.25   -4.89   -4.12   -3.00   -1.59    0.15    2.44    5.50    9.31
+     5.0    0.00   -0.12   -0.48   -1.02   -1.69   -2.44   -3.24   -4.03   -4.72   -5.16   -5.25   -4.90   -4.13   -3.01   -1.61    0.14    2.42    5.45    9.20
+    10.0    0.00   -0.12   -0.47   -1.01   -1.68   -2.44   -3.24   -4.03   -4.71   -5.15   -5.24   -4.90   -4.13   -3.02   -1.61    0.14    2.41    5.41    9.12
+    15.0    0.00   -0.12   -0.47   -1.01   -1.68   -2.44   -3.24   -4.02   -4.70   -5.14   -5.23   -4.89   -4.13   -3.02   -1.60    0.15    2.41    5.38    9.06
+    20.0    0.00   -0.11   -0.47   -1.01   -1.68   -2.44   -3.24   -4.02   -4.69   -5.13   -5.21   -4.88   -4.12   -3.00   -1.58    0.18    2.43    5.37    9.05
+    25.0    0.00   -0.11   -0.46   -1.00   -1.68   -2.44   -3.24   -4.02   -4.68   -5.11   -5.20   -4.86   -4.10   -2.97   -1.54    0.22    2.46    5.39    9.06
+    30.0    0.00   -0.11   -0.46   -1.00   -1.68   -2.45   -3.24   -4.01   -4.67   -5.09   -5.18   -4.84   -4.07   -2.93   -1.49    0.28    2.51    5.42    9.11
+    35.0    0.00   -0.11   -0.46   -1.00   -1.68   -2.45   -3.24   -4.01   -4.66   -5.08   -5.16   -4.81   -4.03   -2.88   -1.42    0.35    2.58    5.48    9.19
+    40.0    0.00   -0.11   -0.45   -1.00   -1.68   -2.45   -3.25   -4.01   -4.65   -5.06   -5.13   -4.78   -4.00   -2.83   -1.36    0.42    2.65    5.55    9.30
+    45.0    0.00   -0.10   -0.45   -0.99   -1.68   -2.45   -3.25   -4.01   -4.65   -5.05   -5.11   -4.75   -3.96   -2.78   -1.30    0.49    2.72    5.62    9.41
+    50.0    0.00   -0.10   -0.45   -0.99   -1.68   -2.45   -3.25   -4.01   -4.65   -5.05   -5.10   -4.72   -3.92   -2.73   -1.24    0.56    2.78    5.69    9.52
+    55.0    0.00   -0.10   -0.45   -0.99   -1.68   -2.46   -3.26   -4.02   -4.65   -5.04   -5.09   -4.70   -3.88   -2.69   -1.19    0.60    2.84    5.76    9.62
+    60.0    0.00   -0.10   -0.44   -0.99   -1.68   -2.46   -3.27   -4.03   -4.66   -5.05   -5.08   -4.68   -3.86   -2.66   -1.16    0.64    2.87    5.81    9.70
+    65.0    0.00   -0.10   -0.44   -0.99   -1.69   -2.47   -3.28   -4.05   -4.68   -5.06   -5.08   -4.67   -3.84   -2.64   -1.15    0.65    2.89    5.84    9.76
+    70.0    0.00   -0.10   -0.44   -0.99   -1.69   -2.48   -3.30   -4.07   -4.70   -5.07   -5.08   -4.67   -3.83   -2.64   -1.15    0.64    2.88    5.85    9.79
+    75.0    0.00   -0.10   -0.44   -0.99   -1.69   -2.49   -3.31   -4.09   -4.72   -5.09   -5.09   -4.67   -3.84   -2.65   -1.17    0.61    2.86    5.83    9.78
+    80.0    0.00   -0.10   -0.45   -1.00   -1.70   -2.50   -3.33   -4.12   -4.75   -5.11   -5.11   -4.68   -3.85   -2.67   -1.21    0.57    2.82    5.80    9.74
+    85.0    0.00   -0.10   -0.45   -1.00   -1.71   -2.52   -3.36   -4.14   -4.78   -5.14   -5.13   -4.70   -3.87   -2.70   -1.25    0.52    2.77    5.75    9.67
+    90.0    0.00   -0.10   -0.45   -1.01   -1.72   -2.54   -3.38   -4.17   -4.81   -5.17   -5.15   -4.72   -3.89   -2.73   -1.29    0.47    2.71    5.68    9.57
+    95.0    0.00   -0.10   -0.46   -1.02   -1.74   -2.55   -3.40   -4.20   -4.83   -5.19   -5.18   -4.74   -3.92   -2.77   -1.33    0.42    2.66    5.62    9.47
+   100.0    0.00   -0.11   -0.46   -1.03   -1.75   -2.58   -3.43   -4.22   -4.86   -5.22   -5.20   -4.77   -3.95   -2.80   -1.37    0.38    2.61    5.56    9.36
+   105.0    0.00   -0.11   -0.47   -1.04   -1.77   -2.60   -3.45   -4.25   -4.88   -5.24   -5.22   -4.79   -3.97   -2.82   -1.40    0.35    2.58    5.51    9.26
+   110.0    0.00   -0.11   -0.48   -1.05   -1.79   -2.62   -3.47   -4.27   -4.90   -5.26   -5.25   -4.82   -4.00   -2.84   -1.41    0.35    2.57    5.48    9.18
+   115.0    0.00   -0.11   -0.48   -1.07   -1.81   -2.64   -3.50   -4.29   -4.92   -5.28   -5.26   -4.84   -4.01   -2.85   -1.41    0.36    2.58    5.46    9.13
+   120.0    0.00   -0.12   -0.49   -1.08   -1.83   -2.66   -3.52   -4.30   -4.93   -5.29   -5.28   -4.85   -4.03   -2.86   -1.39    0.38    2.61    5.47    9.10
+   125.0    0.00   -0.12   -0.50   -1.10   -1.85   -2.68   -3.53   -4.32   -4.94   -5.30   -5.29   -4.87   -4.03   -2.85   -1.37    0.43    2.65    5.50    9.09
+   130.0    0.00   -0.12   -0.50   -1.11   -1.86   -2.70   -3.55   -4.33   -4.95   -5.30   -5.30   -4.88   -4.04   -2.84   -1.33    0.48    2.71    5.54    9.11
+   135.0    0.00   -0.12   -0.51   -1.12   -1.88   -2.72   -3.56   -4.33   -4.95   -5.30   -5.30   -4.88   -4.04   -2.82   -1.29    0.54    2.77    5.60    9.15
+   140.0    0.00   -0.13   -0.52   -1.13   -1.89   -2.73   -3.57   -4.33   -4.95   -5.31   -5.31   -4.89   -4.04   -2.80   -1.25    0.60    2.84    5.66    9.19
+   145.0    0.00   -0.13   -0.52   -1.14   -1.90   -2.74   -3.57   -4.33   -4.94   -5.31   -5.31   -4.89   -4.04   -2.79   -1.22    0.65    2.90    5.71    9.23
+   150.0    0.00   -0.13   -0.53   -1.15   -1.91   -2.74   -3.57   -4.33   -4.94   -5.31   -5.32   -4.90   -4.04   -2.78   -1.19    0.69    2.94    5.74    9.25
+   155.0    0.00   -0.13   -0.53   -1.15   -1.91   -2.74   -3.57   -4.33   -4.94   -5.31   -5.33   -4.91   -4.05   -2.78   -1.18    0.71    2.97    5.76    9.25
+   160.0    0.00   -0.13   -0.53   -1.15   -1.91   -2.74   -3.56   -4.32   -4.93   -5.31   -5.33   -4.92   -4.06   -2.78   -1.18    0.71    2.97    5.76    9.23
+   165.0    0.00   -0.14   -0.54   -1.15   -1.91   -2.73   -3.55   -4.31   -4.93   -5.31   -5.34   -4.94   -4.07   -2.80   -1.19    0.70    2.95    5.73    9.18
+   170.0    0.00   -0.14   -0.54   -1.15   -1.90   -2.72   -3.54   -4.30   -4.93   -5.32   -5.35   -4.95   -4.09   -2.82   -1.22    0.66    2.91    5.68    9.11
+   175.0    0.00   -0.14   -0.54   -1.15   -1.90   -2.71   -3.53   -4.30   -4.93   -5.32   -5.36   -4.96   -4.11   -2.84   -1.26    0.61    2.85    5.62    9.03
+   180.0    0.00   -0.14   -0.54   -1.14   -1.89   -2.70   -3.52   -4.29   -4.93   -5.33   -5.37   -4.97   -4.12   -2.87   -1.30    0.55    2.77    5.55    8.96
+   185.0    0.00   -0.14   -0.54   -1.14   -1.87   -2.69   -3.51   -4.29   -4.93   -5.34   -5.38   -4.98   -4.13   -2.89   -1.35    0.48    2.70    5.48    8.89
+   190.0    0.00   -0.14   -0.53   -1.13   -1.86   -2.67   -3.50   -4.29   -4.94   -5.34   -5.38   -4.97   -4.12   -2.90   -1.38    0.42    2.63    5.42    8.86
+   195.0    0.00   -0.14   -0.53   -1.12   -1.85   -2.66   -3.49   -4.28   -4.94   -5.34   -5.37   -4.96   -4.11   -2.90   -1.40    0.38    2.58    5.39    8.87
+   200.0    0.00   -0.14   -0.53   -1.12   -1.84   -2.65   -3.49   -4.29   -4.95   -5.34   -5.36   -4.94   -4.09   -2.89   -1.41    0.35    2.55    5.39    8.92
+   205.0    0.00   -0.15   -0.53   -1.11   -1.83   -2.64   -3.48   -4.29   -4.95   -5.34   -5.35   -4.91   -4.05   -2.86   -1.40    0.35    2.55    5.43    9.01
+   210.0    0.00   -0.15   -0.53   -1.11   -1.82   -2.63   -3.48   -4.29   -4.95   -5.34   -5.33   -4.88   -4.01   -2.82   -1.36    0.38    2.59    5.50    9.15
+   215.0    0.00   -0.15   -0.53   -1.10   -1.82   -2.63   -3.48   -4.29   -4.95   -5.33   -5.32   -4.85   -3.97   -2.77   -1.31    0.44    2.67    5.61    9.32
+   220.0    0.00   -0.15   -0.53   -1.10   -1.82   -2.63   -3.48   -4.29   -4.95   -5.32   -5.30   -4.82   -3.93   -2.71   -1.24    0.52    2.78    5.76    9.50
+   225.0    0.00   -0.15   -0.53   -1.10   -1.82   -2.63   -3.47   -4.28   -4.94   -5.31   -5.28   -4.79   -3.89   -2.66   -1.17    0.63    2.91    5.91    9.68
+   230.0    0.00   -0.15   -0.53   -1.11   -1.82   -2.63   -3.47   -4.28   -4.93   -5.30   -5.27   -4.78   -3.86   -2.61   -1.09    0.75    3.06    6.07    9.84
+   235.0    0.00   -0.15   -0.54   -1.11   -1.82   -2.63   -3.47   -4.27   -4.92   -5.29   -5.26   -4.77   -3.85   -2.58   -1.01    0.86    3.21    6.22    9.96
+   240.0    0.00   -0.15   -0.54   -1.11   -1.83   -2.63   -3.47   -4.26   -4.91   -5.28   -5.26   -4.78   -3.86   -2.56   -0.95    0.97    3.35    6.35   10.04
+   245.0    0.00   -0.15   -0.54   -1.12   -1.83   -2.63   -3.46   -4.25   -4.89   -5.27   -5.26   -4.80   -3.88   -2.56   -0.91    1.06    3.46    6.44   10.07
+   250.0    0.00   -0.15   -0.54   -1.12   -1.84   -2.63   -3.46   -4.23   -4.88   -5.26   -5.27   -4.83   -3.92   -2.58   -0.90    1.12    3.53    6.48   10.05
+   255.0    0.00   -0.16   -0.55   -1.13   -1.84   -2.64   -3.45   -4.22   -4.86   -5.26   -5.29   -4.87   -3.97   -2.63   -0.91    1.14    3.56    6.47    9.98
+   260.0    0.00   -0.16   -0.55   -1.13   -1.85   -2.64   -3.44   -4.20   -4.84   -5.25   -5.31   -4.91   -4.03   -2.68   -0.95    1.12    3.54    6.41    9.87
+   265.0    0.00   -0.16   -0.55   -1.14   -1.85   -2.64   -3.43   -4.19   -4.83   -5.25   -5.33   -4.96   -4.09   -2.75   -1.01    1.07    3.48    6.31    9.74
+   270.0    0.00   -0.16   -0.56   -1.14   -1.86   -2.63   -3.43   -4.18   -4.82   -5.25   -5.34   -5.00   -4.15   -2.82   -1.08    0.98    3.37    6.18    9.61
+   275.0    0.00   -0.16   -0.56   -1.14   -1.86   -2.63   -3.42   -4.16   -4.80   -5.24   -5.36   -5.03   -4.20   -2.89   -1.17    0.87    3.23    6.03    9.50
+   280.0    0.00   -0.16   -0.56   -1.15   -1.86   -2.63   -3.41   -4.15   -4.79   -5.24   -5.36   -5.05   -4.24   -2.95   -1.26    0.75    3.08    5.88    9.41
+   285.0    0.00   -0.16   -0.56   -1.14   -1.85   -2.62   -3.40   -4.14   -4.79   -5.23   -5.36   -5.06   -4.27   -3.00   -1.35    0.62    2.92    5.73    9.36
+   290.0    0.00   -0.16   -0.56   -1.14   -1.85   -2.61   -3.39   -4.13   -4.78   -5.23   -5.36   -5.06   -4.28   -3.04   -1.42    0.50    2.77    5.60    9.35
+   295.0    0.00   -0.16   -0.55   -1.14   -1.84   -2.60   -3.38   -4.12   -4.77   -5.22   -5.35   -5.05   -4.27   -3.05   -1.48    0.39    2.64    5.51    9.38
+   300.0    0.00   -0.15   -0.55   -1.13   -1.83   -2.59   -3.37   -4.12   -4.77   -5.21   -5.33   -5.02   -4.25   -3.06   -1.53    0.30    2.53    5.45    9.45
+   305.0    0.00   -0.15   -0.55   -1.12   -1.82   -2.57   -3.35   -4.11   -4.76   -5.20   -5.31   -4.99   -4.22   -3.04   -1.55    0.24    2.46    5.42    9.53
+   310.0    0.00   -0.15   -0.54   -1.11   -1.80   -2.56   -3.34   -4.10   -4.76   -5.20   -5.29   -4.96   -4.18   -3.02   -1.56    0.20    2.41    5.42    9.63
+   315.0    0.00   -0.15   -0.54   -1.10   -1.79   -2.54   -3.33   -4.09   -4.75   -5.19   -5.28   -4.93   -4.14   -2.99   -1.55    0.18    2.40    5.45    9.72
+   320.0    0.00   -0.15   -0.53   -1.09   -1.77   -2.52   -3.31   -4.08   -4.75   -5.18   -5.26   -4.90   -4.11   -2.96   -1.54    0.18    2.40    5.50    9.80
+   325.0    0.00   -0.14   -0.53   -1.08   -1.76   -2.51   -3.30   -4.07   -4.74   -5.18   -5.25   -4.88   -4.08   -2.94   -1.53    0.18    2.42    5.54    9.84
+   330.0    0.00   -0.14   -0.52   -1.07   -1.74   -2.49   -3.28   -4.07   -4.74   -5.18   -5.24   -4.86   -4.06   -2.92   -1.52    0.19    2.45    5.59    9.85
+   335.0    0.00   -0.14   -0.51   -1.06   -1.73   -2.48   -3.27   -4.06   -4.74   -5.17   -5.24   -4.86   -4.05   -2.92   -1.52    0.20    2.47    5.62    9.83
+   340.0    0.00   -0.14   -0.51   -1.05   -1.72   -2.46   -3.26   -4.05   -4.74   -5.17   -5.24   -4.86   -4.06   -2.92   -1.52    0.21    2.49    5.63    9.76
+   345.0    0.00   -0.13   -0.50   -1.04   -1.71   -2.46   -3.25   -4.05   -4.73   -5.17   -5.24   -4.86   -4.07   -2.93   -1.53    0.20    2.49    5.62    9.67
+   350.0    0.00   -0.13   -0.49   -1.03   -1.70   -2.45   -3.25   -4.04   -4.73   -5.17   -5.24   -4.87   -4.08   -2.95   -1.55    0.19    2.48    5.59    9.55
+   355.0    0.00   -0.13   -0.49   -1.03   -1.69   -2.44   -3.24   -4.04   -4.73   -5.17   -5.25   -4.88   -4.10   -2.98   -1.57    0.17    2.46    5.55    9.43
+   360.0    0.00   -0.12   -0.48   -1.02   -1.69   -2.44   -3.24   -4.04   -4.72   -5.17   -5.25   -4.89   -4.12   -3.00   -1.59    0.15    2.44    5.50    9.31
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+APSAPS-3        NONE                                        TYPE / SERIAL NO    
+ROBOT               IfE, Univ. Hannover      5    18-MAY-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     4                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+# Number of Calibrated Antennas:       005                  COMMENT             
+# Number of Individual Calibrations:   014                  COMMENT             
+# GLONASS PCV                                               COMMENT             
+#  derived directly from GLONASS observables                COMMENT             
+#  for frequency channel number k=0                         COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.27      0.42     90.55                              NORTH / EAST / UP   
+   NOAZI    0.00    0.02    0.03   -0.07   -0.35   -0.78   -1.23   -1.51   -1.50   -1.21   -0.79   -0.46   -0.33   -0.37   -0.33    0.00    0.67    1.35    1.41
+     0.0    0.00    0.08    0.12    0.03   -0.22   -0.56   -0.84   -0.89   -0.65   -0.19    0.28    0.55    0.59    0.56    0.81    1.61    2.91    4.27    4.90
+     5.0    0.00    0.07    0.11    0.02   -0.23   -0.58   -0.88   -0.95   -0.73   -0.28    0.16    0.39    0.34    0.18    0.29    0.99    2.30    3.77    4.56
+    10.0    0.00    0.06    0.10    0.01   -0.24   -0.61   -0.93   -1.03   -0.82   -0.39    0.03    0.22    0.08   -0.21   -0.26    0.30    1.57    3.13    4.07
+    15.0    0.00    0.06    0.09    0.00   -0.26   -0.64   -0.99   -1.12   -0.93   -0.52   -0.10    0.05   -0.16   -0.59   -0.82   -0.42    0.77    2.36    3.42
+    20.0    0.00    0.05    0.08   -0.01   -0.28   -0.68   -1.05   -1.22   -1.06   -0.66   -0.24   -0.11   -0.39   -0.94   -1.35   -1.14   -0.09    1.49    2.64
+    25.0    0.00    0.05    0.07   -0.02   -0.30   -0.72   -1.13   -1.33   -1.20   -0.81   -0.40   -0.26   -0.58   -1.24   -1.82   -1.83   -0.96    0.53    1.74
+    30.0    0.00    0.04    0.06   -0.03   -0.32   -0.76   -1.20   -1.44   -1.35   -0.98   -0.56   -0.41   -0.74   -1.48   -2.22   -2.44   -1.80   -0.45    0.75
+    35.0    0.00    0.03    0.05   -0.04   -0.33   -0.79   -1.27   -1.56   -1.51   -1.16   -0.73   -0.55   -0.87   -1.65   -2.52   -2.96   -2.56   -1.41   -0.28
+    40.0    0.00    0.03    0.04   -0.06   -0.35   -0.83   -1.35   -1.68   -1.68   -1.34   -0.90   -0.69   -0.98   -1.76   -2.73   -3.35   -3.20   -2.30   -1.29
+    45.0    0.00    0.02    0.03   -0.07   -0.37   -0.86   -1.41   -1.79   -1.83   -1.53   -1.08   -0.83   -1.06   -1.82   -2.83   -3.61   -3.70   -3.06   -2.23
+    50.0    0.00    0.01    0.02   -0.08   -0.38   -0.88   -1.46   -1.88   -1.97   -1.70   -1.26   -0.97   -1.13   -1.83   -2.85   -3.72   -4.02   -3.65   -3.06
+    55.0    0.00    0.01    0.01   -0.08   -0.39   -0.90   -1.50   -1.96   -2.09   -1.86   -1.42   -1.10   -1.19   -1.81   -2.78   -3.70   -4.16   -4.05   -3.71
+    60.0    0.00    0.00    0.00   -0.09   -0.39   -0.91   -1.52   -2.01   -2.19   -2.00   -1.58   -1.23   -1.25   -1.76   -2.65   -3.55   -4.12   -4.22   -4.15
+    65.0    0.00   -0.01   -0.01   -0.10   -0.39   -0.91   -1.53   -2.04   -2.26   -2.11   -1.71   -1.34   -1.29   -1.70   -2.46   -3.30   -3.90   -4.18   -4.37
+    70.0    0.00   -0.01   -0.01   -0.10   -0.39   -0.90   -1.52   -2.05   -2.30   -2.18   -1.81   -1.44   -1.32   -1.61   -2.24   -2.96   -3.54   -3.93   -4.36
+    75.0    0.00   -0.02   -0.02   -0.11   -0.39   -0.89   -1.51   -2.05   -2.31   -2.23   -1.88   -1.50   -1.34   -1.51   -1.98   -2.55   -3.05   -3.49   -4.12
+    80.0    0.00   -0.03   -0.03   -0.11   -0.39   -0.88   -1.48   -2.02   -2.30   -2.24   -1.91   -1.53   -1.32   -1.39   -1.69   -2.09   -2.47   -2.90   -3.67
+    85.0    0.00   -0.03   -0.04   -0.12   -0.38   -0.86   -1.46   -1.99   -2.27   -2.22   -1.91   -1.52   -1.26   -1.23   -1.38   -1.61   -1.83   -2.19   -3.05
+    90.0    0.00   -0.04   -0.05   -0.12   -0.38   -0.85   -1.44   -1.96   -2.24   -2.18   -1.86   -1.46   -1.15   -1.03   -1.05   -1.09   -1.14   -1.41   -2.29
+    95.0    0.00   -0.04   -0.05   -0.13   -0.38   -0.84   -1.42   -1.93   -2.19   -2.12   -1.78   -1.35   -0.99   -0.79   -0.68   -0.56   -0.44   -0.57   -1.42
+   100.0    0.00   -0.05   -0.06   -0.13   -0.38   -0.83   -1.40   -1.90   -2.14   -2.04   -1.67   -1.20   -0.79   -0.51   -0.29   -0.02    0.26    0.29   -0.49
+   105.0    0.00   -0.05   -0.07   -0.14   -0.38   -0.83   -1.39   -1.87   -2.09   -1.96   -1.54   -1.01   -0.54   -0.18    0.13    0.52    0.96    1.14    0.47
+   110.0    0.00   -0.06   -0.07   -0.14   -0.39   -0.83   -1.38   -1.86   -2.05   -1.87   -1.40   -0.80   -0.26    0.17    0.57    1.06    1.64    1.97    1.43
+   115.0    0.00   -0.06   -0.08   -0.15   -0.39   -0.83   -1.38   -1.84   -2.01   -1.79   -1.25   -0.58    0.04    0.54    1.00    1.59    2.28    2.76    2.37
+   120.0    0.00   -0.06   -0.08   -0.16   -0.39   -0.83   -1.38   -1.83   -1.97   -1.71   -1.11   -0.36    0.33    0.89    1.43    2.09    2.88    3.50    3.25
+   125.0    0.00   -0.06   -0.09   -0.16   -0.40   -0.84   -1.38   -1.82   -1.94   -1.64   -0.98   -0.17    0.59    1.22    1.81    2.54    3.43    4.17    4.07
+   130.0    0.00   -0.07   -0.09   -0.17   -0.40   -0.84   -1.37   -1.80   -1.90   -1.57   -0.87   -0.01    0.81    1.49    2.14    2.93    3.90    4.75    4.79
+   135.0    0.00   -0.07   -0.10   -0.17   -0.41   -0.84   -1.37   -1.79   -1.87   -1.52   -0.79    0.12    0.97    1.70    2.39    3.23    4.27    5.22    5.39
+   140.0    0.00   -0.07   -0.10   -0.18   -0.41   -0.84   -1.36   -1.77   -1.84   -1.47   -0.73    0.19    1.07    1.82    2.55    3.43    4.53    5.56    5.85
+   145.0    0.00   -0.07   -0.10   -0.18   -0.42   -0.84   -1.35   -1.75   -1.81   -1.44   -0.69    0.23    1.11    1.86    2.60    3.51    4.65    5.76    6.15
+   150.0    0.00   -0.07   -0.10   -0.19   -0.43   -0.85   -1.35   -1.73   -1.78   -1.41   -0.67    0.23    1.08    1.82    2.55    3.47    4.65    5.80    6.28
+   155.0    0.00   -0.07   -0.11   -0.20   -0.44   -0.85   -1.35   -1.71   -1.76   -1.39   -0.67    0.19    1.01    1.71    2.41    3.32    4.50    5.69    6.23
+   160.0    0.00   -0.07   -0.11   -0.21   -0.45   -0.87   -1.35   -1.70   -1.74   -1.37   -0.68    0.13    0.89    1.53    2.19    3.07    4.24    5.42    6.00
+   165.0    0.00   -0.06   -0.11   -0.21   -0.47   -0.88   -1.36   -1.70   -1.73   -1.36   -0.70    0.06    0.74    1.32    1.91    2.74    3.86    5.03    5.62
+   170.0    0.00   -0.06   -0.11   -0.22   -0.48   -0.90   -1.37   -1.70   -1.72   -1.36   -0.73   -0.03    0.59    1.08    1.60    2.35    3.42    4.53    5.10
+   175.0    0.00   -0.06   -0.11   -0.23   -0.50   -0.93   -1.39   -1.71   -1.72   -1.36   -0.76   -0.11    0.42    0.83    1.27    1.95    2.93    3.97    4.48
+   180.0    0.00   -0.05   -0.10   -0.23   -0.52   -0.95   -1.42   -1.73   -1.72   -1.37   -0.80   -0.20    0.26    0.59    0.94    1.54    2.44    3.38    3.80
+   185.0    0.00   -0.05   -0.10   -0.24   -0.54   -0.98   -1.44   -1.74   -1.73   -1.38   -0.83   -0.29    0.11    0.36    0.64    1.16    1.97    2.80    3.12
+   190.0    0.00   -0.04   -0.09   -0.24   -0.55   -1.00   -1.46   -1.76   -1.74   -1.40   -0.87   -0.38   -0.04    0.14    0.37    0.82    1.55    2.28    2.46
+   195.0    0.00   -0.04   -0.09   -0.24   -0.55   -1.01   -1.48   -1.77   -1.74   -1.41   -0.92   -0.47   -0.19   -0.06    0.12    0.53    1.19    1.82    1.87
+   200.0    0.00   -0.03   -0.08   -0.23   -0.56   -1.02   -1.49   -1.77   -1.75   -1.43   -0.97   -0.57   -0.35   -0.26   -0.11    0.28    0.90    1.45    1.37
+   205.0    0.00   -0.02   -0.07   -0.22   -0.55   -1.02   -1.49   -1.77   -1.75   -1.46   -1.04   -0.69   -0.51   -0.45   -0.32    0.06    0.66    1.15    0.97
+   210.0    0.00   -0.02   -0.05   -0.21   -0.54   -1.01   -1.48   -1.76   -1.76   -1.49   -1.11   -0.81   -0.69   -0.66   -0.54   -0.15    0.46    0.92    0.67
+   215.0    0.00   -0.01   -0.04   -0.19   -0.52   -0.99   -1.46   -1.75   -1.76   -1.52   -1.19   -0.95   -0.87   -0.88   -0.77   -0.36    0.26    0.73    0.44
+   220.0    0.00    0.00   -0.02   -0.17   -0.50   -0.97   -1.44   -1.74   -1.76   -1.56   -1.28   -1.09   -1.07   -1.12   -1.01   -0.60    0.06    0.56    0.27
+   225.0    0.00    0.01   -0.01   -0.15   -0.48   -0.95   -1.42   -1.72   -1.77   -1.60   -1.36   -1.24   -1.27   -1.36   -1.28   -0.86   -0.18    0.37    0.13
+   230.0    0.00    0.02    0.01   -0.12   -0.45   -0.92   -1.39   -1.71   -1.77   -1.63   -1.45   -1.37   -1.47   -1.61   -1.57   -1.16   -0.45    0.15   -0.02
+   235.0    0.00    0.03    0.03   -0.10   -0.42   -0.89   -1.37   -1.69   -1.78   -1.67   -1.52   -1.49   -1.65   -1.86   -1.87   -1.49   -0.77   -0.11   -0.20
+   240.0    0.00    0.04    0.05   -0.07   -0.39   -0.86   -1.34   -1.68   -1.78   -1.69   -1.57   -1.59   -1.81   -2.08   -2.17   -1.84   -1.12   -0.41   -0.41
+   245.0    0.00    0.05    0.07   -0.05   -0.36   -0.83   -1.32   -1.67   -1.78   -1.70   -1.60   -1.66   -1.92   -2.27   -2.44   -2.17   -1.48   -0.73   -0.65
+   250.0    0.00    0.05    0.08   -0.03   -0.34   -0.81   -1.31   -1.66   -1.77   -1.70   -1.61   -1.68   -2.00   -2.42   -2.66   -2.47   -1.81   -1.05   -0.92
+   255.0    0.00    0.06    0.10   -0.01   -0.32   -0.79   -1.29   -1.64   -1.74   -1.67   -1.57   -1.67   -2.02   -2.51   -2.83   -2.70   -2.08   -1.32   -1.17
+   260.0    0.00    0.07    0.11    0.01   -0.30   -0.77   -1.27   -1.61   -1.70   -1.61   -1.51   -1.61   -1.99   -2.53   -2.91   -2.84   -2.26   -1.52   -1.39
+   265.0    0.00    0.08    0.13    0.03   -0.28   -0.75   -1.24   -1.57   -1.64   -1.52   -1.40   -1.50   -1.91   -2.48   -2.90   -2.87   -2.31   -1.60   -1.54
+   270.0    0.00    0.08    0.14    0.04   -0.26   -0.73   -1.21   -1.51   -1.56   -1.41   -1.27   -1.36   -1.77   -2.36   -2.80   -2.77   -2.22   -1.56   -1.58
+   275.0    0.00    0.09    0.15    0.05   -0.25   -0.71   -1.17   -1.44   -1.45   -1.26   -1.10   -1.18   -1.59   -2.17   -2.59   -2.54   -1.99   -1.36   -1.50
+   280.0    0.00    0.09    0.15    0.06   -0.24   -0.69   -1.12   -1.36   -1.32   -1.10   -0.91   -0.97   -1.36   -1.92   -2.29   -2.19   -1.61   -1.02   -1.28
+   285.0    0.00    0.10    0.16    0.07   -0.22   -0.66   -1.06   -1.26   -1.19   -0.92   -0.70   -0.74   -1.10   -1.61   -1.91   -1.73   -1.11   -0.55   -0.93
+   290.0    0.00    0.10    0.17    0.08   -0.21   -0.63   -1.01   -1.16   -1.04   -0.74   -0.49   -0.50   -0.82   -1.26   -1.47   -1.19   -0.52    0.02   -0.45
+   295.0    0.00    0.10    0.17    0.08   -0.20   -0.60   -0.95   -1.06   -0.89   -0.55   -0.27   -0.25   -0.52   -0.87   -0.97   -0.59    0.14    0.67    0.13
+   300.0    0.00    0.11    0.17    0.08   -0.19   -0.58   -0.89   -0.96   -0.76   -0.38   -0.07   -0.01   -0.21   -0.47   -0.45    0.03    0.83    1.35    0.77
+   305.0    0.00    0.11    0.17    0.08   -0.19   -0.55   -0.84   -0.88   -0.63   -0.23    0.12    0.23    0.10   -0.06    0.07    0.66    1.51    2.03    1.45
+   310.0    0.00    0.11    0.17    0.08   -0.18   -0.53   -0.79   -0.81   -0.53   -0.10    0.28    0.44    0.39    0.34    0.58    1.26    2.15    2.67    2.12
+   315.0    0.00    0.11    0.17    0.08   -0.17   -0.51   -0.76   -0.75   -0.46    0.00    0.42    0.63    0.65    0.70    1.04    1.79    2.73    3.26    2.77
+   320.0    0.00    0.11    0.17    0.08   -0.17   -0.50   -0.73   -0.71   -0.41    0.07    0.52    0.78    0.88    1.01    1.44    2.25    3.22    3.78    3.36
+   325.0    0.00    0.10    0.16    0.08   -0.17   -0.49   -0.72   -0.70   -0.38    0.11    0.59    0.90    1.06    1.27    1.76    2.61    3.61    4.20    3.89
+   330.0    0.00    0.10    0.16    0.07   -0.17   -0.49   -0.72   -0.69   -0.38    0.12    0.62    0.97    1.18    1.44    1.97    2.86    3.88    4.54    4.33
+   335.0    0.00    0.10    0.15    0.07   -0.18   -0.50   -0.72   -0.70   -0.39    0.11    0.62    1.00    1.24    1.52    2.07    2.98    4.05    4.77    4.69
+   340.0    0.00    0.10    0.15    0.06   -0.18   -0.50   -0.73   -0.72   -0.42    0.08    0.60    0.98    1.22    1.50    2.05    2.97    4.08    4.91    4.95
+   345.0    0.00    0.09    0.14    0.06   -0.19   -0.51   -0.75   -0.75   -0.46    0.03    0.54    0.92    1.14    1.39    1.91    2.82    3.99    4.93    5.11
+   350.0    0.00    0.09    0.13    0.05   -0.20   -0.52   -0.77   -0.79   -0.51   -0.03    0.47    0.82    1.00    1.19    1.64    2.54    3.76    4.84    5.17
+   355.0    0.00    0.08    0.12    0.04   -0.20   -0.54   -0.80   -0.84   -0.57   -0.10    0.38    0.70    0.81    0.91    1.27    2.13    3.40    4.62    5.10
+   360.0    0.00    0.08    0.12    0.03   -0.22   -0.56   -0.84   -0.89   -0.65   -0.19    0.28    0.55    0.59    0.56    0.81    1.61    2.91    4.27    4.90
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      1.11      0.99     81.15                              NORTH / EAST / UP   
+   NOAZI    0.00    0.03    0.10    0.14    0.09   -0.07   -0.27   -0.39   -0.32   -0.01    0.46    0.94    1.20    1.09    0.61   -0.09   -0.69   -0.86   -0.38
+     0.0    0.00   -0.04   -0.04   -0.05   -0.11   -0.24   -0.37   -0.41   -0.25    0.18    0.80    1.46    1.92    2.03    1.74    1.24    0.90    1.21    2.64
+     5.0    0.00   -0.03   -0.02   -0.01   -0.06   -0.19   -0.33   -0.38   -0.23    0.17    0.75    1.36    1.76    1.81    1.49    1.00    0.71    1.10    2.53
+    10.0    0.00   -0.02    0.00    0.03   -0.02   -0.14   -0.29   -0.35   -0.22    0.16    0.70    1.26    1.60    1.57    1.21    0.71    0.47    0.91    2.33
+    15.0    0.00   -0.01    0.03    0.06    0.03   -0.09   -0.25   -0.32   -0.21    0.14    0.65    1.15    1.43    1.33    0.91    0.39    0.17    0.64    2.02
+    20.0    0.00    0.00    0.05    0.10    0.07   -0.05   -0.21   -0.30   -0.21    0.12    0.60    1.06    1.27    1.10    0.61    0.05   -0.18    0.29    1.61
+    25.0    0.00    0.01    0.08    0.14    0.11   -0.01   -0.18   -0.29   -0.21    0.10    0.56    0.97    1.13    0.89    0.32   -0.31   -0.59   -0.16    1.10
+    30.0    0.00    0.03    0.10    0.17    0.15    0.02   -0.16   -0.28   -0.22    0.07    0.51    0.90    1.01    0.70    0.05   -0.67   -1.03   -0.67    0.51
+    35.0    0.00    0.04    0.13    0.21    0.19    0.05   -0.15   -0.29   -0.24    0.04    0.47    0.84    0.92    0.55   -0.19   -1.02   -1.49   -1.24   -0.14
+    40.0    0.00    0.05    0.15    0.24    0.22    0.08   -0.13   -0.29   -0.27    0.00    0.42    0.79    0.85    0.43   -0.39   -1.34   -1.95   -1.83   -0.83
+    45.0    0.00    0.06    0.18    0.27    0.26    0.11   -0.12   -0.30   -0.29   -0.04    0.38    0.74    0.79    0.34   -0.56   -1.62   -2.38   -2.41   -1.51
+    50.0    0.00    0.08    0.20    0.30    0.29    0.13   -0.11   -0.31   -0.31   -0.07    0.34    0.70    0.75    0.28   -0.68   -1.86   -2.77   -2.96   -2.18
+    55.0    0.00    0.09    0.22    0.33    0.31    0.16   -0.10   -0.30   -0.33   -0.10    0.30    0.66    0.70    0.22   -0.78   -2.04   -3.09   -3.44   -2.79
+    60.0    0.00    0.10    0.24    0.35    0.34    0.18   -0.07   -0.29   -0.33   -0.12    0.27    0.62    0.67    0.18   -0.84   -2.16   -3.33   -3.84   -3.33
+    65.0    0.00    0.11    0.26    0.38    0.37    0.21   -0.05   -0.27   -0.33   -0.13    0.24    0.58    0.63    0.15   -0.87   -2.23   -3.49   -4.13   -3.78
+    70.0    0.00    0.12    0.28    0.40    0.40    0.24   -0.01   -0.24   -0.31   -0.13    0.22    0.55    0.59    0.13   -0.88   -2.24   -3.55   -4.31   -4.12
+    75.0    0.00    0.13    0.30    0.42    0.42    0.27    0.02   -0.20   -0.27   -0.12    0.21    0.52    0.56    0.12   -0.86   -2.20   -3.54   -4.39   -4.37
+    80.0    0.00    0.14    0.31    0.44    0.45    0.31    0.07   -0.16   -0.23   -0.09    0.22    0.51    0.55    0.13   -0.81   -2.12   -3.45   -4.37   -4.51
+    85.0    0.00    0.14    0.32    0.46    0.47    0.34    0.11   -0.11   -0.18   -0.04    0.25    0.52    0.56    0.16   -0.73   -1.99   -3.30   -4.26   -4.55
+    90.0    0.00    0.15    0.34    0.48    0.49    0.37    0.14   -0.06   -0.12    0.01    0.29    0.56    0.60    0.22   -0.62   -1.82   -3.09   -4.07   -4.49
+    95.0    0.00    0.16    0.35    0.49    0.51    0.39    0.17   -0.02   -0.07    0.07    0.36    0.63    0.68    0.33   -0.47   -1.61   -2.83   -3.82   -4.34
+   100.0    0.00    0.16    0.35    0.50    0.52    0.40    0.20    0.01   -0.03    0.13    0.44    0.73    0.80    0.48   -0.28   -1.37   -2.53   -3.50   -4.10
+   105.0    0.00    0.16    0.36    0.51    0.53    0.41    0.21    0.03    0.01    0.19    0.53    0.85    0.95    0.67   -0.06   -1.09   -2.20   -3.13   -3.77
+   110.0    0.00    0.17    0.37    0.52    0.54    0.42    0.21    0.04    0.04    0.25    0.62    0.99    1.14    0.88    0.20   -0.79   -1.84   -2.72   -3.35
+   115.0    0.00    0.17    0.37    0.52    0.54    0.42    0.21    0.05    0.05    0.30    0.72    1.14    1.33    1.12    0.48   -0.47   -1.45   -2.25   -2.85
+   120.0    0.00    0.17    0.37    0.52    0.54    0.41    0.20    0.04    0.06    0.34    0.81    1.29    1.53    1.37    0.76   -0.14   -1.05   -1.76   -2.27
+   125.0    0.00    0.17    0.37    0.52    0.53    0.40    0.19    0.03    0.06    0.37    0.88    1.42    1.72    1.60    1.03    0.19   -0.64   -1.24   -1.64
+   130.0    0.00    0.17    0.37    0.51    0.53    0.39    0.17    0.01    0.06    0.39    0.94    1.52    1.87    1.80    1.28    0.50   -0.24   -0.72   -0.98
+   135.0    0.00    0.17    0.36    0.50    0.51    0.38    0.16    0.00    0.05    0.40    0.98    1.60    1.99    1.96    1.49    0.78    0.13   -0.21   -0.31
+   140.0    0.00    0.16    0.35    0.49    0.50    0.36    0.14   -0.02    0.04    0.40    0.99    1.63    2.06    2.07    1.65    1.01    0.46    0.26    0.33
+   145.0    0.00    0.16    0.34    0.48    0.48    0.34    0.12   -0.04    0.03    0.39    0.99    1.64    2.07    2.11    1.74    1.17    0.73    0.66    0.90
+   150.0    0.00    0.15    0.33    0.46    0.46    0.32    0.10   -0.05    0.01    0.37    0.96    1.61    2.05    2.10    1.77    1.27    0.92    0.97    1.37
+   155.0    0.00    0.15    0.32    0.44    0.43    0.29    0.08   -0.07   -0.01    0.34    0.93    1.55    1.98    2.04    1.74    1.29    1.02    1.17    1.71
+   160.0    0.00    0.14    0.30    0.41    0.40    0.26    0.05   -0.09   -0.03    0.32    0.88    1.48    1.89    1.95    1.66    1.25    1.03    1.26    1.90
+   165.0    0.00    0.13    0.28    0.38    0.37    0.22    0.01   -0.12   -0.05    0.28    0.83    1.40    1.78    1.83    1.55    1.15    0.96    1.22    1.95
+   170.0    0.00    0.12    0.26    0.35    0.33    0.17   -0.03   -0.16   -0.08    0.25    0.77    1.32    1.67    1.69    1.41    1.01    0.82    1.09    1.86
+   175.0    0.00    0.11    0.24    0.32    0.28    0.12   -0.08   -0.20   -0.12    0.21    0.72    1.24    1.57    1.57    1.26    0.85    0.63    0.87    1.65
+   180.0    0.00    0.10    0.22    0.28    0.23    0.07   -0.13   -0.24   -0.15    0.18    0.68    1.17    1.47    1.45    1.12    0.68    0.42    0.61    1.36
+   185.0    0.00    0.09    0.20    0.25    0.18    0.01   -0.19   -0.30   -0.20    0.14    0.63    1.12    1.39    1.35    1.00    0.53    0.22    0.33    1.03
+   190.0    0.00    0.08    0.18    0.21    0.13   -0.05   -0.25   -0.35   -0.24    0.10    0.59    1.06    1.33    1.27    0.90    0.40    0.04    0.08    0.69
+   195.0    0.00    0.07    0.15    0.18    0.09   -0.10   -0.31   -0.40   -0.29    0.06    0.55    1.01    1.27    1.20    0.83    0.31   -0.10   -0.14    0.39
+   200.0    0.00    0.06    0.13    0.14    0.04   -0.16   -0.36   -0.45   -0.33    0.01    0.50    0.96    1.21    1.14    0.77    0.26   -0.18   -0.29    0.14
+   205.0    0.00    0.05    0.11    0.11    0.00   -0.20   -0.41   -0.50   -0.38   -0.03    0.45    0.89    1.14    1.08    0.73    0.23   -0.22   -0.38   -0.04
+   210.0    0.00    0.04    0.09    0.08   -0.04   -0.24   -0.45   -0.54   -0.42   -0.08    0.38    0.82    1.06    1.01    0.68    0.21   -0.22   -0.41   -0.15
+   215.0    0.00    0.03    0.07    0.05   -0.07   -0.27   -0.48   -0.58   -0.46   -0.14    0.31    0.73    0.96    0.92    0.63    0.19   -0.21   -0.40   -0.19
+   220.0    0.00    0.02    0.05    0.03   -0.09   -0.30   -0.51   -0.61   -0.50   -0.19    0.23    0.62    0.85    0.82    0.55    0.16   -0.21   -0.38   -0.20
+   225.0    0.00    0.00    0.03    0.01   -0.11   -0.32   -0.53   -0.63   -0.54   -0.26    0.14    0.51    0.72    0.69    0.45    0.09   -0.23   -0.37   -0.19
+   230.0    0.00   -0.01    0.02   -0.01   -0.13   -0.33   -0.55   -0.66   -0.59   -0.32    0.05    0.40    0.59    0.56    0.32   -0.02   -0.31   -0.41   -0.20
+   235.0    0.00   -0.02    0.00   -0.03   -0.14   -0.35   -0.56   -0.68   -0.63   -0.39   -0.04    0.29    0.47    0.42    0.17   -0.17   -0.44   -0.50   -0.25
+   240.0    0.00   -0.03   -0.02   -0.04   -0.16   -0.36   -0.58   -0.71   -0.68   -0.46   -0.13    0.19    0.35    0.29    0.01   -0.35   -0.63   -0.67   -0.36
+   245.0    0.00   -0.03   -0.03   -0.06   -0.17   -0.37   -0.59   -0.74   -0.72   -0.52   -0.20    0.11    0.26    0.17   -0.15   -0.56   -0.87   -0.89   -0.52
+   250.0    0.00   -0.04   -0.04   -0.07   -0.18   -0.38   -0.61   -0.77   -0.77   -0.57   -0.25    0.05    0.20    0.07   -0.30   -0.78   -1.14   -1.16   -0.73
+   255.0    0.00   -0.05   -0.06   -0.08   -0.19   -0.40   -0.63   -0.80   -0.81   -0.62   -0.29    0.03    0.17    0.01   -0.42   -0.98   -1.41   -1.45   -0.96
+   260.0    0.00   -0.06   -0.07   -0.10   -0.21   -0.41   -0.65   -0.83   -0.84   -0.64   -0.30    0.03    0.17   -0.01   -0.50   -1.14   -1.65   -1.72   -1.20
+   265.0    0.00   -0.07   -0.08   -0.11   -0.22   -0.43   -0.67   -0.85   -0.86   -0.65   -0.29    0.06    0.21    0.01   -0.53   -1.25   -1.82   -1.93   -1.42
+   270.0    0.00   -0.07   -0.09   -0.13   -0.24   -0.44   -0.69   -0.86   -0.86   -0.64   -0.25    0.12    0.29    0.08   -0.50   -1.28   -1.92   -2.07   -1.57
+   275.0    0.00   -0.08   -0.11   -0.14   -0.25   -0.46   -0.70   -0.87   -0.85   -0.61   -0.19    0.21    0.39    0.19   -0.41   -1.23   -1.91   -2.11   -1.65
+   280.0    0.00   -0.09   -0.12   -0.16   -0.27   -0.47   -0.70   -0.86   -0.82   -0.55   -0.12    0.32    0.52    0.33   -0.27   -1.09   -1.80   -2.04   -1.62
+   285.0    0.00   -0.09   -0.13   -0.17   -0.28   -0.48   -0.70   -0.84   -0.78   -0.48   -0.02    0.44    0.67    0.51   -0.07   -0.88   -1.60   -1.87   -1.50
+   290.0    0.00   -0.09   -0.14   -0.18   -0.30   -0.49   -0.69   -0.81   -0.72   -0.40    0.09    0.57    0.83    0.71    0.17   -0.60   -1.31   -1.60   -1.27
+   295.0    0.00   -0.10   -0.14   -0.20   -0.31   -0.49   -0.68   -0.77   -0.66   -0.31    0.20    0.71    1.01    0.93    0.45   -0.28   -0.96   -1.26   -0.96
+   300.0    0.00   -0.10   -0.15   -0.20   -0.32   -0.49   -0.66   -0.73   -0.59   -0.22    0.32    0.86    1.19    1.16    0.74    0.06   -0.59   -0.88   -0.58
+   305.0    0.00   -0.10   -0.15   -0.21   -0.32   -0.49   -0.65   -0.69   -0.52   -0.12    0.44    1.00    1.37    1.40    1.04    0.41   -0.21   -0.49   -0.16
+   310.0    0.00   -0.10   -0.16   -0.22   -0.33   -0.49   -0.63   -0.65   -0.46   -0.04    0.55    1.14    1.55    1.63    1.32    0.74    0.15   -0.11    0.28
+   315.0    0.00   -0.10   -0.15   -0.22   -0.33   -0.48   -0.61   -0.62   -0.41    0.03    0.65    1.27    1.73    1.85    1.59    1.04    0.46    0.23    0.70
+   320.0    0.00   -0.10   -0.15   -0.21   -0.32   -0.47   -0.60   -0.59   -0.37    0.09    0.73    1.39    1.89    2.05    1.82    1.29    0.72    0.52    1.11
+   325.0    0.00   -0.10   -0.15   -0.21   -0.31   -0.46   -0.58   -0.57   -0.34    0.14    0.80    1.50    2.03    2.22    2.02    1.49    0.92    0.75    1.48
+   330.0    0.00   -0.09   -0.14   -0.20   -0.30   -0.44   -0.56   -0.55   -0.32    0.17    0.85    1.57    2.14    2.36    2.16    1.63    1.06    0.94    1.81
+   335.0    0.00   -0.09   -0.13   -0.18   -0.28   -0.42   -0.54   -0.53   -0.30    0.19    0.88    1.63    2.21    2.44    2.24    1.70    1.15    1.08    2.09
+   340.0    0.00   -0.08   -0.12   -0.16   -0.26   -0.40   -0.52   -0.52   -0.29    0.20    0.90    1.65    2.24    2.47    2.26    1.72    1.18    1.18    2.32
+   345.0    0.00   -0.07   -0.10   -0.14   -0.22   -0.36   -0.49   -0.50   -0.28    0.20    0.89    1.64    2.22    2.44    2.22    1.68    1.18    1.24    2.49
+   350.0    0.00   -0.06   -0.08   -0.11   -0.19   -0.33   -0.46   -0.47   -0.27    0.20    0.87    1.60    2.16    2.35    2.12    1.59    1.13    1.27    2.61
+   355.0    0.00   -0.05   -0.06   -0.08   -0.15   -0.28   -0.42   -0.45   -0.26    0.19    0.84    1.54    2.06    2.21    1.96    1.44    1.04    1.27    2.67
+   360.0    0.00   -0.04   -0.04   -0.05   -0.11   -0.24   -0.37   -0.41   -0.25    0.18    0.80    1.46    1.92    2.03    1.74    1.24    0.90    1.21    2.64
+   G02                                                      END OF FREQUENCY    
+   R01                                                      START OF FREQUENCY  
+      0.27      0.42     90.55                              NORTH / EAST / UP   
+   NOAZI    0.00    0.04    0.11    0.10   -0.11   -0.51   -0.98   -1.33   -1.41   -1.20   -0.83   -0.51   -0.39   -0.44   -0.47   -0.27    0.24    0.80    0.85
+     0.0    0.00    0.09    0.21    0.25    0.11   -0.19   -0.48   -0.61   -0.43   -0.01    0.49    0.85    0.94    0.86    0.93    1.43    2.49    3.82    4.81
+     5.0    0.00    0.09    0.21    0.23    0.08   -0.23   -0.55   -0.69   -0.55   -0.14    0.33    0.64    0.66    0.50    0.45    0.89    1.95    3.36    4.43
+    10.0    0.00    0.08    0.19    0.21    0.06   -0.26   -0.61   -0.78   -0.66   -0.28    0.17    0.44    0.39    0.13   -0.04    0.30    1.32    2.75    3.88
+    15.0    0.00    0.07    0.18    0.19    0.03   -0.30   -0.67   -0.88   -0.79   -0.43    0.00    0.24    0.13   -0.24   -0.54   -0.32    0.60    2.02    3.16
+    20.0    0.00    0.06    0.16    0.18    0.01   -0.35   -0.74   -0.98   -0.93   -0.59   -0.17    0.05   -0.11   -0.58   -1.01   -0.96   -0.15    1.19    2.29
+    25.0    0.00    0.06    0.14    0.16   -0.03   -0.39   -0.82   -1.09   -1.07   -0.74   -0.34   -0.13   -0.32   -0.88   -1.44   -1.56   -0.94    0.27    1.32
+    30.0    0.00    0.05    0.14    0.14   -0.05   -0.44   -0.90   -1.21   -1.22   -0.91   -0.51   -0.29   -0.50   -1.11   -1.80   -2.11   -1.69   -0.67    0.25
+    35.0    0.00    0.04    0.12    0.12   -0.08   -0.48   -0.97   -1.32   -1.36   -1.08   -0.67   -0.45   -0.66   -1.30   -2.09   -2.57   -2.38   -1.59   -0.85
+    40.0    0.00    0.03    0.10    0.09   -0.11   -0.53   -1.04   -1.42   -1.50   -1.25   -0.84   -0.60   -0.79   -1.44   -2.30   -2.94   -2.97   -2.43   -1.92
+    45.0    0.00    0.02    0.08    0.08   -0.13   -0.56   -1.11   -1.53   -1.64   -1.41   -1.02   -0.75   -0.90   -1.54   -2.44   -3.20   -3.44   -3.16   -2.91
+    50.0    0.00    0.01    0.08    0.06   -0.16   -0.60   -1.16   -1.62   -1.77   -1.58   -1.18   -0.89   -1.01   -1.59   -2.50   -3.32   -3.74   -3.73   -3.76
+    55.0    0.00    0.01    0.06    0.04   -0.18   -0.62   -1.20   -1.69   -1.88   -1.72   -1.35   -1.04   -1.10   -1.63   -2.49   -3.35   -3.89   -4.10   -4.43
+    60.0    0.00   -0.01    0.04    0.03   -0.19   -0.64   -1.23   -1.74   -1.97   -1.84   -1.50   -1.18   -1.19   -1.64   -2.42   -3.25   -3.87   -4.27   -4.87
+    65.0    0.00   -0.01    0.03    0.00   -0.21   -0.66   -1.25   -1.77   -2.03   -1.95   -1.63   -1.31   -1.27   -1.63   -2.31   -3.07   -3.70   -4.23   -5.08
+    70.0    0.00   -0.03    0.01   -0.01   -0.23   -0.67   -1.26   -1.79   -2.07   -2.03   -1.74   -1.43   -1.35   -1.61   -2.16   -2.81   -3.39   -4.00   -5.03
+    75.0    0.00   -0.03    0.00   -0.02   -0.23   -0.67   -1.26   -1.80   -2.10   -2.08   -1.82   -1.51   -1.39   -1.56   -1.98   -2.47   -2.97   -3.60   -4.76
+    80.0    0.00   -0.04   -0.01   -0.03   -0.25   -0.68   -1.25   -1.79   -2.11   -2.10   -1.86   -1.56   -1.41   -1.49   -1.76   -2.11   -2.47   -3.04   -4.27
+    85.0    0.00   -0.04   -0.02   -0.06   -0.25   -0.68   -1.26   -1.78   -2.10   -2.10   -1.87   -1.57   -1.38   -1.38   -1.53   -1.70   -1.91   -2.39   -3.62
+    90.0    0.00   -0.05   -0.03   -0.07   -0.27   -0.69   -1.25   -1.77   -2.07   -2.08   -1.84   -1.54   -1.31   -1.23   -1.25   -1.28   -1.32   -1.66   -2.82
+    95.0    0.00   -0.06   -0.05   -0.08   -0.28   -0.70   -1.25   -1.76   -2.05   -2.04   -1.80   -1.46   -1.19   -1.05   -0.96   -0.83   -0.71   -0.90   -1.94
+   100.0    0.00   -0.06   -0.05   -0.09   -0.30   -0.71   -1.25   -1.75   -2.03   -1.99   -1.72   -1.35   -1.04   -0.82   -0.64   -0.38   -0.11   -0.13   -1.02
+   105.0    0.00   -0.06   -0.06   -0.10   -0.31   -0.72   -1.26   -1.75   -2.00   -1.95   -1.64   -1.21   -0.84   -0.57   -0.29    0.07    0.48    0.63   -0.09
+   110.0    0.00   -0.07   -0.07   -0.11   -0.32   -0.74   -1.28   -1.76   -1.99   -1.90   -1.53   -1.06   -0.63   -0.29    0.06    0.51    1.05    1.34    0.80
+   115.0    0.00   -0.07   -0.07   -0.12   -0.33   -0.75   -1.29   -1.76   -1.99   -1.86   -1.45   -0.92   -0.42   -0.02    0.40    0.93    1.57    2.00    1.64
+   120.0    0.00   -0.07   -0.08   -0.12   -0.34   -0.76   -1.31   -1.78   -1.97   -1.83   -1.37   -0.78   -0.22    0.25    0.72    1.31    2.04    2.59    2.38
+   125.0    0.00   -0.06   -0.07   -0.13   -0.35   -0.78   -1.32   -1.78   -1.98   -1.79   -1.30   -0.66   -0.05    0.47    0.99    1.66    2.45    3.10    3.03
+   130.0    0.00   -0.07   -0.08   -0.14   -0.36   -0.79   -1.33   -1.80   -1.97   -1.78   -1.26   -0.57    0.09    0.65    1.22    1.93    2.78    3.50    3.55
+   135.0    0.00   -0.07   -0.08   -0.13   -0.37   -0.79   -1.34   -1.81   -1.97   -1.76   -1.22   -0.51    0.17    0.77    1.38    2.12    3.02    3.81    3.94
+   140.0    0.00   -0.06   -0.07   -0.13   -0.36   -0.80   -1.35   -1.80   -1.97   -1.75   -1.20   -0.49    0.21    0.83    1.46    2.22    3.15    3.99    4.19
+   145.0    0.00   -0.06   -0.07   -0.13   -0.36   -0.80   -1.35   -1.80   -1.97   -1.75   -1.20   -0.49    0.20    0.82    1.45    2.23    3.18    4.05    4.31
+   150.0    0.00   -0.06   -0.06   -0.13   -0.36   -0.80   -1.34   -1.79   -1.96   -1.74   -1.20   -0.51    0.16    0.74    1.35    2.13    3.10    4.00    4.30
+   155.0    0.00   -0.05   -0.05   -0.13   -0.37   -0.80   -1.34   -1.79   -1.95   -1.73   -1.20   -0.55    0.09    0.63    1.20    1.95    2.91    3.83    4.17
+   160.0    0.00   -0.05   -0.05   -0.12   -0.36   -0.81   -1.35   -1.79   -1.94   -1.72   -1.21   -0.59   -0.01    0.48    0.99    1.70    2.63    3.55    3.93
+   165.0    0.00   -0.04   -0.04   -0.12   -0.36   -0.82   -1.36   -1.79   -1.94   -1.71   -1.21   -0.63   -0.10    0.31    0.75    1.39    2.28    3.19    3.60
+   170.0    0.00   -0.04   -0.03   -0.10   -0.37   -0.82   -1.36   -1.80   -1.93   -1.71   -1.22   -0.67   -0.20    0.13    0.49    1.06    1.89    2.78    3.21
+   175.0    0.00   -0.03   -0.02   -0.10   -0.36   -0.84   -1.38   -1.80   -1.93   -1.70   -1.22   -0.71   -0.30   -0.03    0.24    0.72    1.50    2.35    2.79
+   180.0    0.00   -0.02   -0.01   -0.09   -0.37   -0.84   -1.39   -1.82   -1.93   -1.70   -1.24   -0.74   -0.39   -0.19    0.00    0.41    1.12    1.92    2.34
+   185.0    0.00   -0.01    0.00   -0.08   -0.36   -0.85   -1.41   -1.83   -1.94   -1.70   -1.25   -0.78   -0.47   -0.34   -0.21    0.12    0.77    1.52    1.90
+   190.0    0.00    0.00    0.02   -0.06   -0.36   -0.85   -1.42   -1.84   -1.94   -1.71   -1.27   -0.83   -0.56   -0.48   -0.41   -0.11    0.48    1.17    1.50
+   195.0    0.00    0.01    0.03   -0.05   -0.35   -0.84   -1.42   -1.84   -1.95   -1.72   -1.29   -0.88   -0.65   -0.61   -0.57   -0.31    0.24    0.88    1.14
+   200.0    0.00    0.01    0.05   -0.03   -0.33   -0.84   -1.42   -1.84   -1.96   -1.74   -1.34   -0.96   -0.76   -0.74   -0.71   -0.47    0.06    0.65    0.83
+   205.0    0.00    0.03    0.07    0.00   -0.30   -0.81   -1.40   -1.82   -1.96   -1.76   -1.39   -1.05   -0.88   -0.89   -0.86   -0.61   -0.08    0.47    0.55
+   210.0    0.00    0.04    0.09    0.02   -0.28   -0.79   -1.37   -1.80   -1.94   -1.77   -1.45   -1.14   -1.02   -1.03   -1.01   -0.74   -0.20    0.32    0.32
+   215.0    0.00    0.05    0.11    0.05   -0.25   -0.75   -1.33   -1.77   -1.92   -1.80   -1.51   -1.26   -1.17   -1.20   -1.17   -0.88   -0.33    0.18    0.12
+   220.0    0.00    0.06    0.13    0.07   -0.21   -0.71   -1.28   -1.73   -1.91   -1.80   -1.56   -1.37   -1.32   -1.38   -1.35   -1.05   -0.49    0.03   -0.06
+   225.0    0.00    0.06    0.14    0.10   -0.17   -0.66   -1.23   -1.67   -1.88   -1.81   -1.62   -1.48   -1.48   -1.57   -1.56   -1.25   -0.67   -0.15   -0.26
+   230.0    0.00    0.08    0.17    0.13   -0.14   -0.61   -1.17   -1.63   -1.84   -1.81   -1.66   -1.57   -1.62   -1.76   -1.78   -1.48   -0.90   -0.36   -0.46
+   235.0    0.00    0.09    0.19    0.16   -0.09   -0.56   -1.11   -1.57   -1.80   -1.80   -1.69   -1.64   -1.75   -1.94   -1.99   -1.74   -1.16   -0.61   -0.67
+   240.0    0.00    0.10    0.21    0.19   -0.06   -0.52   -1.06   -1.52   -1.75   -1.76   -1.69   -1.68   -1.84   -2.08   -2.19   -1.99   -1.44   -0.89   -0.89
+   245.0    0.00    0.10    0.22    0.21   -0.03   -0.47   -1.02   -1.46   -1.69   -1.73   -1.66   -1.69   -1.89   -2.19   -2.38   -2.23   -1.73   -1.16   -1.11
+   250.0    0.00    0.11    0.24    0.23    0.01   -0.43   -0.97   -1.41   -1.64   -1.66   -1.61   -1.66   -1.89   -2.25   -2.51   -2.42   -1.97   -1.40   -1.32
+   255.0    0.00    0.12    0.25    0.26    0.03   -0.40   -0.92   -1.36   -1.57   -1.59   -1.54   -1.59   -1.86   -2.26   -2.58   -2.56   -2.14   -1.58   -1.48
+   260.0    0.00    0.12    0.26    0.27    0.06   -0.37   -0.88   -1.30   -1.50   -1.49   -1.43   -1.48   -1.77   -2.22   -2.57   -2.60   -2.22   -1.69   -1.58
+   265.0    0.00    0.14    0.27    0.29    0.08   -0.34   -0.83   -1.23   -1.41   -1.38   -1.30   -1.34   -1.63   -2.09   -2.49   -2.55   -2.19   -1.67   -1.58
+   270.0    0.00    0.14    0.28    0.30    0.10   -0.31   -0.79   -1.16   -1.31   -1.25   -1.13   -1.17   -1.45   -1.92   -2.32   -2.38   -2.03   -1.54   -1.50
+   275.0    0.00    0.14    0.28    0.31    0.12   -0.28   -0.74   -1.08   -1.19   -1.09   -0.95   -0.96   -1.24   -1.69   -2.07   -2.11   -1.75   -1.27   -1.30
+   280.0    0.00    0.15    0.29    0.32    0.13   -0.26   -0.69   -0.99   -1.06   -0.92   -0.74   -0.73   -0.98   -1.40   -1.74   -1.73   -1.35   -0.88   -1.00
+   285.0    0.00    0.15    0.30    0.32    0.14   -0.22   -0.63   -0.89   -0.92   -0.73   -0.52   -0.48   -0.70   -1.07   -1.35   -1.29   -0.86   -0.41   -0.60
+   290.0    0.00    0.14    0.29    0.33    0.15   -0.20   -0.56   -0.79   -0.76   -0.54   -0.29   -0.21   -0.39   -0.71   -0.92   -0.77   -0.29    0.15   -0.11
+   295.0    0.00    0.15    0.30    0.33    0.17   -0.16   -0.50   -0.68   -0.61   -0.35   -0.06    0.06   -0.07   -0.32   -0.45   -0.22    0.31    0.75    0.44
+   300.0    0.00    0.15    0.29    0.33    0.18   -0.13   -0.44   -0.58   -0.47   -0.16    0.17    0.33    0.25    0.07    0.03    0.32    0.91    1.36    1.03
+   305.0    0.00    0.15    0.30    0.33    0.18   -0.11   -0.39   -0.49   -0.34    0.02    0.39    0.60    0.58    0.46    0.50    0.86    1.49    1.95    1.62
+   310.0    0.00    0.14    0.29    0.33    0.18   -0.09   -0.35   -0.42   -0.22    0.17    0.59    0.85    0.88    0.83    0.94    1.36    2.02    2.51    2.22
+   315.0    0.00    0.14    0.29    0.32    0.19   -0.07   -0.31   -0.36   -0.13    0.30    0.75    1.06    1.16    1.17    1.34    1.80    2.49    3.00    2.79
+   320.0    0.00    0.15    0.29    0.33    0.19   -0.06   -0.29   -0.32   -0.07    0.39    0.88    1.23    1.39    1.46    1.66    2.16    2.87    3.44    3.32
+   325.0    0.00    0.14    0.28    0.32    0.19   -0.05   -0.28   -0.30   -0.04    0.44    0.97    1.37    1.57    1.68    1.92    2.44    3.18    3.80    3.81
+   330.0    0.00    0.14    0.27    0.31    0.19   -0.06   -0.27   -0.30   -0.03    0.46    1.01    1.45    1.68    1.82    2.08    2.61    3.39    4.07    4.24
+   335.0    0.00    0.13    0.26    0.30    0.18   -0.07   -0.29   -0.32   -0.05    0.44    1.02    1.47    1.72    1.88    2.13    2.69    3.51    4.28    4.59
+   340.0    0.00    0.13    0.26    0.29    0.17   -0.08   -0.32   -0.35   -0.11    0.40    0.97    1.43    1.69    1.83    2.09    2.66    3.53    4.40    4.87
+   345.0    0.00    0.12    0.25    0.29    0.15   -0.11   -0.35   -0.40   -0.16    0.32    0.89    1.34    1.58    1.71    1.94    2.51    3.43    4.43    5.04
+   350.0    0.00    0.12    0.24    0.28    0.14   -0.13   -0.39   -0.47   -0.24    0.23    0.78    1.21    1.41    1.48    1.68    2.25    3.23    4.35    5.10
+   355.0    0.00    0.10    0.22    0.26    0.12   -0.16   -0.43   -0.53   -0.34    0.11    0.65    1.04    1.19    1.20    1.34    1.89    2.92    4.15    5.02
+   360.0    0.00    0.09    0.21    0.25    0.11   -0.19   -0.48   -0.61   -0.43   -0.01    0.49    0.85    0.94    0.86    0.93    1.43    2.49    3.82    4.81
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+      1.11      0.99     81.15                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.05   -0.17   -0.31   -0.44   -0.54   -0.60   -0.63   -0.60   -0.45   -0.14    0.28    0.66    0.73    0.25   -0.80   -2.07   -2.84   -2.23
+     0.0    0.00   -0.10   -0.25   -0.42   -0.56   -0.69   -0.78   -0.81   -0.73   -0.45    0.08    0.77    1.41    1.63    1.14   -0.08   -1.56   -2.27   -0.85
+     5.0    0.00   -0.09   -0.24   -0.39   -0.53   -0.64   -0.72   -0.77   -0.72   -0.49    0.00    0.69    1.38    1.69    1.30    0.11   -1.44   -2.36   -1.23
+    10.0    0.00   -0.08   -0.22   -0.36   -0.49   -0.58   -0.67   -0.73   -0.71   -0.53   -0.08    0.60    1.33    1.73    1.43    0.30   -1.30   -2.41   -1.58
+    15.0    0.00   -0.07   -0.19   -0.34   -0.45   -0.54   -0.62   -0.69   -0.71   -0.57   -0.17    0.49    1.24    1.73    1.54    0.48   -1.14   -2.38   -1.85
+    20.0    0.00   -0.06   -0.17   -0.31   -0.41   -0.49   -0.56   -0.63   -0.68   -0.60   -0.26    0.37    1.13    1.67    1.58    0.62   -0.96   -2.29   -1.99
+    25.0    0.00   -0.04   -0.15   -0.28   -0.38   -0.44   -0.50   -0.58   -0.65   -0.61   -0.33    0.24    0.97    1.55    1.55    0.70   -0.79   -2.13   -1.98
+    30.0    0.00   -0.04   -0.14   -0.26   -0.35   -0.39   -0.44   -0.52   -0.61   -0.61   -0.40    0.11    0.80    1.38    1.43    0.70   -0.67   -1.92   -1.82
+    35.0    0.00   -0.02   -0.12   -0.23   -0.32   -0.35   -0.39   -0.46   -0.57   -0.61   -0.46   -0.02    0.60    1.15    1.24    0.60   -0.61   -1.71   -1.55
+    40.0    0.00   -0.01   -0.10   -0.21   -0.28   -0.31   -0.34   -0.41   -0.52   -0.59   -0.50   -0.13    0.41    0.90    0.97    0.41   -0.65   -1.55   -1.23
+    45.0    0.00    0.00   -0.09   -0.18   -0.26   -0.28   -0.31   -0.37   -0.48   -0.57   -0.51   -0.23    0.22    0.61    0.63    0.10   -0.81   -1.47   -0.93
+    50.0    0.00    0.01   -0.06   -0.17   -0.24   -0.26   -0.28   -0.34   -0.45   -0.55   -0.53   -0.31    0.04    0.32    0.25   -0.29   -1.11   -1.54   -0.72
+    55.0    0.00    0.01   -0.05   -0.15   -0.21   -0.24   -0.26   -0.32   -0.43   -0.53   -0.52   -0.36   -0.10    0.03   -0.16   -0.78   -1.53   -1.77   -0.68
+    60.0    0.00    0.03   -0.03   -0.13   -0.19   -0.23   -0.25   -0.31   -0.41   -0.50   -0.50   -0.38   -0.22   -0.22   -0.58   -1.30   -2.07   -2.18   -0.86
+    65.0    0.00    0.04   -0.02   -0.11   -0.18   -0.21   -0.25   -0.31   -0.41   -0.49   -0.49   -0.39   -0.31   -0.45   -0.97   -1.86   -2.70   -2.76   -1.29
+    70.0    0.00    0.04    0.00   -0.09   -0.16   -0.20   -0.25   -0.32   -0.42   -0.47   -0.46   -0.38   -0.36   -0.63   -1.33   -2.40   -3.37   -3.48   -1.95
+    75.0    0.00    0.05    0.01   -0.06   -0.14   -0.19   -0.25   -0.34   -0.42   -0.47   -0.43   -0.35   -0.39   -0.76   -1.64   -2.90   -4.06   -4.28   -2.82
+    80.0    0.00    0.06    0.03   -0.04   -0.12   -0.18   -0.25   -0.34   -0.43   -0.46   -0.41   -0.31   -0.38   -0.85   -1.88   -3.34   -4.69   -5.12   -3.84
+    85.0    0.00    0.07    0.04   -0.03   -0.09   -0.17   -0.24   -0.34   -0.43   -0.45   -0.37   -0.27   -0.36   -0.89   -2.05   -3.68   -5.25   -5.92   -4.90
+    90.0    0.00    0.08    0.06   -0.01   -0.08   -0.16   -0.24   -0.34   -0.43   -0.43   -0.34   -0.22   -0.31   -0.89   -2.13   -3.91   -5.69   -6.62   -5.94
+    95.0    0.00    0.08    0.07    0.01   -0.07   -0.14   -0.23   -0.33   -0.41   -0.40   -0.30   -0.17   -0.27   -0.87   -2.16   -4.04   -5.99   -7.17   -6.84
+   100.0    0.00    0.09    0.09    0.02   -0.05   -0.13   -0.23   -0.33   -0.40   -0.38   -0.24   -0.11   -0.19   -0.79   -2.12   -4.05   -6.11   -7.54   -7.56
+   105.0    0.00    0.09    0.10    0.03   -0.04   -0.12   -0.22   -0.31   -0.37   -0.33   -0.20   -0.05   -0.12   -0.70   -2.00   -3.95   -6.10   -7.70   -8.03
+   110.0    0.00    0.09    0.10    0.04   -0.03   -0.12   -0.21   -0.30   -0.34   -0.29   -0.14    0.02   -0.03   -0.58   -1.85   -3.77   -5.94   -7.66   -8.22
+   115.0    0.00    0.10    0.11    0.05   -0.03   -0.12   -0.22   -0.29   -0.32   -0.25   -0.07    0.11    0.08   -0.43   -1.65   -3.52   -5.65   -7.42   -8.14
+   120.0    0.00    0.10    0.11    0.06   -0.04   -0.13   -0.22   -0.29   -0.30   -0.20   -0.01    0.19    0.19   -0.28   -1.42   -3.20   -5.28   -7.03   -7.82
+   125.0    0.00    0.11    0.11    0.05   -0.04   -0.15   -0.24   -0.30   -0.29   -0.16    0.06    0.30    0.33   -0.10   -1.16   -2.85   -4.83   -6.52   -7.30
+   130.0    0.00    0.10    0.10    0.04   -0.05   -0.17   -0.26   -0.32   -0.29   -0.14    0.13    0.39    0.45    0.08   -0.91   -2.49   -4.35   -5.93   -6.63
+   135.0    0.00    0.10    0.11    0.04   -0.07   -0.19   -0.30   -0.35   -0.30   -0.11    0.17    0.48    0.58    0.26   -0.65   -2.12   -3.84   -5.29   -5.89
+   140.0    0.00    0.09    0.10    0.03   -0.09   -0.22   -0.33   -0.38   -0.31   -0.11    0.22    0.55    0.70    0.44   -0.39   -1.75   -3.34   -4.64   -5.10
+   145.0    0.00    0.09    0.09    0.01   -0.11   -0.25   -0.37   -0.41   -0.33   -0.10    0.25    0.61    0.80    0.59   -0.15   -1.40   -2.85   -4.00   -4.33
+   150.0    0.00    0.09    0.08    0.00   -0.13   -0.27   -0.39   -0.44   -0.36   -0.12    0.25    0.64    0.87    0.72    0.06   -1.07   -2.39   -3.40   -3.60
+   155.0    0.00    0.08    0.07   -0.01   -0.14   -0.29   -0.41   -0.46   -0.37   -0.13    0.24    0.65    0.91    0.82    0.24   -0.77   -1.95   -2.83   -2.92
+   160.0    0.00    0.07    0.06   -0.02   -0.15   -0.30   -0.42   -0.47   -0.39   -0.16    0.21    0.62    0.91    0.88    0.39   -0.52   -1.56   -2.31   -2.31
+   165.0    0.00    0.06    0.05   -0.04   -0.17   -0.30   -0.42   -0.47   -0.40   -0.19    0.17    0.58    0.88    0.90    0.49   -0.29   -1.21   -1.84   -1.77
+   170.0    0.00    0.05    0.03   -0.05   -0.17   -0.30   -0.41   -0.46   -0.41   -0.21    0.12    0.52    0.83    0.88    0.56   -0.12   -0.91   -1.43   -1.29
+   175.0    0.00    0.05    0.01   -0.07   -0.18   -0.29   -0.39   -0.45   -0.41   -0.24    0.05    0.44    0.75    0.84    0.59   -0.01   -0.69   -1.08   -0.86
+   180.0    0.00    0.03   -0.01   -0.09   -0.20   -0.29   -0.38   -0.43   -0.41   -0.28   -0.01    0.35    0.66    0.78    0.57    0.06   -0.52   -0.81   -0.49
+   185.0    0.00    0.01   -0.03   -0.12   -0.21   -0.29   -0.37   -0.41   -0.41   -0.30   -0.07    0.27    0.58    0.72    0.54    0.08   -0.43   -0.62   -0.18
+   190.0    0.00    0.01   -0.05   -0.14   -0.23   -0.30   -0.37   -0.41   -0.42   -0.32   -0.12    0.20    0.51    0.64    0.49    0.05   -0.41   -0.51    0.05
+   195.0    0.00   -0.01   -0.08   -0.17   -0.25   -0.32   -0.37   -0.41   -0.42   -0.36   -0.16    0.15    0.46    0.59    0.43   -0.02   -0.47   -0.50    0.22
+   200.0    0.00   -0.02   -0.10   -0.21   -0.29   -0.35   -0.39   -0.42   -0.45   -0.38   -0.18    0.12    0.43    0.56    0.37   -0.12   -0.58   -0.56    0.31
+   205.0    0.00   -0.04   -0.14   -0.24   -0.33   -0.39   -0.42   -0.45   -0.46   -0.40   -0.20    0.12    0.44    0.54    0.31   -0.23   -0.73   -0.70    0.31
+   210.0    0.00   -0.05   -0.17   -0.29   -0.37   -0.42   -0.45   -0.49   -0.50   -0.43   -0.21    0.13    0.46    0.56    0.28   -0.33   -0.92   -0.90    0.23
+   215.0    0.00   -0.07   -0.20   -0.33   -0.42   -0.48   -0.51   -0.53   -0.54   -0.44   -0.20    0.16    0.50    0.60    0.27   -0.42   -1.10   -1.12    0.09
+   220.0    0.00   -0.08   -0.23   -0.37   -0.48   -0.53   -0.56   -0.58   -0.57   -0.47   -0.21    0.19    0.55    0.64    0.29   -0.48   -1.26   -1.35   -0.09
+   225.0    0.00   -0.10   -0.26   -0.42   -0.54   -0.59   -0.62   -0.63   -0.60   -0.48   -0.20    0.21    0.60    0.70    0.32   -0.51   -1.38   -1.56   -0.30
+   230.0    0.00   -0.11   -0.28   -0.47   -0.60   -0.65   -0.67   -0.66   -0.63   -0.49   -0.19    0.24    0.64    0.76    0.38   -0.49   -1.45   -1.73   -0.51
+   235.0    0.00   -0.12   -0.32   -0.51   -0.65   -0.70   -0.72   -0.71   -0.65   -0.51   -0.20    0.24    0.67    0.82    0.45   -0.43   -1.46   -1.85   -0.71
+   240.0    0.00   -0.14   -0.35   -0.55   -0.70   -0.76   -0.77   -0.74   -0.68   -0.52   -0.21    0.23    0.69    0.88    0.55   -0.34   -1.42   -1.91   -0.88
+   245.0    0.00   -0.15   -0.37   -0.59   -0.75   -0.81   -0.80   -0.77   -0.69   -0.54   -0.23    0.22    0.70    0.93    0.64   -0.22   -1.34   -1.93   -1.02
+   250.0    0.00   -0.16   -0.40   -0.63   -0.78   -0.85   -0.84   -0.79   -0.71   -0.55   -0.26    0.20    0.70    0.98    0.75   -0.09   -1.23   -1.93   -1.15
+   255.0    0.00   -0.17   -0.41   -0.66   -0.82   -0.89   -0.88   -0.82   -0.73   -0.58   -0.28    0.18    0.71    1.03    0.84    0.04   -1.12   -1.92   -1.26
+   260.0    0.00   -0.18   -0.43   -0.69   -0.85   -0.92   -0.90   -0.84   -0.76   -0.60   -0.31    0.16    0.71    1.07    0.95    0.16   -1.04   -1.92   -1.38
+   265.0    0.00   -0.19   -0.44   -0.71   -0.89   -0.95   -0.94   -0.88   -0.79   -0.64   -0.34    0.15    0.73    1.13    1.03    0.26   -0.99   -1.96   -1.53
+   270.0    0.00   -0.20   -0.46   -0.73   -0.91   -0.99   -0.97   -0.92   -0.84   -0.68   -0.35    0.16    0.76    1.20    1.11    0.32   -0.98   -2.04   -1.70
+   275.0    0.00   -0.19   -0.47   -0.73   -0.93   -1.02   -1.02   -0.97   -0.88   -0.71   -0.36    0.18    0.82    1.26    1.17    0.34   -1.03   -2.17   -1.90
+   280.0    0.00   -0.19   -0.47   -0.74   -0.94   -1.05   -1.06   -1.02   -0.93   -0.74   -0.36    0.22    0.88    1.34    1.22    0.33   -1.12   -2.33   -2.11
+   285.0    0.00   -0.20   -0.47   -0.75   -0.95   -1.07   -1.10   -1.08   -0.98   -0.76   -0.34    0.27    0.96    1.40    1.24    0.28   -1.23   -2.52   -2.31
+   290.0    0.00   -0.20   -0.47   -0.74   -0.96   -1.09   -1.14   -1.12   -1.02   -0.77   -0.31    0.34    1.05    1.46    1.24    0.20   -1.38   -2.69   -2.48
+   295.0    0.00   -0.20   -0.47   -0.74   -0.95   -1.10   -1.16   -1.16   -1.04   -0.77   -0.27    0.42    1.12    1.51    1.21    0.11   -1.52   -2.82   -2.58
+   300.0    0.00   -0.19   -0.46   -0.72   -0.95   -1.10   -1.19   -1.18   -1.06   -0.75   -0.21    0.50    1.20    1.53    1.16   -0.01   -1.65   -2.90   -2.57
+   305.0    0.00   -0.20   -0.45   -0.71   -0.94   -1.11   -1.19   -1.19   -1.06   -0.72   -0.15    0.58    1.25    1.53    1.09   -0.12   -1.75   -2.91   -2.45
+   310.0    0.00   -0.19   -0.43   -0.69   -0.92   -1.09   -1.19   -1.19   -1.04   -0.67   -0.08    0.66    1.30    1.51    1.00   -0.25   -1.83   -2.86   -2.22
+   315.0    0.00   -0.18   -0.42   -0.68   -0.89   -1.07   -1.17   -1.16   -1.00   -0.61    0.00    0.72    1.32    1.47    0.91   -0.35   -1.87   -2.74   -1.88
+   320.0    0.00   -0.18   -0.40   -0.64   -0.86   -1.04   -1.15   -1.14   -0.96   -0.55    0.06    0.78    1.34    1.43    0.81   -0.45   -1.87   -2.58   -1.48
+   325.0    0.00   -0.17   -0.39   -0.62   -0.83   -1.01   -1.11   -1.10   -0.91   -0.49    0.12    0.82    1.35    1.39    0.74   -0.52   -1.87   -2.40   -1.05
+   330.0    0.00   -0.16   -0.37   -0.59   -0.81   -0.97   -1.07   -1.04   -0.86   -0.45    0.17    0.85    1.35    1.36    0.69   -0.57   -1.85   -2.23   -0.65
+   335.0    0.00   -0.15   -0.35   -0.57   -0.77   -0.93   -1.02   -1.01   -0.82   -0.40    0.20    0.87    1.36    1.35    0.66   -0.58   -1.81   -2.10   -0.35
+   340.0    0.00   -0.14   -0.33   -0.54   -0.72   -0.87   -0.97   -0.96   -0.78   -0.38    0.22    0.88    1.37    1.36    0.68   -0.55   -1.78   -2.03   -0.16
+   345.0    0.00   -0.14   -0.31   -0.50   -0.69   -0.83   -0.93   -0.91   -0.75   -0.37    0.21    0.88    1.38    1.40    0.74   -0.49   -1.75   -2.02   -0.13
+   350.0    0.00   -0.12   -0.29   -0.47   -0.64   -0.78   -0.87   -0.88   -0.74   -0.38    0.18    0.86    1.40    1.47    0.85   -0.39   -1.71   -2.07   -0.25
+   355.0    0.00   -0.11   -0.27   -0.44   -0.61   -0.74   -0.82   -0.85   -0.73   -0.41    0.14    0.82    1.41    1.55    0.99   -0.25   -1.65   -2.17   -0.50
+   360.0    0.00   -0.10   -0.25   -0.42   -0.56   -0.69   -0.78   -0.81   -0.73   -0.45    0.08    0.77    1.41    1.63    1.14   -0.08   -1.56   -2.27   -0.85
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH700228A      NONE                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               6    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+Number of Calibrated Antennas GPS:      006                 COMMENT             
+Number of Individual Calibrations GPS:  028                 COMMENT             
+   G01                                                      START OF FREQUENCY  
+     -2.68     -1.35     58.54                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.23   -0.85   -1.68   -2.53   -3.29   -3.95   -4.56   -5.15   -5.64   -5.85   -5.56   -4.65   -3.17   -1.31    0.68    2.76    5.12    8.18
+     0.0    0.00    0.08   -0.19   -0.68   -1.23   -1.76   -2.28   -2.86   -3.56   -4.26   -4.76   -4.77   -4.15   -2.91   -1.27    0.55    2.54    4.99    8.45
+     5.0    0.00    0.08   -0.20   -0.68   -1.22   -1.75   -2.26   -2.86   -3.55   -4.26   -4.75   -4.76   -4.12   -2.87   -1.20    0.69    2.77    5.35    8.95
+    10.0    0.00    0.07   -0.21   -0.69   -1.23   -1.76   -2.28   -2.88   -3.58   -4.28   -4.75   -4.75   -4.09   -2.82   -1.12    0.82    2.98    5.65    9.36
+    15.0    0.00    0.06   -0.22   -0.71   -1.26   -1.79   -2.33   -2.93   -3.62   -4.31   -4.76   -4.73   -4.05   -2.75   -1.02    0.96    3.18    5.92    9.68
+    20.0    0.00    0.04   -0.25   -0.75   -1.31   -1.85   -2.39   -3.00   -3.68   -4.34   -4.76   -4.68   -3.97   -2.65   -0.88    1.13    3.39    6.16    9.92
+    25.0    0.00    0.03   -0.28   -0.80   -1.38   -1.93   -2.48   -3.08   -3.75   -4.37   -4.74   -4.62   -3.86   -2.50   -0.70    1.34    3.63    6.41   10.12
+    30.0    0.00    0.01   -0.33   -0.87   -1.46   -2.03   -2.59   -3.18   -3.82   -4.39   -4.70   -4.52   -3.71   -2.30   -0.47    1.60    3.90    6.67   10.30
+    35.0    0.00   -0.01   -0.37   -0.94   -1.56   -2.15   -2.72   -3.30   -3.90   -4.42   -4.66   -4.41   -3.53   -2.08   -0.21    1.90    4.21    6.95   10.46
+    40.0    0.00   -0.04   -0.43   -1.03   -1.68   -2.29   -2.86   -3.43   -3.98   -4.44   -4.61   -4.29   -3.35   -1.84    0.07    2.21    4.54    7.23   10.62
+    45.0    0.00   -0.07   -0.49   -1.13   -1.81   -2.45   -3.03   -3.57   -4.09   -4.48   -4.58   -4.18   -3.18   -1.61    0.34    2.52    4.85    7.51   10.75
+    50.0    0.00   -0.09   -0.56   -1.23   -1.96   -2.62   -3.21   -3.74   -4.21   -4.54   -4.57   -4.10   -3.04   -1.43    0.57    2.78    5.13    7.74   10.86
+    55.0    0.00   -0.12   -0.63   -1.35   -2.11   -2.81   -3.41   -3.93   -4.36   -4.64   -4.60   -4.07   -2.96   -1.30    0.73    2.97    5.33    7.91   10.91
+    60.0    0.00   -0.16   -0.70   -1.47   -2.28   -3.01   -3.63   -4.14   -4.55   -4.78   -4.69   -4.11   -2.96   -1.27    0.80    3.06    5.44    7.99   10.89
+    65.0    0.00   -0.19   -0.78   -1.60   -2.46   -3.23   -3.86   -4.38   -4.77   -4.98   -4.85   -4.24   -3.05   -1.34    0.75    3.03    5.41    7.95   10.78
+    70.0    0.00   -0.22   -0.85   -1.72   -2.63   -3.45   -4.12   -4.65   -5.04   -5.23   -5.08   -4.45   -3.25   -1.53    0.56    2.85    5.24    7.77   10.57
+    75.0    0.00   -0.25   -0.93   -1.85   -2.81   -3.68   -4.38   -4.94   -5.34   -5.53   -5.38   -4.75   -3.55   -1.84    0.25    2.54    4.94    7.47   10.25
+    80.0    0.00   -0.28   -1.00   -1.97   -2.99   -3.90   -4.66   -5.25   -5.67   -5.88   -5.75   -5.13   -3.95   -2.25   -0.17    2.11    4.50    7.05    9.85
+    85.0    0.00   -0.32   -1.07   -2.09   -3.16   -4.13   -4.93   -5.56   -6.03   -6.27   -6.17   -5.58   -4.42   -2.75   -0.70    1.57    3.96    6.54    9.38
+    90.0    0.00   -0.34   -1.14   -2.20   -3.32   -4.34   -5.19   -5.87   -6.39   -6.68   -6.62   -6.07   -4.95   -3.31   -1.29    0.96    3.35    5.96    8.87
+    95.0    0.00   -0.37   -1.20   -2.31   -3.47   -4.53   -5.43   -6.17   -6.74   -7.09   -7.08   -6.57   -5.50   -3.90   -1.91    0.31    2.71    5.35    8.33
+   100.0    0.00   -0.40   -1.26   -2.40   -3.59   -4.70   -5.65   -6.44   -7.07   -7.47   -7.52   -7.07   -6.04   -4.48   -2.53   -0.33    2.06    4.74    7.80
+   105.0    0.00   -0.42   -1.31   -2.47   -3.70   -4.84   -5.82   -6.66   -7.35   -7.81   -7.92   -7.52   -6.54   -5.02   -3.10   -0.93    1.46    4.17    7.29
+   110.0    0.00   -0.44   -1.35   -2.53   -3.78   -4.94   -5.96   -6.84   -7.57   -8.09   -8.25   -7.90   -6.96   -5.47   -3.59   -1.46    0.92    3.65    6.81
+   115.0    0.00   -0.46   -1.38   -2.57   -3.83   -5.00   -6.04   -6.95   -7.73   -8.29   -8.50   -8.18   -7.27   -5.82   -3.98   -1.87    0.48    3.20    6.38
+   120.0    0.00   -0.48   -1.41   -2.60   -3.85   -5.02   -6.07   -6.99   -7.80   -8.40   -8.63   -8.35   -7.46   -6.04   -4.22   -2.16    0.15    2.83    5.99
+   125.0    0.00   -0.49   -1.42   -2.61   -3.85   -5.00   -6.04   -6.96   -7.78   -8.40   -8.65   -8.38   -7.51   -6.10   -4.32   -2.31   -0.06    2.56    5.65
+   130.0    0.00   -0.50   -1.43   -2.60   -3.82   -4.94   -5.95   -6.86   -7.67   -8.29   -8.55   -8.29   -7.42   -6.02   -4.27   -2.31   -0.15    2.38    5.38
+   135.0    0.00   -0.51   -1.43   -2.58   -3.76   -4.84   -5.81   -6.69   -7.48   -8.09   -8.34   -8.06   -7.18   -5.78   -4.06   -2.17   -0.10    2.30    5.18
+   140.0    0.00   -0.51   -1.42   -2.54   -3.68   -4.71   -5.62   -6.46   -7.21   -7.79   -8.02   -7.72   -6.82   -5.41   -3.71   -1.89    0.06    2.33    5.08
+   145.0    0.00   -0.51   -1.41   -2.49   -3.57   -4.55   -5.40   -6.17   -6.88   -7.42   -7.61   -7.28   -6.35   -4.93   -3.25   -1.49    0.35    2.48    5.09
+   150.0    0.00   -0.51   -1.39   -2.43   -3.46   -4.36   -5.14   -5.85   -6.50   -6.99   -7.14   -6.77   -5.80   -4.36   -2.69   -0.98    0.75    2.75    5.26
+   155.0    0.00   -0.51   -1.36   -2.37   -3.34   -4.17   -4.87   -5.51   -6.09   -6.53   -6.64   -6.22   -5.21   -3.74   -2.07   -0.40    1.26    3.15    5.60
+   160.0    0.00   -0.50   -1.33   -2.30   -3.21   -3.96   -4.59   -5.15   -5.68   -6.06   -6.12   -5.66   -4.61   -3.11   -1.42    0.24    1.84    3.68    6.11
+   165.0    0.00   -0.50   -1.30   -2.23   -3.08   -3.77   -4.32   -4.81   -5.27   -5.61   -5.63   -5.13   -4.05   -2.50   -0.77    0.90    2.49    4.32    6.81
+   170.0    0.00   -0.49   -1.27   -2.16   -2.95   -3.58   -4.06   -4.48   -4.89   -5.19   -5.18   -4.65   -3.53   -1.94   -0.16    1.55    3.18    5.05    7.66
+   175.0    0.00   -0.48   -1.24   -2.09   -2.84   -3.41   -3.83   -4.19   -4.55   -4.82   -4.79   -4.25   -3.10   -1.46    0.38    2.17    3.87    5.84    8.62
+   180.0    0.00   -0.47   -1.21   -2.03   -2.74   -3.26   -3.63   -3.95   -4.27   -4.52   -4.48   -3.93   -2.77   -1.09    0.83    2.72    4.54    6.64    9.64
+   185.0    0.00   -0.46   -1.18   -1.98   -2.66   -3.14   -3.47   -3.76   -4.05   -4.29   -4.26   -3.72   -2.54   -0.82    1.18    3.18    5.14    7.40   10.62
+   190.0    0.00   -0.44   -1.15   -1.93   -2.59   -3.06   -3.36   -3.62   -3.90   -4.14   -4.12   -3.60   -2.42   -0.66    1.42    3.54    5.63    8.06   11.50
+   195.0    0.00   -0.43   -1.13   -1.90   -2.55   -3.00   -3.29   -3.54   -3.82   -4.06   -4.07   -3.56   -2.39   -0.61    1.55    3.77    6.01    8.58   12.20
+   200.0    0.00   -0.42   -1.11   -1.87   -2.52   -2.98   -3.27   -3.52   -3.80   -4.06   -4.08   -3.61   -2.45   -0.64    1.57    3.89    6.24    8.92   12.65
+   205.0    0.00   -0.40   -1.08   -1.85   -2.51   -2.98   -3.29   -3.55   -3.84   -4.12   -4.16   -3.71   -2.57   -0.75    1.51    3.90    6.31    9.05   12.82
+   210.0    0.00   -0.39   -1.07   -1.84   -2.52   -3.01   -3.34   -3.62   -3.93   -4.22   -4.29   -3.86   -2.73   -0.91    1.37    3.80    6.24    8.97   12.70
+   215.0    0.00   -0.38   -1.05   -1.84   -2.55   -3.07   -3.43   -3.74   -4.07   -4.37   -4.45   -4.04   -2.92   -1.11    1.18    3.62    6.04    8.71   12.31
+   220.0    0.00   -0.36   -1.04   -1.84   -2.58   -3.14   -3.54   -3.88   -4.23   -4.55   -4.64   -4.23   -3.13   -1.32    0.95    3.37    5.74    8.29   11.69
+   225.0    0.00   -0.35   -1.02   -1.85   -2.62   -3.23   -3.68   -4.05   -4.42   -4.75   -4.84   -4.43   -3.34   -1.55    0.70    3.07    5.36    7.76   10.93
+   230.0    0.00   -0.33   -1.01   -1.85   -2.66   -3.32   -3.82   -4.23   -4.62   -4.96   -5.05   -4.64   -3.55   -1.78    0.44    2.75    4.94    7.18   10.09
+   235.0    0.00   -0.31   -0.99   -1.86   -2.71   -3.42   -3.96   -4.42   -4.84   -5.18   -5.26   -4.85   -3.77   -2.01    0.16    2.41    4.52    6.60    9.28
+   240.0    0.00   -0.30   -0.98   -1.87   -2.75   -3.51   -4.10   -4.60   -5.05   -5.40   -5.49   -5.08   -3.99   -2.26   -0.12    2.07    4.10    6.07    8.55
+   245.0    0.00   -0.28   -0.96   -1.87   -2.79   -3.59   -4.24   -4.78   -5.26   -5.63   -5.72   -5.31   -4.24   -2.53   -0.42    1.73    3.71    5.61    7.97
+   250.0    0.00   -0.26   -0.94   -1.86   -2.82   -3.66   -4.36   -4.95   -5.46   -5.86   -5.97   -5.57   -4.50   -2.82   -0.74    1.39    3.34    5.23    7.55
+   255.0    0.00   -0.25   -0.92   -1.86   -2.84   -3.72   -4.46   -5.10   -5.66   -6.08   -6.22   -5.84   -4.80   -3.14   -1.09    1.03    3.01    4.93    7.29
+   260.0    0.00   -0.23   -0.90   -1.84   -2.84   -3.76   -4.54   -5.23   -5.83   -6.30   -6.47   -6.12   -5.12   -3.49   -1.46    0.66    2.68    4.70    7.16
+   265.0    0.00   -0.21   -0.87   -1.82   -2.83   -3.78   -4.60   -5.33   -5.98   -6.50   -6.72   -6.42   -5.46   -3.86   -1.86    0.28    2.36    4.50    7.11
+   270.0    0.00   -0.19   -0.84   -1.78   -2.81   -3.77   -4.63   -5.40   -6.11   -6.69   -6.96   -6.71   -5.80   -4.25   -2.27   -0.13    2.01    4.29    7.09
+   275.0    0.00   -0.17   -0.81   -1.74   -2.77   -3.75   -4.63   -5.44   -6.20   -6.83   -7.17   -6.98   -6.12   -4.62   -2.68   -0.54    1.65    4.05    7.03
+   280.0    0.00   -0.15   -0.77   -1.69   -2.72   -3.70   -4.60   -5.44   -6.25   -6.94   -7.33   -7.21   -6.41   -4.97   -3.07   -0.95    1.27    3.75    6.89
+   285.0    0.00   -0.12   -0.73   -1.64   -2.65   -3.63   -4.54   -5.41   -6.25   -6.99   -7.44   -7.38   -6.64   -5.26   -3.41   -1.34    0.87    3.41    6.65
+   290.0    0.00   -0.10   -0.69   -1.57   -2.57   -3.54   -4.45   -5.33   -6.20   -6.99   -7.49   -7.47   -6.79   -5.47   -3.69   -1.68    0.49    3.01    6.30
+   295.0    0.00   -0.08   -0.64   -1.50   -2.48   -3.43   -4.33   -5.21   -6.11   -6.92   -7.46   -7.49   -6.85   -5.59   -3.88   -1.95    0.13    2.60    5.86
+   300.0    0.00   -0.06   -0.59   -1.43   -2.37   -3.30   -4.18   -5.06   -5.96   -6.79   -7.35   -7.41   -6.82   -5.60   -3.96   -2.13   -0.16    2.20    5.39
+   305.0    0.00   -0.04   -0.55   -1.35   -2.26   -3.15   -4.00   -4.87   -5.76   -6.60   -7.17   -7.25   -6.68   -5.51   -3.94   -2.21   -0.36    1.86    4.93
+   310.0    0.00   -0.02   -0.50   -1.27   -2.14   -2.99   -3.81   -4.65   -5.53   -6.36   -6.93   -7.02   -6.46   -5.32   -3.81   -2.17   -0.45    1.62    4.55
+   315.0    0.00    0.00   -0.45   -1.19   -2.02   -2.83   -3.61   -4.41   -5.26   -6.08   -6.64   -6.72   -6.17   -5.05   -3.59   -2.03   -0.42    1.52    4.31
+   320.0    0.00    0.02   -0.41   -1.11   -1.90   -2.66   -3.40   -4.16   -4.99   -5.78   -6.33   -6.40   -5.84   -4.73   -3.29   -1.79   -0.27    1.56    4.24
+   325.0    0.00    0.03   -0.36   -1.03   -1.78   -2.50   -3.19   -3.92   -4.70   -5.47   -6.00   -6.06   -5.50   -4.38   -2.95   -1.48   -0.01    1.75    4.37
+   330.0    0.00    0.05   -0.32   -0.95   -1.66   -2.34   -2.99   -3.68   -4.43   -5.18   -5.69   -5.74   -5.16   -4.03   -2.60   -1.13    0.33    2.08    4.69
+   335.0    0.00    0.06   -0.29   -0.88   -1.55   -2.19   -2.80   -3.46   -4.19   -4.91   -5.41   -5.45   -4.86   -3.72   -2.26   -0.76    0.73    2.52    5.18
+   340.0    0.00    0.07   -0.26   -0.82   -1.46   -2.06   -2.64   -3.27   -3.98   -4.69   -5.18   -5.20   -4.61   -3.44   -1.96   -0.41    1.15    3.03    5.80
+   345.0    0.00    0.08   -0.23   -0.77   -1.38   -1.95   -2.50   -3.11   -3.80   -4.51   -5.00   -5.02   -4.41   -3.23   -1.71   -0.10    1.56    3.56    6.48
+   350.0    0.00    0.08   -0.21   -0.73   -1.31   -1.86   -2.40   -2.99   -3.68   -4.38   -4.87   -4.89   -4.28   -3.08   -1.51    0.17    1.93    4.09    7.19
+   355.0    0.00    0.08   -0.20   -0.70   -1.26   -1.80   -2.32   -2.91   -3.60   -4.30   -4.79   -4.81   -4.20   -2.98   -1.37    0.38    2.26    4.57    7.85
+   360.0    0.00    0.08   -0.19   -0.68   -1.23   -1.76   -2.28   -2.86   -3.56   -4.26   -4.76   -4.77   -4.15   -2.91   -1.27    0.55    2.54    4.99    8.45
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -3.58      2.02     64.80                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.18   -0.67   -1.32   -1.96   -2.47   -2.86   -3.18   -3.55   -4.02   -4.51   -4.78   -4.56   -3.61   -1.88    0.40    2.78    4.66    5.56
+     0.0    0.00   -0.20   -0.77   -1.51   -2.23   -2.80   -3.22   -3.62   -4.14   -4.84   -5.62   -6.18   -6.19   -5.41   -3.81   -1.67    0.59    2.64    4.45
+     5.0    0.00   -0.20   -0.75   -1.47   -2.15   -2.69   -3.08   -3.44   -3.90   -4.54   -5.22   -5.69   -5.61   -4.73   -3.07   -0.87    1.43    3.51    5.40
+    10.0    0.00   -0.19   -0.72   -1.41   -2.06   -2.57   -2.92   -3.24   -3.65   -4.21   -4.80   -5.17   -4.99   -4.02   -2.28   -0.03    2.31    4.40    6.33
+    15.0    0.00   -0.19   -0.70   -1.35   -1.97   -2.43   -2.75   -3.04   -3.40   -3.89   -4.39   -4.66   -4.37   -3.31   -1.49    0.82    3.18    5.27    7.20
+    20.0    0.00   -0.18   -0.67   -1.29   -1.87   -2.30   -2.59   -2.84   -3.16   -3.58   -4.00   -4.17   -3.78   -2.63   -0.73    1.64    4.03    6.09    7.99
+    25.0    0.00   -0.18   -0.64   -1.23   -1.77   -2.17   -2.43   -2.65   -2.93   -3.30   -3.65   -3.73   -3.26   -2.02   -0.04    2.39    4.80    6.85    8.69
+    30.0    0.00   -0.17   -0.61   -1.17   -1.67   -2.04   -2.29   -2.49   -2.74   -3.06   -3.35   -3.36   -2.81   -1.50    0.55    3.03    5.48    7.52    9.30
+    35.0    0.00   -0.17   -0.59   -1.11   -1.59   -1.94   -2.16   -2.35   -2.58   -2.87   -3.11   -3.06   -2.45   -1.08    1.02    3.55    6.04    8.08    9.78
+    40.0    0.00   -0.16   -0.56   -1.06   -1.51   -1.84   -2.07   -2.24   -2.46   -2.72   -2.92   -2.83   -2.19   -0.79    1.35    3.93    6.47    8.52   10.15
+    45.0    0.00   -0.16   -0.54   -1.02   -1.45   -1.77   -1.99   -2.17   -2.38   -2.62   -2.79   -2.68   -2.02   -0.61    1.54    4.16    6.75    8.83   10.37
+    50.0    0.00   -0.15   -0.53   -0.98   -1.41   -1.72   -1.94   -2.12   -2.32   -2.55   -2.71   -2.59   -1.94   -0.55    1.60    4.24    6.88    8.99   10.44
+    55.0    0.00   -0.15   -0.51   -0.96   -1.37   -1.69   -1.92   -2.10   -2.30   -2.51   -2.66   -2.55   -1.93   -0.58    1.54    4.19    6.87    9.01   10.36
+    60.0    0.00   -0.15   -0.50   -0.94   -1.36   -1.68   -1.92   -2.11   -2.30   -2.51   -2.66   -2.57   -1.99   -0.70    1.37    4.01    6.72    8.88   10.12
+    65.0    0.00   -0.15   -0.50   -0.94   -1.36   -1.69   -1.94   -2.13   -2.32   -2.53   -2.68   -2.62   -2.10   -0.88    1.12    3.73    6.45    8.63    9.74
+    70.0    0.00   -0.15   -0.50   -0.94   -1.37   -1.72   -1.97   -2.17   -2.37   -2.57   -2.74   -2.71   -2.25   -1.12    0.80    3.36    6.09    8.26    9.23
+    75.0    0.00   -0.15   -0.51   -0.96   -1.39   -1.75   -2.02   -2.23   -2.43   -2.64   -2.82   -2.83   -2.44   -1.40    0.43    2.93    5.64    7.80    8.63
+    80.0    0.00   -0.16   -0.52   -0.98   -1.43   -1.81   -2.09   -2.31   -2.52   -2.74   -2.94   -2.99   -2.66   -1.71    0.02    2.45    5.12    7.27    7.96
+    85.0    0.00   -0.16   -0.53   -1.01   -1.47   -1.87   -2.17   -2.41   -2.63   -2.87   -3.10   -3.19   -2.92   -2.05   -0.41    1.93    4.57    6.69    7.28
+    90.0    0.00   -0.17   -0.55   -1.04   -1.53   -1.94   -2.26   -2.52   -2.78   -3.05   -3.30   -3.43   -3.22   -2.42   -0.87    1.40    3.98    6.09    6.60
+    95.0    0.00   -0.17   -0.57   -1.08   -1.59   -2.02   -2.37   -2.66   -2.95   -3.26   -3.55   -3.72   -3.55   -2.81   -1.34    0.85    3.39    5.48    5.96
+   100.0    0.00   -0.18   -0.60   -1.13   -1.66   -2.11   -2.49   -2.82   -3.15   -3.51   -3.85   -4.05   -3.92   -3.23   -1.82    0.29    2.78    4.88    5.39
+   105.0    0.00   -0.19   -0.62   -1.18   -1.73   -2.21   -2.62   -3.00   -3.39   -3.81   -4.20   -4.43   -4.32   -3.67   -2.32   -0.26    2.19    4.31    4.88
+   110.0    0.00   -0.20   -0.65   -1.23   -1.81   -2.31   -2.76   -3.19   -3.64   -4.13   -4.58   -4.84   -4.76   -4.13   -2.81   -0.81    1.61    3.76    4.42
+   115.0    0.00   -0.20   -0.68   -1.28   -1.88   -2.42   -2.90   -3.39   -3.92   -4.48   -4.98   -5.29   -5.22   -4.60   -3.31   -1.35    1.06    3.25    4.02
+   120.0    0.00   -0.21   -0.71   -1.34   -1.96   -2.53   -3.05   -3.59   -4.19   -4.83   -5.40   -5.74   -5.69   -5.07   -3.79   -1.85    0.55    2.77    3.65
+   125.0    0.00   -0.22   -0.74   -1.39   -2.04   -2.64   -3.20   -3.79   -4.46   -5.18   -5.81   -6.20   -6.15   -5.53   -4.25   -2.30    0.09    2.35    3.29
+   130.0    0.00   -0.23   -0.76   -1.44   -2.12   -2.74   -3.34   -3.98   -4.72   -5.50   -6.20   -6.63   -6.60   -5.96   -4.66   -2.69   -0.29    1.99    2.95
+   135.0    0.00   -0.24   -0.79   -1.49   -2.20   -2.85   -3.47   -4.15   -4.94   -5.79   -6.55   -7.02   -7.00   -6.35   -5.00   -3.00   -0.57    1.70    2.64
+   140.0    0.00   -0.24   -0.81   -1.54   -2.27   -2.94   -3.59   -4.30   -5.14   -6.04   -6.85   -7.36   -7.34   -6.66   -5.26   -3.20   -0.74    1.51    2.36
+   145.0    0.00   -0.25   -0.83   -1.58   -2.34   -3.02   -3.69   -4.42   -5.28   -6.23   -7.08   -7.62   -7.61   -6.89   -5.42   -3.27   -0.77    1.44    2.16
+   150.0    0.00   -0.25   -0.85   -1.62   -2.39   -3.10   -3.77   -4.51   -5.39   -6.35   -7.24   -7.81   -7.79   -7.03   -5.46   -3.21   -0.65    1.51    2.09
+   155.0    0.00   -0.25   -0.86   -1.65   -2.44   -3.16   -3.84   -4.57   -5.44   -6.41   -7.32   -7.90   -7.88   -7.05   -5.38   -3.01   -0.38    1.75    2.18
+   160.0    0.00   -0.25   -0.87   -1.68   -2.49   -3.21   -3.89   -4.61   -5.46   -6.42   -7.32   -7.90   -7.86   -6.96   -5.17   -2.67    0.04    2.16    2.48
+   165.0    0.00   -0.25   -0.88   -1.69   -2.52   -3.25   -3.91   -4.61   -5.43   -6.36   -7.25   -7.81   -7.73   -6.76   -4.84   -2.20    0.61    2.74    3.01
+   170.0    0.00   -0.25   -0.88   -1.70   -2.54   -3.27   -3.92   -4.58   -5.36   -6.25   -7.10   -7.64   -7.51   -6.45   -4.40   -1.61    1.31    3.47    3.77
+   175.0    0.00   -0.25   -0.88   -1.70   -2.54   -3.28   -3.91   -4.53   -5.25   -6.09   -6.89   -7.38   -7.19   -6.04   -3.86   -0.93    2.10    4.33    4.75
+   180.0    0.00   -0.24   -0.87   -1.70   -2.54   -3.27   -3.88   -4.46   -5.12   -5.88   -6.63   -7.06   -6.80   -5.55   -3.25   -0.19    2.95    5.28    5.88
+   185.0    0.00   -0.24   -0.85   -1.68   -2.52   -3.24   -3.82   -4.36   -4.95   -5.64   -6.31   -6.67   -6.34   -5.00   -2.59    0.58    3.82    6.25    7.09
+   190.0    0.00   -0.23   -0.83   -1.65   -2.48   -3.20   -3.75   -4.23   -4.76   -5.37   -5.96   -6.25   -5.83   -4.41   -1.91    1.35    4.66    7.19    8.30
+   195.0    0.00   -0.22   -0.81   -1.62   -2.44   -3.13   -3.66   -4.09   -4.54   -5.07   -5.58   -5.79   -5.30   -3.80   -1.23    2.08    5.43    8.04    9.40
+   200.0    0.00   -0.21   -0.79   -1.57   -2.38   -3.05   -3.55   -3.93   -4.31   -4.75   -5.18   -5.31   -4.76   -3.20   -0.59    2.75    6.11    8.74   10.30
+   205.0    0.00   -0.20   -0.76   -1.52   -2.31   -2.96   -3.42   -3.74   -4.05   -4.42   -4.77   -4.83   -4.23   -2.63    0.00    3.33    6.66    9.27   10.93
+   210.0    0.00   -0.19   -0.73   -1.47   -2.23   -2.85   -3.27   -3.55   -3.79   -4.08   -4.36   -4.37   -3.73   -2.11    0.52    3.81    7.06    9.58   11.25
+   215.0    0.00   -0.18   -0.69   -1.41   -2.15   -2.74   -3.12   -3.34   -3.52   -3.75   -3.97   -3.93   -3.27   -1.66    0.95    4.17    7.31    9.69   11.22
+   220.0    0.00   -0.17   -0.66   -1.35   -2.06   -2.62   -2.96   -3.13   -3.25   -3.42   -3.60   -3.54   -2.87   -1.28    1.28    4.42    7.42    9.59   10.89
+   225.0    0.00   -0.16   -0.63   -1.29   -1.97   -2.50   -2.80   -2.93   -3.00   -3.12   -3.26   -3.19   -2.53   -0.99    1.50    4.54    7.39    9.33   10.29
+   230.0    0.00   -0.15   -0.60   -1.23   -1.88   -2.38   -2.65   -2.74   -2.77   -2.85   -2.97   -2.90   -2.27   -0.78    1.62    4.55    7.23    8.92    9.50
+   235.0    0.00   -0.14   -0.57   -1.18   -1.80   -2.27   -2.52   -2.57   -2.57   -2.62   -2.73   -2.67   -2.09   -0.67    1.64    4.45    6.98    8.43    8.62
+   240.0    0.00   -0.13   -0.55   -1.13   -1.73   -2.18   -2.40   -2.43   -2.41   -2.44   -2.54   -2.50   -1.98   -0.64    1.57    4.26    6.64    7.89    7.71
+   245.0    0.00   -0.13   -0.53   -1.10   -1.67   -2.11   -2.31   -2.33   -2.29   -2.32   -2.42   -2.41   -1.94   -0.69    1.41    3.98    6.24    7.34    6.87
+   250.0    0.00   -0.12   -0.51   -1.07   -1.63   -2.05   -2.25   -2.26   -2.22   -2.25   -2.36   -2.38   -1.97   -0.81    1.17    3.63    5.80    6.79    6.14
+   255.0    0.00   -0.12   -0.50   -1.05   -1.60   -2.02   -2.21   -2.23   -2.19   -2.23   -2.36   -2.41   -2.06   -0.99    0.88    3.22    5.32    6.28    5.56
+   260.0    0.00   -0.12   -0.50   -1.04   -1.59   -2.00   -2.21   -2.24   -2.22   -2.28   -2.43   -2.51   -2.21   -1.23    0.52    2.77    4.81    5.80    5.12
+   265.0    0.00   -0.12   -0.50   -1.04   -1.59   -2.01   -2.23   -2.28   -2.29   -2.37   -2.55   -2.67   -2.42   -1.53    0.12    2.27    4.27    5.33    4.79
+   270.0    0.00   -0.12   -0.50   -1.05   -1.61   -2.04   -2.27   -2.35   -2.39   -2.52   -2.73   -2.88   -2.68   -1.86   -0.31    1.73    3.71    4.86    4.54
+   275.0    0.00   -0.12   -0.51   -1.07   -1.64   -2.08   -2.34   -2.44   -2.53   -2.70   -2.96   -3.15   -3.00   -2.24   -0.78    1.17    3.12    4.37    4.31
+   280.0    0.00   -0.12   -0.53   -1.11   -1.69   -2.14   -2.42   -2.56   -2.70   -2.92   -3.23   -3.46   -3.35   -2.66   -1.28    0.59    2.50    3.85    4.05
+   285.0    0.00   -0.13   -0.55   -1.14   -1.75   -2.22   -2.51   -2.70   -2.89   -3.18   -3.55   -3.83   -3.76   -3.11   -1.80   -0.01    1.87    3.29    3.73
+   290.0    0.00   -0.14   -0.57   -1.19   -1.81   -2.30   -2.62   -2.84   -3.09   -3.45   -3.89   -4.23   -4.21   -3.60   -2.34   -0.62    1.22    2.68    3.31
+   295.0    0.00   -0.14   -0.60   -1.24   -1.88   -2.39   -2.73   -3.00   -3.31   -3.75   -4.27   -4.67   -4.69   -4.11   -2.89   -1.22    0.57    2.05    2.80
+   300.0    0.00   -0.15   -0.63   -1.29   -1.96   -2.48   -2.85   -3.15   -3.53   -4.05   -4.66   -5.13   -5.19   -4.63   -3.44   -1.81   -0.06    1.41    2.23
+   305.0    0.00   -0.16   -0.66   -1.35   -2.03   -2.58   -2.97   -3.31   -3.75   -4.36   -5.05   -5.60   -5.70   -5.16   -3.98   -2.36   -0.65    0.79    1.63
+   310.0    0.00   -0.17   -0.69   -1.40   -2.11   -2.68   -3.09   -3.47   -3.97   -4.66   -5.43   -6.05   -6.20   -5.67   -4.49   -2.87   -1.18    0.24    1.08
+   315.0    0.00   -0.17   -0.71   -1.45   -2.18   -2.77   -3.20   -3.62   -4.17   -4.93   -5.79   -6.47   -6.66   -6.15   -4.94   -3.31   -1.62   -0.22    0.61
+   320.0    0.00   -0.18   -0.74   -1.50   -2.25   -2.85   -3.30   -3.75   -4.35   -5.17   -6.10   -6.84   -7.07   -6.55   -5.33   -3.66   -1.95   -0.54    0.30
+   325.0    0.00   -0.19   -0.76   -1.53   -2.30   -2.92   -3.39   -3.86   -4.49   -5.36   -6.35   -7.14   -7.39   -6.87   -5.62   -3.90   -2.14   -0.71    0.17
+   330.0    0.00   -0.19   -0.77   -1.56   -2.34   -2.97   -3.46   -3.94   -4.60   -5.50   -6.52   -7.34   -7.60   -7.08   -5.79   -4.02   -2.19   -0.70    0.26
+   335.0    0.00   -0.20   -0.79   -1.58   -2.37   -3.00   -3.50   -3.99   -4.66   -5.57   -6.60   -7.43   -7.69   -7.15   -5.82   -3.99   -2.09   -0.50    0.56
+   340.0    0.00   -0.20   -0.79   -1.59   -2.38   -3.01   -3.51   -4.00   -4.66   -5.56   -6.58   -7.40   -7.65   -7.08   -5.71   -3.81   -1.83   -0.14    1.08
+   345.0    0.00   -0.20   -0.79   -1.59   -2.37   -3.00   -3.48   -3.96   -4.61   -5.48   -6.46   -7.25   -7.46   -6.86   -5.44   -3.48   -1.41    0.38    1.76
+   350.0    0.00   -0.20   -0.79   -1.58   -2.34   -2.96   -3.43   -3.89   -4.50   -5.33   -6.26   -6.98   -7.15   -6.50   -5.02   -3.00   -0.86    1.04    2.58
+   355.0    0.00   -0.20   -0.78   -1.55   -2.30   -2.89   -3.34   -3.77   -4.34   -5.11   -5.97   -6.62   -6.72   -6.00   -4.47   -2.39   -0.18    1.80    3.49
+   360.0    0.00   -0.20   -0.77   -1.51   -2.23   -2.80   -3.22   -3.62   -4.14   -4.84   -5.62   -6.18   -6.19   -5.41   -3.81   -1.67    0.59    2.64    4.45
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH700228B      NONE                                        TYPE / SERIAL NO    
+COPIED              Geo++ GmbH               6    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+COPIED FROM ASH700228A      NONE                            COMMENT             
+ATTENTION! COPIED WITHOUT VERIFICATION BY CALIBRATION!      COMMENT             
+   G01                                                      START OF FREQUENCY  
+     -2.68     -1.35     58.54                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.23   -0.85   -1.68   -2.53   -3.29   -3.95   -4.56   -5.15   -5.64   -5.85   -5.56   -4.65   -3.17   -1.31    0.68    2.76    5.12    8.18
+     0.0    0.00    0.08   -0.19   -0.68   -1.23   -1.76   -2.28   -2.86   -3.56   -4.26   -4.76   -4.77   -4.15   -2.91   -1.27    0.55    2.54    4.99    8.45
+     5.0    0.00    0.08   -0.20   -0.68   -1.22   -1.75   -2.26   -2.86   -3.55   -4.26   -4.75   -4.76   -4.12   -2.87   -1.20    0.69    2.77    5.35    8.95
+    10.0    0.00    0.07   -0.21   -0.69   -1.23   -1.76   -2.28   -2.88   -3.58   -4.28   -4.75   -4.75   -4.09   -2.82   -1.12    0.82    2.98    5.65    9.36
+    15.0    0.00    0.06   -0.22   -0.71   -1.26   -1.79   -2.33   -2.93   -3.62   -4.31   -4.76   -4.73   -4.05   -2.75   -1.02    0.96    3.18    5.92    9.68
+    20.0    0.00    0.04   -0.25   -0.75   -1.31   -1.85   -2.39   -3.00   -3.68   -4.34   -4.76   -4.68   -3.97   -2.65   -0.88    1.13    3.39    6.16    9.92
+    25.0    0.00    0.03   -0.28   -0.80   -1.38   -1.93   -2.48   -3.08   -3.75   -4.37   -4.74   -4.62   -3.86   -2.50   -0.70    1.34    3.63    6.41   10.12
+    30.0    0.00    0.01   -0.33   -0.87   -1.46   -2.03   -2.59   -3.18   -3.82   -4.39   -4.70   -4.52   -3.71   -2.30   -0.47    1.60    3.90    6.67   10.30
+    35.0    0.00   -0.01   -0.37   -0.94   -1.56   -2.15   -2.72   -3.30   -3.90   -4.42   -4.66   -4.41   -3.53   -2.08   -0.21    1.90    4.21    6.95   10.46
+    40.0    0.00   -0.04   -0.43   -1.03   -1.68   -2.29   -2.86   -3.43   -3.98   -4.44   -4.61   -4.29   -3.35   -1.84    0.07    2.21    4.54    7.23   10.62
+    45.0    0.00   -0.07   -0.49   -1.13   -1.81   -2.45   -3.03   -3.57   -4.09   -4.48   -4.58   -4.18   -3.18   -1.61    0.34    2.52    4.85    7.51   10.75
+    50.0    0.00   -0.09   -0.56   -1.23   -1.96   -2.62   -3.21   -3.74   -4.21   -4.54   -4.57   -4.10   -3.04   -1.43    0.57    2.78    5.13    7.74   10.86
+    55.0    0.00   -0.12   -0.63   -1.35   -2.11   -2.81   -3.41   -3.93   -4.36   -4.64   -4.60   -4.07   -2.96   -1.30    0.73    2.97    5.33    7.91   10.91
+    60.0    0.00   -0.16   -0.70   -1.47   -2.28   -3.01   -3.63   -4.14   -4.55   -4.78   -4.69   -4.11   -2.96   -1.27    0.80    3.06    5.44    7.99   10.89
+    65.0    0.00   -0.19   -0.78   -1.60   -2.46   -3.23   -3.86   -4.38   -4.77   -4.98   -4.85   -4.24   -3.05   -1.34    0.75    3.03    5.41    7.95   10.78
+    70.0    0.00   -0.22   -0.85   -1.72   -2.63   -3.45   -4.12   -4.65   -5.04   -5.23   -5.08   -4.45   -3.25   -1.53    0.56    2.85    5.24    7.77   10.57
+    75.0    0.00   -0.25   -0.93   -1.85   -2.81   -3.68   -4.38   -4.94   -5.34   -5.53   -5.38   -4.75   -3.55   -1.84    0.25    2.54    4.94    7.47   10.25
+    80.0    0.00   -0.28   -1.00   -1.97   -2.99   -3.90   -4.66   -5.25   -5.67   -5.88   -5.75   -5.13   -3.95   -2.25   -0.17    2.11    4.50    7.05    9.85
+    85.0    0.00   -0.32   -1.07   -2.09   -3.16   -4.13   -4.93   -5.56   -6.03   -6.27   -6.17   -5.58   -4.42   -2.75   -0.70    1.57    3.96    6.54    9.38
+    90.0    0.00   -0.34   -1.14   -2.20   -3.32   -4.34   -5.19   -5.87   -6.39   -6.68   -6.62   -6.07   -4.95   -3.31   -1.29    0.96    3.35    5.96    8.87
+    95.0    0.00   -0.37   -1.20   -2.31   -3.47   -4.53   -5.43   -6.17   -6.74   -7.09   -7.08   -6.57   -5.50   -3.90   -1.91    0.31    2.71    5.35    8.33
+   100.0    0.00   -0.40   -1.26   -2.40   -3.59   -4.70   -5.65   -6.44   -7.07   -7.47   -7.52   -7.07   -6.04   -4.48   -2.53   -0.33    2.06    4.74    7.80
+   105.0    0.00   -0.42   -1.31   -2.47   -3.70   -4.84   -5.82   -6.66   -7.35   -7.81   -7.92   -7.52   -6.54   -5.02   -3.10   -0.93    1.46    4.17    7.29
+   110.0    0.00   -0.44   -1.35   -2.53   -3.78   -4.94   -5.96   -6.84   -7.57   -8.09   -8.25   -7.90   -6.96   -5.47   -3.59   -1.46    0.92    3.65    6.81
+   115.0    0.00   -0.46   -1.38   -2.57   -3.83   -5.00   -6.04   -6.95   -7.73   -8.29   -8.50   -8.18   -7.27   -5.82   -3.98   -1.87    0.48    3.20    6.38
+   120.0    0.00   -0.48   -1.41   -2.60   -3.85   -5.02   -6.07   -6.99   -7.80   -8.40   -8.63   -8.35   -7.46   -6.04   -4.22   -2.16    0.15    2.83    5.99
+   125.0    0.00   -0.49   -1.42   -2.61   -3.85   -5.00   -6.04   -6.96   -7.78   -8.40   -8.65   -8.38   -7.51   -6.10   -4.32   -2.31   -0.06    2.56    5.65
+   130.0    0.00   -0.50   -1.43   -2.60   -3.82   -4.94   -5.95   -6.86   -7.67   -8.29   -8.55   -8.29   -7.42   -6.02   -4.27   -2.31   -0.15    2.38    5.38
+   135.0    0.00   -0.51   -1.43   -2.58   -3.76   -4.84   -5.81   -6.69   -7.48   -8.09   -8.34   -8.06   -7.18   -5.78   -4.06   -2.17   -0.10    2.30    5.18
+   140.0    0.00   -0.51   -1.42   -2.54   -3.68   -4.71   -5.62   -6.46   -7.21   -7.79   -8.02   -7.72   -6.82   -5.41   -3.71   -1.89    0.06    2.33    5.08
+   145.0    0.00   -0.51   -1.41   -2.49   -3.57   -4.55   -5.40   -6.17   -6.88   -7.42   -7.61   -7.28   -6.35   -4.93   -3.25   -1.49    0.35    2.48    5.09
+   150.0    0.00   -0.51   -1.39   -2.43   -3.46   -4.36   -5.14   -5.85   -6.50   -6.99   -7.14   -6.77   -5.80   -4.36   -2.69   -0.98    0.75    2.75    5.26
+   155.0    0.00   -0.51   -1.36   -2.37   -3.34   -4.17   -4.87   -5.51   -6.09   -6.53   -6.64   -6.22   -5.21   -3.74   -2.07   -0.40    1.26    3.15    5.60
+   160.0    0.00   -0.50   -1.33   -2.30   -3.21   -3.96   -4.59   -5.15   -5.68   -6.06   -6.12   -5.66   -4.61   -3.11   -1.42    0.24    1.84    3.68    6.11
+   165.0    0.00   -0.50   -1.30   -2.23   -3.08   -3.77   -4.32   -4.81   -5.27   -5.61   -5.63   -5.13   -4.05   -2.50   -0.77    0.90    2.49    4.32    6.81
+   170.0    0.00   -0.49   -1.27   -2.16   -2.95   -3.58   -4.06   -4.48   -4.89   -5.19   -5.18   -4.65   -3.53   -1.94   -0.16    1.55    3.18    5.05    7.66
+   175.0    0.00   -0.48   -1.24   -2.09   -2.84   -3.41   -3.83   -4.19   -4.55   -4.82   -4.79   -4.25   -3.10   -1.46    0.38    2.17    3.87    5.84    8.62
+   180.0    0.00   -0.47   -1.21   -2.03   -2.74   -3.26   -3.63   -3.95   -4.27   -4.52   -4.48   -3.93   -2.77   -1.09    0.83    2.72    4.54    6.64    9.64
+   185.0    0.00   -0.46   -1.18   -1.98   -2.66   -3.14   -3.47   -3.76   -4.05   -4.29   -4.26   -3.72   -2.54   -0.82    1.18    3.18    5.14    7.40   10.62
+   190.0    0.00   -0.44   -1.15   -1.93   -2.59   -3.06   -3.36   -3.62   -3.90   -4.14   -4.12   -3.60   -2.42   -0.66    1.42    3.54    5.63    8.06   11.50
+   195.0    0.00   -0.43   -1.13   -1.90   -2.55   -3.00   -3.29   -3.54   -3.82   -4.06   -4.07   -3.56   -2.39   -0.61    1.55    3.77    6.01    8.58   12.20
+   200.0    0.00   -0.42   -1.11   -1.87   -2.52   -2.98   -3.27   -3.52   -3.80   -4.06   -4.08   -3.61   -2.45   -0.64    1.57    3.89    6.24    8.92   12.65
+   205.0    0.00   -0.40   -1.08   -1.85   -2.51   -2.98   -3.29   -3.55   -3.84   -4.12   -4.16   -3.71   -2.57   -0.75    1.51    3.90    6.31    9.05   12.82
+   210.0    0.00   -0.39   -1.07   -1.84   -2.52   -3.01   -3.34   -3.62   -3.93   -4.22   -4.29   -3.86   -2.73   -0.91    1.37    3.80    6.24    8.97   12.70
+   215.0    0.00   -0.38   -1.05   -1.84   -2.55   -3.07   -3.43   -3.74   -4.07   -4.37   -4.45   -4.04   -2.92   -1.11    1.18    3.62    6.04    8.71   12.31
+   220.0    0.00   -0.36   -1.04   -1.84   -2.58   -3.14   -3.54   -3.88   -4.23   -4.55   -4.64   -4.23   -3.13   -1.32    0.95    3.37    5.74    8.29   11.69
+   225.0    0.00   -0.35   -1.02   -1.85   -2.62   -3.23   -3.68   -4.05   -4.42   -4.75   -4.84   -4.43   -3.34   -1.55    0.70    3.07    5.36    7.76   10.93
+   230.0    0.00   -0.33   -1.01   -1.85   -2.66   -3.32   -3.82   -4.23   -4.62   -4.96   -5.05   -4.64   -3.55   -1.78    0.44    2.75    4.94    7.18   10.09
+   235.0    0.00   -0.31   -0.99   -1.86   -2.71   -3.42   -3.96   -4.42   -4.84   -5.18   -5.26   -4.85   -3.77   -2.01    0.16    2.41    4.52    6.60    9.28
+   240.0    0.00   -0.30   -0.98   -1.87   -2.75   -3.51   -4.10   -4.60   -5.05   -5.40   -5.49   -5.08   -3.99   -2.26   -0.12    2.07    4.10    6.07    8.55
+   245.0    0.00   -0.28   -0.96   -1.87   -2.79   -3.59   -4.24   -4.78   -5.26   -5.63   -5.72   -5.31   -4.24   -2.53   -0.42    1.73    3.71    5.61    7.97
+   250.0    0.00   -0.26   -0.94   -1.86   -2.82   -3.66   -4.36   -4.95   -5.46   -5.86   -5.97   -5.57   -4.50   -2.82   -0.74    1.39    3.34    5.23    7.55
+   255.0    0.00   -0.25   -0.92   -1.86   -2.84   -3.72   -4.46   -5.10   -5.66   -6.08   -6.22   -5.84   -4.80   -3.14   -1.09    1.03    3.01    4.93    7.29
+   260.0    0.00   -0.23   -0.90   -1.84   -2.84   -3.76   -4.54   -5.23   -5.83   -6.30   -6.47   -6.12   -5.12   -3.49   -1.46    0.66    2.68    4.70    7.16
+   265.0    0.00   -0.21   -0.87   -1.82   -2.83   -3.78   -4.60   -5.33   -5.98   -6.50   -6.72   -6.42   -5.46   -3.86   -1.86    0.28    2.36    4.50    7.11
+   270.0    0.00   -0.19   -0.84   -1.78   -2.81   -3.77   -4.63   -5.40   -6.11   -6.69   -6.96   -6.71   -5.80   -4.25   -2.27   -0.13    2.01    4.29    7.09
+   275.0    0.00   -0.17   -0.81   -1.74   -2.77   -3.75   -4.63   -5.44   -6.20   -6.83   -7.17   -6.98   -6.12   -4.62   -2.68   -0.54    1.65    4.05    7.03
+   280.0    0.00   -0.15   -0.77   -1.69   -2.72   -3.70   -4.60   -5.44   -6.25   -6.94   -7.33   -7.21   -6.41   -4.97   -3.07   -0.95    1.27    3.75    6.89
+   285.0    0.00   -0.12   -0.73   -1.64   -2.65   -3.63   -4.54   -5.41   -6.25   -6.99   -7.44   -7.38   -6.64   -5.26   -3.41   -1.34    0.87    3.41    6.65
+   290.0    0.00   -0.10   -0.69   -1.57   -2.57   -3.54   -4.45   -5.33   -6.20   -6.99   -7.49   -7.47   -6.79   -5.47   -3.69   -1.68    0.49    3.01    6.30
+   295.0    0.00   -0.08   -0.64   -1.50   -2.48   -3.43   -4.33   -5.21   -6.11   -6.92   -7.46   -7.49   -6.85   -5.59   -3.88   -1.95    0.13    2.60    5.86
+   300.0    0.00   -0.06   -0.59   -1.43   -2.37   -3.30   -4.18   -5.06   -5.96   -6.79   -7.35   -7.41   -6.82   -5.60   -3.96   -2.13   -0.16    2.20    5.39
+   305.0    0.00   -0.04   -0.55   -1.35   -2.26   -3.15   -4.00   -4.87   -5.76   -6.60   -7.17   -7.25   -6.68   -5.51   -3.94   -2.21   -0.36    1.86    4.93
+   310.0    0.00   -0.02   -0.50   -1.27   -2.14   -2.99   -3.81   -4.65   -5.53   -6.36   -6.93   -7.02   -6.46   -5.32   -3.81   -2.17   -0.45    1.62    4.55
+   315.0    0.00    0.00   -0.45   -1.19   -2.02   -2.83   -3.61   -4.41   -5.26   -6.08   -6.64   -6.72   -6.17   -5.05   -3.59   -2.03   -0.42    1.52    4.31
+   320.0    0.00    0.02   -0.41   -1.11   -1.90   -2.66   -3.40   -4.16   -4.99   -5.78   -6.33   -6.40   -5.84   -4.73   -3.29   -1.79   -0.27    1.56    4.24
+   325.0    0.00    0.03   -0.36   -1.03   -1.78   -2.50   -3.19   -3.92   -4.70   -5.47   -6.00   -6.06   -5.50   -4.38   -2.95   -1.48   -0.01    1.75    4.37
+   330.0    0.00    0.05   -0.32   -0.95   -1.66   -2.34   -2.99   -3.68   -4.43   -5.18   -5.69   -5.74   -5.16   -4.03   -2.60   -1.13    0.33    2.08    4.69
+   335.0    0.00    0.06   -0.29   -0.88   -1.55   -2.19   -2.80   -3.46   -4.19   -4.91   -5.41   -5.45   -4.86   -3.72   -2.26   -0.76    0.73    2.52    5.18
+   340.0    0.00    0.07   -0.26   -0.82   -1.46   -2.06   -2.64   -3.27   -3.98   -4.69   -5.18   -5.20   -4.61   -3.44   -1.96   -0.41    1.15    3.03    5.80
+   345.0    0.00    0.08   -0.23   -0.77   -1.38   -1.95   -2.50   -3.11   -3.80   -4.51   -5.00   -5.02   -4.41   -3.23   -1.71   -0.10    1.56    3.56    6.48
+   350.0    0.00    0.08   -0.21   -0.73   -1.31   -1.86   -2.40   -2.99   -3.68   -4.38   -4.87   -4.89   -4.28   -3.08   -1.51    0.17    1.93    4.09    7.19
+   355.0    0.00    0.08   -0.20   -0.70   -1.26   -1.80   -2.32   -2.91   -3.60   -4.30   -4.79   -4.81   -4.20   -2.98   -1.37    0.38    2.26    4.57    7.85
+   360.0    0.00    0.08   -0.19   -0.68   -1.23   -1.76   -2.28   -2.86   -3.56   -4.26   -4.76   -4.77   -4.15   -2.91   -1.27    0.55    2.54    4.99    8.45
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -3.58      2.02     64.80                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.18   -0.67   -1.32   -1.96   -2.47   -2.86   -3.18   -3.55   -4.02   -4.51   -4.78   -4.56   -3.61   -1.88    0.40    2.78    4.66    5.56
+     0.0    0.00   -0.20   -0.77   -1.51   -2.23   -2.80   -3.22   -3.62   -4.14   -4.84   -5.62   -6.18   -6.19   -5.41   -3.81   -1.67    0.59    2.64    4.45
+     5.0    0.00   -0.20   -0.75   -1.47   -2.15   -2.69   -3.08   -3.44   -3.90   -4.54   -5.22   -5.69   -5.61   -4.73   -3.07   -0.87    1.43    3.51    5.40
+    10.0    0.00   -0.19   -0.72   -1.41   -2.06   -2.57   -2.92   -3.24   -3.65   -4.21   -4.80   -5.17   -4.99   -4.02   -2.28   -0.03    2.31    4.40    6.33
+    15.0    0.00   -0.19   -0.70   -1.35   -1.97   -2.43   -2.75   -3.04   -3.40   -3.89   -4.39   -4.66   -4.37   -3.31   -1.49    0.82    3.18    5.27    7.20
+    20.0    0.00   -0.18   -0.67   -1.29   -1.87   -2.30   -2.59   -2.84   -3.16   -3.58   -4.00   -4.17   -3.78   -2.63   -0.73    1.64    4.03    6.09    7.99
+    25.0    0.00   -0.18   -0.64   -1.23   -1.77   -2.17   -2.43   -2.65   -2.93   -3.30   -3.65   -3.73   -3.26   -2.02   -0.04    2.39    4.80    6.85    8.69
+    30.0    0.00   -0.17   -0.61   -1.17   -1.67   -2.04   -2.29   -2.49   -2.74   -3.06   -3.35   -3.36   -2.81   -1.50    0.55    3.03    5.48    7.52    9.30
+    35.0    0.00   -0.17   -0.59   -1.11   -1.59   -1.94   -2.16   -2.35   -2.58   -2.87   -3.11   -3.06   -2.45   -1.08    1.02    3.55    6.04    8.08    9.78
+    40.0    0.00   -0.16   -0.56   -1.06   -1.51   -1.84   -2.07   -2.24   -2.46   -2.72   -2.92   -2.83   -2.19   -0.79    1.35    3.93    6.47    8.52   10.15
+    45.0    0.00   -0.16   -0.54   -1.02   -1.45   -1.77   -1.99   -2.17   -2.38   -2.62   -2.79   -2.68   -2.02   -0.61    1.54    4.16    6.75    8.83   10.37
+    50.0    0.00   -0.15   -0.53   -0.98   -1.41   -1.72   -1.94   -2.12   -2.32   -2.55   -2.71   -2.59   -1.94   -0.55    1.60    4.24    6.88    8.99   10.44
+    55.0    0.00   -0.15   -0.51   -0.96   -1.37   -1.69   -1.92   -2.10   -2.30   -2.51   -2.66   -2.55   -1.93   -0.58    1.54    4.19    6.87    9.01   10.36
+    60.0    0.00   -0.15   -0.50   -0.94   -1.36   -1.68   -1.92   -2.11   -2.30   -2.51   -2.66   -2.57   -1.99   -0.70    1.37    4.01    6.72    8.88   10.12
+    65.0    0.00   -0.15   -0.50   -0.94   -1.36   -1.69   -1.94   -2.13   -2.32   -2.53   -2.68   -2.62   -2.10   -0.88    1.12    3.73    6.45    8.63    9.74
+    70.0    0.00   -0.15   -0.50   -0.94   -1.37   -1.72   -1.97   -2.17   -2.37   -2.57   -2.74   -2.71   -2.25   -1.12    0.80    3.36    6.09    8.26    9.23
+    75.0    0.00   -0.15   -0.51   -0.96   -1.39   -1.75   -2.02   -2.23   -2.43   -2.64   -2.82   -2.83   -2.44   -1.40    0.43    2.93    5.64    7.80    8.63
+    80.0    0.00   -0.16   -0.52   -0.98   -1.43   -1.81   -2.09   -2.31   -2.52   -2.74   -2.94   -2.99   -2.66   -1.71    0.02    2.45    5.12    7.27    7.96
+    85.0    0.00   -0.16   -0.53   -1.01   -1.47   -1.87   -2.17   -2.41   -2.63   -2.87   -3.10   -3.19   -2.92   -2.05   -0.41    1.93    4.57    6.69    7.28
+    90.0    0.00   -0.17   -0.55   -1.04   -1.53   -1.94   -2.26   -2.52   -2.78   -3.05   -3.30   -3.43   -3.22   -2.42   -0.87    1.40    3.98    6.09    6.60
+    95.0    0.00   -0.17   -0.57   -1.08   -1.59   -2.02   -2.37   -2.66   -2.95   -3.26   -3.55   -3.72   -3.55   -2.81   -1.34    0.85    3.39    5.48    5.96
+   100.0    0.00   -0.18   -0.60   -1.13   -1.66   -2.11   -2.49   -2.82   -3.15   -3.51   -3.85   -4.05   -3.92   -3.23   -1.82    0.29    2.78    4.88    5.39
+   105.0    0.00   -0.19   -0.62   -1.18   -1.73   -2.21   -2.62   -3.00   -3.39   -3.81   -4.20   -4.43   -4.32   -3.67   -2.32   -0.26    2.19    4.31    4.88
+   110.0    0.00   -0.20   -0.65   -1.23   -1.81   -2.31   -2.76   -3.19   -3.64   -4.13   -4.58   -4.84   -4.76   -4.13   -2.81   -0.81    1.61    3.76    4.42
+   115.0    0.00   -0.20   -0.68   -1.28   -1.88   -2.42   -2.90   -3.39   -3.92   -4.48   -4.98   -5.29   -5.22   -4.60   -3.31   -1.35    1.06    3.25    4.02
+   120.0    0.00   -0.21   -0.71   -1.34   -1.96   -2.53   -3.05   -3.59   -4.19   -4.83   -5.40   -5.74   -5.69   -5.07   -3.79   -1.85    0.55    2.77    3.65
+   125.0    0.00   -0.22   -0.74   -1.39   -2.04   -2.64   -3.20   -3.79   -4.46   -5.18   -5.81   -6.20   -6.15   -5.53   -4.25   -2.30    0.09    2.35    3.29
+   130.0    0.00   -0.23   -0.76   -1.44   -2.12   -2.74   -3.34   -3.98   -4.72   -5.50   -6.20   -6.63   -6.60   -5.96   -4.66   -2.69   -0.29    1.99    2.95
+   135.0    0.00   -0.24   -0.79   -1.49   -2.20   -2.85   -3.47   -4.15   -4.94   -5.79   -6.55   -7.02   -7.00   -6.35   -5.00   -3.00   -0.57    1.70    2.64
+   140.0    0.00   -0.24   -0.81   -1.54   -2.27   -2.94   -3.59   -4.30   -5.14   -6.04   -6.85   -7.36   -7.34   -6.66   -5.26   -3.20   -0.74    1.51    2.36
+   145.0    0.00   -0.25   -0.83   -1.58   -2.34   -3.02   -3.69   -4.42   -5.28   -6.23   -7.08   -7.62   -7.61   -6.89   -5.42   -3.27   -0.77    1.44    2.16
+   150.0    0.00   -0.25   -0.85   -1.62   -2.39   -3.10   -3.77   -4.51   -5.39   -6.35   -7.24   -7.81   -7.79   -7.03   -5.46   -3.21   -0.65    1.51    2.09
+   155.0    0.00   -0.25   -0.86   -1.65   -2.44   -3.16   -3.84   -4.57   -5.44   -6.41   -7.32   -7.90   -7.88   -7.05   -5.38   -3.01   -0.38    1.75    2.18
+   160.0    0.00   -0.25   -0.87   -1.68   -2.49   -3.21   -3.89   -4.61   -5.46   -6.42   -7.32   -7.90   -7.86   -6.96   -5.17   -2.67    0.04    2.16    2.48
+   165.0    0.00   -0.25   -0.88   -1.69   -2.52   -3.25   -3.91   -4.61   -5.43   -6.36   -7.25   -7.81   -7.73   -6.76   -4.84   -2.20    0.61    2.74    3.01
+   170.0    0.00   -0.25   -0.88   -1.70   -2.54   -3.27   -3.92   -4.58   -5.36   -6.25   -7.10   -7.64   -7.51   -6.45   -4.40   -1.61    1.31    3.47    3.77
+   175.0    0.00   -0.25   -0.88   -1.70   -2.54   -3.28   -3.91   -4.53   -5.25   -6.09   -6.89   -7.38   -7.19   -6.04   -3.86   -0.93    2.10    4.33    4.75
+   180.0    0.00   -0.24   -0.87   -1.70   -2.54   -3.27   -3.88   -4.46   -5.12   -5.88   -6.63   -7.06   -6.80   -5.55   -3.25   -0.19    2.95    5.28    5.88
+   185.0    0.00   -0.24   -0.85   -1.68   -2.52   -3.24   -3.82   -4.36   -4.95   -5.64   -6.31   -6.67   -6.34   -5.00   -2.59    0.58    3.82    6.25    7.09
+   190.0    0.00   -0.23   -0.83   -1.65   -2.48   -3.20   -3.75   -4.23   -4.76   -5.37   -5.96   -6.25   -5.83   -4.41   -1.91    1.35    4.66    7.19    8.30
+   195.0    0.00   -0.22   -0.81   -1.62   -2.44   -3.13   -3.66   -4.09   -4.54   -5.07   -5.58   -5.79   -5.30   -3.80   -1.23    2.08    5.43    8.04    9.40
+   200.0    0.00   -0.21   -0.79   -1.57   -2.38   -3.05   -3.55   -3.93   -4.31   -4.75   -5.18   -5.31   -4.76   -3.20   -0.59    2.75    6.11    8.74   10.30
+   205.0    0.00   -0.20   -0.76   -1.52   -2.31   -2.96   -3.42   -3.74   -4.05   -4.42   -4.77   -4.83   -4.23   -2.63    0.00    3.33    6.66    9.27   10.93
+   210.0    0.00   -0.19   -0.73   -1.47   -2.23   -2.85   -3.27   -3.55   -3.79   -4.08   -4.36   -4.37   -3.73   -2.11    0.52    3.81    7.06    9.58   11.25
+   215.0    0.00   -0.18   -0.69   -1.41   -2.15   -2.74   -3.12   -3.34   -3.52   -3.75   -3.97   -3.93   -3.27   -1.66    0.95    4.17    7.31    9.69   11.22
+   220.0    0.00   -0.17   -0.66   -1.35   -2.06   -2.62   -2.96   -3.13   -3.25   -3.42   -3.60   -3.54   -2.87   -1.28    1.28    4.42    7.42    9.59   10.89
+   225.0    0.00   -0.16   -0.63   -1.29   -1.97   -2.50   -2.80   -2.93   -3.00   -3.12   -3.26   -3.19   -2.53   -0.99    1.50    4.54    7.39    9.33   10.29
+   230.0    0.00   -0.15   -0.60   -1.23   -1.88   -2.38   -2.65   -2.74   -2.77   -2.85   -2.97   -2.90   -2.27   -0.78    1.62    4.55    7.23    8.92    9.50
+   235.0    0.00   -0.14   -0.57   -1.18   -1.80   -2.27   -2.52   -2.57   -2.57   -2.62   -2.73   -2.67   -2.09   -0.67    1.64    4.45    6.98    8.43    8.62
+   240.0    0.00   -0.13   -0.55   -1.13   -1.73   -2.18   -2.40   -2.43   -2.41   -2.44   -2.54   -2.50   -1.98   -0.64    1.57    4.26    6.64    7.89    7.71
+   245.0    0.00   -0.13   -0.53   -1.10   -1.67   -2.11   -2.31   -2.33   -2.29   -2.32   -2.42   -2.41   -1.94   -0.69    1.41    3.98    6.24    7.34    6.87
+   250.0    0.00   -0.12   -0.51   -1.07   -1.63   -2.05   -2.25   -2.26   -2.22   -2.25   -2.36   -2.38   -1.97   -0.81    1.17    3.63    5.80    6.79    6.14
+   255.0    0.00   -0.12   -0.50   -1.05   -1.60   -2.02   -2.21   -2.23   -2.19   -2.23   -2.36   -2.41   -2.06   -0.99    0.88    3.22    5.32    6.28    5.56
+   260.0    0.00   -0.12   -0.50   -1.04   -1.59   -2.00   -2.21   -2.24   -2.22   -2.28   -2.43   -2.51   -2.21   -1.23    0.52    2.77    4.81    5.80    5.12
+   265.0    0.00   -0.12   -0.50   -1.04   -1.59   -2.01   -2.23   -2.28   -2.29   -2.37   -2.55   -2.67   -2.42   -1.53    0.12    2.27    4.27    5.33    4.79
+   270.0    0.00   -0.12   -0.50   -1.05   -1.61   -2.04   -2.27   -2.35   -2.39   -2.52   -2.73   -2.88   -2.68   -1.86   -0.31    1.73    3.71    4.86    4.54
+   275.0    0.00   -0.12   -0.51   -1.07   -1.64   -2.08   -2.34   -2.44   -2.53   -2.70   -2.96   -3.15   -3.00   -2.24   -0.78    1.17    3.12    4.37    4.31
+   280.0    0.00   -0.12   -0.53   -1.11   -1.69   -2.14   -2.42   -2.56   -2.70   -2.92   -3.23   -3.46   -3.35   -2.66   -1.28    0.59    2.50    3.85    4.05
+   285.0    0.00   -0.13   -0.55   -1.14   -1.75   -2.22   -2.51   -2.70   -2.89   -3.18   -3.55   -3.83   -3.76   -3.11   -1.80   -0.01    1.87    3.29    3.73
+   290.0    0.00   -0.14   -0.57   -1.19   -1.81   -2.30   -2.62   -2.84   -3.09   -3.45   -3.89   -4.23   -4.21   -3.60   -2.34   -0.62    1.22    2.68    3.31
+   295.0    0.00   -0.14   -0.60   -1.24   -1.88   -2.39   -2.73   -3.00   -3.31   -3.75   -4.27   -4.67   -4.69   -4.11   -2.89   -1.22    0.57    2.05    2.80
+   300.0    0.00   -0.15   -0.63   -1.29   -1.96   -2.48   -2.85   -3.15   -3.53   -4.05   -4.66   -5.13   -5.19   -4.63   -3.44   -1.81   -0.06    1.41    2.23
+   305.0    0.00   -0.16   -0.66   -1.35   -2.03   -2.58   -2.97   -3.31   -3.75   -4.36   -5.05   -5.60   -5.70   -5.16   -3.98   -2.36   -0.65    0.79    1.63
+   310.0    0.00   -0.17   -0.69   -1.40   -2.11   -2.68   -3.09   -3.47   -3.97   -4.66   -5.43   -6.05   -6.20   -5.67   -4.49   -2.87   -1.18    0.24    1.08
+   315.0    0.00   -0.17   -0.71   -1.45   -2.18   -2.77   -3.20   -3.62   -4.17   -4.93   -5.79   -6.47   -6.66   -6.15   -4.94   -3.31   -1.62   -0.22    0.61
+   320.0    0.00   -0.18   -0.74   -1.50   -2.25   -2.85   -3.30   -3.75   -4.35   -5.17   -6.10   -6.84   -7.07   -6.55   -5.33   -3.66   -1.95   -0.54    0.30
+   325.0    0.00   -0.19   -0.76   -1.53   -2.30   -2.92   -3.39   -3.86   -4.49   -5.36   -6.35   -7.14   -7.39   -6.87   -5.62   -3.90   -2.14   -0.71    0.17
+   330.0    0.00   -0.19   -0.77   -1.56   -2.34   -2.97   -3.46   -3.94   -4.60   -5.50   -6.52   -7.34   -7.60   -7.08   -5.79   -4.02   -2.19   -0.70    0.26
+   335.0    0.00   -0.20   -0.79   -1.58   -2.37   -3.00   -3.50   -3.99   -4.66   -5.57   -6.60   -7.43   -7.69   -7.15   -5.82   -3.99   -2.09   -0.50    0.56
+   340.0    0.00   -0.20   -0.79   -1.59   -2.38   -3.01   -3.51   -4.00   -4.66   -5.56   -6.58   -7.40   -7.65   -7.08   -5.71   -3.81   -1.83   -0.14    1.08
+   345.0    0.00   -0.20   -0.79   -1.59   -2.37   -3.00   -3.48   -3.96   -4.61   -5.48   -6.46   -7.25   -7.46   -6.86   -5.44   -3.48   -1.41    0.38    1.76
+   350.0    0.00   -0.20   -0.79   -1.58   -2.34   -2.96   -3.43   -3.89   -4.50   -5.33   -6.26   -6.98   -7.15   -6.50   -5.02   -3.00   -0.86    1.04    2.58
+   355.0    0.00   -0.20   -0.78   -1.55   -2.30   -2.89   -3.34   -3.77   -4.34   -5.11   -5.97   -6.62   -6.72   -6.00   -4.47   -2.39   -0.18    1.80    3.49
+   360.0    0.00   -0.20   -0.77   -1.51   -2.23   -2.80   -3.22   -3.62   -4.14   -4.84   -5.62   -6.18   -6.19   -5.41   -3.81   -1.67    0.59    2.64    4.45
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH700228C      NONE                                        TYPE / SERIAL NO    
+FIELD               NGS                      2    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+     -1.72     -0.97     68.65                              NORTH / EAST / UP   
+   NOAZI    0.00    1.37    1.80    1.47    0.68   -0.32   -1.46   -2.49   -3.27   -3.71   -3.76   -3.39   -2.73   -1.85   -0.78    0.59    2.17
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -2.08      4.41     70.95                              NORTH / EAST / UP   
+   NOAZI    0.00   -1.23   -2.11   -2.68   -3.29   -3.78   -4.39   -5.07   -5.81   -6.41   -6.85   -6.96   -6.63   -5.93   -4.53   -2.41    0.75
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH700228D      NONE                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               4    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+Number of Calibrated Antennas GPS:      004                 COMMENT             
+Number of Individual Calibrations GPS:  021                 COMMENT             
+   G01                                                      START OF FREQUENCY  
+     -2.06     -1.28     61.22                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.23   -0.86   -1.71   -2.61   -3.41   -4.07   -4.64   -5.13   -5.52   -5.68   -5.44   -4.69   -3.40   -1.68    0.32    2.55    5.10    8.13
+     0.0    0.00    0.06   -0.29   -0.89   -1.57   -2.20   -2.74   -3.19   -3.58   -3.85   -3.90   -3.59   -2.82   -1.60   -0.01    1.85    3.94    6.36    9.22
+     5.0    0.00    0.06   -0.27   -0.84   -1.50   -2.13   -2.67   -3.15   -3.57   -3.89   -3.98   -3.70   -2.96   -1.76   -0.17    1.70    3.81    6.25    9.08
+    10.0    0.00    0.06   -0.25   -0.81   -1.45   -2.07   -2.64   -3.15   -3.62   -3.98   -4.12   -3.88   -3.18   -2.00   -0.42    1.44    3.56    5.99    8.80
+    15.0    0.00    0.06   -0.24   -0.78   -1.42   -2.04   -2.62   -3.18   -3.69   -4.11   -4.29   -4.09   -3.42   -2.26   -0.71    1.14    3.25    5.68    8.48
+    20.0    0.00    0.06   -0.24   -0.77   -1.40   -2.03   -2.63   -3.22   -3.79   -4.25   -4.46   -4.29   -3.64   -2.51   -0.97    0.86    2.96    5.38    8.20
+    25.0    0.00    0.05   -0.24   -0.77   -1.40   -2.03   -2.66   -3.28   -3.88   -4.37   -4.61   -4.46   -3.81   -2.69   -1.17    0.65    2.74    5.17    8.03
+    30.0    0.00    0.04   -0.26   -0.78   -1.41   -2.06   -2.70   -3.35   -3.96   -4.47   -4.71   -4.56   -3.91   -2.79   -1.27    0.55    2.66    5.12    8.03
+    35.0    0.00    0.03   -0.28   -0.81   -1.45   -2.10   -2.76   -3.41   -4.03   -4.53   -4.76   -4.59   -3.92   -2.78   -1.25    0.60    2.73    5.24    8.22
+    40.0    0.00    0.01   -0.31   -0.86   -1.50   -2.17   -2.83   -3.48   -4.08   -4.56   -4.76   -4.55   -3.85   -2.68   -1.10    0.79    2.98    5.56    8.59
+    45.0    0.00   -0.01   -0.35   -0.92   -1.58   -2.26   -2.91   -3.55   -4.13   -4.56   -4.72   -4.46   -3.71   -2.49   -0.86    1.11    3.39    6.04    9.11
+    50.0    0.00   -0.03   -0.40   -0.99   -1.68   -2.36   -3.02   -3.64   -4.18   -4.56   -4.66   -4.35   -3.54   -2.25   -0.54    1.52    3.90    6.63    9.72
+    55.0    0.00   -0.05   -0.45   -1.08   -1.79   -2.50   -3.15   -3.75   -4.25   -4.58   -4.62   -4.24   -3.38   -2.01   -0.21    1.96    4.45    7.27   10.37
+    60.0    0.00   -0.08   -0.51   -1.18   -1.93   -2.66   -3.32   -3.89   -4.35   -4.63   -4.62   -4.18   -3.25   -1.81    0.09    2.37    4.98    7.88   10.98
+    65.0    0.00   -0.11   -0.58   -1.29   -2.08   -2.84   -3.51   -4.07   -4.51   -4.75   -4.68   -4.20   -3.21   -1.69    0.30    2.70    5.41    8.38   11.48
+    70.0    0.00   -0.14   -0.65   -1.41   -2.25   -3.04   -3.73   -4.30   -4.72   -4.94   -4.84   -4.32   -3.28   -1.69    0.38    2.87    5.68    8.72   11.83
+    75.0    0.00   -0.17   -0.73   -1.54   -2.43   -3.27   -3.99   -4.57   -5.00   -5.21   -5.10   -4.55   -3.48   -1.85    0.29    2.84    5.72    8.83   11.99
+    80.0    0.00   -0.20   -0.81   -1.67   -2.61   -3.50   -4.27   -4.88   -5.33   -5.56   -5.46   -4.91   -3.82   -2.17    0.00    2.59    5.52    8.69   11.95
+    85.0    0.00   -0.23   -0.89   -1.80   -2.80   -3.75   -4.56   -5.22   -5.71   -5.97   -5.91   -5.38   -4.29   -2.64   -0.47    2.12    5.06    8.29   11.71
+    90.0    0.00   -0.27   -0.97   -1.94   -2.99   -3.99   -4.85   -5.56   -6.11   -6.44   -6.42   -5.93   -4.88   -3.25   -1.11    1.45    4.37    7.67   11.28
+    95.0    0.00   -0.30   -1.04   -2.06   -3.17   -4.22   -5.13   -5.91   -6.52   -6.92   -6.97   -6.54   -5.53   -3.95   -1.87    0.62    3.50    6.85   10.70
+   100.0    0.00   -0.33   -1.11   -2.18   -3.33   -4.42   -5.39   -6.23   -6.91   -7.39   -7.52   -7.16   -6.22   -4.70   -2.71   -0.31    2.50    5.89   10.00
+   105.0    0.00   -0.36   -1.18   -2.29   -3.48   -4.61   -5.62   -6.50   -7.26   -7.81   -8.03   -7.75   -6.88   -5.44   -3.55   -1.27    1.46    4.86    9.20
+   110.0    0.00   -0.39   -1.24   -2.38   -3.60   -4.75   -5.79   -6.72   -7.53   -8.17   -8.46   -8.26   -7.47   -6.12   -4.33   -2.18    0.44    3.83    8.36
+   115.0    0.00   -0.41   -1.29   -2.46   -3.70   -4.86   -5.91   -6.86   -7.72   -8.42   -8.78   -8.66   -7.94   -6.67   -4.98   -2.96   -0.47    2.87    7.52
+   120.0    0.00   -0.43   -1.34   -2.52   -3.76   -4.93   -5.97   -6.93   -7.81   -8.55   -8.97   -8.90   -8.25   -7.05   -5.46   -3.56   -1.21    2.02    6.70
+   125.0    0.00   -0.45   -1.38   -2.57   -3.80   -4.95   -5.97   -6.91   -7.79   -8.55   -9.01   -8.98   -8.37   -7.23   -5.71   -3.93   -1.72    1.36    5.94
+   130.0    0.00   -0.47   -1.40   -2.59   -3.81   -4.92   -5.91   -6.81   -7.67   -8.42   -8.89   -8.88   -8.30   -7.18   -5.72   -4.04   -1.99    0.90    5.30
+   135.0    0.00   -0.48   -1.42   -2.60   -3.80   -4.86   -5.79   -6.63   -7.45   -8.17   -8.62   -8.61   -8.03   -6.92   -5.50   -3.89   -1.99    0.68    4.81
+   140.0    0.00   -0.50   -1.43   -2.60   -3.75   -4.77   -5.62   -6.39   -7.13   -7.80   -8.22   -8.18   -7.58   -6.47   -5.05   -3.49   -1.73    0.71    4.50
+   145.0    0.00   -0.50   -1.44   -2.58   -3.69   -4.64   -5.41   -6.10   -6.75   -7.34   -7.70   -7.62   -6.98   -5.84   -4.42   -2.90   -1.24    0.97    4.41
+   150.0    0.00   -0.51   -1.43   -2.54   -3.61   -4.49   -5.18   -5.76   -6.32   -6.82   -7.10   -6.97   -6.28   -5.11   -3.65   -2.14   -0.56    1.45    4.55
+   155.0    0.00   -0.51   -1.42   -2.50   -3.51   -4.32   -4.92   -5.40   -5.86   -6.26   -6.46   -6.26   -5.53   -4.31   -2.82   -1.28    0.25    2.11    4.92
+   160.0    0.00   -0.51   -1.40   -2.45   -3.41   -4.14   -4.65   -5.04   -5.38   -5.69   -5.82   -5.56   -4.78   -3.51   -1.97   -0.39    1.15    2.92    5.52
+   165.0    0.00   -0.51   -1.38   -2.39   -3.30   -3.96   -4.39   -4.68   -4.92   -5.14   -5.20   -4.89   -4.07   -2.76   -1.16    0.48    2.06    3.82    6.29
+   170.0    0.00   -0.50   -1.35   -2.33   -3.18   -3.79   -4.13   -4.33   -4.50   -4.64   -4.64   -4.29   -3.45   -2.11   -0.45    1.28    2.95    4.76    7.19
+   175.0    0.00   -0.50   -1.32   -2.26   -3.07   -3.62   -3.90   -4.02   -4.12   -4.20   -4.16   -3.80   -2.96   -1.59    0.13    1.97    3.77    5.67    8.15
+   180.0    0.00   -0.49   -1.29   -2.20   -2.96   -3.46   -3.69   -3.76   -3.80   -3.84   -3.79   -3.44   -2.60   -1.22    0.57    2.52    4.47    6.52    9.09
+   185.0    0.00   -0.48   -1.26   -2.13   -2.87   -3.33   -3.51   -3.54   -3.55   -3.58   -3.53   -3.20   -2.38   -0.99    0.86    2.93    5.04    7.25    9.93
+   190.0    0.00   -0.47   -1.23   -2.07   -2.78   -3.22   -3.38   -3.38   -3.38   -3.41   -3.38   -3.09   -2.29   -0.90    1.01    3.20    5.47    7.83   10.61
+   195.0    0.00   -0.45   -1.20   -2.02   -2.71   -3.13   -3.28   -3.28   -3.28   -3.33   -3.34   -3.09   -2.32   -0.92    1.05    3.35    5.76    8.24   11.08
+   200.0    0.00   -0.44   -1.17   -1.98   -2.66   -3.08   -3.23   -3.25   -3.26   -3.34   -3.39   -3.17   -2.43   -1.02    1.00    3.41    5.92    8.48   11.33
+   205.0    0.00   -0.43   -1.14   -1.94   -2.62   -3.05   -3.23   -3.27   -3.32   -3.43   -3.51   -3.32   -2.60   -1.17    0.91    3.39    5.98    8.56   11.35
+   210.0    0.00   -0.41   -1.11   -1.91   -2.60   -3.06   -3.27   -3.35   -3.43   -3.58   -3.68   -3.51   -2.78   -1.33    0.79    3.33    5.96    8.52   11.19
+   215.0    0.00   -0.40   -1.09   -1.89   -2.60   -3.09   -3.35   -3.47   -3.60   -3.77   -3.88   -3.71   -2.96   -1.48    0.68    3.25    5.88    8.38   10.90
+   220.0    0.00   -0.39   -1.07   -1.88   -2.62   -3.15   -3.46   -3.64   -3.80   -3.99   -4.10   -3.90   -3.12   -1.60    0.58    3.15    5.76    8.19   10.53
+   225.0    0.00   -0.37   -1.05   -1.87   -2.64   -3.23   -3.60   -3.84   -4.04   -4.23   -4.32   -4.07   -3.25   -1.70    0.49    3.06    5.63    7.97   10.16
+   230.0    0.00   -0.36   -1.03   -1.87   -2.68   -3.32   -3.76   -4.06   -4.29   -4.48   -4.53   -4.23   -3.36   -1.78    0.41    2.95    5.48    7.76    9.83
+   235.0    0.00   -0.34   -1.02   -1.88   -2.73   -3.43   -3.93   -4.28   -4.54   -4.73   -4.74   -4.38   -3.46   -1.87    0.31    2.81    5.31    7.56    9.59
+   240.0    0.00   -0.33   -1.01   -1.89   -2.78   -3.54   -4.11   -4.51   -4.80   -4.97   -4.94   -4.54   -3.58   -1.98    0.17    2.63    5.10    7.37    9.42
+   245.0    0.00   -0.31   -0.99   -1.89   -2.83   -3.65   -4.28   -4.74   -5.05   -5.22   -5.16   -4.72   -3.74   -2.15   -0.04    2.38    4.85    7.18    9.33
+   250.0    0.00   -0.30   -0.98   -1.90   -2.88   -3.75   -4.44   -4.95   -5.30   -5.48   -5.40   -4.94   -3.96   -2.40   -0.34    2.04    4.53    6.96    9.26
+   255.0    0.00   -0.28   -0.97   -1.91   -2.92   -3.84   -4.59   -5.15   -5.54   -5.74   -5.67   -5.22   -4.26   -2.75   -0.75    1.59    4.11    6.66    9.17
+   260.0    0.00   -0.27   -0.95   -1.91   -2.95   -3.91   -4.71   -5.32   -5.76   -6.01   -5.98   -5.56   -4.65   -3.20   -1.27    1.04    3.59    6.27    8.98
+   265.0    0.00   -0.25   -0.94   -1.91   -2.97   -3.97   -4.81   -5.48   -5.98   -6.28   -6.32   -5.96   -5.12   -3.75   -1.88    0.39    2.96    5.76    8.66
+   270.0    0.00   -0.24   -0.92   -1.90   -2.98   -4.01   -4.89   -5.61   -6.18   -6.56   -6.68   -6.41   -5.64   -4.35   -2.55   -0.33    2.24    5.11    8.17
+   275.0    0.00   -0.22   -0.90   -1.89   -2.98   -4.03   -4.95   -5.72   -6.36   -6.83   -7.04   -6.87   -6.19   -4.98   -3.25   -1.09    1.46    4.35    7.51
+   280.0    0.00   -0.20   -0.88   -1.87   -2.97   -4.03   -4.97   -5.80   -6.51   -7.08   -7.39   -7.31   -6.72   -5.58   -3.93   -1.84    0.65    3.52    6.71
+   285.0    0.00   -0.18   -0.85   -1.84   -2.94   -4.01   -4.97   -5.84   -6.62   -7.28   -7.69   -7.70   -7.18   -6.11   -4.52   -2.52   -0.13    2.66    5.82
+   290.0    0.00   -0.17   -0.82   -1.80   -2.90   -3.97   -4.94   -5.84   -6.69   -7.42   -7.91   -7.99   -7.54   -6.51   -4.99   -3.08   -0.82    1.84    4.94
+   295.0    0.00   -0.15   -0.79   -1.76   -2.85   -3.90   -4.88   -5.81   -6.69   -7.48   -8.03   -8.16   -7.74   -6.74   -5.28   -3.48   -1.36    1.15    4.14
+   300.0    0.00   -0.13   -0.76   -1.71   -2.78   -3.82   -4.79   -5.72   -6.63   -7.45   -8.03   -8.17   -7.76   -6.78   -5.37   -3.67   -1.70    0.64    3.53
+   305.0    0.00   -0.11   -0.72   -1.66   -2.70   -3.72   -4.67   -5.59   -6.49   -7.31   -7.89   -8.02   -7.59   -6.62   -5.24   -3.63   -1.81    0.39    3.18
+   310.0    0.00   -0.09   -0.68   -1.59   -2.61   -3.60   -4.52   -5.41   -6.29   -7.08   -7.62   -7.71   -7.24   -6.25   -4.90   -3.37   -1.66    0.41    3.14
+   315.0    0.00   -0.07   -0.64   -1.53   -2.52   -3.47   -4.35   -5.19   -6.02   -6.75   -7.23   -7.26   -6.74   -5.72   -4.38   -2.90   -1.27    0.72    3.41
+   320.0    0.00   -0.05   -0.60   -1.46   -2.41   -3.32   -4.15   -4.94   -5.69   -6.35   -6.75   -6.70   -6.12   -5.07   -3.72   -2.26   -0.67    1.29    3.98
+   325.0    0.00   -0.04   -0.56   -1.38   -2.30   -3.17   -3.94   -4.66   -5.34   -5.90   -6.21   -6.09   -5.44   -4.34   -2.98   -1.51    0.08    2.05    4.78
+   330.0    0.00   -0.02   -0.51   -1.30   -2.19   -3.01   -3.73   -4.37   -4.96   -5.44   -5.66   -5.45   -4.75   -3.61   -2.22   -0.71    0.92    2.94    5.71
+   335.0    0.00    0.00   -0.47   -1.23   -2.07   -2.85   -3.51   -4.09   -4.60   -5.00   -5.13   -4.86   -4.11   -2.93   -1.50    0.06    1.77    3.87    6.69
+   340.0    0.00    0.01   -0.43   -1.15   -1.96   -2.69   -3.31   -3.83   -4.28   -4.60   -4.67   -4.35   -3.57   -2.36   -0.88    0.75    2.54    4.73    7.60
+   345.0    0.00    0.03   -0.39   -1.08   -1.85   -2.55   -3.12   -3.60   -4.00   -4.27   -4.31   -3.96   -3.15   -1.93   -0.41    1.29    3.19    5.46    8.35
+   350.0    0.00    0.04   -0.35   -1.01   -1.74   -2.41   -2.96   -3.42   -3.79   -4.04   -4.05   -3.70   -2.89   -1.66   -0.10    1.66    3.64    5.99    8.89
+   355.0    0.00    0.05   -0.32   -0.95   -1.65   -2.30   -2.84   -3.28   -3.65   -3.90   -3.92   -3.58   -2.79   -1.55    0.03    1.84    3.89    6.29    9.17
+   360.0    0.00    0.06   -0.29   -0.89   -1.57   -2.20   -2.74   -3.19   -3.58   -3.85   -3.90   -3.59   -2.82   -1.60   -0.01    1.85    3.94    6.36    9.22
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -3.43      2.05     67.09                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.13   -0.49   -1.00   -1.55   -2.08   -2.54   -2.96   -3.37   -3.81   -4.22   -4.46   -4.29   -3.51   -2.01    0.09    2.42    4.42    5.53
+     0.0    0.00   -0.01   -0.32   -0.87   -1.54   -2.23   -2.87   -3.47   -4.10   -4.81   -5.56   -6.18   -6.35   -5.76   -4.26   -1.97    0.65    2.91    4.09
+     5.0    0.00    0.00   -0.31   -0.84   -1.49   -2.14   -2.73   -3.27   -3.83   -4.46   -5.13   -5.66   -5.76   -5.11   -3.56   -1.27    1.30    3.47    4.63
+    10.0    0.00    0.00   -0.29   -0.80   -1.42   -2.03   -2.57   -3.05   -3.53   -4.08   -4.66   -5.09   -5.10   -4.37   -2.79   -0.51    1.97    4.04    5.18
+    15.0    0.00    0.01   -0.27   -0.76   -1.35   -1.92   -2.40   -2.81   -3.22   -3.69   -4.17   -4.51   -4.41   -3.60   -1.98    0.27    2.66    4.61    5.75
+    20.0    0.00    0.01   -0.25   -0.72   -1.28   -1.80   -2.23   -2.58   -2.92   -3.30   -3.70   -3.94   -3.74   -2.85   -1.18    1.04    3.34    5.18    6.33
+    25.0    0.00    0.01   -0.24   -0.68   -1.20   -1.68   -2.06   -2.35   -2.63   -2.95   -3.27   -3.42   -3.13   -2.15   -0.45    1.76    3.98    5.74    6.94
+    30.0    0.00    0.02   -0.22   -0.65   -1.13   -1.58   -1.91   -2.15   -2.37   -2.63   -2.89   -2.96   -2.60   -1.56    0.19    2.39    4.57    6.29    7.55
+    35.0    0.00    0.02   -0.21   -0.61   -1.07   -1.48   -1.77   -1.97   -2.16   -2.37   -2.57   -2.60   -2.17   -1.08    0.70    2.91    5.08    6.81    8.15
+    40.0    0.00    0.02   -0.20   -0.58   -1.02   -1.40   -1.66   -1.83   -1.98   -2.17   -2.34   -2.33   -1.87   -0.75    1.05    3.30    5.51    7.28    8.71
+    45.0    0.00    0.02   -0.19   -0.56   -0.97   -1.33   -1.58   -1.73   -1.86   -2.03   -2.18   -2.16   -1.70   -0.57    1.26    3.54    5.83    7.70    9.21
+    50.0    0.00    0.02   -0.19   -0.54   -0.94   -1.28   -1.52   -1.67   -1.79   -1.95   -2.11   -2.09   -1.64   -0.53    1.31    3.65    6.05    8.04    9.61
+    55.0    0.00    0.01   -0.19   -0.53   -0.92   -1.26   -1.49   -1.64   -1.77   -1.93   -2.10   -2.11   -1.70   -0.62    1.22    3.63    6.15    8.29    9.89
+    60.0    0.00    0.01   -0.19   -0.53   -0.91   -1.25   -1.49   -1.65   -1.79   -1.97   -2.16   -2.20   -1.85   -0.82    1.01    3.47    6.13    8.43   10.04
+    65.0    0.00    0.00   -0.19   -0.53   -0.91   -1.26   -1.51   -1.69   -1.85   -2.05   -2.27   -2.36   -2.07   -1.10    0.70    3.21    6.00    8.44   10.04
+    70.0    0.00    0.00   -0.20   -0.54   -0.92   -1.28   -1.55   -1.75   -1.94   -2.16   -2.41   -2.55   -2.33   -1.45    0.30    2.84    5.74    8.32    9.90
+    75.0    0.00   -0.01   -0.22   -0.55   -0.94   -1.31   -1.61   -1.84   -2.05   -2.31   -2.59   -2.78   -2.63   -1.83   -0.15    2.39    5.37    8.06    9.62
+    80.0    0.00   -0.02   -0.23   -0.57   -0.97   -1.35   -1.67   -1.93   -2.18   -2.47   -2.78   -3.02   -2.94   -2.23   -0.64    1.86    4.89    7.68    9.22
+    85.0    0.00   -0.03   -0.25   -0.60   -1.00   -1.40   -1.74   -2.04   -2.33   -2.64   -2.98   -3.26   -3.25   -2.63   -1.14    1.29    4.32    7.16    8.72
+    90.0    0.00   -0.05   -0.27   -0.63   -1.04   -1.45   -1.82   -2.15   -2.48   -2.82   -3.19   -3.50   -3.55   -3.02   -1.65    0.68    3.67    6.55    8.15
+    95.0    0.00   -0.06   -0.30   -0.66   -1.08   -1.50   -1.90   -2.27   -2.63   -3.01   -3.41   -3.74   -3.83   -3.39   -2.14    0.06    2.97    5.86    7.52
+   100.0    0.00   -0.07   -0.33   -0.70   -1.13   -1.56   -1.99   -2.39   -2.79   -3.20   -3.62   -3.97   -4.09   -3.73   -2.59   -0.54    2.25    5.11    6.85
+   105.0    0.00   -0.09   -0.36   -0.74   -1.18   -1.63   -2.07   -2.51   -2.95   -3.40   -3.83   -4.19   -4.33   -4.03   -3.01   -1.11    1.54    4.35    6.17
+   110.0    0.00   -0.11   -0.39   -0.79   -1.24   -1.70   -2.17   -2.64   -3.12   -3.60   -4.05   -4.41   -4.56   -4.29   -3.37   -1.62    0.89    3.62    5.49
+   115.0    0.00   -0.12   -0.43   -0.84   -1.30   -1.78   -2.27   -2.77   -3.29   -3.81   -4.28   -4.63   -4.77   -4.52   -3.67   -2.04    0.32    2.94    4.84
+   120.0    0.00   -0.14   -0.46   -0.90   -1.37   -1.87   -2.38   -2.92   -3.48   -4.02   -4.51   -4.86   -4.98   -4.72   -3.90   -2.37   -0.15    2.37    4.23
+   125.0    0.00   -0.16   -0.50   -0.95   -1.45   -1.96   -2.50   -3.07   -3.66   -4.25   -4.75   -5.09   -5.18   -4.89   -4.07   -2.59   -0.47    1.91    3.69
+   130.0    0.00   -0.17   -0.54   -1.01   -1.53   -2.07   -2.63   -3.23   -3.86   -4.47   -4.99   -5.32   -5.38   -5.04   -4.19   -2.71   -0.66    1.61    3.24
+   135.0    0.00   -0.19   -0.58   -1.08   -1.62   -2.18   -2.76   -3.40   -4.06   -4.70   -5.24   -5.57   -5.58   -5.18   -4.26   -2.73   -0.70    1.47    2.92
+   140.0    0.00   -0.20   -0.61   -1.14   -1.71   -2.29   -2.91   -3.57   -4.26   -4.93   -5.48   -5.81   -5.79   -5.32   -4.29   -2.68   -0.60    1.50    2.74
+   145.0    0.00   -0.22   -0.65   -1.20   -1.80   -2.41   -3.05   -3.74   -4.45   -5.15   -5.72   -6.05   -6.00   -5.45   -4.30   -2.56   -0.39    1.68    2.74
+   150.0    0.00   -0.23   -0.68   -1.26   -1.89   -2.53   -3.19   -3.90   -4.63   -5.34   -5.94   -6.27   -6.20   -5.58   -4.31   -2.39   -0.09    2.01    2.91
+   155.0    0.00   -0.25   -0.72   -1.32   -1.97   -2.64   -3.33   -4.04   -4.79   -5.52   -6.13   -6.48   -6.40   -5.71   -4.31   -2.21    0.27    2.46    3.25
+   160.0    0.00   -0.26   -0.74   -1.37   -2.05   -2.74   -3.44   -4.17   -4.92   -5.65   -6.28   -6.65   -6.57   -5.83   -4.31   -2.02    0.67    3.00    3.77
+   165.0    0.00   -0.27   -0.77   -1.41   -2.11   -2.82   -3.54   -4.26   -5.01   -5.74   -6.37   -6.77   -6.70   -5.93   -4.30   -1.83    1.08    3.59    4.42
+   170.0    0.00   -0.28   -0.79   -1.45   -2.16   -2.89   -3.61   -4.32   -5.05   -5.77   -6.41   -6.82   -6.77   -5.99   -4.27   -1.64    1.49    4.21    5.17
+   175.0    0.00   -0.28   -0.80   -1.47   -2.20   -2.93   -3.64   -4.34   -5.05   -5.75   -6.39   -6.81   -6.77   -5.98   -4.20   -1.44    1.88    4.82    5.97
+   180.0    0.00   -0.29   -0.81   -1.48   -2.21   -2.94   -3.64   -4.32   -4.99   -5.67   -6.29   -6.71   -6.69   -5.90   -4.08   -1.21    2.27    5.41    6.77
+   185.0    0.00   -0.29   -0.82   -1.49   -2.21   -2.93   -3.61   -4.25   -4.89   -5.52   -6.12   -6.53   -6.51   -5.71   -3.87   -0.94    2.66    5.95    7.52
+   190.0    0.00   -0.29   -0.82   -1.48   -2.20   -2.90   -3.54   -4.15   -4.73   -5.32   -5.88   -6.26   -6.22   -5.42   -3.56   -0.60    3.05    6.44    8.18
+   195.0    0.00   -0.29   -0.81   -1.47   -2.16   -2.84   -3.45   -4.01   -4.54   -5.07   -5.57   -5.91   -5.84   -5.01   -3.14   -0.18    3.46    6.87    8.71
+   200.0    0.00   -0.29   -0.80   -1.44   -2.12   -2.76   -3.33   -3.84   -4.31   -4.78   -5.21   -5.49   -5.36   -4.50   -2.62    0.31    3.90    7.25    9.09
+   205.0    0.00   -0.29   -0.79   -1.41   -2.06   -2.67   -3.19   -3.65   -4.06   -4.46   -4.82   -5.02   -4.81   -3.89   -2.00    0.89    4.37    7.58    9.34
+   210.0    0.00   -0.28   -0.77   -1.37   -1.99   -2.56   -3.04   -3.44   -3.79   -4.12   -4.40   -4.51   -4.22   -3.23   -1.31    1.52    4.86    7.87    9.45
+   215.0    0.00   -0.27   -0.75   -1.33   -1.92   -2.45   -2.89   -3.24   -3.52   -3.78   -3.98   -4.00   -3.61   -2.54   -0.59    2.18    5.35    8.11    9.46
+   220.0    0.00   -0.27   -0.72   -1.29   -1.85   -2.35   -2.74   -3.03   -3.26   -3.45   -3.57   -3.50   -3.01   -1.86    0.11    2.82    5.82    8.32    9.39
+   225.0    0.00   -0.26   -0.70   -1.24   -1.78   -2.24   -2.59   -2.84   -3.02   -3.14   -3.19   -3.03   -2.46   -1.24    0.77    3.42    6.25    8.47    9.26
+   230.0    0.00   -0.25   -0.68   -1.20   -1.71   -2.15   -2.46   -2.67   -2.79   -2.87   -2.85   -2.63   -1.98   -0.70    1.32    3.92    6.59    8.57    9.10
+   235.0    0.00   -0.24   -0.65   -1.15   -1.65   -2.06   -2.35   -2.51   -2.60   -2.63   -2.57   -2.29   -1.60   -0.27    1.75    4.29    6.81    8.59    8.92
+   240.0    0.00   -0.23   -0.63   -1.11   -1.59   -1.99   -2.25   -2.39   -2.44   -2.44   -2.35   -2.04   -1.32    0.02    2.03    4.50    6.90    8.51    8.72
+   245.0    0.00   -0.22   -0.60   -1.08   -1.55   -1.92   -2.17   -2.28   -2.31   -2.29   -2.19   -1.88   -1.16    0.16    2.14    4.53    6.82    8.32    8.49
+   250.0    0.00   -0.20   -0.58   -1.04   -1.50   -1.87   -2.10   -2.21   -2.23   -2.20   -2.10   -1.81   -1.11    0.17    2.09    4.40    6.59    8.01    8.21
+   255.0    0.00   -0.19   -0.56   -1.02   -1.47   -1.83   -2.06   -2.16   -2.18   -2.16   -2.09   -1.82   -1.17    0.06    1.89    4.11    6.19    7.56    7.86
+   260.0    0.00   -0.18   -0.54   -0.99   -1.44   -1.81   -2.03   -2.13   -2.17   -2.17   -2.13   -1.92   -1.32   -0.16    1.58    3.68    5.65    6.98    7.41
+   265.0    0.00   -0.17   -0.52   -0.97   -1.42   -1.79   -2.02   -2.14   -2.19   -2.24   -2.24   -2.08   -1.55   -0.47    1.17    3.14    5.00    6.28    6.86
+   270.0    0.00   -0.16   -0.50   -0.95   -1.41   -1.79   -2.03   -2.17   -2.26   -2.35   -2.41   -2.31   -1.84   -0.84    0.70    2.54    4.26    5.48    6.19
+   275.0    0.00   -0.15   -0.49   -0.94   -1.41   -1.79   -2.06   -2.22   -2.36   -2.51   -2.64   -2.60   -2.19   -1.25    0.19    1.89    3.47    4.61    5.42
+   280.0    0.00   -0.14   -0.47   -0.93   -1.41   -1.81   -2.10   -2.31   -2.50   -2.72   -2.91   -2.93   -2.57   -1.69   -0.33    1.24    2.67    3.71    4.57
+   285.0    0.00   -0.13   -0.46   -0.92   -1.41   -1.84   -2.16   -2.41   -2.67   -2.96   -3.23   -3.31   -2.99   -2.15   -0.87    0.60    1.89    2.83    3.69
+   290.0    0.00   -0.12   -0.45   -0.92   -1.43   -1.87   -2.23   -2.54   -2.87   -3.25   -3.59   -3.72   -3.44   -2.63   -1.40   -0.02    1.15    1.99    2.82
+   295.0    0.00   -0.11   -0.44   -0.92   -1.45   -1.92   -2.32   -2.69   -3.10   -3.56   -3.98   -4.16   -3.92   -3.13   -1.93   -0.61    0.49    1.25    2.03
+   300.0    0.00   -0.10   -0.43   -0.93   -1.47   -1.98   -2.43   -2.86   -3.35   -3.89   -4.38   -4.63   -4.42   -3.65   -2.46   -1.16   -0.10    0.62    1.35
+   305.0    0.00   -0.09   -0.43   -0.93   -1.50   -2.04   -2.54   -3.04   -3.60   -4.23   -4.80   -5.11   -4.93   -4.19   -2.99   -1.68   -0.59    0.15    0.83
+   310.0    0.00   -0.08   -0.42   -0.94   -1.53   -2.11   -2.65   -3.22   -3.85   -4.56   -5.21   -5.58   -5.46   -4.73   -3.52   -2.15   -0.98   -0.17    0.49
+   315.0    0.00   -0.08   -0.41   -0.95   -1.56   -2.18   -2.77   -3.39   -4.09   -4.87   -5.59   -6.04   -5.97   -5.27   -4.04   -2.59   -1.28   -0.33    0.35
+   320.0    0.00   -0.07   -0.41   -0.95   -1.59   -2.24   -2.88   -3.55   -4.31   -5.14   -5.93   -6.45   -6.44   -5.78   -4.52   -2.96   -1.47   -0.34    0.39
+   325.0    0.00   -0.06   -0.40   -0.96   -1.62   -2.30   -2.98   -3.69   -4.48   -5.37   -6.21   -6.80   -6.86   -6.23   -4.95   -3.26   -1.56   -0.21    0.60
+   330.0    0.00   -0.05   -0.39   -0.96   -1.64   -2.35   -3.05   -3.79   -4.61   -5.52   -6.42   -7.06   -7.19   -6.61   -5.29   -3.47   -1.55    0.04    0.95
+   335.0    0.00   -0.05   -0.39   -0.96   -1.65   -2.38   -3.10   -3.85   -4.68   -5.61   -6.53   -7.22   -7.41   -6.86   -5.52   -3.57   -1.43    0.39    1.40
+   340.0    0.00   -0.04   -0.38   -0.95   -1.66   -2.39   -3.12   -3.87   -4.69   -5.61   -6.53   -7.26   -7.49   -6.97   -5.60   -3.54   -1.20    0.82    1.91
+   345.0    0.00   -0.03   -0.36   -0.94   -1.65   -2.39   -3.11   -3.84   -4.63   -5.52   -6.44   -7.17   -7.43   -6.92   -5.52   -3.36   -0.88    1.30    2.45
+   350.0    0.00   -0.02   -0.35   -0.92   -1.62   -2.36   -3.06   -3.76   -4.51   -5.36   -6.24   -6.95   -7.21   -6.69   -5.26   -3.03   -0.45    1.81    3.00
+   355.0    0.00   -0.02   -0.34   -0.90   -1.59   -2.30   -2.98   -3.64   -4.33   -5.11   -5.94   -6.62   -6.84   -6.30   -4.84   -2.56    0.06    2.35    3.55
+   360.0    0.00   -0.01   -0.32   -0.87   -1.54   -2.23   -2.87   -3.47   -4.10   -4.81   -5.56   -6.18   -6.35   -5.76   -4.26   -1.97    0.65    2.91    4.09
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH700228E      NONE                                        TYPE / SERIAL NO    
+COPIED              Geo++ GmbH               4    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+COPIED FROM ASH700228D      NONE                            COMMENT             
+ATTENTION! COPIED WITHOUT VERIFICATION BY CALIBRATION!      COMMENT             
+   G01                                                      START OF FREQUENCY  
+     -2.06     -1.28     61.22                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.23   -0.86   -1.71   -2.61   -3.41   -4.07   -4.64   -5.13   -5.52   -5.68   -5.44   -4.69   -3.40   -1.68    0.32    2.55    5.10    8.13
+     0.0    0.00    0.06   -0.29   -0.89   -1.57   -2.20   -2.74   -3.19   -3.58   -3.85   -3.90   -3.59   -2.82   -1.60   -0.01    1.85    3.94    6.36    9.22
+     5.0    0.00    0.06   -0.27   -0.84   -1.50   -2.13   -2.67   -3.15   -3.57   -3.89   -3.98   -3.70   -2.96   -1.76   -0.17    1.70    3.81    6.25    9.08
+    10.0    0.00    0.06   -0.25   -0.81   -1.45   -2.07   -2.64   -3.15   -3.62   -3.98   -4.12   -3.88   -3.18   -2.00   -0.42    1.44    3.56    5.99    8.80
+    15.0    0.00    0.06   -0.24   -0.78   -1.42   -2.04   -2.62   -3.18   -3.69   -4.11   -4.29   -4.09   -3.42   -2.26   -0.71    1.14    3.25    5.68    8.48
+    20.0    0.00    0.06   -0.24   -0.77   -1.40   -2.03   -2.63   -3.22   -3.79   -4.25   -4.46   -4.29   -3.64   -2.51   -0.97    0.86    2.96    5.38    8.20
+    25.0    0.00    0.05   -0.24   -0.77   -1.40   -2.03   -2.66   -3.28   -3.88   -4.37   -4.61   -4.46   -3.81   -2.69   -1.17    0.65    2.74    5.17    8.03
+    30.0    0.00    0.04   -0.26   -0.78   -1.41   -2.06   -2.70   -3.35   -3.96   -4.47   -4.71   -4.56   -3.91   -2.79   -1.27    0.55    2.66    5.12    8.03
+    35.0    0.00    0.03   -0.28   -0.81   -1.45   -2.10   -2.76   -3.41   -4.03   -4.53   -4.76   -4.59   -3.92   -2.78   -1.25    0.60    2.73    5.24    8.22
+    40.0    0.00    0.01   -0.31   -0.86   -1.50   -2.17   -2.83   -3.48   -4.08   -4.56   -4.76   -4.55   -3.85   -2.68   -1.10    0.79    2.98    5.56    8.59
+    45.0    0.00   -0.01   -0.35   -0.92   -1.58   -2.26   -2.91   -3.55   -4.13   -4.56   -4.72   -4.46   -3.71   -2.49   -0.86    1.11    3.39    6.04    9.11
+    50.0    0.00   -0.03   -0.40   -0.99   -1.68   -2.36   -3.02   -3.64   -4.18   -4.56   -4.66   -4.35   -3.54   -2.25   -0.54    1.52    3.90    6.63    9.72
+    55.0    0.00   -0.05   -0.45   -1.08   -1.79   -2.50   -3.15   -3.75   -4.25   -4.58   -4.62   -4.24   -3.38   -2.01   -0.21    1.96    4.45    7.27   10.37
+    60.0    0.00   -0.08   -0.51   -1.18   -1.93   -2.66   -3.32   -3.89   -4.35   -4.63   -4.62   -4.18   -3.25   -1.81    0.09    2.37    4.98    7.88   10.98
+    65.0    0.00   -0.11   -0.58   -1.29   -2.08   -2.84   -3.51   -4.07   -4.51   -4.75   -4.68   -4.20   -3.21   -1.69    0.30    2.70    5.41    8.38   11.48
+    70.0    0.00   -0.14   -0.65   -1.41   -2.25   -3.04   -3.73   -4.30   -4.72   -4.94   -4.84   -4.32   -3.28   -1.69    0.38    2.87    5.68    8.72   11.83
+    75.0    0.00   -0.17   -0.73   -1.54   -2.43   -3.27   -3.99   -4.57   -5.00   -5.21   -5.10   -4.55   -3.48   -1.85    0.29    2.84    5.72    8.83   11.99
+    80.0    0.00   -0.20   -0.81   -1.67   -2.61   -3.50   -4.27   -4.88   -5.33   -5.56   -5.46   -4.91   -3.82   -2.17    0.00    2.59    5.52    8.69   11.95
+    85.0    0.00   -0.23   -0.89   -1.80   -2.80   -3.75   -4.56   -5.22   -5.71   -5.97   -5.91   -5.38   -4.29   -2.64   -0.47    2.12    5.06    8.29   11.71
+    90.0    0.00   -0.27   -0.97   -1.94   -2.99   -3.99   -4.85   -5.56   -6.11   -6.44   -6.42   -5.93   -4.88   -3.25   -1.11    1.45    4.37    7.67   11.28
+    95.0    0.00   -0.30   -1.04   -2.06   -3.17   -4.22   -5.13   -5.91   -6.52   -6.92   -6.97   -6.54   -5.53   -3.95   -1.87    0.62    3.50    6.85   10.70
+   100.0    0.00   -0.33   -1.11   -2.18   -3.33   -4.42   -5.39   -6.23   -6.91   -7.39   -7.52   -7.16   -6.22   -4.70   -2.71   -0.31    2.50    5.89   10.00
+   105.0    0.00   -0.36   -1.18   -2.29   -3.48   -4.61   -5.62   -6.50   -7.26   -7.81   -8.03   -7.75   -6.88   -5.44   -3.55   -1.27    1.46    4.86    9.20
+   110.0    0.00   -0.39   -1.24   -2.38   -3.60   -4.75   -5.79   -6.72   -7.53   -8.17   -8.46   -8.26   -7.47   -6.12   -4.33   -2.18    0.44    3.83    8.36
+   115.0    0.00   -0.41   -1.29   -2.46   -3.70   -4.86   -5.91   -6.86   -7.72   -8.42   -8.78   -8.66   -7.94   -6.67   -4.98   -2.96   -0.47    2.87    7.52
+   120.0    0.00   -0.43   -1.34   -2.52   -3.76   -4.93   -5.97   -6.93   -7.81   -8.55   -8.97   -8.90   -8.25   -7.05   -5.46   -3.56   -1.21    2.02    6.70
+   125.0    0.00   -0.45   -1.38   -2.57   -3.80   -4.95   -5.97   -6.91   -7.79   -8.55   -9.01   -8.98   -8.37   -7.23   -5.71   -3.93   -1.72    1.36    5.94
+   130.0    0.00   -0.47   -1.40   -2.59   -3.81   -4.92   -5.91   -6.81   -7.67   -8.42   -8.89   -8.88   -8.30   -7.18   -5.72   -4.04   -1.99    0.90    5.30
+   135.0    0.00   -0.48   -1.42   -2.60   -3.80   -4.86   -5.79   -6.63   -7.45   -8.17   -8.62   -8.61   -8.03   -6.92   -5.50   -3.89   -1.99    0.68    4.81
+   140.0    0.00   -0.50   -1.43   -2.60   -3.75   -4.77   -5.62   -6.39   -7.13   -7.80   -8.22   -8.18   -7.58   -6.47   -5.05   -3.49   -1.73    0.71    4.50
+   145.0    0.00   -0.50   -1.44   -2.58   -3.69   -4.64   -5.41   -6.10   -6.75   -7.34   -7.70   -7.62   -6.98   -5.84   -4.42   -2.90   -1.24    0.97    4.41
+   150.0    0.00   -0.51   -1.43   -2.54   -3.61   -4.49   -5.18   -5.76   -6.32   -6.82   -7.10   -6.97   -6.28   -5.11   -3.65   -2.14   -0.56    1.45    4.55
+   155.0    0.00   -0.51   -1.42   -2.50   -3.51   -4.32   -4.92   -5.40   -5.86   -6.26   -6.46   -6.26   -5.53   -4.31   -2.82   -1.28    0.25    2.11    4.92
+   160.0    0.00   -0.51   -1.40   -2.45   -3.41   -4.14   -4.65   -5.04   -5.38   -5.69   -5.82   -5.56   -4.78   -3.51   -1.97   -0.39    1.15    2.92    5.52
+   165.0    0.00   -0.51   -1.38   -2.39   -3.30   -3.96   -4.39   -4.68   -4.92   -5.14   -5.20   -4.89   -4.07   -2.76   -1.16    0.48    2.06    3.82    6.29
+   170.0    0.00   -0.50   -1.35   -2.33   -3.18   -3.79   -4.13   -4.33   -4.50   -4.64   -4.64   -4.29   -3.45   -2.11   -0.45    1.28    2.95    4.76    7.19
+   175.0    0.00   -0.50   -1.32   -2.26   -3.07   -3.62   -3.90   -4.02   -4.12   -4.20   -4.16   -3.80   -2.96   -1.59    0.13    1.97    3.77    5.67    8.15
+   180.0    0.00   -0.49   -1.29   -2.20   -2.96   -3.46   -3.69   -3.76   -3.80   -3.84   -3.79   -3.44   -2.60   -1.22    0.57    2.52    4.47    6.52    9.09
+   185.0    0.00   -0.48   -1.26   -2.13   -2.87   -3.33   -3.51   -3.54   -3.55   -3.58   -3.53   -3.20   -2.38   -0.99    0.86    2.93    5.04    7.25    9.93
+   190.0    0.00   -0.47   -1.23   -2.07   -2.78   -3.22   -3.38   -3.38   -3.38   -3.41   -3.38   -3.09   -2.29   -0.90    1.01    3.20    5.47    7.83   10.61
+   195.0    0.00   -0.45   -1.20   -2.02   -2.71   -3.13   -3.28   -3.28   -3.28   -3.33   -3.34   -3.09   -2.32   -0.92    1.05    3.35    5.76    8.24   11.08
+   200.0    0.00   -0.44   -1.17   -1.98   -2.66   -3.08   -3.23   -3.25   -3.26   -3.34   -3.39   -3.17   -2.43   -1.02    1.00    3.41    5.92    8.48   11.33
+   205.0    0.00   -0.43   -1.14   -1.94   -2.62   -3.05   -3.23   -3.27   -3.32   -3.43   -3.51   -3.32   -2.60   -1.17    0.91    3.39    5.98    8.56   11.35
+   210.0    0.00   -0.41   -1.11   -1.91   -2.60   -3.06   -3.27   -3.35   -3.43   -3.58   -3.68   -3.51   -2.78   -1.33    0.79    3.33    5.96    8.52   11.19
+   215.0    0.00   -0.40   -1.09   -1.89   -2.60   -3.09   -3.35   -3.47   -3.60   -3.77   -3.88   -3.71   -2.96   -1.48    0.68    3.25    5.88    8.38   10.90
+   220.0    0.00   -0.39   -1.07   -1.88   -2.62   -3.15   -3.46   -3.64   -3.80   -3.99   -4.10   -3.90   -3.12   -1.60    0.58    3.15    5.76    8.19   10.53
+   225.0    0.00   -0.37   -1.05   -1.87   -2.64   -3.23   -3.60   -3.84   -4.04   -4.23   -4.32   -4.07   -3.25   -1.70    0.49    3.06    5.63    7.97   10.16
+   230.0    0.00   -0.36   -1.03   -1.87   -2.68   -3.32   -3.76   -4.06   -4.29   -4.48   -4.53   -4.23   -3.36   -1.78    0.41    2.95    5.48    7.76    9.83
+   235.0    0.00   -0.34   -1.02   -1.88   -2.73   -3.43   -3.93   -4.28   -4.54   -4.73   -4.74   -4.38   -3.46   -1.87    0.31    2.81    5.31    7.56    9.59
+   240.0    0.00   -0.33   -1.01   -1.89   -2.78   -3.54   -4.11   -4.51   -4.80   -4.97   -4.94   -4.54   -3.58   -1.98    0.17    2.63    5.10    7.37    9.42
+   245.0    0.00   -0.31   -0.99   -1.89   -2.83   -3.65   -4.28   -4.74   -5.05   -5.22   -5.16   -4.72   -3.74   -2.15   -0.04    2.38    4.85    7.18    9.33
+   250.0    0.00   -0.30   -0.98   -1.90   -2.88   -3.75   -4.44   -4.95   -5.30   -5.48   -5.40   -4.94   -3.96   -2.40   -0.34    2.04    4.53    6.96    9.26
+   255.0    0.00   -0.28   -0.97   -1.91   -2.92   -3.84   -4.59   -5.15   -5.54   -5.74   -5.67   -5.22   -4.26   -2.75   -0.75    1.59    4.11    6.66    9.17
+   260.0    0.00   -0.27   -0.95   -1.91   -2.95   -3.91   -4.71   -5.32   -5.76   -6.01   -5.98   -5.56   -4.65   -3.20   -1.27    1.04    3.59    6.27    8.98
+   265.0    0.00   -0.25   -0.94   -1.91   -2.97   -3.97   -4.81   -5.48   -5.98   -6.28   -6.32   -5.96   -5.12   -3.75   -1.88    0.39    2.96    5.76    8.66
+   270.0    0.00   -0.24   -0.92   -1.90   -2.98   -4.01   -4.89   -5.61   -6.18   -6.56   -6.68   -6.41   -5.64   -4.35   -2.55   -0.33    2.24    5.11    8.17
+   275.0    0.00   -0.22   -0.90   -1.89   -2.98   -4.03   -4.95   -5.72   -6.36   -6.83   -7.04   -6.87   -6.19   -4.98   -3.25   -1.09    1.46    4.35    7.51
+   280.0    0.00   -0.20   -0.88   -1.87   -2.97   -4.03   -4.97   -5.80   -6.51   -7.08   -7.39   -7.31   -6.72   -5.58   -3.93   -1.84    0.65    3.52    6.71
+   285.0    0.00   -0.18   -0.85   -1.84   -2.94   -4.01   -4.97   -5.84   -6.62   -7.28   -7.69   -7.70   -7.18   -6.11   -4.52   -2.52   -0.13    2.66    5.82
+   290.0    0.00   -0.17   -0.82   -1.80   -2.90   -3.97   -4.94   -5.84   -6.69   -7.42   -7.91   -7.99   -7.54   -6.51   -4.99   -3.08   -0.82    1.84    4.94
+   295.0    0.00   -0.15   -0.79   -1.76   -2.85   -3.90   -4.88   -5.81   -6.69   -7.48   -8.03   -8.16   -7.74   -6.74   -5.28   -3.48   -1.36    1.15    4.14
+   300.0    0.00   -0.13   -0.76   -1.71   -2.78   -3.82   -4.79   -5.72   -6.63   -7.45   -8.03   -8.17   -7.76   -6.78   -5.37   -3.67   -1.70    0.64    3.53
+   305.0    0.00   -0.11   -0.72   -1.66   -2.70   -3.72   -4.67   -5.59   -6.49   -7.31   -7.89   -8.02   -7.59   -6.62   -5.24   -3.63   -1.81    0.39    3.18
+   310.0    0.00   -0.09   -0.68   -1.59   -2.61   -3.60   -4.52   -5.41   -6.29   -7.08   -7.62   -7.71   -7.24   -6.25   -4.90   -3.37   -1.66    0.41    3.14
+   315.0    0.00   -0.07   -0.64   -1.53   -2.52   -3.47   -4.35   -5.19   -6.02   -6.75   -7.23   -7.26   -6.74   -5.72   -4.38   -2.90   -1.27    0.72    3.41
+   320.0    0.00   -0.05   -0.60   -1.46   -2.41   -3.32   -4.15   -4.94   -5.69   -6.35   -6.75   -6.70   -6.12   -5.07   -3.72   -2.26   -0.67    1.29    3.98
+   325.0    0.00   -0.04   -0.56   -1.38   -2.30   -3.17   -3.94   -4.66   -5.34   -5.90   -6.21   -6.09   -5.44   -4.34   -2.98   -1.51    0.08    2.05    4.78
+   330.0    0.00   -0.02   -0.51   -1.30   -2.19   -3.01   -3.73   -4.37   -4.96   -5.44   -5.66   -5.45   -4.75   -3.61   -2.22   -0.71    0.92    2.94    5.71
+   335.0    0.00    0.00   -0.47   -1.23   -2.07   -2.85   -3.51   -4.09   -4.60   -5.00   -5.13   -4.86   -4.11   -2.93   -1.50    0.06    1.77    3.87    6.69
+   340.0    0.00    0.01   -0.43   -1.15   -1.96   -2.69   -3.31   -3.83   -4.28   -4.60   -4.67   -4.35   -3.57   -2.36   -0.88    0.75    2.54    4.73    7.60
+   345.0    0.00    0.03   -0.39   -1.08   -1.85   -2.55   -3.12   -3.60   -4.00   -4.27   -4.31   -3.96   -3.15   -1.93   -0.41    1.29    3.19    5.46    8.35
+   350.0    0.00    0.04   -0.35   -1.01   -1.74   -2.41   -2.96   -3.42   -3.79   -4.04   -4.05   -3.70   -2.89   -1.66   -0.10    1.66    3.64    5.99    8.89
+   355.0    0.00    0.05   -0.32   -0.95   -1.65   -2.30   -2.84   -3.28   -3.65   -3.90   -3.92   -3.58   -2.79   -1.55    0.03    1.84    3.89    6.29    9.17
+   360.0    0.00    0.06   -0.29   -0.89   -1.57   -2.20   -2.74   -3.19   -3.58   -3.85   -3.90   -3.59   -2.82   -1.60   -0.01    1.85    3.94    6.36    9.22
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -3.43      2.05     67.09                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.13   -0.49   -1.00   -1.55   -2.08   -2.54   -2.96   -3.37   -3.81   -4.22   -4.46   -4.29   -3.51   -2.01    0.09    2.42    4.42    5.53
+     0.0    0.00   -0.01   -0.32   -0.87   -1.54   -2.23   -2.87   -3.47   -4.10   -4.81   -5.56   -6.18   -6.35   -5.76   -4.26   -1.97    0.65    2.91    4.09
+     5.0    0.00    0.00   -0.31   -0.84   -1.49   -2.14   -2.73   -3.27   -3.83   -4.46   -5.13   -5.66   -5.76   -5.11   -3.56   -1.27    1.30    3.47    4.63
+    10.0    0.00    0.00   -0.29   -0.80   -1.42   -2.03   -2.57   -3.05   -3.53   -4.08   -4.66   -5.09   -5.10   -4.37   -2.79   -0.51    1.97    4.04    5.18
+    15.0    0.00    0.01   -0.27   -0.76   -1.35   -1.92   -2.40   -2.81   -3.22   -3.69   -4.17   -4.51   -4.41   -3.60   -1.98    0.27    2.66    4.61    5.75
+    20.0    0.00    0.01   -0.25   -0.72   -1.28   -1.80   -2.23   -2.58   -2.92   -3.30   -3.70   -3.94   -3.74   -2.85   -1.18    1.04    3.34    5.18    6.33
+    25.0    0.00    0.01   -0.24   -0.68   -1.20   -1.68   -2.06   -2.35   -2.63   -2.95   -3.27   -3.42   -3.13   -2.15   -0.45    1.76    3.98    5.74    6.94
+    30.0    0.00    0.02   -0.22   -0.65   -1.13   -1.58   -1.91   -2.15   -2.37   -2.63   -2.89   -2.96   -2.60   -1.56    0.19    2.39    4.57    6.29    7.55
+    35.0    0.00    0.02   -0.21   -0.61   -1.07   -1.48   -1.77   -1.97   -2.16   -2.37   -2.57   -2.60   -2.17   -1.08    0.70    2.91    5.08    6.81    8.15
+    40.0    0.00    0.02   -0.20   -0.58   -1.02   -1.40   -1.66   -1.83   -1.98   -2.17   -2.34   -2.33   -1.87   -0.75    1.05    3.30    5.51    7.28    8.71
+    45.0    0.00    0.02   -0.19   -0.56   -0.97   -1.33   -1.58   -1.73   -1.86   -2.03   -2.18   -2.16   -1.70   -0.57    1.26    3.54    5.83    7.70    9.21
+    50.0    0.00    0.02   -0.19   -0.54   -0.94   -1.28   -1.52   -1.67   -1.79   -1.95   -2.11   -2.09   -1.64   -0.53    1.31    3.65    6.05    8.04    9.61
+    55.0    0.00    0.01   -0.19   -0.53   -0.92   -1.26   -1.49   -1.64   -1.77   -1.93   -2.10   -2.11   -1.70   -0.62    1.22    3.63    6.15    8.29    9.89
+    60.0    0.00    0.01   -0.19   -0.53   -0.91   -1.25   -1.49   -1.65   -1.79   -1.97   -2.16   -2.20   -1.85   -0.82    1.01    3.47    6.13    8.43   10.04
+    65.0    0.00    0.00   -0.19   -0.53   -0.91   -1.26   -1.51   -1.69   -1.85   -2.05   -2.27   -2.36   -2.07   -1.10    0.70    3.21    6.00    8.44   10.04
+    70.0    0.00    0.00   -0.20   -0.54   -0.92   -1.28   -1.55   -1.75   -1.94   -2.16   -2.41   -2.55   -2.33   -1.45    0.30    2.84    5.74    8.32    9.90
+    75.0    0.00   -0.01   -0.22   -0.55   -0.94   -1.31   -1.61   -1.84   -2.05   -2.31   -2.59   -2.78   -2.63   -1.83   -0.15    2.39    5.37    8.06    9.62
+    80.0    0.00   -0.02   -0.23   -0.57   -0.97   -1.35   -1.67   -1.93   -2.18   -2.47   -2.78   -3.02   -2.94   -2.23   -0.64    1.86    4.89    7.68    9.22
+    85.0    0.00   -0.03   -0.25   -0.60   -1.00   -1.40   -1.74   -2.04   -2.33   -2.64   -2.98   -3.26   -3.25   -2.63   -1.14    1.29    4.32    7.16    8.72
+    90.0    0.00   -0.05   -0.27   -0.63   -1.04   -1.45   -1.82   -2.15   -2.48   -2.82   -3.19   -3.50   -3.55   -3.02   -1.65    0.68    3.67    6.55    8.15
+    95.0    0.00   -0.06   -0.30   -0.66   -1.08   -1.50   -1.90   -2.27   -2.63   -3.01   -3.41   -3.74   -3.83   -3.39   -2.14    0.06    2.97    5.86    7.52
+   100.0    0.00   -0.07   -0.33   -0.70   -1.13   -1.56   -1.99   -2.39   -2.79   -3.20   -3.62   -3.97   -4.09   -3.73   -2.59   -0.54    2.25    5.11    6.85
+   105.0    0.00   -0.09   -0.36   -0.74   -1.18   -1.63   -2.07   -2.51   -2.95   -3.40   -3.83   -4.19   -4.33   -4.03   -3.01   -1.11    1.54    4.35    6.17
+   110.0    0.00   -0.11   -0.39   -0.79   -1.24   -1.70   -2.17   -2.64   -3.12   -3.60   -4.05   -4.41   -4.56   -4.29   -3.37   -1.62    0.89    3.62    5.49
+   115.0    0.00   -0.12   -0.43   -0.84   -1.30   -1.78   -2.27   -2.77   -3.29   -3.81   -4.28   -4.63   -4.77   -4.52   -3.67   -2.04    0.32    2.94    4.84
+   120.0    0.00   -0.14   -0.46   -0.90   -1.37   -1.87   -2.38   -2.92   -3.48   -4.02   -4.51   -4.86   -4.98   -4.72   -3.90   -2.37   -0.15    2.37    4.23
+   125.0    0.00   -0.16   -0.50   -0.95   -1.45   -1.96   -2.50   -3.07   -3.66   -4.25   -4.75   -5.09   -5.18   -4.89   -4.07   -2.59   -0.47    1.91    3.69
+   130.0    0.00   -0.17   -0.54   -1.01   -1.53   -2.07   -2.63   -3.23   -3.86   -4.47   -4.99   -5.32   -5.38   -5.04   -4.19   -2.71   -0.66    1.61    3.24
+   135.0    0.00   -0.19   -0.58   -1.08   -1.62   -2.18   -2.76   -3.40   -4.06   -4.70   -5.24   -5.57   -5.58   -5.18   -4.26   -2.73   -0.70    1.47    2.92
+   140.0    0.00   -0.20   -0.61   -1.14   -1.71   -2.29   -2.91   -3.57   -4.26   -4.93   -5.48   -5.81   -5.79   -5.32   -4.29   -2.68   -0.60    1.50    2.74
+   145.0    0.00   -0.22   -0.65   -1.20   -1.80   -2.41   -3.05   -3.74   -4.45   -5.15   -5.72   -6.05   -6.00   -5.45   -4.30   -2.56   -0.39    1.68    2.74
+   150.0    0.00   -0.23   -0.68   -1.26   -1.89   -2.53   -3.19   -3.90   -4.63   -5.34   -5.94   -6.27   -6.20   -5.58   -4.31   -2.39   -0.09    2.01    2.91
+   155.0    0.00   -0.25   -0.72   -1.32   -1.97   -2.64   -3.33   -4.04   -4.79   -5.52   -6.13   -6.48   -6.40   -5.71   -4.31   -2.21    0.27    2.46    3.25
+   160.0    0.00   -0.26   -0.74   -1.37   -2.05   -2.74   -3.44   -4.17   -4.92   -5.65   -6.28   -6.65   -6.57   -5.83   -4.31   -2.02    0.67    3.00    3.77
+   165.0    0.00   -0.27   -0.77   -1.41   -2.11   -2.82   -3.54   -4.26   -5.01   -5.74   -6.37   -6.77   -6.70   -5.93   -4.30   -1.83    1.08    3.59    4.42
+   170.0    0.00   -0.28   -0.79   -1.45   -2.16   -2.89   -3.61   -4.32   -5.05   -5.77   -6.41   -6.82   -6.77   -5.99   -4.27   -1.64    1.49    4.21    5.17
+   175.0    0.00   -0.28   -0.80   -1.47   -2.20   -2.93   -3.64   -4.34   -5.05   -5.75   -6.39   -6.81   -6.77   -5.98   -4.20   -1.44    1.88    4.82    5.97
+   180.0    0.00   -0.29   -0.81   -1.48   -2.21   -2.94   -3.64   -4.32   -4.99   -5.67   -6.29   -6.71   -6.69   -5.90   -4.08   -1.21    2.27    5.41    6.77
+   185.0    0.00   -0.29   -0.82   -1.49   -2.21   -2.93   -3.61   -4.25   -4.89   -5.52   -6.12   -6.53   -6.51   -5.71   -3.87   -0.94    2.66    5.95    7.52
+   190.0    0.00   -0.29   -0.82   -1.48   -2.20   -2.90   -3.54   -4.15   -4.73   -5.32   -5.88   -6.26   -6.22   -5.42   -3.56   -0.60    3.05    6.44    8.18
+   195.0    0.00   -0.29   -0.81   -1.47   -2.16   -2.84   -3.45   -4.01   -4.54   -5.07   -5.57   -5.91   -5.84   -5.01   -3.14   -0.18    3.46    6.87    8.71
+   200.0    0.00   -0.29   -0.80   -1.44   -2.12   -2.76   -3.33   -3.84   -4.31   -4.78   -5.21   -5.49   -5.36   -4.50   -2.62    0.31    3.90    7.25    9.09
+   205.0    0.00   -0.29   -0.79   -1.41   -2.06   -2.67   -3.19   -3.65   -4.06   -4.46   -4.82   -5.02   -4.81   -3.89   -2.00    0.89    4.37    7.58    9.34
+   210.0    0.00   -0.28   -0.77   -1.37   -1.99   -2.56   -3.04   -3.44   -3.79   -4.12   -4.40   -4.51   -4.22   -3.23   -1.31    1.52    4.86    7.87    9.45
+   215.0    0.00   -0.27   -0.75   -1.33   -1.92   -2.45   -2.89   -3.24   -3.52   -3.78   -3.98   -4.00   -3.61   -2.54   -0.59    2.18    5.35    8.11    9.46
+   220.0    0.00   -0.27   -0.72   -1.29   -1.85   -2.35   -2.74   -3.03   -3.26   -3.45   -3.57   -3.50   -3.01   -1.86    0.11    2.82    5.82    8.32    9.39
+   225.0    0.00   -0.26   -0.70   -1.24   -1.78   -2.24   -2.59   -2.84   -3.02   -3.14   -3.19   -3.03   -2.46   -1.24    0.77    3.42    6.25    8.47    9.26
+   230.0    0.00   -0.25   -0.68   -1.20   -1.71   -2.15   -2.46   -2.67   -2.79   -2.87   -2.85   -2.63   -1.98   -0.70    1.32    3.92    6.59    8.57    9.10
+   235.0    0.00   -0.24   -0.65   -1.15   -1.65   -2.06   -2.35   -2.51   -2.60   -2.63   -2.57   -2.29   -1.60   -0.27    1.75    4.29    6.81    8.59    8.92
+   240.0    0.00   -0.23   -0.63   -1.11   -1.59   -1.99   -2.25   -2.39   -2.44   -2.44   -2.35   -2.04   -1.32    0.02    2.03    4.50    6.90    8.51    8.72
+   245.0    0.00   -0.22   -0.60   -1.08   -1.55   -1.92   -2.17   -2.28   -2.31   -2.29   -2.19   -1.88   -1.16    0.16    2.14    4.53    6.82    8.32    8.49
+   250.0    0.00   -0.20   -0.58   -1.04   -1.50   -1.87   -2.10   -2.21   -2.23   -2.20   -2.10   -1.81   -1.11    0.17    2.09    4.40    6.59    8.01    8.21
+   255.0    0.00   -0.19   -0.56   -1.02   -1.47   -1.83   -2.06   -2.16   -2.18   -2.16   -2.09   -1.82   -1.17    0.06    1.89    4.11    6.19    7.56    7.86
+   260.0    0.00   -0.18   -0.54   -0.99   -1.44   -1.81   -2.03   -2.13   -2.17   -2.17   -2.13   -1.92   -1.32   -0.16    1.58    3.68    5.65    6.98    7.41
+   265.0    0.00   -0.17   -0.52   -0.97   -1.42   -1.79   -2.02   -2.14   -2.19   -2.24   -2.24   -2.08   -1.55   -0.47    1.17    3.14    5.00    6.28    6.86
+   270.0    0.00   -0.16   -0.50   -0.95   -1.41   -1.79   -2.03   -2.17   -2.26   -2.35   -2.41   -2.31   -1.84   -0.84    0.70    2.54    4.26    5.48    6.19
+   275.0    0.00   -0.15   -0.49   -0.94   -1.41   -1.79   -2.06   -2.22   -2.36   -2.51   -2.64   -2.60   -2.19   -1.25    0.19    1.89    3.47    4.61    5.42
+   280.0    0.00   -0.14   -0.47   -0.93   -1.41   -1.81   -2.10   -2.31   -2.50   -2.72   -2.91   -2.93   -2.57   -1.69   -0.33    1.24    2.67    3.71    4.57
+   285.0    0.00   -0.13   -0.46   -0.92   -1.41   -1.84   -2.16   -2.41   -2.67   -2.96   -3.23   -3.31   -2.99   -2.15   -0.87    0.60    1.89    2.83    3.69
+   290.0    0.00   -0.12   -0.45   -0.92   -1.43   -1.87   -2.23   -2.54   -2.87   -3.25   -3.59   -3.72   -3.44   -2.63   -1.40   -0.02    1.15    1.99    2.82
+   295.0    0.00   -0.11   -0.44   -0.92   -1.45   -1.92   -2.32   -2.69   -3.10   -3.56   -3.98   -4.16   -3.92   -3.13   -1.93   -0.61    0.49    1.25    2.03
+   300.0    0.00   -0.10   -0.43   -0.93   -1.47   -1.98   -2.43   -2.86   -3.35   -3.89   -4.38   -4.63   -4.42   -3.65   -2.46   -1.16   -0.10    0.62    1.35
+   305.0    0.00   -0.09   -0.43   -0.93   -1.50   -2.04   -2.54   -3.04   -3.60   -4.23   -4.80   -5.11   -4.93   -4.19   -2.99   -1.68   -0.59    0.15    0.83
+   310.0    0.00   -0.08   -0.42   -0.94   -1.53   -2.11   -2.65   -3.22   -3.85   -4.56   -5.21   -5.58   -5.46   -4.73   -3.52   -2.15   -0.98   -0.17    0.49
+   315.0    0.00   -0.08   -0.41   -0.95   -1.56   -2.18   -2.77   -3.39   -4.09   -4.87   -5.59   -6.04   -5.97   -5.27   -4.04   -2.59   -1.28   -0.33    0.35
+   320.0    0.00   -0.07   -0.41   -0.95   -1.59   -2.24   -2.88   -3.55   -4.31   -5.14   -5.93   -6.45   -6.44   -5.78   -4.52   -2.96   -1.47   -0.34    0.39
+   325.0    0.00   -0.06   -0.40   -0.96   -1.62   -2.30   -2.98   -3.69   -4.48   -5.37   -6.21   -6.80   -6.86   -6.23   -4.95   -3.26   -1.56   -0.21    0.60
+   330.0    0.00   -0.05   -0.39   -0.96   -1.64   -2.35   -3.05   -3.79   -4.61   -5.52   -6.42   -7.06   -7.19   -6.61   -5.29   -3.47   -1.55    0.04    0.95
+   335.0    0.00   -0.05   -0.39   -0.96   -1.65   -2.38   -3.10   -3.85   -4.68   -5.61   -6.53   -7.22   -7.41   -6.86   -5.52   -3.57   -1.43    0.39    1.40
+   340.0    0.00   -0.04   -0.38   -0.95   -1.66   -2.39   -3.12   -3.87   -4.69   -5.61   -6.53   -7.26   -7.49   -6.97   -5.60   -3.54   -1.20    0.82    1.91
+   345.0    0.00   -0.03   -0.36   -0.94   -1.65   -2.39   -3.11   -3.84   -4.63   -5.52   -6.44   -7.17   -7.43   -6.92   -5.52   -3.36   -0.88    1.30    2.45
+   350.0    0.00   -0.02   -0.35   -0.92   -1.62   -2.36   -3.06   -3.76   -4.51   -5.36   -6.24   -6.95   -7.21   -6.69   -5.26   -3.03   -0.45    1.81    3.00
+   355.0    0.00   -0.02   -0.34   -0.90   -1.59   -2.30   -2.98   -3.64   -4.33   -5.11   -5.94   -6.62   -6.84   -6.30   -4.84   -2.56    0.06    2.35    3.55
+   360.0    0.00   -0.01   -0.32   -0.87   -1.54   -2.23   -2.87   -3.47   -4.10   -4.81   -5.56   -6.18   -6.35   -5.76   -4.26   -1.97    0.65    2.91    4.09
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH700699.L1    NONE                                        TYPE / SERIAL NO    
+CONVERTED           TUM                      0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     1                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+CONVERTED FROM igs_01.pcv                                   COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.58     -0.37     33.35                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.23   -0.90   -1.93   -3.22   -4.62   -5.96   -7.09   -7.87   -8.21   -8.06   -7.39   -6.23   -4.55   -2.28    0.69    4.47    9.08   14.23
+   G01                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH700700.A     NONE                                        TYPE / SERIAL NO    
+FIELD               NGS                      2    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+     -1.12     -1.67     23.75                              NORTH / EAST / UP   
+   NOAZI    0.00    0.67    0.70    0.47   -0.12   -0.92   -1.76   -2.39   -2.87   -3.01   -2.96   -2.49   -1.73   -0.75    0.62    2.39    4.67
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      1.32     -2.49     42.45                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.63   -0.91   -1.08   -1.19   -1.38   -1.49   -1.67   -2.01   -2.21   -2.45   -2.46   -2.33   -2.13   -1.93   -1.61   -0.95
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH700700.B     NONE                                        TYPE / SERIAL NO    
+FIELD               NGS                      3    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+     -1.22     -1.87     33.35                              NORTH / EAST / UP   
+   NOAZI    0.00    0.57    0.60    0.37   -0.22   -0.92   -1.66   -2.29   -2.77   -2.91   -2.86   -2.39   -1.83   -0.85    0.42    1.99    4.17
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      1.02     -2.59     51.75                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.63   -1.01   -1.28   -1.39   -1.58   -1.79   -2.17   -2.41   -2.71   -2.95   -2.96   -2.83   -2.63   -2.43   -2.21   -1.75
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH700700.C     NONE                                        TYPE / SERIAL NO    
+FIELD               NGS                      3    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+     -1.22     -1.87     33.35                              NORTH / EAST / UP   
+   NOAZI    0.00    0.57    0.60    0.37   -0.22   -0.92   -1.66   -2.29   -2.77   -2.91   -2.86   -2.39   -1.83   -0.85    0.42    1.99    4.17
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      1.02     -2.59     51.75                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.63   -1.01   -1.28   -1.39   -1.58   -1.79   -2.17   -2.41   -2.71   -2.95   -2.96   -2.83   -2.63   -2.43   -2.21   -1.75
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH700718A      NONE                                        TYPE / SERIAL NO    
+COPIED              Geo++ GmbH               8    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+COPIED FROM ASH700718B      NONE                            COMMENT             
+ATTENTION! COPIED WITHOUT VERIFICATION BY CALIBRATION!      COMMENT             
+   G01                                                      START OF FREQUENCY  
+     -1.67     -0.47     69.48                              NORTH / EAST / UP   
+   NOAZI    0.00    0.06    0.20    0.37    0.49    0.48    0.34    0.07   -0.33   -0.82   -1.38   -1.93   -2.36   -2.45   -2.00   -0.91    0.75    2.64    4.21
+     0.0    0.00   -0.02   -0.12   -0.29   -0.53   -0.88   -1.37   -2.05   -2.93   -3.95   -4.99   -5.87   -6.40   -6.43   -5.89   -4.78   -3.25   -1.62   -0.42
+     5.0    0.00   -0.04   -0.13   -0.25   -0.44   -0.74   -1.19   -1.85   -2.71   -3.74   -4.82   -5.76   -6.39   -6.53   -6.09   -5.07   -3.61   -2.03   -0.84
+    10.0    0.00   -0.06   -0.12   -0.20   -0.33   -0.57   -0.98   -1.60   -2.44   -3.47   -4.56   -5.55   -6.26   -6.50   -6.15   -5.20   -3.79   -2.23   -1.05
+    15.0    0.00   -0.08   -0.12   -0.14   -0.20   -0.37   -0.73   -1.31   -2.12   -3.12   -4.22   -5.25   -6.01   -6.33   -6.06   -5.17   -3.78   -2.22   -1.04
+    20.0    0.00   -0.10   -0.10   -0.06   -0.05   -0.16   -0.46   -0.99   -1.76   -2.73   -3.80   -4.84   -5.65   -6.03   -5.82   -4.96   -3.57   -2.01   -0.82
+    25.0    0.00   -0.11   -0.08    0.02    0.10    0.07   -0.17   -0.64   -1.36   -2.28   -3.32   -4.35   -5.19   -5.60   -5.42   -4.57   -3.18   -1.61   -0.41
+    30.0    0.00   -0.12   -0.06    0.10    0.26    0.30    0.13   -0.28   -0.93   -1.79   -2.79   -3.79   -4.62   -5.05   -4.89   -4.04   -2.63   -1.04    0.18
+    35.0    0.00   -0.13   -0.04    0.18    0.42    0.53    0.44    0.10   -0.49   -1.28   -2.21   -3.17   -3.98   -4.41   -4.23   -3.36   -1.92   -0.31    0.92
+    40.0    0.00   -0.15   -0.03    0.26    0.57    0.76    0.74    0.47   -0.04   -0.75   -1.61   -2.51   -3.28   -3.68   -3.47   -2.56   -1.09    0.56    1.82
+    45.0    0.00   -0.16   -0.02    0.32    0.70    0.97    1.02    0.83    0.41   -0.22   -1.00   -1.83   -2.54   -2.89   -2.64   -1.68   -0.15    1.54    2.85
+    50.0    0.00   -0.17   -0.01    0.38    0.82    1.16    1.29    1.18    0.84    0.30   -0.40   -1.15   -1.79   -2.08   -1.76   -0.72    0.88    2.63    4.01
+    55.0    0.00   -0.19   -0.01    0.41    0.91    1.31    1.52    1.49    1.24    0.79    0.18   -0.49   -1.05   -1.26   -0.85    0.27    1.96    3.80    5.27
+    60.0    0.00   -0.20   -0.02    0.43    0.97    1.43    1.71    1.76    1.60    1.24    0.72    0.13   -0.35   -0.46    0.04    1.27    3.08    5.02    6.62
+    65.0    0.00   -0.22   -0.04    0.42    0.99    1.50    1.84    1.98    1.90    1.63    1.20    0.70    0.30    0.28    0.89    2.24    4.18    6.27    8.01
+    70.0    0.00   -0.23   -0.07    0.39    0.98    1.53    1.92    2.13    2.14    1.95    1.61    1.19    0.88    0.95    1.68    3.16    5.24    7.48    9.40
+    75.0    0.00   -0.25   -0.11    0.34    0.92    1.49    1.93    2.20    2.29    2.19    1.93    1.59    1.37    1.53    2.37    3.98    6.21    8.62   10.73
+    80.0    0.00   -0.27   -0.15    0.26    0.83    1.40    1.87    2.19    2.35    2.32    2.14    1.88    1.74    2.00    2.93    4.67    7.05    9.63   11.92
+    85.0    0.00   -0.29   -0.21    0.16    0.69    1.25    1.74    2.10    2.31    2.35    2.24    2.06    1.99    2.33    3.36    5.20    7.71   10.45   12.89
+    90.0    0.00   -0.31   -0.27    0.04    0.52    1.05    1.52    1.91    2.16    2.27    2.23    2.11    2.11    2.51    3.61    5.54    8.15   11.01   13.57
+    95.0    0.00   -0.32   -0.34   -0.09    0.32    0.79    1.24    1.63    1.91    2.07    2.08    2.02    2.08    2.54    3.68    5.66    8.34   11.28   13.92
+   100.0    0.00   -0.34   -0.41   -0.24    0.09    0.49    0.90    1.27    1.57    1.75    1.81    1.80    1.91    2.39    3.55    5.55    8.25   11.22   13.88
+   105.0    0.00   -0.36   -0.48   -0.40   -0.16    0.16    0.51    0.84    1.13    1.33    1.42    1.45    1.58    2.08    3.23    5.20    7.87   10.83   13.44
+   110.0    0.00   -0.37   -0.55   -0.56   -0.42   -0.19    0.08    0.37    0.62    0.82    0.91    0.96    1.10    1.59    2.71    4.62    7.23   10.12   12.63
+   115.0    0.00   -0.38   -0.62   -0.71   -0.68   -0.55   -0.36   -0.15    0.06    0.23    0.32    0.36    0.50    0.96    2.01    3.83    6.33    9.12   11.49
+   120.0    0.00   -0.38   -0.68   -0.85   -0.92   -0.90   -0.81   -0.67   -0.53   -0.41   -0.35   -0.33   -0.22    0.19    1.16    2.86    5.23    7.88   10.08
+   125.0    0.00   -0.39   -0.72   -0.98   -1.14   -1.22   -1.23   -1.18   -1.12   -1.07   -1.07   -1.09   -1.03   -0.68    0.19    1.76    3.98    6.48    8.50
+   130.0    0.00   -0.38   -0.76   -1.08   -1.34   -1.51   -1.61   -1.66   -1.69   -1.73   -1.80   -1.89   -1.89   -1.63   -0.86    0.57    2.64    4.99    6.84
+   135.0    0.00   -0.38   -0.78   -1.16   -1.49   -1.75   -1.94   -2.08   -2.21   -2.34   -2.51   -2.69   -2.77   -2.59   -1.94   -0.64    1.28    3.50    5.20
+   140.0    0.00   -0.36   -0.78   -1.21   -1.59   -1.92   -2.19   -2.43   -2.65   -2.90   -3.17   -3.45   -3.62   -3.54   -3.00   -1.83   -0.04    2.06    3.67
+   145.0    0.00   -0.34   -0.77   -1.22   -1.65   -2.03   -2.37   -2.68   -3.01   -3.36   -3.75   -4.13   -4.41   -4.43   -4.00   -2.95   -1.27    0.74    2.30
+   150.0    0.00   -0.32   -0.74   -1.20   -1.65   -2.06   -2.45   -2.84   -3.25   -3.72   -4.22   -4.71   -5.09   -5.21   -4.88   -3.94   -2.36   -0.41    1.14
+   155.0    0.00   -0.29   -0.69   -1.14   -1.59   -2.02   -2.45   -2.89   -3.39   -3.95   -4.56   -5.16   -5.65   -5.86   -5.63   -4.78   -3.28   -1.37    0.21
+   160.0    0.00   -0.25   -0.62   -1.04   -1.48   -1.91   -2.35   -2.84   -3.40   -4.05   -4.76   -5.46   -6.04   -6.35   -6.20   -5.45   -4.02   -2.13   -0.48
+   165.0    0.00   -0.21   -0.53   -0.91   -1.32   -1.73   -2.18   -2.69   -3.30   -4.02   -4.82   -5.60   -6.27   -6.66   -6.60   -5.92   -4.56   -2.69   -0.96
+   170.0    0.00   -0.16   -0.42   -0.75   -1.11   -1.49   -1.93   -2.45   -3.10   -3.88   -4.73   -5.59   -6.33   -6.80   -6.81   -6.21   -4.91   -3.06   -1.25
+   175.0    0.00   -0.11   -0.31   -0.56   -0.86   -1.20   -1.61   -2.14   -2.81   -3.62   -4.52   -5.43   -6.23   -6.76   -6.85   -6.32   -5.08   -3.26   -1.38
+   180.0    0.00   -0.05   -0.18   -0.35   -0.57   -0.86   -1.25   -1.77   -2.44   -3.27   -4.20   -5.15   -6.00   -6.58   -6.73   -6.26   -5.08   -3.30   -1.37
+   185.0    0.00    0.00   -0.03   -0.12   -0.26   -0.49   -0.85   -1.35   -2.02   -2.85   -3.80   -4.77   -5.64   -6.27   -6.47   -6.06   -4.94   -3.20   -1.26
+   190.0    0.00    0.06    0.11    0.12    0.06   -0.11   -0.42   -0.90   -1.57   -2.39   -3.33   -4.31   -5.21   -5.87   -6.10   -5.73   -4.65   -2.97   -1.05
+   195.0    0.00    0.12    0.27    0.38    0.40    0.29    0.02   -0.45   -1.09   -1.90   -2.83   -3.81   -4.71   -5.39   -5.64   -5.29   -4.25   -2.62   -0.74
+   200.0    0.00    0.19    0.42    0.63    0.74    0.69    0.45    0.01   -0.61   -1.40   -2.32   -3.28   -4.19   -4.86   -5.11   -4.76   -3.74   -2.16   -0.34
+   205.0    0.00    0.25    0.57    0.88    1.08    1.09    0.88    0.46   -0.15   -0.92   -1.81   -2.75   -3.65   -4.31   -4.54   -4.17   -3.15   -1.60    0.16
+   210.0    0.00    0.30    0.72    1.12    1.40    1.46    1.28    0.88    0.29   -0.45   -1.31   -2.24   -3.11   -3.75   -3.95   -3.53   -2.47   -0.94    0.75
+   215.0    0.00    0.36    0.86    1.35    1.70    1.81    1.66    1.27    0.71   -0.01   -0.85   -1.75   -2.59   -3.20   -3.34   -2.85   -1.75   -0.22    1.42
+   220.0    0.00    0.41    0.98    1.56    1.97    2.13    2.00    1.63    1.08    0.39   -0.41   -1.28   -2.09   -2.65   -2.73   -2.16   -0.99    0.56    2.16
+   225.0    0.00    0.46    1.10    1.74    2.21    2.40    2.30    1.94    1.41    0.75   -0.02   -0.85   -1.62   -2.12   -2.12   -1.47   -0.23    1.35    2.93
+   230.0    0.00    0.50    1.20    1.90    2.42    2.64    2.55    2.21    1.70    1.08    0.35   -0.44   -1.16   -1.60   -1.53   -0.80    0.52    2.13    3.69
+   235.0    0.00    0.53    1.28    2.03    2.58    2.82    2.75    2.43    1.94    1.36    0.68   -0.06   -0.72   -1.10   -0.96   -0.16    1.22    2.87    4.42
+   240.0    0.00    0.56    1.35    2.13    2.70    2.96    2.89    2.59    2.13    1.59    0.96    0.29   -0.31   -0.63   -0.43    0.44    1.87    3.53    5.08
+   245.0    0.00    0.59    1.39    2.19    2.78    3.04    2.98    2.69    2.27    1.77    1.21    0.61    0.07   -0.19    0.06    0.97    2.43    4.10    5.64
+   250.0    0.00    0.60    1.42    2.22    2.80    3.06    3.00    2.73    2.35    1.90    1.41    0.88    0.41    0.21    0.50    1.43    2.89    4.56    6.09
+   255.0    0.00    0.61    1.42    2.21    2.78    3.03    2.97    2.71    2.36    1.97    1.55    1.09    0.70    0.55    0.88    1.82    3.27    4.92    6.43
+   260.0    0.00    0.61    1.41    2.17    2.71    2.94    2.87    2.62    2.31    1.97    1.62    1.24    0.92    0.82    1.18    2.12    3.56    5.19    6.66
+   265.0    0.00    0.61    1.38    2.10    2.60    2.79    2.71    2.48    2.19    1.90    1.61    1.31    1.05    1.01    1.40    2.34    3.77    5.38    6.82
+   270.0    0.00    0.59    1.33    2.00    2.45    2.60    2.50    2.26    2.00    1.76    1.52    1.29    1.10    1.11    1.53    2.49    3.92    5.52    6.92
+   275.0    0.00    0.58    1.26    1.87    2.26    2.36    2.24    1.99    1.74    1.53    1.34    1.16    1.03    1.10    1.57    2.56    4.02    5.63    7.00
+   280.0    0.00    0.55    1.18    1.72    2.03    2.09    1.93    1.67    1.43    1.23    1.07    0.94    0.87    1.00    1.52    2.57    4.07    5.72    7.07
+   285.0    0.00    0.52    1.09    1.55    1.79    1.78    1.58    1.31    1.05    0.86    0.71    0.61    0.59    0.79    1.39    2.51    4.09    5.80    7.15
+   290.0    0.00    0.49    0.99    1.36    1.52    1.45    1.21    0.91    0.63    0.42    0.28    0.19    0.22    0.48    1.17    2.40    4.07    5.86    7.23
+   295.0    0.00    0.45    0.88    1.17    1.25    1.11    0.83    0.48    0.17   -0.06   -0.23   -0.31   -0.25    0.09    0.88    2.22    4.01    5.89    7.29
+   300.0    0.00    0.41    0.77    0.97    0.97    0.77    0.44    0.05   -0.30   -0.58   -0.78   -0.87   -0.78   -0.37    0.52    1.97    3.88    5.87    7.30
+   305.0    0.00    0.37    0.66    0.78    0.70    0.44    0.05   -0.38   -0.78   -1.12   -1.37   -1.48   -1.37   -0.89    0.09    1.66    3.68    5.76    7.23
+   310.0    0.00    0.33    0.54    0.59    0.44    0.12   -0.31   -0.79   -1.25   -1.66   -1.96   -2.11   -1.99   -1.46   -0.39    1.27    3.38    5.54    7.04
+   315.0    0.00    0.29    0.44    0.41    0.20   -0.17   -0.64   -1.17   -1.70   -2.17   -2.55   -2.74   -2.62   -2.06   -0.93    0.80    2.98    5.18    6.70
+   320.0    0.00    0.25    0.33    0.24   -0.02   -0.43   -0.94   -1.51   -2.10   -2.65   -3.10   -3.35   -3.25   -2.67   -1.51    0.26    2.46    4.68    6.20
+   325.0    0.00    0.21    0.24    0.10   -0.21   -0.65   -1.18   -1.80   -2.45   -3.08   -3.61   -3.92   -3.86   -3.29   -2.12   -0.35    1.83    4.03    5.53
+   330.0    0.00    0.17    0.15   -0.03   -0.36   -0.82   -1.38   -2.03   -2.74   -3.45   -4.06   -4.44   -4.43   -3.89   -2.75   -1.02    1.11    3.25    4.72
+   335.0    0.00    0.13    0.08   -0.13   -0.48   -0.95   -1.52   -2.20   -2.96   -3.74   -4.44   -4.90   -4.95   -4.47   -3.38   -1.73    0.32    2.38    3.80
+   340.0    0.00    0.09    0.02   -0.21   -0.56   -1.03   -1.60   -2.30   -3.10   -3.95   -4.73   -5.27   -5.41   -5.01   -4.01   -2.44   -0.50    1.46    2.83
+   345.0    0.00    0.06   -0.03   -0.27   -0.61   -1.06   -1.62   -2.33   -3.17   -4.08   -4.93   -5.57   -5.80   -5.49   -4.59   -3.14   -1.31    0.55    1.87
+   350.0    0.00    0.03   -0.07   -0.29   -0.62   -1.04   -1.59   -2.30   -3.16   -4.12   -5.05   -5.77   -6.10   -5.90   -5.11   -3.78   -2.07   -0.30    0.97
+   355.0    0.00    0.00   -0.10   -0.30   -0.59   -0.98   -1.50   -2.20   -3.08   -4.07   -5.06   -5.87   -6.30   -6.22   -5.55   -4.34   -2.73   -1.04    0.19
+   360.0    0.00   -0.02   -0.12   -0.29   -0.53   -0.88   -1.37   -2.05   -2.93   -3.95   -4.99   -5.87   -6.40   -6.43   -5.89   -4.78   -3.25   -1.62   -0.42
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.91     -1.34     50.21                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.21   -0.87   -2.00   -3.54   -5.31   -7.00   -8.27   -8.91   -8.88   -8.38   -7.64   -6.76   -5.57   -3.62   -0.40    4.29   10.04   15.70
+     0.0    0.00   -0.38   -1.32   -2.76   -4.61   -6.68   -8.70  -10.37  -11.44  -11.86  -11.75  -11.36  -10.81   -9.97   -8.38   -5.39   -0.58    5.80   12.46
+     5.0    0.00   -0.38   -1.33   -2.79   -4.68   -6.78   -8.82  -10.48  -11.55  -11.96  -11.85  -11.46  -10.92  -10.08   -8.49   -5.54   -0.81    5.44   11.99
+    10.0    0.00   -0.37   -1.32   -2.81   -4.71   -6.83   -8.87  -10.53  -11.57  -11.96  -11.85  -11.46  -10.91  -10.07   -8.47   -5.52   -0.85    5.27   11.68
+    15.0    0.00   -0.36   -1.31   -2.80   -4.71   -6.83   -8.87  -10.50  -11.51  -11.88  -11.74  -11.34  -10.79   -9.92   -8.30   -5.34   -0.71    5.29   11.53
+    20.0    0.00   -0.34   -1.28   -2.76   -4.67   -6.78   -8.80  -10.40  -11.38  -11.70  -11.54  -11.12  -10.54   -9.65   -7.98   -4.98   -0.38    5.51   11.56
+    25.0    0.00   -0.33   -1.24   -2.70   -4.59   -6.69   -8.68  -10.24  -11.17  -11.45  -11.25  -10.80  -10.19   -9.25   -7.52   -4.47    0.13    5.91   11.75
+    30.0    0.00   -0.31   -1.19   -2.63   -4.49   -6.55   -8.51  -10.03  -10.90  -11.13  -10.88  -10.39   -9.74   -8.74   -6.93   -3.82    0.79    6.47   12.11
+    35.0    0.00   -0.28   -1.14   -2.53   -4.35   -6.37   -8.29   -9.75  -10.57  -10.74  -10.44   -9.90   -9.20   -8.14   -6.25   -3.06    1.57    7.18   12.64
+    40.0    0.00   -0.26   -1.07   -2.41   -4.18   -6.16   -8.02   -9.44  -10.20  -10.31   -9.95   -9.35   -8.59   -7.45   -5.48   -2.21    2.45    8.01   13.31
+    45.0    0.00   -0.23   -0.99   -2.28   -3.99   -5.91   -7.72   -9.08   -9.78   -9.83   -9.41   -8.75   -7.93   -6.72   -4.66   -1.31    3.39    8.92   14.12
+    50.0    0.00   -0.20   -0.91   -2.13   -3.78   -5.65   -7.40   -8.70   -9.34   -9.32   -8.83   -8.12   -7.23   -5.95   -3.81   -0.39    4.36    9.89   15.05
+    55.0    0.00   -0.17   -0.83   -1.98   -3.56   -5.36   -7.05   -8.29   -8.87   -8.78   -8.24   -7.46   -6.52   -5.17   -2.97    0.52    5.33   10.89   16.07
+    60.0    0.00   -0.14   -0.74   -1.83   -3.33   -5.06   -6.69   -7.87   -8.38   -8.24   -7.64   -6.80   -5.81   -4.41   -2.15    1.40    6.28   11.90   17.16
+    65.0    0.00   -0.11   -0.66   -1.67   -3.11   -4.77   -6.33   -7.44   -7.90   -7.70   -7.04   -6.16   -5.12   -3.68   -1.37    2.23    7.18   12.89   18.27
+    70.0    0.00   -0.09   -0.58   -1.53   -2.89   -4.48   -5.97   -7.03   -7.42   -7.17   -6.46   -5.54   -4.47   -3.00   -0.66    3.00    8.02   13.83   19.35
+    75.0    0.00   -0.06   -0.50   -1.39   -2.68   -4.21   -5.64   -6.63   -6.97   -6.66   -5.92   -4.97   -3.87   -2.38   -0.01    3.69    8.77   14.68   20.35
+    80.0    0.00   -0.04   -0.44   -1.26   -2.50   -3.96   -5.33   -6.27   -6.56   -6.21   -5.43   -4.45   -3.34   -1.84    0.54    4.28    9.42   15.42   21.23
+    85.0    0.00   -0.02   -0.38   -1.16   -2.34   -3.75   -5.07   -5.96   -6.20   -5.81   -5.01   -4.02   -2.90   -1.40    1.00    4.76    9.94   16.02   21.92
+    90.0    0.00    0.00   -0.33   -1.07   -2.21   -3.58   -4.86   -5.70   -5.91   -5.49   -4.67   -3.67   -2.56   -1.05    1.35    5.12   10.32   16.43   22.38
+    95.0    0.00    0.02   -0.29   -1.00   -2.12   -3.46   -4.71   -5.52   -5.70   -5.27   -4.43   -3.44   -2.32   -0.82    1.58    5.33   10.52   16.62   22.56
+   100.0    0.00    0.03   -0.27   -0.97   -2.06   -3.39   -4.62   -5.42   -5.59   -5.15   -4.31   -3.32   -2.21   -0.71    1.67    5.39   10.54   16.58   22.46
+   105.0    0.00    0.03   -0.26   -0.95   -2.05   -3.38   -4.61   -5.41   -5.58   -5.14   -4.31   -3.32   -2.22   -0.74    1.61    5.28   10.34   16.29   22.05
+   110.0    0.00    0.03   -0.26   -0.96   -2.08   -3.42   -4.67   -5.49   -5.67   -5.26   -4.44   -3.47   -2.37   -0.91    1.39    4.98    9.93   15.74   21.35
+   115.0    0.00    0.03   -0.27   -1.00   -2.15   -3.52   -4.80   -5.66   -5.88   -5.49   -4.71   -3.75   -2.67   -1.23    1.02    4.50    9.31   14.95   20.40
+   120.0    0.00    0.02   -0.30   -1.07   -2.25   -3.67   -5.01   -5.91   -6.19   -5.85   -5.10   -4.16   -3.10   -1.69    0.48    3.85    8.49   13.95   19.23
+   125.0    0.00    0.01   -0.34   -1.15   -2.39   -3.88   -5.27   -6.25   -6.59   -6.31   -5.60   -4.70   -3.66   -2.29   -0.19    3.04    7.50   12.77   17.91
+   130.0    0.00    0.00   -0.39   -1.25   -2.56   -4.12   -5.59   -6.65   -7.07   -6.86   -6.22   -5.35   -4.34   -3.02   -1.00    2.10    6.38   11.48   16.49
+   135.0    0.00   -0.02   -0.45   -1.38   -2.76   -4.39   -5.95   -7.10   -7.61   -7.49   -6.91   -6.09   -5.11   -3.84   -1.90    1.06    5.18   10.13   15.05
+   140.0    0.00   -0.03   -0.52   -1.51   -2.97   -4.69   -6.35   -7.59   -8.20   -8.18   -7.67   -6.90   -5.96   -4.72   -2.86   -0.02    3.96    8.78   13.65
+   145.0    0.00   -0.06   -0.59   -1.65   -3.19   -5.01   -6.75   -8.10   -8.82   -8.89   -8.46   -7.75   -6.84   -5.64   -3.84   -1.09    2.77    7.49   12.33
+   150.0    0.00   -0.08   -0.66   -1.80   -3.43   -5.33   -7.17   -8.61   -9.44   -9.61   -9.26   -8.60   -7.73   -6.56   -4.80   -2.12    1.66    6.32   11.15
+   155.0    0.00   -0.10   -0.74   -1.95   -3.66   -5.64   -7.57   -9.12  -10.04  -10.30  -10.03   -9.43   -8.58   -7.43   -5.69   -3.04    0.69    5.30   10.12
+   160.0    0.00   -0.13   -0.82   -2.09   -3.88   -5.94   -7.96   -9.59  -10.60  -10.95  -10.75  -10.19   -9.37   -8.21   -6.47   -3.83   -0.13    4.46    9.27
+   165.0    0.00   -0.15   -0.89   -2.23   -4.09   -6.23   -8.32  -10.02  -11.11  -11.53  -11.39  -10.86  -10.04   -8.87   -7.11   -4.46   -0.75    3.83    8.60
+   170.0    0.00   -0.17   -0.96   -2.36   -4.28   -6.48   -8.63  -10.39  -11.54  -12.01  -11.91  -11.40  -10.59   -9.39   -7.59   -4.90   -1.17    3.39    8.12
+   175.0    0.00   -0.20   -1.02   -2.47   -4.44   -6.70   -8.89  -10.70  -11.89  -12.39  -12.31  -11.81  -10.98   -9.75   -7.91   -5.17   -1.40    3.16    7.82
+   180.0    0.00   -0.22   -1.08   -2.57   -4.58   -6.87   -9.10  -10.93  -12.13  -12.64  -12.56  -12.05  -11.20   -9.94   -8.04   -5.25   -1.44    3.11    7.70
+   185.0    0.00   -0.24   -1.12   -2.65   -4.69   -7.00   -9.24  -11.08  -12.27  -12.77  -12.67  -12.13  -11.25   -9.95   -8.01   -5.16   -1.31    3.24    7.75
+   190.0    0.00   -0.25   -1.16   -2.71   -4.76   -7.08   -9.32  -11.14  -12.30  -12.76  -12.62  -12.04  -11.13   -9.80   -7.82   -4.92   -1.03    3.54    7.98
+   195.0    0.00   -0.27   -1.19   -2.74   -4.80   -7.11   -9.33  -11.11  -12.22  -12.62  -12.42  -11.80  -10.86   -9.50   -7.48   -4.54   -0.60    3.98    8.38
+   200.0    0.00   -0.28   -1.21   -2.75   -4.80   -7.08   -9.26  -10.99  -12.03  -12.35  -12.09  -11.42  -10.44   -9.07   -7.02   -4.04   -0.05    4.55    8.96
+   205.0    0.00   -0.29   -1.21   -2.74   -4.76   -7.01   -9.13  -10.79  -11.74  -11.98  -11.63  -10.91   -9.91   -8.52   -6.46   -3.44    0.60    5.26    9.70
+   210.0    0.00   -0.30   -1.21   -2.71   -4.69   -6.88   -8.94  -10.51  -11.37  -11.51  -11.09  -10.31   -9.28   -7.88   -5.81   -2.75    1.35    6.09   10.61
+   215.0    0.00   -0.30   -1.19   -2.66   -4.59   -6.71   -8.69  -10.17  -10.93  -10.97  -10.47   -9.64   -8.59   -7.18   -5.09   -1.99    2.18    7.02   11.65
+   220.0    0.00   -0.30   -1.17   -2.59   -4.45   -6.51   -8.40   -9.78  -10.45  -10.39   -9.80   -8.92   -7.85   -6.44   -4.33   -1.18    3.08    8.03   12.82
+   225.0    0.00   -0.30   -1.14   -2.51   -4.30   -6.27   -8.07   -9.36   -9.93   -9.78   -9.12   -8.19   -7.10   -5.67   -3.54   -0.32    4.03    9.11   14.06
+   230.0    0.00   -0.30   -1.11   -2.41   -4.13   -6.01   -7.72   -8.92   -9.40   -9.17   -8.45   -7.47   -6.35   -4.90   -2.73    0.55    5.01   10.22   15.35
+   235.0    0.00   -0.29   -1.06   -2.31   -3.94   -5.74   -7.36   -8.48   -8.88   -8.58   -7.80   -6.79   -5.64   -4.16   -1.94    1.41    5.98   11.33   16.63
+   240.0    0.00   -0.29   -1.02   -2.20   -3.75   -5.46   -7.01   -8.05   -8.39   -8.03   -7.20   -6.15   -4.97   -3.45   -1.19    2.24    6.91   12.40   17.86
+   245.0    0.00   -0.29   -0.98   -2.09   -3.56   -5.19   -6.67   -7.65   -7.94   -7.54   -6.67   -5.58   -4.36   -2.81   -0.50    3.00    7.77   13.39   19.00
+   250.0    0.00   -0.28   -0.93   -1.98   -3.38   -4.94   -6.35   -7.29   -7.54   -7.11   -6.21   -5.09   -3.83   -2.25    0.11    3.67    8.53   14.26   20.00
+   255.0    0.00   -0.27   -0.89   -1.88   -3.21   -4.70   -6.07   -6.97   -7.20   -6.75   -5.83   -4.68   -3.40   -1.78    0.60    4.21    9.15   14.99   20.85
+   260.0    0.00   -0.27   -0.85   -1.79   -3.05   -4.50   -5.83   -6.71   -6.93   -6.47   -5.53   -4.36   -3.06   -1.43    0.97    4.60    9.61   15.55   21.52
+   265.0    0.00   -0.27   -0.82   -1.71   -2.92   -4.32   -5.63   -6.50   -6.72   -6.27   -5.32   -4.14   -2.83   -1.21    1.18    4.83    9.89   15.94   22.00
+   270.0    0.00   -0.26   -0.80   -1.64   -2.82   -4.18   -5.47   -6.35   -6.58   -6.14   -5.19   -4.01   -2.72   -1.12    1.24    4.88    9.99   16.15   22.32
+   275.0    0.00   -0.26   -0.78   -1.60   -2.74   -4.08   -5.37   -6.26   -6.51   -6.08   -5.15   -3.99   -2.72   -1.16    1.15    4.77    9.92   16.19   22.46
+   280.0    0.00   -0.26   -0.77   -1.57   -2.69   -4.03   -5.31   -6.22   -6.50   -6.10   -5.19   -4.06   -2.83   -1.34    0.90    4.49    9.69   16.09   22.47
+   285.0    0.00   -0.27   -0.77   -1.56   -2.67   -4.01   -5.31   -6.24   -6.55   -6.18   -5.31   -4.22   -3.06   -1.65    0.52    4.08    9.33   15.85   22.34
+   290.0    0.00   -0.27   -0.78   -1.57   -2.69   -4.03   -5.35   -6.32   -6.67   -6.34   -5.52   -4.48   -3.39   -2.06    0.03    3.55    8.85   15.51   22.10
+   295.0    0.00   -0.28   -0.79   -1.60   -2.73   -4.09   -5.44   -6.45   -6.84   -6.56   -5.80   -4.82   -3.81   -2.58   -0.57    2.93    8.29   15.08   21.76
+   300.0    0.00   -0.29   -0.82   -1.65   -2.81   -4.20   -5.58   -6.63   -7.07   -6.85   -6.15   -5.25   -4.32   -3.17   -1.23    2.25    7.66   14.57   21.33
+   305.0    0.00   -0.30   -0.85   -1.72   -2.91   -4.34   -5.76   -6.86   -7.36   -7.21   -6.57   -5.74   -4.89   -3.82   -1.94    1.52    6.99   13.99   20.82
+   310.0    0.00   -0.31   -0.89   -1.80   -3.03   -4.51   -5.98   -7.13   -7.70   -7.61   -7.05   -6.30   -5.52   -4.51   -2.67    0.77    6.27   13.36   20.24
+   315.0    0.00   -0.32   -0.94   -1.89   -3.18   -4.71   -6.24   -7.45   -8.08   -8.07   -7.58   -6.90   -6.17   -5.21   -3.41    0.02    5.54   12.66   19.57
+   320.0    0.00   -0.33   -0.99   -2.00   -3.35   -4.94   -6.52   -7.80   -8.50   -8.56   -8.15   -7.52   -6.85   -5.92   -4.15   -0.74    4.77   11.92   18.83
+   325.0    0.00   -0.34   -1.04   -2.11   -3.52   -5.18   -6.83   -8.17   -8.94   -9.08   -8.73   -8.16   -7.52   -6.62   -4.87   -1.48    4.00   11.12   18.03
+   330.0    0.00   -0.35   -1.09   -2.22   -3.71   -5.43   -7.15   -8.55   -9.40   -9.60   -9.31   -8.79   -8.17   -7.29   -5.55   -2.21    3.21   10.28   17.18
+   335.0    0.00   -0.36   -1.14   -2.33   -3.89   -5.68   -7.47   -8.94   -9.84  -10.11   -9.87   -9.39   -8.79   -7.91   -6.20   -2.91    2.44    9.42   16.31
+   340.0    0.00   -0.37   -1.19   -2.44   -4.07   -5.93   -7.78   -9.31  -10.27  -10.59  -10.40   -9.94   -9.35   -8.49   -6.80   -3.57    1.68    8.56   15.42
+   345.0    0.00   -0.38   -1.24   -2.54   -4.23   -6.16   -8.07   -9.64  -10.65  -11.02  -10.86  -10.43   -9.85   -8.99   -7.33   -4.16    0.97    7.74   14.57
+   350.0    0.00   -0.38   -1.27   -2.63   -4.38   -6.37   -8.32   -9.94  -10.98  -11.38  -11.25  -10.83  -10.27   -9.42   -7.78   -4.68    0.34    6.98   13.77
+   355.0    0.00   -0.38   -1.30   -2.70   -4.51   -6.54   -8.54  -10.19  -11.25  -11.66  -11.55  -11.15  -10.59   -9.75   -8.14   -5.10   -0.19    6.32   13.06
+   360.0    0.00   -0.38   -1.32   -2.76   -4.61   -6.68   -8.70  -10.37  -11.44  -11.86  -11.75  -11.36  -10.81   -9.97   -8.38   -5.39   -0.58    5.80   12.46
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH700718B      NONE                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               8    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+Number of Calibrated Antennas GPS:      008                 COMMENT             
+Number of Individual Calibrations GPS:  022                 COMMENT             
+   G01                                                      START OF FREQUENCY  
+     -1.67     -0.47     69.48                              NORTH / EAST / UP   
+   NOAZI    0.00    0.06    0.20    0.37    0.49    0.48    0.34    0.07   -0.33   -0.82   -1.38   -1.93   -2.36   -2.45   -2.00   -0.91    0.75    2.64    4.21
+     0.0    0.00   -0.02   -0.12   -0.29   -0.53   -0.88   -1.37   -2.05   -2.93   -3.95   -4.99   -5.87   -6.40   -6.43   -5.89   -4.78   -3.25   -1.62   -0.42
+     5.0    0.00   -0.04   -0.13   -0.25   -0.44   -0.74   -1.19   -1.85   -2.71   -3.74   -4.82   -5.76   -6.39   -6.53   -6.09   -5.07   -3.61   -2.03   -0.84
+    10.0    0.00   -0.06   -0.12   -0.20   -0.33   -0.57   -0.98   -1.60   -2.44   -3.47   -4.56   -5.55   -6.26   -6.50   -6.15   -5.20   -3.79   -2.23   -1.05
+    15.0    0.00   -0.08   -0.12   -0.14   -0.20   -0.37   -0.73   -1.31   -2.12   -3.12   -4.22   -5.25   -6.01   -6.33   -6.06   -5.17   -3.78   -2.22   -1.04
+    20.0    0.00   -0.10   -0.10   -0.06   -0.05   -0.16   -0.46   -0.99   -1.76   -2.73   -3.80   -4.84   -5.65   -6.03   -5.82   -4.96   -3.57   -2.01   -0.82
+    25.0    0.00   -0.11   -0.08    0.02    0.10    0.07   -0.17   -0.64   -1.36   -2.28   -3.32   -4.35   -5.19   -5.60   -5.42   -4.57   -3.18   -1.61   -0.41
+    30.0    0.00   -0.12   -0.06    0.10    0.26    0.30    0.13   -0.28   -0.93   -1.79   -2.79   -3.79   -4.62   -5.05   -4.89   -4.04   -2.63   -1.04    0.18
+    35.0    0.00   -0.13   -0.04    0.18    0.42    0.53    0.44    0.10   -0.49   -1.28   -2.21   -3.17   -3.98   -4.41   -4.23   -3.36   -1.92   -0.31    0.92
+    40.0    0.00   -0.15   -0.03    0.26    0.57    0.76    0.74    0.47   -0.04   -0.75   -1.61   -2.51   -3.28   -3.68   -3.47   -2.56   -1.09    0.56    1.82
+    45.0    0.00   -0.16   -0.02    0.32    0.70    0.97    1.02    0.83    0.41   -0.22   -1.00   -1.83   -2.54   -2.89   -2.64   -1.68   -0.15    1.54    2.85
+    50.0    0.00   -0.17   -0.01    0.38    0.82    1.16    1.29    1.18    0.84    0.30   -0.40   -1.15   -1.79   -2.08   -1.76   -0.72    0.88    2.63    4.01
+    55.0    0.00   -0.19   -0.01    0.41    0.91    1.31    1.52    1.49    1.24    0.79    0.18   -0.49   -1.05   -1.26   -0.85    0.27    1.96    3.80    5.27
+    60.0    0.00   -0.20   -0.02    0.43    0.97    1.43    1.71    1.76    1.60    1.24    0.72    0.13   -0.35   -0.46    0.04    1.27    3.08    5.02    6.62
+    65.0    0.00   -0.22   -0.04    0.42    0.99    1.50    1.84    1.98    1.90    1.63    1.20    0.70    0.30    0.28    0.89    2.24    4.18    6.27    8.01
+    70.0    0.00   -0.23   -0.07    0.39    0.98    1.53    1.92    2.13    2.14    1.95    1.61    1.19    0.88    0.95    1.68    3.16    5.24    7.48    9.40
+    75.0    0.00   -0.25   -0.11    0.34    0.92    1.49    1.93    2.20    2.29    2.19    1.93    1.59    1.37    1.53    2.37    3.98    6.21    8.62   10.73
+    80.0    0.00   -0.27   -0.15    0.26    0.83    1.40    1.87    2.19    2.35    2.32    2.14    1.88    1.74    2.00    2.93    4.67    7.05    9.63   11.92
+    85.0    0.00   -0.29   -0.21    0.16    0.69    1.25    1.74    2.10    2.31    2.35    2.24    2.06    1.99    2.33    3.36    5.20    7.71   10.45   12.89
+    90.0    0.00   -0.31   -0.27    0.04    0.52    1.05    1.52    1.91    2.16    2.27    2.23    2.11    2.11    2.51    3.61    5.54    8.15   11.01   13.57
+    95.0    0.00   -0.32   -0.34   -0.09    0.32    0.79    1.24    1.63    1.91    2.07    2.08    2.02    2.08    2.54    3.68    5.66    8.34   11.28   13.92
+   100.0    0.00   -0.34   -0.41   -0.24    0.09    0.49    0.90    1.27    1.57    1.75    1.81    1.80    1.91    2.39    3.55    5.55    8.25   11.22   13.88
+   105.0    0.00   -0.36   -0.48   -0.40   -0.16    0.16    0.51    0.84    1.13    1.33    1.42    1.45    1.58    2.08    3.23    5.20    7.87   10.83   13.44
+   110.0    0.00   -0.37   -0.55   -0.56   -0.42   -0.19    0.08    0.37    0.62    0.82    0.91    0.96    1.10    1.59    2.71    4.62    7.23   10.12   12.63
+   115.0    0.00   -0.38   -0.62   -0.71   -0.68   -0.55   -0.36   -0.15    0.06    0.23    0.32    0.36    0.50    0.96    2.01    3.83    6.33    9.12   11.49
+   120.0    0.00   -0.38   -0.68   -0.85   -0.92   -0.90   -0.81   -0.67   -0.53   -0.41   -0.35   -0.33   -0.22    0.19    1.16    2.86    5.23    7.88   10.08
+   125.0    0.00   -0.39   -0.72   -0.98   -1.14   -1.22   -1.23   -1.18   -1.12   -1.07   -1.07   -1.09   -1.03   -0.68    0.19    1.76    3.98    6.48    8.50
+   130.0    0.00   -0.38   -0.76   -1.08   -1.34   -1.51   -1.61   -1.66   -1.69   -1.73   -1.80   -1.89   -1.89   -1.63   -0.86    0.57    2.64    4.99    6.84
+   135.0    0.00   -0.38   -0.78   -1.16   -1.49   -1.75   -1.94   -2.08   -2.21   -2.34   -2.51   -2.69   -2.77   -2.59   -1.94   -0.64    1.28    3.50    5.20
+   140.0    0.00   -0.36   -0.78   -1.21   -1.59   -1.92   -2.19   -2.43   -2.65   -2.90   -3.17   -3.45   -3.62   -3.54   -3.00   -1.83   -0.04    2.06    3.67
+   145.0    0.00   -0.34   -0.77   -1.22   -1.65   -2.03   -2.37   -2.68   -3.01   -3.36   -3.75   -4.13   -4.41   -4.43   -4.00   -2.95   -1.27    0.74    2.30
+   150.0    0.00   -0.32   -0.74   -1.20   -1.65   -2.06   -2.45   -2.84   -3.25   -3.72   -4.22   -4.71   -5.09   -5.21   -4.88   -3.94   -2.36   -0.41    1.14
+   155.0    0.00   -0.29   -0.69   -1.14   -1.59   -2.02   -2.45   -2.89   -3.39   -3.95   -4.56   -5.16   -5.65   -5.86   -5.63   -4.78   -3.28   -1.37    0.21
+   160.0    0.00   -0.25   -0.62   -1.04   -1.48   -1.91   -2.35   -2.84   -3.40   -4.05   -4.76   -5.46   -6.04   -6.35   -6.20   -5.45   -4.02   -2.13   -0.48
+   165.0    0.00   -0.21   -0.53   -0.91   -1.32   -1.73   -2.18   -2.69   -3.30   -4.02   -4.82   -5.60   -6.27   -6.66   -6.60   -5.92   -4.56   -2.69   -0.96
+   170.0    0.00   -0.16   -0.42   -0.75   -1.11   -1.49   -1.93   -2.45   -3.10   -3.88   -4.73   -5.59   -6.33   -6.80   -6.81   -6.21   -4.91   -3.06   -1.25
+   175.0    0.00   -0.11   -0.31   -0.56   -0.86   -1.20   -1.61   -2.14   -2.81   -3.62   -4.52   -5.43   -6.23   -6.76   -6.85   -6.32   -5.08   -3.26   -1.38
+   180.0    0.00   -0.05   -0.18   -0.35   -0.57   -0.86   -1.25   -1.77   -2.44   -3.27   -4.20   -5.15   -6.00   -6.58   -6.73   -6.26   -5.08   -3.30   -1.37
+   185.0    0.00    0.00   -0.03   -0.12   -0.26   -0.49   -0.85   -1.35   -2.02   -2.85   -3.80   -4.77   -5.64   -6.27   -6.47   -6.06   -4.94   -3.20   -1.26
+   190.0    0.00    0.06    0.11    0.12    0.06   -0.11   -0.42   -0.90   -1.57   -2.39   -3.33   -4.31   -5.21   -5.87   -6.10   -5.73   -4.65   -2.97   -1.05
+   195.0    0.00    0.12    0.27    0.38    0.40    0.29    0.02   -0.45   -1.09   -1.90   -2.83   -3.81   -4.71   -5.39   -5.64   -5.29   -4.25   -2.62   -0.74
+   200.0    0.00    0.19    0.42    0.63    0.74    0.69    0.45    0.01   -0.61   -1.40   -2.32   -3.28   -4.19   -4.86   -5.11   -4.76   -3.74   -2.16   -0.34
+   205.0    0.00    0.25    0.57    0.88    1.08    1.09    0.88    0.46   -0.15   -0.92   -1.81   -2.75   -3.65   -4.31   -4.54   -4.17   -3.15   -1.60    0.16
+   210.0    0.00    0.30    0.72    1.12    1.40    1.46    1.28    0.88    0.29   -0.45   -1.31   -2.24   -3.11   -3.75   -3.95   -3.53   -2.47   -0.94    0.75
+   215.0    0.00    0.36    0.86    1.35    1.70    1.81    1.66    1.27    0.71   -0.01   -0.85   -1.75   -2.59   -3.20   -3.34   -2.85   -1.75   -0.22    1.42
+   220.0    0.00    0.41    0.98    1.56    1.97    2.13    2.00    1.63    1.08    0.39   -0.41   -1.28   -2.09   -2.65   -2.73   -2.16   -0.99    0.56    2.16
+   225.0    0.00    0.46    1.10    1.74    2.21    2.40    2.30    1.94    1.41    0.75   -0.02   -0.85   -1.62   -2.12   -2.12   -1.47   -0.23    1.35    2.93
+   230.0    0.00    0.50    1.20    1.90    2.42    2.64    2.55    2.21    1.70    1.08    0.35   -0.44   -1.16   -1.60   -1.53   -0.80    0.52    2.13    3.69
+   235.0    0.00    0.53    1.28    2.03    2.58    2.82    2.75    2.43    1.94    1.36    0.68   -0.06   -0.72   -1.10   -0.96   -0.16    1.22    2.87    4.42
+   240.0    0.00    0.56    1.35    2.13    2.70    2.96    2.89    2.59    2.13    1.59    0.96    0.29   -0.31   -0.63   -0.43    0.44    1.87    3.53    5.08
+   245.0    0.00    0.59    1.39    2.19    2.78    3.04    2.98    2.69    2.27    1.77    1.21    0.61    0.07   -0.19    0.06    0.97    2.43    4.10    5.64
+   250.0    0.00    0.60    1.42    2.22    2.80    3.06    3.00    2.73    2.35    1.90    1.41    0.88    0.41    0.21    0.50    1.43    2.89    4.56    6.09
+   255.0    0.00    0.61    1.42    2.21    2.78    3.03    2.97    2.71    2.36    1.97    1.55    1.09    0.70    0.55    0.88    1.82    3.27    4.92    6.43
+   260.0    0.00    0.61    1.41    2.17    2.71    2.94    2.87    2.62    2.31    1.97    1.62    1.24    0.92    0.82    1.18    2.12    3.56    5.19    6.66
+   265.0    0.00    0.61    1.38    2.10    2.60    2.79    2.71    2.48    2.19    1.90    1.61    1.31    1.05    1.01    1.40    2.34    3.77    5.38    6.82
+   270.0    0.00    0.59    1.33    2.00    2.45    2.60    2.50    2.26    2.00    1.76    1.52    1.29    1.10    1.11    1.53    2.49    3.92    5.52    6.92
+   275.0    0.00    0.58    1.26    1.87    2.26    2.36    2.24    1.99    1.74    1.53    1.34    1.16    1.03    1.10    1.57    2.56    4.02    5.63    7.00
+   280.0    0.00    0.55    1.18    1.72    2.03    2.09    1.93    1.67    1.43    1.23    1.07    0.94    0.87    1.00    1.52    2.57    4.07    5.72    7.07
+   285.0    0.00    0.52    1.09    1.55    1.79    1.78    1.58    1.31    1.05    0.86    0.71    0.61    0.59    0.79    1.39    2.51    4.09    5.80    7.15
+   290.0    0.00    0.49    0.99    1.36    1.52    1.45    1.21    0.91    0.63    0.42    0.28    0.19    0.22    0.48    1.17    2.40    4.07    5.86    7.23
+   295.0    0.00    0.45    0.88    1.17    1.25    1.11    0.83    0.48    0.17   -0.06   -0.23   -0.31   -0.25    0.09    0.88    2.22    4.01    5.89    7.29
+   300.0    0.00    0.41    0.77    0.97    0.97    0.77    0.44    0.05   -0.30   -0.58   -0.78   -0.87   -0.78   -0.37    0.52    1.97    3.88    5.87    7.30
+   305.0    0.00    0.37    0.66    0.78    0.70    0.44    0.05   -0.38   -0.78   -1.12   -1.37   -1.48   -1.37   -0.89    0.09    1.66    3.68    5.76    7.23
+   310.0    0.00    0.33    0.54    0.59    0.44    0.12   -0.31   -0.79   -1.25   -1.66   -1.96   -2.11   -1.99   -1.46   -0.39    1.27    3.38    5.54    7.04
+   315.0    0.00    0.29    0.44    0.41    0.20   -0.17   -0.64   -1.17   -1.70   -2.17   -2.55   -2.74   -2.62   -2.06   -0.93    0.80    2.98    5.18    6.70
+   320.0    0.00    0.25    0.33    0.24   -0.02   -0.43   -0.94   -1.51   -2.10   -2.65   -3.10   -3.35   -3.25   -2.67   -1.51    0.26    2.46    4.68    6.20
+   325.0    0.00    0.21    0.24    0.10   -0.21   -0.65   -1.18   -1.80   -2.45   -3.08   -3.61   -3.92   -3.86   -3.29   -2.12   -0.35    1.83    4.03    5.53
+   330.0    0.00    0.17    0.15   -0.03   -0.36   -0.82   -1.38   -2.03   -2.74   -3.45   -4.06   -4.44   -4.43   -3.89   -2.75   -1.02    1.11    3.25    4.72
+   335.0    0.00    0.13    0.08   -0.13   -0.48   -0.95   -1.52   -2.20   -2.96   -3.74   -4.44   -4.90   -4.95   -4.47   -3.38   -1.73    0.32    2.38    3.80
+   340.0    0.00    0.09    0.02   -0.21   -0.56   -1.03   -1.60   -2.30   -3.10   -3.95   -4.73   -5.27   -5.41   -5.01   -4.01   -2.44   -0.50    1.46    2.83
+   345.0    0.00    0.06   -0.03   -0.27   -0.61   -1.06   -1.62   -2.33   -3.17   -4.08   -4.93   -5.57   -5.80   -5.49   -4.59   -3.14   -1.31    0.55    1.87
+   350.0    0.00    0.03   -0.07   -0.29   -0.62   -1.04   -1.59   -2.30   -3.16   -4.12   -5.05   -5.77   -6.10   -5.90   -5.11   -3.78   -2.07   -0.30    0.97
+   355.0    0.00    0.00   -0.10   -0.30   -0.59   -0.98   -1.50   -2.20   -3.08   -4.07   -5.06   -5.87   -6.30   -6.22   -5.55   -4.34   -2.73   -1.04    0.19
+   360.0    0.00   -0.02   -0.12   -0.29   -0.53   -0.88   -1.37   -2.05   -2.93   -3.95   -4.99   -5.87   -6.40   -6.43   -5.89   -4.78   -3.25   -1.62   -0.42
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.91     -1.34     50.21                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.21   -0.87   -2.00   -3.54   -5.31   -7.00   -8.27   -8.91   -8.88   -8.38   -7.64   -6.76   -5.57   -3.62   -0.40    4.29   10.04   15.70
+     0.0    0.00   -0.38   -1.32   -2.76   -4.61   -6.68   -8.70  -10.37  -11.44  -11.86  -11.75  -11.36  -10.81   -9.97   -8.38   -5.39   -0.58    5.80   12.46
+     5.0    0.00   -0.38   -1.33   -2.79   -4.68   -6.78   -8.82  -10.48  -11.55  -11.96  -11.85  -11.46  -10.92  -10.08   -8.49   -5.54   -0.81    5.44   11.99
+    10.0    0.00   -0.37   -1.32   -2.81   -4.71   -6.83   -8.87  -10.53  -11.57  -11.96  -11.85  -11.46  -10.91  -10.07   -8.47   -5.52   -0.85    5.27   11.68
+    15.0    0.00   -0.36   -1.31   -2.80   -4.71   -6.83   -8.87  -10.50  -11.51  -11.88  -11.74  -11.34  -10.79   -9.92   -8.30   -5.34   -0.71    5.29   11.53
+    20.0    0.00   -0.34   -1.28   -2.76   -4.67   -6.78   -8.80  -10.40  -11.38  -11.70  -11.54  -11.12  -10.54   -9.65   -7.98   -4.98   -0.38    5.51   11.56
+    25.0    0.00   -0.33   -1.24   -2.70   -4.59   -6.69   -8.68  -10.24  -11.17  -11.45  -11.25  -10.80  -10.19   -9.25   -7.52   -4.47    0.13    5.91   11.75
+    30.0    0.00   -0.31   -1.19   -2.63   -4.49   -6.55   -8.51  -10.03  -10.90  -11.13  -10.88  -10.39   -9.74   -8.74   -6.93   -3.82    0.79    6.47   12.11
+    35.0    0.00   -0.28   -1.14   -2.53   -4.35   -6.37   -8.29   -9.75  -10.57  -10.74  -10.44   -9.90   -9.20   -8.14   -6.25   -3.06    1.57    7.18   12.64
+    40.0    0.00   -0.26   -1.07   -2.41   -4.18   -6.16   -8.02   -9.44  -10.20  -10.31   -9.95   -9.35   -8.59   -7.45   -5.48   -2.21    2.45    8.01   13.31
+    45.0    0.00   -0.23   -0.99   -2.28   -3.99   -5.91   -7.72   -9.08   -9.78   -9.83   -9.41   -8.75   -7.93   -6.72   -4.66   -1.31    3.39    8.92   14.12
+    50.0    0.00   -0.20   -0.91   -2.13   -3.78   -5.65   -7.40   -8.70   -9.34   -9.32   -8.83   -8.12   -7.23   -5.95   -3.81   -0.39    4.36    9.89   15.05
+    55.0    0.00   -0.17   -0.83   -1.98   -3.56   -5.36   -7.05   -8.29   -8.87   -8.78   -8.24   -7.46   -6.52   -5.17   -2.97    0.52    5.33   10.89   16.07
+    60.0    0.00   -0.14   -0.74   -1.83   -3.33   -5.06   -6.69   -7.87   -8.38   -8.24   -7.64   -6.80   -5.81   -4.41   -2.15    1.40    6.28   11.90   17.16
+    65.0    0.00   -0.11   -0.66   -1.67   -3.11   -4.77   -6.33   -7.44   -7.90   -7.70   -7.04   -6.16   -5.12   -3.68   -1.37    2.23    7.18   12.89   18.27
+    70.0    0.00   -0.09   -0.58   -1.53   -2.89   -4.48   -5.97   -7.03   -7.42   -7.17   -6.46   -5.54   -4.47   -3.00   -0.66    3.00    8.02   13.83   19.35
+    75.0    0.00   -0.06   -0.50   -1.39   -2.68   -4.21   -5.64   -6.63   -6.97   -6.66   -5.92   -4.97   -3.87   -2.38   -0.01    3.69    8.77   14.68   20.35
+    80.0    0.00   -0.04   -0.44   -1.26   -2.50   -3.96   -5.33   -6.27   -6.56   -6.21   -5.43   -4.45   -3.34   -1.84    0.54    4.28    9.42   15.42   21.23
+    85.0    0.00   -0.02   -0.38   -1.16   -2.34   -3.75   -5.07   -5.96   -6.20   -5.81   -5.01   -4.02   -2.90   -1.40    1.00    4.76    9.94   16.02   21.92
+    90.0    0.00    0.00   -0.33   -1.07   -2.21   -3.58   -4.86   -5.70   -5.91   -5.49   -4.67   -3.67   -2.56   -1.05    1.35    5.12   10.32   16.43   22.38
+    95.0    0.00    0.02   -0.29   -1.00   -2.12   -3.46   -4.71   -5.52   -5.70   -5.27   -4.43   -3.44   -2.32   -0.82    1.58    5.33   10.52   16.62   22.56
+   100.0    0.00    0.03   -0.27   -0.97   -2.06   -3.39   -4.62   -5.42   -5.59   -5.15   -4.31   -3.32   -2.21   -0.71    1.67    5.39   10.54   16.58   22.46
+   105.0    0.00    0.03   -0.26   -0.95   -2.05   -3.38   -4.61   -5.41   -5.58   -5.14   -4.31   -3.32   -2.22   -0.74    1.61    5.28   10.34   16.29   22.05
+   110.0    0.00    0.03   -0.26   -0.96   -2.08   -3.42   -4.67   -5.49   -5.67   -5.26   -4.44   -3.47   -2.37   -0.91    1.39    4.98    9.93   15.74   21.35
+   115.0    0.00    0.03   -0.27   -1.00   -2.15   -3.52   -4.80   -5.66   -5.88   -5.49   -4.71   -3.75   -2.67   -1.23    1.02    4.50    9.31   14.95   20.40
+   120.0    0.00    0.02   -0.30   -1.07   -2.25   -3.67   -5.01   -5.91   -6.19   -5.85   -5.10   -4.16   -3.10   -1.69    0.48    3.85    8.49   13.95   19.23
+   125.0    0.00    0.01   -0.34   -1.15   -2.39   -3.88   -5.27   -6.25   -6.59   -6.31   -5.60   -4.70   -3.66   -2.29   -0.19    3.04    7.50   12.77   17.91
+   130.0    0.00    0.00   -0.39   -1.25   -2.56   -4.12   -5.59   -6.65   -7.07   -6.86   -6.22   -5.35   -4.34   -3.02   -1.00    2.10    6.38   11.48   16.49
+   135.0    0.00   -0.02   -0.45   -1.38   -2.76   -4.39   -5.95   -7.10   -7.61   -7.49   -6.91   -6.09   -5.11   -3.84   -1.90    1.06    5.18   10.13   15.05
+   140.0    0.00   -0.03   -0.52   -1.51   -2.97   -4.69   -6.35   -7.59   -8.20   -8.18   -7.67   -6.90   -5.96   -4.72   -2.86   -0.02    3.96    8.78   13.65
+   145.0    0.00   -0.06   -0.59   -1.65   -3.19   -5.01   -6.75   -8.10   -8.82   -8.89   -8.46   -7.75   -6.84   -5.64   -3.84   -1.09    2.77    7.49   12.33
+   150.0    0.00   -0.08   -0.66   -1.80   -3.43   -5.33   -7.17   -8.61   -9.44   -9.61   -9.26   -8.60   -7.73   -6.56   -4.80   -2.12    1.66    6.32   11.15
+   155.0    0.00   -0.10   -0.74   -1.95   -3.66   -5.64   -7.57   -9.12  -10.04  -10.30  -10.03   -9.43   -8.58   -7.43   -5.69   -3.04    0.69    5.30   10.12
+   160.0    0.00   -0.13   -0.82   -2.09   -3.88   -5.94   -7.96   -9.59  -10.60  -10.95  -10.75  -10.19   -9.37   -8.21   -6.47   -3.83   -0.13    4.46    9.27
+   165.0    0.00   -0.15   -0.89   -2.23   -4.09   -6.23   -8.32  -10.02  -11.11  -11.53  -11.39  -10.86  -10.04   -8.87   -7.11   -4.46   -0.75    3.83    8.60
+   170.0    0.00   -0.17   -0.96   -2.36   -4.28   -6.48   -8.63  -10.39  -11.54  -12.01  -11.91  -11.40  -10.59   -9.39   -7.59   -4.90   -1.17    3.39    8.12
+   175.0    0.00   -0.20   -1.02   -2.47   -4.44   -6.70   -8.89  -10.70  -11.89  -12.39  -12.31  -11.81  -10.98   -9.75   -7.91   -5.17   -1.40    3.16    7.82
+   180.0    0.00   -0.22   -1.08   -2.57   -4.58   -6.87   -9.10  -10.93  -12.13  -12.64  -12.56  -12.05  -11.20   -9.94   -8.04   -5.25   -1.44    3.11    7.70
+   185.0    0.00   -0.24   -1.12   -2.65   -4.69   -7.00   -9.24  -11.08  -12.27  -12.77  -12.67  -12.13  -11.25   -9.95   -8.01   -5.16   -1.31    3.24    7.75
+   190.0    0.00   -0.25   -1.16   -2.71   -4.76   -7.08   -9.32  -11.14  -12.30  -12.76  -12.62  -12.04  -11.13   -9.80   -7.82   -4.92   -1.03    3.54    7.98
+   195.0    0.00   -0.27   -1.19   -2.74   -4.80   -7.11   -9.33  -11.11  -12.22  -12.62  -12.42  -11.80  -10.86   -9.50   -7.48   -4.54   -0.60    3.98    8.38
+   200.0    0.00   -0.28   -1.21   -2.75   -4.80   -7.08   -9.26  -10.99  -12.03  -12.35  -12.09  -11.42  -10.44   -9.07   -7.02   -4.04   -0.05    4.55    8.96
+   205.0    0.00   -0.29   -1.21   -2.74   -4.76   -7.01   -9.13  -10.79  -11.74  -11.98  -11.63  -10.91   -9.91   -8.52   -6.46   -3.44    0.60    5.26    9.70
+   210.0    0.00   -0.30   -1.21   -2.71   -4.69   -6.88   -8.94  -10.51  -11.37  -11.51  -11.09  -10.31   -9.28   -7.88   -5.81   -2.75    1.35    6.09   10.61
+   215.0    0.00   -0.30   -1.19   -2.66   -4.59   -6.71   -8.69  -10.17  -10.93  -10.97  -10.47   -9.64   -8.59   -7.18   -5.09   -1.99    2.18    7.02   11.65
+   220.0    0.00   -0.30   -1.17   -2.59   -4.45   -6.51   -8.40   -9.78  -10.45  -10.39   -9.80   -8.92   -7.85   -6.44   -4.33   -1.18    3.08    8.03   12.82
+   225.0    0.00   -0.30   -1.14   -2.51   -4.30   -6.27   -8.07   -9.36   -9.93   -9.78   -9.12   -8.19   -7.10   -5.67   -3.54   -0.32    4.03    9.11   14.06
+   230.0    0.00   -0.30   -1.11   -2.41   -4.13   -6.01   -7.72   -8.92   -9.40   -9.17   -8.45   -7.47   -6.35   -4.90   -2.73    0.55    5.01   10.22   15.35
+   235.0    0.00   -0.29   -1.06   -2.31   -3.94   -5.74   -7.36   -8.48   -8.88   -8.58   -7.80   -6.79   -5.64   -4.16   -1.94    1.41    5.98   11.33   16.63
+   240.0    0.00   -0.29   -1.02   -2.20   -3.75   -5.46   -7.01   -8.05   -8.39   -8.03   -7.20   -6.15   -4.97   -3.45   -1.19    2.24    6.91   12.40   17.86
+   245.0    0.00   -0.29   -0.98   -2.09   -3.56   -5.19   -6.67   -7.65   -7.94   -7.54   -6.67   -5.58   -4.36   -2.81   -0.50    3.00    7.77   13.39   19.00
+   250.0    0.00   -0.28   -0.93   -1.98   -3.38   -4.94   -6.35   -7.29   -7.54   -7.11   -6.21   -5.09   -3.83   -2.25    0.11    3.67    8.53   14.26   20.00
+   255.0    0.00   -0.27   -0.89   -1.88   -3.21   -4.70   -6.07   -6.97   -7.20   -6.75   -5.83   -4.68   -3.40   -1.78    0.60    4.21    9.15   14.99   20.85
+   260.0    0.00   -0.27   -0.85   -1.79   -3.05   -4.50   -5.83   -6.71   -6.93   -6.47   -5.53   -4.36   -3.06   -1.43    0.97    4.60    9.61   15.55   21.52
+   265.0    0.00   -0.27   -0.82   -1.71   -2.92   -4.32   -5.63   -6.50   -6.72   -6.27   -5.32   -4.14   -2.83   -1.21    1.18    4.83    9.89   15.94   22.00
+   270.0    0.00   -0.26   -0.80   -1.64   -2.82   -4.18   -5.47   -6.35   -6.58   -6.14   -5.19   -4.01   -2.72   -1.12    1.24    4.88    9.99   16.15   22.32
+   275.0    0.00   -0.26   -0.78   -1.60   -2.74   -4.08   -5.37   -6.26   -6.51   -6.08   -5.15   -3.99   -2.72   -1.16    1.15    4.77    9.92   16.19   22.46
+   280.0    0.00   -0.26   -0.77   -1.57   -2.69   -4.03   -5.31   -6.22   -6.50   -6.10   -5.19   -4.06   -2.83   -1.34    0.90    4.49    9.69   16.09   22.47
+   285.0    0.00   -0.27   -0.77   -1.56   -2.67   -4.01   -5.31   -6.24   -6.55   -6.18   -5.31   -4.22   -3.06   -1.65    0.52    4.08    9.33   15.85   22.34
+   290.0    0.00   -0.27   -0.78   -1.57   -2.69   -4.03   -5.35   -6.32   -6.67   -6.34   -5.52   -4.48   -3.39   -2.06    0.03    3.55    8.85   15.51   22.10
+   295.0    0.00   -0.28   -0.79   -1.60   -2.73   -4.09   -5.44   -6.45   -6.84   -6.56   -5.80   -4.82   -3.81   -2.58   -0.57    2.93    8.29   15.08   21.76
+   300.0    0.00   -0.29   -0.82   -1.65   -2.81   -4.20   -5.58   -6.63   -7.07   -6.85   -6.15   -5.25   -4.32   -3.17   -1.23    2.25    7.66   14.57   21.33
+   305.0    0.00   -0.30   -0.85   -1.72   -2.91   -4.34   -5.76   -6.86   -7.36   -7.21   -6.57   -5.74   -4.89   -3.82   -1.94    1.52    6.99   13.99   20.82
+   310.0    0.00   -0.31   -0.89   -1.80   -3.03   -4.51   -5.98   -7.13   -7.70   -7.61   -7.05   -6.30   -5.52   -4.51   -2.67    0.77    6.27   13.36   20.24
+   315.0    0.00   -0.32   -0.94   -1.89   -3.18   -4.71   -6.24   -7.45   -8.08   -8.07   -7.58   -6.90   -6.17   -5.21   -3.41    0.02    5.54   12.66   19.57
+   320.0    0.00   -0.33   -0.99   -2.00   -3.35   -4.94   -6.52   -7.80   -8.50   -8.56   -8.15   -7.52   -6.85   -5.92   -4.15   -0.74    4.77   11.92   18.83
+   325.0    0.00   -0.34   -1.04   -2.11   -3.52   -5.18   -6.83   -8.17   -8.94   -9.08   -8.73   -8.16   -7.52   -6.62   -4.87   -1.48    4.00   11.12   18.03
+   330.0    0.00   -0.35   -1.09   -2.22   -3.71   -5.43   -7.15   -8.55   -9.40   -9.60   -9.31   -8.79   -8.17   -7.29   -5.55   -2.21    3.21   10.28   17.18
+   335.0    0.00   -0.36   -1.14   -2.33   -3.89   -5.68   -7.47   -8.94   -9.84  -10.11   -9.87   -9.39   -8.79   -7.91   -6.20   -2.91    2.44    9.42   16.31
+   340.0    0.00   -0.37   -1.19   -2.44   -4.07   -5.93   -7.78   -9.31  -10.27  -10.59  -10.40   -9.94   -9.35   -8.49   -6.80   -3.57    1.68    8.56   15.42
+   345.0    0.00   -0.38   -1.24   -2.54   -4.23   -6.16   -8.07   -9.64  -10.65  -11.02  -10.86  -10.43   -9.85   -8.99   -7.33   -4.16    0.97    7.74   14.57
+   350.0    0.00   -0.38   -1.27   -2.63   -4.38   -6.37   -8.32   -9.94  -10.98  -11.38  -11.25  -10.83  -10.27   -9.42   -7.78   -4.68    0.34    6.98   13.77
+   355.0    0.00   -0.38   -1.30   -2.70   -4.51   -6.54   -8.54  -10.19  -11.25  -11.66  -11.55  -11.15  -10.59   -9.75   -8.14   -5.10   -0.19    6.32   13.06
+   360.0    0.00   -0.38   -1.32   -2.76   -4.61   -6.68   -8.70  -10.37  -11.44  -11.86  -11.75  -11.36  -10.81   -9.97   -8.38   -5.39   -0.58    5.80   12.46
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH700829.2     SNOW                                        TYPE / SERIAL NO    
+FIELD               NGS                      7    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+     -0.62     -1.17     69.55                              NORTH / EAST / UP   
+   NOAZI    0.00    1.37    2.60    3.57    4.28    4.68    4.74    4.61    4.33    3.89    3.54    3.21    2.97    2.95    3.32    4.39    6.47
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.82     -2.19     52.15                              NORTH / EAST / UP   
+   NOAZI    0.00   -2.43   -4.41   -6.08   -7.49   -8.78   -9.89  -10.77  -11.51  -11.91  -11.85  -11.16   -9.83   -7.83   -5.03   -1.21    3.75
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH700829.3     SNOW                                        TYPE / SERIAL NO    
+FIELD               NGS                      7    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+     -0.62     -1.17     69.55                              NORTH / EAST / UP   
+   NOAZI    0.00    1.37    2.60    3.57    4.28    4.68    4.74    4.61    4.33    3.89    3.54    3.21    2.97    2.95    3.32    4.39    6.47
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.82     -2.19     52.15                              NORTH / EAST / UP   
+   NOAZI    0.00   -2.43   -4.41   -6.08   -7.49   -8.78   -9.89  -10.77  -11.51  -11.91  -11.85  -11.16   -9.83   -7.83   -5.03   -1.21    3.75
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH700829.A     SNOW                                        TYPE / SERIAL NO    
+FIELD               NGS                      7    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+     -0.62     -1.17     69.55                              NORTH / EAST / UP   
+   NOAZI    0.00    1.37    2.60    3.57    4.28    4.68    4.74    4.61    4.33    3.89    3.54    3.21    2.97    2.95    3.32    4.39    6.47
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.82     -2.19     52.15                              NORTH / EAST / UP   
+   NOAZI    0.00   -2.43   -4.41   -6.08   -7.49   -8.78   -9.89  -10.77  -11.51  -11.91  -11.85  -11.16   -9.83   -7.83   -5.03   -1.21    3.75
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH700829.A1    SNOW                                        TYPE / SERIAL NO    
+FIELD               NGS                      7    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+     -0.62     -1.17     69.55                              NORTH / EAST / UP   
+   NOAZI    0.00    1.37    2.60    3.57    4.28    4.68    4.74    4.61    4.33    3.89    3.54    3.21    2.97    2.95    3.32    4.39    6.47
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.82     -2.19     52.15                              NORTH / EAST / UP   
+   NOAZI    0.00   -2.43   -4.41   -6.08   -7.49   -8.78   -9.89  -10.77  -11.51  -11.91  -11.85  -11.16   -9.83   -7.83   -5.03   -1.21    3.75
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH700936A_M    NONE                                        TYPE / SERIAL NO    
+COPIED              Geo++ GmbH               2    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+COPIED FROM AOAD/M_T        NONE                            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.58     -0.37     91.85                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.23   -0.90   -1.93   -3.22   -4.62   -5.96   -7.09   -7.87   -8.21   -8.06   -7.39   -6.23   -4.55   -2.28    0.69    4.47    9.08   14.23
+     0.0    0.00   -0.27   -0.98   -2.07   -3.42   -4.87   -6.26   -7.43   -8.21   -8.53   -8.32   -7.62   -6.44   -4.77   -2.54    0.39    4.14    8.68   13.67
+     5.0    0.00   -0.27   -0.98   -2.06   -3.41   -4.86   -6.25   -7.41   -8.20   -8.52   -8.31   -7.60   -6.41   -4.74   -2.50    0.42    4.18    8.73   13.73
+    10.0    0.00   -0.26   -0.97   -2.05   -3.39   -4.84   -6.23   -7.40   -8.19   -8.50   -8.30   -7.58   -6.38   -4.70   -2.46    0.47    4.23    8.79   13.83
+    15.0    0.00   -0.26   -0.97   -2.05   -3.38   -4.82   -6.21   -7.37   -8.17   -8.49   -8.28   -7.56   -6.36   -4.66   -2.41    0.53    4.30    8.88   13.96
+    20.0    0.00   -0.26   -0.96   -2.03   -3.36   -4.80   -6.18   -7.35   -8.15   -8.47   -8.27   -7.54   -6.33   -4.62   -2.36    0.60    4.38    9.00   14.12
+    25.0    0.00   -0.26   -0.96   -2.02   -3.34   -4.77   -6.16   -7.32   -8.12   -8.44   -8.25   -7.53   -6.30   -4.58   -2.30    0.68    4.49    9.13   14.31
+    30.0    0.00   -0.26   -0.95   -2.01   -3.32   -4.75   -6.12   -7.28   -8.08   -8.42   -8.22   -7.51   -6.28   -4.54   -2.24    0.77    4.61    9.29   14.51
+    35.0    0.00   -0.25   -0.94   -2.00   -3.30   -4.72   -6.09   -7.25   -8.05   -8.38   -8.20   -7.48   -6.25   -4.50   -2.17    0.87    4.75    9.46   14.71
+    40.0    0.00   -0.25   -0.93   -1.98   -3.28   -4.69   -6.05   -7.21   -8.01   -8.35   -8.17   -7.46   -6.23   -4.46   -2.10    0.97    4.88    9.62   14.90
+    45.0    0.00   -0.25   -0.93   -1.97   -3.26   -4.66   -6.02   -7.16   -7.96   -8.30   -8.13   -7.43   -6.19   -4.42   -2.03    1.08    5.02    9.78   15.07
+    50.0    0.00   -0.24   -0.92   -1.95   -3.24   -4.63   -5.98   -7.12   -7.91   -8.26   -8.09   -7.39   -6.16   -4.37   -1.97    1.17    5.14    9.92   15.22
+    55.0    0.00   -0.24   -0.91   -1.94   -3.21   -4.60   -5.94   -7.07   -7.86   -8.20   -8.04   -7.35   -6.12   -4.33   -1.91    1.24    5.24   10.04   15.34
+    60.0    0.00   -0.24   -0.90   -1.92   -3.19   -4.57   -5.90   -7.02   -7.81   -8.15   -7.99   -7.30   -6.08   -4.29   -1.87    1.30    5.31   10.11   15.41
+    65.0    0.00   -0.23   -0.89   -1.91   -3.17   -4.54   -5.86   -6.97   -7.75   -8.09   -7.93   -7.25   -6.03   -4.25   -1.83    1.33    5.34   10.15   15.45
+    70.0    0.00   -0.23   -0.89   -1.90   -3.15   -4.51   -5.82   -6.93   -7.70   -8.03   -7.88   -7.20   -5.99   -4.22   -1.82    1.33    5.33   10.14   15.45
+    75.0    0.00   -0.23   -0.88   -1.88   -3.13   -4.49   -5.79   -6.89   -7.65   -7.98   -7.82   -7.15   -5.96   -4.21   -1.82    1.31    5.28   10.08   15.40
+    80.0    0.00   -0.23   -0.87   -1.87   -3.12   -4.46   -5.76   -6.85   -7.61   -7.94   -7.78   -7.11   -5.93   -4.20   -1.85    1.25    5.20    9.99   15.32
+    85.0    0.00   -0.22   -0.87   -1.86   -3.10   -4.44   -5.74   -6.83   -7.58   -7.91   -7.75   -7.09   -5.92   -4.21   -1.89    1.17    5.09    9.86   15.20
+    90.0    0.00   -0.22   -0.86   -1.86   -3.09   -4.43   -5.72   -6.81   -7.56   -7.89   -7.73   -7.08   -5.92   -4.24   -1.95    1.08    4.96    9.71   15.05
+    95.0    0.00   -0.22   -0.86   -1.85   -3.09   -4.42   -5.71   -6.80   -7.56   -7.89   -7.73   -7.09   -5.94   -4.28   -2.02    0.97    4.82    9.54   14.88
+   100.0    0.00   -0.22   -0.86   -1.85   -3.08   -4.42   -5.71   -6.80   -7.56   -7.90   -7.75   -7.11   -5.98   -4.34   -2.11    0.86    4.68    9.37   14.70
+   105.0    0.00   -0.22   -0.86   -1.85   -3.08   -4.42   -5.72   -6.81   -7.58   -7.92   -7.78   -7.16   -6.04   -4.41   -2.19    0.75    4.54    9.21   14.52
+   110.0    0.00   -0.21   -0.85   -1.85   -3.09   -4.43   -5.73   -6.83   -7.61   -7.96   -7.83   -7.21   -6.10   -4.49   -2.28    0.64    4.42    9.07   14.35
+   115.0    0.00   -0.21   -0.85   -1.85   -3.09   -4.44   -5.75   -6.86   -7.65   -8.01   -7.89   -7.28   -6.18   -4.57   -2.36    0.56    4.32    8.95   14.20
+   120.0    0.00   -0.21   -0.86   -1.86   -3.10   -4.46   -5.77   -6.90   -7.69   -8.06   -7.95   -7.35   -6.25   -4.64   -2.44    0.48    4.25    8.86   14.08
+   125.0    0.00   -0.21   -0.86   -1.86   -3.12   -4.48   -5.80   -6.93   -7.73   -8.11   -8.01   -7.42   -6.33   -4.72   -2.50    0.43    4.20    8.81   13.99
+   130.0    0.00   -0.21   -0.86   -1.87   -3.13   -4.50   -5.83   -6.97   -7.78   -8.16   -8.07   -7.48   -6.39   -4.78   -2.55    0.40    4.18    8.78   13.94
+   135.0    0.00   -0.21   -0.86   -1.88   -3.15   -4.53   -5.86   -7.01   -7.82   -8.21   -8.12   -7.54   -6.45   -4.83   -2.59    0.38    4.17    8.78   13.92
+   140.0    0.00   -0.21   -0.86   -1.89   -3.16   -4.55   -5.89   -7.04   -7.85   -8.24   -8.16   -7.58   -6.49   -4.87   -2.62    0.37    4.18    8.79   13.93
+   145.0    0.00   -0.21   -0.87   -1.89   -3.18   -4.57   -5.92   -7.07   -7.88   -8.28   -8.19   -7.61   -6.52   -4.89   -2.63    0.37    4.19    8.81   13.95
+   150.0    0.00   -0.21   -0.87   -1.90   -3.19   -4.59   -5.95   -7.10   -7.91   -8.30   -8.21   -7.63   -6.54   -4.90   -2.63    0.37    4.21    8.83   13.98
+   155.0    0.00   -0.21   -0.87   -1.91   -3.20   -4.61   -5.97   -7.12   -7.93   -8.32   -8.23   -7.65   -6.55   -4.91   -2.64    0.38    4.21    8.84   14.00
+   160.0    0.00   -0.21   -0.87   -1.91   -3.21   -4.63   -5.98   -7.13   -7.94   -8.33   -8.24   -7.65   -6.56   -4.91   -2.64    0.38    4.21    8.83   14.00
+   165.0    0.00   -0.21   -0.88   -1.92   -3.22   -4.64   -6.00   -7.14   -7.95   -8.34   -8.24   -7.65   -6.55   -4.91   -2.64    0.37    4.19    8.81   13.98
+   170.0    0.00   -0.21   -0.88   -1.92   -3.23   -4.64   -6.00   -7.15   -7.96   -8.34   -8.25   -7.65   -6.55   -4.91   -2.64    0.35    4.16    8.76   13.93
+   175.0    0.00   -0.21   -0.88   -1.92   -3.23   -4.65   -6.01   -7.16   -7.97   -8.35   -8.25   -7.65   -6.55   -4.90   -2.64    0.33    4.11    8.70   13.87
+   180.0    0.00   -0.21   -0.88   -1.92   -3.23   -4.65   -6.01   -7.16   -7.97   -8.35   -8.25   -7.66   -6.55   -4.90   -2.65    0.31    4.07    8.63   13.79
+   185.0    0.00   -0.21   -0.88   -1.92   -3.23   -4.64   -6.00   -7.16   -7.97   -8.36   -8.26   -7.66   -6.55   -4.90   -2.66    0.28    4.02    8.57   13.72
+   190.0    0.00   -0.21   -0.87   -1.92   -3.22   -4.64   -6.00   -7.15   -7.97   -8.36   -8.26   -7.66   -6.54   -4.90   -2.67    0.26    3.99    8.52   13.66
+   195.0    0.00   -0.21   -0.87   -1.91   -3.21   -4.63   -5.99   -7.15   -7.97   -8.35   -8.25   -7.65   -6.53   -4.89   -2.66    0.26    3.97    8.50   13.64
+   200.0    0.00   -0.21   -0.87   -1.91   -3.20   -4.61   -5.98   -7.14   -7.96   -8.34   -8.24   -7.63   -6.52   -4.88   -2.65    0.27    3.98    8.52   13.67
+   205.0    0.00   -0.21   -0.87   -1.90   -3.19   -4.60   -5.96   -7.12   -7.94   -8.33   -8.22   -7.61   -6.49   -4.85   -2.62    0.30    4.03    8.58   13.75
+   210.0    0.00   -0.21   -0.87   -1.89   -3.18   -4.59   -5.94   -7.10   -7.92   -8.30   -8.19   -7.57   -6.45   -4.80   -2.57    0.35    4.11    8.70   13.88
+   215.0    0.00   -0.21   -0.86   -1.89   -3.17   -4.57   -5.92   -7.08   -7.89   -8.26   -8.14   -7.52   -6.39   -4.74   -2.51    0.44    4.22    8.85   14.06
+   220.0    0.00   -0.21   -0.86   -1.88   -3.16   -4.55   -5.90   -7.05   -7.85   -8.22   -8.09   -7.46   -6.32   -4.67   -2.42    0.54    4.36    9.04   14.28
+   225.0    0.00   -0.21   -0.86   -1.88   -3.15   -4.53   -5.88   -7.01   -7.81   -8.17   -8.03   -7.38   -6.24   -4.58   -2.32    0.67    4.53    9.25   14.52
+   230.0    0.00   -0.21   -0.86   -1.87   -3.14   -4.52   -5.85   -6.98   -7.77   -8.11   -7.96   -7.30   -6.15   -4.48   -2.20    0.81    4.71    9.46   14.74
+   235.0    0.00   -0.21   -0.86   -1.87   -3.13   -4.50   -5.83   -6.95   -7.72   -8.05   -7.89   -7.22   -6.06   -4.37   -2.08    0.96    4.88    9.66   14.94
+   240.0    0.00   -0.22   -0.86   -1.86   -3.12   -4.49   -5.80   -6.91   -7.68   -7.99   -7.82   -7.14   -5.97   -4.27   -1.96    1.10    5.04    9.83   15.09
+   245.0    0.00   -0.22   -0.86   -1.86   -3.12   -4.48   -5.78   -6.88   -7.64   -7.94   -7.76   -7.07   -5.88   -4.17   -1.84    1.23    5.18    9.95   15.17
+   250.0    0.00   -0.22   -0.86   -1.87   -3.11   -4.47   -5.77   -6.86   -7.60   -7.90   -7.71   -7.01   -5.81   -4.08   -1.74    1.34    5.27   10.01   15.19
+   255.0    0.00   -0.22   -0.87   -1.87   -3.12   -4.47   -5.76   -6.84   -7.58   -7.87   -7.67   -6.97   -5.76   -4.01   -1.66    1.41    5.32   10.00   15.12
+   260.0    0.00   -0.22   -0.87   -1.87   -3.12   -4.47   -5.76   -6.84   -7.57   -7.86   -7.65   -6.94   -5.72   -3.97   -1.61    1.45    5.32    9.94   15.00
+   265.0    0.00   -0.23   -0.88   -1.88   -3.13   -4.48   -5.77   -6.84   -7.57   -7.86   -7.65   -6.93   -5.70   -3.94   -1.59    1.45    5.26    9.81   14.82
+   270.0    0.00   -0.23   -0.88   -1.89   -3.14   -4.49   -5.78   -6.85   -7.58   -7.87   -7.66   -6.94   -5.71   -3.94   -1.60    1.41    5.16    9.65   14.61
+   275.0    0.00   -0.23   -0.89   -1.90   -3.16   -4.51   -5.80   -6.88   -7.61   -7.90   -7.69   -6.97   -5.73   -3.97   -1.64    1.33    5.03    9.45   14.39
+   280.0    0.00   -0.23   -0.90   -1.92   -3.18   -4.54   -5.83   -6.91   -7.64   -7.93   -7.73   -7.01   -5.77   -4.02   -1.71    1.23    4.87    9.24   14.18
+   285.0    0.00   -0.24   -0.91   -1.93   -3.20   -4.56   -5.87   -6.95   -7.69   -7.98   -7.78   -7.06   -5.83   -4.09   -1.80    1.10    4.70    9.04   13.99
+   290.0    0.00   -0.24   -0.91   -1.95   -3.23   -4.60   -5.91   -7.00   -7.74   -8.04   -7.83   -7.12   -5.90   -4.17   -1.91    0.96    4.53    8.85   13.85
+   295.0    0.00   -0.24   -0.92   -1.96   -3.25   -4.63   -5.95   -7.05   -7.79   -8.09   -7.90   -7.19   -5.97   -4.26   -2.02    0.82    4.37    8.70   13.74
+   300.0    0.00   -0.25   -0.93   -1.98   -3.28   -4.67   -6.00   -7.10   -7.85   -8.15   -7.96   -7.26   -6.06   -4.36   -2.14    0.69    4.23    8.58   13.68
+   305.0    0.00   -0.25   -0.94   -2.00   -3.30   -4.71   -6.04   -7.16   -7.91   -8.21   -8.02   -7.32   -6.14   -4.46   -2.26    0.57    4.12    8.51   13.66
+   310.0    0.00   -0.25   -0.95   -2.01   -3.33   -4.74   -6.09   -7.21   -7.97   -8.27   -8.08   -7.39   -6.22   -4.55   -2.36    0.46    4.04    8.47   13.66
+   315.0    0.00   -0.26   -0.96   -2.03   -3.35   -4.78   -6.13   -7.26   -8.02   -8.33   -8.14   -7.45   -6.29   -4.64   -2.45    0.39    4.00    8.46   13.68
+   320.0    0.00   -0.26   -0.96   -2.04   -3.37   -4.81   -6.17   -7.30   -8.07   -8.38   -8.19   -7.51   -6.35   -4.71   -2.52    0.33    3.97    8.47   13.69
+   325.0    0.00   -0.26   -0.97   -2.05   -3.39   -4.83   -6.20   -7.34   -8.11   -8.42   -8.23   -7.55   -6.40   -4.76   -2.57    0.30    3.97    8.50   13.71
+   330.0    0.00   -0.26   -0.98   -2.06   -3.41   -4.85   -6.23   -7.37   -8.14   -8.45   -8.27   -7.59   -6.44   -4.81   -2.61    0.28    3.98    8.53   13.70
+   335.0    0.00   -0.26   -0.98   -2.07   -3.42   -4.87   -6.25   -7.40   -8.17   -8.48   -8.30   -7.62   -6.47   -4.83   -2.63    0.28    4.01    8.56   13.69
+   340.0    0.00   -0.27   -0.98   -2.07   -3.42   -4.88   -6.27   -7.42   -8.19   -8.51   -8.32   -7.64   -6.48   -4.84   -2.63    0.29    4.03    8.59   13.67
+   345.0    0.00   -0.27   -0.98   -2.08   -3.43   -4.88   -6.27   -7.43   -8.21   -8.52   -8.33   -7.64   -6.48   -4.84   -2.62    0.30    4.06    8.61   13.65
+   350.0    0.00   -0.27   -0.98   -2.08   -3.43   -4.88   -6.28   -7.43   -8.22   -8.53   -8.33   -7.64   -6.48   -4.82   -2.60    0.33    4.08    8.63   13.63
+   355.0    0.00   -0.27   -0.98   -2.07   -3.42   -4.88   -6.27   -7.43   -8.22   -8.53   -8.33   -7.63   -6.46   -4.80   -2.58    0.35    4.11    8.65   13.64
+   360.0    0.00   -0.27   -0.98   -2.07   -3.42   -4.87   -6.26   -7.43   -8.21   -8.53   -8.32   -7.62   -6.44   -4.77   -2.54    0.39    4.14    8.68   13.67
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.08     -0.59    120.35                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.13   -0.51   -1.08   -1.79   -2.58   -3.39   -4.17   -4.81   -5.21   -5.25   -4.86   -4.03   -2.83   -1.33    0.49    2.75    5.68    9.44
+     0.0    0.00   -0.12   -0.48   -1.02   -1.69   -2.44   -3.24   -4.04   -4.72   -5.17   -5.25   -4.89   -4.12   -3.00   -1.59    0.15    2.44    5.50    9.31
+     5.0    0.00   -0.12   -0.48   -1.02   -1.69   -2.44   -3.24   -4.03   -4.72   -5.16   -5.25   -4.90   -4.13   -3.01   -1.61    0.14    2.42    5.45    9.20
+    10.0    0.00   -0.12   -0.47   -1.01   -1.68   -2.44   -3.24   -4.03   -4.71   -5.15   -5.24   -4.90   -4.13   -3.02   -1.61    0.14    2.41    5.41    9.12
+    15.0    0.00   -0.12   -0.47   -1.01   -1.68   -2.44   -3.24   -4.02   -4.70   -5.14   -5.23   -4.89   -4.13   -3.02   -1.60    0.15    2.41    5.38    9.06
+    20.0    0.00   -0.11   -0.47   -1.01   -1.68   -2.44   -3.24   -4.02   -4.69   -5.13   -5.21   -4.88   -4.12   -3.00   -1.58    0.18    2.43    5.37    9.05
+    25.0    0.00   -0.11   -0.46   -1.00   -1.68   -2.44   -3.24   -4.02   -4.68   -5.11   -5.20   -4.86   -4.10   -2.97   -1.54    0.22    2.46    5.39    9.06
+    30.0    0.00   -0.11   -0.46   -1.00   -1.68   -2.45   -3.24   -4.01   -4.67   -5.09   -5.18   -4.84   -4.07   -2.93   -1.49    0.28    2.51    5.42    9.11
+    35.0    0.00   -0.11   -0.46   -1.00   -1.68   -2.45   -3.24   -4.01   -4.66   -5.08   -5.16   -4.81   -4.03   -2.88   -1.42    0.35    2.58    5.48    9.19
+    40.0    0.00   -0.11   -0.45   -1.00   -1.68   -2.45   -3.25   -4.01   -4.65   -5.06   -5.13   -4.78   -4.00   -2.83   -1.36    0.42    2.65    5.55    9.30
+    45.0    0.00   -0.10   -0.45   -0.99   -1.68   -2.45   -3.25   -4.01   -4.65   -5.05   -5.11   -4.75   -3.96   -2.78   -1.30    0.49    2.72    5.62    9.41
+    50.0    0.00   -0.10   -0.45   -0.99   -1.68   -2.45   -3.25   -4.01   -4.65   -5.05   -5.10   -4.72   -3.92   -2.73   -1.24    0.56    2.78    5.69    9.52
+    55.0    0.00   -0.10   -0.45   -0.99   -1.68   -2.46   -3.26   -4.02   -4.65   -5.04   -5.09   -4.70   -3.88   -2.69   -1.19    0.60    2.84    5.76    9.62
+    60.0    0.00   -0.10   -0.44   -0.99   -1.68   -2.46   -3.27   -4.03   -4.66   -5.05   -5.08   -4.68   -3.86   -2.66   -1.16    0.64    2.87    5.81    9.70
+    65.0    0.00   -0.10   -0.44   -0.99   -1.69   -2.47   -3.28   -4.05   -4.68   -5.06   -5.08   -4.67   -3.84   -2.64   -1.15    0.65    2.89    5.84    9.76
+    70.0    0.00   -0.10   -0.44   -0.99   -1.69   -2.48   -3.30   -4.07   -4.70   -5.07   -5.08   -4.67   -3.83   -2.64   -1.15    0.64    2.88    5.85    9.79
+    75.0    0.00   -0.10   -0.44   -0.99   -1.69   -2.49   -3.31   -4.09   -4.72   -5.09   -5.09   -4.67   -3.84   -2.65   -1.17    0.61    2.86    5.83    9.78
+    80.0    0.00   -0.10   -0.45   -1.00   -1.70   -2.50   -3.33   -4.12   -4.75   -5.11   -5.11   -4.68   -3.85   -2.67   -1.21    0.57    2.82    5.80    9.74
+    85.0    0.00   -0.10   -0.45   -1.00   -1.71   -2.52   -3.36   -4.14   -4.78   -5.14   -5.13   -4.70   -3.87   -2.70   -1.25    0.52    2.77    5.75    9.67
+    90.0    0.00   -0.10   -0.45   -1.01   -1.72   -2.54   -3.38   -4.17   -4.81   -5.17   -5.15   -4.72   -3.89   -2.73   -1.29    0.47    2.71    5.68    9.57
+    95.0    0.00   -0.10   -0.46   -1.02   -1.74   -2.55   -3.40   -4.20   -4.83   -5.19   -5.18   -4.74   -3.92   -2.77   -1.33    0.42    2.66    5.62    9.47
+   100.0    0.00   -0.11   -0.46   -1.03   -1.75   -2.58   -3.43   -4.22   -4.86   -5.22   -5.20   -4.77   -3.95   -2.80   -1.37    0.38    2.61    5.56    9.36
+   105.0    0.00   -0.11   -0.47   -1.04   -1.77   -2.60   -3.45   -4.25   -4.88   -5.24   -5.22   -4.79   -3.97   -2.82   -1.40    0.35    2.58    5.51    9.26
+   110.0    0.00   -0.11   -0.48   -1.05   -1.79   -2.62   -3.47   -4.27   -4.90   -5.26   -5.25   -4.82   -4.00   -2.84   -1.41    0.35    2.57    5.48    9.18
+   115.0    0.00   -0.11   -0.48   -1.07   -1.81   -2.64   -3.50   -4.29   -4.92   -5.28   -5.26   -4.84   -4.01   -2.85   -1.41    0.36    2.58    5.46    9.13
+   120.0    0.00   -0.12   -0.49   -1.08   -1.83   -2.66   -3.52   -4.30   -4.93   -5.29   -5.28   -4.85   -4.03   -2.86   -1.39    0.38    2.61    5.47    9.10
+   125.0    0.00   -0.12   -0.50   -1.10   -1.85   -2.68   -3.53   -4.32   -4.94   -5.30   -5.29   -4.87   -4.03   -2.85   -1.37    0.43    2.65    5.50    9.09
+   130.0    0.00   -0.12   -0.50   -1.11   -1.86   -2.70   -3.55   -4.33   -4.95   -5.30   -5.30   -4.88   -4.04   -2.84   -1.33    0.48    2.71    5.54    9.11
+   135.0    0.00   -0.12   -0.51   -1.12   -1.88   -2.72   -3.56   -4.33   -4.95   -5.30   -5.30   -4.88   -4.04   -2.82   -1.29    0.54    2.77    5.60    9.15
+   140.0    0.00   -0.13   -0.52   -1.13   -1.89   -2.73   -3.57   -4.33   -4.95   -5.31   -5.31   -4.89   -4.04   -2.80   -1.25    0.60    2.84    5.66    9.19
+   145.0    0.00   -0.13   -0.52   -1.14   -1.90   -2.74   -3.57   -4.33   -4.94   -5.31   -5.31   -4.89   -4.04   -2.79   -1.22    0.65    2.90    5.71    9.23
+   150.0    0.00   -0.13   -0.53   -1.15   -1.91   -2.74   -3.57   -4.33   -4.94   -5.31   -5.32   -4.90   -4.04   -2.78   -1.19    0.69    2.94    5.74    9.25
+   155.0    0.00   -0.13   -0.53   -1.15   -1.91   -2.74   -3.57   -4.33   -4.94   -5.31   -5.33   -4.91   -4.05   -2.78   -1.18    0.71    2.97    5.76    9.25
+   160.0    0.00   -0.13   -0.53   -1.15   -1.91   -2.74   -3.56   -4.32   -4.93   -5.31   -5.33   -4.92   -4.06   -2.78   -1.18    0.71    2.97    5.76    9.23
+   165.0    0.00   -0.14   -0.54   -1.15   -1.91   -2.73   -3.55   -4.31   -4.93   -5.31   -5.34   -4.94   -4.07   -2.80   -1.19    0.70    2.95    5.73    9.18
+   170.0    0.00   -0.14   -0.54   -1.15   -1.90   -2.72   -3.54   -4.30   -4.93   -5.32   -5.35   -4.95   -4.09   -2.82   -1.22    0.66    2.91    5.68    9.11
+   175.0    0.00   -0.14   -0.54   -1.15   -1.90   -2.71   -3.53   -4.30   -4.93   -5.32   -5.36   -4.96   -4.11   -2.84   -1.26    0.61    2.85    5.62    9.03
+   180.0    0.00   -0.14   -0.54   -1.14   -1.89   -2.70   -3.52   -4.29   -4.93   -5.33   -5.37   -4.97   -4.12   -2.87   -1.30    0.55    2.77    5.55    8.96
+   185.0    0.00   -0.14   -0.54   -1.14   -1.87   -2.69   -3.51   -4.29   -4.93   -5.34   -5.38   -4.98   -4.13   -2.89   -1.35    0.48    2.70    5.48    8.89
+   190.0    0.00   -0.14   -0.53   -1.13   -1.86   -2.67   -3.50   -4.29   -4.94   -5.34   -5.38   -4.97   -4.12   -2.90   -1.38    0.42    2.63    5.42    8.86
+   195.0    0.00   -0.14   -0.53   -1.12   -1.85   -2.66   -3.49   -4.28   -4.94   -5.34   -5.37   -4.96   -4.11   -2.90   -1.40    0.38    2.58    5.39    8.87
+   200.0    0.00   -0.14   -0.53   -1.12   -1.84   -2.65   -3.49   -4.29   -4.95   -5.34   -5.36   -4.94   -4.09   -2.89   -1.41    0.35    2.55    5.39    8.92
+   205.0    0.00   -0.15   -0.53   -1.11   -1.83   -2.64   -3.48   -4.29   -4.95   -5.34   -5.35   -4.91   -4.05   -2.86   -1.40    0.35    2.55    5.43    9.01
+   210.0    0.00   -0.15   -0.53   -1.11   -1.82   -2.63   -3.48   -4.29   -4.95   -5.34   -5.33   -4.88   -4.01   -2.82   -1.36    0.38    2.59    5.50    9.15
+   215.0    0.00   -0.15   -0.53   -1.10   -1.82   -2.63   -3.48   -4.29   -4.95   -5.33   -5.32   -4.85   -3.97   -2.77   -1.31    0.44    2.67    5.61    9.32
+   220.0    0.00   -0.15   -0.53   -1.10   -1.82   -2.63   -3.48   -4.29   -4.95   -5.32   -5.30   -4.82   -3.93   -2.71   -1.24    0.52    2.78    5.76    9.50
+   225.0    0.00   -0.15   -0.53   -1.10   -1.82   -2.63   -3.47   -4.28   -4.94   -5.31   -5.28   -4.79   -3.89   -2.66   -1.17    0.63    2.91    5.91    9.68
+   230.0    0.00   -0.15   -0.53   -1.11   -1.82   -2.63   -3.47   -4.28   -4.93   -5.30   -5.27   -4.78   -3.86   -2.61   -1.09    0.75    3.06    6.07    9.84
+   235.0    0.00   -0.15   -0.54   -1.11   -1.82   -2.63   -3.47   -4.27   -4.92   -5.29   -5.26   -4.77   -3.85   -2.58   -1.01    0.86    3.21    6.22    9.96
+   240.0    0.00   -0.15   -0.54   -1.11   -1.83   -2.63   -3.47   -4.26   -4.91   -5.28   -5.26   -4.78   -3.86   -2.56   -0.95    0.97    3.35    6.35   10.04
+   245.0    0.00   -0.15   -0.54   -1.12   -1.83   -2.63   -3.46   -4.25   -4.89   -5.27   -5.26   -4.80   -3.88   -2.56   -0.91    1.06    3.46    6.44   10.07
+   250.0    0.00   -0.15   -0.54   -1.12   -1.84   -2.63   -3.46   -4.23   -4.88   -5.26   -5.27   -4.83   -3.92   -2.58   -0.90    1.12    3.53    6.48   10.05
+   255.0    0.00   -0.16   -0.55   -1.13   -1.84   -2.64   -3.45   -4.22   -4.86   -5.26   -5.29   -4.87   -3.97   -2.63   -0.91    1.14    3.56    6.47    9.98
+   260.0    0.00   -0.16   -0.55   -1.13   -1.85   -2.64   -3.44   -4.20   -4.84   -5.25   -5.31   -4.91   -4.03   -2.68   -0.95    1.12    3.54    6.41    9.87
+   265.0    0.00   -0.16   -0.55   -1.14   -1.85   -2.64   -3.43   -4.19   -4.83   -5.25   -5.33   -4.96   -4.09   -2.75   -1.01    1.07    3.48    6.31    9.74
+   270.0    0.00   -0.16   -0.56   -1.14   -1.86   -2.63   -3.43   -4.18   -4.82   -5.25   -5.34   -5.00   -4.15   -2.82   -1.08    0.98    3.37    6.18    9.61
+   275.0    0.00   -0.16   -0.56   -1.14   -1.86   -2.63   -3.42   -4.16   -4.80   -5.24   -5.36   -5.03   -4.20   -2.89   -1.17    0.87    3.23    6.03    9.50
+   280.0    0.00   -0.16   -0.56   -1.15   -1.86   -2.63   -3.41   -4.15   -4.79   -5.24   -5.36   -5.05   -4.24   -2.95   -1.26    0.75    3.08    5.88    9.41
+   285.0    0.00   -0.16   -0.56   -1.14   -1.85   -2.62   -3.40   -4.14   -4.79   -5.23   -5.36   -5.06   -4.27   -3.00   -1.35    0.62    2.92    5.73    9.36
+   290.0    0.00   -0.16   -0.56   -1.14   -1.85   -2.61   -3.39   -4.13   -4.78   -5.23   -5.36   -5.06   -4.28   -3.04   -1.42    0.50    2.77    5.60    9.35
+   295.0    0.00   -0.16   -0.55   -1.14   -1.84   -2.60   -3.38   -4.12   -4.77   -5.22   -5.35   -5.05   -4.27   -3.05   -1.48    0.39    2.64    5.51    9.38
+   300.0    0.00   -0.15   -0.55   -1.13   -1.83   -2.59   -3.37   -4.12   -4.77   -5.21   -5.33   -5.02   -4.25   -3.06   -1.53    0.30    2.53    5.45    9.45
+   305.0    0.00   -0.15   -0.55   -1.12   -1.82   -2.57   -3.35   -4.11   -4.76   -5.20   -5.31   -4.99   -4.22   -3.04   -1.55    0.24    2.46    5.42    9.53
+   310.0    0.00   -0.15   -0.54   -1.11   -1.80   -2.56   -3.34   -4.10   -4.76   -5.20   -5.29   -4.96   -4.18   -3.02   -1.56    0.20    2.41    5.42    9.63
+   315.0    0.00   -0.15   -0.54   -1.10   -1.79   -2.54   -3.33   -4.09   -4.75   -5.19   -5.28   -4.93   -4.14   -2.99   -1.55    0.18    2.40    5.45    9.72
+   320.0    0.00   -0.15   -0.53   -1.09   -1.77   -2.52   -3.31   -4.08   -4.75   -5.18   -5.26   -4.90   -4.11   -2.96   -1.54    0.18    2.40    5.50    9.80
+   325.0    0.00   -0.14   -0.53   -1.08   -1.76   -2.51   -3.30   -4.07   -4.74   -5.18   -5.25   -4.88   -4.08   -2.94   -1.53    0.18    2.42    5.54    9.84
+   330.0    0.00   -0.14   -0.52   -1.07   -1.74   -2.49   -3.28   -4.07   -4.74   -5.18   -5.24   -4.86   -4.06   -2.92   -1.52    0.19    2.45    5.59    9.85
+   335.0    0.00   -0.14   -0.51   -1.06   -1.73   -2.48   -3.27   -4.06   -4.74   -5.17   -5.24   -4.86   -4.05   -2.92   -1.52    0.20    2.47    5.62    9.83
+   340.0    0.00   -0.14   -0.51   -1.05   -1.72   -2.46   -3.26   -4.05   -4.74   -5.17   -5.24   -4.86   -4.06   -2.92   -1.52    0.21    2.49    5.63    9.76
+   345.0    0.00   -0.13   -0.50   -1.04   -1.71   -2.46   -3.25   -4.05   -4.73   -5.17   -5.24   -4.86   -4.07   -2.93   -1.53    0.20    2.49    5.62    9.67
+   350.0    0.00   -0.13   -0.49   -1.03   -1.70   -2.45   -3.25   -4.04   -4.73   -5.17   -5.24   -4.87   -4.08   -2.95   -1.55    0.19    2.48    5.59    9.55
+   355.0    0.00   -0.13   -0.49   -1.03   -1.69   -2.44   -3.24   -4.04   -4.73   -5.17   -5.25   -4.88   -4.10   -2.98   -1.57    0.17    2.46    5.55    9.43
+   360.0    0.00   -0.12   -0.48   -1.02   -1.69   -2.44   -3.24   -4.04   -4.72   -5.17   -5.25   -4.89   -4.12   -3.00   -1.59    0.15    2.44    5.50    9.31
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH700936A_M    SNOW                                        TYPE / SERIAL NO    
+COPIED              Geo++ GmbH               3    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+COPIED FROM ASH700936B_M    SNOW                            COMMENT             
+ATTENTION! COPIED WITHOUT VERIFICATION BY CALIBRATION!      COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.18     -0.20     89.61                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.24   -0.93   -2.01   -3.39   -4.94   -6.50   -7.90   -8.97   -9.54   -9.49   -8.74   -7.30   -5.19   -2.46    0.87    4.83    9.38   14.38
+     0.0    0.00   -0.24   -0.95   -2.07   -3.52   -5.15   -6.79   -8.22   -9.25   -9.72   -9.55   -8.74   -7.33   -5.36   -2.79    0.46    4.45    9.05   13.78
+     5.0    0.00   -0.24   -0.94   -2.07   -3.51   -5.14   -6.77   -8.21   -9.25   -9.73   -9.57   -8.76   -7.35   -5.37   -2.80    0.44    4.41    9.01   13.78
+    10.0    0.00   -0.24   -0.94   -2.06   -3.50   -5.12   -6.76   -8.20   -9.24   -9.74   -9.60   -8.80   -7.38   -5.39   -2.81    0.43    4.38    8.98   13.84
+    15.0    0.00   -0.23   -0.93   -2.05   -3.48   -5.10   -6.73   -8.18   -9.24   -9.76   -9.63   -8.84   -7.42   -5.41   -2.81    0.43    4.38    8.99   13.96
+    20.0    0.00   -0.23   -0.93   -2.04   -3.47   -5.08   -6.70   -8.15   -9.23   -9.77   -9.67   -8.89   -7.46   -5.43   -2.80    0.45    4.40    9.04   14.13
+    25.0    0.00   -0.23   -0.92   -2.03   -3.45   -5.05   -6.67   -8.12   -9.22   -9.79   -9.71   -8.94   -7.50   -5.44   -2.77    0.51    4.47    9.12   14.33
+    30.0    0.00   -0.23   -0.92   -2.01   -3.42   -5.01   -6.63   -8.09   -9.20   -9.79   -9.74   -8.99   -7.54   -5.44   -2.73    0.59    4.56    9.24   14.54
+    35.0    0.00   -0.22   -0.91   -2.00   -3.40   -4.98   -6.58   -8.04   -9.17   -9.79   -9.76   -9.02   -7.56   -5.42   -2.66    0.69    4.69    9.38   14.74
+    40.0    0.00   -0.22   -0.90   -1.99   -3.37   -4.94   -6.54   -7.99   -9.13   -9.77   -9.77   -9.04   -7.57   -5.39   -2.58    0.82    4.85    9.54   14.91
+    45.0    0.00   -0.22   -0.90   -1.97   -3.35   -4.90   -6.48   -7.93   -9.08   -9.73   -9.75   -9.03   -7.55   -5.35   -2.49    0.96    5.01    9.70   15.04
+    50.0    0.00   -0.22   -0.89   -1.96   -3.32   -4.86   -6.43   -7.87   -9.01   -9.67   -9.71   -9.00   -7.52   -5.29   -2.39    1.10    5.18    9.85   15.13
+    55.0    0.00   -0.21   -0.88   -1.94   -3.30   -4.82   -6.37   -7.80   -8.93   -9.60   -9.64   -8.95   -7.46   -5.22   -2.29    1.24    5.33    9.98   15.18
+    60.0    0.00   -0.21   -0.88   -1.93   -3.27   -4.78   -6.32   -7.73   -8.85   -9.52   -9.56   -8.87   -7.39   -5.14   -2.20    1.35    5.45   10.08   15.18
+    65.0    0.00   -0.21   -0.87   -1.92   -3.25   -4.75   -6.27   -7.66   -8.77   -9.42   -9.47   -8.78   -7.31   -5.07   -2.12    1.44    5.55   10.15   15.16
+    70.0    0.00   -0.21   -0.87   -1.91   -3.23   -4.72   -6.22   -7.60   -8.69   -9.33   -9.37   -8.69   -7.23   -5.00   -2.07    1.49    5.60   10.19   15.12
+    75.0    0.00   -0.21   -0.86   -1.90   -3.22   -4.69   -6.18   -7.55   -8.62   -9.25   -9.27   -8.59   -7.15   -4.95   -2.04    1.51    5.62   10.19   15.06
+    80.0    0.00   -0.21   -0.86   -1.89   -3.20   -4.67   -6.16   -7.51   -8.57   -9.18   -9.19   -8.51   -7.08   -4.91   -2.03    1.49    5.59   10.17   15.00
+    85.0    0.00   -0.21   -0.86   -1.89   -3.20   -4.66   -6.14   -7.48   -8.53   -9.13   -9.13   -8.45   -7.04   -4.89   -2.04    1.45    5.54   10.11   14.94
+    90.0    0.00   -0.21   -0.86   -1.88   -3.19   -4.65   -6.13   -7.47   -8.51   -9.10   -9.10   -8.42   -7.01   -4.88   -2.08    1.38    5.45   10.04   14.88
+    95.0    0.00   -0.21   -0.86   -1.88   -3.19   -4.65   -6.13   -7.47   -8.51   -9.10   -9.09   -8.41   -7.01   -4.90   -2.13    1.30    5.35    9.94   14.80
+   100.0    0.00   -0.21   -0.86   -1.89   -3.20   -4.66   -6.15   -7.49   -8.53   -9.12   -9.11   -8.42   -7.02   -4.93   -2.19    1.21    5.23    9.82   14.72
+   105.0    0.00   -0.21   -0.86   -1.89   -3.20   -4.68   -6.17   -7.52   -8.57   -9.16   -9.15   -8.45   -7.06   -4.98   -2.25    1.11    5.11    9.69   14.62
+   110.0    0.00   -0.21   -0.86   -1.90   -3.21   -4.69   -6.19   -7.56   -8.62   -9.21   -9.20   -8.50   -7.10   -5.03   -2.31    1.02    4.99    9.56   14.50
+   115.0    0.00   -0.21   -0.87   -1.91   -3.23   -4.72   -6.23   -7.60   -8.67   -9.27   -9.26   -8.56   -7.15   -5.08   -2.37    0.94    4.88    9.42   14.37
+   120.0    0.00   -0.21   -0.87   -1.92   -3.25   -4.74   -6.26   -7.64   -8.72   -9.32   -9.31   -8.61   -7.20   -5.12   -2.43    0.87    4.77    9.29   14.24
+   125.0    0.00   -0.21   -0.88   -1.93   -3.27   -4.77   -6.30   -7.69   -8.77   -9.37   -9.37   -8.66   -7.25   -5.16   -2.47    0.81    4.68    9.17   14.11
+   130.0    0.00   -0.22   -0.89   -1.94   -3.29   -4.80   -6.33   -7.72   -8.81   -9.41   -9.40   -8.70   -7.28   -5.20   -2.51    0.75    4.60    9.06   14.00
+   135.0    0.00   -0.22   -0.89   -1.95   -3.31   -4.83   -6.37   -7.76   -8.84   -9.44   -9.43   -8.72   -7.31   -5.23   -2.54    0.71    4.54    8.97   13.92
+   140.0    0.00   -0.22   -0.90   -1.97   -3.33   -4.86   -6.40   -7.79   -8.86   -9.46   -9.44   -8.74   -7.33   -5.25   -2.57    0.67    4.49    8.91   13.87
+   145.0    0.00   -0.23   -0.91   -1.98   -3.35   -4.89   -6.43   -7.82   -8.88   -9.47   -9.45   -8.74   -7.34   -5.27   -2.60    0.64    4.45    8.87   13.85
+   150.0    0.00   -0.23   -0.92   -2.00   -3.38   -4.92   -6.46   -7.84   -8.90   -9.47   -9.45   -8.74   -7.35   -5.29   -2.63    0.61    4.42    8.85   13.87
+   155.0    0.00   -0.23   -0.92   -2.01   -3.40   -4.94   -6.49   -7.87   -8.91   -9.48   -9.45   -8.75   -7.36   -5.31   -2.65    0.58    4.40    8.85   13.90
+   160.0    0.00   -0.23   -0.93   -2.03   -3.42   -4.97   -6.52   -7.89   -8.93   -9.49   -9.45   -8.76   -7.38   -5.34   -2.68    0.56    4.39    8.85   13.95
+   165.0    0.00   -0.24   -0.94   -2.04   -3.44   -4.99   -6.54   -7.91   -8.95   -9.51   -9.47   -8.77   -7.40   -5.37   -2.71    0.53    4.38    8.86   13.99
+   170.0    0.00   -0.24   -0.94   -2.05   -3.45   -5.01   -6.56   -7.94   -8.97   -9.53   -9.50   -8.80   -7.43   -5.40   -2.75    0.51    4.36    8.86   14.02
+   175.0    0.00   -0.24   -0.95   -2.06   -3.46   -5.03   -6.58   -7.96   -9.00   -9.56   -9.53   -8.84   -7.47   -5.44   -2.78    0.49    4.35    8.86   14.02
+   180.0    0.00   -0.25   -0.95   -2.06   -3.47   -5.04   -6.60   -7.98   -9.03   -9.60   -9.58   -8.89   -7.52   -5.48   -2.81    0.46    4.33    8.84   14.00
+   185.0    0.00   -0.25   -0.96   -2.07   -3.48   -5.04   -6.61   -8.00   -9.06   -9.64   -9.63   -8.94   -7.57   -5.51   -2.83    0.45    4.32    8.82   13.97
+   190.0    0.00   -0.25   -0.96   -2.07   -3.48   -5.04   -6.61   -8.01   -9.08   -9.68   -9.67   -8.99   -7.61   -5.55   -2.85    0.43    4.31    8.80   13.93
+   195.0    0.00   -0.25   -0.96   -2.07   -3.48   -5.04   -6.61   -8.02   -9.10   -9.70   -9.71   -9.03   -7.64   -5.57   -2.87    0.42    4.30    8.79   13.91
+   200.0    0.00   -0.25   -0.97   -2.07   -3.47   -5.03   -6.60   -8.01   -9.11   -9.72   -9.73   -9.06   -7.66   -5.59   -2.87    0.43    4.31    8.81   13.92
+   205.0    0.00   -0.25   -0.97   -2.07   -3.46   -5.02   -6.58   -8.00   -9.10   -9.72   -9.74   -9.06   -7.67   -5.59   -2.87    0.45    4.35    8.87   13.98
+   210.0    0.00   -0.26   -0.97   -2.07   -3.46   -5.00   -6.57   -7.98   -9.08   -9.71   -9.73   -9.06   -7.66   -5.57   -2.85    0.48    4.42    8.97   14.10
+   215.0    0.00   -0.26   -0.97   -2.06   -3.45   -4.99   -6.54   -7.96   -9.06   -9.68   -9.70   -9.03   -7.63   -5.54   -2.81    0.54    4.52    9.12   14.29
+   220.0    0.00   -0.26   -0.97   -2.06   -3.44   -4.97   -6.52   -7.93   -9.02   -9.65   -9.66   -8.98   -7.59   -5.50   -2.75    0.63    4.65    9.32   14.53
+   225.0    0.00   -0.26   -0.97   -2.06   -3.43   -4.95   -6.50   -7.90   -8.98   -9.60   -9.61   -8.92   -7.53   -5.43   -2.67    0.74    4.82    9.56   14.80
+   230.0    0.00   -0.26   -0.97   -2.05   -3.42   -4.94   -6.48   -7.87   -8.94   -9.55   -9.55   -8.86   -7.45   -5.35   -2.58    0.87    5.02    9.82   15.09
+   235.0    0.00   -0.26   -0.97   -2.05   -3.41   -4.93   -6.46   -7.84   -8.91   -9.50   -9.49   -8.79   -7.38   -5.26   -2.46    1.03    5.23   10.08   15.36
+   240.0    0.00   -0.26   -0.97   -2.05   -3.41   -4.92   -6.44   -7.82   -8.87   -9.46   -9.43   -8.72   -7.29   -5.16   -2.33    1.20    5.44   10.32   15.57
+   245.0    0.00   -0.26   -0.97   -2.05   -3.40   -4.91   -6.43   -7.80   -8.85   -9.42   -9.38   -8.65   -7.21   -5.05   -2.20    1.37    5.63   10.51   15.70
+   250.0    0.00   -0.26   -0.97   -2.05   -3.40   -4.91   -6.43   -7.79   -8.83   -9.39   -9.34   -8.60   -7.13   -4.95   -2.06    1.53    5.80   10.64   15.73
+   255.0    0.00   -0.26   -0.96   -2.04   -3.40   -4.91   -6.43   -7.79   -8.83   -9.38   -9.32   -8.55   -7.06   -4.84   -1.93    1.66    5.91   10.69   15.66
+   260.0    0.00   -0.26   -0.96   -2.04   -3.40   -4.91   -6.43   -7.79   -8.83   -9.38   -9.30   -8.52   -6.99   -4.75   -1.82    1.77    5.97   10.65   15.48
+   265.0    0.00   -0.26   -0.96   -2.04   -3.40   -4.91   -6.44   -7.80   -8.84   -9.39   -9.30   -8.49   -6.94   -4.67   -1.73    1.83    5.96   10.53   15.23
+   270.0    0.00   -0.26   -0.96   -2.04   -3.40   -4.92   -6.45   -7.82   -8.86   -9.40   -9.30   -8.48   -6.90   -4.61   -1.68    1.84    5.88   10.33   14.92
+   275.0    0.00   -0.26   -0.96   -2.05   -3.41   -4.93   -6.46   -7.84   -8.88   -9.42   -9.32   -8.47   -6.88   -4.58   -1.66    1.80    5.75   10.09   14.60
+   280.0    0.00   -0.26   -0.96   -2.05   -3.41   -4.94   -6.47   -7.86   -8.91   -9.45   -9.33   -8.48   -6.87   -4.57   -1.68    1.72    5.58    9.83   14.29
+   285.0    0.00   -0.26   -0.96   -2.05   -3.42   -4.95   -6.49   -7.89   -8.94   -9.48   -9.36   -8.49   -6.87   -4.59   -1.73    1.60    5.38    9.56   14.03
+   290.0    0.00   -0.26   -0.96   -2.05   -3.42   -4.96   -6.51   -7.91   -8.98   -9.51   -9.38   -8.51   -6.89   -4.63   -1.82    1.45    5.17    9.32   13.85
+   295.0    0.00   -0.26   -0.96   -2.05   -3.43   -4.97   -6.54   -7.95   -9.01   -9.55   -9.41   -8.53   -6.93   -4.69   -1.93    1.29    4.96    9.13   13.75
+   300.0    0.00   -0.26   -0.96   -2.05   -3.44   -4.99   -6.56   -7.98   -9.05   -9.58   -9.44   -8.56   -6.97   -4.77   -2.05    1.13    4.79    9.00   13.74
+   305.0    0.00   -0.26   -0.96   -2.06   -3.45   -5.01   -6.59   -8.01   -9.08   -9.61   -9.47   -8.59   -7.02   -4.85   -2.17    0.97    4.65    8.93   13.79
+   310.0    0.00   -0.26   -0.96   -2.06   -3.46   -5.03   -6.62   -8.05   -9.11   -9.64   -9.49   -8.63   -7.08   -4.94   -2.30    0.84    4.55    8.91   13.89
+   315.0    0.00   -0.25   -0.96   -2.06   -3.47   -5.05   -6.65   -8.08   -9.15   -9.67   -9.52   -8.66   -7.13   -5.03   -2.41    0.73    4.49    8.95   14.01
+   320.0    0.00   -0.25   -0.96   -2.07   -3.48   -5.07   -6.68   -8.11   -9.18   -9.69   -9.53   -8.68   -7.18   -5.11   -2.51    0.65    4.47    9.01   14.11
+   325.0    0.00   -0.25   -0.96   -2.07   -3.49   -5.09   -6.71   -8.14   -9.20   -9.70   -9.55   -8.70   -7.22   -5.18   -2.59    0.60    4.48    9.08   14.19
+   330.0    0.00   -0.25   -0.96   -2.07   -3.50   -5.11   -6.73   -8.17   -9.22   -9.72   -9.55   -8.72   -7.26   -5.23   -2.64    0.57    4.50    9.15   14.22
+   335.0    0.00   -0.25   -0.96   -2.08   -3.51   -5.13   -6.75   -8.19   -9.24   -9.72   -9.55   -8.72   -7.28   -5.27   -2.69    0.55    4.52    9.20   14.19
+   340.0    0.00   -0.25   -0.96   -2.08   -3.52   -5.14   -6.77   -8.21   -9.25   -9.72   -9.55   -8.73   -7.29   -5.30   -2.72    0.53    4.54    9.22   14.12
+   345.0    0.00   -0.25   -0.96   -2.08   -3.52   -5.15   -6.78   -8.22   -9.25   -9.72   -9.55   -8.72   -7.30   -5.32   -2.74    0.52    4.54    9.21   14.03
+   350.0    0.00   -0.24   -0.95   -2.08   -3.52   -5.15   -6.79   -8.22   -9.25   -9.72   -9.54   -8.72   -7.31   -5.33   -2.76    0.50    4.52    9.17   13.92
+   355.0    0.00   -0.24   -0.95   -2.08   -3.52   -5.15   -6.79   -8.22   -9.25   -9.72   -9.54   -8.73   -7.32   -5.35   -2.78    0.48    4.49    9.11   13.83
+   360.0    0.00   -0.24   -0.95   -2.07   -3.52   -5.15   -6.79   -8.22   -9.25   -9.72   -9.55   -8.74   -7.33   -5.36   -2.79    0.46    4.45    9.05   13.78
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.01      0.44    119.32                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.13   -0.50   -1.05   -1.70   -2.41   -3.17   -3.93   -4.67   -5.26   -5.57   -5.46   -4.83   -3.68   -2.03    0.08    2.69    5.89    9.75
+     0.0    0.00   -0.13   -0.48   -1.00   -1.63   -2.34   -3.12   -3.94   -4.72   -5.34   -5.65   -5.54   -4.94   -3.88   -2.38   -0.38    2.30    5.85   10.27
+     5.0    0.00   -0.12   -0.48   -1.00   -1.64   -2.36   -3.13   -3.94   -4.71   -5.33   -5.65   -5.55   -4.97   -3.90   -2.38   -0.36    2.31    5.80   10.12
+    10.0    0.00   -0.12   -0.48   -1.01   -1.65   -2.37   -3.14   -3.94   -4.70   -5.32   -5.65   -5.56   -4.98   -3.92   -2.38   -0.34    2.32    5.77   10.01
+    15.0    0.00   -0.12   -0.48   -1.02   -1.67   -2.38   -3.14   -3.93   -4.69   -5.31   -5.64   -5.56   -4.99   -3.92   -2.37   -0.32    2.34    5.75    9.94
+    20.0    0.00   -0.12   -0.48   -1.02   -1.67   -2.39   -3.15   -3.93   -4.68   -5.29   -5.63   -5.56   -4.99   -3.91   -2.34   -0.29    2.36    5.75    9.93
+    25.0    0.00   -0.12   -0.48   -1.03   -1.68   -2.39   -3.15   -3.92   -4.66   -5.28   -5.62   -5.54   -4.97   -3.88   -2.30   -0.24    2.40    5.78    9.96
+    30.0    0.00   -0.12   -0.48   -1.03   -1.68   -2.40   -3.15   -3.91   -4.65   -5.26   -5.59   -5.51   -4.93   -3.83   -2.25   -0.18    2.45    5.83   10.02
+    35.0    0.00   -0.12   -0.48   -1.03   -1.69   -2.40   -3.15   -3.91   -4.64   -5.24   -5.57   -5.48   -4.88   -3.78   -2.18   -0.11    2.52    5.89   10.11
+    40.0    0.00   -0.12   -0.48   -1.03   -1.69   -2.40   -3.15   -3.90   -4.63   -5.22   -5.54   -5.44   -4.83   -3.71   -2.11   -0.03    2.61    5.97   10.19
+    45.0    0.00   -0.12   -0.48   -1.03   -1.69   -2.40   -3.15   -3.90   -4.62   -5.21   -5.51   -5.39   -4.78   -3.64   -2.03    0.06    2.70    6.06   10.26
+    50.0    0.00   -0.12   -0.48   -1.03   -1.69   -2.41   -3.15   -3.91   -4.62   -5.19   -5.48   -5.36   -4.72   -3.58   -1.95    0.15    2.80    6.15   10.30
+    55.0    0.00   -0.12   -0.48   -1.03   -1.69   -2.41   -3.16   -3.91   -4.62   -5.19   -5.46   -5.32   -4.68   -3.53   -1.89    0.24    2.90    6.23   10.29
+    60.0    0.00   -0.11   -0.48   -1.03   -1.70   -2.42   -3.17   -3.93   -4.63   -5.18   -5.45   -5.30   -4.66   -3.49   -1.83    0.31    3.00    6.30   10.25
+    65.0    0.00   -0.11   -0.48   -1.03   -1.70   -2.43   -3.19   -3.94   -4.64   -5.19   -5.45   -5.30   -4.65   -3.47   -1.79    0.38    3.08    6.36   10.17
+    70.0    0.00   -0.11   -0.48   -1.03   -1.70   -2.44   -3.20   -3.96   -4.66   -5.20   -5.46   -5.30   -4.65   -3.47   -1.78    0.43    3.15    6.40   10.07
+    75.0    0.00   -0.11   -0.48   -1.03   -1.71   -2.45   -3.22   -3.99   -4.68   -5.22   -5.48   -5.32   -4.67   -3.49   -1.77    0.46    3.20    6.42    9.95
+    80.0    0.00   -0.11   -0.48   -1.03   -1.72   -2.47   -3.25   -4.01   -4.71   -5.25   -5.50   -5.35   -4.70   -3.52   -1.78    0.47    3.23    6.42    9.83
+    85.0    0.00   -0.11   -0.48   -1.04   -1.73   -2.48   -3.27   -4.04   -4.74   -5.27   -5.53   -5.39   -4.74   -3.55   -1.80    0.47    3.24    6.40    9.72
+    90.0    0.00   -0.11   -0.48   -1.04   -1.73   -2.50   -3.29   -4.06   -4.76   -5.30   -5.56   -5.42   -4.78   -3.58   -1.83    0.46    3.23    6.36    9.63
+    95.0    0.00   -0.11   -0.48   -1.04   -1.74   -2.51   -3.31   -4.08   -4.79   -5.33   -5.60   -5.46   -4.81   -3.61   -1.85    0.45    3.21    6.31    9.55
+   100.0    0.00   -0.11   -0.48   -1.05   -1.75   -2.52   -3.32   -4.10   -4.81   -5.35   -5.62   -5.49   -4.84   -3.63   -1.86    0.43    3.17    6.25    9.50
+   105.0    0.00   -0.11   -0.48   -1.05   -1.76   -2.53   -3.33   -4.11   -4.82   -5.37   -5.64   -5.50   -4.85   -3.63   -1.85    0.42    3.12    6.18    9.46
+   110.0    0.00   -0.11   -0.48   -1.05   -1.76   -2.54   -3.34   -4.12   -4.83   -5.38   -5.66   -5.51   -4.85   -3.61   -1.84    0.41    3.07    6.10    9.44
+   115.0    0.00   -0.11   -0.48   -1.06   -1.76   -2.54   -3.34   -4.12   -4.83   -5.39   -5.66   -5.52   -4.84   -3.59   -1.81    0.41    3.02    6.01    9.42
+   120.0    0.00   -0.11   -0.48   -1.06   -1.77   -2.54   -3.33   -4.11   -4.82   -5.38   -5.66   -5.51   -4.82   -3.56   -1.78    0.42    2.98    5.94    9.40
+   125.0    0.00   -0.11   -0.48   -1.06   -1.77   -2.53   -3.32   -4.09   -4.81   -5.38   -5.66   -5.50   -4.80   -3.52   -1.74    0.43    2.94    5.86    9.38
+   130.0    0.00   -0.12   -0.49   -1.06   -1.76   -2.53   -3.31   -4.08   -4.79   -5.36   -5.65   -5.49   -4.78   -3.49   -1.71    0.44    2.91    5.80    9.36
+   135.0    0.00   -0.12   -0.49   -1.06   -1.76   -2.52   -3.29   -4.06   -4.77   -5.35   -5.64   -5.49   -4.77   -3.47   -1.69    0.44    2.88    5.75    9.32
+   140.0    0.00   -0.12   -0.49   -1.06   -1.76   -2.51   -3.28   -4.04   -4.75   -5.34   -5.64   -5.49   -4.76   -3.46   -1.68    0.44    2.87    5.71    9.28
+   145.0    0.00   -0.12   -0.49   -1.06   -1.75   -2.50   -3.26   -4.02   -4.74   -5.33   -5.64   -5.49   -4.78   -3.48   -1.70    0.43    2.85    5.69    9.24
+   150.0    0.00   -0.12   -0.49   -1.06   -1.75   -2.49   -3.25   -4.01   -4.73   -5.32   -5.64   -5.51   -4.80   -3.51   -1.73    0.40    2.83    5.67    9.19
+   155.0    0.00   -0.12   -0.49   -1.06   -1.75   -2.49   -3.24   -4.00   -4.72   -5.33   -5.65   -5.53   -4.84   -3.56   -1.78    0.36    2.81    5.66    9.13
+   160.0    0.00   -0.12   -0.50   -1.06   -1.75   -2.48   -3.24   -4.00   -4.72   -5.33   -5.67   -5.56   -4.88   -3.62   -1.85    0.31    2.78    5.65    9.08
+   165.0    0.00   -0.13   -0.50   -1.06   -1.74   -2.48   -3.24   -4.00   -4.73   -5.35   -5.69   -5.59   -4.93   -3.68   -1.93    0.23    2.74    5.64    9.02
+   170.0    0.00   -0.13   -0.50   -1.06   -1.74   -2.48   -3.24   -4.01   -4.75   -5.36   -5.71   -5.62   -4.98   -3.75   -2.01    0.16    2.69    5.61    8.96
+   175.0    0.00   -0.13   -0.50   -1.07   -1.74   -2.48   -3.24   -4.01   -4.76   -5.38   -5.73   -5.65   -5.02   -3.82   -2.09    0.07    2.62    5.58    8.90
+   180.0    0.00   -0.13   -0.51   -1.07   -1.74   -2.48   -3.24   -4.02   -4.78   -5.40   -5.75   -5.67   -5.05   -3.87   -2.16   -0.01    2.55    5.54    8.85
+   185.0    0.00   -0.13   -0.51   -1.07   -1.74   -2.48   -3.24   -4.03   -4.79   -5.42   -5.77   -5.69   -5.08   -3.91   -2.23   -0.09    2.48    5.49    8.82
+   190.0    0.00   -0.14   -0.51   -1.07   -1.74   -2.47   -3.24   -4.03   -4.80   -5.42   -5.77   -5.69   -5.08   -3.93   -2.27   -0.15    2.41    5.44    8.80
+   195.0    0.00   -0.14   -0.52   -1.07   -1.74   -2.47   -3.24   -4.03   -4.79   -5.42   -5.77   -5.68   -5.08   -3.93   -2.30   -0.20    2.36    5.40    8.81
+   200.0    0.00   -0.14   -0.52   -1.08   -1.74   -2.46   -3.23   -4.02   -4.78   -5.41   -5.75   -5.67   -5.06   -3.92   -2.30   -0.23    2.32    5.38    8.86
+   205.0    0.00   -0.14   -0.53   -1.08   -1.74   -2.46   -3.22   -4.01   -4.77   -5.39   -5.73   -5.64   -5.03   -3.89   -2.28   -0.23    2.31    5.39    8.95
+   210.0    0.00   -0.15   -0.53   -1.08   -1.74   -2.45   -3.20   -3.98   -4.74   -5.36   -5.70   -5.60   -4.99   -3.86   -2.25   -0.20    2.33    5.43    9.08
+   215.0    0.00   -0.15   -0.53   -1.09   -1.74   -2.44   -3.19   -3.95   -4.70   -5.32   -5.65   -5.56   -4.95   -3.81   -2.20   -0.15    2.38    5.51    9.25
+   220.0    0.00   -0.15   -0.54   -1.09   -1.74   -2.44   -3.17   -3.92   -4.66   -5.27   -5.61   -5.51   -4.90   -3.76   -2.14   -0.08    2.47    5.62    9.46
+   225.0    0.00   -0.15   -0.54   -1.10   -1.74   -2.43   -3.15   -3.89   -4.61   -5.22   -5.56   -5.47   -4.85   -3.70   -2.07    0.02    2.58    5.76    9.67
+   230.0    0.00   -0.15   -0.55   -1.10   -1.75   -2.43   -3.13   -3.86   -4.57   -5.17   -5.50   -5.42   -4.81   -3.65   -1.99    0.12    2.72    5.92    9.88
+   235.0    0.00   -0.16   -0.55   -1.11   -1.75   -2.43   -3.12   -3.83   -4.53   -5.12   -5.45   -5.38   -4.77   -3.60   -1.91    0.24    2.86    6.09   10.07
+   240.0    0.00   -0.16   -0.55   -1.11   -1.76   -2.43   -3.11   -3.81   -4.49   -5.07   -5.41   -5.34   -4.73   -3.55   -1.84    0.35    3.00    6.23   10.21
+   245.0    0.00   -0.16   -0.55   -1.12   -1.76   -2.43   -3.11   -3.79   -4.46   -5.03   -5.37   -5.30   -4.70   -3.51   -1.77    0.45    3.13    6.35   10.28
+   250.0    0.00   -0.16   -0.56   -1.12   -1.76   -2.43   -3.10   -3.78   -4.44   -5.01   -5.34   -5.27   -4.67   -3.47   -1.71    0.54    3.23    6.43   10.28
+   255.0    0.00   -0.16   -0.56   -1.12   -1.76   -2.43   -3.10   -3.78   -4.43   -4.99   -5.32   -5.26   -4.65   -3.45   -1.67    0.60    3.30    6.46   10.21
+   260.0    0.00   -0.16   -0.55   -1.11   -1.76   -2.43   -3.10   -3.78   -4.43   -4.99   -5.32   -5.25   -4.65   -3.43   -1.65    0.63    3.33    6.44   10.06
+   265.0    0.00   -0.16   -0.55   -1.11   -1.75   -2.43   -3.10   -3.78   -4.43   -4.99   -5.32   -5.25   -4.65   -3.43   -1.64    0.63    3.31    6.36    9.87
+   270.0    0.00   -0.16   -0.55   -1.10   -1.74   -2.42   -3.10   -3.79   -4.45   -5.01   -5.34   -5.27   -4.66   -3.45   -1.66    0.60    3.25    6.25    9.65
+   275.0    0.00   -0.16   -0.54   -1.09   -1.73   -2.41   -3.10   -3.80   -4.47   -5.04   -5.36   -5.29   -4.68   -3.47   -1.70    0.54    3.15    6.10    9.43
+   280.0    0.00   -0.15   -0.54   -1.08   -1.71   -2.39   -3.09   -3.81   -4.49   -5.07   -5.40   -5.32   -4.70   -3.50   -1.76    0.44    3.02    5.95    9.25
+   285.0    0.00   -0.15   -0.53   -1.07   -1.70   -2.37   -3.08   -3.81   -4.52   -5.11   -5.44   -5.35   -4.73   -3.54   -1.83    0.33    2.87    5.80    9.13
+   290.0    0.00   -0.15   -0.52   -1.05   -1.67   -2.35   -3.07   -3.82   -4.55   -5.15   -5.48   -5.38   -4.76   -3.59   -1.91    0.20    2.72    5.67    9.09
+   295.0    0.00   -0.15   -0.51   -1.03   -1.65   -2.33   -3.06   -3.83   -4.58   -5.19   -5.52   -5.42   -4.79   -3.64   -2.00    0.07    2.57    5.58    9.14
+   300.0    0.00   -0.15   -0.51   -1.02   -1.63   -2.31   -3.05   -3.83   -4.60   -5.23   -5.56   -5.45   -4.82   -3.68   -2.09   -0.06    2.44    5.52    9.27
+   305.0    0.00   -0.14   -0.50   -1.00   -1.61   -2.29   -3.04   -3.84   -4.63   -5.26   -5.59   -5.47   -4.84   -3.72   -2.16   -0.18    2.32    5.51    9.48
+   310.0    0.00   -0.14   -0.49   -0.99   -1.59   -2.27   -3.03   -3.85   -4.65   -5.29   -5.61   -5.48   -4.85   -3.75   -2.23   -0.28    2.24    5.54    9.74
+   315.0    0.00   -0.14   -0.49   -0.98   -1.57   -2.26   -3.02   -3.85   -4.67   -5.32   -5.63   -5.49   -4.86   -3.77   -2.28   -0.36    2.18    5.60   10.02
+   320.0    0.00   -0.14   -0.48   -0.97   -1.56   -2.25   -3.02   -3.86   -4.68   -5.33   -5.64   -5.50   -4.86   -3.79   -2.32   -0.41    2.16    5.68   10.29
+   325.0    0.00   -0.13   -0.48   -0.97   -1.56   -2.25   -3.03   -3.87   -4.70   -5.35   -5.65   -5.49   -4.86   -3.79   -2.35   -0.45    2.15    5.76   10.52
+   330.0    0.00   -0.13   -0.47   -0.96   -1.56   -2.25   -3.03   -3.89   -4.71   -5.35   -5.65   -5.49   -4.86   -3.80   -2.36   -0.46    2.17    5.84   10.69
+   335.0    0.00   -0.13   -0.47   -0.96   -1.56   -2.26   -3.05   -3.90   -4.72   -5.36   -5.65   -5.49   -4.86   -3.80   -2.37   -0.46    2.19    5.90   10.78
+   340.0    0.00   -0.13   -0.47   -0.97   -1.57   -2.27   -3.06   -3.91   -4.72   -5.36   -5.65   -5.49   -4.86   -3.81   -2.37   -0.45    2.22    5.93   10.78
+   345.0    0.00   -0.13   -0.47   -0.97   -1.58   -2.29   -3.08   -3.92   -4.73   -5.36   -5.65   -5.50   -4.87   -3.82   -2.37   -0.43    2.24    5.94   10.72
+   350.0    0.00   -0.13   -0.47   -0.98   -1.60   -2.31   -3.09   -3.93   -4.73   -5.35   -5.65   -5.51   -4.89   -3.84   -2.37   -0.41    2.27    5.92   10.59
+   355.0    0.00   -0.13   -0.47   -0.99   -1.61   -2.32   -3.11   -3.93   -4.72   -5.35   -5.65   -5.52   -4.92   -3.86   -2.38   -0.39    2.29    5.89   10.44
+   360.0    0.00   -0.13   -0.48   -1.00   -1.63   -2.34   -3.12   -3.94   -4.72   -5.34   -5.65   -5.54   -4.94   -3.88   -2.38   -0.38    2.30    5.85   10.27
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH700936B_M    NONE                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               1    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+Number of Calibrated Antennas GPS:      001                 COMMENT             
+Number of Individual Calibrations GPS:  006                 COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.20      0.01     90.95                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.23   -0.90   -1.96   -3.32   -4.84   -6.32   -7.57   -8.43   -8.80   -8.66   -8.03   -6.92   -5.29   -2.99    0.12    4.13    8.94   14.10
+     0.0    0.00   -0.23   -0.92   -2.04   -3.49   -5.09   -6.62   -7.87   -8.68   -8.96   -8.75   -8.11   -7.03   -5.43   -3.09    0.14    4.29    8.98   13.44
+     5.0    0.00   -0.23   -0.92   -2.04   -3.48   -5.09   -6.63   -7.88   -8.68   -8.97   -8.77   -8.12   -7.03   -5.42   -3.09    0.12    4.22    8.89   13.42
+    10.0    0.00   -0.22   -0.91   -2.03   -3.48   -5.08   -6.62   -7.88   -8.69   -8.99   -8.79   -8.14   -7.04   -5.41   -3.09    0.10    4.15    8.80   13.43
+    15.0    0.00   -0.22   -0.90   -2.02   -3.46   -5.06   -6.61   -7.88   -8.70   -9.01   -8.82   -8.16   -7.05   -5.41   -3.09    0.07    4.09    8.73   13.48
+    20.0    0.00   -0.21   -0.90   -2.01   -3.44   -5.04   -6.59   -7.87   -8.71   -9.04   -8.86   -8.20   -7.07   -5.41   -3.08    0.05    4.04    8.69   13.56
+    25.0    0.00   -0.21   -0.89   -1.99   -3.42   -5.01   -6.56   -7.85   -8.71   -9.07   -8.90   -8.24   -7.10   -5.42   -3.08    0.05    4.02    8.70   13.69
+    30.0    0.00   -0.21   -0.88   -1.97   -3.39   -4.98   -6.53   -7.83   -8.71   -9.09   -8.93   -8.28   -7.13   -5.43   -3.08    0.06    4.04    8.75   13.85
+    35.0    0.00   -0.20   -0.87   -1.95   -3.36   -4.94   -6.49   -7.80   -8.70   -9.09   -8.96   -8.31   -7.16   -5.45   -3.08    0.08    4.09    8.85   14.05
+    40.0    0.00   -0.20   -0.86   -1.93   -3.33   -4.90   -6.44   -7.76   -8.67   -9.08   -8.97   -8.33   -7.17   -5.46   -3.07    0.12    4.17    8.99   14.26
+    45.0    0.00   -0.20   -0.85   -1.92   -3.30   -4.86   -6.40   -7.71   -8.63   -9.05   -8.95   -8.32   -7.17   -5.46   -3.06    0.16    4.27    9.16   14.48
+    50.0    0.00   -0.19   -0.84   -1.90   -3.27   -4.82   -6.35   -7.66   -8.58   -9.00   -8.91   -8.29   -7.15   -5.45   -3.04    0.21    4.38    9.35   14.69
+    55.0    0.00   -0.19   -0.83   -1.88   -3.25   -4.78   -6.30   -7.60   -8.51   -8.94   -8.84   -8.23   -7.11   -5.42   -3.02    0.26    4.49    9.53   14.88
+    60.0    0.00   -0.19   -0.82   -1.86   -3.22   -4.75   -6.26   -7.54   -8.44   -8.85   -8.75   -8.15   -7.05   -5.38   -2.99    0.30    4.59    9.69   15.04
+    65.0    0.00   -0.18   -0.81   -1.85   -3.20   -4.72   -6.21   -7.49   -8.37   -8.76   -8.65   -8.05   -6.97   -5.33   -2.97    0.34    4.66    9.82   15.16
+    70.0    0.00   -0.18   -0.81   -1.84   -3.18   -4.69   -6.17   -7.43   -8.29   -8.67   -8.54   -7.95   -6.89   -5.28   -2.94    0.36    4.71    9.90   15.23
+    75.0    0.00   -0.18   -0.81   -1.83   -3.17   -4.67   -6.14   -7.38   -8.22   -8.58   -8.44   -7.84   -6.80   -5.22   -2.91    0.37    4.73    9.93   15.24
+    80.0    0.00   -0.18   -0.80   -1.82   -3.16   -4.65   -6.11   -7.34   -8.17   -8.50   -8.35   -7.76   -6.72   -5.17   -2.89    0.37    4.72    9.92   15.19
+    85.0    0.00   -0.18   -0.80   -1.82   -3.15   -4.64   -6.09   -7.31   -8.12   -8.45   -8.29   -7.69   -6.67   -5.13   -2.87    0.36    4.68    9.85   15.10
+    90.0    0.00   -0.18   -0.80   -1.82   -3.14   -4.63   -6.07   -7.28   -8.09   -8.41   -8.25   -7.66   -6.64   -5.11   -2.86    0.35    4.63    9.75   14.96
+    95.0    0.00   -0.18   -0.80   -1.82   -3.14   -4.62   -6.06   -7.26   -8.07   -8.40   -8.24   -7.65   -6.63   -5.10   -2.86    0.32    4.55    9.62   14.80
+   100.0    0.00   -0.18   -0.80   -1.82   -3.14   -4.62   -6.05   -7.25   -8.06   -8.40   -8.26   -7.68   -6.65   -5.11   -2.86    0.29    4.47    9.46   14.63
+   105.0    0.00   -0.18   -0.81   -1.83   -3.15   -4.62   -6.05   -7.25   -8.07   -8.42   -8.30   -7.73   -6.69   -5.13   -2.88    0.26    4.38    9.31   14.47
+   110.0    0.00   -0.19   -0.81   -1.83   -3.15   -4.62   -6.05   -7.25   -8.08   -8.46   -8.35   -7.79   -6.75   -5.17   -2.90    0.23    4.29    9.15   14.33
+   115.0    0.00   -0.19   -0.82   -1.84   -3.16   -4.63   -6.05   -7.26   -8.10   -8.49   -8.41   -7.85   -6.81   -5.21   -2.92    0.19    4.20    9.01   14.22
+   120.0    0.00   -0.19   -0.82   -1.85   -3.17   -4.64   -6.06   -7.27   -8.12   -8.53   -8.46   -7.92   -6.87   -5.25   -2.95    0.15    4.12    8.89   14.16
+   125.0    0.00   -0.19   -0.83   -1.86   -3.19   -4.65   -6.08   -7.28   -8.14   -8.56   -8.51   -7.97   -6.91   -5.28   -2.98    0.11    4.05    8.80   14.14
+   130.0    0.00   -0.20   -0.84   -1.87   -3.20   -4.67   -6.09   -7.30   -8.16   -8.59   -8.54   -8.00   -6.94   -5.31   -3.01    0.07    3.99    8.74   14.16
+   135.0    0.00   -0.20   -0.85   -1.89   -3.22   -4.69   -6.12   -7.33   -8.19   -8.61   -8.56   -8.02   -6.96   -5.33   -3.03    0.03    3.94    8.71   14.22
+   140.0    0.00   -0.20   -0.85   -1.90   -3.24   -4.71   -6.15   -7.36   -8.21   -8.62   -8.56   -8.02   -6.96   -5.34   -3.05    0.00    3.91    8.71   14.29
+   145.0    0.00   -0.21   -0.86   -1.91   -3.26   -4.74   -6.18   -7.39   -8.24   -8.64   -8.57   -8.01   -6.95   -5.34   -3.07   -0.03    3.90    8.73   14.37
+   150.0    0.00   -0.21   -0.87   -1.93   -3.28   -4.77   -6.21   -7.43   -8.27   -8.66   -8.57   -8.00   -6.95   -5.35   -3.09   -0.05    3.89    8.75   14.42
+   155.0    0.00   -0.22   -0.88   -1.94   -3.30   -4.80   -6.25   -7.47   -8.30   -8.68   -8.57   -8.00   -6.94   -5.35   -3.11   -0.06    3.90    8.78   14.45
+   160.0    0.00   -0.22   -0.89   -1.95   -3.31   -4.82   -6.28   -7.51   -8.34   -8.71   -8.59   -8.01   -6.95   -5.37   -3.13   -0.07    3.91    8.81   14.42
+   165.0    0.00   -0.22   -0.89   -1.96   -3.33   -4.84   -6.32   -7.55   -8.39   -8.75   -8.63   -8.03   -6.98   -5.39   -3.15   -0.08    3.92    8.82   14.35
+   170.0    0.00   -0.23   -0.90   -1.97   -3.34   -4.86   -6.35   -7.59   -8.44   -8.80   -8.67   -8.08   -7.02   -5.43   -3.17   -0.09    3.93    8.80   14.22
+   175.0    0.00   -0.23   -0.91   -1.98   -3.35   -4.88   -6.37   -7.62   -8.48   -8.86   -8.73   -8.13   -7.07   -5.47   -3.20   -0.10    3.92    8.76   14.06
+   180.0    0.00   -0.24   -0.91   -1.98   -3.35   -4.88   -6.38   -7.65   -8.53   -8.91   -8.80   -8.20   -7.12   -5.51   -3.23   -0.12    3.90    8.70   13.87
+   185.0    0.00   -0.24   -0.92   -1.99   -3.36   -4.89   -6.39   -7.67   -8.57   -8.97   -8.86   -8.26   -7.18   -5.55   -3.26   -0.14    3.86    8.62   13.68
+   190.0    0.00   -0.24   -0.92   -1.99   -3.36   -4.88   -6.39   -7.69   -8.59   -9.01   -8.92   -8.32   -7.22   -5.58   -3.28   -0.17    3.82    8.52   13.51
+   195.0    0.00   -0.25   -0.93   -1.99   -3.35   -4.88   -6.39   -7.69   -8.61   -9.04   -8.96   -8.36   -7.25   -5.60   -3.29   -0.19    3.76    8.43   13.40
+   200.0    0.00   -0.25   -0.93   -1.99   -3.35   -4.87   -6.38   -7.68   -8.61   -9.06   -8.98   -8.38   -7.26   -5.60   -3.30   -0.21    3.70    8.35   13.34
+   205.0    0.00   -0.25   -0.93   -1.99   -3.35   -4.86   -6.36   -7.66   -8.60   -9.06   -8.98   -8.37   -7.25   -5.58   -3.28   -0.23    3.66    8.30   13.37
+   210.0    0.00   -0.25   -0.94   -2.00   -3.34   -4.85   -6.34   -7.64   -8.58   -9.04   -8.96   -8.35   -7.22   -5.54   -3.25   -0.22    3.64    8.30   13.47
+   215.0    0.00   -0.26   -0.94   -2.00   -3.34   -4.83   -6.32   -7.61   -8.55   -9.00   -8.92   -8.30   -7.16   -5.49   -3.21   -0.20    3.66    8.35   13.65
+   220.0    0.00   -0.26   -0.94   -2.00   -3.34   -4.82   -6.30   -7.58   -8.51   -8.95   -8.86   -8.24   -7.09   -5.42   -3.14   -0.14    3.71    8.45   13.89
+   225.0    0.00   -0.26   -0.95   -2.00   -3.33   -4.82   -6.28   -7.55   -8.46   -8.89   -8.80   -8.17   -7.02   -5.34   -3.06   -0.06    3.81    8.60   14.17
+   230.0    0.00   -0.26   -0.95   -2.00   -3.33   -4.81   -6.26   -7.52   -8.41   -8.83   -8.73   -8.10   -6.95   -5.26   -2.97    0.05    3.95    8.79   14.46
+   235.0    0.00   -0.26   -0.95   -2.00   -3.33   -4.80   -6.24   -7.48   -8.36   -8.78   -8.67   -8.03   -6.88   -5.19   -2.88    0.18    4.12    9.01   14.72
+   240.0    0.00   -0.26   -0.95   -2.01   -3.33   -4.80   -6.23   -7.45   -8.32   -8.72   -8.61   -7.98   -6.82   -5.12   -2.78    0.32    4.31    9.23   14.94
+   245.0    0.00   -0.26   -0.95   -2.01   -3.33   -4.79   -6.21   -7.43   -8.28   -8.67   -8.56   -7.93   -6.78   -5.06   -2.69    0.46    4.50    9.43   15.09
+   250.0    0.00   -0.26   -0.95   -2.01   -3.33   -4.79   -6.20   -7.41   -8.25   -8.64   -8.52   -7.89   -6.74   -5.01   -2.60    0.59    4.67    9.60   15.16
+   255.0    0.00   -0.27   -0.95   -2.01   -3.33   -4.78   -6.19   -7.39   -8.23   -8.61   -8.49   -7.86   -6.71   -4.97   -2.54    0.70    4.80    9.70   15.14
+   260.0    0.00   -0.27   -0.95   -2.00   -3.33   -4.78   -6.19   -7.38   -8.21   -8.59   -8.47   -7.84   -6.68   -4.93   -2.49    0.76    4.87    9.73   15.04
+   265.0    0.00   -0.26   -0.95   -2.00   -3.32   -4.77   -6.18   -7.37   -8.20   -8.57   -8.45   -7.82   -6.65   -4.90   -2.45    0.79    4.88    9.69   14.87
+   270.0    0.00   -0.26   -0.95   -2.00   -3.32   -4.77   -6.18   -7.37   -8.20   -8.57   -8.44   -7.79   -6.62   -4.87   -2.45    0.77    4.82    9.57   14.66
+   275.0    0.00   -0.26   -0.95   -2.00   -3.31   -4.77   -6.18   -7.38   -8.21   -8.58   -8.43   -7.77   -6.59   -4.85   -2.46    0.71    4.70    9.40   14.42
+   280.0    0.00   -0.26   -0.94   -1.99   -3.31   -4.77   -6.19   -7.40   -8.23   -8.59   -8.42   -7.74   -6.56   -4.84   -2.49    0.61    4.54    9.19   14.18
+   285.0    0.00   -0.26   -0.94   -1.99   -3.31   -4.77   -6.21   -7.42   -8.26   -8.61   -8.42   -7.72   -6.53   -4.83   -2.53    0.49    4.35    8.96   13.96
+   290.0    0.00   -0.26   -0.94   -1.99   -3.31   -4.78   -6.22   -7.45   -8.30   -8.63   -8.43   -7.70   -6.50   -4.83   -2.59    0.36    4.15    8.74   13.77
+   295.0    0.00   -0.26   -0.94   -1.98   -3.31   -4.79   -6.25   -7.49   -8.34   -8.67   -8.44   -7.70   -6.49   -4.84   -2.65    0.23    3.97    8.55   13.63
+   300.0    0.00   -0.26   -0.94   -1.98   -3.32   -4.80   -6.28   -7.53   -8.38   -8.70   -8.46   -7.70   -6.50   -4.86   -2.72    0.11    3.82    8.42   13.55
+   305.0    0.00   -0.26   -0.93   -1.99   -3.33   -4.82   -6.31   -7.57   -8.43   -8.75   -8.49   -7.73   -6.52   -4.90   -2.79    0.02    3.73    8.35   13.51
+   310.0    0.00   -0.25   -0.93   -1.99   -3.34   -4.85   -6.34   -7.62   -8.47   -8.79   -8.53   -7.76   -6.56   -4.96   -2.86   -0.04    3.69    8.35   13.50
+   315.0    0.00   -0.25   -0.93   -1.99   -3.35   -4.87   -6.38   -7.66   -8.52   -8.83   -8.57   -7.81   -6.62   -5.02   -2.91   -0.07    3.71    8.40   13.53
+   320.0    0.00   -0.25   -0.93   -2.00   -3.37   -4.90   -6.42   -7.70   -8.56   -8.87   -8.62   -7.86   -6.69   -5.10   -2.97   -0.07    3.78    8.51   13.56
+   325.0    0.00   -0.25   -0.93   -2.01   -3.39   -4.93   -6.45   -7.74   -8.59   -8.90   -8.65   -7.92   -6.76   -5.17   -3.01   -0.04    3.89    8.64   13.60
+   330.0    0.00   -0.25   -0.93   -2.01   -3.41   -4.96   -6.49   -7.77   -8.62   -8.92   -8.69   -7.97   -6.84   -5.25   -3.04    0.00    4.01    8.78   13.62
+   335.0    0.00   -0.24   -0.93   -2.02   -3.43   -4.99   -6.52   -7.80   -8.64   -8.94   -8.71   -8.02   -6.90   -5.31   -3.07    0.05    4.13    8.91   13.62
+   340.0    0.00   -0.24   -0.93   -2.03   -3.44   -5.02   -6.55   -7.82   -8.65   -8.95   -8.73   -8.05   -6.96   -5.36   -3.08    0.10    4.23    9.01   13.61
+   345.0    0.00   -0.24   -0.93   -2.04   -3.46   -5.04   -6.58   -7.84   -8.66   -8.95   -8.74   -8.08   -6.99   -5.40   -3.09    0.13    4.30    9.07   13.57
+   350.0    0.00   -0.24   -0.93   -2.04   -3.47   -5.06   -6.60   -7.86   -8.66   -8.95   -8.74   -8.09   -7.02   -5.42   -3.10    0.15    4.33    9.08   13.53
+   355.0    0.00   -0.23   -0.93   -2.04   -3.48   -5.08   -6.61   -7.87   -8.67   -8.96   -8.75   -8.10   -7.03   -5.43   -3.10    0.16    4.33    9.04   13.48
+   360.0    0.00   -0.23   -0.92   -2.04   -3.49   -5.09   -6.62   -7.87   -8.68   -8.96   -8.75   -8.11   -7.03   -5.43   -3.09    0.14    4.29    8.98   13.44
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.11      0.45    119.92                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.18   -0.69   -1.41   -2.22   -3.03   -3.80   -4.51   -5.14   -5.57   -5.69   -5.36   -4.53   -3.26   -1.65    0.24    2.50    5.40    9.25
+     0.0    0.00   -0.22   -0.74   -1.44   -2.20   -2.96   -3.72   -4.48   -5.19   -5.74   -5.93   -5.60   -4.73   -3.40   -1.75    0.15    2.42    5.31    8.93
+     5.0    0.00   -0.21   -0.73   -1.44   -2.22   -2.99   -3.75   -4.51   -5.21   -5.75   -5.93   -5.61   -4.73   -3.40   -1.75    0.14    2.37    5.25    8.95
+    10.0    0.00   -0.21   -0.73   -1.44   -2.23   -3.01   -3.78   -4.52   -5.22   -5.74   -5.92   -5.60   -4.73   -3.39   -1.73    0.15    2.36    5.21    9.00
+    15.0    0.00   -0.20   -0.72   -1.44   -2.24   -3.03   -3.80   -4.53   -5.21   -5.72   -5.90   -5.59   -4.72   -3.37   -1.70    0.19    2.38    5.21    9.07
+    20.0    0.00   -0.19   -0.71   -1.44   -2.24   -3.04   -3.80   -4.53   -5.18   -5.69   -5.87   -5.57   -4.71   -3.35   -1.66    0.24    2.44    5.26    9.16
+    25.0    0.00   -0.19   -0.70   -1.43   -2.25   -3.05   -3.81   -4.51   -5.15   -5.64   -5.83   -5.54   -4.69   -3.33   -1.62    0.31    2.52    5.34    9.27
+    30.0    0.00   -0.18   -0.69   -1.42   -2.24   -3.05   -3.81   -4.50   -5.12   -5.60   -5.78   -5.50   -4.67   -3.31   -1.59    0.38    2.63    5.46    9.40
+    35.0    0.00   -0.17   -0.68   -1.41   -2.24   -3.05   -3.80   -4.49   -5.09   -5.55   -5.73   -5.46   -4.64   -3.30   -1.56    0.44    2.73    5.60    9.55
+    40.0    0.00   -0.17   -0.66   -1.40   -2.23   -3.05   -3.81   -4.49   -5.08   -5.52   -5.68   -5.41   -4.61   -3.28   -1.54    0.48    2.83    5.74    9.71
+    45.0    0.00   -0.16   -0.65   -1.38   -2.22   -3.05   -3.82   -4.49   -5.07   -5.49   -5.63   -5.36   -4.57   -3.27   -1.55    0.50    2.89    5.88    9.87
+    50.0    0.00   -0.15   -0.64   -1.36   -2.21   -3.05   -3.83   -4.52   -5.08   -5.48   -5.59   -5.30   -4.53   -3.27   -1.58    0.47    2.93    6.01   10.03
+    55.0    0.00   -0.15   -0.62   -1.35   -2.20   -3.06   -3.85   -4.55   -5.11   -5.48   -5.56   -5.26   -4.50   -3.27   -1.63    0.42    2.93    6.11   10.18
+    60.0    0.00   -0.14   -0.61   -1.33   -2.18   -3.06   -3.88   -4.59   -5.16   -5.50   -5.55   -5.22   -4.47   -3.28   -1.69    0.34    2.90    6.18   10.32
+    65.0    0.00   -0.13   -0.60   -1.31   -2.17   -3.07   -3.91   -4.64   -5.21   -5.53   -5.55   -5.19   -4.45   -3.30   -1.76    0.25    2.85    6.22   10.42
+    70.0    0.00   -0.13   -0.59   -1.30   -2.16   -3.07   -3.94   -4.70   -5.27   -5.58   -5.56   -5.19   -4.44   -3.33   -1.83    0.15    2.79    6.24   10.48
+    75.0    0.00   -0.12   -0.58   -1.29   -2.15   -3.07   -3.96   -4.74   -5.33   -5.63   -5.59   -5.20   -4.45   -3.36   -1.90    0.07    2.73    6.24   10.50
+    80.0    0.00   -0.12   -0.57   -1.27   -2.14   -3.07   -3.98   -4.78   -5.38   -5.68   -5.64   -5.22   -4.47   -3.39   -1.95    0.01    2.69    6.22   10.46
+    85.0    0.00   -0.12   -0.56   -1.26   -2.13   -3.06   -3.99   -4.80   -5.42   -5.74   -5.69   -5.27   -4.50   -3.42   -1.97   -0.01    2.66    6.18   10.36
+    90.0    0.00   -0.12   -0.56   -1.26   -2.12   -3.06   -3.98   -4.82   -5.45   -5.78   -5.75   -5.33   -4.54   -3.43   -1.96    0.01    2.67    6.14   10.22
+    95.0    0.00   -0.11   -0.56   -1.26   -2.12   -3.05   -3.97   -4.81   -5.46   -5.82   -5.81   -5.39   -4.59   -3.44   -1.92    0.07    2.70    6.09   10.05
+   100.0    0.00   -0.11   -0.56   -1.26   -2.11   -3.04   -3.96   -4.80   -5.46   -5.85   -5.86   -5.45   -4.63   -3.43   -1.86    0.16    2.76    6.03    9.86
+   105.0    0.00   -0.11   -0.56   -1.26   -2.12   -3.03   -3.94   -4.77   -5.45   -5.87   -5.91   -5.51   -4.66   -3.40   -1.77    0.27    2.82    5.98    9.67
+   110.0    0.00   -0.11   -0.57   -1.27   -2.13   -3.03   -3.92   -4.75   -5.43   -5.87   -5.94   -5.55   -4.68   -3.36   -1.66    0.40    2.89    5.92    9.51
+   115.0    0.00   -0.12   -0.58   -1.29   -2.14   -3.03   -3.91   -4.72   -5.40   -5.86   -5.96   -5.58   -4.68   -3.30   -1.55    0.52    2.95    5.86    9.39
+   120.0    0.00   -0.12   -0.59   -1.31   -2.16   -3.04   -3.90   -4.69   -5.37   -5.84   -5.96   -5.58   -4.66   -3.25   -1.45    0.62    2.99    5.81    9.33
+   125.0    0.00   -0.12   -0.60   -1.33   -2.19   -3.06   -3.90   -4.67   -5.34   -5.82   -5.94   -5.58   -4.64   -3.19   -1.37    0.70    3.01    5.77    9.33
+   130.0    0.00   -0.12   -0.61   -1.35   -2.21   -3.09   -3.91   -4.66   -5.32   -5.79   -5.92   -5.55   -4.61   -3.14   -1.31    0.74    3.01    5.74    9.39
+   135.0    0.00   -0.13   -0.62   -1.37   -2.25   -3.11   -3.92   -4.65   -5.29   -5.75   -5.88   -5.52   -4.58   -3.11   -1.28    0.75    2.99    5.73    9.49
+   140.0    0.00   -0.13   -0.63   -1.40   -2.28   -3.14   -3.94   -4.65   -5.27   -5.72   -5.84   -5.49   -4.56   -3.11   -1.30    0.72    2.95    5.72    9.61
+   145.0    0.00   -0.13   -0.64   -1.42   -2.30   -3.17   -3.96   -4.65   -5.25   -5.68   -5.81   -5.46   -4.55   -3.13   -1.34    0.66    2.90    5.74    9.73
+   150.0    0.00   -0.14   -0.65   -1.44   -2.33   -3.20   -3.98   -4.66   -5.24   -5.65   -5.77   -5.44   -4.56   -3.17   -1.41    0.58    2.86    5.75    9.82
+   155.0    0.00   -0.14   -0.66   -1.45   -2.34   -3.21   -3.99   -4.66   -5.22   -5.63   -5.75   -5.43   -4.59   -3.24   -1.51    0.48    2.80    5.77    9.86
+   160.0    0.00   -0.15   -0.67   -1.46   -2.35   -3.22   -3.99   -4.66   -5.21   -5.61   -5.73   -5.43   -4.62   -3.32   -1.62    0.38    2.75    5.78    9.83
+   165.0    0.00   -0.15   -0.67   -1.46   -2.35   -3.22   -3.99   -4.65   -5.21   -5.60   -5.73   -5.45   -4.67   -3.40   -1.73    0.28    2.70    5.76    9.71
+   170.0    0.00   -0.15   -0.67   -1.45   -2.34   -3.21   -3.98   -4.65   -5.20   -5.60   -5.73   -5.47   -4.72   -3.48   -1.84    0.18    2.64    5.71    9.52
+   175.0    0.00   -0.16   -0.67   -1.45   -2.32   -3.18   -3.96   -4.63   -5.20   -5.60   -5.74   -5.48   -4.75   -3.55   -1.93    0.09    2.57    5.64    9.27
+   180.0    0.00   -0.16   -0.67   -1.43   -2.30   -3.15   -3.93   -4.62   -5.20   -5.61   -5.75   -5.49   -4.78   -3.60   -2.00    0.01    2.49    5.53    8.98
+   185.0    0.00   -0.16   -0.67   -1.42   -2.27   -3.11   -3.90   -4.60   -5.20   -5.62   -5.76   -5.49   -4.78   -3.61   -2.04   -0.06    2.40    5.39    8.68
+   190.0    0.00   -0.16   -0.67   -1.40   -2.23   -3.07   -3.86   -4.59   -5.20   -5.63   -5.76   -5.48   -4.75   -3.60   -2.06   -0.13    2.29    5.23    8.41
+   195.0    0.00   -0.17   -0.66   -1.38   -2.20   -3.03   -3.83   -4.57   -5.20   -5.63   -5.75   -5.44   -4.70   -3.55   -2.05   -0.17    2.19    5.08    8.19
+   200.0    0.00   -0.17   -0.66   -1.36   -2.16   -2.99   -3.79   -4.54   -5.19   -5.63   -5.73   -5.40   -4.63   -3.48   -2.02   -0.21    2.09    4.93    8.05
+   205.0    0.00   -0.17   -0.66   -1.35   -2.13   -2.95   -3.75   -4.52   -5.18   -5.62   -5.70   -5.34   -4.54   -3.40   -1.97   -0.22    2.01    4.83    8.00
+   210.0    0.00   -0.18   -0.66   -1.33   -2.11   -2.91   -3.72   -4.49   -5.16   -5.59   -5.66   -5.27   -4.45   -3.30   -1.90   -0.21    1.95    4.76    8.05
+   215.0    0.00   -0.18   -0.66   -1.33   -2.09   -2.88   -3.69   -4.46   -5.13   -5.56   -5.61   -5.21   -4.37   -3.21   -1.82   -0.17    1.94    4.75    8.19
+   220.0    0.00   -0.18   -0.66   -1.32   -2.08   -2.86   -3.66   -4.43   -5.09   -5.52   -5.57   -5.15   -4.30   -3.13   -1.74   -0.11    1.97    4.79    8.39
+   225.0    0.00   -0.19   -0.67   -1.33   -2.07   -2.85   -3.63   -4.39   -5.05   -5.47   -5.52   -5.11   -4.25   -3.07   -1.66   -0.03    2.04    4.87    8.64
+   230.0    0.00   -0.19   -0.67   -1.33   -2.08   -2.85   -3.62   -4.36   -5.00   -5.42   -5.48   -5.08   -4.23   -3.03   -1.59    0.07    2.15    4.99    8.89
+   235.0    0.00   -0.20   -0.68   -1.35   -2.09   -2.85   -3.60   -4.32   -4.95   -5.38   -5.45   -5.08   -4.23   -3.01   -1.53    0.18    2.28    5.12    9.12
+   240.0    0.00   -0.20   -0.69   -1.37   -2.11   -2.87   -3.60   -4.30   -4.91   -5.33   -5.43   -5.09   -4.26   -3.01   -1.47    0.29    2.41    5.24    9.30
+   245.0    0.00   -0.21   -0.71   -1.39   -2.14   -2.89   -3.61   -4.28   -4.87   -5.30   -5.42   -5.11   -4.30   -3.03   -1.44    0.39    2.53    5.33    9.42
+   250.0    0.00   -0.22   -0.72   -1.41   -2.17   -2.92   -3.62   -4.27   -4.85   -5.28   -5.42   -5.14   -4.35   -3.06   -1.41    0.46    2.61    5.38    9.46
+   255.0    0.00   -0.22   -0.74   -1.44   -2.21   -2.95   -3.64   -4.27   -4.83   -5.26   -5.43   -5.18   -4.39   -3.09   -1.41    0.50    2.64    5.36    9.44
+   260.0    0.00   -0.23   -0.75   -1.46   -2.24   -2.99   -3.67   -4.28   -4.83   -5.27   -5.45   -5.21   -4.43   -3.12   -1.41    0.51    2.62    5.29    9.35
+   265.0    0.00   -0.23   -0.76   -1.49   -2.27   -3.02   -3.70   -4.30   -4.85   -5.28   -5.46   -5.23   -4.45   -3.14   -1.43    0.48    2.55    5.16    9.23
+   270.0    0.00   -0.24   -0.78   -1.51   -2.30   -3.05   -3.73   -4.33   -4.87   -5.29   -5.48   -5.24   -4.46   -3.14   -1.45    0.42    2.43    4.99    9.08
+   275.0    0.00   -0.24   -0.79   -1.52   -2.32   -3.08   -3.75   -4.35   -4.89   -5.32   -5.49   -5.24   -4.45   -3.14   -1.47    0.34    2.28    4.81    8.94
+   280.0    0.00   -0.24   -0.79   -1.53   -2.33   -3.09   -3.77   -4.38   -4.92   -5.34   -5.50   -5.23   -4.43   -3.13   -1.50    0.24    2.13    4.64    8.81
+   285.0    0.00   -0.25   -0.80   -1.54   -2.34   -3.09   -3.77   -4.39   -4.94   -5.36   -5.51   -5.22   -4.40   -3.11   -1.53    0.15    1.99    4.50    8.73
+   290.0    0.00   -0.25   -0.80   -1.54   -2.33   -3.08   -3.77   -4.39   -4.96   -5.38   -5.51   -5.20   -4.37   -3.09   -1.55    0.07    1.88    4.41    8.68
+   295.0    0.00   -0.25   -0.81   -1.54   -2.32   -3.06   -3.75   -4.39   -4.97   -5.39   -5.52   -5.19   -4.34   -3.07   -1.57    0.02    1.82    4.39    8.67
+   300.0    0.00   -0.25   -0.80   -1.53   -2.30   -3.03   -3.72   -4.37   -4.96   -5.40   -5.52   -5.18   -4.33   -3.06   -1.58   -0.01    1.82    4.44    8.70
+   305.0    0.00   -0.25   -0.80   -1.52   -2.27   -2.99   -3.68   -4.34   -4.96   -5.41   -5.54   -5.19   -4.33   -3.07   -1.59    0.00    1.87    4.55    8.75
+   310.0    0.00   -0.25   -0.80   -1.50   -2.24   -2.95   -3.64   -4.31   -4.95   -5.42   -5.55   -5.21   -4.34   -3.08   -1.60    0.03    1.97    4.71    8.82
+   315.0    0.00   -0.25   -0.79   -1.49   -2.21   -2.91   -3.60   -4.28   -4.94   -5.43   -5.58   -5.24   -4.38   -3.11   -1.60    0.08    2.10    4.90    8.88
+   320.0    0.00   -0.25   -0.79   -1.48   -2.19   -2.88   -3.57   -4.26   -4.93   -5.45   -5.61   -5.28   -4.42   -3.15   -1.61    0.13    2.25    5.09    8.93
+   325.0    0.00   -0.25   -0.78   -1.46   -2.17   -2.86   -3.54   -4.25   -4.94   -5.47   -5.65   -5.33   -4.48   -3.19   -1.62    0.18    2.38    5.26    8.96
+   330.0    0.00   -0.24   -0.78   -1.45   -2.16   -2.84   -3.54   -4.26   -4.96   -5.50   -5.70   -5.39   -4.53   -3.24   -1.64    0.22    2.49    5.40    8.98
+   335.0    0.00   -0.24   -0.77   -1.44   -2.15   -2.84   -3.54   -4.27   -4.99   -5.54   -5.75   -5.44   -4.59   -3.28   -1.66    0.24    2.56    5.49    8.98
+   340.0    0.00   -0.24   -0.76   -1.44   -2.15   -2.85   -3.56   -4.30   -5.03   -5.59   -5.80   -5.49   -4.63   -3.32   -1.68    0.25    2.59    5.53    8.96
+   345.0    0.00   -0.23   -0.76   -1.44   -2.16   -2.87   -3.59   -4.34   -5.07   -5.64   -5.84   -5.53   -4.67   -3.35   -1.71    0.23    2.58    5.52    8.94
+   350.0    0.00   -0.23   -0.75   -1.44   -2.17   -2.90   -3.63   -4.39   -5.12   -5.68   -5.88   -5.57   -4.70   -3.38   -1.73    0.20    2.54    5.46    8.92
+   355.0    0.00   -0.22   -0.75   -1.44   -2.18   -2.93   -3.67   -4.44   -5.16   -5.71   -5.91   -5.59   -4.72   -3.39   -1.75    0.17    2.48    5.39    8.92
+   360.0    0.00   -0.22   -0.74   -1.44   -2.20   -2.96   -3.72   -4.48   -5.19   -5.74   -5.93   -5.60   -4.73   -3.40   -1.75    0.15    2.42    5.31    8.93
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH700936B_M    SNOW                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               3    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+Number of Calibrated Antennas GPS:      003                 COMMENT             
+Number of Individual Calibrations GPS:  018                 COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.18     -0.20     89.61                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.24   -0.93   -2.01   -3.39   -4.94   -6.50   -7.90   -8.97   -9.54   -9.49   -8.74   -7.30   -5.19   -2.46    0.87    4.83    9.38   14.38
+     0.0    0.00   -0.24   -0.95   -2.07   -3.52   -5.15   -6.79   -8.22   -9.25   -9.72   -9.55   -8.74   -7.33   -5.36   -2.79    0.46    4.45    9.05   13.78
+     5.0    0.00   -0.24   -0.94   -2.07   -3.51   -5.14   -6.77   -8.21   -9.25   -9.73   -9.57   -8.76   -7.35   -5.37   -2.80    0.44    4.41    9.01   13.78
+    10.0    0.00   -0.24   -0.94   -2.06   -3.50   -5.12   -6.76   -8.20   -9.24   -9.74   -9.60   -8.80   -7.38   -5.39   -2.81    0.43    4.38    8.98   13.84
+    15.0    0.00   -0.23   -0.93   -2.05   -3.48   -5.10   -6.73   -8.18   -9.24   -9.76   -9.63   -8.84   -7.42   -5.41   -2.81    0.43    4.38    8.99   13.96
+    20.0    0.00   -0.23   -0.93   -2.04   -3.47   -5.08   -6.70   -8.15   -9.23   -9.77   -9.67   -8.89   -7.46   -5.43   -2.80    0.45    4.40    9.04   14.13
+    25.0    0.00   -0.23   -0.92   -2.03   -3.45   -5.05   -6.67   -8.12   -9.22   -9.79   -9.71   -8.94   -7.50   -5.44   -2.77    0.51    4.47    9.12   14.33
+    30.0    0.00   -0.23   -0.92   -2.01   -3.42   -5.01   -6.63   -8.09   -9.20   -9.79   -9.74   -8.99   -7.54   -5.44   -2.73    0.59    4.56    9.24   14.54
+    35.0    0.00   -0.22   -0.91   -2.00   -3.40   -4.98   -6.58   -8.04   -9.17   -9.79   -9.76   -9.02   -7.56   -5.42   -2.66    0.69    4.69    9.38   14.74
+    40.0    0.00   -0.22   -0.90   -1.99   -3.37   -4.94   -6.54   -7.99   -9.13   -9.77   -9.77   -9.04   -7.57   -5.39   -2.58    0.82    4.85    9.54   14.91
+    45.0    0.00   -0.22   -0.90   -1.97   -3.35   -4.90   -6.48   -7.93   -9.08   -9.73   -9.75   -9.03   -7.55   -5.35   -2.49    0.96    5.01    9.70   15.04
+    50.0    0.00   -0.22   -0.89   -1.96   -3.32   -4.86   -6.43   -7.87   -9.01   -9.67   -9.71   -9.00   -7.52   -5.29   -2.39    1.10    5.18    9.85   15.13
+    55.0    0.00   -0.21   -0.88   -1.94   -3.30   -4.82   -6.37   -7.80   -8.93   -9.60   -9.64   -8.95   -7.46   -5.22   -2.29    1.24    5.33    9.98   15.18
+    60.0    0.00   -0.21   -0.88   -1.93   -3.27   -4.78   -6.32   -7.73   -8.85   -9.52   -9.56   -8.87   -7.39   -5.14   -2.20    1.35    5.45   10.08   15.18
+    65.0    0.00   -0.21   -0.87   -1.92   -3.25   -4.75   -6.27   -7.66   -8.77   -9.42   -9.47   -8.78   -7.31   -5.07   -2.12    1.44    5.55   10.15   15.16
+    70.0    0.00   -0.21   -0.87   -1.91   -3.23   -4.72   -6.22   -7.60   -8.69   -9.33   -9.37   -8.69   -7.23   -5.00   -2.07    1.49    5.60   10.19   15.12
+    75.0    0.00   -0.21   -0.86   -1.90   -3.22   -4.69   -6.18   -7.55   -8.62   -9.25   -9.27   -8.59   -7.15   -4.95   -2.04    1.51    5.62   10.19   15.06
+    80.0    0.00   -0.21   -0.86   -1.89   -3.20   -4.67   -6.16   -7.51   -8.57   -9.18   -9.19   -8.51   -7.08   -4.91   -2.03    1.49    5.59   10.17   15.00
+    85.0    0.00   -0.21   -0.86   -1.89   -3.20   -4.66   -6.14   -7.48   -8.53   -9.13   -9.13   -8.45   -7.04   -4.89   -2.04    1.45    5.54   10.11   14.94
+    90.0    0.00   -0.21   -0.86   -1.88   -3.19   -4.65   -6.13   -7.47   -8.51   -9.10   -9.10   -8.42   -7.01   -4.88   -2.08    1.38    5.45   10.04   14.88
+    95.0    0.00   -0.21   -0.86   -1.88   -3.19   -4.65   -6.13   -7.47   -8.51   -9.10   -9.09   -8.41   -7.01   -4.90   -2.13    1.30    5.35    9.94   14.80
+   100.0    0.00   -0.21   -0.86   -1.89   -3.20   -4.66   -6.15   -7.49   -8.53   -9.12   -9.11   -8.42   -7.02   -4.93   -2.19    1.21    5.23    9.82   14.72
+   105.0    0.00   -0.21   -0.86   -1.89   -3.20   -4.68   -6.17   -7.52   -8.57   -9.16   -9.15   -8.45   -7.06   -4.98   -2.25    1.11    5.11    9.69   14.62
+   110.0    0.00   -0.21   -0.86   -1.90   -3.21   -4.69   -6.19   -7.56   -8.62   -9.21   -9.20   -8.50   -7.10   -5.03   -2.31    1.02    4.99    9.56   14.50
+   115.0    0.00   -0.21   -0.87   -1.91   -3.23   -4.72   -6.23   -7.60   -8.67   -9.27   -9.26   -8.56   -7.15   -5.08   -2.37    0.94    4.88    9.42   14.37
+   120.0    0.00   -0.21   -0.87   -1.92   -3.25   -4.74   -6.26   -7.64   -8.72   -9.32   -9.31   -8.61   -7.20   -5.12   -2.43    0.87    4.77    9.29   14.24
+   125.0    0.00   -0.21   -0.88   -1.93   -3.27   -4.77   -6.30   -7.69   -8.77   -9.37   -9.37   -8.66   -7.25   -5.16   -2.47    0.81    4.68    9.17   14.11
+   130.0    0.00   -0.22   -0.89   -1.94   -3.29   -4.80   -6.33   -7.72   -8.81   -9.41   -9.40   -8.70   -7.28   -5.20   -2.51    0.75    4.60    9.06   14.00
+   135.0    0.00   -0.22   -0.89   -1.95   -3.31   -4.83   -6.37   -7.76   -8.84   -9.44   -9.43   -8.72   -7.31   -5.23   -2.54    0.71    4.54    8.97   13.92
+   140.0    0.00   -0.22   -0.90   -1.97   -3.33   -4.86   -6.40   -7.79   -8.86   -9.46   -9.44   -8.74   -7.33   -5.25   -2.57    0.67    4.49    8.91   13.87
+   145.0    0.00   -0.23   -0.91   -1.98   -3.35   -4.89   -6.43   -7.82   -8.88   -9.47   -9.45   -8.74   -7.34   -5.27   -2.60    0.64    4.45    8.87   13.85
+   150.0    0.00   -0.23   -0.92   -2.00   -3.38   -4.92   -6.46   -7.84   -8.90   -9.47   -9.45   -8.74   -7.35   -5.29   -2.63    0.61    4.42    8.85   13.87
+   155.0    0.00   -0.23   -0.92   -2.01   -3.40   -4.94   -6.49   -7.87   -8.91   -9.48   -9.45   -8.75   -7.36   -5.31   -2.65    0.58    4.40    8.85   13.90
+   160.0    0.00   -0.23   -0.93   -2.03   -3.42   -4.97   -6.52   -7.89   -8.93   -9.49   -9.45   -8.76   -7.38   -5.34   -2.68    0.56    4.39    8.85   13.95
+   165.0    0.00   -0.24   -0.94   -2.04   -3.44   -4.99   -6.54   -7.91   -8.95   -9.51   -9.47   -8.77   -7.40   -5.37   -2.71    0.53    4.38    8.86   13.99
+   170.0    0.00   -0.24   -0.94   -2.05   -3.45   -5.01   -6.56   -7.94   -8.97   -9.53   -9.50   -8.80   -7.43   -5.40   -2.75    0.51    4.36    8.86   14.02
+   175.0    0.00   -0.24   -0.95   -2.06   -3.46   -5.03   -6.58   -7.96   -9.00   -9.56   -9.53   -8.84   -7.47   -5.44   -2.78    0.49    4.35    8.86   14.02
+   180.0    0.00   -0.25   -0.95   -2.06   -3.47   -5.04   -6.60   -7.98   -9.03   -9.60   -9.58   -8.89   -7.52   -5.48   -2.81    0.46    4.33    8.84   14.00
+   185.0    0.00   -0.25   -0.96   -2.07   -3.48   -5.04   -6.61   -8.00   -9.06   -9.64   -9.63   -8.94   -7.57   -5.51   -2.83    0.45    4.32    8.82   13.97
+   190.0    0.00   -0.25   -0.96   -2.07   -3.48   -5.04   -6.61   -8.01   -9.08   -9.68   -9.67   -8.99   -7.61   -5.55   -2.85    0.43    4.31    8.80   13.93
+   195.0    0.00   -0.25   -0.96   -2.07   -3.48   -5.04   -6.61   -8.02   -9.10   -9.70   -9.71   -9.03   -7.64   -5.57   -2.87    0.42    4.30    8.79   13.91
+   200.0    0.00   -0.25   -0.97   -2.07   -3.47   -5.03   -6.60   -8.01   -9.11   -9.72   -9.73   -9.06   -7.66   -5.59   -2.87    0.43    4.31    8.81   13.92
+   205.0    0.00   -0.25   -0.97   -2.07   -3.46   -5.02   -6.58   -8.00   -9.10   -9.72   -9.74   -9.06   -7.67   -5.59   -2.87    0.45    4.35    8.87   13.98
+   210.0    0.00   -0.26   -0.97   -2.07   -3.46   -5.00   -6.57   -7.98   -9.08   -9.71   -9.73   -9.06   -7.66   -5.57   -2.85    0.48    4.42    8.97   14.10
+   215.0    0.00   -0.26   -0.97   -2.06   -3.45   -4.99   -6.54   -7.96   -9.06   -9.68   -9.70   -9.03   -7.63   -5.54   -2.81    0.54    4.52    9.12   14.29
+   220.0    0.00   -0.26   -0.97   -2.06   -3.44   -4.97   -6.52   -7.93   -9.02   -9.65   -9.66   -8.98   -7.59   -5.50   -2.75    0.63    4.65    9.32   14.53
+   225.0    0.00   -0.26   -0.97   -2.06   -3.43   -4.95   -6.50   -7.90   -8.98   -9.60   -9.61   -8.92   -7.53   -5.43   -2.67    0.74    4.82    9.56   14.80
+   230.0    0.00   -0.26   -0.97   -2.05   -3.42   -4.94   -6.48   -7.87   -8.94   -9.55   -9.55   -8.86   -7.45   -5.35   -2.58    0.87    5.02    9.82   15.09
+   235.0    0.00   -0.26   -0.97   -2.05   -3.41   -4.93   -6.46   -7.84   -8.91   -9.50   -9.49   -8.79   -7.38   -5.26   -2.46    1.03    5.23   10.08   15.36
+   240.0    0.00   -0.26   -0.97   -2.05   -3.41   -4.92   -6.44   -7.82   -8.87   -9.46   -9.43   -8.72   -7.29   -5.16   -2.33    1.20    5.44   10.32   15.57
+   245.0    0.00   -0.26   -0.97   -2.05   -3.40   -4.91   -6.43   -7.80   -8.85   -9.42   -9.38   -8.65   -7.21   -5.05   -2.20    1.37    5.63   10.51   15.70
+   250.0    0.00   -0.26   -0.97   -2.05   -3.40   -4.91   -6.43   -7.79   -8.83   -9.39   -9.34   -8.60   -7.13   -4.95   -2.06    1.53    5.80   10.64   15.73
+   255.0    0.00   -0.26   -0.96   -2.04   -3.40   -4.91   -6.43   -7.79   -8.83   -9.38   -9.32   -8.55   -7.06   -4.84   -1.93    1.66    5.91   10.69   15.66
+   260.0    0.00   -0.26   -0.96   -2.04   -3.40   -4.91   -6.43   -7.79   -8.83   -9.38   -9.30   -8.52   -6.99   -4.75   -1.82    1.77    5.97   10.65   15.48
+   265.0    0.00   -0.26   -0.96   -2.04   -3.40   -4.91   -6.44   -7.80   -8.84   -9.39   -9.30   -8.49   -6.94   -4.67   -1.73    1.83    5.96   10.53   15.23
+   270.0    0.00   -0.26   -0.96   -2.04   -3.40   -4.92   -6.45   -7.82   -8.86   -9.40   -9.30   -8.48   -6.90   -4.61   -1.68    1.84    5.88   10.33   14.92
+   275.0    0.00   -0.26   -0.96   -2.05   -3.41   -4.93   -6.46   -7.84   -8.88   -9.42   -9.32   -8.47   -6.88   -4.58   -1.66    1.80    5.75   10.09   14.60
+   280.0    0.00   -0.26   -0.96   -2.05   -3.41   -4.94   -6.47   -7.86   -8.91   -9.45   -9.33   -8.48   -6.87   -4.57   -1.68    1.72    5.58    9.83   14.29
+   285.0    0.00   -0.26   -0.96   -2.05   -3.42   -4.95   -6.49   -7.89   -8.94   -9.48   -9.36   -8.49   -6.87   -4.59   -1.73    1.60    5.38    9.56   14.03
+   290.0    0.00   -0.26   -0.96   -2.05   -3.42   -4.96   -6.51   -7.91   -8.98   -9.51   -9.38   -8.51   -6.89   -4.63   -1.82    1.45    5.17    9.32   13.85
+   295.0    0.00   -0.26   -0.96   -2.05   -3.43   -4.97   -6.54   -7.95   -9.01   -9.55   -9.41   -8.53   -6.93   -4.69   -1.93    1.29    4.96    9.13   13.75
+   300.0    0.00   -0.26   -0.96   -2.05   -3.44   -4.99   -6.56   -7.98   -9.05   -9.58   -9.44   -8.56   -6.97   -4.77   -2.05    1.13    4.79    9.00   13.74
+   305.0    0.00   -0.26   -0.96   -2.06   -3.45   -5.01   -6.59   -8.01   -9.08   -9.61   -9.47   -8.59   -7.02   -4.85   -2.17    0.97    4.65    8.93   13.79
+   310.0    0.00   -0.26   -0.96   -2.06   -3.46   -5.03   -6.62   -8.05   -9.11   -9.64   -9.49   -8.63   -7.08   -4.94   -2.30    0.84    4.55    8.91   13.89
+   315.0    0.00   -0.25   -0.96   -2.06   -3.47   -5.05   -6.65   -8.08   -9.15   -9.67   -9.52   -8.66   -7.13   -5.03   -2.41    0.73    4.49    8.95   14.01
+   320.0    0.00   -0.25   -0.96   -2.07   -3.48   -5.07   -6.68   -8.11   -9.18   -9.69   -9.53   -8.68   -7.18   -5.11   -2.51    0.65    4.47    9.01   14.11
+   325.0    0.00   -0.25   -0.96   -2.07   -3.49   -5.09   -6.71   -8.14   -9.20   -9.70   -9.55   -8.70   -7.22   -5.18   -2.59    0.60    4.48    9.08   14.19
+   330.0    0.00   -0.25   -0.96   -2.07   -3.50   -5.11   -6.73   -8.17   -9.22   -9.72   -9.55   -8.72   -7.26   -5.23   -2.64    0.57    4.50    9.15   14.22
+   335.0    0.00   -0.25   -0.96   -2.08   -3.51   -5.13   -6.75   -8.19   -9.24   -9.72   -9.55   -8.72   -7.28   -5.27   -2.69    0.55    4.52    9.20   14.19
+   340.0    0.00   -0.25   -0.96   -2.08   -3.52   -5.14   -6.77   -8.21   -9.25   -9.72   -9.55   -8.73   -7.29   -5.30   -2.72    0.53    4.54    9.22   14.12
+   345.0    0.00   -0.25   -0.96   -2.08   -3.52   -5.15   -6.78   -8.22   -9.25   -9.72   -9.55   -8.72   -7.30   -5.32   -2.74    0.52    4.54    9.21   14.03
+   350.0    0.00   -0.24   -0.95   -2.08   -3.52   -5.15   -6.79   -8.22   -9.25   -9.72   -9.54   -8.72   -7.31   -5.33   -2.76    0.50    4.52    9.17   13.92
+   355.0    0.00   -0.24   -0.95   -2.08   -3.52   -5.15   -6.79   -8.22   -9.25   -9.72   -9.54   -8.73   -7.32   -5.35   -2.78    0.48    4.49    9.11   13.83
+   360.0    0.00   -0.24   -0.95   -2.07   -3.52   -5.15   -6.79   -8.22   -9.25   -9.72   -9.55   -8.74   -7.33   -5.36   -2.79    0.46    4.45    9.05   13.78
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.01      0.44    119.32                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.13   -0.50   -1.05   -1.70   -2.41   -3.17   -3.93   -4.67   -5.26   -5.57   -5.46   -4.83   -3.68   -2.03    0.08    2.69    5.89    9.75
+     0.0    0.00   -0.13   -0.48   -1.00   -1.63   -2.34   -3.12   -3.94   -4.72   -5.34   -5.65   -5.54   -4.94   -3.88   -2.38   -0.38    2.30    5.85   10.27
+     5.0    0.00   -0.12   -0.48   -1.00   -1.64   -2.36   -3.13   -3.94   -4.71   -5.33   -5.65   -5.55   -4.97   -3.90   -2.38   -0.36    2.31    5.80   10.12
+    10.0    0.00   -0.12   -0.48   -1.01   -1.65   -2.37   -3.14   -3.94   -4.70   -5.32   -5.65   -5.56   -4.98   -3.92   -2.38   -0.34    2.32    5.77   10.01
+    15.0    0.00   -0.12   -0.48   -1.02   -1.67   -2.38   -3.14   -3.93   -4.69   -5.31   -5.64   -5.56   -4.99   -3.92   -2.37   -0.32    2.34    5.75    9.94
+    20.0    0.00   -0.12   -0.48   -1.02   -1.67   -2.39   -3.15   -3.93   -4.68   -5.29   -5.63   -5.56   -4.99   -3.91   -2.34   -0.29    2.36    5.75    9.93
+    25.0    0.00   -0.12   -0.48   -1.03   -1.68   -2.39   -3.15   -3.92   -4.66   -5.28   -5.62   -5.54   -4.97   -3.88   -2.30   -0.24    2.40    5.78    9.96
+    30.0    0.00   -0.12   -0.48   -1.03   -1.68   -2.40   -3.15   -3.91   -4.65   -5.26   -5.59   -5.51   -4.93   -3.83   -2.25   -0.18    2.45    5.83   10.02
+    35.0    0.00   -0.12   -0.48   -1.03   -1.69   -2.40   -3.15   -3.91   -4.64   -5.24   -5.57   -5.48   -4.88   -3.78   -2.18   -0.11    2.52    5.89   10.11
+    40.0    0.00   -0.12   -0.48   -1.03   -1.69   -2.40   -3.15   -3.90   -4.63   -5.22   -5.54   -5.44   -4.83   -3.71   -2.11   -0.03    2.61    5.97   10.19
+    45.0    0.00   -0.12   -0.48   -1.03   -1.69   -2.40   -3.15   -3.90   -4.62   -5.21   -5.51   -5.39   -4.78   -3.64   -2.03    0.06    2.70    6.06   10.26
+    50.0    0.00   -0.12   -0.48   -1.03   -1.69   -2.41   -3.15   -3.91   -4.62   -5.19   -5.48   -5.36   -4.72   -3.58   -1.95    0.15    2.80    6.15   10.30
+    55.0    0.00   -0.12   -0.48   -1.03   -1.69   -2.41   -3.16   -3.91   -4.62   -5.19   -5.46   -5.32   -4.68   -3.53   -1.89    0.24    2.90    6.23   10.29
+    60.0    0.00   -0.11   -0.48   -1.03   -1.70   -2.42   -3.17   -3.93   -4.63   -5.18   -5.45   -5.30   -4.66   -3.49   -1.83    0.31    3.00    6.30   10.25
+    65.0    0.00   -0.11   -0.48   -1.03   -1.70   -2.43   -3.19   -3.94   -4.64   -5.19   -5.45   -5.30   -4.65   -3.47   -1.79    0.38    3.08    6.36   10.17
+    70.0    0.00   -0.11   -0.48   -1.03   -1.70   -2.44   -3.20   -3.96   -4.66   -5.20   -5.46   -5.30   -4.65   -3.47   -1.78    0.43    3.15    6.40   10.07
+    75.0    0.00   -0.11   -0.48   -1.03   -1.71   -2.45   -3.22   -3.99   -4.68   -5.22   -5.48   -5.32   -4.67   -3.49   -1.77    0.46    3.20    6.42    9.95
+    80.0    0.00   -0.11   -0.48   -1.03   -1.72   -2.47   -3.25   -4.01   -4.71   -5.25   -5.50   -5.35   -4.70   -3.52   -1.78    0.47    3.23    6.42    9.83
+    85.0    0.00   -0.11   -0.48   -1.04   -1.73   -2.48   -3.27   -4.04   -4.74   -5.27   -5.53   -5.39   -4.74   -3.55   -1.80    0.47    3.24    6.40    9.72
+    90.0    0.00   -0.11   -0.48   -1.04   -1.73   -2.50   -3.29   -4.06   -4.76   -5.30   -5.56   -5.42   -4.78   -3.58   -1.83    0.46    3.23    6.36    9.63
+    95.0    0.00   -0.11   -0.48   -1.04   -1.74   -2.51   -3.31   -4.08   -4.79   -5.33   -5.60   -5.46   -4.81   -3.61   -1.85    0.45    3.21    6.31    9.55
+   100.0    0.00   -0.11   -0.48   -1.05   -1.75   -2.52   -3.32   -4.10   -4.81   -5.35   -5.62   -5.49   -4.84   -3.63   -1.86    0.43    3.17    6.25    9.50
+   105.0    0.00   -0.11   -0.48   -1.05   -1.76   -2.53   -3.33   -4.11   -4.82   -5.37   -5.64   -5.50   -4.85   -3.63   -1.85    0.42    3.12    6.18    9.46
+   110.0    0.00   -0.11   -0.48   -1.05   -1.76   -2.54   -3.34   -4.12   -4.83   -5.38   -5.66   -5.51   -4.85   -3.61   -1.84    0.41    3.07    6.10    9.44
+   115.0    0.00   -0.11   -0.48   -1.06   -1.76   -2.54   -3.34   -4.12   -4.83   -5.39   -5.66   -5.52   -4.84   -3.59   -1.81    0.41    3.02    6.01    9.42
+   120.0    0.00   -0.11   -0.48   -1.06   -1.77   -2.54   -3.33   -4.11   -4.82   -5.38   -5.66   -5.51   -4.82   -3.56   -1.78    0.42    2.98    5.94    9.40
+   125.0    0.00   -0.11   -0.48   -1.06   -1.77   -2.53   -3.32   -4.09   -4.81   -5.38   -5.66   -5.50   -4.80   -3.52   -1.74    0.43    2.94    5.86    9.38
+   130.0    0.00   -0.12   -0.49   -1.06   -1.76   -2.53   -3.31   -4.08   -4.79   -5.36   -5.65   -5.49   -4.78   -3.49   -1.71    0.44    2.91    5.80    9.36
+   135.0    0.00   -0.12   -0.49   -1.06   -1.76   -2.52   -3.29   -4.06   -4.77   -5.35   -5.64   -5.49   -4.77   -3.47   -1.69    0.44    2.88    5.75    9.32
+   140.0    0.00   -0.12   -0.49   -1.06   -1.76   -2.51   -3.28   -4.04   -4.75   -5.34   -5.64   -5.49   -4.76   -3.46   -1.68    0.44    2.87    5.71    9.28
+   145.0    0.00   -0.12   -0.49   -1.06   -1.75   -2.50   -3.26   -4.02   -4.74   -5.33   -5.64   -5.49   -4.78   -3.48   -1.70    0.43    2.85    5.69    9.24
+   150.0    0.00   -0.12   -0.49   -1.06   -1.75   -2.49   -3.25   -4.01   -4.73   -5.32   -5.64   -5.51   -4.80   -3.51   -1.73    0.40    2.83    5.67    9.19
+   155.0    0.00   -0.12   -0.49   -1.06   -1.75   -2.49   -3.24   -4.00   -4.72   -5.33   -5.65   -5.53   -4.84   -3.56   -1.78    0.36    2.81    5.66    9.13
+   160.0    0.00   -0.12   -0.50   -1.06   -1.75   -2.48   -3.24   -4.00   -4.72   -5.33   -5.67   -5.56   -4.88   -3.62   -1.85    0.31    2.78    5.65    9.08
+   165.0    0.00   -0.13   -0.50   -1.06   -1.74   -2.48   -3.24   -4.00   -4.73   -5.35   -5.69   -5.59   -4.93   -3.68   -1.93    0.23    2.74    5.64    9.02
+   170.0    0.00   -0.13   -0.50   -1.06   -1.74   -2.48   -3.24   -4.01   -4.75   -5.36   -5.71   -5.62   -4.98   -3.75   -2.01    0.16    2.69    5.61    8.96
+   175.0    0.00   -0.13   -0.50   -1.07   -1.74   -2.48   -3.24   -4.01   -4.76   -5.38   -5.73   -5.65   -5.02   -3.82   -2.09    0.07    2.62    5.58    8.90
+   180.0    0.00   -0.13   -0.51   -1.07   -1.74   -2.48   -3.24   -4.02   -4.78   -5.40   -5.75   -5.67   -5.05   -3.87   -2.16   -0.01    2.55    5.54    8.85
+   185.0    0.00   -0.13   -0.51   -1.07   -1.74   -2.48   -3.24   -4.03   -4.79   -5.42   -5.77   -5.69   -5.08   -3.91   -2.23   -0.09    2.48    5.49    8.82
+   190.0    0.00   -0.14   -0.51   -1.07   -1.74   -2.47   -3.24   -4.03   -4.80   -5.42   -5.77   -5.69   -5.08   -3.93   -2.27   -0.15    2.41    5.44    8.80
+   195.0    0.00   -0.14   -0.52   -1.07   -1.74   -2.47   -3.24   -4.03   -4.79   -5.42   -5.77   -5.68   -5.08   -3.93   -2.30   -0.20    2.36    5.40    8.81
+   200.0    0.00   -0.14   -0.52   -1.08   -1.74   -2.46   -3.23   -4.02   -4.78   -5.41   -5.75   -5.67   -5.06   -3.92   -2.30   -0.23    2.32    5.38    8.86
+   205.0    0.00   -0.14   -0.53   -1.08   -1.74   -2.46   -3.22   -4.01   -4.77   -5.39   -5.73   -5.64   -5.03   -3.89   -2.28   -0.23    2.31    5.39    8.95
+   210.0    0.00   -0.15   -0.53   -1.08   -1.74   -2.45   -3.20   -3.98   -4.74   -5.36   -5.70   -5.60   -4.99   -3.86   -2.25   -0.20    2.33    5.43    9.08
+   215.0    0.00   -0.15   -0.53   -1.09   -1.74   -2.44   -3.19   -3.95   -4.70   -5.32   -5.65   -5.56   -4.95   -3.81   -2.20   -0.15    2.38    5.51    9.25
+   220.0    0.00   -0.15   -0.54   -1.09   -1.74   -2.44   -3.17   -3.92   -4.66   -5.27   -5.61   -5.51   -4.90   -3.76   -2.14   -0.08    2.47    5.62    9.46
+   225.0    0.00   -0.15   -0.54   -1.10   -1.74   -2.43   -3.15   -3.89   -4.61   -5.22   -5.56   -5.47   -4.85   -3.70   -2.07    0.02    2.58    5.76    9.67
+   230.0    0.00   -0.15   -0.55   -1.10   -1.75   -2.43   -3.13   -3.86   -4.57   -5.17   -5.50   -5.42   -4.81   -3.65   -1.99    0.12    2.72    5.92    9.88
+   235.0    0.00   -0.16   -0.55   -1.11   -1.75   -2.43   -3.12   -3.83   -4.53   -5.12   -5.45   -5.38   -4.77   -3.60   -1.91    0.24    2.86    6.09   10.07
+   240.0    0.00   -0.16   -0.55   -1.11   -1.76   -2.43   -3.11   -3.81   -4.49   -5.07   -5.41   -5.34   -4.73   -3.55   -1.84    0.35    3.00    6.23   10.21
+   245.0    0.00   -0.16   -0.55   -1.12   -1.76   -2.43   -3.11   -3.79   -4.46   -5.03   -5.37   -5.30   -4.70   -3.51   -1.77    0.45    3.13    6.35   10.28
+   250.0    0.00   -0.16   -0.56   -1.12   -1.76   -2.43   -3.10   -3.78   -4.44   -5.01   -5.34   -5.27   -4.67   -3.47   -1.71    0.54    3.23    6.43   10.28
+   255.0    0.00   -0.16   -0.56   -1.12   -1.76   -2.43   -3.10   -3.78   -4.43   -4.99   -5.32   -5.26   -4.65   -3.45   -1.67    0.60    3.30    6.46   10.21
+   260.0    0.00   -0.16   -0.55   -1.11   -1.76   -2.43   -3.10   -3.78   -4.43   -4.99   -5.32   -5.25   -4.65   -3.43   -1.65    0.63    3.33    6.44   10.06
+   265.0    0.00   -0.16   -0.55   -1.11   -1.75   -2.43   -3.10   -3.78   -4.43   -4.99   -5.32   -5.25   -4.65   -3.43   -1.64    0.63    3.31    6.36    9.87
+   270.0    0.00   -0.16   -0.55   -1.10   -1.74   -2.42   -3.10   -3.79   -4.45   -5.01   -5.34   -5.27   -4.66   -3.45   -1.66    0.60    3.25    6.25    9.65
+   275.0    0.00   -0.16   -0.54   -1.09   -1.73   -2.41   -3.10   -3.80   -4.47   -5.04   -5.36   -5.29   -4.68   -3.47   -1.70    0.54    3.15    6.10    9.43
+   280.0    0.00   -0.15   -0.54   -1.08   -1.71   -2.39   -3.09   -3.81   -4.49   -5.07   -5.40   -5.32   -4.70   -3.50   -1.76    0.44    3.02    5.95    9.25
+   285.0    0.00   -0.15   -0.53   -1.07   -1.70   -2.37   -3.08   -3.81   -4.52   -5.11   -5.44   -5.35   -4.73   -3.54   -1.83    0.33    2.87    5.80    9.13
+   290.0    0.00   -0.15   -0.52   -1.05   -1.67   -2.35   -3.07   -3.82   -4.55   -5.15   -5.48   -5.38   -4.76   -3.59   -1.91    0.20    2.72    5.67    9.09
+   295.0    0.00   -0.15   -0.51   -1.03   -1.65   -2.33   -3.06   -3.83   -4.58   -5.19   -5.52   -5.42   -4.79   -3.64   -2.00    0.07    2.57    5.58    9.14
+   300.0    0.00   -0.15   -0.51   -1.02   -1.63   -2.31   -3.05   -3.83   -4.60   -5.23   -5.56   -5.45   -4.82   -3.68   -2.09   -0.06    2.44    5.52    9.27
+   305.0    0.00   -0.14   -0.50   -1.00   -1.61   -2.29   -3.04   -3.84   -4.63   -5.26   -5.59   -5.47   -4.84   -3.72   -2.16   -0.18    2.32    5.51    9.48
+   310.0    0.00   -0.14   -0.49   -0.99   -1.59   -2.27   -3.03   -3.85   -4.65   -5.29   -5.61   -5.48   -4.85   -3.75   -2.23   -0.28    2.24    5.54    9.74
+   315.0    0.00   -0.14   -0.49   -0.98   -1.57   -2.26   -3.02   -3.85   -4.67   -5.32   -5.63   -5.49   -4.86   -3.77   -2.28   -0.36    2.18    5.60   10.02
+   320.0    0.00   -0.14   -0.48   -0.97   -1.56   -2.25   -3.02   -3.86   -4.68   -5.33   -5.64   -5.50   -4.86   -3.79   -2.32   -0.41    2.16    5.68   10.29
+   325.0    0.00   -0.13   -0.48   -0.97   -1.56   -2.25   -3.03   -3.87   -4.70   -5.35   -5.65   -5.49   -4.86   -3.79   -2.35   -0.45    2.15    5.76   10.52
+   330.0    0.00   -0.13   -0.47   -0.96   -1.56   -2.25   -3.03   -3.89   -4.71   -5.35   -5.65   -5.49   -4.86   -3.80   -2.36   -0.46    2.17    5.84   10.69
+   335.0    0.00   -0.13   -0.47   -0.96   -1.56   -2.26   -3.05   -3.90   -4.72   -5.36   -5.65   -5.49   -4.86   -3.80   -2.37   -0.46    2.19    5.90   10.78
+   340.0    0.00   -0.13   -0.47   -0.97   -1.57   -2.27   -3.06   -3.91   -4.72   -5.36   -5.65   -5.49   -4.86   -3.81   -2.37   -0.45    2.22    5.93   10.78
+   345.0    0.00   -0.13   -0.47   -0.97   -1.58   -2.29   -3.08   -3.92   -4.73   -5.36   -5.65   -5.50   -4.87   -3.82   -2.37   -0.43    2.24    5.94   10.72
+   350.0    0.00   -0.13   -0.47   -0.98   -1.60   -2.31   -3.09   -3.93   -4.73   -5.35   -5.65   -5.51   -4.89   -3.84   -2.37   -0.41    2.27    5.92   10.59
+   355.0    0.00   -0.13   -0.47   -0.99   -1.61   -2.32   -3.11   -3.93   -4.72   -5.35   -5.65   -5.52   -4.92   -3.86   -2.38   -0.39    2.29    5.89   10.44
+   360.0    0.00   -0.13   -0.48   -1.00   -1.63   -2.34   -3.12   -3.94   -4.72   -5.34   -5.65   -5.54   -4.94   -3.88   -2.38   -0.38    2.30    5.85   10.27
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH700936C_M    NONE                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               7    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     4                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+Number of Calibrated Antennas GPS:      007                 COMMENT             
+Number of Individual Calibrations GPS:  014                 COMMENT             
+Number of Calibrated Antennas GLO:      007                 COMMENT             
+Number of Individual Calibrations GLO:  020                 COMMENT             
+# GLONASS PCV                                               COMMENT             
+#  derived from Delta PCV per 25.0 MHz                      COMMENT             
+#  for frequency channel number k=0                         COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.30     -0.62     90.74                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.25   -0.96   -2.06   -3.41   -4.85   -6.22   -7.35   -8.13   -8.48   -8.35   -7.74   -6.62   -4.93   -2.57    0.56    4.52    9.21   14.27
+     0.0    0.00   -0.28   -1.02   -2.13   -3.49   -4.95   -6.34   -7.50   -8.29   -8.61   -8.44   -7.80   -6.67   -5.02   -2.75    0.31    4.24    8.89   13.79
+     5.0    0.00   -0.28   -1.01   -2.12   -3.47   -4.92   -6.32   -7.49   -8.29   -8.63   -8.47   -7.81   -6.67   -5.03   -2.77    0.25    4.14    8.82   13.86
+    10.0    0.00   -0.28   -1.01   -2.10   -3.45   -4.90   -6.30   -7.48   -8.30   -8.65   -8.49   -7.82   -6.67   -5.03   -2.79    0.19    4.05    8.77   13.97
+    15.0    0.00   -0.28   -1.00   -2.09   -3.43   -4.88   -6.28   -7.48   -8.31   -8.67   -8.51   -7.83   -6.67   -5.02   -2.81    0.15    4.00    8.76   14.10
+    20.0    0.00   -0.27   -1.00   -2.08   -3.41   -4.86   -6.27   -7.47   -8.31   -8.68   -8.52   -7.84   -6.67   -5.01   -2.80    0.14    3.99    8.79   14.26
+    25.0    0.00   -0.27   -0.99   -2.07   -3.40   -4.84   -6.25   -7.46   -8.32   -8.69   -8.53   -7.84   -6.66   -5.00   -2.78    0.16    4.03    8.87   14.43
+    30.0    0.00   -0.27   -0.99   -2.06   -3.39   -4.83   -6.24   -7.46   -8.31   -8.69   -8.54   -7.84   -6.66   -4.98   -2.75    0.22    4.12    9.00   14.59
+    35.0    0.00   -0.27   -0.98   -2.05   -3.38   -4.82   -6.23   -7.44   -8.30   -8.69   -8.53   -7.84   -6.65   -4.96   -2.69    0.32    4.26    9.17   14.74
+    40.0    0.00   -0.26   -0.97   -2.05   -3.37   -4.81   -6.21   -7.43   -8.29   -8.67   -8.52   -7.83   -6.64   -4.93   -2.63    0.44    4.43    9.36   14.86
+    45.0    0.00   -0.26   -0.97   -2.04   -3.36   -4.79   -6.20   -7.41   -8.26   -8.65   -8.50   -7.82   -6.62   -4.90   -2.55    0.57    4.62    9.55   14.96
+    50.0    0.00   -0.26   -0.96   -2.03   -3.35   -4.78   -6.18   -7.38   -8.23   -8.61   -8.47   -7.79   -6.60   -4.86   -2.47    0.71    4.81    9.74   15.03
+    55.0    0.00   -0.26   -0.96   -2.02   -3.34   -4.77   -6.16   -7.35   -8.19   -8.57   -8.43   -7.76   -6.57   -4.82   -2.40    0.84    4.98    9.90   15.08
+    60.0    0.00   -0.25   -0.95   -2.02   -3.33   -4.75   -6.13   -7.31   -8.15   -8.52   -8.38   -7.72   -6.53   -4.77   -2.33    0.94    5.12   10.03   15.10
+    65.0    0.00   -0.25   -0.95   -2.01   -3.32   -4.73   -6.11   -7.28   -8.10   -8.47   -8.33   -7.67   -6.49   -4.73   -2.27    1.02    5.21   10.11   15.11
+    70.0    0.00   -0.25   -0.94   -2.00   -3.30   -4.71   -6.08   -7.24   -8.05   -8.42   -8.28   -7.63   -6.45   -4.69   -2.23    1.07    5.26   10.14   15.10
+    75.0    0.00   -0.24   -0.94   -1.99   -3.29   -4.70   -6.05   -7.20   -8.01   -8.37   -8.24   -7.58   -6.41   -4.65   -2.20    1.08    5.26   10.12   15.08
+    80.0    0.00   -0.24   -0.93   -1.98   -3.28   -4.68   -6.03   -7.17   -7.98   -8.34   -8.20   -7.55   -6.37   -4.62   -2.19    1.07    5.21   10.06   15.04
+    85.0    0.00   -0.24   -0.93   -1.98   -3.27   -4.66   -6.00   -7.15   -7.95   -8.31   -8.18   -7.53   -6.35   -4.61   -2.20    1.02    5.13    9.97   14.99
+    90.0    0.00   -0.24   -0.92   -1.97   -3.26   -4.64   -5.98   -7.13   -7.93   -8.30   -8.17   -7.52   -6.35   -4.62   -2.23    0.96    5.03    9.85   14.93
+    95.0    0.00   -0.23   -0.92   -1.96   -3.25   -4.63   -5.97   -7.12   -7.93   -8.30   -8.18   -7.53   -6.36   -4.64   -2.27    0.88    4.91    9.72   14.85
+   100.0    0.00   -0.23   -0.91   -1.96   -3.24   -4.63   -5.97   -7.12   -7.93   -8.32   -8.20   -7.56   -6.40   -4.68   -2.33    0.80    4.79    9.59   14.76
+   105.0    0.00   -0.23   -0.91   -1.95   -3.24   -4.63   -5.97   -7.12   -7.95   -8.34   -8.23   -7.60   -6.44   -4.74   -2.40    0.71    4.68    9.46   14.65
+   110.0    0.00   -0.22   -0.91   -1.95   -3.24   -4.63   -5.98   -7.14   -7.96   -8.36   -8.26   -7.65   -6.50   -4.81   -2.48    0.62    4.58    9.35   14.54
+   115.0    0.00   -0.22   -0.90   -1.95   -3.25   -4.65   -6.00   -7.16   -7.99   -8.39   -8.30   -7.69   -6.57   -4.88   -2.56    0.53    4.49    9.26   14.44
+   120.0    0.00   -0.22   -0.90   -1.95   -3.26   -4.66   -6.02   -7.18   -8.01   -8.41   -8.33   -7.74   -6.63   -4.96   -2.65    0.45    4.42    9.19   14.34
+   125.0    0.00   -0.22   -0.90   -1.96   -3.27   -4.68   -6.05   -7.20   -8.03   -8.43   -8.35   -7.77   -6.68   -5.04   -2.73    0.38    4.37    9.14   14.27
+   130.0    0.00   -0.22   -0.90   -1.96   -3.28   -4.71   -6.07   -7.23   -8.05   -8.43   -8.35   -7.79   -6.72   -5.10   -2.80    0.31    4.32    9.11   14.21
+   135.0    0.00   -0.22   -0.90   -1.97   -3.30   -4.73   -6.10   -7.26   -8.06   -8.43   -8.35   -7.79   -6.75   -5.15   -2.86    0.26    4.29    9.09   14.18
+   140.0    0.00   -0.21   -0.90   -1.97   -3.31   -4.75   -6.13   -7.28   -8.07   -8.43   -8.33   -7.78   -6.76   -5.18   -2.90    0.22    4.27    9.09   14.17
+   145.0    0.00   -0.21   -0.90   -1.98   -3.32   -4.78   -6.16   -7.30   -8.07   -8.42   -8.31   -7.76   -6.75   -5.19   -2.93    0.20    4.26    9.08   14.17
+   150.0    0.00   -0.21   -0.90   -1.98   -3.34   -4.80   -6.18   -7.31   -8.08   -8.41   -8.29   -7.74   -6.74   -5.18   -2.93    0.19    4.25    9.07   14.18
+   155.0    0.00   -0.21   -0.90   -1.99   -3.35   -4.81   -6.19   -7.33   -8.08   -8.40   -8.28   -7.73   -6.72   -5.17   -2.91    0.20    4.24    9.06   14.18
+   160.0    0.00   -0.21   -0.90   -1.99   -3.35   -4.82   -6.21   -7.33   -8.09   -8.40   -8.28   -7.72   -6.70   -5.14   -2.88    0.22    4.24    9.03   14.16
+   165.0    0.00   -0.21   -0.90   -1.99   -3.36   -4.83   -6.21   -7.34   -8.09   -8.41   -8.29   -7.72   -6.69   -5.11   -2.85    0.25    4.23    8.98   14.12
+   170.0    0.00   -0.21   -0.90   -2.00   -3.37   -4.83   -6.22   -7.35   -8.11   -8.43   -8.31   -7.74   -6.69   -5.09   -2.80    0.28    4.22    8.92   14.06
+   175.0    0.00   -0.21   -0.91   -2.00   -3.37   -4.84   -6.22   -7.35   -8.12   -8.46   -8.35   -7.78   -6.71   -5.07   -2.77    0.31    4.21    8.85   13.98
+   180.0    0.00   -0.21   -0.91   -2.00   -3.37   -4.84   -6.22   -7.36   -8.14   -8.50   -8.40   -7.82   -6.74   -5.07   -2.74    0.34    4.19    8.77   13.88
+   185.0    0.00   -0.22   -0.91   -2.01   -3.37   -4.84   -6.22   -7.36   -8.16   -8.53   -8.45   -7.88   -6.77   -5.08   -2.72    0.35    4.17    8.69   13.79
+   190.0    0.00   -0.22   -0.91   -2.01   -3.38   -4.84   -6.22   -7.37   -8.18   -8.57   -8.50   -7.93   -6.81   -5.10   -2.72    0.36    4.15    8.63   13.72
+   195.0    0.00   -0.22   -0.92   -2.02   -3.39   -4.85   -6.23   -7.38   -8.19   -8.59   -8.54   -7.97   -6.85   -5.12   -2.73    0.35    4.13    8.59   13.69
+   200.0    0.00   -0.22   -0.92   -2.03   -3.40   -4.86   -6.24   -7.39   -8.20   -8.61   -8.56   -8.00   -6.88   -5.14   -2.75    0.34    4.12    8.59   13.71
+   205.0    0.00   -0.22   -0.93   -2.03   -3.41   -4.87   -6.25   -7.39   -8.20   -8.61   -8.56   -8.01   -6.90   -5.16   -2.77    0.33    4.13    8.64   13.79
+   210.0    0.00   -0.22   -0.93   -2.04   -3.42   -4.88   -6.26   -7.40   -8.20   -8.59   -8.54   -7.99   -6.89   -5.17   -2.78    0.32    4.17    8.74   13.93
+   215.0    0.00   -0.23   -0.94   -2.05   -3.43   -4.90   -6.27   -7.40   -8.18   -8.56   -8.50   -7.95   -6.86   -5.17   -2.79    0.34    4.24    8.89   14.13
+   220.0    0.00   -0.23   -0.94   -2.06   -3.45   -4.91   -6.28   -7.40   -8.16   -8.52   -8.44   -7.89   -6.82   -5.14   -2.77    0.39    4.36    9.08   14.37
+   225.0    0.00   -0.23   -0.95   -2.07   -3.46   -4.93   -6.29   -7.39   -8.14   -8.47   -8.37   -7.82   -6.76   -5.10   -2.72    0.47    4.51    9.32   14.63
+   230.0    0.00   -0.24   -0.96   -2.08   -3.47   -4.94   -6.30   -7.39   -8.11   -8.42   -8.30   -7.74   -6.69   -5.04   -2.65    0.58    4.69    9.57   14.88
+   235.0    0.00   -0.24   -0.96   -2.09   -3.48   -4.95   -6.30   -7.37   -8.08   -8.37   -8.24   -7.67   -6.62   -4.96   -2.56    0.71    4.89    9.82   15.09
+   240.0    0.00   -0.24   -0.97   -2.10   -3.49   -4.95   -6.29   -7.36   -8.05   -8.32   -8.18   -7.61   -6.55   -4.88   -2.45    0.87    5.10   10.05   15.25
+   245.0    0.00   -0.24   -0.97   -2.10   -3.49   -4.95   -6.28   -7.34   -8.02   -8.29   -8.14   -7.56   -6.49   -4.80   -2.33    1.03    5.29   10.23   15.33
+   250.0    0.00   -0.25   -0.98   -2.11   -3.49   -4.94   -6.27   -7.32   -8.00   -8.27   -8.13   -7.54   -6.44   -4.72   -2.21    1.18    5.45   10.35   15.33
+   255.0    0.00   -0.25   -0.98   -2.11   -3.49   -4.93   -6.25   -7.30   -7.99   -8.27   -8.13   -7.53   -6.41   -4.65   -2.11    1.31    5.56   10.39   15.25
+   260.0    0.00   -0.25   -0.99   -2.11   -3.48   -4.92   -6.24   -7.29   -7.98   -8.28   -8.14   -7.54   -6.40   -4.60   -2.03    1.40    5.61   10.35   15.10
+   265.0    0.00   -0.26   -0.99   -2.11   -3.48   -4.91   -6.22   -7.28   -7.99   -8.30   -8.17   -7.57   -6.40   -4.57   -1.97    1.43    5.59   10.23   14.90
+   270.0    0.00   -0.26   -1.00   -2.12   -3.48   -4.90   -6.21   -7.27   -8.00   -8.32   -8.21   -7.60   -6.42   -4.56   -1.96    1.42    5.49   10.05   14.68
+   275.0    0.00   -0.26   -1.00   -2.12   -3.47   -4.89   -6.20   -7.27   -8.01   -8.36   -8.25   -7.63   -6.43   -4.57   -1.98    1.34    5.33    9.81   14.46
+   280.0    0.00   -0.27   -1.00   -2.12   -3.47   -4.89   -6.20   -7.28   -8.03   -8.39   -8.29   -7.66   -6.45   -4.59   -2.03    1.23    5.13    9.56   14.26
+   285.0    0.00   -0.27   -1.01   -2.13   -3.48   -4.89   -6.21   -7.30   -8.06   -8.42   -8.31   -7.69   -6.47   -4.62   -2.11    1.08    4.91    9.30   14.09
+   290.0    0.00   -0.27   -1.01   -2.13   -3.48   -4.90   -6.23   -7.32   -8.08   -8.44   -8.33   -7.70   -6.49   -4.67   -2.20    0.91    4.68    9.07   13.98
+   295.0    0.00   -0.27   -1.02   -2.14   -3.49   -4.92   -6.25   -7.35   -8.11   -8.46   -8.34   -7.70   -6.50   -4.71   -2.30    0.75    4.47    8.88   13.92
+   300.0    0.00   -0.28   -1.02   -2.15   -3.51   -4.94   -6.28   -7.38   -8.13   -8.47   -8.34   -7.70   -6.51   -4.76   -2.40    0.60    4.30    8.75   13.90
+   305.0    0.00   -0.28   -1.03   -2.15   -3.52   -4.96   -6.30   -7.41   -8.16   -8.48   -8.33   -7.69   -6.52   -4.80   -2.49    0.49    4.19    8.68   13.91
+   310.0    0.00   -0.28   -1.03   -2.16   -3.53   -4.98   -6.33   -7.44   -8.18   -8.49   -8.33   -7.68   -6.52   -4.84   -2.55    0.41    4.13    8.67   13.94
+   315.0    0.00   -0.28   -1.03   -2.16   -3.54   -5.00   -6.36   -7.47   -8.20   -8.49   -8.32   -7.67   -6.53   -4.87   -2.61    0.37    4.13    8.71   13.97
+   320.0    0.00   -0.28   -1.03   -2.17   -3.55   -5.02   -6.38   -7.49   -8.22   -8.50   -8.31   -7.66   -6.54   -4.90   -2.64    0.36    4.17    8.79   13.98
+   325.0    0.00   -0.28   -1.03   -2.17   -3.56   -5.03   -6.40   -7.51   -8.23   -8.50   -8.31   -7.67   -6.56   -4.92   -2.65    0.38    4.24    8.88   13.98
+   330.0    0.00   -0.28   -1.04   -2.17   -3.56   -5.04   -6.41   -7.52   -8.24   -8.51   -8.32   -7.68   -6.58   -4.94   -2.66    0.41    4.32    8.96   13.96
+   335.0    0.00   -0.28   -1.03   -2.17   -3.56   -5.03   -6.41   -7.53   -8.25   -8.52   -8.33   -7.69   -6.60   -4.96   -2.67    0.43    4.39    9.03   13.91
+   340.0    0.00   -0.28   -1.03   -2.16   -3.55   -5.03   -6.41   -7.53   -8.26   -8.54   -8.35   -7.71   -6.62   -4.98   -2.67    0.45    4.43    9.06   13.86
+   345.0    0.00   -0.28   -1.03   -2.16   -3.54   -5.01   -6.40   -7.52   -8.27   -8.55   -8.37   -7.74   -6.64   -4.99   -2.68    0.45    4.43    9.06   13.81
+   350.0    0.00   -0.28   -1.03   -2.15   -3.52   -4.99   -6.38   -7.52   -8.27   -8.57   -8.40   -7.76   -6.65   -5.01   -2.70    0.42    4.39    9.02   13.77
+   355.0    0.00   -0.28   -1.02   -2.14   -3.51   -4.97   -6.36   -7.51   -8.28   -8.59   -8.42   -7.78   -6.66   -5.02   -2.72    0.38    4.33    8.96   13.76
+   360.0    0.00   -0.28   -1.02   -2.13   -3.49   -4.95   -6.34   -7.50   -8.29   -8.61   -8.44   -7.80   -6.67   -5.02   -2.75    0.31    4.24    8.89   13.79
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.06      0.14    119.95                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.14   -0.55   -1.17   -1.93   -2.77   -3.62   -4.42   -5.07   -5.45   -5.45   -5.01   -4.15   -2.94   -1.46    0.31    2.55    5.56    9.57
+     0.0    0.00   -0.16   -0.58   -1.20   -1.96   -2.78   -3.62   -4.40   -5.06   -5.47   -5.54   -5.20   -4.42   -3.26   -1.78    0.05    2.34    5.33    9.19
+     5.0    0.00   -0.16   -0.58   -1.20   -1.95   -2.77   -3.60   -4.39   -5.05   -5.48   -5.56   -5.22   -4.45   -3.31   -1.86   -0.07    2.20    5.18    9.09
+    10.0    0.00   -0.17   -0.58   -1.20   -1.94   -2.75   -3.58   -4.37   -5.04   -5.48   -5.56   -5.23   -4.46   -3.34   -1.91   -0.16    2.08    5.08    9.07
+    15.0    0.00   -0.17   -0.58   -1.20   -1.93   -2.74   -3.57   -4.37   -5.04   -5.47   -5.55   -5.21   -4.44   -3.33   -1.93   -0.21    2.01    5.05    9.14
+    20.0    0.00   -0.17   -0.58   -1.19   -1.93   -2.73   -3.57   -4.36   -5.04   -5.47   -5.53   -5.17   -4.39   -3.29   -1.91   -0.23    1.99    5.08    9.28
+    25.0    0.00   -0.17   -0.59   -1.19   -1.93   -2.73   -3.57   -4.37   -5.04   -5.46   -5.50   -5.12   -4.33   -3.22   -1.86   -0.19    2.03    5.16    9.46
+    30.0    0.00   -0.17   -0.59   -1.19   -1.93   -2.74   -3.57   -4.37   -5.04   -5.44   -5.47   -5.06   -4.25   -3.13   -1.78   -0.12    2.12    5.30    9.68
+    35.0    0.00   -0.17   -0.59   -1.19   -1.93   -2.74   -3.58   -4.38   -5.04   -5.43   -5.43   -4.99   -4.16   -3.04   -1.69   -0.02    2.25    5.48    9.89
+    40.0    0.00   -0.17   -0.59   -1.20   -1.93   -2.75   -3.59   -4.40   -5.05   -5.42   -5.40   -4.94   -4.09   -2.95   -1.58    0.11    2.40    5.67   10.07
+    45.0    0.00   -0.17   -0.59   -1.20   -1.94   -2.76   -3.60   -4.41   -5.05   -5.41   -5.37   -4.89   -4.03   -2.88   -1.49    0.24    2.57    5.85   10.21
+    50.0    0.00   -0.17   -0.59   -1.20   -1.94   -2.76   -3.61   -4.41   -5.06   -5.41   -5.36   -4.87   -3.99   -2.82   -1.41    0.35    2.73    6.02   10.29
+    55.0    0.00   -0.17   -0.59   -1.20   -1.95   -2.77   -3.62   -4.42   -5.06   -5.41   -5.36   -4.87   -3.98   -2.80   -1.35    0.45    2.86    6.14   10.31
+    60.0    0.00   -0.17   -0.59   -1.20   -1.95   -2.77   -3.62   -4.42   -5.07   -5.42   -5.37   -4.88   -4.00   -2.80   -1.33    0.51    2.94    6.21   10.28
+    65.0    0.00   -0.17   -0.59   -1.20   -1.95   -2.77   -3.62   -4.42   -5.07   -5.43   -5.39   -4.91   -4.03   -2.83   -1.34    0.52    2.98    6.23   10.20
+    70.0    0.00   -0.17   -0.59   -1.20   -1.95   -2.77   -3.62   -4.42   -5.07   -5.44   -5.41   -4.95   -4.08   -2.88   -1.38    0.50    2.96    6.19   10.10
+    75.0    0.00   -0.17   -0.59   -1.20   -1.95   -2.77   -3.62   -4.42   -5.07   -5.45   -5.44   -5.00   -4.14   -2.94   -1.43    0.45    2.90    6.10    9.99
+    80.0    0.00   -0.17   -0.59   -1.20   -1.95   -2.76   -3.61   -4.41   -5.07   -5.46   -5.47   -5.04   -4.19   -3.00   -1.50    0.37    2.79    5.98    9.87
+    85.0    0.00   -0.17   -0.59   -1.20   -1.94   -2.76   -3.60   -4.41   -5.07   -5.48   -5.50   -5.07   -4.23   -3.05   -1.57    0.27    2.66    5.83    9.77
+    90.0    0.00   -0.16   -0.58   -1.20   -1.94   -2.75   -3.60   -4.40   -5.07   -5.48   -5.51   -5.10   -4.26   -3.08   -1.62    0.18    2.53    5.68    9.69
+    95.0    0.00   -0.16   -0.58   -1.20   -1.94   -2.75   -3.59   -4.40   -5.07   -5.49   -5.52   -5.10   -4.26   -3.09   -1.65    0.11    2.41    5.54    9.64
+   100.0    0.00   -0.16   -0.58   -1.19   -1.94   -2.75   -3.59   -4.40   -5.07   -5.48   -5.51   -5.09   -4.25   -3.07   -1.65    0.07    2.32    5.43    9.60
+   105.0    0.00   -0.16   -0.58   -1.19   -1.94   -2.75   -3.59   -4.40   -5.07   -5.48   -5.50   -5.06   -4.21   -3.04   -1.63    0.07    2.27    5.36    9.59
+   110.0    0.00   -0.16   -0.57   -1.19   -1.94   -2.75   -3.60   -4.40   -5.07   -5.47   -5.48   -5.03   -4.16   -2.98   -1.57    0.10    2.28    5.34    9.60
+   115.0    0.00   -0.15   -0.57   -1.19   -1.94   -2.76   -3.60   -4.41   -5.07   -5.46   -5.45   -4.99   -4.11   -2.91   -1.49    0.17    2.33    5.37    9.62
+   120.0    0.00   -0.15   -0.57   -1.18   -1.94   -2.77   -3.61   -4.41   -5.07   -5.44   -5.42   -4.95   -4.05   -2.84   -1.40    0.28    2.43    5.45    9.65
+   125.0    0.00   -0.15   -0.56   -1.18   -1.94   -2.77   -3.62   -4.42   -5.07   -5.43   -5.40   -4.91   -4.00   -2.77   -1.31    0.40    2.57    5.56    9.68
+   130.0    0.00   -0.15   -0.56   -1.18   -1.94   -2.78   -3.64   -4.44   -5.07   -5.43   -5.38   -4.89   -3.96   -2.71   -1.22    0.52    2.72    5.69    9.71
+   135.0    0.00   -0.14   -0.55   -1.17   -1.94   -2.79   -3.65   -4.45   -5.08   -5.43   -5.37   -4.87   -3.94   -2.68   -1.16    0.63    2.86    5.82    9.72
+   140.0    0.00   -0.14   -0.55   -1.17   -1.94   -2.79   -3.66   -4.46   -5.09   -5.43   -5.37   -4.87   -3.94   -2.66   -1.12    0.72    2.98    5.93    9.73
+   145.0    0.00   -0.14   -0.54   -1.16   -1.94   -2.80   -3.67   -4.47   -5.10   -5.44   -5.38   -4.88   -3.96   -2.68   -1.11    0.76    3.07    6.01    9.71
+   150.0    0.00   -0.13   -0.54   -1.16   -1.93   -2.80   -3.67   -4.48   -5.11   -5.45   -5.40   -4.91   -3.99   -2.71   -1.13    0.77    3.10    6.04    9.66
+   155.0    0.00   -0.13   -0.53   -1.15   -1.93   -2.79   -3.67   -4.49   -5.12   -5.47   -5.43   -4.95   -4.04   -2.77   -1.19    0.72    3.07    6.01    9.58
+   160.0    0.00   -0.13   -0.52   -1.14   -1.92   -2.79   -3.67   -4.49   -5.13   -5.49   -5.46   -5.00   -4.11   -2.84   -1.27    0.64    2.99    5.92    9.47
+   165.0    0.00   -0.13   -0.52   -1.13   -1.91   -2.77   -3.66   -4.48   -5.14   -5.51   -5.50   -5.05   -4.17   -2.93   -1.36    0.53    2.86    5.78    9.33
+   170.0    0.00   -0.12   -0.51   -1.12   -1.90   -2.76   -3.65   -4.48   -5.14   -5.53   -5.54   -5.10   -4.24   -3.01   -1.47    0.39    2.69    5.59    9.17
+   175.0    0.00   -0.12   -0.51   -1.12   -1.88   -2.74   -3.63   -4.46   -5.14   -5.55   -5.57   -5.15   -4.30   -3.09   -1.57    0.25    2.51    5.39    8.99
+   180.0    0.00   -0.12   -0.50   -1.11   -1.87   -2.73   -3.61   -4.45   -5.14   -5.56   -5.60   -5.20   -4.36   -3.16   -1.67    0.12    2.33    5.18    8.82
+   185.0    0.00   -0.12   -0.50   -1.10   -1.86   -2.71   -3.59   -4.43   -5.13   -5.56   -5.62   -5.23   -4.40   -3.21   -1.74    0.01    2.17    4.99    8.66
+   190.0    0.00   -0.12   -0.50   -1.10   -1.85   -2.70   -3.57   -4.41   -5.12   -5.56   -5.63   -5.25   -4.43   -3.24   -1.78   -0.06    2.06    4.85    8.55
+   195.0    0.00   -0.11   -0.50   -1.10   -1.85   -2.69   -3.56   -4.39   -5.10   -5.56   -5.64   -5.26   -4.44   -3.25   -1.79   -0.09    2.01    4.77    8.48
+   200.0    0.00   -0.11   -0.50   -1.10   -1.85   -2.68   -3.55   -4.38   -5.09   -5.54   -5.63   -5.26   -4.43   -3.23   -1.77   -0.07    2.01    4.76    8.48
+   205.0    0.00   -0.11   -0.50   -1.10   -1.85   -2.69   -3.55   -4.37   -5.07   -5.53   -5.61   -5.24   -4.40   -3.19   -1.72   -0.01    2.07    4.82    8.55
+   210.0    0.00   -0.11   -0.50   -1.11   -1.86   -2.70   -3.55   -4.37   -5.06   -5.51   -5.58   -5.20   -4.36   -3.13   -1.64    0.09    2.18    4.94    8.68
+   215.0    0.00   -0.11   -0.50   -1.11   -1.87   -2.71   -3.56   -4.37   -5.05   -5.48   -5.55   -5.16   -4.30   -3.06   -1.54    0.21    2.33    5.11    8.86
+   220.0    0.00   -0.11   -0.51   -1.12   -1.89   -2.73   -3.58   -4.38   -5.05   -5.46   -5.51   -5.10   -4.23   -2.98   -1.44    0.34    2.50    5.31    9.07
+   225.0    0.00   -0.12   -0.51   -1.13   -1.90   -2.75   -3.61   -4.40   -5.05   -5.44   -5.47   -5.04   -4.16   -2.89   -1.34    0.48    2.67    5.51    9.29
+   230.0    0.00   -0.12   -0.51   -1.14   -1.92   -2.77   -3.63   -4.41   -5.05   -5.42   -5.43   -4.99   -4.09   -2.81   -1.24    0.59    2.81    5.69    9.49
+   235.0    0.00   -0.12   -0.52   -1.15   -1.94   -2.80   -3.65   -4.43   -5.05   -5.41   -5.39   -4.93   -4.02   -2.74   -1.16    0.68    2.92    5.83    9.64
+   240.0    0.00   -0.12   -0.52   -1.16   -1.95   -2.82   -3.67   -4.45   -5.06   -5.40   -5.37   -4.89   -3.97   -2.68   -1.11    0.73    2.98    5.90    9.73
+   245.0    0.00   -0.12   -0.53   -1.17   -1.96   -2.83   -3.69   -4.46   -5.07   -5.40   -5.35   -4.86   -3.94   -2.65   -1.08    0.75    2.98    5.90    9.74
+   250.0    0.00   -0.12   -0.53   -1.17   -1.97   -2.84   -3.70   -4.47   -5.07   -5.40   -5.35   -4.85   -3.92   -2.63   -1.08    0.72    2.93    5.83    9.68
+   255.0    0.00   -0.12   -0.53   -1.18   -1.97   -2.84   -3.70   -4.47   -5.08   -5.40   -5.35   -4.86   -3.92   -2.64   -1.11    0.66    2.83    5.70    9.56
+   260.0    0.00   -0.13   -0.54   -1.18   -1.97   -2.84   -3.69   -4.47   -5.08   -5.41   -5.37   -4.87   -3.95   -2.68   -1.16    0.57    2.69    5.53    9.39
+   265.0    0.00   -0.13   -0.54   -1.18   -1.97   -2.83   -3.68   -4.46   -5.08   -5.42   -5.39   -4.90   -3.98   -2.72   -1.23    0.46    2.53    5.33    9.23
+   270.0    0.00   -0.13   -0.54   -1.18   -1.96   -2.82   -3.67   -4.45   -5.07   -5.44   -5.41   -4.94   -4.02   -2.77   -1.31    0.35    2.38    5.15    9.08
+   275.0    0.00   -0.13   -0.54   -1.18   -1.96   -2.80   -3.65   -4.43   -5.07   -5.45   -5.44   -4.97   -4.07   -2.83   -1.38    0.24    2.23    5.00    8.98
+   280.0    0.00   -0.13   -0.55   -1.18   -1.95   -2.79   -3.63   -4.42   -5.07   -5.45   -5.46   -5.00   -4.10   -2.87   -1.44    0.16    2.13    4.90    8.97
+   285.0    0.00   -0.14   -0.55   -1.18   -1.95   -2.78   -3.62   -4.41   -5.06   -5.46   -5.47   -5.02   -4.13   -2.91   -1.49    0.10    2.06    4.86    9.04
+   290.0    0.00   -0.14   -0.55   -1.18   -1.94   -2.78   -3.62   -4.41   -5.06   -5.46   -5.48   -5.03   -4.14   -2.92   -1.51    0.07    2.05    4.91    9.19
+   295.0    0.00   -0.14   -0.55   -1.18   -1.94   -2.78   -3.62   -4.41   -5.06   -5.46   -5.47   -5.03   -4.14   -2.92   -1.51    0.08    2.10    5.02    9.43
+   300.0    0.00   -0.14   -0.56   -1.18   -1.95   -2.78   -3.62   -4.41   -5.07   -5.46   -5.46   -5.01   -4.12   -2.90   -1.49    0.13    2.19    5.19    9.70
+   305.0    0.00   -0.14   -0.56   -1.19   -1.95   -2.79   -3.64   -4.43   -5.07   -5.45   -5.44   -4.98   -4.09   -2.87   -1.45    0.20    2.31    5.39   10.00
+   310.0    0.00   -0.15   -0.56   -1.19   -1.96   -2.80   -3.65   -4.44   -5.08   -5.44   -5.42   -4.95   -4.06   -2.84   -1.40    0.28    2.46    5.61   10.27
+   315.0    0.00   -0.15   -0.57   -1.20   -1.97   -2.82   -3.67   -4.45   -5.08   -5.43   -5.40   -4.92   -4.03   -2.81   -1.35    0.37    2.61    5.82   10.49
+   320.0    0.00   -0.15   -0.57   -1.20   -1.98   -2.83   -3.68   -4.47   -5.09   -5.43   -5.39   -4.91   -4.01   -2.79   -1.31    0.46    2.75    5.99   10.62
+   325.0    0.00   -0.15   -0.57   -1.21   -1.99   -2.84   -3.69   -4.48   -5.09   -5.43   -5.38   -4.90   -4.01   -2.78   -1.29    0.52    2.85    6.11   10.65
+   330.0    0.00   -0.15   -0.57   -1.21   -1.99   -2.84   -3.70   -4.48   -5.09   -5.43   -5.39   -4.92   -4.03   -2.81   -1.29    0.55    2.91    6.15   10.58
+   335.0    0.00   -0.16   -0.58   -1.21   -1.99   -2.84   -3.70   -4.48   -5.09   -5.43   -5.40   -4.95   -4.08   -2.85   -1.33    0.54    2.92    6.13   10.42
+   340.0    0.00   -0.16   -0.58   -1.21   -1.99   -2.84   -3.69   -4.47   -5.09   -5.44   -5.42   -4.99   -4.14   -2.92   -1.39    0.49    2.88    6.03   10.18
+   345.0    0.00   -0.16   -0.58   -1.21   -1.98   -2.83   -3.68   -4.46   -5.08   -5.45   -5.45   -5.04   -4.21   -3.00   -1.47    0.41    2.78    5.89    9.91
+   350.0    0.00   -0.16   -0.58   -1.21   -1.98   -2.82   -3.66   -4.44   -5.07   -5.46   -5.49   -5.10   -4.29   -3.10   -1.57    0.30    2.65    5.71    9.63
+   355.0    0.00   -0.16   -0.58   -1.21   -1.97   -2.80   -3.64   -4.42   -5.06   -5.47   -5.52   -5.15   -4.36   -3.18   -1.68    0.18    2.50    5.51    9.38
+   360.0    0.00   -0.16   -0.58   -1.20   -1.96   -2.78   -3.62   -4.40   -5.06   -5.47   -5.54   -5.20   -4.42   -3.26   -1.78    0.05    2.34    5.33    9.19
+   G02                                                      END OF FREQUENCY    
+   R01                                                      START OF FREQUENCY  
+      0.30     -0.62     90.74                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.27   -1.06   -2.24   -3.69   -5.21   -6.67   -7.89   -8.79   -9.28   -9.29   -8.79   -7.76   -6.13   -3.85   -0.84    2.95    7.48   12.47
+     0.0    0.00   -0.31   -1.13   -2.35   -3.84   -5.42   -6.91   -8.17   -9.06   -9.46   -9.36   -8.80   -7.75   -6.24   -4.19   -1.39    2.30    6.91   12.12
+     5.0    0.00   -0.31   -1.13   -2.34   -3.82   -5.40   -6.92   -8.19   -9.09   -9.50   -9.39   -8.78   -7.71   -6.20   -4.16   -1.44    2.19    6.83   12.23
+    10.0    0.00   -0.31   -1.13   -2.32   -3.80   -5.38   -6.91   -8.20   -9.12   -9.54   -9.43   -8.78   -7.67   -6.15   -4.13   -1.45    2.14    6.79   12.36
+    15.0    0.00   -0.31   -1.12   -2.31   -3.78   -5.36   -6.89   -8.20   -9.14   -9.57   -9.46   -8.79   -7.65   -6.08   -4.08   -1.41    2.15    6.81   12.52
+    20.0    0.00   -0.30   -1.12   -2.30   -3.75   -5.33   -6.87   -8.18   -9.14   -9.59   -9.48   -8.81   -7.64   -6.03   -3.99   -1.33    2.23    6.90   12.68
+    25.0    0.00   -0.30   -1.11   -2.28   -3.73   -5.29   -6.81   -8.15   -9.14   -9.60   -9.50   -8.82   -7.63   -5.99   -3.90   -1.20    2.37    7.05   12.84
+    30.0    0.00   -0.30   -1.10   -2.27   -3.71   -5.24   -6.77   -8.11   -9.10   -9.59   -9.52   -8.84   -7.64   -5.96   -3.80   -1.03    2.58    7.26   12.96
+    35.0    0.00   -0.30   -1.09   -2.25   -3.68   -5.21   -6.72   -8.05   -9.03   -9.56   -9.51   -8.86   -7.65   -5.94   -3.70   -0.84    2.84    7.51   13.07
+    40.0    0.00   -0.29   -1.08   -2.25   -3.66   -5.17   -6.66   -7.97   -8.97   -9.51   -9.49   -8.86   -7.66   -5.92   -3.61   -0.66    3.10    7.77   13.14
+    45.0    0.00   -0.29   -1.08   -2.23   -3.64   -5.13   -6.60   -7.90   -8.89   -9.44   -9.44   -8.85   -7.66   -5.90   -3.53   -0.48    3.37    8.00   13.18
+    50.0    0.00   -0.29   -1.07   -2.22   -3.62   -5.10   -6.55   -7.83   -8.80   -9.34   -9.36   -8.80   -7.65   -5.88   -3.46   -0.33    3.59    8.21   13.18
+    55.0    0.00   -0.30   -1.07   -2.21   -3.61   -5.08   -6.51   -7.76   -8.72   -9.25   -9.28   -8.75   -7.62   -5.86   -3.42   -0.22    3.76    8.37   13.18
+    60.0    0.00   -0.29   -1.06   -2.21   -3.60   -5.07   -6.48   -7.71   -8.65   -9.16   -9.18   -8.67   -7.56   -5.83   -3.39   -0.17    3.85    8.48   13.14
+    65.0    0.00   -0.29   -1.07   -2.21   -3.60   -5.06   -6.48   -7.69   -8.59   -9.08   -9.07   -8.56   -7.50   -5.80   -3.39   -0.16    3.88    8.52   13.11
+    70.0    0.00   -0.29   -1.06   -2.21   -3.60   -5.07   -6.48   -7.68   -8.54   -9.00   -8.98   -8.47   -7.43   -5.77   -3.40   -0.20    3.86    8.50   13.08
+    75.0    0.00   -0.28   -1.06   -2.21   -3.61   -5.09   -6.50   -7.68   -8.53   -8.95   -8.91   -8.38   -7.36   -5.73   -3.42   -0.27    3.77    8.43   13.07
+    80.0    0.00   -0.28   -1.06   -2.20   -3.62   -5.11   -6.52   -7.70   -8.53   -8.94   -8.86   -8.32   -7.28   -5.72   -3.46   -0.35    3.65    8.34   13.04
+    85.0    0.00   -0.28   -1.06   -2.21   -3.63   -5.13   -6.54   -7.73   -8.56   -8.94   -8.85   -8.28   -7.25   -5.72   -3.51   -0.47    3.49    8.22   13.02
+    90.0    0.00   -0.28   -1.05   -2.21   -3.63   -5.13   -6.56   -7.77   -8.59   -8.96   -8.86   -8.29   -7.26   -5.74   -3.57   -0.58    3.35    8.07   13.01
+    95.0    0.00   -0.27   -1.05   -2.22   -3.63   -5.14   -6.59   -7.80   -8.63   -9.01   -8.91   -8.34   -7.31   -5.78   -3.64   -0.69    3.20    7.93   12.96
+   100.0    0.00   -0.27   -1.05   -2.22   -3.63   -5.15   -6.61   -7.82   -8.67   -9.07   -8.99   -8.42   -7.39   -5.85   -3.72   -0.78    3.07    7.79   12.90
+   105.0    0.00   -0.27   -1.05   -2.21   -3.63   -5.15   -6.61   -7.83   -8.72   -9.15   -9.08   -8.52   -7.48   -5.95   -3.80   -0.87    2.96    7.65   12.79
+   110.0    0.00   -0.26   -1.05   -2.21   -3.63   -5.15   -6.61   -7.85   -8.74   -9.20   -9.17   -8.65   -7.62   -6.05   -3.88   -0.95    2.86    7.53   12.67
+   115.0    0.00   -0.26   -1.04   -2.21   -3.63   -5.15   -6.60   -7.85   -8.77   -9.26   -9.28   -8.76   -7.75   -6.17   -3.96   -1.02    2.77    7.40   12.54
+   120.0    0.00   -0.26   -1.04   -2.21   -3.63   -5.13   -6.58   -7.84   -8.79   -9.30   -9.35   -8.88   -7.86   -6.27   -4.05   -1.09    2.69    7.29   12.38
+   125.0    0.00   -0.26   -1.04   -2.20   -3.62   -5.13   -6.58   -7.83   -8.78   -9.33   -9.41   -8.96   -7.95   -6.36   -4.11   -1.14    2.63    7.17   12.25
+   130.0    0.00   -0.26   -1.04   -2.20   -3.62   -5.12   -6.57   -7.83   -8.78   -9.34   -9.43   -9.01   -8.01   -6.41   -4.16   -1.20    2.56    7.07   12.12
+   135.0    0.00   -0.26   -1.04   -2.20   -3.63   -5.12   -6.57   -7.82   -8.77   -9.33   -9.45   -9.02   -8.04   -6.45   -4.20   -1.24    2.49    6.98   12.03
+   140.0    0.00   -0.25   -1.03   -2.20   -3.63   -5.13   -6.58   -7.82   -8.77   -9.32   -9.41   -9.00   -8.03   -6.45   -4.21   -1.26    2.45    6.93   11.98
+   145.0    0.00   -0.25   -1.03   -2.21   -3.63   -5.15   -6.60   -7.83   -8.75   -9.30   -9.38   -8.96   -7.99   -6.42   -4.21   -1.27    2.44    6.89   11.96
+   150.0    0.00   -0.25   -1.03   -2.20   -3.65   -5.17   -6.61   -7.83   -8.75   -9.28   -9.34   -8.92   -7.95   -6.38   -4.18   -1.26    2.44    6.89   11.97
+   155.0    0.00   -0.25   -1.03   -2.21   -3.66   -5.18   -6.62   -7.85   -8.75   -9.25   -9.31   -8.88   -7.91   -6.35   -4.14   -1.22    2.46    6.93   12.01
+   160.0    0.00   -0.25   -1.03   -2.21   -3.66   -5.19   -6.65   -7.85   -8.75   -9.24   -9.29   -8.85   -7.87   -6.32   -4.10   -1.17    2.53    6.99   12.04
+   165.0    0.00   -0.25   -1.03   -2.21   -3.67   -5.21   -6.65   -7.86   -8.74   -9.23   -9.28   -8.84   -7.86   -6.30   -4.07   -1.11    2.60    7.04   12.07
+   170.0    0.00   -0.24   -1.02   -2.22   -3.68   -5.21   -6.67   -7.87   -8.76   -9.24   -9.29   -8.86   -7.88   -6.30   -4.03   -1.05    2.69    7.12   12.07
+   175.0    0.00   -0.24   -1.03   -2.21   -3.68   -5.22   -6.66   -7.86   -8.75   -9.25   -9.32   -8.91   -7.93   -6.32   -4.02   -0.99    2.79    7.19   12.04
+   180.0    0.00   -0.24   -1.02   -2.21   -3.68   -5.21   -6.66   -7.86   -8.76   -9.28   -9.36   -8.96   -7.99   -6.37   -4.02   -0.93    2.86    7.23   11.99
+   185.0    0.00   -0.25   -1.02   -2.21   -3.67   -5.20   -6.63   -7.84   -8.76   -9.28   -9.41   -9.04   -8.06   -6.42   -4.02   -0.88    2.92    7.24   11.90
+   190.0    0.00   -0.24   -1.01   -2.20   -3.66   -5.19   -6.61   -7.83   -8.75   -9.31   -9.46   -9.10   -8.13   -6.46   -4.03   -0.85    2.95    7.24   11.81
+   195.0    0.00   -0.24   -1.02   -2.20   -3.66   -5.17   -6.60   -7.82   -8.74   -9.31   -9.50   -9.15   -8.18   -6.49   -4.04   -0.85    2.95    7.21   11.73
+   200.0    0.00   -0.24   -1.01   -2.20   -3.64   -5.16   -6.58   -7.80   -8.73   -9.33   -9.51   -9.17   -8.20   -6.49   -4.04   -0.85    2.93    7.17   11.70
+   205.0    0.00   -0.24   -1.00   -2.19   -3.63   -5.15   -6.57   -7.78   -8.72   -9.32   -9.51   -9.16   -8.19   -6.47   -4.01   -0.85    2.91    7.14   11.72
+   210.0    0.00   -0.23   -1.00   -2.18   -3.62   -5.12   -6.56   -7.77   -8.71   -9.30   -9.48   -9.12   -8.12   -6.41   -3.97   -0.86    2.88    7.13   11.81
+   215.0    0.00   -0.24   -1.00   -2.18   -3.61   -5.12   -6.55   -7.77   -8.70   -9.27   -9.42   -9.03   -8.02   -6.33   -3.93   -0.83    2.88    7.18   11.98
+   220.0    0.00   -0.24   -0.99   -2.18   -3.62   -5.12   -6.55   -7.77   -8.68   -9.24   -9.35   -8.93   -7.90   -6.21   -3.84   -0.78    2.92    7.27   12.23
+   225.0    0.00   -0.24   -1.00   -2.18   -3.61   -5.13   -6.56   -7.76   -8.67   -9.19   -9.26   -8.82   -7.78   -6.09   -3.74   -0.71    3.01    7.44   12.55
+   230.0    0.00   -0.25   -1.00   -2.18   -3.61   -5.13   -6.57   -7.77   -8.66   -9.15   -9.19   -8.70   -7.65   -5.96   -3.63   -0.61    3.14    7.66   12.89
+   235.0    0.00   -0.24   -1.00   -2.18   -3.62   -5.14   -6.58   -7.76   -8.64   -9.11   -9.12   -8.61   -7.53   -5.85   -3.53   -0.49    3.32    7.92   13.24
+   240.0    0.00   -0.24   -1.00   -2.19   -3.63   -5.14   -6.58   -7.77   -8.63   -9.07   -9.05   -8.53   -7.45   -5.77   -3.43   -0.36    3.52    8.19   13.56
+   245.0    0.00   -0.24   -1.00   -2.19   -3.63   -5.15   -6.58   -7.77   -8.62   -9.04   -9.01   -8.48   -7.41   -5.72   -3.36   -0.24    3.71    8.45   13.81
+   250.0    0.00   -0.25   -1.01   -2.20   -3.64   -5.16   -6.59   -7.77   -8.61   -9.02   -9.00   -8.48   -7.41   -5.72   -3.32   -0.14    3.89    8.68   13.97
+   255.0    0.00   -0.25   -1.01   -2.20   -3.65   -5.16   -6.58   -7.76   -8.60   -9.02   -9.01   -8.50   -7.43   -5.75   -3.31   -0.06    4.02    8.83   14.04
+   260.0    0.00   -0.25   -1.02   -2.21   -3.65   -5.18   -6.59   -7.77   -8.60   -9.03   -9.03   -8.54   -7.50   -5.80   -3.35   -0.05    4.08    8.88   13.99
+   265.0    0.00   -0.26   -1.02   -2.21   -3.66   -5.19   -6.59   -7.77   -8.62   -9.07   -9.07   -8.61   -7.58   -5.88   -3.39   -0.08    4.07    8.85   13.86
+   270.0    0.00   -0.26   -1.04   -2.23   -3.67   -5.20   -6.60   -7.78   -8.64   -9.09   -9.12   -8.68   -7.67   -5.97   -3.49   -0.16    3.96    8.71   13.65
+   275.0    0.00   -0.26   -1.04   -2.24   -3.68   -5.20   -6.61   -7.80   -8.66   -9.14   -9.19   -8.75   -7.74   -6.06   -3.60   -0.30    3.79    8.48   13.40
+   280.0    0.00   -0.27   -1.04   -2.25   -3.69   -5.22   -6.64   -7.82   -8.69   -9.19   -9.25   -8.81   -7.81   -6.13   -3.70   -0.45    3.57    8.21   13.11
+   285.0    0.00   -0.27   -1.06   -2.26   -3.71   -5.23   -6.67   -7.86   -8.74   -9.24   -9.30   -8.87   -7.85   -6.18   -3.80   -0.62    3.32    7.90   12.84
+   290.0    0.00   -0.27   -1.06   -2.27   -3.72   -5.25   -6.70   -7.90   -8.78   -9.29   -9.34   -8.90   -7.88   -6.23   -3.88   -0.79    3.06    7.59   12.60
+   295.0    0.00   -0.28   -1.08   -2.29   -3.75   -5.28   -6.72   -7.95   -8.83   -9.33   -9.38   -8.91   -7.89   -6.25   -3.95   -0.93    2.83    7.33   12.40
+   300.0    0.00   -0.29   -1.08   -2.30   -3.77   -5.30   -6.76   -7.98   -8.86   -9.36   -9.40   -8.92   -7.88   -6.26   -3.99   -1.05    2.65    7.12   12.25
+   305.0    0.00   -0.29   -1.09   -2.31   -3.78   -5.32   -6.78   -8.01   -8.90   -9.39   -9.41   -8.92   -7.88   -6.26   -4.02   -1.10    2.54    6.99   12.15
+   310.0    0.00   -0.29   -1.10   -2.32   -3.80   -5.34   -6.80   -8.04   -8.92   -9.41   -9.43   -8.91   -7.86   -6.25   -4.03   -1.14    2.48    6.93   12.09
+   315.0    0.00   -0.29   -1.10   -2.33   -3.81   -5.36   -6.82   -8.05   -8.94   -9.41   -9.43   -8.91   -7.86   -6.24   -4.03   -1.14    2.49    6.93   12.07
+   320.0    0.00   -0.29   -1.12   -2.34   -3.82   -5.38   -6.83   -8.06   -8.95   -9.42   -9.41   -8.89   -7.86   -6.25   -4.03   -1.12    2.54    6.99   12.04
+   325.0    0.00   -0.30   -1.12   -2.35   -3.84   -5.39   -6.85   -8.07   -8.95   -9.40   -9.39   -8.89   -7.87   -6.26   -4.03   -1.10    2.60    7.06   12.04
+   330.0    0.00   -0.30   -1.14   -2.36   -3.84   -5.40   -6.86   -8.07   -8.94   -9.40   -9.39   -8.89   -7.87   -6.27   -4.04   -1.08    2.67    7.13   12.04
+   335.0    0.00   -0.30   -1.13   -2.36   -3.85   -5.40   -6.87   -8.08   -8.95   -9.39   -9.37   -8.87   -7.88   -6.29   -4.07   -1.09    2.70    7.19   12.02
+   340.0    0.00   -0.30   -1.13   -2.36   -3.85   -5.41   -6.88   -8.09   -8.95   -9.39   -9.37   -8.86   -7.87   -6.31   -4.09   -1.11    2.70    7.19   12.01
+   345.0    0.00   -0.30   -1.14   -2.37   -3.85   -5.41   -6.89   -8.10   -8.97   -9.39   -9.36   -8.86   -7.86   -6.31   -4.13   -1.17    2.63    7.17   12.01
+   350.0    0.00   -0.30   -1.14   -2.36   -3.85   -5.42   -6.89   -8.13   -8.98   -9.41   -9.36   -8.83   -7.83   -6.31   -4.16   -1.24    2.54    7.10   12.02
+   355.0    0.00   -0.31   -1.13   -2.36   -3.85   -5.42   -6.90   -8.15   -9.01   -9.43   -9.36   -8.81   -7.80   -6.29   -4.18   -1.31    2.43    7.00   12.06
+   360.0    0.00   -0.31   -1.13   -2.35   -3.84   -5.42   -6.91   -8.17   -9.06   -9.46   -9.36   -8.80   -7.75   -6.24   -4.19   -1.39    2.30    6.91   12.12
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+      0.06      0.14    119.95                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.18   -0.69   -1.43   -2.28   -3.19   -4.10   -4.99   -5.80   -6.42   -6.70   -6.53   -5.86   -4.77   -3.37   -1.73    0.29    3.01    6.82
+     0.0    0.00   -0.16   -0.66   -1.40   -2.26   -3.15   -4.05   -4.92   -5.74   -6.38   -6.71   -6.59   -5.97   -4.95   -3.64   -2.11   -0.24    2.44    6.44
+     5.0    0.00   -0.16   -0.65   -1.39   -2.25   -3.15   -4.05   -4.93   -5.76   -6.41   -6.74   -6.61   -6.00   -4.98   -3.70   -2.20   -0.32    2.37    6.46
+    10.0    0.00   -0.16   -0.65   -1.38   -2.23   -3.13   -4.04   -4.94   -5.78   -6.44   -6.76   -6.63   -6.00   -4.99   -3.71   -2.24   -0.37    2.36    6.55
+    15.0    0.00   -0.16   -0.65   -1.38   -2.22   -3.13   -4.05   -4.97   -5.81   -6.46   -6.76   -6.62   -5.97   -4.96   -3.70   -2.23   -0.37    2.41    6.69
+    20.0    0.00   -0.16   -0.64   -1.36   -2.22   -3.12   -4.06   -4.96   -5.82   -6.47   -6.76   -6.58   -5.92   -4.90   -3.64   -2.20   -0.31    2.51    6.87
+    25.0    0.00   -0.16   -0.64   -1.35   -2.21   -3.11   -4.05   -4.98   -5.83   -6.47   -6.74   -6.54   -5.86   -4.82   -3.56   -2.10   -0.21    2.64    7.03
+    30.0    0.00   -0.16   -0.63   -1.34   -2.19   -3.11   -4.04   -4.97   -5.82   -6.45   -6.71   -6.48   -5.78   -4.71   -3.45   -1.98   -0.06    2.82    7.21
+    35.0    0.00   -0.16   -0.63   -1.34   -2.19   -3.10   -4.04   -4.96   -5.81   -6.42   -6.66   -6.40   -5.68   -4.62   -3.34   -1.85    0.12    3.01    7.34
+    40.0    0.00   -0.16   -0.63   -1.34   -2.17   -3.10   -4.03   -4.96   -5.79   -6.38   -6.61   -6.35   -5.61   -4.53   -3.21   -1.69    0.30    3.20    7.42
+    45.0    0.00   -0.16   -0.63   -1.33   -2.18   -3.09   -4.02   -4.95   -5.76   -6.34   -6.55   -6.28   -5.55   -4.46   -3.12   -1.55    0.48    3.37    7.46
+    50.0    0.00   -0.16   -0.63   -1.33   -2.17   -3.08   -4.01   -4.93   -5.74   -6.32   -6.52   -6.24   -5.51   -4.41   -3.06   -1.45    0.64    3.52    7.46
+    55.0    0.00   -0.16   -0.63   -1.33   -2.18   -3.09   -4.02   -4.92   -5.72   -6.29   -6.49   -6.22   -5.49   -4.40   -3.02   -1.36    0.76    3.64    7.43
+    60.0    0.00   -0.16   -0.63   -1.33   -2.18   -3.09   -4.02   -4.91   -5.71   -6.27   -6.47   -6.21   -5.51   -4.41   -3.03   -1.33    0.83    3.70    7.38
+    65.0    0.00   -0.16   -0.63   -1.33   -2.19   -3.09   -4.02   -4.92   -5.71   -6.27   -6.46   -6.22   -5.53   -4.46   -3.08   -1.36    0.85    3.73    7.31
+    70.0    0.00   -0.16   -0.63   -1.34   -2.19   -3.11   -4.05   -4.94   -5.72   -6.27   -6.48   -6.25   -5.58   -4.54   -3.15   -1.43    0.80    3.69    7.24
+    75.0    0.00   -0.16   -0.64   -1.35   -2.21   -3.13   -4.07   -4.96   -5.74   -6.30   -6.50   -6.30   -5.65   -4.62   -3.25   -1.52    0.71    3.61    7.17
+    80.0    0.00   -0.17   -0.65   -1.36   -2.23   -3.14   -4.09   -4.98   -5.76   -6.32   -6.54   -6.34   -5.71   -4.71   -3.36   -1.65    0.57    3.50    7.10
+    85.0    0.00   -0.17   -0.66   -1.38   -2.23   -3.17   -4.11   -5.01   -5.79   -6.36   -6.58   -6.38   -5.77   -4.79   -3.48   -1.80    0.41    3.35    7.02
+    90.0    0.00   -0.17   -0.65   -1.39   -2.26   -3.18   -4.14   -5.03   -5.81   -6.38   -6.61   -6.42   -5.82   -4.85   -3.56   -1.92    0.26    3.19    6.94
+    95.0    0.00   -0.17   -0.67   -1.41   -2.28   -3.21   -4.15   -5.06   -5.84   -6.41   -6.64   -6.45   -5.84   -4.88   -3.62   -2.02    0.11    3.04    6.87
+   100.0    0.00   -0.17   -0.68   -1.41   -2.29   -3.22   -4.16   -5.06   -5.84   -6.41   -6.64   -6.46   -5.85   -4.89   -3.64   -2.08    0.01    2.90    6.77
+   105.0    0.00   -0.18   -0.69   -1.43   -2.31   -3.23   -4.16   -5.06   -5.84   -6.41   -6.65   -6.45   -5.84   -4.88   -3.63   -2.08   -0.05    2.80    6.68
+   110.0    0.00   -0.19   -0.69   -1.44   -2.32   -3.23   -4.16   -5.04   -5.83   -6.40   -6.64   -6.44   -5.82   -4.83   -3.57   -2.03   -0.04    2.74    6.59
+   115.0    0.00   -0.18   -0.70   -1.45   -2.32   -3.24   -4.14   -5.03   -5.81   -6.38   -6.61   -6.43   -5.79   -4.77   -3.48   -1.94    0.03    2.75    6.52
+   120.0    0.00   -0.19   -0.71   -1.45   -2.33   -3.24   -4.13   -5.00   -5.78   -6.35   -6.59   -6.41   -5.75   -4.71   -3.37   -1.80    0.16    2.82    6.48
+   125.0    0.00   -0.19   -0.71   -1.47   -2.34   -3.23   -4.12   -4.97   -5.75   -6.32   -6.58   -6.38   -5.71   -4.64   -3.25   -1.64    0.33    2.93    6.48
+   130.0    0.00   -0.20   -0.73   -1.48   -2.34   -3.24   -4.12   -4.96   -5.73   -6.31   -6.57   -6.39   -5.70   -4.57   -3.13   -1.47    0.52    3.08    6.52
+   135.0    0.00   -0.20   -0.73   -1.48   -2.35   -3.24   -4.11   -4.96   -5.72   -6.31   -6.58   -6.39   -5.69   -4.53   -3.04   -1.32    0.70    3.24    6.58
+   140.0    0.00   -0.20   -0.74   -1.49   -2.36   -3.24   -4.12   -4.95   -5.72   -6.33   -6.60   -6.42   -5.71   -4.51   -2.98   -1.19    0.85    3.39    6.68
+   145.0    0.00   -0.21   -0.74   -1.50   -2.37   -3.26   -4.13   -4.96   -5.75   -6.35   -6.64   -6.46   -5.74   -4.53   -2.95   -1.12    0.97    3.52    6.79
+   150.0    0.00   -0.20   -0.75   -1.51   -2.36   -3.26   -4.13   -4.99   -5.77   -6.39   -6.69   -6.51   -5.79   -4.56   -2.96   -1.11    1.02    3.60    6.87
+   155.0    0.00   -0.20   -0.74   -1.51   -2.38   -3.27   -4.15   -5.02   -5.81   -6.44   -6.75   -6.58   -5.85   -4.62   -3.03   -1.16    0.99    3.60    6.92
+   160.0    0.00   -0.21   -0.74   -1.51   -2.38   -3.28   -4.16   -5.04   -5.85   -6.50   -6.81   -6.65   -5.94   -4.71   -3.12   -1.27    0.89    3.53    6.92
+   165.0    0.00   -0.21   -0.75   -1.51   -2.38   -3.27   -4.18   -5.05   -5.88   -6.54   -6.87   -6.71   -6.01   -4.81   -3.24   -1.41    0.72    3.39    6.86
+   170.0    0.00   -0.21   -0.75   -1.50   -2.38   -3.28   -4.18   -5.08   -5.91   -6.58   -6.92   -6.77   -6.09   -4.92   -3.39   -1.60    0.50    3.17    6.72
+   175.0    0.00   -0.21   -0.75   -1.50   -2.37   -3.26   -4.17   -5.07   -5.91   -6.60   -6.95   -6.81   -6.15   -5.01   -3.53   -1.80    0.27    2.92    6.52
+   180.0    0.00   -0.21   -0.74   -1.49   -2.36   -3.25   -4.15   -5.06   -5.91   -6.61   -6.96   -6.85   -6.20   -5.10   -3.66   -1.98    0.03    2.66    6.28
+   185.0    0.00   -0.21   -0.74   -1.48   -2.35   -3.23   -4.13   -5.03   -5.90   -6.58   -6.95   -6.86   -6.23   -5.15   -3.76   -2.14   -0.19    2.41    6.03
+   190.0    0.00   -0.21   -0.74   -1.48   -2.33   -3.22   -4.10   -5.00   -5.86   -6.55   -6.93   -6.85   -6.24   -5.18   -3.83   -2.25   -0.35    2.20    5.80
+   195.0    0.00   -0.20   -0.74   -1.48   -2.32   -3.19   -4.08   -4.96   -5.82   -6.52   -6.91   -6.82   -6.23   -5.19   -3.85   -2.31   -0.43    2.06    5.62
+   200.0    0.00   -0.20   -0.73   -1.47   -2.31   -3.17   -4.05   -4.94   -5.79   -6.48   -6.87   -6.80   -6.20   -5.16   -3.83   -2.29   -0.45    2.01    5.52
+   205.0    0.00   -0.20   -0.73   -1.46   -2.29   -3.16   -4.04   -4.91   -5.75   -6.45   -6.83   -6.76   -6.15   -5.10   -3.77   -2.23   -0.40    2.05    5.53
+   210.0    0.00   -0.20   -0.72   -1.46   -2.29   -3.16   -4.02   -4.90   -5.74   -6.42   -6.79   -6.71   -6.10   -5.04   -3.68   -2.12   -0.27    2.17    5.63
+   215.0    0.00   -0.20   -0.71   -1.45   -2.28   -3.15   -4.02   -4.90   -5.73   -6.41   -6.77   -6.67   -6.04   -4.95   -3.56   -1.98   -0.11    2.36    5.81
+   220.0    0.00   -0.20   -0.72   -1.44   -2.29   -3.16   -4.04   -4.92   -5.75   -6.41   -6.75   -6.62   -5.97   -4.87   -3.45   -1.83    0.09    2.59    6.06
+   225.0    0.00   -0.20   -0.72   -1.45   -2.29   -3.18   -4.07   -4.95   -5.78   -6.43   -6.75   -6.59   -5.93   -4.79   -3.35   -1.68    0.28    2.83    6.35
+   230.0    0.00   -0.20   -0.71   -1.45   -2.30   -3.20   -4.11   -4.99   -5.82   -6.45   -6.75   -6.59   -5.89   -4.73   -3.26   -1.57    0.44    3.05    6.63
+   235.0    0.00   -0.20   -0.71   -1.45   -2.32   -3.23   -4.14   -5.03   -5.85   -6.48   -6.77   -6.57   -5.85   -4.69   -3.20   -1.48    0.56    3.23    6.87
+   240.0    0.00   -0.19   -0.70   -1.45   -2.33   -3.25   -4.18   -5.08   -5.90   -6.52   -6.79   -6.58   -5.85   -4.67   -3.19   -1.46    0.62    3.35    7.04
+   245.0    0.00   -0.19   -0.71   -1.46   -2.33   -3.27   -4.21   -5.12   -5.95   -6.56   -6.81   -6.59   -5.86   -4.69   -3.19   -1.46    0.62    3.38    7.13
+   250.0    0.00   -0.19   -0.71   -1.45   -2.34   -3.28   -4.24   -5.15   -5.97   -6.58   -6.84   -6.61   -5.89   -4.71   -3.24   -1.52    0.58    3.35    7.13
+   255.0    0.00   -0.19   -0.70   -1.46   -2.34   -3.29   -4.24   -5.16   -5.99   -6.59   -6.85   -6.65   -5.92   -4.77   -3.31   -1.61    0.48    3.26    7.05
+   260.0    0.00   -0.20   -0.70   -1.45   -2.34   -3.30   -4.24   -5.17   -5.99   -6.60   -6.87   -6.67   -5.97   -4.84   -3.40   -1.71    0.36    3.12    6.91
+   265.0    0.00   -0.19   -0.70   -1.45   -2.34   -3.29   -4.23   -5.15   -5.98   -6.60   -6.88   -6.69   -6.02   -4.91   -3.49   -1.83    0.22    2.96    6.77
+   270.0    0.00   -0.19   -0.69   -1.45   -2.33   -3.28   -4.22   -5.13   -5.95   -6.59   -6.87   -6.72   -6.05   -4.96   -3.58   -1.92    0.11    2.83    6.64
+   275.0    0.00   -0.18   -0.69   -1.44   -2.33   -3.26   -4.19   -5.10   -5.93   -6.57   -6.88   -6.72   -6.09   -5.02   -3.63   -2.00   -2.23    2.73    6.55
+   280.0    0.00   -0.18   -0.70   -1.44   -2.32   -3.25   -4.17   -5.08   -5.90   -6.54   -6.87   -6.72   -6.09   -5.03   -3.66   -2.04   -0.05    2.66    6.55
+   285.0    0.00   -0.19   -0.70   -1.44   -2.32   -3.23   -4.14   -5.04   -5.87   -6.53   -6.85   -6.71   -6.09   -5.02   -3.65   -2.04   -0.07    2.66    6.62
+   290.0    0.00   -0.18   -0.69   -1.44   -2.30   -3.22   -4.13   -5.02   -5.85   -6.50   -6.83   -6.69   -6.05   -4.98   -3.61   -2.01   -0.03    2.72    6.75
+   295.0    0.00   -0.18   -0.69   -1.44   -2.29   -3.21   -4.11   -5.01   -5.83   -6.48   -6.79   -6.66   -6.01   -4.92   -3.55   -1.94    0.05    2.83    6.96
+   300.0    0.00   -0.18   -0.69   -1.43   -2.30   -3.20   -4.10   -4.98   -5.82   -6.46   -6.77   -6.61   -5.95   -4.84   -3.46   -1.84    0.15    2.97    7.18
+   305.0    0.00   -0.18   -0.69   -1.44   -2.29   -3.19   -4.10   -4.99   -5.80   -6.44   -6.74   -6.56   -5.87   -4.75   -3.36   -1.74    0.26    3.12    7.42
+   310.0    0.00   -0.18   -0.69   -1.43   -2.29   -3.19   -4.09   -4.98   -5.79   -6.42   -6.70   -6.51   -5.80   -4.67   -3.26   -1.64    0.38    3.25    7.60
+   315.0    0.00   -0.18   -0.70   -1.44   -2.29   -3.20   -4.10   -4.97   -5.78   -6.39   -6.67   -6.46   -5.74   -4.60   -3.18   -1.56    0.47    3.35    7.72
+   320.0    0.00   -0.18   -0.69   -1.44   -2.30   -3.20   -4.08   -4.97   -5.77   -6.38   -6.64   -6.43   -5.70   -4.55   -3.13   -1.49    0.53    3.40    7.74
+   325.0    0.00   -0.17   -0.69   -1.44   -2.30   -3.19   -4.09   -4.96   -5.75   -6.36   -6.62   -6.40   -5.67   -4.52   -3.10   -1.47    0.54    3.39    7.68
+   330.0    0.00   -0.17   -0.68   -1.43   -2.30   -3.19   -4.08   -4.94   -5.74   -6.34   -6.61   -6.40   -5.67   -4.54   -3.12   -1.48    0.51    3.32    7.53
+   335.0    0.00   -0.17   -0.68   -1.43   -2.29   -3.19   -4.08   -4.94   -5.72   -6.33   -6.60   -6.41   -5.71   -4.57   -3.17   -1.54    0.43    3.22    7.33
+   340.0    0.00   -0.17   -0.68   -1.42   -2.29   -3.19   -4.07   -4.93   -5.72   -6.32   -6.60   -6.43   -5.75   -4.63   -3.24   -1.64    0.33    3.05    7.09
+   345.0    0.00   -0.17   -0.68   -1.42   -2.28   -3.18   -4.06   -4.92   -5.71   -6.33   -6.62   -6.46   -5.81   -4.71   -3.34   -1.75    0.18    2.88    6.86
+   350.0    0.00   -0.17   -0.67   -1.42   -2.28   -3.17   -4.06   -4.92   -5.71   -6.34   -6.65   -6.51   -5.87   -4.81   -3.45   -1.89    0.04    2.71    6.66
+   355.0    0.00   -0.16   -0.67   -1.41   -2.27   -3.16   -4.05   -4.91   -5.72   -6.36   -6.68   -6.55   -5.93   -4.88   -3.56   -2.01   -0.11    2.55    6.51
+   360.0    0.00   -0.16   -0.66   -1.40   -2.26   -3.15   -4.05   -4.92   -5.74   -6.38   -6.71   -6.59   -5.97   -4.95   -3.64   -2.11   -0.24    2.44    6.44
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH700936C_M    SNOW                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               4    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+Number of Calibrated Antennas GPS:      004                 COMMENT             
+Number of Individual Calibrations GPS:  021                 COMMENT             
+   G01                                                      START OF FREQUENCY  
+     -0.12     -0.46     90.36                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.22   -0.85   -1.87   -3.20   -4.72   -6.27   -7.68   -8.76   -9.33   -9.27   -8.54   -7.14   -5.10   -2.46    0.78    4.63    9.05   13.83
+     0.0    0.00   -0.25   -0.93   -2.00   -3.37   -4.92   -6.48   -7.86   -8.87   -9.35   -9.23   -8.48   -7.13   -5.21   -2.71    0.46    4.33    8.82   13.57
+     5.0    0.00   -0.25   -0.92   -1.98   -3.35   -4.91   -6.48   -7.87   -8.89   -9.38   -9.25   -8.48   -7.13   -5.22   -2.74    0.39    4.24    8.74   13.56
+    10.0    0.00   -0.24   -0.91   -1.97   -3.33   -4.89   -6.47   -7.88   -8.91   -9.41   -9.27   -8.50   -7.14   -5.23   -2.77    0.33    4.15    8.67   13.58
+    15.0    0.00   -0.24   -0.90   -1.95   -3.31   -4.87   -6.47   -7.89   -8.94   -9.44   -9.30   -8.51   -7.14   -5.23   -2.79    0.28    4.08    8.62   13.64
+    20.0    0.00   -0.23   -0.89   -1.93   -3.29   -4.85   -6.46   -7.90   -8.96   -9.47   -9.33   -8.53   -7.14   -5.23   -2.79    0.25    4.04    8.60   13.71
+    25.0    0.00   -0.23   -0.88   -1.91   -3.27   -4.83   -6.44   -7.90   -8.98   -9.50   -9.37   -8.56   -7.15   -5.22   -2.78    0.26    4.04    8.62   13.79
+    30.0    0.00   -0.22   -0.86   -1.89   -3.24   -4.80   -6.42   -7.90   -9.00   -9.54   -9.40   -8.59   -7.16   -5.20   -2.74    0.31    4.08    8.67   13.88
+    35.0    0.00   -0.22   -0.85   -1.87   -3.21   -4.77   -6.40   -7.88   -9.01   -9.56   -9.44   -8.62   -7.16   -5.17   -2.68    0.38    4.16    8.74   13.95
+    40.0    0.00   -0.21   -0.84   -1.85   -3.18   -4.74   -6.37   -7.86   -9.00   -9.58   -9.47   -8.64   -7.17   -5.14   -2.61    0.49    4.28    8.84   14.02
+    45.0    0.00   -0.20   -0.82   -1.82   -3.15   -4.70   -6.33   -7.83   -8.99   -9.58   -9.49   -8.66   -7.17   -5.10   -2.52    0.62    4.42    8.96   14.07
+    50.0    0.00   -0.20   -0.81   -1.80   -3.12   -4.66   -6.28   -7.79   -8.96   -9.57   -9.49   -8.67   -7.16   -5.06   -2.43    0.75    4.57    9.08   14.10
+    55.0    0.00   -0.19   -0.80   -1.78   -3.09   -4.62   -6.24   -7.74   -8.92   -9.54   -9.48   -8.66   -7.15   -5.02   -2.35    0.88    4.72    9.21   14.13
+    60.0    0.00   -0.19   -0.79   -1.76   -3.06   -4.58   -6.19   -7.69   -8.86   -9.50   -9.45   -8.64   -7.13   -4.98   -2.27    1.00    4.86    9.32   14.15
+    65.0    0.00   -0.19   -0.78   -1.75   -3.03   -4.54   -6.13   -7.63   -8.80   -9.44   -9.40   -8.61   -7.10   -4.94   -2.21    1.09    4.98    9.41   14.16
+    70.0    0.00   -0.18   -0.77   -1.73   -3.01   -4.51   -6.09   -7.57   -8.73   -9.38   -9.35   -8.58   -7.08   -4.92   -2.16    1.16    5.06    9.48   14.17
+    75.0    0.00   -0.18   -0.76   -1.72   -2.99   -4.48   -6.04   -7.51   -8.66   -9.31   -9.29   -8.54   -7.05   -4.90   -2.13    1.21    5.12    9.53   14.17
+    80.0    0.00   -0.17   -0.76   -1.71   -2.98   -4.45   -6.01   -7.46   -8.60   -9.24   -9.23   -8.50   -7.03   -4.89   -2.13    1.22    5.14    9.55   14.17
+    85.0    0.00   -0.17   -0.75   -1.71   -2.97   -4.44   -5.98   -7.42   -8.55   -9.19   -9.19   -8.46   -7.01   -4.89   -2.13    1.22    5.14    9.54   14.15
+    90.0    0.00   -0.17   -0.75   -1.70   -2.96   -4.43   -5.96   -7.39   -8.52   -9.15   -9.15   -8.44   -7.01   -4.90   -2.15    1.19    5.11    9.51   14.12
+    95.0    0.00   -0.17   -0.75   -1.70   -2.96   -4.43   -5.96   -7.38   -8.50   -9.13   -9.14   -8.43   -7.01   -4.91   -2.18    1.16    5.07    9.46   14.07
+   100.0    0.00   -0.17   -0.75   -1.70   -2.97   -4.44   -5.96   -7.38   -8.50   -9.13   -9.13   -8.44   -7.03   -4.94   -2.22    1.11    5.02    9.40   14.02
+   105.0    0.00   -0.17   -0.75   -1.71   -2.98   -4.45   -5.98   -7.40   -8.51   -9.14   -9.15   -8.46   -7.06   -4.98   -2.26    1.07    4.96    9.34   13.95
+   110.0    0.00   -0.16   -0.75   -1.71   -2.99   -4.47   -6.00   -7.42   -8.53   -9.16   -9.18   -8.49   -7.10   -5.02   -2.30    1.02    4.91    9.28   13.89
+   115.0    0.00   -0.17   -0.75   -1.72   -3.00   -4.49   -6.03   -7.45   -8.56   -9.19   -9.21   -8.53   -7.14   -5.07   -2.35    0.97    4.86    9.22   13.83
+   120.0    0.00   -0.17   -0.75   -1.73   -3.02   -4.51   -6.05   -7.48   -8.59   -9.23   -9.24   -8.57   -7.18   -5.11   -2.39    0.93    4.82    9.19   13.80
+   125.0    0.00   -0.17   -0.76   -1.74   -3.03   -4.53   -6.08   -7.50   -8.62   -9.25   -9.27   -8.60   -7.22   -5.15   -2.44    0.89    4.79    9.16   13.79
+   130.0    0.00   -0.17   -0.76   -1.75   -3.05   -4.55   -6.10   -7.53   -8.64   -9.27   -9.29   -8.63   -7.25   -5.19   -2.48    0.85    4.76    9.16   13.81
+   135.0    0.00   -0.17   -0.77   -1.76   -3.06   -4.57   -6.12   -7.55   -8.65   -9.28   -9.30   -8.64   -7.27   -5.22   -2.52    0.82    4.75    9.17   13.85
+   140.0    0.00   -0.17   -0.77   -1.77   -3.08   -4.59   -6.14   -7.56   -8.66   -9.28   -9.30   -8.64   -7.28   -5.24   -2.55    0.79    4.74    9.19   13.92
+   145.0    0.00   -0.17   -0.78   -1.78   -3.09   -4.60   -6.15   -7.57   -8.66   -9.27   -9.28   -8.63   -7.28   -5.26   -2.57    0.77    4.73    9.21   13.99
+   150.0    0.00   -0.18   -0.79   -1.79   -3.10   -4.61   -6.16   -7.57   -8.66   -9.26   -9.27   -8.61   -7.27   -5.26   -2.58    0.75    4.72    9.22   14.06
+   155.0    0.00   -0.18   -0.79   -1.80   -3.12   -4.63   -6.18   -7.58   -8.66   -9.25   -9.25   -8.59   -7.25   -5.25   -2.58    0.74    4.70    9.22   14.09
+   160.0    0.00   -0.18   -0.80   -1.81   -3.13   -4.64   -6.19   -7.59   -8.66   -9.25   -9.24   -8.57   -7.24   -5.23   -2.58    0.73    4.68    9.20   14.09
+   165.0    0.00   -0.18   -0.80   -1.82   -3.14   -4.66   -6.21   -7.60   -8.67   -9.25   -9.24   -8.56   -7.22   -5.22   -2.56    0.73    4.65    9.14   14.03
+   170.0    0.00   -0.19   -0.81   -1.83   -3.16   -4.68   -6.23   -7.63   -8.69   -9.27   -9.25   -8.57   -7.21   -5.20   -2.55    0.72    4.60    9.05   13.92
+   175.0    0.00   -0.19   -0.82   -1.84   -3.17   -4.69   -6.25   -7.65   -8.72   -9.30   -9.27   -8.58   -7.21   -5.19   -2.54    0.70    4.54    8.93   13.77
+   180.0    0.00   -0.19   -0.82   -1.85   -3.18   -4.71   -6.27   -7.68   -8.76   -9.34   -9.31   -8.61   -7.22   -5.18   -2.54    0.68    4.46    8.79   13.59
+   185.0    0.00   -0.20   -0.83   -1.86   -3.20   -4.73   -6.30   -7.72   -8.80   -9.39   -9.36   -8.64   -7.24   -5.19   -2.55    0.65    4.38    8.64   13.40
+   190.0    0.00   -0.20   -0.84   -1.87   -3.21   -4.75   -6.32   -7.75   -8.84   -9.43   -9.40   -8.68   -7.27   -5.21   -2.56    0.61    4.29    8.50   13.23
+   195.0    0.00   -0.20   -0.84   -1.88   -3.22   -4.77   -6.34   -7.78   -8.87   -9.47   -9.45   -8.72   -7.30   -5.24   -2.60    0.55    4.20    8.38   13.11
+   200.0    0.00   -0.21   -0.85   -1.88   -3.23   -4.78   -6.36   -7.79   -8.90   -9.50   -9.48   -8.76   -7.34   -5.27   -2.64    0.50    4.14    8.31   13.06
+   205.0    0.00   -0.21   -0.86   -1.89   -3.24   -4.79   -6.37   -7.80   -8.91   -9.52   -9.50   -8.78   -7.37   -5.31   -2.68    0.46    4.09    8.29   13.09
+   210.0    0.00   -0.22   -0.86   -1.90   -3.25   -4.79   -6.37   -7.80   -8.90   -9.51   -9.50   -8.80   -7.40   -5.35   -2.72    0.43    4.09    8.34   13.21
+   215.0    0.00   -0.22   -0.87   -1.91   -3.25   -4.79   -6.36   -7.78   -8.88   -9.49   -9.49   -8.80   -7.41   -5.37   -2.75    0.42    4.13    8.45   13.40
+   220.0    0.00   -0.22   -0.87   -1.91   -3.25   -4.78   -6.34   -7.76   -8.85   -9.46   -9.46   -8.78   -7.41   -5.39   -2.75    0.45    4.22    8.62   13.64
+   225.0    0.00   -0.23   -0.88   -1.91   -3.25   -4.78   -6.32   -7.73   -8.81   -9.41   -9.42   -8.76   -7.40   -5.38   -2.73    0.51    4.36    8.84   13.92
+   230.0    0.00   -0.23   -0.88   -1.92   -3.25   -4.77   -6.30   -7.69   -8.76   -9.36   -9.38   -8.72   -7.38   -5.35   -2.68    0.61    4.54    9.10   14.19
+   235.0    0.00   -0.23   -0.89   -1.92   -3.25   -4.75   -6.28   -7.66   -8.72   -9.32   -9.33   -8.68   -7.34   -5.31   -2.60    0.75    4.75    9.36   14.43
+   240.0    0.00   -0.24   -0.89   -1.92   -3.25   -4.74   -6.26   -7.63   -8.68   -9.27   -9.29   -8.64   -7.29   -5.24   -2.50    0.91    4.97    9.60   14.60
+   245.0    0.00   -0.24   -0.90   -1.93   -3.25   -4.74   -6.24   -7.61   -8.65   -9.24   -9.25   -8.59   -7.23   -5.15   -2.37    1.09    5.18    9.80   14.68
+   250.0    0.00   -0.24   -0.90   -1.93   -3.25   -4.73   -6.24   -7.59   -8.64   -9.22   -9.22   -8.55   -7.17   -5.06   -2.24    1.26    5.37    9.94   14.67
+   255.0    0.00   -0.25   -0.91   -1.93   -3.25   -4.73   -6.23   -7.59   -8.63   -9.21   -9.20   -8.52   -7.11   -4.97   -2.11    1.41    5.51   10.01   14.57
+   260.0    0.00   -0.25   -0.91   -1.94   -3.25   -4.73   -6.24   -7.59   -8.64   -9.22   -9.19   -8.49   -7.05   -4.88   -2.00    1.52    5.59   10.00   14.39
+   265.0    0.00   -0.25   -0.92   -1.94   -3.26   -4.74   -6.25   -7.61   -8.65   -9.23   -9.19   -8.46   -6.99   -4.80   -1.92    1.59    5.61    9.93   14.17
+   270.0    0.00   -0.26   -0.92   -1.95   -3.27   -4.75   -6.26   -7.63   -8.67   -9.24   -9.19   -8.43   -6.95   -4.74   -1.87    1.61    5.56    9.79   13.93
+   275.0    0.00   -0.26   -0.93   -1.96   -3.28   -4.77   -6.28   -7.65   -8.70   -9.25   -9.18   -8.41   -6.91   -4.70   -1.85    1.56    5.44    9.60   13.71
+   280.0    0.00   -0.26   -0.93   -1.97   -3.29   -4.78   -6.30   -7.68   -8.72   -9.26   -9.18   -8.39   -6.88   -4.69   -1.88    1.47    5.28    9.40   13.53
+   285.0    0.00   -0.26   -0.94   -1.97   -3.30   -4.80   -6.32   -7.70   -8.74   -9.27   -9.17   -8.36   -6.86   -4.70   -1.94    1.34    5.09    9.20   13.40
+   290.0    0.00   -0.26   -0.94   -1.98   -3.31   -4.82   -6.35   -7.72   -8.75   -9.27   -9.15   -8.34   -6.85   -4.72   -2.03    1.19    4.89    9.02   13.35
+   295.0    0.00   -0.27   -0.95   -1.99   -3.33   -4.84   -6.37   -7.74   -8.76   -9.27   -9.14   -8.33   -6.85   -4.77   -2.13    1.02    4.71    8.88   13.36
+   300.0    0.00   -0.27   -0.95   -2.00   -3.34   -4.85   -6.39   -7.75   -8.77   -9.26   -9.12   -8.31   -6.86   -4.82   -2.24    0.87    4.55    8.78   13.43
+   305.0    0.00   -0.27   -0.95   -2.01   -3.35   -4.87   -6.40   -7.76   -8.77   -9.25   -9.11   -8.31   -6.88   -4.88   -2.34    0.74    4.43    8.74   13.54
+   310.0    0.00   -0.27   -0.96   -2.02   -3.36   -4.88   -6.42   -7.77   -8.77   -9.24   -9.10   -8.31   -6.90   -4.94   -2.43    0.65    4.36    8.74   13.67
+   315.0    0.00   -0.27   -0.96   -2.02   -3.37   -4.90   -6.43   -7.78   -8.77   -9.24   -9.10   -8.32   -6.93   -4.99   -2.50    0.59    4.34    8.78   13.78
+   320.0    0.00   -0.27   -0.96   -2.03   -3.38   -4.91   -6.44   -7.79   -8.77   -9.24   -9.10   -8.33   -6.97   -5.04   -2.55    0.56    4.35    8.84   13.87
+   325.0    0.00   -0.27   -0.96   -2.03   -3.39   -4.92   -6.45   -7.80   -8.78   -9.25   -9.11   -8.35   -7.00   -5.08   -2.58    0.56    4.39    8.91   13.92
+   330.0    0.00   -0.27   -0.96   -2.03   -3.39   -4.93   -6.46   -7.81   -8.79   -9.25   -9.12   -8.38   -7.03   -5.11   -2.59    0.57    4.44    8.97   13.93
+   335.0    0.00   -0.27   -0.96   -2.03   -3.40   -4.93   -6.47   -7.82   -8.80   -9.27   -9.14   -8.40   -7.06   -5.13   -2.60    0.59    4.48    9.01   13.90
+   340.0    0.00   -0.26   -0.96   -2.03   -3.40   -4.93   -6.47   -7.82   -8.81   -9.28   -9.16   -8.42   -7.08   -5.15   -2.61    0.60    4.51    9.03   13.83
+   345.0    0.00   -0.26   -0.95   -2.02   -3.39   -4.93   -6.48   -7.83   -8.82   -9.30   -9.18   -8.44   -7.10   -5.17   -2.62    0.60    4.51    9.01   13.75
+   350.0    0.00   -0.26   -0.95   -2.02   -3.39   -4.93   -6.48   -7.84   -8.84   -9.31   -9.19   -8.45   -7.12   -5.19   -2.64    0.57    4.48    8.97   13.67
+   355.0    0.00   -0.26   -0.94   -2.01   -3.38   -4.92   -6.48   -7.85   -8.85   -9.33   -9.21   -8.47   -7.12   -5.20   -2.67    0.52    4.42    8.90   13.60
+   360.0    0.00   -0.25   -0.93   -2.00   -3.37   -4.92   -6.48   -7.86   -8.87   -9.35   -9.23   -8.48   -7.13   -5.21   -2.71    0.46    4.33    8.82   13.57
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.45      0.43    120.11                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.11   -0.42   -0.91   -1.54   -2.27   -3.06   -3.89   -4.66   -5.26   -5.54   -5.40   -4.75   -3.60   -1.99    0.08    2.63    5.72    9.37
+     0.0    0.00   -0.17   -0.50   -0.94   -1.48   -2.13   -2.92   -3.80   -4.68   -5.39   -5.73   -5.58   -4.91   -3.76   -2.17   -0.13    2.44    5.62    9.23
+     5.0    0.00   -0.16   -0.49   -0.92   -1.46   -2.12   -2.91   -3.80   -4.69   -5.39   -5.73   -5.58   -4.92   -3.77   -2.19   -0.16    2.41    5.58    9.17
+    10.0    0.00   -0.16   -0.47   -0.91   -1.45   -2.11   -2.91   -3.81   -4.69   -5.39   -5.72   -5.57   -4.91   -3.78   -2.21   -0.19    2.38    5.56    9.16
+    15.0    0.00   -0.15   -0.46   -0.90   -1.44   -2.11   -2.92   -3.81   -4.69   -5.38   -5.71   -5.56   -4.90   -3.78   -2.23   -0.22    2.36    5.56    9.18
+    20.0    0.00   -0.15   -0.45   -0.88   -1.44   -2.12   -2.93   -3.82   -4.69   -5.37   -5.69   -5.53   -4.89   -3.78   -2.23   -0.22    2.37    5.59    9.25
+    25.0    0.00   -0.14   -0.44   -0.88   -1.43   -2.12   -2.94   -3.83   -4.69   -5.35   -5.66   -5.51   -4.87   -3.76   -2.22   -0.20    2.40    5.65    9.35
+    30.0    0.00   -0.13   -0.43   -0.87   -1.43   -2.13   -2.95   -3.84   -4.69   -5.34   -5.64   -5.48   -4.85   -3.75   -2.20   -0.17    2.47    5.74    9.46
+    35.0    0.00   -0.13   -0.42   -0.86   -1.44   -2.14   -2.97   -3.85   -4.69   -5.32   -5.61   -5.46   -4.83   -3.73   -2.17   -0.10    2.56    5.86    9.58
+    40.0    0.00   -0.12   -0.41   -0.86   -1.44   -2.16   -2.98   -3.86   -4.68   -5.30   -5.59   -5.44   -4.81   -3.71   -2.13   -0.03    2.67    5.99    9.69
+    45.0    0.00   -0.12   -0.41   -0.86   -1.45   -2.17   -2.99   -3.86   -4.67   -5.29   -5.57   -5.42   -4.80   -3.68   -2.08    0.06    2.80    6.12    9.77
+    50.0    0.00   -0.11   -0.40   -0.85   -1.45   -2.18   -3.01   -3.87   -4.67   -5.27   -5.55   -5.41   -4.79   -3.67   -2.03    0.15    2.92    6.24    9.84
+    55.0    0.00   -0.10   -0.40   -0.85   -1.46   -2.19   -3.02   -3.87   -4.66   -5.26   -5.54   -5.40   -4.78   -3.65   -1.99    0.23    3.04    6.35    9.89
+    60.0    0.00   -0.10   -0.39   -0.86   -1.47   -2.21   -3.03   -3.88   -4.66   -5.25   -5.53   -5.40   -4.78   -3.64   -1.95    0.30    3.13    6.44    9.93
+    65.0    0.00   -0.09   -0.39   -0.86   -1.48   -2.22   -3.05   -3.89   -4.66   -5.25   -5.53   -5.40   -4.78   -3.64   -1.93    0.35    3.20    6.50    9.96
+    70.0    0.00   -0.09   -0.38   -0.86   -1.49   -2.24   -3.07   -3.90   -4.67   -5.25   -5.53   -5.40   -4.79   -3.64   -1.92    0.38    3.23    6.54    9.98
+    75.0    0.00   -0.09   -0.38   -0.87   -1.51   -2.26   -3.09   -3.92   -4.68   -5.26   -5.54   -5.41   -4.80   -3.64   -1.92    0.38    3.24    6.55   10.02
+    80.0    0.00   -0.08   -0.38   -0.87   -1.52   -2.28   -3.11   -3.94   -4.70   -5.27   -5.55   -5.42   -4.81   -3.65   -1.93    0.37    3.23    6.55   10.06
+    85.0    0.00   -0.08   -0.38   -0.88   -1.54   -2.31   -3.14   -3.97   -4.72   -5.29   -5.56   -5.43   -4.82   -3.66   -1.95    0.34    3.20    6.53   10.10
+    90.0    0.00   -0.08   -0.38   -0.89   -1.55   -2.33   -3.17   -3.99   -4.74   -5.31   -5.58   -5.44   -4.83   -3.68   -1.97    0.31    3.16    6.50   10.15
+    95.0    0.00   -0.07   -0.38   -0.90   -1.57   -2.36   -3.19   -4.02   -4.76   -5.32   -5.59   -5.45   -4.83   -3.68   -1.98    0.28    3.11    6.47   10.19
+   100.0    0.00   -0.07   -0.38   -0.90   -1.59   -2.38   -3.22   -4.05   -4.78   -5.34   -5.60   -5.46   -4.84   -3.69   -1.99    0.26    3.07    6.44   10.22
+   105.0    0.00   -0.07   -0.38   -0.91   -1.61   -2.40   -3.24   -4.07   -4.80   -5.35   -5.61   -5.47   -4.84   -3.69   -2.00    0.24    3.04    6.40   10.23
+   110.0    0.00   -0.06   -0.38   -0.92   -1.62   -2.43   -3.27   -4.08   -4.81   -5.36   -5.61   -5.47   -4.84   -3.68   -1.99    0.24    3.02    6.37   10.22
+   115.0    0.00   -0.06   -0.38   -0.93   -1.64   -2.44   -3.28   -4.09   -4.81   -5.35   -5.61   -5.46   -4.83   -3.67   -1.97    0.26    3.02    6.34   10.18
+   120.0    0.00   -0.06   -0.38   -0.93   -1.65   -2.46   -3.30   -4.10   -4.81   -5.35   -5.60   -5.45   -4.81   -3.64   -1.94    0.28    3.02    6.31   10.13
+   125.0    0.00   -0.06   -0.38   -0.93   -1.66   -2.47   -3.30   -4.10   -4.81   -5.34   -5.59   -5.44   -4.80   -3.62   -1.90    0.32    3.04    6.28   10.06
+   130.0    0.00   -0.05   -0.38   -0.94   -1.66   -2.48   -3.31   -4.10   -4.80   -5.32   -5.57   -5.42   -4.78   -3.59   -1.86    0.36    3.06    6.26    9.98
+   135.0    0.00   -0.05   -0.37   -0.94   -1.67   -2.48   -3.31   -4.09   -4.79   -5.31   -5.56   -5.41   -4.76   -3.56   -1.83    0.40    3.08    6.24    9.91
+   140.0    0.00   -0.05   -0.37   -0.93   -1.67   -2.48   -3.30   -4.09   -4.78   -5.30   -5.55   -5.40   -4.75   -3.54   -1.80    0.43    3.09    6.21    9.84
+   145.0    0.00   -0.05   -0.37   -0.93   -1.66   -2.47   -3.30   -4.08   -4.77   -5.29   -5.55   -5.41   -4.75   -3.53   -1.78    0.44    3.09    6.18    9.78
+   150.0    0.00   -0.05   -0.36   -0.92   -1.65   -2.46   -3.29   -4.07   -4.77   -5.30   -5.56   -5.42   -4.76   -3.54   -1.78    0.44    3.07    6.14    9.72
+   155.0    0.00   -0.05   -0.36   -0.91   -1.64   -2.45   -3.28   -4.07   -4.77   -5.31   -5.58   -5.45   -4.79   -3.56   -1.79    0.42    3.04    6.09    9.67
+   160.0    0.00   -0.05   -0.35   -0.90   -1.62   -2.43   -3.26   -4.06   -4.78   -5.34   -5.62   -5.49   -4.83   -3.59   -1.82    0.39    2.99    6.02    9.60
+   165.0    0.00   -0.04   -0.35   -0.89   -1.61   -2.41   -3.25   -4.06   -4.79   -5.37   -5.67   -5.55   -4.88   -3.64   -1.87    0.33    2.92    5.93    9.53
+   170.0    0.00   -0.04   -0.34   -0.88   -1.58   -2.39   -3.23   -4.05   -4.80   -5.40   -5.72   -5.61   -4.95   -3.71   -1.94    0.26    2.83    5.83    9.43
+   175.0    0.00   -0.04   -0.34   -0.86   -1.56   -2.37   -3.21   -4.05   -4.82   -5.44   -5.78   -5.68   -5.02   -3.78   -2.01    0.18    2.73    5.71    9.31
+   180.0    0.00   -0.04   -0.33   -0.85   -1.54   -2.34   -3.19   -4.04   -4.84   -5.48   -5.84   -5.74   -5.09   -3.84   -2.08    0.09    2.62    5.58    9.17
+   185.0    0.00   -0.05   -0.33   -0.84   -1.52   -2.31   -3.17   -4.03   -4.85   -5.51   -5.89   -5.80   -5.15   -3.90   -2.15    0.01    2.50    5.44    9.03
+   190.0    0.00   -0.05   -0.33   -0.82   -1.49   -2.29   -3.14   -4.02   -4.86   -5.54   -5.92   -5.84   -5.19   -3.95   -2.20   -0.07    2.40    5.31    8.89
+   195.0    0.00   -0.05   -0.32   -0.81   -1.48   -2.26   -3.12   -4.01   -4.86   -5.55   -5.94   -5.86   -5.21   -3.97   -2.24   -0.13    2.31    5.20    8.76
+   200.0    0.00   -0.05   -0.32   -0.80   -1.46   -2.24   -3.10   -4.00   -4.85   -5.55   -5.94   -5.86   -5.20   -3.97   -2.26   -0.18    2.24    5.11    8.67
+   205.0    0.00   -0.06   -0.33   -0.80   -1.44   -2.22   -3.08   -3.98   -4.84   -5.54   -5.92   -5.82   -5.17   -3.94   -2.25   -0.19    2.20    5.07    8.63
+   210.0    0.00   -0.06   -0.33   -0.80   -1.43   -2.20   -3.06   -3.96   -4.82   -5.51   -5.87   -5.77   -5.10   -3.89   -2.21   -0.18    2.20    5.06    8.64
+   215.0    0.00   -0.07   -0.33   -0.80   -1.43   -2.19   -3.05   -3.94   -4.79   -5.46   -5.81   -5.69   -5.02   -3.81   -2.15   -0.14    2.24    5.11    8.71
+   220.0    0.00   -0.07   -0.34   -0.80   -1.43   -2.18   -3.03   -3.92   -4.75   -5.41   -5.74   -5.60   -4.91   -3.71   -2.07   -0.07    2.31    5.19    8.82
+   225.0    0.00   -0.08   -0.35   -0.81   -1.43   -2.18   -3.02   -3.89   -4.71   -5.35   -5.65   -5.49   -4.80   -3.60   -1.97    0.03    2.41    5.32    8.96
+   230.0    0.00   -0.08   -0.36   -0.82   -1.44   -2.18   -3.01   -3.87   -4.67   -5.28   -5.57   -5.39   -4.69   -3.49   -1.86    0.14    2.53    5.46    9.12
+   235.0    0.00   -0.09   -0.38   -0.84   -1.45   -2.18   -2.99   -3.84   -4.62   -5.22   -5.48   -5.29   -4.58   -3.38   -1.75    0.25    2.66    5.60    9.25
+   240.0    0.00   -0.10   -0.39   -0.85   -1.46   -2.18   -2.98   -3.81   -4.58   -5.16   -5.40   -5.20   -4.49   -3.28   -1.65    0.37    2.78    5.73    9.34
+   245.0    0.00   -0.11   -0.41   -0.87   -1.47   -2.18   -2.97   -3.78   -4.53   -5.10   -5.33   -5.13   -4.41   -3.20   -1.56    0.46    2.89    5.82    9.38
+   250.0    0.00   -0.12   -0.42   -0.89   -1.49   -2.19   -2.96   -3.75   -4.49   -5.04   -5.28   -5.07   -4.36   -3.15   -1.50    0.53    2.96    5.87    9.35
+   255.0    0.00   -0.12   -0.44   -0.91   -1.51   -2.20   -2.95   -3.73   -4.45   -5.00   -5.23   -5.04   -4.33   -3.12   -1.47    0.57    2.99    5.86    9.25
+   260.0    0.00   -0.13   -0.46   -0.94   -1.53   -2.21   -2.94   -3.70   -4.41   -4.96   -5.20   -5.01   -4.32   -3.12   -1.47    0.57    2.97    5.79    9.09
+   265.0    0.00   -0.14   -0.48   -0.96   -1.55   -2.22   -2.94   -3.69   -4.39   -4.93   -5.18   -5.01   -4.33   -3.14   -1.50    0.52    2.90    5.67    8.89
+   270.0    0.00   -0.15   -0.49   -0.98   -1.57   -2.23   -2.94   -3.67   -4.37   -4.92   -5.17   -5.01   -4.34   -3.17   -1.55    0.44    2.78    5.51    8.68
+   275.0    0.00   -0.16   -0.51   -1.00   -1.59   -2.24   -2.94   -3.67   -4.36   -4.91   -5.17   -5.02   -4.37   -3.22   -1.63    0.33    2.63    5.33    8.49
+   280.0    0.00   -0.17   -0.52   -1.02   -1.61   -2.26   -2.95   -3.67   -4.36   -4.91   -5.18   -5.03   -4.40   -3.27   -1.72    0.19    2.46    5.15    8.35
+   285.0    0.00   -0.17   -0.54   -1.04   -1.63   -2.27   -2.96   -3.68   -4.37   -4.92   -5.19   -5.05   -4.42   -3.33   -1.82    0.04    2.28    4.99    8.26
+   290.0    0.00   -0.18   -0.55   -1.05   -1.64   -2.28   -2.98   -3.70   -4.39   -4.94   -5.21   -5.06   -4.45   -3.38   -1.92   -0.10    2.12    4.86    8.26
+   295.0    0.00   -0.18   -0.56   -1.07   -1.65   -2.30   -2.99   -3.72   -4.42   -4.97   -5.23   -5.08   -4.47   -3.43   -2.00   -0.22    1.98    4.79    8.35
+   300.0    0.00   -0.19   -0.57   -1.07   -1.66   -2.31   -3.01   -3.74   -4.45   -5.00   -5.26   -5.11   -4.50   -3.47   -2.07   -0.32    1.89    4.77    8.50
+   305.0    0.00   -0.19   -0.57   -1.08   -1.66   -2.31   -3.02   -3.77   -4.48   -5.04   -5.29   -5.13   -4.52   -3.50   -2.12   -0.39    1.85    4.81    8.71
+   310.0    0.00   -0.19   -0.58   -1.08   -1.66   -2.31   -3.03   -3.79   -4.52   -5.08   -5.34   -5.17   -4.55   -3.53   -2.16   -0.42    1.85    4.91    8.94
+   315.0    0.00   -0.19   -0.58   -1.08   -1.66   -2.31   -3.03   -3.81   -4.55   -5.13   -5.38   -5.21   -4.58   -3.55   -2.17   -0.41    1.90    5.04    9.18
+   320.0    0.00   -0.20   -0.57   -1.07   -1.65   -2.30   -3.03   -3.82   -4.58   -5.17   -5.43   -5.25   -4.61   -3.57   -2.17   -0.38    1.98    5.19    9.39
+   325.0    0.00   -0.19   -0.57   -1.06   -1.63   -2.28   -3.02   -3.83   -4.61   -5.22   -5.49   -5.30   -4.65   -3.59   -2.16   -0.33    2.09    5.34    9.54
+   330.0    0.00   -0.19   -0.56   -1.05   -1.61   -2.26   -3.01   -3.83   -4.63   -5.26   -5.54   -5.36   -4.70   -3.61   -2.15   -0.27    2.20    5.48    9.64
+   335.0    0.00   -0.19   -0.56   -1.03   -1.59   -2.24   -2.99   -3.83   -4.65   -5.30   -5.59   -5.41   -4.74   -3.63   -2.13   -0.21    2.30    5.59    9.66
+   340.0    0.00   -0.19   -0.55   -1.01   -1.56   -2.21   -2.97   -3.82   -4.66   -5.33   -5.63   -5.47   -4.79   -3.66   -2.12   -0.15    2.39    5.66    9.63
+   345.0    0.00   -0.18   -0.54   -0.99   -1.54   -2.19   -2.96   -3.82   -4.67   -5.35   -5.67   -5.51   -4.83   -3.68   -2.12   -0.12    2.44    5.69    9.54
+   350.0    0.00   -0.18   -0.52   -0.98   -1.52   -2.17   -2.94   -3.81   -4.68   -5.37   -5.70   -5.55   -4.87   -3.71   -2.13   -0.11    2.47    5.69    9.44
+   355.0    0.00   -0.18   -0.51   -0.96   -1.50   -2.15   -2.92   -3.80   -4.68   -5.38   -5.72   -5.57   -4.89   -3.74   -2.15   -0.11    2.46    5.66    9.33
+   360.0    0.00   -0.17   -0.50   -0.94   -1.48   -2.13   -2.92   -3.80   -4.68   -5.39   -5.73   -5.58   -4.91   -3.76   -2.17   -0.13    2.44    5.62    9.23
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH700936D_M    NONE                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               4    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     4                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+Number of Calibrated Antennas GPS:      004                 COMMENT             
+Number of Individual Calibrations GPS:  008                 COMMENT             
+Number of Calibrated Antennas GLO:      004                 COMMENT             
+Number of Individual Calibrations GLO:  016                 COMMENT             
+# GLONASS PCV                                               COMMENT             
+#  derived from Delta PCV per 25.0 MHz                      COMMENT             
+#  for frequency channel number k=0                         COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.37     -0.34     90.97                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.25   -0.96   -2.06   -3.42   -4.86   -6.23   -7.35   -8.12   -8.45   -8.32   -7.72   -6.63   -4.96   -2.62    0.54    4.57    9.35   14.47
+     0.0    0.00   -0.29   -1.07   -2.21   -3.57   -4.99   -6.32   -7.42   -8.20   -8.57   -8.48   -7.91   -6.82   -5.16   -2.85    0.22    4.09    8.66   13.54
+     5.0    0.00   -0.29   -1.06   -2.20   -3.56   -4.98   -6.31   -7.42   -8.20   -8.58   -8.50   -7.93   -6.83   -5.15   -2.83    0.23    4.09    8.66   13.54
+    10.0    0.00   -0.29   -1.06   -2.19   -3.55   -4.98   -6.31   -7.43   -8.22   -8.60   -8.52   -7.94   -6.82   -5.13   -2.80    0.26    4.11    8.68   13.58
+    15.0    0.00   -0.29   -1.05   -2.18   -3.54   -4.97   -6.31   -7.44   -8.24   -8.62   -8.53   -7.93   -6.80   -5.10   -2.77    0.29    4.14    8.73   13.67
+    20.0    0.00   -0.28   -1.04   -2.17   -3.53   -4.96   -6.31   -7.45   -8.26   -8.64   -8.54   -7.92   -6.77   -5.06   -2.73    0.33    4.21    8.83   13.81
+    25.0    0.00   -0.28   -1.03   -2.16   -3.51   -4.95   -6.32   -7.47   -8.28   -8.65   -8.53   -7.89   -6.72   -5.00   -2.67    0.40    4.30    8.97   14.00
+    30.0    0.00   -0.27   -1.02   -2.14   -3.50   -4.94   -6.32   -7.48   -8.29   -8.66   -8.52   -7.85   -6.67   -4.94   -2.60    0.48    4.42    9.15   14.24
+    35.0    0.00   -0.27   -1.01   -2.12   -3.48   -4.93   -6.32   -7.48   -8.30   -8.65   -8.49   -7.81   -6.61   -4.88   -2.53    0.58    4.56    9.36   14.51
+    40.0    0.00   -0.26   -0.99   -2.10   -3.46   -4.91   -6.31   -7.48   -8.29   -8.63   -8.45   -7.76   -6.55   -4.82   -2.46    0.68    4.73    9.60   14.79
+    45.0    0.00   -0.26   -0.98   -2.08   -3.44   -4.89   -6.29   -7.47   -8.27   -8.60   -8.41   -7.70   -6.50   -4.76   -2.39    0.79    4.91    9.85   15.06
+    50.0    0.00   -0.25   -0.96   -2.06   -3.41   -4.87   -6.27   -7.44   -8.24   -8.56   -8.36   -7.65   -6.45   -4.72   -2.33    0.90    5.09   10.09   15.32
+    55.0    0.00   -0.24   -0.95   -2.04   -3.39   -4.85   -6.24   -7.41   -8.20   -8.51   -8.31   -7.61   -6.42   -4.69   -2.28    1.00    5.25   10.31   15.54
+    60.0    0.00   -0.24   -0.94   -2.02   -3.36   -4.82   -6.21   -7.37   -8.15   -8.45   -8.26   -7.57   -6.40   -4.68   -2.25    1.07    5.38   10.48   15.71
+    65.0    0.00   -0.23   -0.92   -2.00   -3.34   -4.79   -6.18   -7.33   -8.09   -8.40   -8.21   -7.54   -6.39   -4.68   -2.24    1.12    5.48   10.60   15.82
+    70.0    0.00   -0.23   -0.91   -1.98   -3.32   -4.76   -6.14   -7.28   -8.04   -8.34   -8.17   -7.52   -6.39   -4.69   -2.24    1.14    5.52   10.66   15.87
+    75.0    0.00   -0.22   -0.90   -1.97   -3.30   -4.74   -6.11   -7.24   -7.99   -8.29   -8.13   -7.51   -6.40   -4.71   -2.26    1.13    5.51   10.64   15.87
+    80.0    0.00   -0.22   -0.89   -1.95   -3.28   -4.72   -6.09   -7.21   -7.96   -8.26   -8.10   -7.50   -6.41   -4.74   -2.29    1.09    5.45   10.56   15.81
+    85.0    0.00   -0.21   -0.88   -1.94   -3.27   -4.71   -6.08   -7.19   -7.93   -8.23   -8.08   -7.49   -6.43   -4.76   -2.34    1.02    5.35   10.43   15.71
+    90.0    0.00   -0.21   -0.88   -1.94   -3.27   -4.71   -6.07   -7.18   -7.92   -8.21   -8.07   -7.49   -6.44   -4.79   -2.39    0.94    5.21   10.25   15.57
+    95.0    0.00   -0.21   -0.87   -1.93   -3.27   -4.71   -6.08   -7.18   -7.91   -8.21   -8.07   -7.50   -6.45   -4.82   -2.44    0.84    5.06   10.05   15.42
+   100.0    0.00   -0.20   -0.87   -1.93   -3.27   -4.72   -6.08   -7.19   -7.92   -8.22   -8.08   -7.51   -6.46   -4.84   -2.49    0.75    4.90    9.85   15.26
+   105.0    0.00   -0.20   -0.87   -1.93   -3.28   -4.73   -6.10   -7.21   -7.94   -8.23   -8.09   -7.52   -6.48   -4.87   -2.53    0.66    4.75    9.66   15.11
+   110.0    0.00   -0.20   -0.87   -1.94   -3.29   -4.75   -6.12   -7.23   -7.96   -8.26   -8.12   -7.55   -6.50   -4.89   -2.57    0.58    4.63    9.49   14.97
+   115.0    0.00   -0.20   -0.87   -1.94   -3.30   -4.76   -6.13   -7.25   -7.98   -8.28   -8.15   -7.58   -6.53   -4.92   -2.61    0.52    4.53    9.36   14.85
+   120.0    0.00   -0.20   -0.87   -1.95   -3.31   -4.77   -6.15   -7.26   -8.00   -8.31   -8.18   -7.61   -6.57   -4.96   -2.64    0.48    4.48    9.28   14.75
+   125.0    0.00   -0.20   -0.88   -1.96   -3.32   -4.79   -6.16   -7.28   -8.02   -8.33   -8.22   -7.66   -6.61   -4.99   -2.67    0.46    4.45    9.24   14.67
+   130.0    0.00   -0.20   -0.88   -1.97   -3.33   -4.79   -6.17   -7.29   -8.03   -8.36   -8.25   -7.70   -6.66   -5.04   -2.70    0.45    4.45    9.23   14.62
+   135.0    0.00   -0.20   -0.88   -1.97   -3.34   -4.80   -6.17   -7.29   -8.04   -8.38   -8.29   -7.75   -6.71   -5.08   -2.73    0.45    4.46    9.24   14.58
+   140.0    0.00   -0.20   -0.89   -1.98   -3.35   -4.80   -6.17   -7.29   -8.05   -8.40   -8.33   -7.80   -6.76   -5.12   -2.75    0.44    4.48    9.25   14.55
+   145.0    0.00   -0.21   -0.90   -1.99   -3.35   -4.81   -6.17   -7.29   -8.06   -8.42   -8.36   -7.84   -6.81   -5.16   -2.78    0.43    4.48    9.27   14.52
+   150.0    0.00   -0.21   -0.90   -2.00   -3.36   -4.81   -6.17   -7.29   -8.07   -8.44   -8.39   -7.87   -6.84   -5.19   -2.80    0.41    4.47    9.26   14.49
+   155.0    0.00   -0.21   -0.91   -2.01   -3.37   -4.81   -6.17   -7.30   -8.08   -8.46   -8.41   -7.90   -6.86   -5.21   -2.83    0.37    4.42    9.22   14.45
+   160.0    0.00   -0.21   -0.92   -2.02   -3.37   -4.82   -6.18   -7.30   -8.09   -8.48   -8.44   -7.91   -6.87   -5.22   -2.86    0.32    4.35    9.15   14.41
+   165.0    0.00   -0.22   -0.92   -2.03   -3.38   -4.82   -6.18   -7.31   -8.11   -8.50   -8.45   -7.92   -6.87   -5.22   -2.88    0.25    4.25    9.05   14.35
+   170.0    0.00   -0.22   -0.93   -2.04   -3.39   -4.83   -6.19   -7.33   -8.13   -8.53   -8.47   -7.93   -6.87   -5.22   -2.92    0.17    4.13    8.93   14.28
+   175.0    0.00   -0.22   -0.94   -2.04   -3.40   -4.84   -6.20   -7.34   -8.15   -8.55   -8.49   -7.93   -6.86   -5.23   -2.95    0.09    4.00    8.79   14.22
+   180.0    0.00   -0.23   -0.94   -2.05   -3.41   -4.85   -6.22   -7.36   -8.17   -8.57   -8.50   -7.94   -6.86   -5.23   -2.98    0.01    3.88    8.67   14.15
+   185.0    0.00   -0.23   -0.95   -2.06   -3.42   -4.87   -6.23   -7.38   -8.19   -8.59   -8.51   -7.94   -6.86   -5.24   -3.01   -0.06    3.78    8.57   14.10
+   190.0    0.00   -0.23   -0.96   -2.07   -3.43   -4.88   -6.24   -7.39   -8.20   -8.60   -8.53   -7.95   -6.87   -5.25   -3.04   -0.10    3.72    8.50   14.08
+   195.0    0.00   -0.24   -0.96   -2.08   -3.44   -4.89   -6.25   -7.40   -8.21   -8.61   -8.54   -7.97   -6.89   -5.27   -3.06   -0.12    3.70    8.49   14.09
+   200.0    0.00   -0.24   -0.97   -2.09   -3.45   -4.89   -6.26   -7.40   -8.21   -8.61   -8.55   -7.98   -6.91   -5.29   -3.06   -0.10    3.74    8.54   14.14
+   205.0    0.00   -0.24   -0.97   -2.09   -3.46   -4.90   -6.26   -7.40   -8.21   -8.61   -8.55   -8.00   -6.93   -5.30   -3.05   -0.05    3.83    8.65   14.24
+   210.0    0.00   -0.24   -0.97   -2.09   -3.46   -4.90   -6.26   -7.39   -8.19   -8.59   -8.54   -8.00   -6.94   -5.30   -3.01    0.04    3.97    8.82   14.38
+   215.0    0.00   -0.24   -0.97   -2.10   -3.46   -4.90   -6.25   -7.38   -8.17   -8.57   -8.52   -7.99   -6.93   -5.28   -2.95    0.17    4.16    9.04   14.57
+   220.0    0.00   -0.25   -0.98   -2.10   -3.46   -4.90   -6.25   -7.36   -8.15   -8.54   -8.49   -7.97   -6.91   -5.24   -2.86    0.32    4.38    9.29   14.79
+   225.0    0.00   -0.25   -0.98   -2.09   -3.46   -4.89   -6.24   -7.34   -8.12   -8.50   -8.45   -7.92   -6.86   -5.17   -2.75    0.49    4.62    9.56   15.02
+   230.0    0.00   -0.25   -0.98   -2.09   -3.45   -4.89   -6.22   -7.33   -8.09   -8.46   -8.39   -7.86   -6.78   -5.07   -2.62    0.68    4.86    9.82   15.26
+   235.0    0.00   -0.25   -0.97   -2.08   -3.44   -4.88   -6.21   -7.31   -8.06   -8.41   -8.33   -7.77   -6.68   -4.95   -2.47    0.86    5.08   10.06   15.48
+   240.0    0.00   -0.25   -0.97   -2.08   -3.43   -4.86   -6.20   -7.29   -8.03   -8.36   -8.26   -7.68   -6.57   -4.82   -2.32    1.04    5.27   10.26   15.66
+   245.0    0.00   -0.25   -0.97   -2.07   -3.42   -4.85   -6.19   -7.28   -8.01   -8.32   -8.19   -7.58   -6.45   -4.68   -2.17    1.19    5.43   10.40   15.78
+   250.0    0.00   -0.26   -0.97   -2.06   -3.41   -4.84   -6.18   -7.27   -7.99   -8.28   -8.12   -7.48   -6.33   -4.55   -2.04    1.31    5.53   10.49   15.84
+   255.0    0.00   -0.26   -0.97   -2.06   -3.40   -4.83   -6.17   -7.26   -7.97   -8.25   -8.06   -7.40   -6.22   -4.44   -1.94    1.39    5.59   10.51   15.82
+   260.0    0.00   -0.26   -0.97   -2.05   -3.39   -4.82   -6.16   -7.25   -7.97   -8.23   -8.02   -7.33   -6.14   -4.36   -1.87    1.43    5.59   10.48   15.72
+   265.0    0.00   -0.26   -0.97   -2.04   -3.38   -4.81   -6.16   -7.25   -7.97   -8.22   -8.00   -7.29   -6.09   -4.31   -1.85    1.43    5.55   10.39   15.56
+   270.0    0.00   -0.26   -0.97   -2.04   -3.37   -4.80   -6.15   -7.26   -7.97   -8.23   -7.99   -7.28   -6.07   -4.30   -1.86    1.38    5.47   10.25   15.35
+   275.0    0.00   -0.26   -0.97   -2.04   -3.37   -4.80   -6.16   -7.27   -7.99   -8.24   -8.00   -7.29   -6.08   -4.33   -1.92    1.30    5.35   10.09   15.09
+   280.0    0.00   -0.27   -0.97   -2.04   -3.37   -4.80   -6.17   -7.28   -8.01   -8.27   -8.03   -7.32   -6.13   -4.40   -2.01    1.18    5.21    9.91   14.82
+   285.0    0.00   -0.27   -0.98   -2.05   -3.38   -4.81   -6.18   -7.30   -8.04   -8.30   -8.08   -7.38   -6.20   -4.49   -2.12    1.05    5.06    9.72   14.56
+   290.0    0.00   -0.27   -0.98   -2.06   -3.39   -4.82   -6.20   -7.33   -8.07   -8.34   -8.13   -7.44   -6.29   -4.60   -2.25    0.90    4.90    9.55   14.32
+   295.0    0.00   -0.27   -0.99   -2.07   -3.40   -4.84   -6.22   -7.36   -8.11   -8.39   -8.18   -7.51   -6.38   -4.72   -2.39    0.75    4.75    9.39   14.11
+   300.0    0.00   -0.28   -1.00   -2.08   -3.42   -4.87   -6.25   -7.39   -8.14   -8.43   -8.24   -7.58   -6.47   -4.83   -2.52    0.61    4.61    9.25   13.95
+   305.0    0.00   -0.28   -1.00   -2.09   -3.44   -4.89   -6.28   -7.42   -8.18   -8.47   -8.28   -7.64   -6.54   -4.93   -2.64    0.49    4.49    9.14   13.84
+   310.0    0.00   -0.28   -1.01   -2.11   -3.46   -4.92   -6.31   -7.45   -8.21   -8.50   -8.32   -7.69   -6.61   -5.01   -2.73    0.38    4.38    9.05   13.77
+   315.0    0.00   -0.29   -1.02   -2.13   -3.49   -4.95   -6.33   -7.47   -8.23   -8.53   -8.35   -7.73   -6.66   -5.07   -2.81    0.30    4.30    8.99   13.73
+   320.0    0.00   -0.29   -1.03   -2.15   -3.51   -4.97   -6.35   -7.49   -8.25   -8.55   -8.38   -7.76   -6.69   -5.11   -2.86    0.24    4.24    8.94   13.73
+   325.0    0.00   -0.29   -1.04   -2.16   -3.53   -4.99   -6.37   -7.50   -8.25   -8.56   -8.39   -7.78   -6.72   -5.14   -2.88    0.21    4.20    8.90   13.73
+   330.0    0.00   -0.29   -1.05   -2.18   -3.55   -5.00   -6.37   -7.50   -8.25   -8.56   -8.40   -7.80   -6.73   -5.15   -2.90    0.19    4.17    8.87   13.73
+   335.0    0.00   -0.29   -1.06   -2.19   -3.56   -5.01   -6.37   -7.49   -8.24   -8.56   -8.41   -7.81   -6.75   -5.15   -2.90    0.18    4.15    8.84   13.72
+   340.0    0.00   -0.30   -1.06   -2.20   -3.57   -5.02   -6.37   -7.48   -8.23   -8.55   -8.42   -7.83   -6.76   -5.16   -2.89    0.19    4.13    8.80   13.69
+   345.0    0.00   -0.30   -1.06   -2.20   -3.58   -5.01   -6.36   -7.46   -8.22   -8.55   -8.43   -7.85   -6.78   -5.16   -2.88    0.19    4.12    8.77   13.65
+   350.0    0.00   -0.30   -1.07   -2.21   -3.58   -5.01   -6.35   -7.45   -8.21   -8.55   -8.44   -7.87   -6.79   -5.16   -2.87    0.20    4.11    8.73   13.61
+   355.0    0.00   -0.30   -1.07   -2.21   -3.58   -5.00   -6.33   -7.43   -8.20   -8.56   -8.46   -7.89   -6.81   -5.16   -2.86    0.21    4.10    8.69   13.57
+   360.0    0.00   -0.29   -1.07   -2.21   -3.57   -4.99   -6.32   -7.42   -8.20   -8.57   -8.48   -7.91   -6.82   -5.16   -2.85    0.22    4.09    8.66   13.54
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.11     -0.08    120.36                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.13   -0.53   -1.13   -1.90   -2.75   -3.62   -4.40   -5.00   -5.32   -5.30   -4.91   -4.20   -3.18   -1.83   -0.02    2.50    6.02   10.59
+     0.0    0.00   -0.16   -0.57   -1.17   -1.90   -2.71   -3.54   -4.33   -4.98   -5.38   -5.43   -5.09   -4.39   -3.36   -2.03   -0.27    2.15    5.57   10.17
+     5.0    0.00   -0.17   -0.58   -1.18   -1.91   -2.72   -3.55   -4.34   -4.99   -5.40   -5.46   -5.13   -4.43   -3.40   -2.08   -0.34    2.07    5.48   10.08
+    10.0    0.00   -0.17   -0.58   -1.19   -1.92   -2.72   -3.55   -4.34   -5.00   -5.41   -5.48   -5.15   -4.45   -3.43   -2.11   -0.37    2.05    5.47   10.08
+    15.0    0.00   -0.17   -0.59   -1.19   -1.92   -2.73   -3.56   -4.35   -5.01   -5.42   -5.48   -5.15   -4.45   -3.44   -2.12   -0.37    2.08    5.53   10.15
+    20.0    0.00   -0.17   -0.59   -1.19   -1.92   -2.73   -3.57   -4.36   -5.01   -5.41   -5.47   -5.13   -4.44   -3.43   -2.11   -0.34    2.15    5.66   10.29
+    25.0    0.00   -0.17   -0.59   -1.19   -1.93   -2.74   -3.57   -4.36   -5.00   -5.39   -5.43   -5.09   -4.40   -3.41   -2.09   -0.29    2.25    5.82   10.46
+    30.0    0.00   -0.17   -0.59   -1.19   -1.93   -2.74   -3.58   -4.36   -4.99   -5.36   -5.38   -5.03   -4.35   -3.37   -2.06   -0.24    2.37    6.01   10.66
+    35.0    0.00   -0.17   -0.59   -1.19   -1.93   -2.75   -3.59   -4.37   -4.98   -5.32   -5.32   -4.96   -4.29   -3.33   -2.03   -0.20    2.47    6.19   10.85
+    40.0    0.00   -0.17   -0.59   -1.19   -1.93   -2.75   -3.60   -4.37   -4.97   -5.28   -5.26   -4.89   -4.22   -3.29   -2.01   -0.16    2.56    6.35   11.00
+    45.0    0.00   -0.17   -0.58   -1.19   -1.93   -2.76   -3.60   -4.37   -4.95   -5.25   -5.19   -4.81   -4.16   -3.25   -2.00   -0.15    2.62    6.46   11.10
+    50.0    0.00   -0.17   -0.58   -1.18   -1.93   -2.76   -3.61   -4.38   -4.95   -5.22   -5.14   -4.75   -4.10   -3.22   -1.99   -0.15    2.64    6.52   11.14
+    55.0    0.00   -0.17   -0.57   -1.18   -1.92   -2.76   -3.62   -4.39   -4.95   -5.20   -5.11   -4.70   -4.06   -3.20   -2.00   -0.17    2.62    6.52   11.10
+    60.0    0.00   -0.17   -0.57   -1.17   -1.92   -2.76   -3.63   -4.40   -4.96   -5.20   -5.09   -4.67   -4.03   -3.18   -2.00   -0.20    2.58    6.46   11.00
+    65.0    0.00   -0.16   -0.56   -1.16   -1.91   -2.76   -3.63   -4.41   -4.98   -5.21   -5.09   -4.66   -4.01   -3.17   -2.01   -0.23    2.51    6.35   10.85
+    70.0    0.00   -0.16   -0.56   -1.15   -1.90   -2.76   -3.64   -4.43   -5.00   -5.24   -5.12   -4.68   -4.01   -3.16   -2.01   -0.26    2.43    6.21   10.66
+    75.0    0.00   -0.16   -0.55   -1.15   -1.90   -2.76   -3.64   -4.45   -5.03   -5.28   -5.15   -4.70   -4.02   -3.15   -2.00   -0.28    2.35    6.06   10.47
+    80.0    0.00   -0.16   -0.55   -1.14   -1.89   -2.75   -3.65   -4.46   -5.05   -5.32   -5.20   -4.74   -4.04   -3.15   -1.98   -0.29    2.28    5.91   10.28
+    85.0    0.00   -0.15   -0.54   -1.13   -1.89   -2.75   -3.65   -4.47   -5.08   -5.36   -5.24   -4.78   -4.05   -3.13   -1.96   -0.28    2.23    5.78   10.14
+    90.0    0.00   -0.15   -0.54   -1.13   -1.88   -2.75   -3.65   -4.48   -5.10   -5.39   -5.29   -4.82   -4.07   -3.12   -1.92   -0.26    2.20    5.69   10.06
+    95.0    0.00   -0.15   -0.54   -1.13   -1.88   -2.75   -3.66   -4.49   -5.12   -5.42   -5.32   -4.85   -4.08   -3.10   -1.87   -0.21    2.20    5.64   10.04
+   100.0    0.00   -0.15   -0.53   -1.13   -1.88   -2.76   -3.66   -4.50   -5.13   -5.44   -5.35   -4.87   -4.08   -3.07   -1.82   -0.16    2.23    5.65   10.10
+   105.0    0.00   -0.14   -0.53   -1.13   -1.89   -2.76   -3.67   -4.50   -5.14   -5.45   -5.36   -4.88   -4.08   -3.04   -1.76   -0.09    2.30    5.71   10.23
+   110.0    0.00   -0.14   -0.53   -1.13   -1.90   -2.77   -3.68   -4.51   -5.14   -5.45   -5.36   -4.88   -4.07   -3.01   -1.70    0.00    2.39    5.81   10.42
+   115.0    0.00   -0.14   -0.53   -1.13   -1.90   -2.79   -3.69   -4.51   -5.13   -5.44   -5.35   -4.87   -4.05   -2.97   -1.64    0.09    2.50    5.96   10.63
+   120.0    0.00   -0.14   -0.52   -1.13   -1.92   -2.80   -3.70   -4.52   -5.13   -5.43   -5.34   -4.86   -4.04   -2.94   -1.58    0.18    2.63    6.12   10.86
+   125.0    0.00   -0.13   -0.52   -1.14   -1.93   -2.81   -3.72   -4.52   -5.13   -5.41   -5.33   -4.85   -4.03   -2.92   -1.53    0.27    2.77    6.30   11.06
+   130.0    0.00   -0.13   -0.52   -1.14   -1.94   -2.83   -3.73   -4.53   -5.12   -5.40   -5.31   -4.84   -4.02   -2.90   -1.49    0.36    2.90    6.45   11.22
+   135.0    0.00   -0.13   -0.52   -1.14   -1.94   -2.84   -3.74   -4.53   -5.12   -5.40   -5.31   -4.84   -4.02   -2.90   -1.46    0.43    3.00    6.57   11.30
+   140.0    0.00   -0.13   -0.52   -1.15   -1.95   -2.85   -3.75   -4.54   -5.11   -5.39   -5.31   -4.85   -4.04   -2.91   -1.44    0.47    3.08    6.65   11.31
+   145.0    0.00   -0.12   -0.52   -1.15   -1.95   -2.85   -3.75   -4.53   -5.11   -5.39   -5.31   -4.87   -4.06   -2.93   -1.45    0.50    3.12    6.65   11.22
+   150.0    0.00   -0.12   -0.52   -1.15   -1.95   -2.85   -3.74   -4.52   -5.10   -5.39   -5.33   -4.89   -4.10   -2.97   -1.47    0.48    3.10    6.59   11.05
+   155.0    0.00   -0.12   -0.51   -1.14   -1.95   -2.84   -3.72   -4.51   -5.09   -5.39   -5.34   -4.93   -4.14   -3.02   -1.52    0.43    3.03    6.46   10.81
+   160.0    0.00   -0.12   -0.51   -1.14   -1.94   -2.82   -3.70   -4.49   -5.07   -5.39   -5.36   -4.96   -4.20   -3.08   -1.59    0.35    2.90    6.27   10.51
+   165.0    0.00   -0.12   -0.51   -1.13   -1.93   -2.80   -3.68   -4.46   -5.05   -5.38   -5.38   -5.00   -4.25   -3.14   -1.68    0.23    2.73    6.03   10.19
+   170.0    0.00   -0.12   -0.51   -1.13   -1.91   -2.78   -3.65   -4.43   -5.03   -5.38   -5.39   -5.03   -4.30   -3.21   -1.77    0.09    2.53    5.77    9.88
+   175.0    0.00   -0.11   -0.50   -1.12   -1.90   -2.76   -3.62   -4.39   -5.00   -5.36   -5.40   -5.06   -4.34   -3.28   -1.88   -0.07    2.32    5.50    9.61
+   180.0    0.00   -0.11   -0.50   -1.12   -1.89   -2.74   -3.59   -4.36   -4.98   -5.35   -5.40   -5.08   -4.38   -3.34   -1.97   -0.22    2.11    5.26    9.40
+   185.0    0.00   -0.11   -0.50   -1.11   -1.88   -2.73   -3.57   -4.34   -4.96   -5.33   -5.39   -5.08   -4.40   -3.38   -2.05   -0.34    1.93    5.06    9.28
+   190.0    0.00   -0.11   -0.50   -1.11   -1.88   -2.72   -3.55   -4.32   -4.94   -5.32   -5.38   -5.08   -4.41   -3.40   -2.10   -0.44    1.80    4.94    9.25
+   195.0    0.00   -0.11   -0.50   -1.11   -1.88   -2.71   -3.55   -4.31   -4.92   -5.30   -5.37   -5.06   -4.40   -3.41   -2.12   -0.48    1.74    4.90    9.31
+   200.0    0.00   -0.11   -0.50   -1.11   -1.88   -2.72   -3.55   -4.31   -4.91   -5.29   -5.35   -5.04   -4.37   -3.38   -2.11   -0.48    1.75    4.94    9.46
+   205.0    0.00   -0.11   -0.50   -1.11   -1.89   -2.73   -3.56   -4.32   -4.91   -5.28   -5.32   -5.01   -4.33   -3.34   -2.05   -0.41    1.83    5.07    9.68
+   210.0    0.00   -0.11   -0.50   -1.12   -1.90   -2.74   -3.58   -4.33   -4.92   -5.26   -5.30   -4.97   -4.28   -3.27   -1.97   -0.30    1.98    5.25    9.93
+   215.0    0.00   -0.11   -0.50   -1.12   -1.91   -2.76   -3.60   -4.35   -4.92   -5.25   -5.27   -4.93   -4.23   -3.20   -1.86   -0.16    2.16    5.48   10.20
+   220.0    0.00   -0.11   -0.50   -1.13   -1.92   -2.78   -3.63   -4.36   -4.93   -5.24   -5.24   -4.89   -4.17   -3.12   -1.75    0.00    2.37    5.72   10.44
+   225.0    0.00   -0.11   -0.50   -1.13   -1.93   -2.80   -3.65   -4.38   -4.93   -5.23   -5.22   -4.85   -4.11   -3.04   -1.64    0.16    2.57    5.95   10.64
+   230.0    0.00   -0.11   -0.50   -1.14   -1.94   -2.82   -3.67   -4.39   -4.93   -5.21   -5.19   -4.81   -4.07   -2.98   -1.55    0.29    2.74    6.12   10.78
+   235.0    0.00   -0.11   -0.50   -1.14   -1.95   -2.83   -3.68   -4.40   -4.93   -5.20   -5.16   -4.78   -4.03   -2.94   -1.49    0.37    2.84    6.23   10.85
+   240.0    0.00   -0.11   -0.50   -1.14   -1.95   -2.84   -3.68   -4.40   -4.92   -5.18   -5.14   -4.75   -4.01   -2.92   -1.47    0.40    2.88    6.26   10.84
+   245.0    0.00   -0.11   -0.50   -1.14   -1.95   -2.83   -3.68   -4.40   -4.91   -5.17   -5.12   -4.74   -4.01   -2.93   -1.50    0.36    2.83    6.21   10.76
+   250.0    0.00   -0.11   -0.50   -1.14   -1.95   -2.83   -3.67   -4.39   -4.90   -5.16   -5.12   -4.74   -4.03   -2.97   -1.56    0.27    2.72    6.09   10.64
+   255.0    0.00   -0.11   -0.50   -1.13   -1.94   -2.81   -3.66   -4.38   -4.90   -5.16   -5.12   -4.76   -4.06   -3.03   -1.66    0.13    2.56    5.92   10.50
+   260.0    0.00   -0.11   -0.50   -1.13   -1.93   -2.80   -3.64   -4.37   -4.89   -5.17   -5.14   -4.78   -4.10   -3.10   -1.78   -0.03    2.37    5.73   10.36
+   265.0    0.00   -0.11   -0.50   -1.12   -1.91   -2.78   -3.62   -4.36   -4.90   -5.18   -5.16   -4.82   -4.15   -3.18   -1.90   -0.19    2.18    5.56   10.25
+   270.0    0.00   -0.11   -0.50   -1.11   -1.89   -2.76   -3.61   -4.35   -4.91   -5.21   -5.20   -4.86   -4.21   -3.26   -2.01   -0.34    2.02    5.42   10.19
+   275.0    0.00   -0.12   -0.49   -1.10   -1.88   -2.74   -3.59   -4.35   -4.93   -5.25   -5.25   -4.91   -4.26   -3.32   -2.09   -0.44    1.91    5.35   10.20
+   280.0    0.00   -0.12   -0.49   -1.10   -1.86   -2.72   -3.58   -4.36   -4.95   -5.29   -5.29   -4.96   -4.30   -3.36   -2.14   -0.49    1.88    5.37   10.29
+   285.0    0.00   -0.12   -0.49   -1.09   -1.85   -2.71   -3.58   -4.37   -4.98   -5.33   -5.34   -5.00   -4.33   -3.38   -2.15   -0.48    1.92    5.47   10.44
+   290.0    0.00   -0.12   -0.49   -1.09   -1.84   -2.70   -3.57   -4.38   -5.01   -5.37   -5.38   -5.03   -4.34   -3.37   -2.11   -0.41    2.05    5.65   10.65
+   295.0    0.00   -0.12   -0.50   -1.08   -1.83   -2.69   -3.57   -4.39   -5.03   -5.40   -5.41   -5.04   -4.34   -3.34   -2.04   -0.29    2.23    5.89   10.90
+   300.0    0.00   -0.13   -0.50   -1.08   -1.83   -2.68   -3.57   -4.39   -5.05   -5.42   -5.43   -5.05   -4.32   -3.29   -1.94   -0.13    2.46    6.16   11.15
+   305.0    0.00   -0.13   -0.50   -1.08   -1.83   -2.68   -3.57   -4.40   -5.05   -5.43   -5.43   -5.04   -4.29   -3.23   -1.83    0.04    2.69    6.44   11.39
+   310.0    0.00   -0.13   -0.51   -1.09   -1.83   -2.68   -3.57   -4.40   -5.05   -5.42   -5.42   -5.02   -4.25   -3.16   -1.73    0.20    2.91    6.68   11.57
+   315.0    0.00   -0.14   -0.51   -1.09   -1.83   -2.68   -3.56   -4.39   -5.04   -5.41   -5.40   -4.99   -4.21   -3.10   -1.64    0.33    3.08    6.86   11.69
+   320.0    0.00   -0.14   -0.52   -1.10   -1.84   -2.68   -3.56   -4.38   -5.03   -5.39   -5.37   -4.96   -4.18   -3.06   -1.58    0.42    3.18    6.95   11.73
+   325.0    0.00   -0.14   -0.53   -1.11   -1.85   -2.68   -3.56   -4.37   -5.01   -5.36   -5.35   -4.94   -4.16   -3.04   -1.56    0.44    3.21    6.96   11.67
+   330.0    0.00   -0.15   -0.53   -1.12   -1.85   -2.69   -3.55   -4.35   -4.99   -5.34   -5.33   -4.93   -4.15   -3.04   -1.57    0.42    3.15    6.87   11.53
+   335.0    0.00   -0.15   -0.54   -1.13   -1.86   -2.69   -3.55   -4.34   -4.97   -5.33   -5.32   -4.93   -4.16   -3.07   -1.61    0.34    3.03    6.70   11.33
+   340.0    0.00   -0.15   -0.55   -1.14   -1.87   -2.69   -3.54   -4.33   -4.96   -5.32   -5.32   -4.94   -4.19   -3.11   -1.69    0.23    2.86    6.47   11.08
+   345.0    0.00   -0.16   -0.55   -1.15   -1.88   -2.70   -3.54   -4.33   -4.96   -5.32   -5.34   -4.97   -4.23   -3.17   -1.77    0.09    2.67    6.21   10.81
+   350.0    0.00   -0.16   -0.56   -1.16   -1.89   -2.70   -3.54   -4.32   -4.96   -5.33   -5.36   -5.01   -4.28   -3.24   -1.87   -0.05    2.47    5.96   10.55
+   355.0    0.00   -0.16   -0.57   -1.17   -1.90   -2.71   -3.54   -4.32   -4.97   -5.35   -5.40   -5.05   -4.34   -3.30   -1.95   -0.17    2.29    5.74   10.33
+   360.0    0.00   -0.16   -0.57   -1.17   -1.90   -2.71   -3.54   -4.33   -4.98   -5.38   -5.43   -5.09   -4.39   -3.36   -2.03   -0.27    2.15    5.57   10.17
+   G02                                                      END OF FREQUENCY    
+   R01                                                      START OF FREQUENCY  
+      0.37     -0.34     90.97                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.27   -1.02   -2.20   -3.64   -5.18   -6.63   -7.85   -8.73   -9.16   -9.16   -8.68   -7.70   -6.13   -3.86   -0.74    3.32    8.16   13.40
+     0.0    0.00   -0.32   -1.13   -2.32   -3.75   -5.29   -6.79   -8.09   -9.07   -9.60   -9.62   -9.10   -8.06   -6.47   -4.25   -1.24    2.73    7.64   13.10
+     5.0    0.00   -0.32   -1.13   -2.33   -3.75   -5.28   -6.76   -8.06   -9.04   -9.58   -9.61   -9.09   -8.03   -6.43   -4.21   -1.21    2.74    7.68   13.23
+    10.0    0.00   -0.33   -1.16   -2.33   -3.75   -5.28   -6.74   -8.04   -9.02   -9.56   -9.58   -9.07   -8.00   -6.40   -4.17   -1.16    2.78    7.73   13.36
+    15.0    0.00   -0.34   -1.16   -2.34   -3.76   -5.27   -6.72   -8.00   -8.98   -9.52   -9.55   -9.04   -7.98   -6.37   -4.14   -1.13    2.83    7.83   13.49
+    20.0    0.00   -0.33   -1.17   -2.35   -3.76   -5.26   -6.70   -7.98   -8.95   -9.49   -9.54   -9.03   -7.96   -6.35   -4.11   -1.08    2.92    7.95   13.63
+    25.0    0.00   -0.34   -1.17   -2.36   -3.77   -5.26   -6.69   -7.96   -8.92   -9.46   -9.50   -9.00   -7.94   -6.32   -4.06   -1.00    3.03    8.10   13.79
+    30.0    0.00   -0.34   -1.18   -2.36   -3.78   -5.25   -6.68   -7.94   -8.90   -9.44   -9.48   -8.97   -7.91   -6.28   -4.00   -0.91    3.18    8.28   13.97
+    35.0    0.00   -0.34   -1.18   -2.36   -3.78   -5.26   -6.68   -7.93   -8.87   -9.40   -9.44   -8.94   -7.88   -6.24   -3.93   -0.79    3.34    8.47   14.17
+    40.0    0.00   -0.35   -1.17   -2.37   -3.78   -5.25   -6.68   -7.92   -8.85   -9.37   -9.40   -8.90   -7.83   -6.17   -3.84   -0.67    3.52    8.68   14.36
+    45.0    0.00   -0.35   -1.17   -2.37   -3.78   -5.25   -6.67   -7.91   -8.83   -9.33   -9.36   -8.83   -7.75   -6.09   -3.73   -0.53    3.70    8.88   14.56
+    50.0    0.00   -0.34   -1.16   -2.36   -3.77   -5.25   -6.66   -7.89   -8.80   -9.30   -9.30   -8.76   -7.67   -6.00   -3.62   -0.38    3.88    9.07   14.77
+    55.0    0.00   -0.34   -1.16   -2.35   -3.76   -5.24   -6.65   -7.88   -8.77   -9.25   -9.23   -8.68   -7.59   -5.90   -3.50   -0.24    4.02    9.24   14.96
+    60.0    0.00   -0.34   -1.15   -2.34   -3.74   -5.23   -6.64   -7.86   -8.75   -9.20   -9.17   -8.60   -7.50   -5.81   -3.41   -0.14    4.13    9.35   15.10
+    65.0    0.00   -0.33   -1.13   -2.32   -3.73   -5.20   -6.63   -7.83   -8.70   -9.15   -9.10   -8.53   -7.41   -5.72   -3.32   -0.07    4.20    9.42   15.21
+    70.0    0.00   -0.33   -1.12   -2.30   -3.70   -5.19   -6.60   -7.79   -8.66   -9.08   -9.03   -8.46   -7.35   -5.66   -3.27   -0.04    4.21    9.44   15.26
+    75.0    0.00   -0.32   -1.11   -2.29   -3.68   -5.15   -6.57   -7.76   -8.61   -9.03   -8.97   -8.40   -7.29   -5.62   -3.26   -0.05    4.17    9.37   15.26
+    80.0    0.00   -0.32   -1.09   -2.26   -3.65   -5.12   -6.54   -7.72   -8.58   -8.99   -8.92   -8.36   -7.27   -5.63   -3.29   -0.11    4.07    9.26   15.18
+    85.0    0.00   -0.30   -1.07   -2.23   -3.62   -5.10   -6.52   -7.69   -8.54   -8.95   -8.89   -8.33   -7.29   -5.65   -3.36   -0.21    3.94    9.10   15.04
+    90.0    0.00   -0.30   -1.07   -2.22   -3.60   -5.08   -6.48   -7.67   -8.52   -8.92   -8.87   -8.34   -7.32   -5.73   -3.46   -0.34    3.77    8.89   14.83
+    95.0    0.00   -0.30   -1.04   -2.19   -3.58   -5.05   -6.47   -7.66   -8.49   -8.91   -8.88   -8.37   -7.37   -5.82   -3.58   -0.49    3.59    8.67   14.57
+   100.0    0.00   -0.27   -1.03   -2.16   -3.55   -5.04   -6.45   -7.66   -8.50   -8.93   -8.90   -8.42   -7.45   -5.92   -3.71   -0.63    3.41    8.44   14.27
+   105.0    0.00   -0.27   -1.02   -2.14   -3.54   -5.03   -6.46   -7.67   -8.52   -8.95   -8.94   -8.48   -7.54   -6.04   -3.83   -0.78    3.24    8.21   13.96
+   110.0    0.00   -0.26   -1.01   -2.13   -3.52   -5.03   -6.47   -7.69   -8.56   -9.00   -9.00   -8.56   -7.63   -6.13   -3.94   -0.90    3.10    8.00   13.65
+   115.0    0.00   -0.26   -0.99   -2.11   -3.51   -5.03   -6.48   -7.72   -8.60   -9.05   -9.06   -8.63   -7.71   -6.23   -4.03   -1.00    2.98    7.83   13.36
+   120.0    0.00   -0.25   -0.98   -2.10   -3.51   -5.04   -6.51   -7.75   -8.64   -9.10   -9.12   -8.68   -7.78   -6.30   -4.10   -1.06    2.92    7.72   13.11
+   125.0    0.00   -0.24   -0.98   -2.10   -3.51   -5.05   -6.53   -7.79   -8.68   -9.14   -9.17   -8.74   -7.82   -6.34   -4.14   -1.08    2.88    7.63   12.91
+   130.0    0.00   -0.24   -0.97   -2.10   -3.51   -5.06   -6.55   -7.82   -8.71   -9.18   -9.20   -8.76   -7.86   -6.37   -4.16   -1.09    2.87    7.59   12.77
+   135.0    0.00   -0.23   -0.95   -2.09   -3.52   -5.08   -6.57   -7.84   -8.74   -9.20   -9.23   -8.78   -7.87   -6.38   -4.15   -1.07    2.89    7.58   12.69
+   140.0    0.00   -0.23   -0.95   -2.09   -3.53   -5.08   -6.58   -7.85   -8.75   -9.21   -9.23   -8.79   -7.87   -6.36   -4.13   -1.05    2.92    7.59   12.66
+   145.0    0.00   -0.23   -0.95   -2.10   -3.53   -5.10   -6.60   -7.86   -8.75   -9.21   -9.22   -8.78   -7.85   -6.34   -4.11   -1.03    2.94    7.63   12.66
+   150.0    0.00   -0.23   -0.95   -2.10   -3.54   -5.11   -6.61   -7.85   -8.74   -9.18   -9.20   -8.75   -7.83   -6.33   -4.09   -1.00    2.96    7.65   12.68
+   155.0    0.00   -0.22   -0.95   -2.11   -3.55   -5.11   -6.61   -7.85   -8.72   -9.16   -9.16   -8.73   -7.81   -6.31   -4.08   -1.00    2.96    7.67   12.73
+   160.0    0.00   -0.22   -0.96   -2.12   -3.56   -5.13   -6.61   -7.83   -8.69   -9.13   -9.15   -8.71   -7.79   -6.30   -4.08   -1.01    2.96    7.67   12.77
+   165.0    0.00   -0.22   -0.95   -2.13   -3.57   -5.13   -6.59   -7.81   -8.66   -9.11   -9.12   -8.70   -7.79   -6.29   -4.08   -1.04    2.92    7.66   12.81
+   170.0    0.00   -0.22   -0.96   -2.14   -3.58   -5.13   -6.58   -7.79   -8.64   -9.09   -9.11   -8.71   -7.81   -6.30   -4.11   -1.06    2.89    7.63   12.82
+   175.0    0.00   -0.22   -0.97   -2.14   -3.59   -5.14   -6.58   -7.77   -8.62   -9.07   -9.12   -8.71   -7.82   -6.34   -4.13   -1.09    2.84    7.59   12.83
+   180.0    0.00   -0.22   -0.96   -2.15   -3.60   -5.14   -6.58   -7.75   -8.60   -9.06   -9.12   -8.74   -7.85   -6.36   -4.15   -1.12    2.82    7.55   12.82
+   185.0    0.00   -0.22   -0.97   -2.16   -3.61   -5.16   -6.57   -7.75   -8.59   -9.07   -9.13   -8.75   -7.87   -6.38   -4.16   -1.12    2.80    7.54   12.80
+   190.0    0.00   -0.22   -0.98   -2.17   -3.62   -5.16   -6.57   -7.74   -8.58   -9.06   -9.15   -8.77   -7.89   -6.38   -4.15   -1.10    2.82    7.53   12.81
+   195.0    0.00   -0.23   -0.98   -2.18   -3.63   -5.17   -6.57   -7.73   -8.57   -9.07   -9.16   -8.80   -7.90   -6.38   -4.12   -1.06    2.86    7.58   12.84
+   200.0    0.00   -0.22   -0.99   -2.19   -3.64   -5.16   -6.56   -7.72   -8.56   -9.06   -9.16   -8.80   -7.90   -6.35   -4.07   -0.97    2.95    7.66   12.90
+   205.0    0.00   -0.22   -0.98   -2.19   -3.64   -5.16   -6.55   -7.71   -8.55   -9.05   -9.15   -8.79   -7.88   -6.31   -4.00   -0.87    3.08    7.78   13.00
+   210.0    0.00   -0.22   -0.98   -2.19   -3.64   -5.14   -6.54   -7.68   -8.51   -9.00   -9.11   -8.75   -7.84   -6.25   -3.89   -0.74    3.24    7.95   13.14
+   215.0    0.00   -0.22   -0.98   -2.19   -3.63   -5.13   -6.51   -7.66   -8.48   -8.96   -9.06   -8.70   -7.77   -6.16   -3.78   -0.56    3.43    8.15   13.33
+   220.0    0.00   -0.22   -0.99   -2.19   -3.63   -5.12   -6.49   -7.62   -8.44   -8.91   -9.01   -8.64   -7.70   -6.06   -3.64   -0.40    3.64    8.38   13.55
+   225.0    0.00   -0.22   -0.98   -2.18   -3.62   -5.10   -6.46   -7.57   -8.39   -8.85   -8.94   -8.56   -7.60   -5.96   -3.50   -0.23    3.85    8.61   13.78
+   230.0    0.00   -0.22   -0.98   -2.16   -3.60   -5.09   -6.43   -7.55   -8.35   -8.79   -8.86   -8.47   -7.49   -5.84   -3.37   -0.06    4.05    8.84   14.03
+   235.0    0.00   -0.22   -0.97   -2.15   -3.59   -5.07   -6.42   -7.52   -8.30   -8.73   -8.79   -8.37   -7.39   -5.72   -3.24    0.08    4.23    9.05   14.26
+   240.0    0.00   -0.22   -0.97   -2.15   -3.58   -5.05   -6.41   -7.50   -8.27   -8.69   -8.72   -8.28   -7.28   -5.60   -3.12    0.21    4.37    9.22   14.45
+   245.0    0.00   -0.22   -0.97   -2.14   -3.57   -5.05   -6.41   -7.50   -8.27   -8.66   -8.66   -8.20   -7.19   -5.50   -3.02    0.31    4.47    9.33   14.59
+   250.0    0.00   -0.23   -0.97   -2.13   -3.57   -5.05   -6.42   -7.53   -8.28   -8.65   -8.62   -8.13   -7.11   -5.41   -2.94    0.36    4.52    9.38   14.67
+   255.0    0.00   -0.23   -0.97   -2.13   -3.57   -5.06   -6.45   -7.56   -8.31   -8.66   -8.60   -8.09   -7.04   -5.35   -2.91    0.38    4.53    9.38   14.67
+   260.0    0.00   -0.23   -0.97   -2.14   -3.57   -5.09   -6.48   -7.61   -8.37   -8.71   -8.62   -8.06   -7.01   -5.33   -2.89    0.37    4.48    9.33   14.59
+   265.0    0.00   -0.23   -0.97   -2.13   -3.58   -5.11   -6.53   -7.68   -8.45   -8.76   -8.65   -8.08   -6.99   -5.32   -2.93    0.30    4.39    9.23   14.46
+   270.0    0.00   -0.23   -0.97   -2.14   -3.58   -5.14   -6.59   -7.76   -8.52   -8.85   -8.70   -8.10   -7.02   -5.35   -2.99    0.20    4.28    9.08   14.28
+   275.0    0.00   -0.23   -0.97   -2.14   -3.60   -5.17   -6.65   -7.84   -8.62   -8.92   -8.77   -8.15   -7.06   -5.43   -3.10    0.08    4.12    8.91   14.03
+   280.0    0.00   -0.24   -0.97   -2.14   -3.61   -5.20   -6.71   -7.92   -8.71   -9.01   -8.84   -8.21   -7.14   -5.53   -3.23   -0.09    3.96    8.72   13.76
+   285.0    0.00   -0.24   -0.98   -2.16   -3.65   -5.25   -6.76   -8.00   -8.79   -9.10   -8.93   -8.30   -7.24   -5.66   -3.39   -0.26    3.77    8.52   13.49
+   290.0    0.00   -0.24   -0.98   -2.17   -3.66   -5.28   -6.83   -8.07   -8.88   -9.18   -9.01   -8.40   -7.36   -5.81   -3.56   -0.45    3.59    8.35   13.22
+   295.0    0.00   -0.24   -0.99   -2.18   -3.68   -5.31   -6.87   -8.13   -8.95   -9.26   -9.09   -8.51   -7.50   -5.99   -3.75   -0.63    3.43    8.19   12.97
+   300.0    0.00   -0.25   -1.00   -2.19   -3.69   -5.34   -6.90   -8.18   -9.00   -9.32   -9.19   -8.61   -7.64   -6.15   -3.94   -0.81    3.28    8.04   12.76
+   305.0    0.00   -0.26   -1.00   -2.19   -3.71   -5.35   -6.93   -8.21   -9.05   -9.38   -9.26   -8.72   -7.77   -6.31   -4.12   -0.97    3.15    7.93   12.60
+   310.0    0.00   -0.26   -1.01   -2.21   -3.72   -5.37   -6.95   -8.23   -9.08   -9.44   -9.33   -8.82   -7.91   -6.46   -4.26   -1.11    3.04    7.84   12.47
+   315.0    0.00   -0.27   -1.02   -2.22   -3.72   -5.38   -6.95   -8.24   -9.10   -9.49   -9.39   -8.91   -8.01   -6.58   -4.38   -1.21    2.96    7.78   12.40
+   320.0    0.00   -0.27   -1.03   -2.24   -3.73   -5.37   -6.95   -8.24   -9.12   -9.53   -9.46   -8.99   -8.09   -6.67   -4.48   -1.29    2.89    7.73   12.39
+   325.0    0.00   -0.28   -1.05   -2.23   -3.73   -5.37   -6.93   -8.23   -9.13   -9.56   -9.51   -9.06   -8.17   -6.72   -4.52   -1.33    2.85    7.70   12.40
+   330.0    0.00   -0.28   -1.06   -2.25   -3.74   -5.36   -6.91   -8.23   -9.13   -9.58   -9.56   -9.11   -8.20   -6.74   -4.54   -1.35    2.81    7.68   12.45
+   335.0    0.00   -0.29   -1.08   -2.26   -3.74   -5.35   -6.90   -8.21   -9.13   -9.60   -9.59   -9.13   -8.21   -6.72   -4.52   -1.36    2.79    7.66   12.54
+   340.0    0.00   -0.30   -1.08   -2.27   -3.74   -5.35   -6.88   -8.19   -9.13   -9.61   -9.62   -9.15   -8.20   -6.70   -4.47   -1.34    2.76    7.64   12.63
+   345.0    0.00   -0.31   -1.09   -2.27   -3.75   -5.32   -6.86   -8.17   -9.13   -9.62   -9.63   -9.16   -8.17   -6.65   -4.42   -1.32    2.75    7.63   12.74
+   350.0    0.00   -0.31   -1.11   -2.30   -3.75   -5.32   -6.84   -8.15   -9.11   -9.62   -9.63   -9.15   -8.13   -6.58   -4.36   -1.29    2.74    7.62   12.87
+   355.0    0.00   -0.32   -1.12   -2.31   -3.75   -5.30   -6.81   -8.12   -9.09   -9.62   -9.63   -9.12   -8.10   -6.52   -4.31   -1.26    2.74    7.63   12.99
+   360.0    0.00   -0.32   -1.13   -2.32   -3.75   -5.29   -6.79   -8.09   -9.07   -9.60   -9.62   -9.10   -8.06   -6.47   -4.25   -1.24    2.73    7.64   13.10
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+     -0.11     -0.08    120.36                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.16   -0.63   -1.33   -2.21   -3.16   -4.14   -5.03   -5.77   -6.25   -6.40   -6.15   -5.56   -4.62   -3.34   -1.65    0.65    3.85    8.01
+     0.0    0.00   -0.18   -0.62   -1.26   -2.05   -2.98   -3.99   -5.01   -5.91   -6.54   -6.73   -6.44   -5.73   -4.68   -3.41   -1.82    0.34    3.49    7.94
+     5.0    0.00   -0.19   -0.64   -1.28   -2.07   -2.99   -3.99   -5.01   -5.90   -6.53   -6.73   -6.45   -5.75   -4.72   -3.49   -1.94    0.20    3.35    7.82
+    10.0    0.00   -0.20   -0.65   -1.31   -2.10   -2.99   -3.98   -4.99   -5.88   -6.51   -6.72   -6.45   -5.75   -4.76   -3.55   -2.03    0.12    3.29    7.79
+    15.0    0.00   -0.21   -0.68   -1.33   -2.11   -3.01   -3.98   -4.98   -5.86   -6.49   -6.69   -6.43   -5.76   -4.80   -3.61   -2.08    0.09    3.30    7.83
+    20.0    0.00   -0.21   -0.69   -1.34   -2.13   -3.02   -3.98   -4.96   -5.83   -6.45   -6.67   -6.42   -5.78   -4.83   -3.63   -2.08    0.13    3.39    7.93
+    25.0    0.00   -0.22   -0.72   -1.37   -2.16   -3.03   -3.97   -4.93   -5.79   -6.41   -6.63   -6.40   -5.77   -4.85   -3.65   -2.06    0.20    3.51    8.05
+    30.0    0.00   -0.23   -0.73   -1.40   -2.18   -3.05   -3.98   -4.92   -5.76   -6.37   -6.59   -6.37   -5.76   -4.84   -3.64   -2.02    0.30    3.66    8.18
+    35.0    0.00   -0.24   -0.75   -1.42   -2.21   -3.07   -3.99   -4.91   -5.74   -6.33   -6.55   -6.34   -5.75   -4.82   -3.61   -1.97    0.40    3.81    8.30
+    40.0    0.00   -0.24   -0.77   -1.45   -2.23   -3.09   -4.00   -4.91   -5.72   -6.29   -6.52   -6.31   -5.71   -4.79   -3.56   -1.89    0.51    3.94    8.38
+    45.0    0.00   -0.25   -0.77   -1.47   -2.26   -3.11   -4.00   -4.91   -5.70   -6.27   -6.47   -6.26   -5.66   -4.74   -3.52   -1.83    0.60    4.02    8.42
+    50.0    0.00   -0.26   -0.79   -1.48   -2.28   -3.14   -4.03   -4.92   -5.71   -6.25   -6.44   -6.21   -5.61   -4.68   -3.45   -1.78    0.65    4.06    8.43
+    55.0    0.00   -0.27   -0.79   -1.50   -2.30   -3.16   -4.05   -4.94   -5.71   -6.24   -6.41   -6.17   -5.55   -4.63   -3.41   -1.75    0.65    4.06    8.39
+    60.0    0.00   -0.27   -0.80   -1.52   -2.32   -3.18   -4.09   -4.96   -5.73   -6.24   -6.39   -6.12   -5.49   -4.57   -3.36   -1.73    0.64    4.02    8.34
+    65.0    0.00   -0.26   -0.80   -1.51   -2.33   -3.20   -4.10   -4.98   -5.75   -6.24   -6.37   -6.08   -5.44   -4.52   -3.34   -1.74    0.58    3.94    8.27
+    70.0    0.00   -0.26   -0.80   -1.52   -2.33   -3.22   -4.13   -5.01   -5.77   -6.26   -6.36   -6.06   -5.39   -4.48   -3.33   -1.77    0.51    3.84    8.19
+    75.0    0.00   -0.26   -0.80   -1.53   -2.35   -3.23   -4.15   -5.04   -5.79   -6.27   -6.35   -6.02   -5.36   -4.45   -3.33   -1.82    0.42    3.74    8.14
+    80.0    0.00   -0.26   -0.80   -1.52   -2.34   -3.24   -4.17   -5.06   -5.80   -6.28   -6.36   -6.02   -5.35   -4.46   -3.35   -1.87    0.34    3.65    8.08
+    85.0    0.00   -0.25   -0.78   -1.50   -2.34   -3.24   -4.17   -5.07   -5.82   -6.29   -6.35   -6.02   -5.35   -4.46   -3.38   -1.92    0.27    3.57    8.05
+    90.0    0.00   -0.25   -0.78   -1.49   -2.31   -3.23   -4.17   -5.08   -5.83   -6.29   -6.36   -6.03   -5.36   -4.48   -3.41   -1.96    0.23    3.53    8.04
+    95.0    0.00   -0.25   -0.77   -1.48   -2.30   -3.21   -4.17   -5.08   -5.83   -6.30   -6.37   -6.03   -5.38   -4.51   -3.42   -1.96    0.22    3.52    8.05
+   100.0    0.00   -0.25   -0.75   -1.45   -2.28   -3.20   -4.15   -5.07   -5.84   -6.31   -6.38   -6.05   -5.40   -4.52   -3.42   -1.96    0.25    3.55    8.07
+   105.0    0.00   -0.23   -0.74   -1.43   -2.27   -3.18   -4.15   -5.07   -5.84   -6.31   -6.40   -6.07   -5.42   -4.52   -3.40   -1.90    0.33    3.62    8.10
+   110.0    0.00   -0.23   -0.72   -1.41   -2.24   -3.16   -4.14   -5.06   -5.84   -6.32   -6.41   -6.09   -5.43   -4.51   -3.35   -1.80    0.43    3.71    8.15
+   115.0    0.00   -0.22   -0.71   -1.39   -2.21   -3.15   -4.12   -5.05   -5.84   -6.33   -6.42   -6.11   -5.43   -4.47   -3.27   -1.68    0.57    3.83    8.19
+   120.0    0.00   -0.21   -0.68   -1.36   -2.20   -3.13   -4.11   -5.06   -5.84   -6.34   -6.44   -6.12   -5.42   -4.43   -3.18   -1.54    0.73    3.95    8.24
+   125.0    0.00   -0.20   -0.67   -1.35   -2.18   -3.11   -4.11   -5.05   -5.85   -6.34   -6.45   -6.12   -5.41   -4.38   -3.07   -1.39    0.90    4.08    8.28
+   130.0    0.00   -0.19   -0.65   -1.32   -2.16   -3.11   -4.11   -5.06   -5.85   -6.35   -6.45   -6.11   -5.38   -4.31   -2.97   -1.24    1.05    4.19    8.31
+   135.0    0.00   -0.19   -0.64   -1.30   -2.15   -3.10   -4.11   -5.06   -5.86   -6.36   -6.46   -6.11   -5.36   -4.27   -2.89   -1.13    1.16    4.27    8.31
+   140.0    0.00   -0.18   -0.62   -1.30   -2.14   -3.10   -4.11   -5.07   -5.85   -6.35   -6.46   -6.11   -5.35   -4.24   -2.82   -1.07    1.24    4.32    8.30
+   145.0    0.00   -0.16   -0.62   -1.29   -2.13   -3.10   -4.12   -5.07   -5.85   -6.35   -6.44   -6.11   -5.35   -4.24   -2.83   -1.04    1.26    4.30    8.24
+   150.0    0.00   -0.16   -0.60   -1.28   -2.13   -3.11   -4.12   -5.06   -5.84   -6.33   -6.44   -6.11   -5.37   -4.28   -2.85   -1.09    1.21    4.23    8.14
+   155.0    0.00   -0.15   -0.58   -1.27   -2.14   -3.11   -4.12   -5.06   -5.83   -6.32   -6.42   -6.13   -5.41   -4.35   -2.95   -1.19    1.10    4.11    7.99
+   160.0    0.00   -0.14   -0.58   -1.27   -2.14   -3.11   -4.12   -5.06   -5.80   -6.29   -6.41   -6.14   -5.48   -4.45   -3.08   -1.34    0.93    3.94    7.79
+   165.0    0.00   -0.14   -0.58   -1.26   -2.15   -3.12   -4.12   -5.03   -5.77   -6.25   -6.40   -6.16   -5.55   -4.57   -3.26   -1.53    0.73    3.72    7.54
+   170.0    0.00   -0.13   -0.57   -1.27   -2.15   -3.13   -4.12   -5.02   -5.74   -6.22   -6.38   -6.19   -5.63   -4.71   -3.43   -1.74    0.51    3.49    7.27
+   175.0    0.00   -0.12   -0.56   -1.27   -2.16   -3.15   -4.12   -4.99   -5.70   -6.18   -6.36   -6.22   -5.70   -4.85   -3.62   -1.95    0.30    3.25    7.00
+   180.0    0.00   -0.12   -0.56   -1.27   -2.18   -3.16   -4.12   -4.98   -5.67   -6.14   -6.34   -6.24   -5.78   -4.97   -3.77   -2.13    0.10    3.04    6.74
+   185.0    0.00   -0.12   -0.56   -1.27   -2.18   -3.17   -4.12   -4.97   -5.64   -6.10   -6.32   -6.24   -5.82   -5.04   -3.88   -2.25   -0.05    2.87    6.55
+   190.0    0.00   -0.11   -0.56   -1.28   -2.20   -3.18   -4.12   -4.95   -5.61   -6.07   -6.29   -6.24   -5.85   -5.09   -3.93   -2.32   -0.13    2.77    6.42
+   195.0    0.00   -0.11   -0.56   -1.29   -2.21   -3.18   -4.12   -4.94   -5.58   -6.04   -6.28   -6.22   -5.84   -5.09   -3.92   -2.31   -0.12    2.76    6.40
+   200.0    0.00   -0.10   -0.56   -1.29   -2.22   -3.20   -4.12   -4.93   -5.57   -6.03   -6.25   -6.20   -5.81   -5.04   -3.87   -2.24   -0.05    2.82    6.48
+   205.0    0.00   -0.10   -0.56   -1.29   -2.23   -3.21   -4.13   -4.92   -5.55   -6.01   -6.22   -6.16   -5.74   -4.95   -3.74   -2.10    0.09    2.98    6.66
+   210.0    0.00   -0.10   -0.55   -1.30   -2.24   -3.21   -4.13   -4.92   -5.55   -5.99   -6.21   -6.11   -5.67   -4.83   -3.59   -1.90    0.30    3.18    6.93
+   215.0    0.00   -0.10   -0.55   -1.30   -2.24   -3.22   -4.13   -4.92   -5.55   -5.98   -6.18   -6.07   -5.59   -4.71   -3.41   -1.71    0.52    3.43    7.25
+   220.0    0.00   -0.10   -0.55   -1.31   -2.24   -3.22   -4.15   -4.92   -5.55   -5.98   -6.16   -6.03   -5.51   -4.58   -3.24   -1.50    0.74    3.68    7.58
+   225.0    0.00   -0.10   -0.55   -1.31   -2.25   -3.23   -4.14   -4.92   -5.55   -5.98   -6.15   -6.00   -5.43   -4.45   -3.08   -1.31    0.94    3.91    7.89
+   230.0    0.00   -0.10   -0.55   -1.32   -2.25   -3.23   -4.16   -4.93   -5.56   -5.98   -6.15   -5.97   -5.38   -4.36   -2.96   -1.17    1.08    4.07    8.15
+   235.0    0.00   -0.10   -0.55   -1.32   -2.26   -3.24   -4.16   -4.94   -5.57   -5.99   -6.15   -5.95   -5.33   -4.31   -2.89   -1.11    1.15    4.16    8.30
+   240.0    0.00   -0.09   -0.55   -1.32   -2.26   -3.25   -4.17   -4.96   -5.58   -6.00   -6.15   -5.93   -5.32   -4.28   -2.87   -1.10    1.14    4.16    8.34
+   245.0    0.00   -0.09   -0.55   -1.32   -2.27   -3.26   -4.19   -4.98   -5.60   -6.02   -6.15   -5.94   -5.32   -4.29   -2.91   -1.17    1.04    4.05    8.26
+   250.0    0.00   -0.09   -0.55   -1.32   -2.27   -3.27   -4.20   -5.00   -5.62   -6.04   -6.17   -5.95   -5.35   -4.34   -2.98   -1.29    0.89    3.88    8.08
+   255.0    0.00   -0.09   -0.55   -1.32   -2.28   -3.28   -4.23   -5.04   -5.66   -6.06   -6.18   -5.97   -5.38   -4.41   -3.10   -1.45    0.70    3.65    7.84
+   260.0    0.00   -0.09   -0.55   -1.33   -2.29   -3.30   -4.25   -5.06   -5.68   -6.08   -6.20   -5.98   -5.41   -4.48   -3.23   -1.63    0.49    3.41    7.56
+   265.0    0.00   -0.09   -0.55   -1.33   -2.29   -3.32   -4.28   -5.10   -5.72   -6.09   -6.21   -6.00   -5.44   -4.56   -3.35   -1.79    0.29    3.20    7.29
+   270.0    0.00   -0.09   -0.55   -1.32   -2.29   -3.33   -4.30   -5.12   -5.74   -6.12   -6.22   -6.01   -5.48   -4.63   -3.47   -1.94    0.14    3.04    7.09
+   275.0    0.00   -0.10   -0.54   -1.31   -2.29   -3.34   -4.32   -5.15   -5.78   -6.15   -6.24   -6.02   -5.50   -4.68   -3.55   -2.03    0.06    2.98    6.99
+   280.0    0.00   -0.10   -0.54   -1.32   -2.29   -3.34   -4.34   -5.18   -5.80   -6.17   -6.24   -6.03   -5.52   -4.71   -3.60   -2.07    0.06    3.03    7.02
+   285.0    0.00   -0.10   -0.54   -1.31   -2.28   -3.34   -4.35   -5.20   -5.83   -6.18   -6.25   -6.04   -5.53   -4.73   -3.61   -2.05    0.14    3.19    7.18
+   290.0    0.00   -0.10   -0.54   -1.30   -2.27   -3.33   -4.34   -5.21   -5.84   -6.20   -6.27   -6.05   -5.54   -4.73   -3.59   -1.97    0.31    3.44    7.46
+   295.0    0.00   -0.10   -0.55   -1.29   -2.25   -3.32   -4.34   -5.21   -5.85   -6.22   -6.29   -6.06   -5.55   -4.72   -3.54   -1.85    0.53    3.77    7.84
+   300.0    0.00   -0.11   -0.54   -1.28   -2.23   -3.28   -4.31   -5.19   -5.85   -6.23   -6.31   -6.08   -5.55   -4.70   -3.46   -1.69    0.80    4.14    8.26
+   305.0    0.00   -0.11   -0.54   -1.26   -2.21   -3.25   -4.28   -5.18   -5.84   -6.25   -6.34   -6.11   -5.56   -4.68   -3.38   -1.53    1.06    4.51    8.69
+   310.0    0.00   -0.12   -0.55   -1.26   -2.18   -3.22   -4.25   -5.16   -5.84   -6.27   -6.37   -6.14   -5.57   -4.64   -3.29   -1.37    1.31    4.83    9.06
+   315.0    0.00   -0.13   -0.54   -1.24   -2.15   -3.18   -4.20   -5.13   -5.84   -6.29   -6.41   -6.17   -5.58   -4.62   -3.21   -1.23    1.50    5.07    9.36
+   320.0    0.00   -0.13   -0.55   -1.24   -2.13   -3.14   -4.16   -5.10   -5.85   -6.32   -6.44   -6.21   -5.60   -4.59   -3.15   -1.13    1.61    5.21    9.54
+   325.0    0.00   -0.13   -0.55   -1.23   -2.11   -3.09   -4.13   -5.08   -5.85   -6.35   -6.50   -6.26   -5.62   -4.58   -3.11   -1.10    1.65    5.23    9.57
+   330.0    0.00   -0.14   -0.55   -1.22   -2.08   -3.07   -4.09   -5.05   -5.86   -6.39   -6.54   -6.30   -5.63   -4.57   -3.10   -1.10    1.58    5.13    9.48
+   335.0    0.00   -0.14   -0.56   -1.23   -2.07   -3.04   -4.07   -5.04   -5.87   -6.43   -6.59   -6.34   -5.65   -4.58   -3.10   -1.16    1.45    4.93    9.29
+   340.0    0.00   -0.15   -0.57   -1.23   -2.05   -3.01   -4.03   -5.03   -5.88   -6.45   -6.64   -6.37   -5.67   -4.58   -3.15   -1.26    1.25    4.64    9.02
+   345.0    0.00   -0.16   -0.58   -1.23   -2.05   -3.00   -4.02   -5.03   -5.90   -6.48   -6.68   -6.40   -5.68   -4.60   -3.19   -1.39    1.02    4.33    8.71
+   350.0    0.00   -0.17   -0.59   -1.24   -2.04   -2.99   -4.01   -5.02   -5.91   -6.51   -6.70   -6.42   -5.69   -4.62   -3.26   -1.54    0.78    4.01    8.41
+   355.0    0.00   -0.17   -0.61   -1.25   -2.05   -2.98   -4.00   -5.01   -5.92   -6.53   -6.72   -6.43   -5.72   -4.65   -3.33   -1.69    0.55    3.73    8.14
+   360.0    0.00   -0.18   -0.62   -1.26   -2.05   -2.98   -3.99   -5.01   -5.91   -6.54   -6.73   -6.44   -5.73   -4.68   -3.41   -1.82    0.34    3.49    7.94
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH700936D_M    SCIS                                        TYPE / SERIAL NO    
+FIELD               NGS                      1    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      1.18      0.43     88.05                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.23   -1.00   -2.33   -3.92   -5.52   -7.16   -8.49   -9.27   -9.61   -9.36   -8.59   -7.23   -5.35   -2.88    0.19    3.87
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.28     -0.39    117.65                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.33   -0.81   -1.48   -2.19   -2.88   -3.69   -4.47   -5.21   -5.71   -5.75   -5.46   -4.63   -3.23   -1.53    0.79    3.85
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH700936D_M    SNOW                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               5    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     4                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+Number of Calibrated Antennas GPS:      005                 COMMENT             
+Number of Individual Calibrations GPS:  015                 COMMENT             
+Number of Calibrated Antennas GLO:      002                 COMMENT             
+Number of Individual Calibrations GLO:  004                 COMMENT             
+# GLONASS PCV                                               COMMENT             
+#  derived from Delta PCV per 25.0 MHz                      COMMENT             
+#  for frequency channel number k=0                         COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.26     -0.23     90.86                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.23   -0.89   -1.93   -3.25   -4.72   -6.21   -7.56   -8.59   -9.16   -9.12   -8.39   -6.98   -4.90   -2.21    1.05    4.90    9.32   14.17
+     0.0    0.00   -0.24   -0.92   -1.99   -3.36   -4.90   -6.43   -7.78   -8.77   -9.24   -9.11   -8.34   -6.94   -4.95   -2.37    0.84    4.71    9.19   14.05
+     5.0    0.00   -0.24   -0.91   -1.98   -3.34   -4.87   -6.41   -7.78   -8.79   -9.28   -9.16   -8.38   -6.97   -4.96   -2.37    0.82    4.65    9.11   14.00
+    10.0    0.00   -0.24   -0.91   -1.97   -3.33   -4.85   -6.39   -7.77   -8.80   -9.32   -9.21   -8.44   -7.01   -4.98   -2.38    0.80    4.60    9.03   13.97
+    15.0    0.00   -0.24   -0.91   -1.96   -3.31   -4.83   -6.37   -7.76   -8.82   -9.36   -9.27   -8.50   -7.06   -5.01   -2.39    0.78    4.56    8.98   13.95
+    20.0    0.00   -0.23   -0.90   -1.95   -3.29   -4.80   -6.35   -7.75   -8.83   -9.40   -9.33   -8.57   -7.12   -5.05   -2.41    0.77    4.54    8.96   13.96
+    25.0    0.00   -0.23   -0.90   -1.94   -3.27   -4.78   -6.32   -7.73   -8.83   -9.43   -9.38   -8.63   -7.18   -5.09   -2.43    0.77    4.55    8.98   14.01
+    30.0    0.00   -0.23   -0.90   -1.94   -3.26   -4.76   -6.30   -7.72   -8.83   -9.45   -9.43   -8.69   -7.23   -5.12   -2.44    0.78    4.59    9.03   14.08
+    35.0    0.00   -0.23   -0.90   -1.93   -3.24   -4.74   -6.27   -7.69   -8.82   -9.45   -9.45   -8.73   -7.27   -5.15   -2.45    0.81    4.65    9.12   14.19
+    40.0    0.00   -0.23   -0.90   -1.92   -3.23   -4.72   -6.25   -7.67   -8.80   -9.45   -9.46   -8.75   -7.30   -5.17   -2.44    0.86    4.74    9.25   14.32
+    45.0    0.00   -0.23   -0.89   -1.92   -3.23   -4.70   -6.22   -7.64   -8.77   -9.42   -9.45   -8.75   -7.30   -5.17   -2.41    0.92    4.85    9.39   14.47
+    50.0    0.00   -0.23   -0.89   -1.92   -3.22   -4.69   -6.20   -7.61   -8.73   -9.39   -9.42   -8.72   -7.28   -5.14   -2.37    0.99    4.96    9.54   14.63
+    55.0    0.00   -0.23   -0.89   -1.92   -3.21   -4.68   -6.18   -7.58   -8.69   -9.34   -9.37   -8.68   -7.24   -5.10   -2.31    1.08    5.08    9.70   14.78
+    60.0    0.00   -0.23   -0.89   -1.92   -3.21   -4.67   -6.16   -7.55   -8.65   -9.29   -9.31   -8.61   -7.18   -5.03   -2.24    1.16    5.19    9.83   14.92
+    65.0    0.00   -0.23   -0.89   -1.91   -3.20   -4.66   -6.14   -7.52   -8.60   -9.23   -9.24   -8.54   -7.10   -4.96   -2.16    1.25    5.29    9.95   15.05
+    70.0    0.00   -0.23   -0.89   -1.91   -3.20   -4.65   -6.12   -7.49   -8.56   -9.17   -9.17   -8.46   -7.02   -4.87   -2.08    1.33    5.37   10.04   15.14
+    75.0    0.00   -0.23   -0.89   -1.91   -3.20   -4.64   -6.11   -7.46   -8.52   -9.12   -9.11   -8.39   -6.94   -4.79   -2.01    1.39    5.43   10.09   15.20
+    80.0    0.00   -0.23   -0.89   -1.91   -3.19   -4.63   -6.09   -7.43   -8.49   -9.08   -9.06   -8.33   -6.87   -4.72   -1.94    1.44    5.46   10.11   15.23
+    85.0    0.00   -0.23   -0.89   -1.91   -3.19   -4.62   -6.07   -7.41   -8.46   -9.05   -9.02   -8.28   -6.82   -4.66   -1.89    1.47    5.46   10.09   15.21
+    90.0    0.00   -0.23   -0.89   -1.91   -3.18   -4.61   -6.06   -7.39   -8.44   -9.02   -9.00   -8.26   -6.78   -4.63   -1.86    1.49    5.45   10.05   15.16
+    95.0    0.00   -0.23   -0.89   -1.90   -3.17   -4.59   -6.04   -7.37   -8.42   -9.01   -8.99   -8.25   -6.77   -4.62   -1.86    1.48    5.41    9.98   15.08
+   100.0    0.00   -0.23   -0.89   -1.90   -3.17   -4.59   -6.03   -7.36   -8.41   -9.01   -8.99   -8.26   -6.78   -4.63   -1.87    1.45    5.36    9.90   14.96
+   105.0    0.00   -0.23   -0.89   -1.90   -3.16   -4.58   -6.02   -7.35   -8.41   -9.01   -9.00   -8.27   -6.80   -4.65   -1.89    1.41    5.30    9.80   14.84
+   110.0    0.00   -0.23   -0.88   -1.89   -3.16   -4.57   -6.02   -7.35   -8.41   -9.02   -9.02   -8.30   -6.84   -4.69   -1.94    1.36    5.23    9.70   14.70
+   115.0    0.00   -0.23   -0.88   -1.89   -3.16   -4.57   -6.01   -7.35   -8.42   -9.03   -9.04   -8.32   -6.87   -4.73   -1.99    1.30    5.16    9.60   14.57
+   120.0    0.00   -0.23   -0.88   -1.89   -3.15   -4.57   -6.02   -7.36   -8.42   -9.04   -9.05   -8.34   -6.90   -4.77   -2.04    1.24    5.09    9.52   14.44
+   125.0    0.00   -0.23   -0.88   -1.89   -3.15   -4.58   -6.03   -7.37   -8.43   -9.05   -9.05   -8.35   -6.92   -4.81   -2.09    1.18    5.02    9.44   14.34
+   130.0    0.00   -0.22   -0.88   -1.88   -3.16   -4.58   -6.04   -7.38   -8.44   -9.05   -9.05   -8.36   -6.94   -4.84   -2.14    1.13    4.96    9.38   14.26
+   135.0    0.00   -0.22   -0.87   -1.88   -3.16   -4.59   -6.06   -7.40   -8.45   -9.05   -9.05   -8.35   -6.95   -4.87   -2.19    1.07    4.91    9.33   14.20
+   140.0    0.00   -0.22   -0.87   -1.88   -3.17   -4.61   -6.07   -7.42   -8.46   -9.05   -9.04   -8.34   -6.95   -4.89   -2.22    1.03    4.87    9.30   14.16
+   145.0    0.00   -0.22   -0.87   -1.88   -3.17   -4.62   -6.09   -7.43   -8.48   -9.05   -9.03   -8.33   -6.95   -4.91   -2.26    0.99    4.85    9.28   14.14
+   150.0    0.00   -0.22   -0.87   -1.89   -3.18   -4.63   -6.11   -7.45   -8.49   -9.06   -9.03   -8.33   -6.95   -4.93   -2.29    0.96    4.82    9.27   14.12
+   155.0    0.00   -0.22   -0.87   -1.89   -3.18   -4.64   -6.13   -7.47   -8.50   -9.07   -9.03   -8.34   -6.97   -4.95   -2.31    0.94    4.80    9.25   14.09
+   160.0    0.00   -0.22   -0.87   -1.89   -3.19   -4.65   -6.14   -7.49   -8.52   -9.08   -9.05   -8.35   -6.99   -4.98   -2.34    0.92    4.79    9.23   14.05
+   165.0    0.00   -0.22   -0.87   -1.89   -3.19   -4.66   -6.15   -7.50   -8.54   -9.10   -9.07   -8.39   -7.02   -5.01   -2.36    0.90    4.77    9.19   13.99
+   170.0    0.00   -0.22   -0.87   -1.89   -3.20   -4.67   -6.17   -7.52   -8.56   -9.13   -9.11   -8.43   -7.07   -5.05   -2.39    0.88    4.74    9.14   13.90
+   175.0    0.00   -0.22   -0.87   -1.89   -3.20   -4.68   -6.17   -7.53   -8.58   -9.16   -9.15   -8.48   -7.12   -5.09   -2.42    0.86    4.71    9.07   13.79
+   180.0    0.00   -0.22   -0.87   -1.90   -3.21   -4.68   -6.18   -7.54   -8.60   -9.20   -9.20   -8.54   -7.17   -5.13   -2.45    0.83    4.66    8.99   13.66
+   185.0    0.00   -0.22   -0.87   -1.90   -3.21   -4.69   -6.19   -7.55   -8.62   -9.23   -9.25   -8.59   -7.22   -5.17   -2.47    0.80    4.61    8.89   13.53
+   190.0    0.00   -0.22   -0.87   -1.90   -3.21   -4.69   -6.19   -7.56   -8.64   -9.26   -9.29   -8.63   -7.26   -5.20   -2.49    0.77    4.55    8.79   13.40
+   195.0    0.00   -0.22   -0.88   -1.91   -3.22   -4.70   -6.20   -7.57   -8.65   -9.28   -9.31   -8.66   -7.29   -5.21   -2.51    0.74    4.50    8.71   13.31
+   200.0    0.00   -0.22   -0.88   -1.91   -3.23   -4.70   -6.21   -7.58   -8.66   -9.29   -9.32   -8.67   -7.29   -5.22   -2.52    0.72    4.45    8.64   13.26
+   205.0    0.00   -0.22   -0.88   -1.91   -3.23   -4.71   -6.21   -7.58   -8.66   -9.28   -9.32   -8.66   -7.28   -5.21   -2.52    0.70    4.42    8.61   13.26
+   210.0    0.00   -0.22   -0.88   -1.92   -3.24   -4.72   -6.21   -7.58   -8.65   -9.27   -9.30   -8.64   -7.26   -5.19   -2.51    0.70    4.41    8.62   13.32
+   215.0    0.00   -0.22   -0.88   -1.92   -3.24   -4.72   -6.22   -7.57   -8.64   -9.25   -9.26   -8.60   -7.22   -5.16   -2.50    0.71    4.43    8.69   13.45
+   220.0    0.00   -0.22   -0.89   -1.93   -3.25   -4.73   -6.22   -7.57   -8.62   -9.21   -9.22   -8.55   -7.17   -5.12   -2.47    0.74    4.49    8.80   13.63
+   225.0    0.00   -0.22   -0.89   -1.93   -3.25   -4.73   -6.21   -7.55   -8.59   -9.17   -9.17   -8.49   -7.12   -5.08   -2.43    0.79    4.58    8.95   13.85
+   230.0    0.00   -0.22   -0.89   -1.93   -3.26   -4.73   -6.21   -7.53   -8.56   -9.13   -9.12   -8.44   -7.07   -5.04   -2.38    0.87    4.70    9.14   14.09
+   235.0    0.00   -0.22   -0.89   -1.94   -3.26   -4.72   -6.19   -7.51   -8.52   -9.08   -9.07   -8.39   -7.03   -4.99   -2.32    0.96    4.85    9.34   14.32
+   240.0    0.00   -0.23   -0.89   -1.94   -3.26   -4.72   -6.18   -7.49   -8.49   -9.04   -9.02   -8.35   -6.98   -4.94   -2.26    1.06    5.00    9.54   14.53
+   245.0    0.00   -0.23   -0.89   -1.94   -3.25   -4.71   -6.16   -7.46   -8.46   -9.01   -8.99   -8.31   -6.94   -4.89   -2.18    1.17    5.16    9.73   14.68
+   250.0    0.00   -0.23   -0.89   -1.94   -3.25   -4.70   -6.15   -7.44   -8.44   -8.98   -8.96   -8.29   -6.91   -4.84   -2.10    1.28    5.29    9.87   14.77
+   255.0    0.00   -0.23   -0.90   -1.94   -3.24   -4.69   -6.13   -7.42   -8.42   -8.97   -8.95   -8.27   -6.88   -4.79   -2.02    1.38    5.40    9.95   14.79
+   260.0    0.00   -0.23   -0.90   -1.94   -3.24   -4.68   -6.12   -7.41   -8.41   -8.96   -8.94   -8.25   -6.84   -4.73   -1.95    1.47    5.48    9.98   14.74
+   265.0    0.00   -0.23   -0.90   -1.94   -3.24   -4.68   -6.12   -7.41   -8.41   -8.97   -8.94   -8.24   -6.81   -4.67   -1.88    1.53    5.50    9.95   14.61
+   270.0    0.00   -0.23   -0.90   -1.94   -3.24   -4.68   -6.12   -7.41   -8.42   -8.98   -8.95   -8.23   -6.78   -4.62   -1.82    1.57    5.49    9.85   14.44
+   275.0    0.00   -0.23   -0.90   -1.94   -3.24   -4.68   -6.13   -7.43   -8.44   -8.99   -8.95   -8.21   -6.74   -4.57   -1.77    1.58    5.43    9.72   14.24
+   280.0    0.00   -0.23   -0.90   -1.94   -3.25   -4.69   -6.14   -7.45   -8.47   -9.02   -8.96   -8.20   -6.71   -4.53   -1.75    1.56    5.34    9.55   14.03
+   285.0    0.00   -0.23   -0.90   -1.95   -3.26   -4.71   -6.17   -7.48   -8.50   -9.04   -8.97   -8.19   -6.68   -4.50   -1.74    1.51    5.22    9.38   13.84
+   290.0    0.00   -0.23   -0.91   -1.95   -3.27   -4.73   -6.20   -7.52   -8.53   -9.07   -8.98   -8.18   -6.66   -4.48   -1.76    1.44    5.10    9.22   13.69
+   295.0    0.00   -0.23   -0.91   -1.96   -3.29   -4.76   -6.23   -7.56   -8.57   -9.09   -8.98   -8.17   -6.64   -4.49   -1.80    1.36    4.98    9.09   13.58
+   300.0    0.00   -0.23   -0.91   -1.97   -3.30   -4.79   -6.27   -7.60   -8.60   -9.11   -8.98   -8.16   -6.65   -4.51   -1.85    1.27    4.88    8.99   13.53
+   305.0    0.00   -0.23   -0.91   -1.98   -3.32   -4.82   -6.31   -7.64   -8.63   -9.12   -8.98   -8.16   -6.66   -4.55   -1.92    1.19    4.80    8.95   13.54
+   310.0    0.00   -0.23   -0.92   -1.99   -3.34   -4.84   -6.35   -7.68   -8.66   -9.13   -8.98   -8.16   -6.68   -4.61   -2.00    1.11    4.75    8.95   13.59
+   315.0    0.00   -0.24   -0.92   -1.99   -3.36   -4.87   -6.38   -7.71   -8.68   -9.14   -8.98   -8.17   -6.71   -4.67   -2.08    1.04    4.73    9.00   13.68
+   320.0    0.00   -0.24   -0.92   -2.00   -3.37   -4.90   -6.41   -7.73   -8.69   -9.14   -8.98   -8.18   -6.75   -4.73   -2.16    0.98    4.73    9.07   13.79
+   325.0    0.00   -0.24   -0.92   -2.00   -3.38   -4.91   -6.43   -7.75   -8.70   -9.14   -8.98   -8.19   -6.79   -4.79   -2.23    0.94    4.75    9.15   13.91
+   330.0    0.00   -0.24   -0.92   -2.01   -3.39   -4.93   -6.45   -7.77   -8.71   -9.14   -8.98   -8.21   -6.82   -4.85   -2.28    0.92    4.78    9.23   14.01
+   335.0    0.00   -0.24   -0.92   -2.01   -3.40   -4.94   -6.46   -7.78   -8.72   -9.15   -8.99   -8.22   -6.85   -4.89   -2.32    0.90    4.80    9.30   14.09
+   340.0    0.00   -0.24   -0.92   -2.01   -3.40   -4.94   -6.46   -7.78   -8.72   -9.15   -9.00   -8.23   -6.87   -4.92   -2.35    0.89    4.82    9.34   14.13
+   345.0    0.00   -0.24   -0.92   -2.01   -3.39   -4.94   -6.46   -7.79   -8.73   -9.16   -9.01   -8.25   -6.89   -4.93   -2.36    0.88    4.81    9.34   14.15
+   350.0    0.00   -0.24   -0.92   -2.00   -3.38   -4.93   -6.46   -7.79   -8.74   -9.18   -9.04   -8.27   -6.90   -4.94   -2.36    0.87    4.79    9.32   14.14
+   355.0    0.00   -0.24   -0.92   -2.00   -3.37   -4.91   -6.45   -7.79   -8.75   -9.21   -9.07   -8.30   -6.92   -4.95   -2.36    0.86    4.76    9.26   14.10
+   360.0    0.00   -0.24   -0.92   -1.99   -3.36   -4.90   -6.43   -7.78   -8.77   -9.24   -9.11   -8.34   -6.94   -4.95   -2.37    0.84    4.71    9.19   14.05
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.07      0.06    119.16                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.13   -0.50   -1.04   -1.70   -2.42   -3.16   -3.90   -4.59   -5.12   -5.37   -5.24   -4.64   -3.56   -2.00    0.06    2.69    6.03   10.08
+     0.0    0.00   -0.17   -0.58   -1.14   -1.79   -2.48   -3.20   -3.94   -4.64   -5.20   -5.48   -5.35   -4.73   -3.63   -2.11   -0.20    2.19    5.29    9.45
+     5.0    0.00   -0.18   -0.58   -1.14   -1.79   -2.48   -3.20   -3.94   -4.65   -5.22   -5.52   -5.40   -4.78   -3.68   -2.15   -0.24    2.14    5.26    9.47
+    10.0    0.00   -0.18   -0.58   -1.14   -1.78   -2.47   -3.19   -3.93   -4.65   -5.24   -5.55   -5.44   -4.82   -3.72   -2.19   -0.27    2.13    5.26    9.54
+    15.0    0.00   -0.18   -0.58   -1.14   -1.77   -2.46   -3.17   -3.92   -4.65   -5.25   -5.57   -5.47   -4.86   -3.75   -2.20   -0.26    2.15    5.32    9.65
+    20.0    0.00   -0.18   -0.58   -1.13   -1.76   -2.45   -3.16   -3.91   -4.64   -5.25   -5.58   -5.48   -4.87   -3.76   -2.20   -0.23    2.22    5.43    9.79
+    25.0    0.00   -0.18   -0.58   -1.13   -1.76   -2.44   -3.16   -3.91   -4.64   -5.25   -5.58   -5.49   -4.87   -3.75   -2.17   -0.17    2.33    5.58    9.95
+    30.0    0.00   -0.18   -0.58   -1.12   -1.75   -2.43   -3.15   -3.91   -4.64   -5.25   -5.57   -5.47   -4.85   -3.72   -2.12   -0.08    2.47    5.77   10.12
+    35.0    0.00   -0.18   -0.57   -1.11   -1.74   -2.43   -3.16   -3.92   -4.65   -5.25   -5.56   -5.45   -4.82   -3.67   -2.05    0.02    2.63    5.98   10.29
+    40.0    0.00   -0.18   -0.57   -1.11   -1.74   -2.43   -3.17   -3.93   -4.66   -5.25   -5.54   -5.41   -4.77   -3.62   -1.98    0.13    2.81    6.19   10.44
+    45.0    0.00   -0.18   -0.56   -1.10   -1.73   -2.43   -3.18   -3.96   -4.68   -5.25   -5.52   -5.36   -4.71   -3.55   -1.91    0.24    2.97    6.41   10.58
+    50.0    0.00   -0.18   -0.56   -1.09   -1.73   -2.44   -3.20   -3.98   -4.70   -5.25   -5.49   -5.31   -4.65   -3.50   -1.84    0.34    3.13    6.60   10.69
+    55.0    0.00   -0.18   -0.56   -1.09   -1.73   -2.45   -3.22   -4.01   -4.73   -5.26   -5.47   -5.27   -4.60   -3.45   -1.80    0.40    3.25    6.77   10.79
+    60.0    0.00   -0.17   -0.55   -1.08   -1.73   -2.46   -3.24   -4.04   -4.75   -5.26   -5.45   -5.24   -4.56   -3.42   -1.78    0.44    3.34    6.91   10.86
+    65.0    0.00   -0.17   -0.55   -1.08   -1.72   -2.46   -3.26   -4.05   -4.76   -5.27   -5.44   -5.22   -4.55   -3.42   -1.79    0.45    3.40    7.02   10.92
+    70.0    0.00   -0.17   -0.54   -1.07   -1.72   -2.46   -3.26   -4.07   -4.77   -5.27   -5.44   -5.21   -4.55   -3.44   -1.82    0.43    3.42    7.09   10.97
+    75.0    0.00   -0.17   -0.54   -1.07   -1.72   -2.46   -3.26   -4.07   -4.78   -5.27   -5.44   -5.22   -4.58   -3.48   -1.88    0.38    3.41    7.13   11.01
+    80.0    0.00   -0.17   -0.54   -1.06   -1.71   -2.45   -3.25   -4.06   -4.77   -5.27   -5.45   -5.24   -4.62   -3.54   -1.95    0.32    3.38    7.15   11.04
+    85.0    0.00   -0.16   -0.53   -1.06   -1.70   -2.44   -3.24   -4.04   -4.76   -5.27   -5.47   -5.28   -4.67   -3.61   -2.02    0.25    3.34    7.14   11.07
+    90.0    0.00   -0.16   -0.53   -1.06   -1.70   -2.43   -3.22   -4.02   -4.74   -5.27   -5.49   -5.32   -4.72   -3.67   -2.08    0.19    3.29    7.11   11.08
+    95.0    0.00   -0.16   -0.53   -1.06   -1.70   -2.42   -3.20   -4.00   -4.72   -5.26   -5.50   -5.35   -4.77   -3.72   -2.13    0.15    3.24    7.07   11.08
+   100.0    0.00   -0.16   -0.53   -1.06   -1.69   -2.41   -3.18   -3.97   -4.70   -5.26   -5.52   -5.38   -4.81   -3.75   -2.15    0.13    3.19    7.01   11.08
+   105.0    0.00   -0.16   -0.53   -1.06   -1.70   -2.41   -3.17   -3.95   -4.68   -5.25   -5.53   -5.40   -4.82   -3.75   -2.14    0.12    3.16    6.94   11.06
+   110.0    0.00   -0.15   -0.53   -1.06   -1.70   -2.41   -3.16   -3.94   -4.67   -5.24   -5.53   -5.41   -4.82   -3.73   -2.10    0.14    3.13    6.87   11.03
+   115.0    0.00   -0.15   -0.53   -1.07   -1.71   -2.41   -3.16   -3.93   -4.66   -5.23   -5.52   -5.39   -4.79   -3.68   -2.04    0.18    3.11    6.80   10.99
+   120.0    0.00   -0.15   -0.53   -1.07   -1.72   -2.43   -3.17   -3.93   -4.65   -5.22   -5.50   -5.37   -4.75   -3.62   -1.97    0.23    3.10    6.72   10.93
+   125.0    0.00   -0.15   -0.53   -1.08   -1.73   -2.44   -3.18   -3.93   -4.65   -5.21   -5.48   -5.34   -4.70   -3.55   -1.90    0.28    3.09    6.65   10.87
+   130.0    0.00   -0.14   -0.53   -1.09   -1.75   -2.46   -3.20   -3.94   -4.64   -5.19   -5.46   -5.31   -4.65   -3.49   -1.83    0.33    3.09    6.58   10.80
+   135.0    0.00   -0.14   -0.53   -1.10   -1.76   -2.48   -3.21   -3.95   -4.63   -5.17   -5.43   -5.27   -4.62   -3.45   -1.79    0.36    3.08    6.51   10.73
+   140.0    0.00   -0.14   -0.53   -1.10   -1.78   -2.49   -3.23   -3.95   -4.62   -5.15   -5.41   -5.25   -4.60   -3.43   -1.77    0.37    3.06    6.45   10.64
+   145.0    0.00   -0.14   -0.53   -1.10   -1.78   -2.51   -3.24   -3.95   -4.61   -5.14   -5.39   -5.25   -4.61   -3.44   -1.78    0.35    3.03    6.38   10.54
+   150.0    0.00   -0.13   -0.52   -1.10   -1.79   -2.51   -3.24   -3.95   -4.60   -5.12   -5.39   -5.26   -4.64   -3.49   -1.83    0.32    2.99    6.31   10.42
+   155.0    0.00   -0.13   -0.52   -1.10   -1.79   -2.52   -3.24   -3.94   -4.59   -5.11   -5.39   -5.29   -4.69   -3.56   -1.90    0.26    2.93    6.23   10.29
+   160.0    0.00   -0.12   -0.51   -1.09   -1.79   -2.51   -3.23   -3.93   -4.57   -5.10   -5.40   -5.33   -4.76   -3.64   -1.98    0.18    2.86    6.14   10.15
+   165.0    0.00   -0.12   -0.50   -1.09   -1.78   -2.50   -3.22   -3.92   -4.57   -5.11   -5.42   -5.38   -4.83   -3.73   -2.08    0.10    2.78    6.04    9.99
+   170.0    0.00   -0.11   -0.49   -1.07   -1.76   -2.49   -3.21   -3.91   -4.56   -5.12   -5.45   -5.43   -4.91   -3.82   -2.17    0.01    2.69    5.92    9.83
+   175.0    0.00   -0.11   -0.48   -1.06   -1.75   -2.47   -3.20   -3.90   -4.57   -5.13   -5.48   -5.47   -4.97   -3.89   -2.25   -0.08    2.58    5.79    9.67
+   180.0    0.00   -0.10   -0.47   -1.04   -1.73   -2.46   -3.18   -3.90   -4.57   -5.15   -5.51   -5.51   -5.01   -3.94   -2.31   -0.16    2.47    5.66    9.53
+   185.0    0.00   -0.10   -0.46   -1.03   -1.71   -2.44   -3.17   -3.90   -4.58   -5.17   -5.53   -5.52   -5.02   -3.96   -2.35   -0.23    2.37    5.53    9.41
+   190.0    0.00   -0.09   -0.45   -1.01   -1.69   -2.42   -3.16   -3.90   -4.60   -5.18   -5.54   -5.52   -5.00   -3.94   -2.35   -0.28    2.28    5.42    9.32
+   195.0    0.00   -0.09   -0.44   -0.99   -1.67   -2.40   -3.16   -3.90   -4.61   -5.19   -5.53   -5.49   -4.96   -3.90   -2.34   -0.31    2.21    5.33    9.28
+   200.0    0.00   -0.09   -0.43   -0.97   -1.65   -2.39   -3.15   -3.91   -4.62   -5.19   -5.52   -5.45   -4.90   -3.84   -2.30   -0.31    2.17    5.29    9.29
+   205.0    0.00   -0.08   -0.42   -0.96   -1.63   -2.37   -3.14   -3.91   -4.62   -5.18   -5.48   -5.39   -4.82   -3.77   -2.25   -0.29    2.16    5.28    9.34
+   210.0    0.00   -0.08   -0.41   -0.94   -1.61   -2.36   -3.14   -3.90   -4.61   -5.16   -5.44   -5.32   -4.74   -3.69   -2.19   -0.26    2.18    5.33    9.44
+   215.0    0.00   -0.07   -0.40   -0.93   -1.60   -2.35   -3.13   -3.90   -4.59   -5.12   -5.38   -5.25   -4.67   -3.61   -2.12   -0.20    2.25    5.43    9.57
+   220.0    0.00   -0.07   -0.39   -0.92   -1.59   -2.34   -3.12   -3.88   -4.56   -5.08   -5.33   -5.19   -4.60   -3.55   -2.06   -0.13    2.35    5.56    9.71
+   225.0    0.00   -0.07   -0.39   -0.91   -1.58   -2.33   -3.11   -3.86   -4.53   -5.04   -5.27   -5.13   -4.55   -3.50   -2.01   -0.05    2.47    5.72    9.86
+   230.0    0.00   -0.07   -0.38   -0.91   -1.58   -2.33   -3.10   -3.84   -4.50   -4.99   -5.22   -5.08   -4.51   -3.47   -1.97    0.03    2.61    5.89    9.98
+   235.0    0.00   -0.07   -0.38   -0.90   -1.57   -2.32   -3.09   -3.82   -4.47   -4.95   -5.18   -5.05   -4.49   -3.46   -1.93    0.11    2.75    6.05   10.06
+   240.0    0.00   -0.07   -0.38   -0.90   -1.57   -2.32   -3.08   -3.81   -4.44   -4.92   -5.15   -5.03   -4.49   -3.45   -1.91    0.19    2.87    6.19   10.10
+   245.0    0.00   -0.07   -0.38   -0.90   -1.57   -2.32   -3.08   -3.79   -4.42   -4.89   -5.13   -5.03   -4.49   -3.46   -1.89    0.24    2.96    6.28   10.09
+   250.0    0.00   -0.07   -0.38   -0.91   -1.58   -2.32   -3.08   -3.79   -4.41   -4.88   -5.12   -5.03   -4.50   -3.46   -1.87    0.28    3.02    6.32   10.03
+   255.0    0.00   -0.07   -0.39   -0.91   -1.58   -2.33   -3.08   -3.79   -4.41   -4.88   -5.13   -5.03   -4.50   -3.46   -1.86    0.30    3.03    6.30    9.93
+   260.0    0.00   -0.07   -0.39   -0.92   -1.59   -2.33   -3.08   -3.79   -4.42   -4.89   -5.14   -5.04   -4.50   -3.45   -1.86    0.29    3.00    6.23    9.81
+   265.0    0.00   -0.08   -0.40   -0.93   -1.60   -2.34   -3.09   -3.80   -4.43   -4.91   -5.15   -5.05   -4.50   -3.44   -1.86    0.26    2.92    6.12    9.69
+   270.0    0.00   -0.08   -0.40   -0.94   -1.61   -2.35   -3.10   -3.82   -4.45   -4.93   -5.17   -5.05   -4.48   -3.43   -1.87    0.20    2.81    5.97    9.58
+   275.0    0.00   -0.08   -0.41   -0.95   -1.62   -2.36   -3.11   -3.83   -4.47   -4.95   -5.18   -5.05   -4.47   -3.41   -1.88    0.14    2.68    5.82    9.49
+   280.0    0.00   -0.09   -0.42   -0.96   -1.63   -2.36   -3.11   -3.84   -4.48   -4.97   -5.19   -5.04   -4.44   -3.39   -1.89    0.06    2.55    5.68    9.45
+   285.0    0.00   -0.09   -0.43   -0.97   -1.64   -2.37   -3.12   -3.84   -4.49   -4.98   -5.19   -5.03   -4.42   -3.37   -1.91   -0.01    2.43    5.57    9.45
+   290.0    0.00   -0.10   -0.45   -0.98   -1.65   -2.37   -3.12   -3.85   -4.50   -4.99   -5.19   -5.02   -4.40   -3.36   -1.93   -0.07    2.33    5.49    9.50
+   295.0    0.00   -0.11   -0.46   -1.00   -1.66   -2.38   -3.12   -3.84   -4.50   -4.98   -5.19   -5.00   -4.39   -3.36   -1.94   -0.12    2.27    5.46    9.59
+   300.0    0.00   -0.11   -0.47   -1.01   -1.67   -2.38   -3.12   -3.84   -4.49   -4.98   -5.18   -5.00   -4.38   -3.36   -1.96   -0.15    2.24    5.47    9.69
+   305.0    0.00   -0.12   -0.48   -1.03   -1.68   -2.39   -3.12   -3.83   -4.48   -4.97   -5.17   -4.99   -4.38   -3.36   -1.97   -0.15    2.25    5.51    9.80
+   310.0    0.00   -0.12   -0.49   -1.04   -1.70   -2.40   -3.12   -3.83   -4.47   -4.96   -5.17   -4.99   -4.39   -3.37   -1.97   -0.14    2.28    5.58    9.89
+   315.0    0.00   -0.13   -0.51   -1.06   -1.71   -2.41   -3.12   -3.82   -4.47   -4.96   -5.17   -5.00   -4.40   -3.38   -1.97   -0.12    2.34    5.65    9.96
+   320.0    0.00   -0.14   -0.52   -1.07   -1.72   -2.42   -3.13   -3.83   -4.47   -4.96   -5.18   -5.02   -4.42   -3.40   -1.96   -0.09    2.39    5.71    9.99
+   325.0    0.00   -0.14   -0.53   -1.09   -1.74   -2.43   -3.14   -3.84   -4.48   -4.98   -5.20   -5.04   -4.45   -3.41   -1.96   -0.06    2.44    5.75    9.97
+   330.0    0.00   -0.15   -0.54   -1.10   -1.75   -2.44   -3.15   -3.85   -4.50   -5.00   -5.23   -5.07   -4.47   -3.43   -1.96   -0.03    2.47    5.75    9.92
+   335.0    0.00   -0.15   -0.55   -1.11   -1.77   -2.46   -3.17   -3.87   -4.52   -5.03   -5.26   -5.11   -4.51   -3.45   -1.96   -0.02    2.47    5.72    9.83
+   340.0    0.00   -0.16   -0.56   -1.12   -1.78   -2.47   -3.18   -3.89   -4.55   -5.06   -5.30   -5.15   -4.54   -3.47   -1.97   -0.03    2.45    5.65    9.73
+   345.0    0.00   -0.16   -0.56   -1.13   -1.79   -2.48   -3.19   -3.91   -4.58   -5.10   -5.35   -5.20   -4.58   -3.50   -2.00   -0.06    2.40    5.56    9.62
+   350.0    0.00   -0.17   -0.57   -1.14   -1.79   -2.49   -3.20   -3.93   -4.60   -5.14   -5.40   -5.25   -4.63   -3.54   -2.03   -0.10    2.33    5.46    9.53
+   355.0    0.00   -0.17   -0.58   -1.14   -1.79   -2.49   -3.21   -3.94   -4.62   -5.17   -5.44   -5.30   -4.68   -3.59   -2.07   -0.15    2.25    5.37    9.47
+   360.0    0.00   -0.17   -0.58   -1.14   -1.79   -2.48   -3.20   -3.94   -4.64   -5.20   -5.48   -5.35   -4.73   -3.63   -2.11   -0.20    2.19    5.29    9.45
+   G02                                                      END OF FREQUENCY    
+   R01                                                      START OF FREQUENCY  
+      0.26     -0.23     90.86                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.25   -0.96   -2.07   -3.44   -4.96   -6.53   -7.99   -9.15   -9.86   -9.90   -9.14   -7.65   -5.48   -2.85    0.18    3.67    7.88   13.16
+     0.0    0.00   -0.34   -1.12   -2.27   -3.67   -5.21   -6.77   -8.23   -9.40  -10.07  -10.07   -9.31   -7.81   -5.73   -3.21   -0.27    3.24    7.66   13.33
+     5.0    0.00   -0.34   -1.11   -2.26   -3.64   -5.17   -6.73   -8.21   -9.40  -10.10  -10.12   -9.35   -7.84   -5.74   -3.18   -0.24    3.26    7.69   13.42
+    10.0    0.00   -0.34   -1.11   -2.25   -3.63   -5.14   -6.70   -8.17   -9.38  -10.13  -10.17   -9.42   -7.89   -5.76   -3.17   -0.20    3.30    7.72   13.50
+    15.0    0.00   -0.34   -1.11   -2.24   -3.60   -5.11   -6.67   -8.15   -9.39  -10.15  -10.23   -9.49   -7.96   -5.78   -3.13   -0.13    3.39    7.79   13.57
+    20.0    0.00   -0.33   -1.09   -2.22   -3.58   -5.08   -6.64   -8.12   -9.38  -10.18  -10.29   -9.57   -8.02   -5.80   -3.10   -0.04    3.50    7.89   13.60
+    25.0    0.00   -0.33   -1.09   -2.20   -3.55   -5.05   -6.60   -8.09   -9.36  -10.18  -10.32   -9.63   -8.08   -5.82   -3.06    0.07    3.64    8.00   13.62
+    30.0    0.00   -0.32   -1.08   -2.20   -3.54   -5.02   -6.57   -8.06   -9.34  -10.18  -10.34   -9.67   -8.11   -5.82   -3.00    0.17    3.78    8.09   13.59
+    35.0    0.00   -0.32   -1.08   -2.17   -3.51   -5.00   -6.53   -8.02   -9.31  -10.15  -10.33   -9.67   -8.11   -5.80   -2.94    0.29    3.92    8.20   13.56
+    40.0    0.00   -0.32   -1.07   -2.15   -3.49   -4.98   -6.51   -7.99   -9.27  -10.11  -10.29   -9.63   -8.08   -5.74   -2.87    0.40    4.04    8.27   13.52
+    45.0    0.00   -0.30   -1.05   -2.14   -3.49   -4.94   -6.46   -7.95   -9.21  -10.04  -10.22   -9.56   -7.99   -5.67   -2.76    0.51    4.13    8.33   13.50
+    50.0    0.00   -0.30   -1.04   -2.13   -3.46   -4.93   -6.44   -7.91   -9.14   -9.96  -10.12   -9.44   -7.89   -5.55   -2.68    0.58    4.17    8.34   13.50
+    55.0    0.00   -0.29   -1.03   -2.12   -3.44   -4.91   -6.42   -7.87   -9.08   -9.87  -10.01   -9.32   -7.75   -5.44   -2.58    0.63    4.19    8.35   13.53
+    60.0    0.00   -0.29   -1.02   -2.11   -3.43   -4.89   -6.39   -7.83   -9.03   -9.79   -9.88   -9.16   -7.61   -5.31   -2.48    0.66    4.17    8.32   13.58
+    65.0    0.00   -0.28   -1.02   -2.09   -3.41   -4.87   -6.37   -7.80   -8.97   -9.70   -9.77   -9.03   -7.46   -5.18   -2.42    0.68    4.12    8.28   13.68
+    70.0    0.00   -0.28   -1.01   -2.08   -3.40   -4.86   -6.34   -7.77   -8.92   -9.63   -9.68   -8.91   -7.33   -5.06   -2.35    0.67    4.06    8.24   13.79
+    75.0    0.00   -0.27   -1.00   -2.06   -3.38   -4.84   -6.33   -7.74   -8.89   -9.59   -9.61   -8.83   -7.24   -4.98   -2.31    0.65    4.01    8.20   13.90
+    80.0    0.00   -0.27   -0.99   -2.05   -3.37   -4.82   -6.31   -7.72   -8.88   -9.57   -9.58   -8.79   -7.18   -4.93   -2.29    0.62    3.94    8.15   14.01
+    85.0    0.00   -0.26   -0.98   -2.05   -3.36   -4.81   -6.30   -7.72   -8.87   -9.57   -9.58   -8.78   -7.17   -4.92   -2.29    0.59    3.88    8.10   14.05
+    90.0    0.00   -0.26   -0.96   -2.04   -3.34   -4.80   -6.29   -7.71   -8.89   -9.58   -9.62   -8.82   -7.19   -4.96   -2.32    0.55    3.83    8.06   14.04
+    95.0    0.00   -0.25   -0.95   -2.02   -3.33   -4.79   -6.30   -7.72   -8.90   -9.63   -9.67   -8.89   -7.27   -5.02   -2.38    0.50    3.78    8.00   13.97
+   100.0    0.00   -0.25   -0.95   -2.02   -3.33   -4.80   -6.30   -7.73   -8.93   -9.68   -9.74   -8.98   -7.38   -5.12   -2.45    0.45    3.74    7.94   13.82
+   105.0    0.00   -0.24   -0.94   -2.02   -3.33   -4.80   -6.31   -7.75   -8.96   -9.72   -9.81   -9.07   -7.48   -5.22   -2.54    0.39    3.71    7.86   13.62
+   110.0    0.00   -0.24   -0.93   -2.01   -3.34   -4.81   -6.34   -7.79   -8.99   -9.77   -9.88   -9.16   -7.59   -5.34   -2.65    0.32    3.65    7.78   13.36
+   115.0    0.00   -0.23   -0.93   -2.01   -3.35   -4.84   -6.36   -7.81   -9.04   -9.81   -9.92   -9.22   -7.68   -5.44   -2.76    0.24    3.59    7.66   13.09
+   120.0    0.00   -0.23   -0.92   -2.02   -3.36   -4.86   -6.39   -7.85   -9.05   -9.83   -9.94   -9.25   -7.74   -5.54   -2.85    0.16    3.52    7.57   12.82
+   125.0    0.00   -0.23   -0.92   -2.02   -3.37   -4.90   -6.43   -7.88   -9.07   -9.83   -9.93   -9.25   -7.77   -5.60   -2.93    0.06    3.45    7.48   12.60
+   130.0    0.00   -0.21   -0.92   -2.01   -3.39   -4.92   -6.47   -7.91   -9.08   -9.82   -9.90   -9.24   -7.78   -5.64   -3.00   -1.13    3.38    7.40   12.42
+   135.0    0.00   -0.21   -0.91   -2.02   -3.40   -4.94   -6.51   -7.94   -9.09   -9.78   -9.86   -9.18   -7.76   -5.66   -3.05   -0.07    3.33    7.35   12.31
+   140.0    0.00   -0.21   -0.90   -2.02   -3.43   -4.98   -6.53   -7.96   -9.08   -9.75   -9.81   -9.13   -7.72   -5.64   -3.07   -0.10    3.30    7.33   12.27
+   145.0    0.00   -0.20   -0.90   -2.02   -3.44   -4.99   -6.56   -7.96   -9.09   -9.72   -9.74   -9.06   -7.66   -5.62   -3.08   -0.12    3.31    7.36   12.28
+   150.0    0.00   -0.20   -0.90   -2.03   -3.45   -5.00   -6.57   -7.97   -9.06   -9.70   -9.71   -9.02   -7.62   -5.60   -3.07   -0.09    3.33    7.40   12.34
+   155.0    0.00   -0.20   -0.89   -2.02   -3.44   -5.00   -6.58   -7.97   -9.05   -9.68   -9.68   -8.99   -7.60   -5.57   -3.02   -0.05    3.39    7.46   12.42
+   160.0    0.00   -0.19   -0.89   -2.01   -3.43   -4.99   -6.55   -7.96   -9.04   -9.66   -9.68   -8.98   -7.59   -5.54   -2.98    0.02    3.46    7.54   12.50
+   165.0    0.00   -0.19   -0.88   -2.00   -3.41   -4.98   -6.53   -7.94   -9.04   -9.66   -9.69   -9.02   -7.59   -5.53   -2.93    0.09    3.55    7.61   12.55
+   170.0    0.00   -0.19   -0.88   -1.99   -3.40   -4.96   -6.52   -7.92   -9.03   -9.68   -9.73   -9.06   -7.63   -5.54   -2.89    0.17    3.62    7.65   12.58
+   175.0    0.00   -0.19   -0.87   -1.98   -3.38   -4.94   -6.48   -7.90   -9.03   -9.70   -9.78   -9.12   -7.68   -5.55   -2.87    0.22    3.68    7.68   12.58
+   180.0    0.00   -0.18   -0.86   -1.97   -3.37   -4.90   -6.46   -7.88   -9.03   -9.74   -9.84   -9.19   -7.74   -5.58   -2.85    0.26    3.70    7.68   12.53
+   185.0    0.00   -0.18   -0.86   -1.95   -3.35   -4.88   -6.43   -7.86   -9.03   -9.77   -9.90   -9.25   -7.79   -5.61   -2.85    0.27    3.72    7.65   12.50
+   190.0    0.00   -0.18   -0.85   -1.94   -3.33   -4.86   -6.41   -7.85   -9.04   -9.80   -9.94   -9.30   -7.83   -5.64   -2.86    0.25    3.68    7.61   12.46
+   195.0    0.00   -0.18   -0.85   -1.94   -3.32   -4.85   -6.40   -7.85   -9.04   -9.81   -9.96   -9.33   -7.86   -5.65   -2.89    0.21    3.65    7.58   12.48
+   200.0    0.00   -0.18   -0.85   -1.93   -3.30   -4.84   -6.40   -7.86   -9.05   -9.82   -9.96   -9.32   -7.85   -5.67   -2.93    0.17    3.59    7.58   12.55
+   205.0    0.00   -0.18   -0.85   -1.92   -3.29   -4.84   -6.40   -7.86   -9.06   -9.81   -9.95   -9.30   -7.83   -5.67   -2.97    0.10    3.56    7.61   12.69
+   210.0    0.00   -0.18   -0.84   -1.92   -3.30   -4.85   -6.41   -7.88   -9.06   -9.81   -9.92   -9.25   -7.79   -5.65   -2.99    0.07    3.55    7.70   12.89
+   215.0    0.00   -0.18   -0.84   -1.92   -3.29   -4.85   -6.43   -7.89   -9.08   -9.80   -9.87   -9.18   -7.73   -5.62   -3.00    0.05    3.57    7.85   13.17
+   220.0    0.00   -0.18   -0.85   -1.93   -3.30   -4.87   -6.45   -7.92   -9.09   -9.77   -9.82   -9.11   -7.66   -5.57   -2.98    0.07    3.65    8.05   13.49
+   225.0    0.00   -0.18   -0.85   -1.93   -3.31   -4.88   -6.47   -7.93   -9.09   -9.75   -9.77   -9.03   -7.58   -5.51   -2.93    0.12    3.78    8.28   13.82
+   230.0    0.00   -0.18   -0.85   -1.93   -3.32   -4.89   -6.49   -7.94   -9.09   -9.74   -9.73   -8.97   -7.51   -5.44   -2.87    0.22    3.95    8.53   14.12
+   235.0    0.00   -0.19   -0.86   -1.94   -3.33   -4.89   -6.50   -7.96   -9.09   -9.72   -9.69   -8.91   -7.46   -5.37   -2.78    0.35    4.14    8.79   14.35
+   240.0    0.00   -0.20   -0.86   -1.95   -3.33   -4.90   -6.50   -7.97   -9.10   -9.71   -9.66   -8.88   -7.38   -5.29   -2.67    0.49    4.32    8.99   14.51
+   245.0    0.00   -0.20   -0.87   -1.95   -3.34   -4.90   -6.50   -7.96   -9.10   -9.71   -9.66   -8.85   -7.34   -5.22   -2.56    0.63    4.48    9.13   14.54
+   250.0    0.00   -0.21   -0.87   -1.96   -3.35   -4.90   -6.50   -7.96   -9.11   -9.72   -9.66   -8.85   -7.31   -5.16   -2.46    0.75    4.58    9.19   14.47
+   255.0    0.00   -0.21   -0.89   -1.97   -3.34   -4.90   -6.49   -7.95   -9.11   -9.75   -9.68   -8.87   -7.29   -5.11   -2.38    0.83    4.62    9.13   14.29
+   260.0    0.00   -0.22   -0.90   -1.98   -3.35   -4.89   -6.48   -7.95   -9.12   -9.76   -9.71   -8.88   -7.29   -5.06   -2.33    0.86    4.60    8.99   14.03
+   265.0    0.00   -0.22   -0.91   -1.99   -3.36   -4.90   -6.49   -7.96   -9.13   -9.79   -9.75   -8.91   -7.29   -5.03   -2.31    0.84    4.48    8.77   13.69
+   270.0    0.00   -0.23   -0.92   -2.00   -3.37   -4.90   -6.49   -7.96   -9.15   -9.82   -9.79   -8.93   -7.30   -5.05   -2.33    0.77    4.31    8.47   13.33
+   275.0    0.00   -0.24   -0.93   -2.01   -3.38   -4.91   -6.50   -7.98   -9.17   -9.85   -9.81   -8.96   -7.32   -5.06   -2.38    0.64    4.08    8.16   13.00
+   280.0    0.00   -0.24   -0.95   -2.04   -3.41   -4.93   -6.51   -8.00   -9.21   -9.89   -9.85   -9.00   -7.36   -5.11   -2.46    0.50    3.83    7.83   12.70
+   285.0    0.00   -0.25   -0.96   -2.07   -3.43   -4.97   -6.55   -8.03   -9.24   -9.92   -9.89   -9.04   -7.40   -5.18   -2.57    0.31    3.57    7.54   12.46
+   290.0    0.00   -0.26   -0.98   -2.08   -3.46   -5.00   -6.58   -8.07   -9.27   -9.96   -9.94   -9.08   -7.46   -5.26   -2.70    0.13    3.36    7.31   12.31
+   295.0    0.00   -0.26   -1.01   -2.11   -3.49   -5.04   -6.62   -8.11   -9.31   -9.99   -9.96   -9.13   -7.51   -5.35   -2.83   -0.03    3.17    7.15   12.22
+   300.0    0.00   -0.27   -1.02   -2.14   -3.52   -5.08   -6.66   -8.15   -9.34  -10.02   -9.99   -9.16   -7.60   -5.46   -2.96   -0.18    3.05    7.07   12.21
+   305.0    0.00   -0.28   -1.03   -2.16   -3.56   -5.13   -6.71   -8.20   -9.38  -10.04  -10.01   -9.20   -7.66   -5.55   -3.07   -0.28    2.99    7.07   12.26
+   310.0    0.00   -0.28   -1.05   -2.19   -3.60   -5.16   -6.76   -8.24   -9.41  -10.07  -10.03   -9.23   -7.72   -5.65   -3.17   -0.34    2.99    7.13   12.35
+   315.0    0.00   -0.30   -1.07   -2.21   -3.64   -5.20   -6.79   -8.27   -9.43  -10.08  -10.04   -9.27   -7.77   -5.72   -3.24   -0.37    3.03    7.24   12.45
+   320.0    0.00   -0.30   -1.08   -2.23   -3.66   -5.24   -6.84   -8.29   -9.44  -10.08  -10.05   -9.29   -7.82   -5.78   -3.30   -0.38    3.08    7.35   12.56
+   325.0    0.00   -0.31   -1.09   -2.24   -3.68   -5.25   -6.86   -8.30   -9.44  -10.08  -10.04   -9.30   -7.85   -5.81   -3.33   -0.37    3.16    7.46   12.68
+   330.0    0.00   -0.31   -1.10   -2.27   -3.70   -5.28   -6.86   -8.32   -9.44  -10.06  -10.03   -9.29   -7.85   -5.83   -3.32   -0.35    3.23    7.56   12.78
+   335.0    0.00   -0.33   -1.10   -2.28   -3.71   -5.29   -6.87   -8.31   -9.44  -10.06  -10.03   -9.28   -7.85   -5.83   -3.31   -0.32    3.26    7.63   12.87
+   340.0    0.00   -0.33   -1.11   -2.29   -3.72   -5.28   -6.86   -8.30   -9.42  -10.04  -10.02   -9.26   -7.83   -5.81   -3.30   -0.30    3.29    7.67   12.95
+   345.0    0.00   -0.33   -1.12   -2.29   -3.71   -5.28   -6.84   -8.29   -9.42  -10.03  -10.01   -9.26   -7.81   -5.78   -3.27   -0.30    3.28    7.67   13.04
+   350.0    0.00   -0.34   -1.12   -2.28   -3.70   -5.26   -6.83   -8.28   -9.41  -10.04  -10.02   -9.26   -7.79   -5.75   -3.24   -0.29    3.26    7.67   13.14
+   355.0    0.00   -0.34   -1.12   -2.29   -3.68   -5.23   -6.80   -8.26   -9.40  -10.05  -10.04   -9.27   -7.79   -5.74   -3.22   -0.28    3.25    7.65   13.23
+   360.0    0.00   -0.34   -1.12   -2.27   -3.67   -5.21   -6.77   -8.23   -9.40  -10.07  -10.07   -9.31   -7.81   -5.73   -3.21   -0.27    3.24    7.66   13.33
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+      0.07      0.06    119.16                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.17   -0.64   -1.32   -2.13   -2.99   -3.86   -4.74   -5.58   -6.29   -6.72   -6.73   -6.22   -5.15   -3.58   -1.52    1.05    4.25    8.16
+     0.0    0.00   -0.22   -0.74   -1.40   -2.11   -2.83   -3.57   -4.35   -5.16   -5.86   -6.31   -6.32   -5.79   -4.76   -3.32   -1.57    0.61    3.54    7.80
+     5.0    0.00   -0.24   -0.74   -1.40   -2.12   -2.83   -3.58   -4.37   -5.19   -5.92   -6.39   -6.41   -5.87   -4.84   -3.40   -1.68    0.44    3.35    7.67
+    10.0    0.00   -0.25   -0.75   -1.41   -2.11   -2.83   -3.58   -4.38   -5.22   -5.98   -6.47   -6.50   -5.95   -4.91   -3.48   -1.76    0.35    3.24    7.63
+    15.0    0.00   -0.25   -0.76   -1.41   -2.11   -2.84   -3.58   -4.41   -5.28   -6.05   -6.55   -6.58   -6.04   -4.97   -3.52   -1.78    0.32    3.24    7.67
+    20.0    0.00   -0.25   -0.76   -1.41   -2.11   -2.85   -3.61   -4.45   -5.32   -6.11   -6.62   -6.64   -6.09   -5.02   -3.54   -1.76    0.39    3.35    7.79
+    25.0    0.00   -0.25   -0.76   -1.42   -2.13   -2.87   -3.65   -4.50   -5.38   -6.18   -6.68   -6.70   -6.13   -5.02   -3.50   -1.67    0.56    3.56    7.97
+    30.0    0.00   -0.25   -0.76   -1.41   -2.13   -2.89   -3.69   -4.56   -5.44   -6.23   -6.71   -6.71   -6.13   -5.00   -3.44   -1.53    0.79    3.86    8.21
+    35.0    0.00   -0.26   -0.76   -1.41   -2.14   -2.92   -3.74   -4.63   -5.51   -6.28   -6.74   -6.72   -6.11   -4.94   -3.32   -1.35    1.07    4.21    8.47
+    40.0    0.00   -0.26   -0.77   -1.43   -2.17   -2.95   -3.80   -4.70   -5.58   -6.32   -6.75   -6.69   -6.06   -4.87   -3.21   -1.15    1.38    4.57    8.74
+    45.0    0.00   -0.26   -0.76   -1.42   -2.17   -2.99   -3.86   -4.77   -5.64   -6.36   -6.75   -6.65   -5.98   -4.77   -3.08   -0.95    1.67    4.94    9.00
+    50.0    0.00   -0.27   -0.77   -1.42   -2.19   -3.03   -3.91   -4.83   -5.70   -6.39   -6.73   -6.60   -5.92   -4.69   -2.97   -0.77    1.93    5.25    9.22
+    55.0    0.00   -0.27   -0.77   -1.44   -2.21   -3.06   -3.96   -4.90   -5.76   -6.42   -6.73   -6.57   -5.87   -4.63   -2.90   -0.67    2.12    5.50    9.41
+    60.0    0.00   -0.26   -0.76   -1.43   -2.22   -3.09   -4.01   -4.95   -5.81   -6.44   -6.73   -6.55   -5.83   -4.60   -2.87   -0.61    2.23    5.67    9.54
+    65.0    0.00   -0.27   -0.77   -1.44   -2.23   -3.11   -4.05   -4.98   -5.84   -6.48   -6.75   -6.57   -5.85   -4.63   -2.91   -0.64    2.24    5.75    9.62
+    70.0    0.00   -0.27   -0.76   -1.44   -2.24   -3.12   -4.07   -5.03   -5.88   -6.52   -6.79   -6.61   -5.91   -4.71   -3.00   -0.73    2.18    5.73    9.65
+    75.0    0.00   -0.27   -0.77   -1.45   -2.25   -3.14   -4.08   -5.05   -5.92   -6.57   -6.85   -6.68   -6.02   -4.83   -3.15   -0.90    2.02    5.62    9.63
+    80.0    0.00   -0.27   -0.78   -1.45   -2.25   -3.14   -4.09   -5.06   -5.94   -6.62   -6.94   -6.79   -6.15   -4.99   -3.34   -1.10    1.81    5.46    9.54
+    85.0    0.00   -0.26   -0.77   -1.46   -2.26   -3.15   -4.10   -5.06   -5.97   -6.68   -7.04   -6.93   -6.30   -5.18   -3.54   -1.33    1.58    5.23    9.41
+    90.0    0.00   -0.26   -0.77   -1.47   -2.27   -3.16   -4.10   -5.07   -5.99   -6.73   -7.13   -7.06   -6.46   -5.36   -3.74   -1.55    1.34    4.99    9.21
+    95.0    0.00   -0.26   -0.78   -1.48   -2.30   -3.17   -4.11   -5.08   -6.02   -6.78   -7.21   -7.18   -6.62   -5.52   -3.91   -1.73    1.12    4.74    8.97
+   100.0    0.00   -0.26   -0.79   -1.49   -2.31   -3.19   -4.12   -5.09   -6.03   -6.82   -7.29   -7.29   -6.75   -5.66   -4.03   -1.86    0.94    4.51    8.71
+   105.0    0.00   -0.26   -0.79   -1.51   -2.34   -3.22   -4.14   -5.10   -6.04   -6.85   -7.35   -7.37   -6.84   -5.74   -4.11   -1.95    0.83    4.30    8.41
+   110.0    0.00   -0.25   -0.79   -1.52   -2.36   -3.26   -4.17   -5.12   -6.05   -6.85   -7.37   -7.41   -6.88   -5.77   -4.12   -1.96    0.77    4.14    8.11
+   115.0    0.00   -0.25   -0.80   -1.55   -2.40   -3.29   -4.21   -5.14   -6.06   -6.85   -7.36   -7.41   -6.88   -5.76   -4.08   -1.92    0.77    4.04    7.81
+   120.0    0.00   -0.25   -0.80   -1.56   -2.44   -3.34   -4.24   -5.16   -6.05   -6.82   -7.33   -7.38   -6.85   -5.72   -4.01   -1.82    0.83    3.97    7.51
+   125.0    0.00   -0.25   -0.80   -1.59   -2.47   -3.39   -4.28   -5.17   -6.04   -6.79   -7.28   -7.33   -6.80   -5.65   -3.92   -1.71    0.92    3.95    7.26
+   130.0    0.00   -0.24   -0.81   -1.61   -2.52   -3.43   -4.33   -5.20   -6.02   -6.74   -7.22   -7.28   -6.75   -5.59   -3.84   -1.59    1.04    3.96    7.05
+   135.0    0.00   -0.23   -0.80   -1.62   -2.54   -3.47   -4.36   -5.21   -6.00   -6.69   -7.16   -7.21   -6.71   -5.55   -3.78   -1.50    1.14    3.98    6.89
+   140.0    0.00   -0.23   -0.80   -1.62   -2.57   -3.50   -4.39   -5.22   -5.98   -6.65   -7.11   -7.18   -6.70   -5.55   -3.76   -1.45    1.21    4.01    6.75
+   145.0    0.00   -0.22   -0.79   -1.62   -2.57   -3.53   -4.41   -5.22   -5.96   -6.62   -7.08   -7.18   -6.72   -5.59   -3.79   -1.45    1.23    4.01    6.67
+   150.0    0.00   -0.21   -0.78   -1.62   -2.58   -3.53   -4.41   -5.21   -5.94   -6.59   -7.08   -7.20   -6.77   -5.68   -3.88   -1.51    1.20    3.98    6.59
+   155.0    0.00   -0.20   -0.77   -1.61   -2.57   -3.53   -4.40   -5.19   -5.93   -6.59   -7.09   -7.25   -6.86   -5.79   -4.00   -1.61    1.11    3.91    6.54
+   160.0    0.00   -0.19   -0.75   -1.58   -2.55   -3.50   -4.37   -5.17   -5.90   -6.59   -7.11   -7.32   -6.97   -5.91   -4.14   -1.76    0.98    3.80    6.50
+   165.0    0.00   -0.18   -0.73   -1.56   -2.52   -3.46   -4.33   -5.14   -5.90   -6.60   -7.16   -7.40   -7.07   -6.05   -4.30   -1.93    0.80    3.65    6.44
+   170.0    0.00   -0.16   -0.70   -1.52   -2.46   -3.41   -4.29   -5.11   -5.88   -6.63   -7.21   -7.48   -7.18   -6.18   -4.44   -2.11    0.60    3.46    6.39
+   175.0    0.00   -0.15   -0.68   -1.48   -2.42   -3.35   -4.25   -5.07   -5.88   -6.64   -7.25   -7.52   -7.25   -6.26   -4.56   -2.27    0.39    3.26    6.32
+   180.0    0.00   -0.14   -0.65   -1.43   -2.36   -3.30   -4.18   -5.04   -5.87   -6.65   -7.28   -7.56   -7.28   -6.30   -4.64   -2.40    0.19    3.07    6.27
+   185.0    0.00   -0.13   -0.62   -1.39   -2.30   -3.23   -4.13   -5.00   -5.85   -6.66   -7.28   -7.54   -7.26   -6.29   -4.66   -2.50    0.04    2.91    6.23
+   190.0    0.00   -0.11   -0.59   -1.34   -2.23   -3.16   -4.07   -4.96   -5.84   -6.64   -7.26   -7.51   -7.18   -6.21   -4.62   -2.52   -0.05    2.81    6.22
+   195.0    0.00   -0.10   -0.56   -1.28   -2.17   -3.10   -4.03   -4.92   -5.81   -6.61   -7.21   -7.42   -7.07   -6.10   -4.54   -2.50   -0.07    2.78    6.28
+   200.0    0.00   -0.10   -0.53   -1.23   -2.11   -3.05   -3.97   -4.90   -5.78   -6.57   -7.15   -7.31   -6.94   -5.96   -4.42   -2.41   -0.02    2.85    6.41
+   205.0    0.00   -0.08   -0.50   -1.20   -2.06   -2.98   -3.93   -4.87   -5.75   -6.52   -7.05   -7.18   -6.78   -5.79   -4.27   -2.28    0.11    3.00    6.62
+   210.0    0.00   -0.07   -0.48   -1.15   -2.00   -2.94   -3.90   -4.83   -5.71   -6.46   -6.96   -7.04   -6.62   -5.63   -4.11   -2.12    0.30    3.25    6.91
+   215.0    0.00   -0.06   -0.44   -1.11   -1.96   -2.90   -3.87   -4.81   -5.67   -6.39   -6.85   -6.91   -6.47   -5.46   -3.94   -1.94    0.55    3.58    7.26
+   220.0    0.00   -0.05   -0.42   -1.07   -1.92   -2.86   -3.83   -4.78   -5.63   -6.34   -6.77   -6.80   -6.34   -5.34   -3.79   -1.74    0.82    3.94    7.66
+   225.0    0.00   -0.04   -0.40   -1.04   -1.88   -2.83   -3.82   -4.76   -5.60   -6.29   -6.69   -6.71   -6.24   -5.22   -3.67   -1.56    1.09    4.32    8.08
+   230.0    0.00   -0.04   -0.39   -1.02   -1.86   -2.81   -3.79   -4.73   -5.58   -6.24   -6.63   -6.63   -6.16   -5.15   -3.57   -1.41    1.36    4.68    8.47
+   235.0    0.00   -0.03   -0.37   -1.00   -1.83   -2.78   -3.77   -4.71   -5.56   -6.21   -6.59   -6.58   -6.11   -5.09   -3.48   -1.27    1.57    4.98    8.81
+   240.0    0.00   -0.03   -0.37   -0.98   -1.81   -2.76   -3.75   -4.70   -5.54   -6.19   -6.56   -6.55   -6.08   -5.04   -3.43   -1.17    1.72    5.20    9.06
+   245.0    0.00   -0.03   -0.36   -0.97   -1.79   -2.74   -3.73   -4.67   -5.52   -6.16   -6.54   -6.54   -6.04   -5.02   -3.38   -1.12    1.79    5.31    9.22
+   250.0    0.00   -0.03   -0.36   -0.97   -1.78   -2.72   -3.71   -4.65   -5.50   -6.15   -6.53   -6.52   -6.02   -4.98   -3.35   -1.11    1.78    5.30    9.26
+   255.0    0.00   -0.03   -0.36   -0.96   -1.76   -2.70   -3.67   -4.62   -5.48   -6.14   -6.52   -6.49   -5.99   -4.94   -3.33   -1.14    1.70    5.19    9.20
+   260.0    0.00   -0.03   -0.36   -0.96   -1.76   -2.67   -3.64   -4.58   -5.45   -6.12   -6.51   -6.47   -5.94   -4.89   -3.32   -1.20    1.55    4.98    9.06
+   265.0    0.00   -0.04   -0.37   -0.97   -1.75   -2.66   -3.61   -4.55   -5.42   -6.10   -6.48   -6.44   -5.91   -4.85   -3.32   -1.28    1.34    4.71    8.86
+   270.0    0.00   -0.04   -0.38   -0.98   -1.76   -2.64   -3.58   -4.52   -5.38   -6.07   -6.46   -6.40   -5.84   -4.81   -3.32   -1.38    1.12    4.41    8.64
+   275.0    0.00   -0.04   -0.40   -0.99   -1.76   -2.63   -3.55   -4.48   -5.35   -6.03   -6.42   -6.36   -5.80   -4.76   -3.32   -1.48    0.91    4.13    8.42
+   280.0    0.00   -0.05   -0.41   -1.01   -1.77   -2.62   -3.51   -4.44   -5.30   -6.00   -6.37   -6.31   -5.74   -4.73   -3.33   -1.57    0.72    3.90    8.26
+   285.0    0.00   -0.06   -0.43   -1.04   -1.79   -2.62   -3.50   -4.39   -5.25   -5.95   -6.33   -6.27   -5.71   -4.70   -3.35   -1.65    0.60    3.74    8.16
+   290.0    0.00   -0.08   -0.46   -1.06   -1.80   -2.62   -3.49   -4.37   -5.21   -5.91   -6.29   -6.23   -5.68   -4.70   -3.37   -1.70    0.53    3.68    8.15
+   295.0    0.00   -0.09   -0.48   -1.10   -1.84   -2.64   -3.48   -4.34   -5.18   -5.86   -6.25   -6.19   -5.67   -4.71   -3.38   -1.71    0.53    3.72    8.22
+   300.0    0.00   -0.10   -0.51   -1.12   -1.86   -2.65   -3.48   -4.33   -5.14   -5.82   -6.20   -6.18   -5.67   -4.72   -3.40   -1.69    0.61    3.85    8.35
+   305.0    0.00   -0.11   -0.53   -1.16   -1.89   -2.68   -3.50   -4.32   -5.11   -5.78   -6.17   -6.15   -5.67   -4.73   -3.40   -1.63    0.74    4.04    8.53
+   310.0    0.00   -0.12   -0.55   -1.19   -1.94   -2.72   -3.51   -4.32   -5.09   -5.75   -6.14   -6.14   -5.67   -4.74   -3.38   -1.55    0.90    4.26    8.71
+   315.0    0.00   -0.14   -0.58   -1.23   -1.97   -2.75   -3.52   -4.31   -5.08   -5.73   -6.12   -6.13   -5.67   -4.73   -3.34   -1.45    1.09    4.49    8.88
+   320.0    0.00   -0.15   -0.61   -1.26   -2.01   -2.77   -3.55   -4.32   -5.07   -5.71   -6.11   -6.12   -5.66   -4.73   -3.29   -1.36    1.24    4.67    8.99
+   325.0    0.00   -0.15   -0.63   -1.30   -2.04   -2.80   -3.57   -4.33   -5.07   -5.71   -6.10   -6.11   -5.66   -4.71   -3.25   -1.27    1.37    4.79    9.03
+   330.0    0.00   -0.17   -0.65   -1.32   -2.07   -2.82   -3.58   -4.34   -5.07   -5.71   -6.10   -6.11   -5.64   -4.68   -3.20   -1.19    1.42    4.82    8.99
+   335.0    0.00   -0.18   -0.68   -1.35   -2.09   -2.84   -3.60   -4.34   -5.08   -5.71   -6.10   -6.11   -5.64   -4.66   -3.17   -1.17    1.42    4.75    8.87
+   340.0    0.00   -0.20   -0.69   -1.36   -2.11   -2.85   -3.59   -4.35   -5.09   -5.72   -6.12   -6.11   -5.63   -4.63   -3.15   -1.19    1.34    4.58    8.69
+   345.0    0.00   -0.20   -0.70   -1.38   -2.12   -2.86   -3.59   -4.35   -5.10   -5.75   -6.15   -6.15   -5.64   -4.63   -3.16   -1.24    1.20    4.35    8.46
+   350.0    0.00   -0.21   -0.72   -1.40   -2.12   -2.86   -3.58   -4.36   -5.11   -5.78   -6.19   -6.18   -5.68   -4.65   -3.20   -1.34    1.01    4.08    8.21
+   355.0    0.00   -0.22   -0.73   -1.40   -2.12   -2.85   -3.59   -4.35   -5.13   -5.82   -6.24   -6.24   -5.73   -4.70   -3.25   -1.45    0.80    3.80    7.98
+   360.0    0.00   -0.22   -0.74   -1.40   -2.11   -2.83   -3.57   -4.35   -5.16   -5.86   -6.31   -6.32   -5.79   -4.76   -3.32   -1.57    0.61    3.54    7.80
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH700936E      NONE                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               2    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     4                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+Number of Calibrated Antennas GPS:      002                 COMMENT             
+Number of Individual Calibrations GPS:  004                 COMMENT             
+Number of Calibrated Antennas GLO:      002                 COMMENT             
+Number of Individual Calibrations GLO:  004                 COMMENT             
+# GLONASS PCV                                               COMMENT             
+#  derived from Delta PCV per 25.0 MHz                      COMMENT             
+#  for frequency channel number k=0                         COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.20     -0.14     89.33                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.25   -0.98   -2.10   -3.46   -4.91   -6.28   -7.40   -8.18   -8.53   -8.43   -7.85   -6.75   -5.06   -2.66    0.56    4.67    9.54   14.78
+     0.0    0.00   -0.23   -0.96   -2.12   -3.55   -5.09   -6.51   -7.65   -8.39   -8.68   -8.51   -7.89   -6.78   -5.09   -2.67    0.57    4.61    9.25   14.12
+     5.0    0.00   -0.23   -0.96   -2.11   -3.55   -5.08   -6.51   -7.66   -8.41   -8.71   -8.54   -7.90   -6.75   -5.03   -2.61    0.58    4.55    9.16   14.14
+    10.0    0.00   -0.23   -0.96   -2.11   -3.53   -5.06   -6.50   -7.66   -8.43   -8.74   -8.56   -7.90   -6.72   -4.97   -2.56    0.59    4.50    9.10   14.21
+    15.0    0.00   -0.23   -0.95   -2.10   -3.52   -5.05   -6.48   -7.66   -8.44   -8.76   -8.59   -7.91   -6.70   -4.93   -2.53    0.59    4.46    9.08   14.34
+    20.0    0.00   -0.23   -0.95   -2.09   -3.51   -5.03   -6.46   -7.64   -8.44   -8.77   -8.60   -7.91   -6.69   -4.91   -2.50    0.59    4.44    9.10   14.52
+    25.0    0.00   -0.22   -0.95   -2.08   -3.50   -5.01   -6.44   -7.62   -8.43   -8.77   -8.61   -7.92   -6.69   -4.90   -2.49    0.60    4.46    9.17   14.74
+    30.0    0.00   -0.22   -0.94   -2.08   -3.48   -4.98   -6.40   -7.59   -8.40   -8.76   -8.61   -7.93   -6.70   -4.90   -2.48    0.62    4.51    9.29   14.97
+    35.0    0.00   -0.22   -0.94   -2.07   -3.47   -4.96   -6.37   -7.54   -8.36   -8.73   -8.60   -7.93   -6.71   -4.90   -2.47    0.66    4.60    9.44   15.19
+    40.0    0.00   -0.22   -0.94   -2.06   -3.45   -4.93   -6.32   -7.49   -8.30   -8.68   -8.57   -7.93   -6.72   -4.92   -2.46    0.72    4.72    9.62   15.39
+    45.0    0.00   -0.22   -0.94   -2.06   -3.44   -4.90   -6.28   -7.43   -8.24   -8.62   -8.53   -7.91   -6.73   -4.92   -2.44    0.79    4.86    9.81   15.55
+    50.0    0.00   -0.22   -0.93   -2.05   -3.42   -4.87   -6.23   -7.36   -8.16   -8.56   -8.48   -7.89   -6.73   -4.93   -2.42    0.87    5.01    9.99   15.66
+    55.0    0.00   -0.22   -0.93   -2.05   -3.41   -4.85   -6.19   -7.30   -8.09   -8.48   -8.43   -7.86   -6.72   -4.92   -2.38    0.96    5.16   10.16   15.73
+    60.0    0.00   -0.22   -0.93   -2.04   -3.40   -4.82   -6.15   -7.24   -8.02   -8.41   -8.37   -7.82   -6.69   -4.90   -2.34    1.04    5.28   10.29   15.76
+    65.0    0.00   -0.22   -0.93   -2.04   -3.39   -4.80   -6.11   -7.19   -7.96   -8.35   -8.31   -7.78   -6.67   -4.87   -2.31    1.11    5.38   10.38   15.76
+    70.0    0.00   -0.22   -0.93   -2.03   -3.38   -4.79   -6.09   -7.15   -7.91   -8.29   -8.26   -7.73   -6.63   -4.85   -2.27    1.16    5.45   10.44   15.73
+    75.0    0.00   -0.22   -0.93   -2.03   -3.37   -4.77   -6.06   -7.12   -7.87   -8.25   -8.21   -7.70   -6.60   -4.82   -2.25    1.18    5.47   10.45   15.70
+    80.0    0.00   -0.22   -0.92   -2.03   -3.37   -4.76   -6.05   -7.11   -7.85   -8.22   -8.19   -7.67   -6.58   -4.81   -2.25    1.17    5.45   10.43   15.67
+    85.0    0.00   -0.22   -0.92   -2.02   -3.36   -4.76   -6.05   -7.10   -7.84   -8.21   -8.17   -7.66   -6.57   -4.81   -2.27    1.13    5.40   10.38   15.64
+    90.0    0.00   -0.22   -0.92   -2.02   -3.36   -4.76   -6.05   -7.10   -7.85   -8.22   -8.18   -7.66   -6.58   -4.83   -2.32    1.06    5.31   10.30   15.62
+    95.0    0.00   -0.22   -0.92   -2.02   -3.36   -4.76   -6.05   -7.12   -7.87   -8.24   -8.20   -7.68   -6.61   -4.88   -2.39    0.96    5.20   10.20   15.59
+   100.0    0.00   -0.22   -0.92   -2.02   -3.35   -4.76   -6.06   -7.14   -7.89   -8.28   -8.24   -7.72   -6.65   -4.94   -2.47    0.85    5.07   10.10   15.55
+   105.0    0.00   -0.22   -0.92   -2.01   -3.35   -4.76   -6.07   -7.16   -7.93   -8.32   -8.28   -7.77   -6.71   -5.02   -2.58    0.72    4.93    9.98   15.50
+   110.0    0.00   -0.22   -0.92   -2.01   -3.35   -4.76   -6.09   -7.19   -7.97   -8.36   -8.33   -7.82   -6.78   -5.10   -2.68    0.59    4.80    9.86   15.42
+   115.0    0.00   -0.22   -0.92   -2.01   -3.35   -4.77   -6.10   -7.21   -8.00   -8.40   -8.37   -7.87   -6.84   -5.19   -2.79    0.47    4.67    9.74   15.31
+   120.0    0.00   -0.23   -0.92   -2.01   -3.35   -4.78   -6.12   -7.24   -8.03   -8.44   -8.41   -7.91   -6.90   -5.26   -2.88    0.37    4.56    9.62   15.18
+   125.0    0.00   -0.23   -0.93   -2.01   -3.35   -4.78   -6.13   -7.26   -8.06   -8.46   -8.43   -7.94   -6.93   -5.32   -2.96    0.28    4.46    9.50   15.02
+   130.0    0.00   -0.23   -0.93   -2.01   -3.35   -4.79   -6.15   -7.28   -8.08   -8.48   -8.45   -7.95   -6.95   -5.35   -3.01    0.21    4.38    9.39   14.85
+   135.0    0.00   -0.24   -0.93   -2.02   -3.36   -4.80   -6.16   -7.30   -8.10   -8.49   -8.44   -7.95   -6.95   -5.36   -3.03    0.17    4.32    9.29   14.67
+   140.0    0.00   -0.24   -0.94   -2.02   -3.36   -4.81   -6.18   -7.32   -8.11   -8.49   -8.43   -7.92   -6.93   -5.35   -3.03    0.15    4.27    9.19   14.50
+   145.0    0.00   -0.24   -0.94   -2.03   -3.37   -4.81   -6.19   -7.33   -8.11   -8.48   -8.40   -7.88   -6.88   -5.31   -3.01    0.15    4.24    9.11   14.35
+   150.0    0.00   -0.25   -0.95   -2.04   -3.38   -4.82   -6.20   -7.34   -8.12   -8.47   -8.38   -7.84   -6.83   -5.26   -2.98    0.16    4.21    9.03   14.22
+   155.0    0.00   -0.25   -0.96   -2.05   -3.39   -4.84   -6.21   -7.35   -8.12   -8.46   -8.35   -7.80   -6.78   -5.21   -2.93    0.18    4.20    8.97   14.12
+   160.0    0.00   -0.25   -0.97   -2.06   -3.40   -4.85   -6.22   -7.35   -8.12   -8.45   -8.33   -7.77   -6.73   -5.15   -2.89    0.21    4.18    8.91   14.04
+   165.0    0.00   -0.26   -0.98   -2.07   -3.41   -4.86   -6.23   -7.36   -8.13   -8.46   -8.33   -7.75   -6.70   -5.11   -2.84    0.23    4.16    8.85   13.99
+   170.0    0.00   -0.26   -0.99   -2.08   -3.43   -4.87   -6.24   -7.37   -8.14   -8.46   -8.33   -7.75   -6.68   -5.08   -2.81    0.24    4.15    8.80   13.96
+   175.0    0.00   -0.27   -1.00   -2.10   -3.44   -4.88   -6.25   -7.38   -8.15   -8.48   -8.36   -7.76   -6.69   -5.07   -2.79    0.25    4.13    8.76   13.93
+   180.0    0.00   -0.27   -1.01   -2.11   -3.46   -4.90   -6.26   -7.39   -8.16   -8.51   -8.39   -7.79   -6.71   -5.07   -2.78    0.26    4.11    8.73   13.92
+   185.0    0.00   -0.28   -1.02   -2.13   -3.48   -4.91   -6.27   -7.40   -8.18   -8.53   -8.43   -7.84   -6.74   -5.09   -2.79    0.26    4.10    8.71   13.92
+   190.0    0.00   -0.28   -1.03   -2.14   -3.49   -4.92   -6.28   -7.41   -8.20   -8.56   -8.46   -7.88   -6.78   -5.11   -2.80    0.26    4.10    8.71   13.94
+   195.0    0.00   -0.29   -1.04   -2.16   -3.51   -4.94   -6.29   -7.42   -8.21   -8.58   -8.50   -7.92   -6.82   -5.14   -2.81    0.26    4.12    8.74   13.99
+   200.0    0.00   -0.29   -1.05   -2.17   -3.52   -4.95   -6.29   -7.42   -8.21   -8.60   -8.52   -7.95   -6.85   -5.16   -2.82    0.27    4.16    8.81   14.07
+   205.0    0.00   -0.29   -1.06   -2.18   -3.53   -4.96   -6.30   -7.42   -8.21   -8.60   -8.53   -7.97   -6.87   -5.18   -2.82    0.30    4.23    8.92   14.20
+   210.0    0.00   -0.30   -1.06   -2.19   -3.54   -4.96   -6.30   -7.41   -8.20   -8.59   -8.52   -7.96   -6.87   -5.18   -2.80    0.35    4.33    9.09   14.39
+   215.0    0.00   -0.30   -1.07   -2.20   -3.55   -4.97   -6.29   -7.40   -8.18   -8.56   -8.50   -7.94   -6.85   -5.16   -2.78    0.41    4.46    9.30   14.62
+   220.0    0.00   -0.30   -1.07   -2.20   -3.55   -4.96   -6.28   -7.38   -8.15   -8.53   -8.45   -7.90   -6.81   -5.13   -2.73    0.50    4.63    9.56   14.90
+   225.0    0.00   -0.30   -1.07   -2.20   -3.55   -4.95   -6.27   -7.36   -8.12   -8.48   -8.40   -7.84   -6.76   -5.08   -2.68    0.60    4.82    9.84   15.22
+   230.0    0.00   -0.30   -1.07   -2.20   -3.54   -4.94   -6.25   -7.33   -8.08   -8.43   -8.34   -7.78   -6.71   -5.03   -2.61    0.72    5.02   10.14   15.54
+   235.0    0.00   -0.30   -1.07   -2.20   -3.53   -4.92   -6.22   -7.30   -8.04   -8.39   -8.29   -7.72   -6.64   -4.97   -2.53    0.84    5.22   10.43   15.84
+   240.0    0.00   -0.30   -1.07   -2.19   -3.52   -4.90   -6.20   -7.27   -8.01   -8.35   -8.24   -7.67   -6.59   -4.90   -2.45    0.95    5.41   10.69   16.10
+   245.0    0.00   -0.30   -1.06   -2.18   -3.50   -4.88   -6.17   -7.24   -7.98   -8.32   -8.21   -7.63   -6.54   -4.84   -2.38    1.06    5.56   10.89   16.28
+   250.0    0.00   -0.30   -1.06   -2.16   -3.48   -4.86   -6.15   -7.23   -7.97   -8.31   -8.19   -7.60   -6.50   -4.79   -2.31    1.14    5.67   11.01   16.38
+   255.0    0.00   -0.30   -1.05   -2.15   -3.46   -4.84   -6.14   -7.22   -7.97   -8.31   -8.19   -7.59   -6.47   -4.75   -2.26    1.20    5.72   11.05   16.37
+   260.0    0.00   -0.29   -1.04   -2.14   -3.45   -4.82   -6.13   -7.22   -7.99   -8.34   -8.22   -7.60   -6.46   -4.72   -2.22    1.22    5.70   10.99   16.27
+   265.0    0.00   -0.29   -1.04   -2.13   -3.43   -4.81   -6.13   -7.24   -8.02   -8.38   -8.25   -7.62   -6.46   -4.70   -2.21    1.20    5.63   10.85   16.07
+   270.0    0.00   -0.29   -1.03   -2.12   -3.42   -4.81   -6.14   -7.27   -8.07   -8.43   -8.30   -7.65   -6.46   -4.69   -2.21    1.15    5.49   10.63   15.82
+   275.0    0.00   -0.28   -1.02   -2.11   -3.42   -4.81   -6.16   -7.31   -8.12   -8.50   -8.36   -7.68   -6.48   -4.70   -2.24    1.06    5.31   10.36   15.52
+   280.0    0.00   -0.28   -1.01   -2.10   -3.42   -4.83   -6.19   -7.36   -8.18   -8.56   -8.41   -7.72   -6.49   -4.72   -2.29    0.94    5.10   10.07   15.22
+   285.0    0.00   -0.28   -1.01   -2.10   -3.42   -4.85   -6.23   -7.41   -8.25   -8.62   -8.46   -7.75   -6.52   -4.75   -2.36    0.80    4.88    9.77   14.94
+   290.0    0.00   -0.27   -1.00   -2.09   -3.43   -4.87   -6.27   -7.46   -8.30   -8.67   -8.50   -7.78   -6.54   -4.79   -2.44    0.66    4.66    9.51   14.70
+   295.0    0.00   -0.27   -1.00   -2.09   -3.44   -4.90   -6.32   -7.52   -8.35   -8.71   -8.52   -7.80   -6.58   -4.85   -2.53    0.52    4.48    9.30   14.53
+   300.0    0.00   -0.27   -0.99   -2.10   -3.46   -4.93   -6.36   -7.56   -8.39   -8.73   -8.53   -7.82   -6.61   -4.91   -2.63    0.40    4.33    9.15   14.43
+   305.0    0.00   -0.26   -0.99   -2.10   -3.48   -4.97   -6.40   -7.60   -8.41   -8.74   -8.53   -7.83   -6.65   -4.98   -2.72    0.30    4.24    9.08   14.39
+   310.0    0.00   -0.26   -0.99   -2.10   -3.49   -5.00   -6.44   -7.63   -8.42   -8.73   -8.53   -7.84   -6.69   -5.05   -2.81    0.23    4.20    9.07   14.40
+   315.0    0.00   -0.26   -0.99   -2.11   -3.51   -5.03   -6.46   -7.64   -8.42   -8.71   -8.51   -7.84   -6.73   -5.12   -2.88    0.19    4.22    9.11   14.43
+   320.0    0.00   -0.25   -0.98   -2.12   -3.53   -5.05   -6.49   -7.65   -8.41   -8.69   -8.49   -7.85   -6.77   -5.18   -2.93    0.19    4.27    9.19   14.47
+   325.0    0.00   -0.25   -0.98   -2.12   -3.54   -5.07   -6.50   -7.65   -8.39   -8.66   -8.47   -7.85   -6.81   -5.24   -2.96    0.21    4.35    9.29   14.50
+   330.0    0.00   -0.25   -0.98   -2.12   -3.55   -5.08   -6.51   -7.65   -8.37   -8.64   -8.45   -7.86   -6.84   -5.27   -2.97    0.26    4.45    9.38   14.50
+   335.0    0.00   -0.25   -0.98   -2.13   -3.56   -5.09   -6.52   -7.65   -8.36   -8.62   -8.44   -7.87   -6.86   -5.28   -2.95    0.32    4.54    9.44   14.47
+   340.0    0.00   -0.24   -0.97   -2.13   -3.56   -5.10   -6.52   -7.64   -8.35   -8.61   -8.44   -7.87   -6.86   -5.28   -2.91    0.38    4.61    9.47   14.40
+   345.0    0.00   -0.24   -0.97   -2.13   -3.57   -5.10   -6.52   -7.64   -8.35   -8.61   -8.45   -7.88   -6.86   -5.25   -2.86    0.45    4.65    9.46   14.32
+   350.0    0.00   -0.24   -0.97   -2.12   -3.56   -5.10   -6.52   -7.64   -8.36   -8.62   -8.46   -7.88   -6.84   -5.20   -2.80    0.50    4.66    9.41   14.23
+   355.0    0.00   -0.24   -0.97   -2.12   -3.56   -5.09   -6.52   -7.65   -8.37   -8.65   -8.48   -7.89   -6.81   -5.15   -2.73    0.54    4.65    9.33   14.16
+   360.0    0.00   -0.23   -0.96   -2.12   -3.55   -5.09   -6.51   -7.65   -8.39   -8.68   -8.51   -7.89   -6.78   -5.09   -2.67    0.57    4.61    9.25   14.12
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.21     -0.16    119.33                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.19   -0.72   -1.46   -2.26   -3.05   -3.79   -4.50   -5.15   -5.62   -5.74   -5.37   -4.47   -3.13   -1.53    0.29    2.56    5.77   10.49
+     0.0    0.00   -0.20   -0.74   -1.48   -2.27   -3.03   -3.74   -4.43   -5.09   -5.62   -5.81   -5.50   -4.62   -3.27   -1.68    0.04    2.11    5.22   10.40
+     5.0    0.00   -0.20   -0.74   -1.48   -2.27   -3.02   -3.73   -4.43   -5.09   -5.62   -5.82   -5.50   -4.62   -3.31   -1.76   -0.08    1.99    5.14   10.35
+    10.0    0.00   -0.20   -0.74   -1.48   -2.27   -3.02   -3.72   -4.42   -5.09   -5.62   -5.82   -5.50   -4.64   -3.34   -1.82   -0.15    1.94    5.16   10.37
+    15.0    0.00   -0.20   -0.74   -1.48   -2.26   -3.01   -3.71   -4.40   -5.08   -5.61   -5.81   -5.51   -4.65   -3.37   -1.87   -0.19    1.96    5.25   10.45
+    20.0    0.00   -0.20   -0.74   -1.48   -2.26   -3.00   -3.69   -4.38   -5.05   -5.59   -5.80   -5.50   -4.66   -3.40   -1.90   -0.19    2.03    5.41   10.58
+    25.0    0.00   -0.20   -0.74   -1.47   -2.25   -2.99   -3.68   -4.36   -5.02   -5.56   -5.77   -5.49   -4.67   -3.42   -1.92   -0.17    2.14    5.61   10.74
+    30.0    0.00   -0.20   -0.74   -1.47   -2.25   -2.98   -3.66   -4.33   -4.99   -5.52   -5.73   -5.46   -4.66   -3.43   -1.92   -0.12    2.27    5.82   10.93
+    35.0    0.00   -0.19   -0.73   -1.47   -2.24   -2.97   -3.65   -4.31   -4.95   -5.47   -5.68   -5.42   -4.63   -3.41   -1.91   -0.08    2.40    6.03   11.11
+    40.0    0.00   -0.19   -0.73   -1.46   -2.24   -2.97   -3.64   -4.29   -4.92   -5.43   -5.62   -5.36   -4.58   -3.39   -1.88   -0.03    2.50    6.21   11.27
+    45.0    0.00   -0.19   -0.72   -1.46   -2.24   -2.97   -3.64   -4.28   -4.90   -5.38   -5.56   -5.29   -4.52   -3.34   -1.86    0.01    2.58    6.34   11.41
+    50.0    0.00   -0.19   -0.72   -1.45   -2.24   -2.97   -3.65   -4.29   -4.88   -5.34   -5.50   -5.21   -4.44   -3.29   -1.82    0.03    2.62    6.42   11.49
+    55.0    0.00   -0.18   -0.71   -1.45   -2.24   -2.98   -3.66   -4.30   -4.88   -5.31   -5.44   -5.13   -4.37   -3.22   -1.79    0.04    2.63    6.44   11.51
+    60.0    0.00   -0.18   -0.71   -1.45   -2.24   -2.99   -3.68   -4.32   -4.89   -5.30   -5.39   -5.06   -4.29   -3.16   -1.76    0.04    2.60    6.39   11.45
+    65.0    0.00   -0.18   -0.70   -1.44   -2.24   -3.01   -3.71   -4.35   -4.91   -5.29   -5.36   -5.01   -4.23   -3.11   -1.73    0.03    2.54    6.28   11.32
+    70.0    0.00   -0.18   -0.70   -1.44   -2.24   -3.02   -3.73   -4.38   -4.93   -5.30   -5.35   -4.98   -4.19   -3.08   -1.71    0.01    2.47    6.13   11.10
+    75.0    0.00   -0.17   -0.69   -1.43   -2.24   -3.03   -3.76   -4.41   -4.96   -5.32   -5.36   -4.97   -4.17   -3.06   -1.70   -0.01    2.38    5.95   10.81
+    80.0    0.00   -0.17   -0.69   -1.42   -2.24   -3.04   -3.78   -4.44   -4.99   -5.35   -5.38   -4.99   -4.18   -3.05   -1.69   -0.02    2.30    5.74   10.46
+    85.0    0.00   -0.17   -0.68   -1.42   -2.24   -3.05   -3.80   -4.47   -5.03   -5.39   -5.42   -5.02   -4.21   -3.07   -1.69   -0.02    2.23    5.53   10.08
+    90.0    0.00   -0.17   -0.67   -1.41   -2.24   -3.06   -3.81   -4.49   -5.06   -5.42   -5.46   -5.07   -4.25   -3.09   -1.68   -0.01    2.18    5.32    9.69
+    95.0    0.00   -0.16   -0.67   -1.40   -2.24   -3.06   -3.83   -4.52   -5.09   -5.46   -5.51   -5.13   -4.30   -3.11   -1.67    0.01    2.15    5.15    9.33
+   100.0    0.00   -0.16   -0.66   -1.40   -2.23   -3.06   -3.84   -4.54   -5.12   -5.50   -5.56   -5.18   -4.34   -3.12   -1.65    0.05    2.15    5.02    9.03
+   105.0    0.00   -0.16   -0.66   -1.39   -2.23   -3.07   -3.85   -4.56   -5.15   -5.54   -5.60   -5.21   -4.36   -3.12   -1.60    0.11    2.17    4.93    8.82
+   110.0    0.00   -0.16   -0.66   -1.39   -2.23   -3.07   -3.86   -4.58   -5.18   -5.57   -5.63   -5.24   -4.37   -3.09   -1.55    0.19    2.23    4.91    8.73
+   115.0    0.00   -0.16   -0.65   -1.38   -2.23   -3.08   -3.88   -4.60   -5.20   -5.60   -5.65   -5.24   -4.35   -3.05   -1.47    0.28    2.30    4.95    8.76
+   120.0    0.00   -0.16   -0.65   -1.38   -2.23   -3.08   -3.89   -4.62   -5.23   -5.62   -5.66   -5.23   -4.32   -2.98   -1.38    0.38    2.40    5.04    8.90
+   125.0    0.00   -0.16   -0.65   -1.38   -2.23   -3.09   -3.91   -4.65   -5.25   -5.63   -5.66   -5.21   -4.27   -2.91   -1.29    0.48    2.51    5.17    9.15
+   130.0    0.00   -0.16   -0.65   -1.38   -2.23   -3.09   -3.92   -4.66   -5.27   -5.65   -5.65   -5.18   -4.21   -2.83   -1.20    0.58    2.62    5.34    9.46
+   135.0    0.00   -0.16   -0.66   -1.38   -2.23   -3.09   -3.92   -4.68   -5.29   -5.66   -5.65   -5.16   -4.17   -2.77   -1.13    0.66    2.72    5.50    9.79
+   140.0    0.00   -0.16   -0.66   -1.39   -2.23   -3.09   -3.92   -4.68   -5.29   -5.66   -5.65   -5.14   -4.14   -2.73   -1.08    0.72    2.80    5.65   10.10
+   145.0    0.00   -0.16   -0.66   -1.39   -2.23   -3.09   -3.92   -4.67   -5.29   -5.67   -5.65   -5.15   -4.13   -2.72   -1.06    0.74    2.85    5.76   10.36
+   150.0    0.00   -0.17   -0.67   -1.39   -2.23   -3.08   -3.90   -4.65   -5.28   -5.67   -5.67   -5.17   -4.16   -2.74   -1.08    0.72    2.85    5.82   10.51
+   155.0    0.00   -0.17   -0.67   -1.40   -2.22   -3.06   -3.87   -4.62   -5.26   -5.66   -5.69   -5.21   -4.21   -2.80   -1.14    0.67    2.80    5.80   10.56
+   160.0    0.00   -0.17   -0.68   -1.40   -2.22   -3.04   -3.84   -4.59   -5.23   -5.66   -5.71   -5.26   -4.28   -2.88   -1.24    0.57    2.70    5.72   10.50
+   165.0    0.00   -0.18   -0.68   -1.41   -2.21   -3.02   -3.80   -4.55   -5.20   -5.66   -5.75   -5.33   -4.38   -2.99   -1.36    0.44    2.56    5.57   10.34
+   170.0    0.00   -0.18   -0.69   -1.41   -2.21   -3.00   -3.77   -4.50   -5.17   -5.65   -5.78   -5.40   -4.47   -3.11   -1.49    0.29    2.39    5.39   10.12
+   175.0    0.00   -0.18   -0.70   -1.42   -2.21   -2.99   -3.74   -4.47   -5.14   -5.65   -5.81   -5.46   -4.56   -3.21   -1.62    0.13    2.21    5.19    9.88
+   180.0    0.00   -0.19   -0.70   -1.42   -2.21   -2.97   -3.71   -4.44   -5.12   -5.65   -5.84   -5.51   -4.63   -3.30   -1.73   -0.01    2.05    5.01    9.67
+   185.0    0.00   -0.19   -0.71   -1.43   -2.21   -2.96   -3.69   -4.41   -5.11   -5.66   -5.86   -5.54   -4.67   -3.36   -1.81   -0.12    1.92    4.88    9.53
+   190.0    0.00   -0.19   -0.72   -1.44   -2.21   -2.96   -3.68   -4.40   -5.11   -5.66   -5.87   -5.55   -4.68   -3.37   -1.85   -0.19    1.84    4.83    9.49
+   195.0    0.00   -0.20   -0.73   -1.45   -2.22   -2.96   -3.68   -4.41   -5.11   -5.67   -5.87   -5.55   -4.66   -3.35   -1.84   -0.19    1.84    4.87    9.57
+   200.0    0.00   -0.20   -0.73   -1.46   -2.23   -2.97   -3.69   -4.42   -5.13   -5.68   -5.87   -5.52   -4.61   -3.30   -1.79   -0.14    1.92    5.02    9.76
+   205.0    0.00   -0.20   -0.74   -1.46   -2.23   -2.98   -3.70   -4.43   -5.14   -5.69   -5.86   -5.48   -4.55   -3.22   -1.70   -0.03    2.08    5.26   10.05
+   210.0    0.00   -0.20   -0.74   -1.47   -2.24   -2.99   -3.72   -4.46   -5.17   -5.70   -5.85   -5.44   -4.48   -3.12   -1.58    0.12    2.31    5.58   10.39
+   215.0    0.00   -0.21   -0.75   -1.47   -2.25   -3.00   -3.73   -4.47   -5.18   -5.71   -5.84   -5.41   -4.42   -3.03   -1.45    0.31    2.58    5.93   10.73
+   220.0    0.00   -0.21   -0.75   -1.48   -2.26   -3.01   -3.75   -4.49   -5.20   -5.71   -5.83   -5.38   -4.36   -2.95   -1.33    0.49    2.86    6.29   11.04
+   225.0    0.00   -0.21   -0.75   -1.48   -2.26   -3.02   -3.76   -4.50   -5.21   -5.72   -5.82   -5.36   -4.33   -2.90   -1.23    0.66    3.11    6.60   11.26
+   230.0    0.00   -0.21   -0.75   -1.48   -2.26   -3.02   -3.76   -4.51   -5.21   -5.72   -5.82   -5.35   -4.32   -2.87   -1.17    0.79    3.32    6.83   11.36
+   235.0    0.00   -0.21   -0.75   -1.48   -2.26   -3.02   -3.77   -4.51   -5.21   -5.71   -5.81   -5.36   -4.33   -2.88   -1.15    0.87    3.45    6.96   11.32
+   240.0    0.00   -0.21   -0.75   -1.48   -2.26   -3.02   -3.77   -4.51   -5.21   -5.71   -5.82   -5.37   -4.36   -2.92   -1.17    0.88    3.49    6.96   11.16
+   245.0    0.00   -0.21   -0.75   -1.47   -2.25   -3.02   -3.77   -4.51   -5.21   -5.71   -5.82   -5.39   -4.40   -2.97   -1.24    0.82    3.42    6.85   10.89
+   250.0    0.00   -0.21   -0.75   -1.47   -2.25   -3.02   -3.77   -4.52   -5.21   -5.70   -5.82   -5.41   -4.44   -3.04   -1.33    0.70    3.27    6.63   10.56
+   255.0    0.00   -0.21   -0.74   -1.47   -2.25   -3.02   -3.78   -4.53   -5.22   -5.71   -5.82   -5.42   -4.48   -3.11   -1.44    0.55    3.06    6.34   10.21
+   260.0    0.00   -0.21   -0.74   -1.46   -2.25   -3.03   -3.80   -4.55   -5.23   -5.71   -5.82   -5.42   -4.51   -3.17   -1.55    0.37    2.80    6.02    9.90
+   265.0    0.00   -0.21   -0.74   -1.46   -2.25   -3.04   -3.81   -4.57   -5.25   -5.72   -5.82   -5.42   -4.52   -3.22   -1.65    0.20    2.55    5.72    9.68
+   270.0    0.00   -0.21   -0.73   -1.45   -2.25   -3.05   -3.84   -4.60   -5.27   -5.74   -5.83   -5.42   -4.52   -3.24   -1.72    0.06    2.33    5.47    9.58
+   275.0    0.00   -0.21   -0.73   -1.45   -2.25   -3.06   -3.86   -4.62   -5.30   -5.76   -5.83   -5.41   -4.51   -3.25   -1.76   -0.03    2.18    5.32    9.62
+   280.0    0.00   -0.21   -0.73   -1.45   -2.25   -3.07   -3.88   -4.65   -5.32   -5.77   -5.84   -5.41   -4.50   -3.23   -1.76   -0.06    2.12    5.27    9.80
+   285.0    0.00   -0.21   -0.73   -1.45   -2.26   -3.08   -3.89   -4.67   -5.34   -5.79   -5.84   -5.41   -4.48   -3.20   -1.72   -0.02    2.16    5.34   10.10
+   290.0    0.00   -0.21   -0.73   -1.45   -2.26   -3.09   -3.90   -4.68   -5.35   -5.79   -5.85   -5.41   -4.48   -3.17   -1.64    0.09    2.28    5.52   10.48
+   295.0    0.00   -0.21   -0.72   -1.45   -2.26   -3.09   -3.90   -4.67   -5.34   -5.79   -5.86   -5.43   -4.48   -3.13   -1.55    0.24    2.48    5.77   10.90
+   300.0    0.00   -0.21   -0.72   -1.45   -2.26   -3.08   -3.89   -4.66   -5.33   -5.78   -5.87   -5.45   -4.49   -3.10   -1.44    0.43    2.73    6.06   11.31
+   305.0    0.00   -0.21   -0.72   -1.45   -2.26   -3.08   -3.87   -4.63   -5.30   -5.77   -5.87   -5.47   -4.51   -3.08   -1.34    0.62    2.99    6.35   11.67
+   310.0    0.00   -0.20   -0.72   -1.45   -2.26   -3.07   -3.85   -4.59   -5.26   -5.74   -5.88   -5.50   -4.54   -3.07   -1.25    0.80    3.22    6.59   11.93
+   315.0    0.00   -0.20   -0.73   -1.45   -2.25   -3.05   -3.82   -4.55   -5.21   -5.71   -5.87   -5.53   -4.58   -3.08   -1.19    0.93    3.40    6.76   12.07
+   320.0    0.00   -0.20   -0.73   -1.45   -2.25   -3.04   -3.79   -4.51   -5.17   -5.68   -5.87   -5.55   -4.61   -3.09   -1.16    1.01    3.50    6.83   12.09
+   325.0    0.00   -0.20   -0.73   -1.45   -2.25   -3.03   -3.77   -4.47   -5.13   -5.65   -5.86   -5.56   -4.63   -3.10   -1.16    1.03    3.51    6.80   12.00
+   330.0    0.00   -0.20   -0.73   -1.46   -2.25   -3.03   -3.75   -4.45   -5.10   -5.63   -5.85   -5.56   -4.64   -3.12   -1.19    0.98    3.42    6.66   11.81
+   335.0    0.00   -0.20   -0.73   -1.46   -2.25   -3.02   -3.74   -4.43   -5.08   -5.61   -5.83   -5.56   -4.65   -3.15   -1.24    0.88    3.26    6.44   11.55
+   340.0    0.00   -0.20   -0.73   -1.47   -2.26   -3.02   -3.73   -4.42   -5.07   -5.60   -5.82   -5.54   -4.64   -3.17   -1.32    0.73    3.03    6.17   11.26
+   345.0    0.00   -0.20   -0.74   -1.47   -2.26   -3.02   -3.73   -4.42   -5.07   -5.59   -5.82   -5.53   -4.64   -3.19   -1.41    0.55    2.78    5.88   10.98
+   350.0    0.00   -0.20   -0.74   -1.47   -2.27   -3.02   -3.73   -4.42   -5.07   -5.60   -5.81   -5.52   -4.63   -3.22   -1.50    0.36    2.52    5.60   10.73
+   355.0    0.00   -0.20   -0.74   -1.48   -2.27   -3.03   -3.74   -4.43   -5.08   -5.61   -5.81   -5.51   -4.62   -3.24   -1.60    0.19    2.29    5.37   10.53
+   360.0    0.00   -0.20   -0.74   -1.48   -2.27   -3.03   -3.74   -4.43   -5.09   -5.62   -5.81   -5.50   -4.62   -3.27   -1.68    0.04    2.11    5.22   10.40
+   G02                                                      END OF FREQUENCY    
+   R01                                                      START OF FREQUENCY  
+      0.20     -0.14     89.33                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.23   -0.91   -1.97   -3.33   -4.87   -6.40   -7.73   -8.73   -9.24   -9.23   -8.65   -7.50   -5.79   -3.46   -0.38    3.60    8.40   13.75
+     0.0    0.00   -0.12   -0.77   -1.90   -3.41   -5.15   -6.86   -8.29   -9.24   -9.60   -9.38   -8.64   -7.45   -5.73   -3.32   -0.06    4.11    8.90   13.60
+     5.0    0.00   -0.13   -0.77   -1.90   -3.43   -5.18   -6.88   -8.31   -9.25   -9.60   -9.38   -8.63   -7.41   -5.68   -3.26    0.01    4.17    8.98   13.76
+    10.0    0.00   -0.13   -0.78   -1.91   -3.43   -5.18   -6.89   -8.32   -9.26   -9.61   -9.37   -8.62   -7.38   -5.63   -3.22    0.04    4.18    9.01   13.95
+    15.0    0.00   -0.13   -0.77   -1.91   -3.43   -5.18   -6.88   -8.31   -9.26   -9.61   -9.39   -8.63   -7.38   -5.61   -3.21    0.02    4.13    9.01   14.15
+    20.0    0.00   -0.13   -0.77   -1.91   -3.44   -5.17   -6.86   -8.29   -9.25   -9.62   -9.41   -8.64   -7.38   -5.61   -3.21   -0.04    4.01    8.93   14.33
+    25.0    0.00   -0.12   -0.78   -1.90   -3.43   -5.14   -6.82   -8.25   -9.22   -9.62   -9.43   -8.67   -7.40   -5.62   -3.23   -0.11    3.89    8.80   14.44
+    30.0    0.00   -0.12   -0.77   -1.90   -3.39   -5.10   -6.76   -8.20   -9.18   -9.61   -9.44   -8.71   -7.43   -5.63   -3.26   -0.19    3.73    8.63   14.47
+    35.0    0.00   -0.13   -0.77   -1.89   -3.37   -5.06   -6.70   -8.11   -9.11   -9.58   -9.46   -8.73   -7.45   -5.63   -3.26   -0.24    3.59    8.44   14.40
+    40.0    0.00   -0.13   -0.78   -1.88   -3.34   -4.99   -6.61   -8.02   -9.03   -9.54   -9.45   -8.76   -7.47   -5.64   -3.26   -0.27    3.49    8.26   14.26
+    45.0    0.00   -0.13   -0.78   -1.87   -3.31   -4.92   -6.52   -7.92   -8.95   -9.48   -9.43   -8.76   -7.48   -5.62   -3.22   -0.26    3.42    8.11   14.05
+    50.0    0.00   -0.15   -0.77   -1.86   -3.27   -4.85   -6.42   -7.80   -8.84   -9.41   -9.39   -8.75   -7.48   -5.60   -3.17   -0.21    3.43    7.99   13.81
+    55.0    0.00   -0.15   -0.77   -1.85   -3.24   -4.79   -6.33   -7.68   -8.73   -9.32   -9.34   -8.73   -7.46   -5.57   -3.10   -0.12    3.49    7.96   13.58
+    60.0    0.00   -0.16   -0.78   -1.83   -3.20   -4.72   -6.24   -7.58   -8.62   -9.22   -9.28   -8.69   -7.42   -5.53   -3.04   -0.02    3.58    7.98   13.42
+    65.0    0.00   -0.16   -0.78   -1.83   -3.17   -4.66   -6.15   -7.48   -8.51   -9.13   -9.20   -8.64   -7.40   -5.49   -2.99    0.08    3.71    8.07   13.33
+    70.0    0.00   -0.17   -0.78   -1.81   -3.15   -4.62   -6.09   -7.39   -8.42   -9.03   -9.12   -8.57   -7.35   -5.47   -2.94    0.15    3.84    8.21   13.32
+    75.0    0.00   -0.17   -0.79   -1.81   -3.11   -4.58   -6.03   -7.32   -8.34   -8.95   -9.03   -8.52   -7.32   -5.46   -2.94    0.18    3.95    8.37   13.39
+    80.0    0.00   -0.18   -0.78   -1.81   -3.11   -4.55   -6.00   -7.29   -8.29   -8.88   -8.97   -8.46   -7.30   -5.48   -2.99    0.16    3.99    8.51   13.52
+    85.0    0.00   -0.18   -0.79   -1.81   -3.09   -4.55   -5.98   -7.26   -8.24   -8.83   -8.90   -8.41   -7.29   -5.52   -3.08    0.08    3.99    8.62   13.68
+    90.0    0.00   -0.19   -0.80   -1.81   -3.10   -4.54   -5.98   -7.25   -8.23   -8.79   -8.87   -8.38   -7.30   -5.60   -3.21   -0.07    3.90    8.64   13.82
+    95.0    0.00   -0.20   -0.81   -1.82   -3.10   -4.55   -5.98   -7.26   -8.24   -8.79   -8.85   -8.37   -7.33   -5.69   -3.38   -0.28    3.72    8.57   13.90
+   100.0    0.00   -0.20   -0.82   -1.83   -3.11   -4.56   -6.00   -7.29   -8.25   -8.81   -8.86   -8.38   -7.36   -5.79   -3.55   -0.51    3.50    8.44   13.89
+   105.0    0.00   -0.21   -0.83   -1.84   -3.13   -4.57   -6.02   -7.31   -8.29   -8.84   -8.88   -8.41   -7.42   -5.90   -3.75   -0.77    3.22    8.22   13.79
+   110.0    0.00   -0.22   -0.86   -1.85   -3.14   -4.58   -6.05   -7.35   -8.34   -8.88   -8.91   -8.44   -7.48   -6.00   -3.91   -1.02    2.93    7.94   13.58
+   115.0    0.00   -0.22   -0.87   -1.87   -3.16   -4.61   -6.07   -7.38   -8.37   -8.92   -8.95   -8.49   -7.53   -6.09   -4.06   -1.21    2.67    7.65   13.31
+   120.0    0.00   -0.24   -0.89   -1.89   -3.18   -4.64   -6.10   -7.42   -8.41   -8.97   -9.01   -8.54   -7.59   -6.15   -4.15   -1.35    2.45    7.36   13.01
+   125.0    0.00   -0.25   -0.91   -1.91   -3.20   -4.65   -6.12   -7.44   -8.45   -9.01   -9.05   -8.58   -7.62   -6.19   -4.18   -1.42    2.32    7.13   12.72
+   130.0    0.00   -0.26   -0.93   -1.94   -3.22   -4.68   -6.15   -7.46   -8.47   -9.04   -9.10   -8.62   -7.65   -6.19   -4.17   -1.42    2.27    6.99   12.50
+   135.0    0.00   -0.27   -0.94   -1.97   -3.26   -4.70   -6.17   -7.48   -8.49   -9.07   -9.12   -8.66   -7.66   -6.17   -4.10   -1.33    2.33    6.96   12.36
+   140.0    0.00   -0.28   -0.96   -2.00   -3.29   -4.74   -6.19   -7.50   -8.51   -9.09   -9.15   -8.67   -7.67   -6.14   -4.01   -1.19    2.46    7.02   12.35
+   145.0    0.00   -0.28   -0.98   -2.03   -3.32   -4.76   -6.21   -7.51   -8.50   -9.09   -9.15   -8.68   -7.66   -6.08   -3.88   -1.01    2.68    7.20   12.45
+   150.0    0.00   -0.30   -1.00   -2.05   -3.35   -4.79   -6.23   -7.52   -8.51   -9.09   -9.17   -8.69   -7.65   -6.01   -3.76   -0.80    2.92    7.44   12.65
+   155.0    0.00   -0.30   -1.02   -2.08   -3.38   -4.83   -6.25   -7.53   -8.51   -9.09   -9.16   -8.69   -7.64   -5.98   -3.63   -0.60    3.20    7.73   12.90
+   160.0    0.00   -0.31   -1.04   -2.11   -3.41   -4.85   -6.27   -7.54   -8.51   -9.08   -9.16   -8.69   -7.63   -5.93   -3.53   -0.40    3.46    8.01   13.15
+   165.0    0.00   -0.32   -1.07   -2.13   -3.44   -4.88   -6.30   -7.56   -8.52   -9.09   -9.17   -8.71   -7.64   -5.91   -3.45   -0.25    3.66    8.23   13.37
+   170.0    0.00   -0.32   -1.08   -2.14   -3.47   -4.90   -6.33   -7.57   -8.54   -9.09   -9.18   -8.72   -7.64   -5.89   -3.39   -0.15    3.82    8.41   13.53
+   175.0    0.00   -0.33   -1.09   -2.17   -3.48   -4.92   -6.35   -7.59   -8.55   -9.11   -9.20   -8.74   -7.66   -5.89   -3.37   -0.10    3.90    8.49   13.58
+   180.0    0.00   -0.33   -1.10   -2.18   -3.51   -4.95   -6.37   -7.61   -8.57   -9.14   -9.22   -8.76   -7.68   -5.90   -3.36   -0.08    3.91    8.50   13.54
+   185.0    0.00   -0.34   -1.11   -2.19   -3.52   -4.95   -6.38   -7.63   -8.59   -9.16   -9.25   -8.79   -7.69   -5.91   -3.39   -0.10    3.87    8.42   13.42
+   190.0    0.00   -0.34   -1.12   -2.20   -3.52   -4.96   -6.39   -7.64   -8.61   -9.19   -9.26   -8.78   -7.68   -5.90   -3.41   -0.15    3.77    8.30   13.26
+   195.0    0.00   -0.35   -1.11   -2.20   -3.52   -4.96   -6.39   -7.65   -8.64   -9.20   -9.28   -8.78   -7.67   -5.89   -3.42   -0.22    3.67    8.17   13.13
+   200.0    0.00   -0.35   -1.11   -2.20   -3.51   -4.95   -6.36   -7.65   -8.64   -9.22   -9.27   -8.76   -7.64   -5.86   -3.43   -0.28    3.56    8.06   13.07
+   205.0    0.00   -0.34   -1.11   -2.19   -3.50   -4.94   -6.36   -7.64   -8.64   -9.21   -9.25   -8.72   -7.57   -5.82   -3.43   -0.34    3.48    8.01   13.13
+   210.0    0.00   -0.35   -1.10   -2.18   -3.49   -4.91   -6.34   -7.62   -8.61   -9.19   -9.21   -8.65   -7.50   -5.75   -3.40   -0.37    3.44    8.06   13.33
+   215.0    0.00   -0.35   -1.10   -2.18   -3.46   -4.90   -6.31   -7.60   -8.59   -9.14   -9.16   -8.57   -7.40   -5.68   -3.38   -0.39    3.44    8.18   13.68
+   220.0    0.00   -0.34   -1.09   -2.16   -3.44   -4.86   -6.29   -7.57   -8.56   -9.10   -9.08   -8.46   -7.29   -5.60   -3.34   -0.37    3.50    8.42   14.17
+   225.0    0.00   -0.34   -1.08   -2.14   -3.43   -4.83   -6.27   -7.55   -8.52   -9.04   -8.98   -8.35   -7.17   -5.51   -3.30   -0.34    3.62    8.72   14.75
+   230.0    0.00   -0.33   -1.07   -2.13   -3.40   -4.81   -6.24   -7.52   -8.48   -8.97   -8.89   -8.25   -7.08   -5.43   -3.25   -0.27    3.78    9.08   15.34
+   235.0    0.00   -0.32   -1.06   -2.11   -3.39   -4.79   -6.22   -7.50   -8.44   -8.92   -8.82   -8.15   -6.98   -5.36   -3.19   -0.20    3.95    9.44   15.89
+   240.0    0.00   -0.32   -1.05   -2.09   -3.38   -4.78   -6.21   -7.48   -8.41   -8.86   -8.74   -8.07   -6.92   -5.30   -3.14   -0.12    4.14    9.78   16.32
+   245.0    0.00   -0.31   -1.03   -2.08   -3.36   -4.77   -6.20   -7.46   -8.38   -8.82   -8.69   -8.02   -6.87   -5.28   -3.10   -0.01    4.34   10.05   16.58
+   250.0    0.00   -0.30   -1.02   -2.05   -3.34   -4.77   -6.20   -7.46   -8.37   -8.81   -8.67   -7.99   -6.86   -5.26   -3.05    0.08    4.50   10.23   16.64
+   255.0    0.00   -0.30   -1.00   -2.04   -3.33   -4.78   -6.21   -7.48   -8.38   -8.80   -8.67   -8.00   -6.87   -5.27   -3.03    0.17    4.62   10.32   16.47
+   260.0    0.00   -0.28   -0.98   -2.02   -3.33   -4.78   -6.23   -7.50   -8.42   -8.84   -8.71   -8.06   -6.93   -5.29   -3.01    0.24    4.70   10.28   16.13
+   265.0    0.00   -0.27   -0.97   -2.01   -3.32   -4.78   -6.25   -7.53   -8.45   -8.88   -8.77   -8.13   -7.00   -5.34   -3.00    0.30    4.74   10.15   15.63
+   270.0    0.00   -0.27   -0.94   -2.00   -3.31   -4.79   -6.27   -7.57   -8.51   -8.95   -8.86   -8.23   -7.09   -5.39   -3.00    0.32    4.70    9.93   15.07
+   275.0    0.00   -0.25   -0.93   -1.98   -3.31   -4.80   -6.30   -7.62   -8.57   -9.05   -8.98   -8.35   -7.19   -5.45   -3.02    0.32    4.63    9.66   14.49
+   280.0    0.00   -0.24   -0.91   -1.96   -3.31   -4.82   -6.33   -7.67   -8.65   -9.14   -9.09   -8.47   -7.30   -5.54   -3.06    0.27    4.50    9.36   13.95
+   285.0    0.00   -0.24   -0.90   -1.95   -3.30   -4.83   -6.37   -7.73   -8.74   -9.26   -9.21   -8.60   -7.41   -5.62   -3.13    0.18    4.33    9.04   13.54
+   290.0    0.00   -0.22   -0.87   -1.93   -3.29   -4.84   -6.40   -7.78   -8.81   -9.36   -9.34   -8.72   -7.52   -5.70   -3.21    0.06    4.13    8.76   13.24
+   295.0    0.00   -0.21   -0.86   -1.91   -3.29   -4.85   -6.44   -7.84   -8.89   -9.45   -9.43   -8.82   -7.62   -5.80   -3.31   -0.09    3.92    8.50   13.11
+   300.0    0.00   -0.21   -0.84   -1.91   -3.29   -4.86   -6.47   -7.89   -8.96   -9.54   -9.52   -8.92   -7.69   -5.89   -3.43   -0.25    3.69    8.30   13.10
+   305.0    0.00   -0.19   -0.83   -1.89   -3.29   -4.88   -6.50   -7.94   -9.03   -9.61   -9.58   -8.98   -7.77   -5.97   -3.54   -0.41    3.50    8.14   13.18
+   310.0    0.00   -0.19   -0.82   -1.88   -3.28   -4.89   -6.54   -7.99   -9.08   -9.65   -9.64   -9.02   -7.81   -6.04   -3.66   -0.57    3.33    8.05   13.32
+   315.0    0.00   -0.17   -0.81   -1.87   -3.29   -4.91   -6.56   -8.02   -9.12   -9.69   -9.66   -9.03   -7.84   -6.09   -3.74   -0.69    3.22    7.99   13.45
+   320.0    0.00   -0.16   -0.80   -1.86   -3.29   -4.93   -6.60   -8.06   -9.15   -9.70   -9.66   -9.02   -7.84   -6.12   -3.80   -0.77    3.15    7.99   13.58
+   325.0    0.00   -0.16   -0.79   -1.86   -3.30   -4.95   -6.62   -8.10   -9.17   -9.70   -9.64   -9.00   -7.83   -6.13   -3.83   -0.79    3.15    8.02   13.64
+   330.0    0.00   -0.15   -0.78   -1.85   -3.31   -4.97   -6.66   -8.13   -9.18   -9.69   -9.60   -8.96   -7.80   -6.11   -3.83   -0.76    3.21    8.10   13.65
+   335.0    0.00   -0.15   -0.78   -1.86   -3.33   -5.00   -6.69   -8.16   -9.19   -9.67   -9.56   -8.91   -7.75   -6.08   -3.78   -0.69    3.32    8.20   13.61
+   340.0    0.00   -0.14   -0.77   -1.86   -3.34   -5.04   -6.73   -8.18   -9.20   -9.65   -9.51   -8.85   -7.69   -6.02   -3.71   -0.59    3.47    8.33   13.55
+   345.0    0.00   -0.14   -0.77   -1.87   -3.37   -5.07   -6.76   -8.21   -9.20   -9.63   -9.47   -8.79   -7.63   -5.95   -3.61   -0.44    3.64    8.47   13.49
+   350.0    0.00   -0.13   -0.77   -1.88   -3.38   -5.10   -6.81   -8.24   -9.22   -9.61   -9.43   -8.73   -7.56   -5.86   -3.51   -0.30    3.82    8.62   13.46
+   355.0    0.00   -0.13   -0.77   -1.89   -3.40   -5.12   -6.84   -8.27   -9.22   -9.61   -9.39   -8.69   -7.49   -5.80   -3.40   -0.17    3.99    8.77   13.50
+   360.0    0.00   -0.12   -0.77   -1.90   -3.41   -5.15   -6.86   -8.29   -9.24   -9.60   -9.38   -8.64   -7.45   -5.73   -3.32   -0.06    4.11    8.90   13.60
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+      0.21     -0.16    119.33                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.15   -0.61   -1.29   -2.11   -3.01   -3.95   -4.88   -5.69   -6.28   -6.49   -6.22   -5.49   -4.35   -2.94   -1.26    0.87    3.77    7.67
+     0.0    0.00   -0.17   -0.61   -1.27   -2.07   -2.99   -3.98   -4.98   -5.91   -6.58   -6.80   -6.46   -5.57   -4.26   -2.76   -1.15    0.68    3.16    6.82
+     5.0    0.00   -0.18   -0.64   -1.32   -2.13   -3.04   -4.02   -5.02   -5.91   -6.57   -6.80   -6.48   -5.63   -4.38   -2.90   -1.26    0.67    3.25    6.85
+    10.0    0.00   -0.19   -0.67   -1.36   -2.20   -3.11   -4.07   -5.05   -5.91   -6.55   -6.78   -6.49   -5.71   -4.50   -3.03   -1.35    0.70    3.41    6.98
+    15.0    0.00   -0.20   -0.69   -1.41   -2.25   -3.16   -4.11   -5.05   -5.90   -6.52   -6.75   -6.51   -5.76   -4.62   -3.19   -1.46    0.73    3.59    7.17
+    20.0    0.00   -0.21   -0.72   -1.44   -2.30   -3.21   -4.14   -5.05   -5.87   -6.47   -6.72   -6.50   -5.82   -4.73   -3.32   -1.54    0.74    3.76    7.40
+    25.0    0.00   -0.21   -0.74   -1.47   -2.34   -3.25   -4.17   -5.04   -5.83   -6.42   -6.68   -6.49   -5.85   -4.82   -3.44   -1.65    0.73    3.89    7.61
+    30.0    0.00   -0.22   -0.76   -1.51   -2.38   -3.27   -4.16   -5.01   -5.79   -6.37   -6.62   -6.46   -5.86   -4.87   -3.52   -1.73    0.69    3.94    7.79
+    35.0    0.00   -0.22   -0.77   -1.53   -2.39   -3.29   -4.16   -4.99   -5.74   -6.31   -6.57   -6.42   -5.84   -4.87   -3.57   -1.82    0.60    3.92    7.90
+    40.0    0.00   -0.23   -0.78   -1.54   -2.41   -3.29   -4.14   -4.95   -5.69   -6.27   -6.52   -6.37   -5.79   -4.85   -3.57   -1.90    0.47    3.81    7.92
+    45.0    0.00   -0.23   -0.79   -1.56   -2.41   -3.28   -4.12   -4.92   -5.67   -6.23   -6.48   -6.31   -5.72   -4.78   -3.56   -1.96    0.32    3.63    7.88
+    50.0    0.00   -0.24   -0.79   -1.55   -2.40   -3.25   -4.09   -4.90   -5.63   -6.20   -6.45   -6.26   -5.63   -4.70   -3.51   -2.01    0.15    3.42    7.77
+    55.0    0.00   -0.23   -0.78   -1.55   -2.39   -3.23   -4.06   -4.87   -5.62   -6.19   -6.42   -6.20   -5.55   -4.58   -3.45   -2.04   -2.63    3.17    7.59
+    60.0    0.00   -0.24   -0.79   -1.54   -2.37   -3.20   -4.03   -4.86   -5.62   -6.19   -6.41   -6.16   -5.47   -4.48   -3.38   -2.06   -0.15    2.93    7.39
+    65.0    0.00   -0.24   -0.77   -1.52   -2.34   -3.18   -4.02   -4.85   -5.62   -6.20   -6.40   -6.13   -5.41   -4.41   -3.32   -2.07   -0.27    2.70    7.18
+    70.0    0.00   -0.24   -0.77   -1.51   -2.31   -3.15   -4.00   -4.85   -5.63   -6.21   -6.41   -6.11   -5.37   -4.37   -3.28   -2.08   -0.36    2.52    6.96
+    75.0    0.00   -0.23   -0.76   -1.48   -2.29   -3.13   -4.00   -4.86   -5.65   -6.23   -6.42   -6.11   -5.35   -4.36   -3.28   -2.11   -0.43    2.39    6.75
+    80.0    0.00   -0.23   -0.75   -1.46   -2.27   -3.12   -4.00   -4.87   -5.67   -6.25   -6.43   -6.12   -5.37   -4.37   -3.30   -2.12   -0.47    2.29    6.55
+    85.0    0.00   -0.22   -0.73   -1.44   -2.25   -3.12   -4.01   -4.90   -5.70   -6.27   -6.44   -6.13   -5.41   -4.43   -3.36   -2.16   -0.49    2.23    6.36
+    90.0    0.00   -0.22   -0.71   -1.41   -2.23   -3.12   -4.02   -4.92   -5.73   -6.27   -6.45   -6.15   -5.45   -4.50   -3.42   -2.20   -0.50    2.18    6.19
+    95.0    0.00   -0.20   -0.70   -1.39   -2.22   -3.12   -4.06   -4.97   -5.75   -6.28   -6.44   -6.17   -5.50   -4.57   -3.50   -2.24   -0.49    2.18    6.03
+   100.0    0.00   -0.20   -0.67   -1.37   -2.20   -3.12   -4.08   -5.00   -5.78   -6.29   -6.44   -6.17   -5.53   -4.64   -3.57   -2.27   -0.46    2.19    5.89
+   105.0    0.00   -0.20   -0.67   -1.35   -2.19   -3.14   -4.11   -5.04   -5.81   -6.30   -6.43   -6.15   -5.54   -4.67   -3.59   -2.26   -0.43    2.21    5.79
+   110.0    0.00   -0.19   -0.65   -1.33   -2.18   -3.14   -4.12   -5.07   -5.83   -6.30   -6.41   -6.14   -5.53   -4.67   -3.60   -2.22   -0.35    2.27    5.76
+   115.0    0.00   -0.18   -0.63   -1.31   -2.17   -3.14   -4.15   -5.09   -5.83   -6.30   -6.39   -6.10   -5.50   -4.64   -3.54   -2.13   -0.24    2.37    5.79
+   120.0    0.00   -0.18   -0.61   -1.28   -2.16   -3.13   -4.15   -5.10   -5.85   -6.29   -6.37   -6.07   -5.45   -4.56   -3.43   -2.00   -0.08    2.52    5.92
+   125.0    0.00   -0.17   -0.60   -1.27   -2.13   -3.13   -4.15   -5.11   -5.85   -6.28   -6.35   -6.03   -5.40   -4.47   -3.30   -1.82    0.13    2.70    6.15
+   130.0    0.00   -0.17   -0.59   -1.25   -2.11   -3.10   -4.13   -5.08   -5.84   -6.28   -6.34   -6.01   -5.34   -4.36   -3.12   -1.59    0.37    2.97    6.46
+   135.0    0.00   -0.16   -0.59   -1.23   -2.09   -3.07   -4.10   -5.06   -5.82   -6.28   -6.35   -6.01   -5.30   -4.26   -2.95   -1.35    0.64    3.26    6.85
+   140.0    0.00   -0.15   -0.57   -1.23   -2.07   -3.04   -4.05   -5.02   -5.79   -6.27   -6.36   -6.02   -5.28   -4.18   -2.78   -1.11    0.93    3.57    7.27
+   145.0    0.00   -0.15   -0.56   -1.21   -2.05   -3.00   -4.02   -4.96   -5.75   -6.27   -6.39   -6.07   -5.29   -4.13   -2.64   -0.89    1.21    3.88    7.69
+   150.0    0.00   -0.15   -0.56   -1.20   -2.02   -2.97   -3.96   -4.90   -5.71   -6.27   -6.44   -6.13   -5.34   -4.12   -2.54   -0.72    1.44    4.17    8.04
+   155.0    0.00   -0.14   -0.55   -1.19   -2.00   -2.93   -3.90   -4.84   -5.67   -6.26   -6.48   -6.21   -5.42   -4.15   -2.49   -0.59    1.62    4.39    8.32
+   160.0    0.00   -0.14   -0.55   -1.19   -1.99   -2.89   -3.85   -4.80   -5.63   -6.26   -6.52   -6.29   -5.50   -4.20   -2.52   -0.54    1.71    4.52    8.45
+   165.0    0.00   -0.14   -0.55   -1.19   -1.97   -2.87   -3.81   -4.76   -5.60   -6.27   -6.57   -6.38   -5.62   -4.30   -2.58   -0.56    1.74    4.55    8.46
+   170.0    0.00   -0.14   -0.55   -1.18   -1.97   -2.85   -3.78   -4.71   -5.58   -6.27   -6.61   -6.45   -5.71   -4.41   -2.67   -0.64    1.67    4.49    8.32
+   175.0    0.00   -0.13   -0.55   -1.19   -1.98   -2.86   -3.78   -4.71   -5.57   -6.28   -6.64   -6.51   -5.79   -4.51   -2.80   -0.77    1.54    4.35    8.07
+   180.0    0.00   -0.14   -0.55   -1.18   -1.98   -2.85   -3.77   -4.70   -5.57   -6.28   -6.66   -6.53   -5.84   -4.59   -2.91   -0.92    1.37    4.15    7.76
+   185.0    0.00   -0.13   -0.55   -1.19   -1.99   -2.86   -3.78   -4.70   -5.58   -6.29   -6.66   -6.53   -5.85   -4.63   -3.01   -1.07    1.18    3.93    7.45
+   190.0    0.00   -0.12   -0.55   -1.20   -2.00   -2.87   -3.79   -4.72   -5.60   -6.29   -6.65   -6.50   -5.82   -4.63   -3.06   -1.21    1.00    3.74    7.19
+   195.0    0.00   -0.13   -0.56   -1.21   -2.01   -2.88   -3.81   -4.74   -5.61   -6.30   -6.61   -6.45   -5.75   -4.58   -3.08   -1.29    0.86    3.60    7.05
+   200.0    0.00   -0.13   -0.55   -1.22   -2.01   -2.89   -3.82   -4.76   -5.63   -6.29   -6.58   -6.37   -5.63   -4.49   -3.05   -1.33    0.78    3.55    7.05
+   205.0    0.00   -0.13   -0.56   -1.21   -2.00   -2.88   -3.81   -4.75   -5.63   -6.28   -6.53   -6.27   -5.51   -4.37   -2.97   -1.32    0.77    3.60    7.22
+   210.0    0.00   -0.12   -0.56   -1.21   -2.00   -2.87   -3.81   -4.76   -5.63   -6.26   -6.48   -6.17   -5.37   -4.22   -2.85   -1.26    0.82    3.75    7.54
+   215.0    0.00   -0.13   -0.56   -1.20   -1.99   -2.85   -3.78   -4.73   -5.61   -6.23   -6.42   -6.08   -5.24   -4.07   -2.72   -1.15    0.93    3.96    7.98
+   220.0    0.00   -0.12   -0.55   -1.20   -1.98   -2.83   -3.76   -4.70   -5.58   -6.20   -6.37   -5.99   -5.11   -3.93   -2.60   -1.05    1.07    4.23    8.49
+   225.0    0.00   -0.12   -0.55   -1.19   -1.96   -2.81   -3.72   -4.66   -5.54   -6.16   -6.32   -5.93   -5.02   -3.83   -2.48   -0.94    1.21    4.50    9.01
+   230.0    0.00   -0.12   -0.54   -1.18   -1.94   -2.77   -3.67   -4.62   -5.50   -6.12   -6.29   -5.87   -4.96   -3.75   -2.40   -0.86    1.33    4.73    9.45
+   235.0    0.00   -0.11   -0.54   -1.17   -1.92   -2.74   -3.64   -4.58   -5.46   -6.09   -6.25   -5.85   -4.93   -3.71   -2.36   -0.79    1.42    4.89    9.76
+   240.0    0.00   -0.11   -0.54   -1.17   -1.91   -2.73   -3.62   -4.54   -5.42   -6.06   -6.24   -5.84   -4.93   -3.72   -2.35   -0.78    1.46    4.96    9.90
+   245.0    0.00   -0.11   -0.54   -1.15   -1.90   -2.72   -3.60   -4.52   -5.41   -6.04   -6.23   -5.85   -4.96   -3.75   -2.40   -0.81    1.43    4.94    9.84
+   250.0    0.00   -0.11   -0.53   -1.15   -1.90   -2.72   -3.60   -4.53   -5.40   -6.02   -6.22   -5.87   -5.01   -3.82   -2.47   -0.88    1.36    4.82    9.62
+   255.0    0.00   -0.11   -0.52   -1.16   -1.91   -2.73   -3.63   -4.55   -5.41   -6.03   -6.23   -5.90   -5.07   -3.90   -2.57   -0.96    1.28    4.65    9.25
+   260.0    0.00   -0.11   -0.52   -1.15   -1.93   -2.77   -3.67   -4.59   -5.44   -6.04   -6.25   -5.93   -5.14   -4.00   -2.66   -1.04    1.18    4.44    8.79
+   265.0    0.00   -0.11   -0.52   -1.16   -1.94   -2.81   -3.72   -4.64   -5.48   -6.07   -6.26   -5.96   -5.21   -4.10   -2.75   -1.11    1.11    4.26    8.32
+   270.0    0.00   -0.11   -0.51   -1.16   -1.96   -2.85   -3.80   -4.72   -5.52   -6.10   -6.29   -6.01   -5.28   -4.19   -2.83   -1.15    1.08    4.12    7.90
+   275.0    0.00   -0.11   -0.51   -1.16   -1.98   -2.90   -3.86   -4.77   -5.58   -6.14   -6.31   -6.04   -5.34   -4.27   -2.89   -1.14    1.11    4.07    7.60
+   280.0    0.00   -0.11   -0.51   -1.16   -1.99   -2.94   -3.92   -4.84   -5.62   -6.16   -6.34   -6.09   -5.41   -4.33   -2.91   -1.10    1.21    4.10    7.44
+   285.0    0.00   -0.11   -0.50   -1.16   -2.01   -2.97   -3.96   -4.90   -5.67   -6.19   -6.36   -6.12   -5.44   -4.37   -2.90   -1.01    1.36    4.23    7.44
+   290.0    0.00   -0.11   -0.50   -1.16   -2.01   -2.99   -3.99   -4.93   -5.70   -6.22   -6.39   -6.15   -5.50   -4.40   -2.87   -0.90    1.54    4.43    7.60
+   295.0    0.00   -0.11   -0.49   -1.15   -2.01   -2.99   -4.00   -4.94   -5.72   -6.24   -6.42   -6.20   -5.53   -4.41   -2.83   -0.78    1.74    4.66    7.87
+   300.0    0.00   -0.11   -0.48   -1.14   -2.00   -2.97   -3.99   -4.95   -5.73   -6.25   -6.44   -6.24   -5.56   -4.40   -2.76   -0.64    1.92    4.88    8.19
+   305.0    0.00   -0.11   -0.48   -1.13   -1.98   -2.95   -3.97   -4.93   -5.73   -6.27   -6.47   -6.26   -5.58   -4.38   -2.69   -0.54    2.06    5.05    8.52
+   310.0    0.00   -0.10   -0.48   -1.12   -1.96   -2.92   -3.94   -4.90   -5.72   -6.28   -6.51   -6.29   -5.59   -4.35   -2.62   -0.45    2.12    5.13    8.78
+   315.0    0.00   -0.10   -0.49   -1.11   -1.93   -2.87   -3.89   -4.87   -5.70   -6.30   -6.53   -6.32   -5.59   -4.32   -2.56   -0.41    2.11    5.10    8.92
+   320.0    0.00   -0.11   -0.49   -1.10   -1.90   -2.84   -3.84   -4.83   -5.70   -6.32   -6.58   -6.34   -5.57   -4.27   -2.51   -0.41    2.03    4.97    8.93
+   325.0    0.00   -0.12   -0.50   -1.10   -1.89   -2.81   -3.81   -4.81   -5.70   -6.35   -6.61   -6.36   -5.54   -4.20   -2.47   -0.44    1.87    4.74    8.80
+   330.0    0.00   -0.12   -0.51   -1.11   -1.88   -2.80   -3.79   -4.80   -5.72   -6.39   -6.65   -6.37   -5.52   -4.15   -2.45   -0.51    1.65    4.42    8.53
+   335.0    0.00   -0.13   -0.52   -1.11   -1.88   -2.79   -3.78   -4.81   -5.74   -6.43   -6.68   -6.38   -5.50   -4.12   -2.43   -0.60    1.43    4.08    8.19
+   340.0    0.00   -0.13   -0.53   -1.14   -1.91   -2.80   -3.79   -4.82   -5.77   -6.47   -6.72   -6.39   -5.47   -4.10   -2.45   -0.71    1.19    3.74    7.79
+   345.0    0.00   -0.14   -0.56   -1.16   -1.93   -2.83   -3.82   -4.86   -5.81   -6.50   -6.75   -6.41   -5.48   -4.10   -2.50   -0.83    1.00    3.46    7.43
+   350.0    0.00   -0.15   -0.57   -1.19   -1.98   -2.87   -3.86   -4.90   -5.84   -6.54   -6.77   -6.43   -5.49   -4.13   -2.56   -0.95    0.83    3.25    7.12
+   355.0    0.00   -0.16   -0.59   -1.23   -2.02   -2.93   -3.92   -4.95   -5.87   -6.57   -6.79   -6.44   -5.53   -4.18   -2.65   -1.05    0.73    3.15    6.91
+   360.0    0.00   -0.17   -0.61   -1.27   -2.07   -2.99   -3.98   -4.98   -5.91   -6.58   -6.80   -6.46   -5.57   -4.26   -2.76   -1.15    0.68    3.16    6.82
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH700936E      SNOW                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               4    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+Number of Calibrated Antennas GPS:      004                 COMMENT             
+Number of Individual Calibrations GPS:  013                 COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.18     -0.20     89.60                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.23   -0.90   -1.93   -3.24   -4.69   -6.16   -7.49   -8.50   -9.03   -8.95   -8.17   -6.69   -4.53   -1.75    1.63    5.66   10.37   15.62
+     0.0    0.00   -0.25   -0.93   -1.99   -3.33   -4.84   -6.36   -7.72   -8.73   -9.21   -9.06   -8.22   -6.73   -4.63   -1.90    1.49    5.62   10.39   15.32
+     5.0    0.00   -0.25   -0.93   -1.98   -3.32   -4.82   -6.34   -7.70   -8.72   -9.21   -9.06   -8.23   -6.73   -4.62   -1.90    1.49    5.61   10.39   15.35
+    10.0    0.00   -0.24   -0.92   -1.97   -3.30   -4.80   -6.32   -7.68   -8.70   -9.21   -9.07   -8.23   -6.74   -4.62   -1.90    1.49    5.60   10.38   15.40
+    15.0    0.00   -0.24   -0.92   -1.96   -3.29   -4.78   -6.29   -7.66   -8.69   -9.20   -9.07   -8.24   -6.74   -4.62   -1.89    1.49    5.60   10.39   15.46
+    20.0    0.00   -0.24   -0.91   -1.95   -3.27   -4.76   -6.26   -7.63   -8.66   -9.19   -9.07   -8.25   -6.75   -4.62   -1.88    1.50    5.60   10.40   15.54
+    25.0    0.00   -0.24   -0.91   -1.95   -3.26   -4.74   -6.24   -7.60   -8.64   -9.17   -9.07   -8.26   -6.76   -4.62   -1.87    1.52    5.62   10.43   15.63
+    30.0    0.00   -0.24   -0.90   -1.94   -3.25   -4.72   -6.21   -7.57   -8.61   -9.15   -9.07   -8.27   -6.77   -4.62   -1.85    1.54    5.65   10.48   15.74
+    35.0    0.00   -0.23   -0.90   -1.93   -3.24   -4.70   -6.19   -7.54   -8.57   -9.13   -9.05   -8.27   -6.77   -4.61   -1.83    1.58    5.70   10.54   15.86
+    40.0    0.00   -0.23   -0.90   -1.93   -3.23   -4.69   -6.16   -7.51   -8.54   -9.10   -9.04   -8.26   -6.77   -4.60   -1.80    1.63    5.75   10.60   15.98
+    45.0    0.00   -0.23   -0.89   -1.92   -3.22   -4.68   -6.14   -7.48   -8.51   -9.07   -9.02   -8.25   -6.76   -4.58   -1.77    1.68    5.81   10.67   16.09
+    50.0    0.00   -0.23   -0.89   -1.92   -3.22   -4.66   -6.13   -7.45   -8.48   -9.04   -8.99   -8.23   -6.74   -4.55   -1.73    1.73    5.87   10.73   16.18
+    55.0    0.00   -0.23   -0.89   -1.91   -3.21   -4.65   -6.11   -7.43   -8.45   -9.01   -8.96   -8.20   -6.71   -4.52   -1.68    1.78    5.92   10.79   16.26
+    60.0    0.00   -0.22   -0.88   -1.91   -3.20   -4.64   -6.09   -7.41   -8.42   -8.98   -8.92   -8.16   -6.67   -4.48   -1.64    1.82    5.96   10.82   16.31
+    65.0    0.00   -0.22   -0.88   -1.90   -3.19   -4.63   -6.07   -7.38   -8.40   -8.95   -8.89   -8.12   -6.63   -4.43   -1.60    1.86    5.98   10.82   16.31
+    70.0    0.00   -0.22   -0.88   -1.90   -3.18   -4.61   -6.06   -7.36   -8.37   -8.92   -8.85   -8.08   -6.58   -4.39   -1.56    1.88    5.98   10.80   16.28
+    75.0    0.00   -0.22   -0.87   -1.89   -3.17   -4.60   -6.04   -7.34   -8.35   -8.89   -8.83   -8.05   -6.54   -4.35   -1.53    1.89    5.95   10.74   16.21
+    80.0    0.00   -0.22   -0.87   -1.88   -3.16   -4.58   -6.01   -7.32   -8.33   -8.87   -8.80   -8.02   -6.51   -4.32   -1.52    1.88    5.91   10.66   16.09
+    85.0    0.00   -0.22   -0.86   -1.87   -3.14   -4.56   -5.99   -7.30   -8.31   -8.86   -8.79   -8.01   -6.49   -4.30   -1.51    1.85    5.84   10.55   15.94
+    90.0    0.00   -0.21   -0.86   -1.86   -3.13   -4.54   -5.97   -7.27   -8.29   -8.85   -8.78   -8.00   -6.49   -4.30   -1.53    1.81    5.76   10.42   15.77
+    95.0    0.00   -0.21   -0.86   -1.86   -3.11   -4.52   -5.94   -7.25   -8.28   -8.84   -8.79   -8.01   -6.50   -4.32   -1.55    1.76    5.68   10.29   15.58
+   100.0    0.00   -0.21   -0.85   -1.85   -3.10   -4.50   -5.92   -7.24   -8.27   -8.85   -8.80   -8.03   -6.52   -4.35   -1.59    1.71    5.59   10.16   15.40
+   105.0    0.00   -0.21   -0.85   -1.84   -3.09   -4.48   -5.91   -7.23   -8.27   -8.85   -8.82   -8.06   -6.56   -4.39   -1.64    1.65    5.52   10.06   15.24
+   110.0    0.00   -0.21   -0.85   -1.84   -3.08   -4.48   -5.90   -7.22   -8.27   -8.86   -8.84   -8.09   -6.61   -4.45   -1.70    1.59    5.46    9.98   15.11
+   115.0    0.00   -0.21   -0.85   -1.84   -3.08   -4.47   -5.90   -7.22   -8.27   -8.87   -8.86   -8.13   -6.66   -4.51   -1.76    1.54    5.42    9.93   15.03
+   120.0    0.00   -0.21   -0.85   -1.84   -3.08   -4.48   -5.90   -7.22   -8.28   -8.89   -8.89   -8.17   -6.71   -4.56   -1.81    1.51    5.40    9.92   15.00
+   125.0    0.00   -0.21   -0.85   -1.84   -3.09   -4.49   -5.91   -7.23   -8.29   -8.90   -8.91   -8.20   -6.76   -4.62   -1.85    1.48    5.40    9.94   15.01
+   130.0    0.00   -0.21   -0.85   -1.85   -3.10   -4.50   -5.93   -7.25   -8.30   -8.91   -8.92   -8.23   -6.79   -4.66   -1.89    1.47    5.43    9.99   15.08
+   135.0    0.00   -0.21   -0.85   -1.85   -3.11   -4.52   -5.95   -7.27   -8.31   -8.92   -8.93   -8.24   -6.82   -4.69   -1.91    1.48    5.47   10.07   15.17
+   140.0    0.00   -0.21   -0.85   -1.86   -3.13   -4.55   -5.98   -7.29   -8.33   -8.92   -8.93   -8.25   -6.84   -4.71   -1.92    1.49    5.52   10.15   15.29
+   145.0    0.00   -0.21   -0.86   -1.87   -3.15   -4.57   -6.01   -7.32   -8.34   -8.93   -8.93   -8.25   -6.84   -4.72   -1.92    1.51    5.57   10.23   15.40
+   150.0    0.00   -0.21   -0.86   -1.88   -3.16   -4.60   -6.04   -7.34   -8.36   -8.93   -8.93   -8.24   -6.84   -4.71   -1.91    1.53    5.61   10.30   15.51
+   155.0    0.00   -0.21   -0.86   -1.89   -3.18   -4.62   -6.06   -7.37   -8.37   -8.94   -8.92   -8.24   -6.83   -4.71   -1.90    1.55    5.63   10.34   15.58
+   160.0    0.00   -0.21   -0.86   -1.89   -3.19   -4.64   -6.09   -7.39   -8.39   -8.94   -8.92   -8.23   -6.82   -4.70   -1.89    1.56    5.64   10.35   15.62
+   165.0    0.00   -0.21   -0.87   -1.90   -3.20   -4.65   -6.11   -7.41   -8.40   -8.96   -8.93   -8.23   -6.82   -4.69   -1.88    1.56    5.62   10.32   15.61
+   170.0    0.00   -0.21   -0.87   -1.90   -3.21   -4.67   -6.12   -7.42   -8.42   -8.97   -8.95   -8.24   -6.82   -4.68   -1.88    1.54    5.58   10.26   15.57
+   175.0    0.00   -0.21   -0.87   -1.90   -3.21   -4.67   -6.13   -7.44   -8.44   -9.00   -8.97   -8.26   -6.83   -4.69   -1.89    1.52    5.52   10.18   15.50
+   180.0    0.00   -0.21   -0.87   -1.90   -3.21   -4.67   -6.13   -7.45   -8.46   -9.02   -9.00   -8.29   -6.84   -4.70   -1.91    1.48    5.45   10.08   15.42
+   185.0    0.00   -0.21   -0.87   -1.90   -3.21   -4.67   -6.14   -7.46   -8.48   -9.06   -9.03   -8.32   -6.86   -4.71   -1.93    1.43    5.38    9.99   15.34
+   190.0    0.00   -0.21   -0.87   -1.90   -3.21   -4.66   -6.13   -7.47   -8.51   -9.09   -9.07   -8.35   -6.89   -4.73   -1.96    1.38    5.31    9.92   15.28
+   195.0    0.00   -0.22   -0.87   -1.90   -3.20   -4.66   -6.13   -7.48   -8.53   -9.12   -9.10   -8.38   -6.91   -4.75   -1.98    1.34    5.26    9.87   15.26
+   200.0    0.00   -0.22   -0.87   -1.89   -3.19   -4.65   -6.13   -7.48   -8.54   -9.15   -9.13   -8.40   -6.92   -4.76   -2.00    1.31    5.23    9.87   15.28
+   205.0    0.00   -0.22   -0.87   -1.89   -3.19   -4.64   -6.13   -7.49   -8.56   -9.16   -9.15   -8.41   -6.93   -4.77   -2.02    1.30    5.24    9.92   15.34
+   210.0    0.00   -0.22   -0.87   -1.89   -3.18   -4.64   -6.12   -7.49   -8.57   -9.17   -9.15   -8.40   -6.92   -4.76   -2.01    1.31    5.29   10.01   15.46
+   215.0    0.00   -0.22   -0.87   -1.89   -3.18   -4.64   -6.12   -7.49   -8.57   -9.17   -9.14   -8.38   -6.90   -4.74   -1.99    1.35    5.37   10.15   15.61
+   220.0    0.00   -0.22   -0.87   -1.89   -3.18   -4.64   -6.12   -7.49   -8.56   -9.15   -9.11   -8.35   -6.86   -4.71   -1.95    1.42    5.49   10.33   15.78
+   225.0    0.00   -0.22   -0.88   -1.89   -3.19   -4.64   -6.13   -7.49   -8.55   -9.13   -9.07   -8.29   -6.81   -4.66   -1.90    1.50    5.63   10.53   15.95
+   230.0    0.00   -0.23   -0.88   -1.90   -3.19   -4.65   -6.13   -7.49   -8.53   -9.09   -9.02   -8.23   -6.74   -4.59   -1.82    1.61    5.79   10.73   16.12
+   235.0    0.00   -0.23   -0.89   -1.91   -3.20   -4.65   -6.13   -7.48   -8.51   -9.05   -8.96   -8.17   -6.67   -4.52   -1.74    1.72    5.95   10.91   16.25
+   240.0    0.00   -0.23   -0.89   -1.92   -3.21   -4.67   -6.14   -7.47   -8.49   -9.01   -8.90   -8.10   -6.60   -4.45   -1.65    1.84    6.09   11.07   16.34
+   245.0    0.00   -0.23   -0.90   -1.93   -3.23   -4.68   -6.15   -7.47   -8.47   -8.97   -8.85   -8.03   -6.53   -4.37   -1.56    1.94    6.21   11.17   16.38
+   250.0    0.00   -0.24   -0.90   -1.94   -3.24   -4.70   -6.16   -7.47   -8.45   -8.94   -8.80   -7.98   -6.47   -4.30   -1.48    2.03    6.30   11.22   16.37
+   255.0    0.00   -0.24   -0.91   -1.95   -3.26   -4.71   -6.17   -7.47   -8.44   -8.91   -8.77   -7.94   -6.42   -4.24   -1.41    2.10    6.34   11.22   16.31
+   260.0    0.00   -0.24   -0.92   -1.96   -3.28   -4.73   -6.18   -7.47   -8.43   -8.90   -8.75   -7.91   -6.38   -4.19   -1.36    2.14    6.33   11.15   16.21
+   265.0    0.00   -0.24   -0.93   -1.98   -3.30   -4.75   -6.20   -7.48   -8.43   -8.90   -8.74   -7.90   -6.36   -4.16   -1.32    2.15    6.28   11.04   16.09
+   270.0    0.00   -0.25   -0.93   -1.99   -3.31   -4.77   -6.22   -7.50   -8.45   -8.91   -8.75   -7.90   -6.35   -4.14   -1.31    2.13    6.20   10.88   15.96
+   275.0    0.00   -0.25   -0.94   -2.00   -3.33   -4.79   -6.24   -7.52   -8.46   -8.93   -8.77   -7.92   -6.36   -4.14   -1.32    2.08    6.08   10.71   15.82
+   280.0    0.00   -0.25   -0.95   -2.02   -3.35   -4.81   -6.26   -7.54   -8.49   -8.96   -8.80   -7.95   -6.38   -4.16   -1.34    2.01    5.95   10.52   15.70
+   285.0    0.00   -0.25   -0.95   -2.03   -3.36   -4.83   -6.28   -7.56   -8.52   -8.99   -8.84   -7.98   -6.41   -4.19   -1.39    1.94    5.81   10.35   15.60
+   290.0    0.00   -0.25   -0.96   -2.04   -3.38   -4.85   -6.30   -7.59   -8.55   -9.02   -8.88   -8.02   -6.45   -4.23   -1.44    1.85    5.68   10.19   15.52
+   295.0    0.00   -0.26   -0.96   -2.04   -3.39   -4.87   -6.32   -7.61   -8.58   -9.06   -8.92   -8.07   -6.50   -4.28   -1.50    1.77    5.57   10.07   15.47
+   300.0    0.00   -0.26   -0.96   -2.05   -3.40   -4.88   -6.34   -7.64   -8.61   -9.09   -8.95   -8.11   -6.54   -4.33   -1.57    1.69    5.48    9.99   15.44
+   305.0    0.00   -0.26   -0.97   -2.05   -3.41   -4.89   -6.36   -7.66   -8.63   -9.12   -8.98   -8.14   -6.59   -4.38   -1.63    1.62    5.43    9.95   15.43
+   310.0    0.00   -0.26   -0.97   -2.06   -3.41   -4.90   -6.38   -7.68   -8.66   -9.14   -9.01   -8.17   -6.63   -4.44   -1.69    1.57    5.40    9.95   15.42
+   315.0    0.00   -0.26   -0.97   -2.06   -3.42   -4.91   -6.39   -7.70   -8.68   -9.16   -9.03   -8.20   -6.67   -4.49   -1.74    1.54    5.40    9.98   15.42
+   320.0    0.00   -0.26   -0.97   -2.05   -3.42   -4.92   -6.40   -7.72   -8.69   -9.17   -9.04   -8.21   -6.70   -4.53   -1.79    1.51    5.42   10.03   15.42
+   325.0    0.00   -0.26   -0.96   -2.05   -3.41   -4.92   -6.41   -7.73   -8.70   -9.18   -9.04   -8.22   -6.72   -4.57   -1.83    1.50    5.46   10.10   15.41
+   330.0    0.00   -0.26   -0.96   -2.05   -3.41   -4.91   -6.41   -7.74   -8.71   -9.19   -9.05   -8.23   -6.73   -4.60   -1.86    1.50    5.50   10.17   15.40
+   335.0    0.00   -0.26   -0.96   -2.04   -3.40   -4.91   -6.42   -7.74   -8.72   -9.20   -9.05   -8.23   -6.74   -4.62   -1.88    1.50    5.55   10.24   15.38
+   340.0    0.00   -0.26   -0.95   -2.03   -3.39   -4.90   -6.41   -7.75   -8.73   -9.20   -9.05   -8.23   -6.74   -4.63   -1.89    1.50    5.58   10.30   15.35
+   345.0    0.00   -0.25   -0.95   -2.02   -3.38   -4.89   -6.41   -7.75   -8.73   -9.20   -9.05   -8.22   -6.74   -4.63   -1.90    1.50    5.61   10.34   15.33
+   350.0    0.00   -0.25   -0.94   -2.01   -3.36   -4.88   -6.39   -7.74   -8.74   -9.21   -9.05   -8.22   -6.74   -4.63   -1.90    1.50    5.63   10.37   15.32
+   355.0    0.00   -0.25   -0.94   -2.00   -3.35   -4.86   -6.38   -7.73   -8.73   -9.21   -9.05   -8.22   -6.74   -4.63   -1.90    1.50    5.63   10.39   15.32
+   360.0    0.00   -0.25   -0.93   -1.99   -3.33   -4.84   -6.36   -7.72   -8.73   -9.21   -9.06   -8.22   -6.73   -4.63   -1.90    1.49    5.62   10.39   15.32
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.07      0.08    118.23                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.16   -0.59   -1.20   -1.87   -2.55   -3.23   -3.90   -4.54   -5.06   -5.28   -5.05   -4.30   -3.06   -1.42    0.62    3.19    6.62   11.19
+     0.0    0.00   -0.17   -0.61   -1.21   -1.86   -2.52   -3.18   -3.85   -4.50   -5.04   -5.32   -5.19   -4.56   -3.42   -1.79    0.35    3.14    6.73   11.06
+     5.0    0.00   -0.17   -0.61   -1.20   -1.86   -2.53   -3.19   -3.86   -4.51   -5.06   -5.36   -5.23   -4.60   -3.45   -1.80    0.35    3.12    6.69   11.04
+    10.0    0.00   -0.17   -0.60   -1.20   -1.87   -2.53   -3.19   -3.86   -4.52   -5.08   -5.38   -5.26   -4.63   -3.46   -1.80    0.35    3.11    6.65   11.03
+    15.0    0.00   -0.16   -0.60   -1.20   -1.87   -2.54   -3.20   -3.87   -4.53   -5.09   -5.40   -5.28   -4.64   -3.45   -1.78    0.38    3.11    6.63   11.04
+    20.0    0.00   -0.16   -0.59   -1.20   -1.87   -2.54   -3.20   -3.87   -4.53   -5.09   -5.40   -5.28   -4.63   -3.42   -1.73    0.42    3.13    6.63   11.06
+    25.0    0.00   -0.16   -0.59   -1.20   -1.88   -2.55   -3.21   -3.87   -4.53   -5.08   -5.39   -5.27   -4.60   -3.38   -1.68    0.47    3.17    6.64   11.11
+    30.0    0.00   -0.16   -0.59   -1.20   -1.88   -2.56   -3.22   -3.87   -4.52   -5.07   -5.37   -5.24   -4.55   -3.32   -1.61    0.54    3.21    6.67   11.18
+    35.0    0.00   -0.15   -0.59   -1.20   -1.89   -2.57   -3.23   -3.88   -4.52   -5.06   -5.35   -5.19   -4.50   -3.25   -1.53    0.61    3.27    6.73   11.27
+    40.0    0.00   -0.15   -0.58   -1.20   -1.89   -2.58   -3.24   -3.89   -4.52   -5.05   -5.32   -5.15   -4.43   -3.17   -1.45    0.68    3.33    6.80   11.39
+    45.0    0.00   -0.15   -0.58   -1.20   -1.90   -2.59   -3.25   -3.90   -4.53   -5.04   -5.29   -5.10   -4.37   -3.10   -1.38    0.74    3.39    6.87   11.52
+    50.0    0.00   -0.14   -0.58   -1.20   -1.90   -2.60   -3.27   -3.92   -4.54   -5.04   -5.27   -5.06   -4.31   -3.04   -1.32    0.80    3.45    6.95   11.64
+    55.0    0.00   -0.14   -0.57   -1.20   -1.91   -2.61   -3.29   -3.94   -4.56   -5.05   -5.26   -5.03   -4.27   -2.99   -1.28    0.84    3.50    7.03   11.75
+    60.0    0.00   -0.14   -0.57   -1.20   -1.91   -2.62   -3.31   -3.97   -4.58   -5.06   -5.26   -5.01   -4.23   -2.95   -1.24    0.87    3.54    7.10   11.84
+    65.0    0.00   -0.14   -0.57   -1.20   -1.92   -2.64   -3.33   -4.00   -4.61   -5.09   -5.26   -5.00   -4.21   -2.93   -1.22    0.89    3.57    7.15   11.89
+    70.0    0.00   -0.13   -0.56   -1.20   -1.92   -2.65   -3.35   -4.03   -4.64   -5.11   -5.28   -5.00   -4.21   -2.92   -1.22    0.90    3.59    7.17   11.89
+    75.0    0.00   -0.13   -0.56   -1.20   -1.92   -2.66   -3.37   -4.05   -4.67   -5.14   -5.30   -5.01   -4.21   -2.93   -1.22    0.89    3.59    7.17   11.85
+    80.0    0.00   -0.13   -0.56   -1.19   -1.92   -2.66   -3.39   -4.08   -4.70   -5.17   -5.32   -5.03   -4.22   -2.94   -1.24    0.88    3.57    7.14   11.77
+    85.0    0.00   -0.13   -0.56   -1.19   -1.92   -2.67   -3.40   -4.09   -4.73   -5.19   -5.34   -5.05   -4.24   -2.95   -1.25    0.87    3.55    7.08   11.65
+    90.0    0.00   -0.13   -0.55   -1.19   -1.92   -2.67   -3.40   -4.11   -4.74   -5.21   -5.36   -5.06   -4.25   -2.96   -1.26    0.85    3.51    7.01   11.50
+    95.0    0.00   -0.13   -0.55   -1.19   -1.92   -2.67   -3.41   -4.11   -4.75   -5.22   -5.37   -5.07   -4.26   -2.96   -1.26    0.83    3.47    6.92   11.36
+   100.0    0.00   -0.13   -0.55   -1.18   -1.92   -2.67   -3.41   -4.11   -4.75   -5.22   -5.37   -5.07   -4.26   -2.96   -1.26    0.82    3.43    6.83   11.22
+   105.0    0.00   -0.12   -0.55   -1.18   -1.92   -2.67   -3.40   -4.11   -4.74   -5.21   -5.36   -5.06   -4.25   -2.95   -1.26    0.81    3.39    6.74   11.11
+   110.0    0.00   -0.12   -0.55   -1.18   -1.91   -2.66   -3.39   -4.09   -4.73   -5.20   -5.35   -5.05   -4.24   -2.94   -1.24    0.81    3.35    6.67   11.04
+   115.0    0.00   -0.12   -0.55   -1.18   -1.91   -2.65   -3.38   -4.08   -4.71   -5.18   -5.33   -5.04   -4.22   -2.92   -1.23    0.81    3.32    6.62   11.01
+   120.0    0.00   -0.12   -0.55   -1.18   -1.91   -2.65   -3.37   -4.06   -4.68   -5.15   -5.31   -5.02   -4.21   -2.90   -1.21    0.82    3.31    6.58   11.03
+   125.0    0.00   -0.12   -0.55   -1.18   -1.90   -2.64   -3.35   -4.03   -4.66   -5.13   -5.30   -5.01   -4.19   -2.88   -1.19    0.84    3.31    6.57   11.08
+   130.0    0.00   -0.12   -0.55   -1.18   -1.90   -2.63   -3.34   -4.01   -4.63   -5.11   -5.28   -5.00   -4.19   -2.87   -1.17    0.85    3.32    6.58   11.15
+   135.0    0.00   -0.13   -0.55   -1.18   -1.90   -2.62   -3.32   -3.99   -4.61   -5.09   -5.27   -5.00   -4.19   -2.87   -1.16    0.87    3.33    6.60   11.23
+   140.0    0.00   -0.13   -0.55   -1.18   -1.90   -2.61   -3.31   -3.97   -4.59   -5.07   -5.27   -5.01   -4.21   -2.88   -1.16    0.88    3.34    6.63   11.30
+   145.0    0.00   -0.13   -0.55   -1.18   -1.89   -2.61   -3.29   -3.95   -4.57   -5.06   -5.27   -5.03   -4.23   -2.90   -1.17    0.88    3.35    6.64   11.34
+   150.0    0.00   -0.13   -0.55   -1.18   -1.89   -2.60   -3.28   -3.94   -4.56   -5.06   -5.28   -5.05   -4.26   -2.93   -1.20    0.86    3.35    6.64   11.34
+   155.0    0.00   -0.13   -0.56   -1.18   -1.89   -2.60   -3.28   -3.93   -4.56   -5.06   -5.29   -5.07   -4.29   -2.97   -1.23    0.84    3.33    6.62   11.30
+   160.0    0.00   -0.13   -0.56   -1.18   -1.89   -2.59   -3.27   -3.93   -4.56   -5.07   -5.30   -5.09   -4.32   -3.01   -1.27    0.79    3.28    6.57   11.21
+   165.0    0.00   -0.13   -0.56   -1.18   -1.89   -2.59   -3.27   -3.93   -4.57   -5.08   -5.32   -5.11   -4.35   -3.05   -1.33    0.73    3.22    6.50   11.08
+   170.0    0.00   -0.14   -0.56   -1.18   -1.88   -2.59   -3.27   -3.94   -4.58   -5.09   -5.33   -5.12   -4.37   -3.09   -1.39    0.65    3.14    6.40   10.93
+   175.0    0.00   -0.14   -0.56   -1.18   -1.88   -2.59   -3.28   -3.95   -4.59   -5.11   -5.35   -5.13   -4.39   -3.12   -1.45    0.57    3.04    6.30   10.77
+   180.0    0.00   -0.14   -0.57   -1.18   -1.88   -2.59   -3.28   -3.96   -4.61   -5.13   -5.36   -5.14   -4.39   -3.15   -1.51    0.47    2.94    6.20   10.63
+   185.0    0.00   -0.14   -0.57   -1.18   -1.88   -2.58   -3.29   -3.98   -4.63   -5.15   -5.36   -5.14   -4.40   -3.17   -1.57    0.39    2.84    6.11   10.51
+   190.0    0.00   -0.15   -0.57   -1.18   -1.87   -2.58   -3.29   -3.99   -4.65   -5.16   -5.37   -5.13   -4.39   -3.19   -1.61    0.31    2.76    6.05   10.45
+   195.0    0.00   -0.15   -0.57   -1.18   -1.87   -2.57   -3.29   -4.00   -4.66   -5.18   -5.38   -5.13   -4.38   -3.19   -1.64    0.26    2.70    6.02   10.44
+   200.0    0.00   -0.15   -0.57   -1.18   -1.86   -2.56   -3.28   -4.00   -4.67   -5.19   -5.38   -5.12   -4.36   -3.18   -1.65    0.23    2.68    6.03   10.49
+   205.0    0.00   -0.15   -0.58   -1.17   -1.85   -2.55   -3.27   -4.00   -4.68   -5.19   -5.38   -5.11   -4.35   -3.16   -1.65    0.23    2.69    6.09   10.59
+   210.0    0.00   -0.16   -0.58   -1.17   -1.84   -2.54   -3.25   -3.99   -4.67   -5.19   -5.38   -5.10   -4.32   -3.13   -1.62    0.27    2.74    6.18   10.74
+   215.0    0.00   -0.16   -0.58   -1.17   -1.83   -2.52   -3.23   -3.97   -4.66   -5.19   -5.37   -5.08   -4.30   -3.10   -1.56    0.33    2.83    6.30   10.91
+   220.0    0.00   -0.16   -0.58   -1.17   -1.82   -2.50   -3.21   -3.94   -4.64   -5.17   -5.36   -5.07   -4.27   -3.05   -1.50    0.42    2.93    6.43   11.10
+   225.0    0.00   -0.17   -0.59   -1.17   -1.81   -2.48   -3.18   -3.91   -4.62   -5.16   -5.35   -5.06   -4.25   -3.00   -1.42    0.52    3.05    6.57   11.28
+   230.0    0.00   -0.17   -0.59   -1.17   -1.81   -2.46   -3.15   -3.88   -4.58   -5.13   -5.34   -5.05   -4.22   -2.95   -1.33    0.63    3.17    6.69   11.44
+   235.0    0.00   -0.17   -0.60   -1.17   -1.80   -2.45   -3.13   -3.84   -4.55   -5.11   -5.32   -5.03   -4.19   -2.89   -1.25    0.73    3.27    6.77   11.55
+   240.0    0.00   -0.17   -0.60   -1.18   -1.80   -2.44   -3.10   -3.81   -4.51   -5.08   -5.30   -5.01   -4.17   -2.85   -1.18    0.81    3.34    6.83   11.63
+   245.0    0.00   -0.18   -0.61   -1.18   -1.80   -2.43   -3.08   -3.78   -4.48   -5.05   -5.28   -5.00   -4.15   -2.81   -1.12    0.87    3.38    6.83   11.65
+   250.0    0.00   -0.18   -0.61   -1.19   -1.80   -2.43   -3.07   -3.76   -4.45   -5.02   -5.26   -4.98   -4.13   -2.78   -1.09    0.90    3.38    6.80   11.63
+   255.0    0.00   -0.18   -0.62   -1.19   -1.81   -2.43   -3.06   -3.74   -4.43   -5.00   -5.24   -4.97   -4.11   -2.77   -1.07    0.90    3.35    6.72   11.57
+   260.0    0.00   -0.19   -0.62   -1.20   -1.82   -2.43   -3.06   -3.73   -4.42   -4.98   -5.22   -4.95   -4.11   -2.77   -1.08    0.87    3.28    6.62   11.48
+   265.0    0.00   -0.19   -0.63   -1.21   -1.83   -2.45   -3.07   -3.73   -4.41   -4.96   -5.21   -4.95   -4.12   -2.79   -1.12    0.81    3.19    6.50   11.37
+   270.0    0.00   -0.19   -0.64   -1.22   -1.84   -2.46   -3.08   -3.74   -4.40   -4.95   -5.20   -4.95   -4.13   -2.82   -1.17    0.74    3.09    6.38   11.26
+   275.0    0.00   -0.19   -0.64   -1.23   -1.86   -2.47   -3.09   -3.75   -4.40   -4.95   -5.19   -4.95   -4.15   -2.86   -1.23    0.66    3.00    6.28   11.15
+   280.0    0.00   -0.19   -0.64   -1.24   -1.87   -2.49   -3.11   -3.76   -4.41   -4.95   -5.19   -4.95   -4.17   -2.91   -1.31    0.57    2.91    6.20   11.06
+   285.0    0.00   -0.19   -0.65   -1.24   -1.88   -2.50   -3.12   -3.77   -4.41   -4.94   -5.18   -4.96   -4.20   -2.96   -1.38    0.50    2.85    6.15   10.98
+   290.0    0.00   -0.20   -0.65   -1.25   -1.89   -2.51   -3.14   -3.78   -4.42   -4.94   -5.18   -4.96   -4.22   -3.01   -1.44    0.45    2.83    6.14   10.92
+   295.0    0.00   -0.20   -0.65   -1.25   -1.89   -2.52   -3.15   -3.79   -4.42   -4.94   -5.17   -4.97   -4.24   -3.05   -1.49    0.41    2.83    6.17   10.89
+   300.0    0.00   -0.20   -0.65   -1.25   -1.90   -2.53   -3.15   -3.79   -4.42   -4.93   -5.16   -4.97   -4.26   -3.09   -1.53    0.39    2.86    6.23   10.88
+   305.0    0.00   -0.20   -0.65   -1.25   -1.90   -2.53   -3.16   -3.79   -4.42   -4.92   -5.15   -4.96   -4.27   -3.12   -1.56    0.39    2.91    6.31   10.88
+   310.0    0.00   -0.19   -0.65   -1.25   -1.90   -2.53   -3.16   -3.79   -4.41   -4.91   -5.14   -4.96   -4.28   -3.14   -1.58    0.41    2.98    6.41   10.90
+   315.0    0.00   -0.19   -0.65   -1.25   -1.89   -2.53   -3.16   -3.79   -4.41   -4.90   -5.13   -4.95   -4.29   -3.15   -1.59    0.43    3.05    6.52   10.93
+   320.0    0.00   -0.19   -0.64   -1.24   -1.89   -2.53   -3.16   -3.79   -4.41   -4.90   -5.13   -4.95   -4.29   -3.17   -1.60    0.45    3.12    6.62   10.96
+   325.0    0.00   -0.19   -0.64   -1.24   -1.88   -2.52   -3.16   -3.79   -4.41   -4.90   -5.12   -4.95   -4.30   -3.18   -1.61    0.47    3.18    6.71   11.00
+   330.0    0.00   -0.19   -0.64   -1.23   -1.88   -2.52   -3.15   -3.80   -4.41   -4.90   -5.13   -4.96   -4.32   -3.20   -1.62    0.47    3.22    6.77   11.03
+   335.0    0.00   -0.19   -0.63   -1.23   -1.87   -2.52   -3.16   -3.80   -4.42   -4.92   -5.15   -4.98   -4.34   -3.23   -1.64    0.47    3.24    6.82   11.06
+   340.0    0.00   -0.18   -0.63   -1.22   -1.87   -2.51   -3.16   -3.81   -4.43   -4.93   -5.17   -5.01   -4.37   -3.26   -1.67    0.45    3.25    6.83   11.08
+   345.0    0.00   -0.18   -0.62   -1.22   -1.86   -2.51   -3.16   -3.82   -4.45   -4.96   -5.20   -5.05   -4.42   -3.30   -1.70    0.43    3.23    6.83   11.09
+   350.0    0.00   -0.18   -0.62   -1.21   -1.86   -2.52   -3.17   -3.83   -4.47   -4.99   -5.24   -5.09   -4.47   -3.34   -1.74    0.40    3.20    6.81   11.08
+   355.0    0.00   -0.18   -0.61   -1.21   -1.86   -2.52   -3.17   -3.84   -4.48   -5.01   -5.28   -5.14   -4.52   -3.39   -1.77    0.37    3.17    6.77   11.07
+   360.0    0.00   -0.17   -0.61   -1.21   -1.86   -2.52   -3.18   -3.85   -4.50   -5.04   -5.32   -5.19   -4.56   -3.42   -1.79    0.35    3.14    6.73   11.06
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH700936E_C    NONE                                        TYPE / SERIAL NO    
+COPIED              Geo++ GmbH               2    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+COPIED FROM AOAD/M_T        NONE                            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.58     -0.37     91.85                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.23   -0.90   -1.93   -3.22   -4.62   -5.96   -7.09   -7.87   -8.21   -8.06   -7.39   -6.23   -4.55   -2.28    0.69    4.47    9.08   14.23
+     0.0    0.00   -0.27   -0.98   -2.07   -3.42   -4.87   -6.26   -7.43   -8.21   -8.53   -8.32   -7.62   -6.44   -4.77   -2.54    0.39    4.14    8.68   13.67
+     5.0    0.00   -0.27   -0.98   -2.06   -3.41   -4.86   -6.25   -7.41   -8.20   -8.52   -8.31   -7.60   -6.41   -4.74   -2.50    0.42    4.18    8.73   13.73
+    10.0    0.00   -0.26   -0.97   -2.05   -3.39   -4.84   -6.23   -7.40   -8.19   -8.50   -8.30   -7.58   -6.38   -4.70   -2.46    0.47    4.23    8.79   13.83
+    15.0    0.00   -0.26   -0.97   -2.05   -3.38   -4.82   -6.21   -7.37   -8.17   -8.49   -8.28   -7.56   -6.36   -4.66   -2.41    0.53    4.30    8.88   13.96
+    20.0    0.00   -0.26   -0.96   -2.03   -3.36   -4.80   -6.18   -7.35   -8.15   -8.47   -8.27   -7.54   -6.33   -4.62   -2.36    0.60    4.38    9.00   14.12
+    25.0    0.00   -0.26   -0.96   -2.02   -3.34   -4.77   -6.16   -7.32   -8.12   -8.44   -8.25   -7.53   -6.30   -4.58   -2.30    0.68    4.49    9.13   14.31
+    30.0    0.00   -0.26   -0.95   -2.01   -3.32   -4.75   -6.12   -7.28   -8.08   -8.42   -8.22   -7.51   -6.28   -4.54   -2.24    0.77    4.61    9.29   14.51
+    35.0    0.00   -0.25   -0.94   -2.00   -3.30   -4.72   -6.09   -7.25   -8.05   -8.38   -8.20   -7.48   -6.25   -4.50   -2.17    0.87    4.75    9.46   14.71
+    40.0    0.00   -0.25   -0.93   -1.98   -3.28   -4.69   -6.05   -7.21   -8.01   -8.35   -8.17   -7.46   -6.23   -4.46   -2.10    0.97    4.88    9.62   14.90
+    45.0    0.00   -0.25   -0.93   -1.97   -3.26   -4.66   -6.02   -7.16   -7.96   -8.30   -8.13   -7.43   -6.19   -4.42   -2.03    1.08    5.02    9.78   15.07
+    50.0    0.00   -0.24   -0.92   -1.95   -3.24   -4.63   -5.98   -7.12   -7.91   -8.26   -8.09   -7.39   -6.16   -4.37   -1.97    1.17    5.14    9.92   15.22
+    55.0    0.00   -0.24   -0.91   -1.94   -3.21   -4.60   -5.94   -7.07   -7.86   -8.20   -8.04   -7.35   -6.12   -4.33   -1.91    1.24    5.24   10.04   15.34
+    60.0    0.00   -0.24   -0.90   -1.92   -3.19   -4.57   -5.90   -7.02   -7.81   -8.15   -7.99   -7.30   -6.08   -4.29   -1.87    1.30    5.31   10.11   15.41
+    65.0    0.00   -0.23   -0.89   -1.91   -3.17   -4.54   -5.86   -6.97   -7.75   -8.09   -7.93   -7.25   -6.03   -4.25   -1.83    1.33    5.34   10.15   15.45
+    70.0    0.00   -0.23   -0.89   -1.90   -3.15   -4.51   -5.82   -6.93   -7.70   -8.03   -7.88   -7.20   -5.99   -4.22   -1.82    1.33    5.33   10.14   15.45
+    75.0    0.00   -0.23   -0.88   -1.88   -3.13   -4.49   -5.79   -6.89   -7.65   -7.98   -7.82   -7.15   -5.96   -4.21   -1.82    1.31    5.28   10.08   15.40
+    80.0    0.00   -0.23   -0.87   -1.87   -3.12   -4.46   -5.76   -6.85   -7.61   -7.94   -7.78   -7.11   -5.93   -4.20   -1.85    1.25    5.20    9.99   15.32
+    85.0    0.00   -0.22   -0.87   -1.86   -3.10   -4.44   -5.74   -6.83   -7.58   -7.91   -7.75   -7.09   -5.92   -4.21   -1.89    1.17    5.09    9.86   15.20
+    90.0    0.00   -0.22   -0.86   -1.86   -3.09   -4.43   -5.72   -6.81   -7.56   -7.89   -7.73   -7.08   -5.92   -4.24   -1.95    1.08    4.96    9.71   15.05
+    95.0    0.00   -0.22   -0.86   -1.85   -3.09   -4.42   -5.71   -6.80   -7.56   -7.89   -7.73   -7.09   -5.94   -4.28   -2.02    0.97    4.82    9.54   14.88
+   100.0    0.00   -0.22   -0.86   -1.85   -3.08   -4.42   -5.71   -6.80   -7.56   -7.90   -7.75   -7.11   -5.98   -4.34   -2.11    0.86    4.68    9.37   14.70
+   105.0    0.00   -0.22   -0.86   -1.85   -3.08   -4.42   -5.72   -6.81   -7.58   -7.92   -7.78   -7.16   -6.04   -4.41   -2.19    0.75    4.54    9.21   14.52
+   110.0    0.00   -0.21   -0.85   -1.85   -3.09   -4.43   -5.73   -6.83   -7.61   -7.96   -7.83   -7.21   -6.10   -4.49   -2.28    0.64    4.42    9.07   14.35
+   115.0    0.00   -0.21   -0.85   -1.85   -3.09   -4.44   -5.75   -6.86   -7.65   -8.01   -7.89   -7.28   -6.18   -4.57   -2.36    0.56    4.32    8.95   14.20
+   120.0    0.00   -0.21   -0.86   -1.86   -3.10   -4.46   -5.77   -6.90   -7.69   -8.06   -7.95   -7.35   -6.25   -4.64   -2.44    0.48    4.25    8.86   14.08
+   125.0    0.00   -0.21   -0.86   -1.86   -3.12   -4.48   -5.80   -6.93   -7.73   -8.11   -8.01   -7.42   -6.33   -4.72   -2.50    0.43    4.20    8.81   13.99
+   130.0    0.00   -0.21   -0.86   -1.87   -3.13   -4.50   -5.83   -6.97   -7.78   -8.16   -8.07   -7.48   -6.39   -4.78   -2.55    0.40    4.18    8.78   13.94
+   135.0    0.00   -0.21   -0.86   -1.88   -3.15   -4.53   -5.86   -7.01   -7.82   -8.21   -8.12   -7.54   -6.45   -4.83   -2.59    0.38    4.17    8.78   13.92
+   140.0    0.00   -0.21   -0.86   -1.89   -3.16   -4.55   -5.89   -7.04   -7.85   -8.24   -8.16   -7.58   -6.49   -4.87   -2.62    0.37    4.18    8.79   13.93
+   145.0    0.00   -0.21   -0.87   -1.89   -3.18   -4.57   -5.92   -7.07   -7.88   -8.28   -8.19   -7.61   -6.52   -4.89   -2.63    0.37    4.19    8.81   13.95
+   150.0    0.00   -0.21   -0.87   -1.90   -3.19   -4.59   -5.95   -7.10   -7.91   -8.30   -8.21   -7.63   -6.54   -4.90   -2.63    0.37    4.21    8.83   13.98
+   155.0    0.00   -0.21   -0.87   -1.91   -3.20   -4.61   -5.97   -7.12   -7.93   -8.32   -8.23   -7.65   -6.55   -4.91   -2.64    0.38    4.21    8.84   14.00
+   160.0    0.00   -0.21   -0.87   -1.91   -3.21   -4.63   -5.98   -7.13   -7.94   -8.33   -8.24   -7.65   -6.56   -4.91   -2.64    0.38    4.21    8.83   14.00
+   165.0    0.00   -0.21   -0.88   -1.92   -3.22   -4.64   -6.00   -7.14   -7.95   -8.34   -8.24   -7.65   -6.55   -4.91   -2.64    0.37    4.19    8.81   13.98
+   170.0    0.00   -0.21   -0.88   -1.92   -3.23   -4.64   -6.00   -7.15   -7.96   -8.34   -8.25   -7.65   -6.55   -4.91   -2.64    0.35    4.16    8.76   13.93
+   175.0    0.00   -0.21   -0.88   -1.92   -3.23   -4.65   -6.01   -7.16   -7.97   -8.35   -8.25   -7.65   -6.55   -4.90   -2.64    0.33    4.11    8.70   13.87
+   180.0    0.00   -0.21   -0.88   -1.92   -3.23   -4.65   -6.01   -7.16   -7.97   -8.35   -8.25   -7.66   -6.55   -4.90   -2.65    0.31    4.07    8.63   13.79
+   185.0    0.00   -0.21   -0.88   -1.92   -3.23   -4.64   -6.00   -7.16   -7.97   -8.36   -8.26   -7.66   -6.55   -4.90   -2.66    0.28    4.02    8.57   13.72
+   190.0    0.00   -0.21   -0.87   -1.92   -3.22   -4.64   -6.00   -7.15   -7.97   -8.36   -8.26   -7.66   -6.54   -4.90   -2.67    0.26    3.99    8.52   13.66
+   195.0    0.00   -0.21   -0.87   -1.91   -3.21   -4.63   -5.99   -7.15   -7.97   -8.35   -8.25   -7.65   -6.53   -4.89   -2.66    0.26    3.97    8.50   13.64
+   200.0    0.00   -0.21   -0.87   -1.91   -3.20   -4.61   -5.98   -7.14   -7.96   -8.34   -8.24   -7.63   -6.52   -4.88   -2.65    0.27    3.98    8.52   13.67
+   205.0    0.00   -0.21   -0.87   -1.90   -3.19   -4.60   -5.96   -7.12   -7.94   -8.33   -8.22   -7.61   -6.49   -4.85   -2.62    0.30    4.03    8.58   13.75
+   210.0    0.00   -0.21   -0.87   -1.89   -3.18   -4.59   -5.94   -7.10   -7.92   -8.30   -8.19   -7.57   -6.45   -4.80   -2.57    0.35    4.11    8.70   13.88
+   215.0    0.00   -0.21   -0.86   -1.89   -3.17   -4.57   -5.92   -7.08   -7.89   -8.26   -8.14   -7.52   -6.39   -4.74   -2.51    0.44    4.22    8.85   14.06
+   220.0    0.00   -0.21   -0.86   -1.88   -3.16   -4.55   -5.90   -7.05   -7.85   -8.22   -8.09   -7.46   -6.32   -4.67   -2.42    0.54    4.36    9.04   14.28
+   225.0    0.00   -0.21   -0.86   -1.88   -3.15   -4.53   -5.88   -7.01   -7.81   -8.17   -8.03   -7.38   -6.24   -4.58   -2.32    0.67    4.53    9.25   14.52
+   230.0    0.00   -0.21   -0.86   -1.87   -3.14   -4.52   -5.85   -6.98   -7.77   -8.11   -7.96   -7.30   -6.15   -4.48   -2.20    0.81    4.71    9.46   14.74
+   235.0    0.00   -0.21   -0.86   -1.87   -3.13   -4.50   -5.83   -6.95   -7.72   -8.05   -7.89   -7.22   -6.06   -4.37   -2.08    0.96    4.88    9.66   14.94
+   240.0    0.00   -0.22   -0.86   -1.86   -3.12   -4.49   -5.80   -6.91   -7.68   -7.99   -7.82   -7.14   -5.97   -4.27   -1.96    1.10    5.04    9.83   15.09
+   245.0    0.00   -0.22   -0.86   -1.86   -3.12   -4.48   -5.78   -6.88   -7.64   -7.94   -7.76   -7.07   -5.88   -4.17   -1.84    1.23    5.18    9.95   15.17
+   250.0    0.00   -0.22   -0.86   -1.87   -3.11   -4.47   -5.77   -6.86   -7.60   -7.90   -7.71   -7.01   -5.81   -4.08   -1.74    1.34    5.27   10.01   15.19
+   255.0    0.00   -0.22   -0.87   -1.87   -3.12   -4.47   -5.76   -6.84   -7.58   -7.87   -7.67   -6.97   -5.76   -4.01   -1.66    1.41    5.32   10.00   15.12
+   260.0    0.00   -0.22   -0.87   -1.87   -3.12   -4.47   -5.76   -6.84   -7.57   -7.86   -7.65   -6.94   -5.72   -3.97   -1.61    1.45    5.32    9.94   15.00
+   265.0    0.00   -0.23   -0.88   -1.88   -3.13   -4.48   -5.77   -6.84   -7.57   -7.86   -7.65   -6.93   -5.70   -3.94   -1.59    1.45    5.26    9.81   14.82
+   270.0    0.00   -0.23   -0.88   -1.89   -3.14   -4.49   -5.78   -6.85   -7.58   -7.87   -7.66   -6.94   -5.71   -3.94   -1.60    1.41    5.16    9.65   14.61
+   275.0    0.00   -0.23   -0.89   -1.90   -3.16   -4.51   -5.80   -6.88   -7.61   -7.90   -7.69   -6.97   -5.73   -3.97   -1.64    1.33    5.03    9.45   14.39
+   280.0    0.00   -0.23   -0.90   -1.92   -3.18   -4.54   -5.83   -6.91   -7.64   -7.93   -7.73   -7.01   -5.77   -4.02   -1.71    1.23    4.87    9.24   14.18
+   285.0    0.00   -0.24   -0.91   -1.93   -3.20   -4.56   -5.87   -6.95   -7.69   -7.98   -7.78   -7.06   -5.83   -4.09   -1.80    1.10    4.70    9.04   13.99
+   290.0    0.00   -0.24   -0.91   -1.95   -3.23   -4.60   -5.91   -7.00   -7.74   -8.04   -7.83   -7.12   -5.90   -4.17   -1.91    0.96    4.53    8.85   13.85
+   295.0    0.00   -0.24   -0.92   -1.96   -3.25   -4.63   -5.95   -7.05   -7.79   -8.09   -7.90   -7.19   -5.97   -4.26   -2.02    0.82    4.37    8.70   13.74
+   300.0    0.00   -0.25   -0.93   -1.98   -3.28   -4.67   -6.00   -7.10   -7.85   -8.15   -7.96   -7.26   -6.06   -4.36   -2.14    0.69    4.23    8.58   13.68
+   305.0    0.00   -0.25   -0.94   -2.00   -3.30   -4.71   -6.04   -7.16   -7.91   -8.21   -8.02   -7.32   -6.14   -4.46   -2.26    0.57    4.12    8.51   13.66
+   310.0    0.00   -0.25   -0.95   -2.01   -3.33   -4.74   -6.09   -7.21   -7.97   -8.27   -8.08   -7.39   -6.22   -4.55   -2.36    0.46    4.04    8.47   13.66
+   315.0    0.00   -0.26   -0.96   -2.03   -3.35   -4.78   -6.13   -7.26   -8.02   -8.33   -8.14   -7.45   -6.29   -4.64   -2.45    0.39    4.00    8.46   13.68
+   320.0    0.00   -0.26   -0.96   -2.04   -3.37   -4.81   -6.17   -7.30   -8.07   -8.38   -8.19   -7.51   -6.35   -4.71   -2.52    0.33    3.97    8.47   13.69
+   325.0    0.00   -0.26   -0.97   -2.05   -3.39   -4.83   -6.20   -7.34   -8.11   -8.42   -8.23   -7.55   -6.40   -4.76   -2.57    0.30    3.97    8.50   13.71
+   330.0    0.00   -0.26   -0.98   -2.06   -3.41   -4.85   -6.23   -7.37   -8.14   -8.45   -8.27   -7.59   -6.44   -4.81   -2.61    0.28    3.98    8.53   13.70
+   335.0    0.00   -0.26   -0.98   -2.07   -3.42   -4.87   -6.25   -7.40   -8.17   -8.48   -8.30   -7.62   -6.47   -4.83   -2.63    0.28    4.01    8.56   13.69
+   340.0    0.00   -0.27   -0.98   -2.07   -3.42   -4.88   -6.27   -7.42   -8.19   -8.51   -8.32   -7.64   -6.48   -4.84   -2.63    0.29    4.03    8.59   13.67
+   345.0    0.00   -0.27   -0.98   -2.08   -3.43   -4.88   -6.27   -7.43   -8.21   -8.52   -8.33   -7.64   -6.48   -4.84   -2.62    0.30    4.06    8.61   13.65
+   350.0    0.00   -0.27   -0.98   -2.08   -3.43   -4.88   -6.28   -7.43   -8.22   -8.53   -8.33   -7.64   -6.48   -4.82   -2.60    0.33    4.08    8.63   13.63
+   355.0    0.00   -0.27   -0.98   -2.07   -3.42   -4.88   -6.27   -7.43   -8.22   -8.53   -8.33   -7.63   -6.46   -4.80   -2.58    0.35    4.11    8.65   13.64
+   360.0    0.00   -0.27   -0.98   -2.07   -3.42   -4.87   -6.26   -7.43   -8.21   -8.53   -8.32   -7.62   -6.44   -4.77   -2.54    0.39    4.14    8.68   13.67
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.08     -0.59    120.35                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.13   -0.51   -1.08   -1.79   -2.58   -3.39   -4.17   -4.81   -5.21   -5.25   -4.86   -4.03   -2.83   -1.33    0.49    2.75    5.68    9.44
+     0.0    0.00   -0.12   -0.48   -1.02   -1.69   -2.44   -3.24   -4.04   -4.72   -5.17   -5.25   -4.89   -4.12   -3.00   -1.59    0.15    2.44    5.50    9.31
+     5.0    0.00   -0.12   -0.48   -1.02   -1.69   -2.44   -3.24   -4.03   -4.72   -5.16   -5.25   -4.90   -4.13   -3.01   -1.61    0.14    2.42    5.45    9.20
+    10.0    0.00   -0.12   -0.47   -1.01   -1.68   -2.44   -3.24   -4.03   -4.71   -5.15   -5.24   -4.90   -4.13   -3.02   -1.61    0.14    2.41    5.41    9.12
+    15.0    0.00   -0.12   -0.47   -1.01   -1.68   -2.44   -3.24   -4.02   -4.70   -5.14   -5.23   -4.89   -4.13   -3.02   -1.60    0.15    2.41    5.38    9.06
+    20.0    0.00   -0.11   -0.47   -1.01   -1.68   -2.44   -3.24   -4.02   -4.69   -5.13   -5.21   -4.88   -4.12   -3.00   -1.58    0.18    2.43    5.37    9.05
+    25.0    0.00   -0.11   -0.46   -1.00   -1.68   -2.44   -3.24   -4.02   -4.68   -5.11   -5.20   -4.86   -4.10   -2.97   -1.54    0.22    2.46    5.39    9.06
+    30.0    0.00   -0.11   -0.46   -1.00   -1.68   -2.45   -3.24   -4.01   -4.67   -5.09   -5.18   -4.84   -4.07   -2.93   -1.49    0.28    2.51    5.42    9.11
+    35.0    0.00   -0.11   -0.46   -1.00   -1.68   -2.45   -3.24   -4.01   -4.66   -5.08   -5.16   -4.81   -4.03   -2.88   -1.42    0.35    2.58    5.48    9.19
+    40.0    0.00   -0.11   -0.45   -1.00   -1.68   -2.45   -3.25   -4.01   -4.65   -5.06   -5.13   -4.78   -4.00   -2.83   -1.36    0.42    2.65    5.55    9.30
+    45.0    0.00   -0.10   -0.45   -0.99   -1.68   -2.45   -3.25   -4.01   -4.65   -5.05   -5.11   -4.75   -3.96   -2.78   -1.30    0.49    2.72    5.62    9.41
+    50.0    0.00   -0.10   -0.45   -0.99   -1.68   -2.45   -3.25   -4.01   -4.65   -5.05   -5.10   -4.72   -3.92   -2.73   -1.24    0.56    2.78    5.69    9.52
+    55.0    0.00   -0.10   -0.45   -0.99   -1.68   -2.46   -3.26   -4.02   -4.65   -5.04   -5.09   -4.70   -3.88   -2.69   -1.19    0.60    2.84    5.76    9.62
+    60.0    0.00   -0.10   -0.44   -0.99   -1.68   -2.46   -3.27   -4.03   -4.66   -5.05   -5.08   -4.68   -3.86   -2.66   -1.16    0.64    2.87    5.81    9.70
+    65.0    0.00   -0.10   -0.44   -0.99   -1.69   -2.47   -3.28   -4.05   -4.68   -5.06   -5.08   -4.67   -3.84   -2.64   -1.15    0.65    2.89    5.84    9.76
+    70.0    0.00   -0.10   -0.44   -0.99   -1.69   -2.48   -3.30   -4.07   -4.70   -5.07   -5.08   -4.67   -3.83   -2.64   -1.15    0.64    2.88    5.85    9.79
+    75.0    0.00   -0.10   -0.44   -0.99   -1.69   -2.49   -3.31   -4.09   -4.72   -5.09   -5.09   -4.67   -3.84   -2.65   -1.17    0.61    2.86    5.83    9.78
+    80.0    0.00   -0.10   -0.45   -1.00   -1.70   -2.50   -3.33   -4.12   -4.75   -5.11   -5.11   -4.68   -3.85   -2.67   -1.21    0.57    2.82    5.80    9.74
+    85.0    0.00   -0.10   -0.45   -1.00   -1.71   -2.52   -3.36   -4.14   -4.78   -5.14   -5.13   -4.70   -3.87   -2.70   -1.25    0.52    2.77    5.75    9.67
+    90.0    0.00   -0.10   -0.45   -1.01   -1.72   -2.54   -3.38   -4.17   -4.81   -5.17   -5.15   -4.72   -3.89   -2.73   -1.29    0.47    2.71    5.68    9.57
+    95.0    0.00   -0.10   -0.46   -1.02   -1.74   -2.55   -3.40   -4.20   -4.83   -5.19   -5.18   -4.74   -3.92   -2.77   -1.33    0.42    2.66    5.62    9.47
+   100.0    0.00   -0.11   -0.46   -1.03   -1.75   -2.58   -3.43   -4.22   -4.86   -5.22   -5.20   -4.77   -3.95   -2.80   -1.37    0.38    2.61    5.56    9.36
+   105.0    0.00   -0.11   -0.47   -1.04   -1.77   -2.60   -3.45   -4.25   -4.88   -5.24   -5.22   -4.79   -3.97   -2.82   -1.40    0.35    2.58    5.51    9.26
+   110.0    0.00   -0.11   -0.48   -1.05   -1.79   -2.62   -3.47   -4.27   -4.90   -5.26   -5.25   -4.82   -4.00   -2.84   -1.41    0.35    2.57    5.48    9.18
+   115.0    0.00   -0.11   -0.48   -1.07   -1.81   -2.64   -3.50   -4.29   -4.92   -5.28   -5.26   -4.84   -4.01   -2.85   -1.41    0.36    2.58    5.46    9.13
+   120.0    0.00   -0.12   -0.49   -1.08   -1.83   -2.66   -3.52   -4.30   -4.93   -5.29   -5.28   -4.85   -4.03   -2.86   -1.39    0.38    2.61    5.47    9.10
+   125.0    0.00   -0.12   -0.50   -1.10   -1.85   -2.68   -3.53   -4.32   -4.94   -5.30   -5.29   -4.87   -4.03   -2.85   -1.37    0.43    2.65    5.50    9.09
+   130.0    0.00   -0.12   -0.50   -1.11   -1.86   -2.70   -3.55   -4.33   -4.95   -5.30   -5.30   -4.88   -4.04   -2.84   -1.33    0.48    2.71    5.54    9.11
+   135.0    0.00   -0.12   -0.51   -1.12   -1.88   -2.72   -3.56   -4.33   -4.95   -5.30   -5.30   -4.88   -4.04   -2.82   -1.29    0.54    2.77    5.60    9.15
+   140.0    0.00   -0.13   -0.52   -1.13   -1.89   -2.73   -3.57   -4.33   -4.95   -5.31   -5.31   -4.89   -4.04   -2.80   -1.25    0.60    2.84    5.66    9.19
+   145.0    0.00   -0.13   -0.52   -1.14   -1.90   -2.74   -3.57   -4.33   -4.94   -5.31   -5.31   -4.89   -4.04   -2.79   -1.22    0.65    2.90    5.71    9.23
+   150.0    0.00   -0.13   -0.53   -1.15   -1.91   -2.74   -3.57   -4.33   -4.94   -5.31   -5.32   -4.90   -4.04   -2.78   -1.19    0.69    2.94    5.74    9.25
+   155.0    0.00   -0.13   -0.53   -1.15   -1.91   -2.74   -3.57   -4.33   -4.94   -5.31   -5.33   -4.91   -4.05   -2.78   -1.18    0.71    2.97    5.76    9.25
+   160.0    0.00   -0.13   -0.53   -1.15   -1.91   -2.74   -3.56   -4.32   -4.93   -5.31   -5.33   -4.92   -4.06   -2.78   -1.18    0.71    2.97    5.76    9.23
+   165.0    0.00   -0.14   -0.54   -1.15   -1.91   -2.73   -3.55   -4.31   -4.93   -5.31   -5.34   -4.94   -4.07   -2.80   -1.19    0.70    2.95    5.73    9.18
+   170.0    0.00   -0.14   -0.54   -1.15   -1.90   -2.72   -3.54   -4.30   -4.93   -5.32   -5.35   -4.95   -4.09   -2.82   -1.22    0.66    2.91    5.68    9.11
+   175.0    0.00   -0.14   -0.54   -1.15   -1.90   -2.71   -3.53   -4.30   -4.93   -5.32   -5.36   -4.96   -4.11   -2.84   -1.26    0.61    2.85    5.62    9.03
+   180.0    0.00   -0.14   -0.54   -1.14   -1.89   -2.70   -3.52   -4.29   -4.93   -5.33   -5.37   -4.97   -4.12   -2.87   -1.30    0.55    2.77    5.55    8.96
+   185.0    0.00   -0.14   -0.54   -1.14   -1.87   -2.69   -3.51   -4.29   -4.93   -5.34   -5.38   -4.98   -4.13   -2.89   -1.35    0.48    2.70    5.48    8.89
+   190.0    0.00   -0.14   -0.53   -1.13   -1.86   -2.67   -3.50   -4.29   -4.94   -5.34   -5.38   -4.97   -4.12   -2.90   -1.38    0.42    2.63    5.42    8.86
+   195.0    0.00   -0.14   -0.53   -1.12   -1.85   -2.66   -3.49   -4.28   -4.94   -5.34   -5.37   -4.96   -4.11   -2.90   -1.40    0.38    2.58    5.39    8.87
+   200.0    0.00   -0.14   -0.53   -1.12   -1.84   -2.65   -3.49   -4.29   -4.95   -5.34   -5.36   -4.94   -4.09   -2.89   -1.41    0.35    2.55    5.39    8.92
+   205.0    0.00   -0.15   -0.53   -1.11   -1.83   -2.64   -3.48   -4.29   -4.95   -5.34   -5.35   -4.91   -4.05   -2.86   -1.40    0.35    2.55    5.43    9.01
+   210.0    0.00   -0.15   -0.53   -1.11   -1.82   -2.63   -3.48   -4.29   -4.95   -5.34   -5.33   -4.88   -4.01   -2.82   -1.36    0.38    2.59    5.50    9.15
+   215.0    0.00   -0.15   -0.53   -1.10   -1.82   -2.63   -3.48   -4.29   -4.95   -5.33   -5.32   -4.85   -3.97   -2.77   -1.31    0.44    2.67    5.61    9.32
+   220.0    0.00   -0.15   -0.53   -1.10   -1.82   -2.63   -3.48   -4.29   -4.95   -5.32   -5.30   -4.82   -3.93   -2.71   -1.24    0.52    2.78    5.76    9.50
+   225.0    0.00   -0.15   -0.53   -1.10   -1.82   -2.63   -3.47   -4.28   -4.94   -5.31   -5.28   -4.79   -3.89   -2.66   -1.17    0.63    2.91    5.91    9.68
+   230.0    0.00   -0.15   -0.53   -1.11   -1.82   -2.63   -3.47   -4.28   -4.93   -5.30   -5.27   -4.78   -3.86   -2.61   -1.09    0.75    3.06    6.07    9.84
+   235.0    0.00   -0.15   -0.54   -1.11   -1.82   -2.63   -3.47   -4.27   -4.92   -5.29   -5.26   -4.77   -3.85   -2.58   -1.01    0.86    3.21    6.22    9.96
+   240.0    0.00   -0.15   -0.54   -1.11   -1.83   -2.63   -3.47   -4.26   -4.91   -5.28   -5.26   -4.78   -3.86   -2.56   -0.95    0.97    3.35    6.35   10.04
+   245.0    0.00   -0.15   -0.54   -1.12   -1.83   -2.63   -3.46   -4.25   -4.89   -5.27   -5.26   -4.80   -3.88   -2.56   -0.91    1.06    3.46    6.44   10.07
+   250.0    0.00   -0.15   -0.54   -1.12   -1.84   -2.63   -3.46   -4.23   -4.88   -5.26   -5.27   -4.83   -3.92   -2.58   -0.90    1.12    3.53    6.48   10.05
+   255.0    0.00   -0.16   -0.55   -1.13   -1.84   -2.64   -3.45   -4.22   -4.86   -5.26   -5.29   -4.87   -3.97   -2.63   -0.91    1.14    3.56    6.47    9.98
+   260.0    0.00   -0.16   -0.55   -1.13   -1.85   -2.64   -3.44   -4.20   -4.84   -5.25   -5.31   -4.91   -4.03   -2.68   -0.95    1.12    3.54    6.41    9.87
+   265.0    0.00   -0.16   -0.55   -1.14   -1.85   -2.64   -3.43   -4.19   -4.83   -5.25   -5.33   -4.96   -4.09   -2.75   -1.01    1.07    3.48    6.31    9.74
+   270.0    0.00   -0.16   -0.56   -1.14   -1.86   -2.63   -3.43   -4.18   -4.82   -5.25   -5.34   -5.00   -4.15   -2.82   -1.08    0.98    3.37    6.18    9.61
+   275.0    0.00   -0.16   -0.56   -1.14   -1.86   -2.63   -3.42   -4.16   -4.80   -5.24   -5.36   -5.03   -4.20   -2.89   -1.17    0.87    3.23    6.03    9.50
+   280.0    0.00   -0.16   -0.56   -1.15   -1.86   -2.63   -3.41   -4.15   -4.79   -5.24   -5.36   -5.05   -4.24   -2.95   -1.26    0.75    3.08    5.88    9.41
+   285.0    0.00   -0.16   -0.56   -1.14   -1.85   -2.62   -3.40   -4.14   -4.79   -5.23   -5.36   -5.06   -4.27   -3.00   -1.35    0.62    2.92    5.73    9.36
+   290.0    0.00   -0.16   -0.56   -1.14   -1.85   -2.61   -3.39   -4.13   -4.78   -5.23   -5.36   -5.06   -4.28   -3.04   -1.42    0.50    2.77    5.60    9.35
+   295.0    0.00   -0.16   -0.55   -1.14   -1.84   -2.60   -3.38   -4.12   -4.77   -5.22   -5.35   -5.05   -4.27   -3.05   -1.48    0.39    2.64    5.51    9.38
+   300.0    0.00   -0.15   -0.55   -1.13   -1.83   -2.59   -3.37   -4.12   -4.77   -5.21   -5.33   -5.02   -4.25   -3.06   -1.53    0.30    2.53    5.45    9.45
+   305.0    0.00   -0.15   -0.55   -1.12   -1.82   -2.57   -3.35   -4.11   -4.76   -5.20   -5.31   -4.99   -4.22   -3.04   -1.55    0.24    2.46    5.42    9.53
+   310.0    0.00   -0.15   -0.54   -1.11   -1.80   -2.56   -3.34   -4.10   -4.76   -5.20   -5.29   -4.96   -4.18   -3.02   -1.56    0.20    2.41    5.42    9.63
+   315.0    0.00   -0.15   -0.54   -1.10   -1.79   -2.54   -3.33   -4.09   -4.75   -5.19   -5.28   -4.93   -4.14   -2.99   -1.55    0.18    2.40    5.45    9.72
+   320.0    0.00   -0.15   -0.53   -1.09   -1.77   -2.52   -3.31   -4.08   -4.75   -5.18   -5.26   -4.90   -4.11   -2.96   -1.54    0.18    2.40    5.50    9.80
+   325.0    0.00   -0.14   -0.53   -1.08   -1.76   -2.51   -3.30   -4.07   -4.74   -5.18   -5.25   -4.88   -4.08   -2.94   -1.53    0.18    2.42    5.54    9.84
+   330.0    0.00   -0.14   -0.52   -1.07   -1.74   -2.49   -3.28   -4.07   -4.74   -5.18   -5.24   -4.86   -4.06   -2.92   -1.52    0.19    2.45    5.59    9.85
+   335.0    0.00   -0.14   -0.51   -1.06   -1.73   -2.48   -3.27   -4.06   -4.74   -5.17   -5.24   -4.86   -4.05   -2.92   -1.52    0.20    2.47    5.62    9.83
+   340.0    0.00   -0.14   -0.51   -1.05   -1.72   -2.46   -3.26   -4.05   -4.74   -5.17   -5.24   -4.86   -4.06   -2.92   -1.52    0.21    2.49    5.63    9.76
+   345.0    0.00   -0.13   -0.50   -1.04   -1.71   -2.46   -3.25   -4.05   -4.73   -5.17   -5.24   -4.86   -4.07   -2.93   -1.53    0.20    2.49    5.62    9.67
+   350.0    0.00   -0.13   -0.49   -1.03   -1.70   -2.45   -3.25   -4.04   -4.73   -5.17   -5.24   -4.87   -4.08   -2.95   -1.55    0.19    2.48    5.59    9.55
+   355.0    0.00   -0.13   -0.49   -1.03   -1.69   -2.44   -3.24   -4.04   -4.73   -5.17   -5.25   -4.88   -4.10   -2.98   -1.57    0.17    2.46    5.55    9.43
+   360.0    0.00   -0.12   -0.48   -1.02   -1.69   -2.44   -3.24   -4.04   -4.72   -5.17   -5.25   -4.89   -4.12   -3.00   -1.59    0.15    2.44    5.50    9.31
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH700936E_C    SNOW                                        TYPE / SERIAL NO    
+COPIED              Geo++ GmbH               4    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+COPIED FROM ASH700936E      SNOW                            COMMENT             
+ATTENTION! COPIED WITHOUT VERIFICATION BY CALIBRATION!      COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.18     -0.20     89.60                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.23   -0.90   -1.93   -3.24   -4.69   -6.16   -7.49   -8.50   -9.03   -8.95   -8.17   -6.69   -4.53   -1.75    1.63    5.66   10.37   15.62
+     0.0    0.00   -0.25   -0.93   -1.99   -3.33   -4.84   -6.36   -7.72   -8.73   -9.21   -9.06   -8.22   -6.73   -4.63   -1.90    1.49    5.62   10.39   15.32
+     5.0    0.00   -0.25   -0.93   -1.98   -3.32   -4.82   -6.34   -7.70   -8.72   -9.21   -9.06   -8.23   -6.73   -4.62   -1.90    1.49    5.61   10.39   15.35
+    10.0    0.00   -0.24   -0.92   -1.97   -3.30   -4.80   -6.32   -7.68   -8.70   -9.21   -9.07   -8.23   -6.74   -4.62   -1.90    1.49    5.60   10.38   15.40
+    15.0    0.00   -0.24   -0.92   -1.96   -3.29   -4.78   -6.29   -7.66   -8.69   -9.20   -9.07   -8.24   -6.74   -4.62   -1.89    1.49    5.60   10.39   15.46
+    20.0    0.00   -0.24   -0.91   -1.95   -3.27   -4.76   -6.26   -7.63   -8.66   -9.19   -9.07   -8.25   -6.75   -4.62   -1.88    1.50    5.60   10.40   15.54
+    25.0    0.00   -0.24   -0.91   -1.95   -3.26   -4.74   -6.24   -7.60   -8.64   -9.17   -9.07   -8.26   -6.76   -4.62   -1.87    1.52    5.62   10.43   15.63
+    30.0    0.00   -0.24   -0.90   -1.94   -3.25   -4.72   -6.21   -7.57   -8.61   -9.15   -9.07   -8.27   -6.77   -4.62   -1.85    1.54    5.65   10.48   15.74
+    35.0    0.00   -0.23   -0.90   -1.93   -3.24   -4.70   -6.19   -7.54   -8.57   -9.13   -9.05   -8.27   -6.77   -4.61   -1.83    1.58    5.70   10.54   15.86
+    40.0    0.00   -0.23   -0.90   -1.93   -3.23   -4.69   -6.16   -7.51   -8.54   -9.10   -9.04   -8.26   -6.77   -4.60   -1.80    1.63    5.75   10.60   15.98
+    45.0    0.00   -0.23   -0.89   -1.92   -3.22   -4.68   -6.14   -7.48   -8.51   -9.07   -9.02   -8.25   -6.76   -4.58   -1.77    1.68    5.81   10.67   16.09
+    50.0    0.00   -0.23   -0.89   -1.92   -3.22   -4.66   -6.13   -7.45   -8.48   -9.04   -8.99   -8.23   -6.74   -4.55   -1.73    1.73    5.87   10.73   16.18
+    55.0    0.00   -0.23   -0.89   -1.91   -3.21   -4.65   -6.11   -7.43   -8.45   -9.01   -8.96   -8.20   -6.71   -4.52   -1.68    1.78    5.92   10.79   16.26
+    60.0    0.00   -0.22   -0.88   -1.91   -3.20   -4.64   -6.09   -7.41   -8.42   -8.98   -8.92   -8.16   -6.67   -4.48   -1.64    1.82    5.96   10.82   16.31
+    65.0    0.00   -0.22   -0.88   -1.90   -3.19   -4.63   -6.07   -7.38   -8.40   -8.95   -8.89   -8.12   -6.63   -4.43   -1.60    1.86    5.98   10.82   16.31
+    70.0    0.00   -0.22   -0.88   -1.90   -3.18   -4.61   -6.06   -7.36   -8.37   -8.92   -8.85   -8.08   -6.58   -4.39   -1.56    1.88    5.98   10.80   16.28
+    75.0    0.00   -0.22   -0.87   -1.89   -3.17   -4.60   -6.04   -7.34   -8.35   -8.89   -8.83   -8.05   -6.54   -4.35   -1.53    1.89    5.95   10.74   16.21
+    80.0    0.00   -0.22   -0.87   -1.88   -3.16   -4.58   -6.01   -7.32   -8.33   -8.87   -8.80   -8.02   -6.51   -4.32   -1.52    1.88    5.91   10.66   16.09
+    85.0    0.00   -0.22   -0.86   -1.87   -3.14   -4.56   -5.99   -7.30   -8.31   -8.86   -8.79   -8.01   -6.49   -4.30   -1.51    1.85    5.84   10.55   15.94
+    90.0    0.00   -0.21   -0.86   -1.86   -3.13   -4.54   -5.97   -7.27   -8.29   -8.85   -8.78   -8.00   -6.49   -4.30   -1.53    1.81    5.76   10.42   15.77
+    95.0    0.00   -0.21   -0.86   -1.86   -3.11   -4.52   -5.94   -7.25   -8.28   -8.84   -8.79   -8.01   -6.50   -4.32   -1.55    1.76    5.68   10.29   15.58
+   100.0    0.00   -0.21   -0.85   -1.85   -3.10   -4.50   -5.92   -7.24   -8.27   -8.85   -8.80   -8.03   -6.52   -4.35   -1.59    1.71    5.59   10.16   15.40
+   105.0    0.00   -0.21   -0.85   -1.84   -3.09   -4.48   -5.91   -7.23   -8.27   -8.85   -8.82   -8.06   -6.56   -4.39   -1.64    1.65    5.52   10.06   15.24
+   110.0    0.00   -0.21   -0.85   -1.84   -3.08   -4.48   -5.90   -7.22   -8.27   -8.86   -8.84   -8.09   -6.61   -4.45   -1.70    1.59    5.46    9.98   15.11
+   115.0    0.00   -0.21   -0.85   -1.84   -3.08   -4.47   -5.90   -7.22   -8.27   -8.87   -8.86   -8.13   -6.66   -4.51   -1.76    1.54    5.42    9.93   15.03
+   120.0    0.00   -0.21   -0.85   -1.84   -3.08   -4.48   -5.90   -7.22   -8.28   -8.89   -8.89   -8.17   -6.71   -4.56   -1.81    1.51    5.40    9.92   15.00
+   125.0    0.00   -0.21   -0.85   -1.84   -3.09   -4.49   -5.91   -7.23   -8.29   -8.90   -8.91   -8.20   -6.76   -4.62   -1.85    1.48    5.40    9.94   15.01
+   130.0    0.00   -0.21   -0.85   -1.85   -3.10   -4.50   -5.93   -7.25   -8.30   -8.91   -8.92   -8.23   -6.79   -4.66   -1.89    1.47    5.43    9.99   15.08
+   135.0    0.00   -0.21   -0.85   -1.85   -3.11   -4.52   -5.95   -7.27   -8.31   -8.92   -8.93   -8.24   -6.82   -4.69   -1.91    1.48    5.47   10.07   15.17
+   140.0    0.00   -0.21   -0.85   -1.86   -3.13   -4.55   -5.98   -7.29   -8.33   -8.92   -8.93   -8.25   -6.84   -4.71   -1.92    1.49    5.52   10.15   15.29
+   145.0    0.00   -0.21   -0.86   -1.87   -3.15   -4.57   -6.01   -7.32   -8.34   -8.93   -8.93   -8.25   -6.84   -4.72   -1.92    1.51    5.57   10.23   15.40
+   150.0    0.00   -0.21   -0.86   -1.88   -3.16   -4.60   -6.04   -7.34   -8.36   -8.93   -8.93   -8.24   -6.84   -4.71   -1.91    1.53    5.61   10.30   15.51
+   155.0    0.00   -0.21   -0.86   -1.89   -3.18   -4.62   -6.06   -7.37   -8.37   -8.94   -8.92   -8.24   -6.83   -4.71   -1.90    1.55    5.63   10.34   15.58
+   160.0    0.00   -0.21   -0.86   -1.89   -3.19   -4.64   -6.09   -7.39   -8.39   -8.94   -8.92   -8.23   -6.82   -4.70   -1.89    1.56    5.64   10.35   15.62
+   165.0    0.00   -0.21   -0.87   -1.90   -3.20   -4.65   -6.11   -7.41   -8.40   -8.96   -8.93   -8.23   -6.82   -4.69   -1.88    1.56    5.62   10.32   15.61
+   170.0    0.00   -0.21   -0.87   -1.90   -3.21   -4.67   -6.12   -7.42   -8.42   -8.97   -8.95   -8.24   -6.82   -4.68   -1.88    1.54    5.58   10.26   15.57
+   175.0    0.00   -0.21   -0.87   -1.90   -3.21   -4.67   -6.13   -7.44   -8.44   -9.00   -8.97   -8.26   -6.83   -4.69   -1.89    1.52    5.52   10.18   15.50
+   180.0    0.00   -0.21   -0.87   -1.90   -3.21   -4.67   -6.13   -7.45   -8.46   -9.02   -9.00   -8.29   -6.84   -4.70   -1.91    1.48    5.45   10.08   15.42
+   185.0    0.00   -0.21   -0.87   -1.90   -3.21   -4.67   -6.14   -7.46   -8.48   -9.06   -9.03   -8.32   -6.86   -4.71   -1.93    1.43    5.38    9.99   15.34
+   190.0    0.00   -0.21   -0.87   -1.90   -3.21   -4.66   -6.13   -7.47   -8.51   -9.09   -9.07   -8.35   -6.89   -4.73   -1.96    1.38    5.31    9.92   15.28
+   195.0    0.00   -0.22   -0.87   -1.90   -3.20   -4.66   -6.13   -7.48   -8.53   -9.12   -9.10   -8.38   -6.91   -4.75   -1.98    1.34    5.26    9.87   15.26
+   200.0    0.00   -0.22   -0.87   -1.89   -3.19   -4.65   -6.13   -7.48   -8.54   -9.15   -9.13   -8.40   -6.92   -4.76   -2.00    1.31    5.23    9.87   15.28
+   205.0    0.00   -0.22   -0.87   -1.89   -3.19   -4.64   -6.13   -7.49   -8.56   -9.16   -9.15   -8.41   -6.93   -4.77   -2.02    1.30    5.24    9.92   15.34
+   210.0    0.00   -0.22   -0.87   -1.89   -3.18   -4.64   -6.12   -7.49   -8.57   -9.17   -9.15   -8.40   -6.92   -4.76   -2.01    1.31    5.29   10.01   15.46
+   215.0    0.00   -0.22   -0.87   -1.89   -3.18   -4.64   -6.12   -7.49   -8.57   -9.17   -9.14   -8.38   -6.90   -4.74   -1.99    1.35    5.37   10.15   15.61
+   220.0    0.00   -0.22   -0.87   -1.89   -3.18   -4.64   -6.12   -7.49   -8.56   -9.15   -9.11   -8.35   -6.86   -4.71   -1.95    1.42    5.49   10.33   15.78
+   225.0    0.00   -0.22   -0.88   -1.89   -3.19   -4.64   -6.13   -7.49   -8.55   -9.13   -9.07   -8.29   -6.81   -4.66   -1.90    1.50    5.63   10.53   15.95
+   230.0    0.00   -0.23   -0.88   -1.90   -3.19   -4.65   -6.13   -7.49   -8.53   -9.09   -9.02   -8.23   -6.74   -4.59   -1.82    1.61    5.79   10.73   16.12
+   235.0    0.00   -0.23   -0.89   -1.91   -3.20   -4.65   -6.13   -7.48   -8.51   -9.05   -8.96   -8.17   -6.67   -4.52   -1.74    1.72    5.95   10.91   16.25
+   240.0    0.00   -0.23   -0.89   -1.92   -3.21   -4.67   -6.14   -7.47   -8.49   -9.01   -8.90   -8.10   -6.60   -4.45   -1.65    1.84    6.09   11.07   16.34
+   245.0    0.00   -0.23   -0.90   -1.93   -3.23   -4.68   -6.15   -7.47   -8.47   -8.97   -8.85   -8.03   -6.53   -4.37   -1.56    1.94    6.21   11.17   16.38
+   250.0    0.00   -0.24   -0.90   -1.94   -3.24   -4.70   -6.16   -7.47   -8.45   -8.94   -8.80   -7.98   -6.47   -4.30   -1.48    2.03    6.30   11.22   16.37
+   255.0    0.00   -0.24   -0.91   -1.95   -3.26   -4.71   -6.17   -7.47   -8.44   -8.91   -8.77   -7.94   -6.42   -4.24   -1.41    2.10    6.34   11.22   16.31
+   260.0    0.00   -0.24   -0.92   -1.96   -3.28   -4.73   -6.18   -7.47   -8.43   -8.90   -8.75   -7.91   -6.38   -4.19   -1.36    2.14    6.33   11.15   16.21
+   265.0    0.00   -0.24   -0.93   -1.98   -3.30   -4.75   -6.20   -7.48   -8.43   -8.90   -8.74   -7.90   -6.36   -4.16   -1.32    2.15    6.28   11.04   16.09
+   270.0    0.00   -0.25   -0.93   -1.99   -3.31   -4.77   -6.22   -7.50   -8.45   -8.91   -8.75   -7.90   -6.35   -4.14   -1.31    2.13    6.20   10.88   15.96
+   275.0    0.00   -0.25   -0.94   -2.00   -3.33   -4.79   -6.24   -7.52   -8.46   -8.93   -8.77   -7.92   -6.36   -4.14   -1.32    2.08    6.08   10.71   15.82
+   280.0    0.00   -0.25   -0.95   -2.02   -3.35   -4.81   -6.26   -7.54   -8.49   -8.96   -8.80   -7.95   -6.38   -4.16   -1.34    2.01    5.95   10.52   15.70
+   285.0    0.00   -0.25   -0.95   -2.03   -3.36   -4.83   -6.28   -7.56   -8.52   -8.99   -8.84   -7.98   -6.41   -4.19   -1.39    1.94    5.81   10.35   15.60
+   290.0    0.00   -0.25   -0.96   -2.04   -3.38   -4.85   -6.30   -7.59   -8.55   -9.02   -8.88   -8.02   -6.45   -4.23   -1.44    1.85    5.68   10.19   15.52
+   295.0    0.00   -0.26   -0.96   -2.04   -3.39   -4.87   -6.32   -7.61   -8.58   -9.06   -8.92   -8.07   -6.50   -4.28   -1.50    1.77    5.57   10.07   15.47
+   300.0    0.00   -0.26   -0.96   -2.05   -3.40   -4.88   -6.34   -7.64   -8.61   -9.09   -8.95   -8.11   -6.54   -4.33   -1.57    1.69    5.48    9.99   15.44
+   305.0    0.00   -0.26   -0.97   -2.05   -3.41   -4.89   -6.36   -7.66   -8.63   -9.12   -8.98   -8.14   -6.59   -4.38   -1.63    1.62    5.43    9.95   15.43
+   310.0    0.00   -0.26   -0.97   -2.06   -3.41   -4.90   -6.38   -7.68   -8.66   -9.14   -9.01   -8.17   -6.63   -4.44   -1.69    1.57    5.40    9.95   15.42
+   315.0    0.00   -0.26   -0.97   -2.06   -3.42   -4.91   -6.39   -7.70   -8.68   -9.16   -9.03   -8.20   -6.67   -4.49   -1.74    1.54    5.40    9.98   15.42
+   320.0    0.00   -0.26   -0.97   -2.05   -3.42   -4.92   -6.40   -7.72   -8.69   -9.17   -9.04   -8.21   -6.70   -4.53   -1.79    1.51    5.42   10.03   15.42
+   325.0    0.00   -0.26   -0.96   -2.05   -3.41   -4.92   -6.41   -7.73   -8.70   -9.18   -9.04   -8.22   -6.72   -4.57   -1.83    1.50    5.46   10.10   15.41
+   330.0    0.00   -0.26   -0.96   -2.05   -3.41   -4.91   -6.41   -7.74   -8.71   -9.19   -9.05   -8.23   -6.73   -4.60   -1.86    1.50    5.50   10.17   15.40
+   335.0    0.00   -0.26   -0.96   -2.04   -3.40   -4.91   -6.42   -7.74   -8.72   -9.20   -9.05   -8.23   -6.74   -4.62   -1.88    1.50    5.55   10.24   15.38
+   340.0    0.00   -0.26   -0.95   -2.03   -3.39   -4.90   -6.41   -7.75   -8.73   -9.20   -9.05   -8.23   -6.74   -4.63   -1.89    1.50    5.58   10.30   15.35
+   345.0    0.00   -0.25   -0.95   -2.02   -3.38   -4.89   -6.41   -7.75   -8.73   -9.20   -9.05   -8.22   -6.74   -4.63   -1.90    1.50    5.61   10.34   15.33
+   350.0    0.00   -0.25   -0.94   -2.01   -3.36   -4.88   -6.39   -7.74   -8.74   -9.21   -9.05   -8.22   -6.74   -4.63   -1.90    1.50    5.63   10.37   15.32
+   355.0    0.00   -0.25   -0.94   -2.00   -3.35   -4.86   -6.38   -7.73   -8.73   -9.21   -9.05   -8.22   -6.74   -4.63   -1.90    1.50    5.63   10.39   15.32
+   360.0    0.00   -0.25   -0.93   -1.99   -3.33   -4.84   -6.36   -7.72   -8.73   -9.21   -9.06   -8.22   -6.73   -4.63   -1.90    1.49    5.62   10.39   15.32
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.07      0.08    118.23                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.16   -0.59   -1.20   -1.87   -2.55   -3.23   -3.90   -4.54   -5.06   -5.28   -5.05   -4.30   -3.06   -1.42    0.62    3.19    6.62   11.19
+     0.0    0.00   -0.17   -0.61   -1.21   -1.86   -2.52   -3.18   -3.85   -4.50   -5.04   -5.32   -5.19   -4.56   -3.42   -1.79    0.35    3.14    6.73   11.06
+     5.0    0.00   -0.17   -0.61   -1.20   -1.86   -2.53   -3.19   -3.86   -4.51   -5.06   -5.36   -5.23   -4.60   -3.45   -1.80    0.35    3.12    6.69   11.04
+    10.0    0.00   -0.17   -0.60   -1.20   -1.87   -2.53   -3.19   -3.86   -4.52   -5.08   -5.38   -5.26   -4.63   -3.46   -1.80    0.35    3.11    6.65   11.03
+    15.0    0.00   -0.16   -0.60   -1.20   -1.87   -2.54   -3.20   -3.87   -4.53   -5.09   -5.40   -5.28   -4.64   -3.45   -1.78    0.38    3.11    6.63   11.04
+    20.0    0.00   -0.16   -0.59   -1.20   -1.87   -2.54   -3.20   -3.87   -4.53   -5.09   -5.40   -5.28   -4.63   -3.42   -1.73    0.42    3.13    6.63   11.06
+    25.0    0.00   -0.16   -0.59   -1.20   -1.88   -2.55   -3.21   -3.87   -4.53   -5.08   -5.39   -5.27   -4.60   -3.38   -1.68    0.47    3.17    6.64   11.11
+    30.0    0.00   -0.16   -0.59   -1.20   -1.88   -2.56   -3.22   -3.87   -4.52   -5.07   -5.37   -5.24   -4.55   -3.32   -1.61    0.54    3.21    6.67   11.18
+    35.0    0.00   -0.15   -0.59   -1.20   -1.89   -2.57   -3.23   -3.88   -4.52   -5.06   -5.35   -5.19   -4.50   -3.25   -1.53    0.61    3.27    6.73   11.27
+    40.0    0.00   -0.15   -0.58   -1.20   -1.89   -2.58   -3.24   -3.89   -4.52   -5.05   -5.32   -5.15   -4.43   -3.17   -1.45    0.68    3.33    6.80   11.39
+    45.0    0.00   -0.15   -0.58   -1.20   -1.90   -2.59   -3.25   -3.90   -4.53   -5.04   -5.29   -5.10   -4.37   -3.10   -1.38    0.74    3.39    6.87   11.52
+    50.0    0.00   -0.14   -0.58   -1.20   -1.90   -2.60   -3.27   -3.92   -4.54   -5.04   -5.27   -5.06   -4.31   -3.04   -1.32    0.80    3.45    6.95   11.64
+    55.0    0.00   -0.14   -0.57   -1.20   -1.91   -2.61   -3.29   -3.94   -4.56   -5.05   -5.26   -5.03   -4.27   -2.99   -1.28    0.84    3.50    7.03   11.75
+    60.0    0.00   -0.14   -0.57   -1.20   -1.91   -2.62   -3.31   -3.97   -4.58   -5.06   -5.26   -5.01   -4.23   -2.95   -1.24    0.87    3.54    7.10   11.84
+    65.0    0.00   -0.14   -0.57   -1.20   -1.92   -2.64   -3.33   -4.00   -4.61   -5.09   -5.26   -5.00   -4.21   -2.93   -1.22    0.89    3.57    7.15   11.89
+    70.0    0.00   -0.13   -0.56   -1.20   -1.92   -2.65   -3.35   -4.03   -4.64   -5.11   -5.28   -5.00   -4.21   -2.92   -1.22    0.90    3.59    7.17   11.89
+    75.0    0.00   -0.13   -0.56   -1.20   -1.92   -2.66   -3.37   -4.05   -4.67   -5.14   -5.30   -5.01   -4.21   -2.93   -1.22    0.89    3.59    7.17   11.85
+    80.0    0.00   -0.13   -0.56   -1.19   -1.92   -2.66   -3.39   -4.08   -4.70   -5.17   -5.32   -5.03   -4.22   -2.94   -1.24    0.88    3.57    7.14   11.77
+    85.0    0.00   -0.13   -0.56   -1.19   -1.92   -2.67   -3.40   -4.09   -4.73   -5.19   -5.34   -5.05   -4.24   -2.95   -1.25    0.87    3.55    7.08   11.65
+    90.0    0.00   -0.13   -0.55   -1.19   -1.92   -2.67   -3.40   -4.11   -4.74   -5.21   -5.36   -5.06   -4.25   -2.96   -1.26    0.85    3.51    7.01   11.50
+    95.0    0.00   -0.13   -0.55   -1.19   -1.92   -2.67   -3.41   -4.11   -4.75   -5.22   -5.37   -5.07   -4.26   -2.96   -1.26    0.83    3.47    6.92   11.36
+   100.0    0.00   -0.13   -0.55   -1.18   -1.92   -2.67   -3.41   -4.11   -4.75   -5.22   -5.37   -5.07   -4.26   -2.96   -1.26    0.82    3.43    6.83   11.22
+   105.0    0.00   -0.12   -0.55   -1.18   -1.92   -2.67   -3.40   -4.11   -4.74   -5.21   -5.36   -5.06   -4.25   -2.95   -1.26    0.81    3.39    6.74   11.11
+   110.0    0.00   -0.12   -0.55   -1.18   -1.91   -2.66   -3.39   -4.09   -4.73   -5.20   -5.35   -5.05   -4.24   -2.94   -1.24    0.81    3.35    6.67   11.04
+   115.0    0.00   -0.12   -0.55   -1.18   -1.91   -2.65   -3.38   -4.08   -4.71   -5.18   -5.33   -5.04   -4.22   -2.92   -1.23    0.81    3.32    6.62   11.01
+   120.0    0.00   -0.12   -0.55   -1.18   -1.91   -2.65   -3.37   -4.06   -4.68   -5.15   -5.31   -5.02   -4.21   -2.90   -1.21    0.82    3.31    6.58   11.03
+   125.0    0.00   -0.12   -0.55   -1.18   -1.90   -2.64   -3.35   -4.03   -4.66   -5.13   -5.30   -5.01   -4.19   -2.88   -1.19    0.84    3.31    6.57   11.08
+   130.0    0.00   -0.12   -0.55   -1.18   -1.90   -2.63   -3.34   -4.01   -4.63   -5.11   -5.28   -5.00   -4.19   -2.87   -1.17    0.85    3.32    6.58   11.15
+   135.0    0.00   -0.13   -0.55   -1.18   -1.90   -2.62   -3.32   -3.99   -4.61   -5.09   -5.27   -5.00   -4.19   -2.87   -1.16    0.87    3.33    6.60   11.23
+   140.0    0.00   -0.13   -0.55   -1.18   -1.90   -2.61   -3.31   -3.97   -4.59   -5.07   -5.27   -5.01   -4.21   -2.88   -1.16    0.88    3.34    6.63   11.30
+   145.0    0.00   -0.13   -0.55   -1.18   -1.89   -2.61   -3.29   -3.95   -4.57   -5.06   -5.27   -5.03   -4.23   -2.90   -1.17    0.88    3.35    6.64   11.34
+   150.0    0.00   -0.13   -0.55   -1.18   -1.89   -2.60   -3.28   -3.94   -4.56   -5.06   -5.28   -5.05   -4.26   -2.93   -1.20    0.86    3.35    6.64   11.34
+   155.0    0.00   -0.13   -0.56   -1.18   -1.89   -2.60   -3.28   -3.93   -4.56   -5.06   -5.29   -5.07   -4.29   -2.97   -1.23    0.84    3.33    6.62   11.30
+   160.0    0.00   -0.13   -0.56   -1.18   -1.89   -2.59   -3.27   -3.93   -4.56   -5.07   -5.30   -5.09   -4.32   -3.01   -1.27    0.79    3.28    6.57   11.21
+   165.0    0.00   -0.13   -0.56   -1.18   -1.89   -2.59   -3.27   -3.93   -4.57   -5.08   -5.32   -5.11   -4.35   -3.05   -1.33    0.73    3.22    6.50   11.08
+   170.0    0.00   -0.14   -0.56   -1.18   -1.88   -2.59   -3.27   -3.94   -4.58   -5.09   -5.33   -5.12   -4.37   -3.09   -1.39    0.65    3.14    6.40   10.93
+   175.0    0.00   -0.14   -0.56   -1.18   -1.88   -2.59   -3.28   -3.95   -4.59   -5.11   -5.35   -5.13   -4.39   -3.12   -1.45    0.57    3.04    6.30   10.77
+   180.0    0.00   -0.14   -0.57   -1.18   -1.88   -2.59   -3.28   -3.96   -4.61   -5.13   -5.36   -5.14   -4.39   -3.15   -1.51    0.47    2.94    6.20   10.63
+   185.0    0.00   -0.14   -0.57   -1.18   -1.88   -2.58   -3.29   -3.98   -4.63   -5.15   -5.36   -5.14   -4.40   -3.17   -1.57    0.39    2.84    6.11   10.51
+   190.0    0.00   -0.15   -0.57   -1.18   -1.87   -2.58   -3.29   -3.99   -4.65   -5.16   -5.37   -5.13   -4.39   -3.19   -1.61    0.31    2.76    6.05   10.45
+   195.0    0.00   -0.15   -0.57   -1.18   -1.87   -2.57   -3.29   -4.00   -4.66   -5.18   -5.38   -5.13   -4.38   -3.19   -1.64    0.26    2.70    6.02   10.44
+   200.0    0.00   -0.15   -0.57   -1.18   -1.86   -2.56   -3.28   -4.00   -4.67   -5.19   -5.38   -5.12   -4.36   -3.18   -1.65    0.23    2.68    6.03   10.49
+   205.0    0.00   -0.15   -0.58   -1.17   -1.85   -2.55   -3.27   -4.00   -4.68   -5.19   -5.38   -5.11   -4.35   -3.16   -1.65    0.23    2.69    6.09   10.59
+   210.0    0.00   -0.16   -0.58   -1.17   -1.84   -2.54   -3.25   -3.99   -4.67   -5.19   -5.38   -5.10   -4.32   -3.13   -1.62    0.27    2.74    6.18   10.74
+   215.0    0.00   -0.16   -0.58   -1.17   -1.83   -2.52   -3.23   -3.97   -4.66   -5.19   -5.37   -5.08   -4.30   -3.10   -1.56    0.33    2.83    6.30   10.91
+   220.0    0.00   -0.16   -0.58   -1.17   -1.82   -2.50   -3.21   -3.94   -4.64   -5.17   -5.36   -5.07   -4.27   -3.05   -1.50    0.42    2.93    6.43   11.10
+   225.0    0.00   -0.17   -0.59   -1.17   -1.81   -2.48   -3.18   -3.91   -4.62   -5.16   -5.35   -5.06   -4.25   -3.00   -1.42    0.52    3.05    6.57   11.28
+   230.0    0.00   -0.17   -0.59   -1.17   -1.81   -2.46   -3.15   -3.88   -4.58   -5.13   -5.34   -5.05   -4.22   -2.95   -1.33    0.63    3.17    6.69   11.44
+   235.0    0.00   -0.17   -0.60   -1.17   -1.80   -2.45   -3.13   -3.84   -4.55   -5.11   -5.32   -5.03   -4.19   -2.89   -1.25    0.73    3.27    6.77   11.55
+   240.0    0.00   -0.17   -0.60   -1.18   -1.80   -2.44   -3.10   -3.81   -4.51   -5.08   -5.30   -5.01   -4.17   -2.85   -1.18    0.81    3.34    6.83   11.63
+   245.0    0.00   -0.18   -0.61   -1.18   -1.80   -2.43   -3.08   -3.78   -4.48   -5.05   -5.28   -5.00   -4.15   -2.81   -1.12    0.87    3.38    6.83   11.65
+   250.0    0.00   -0.18   -0.61   -1.19   -1.80   -2.43   -3.07   -3.76   -4.45   -5.02   -5.26   -4.98   -4.13   -2.78   -1.09    0.90    3.38    6.80   11.63
+   255.0    0.00   -0.18   -0.62   -1.19   -1.81   -2.43   -3.06   -3.74   -4.43   -5.00   -5.24   -4.97   -4.11   -2.77   -1.07    0.90    3.35    6.72   11.57
+   260.0    0.00   -0.19   -0.62   -1.20   -1.82   -2.43   -3.06   -3.73   -4.42   -4.98   -5.22   -4.95   -4.11   -2.77   -1.08    0.87    3.28    6.62   11.48
+   265.0    0.00   -0.19   -0.63   -1.21   -1.83   -2.45   -3.07   -3.73   -4.41   -4.96   -5.21   -4.95   -4.12   -2.79   -1.12    0.81    3.19    6.50   11.37
+   270.0    0.00   -0.19   -0.64   -1.22   -1.84   -2.46   -3.08   -3.74   -4.40   -4.95   -5.20   -4.95   -4.13   -2.82   -1.17    0.74    3.09    6.38   11.26
+   275.0    0.00   -0.19   -0.64   -1.23   -1.86   -2.47   -3.09   -3.75   -4.40   -4.95   -5.19   -4.95   -4.15   -2.86   -1.23    0.66    3.00    6.28   11.15
+   280.0    0.00   -0.19   -0.64   -1.24   -1.87   -2.49   -3.11   -3.76   -4.41   -4.95   -5.19   -4.95   -4.17   -2.91   -1.31    0.57    2.91    6.20   11.06
+   285.0    0.00   -0.19   -0.65   -1.24   -1.88   -2.50   -3.12   -3.77   -4.41   -4.94   -5.18   -4.96   -4.20   -2.96   -1.38    0.50    2.85    6.15   10.98
+   290.0    0.00   -0.20   -0.65   -1.25   -1.89   -2.51   -3.14   -3.78   -4.42   -4.94   -5.18   -4.96   -4.22   -3.01   -1.44    0.45    2.83    6.14   10.92
+   295.0    0.00   -0.20   -0.65   -1.25   -1.89   -2.52   -3.15   -3.79   -4.42   -4.94   -5.17   -4.97   -4.24   -3.05   -1.49    0.41    2.83    6.17   10.89
+   300.0    0.00   -0.20   -0.65   -1.25   -1.90   -2.53   -3.15   -3.79   -4.42   -4.93   -5.16   -4.97   -4.26   -3.09   -1.53    0.39    2.86    6.23   10.88
+   305.0    0.00   -0.20   -0.65   -1.25   -1.90   -2.53   -3.16   -3.79   -4.42   -4.92   -5.15   -4.96   -4.27   -3.12   -1.56    0.39    2.91    6.31   10.88
+   310.0    0.00   -0.19   -0.65   -1.25   -1.90   -2.53   -3.16   -3.79   -4.41   -4.91   -5.14   -4.96   -4.28   -3.14   -1.58    0.41    2.98    6.41   10.90
+   315.0    0.00   -0.19   -0.65   -1.25   -1.89   -2.53   -3.16   -3.79   -4.41   -4.90   -5.13   -4.95   -4.29   -3.15   -1.59    0.43    3.05    6.52   10.93
+   320.0    0.00   -0.19   -0.64   -1.24   -1.89   -2.53   -3.16   -3.79   -4.41   -4.90   -5.13   -4.95   -4.29   -3.17   -1.60    0.45    3.12    6.62   10.96
+   325.0    0.00   -0.19   -0.64   -1.24   -1.88   -2.52   -3.16   -3.79   -4.41   -4.90   -5.12   -4.95   -4.30   -3.18   -1.61    0.47    3.18    6.71   11.00
+   330.0    0.00   -0.19   -0.64   -1.23   -1.88   -2.52   -3.15   -3.80   -4.41   -4.90   -5.13   -4.96   -4.32   -3.20   -1.62    0.47    3.22    6.77   11.03
+   335.0    0.00   -0.19   -0.63   -1.23   -1.87   -2.52   -3.16   -3.80   -4.42   -4.92   -5.15   -4.98   -4.34   -3.23   -1.64    0.47    3.24    6.82   11.06
+   340.0    0.00   -0.18   -0.63   -1.22   -1.87   -2.51   -3.16   -3.81   -4.43   -4.93   -5.17   -5.01   -4.37   -3.26   -1.67    0.45    3.25    6.83   11.08
+   345.0    0.00   -0.18   -0.62   -1.22   -1.86   -2.51   -3.16   -3.82   -4.45   -4.96   -5.20   -5.05   -4.42   -3.30   -1.70    0.43    3.23    6.83   11.09
+   350.0    0.00   -0.18   -0.62   -1.21   -1.86   -2.52   -3.17   -3.83   -4.47   -4.99   -5.24   -5.09   -4.47   -3.34   -1.74    0.40    3.20    6.81   11.08
+   355.0    0.00   -0.18   -0.61   -1.21   -1.86   -2.52   -3.17   -3.84   -4.48   -5.01   -5.28   -5.14   -4.52   -3.39   -1.77    0.37    3.17    6.77   11.07
+   360.0    0.00   -0.17   -0.61   -1.21   -1.86   -2.52   -3.18   -3.85   -4.50   -5.04   -5.32   -5.19   -4.56   -3.42   -1.79    0.35    3.14    6.73   11.06
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH700936F_C    NONE                                        TYPE / SERIAL NO    
+COPIED              Geo++ GmbH               2    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+COPIED FROM AOAD/M_T        NONE                            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.58     -0.37     91.85                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.23   -0.90   -1.93   -3.22   -4.62   -5.96   -7.09   -7.87   -8.21   -8.06   -7.39   -6.23   -4.55   -2.28    0.69    4.47    9.08   14.23
+     0.0    0.00   -0.27   -0.98   -2.07   -3.42   -4.87   -6.26   -7.43   -8.21   -8.53   -8.32   -7.62   -6.44   -4.77   -2.54    0.39    4.14    8.68   13.67
+     5.0    0.00   -0.27   -0.98   -2.06   -3.41   -4.86   -6.25   -7.41   -8.20   -8.52   -8.31   -7.60   -6.41   -4.74   -2.50    0.42    4.18    8.73   13.73
+    10.0    0.00   -0.26   -0.97   -2.05   -3.39   -4.84   -6.23   -7.40   -8.19   -8.50   -8.30   -7.58   -6.38   -4.70   -2.46    0.47    4.23    8.79   13.83
+    15.0    0.00   -0.26   -0.97   -2.05   -3.38   -4.82   -6.21   -7.37   -8.17   -8.49   -8.28   -7.56   -6.36   -4.66   -2.41    0.53    4.30    8.88   13.96
+    20.0    0.00   -0.26   -0.96   -2.03   -3.36   -4.80   -6.18   -7.35   -8.15   -8.47   -8.27   -7.54   -6.33   -4.62   -2.36    0.60    4.38    9.00   14.12
+    25.0    0.00   -0.26   -0.96   -2.02   -3.34   -4.77   -6.16   -7.32   -8.12   -8.44   -8.25   -7.53   -6.30   -4.58   -2.30    0.68    4.49    9.13   14.31
+    30.0    0.00   -0.26   -0.95   -2.01   -3.32   -4.75   -6.12   -7.28   -8.08   -8.42   -8.22   -7.51   -6.28   -4.54   -2.24    0.77    4.61    9.29   14.51
+    35.0    0.00   -0.25   -0.94   -2.00   -3.30   -4.72   -6.09   -7.25   -8.05   -8.38   -8.20   -7.48   -6.25   -4.50   -2.17    0.87    4.75    9.46   14.71
+    40.0    0.00   -0.25   -0.93   -1.98   -3.28   -4.69   -6.05   -7.21   -8.01   -8.35   -8.17   -7.46   -6.23   -4.46   -2.10    0.97    4.88    9.62   14.90
+    45.0    0.00   -0.25   -0.93   -1.97   -3.26   -4.66   -6.02   -7.16   -7.96   -8.30   -8.13   -7.43   -6.19   -4.42   -2.03    1.08    5.02    9.78   15.07
+    50.0    0.00   -0.24   -0.92   -1.95   -3.24   -4.63   -5.98   -7.12   -7.91   -8.26   -8.09   -7.39   -6.16   -4.37   -1.97    1.17    5.14    9.92   15.22
+    55.0    0.00   -0.24   -0.91   -1.94   -3.21   -4.60   -5.94   -7.07   -7.86   -8.20   -8.04   -7.35   -6.12   -4.33   -1.91    1.24    5.24   10.04   15.34
+    60.0    0.00   -0.24   -0.90   -1.92   -3.19   -4.57   -5.90   -7.02   -7.81   -8.15   -7.99   -7.30   -6.08   -4.29   -1.87    1.30    5.31   10.11   15.41
+    65.0    0.00   -0.23   -0.89   -1.91   -3.17   -4.54   -5.86   -6.97   -7.75   -8.09   -7.93   -7.25   -6.03   -4.25   -1.83    1.33    5.34   10.15   15.45
+    70.0    0.00   -0.23   -0.89   -1.90   -3.15   -4.51   -5.82   -6.93   -7.70   -8.03   -7.88   -7.20   -5.99   -4.22   -1.82    1.33    5.33   10.14   15.45
+    75.0    0.00   -0.23   -0.88   -1.88   -3.13   -4.49   -5.79   -6.89   -7.65   -7.98   -7.82   -7.15   -5.96   -4.21   -1.82    1.31    5.28   10.08   15.40
+    80.0    0.00   -0.23   -0.87   -1.87   -3.12   -4.46   -5.76   -6.85   -7.61   -7.94   -7.78   -7.11   -5.93   -4.20   -1.85    1.25    5.20    9.99   15.32
+    85.0    0.00   -0.22   -0.87   -1.86   -3.10   -4.44   -5.74   -6.83   -7.58   -7.91   -7.75   -7.09   -5.92   -4.21   -1.89    1.17    5.09    9.86   15.20
+    90.0    0.00   -0.22   -0.86   -1.86   -3.09   -4.43   -5.72   -6.81   -7.56   -7.89   -7.73   -7.08   -5.92   -4.24   -1.95    1.08    4.96    9.71   15.05
+    95.0    0.00   -0.22   -0.86   -1.85   -3.09   -4.42   -5.71   -6.80   -7.56   -7.89   -7.73   -7.09   -5.94   -4.28   -2.02    0.97    4.82    9.54   14.88
+   100.0    0.00   -0.22   -0.86   -1.85   -3.08   -4.42   -5.71   -6.80   -7.56   -7.90   -7.75   -7.11   -5.98   -4.34   -2.11    0.86    4.68    9.37   14.70
+   105.0    0.00   -0.22   -0.86   -1.85   -3.08   -4.42   -5.72   -6.81   -7.58   -7.92   -7.78   -7.16   -6.04   -4.41   -2.19    0.75    4.54    9.21   14.52
+   110.0    0.00   -0.21   -0.85   -1.85   -3.09   -4.43   -5.73   -6.83   -7.61   -7.96   -7.83   -7.21   -6.10   -4.49   -2.28    0.64    4.42    9.07   14.35
+   115.0    0.00   -0.21   -0.85   -1.85   -3.09   -4.44   -5.75   -6.86   -7.65   -8.01   -7.89   -7.28   -6.18   -4.57   -2.36    0.56    4.32    8.95   14.20
+   120.0    0.00   -0.21   -0.86   -1.86   -3.10   -4.46   -5.77   -6.90   -7.69   -8.06   -7.95   -7.35   -6.25   -4.64   -2.44    0.48    4.25    8.86   14.08
+   125.0    0.00   -0.21   -0.86   -1.86   -3.12   -4.48   -5.80   -6.93   -7.73   -8.11   -8.01   -7.42   -6.33   -4.72   -2.50    0.43    4.20    8.81   13.99
+   130.0    0.00   -0.21   -0.86   -1.87   -3.13   -4.50   -5.83   -6.97   -7.78   -8.16   -8.07   -7.48   -6.39   -4.78   -2.55    0.40    4.18    8.78   13.94
+   135.0    0.00   -0.21   -0.86   -1.88   -3.15   -4.53   -5.86   -7.01   -7.82   -8.21   -8.12   -7.54   -6.45   -4.83   -2.59    0.38    4.17    8.78   13.92
+   140.0    0.00   -0.21   -0.86   -1.89   -3.16   -4.55   -5.89   -7.04   -7.85   -8.24   -8.16   -7.58   -6.49   -4.87   -2.62    0.37    4.18    8.79   13.93
+   145.0    0.00   -0.21   -0.87   -1.89   -3.18   -4.57   -5.92   -7.07   -7.88   -8.28   -8.19   -7.61   -6.52   -4.89   -2.63    0.37    4.19    8.81   13.95
+   150.0    0.00   -0.21   -0.87   -1.90   -3.19   -4.59   -5.95   -7.10   -7.91   -8.30   -8.21   -7.63   -6.54   -4.90   -2.63    0.37    4.21    8.83   13.98
+   155.0    0.00   -0.21   -0.87   -1.91   -3.20   -4.61   -5.97   -7.12   -7.93   -8.32   -8.23   -7.65   -6.55   -4.91   -2.64    0.38    4.21    8.84   14.00
+   160.0    0.00   -0.21   -0.87   -1.91   -3.21   -4.63   -5.98   -7.13   -7.94   -8.33   -8.24   -7.65   -6.56   -4.91   -2.64    0.38    4.21    8.83   14.00
+   165.0    0.00   -0.21   -0.88   -1.92   -3.22   -4.64   -6.00   -7.14   -7.95   -8.34   -8.24   -7.65   -6.55   -4.91   -2.64    0.37    4.19    8.81   13.98
+   170.0    0.00   -0.21   -0.88   -1.92   -3.23   -4.64   -6.00   -7.15   -7.96   -8.34   -8.25   -7.65   -6.55   -4.91   -2.64    0.35    4.16    8.76   13.93
+   175.0    0.00   -0.21   -0.88   -1.92   -3.23   -4.65   -6.01   -7.16   -7.97   -8.35   -8.25   -7.65   -6.55   -4.90   -2.64    0.33    4.11    8.70   13.87
+   180.0    0.00   -0.21   -0.88   -1.92   -3.23   -4.65   -6.01   -7.16   -7.97   -8.35   -8.25   -7.66   -6.55   -4.90   -2.65    0.31    4.07    8.63   13.79
+   185.0    0.00   -0.21   -0.88   -1.92   -3.23   -4.64   -6.00   -7.16   -7.97   -8.36   -8.26   -7.66   -6.55   -4.90   -2.66    0.28    4.02    8.57   13.72
+   190.0    0.00   -0.21   -0.87   -1.92   -3.22   -4.64   -6.00   -7.15   -7.97   -8.36   -8.26   -7.66   -6.54   -4.90   -2.67    0.26    3.99    8.52   13.66
+   195.0    0.00   -0.21   -0.87   -1.91   -3.21   -4.63   -5.99   -7.15   -7.97   -8.35   -8.25   -7.65   -6.53   -4.89   -2.66    0.26    3.97    8.50   13.64
+   200.0    0.00   -0.21   -0.87   -1.91   -3.20   -4.61   -5.98   -7.14   -7.96   -8.34   -8.24   -7.63   -6.52   -4.88   -2.65    0.27    3.98    8.52   13.67
+   205.0    0.00   -0.21   -0.87   -1.90   -3.19   -4.60   -5.96   -7.12   -7.94   -8.33   -8.22   -7.61   -6.49   -4.85   -2.62    0.30    4.03    8.58   13.75
+   210.0    0.00   -0.21   -0.87   -1.89   -3.18   -4.59   -5.94   -7.10   -7.92   -8.30   -8.19   -7.57   -6.45   -4.80   -2.57    0.35    4.11    8.70   13.88
+   215.0    0.00   -0.21   -0.86   -1.89   -3.17   -4.57   -5.92   -7.08   -7.89   -8.26   -8.14   -7.52   -6.39   -4.74   -2.51    0.44    4.22    8.85   14.06
+   220.0    0.00   -0.21   -0.86   -1.88   -3.16   -4.55   -5.90   -7.05   -7.85   -8.22   -8.09   -7.46   -6.32   -4.67   -2.42    0.54    4.36    9.04   14.28
+   225.0    0.00   -0.21   -0.86   -1.88   -3.15   -4.53   -5.88   -7.01   -7.81   -8.17   -8.03   -7.38   -6.24   -4.58   -2.32    0.67    4.53    9.25   14.52
+   230.0    0.00   -0.21   -0.86   -1.87   -3.14   -4.52   -5.85   -6.98   -7.77   -8.11   -7.96   -7.30   -6.15   -4.48   -2.20    0.81    4.71    9.46   14.74
+   235.0    0.00   -0.21   -0.86   -1.87   -3.13   -4.50   -5.83   -6.95   -7.72   -8.05   -7.89   -7.22   -6.06   -4.37   -2.08    0.96    4.88    9.66   14.94
+   240.0    0.00   -0.22   -0.86   -1.86   -3.12   -4.49   -5.80   -6.91   -7.68   -7.99   -7.82   -7.14   -5.97   -4.27   -1.96    1.10    5.04    9.83   15.09
+   245.0    0.00   -0.22   -0.86   -1.86   -3.12   -4.48   -5.78   -6.88   -7.64   -7.94   -7.76   -7.07   -5.88   -4.17   -1.84    1.23    5.18    9.95   15.17
+   250.0    0.00   -0.22   -0.86   -1.87   -3.11   -4.47   -5.77   -6.86   -7.60   -7.90   -7.71   -7.01   -5.81   -4.08   -1.74    1.34    5.27   10.01   15.19
+   255.0    0.00   -0.22   -0.87   -1.87   -3.12   -4.47   -5.76   -6.84   -7.58   -7.87   -7.67   -6.97   -5.76   -4.01   -1.66    1.41    5.32   10.00   15.12
+   260.0    0.00   -0.22   -0.87   -1.87   -3.12   -4.47   -5.76   -6.84   -7.57   -7.86   -7.65   -6.94   -5.72   -3.97   -1.61    1.45    5.32    9.94   15.00
+   265.0    0.00   -0.23   -0.88   -1.88   -3.13   -4.48   -5.77   -6.84   -7.57   -7.86   -7.65   -6.93   -5.70   -3.94   -1.59    1.45    5.26    9.81   14.82
+   270.0    0.00   -0.23   -0.88   -1.89   -3.14   -4.49   -5.78   -6.85   -7.58   -7.87   -7.66   -6.94   -5.71   -3.94   -1.60    1.41    5.16    9.65   14.61
+   275.0    0.00   -0.23   -0.89   -1.90   -3.16   -4.51   -5.80   -6.88   -7.61   -7.90   -7.69   -6.97   -5.73   -3.97   -1.64    1.33    5.03    9.45   14.39
+   280.0    0.00   -0.23   -0.90   -1.92   -3.18   -4.54   -5.83   -6.91   -7.64   -7.93   -7.73   -7.01   -5.77   -4.02   -1.71    1.23    4.87    9.24   14.18
+   285.0    0.00   -0.24   -0.91   -1.93   -3.20   -4.56   -5.87   -6.95   -7.69   -7.98   -7.78   -7.06   -5.83   -4.09   -1.80    1.10    4.70    9.04   13.99
+   290.0    0.00   -0.24   -0.91   -1.95   -3.23   -4.60   -5.91   -7.00   -7.74   -8.04   -7.83   -7.12   -5.90   -4.17   -1.91    0.96    4.53    8.85   13.85
+   295.0    0.00   -0.24   -0.92   -1.96   -3.25   -4.63   -5.95   -7.05   -7.79   -8.09   -7.90   -7.19   -5.97   -4.26   -2.02    0.82    4.37    8.70   13.74
+   300.0    0.00   -0.25   -0.93   -1.98   -3.28   -4.67   -6.00   -7.10   -7.85   -8.15   -7.96   -7.26   -6.06   -4.36   -2.14    0.69    4.23    8.58   13.68
+   305.0    0.00   -0.25   -0.94   -2.00   -3.30   -4.71   -6.04   -7.16   -7.91   -8.21   -8.02   -7.32   -6.14   -4.46   -2.26    0.57    4.12    8.51   13.66
+   310.0    0.00   -0.25   -0.95   -2.01   -3.33   -4.74   -6.09   -7.21   -7.97   -8.27   -8.08   -7.39   -6.22   -4.55   -2.36    0.46    4.04    8.47   13.66
+   315.0    0.00   -0.26   -0.96   -2.03   -3.35   -4.78   -6.13   -7.26   -8.02   -8.33   -8.14   -7.45   -6.29   -4.64   -2.45    0.39    4.00    8.46   13.68
+   320.0    0.00   -0.26   -0.96   -2.04   -3.37   -4.81   -6.17   -7.30   -8.07   -8.38   -8.19   -7.51   -6.35   -4.71   -2.52    0.33    3.97    8.47   13.69
+   325.0    0.00   -0.26   -0.97   -2.05   -3.39   -4.83   -6.20   -7.34   -8.11   -8.42   -8.23   -7.55   -6.40   -4.76   -2.57    0.30    3.97    8.50   13.71
+   330.0    0.00   -0.26   -0.98   -2.06   -3.41   -4.85   -6.23   -7.37   -8.14   -8.45   -8.27   -7.59   -6.44   -4.81   -2.61    0.28    3.98    8.53   13.70
+   335.0    0.00   -0.26   -0.98   -2.07   -3.42   -4.87   -6.25   -7.40   -8.17   -8.48   -8.30   -7.62   -6.47   -4.83   -2.63    0.28    4.01    8.56   13.69
+   340.0    0.00   -0.27   -0.98   -2.07   -3.42   -4.88   -6.27   -7.42   -8.19   -8.51   -8.32   -7.64   -6.48   -4.84   -2.63    0.29    4.03    8.59   13.67
+   345.0    0.00   -0.27   -0.98   -2.08   -3.43   -4.88   -6.27   -7.43   -8.21   -8.52   -8.33   -7.64   -6.48   -4.84   -2.62    0.30    4.06    8.61   13.65
+   350.0    0.00   -0.27   -0.98   -2.08   -3.43   -4.88   -6.28   -7.43   -8.22   -8.53   -8.33   -7.64   -6.48   -4.82   -2.60    0.33    4.08    8.63   13.63
+   355.0    0.00   -0.27   -0.98   -2.07   -3.42   -4.88   -6.27   -7.43   -8.22   -8.53   -8.33   -7.63   -6.46   -4.80   -2.58    0.35    4.11    8.65   13.64
+   360.0    0.00   -0.27   -0.98   -2.07   -3.42   -4.87   -6.26   -7.43   -8.21   -8.53   -8.32   -7.62   -6.44   -4.77   -2.54    0.39    4.14    8.68   13.67
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.08     -0.59    120.35                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.13   -0.51   -1.08   -1.79   -2.58   -3.39   -4.17   -4.81   -5.21   -5.25   -4.86   -4.03   -2.83   -1.33    0.49    2.75    5.68    9.44
+     0.0    0.00   -0.12   -0.48   -1.02   -1.69   -2.44   -3.24   -4.04   -4.72   -5.17   -5.25   -4.89   -4.12   -3.00   -1.59    0.15    2.44    5.50    9.31
+     5.0    0.00   -0.12   -0.48   -1.02   -1.69   -2.44   -3.24   -4.03   -4.72   -5.16   -5.25   -4.90   -4.13   -3.01   -1.61    0.14    2.42    5.45    9.20
+    10.0    0.00   -0.12   -0.47   -1.01   -1.68   -2.44   -3.24   -4.03   -4.71   -5.15   -5.24   -4.90   -4.13   -3.02   -1.61    0.14    2.41    5.41    9.12
+    15.0    0.00   -0.12   -0.47   -1.01   -1.68   -2.44   -3.24   -4.02   -4.70   -5.14   -5.23   -4.89   -4.13   -3.02   -1.60    0.15    2.41    5.38    9.06
+    20.0    0.00   -0.11   -0.47   -1.01   -1.68   -2.44   -3.24   -4.02   -4.69   -5.13   -5.21   -4.88   -4.12   -3.00   -1.58    0.18    2.43    5.37    9.05
+    25.0    0.00   -0.11   -0.46   -1.00   -1.68   -2.44   -3.24   -4.02   -4.68   -5.11   -5.20   -4.86   -4.10   -2.97   -1.54    0.22    2.46    5.39    9.06
+    30.0    0.00   -0.11   -0.46   -1.00   -1.68   -2.45   -3.24   -4.01   -4.67   -5.09   -5.18   -4.84   -4.07   -2.93   -1.49    0.28    2.51    5.42    9.11
+    35.0    0.00   -0.11   -0.46   -1.00   -1.68   -2.45   -3.24   -4.01   -4.66   -5.08   -5.16   -4.81   -4.03   -2.88   -1.42    0.35    2.58    5.48    9.19
+    40.0    0.00   -0.11   -0.45   -1.00   -1.68   -2.45   -3.25   -4.01   -4.65   -5.06   -5.13   -4.78   -4.00   -2.83   -1.36    0.42    2.65    5.55    9.30
+    45.0    0.00   -0.10   -0.45   -0.99   -1.68   -2.45   -3.25   -4.01   -4.65   -5.05   -5.11   -4.75   -3.96   -2.78   -1.30    0.49    2.72    5.62    9.41
+    50.0    0.00   -0.10   -0.45   -0.99   -1.68   -2.45   -3.25   -4.01   -4.65   -5.05   -5.10   -4.72   -3.92   -2.73   -1.24    0.56    2.78    5.69    9.52
+    55.0    0.00   -0.10   -0.45   -0.99   -1.68   -2.46   -3.26   -4.02   -4.65   -5.04   -5.09   -4.70   -3.88   -2.69   -1.19    0.60    2.84    5.76    9.62
+    60.0    0.00   -0.10   -0.44   -0.99   -1.68   -2.46   -3.27   -4.03   -4.66   -5.05   -5.08   -4.68   -3.86   -2.66   -1.16    0.64    2.87    5.81    9.70
+    65.0    0.00   -0.10   -0.44   -0.99   -1.69   -2.47   -3.28   -4.05   -4.68   -5.06   -5.08   -4.67   -3.84   -2.64   -1.15    0.65    2.89    5.84    9.76
+    70.0    0.00   -0.10   -0.44   -0.99   -1.69   -2.48   -3.30   -4.07   -4.70   -5.07   -5.08   -4.67   -3.83   -2.64   -1.15    0.64    2.88    5.85    9.79
+    75.0    0.00   -0.10   -0.44   -0.99   -1.69   -2.49   -3.31   -4.09   -4.72   -5.09   -5.09   -4.67   -3.84   -2.65   -1.17    0.61    2.86    5.83    9.78
+    80.0    0.00   -0.10   -0.45   -1.00   -1.70   -2.50   -3.33   -4.12   -4.75   -5.11   -5.11   -4.68   -3.85   -2.67   -1.21    0.57    2.82    5.80    9.74
+    85.0    0.00   -0.10   -0.45   -1.00   -1.71   -2.52   -3.36   -4.14   -4.78   -5.14   -5.13   -4.70   -3.87   -2.70   -1.25    0.52    2.77    5.75    9.67
+    90.0    0.00   -0.10   -0.45   -1.01   -1.72   -2.54   -3.38   -4.17   -4.81   -5.17   -5.15   -4.72   -3.89   -2.73   -1.29    0.47    2.71    5.68    9.57
+    95.0    0.00   -0.10   -0.46   -1.02   -1.74   -2.55   -3.40   -4.20   -4.83   -5.19   -5.18   -4.74   -3.92   -2.77   -1.33    0.42    2.66    5.62    9.47
+   100.0    0.00   -0.11   -0.46   -1.03   -1.75   -2.58   -3.43   -4.22   -4.86   -5.22   -5.20   -4.77   -3.95   -2.80   -1.37    0.38    2.61    5.56    9.36
+   105.0    0.00   -0.11   -0.47   -1.04   -1.77   -2.60   -3.45   -4.25   -4.88   -5.24   -5.22   -4.79   -3.97   -2.82   -1.40    0.35    2.58    5.51    9.26
+   110.0    0.00   -0.11   -0.48   -1.05   -1.79   -2.62   -3.47   -4.27   -4.90   -5.26   -5.25   -4.82   -4.00   -2.84   -1.41    0.35    2.57    5.48    9.18
+   115.0    0.00   -0.11   -0.48   -1.07   -1.81   -2.64   -3.50   -4.29   -4.92   -5.28   -5.26   -4.84   -4.01   -2.85   -1.41    0.36    2.58    5.46    9.13
+   120.0    0.00   -0.12   -0.49   -1.08   -1.83   -2.66   -3.52   -4.30   -4.93   -5.29   -5.28   -4.85   -4.03   -2.86   -1.39    0.38    2.61    5.47    9.10
+   125.0    0.00   -0.12   -0.50   -1.10   -1.85   -2.68   -3.53   -4.32   -4.94   -5.30   -5.29   -4.87   -4.03   -2.85   -1.37    0.43    2.65    5.50    9.09
+   130.0    0.00   -0.12   -0.50   -1.11   -1.86   -2.70   -3.55   -4.33   -4.95   -5.30   -5.30   -4.88   -4.04   -2.84   -1.33    0.48    2.71    5.54    9.11
+   135.0    0.00   -0.12   -0.51   -1.12   -1.88   -2.72   -3.56   -4.33   -4.95   -5.30   -5.30   -4.88   -4.04   -2.82   -1.29    0.54    2.77    5.60    9.15
+   140.0    0.00   -0.13   -0.52   -1.13   -1.89   -2.73   -3.57   -4.33   -4.95   -5.31   -5.31   -4.89   -4.04   -2.80   -1.25    0.60    2.84    5.66    9.19
+   145.0    0.00   -0.13   -0.52   -1.14   -1.90   -2.74   -3.57   -4.33   -4.94   -5.31   -5.31   -4.89   -4.04   -2.79   -1.22    0.65    2.90    5.71    9.23
+   150.0    0.00   -0.13   -0.53   -1.15   -1.91   -2.74   -3.57   -4.33   -4.94   -5.31   -5.32   -4.90   -4.04   -2.78   -1.19    0.69    2.94    5.74    9.25
+   155.0    0.00   -0.13   -0.53   -1.15   -1.91   -2.74   -3.57   -4.33   -4.94   -5.31   -5.33   -4.91   -4.05   -2.78   -1.18    0.71    2.97    5.76    9.25
+   160.0    0.00   -0.13   -0.53   -1.15   -1.91   -2.74   -3.56   -4.32   -4.93   -5.31   -5.33   -4.92   -4.06   -2.78   -1.18    0.71    2.97    5.76    9.23
+   165.0    0.00   -0.14   -0.54   -1.15   -1.91   -2.73   -3.55   -4.31   -4.93   -5.31   -5.34   -4.94   -4.07   -2.80   -1.19    0.70    2.95    5.73    9.18
+   170.0    0.00   -0.14   -0.54   -1.15   -1.90   -2.72   -3.54   -4.30   -4.93   -5.32   -5.35   -4.95   -4.09   -2.82   -1.22    0.66    2.91    5.68    9.11
+   175.0    0.00   -0.14   -0.54   -1.15   -1.90   -2.71   -3.53   -4.30   -4.93   -5.32   -5.36   -4.96   -4.11   -2.84   -1.26    0.61    2.85    5.62    9.03
+   180.0    0.00   -0.14   -0.54   -1.14   -1.89   -2.70   -3.52   -4.29   -4.93   -5.33   -5.37   -4.97   -4.12   -2.87   -1.30    0.55    2.77    5.55    8.96
+   185.0    0.00   -0.14   -0.54   -1.14   -1.87   -2.69   -3.51   -4.29   -4.93   -5.34   -5.38   -4.98   -4.13   -2.89   -1.35    0.48    2.70    5.48    8.89
+   190.0    0.00   -0.14   -0.53   -1.13   -1.86   -2.67   -3.50   -4.29   -4.94   -5.34   -5.38   -4.97   -4.12   -2.90   -1.38    0.42    2.63    5.42    8.86
+   195.0    0.00   -0.14   -0.53   -1.12   -1.85   -2.66   -3.49   -4.28   -4.94   -5.34   -5.37   -4.96   -4.11   -2.90   -1.40    0.38    2.58    5.39    8.87
+   200.0    0.00   -0.14   -0.53   -1.12   -1.84   -2.65   -3.49   -4.29   -4.95   -5.34   -5.36   -4.94   -4.09   -2.89   -1.41    0.35    2.55    5.39    8.92
+   205.0    0.00   -0.15   -0.53   -1.11   -1.83   -2.64   -3.48   -4.29   -4.95   -5.34   -5.35   -4.91   -4.05   -2.86   -1.40    0.35    2.55    5.43    9.01
+   210.0    0.00   -0.15   -0.53   -1.11   -1.82   -2.63   -3.48   -4.29   -4.95   -5.34   -5.33   -4.88   -4.01   -2.82   -1.36    0.38    2.59    5.50    9.15
+   215.0    0.00   -0.15   -0.53   -1.10   -1.82   -2.63   -3.48   -4.29   -4.95   -5.33   -5.32   -4.85   -3.97   -2.77   -1.31    0.44    2.67    5.61    9.32
+   220.0    0.00   -0.15   -0.53   -1.10   -1.82   -2.63   -3.48   -4.29   -4.95   -5.32   -5.30   -4.82   -3.93   -2.71   -1.24    0.52    2.78    5.76    9.50
+   225.0    0.00   -0.15   -0.53   -1.10   -1.82   -2.63   -3.47   -4.28   -4.94   -5.31   -5.28   -4.79   -3.89   -2.66   -1.17    0.63    2.91    5.91    9.68
+   230.0    0.00   -0.15   -0.53   -1.11   -1.82   -2.63   -3.47   -4.28   -4.93   -5.30   -5.27   -4.78   -3.86   -2.61   -1.09    0.75    3.06    6.07    9.84
+   235.0    0.00   -0.15   -0.54   -1.11   -1.82   -2.63   -3.47   -4.27   -4.92   -5.29   -5.26   -4.77   -3.85   -2.58   -1.01    0.86    3.21    6.22    9.96
+   240.0    0.00   -0.15   -0.54   -1.11   -1.83   -2.63   -3.47   -4.26   -4.91   -5.28   -5.26   -4.78   -3.86   -2.56   -0.95    0.97    3.35    6.35   10.04
+   245.0    0.00   -0.15   -0.54   -1.12   -1.83   -2.63   -3.46   -4.25   -4.89   -5.27   -5.26   -4.80   -3.88   -2.56   -0.91    1.06    3.46    6.44   10.07
+   250.0    0.00   -0.15   -0.54   -1.12   -1.84   -2.63   -3.46   -4.23   -4.88   -5.26   -5.27   -4.83   -3.92   -2.58   -0.90    1.12    3.53    6.48   10.05
+   255.0    0.00   -0.16   -0.55   -1.13   -1.84   -2.64   -3.45   -4.22   -4.86   -5.26   -5.29   -4.87   -3.97   -2.63   -0.91    1.14    3.56    6.47    9.98
+   260.0    0.00   -0.16   -0.55   -1.13   -1.85   -2.64   -3.44   -4.20   -4.84   -5.25   -5.31   -4.91   -4.03   -2.68   -0.95    1.12    3.54    6.41    9.87
+   265.0    0.00   -0.16   -0.55   -1.14   -1.85   -2.64   -3.43   -4.19   -4.83   -5.25   -5.33   -4.96   -4.09   -2.75   -1.01    1.07    3.48    6.31    9.74
+   270.0    0.00   -0.16   -0.56   -1.14   -1.86   -2.63   -3.43   -4.18   -4.82   -5.25   -5.34   -5.00   -4.15   -2.82   -1.08    0.98    3.37    6.18    9.61
+   275.0    0.00   -0.16   -0.56   -1.14   -1.86   -2.63   -3.42   -4.16   -4.80   -5.24   -5.36   -5.03   -4.20   -2.89   -1.17    0.87    3.23    6.03    9.50
+   280.0    0.00   -0.16   -0.56   -1.15   -1.86   -2.63   -3.41   -4.15   -4.79   -5.24   -5.36   -5.05   -4.24   -2.95   -1.26    0.75    3.08    5.88    9.41
+   285.0    0.00   -0.16   -0.56   -1.14   -1.85   -2.62   -3.40   -4.14   -4.79   -5.23   -5.36   -5.06   -4.27   -3.00   -1.35    0.62    2.92    5.73    9.36
+   290.0    0.00   -0.16   -0.56   -1.14   -1.85   -2.61   -3.39   -4.13   -4.78   -5.23   -5.36   -5.06   -4.28   -3.04   -1.42    0.50    2.77    5.60    9.35
+   295.0    0.00   -0.16   -0.55   -1.14   -1.84   -2.60   -3.38   -4.12   -4.77   -5.22   -5.35   -5.05   -4.27   -3.05   -1.48    0.39    2.64    5.51    9.38
+   300.0    0.00   -0.15   -0.55   -1.13   -1.83   -2.59   -3.37   -4.12   -4.77   -5.21   -5.33   -5.02   -4.25   -3.06   -1.53    0.30    2.53    5.45    9.45
+   305.0    0.00   -0.15   -0.55   -1.12   -1.82   -2.57   -3.35   -4.11   -4.76   -5.20   -5.31   -4.99   -4.22   -3.04   -1.55    0.24    2.46    5.42    9.53
+   310.0    0.00   -0.15   -0.54   -1.11   -1.80   -2.56   -3.34   -4.10   -4.76   -5.20   -5.29   -4.96   -4.18   -3.02   -1.56    0.20    2.41    5.42    9.63
+   315.0    0.00   -0.15   -0.54   -1.10   -1.79   -2.54   -3.33   -4.09   -4.75   -5.19   -5.28   -4.93   -4.14   -2.99   -1.55    0.18    2.40    5.45    9.72
+   320.0    0.00   -0.15   -0.53   -1.09   -1.77   -2.52   -3.31   -4.08   -4.75   -5.18   -5.26   -4.90   -4.11   -2.96   -1.54    0.18    2.40    5.50    9.80
+   325.0    0.00   -0.14   -0.53   -1.08   -1.76   -2.51   -3.30   -4.07   -4.74   -5.18   -5.25   -4.88   -4.08   -2.94   -1.53    0.18    2.42    5.54    9.84
+   330.0    0.00   -0.14   -0.52   -1.07   -1.74   -2.49   -3.28   -4.07   -4.74   -5.18   -5.24   -4.86   -4.06   -2.92   -1.52    0.19    2.45    5.59    9.85
+   335.0    0.00   -0.14   -0.51   -1.06   -1.73   -2.48   -3.27   -4.06   -4.74   -5.17   -5.24   -4.86   -4.05   -2.92   -1.52    0.20    2.47    5.62    9.83
+   340.0    0.00   -0.14   -0.51   -1.05   -1.72   -2.46   -3.26   -4.05   -4.74   -5.17   -5.24   -4.86   -4.06   -2.92   -1.52    0.21    2.49    5.63    9.76
+   345.0    0.00   -0.13   -0.50   -1.04   -1.71   -2.46   -3.25   -4.05   -4.73   -5.17   -5.24   -4.86   -4.07   -2.93   -1.53    0.20    2.49    5.62    9.67
+   350.0    0.00   -0.13   -0.49   -1.03   -1.70   -2.45   -3.25   -4.04   -4.73   -5.17   -5.24   -4.87   -4.08   -2.95   -1.55    0.19    2.48    5.59    9.55
+   355.0    0.00   -0.13   -0.49   -1.03   -1.69   -2.44   -3.24   -4.04   -4.73   -5.17   -5.25   -4.88   -4.10   -2.98   -1.57    0.17    2.46    5.55    9.43
+   360.0    0.00   -0.12   -0.48   -1.02   -1.69   -2.44   -3.24   -4.04   -4.72   -5.17   -5.25   -4.89   -4.12   -3.00   -1.59    0.15    2.44    5.50    9.31
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH701008.01B   NONE                                        TYPE / SERIAL NO    
+FIELD               NGS                      3    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+     -0.12      0.33     65.05                              NORTH / EAST / UP   
+   NOAZI    0.00    0.47    1.10    1.67    2.08    2.38    2.44    2.31    2.23    1.99    1.84    1.61    1.57    1.75    2.22    3.39    5.47
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      1.42     -2.59     54.05                              NORTH / EAST / UP   
+   NOAZI    0.00   -2.13   -4.01   -5.78   -7.39   -8.88  -10.19  -11.27  -12.01  -12.41  -12.25  -11.46  -10.03   -7.93   -5.23   -1.81    2.45
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH701073.1     NONE                                        TYPE / SERIAL NO    
+COPIED              Geo++ GmbH               2    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+COPIED FROM AOAD/M_T        NONE                            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.58     -0.37     91.85                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.23   -0.90   -1.93   -3.22   -4.62   -5.96   -7.09   -7.87   -8.21   -8.06   -7.39   -6.23   -4.55   -2.28    0.69    4.47    9.08   14.23
+     0.0    0.00   -0.27   -0.98   -2.07   -3.42   -4.87   -6.26   -7.43   -8.21   -8.53   -8.32   -7.62   -6.44   -4.77   -2.54    0.39    4.14    8.68   13.67
+     5.0    0.00   -0.27   -0.98   -2.06   -3.41   -4.86   -6.25   -7.41   -8.20   -8.52   -8.31   -7.60   -6.41   -4.74   -2.50    0.42    4.18    8.73   13.73
+    10.0    0.00   -0.26   -0.97   -2.05   -3.39   -4.84   -6.23   -7.40   -8.19   -8.50   -8.30   -7.58   -6.38   -4.70   -2.46    0.47    4.23    8.79   13.83
+    15.0    0.00   -0.26   -0.97   -2.05   -3.38   -4.82   -6.21   -7.37   -8.17   -8.49   -8.28   -7.56   -6.36   -4.66   -2.41    0.53    4.30    8.88   13.96
+    20.0    0.00   -0.26   -0.96   -2.03   -3.36   -4.80   -6.18   -7.35   -8.15   -8.47   -8.27   -7.54   -6.33   -4.62   -2.36    0.60    4.38    9.00   14.12
+    25.0    0.00   -0.26   -0.96   -2.02   -3.34   -4.77   -6.16   -7.32   -8.12   -8.44   -8.25   -7.53   -6.30   -4.58   -2.30    0.68    4.49    9.13   14.31
+    30.0    0.00   -0.26   -0.95   -2.01   -3.32   -4.75   -6.12   -7.28   -8.08   -8.42   -8.22   -7.51   -6.28   -4.54   -2.24    0.77    4.61    9.29   14.51
+    35.0    0.00   -0.25   -0.94   -2.00   -3.30   -4.72   -6.09   -7.25   -8.05   -8.38   -8.20   -7.48   -6.25   -4.50   -2.17    0.87    4.75    9.46   14.71
+    40.0    0.00   -0.25   -0.93   -1.98   -3.28   -4.69   -6.05   -7.21   -8.01   -8.35   -8.17   -7.46   -6.23   -4.46   -2.10    0.97    4.88    9.62   14.90
+    45.0    0.00   -0.25   -0.93   -1.97   -3.26   -4.66   -6.02   -7.16   -7.96   -8.30   -8.13   -7.43   -6.19   -4.42   -2.03    1.08    5.02    9.78   15.07
+    50.0    0.00   -0.24   -0.92   -1.95   -3.24   -4.63   -5.98   -7.12   -7.91   -8.26   -8.09   -7.39   -6.16   -4.37   -1.97    1.17    5.14    9.92   15.22
+    55.0    0.00   -0.24   -0.91   -1.94   -3.21   -4.60   -5.94   -7.07   -7.86   -8.20   -8.04   -7.35   -6.12   -4.33   -1.91    1.24    5.24   10.04   15.34
+    60.0    0.00   -0.24   -0.90   -1.92   -3.19   -4.57   -5.90   -7.02   -7.81   -8.15   -7.99   -7.30   -6.08   -4.29   -1.87    1.30    5.31   10.11   15.41
+    65.0    0.00   -0.23   -0.89   -1.91   -3.17   -4.54   -5.86   -6.97   -7.75   -8.09   -7.93   -7.25   -6.03   -4.25   -1.83    1.33    5.34   10.15   15.45
+    70.0    0.00   -0.23   -0.89   -1.90   -3.15   -4.51   -5.82   -6.93   -7.70   -8.03   -7.88   -7.20   -5.99   -4.22   -1.82    1.33    5.33   10.14   15.45
+    75.0    0.00   -0.23   -0.88   -1.88   -3.13   -4.49   -5.79   -6.89   -7.65   -7.98   -7.82   -7.15   -5.96   -4.21   -1.82    1.31    5.28   10.08   15.40
+    80.0    0.00   -0.23   -0.87   -1.87   -3.12   -4.46   -5.76   -6.85   -7.61   -7.94   -7.78   -7.11   -5.93   -4.20   -1.85    1.25    5.20    9.99   15.32
+    85.0    0.00   -0.22   -0.87   -1.86   -3.10   -4.44   -5.74   -6.83   -7.58   -7.91   -7.75   -7.09   -5.92   -4.21   -1.89    1.17    5.09    9.86   15.20
+    90.0    0.00   -0.22   -0.86   -1.86   -3.09   -4.43   -5.72   -6.81   -7.56   -7.89   -7.73   -7.08   -5.92   -4.24   -1.95    1.08    4.96    9.71   15.05
+    95.0    0.00   -0.22   -0.86   -1.85   -3.09   -4.42   -5.71   -6.80   -7.56   -7.89   -7.73   -7.09   -5.94   -4.28   -2.02    0.97    4.82    9.54   14.88
+   100.0    0.00   -0.22   -0.86   -1.85   -3.08   -4.42   -5.71   -6.80   -7.56   -7.90   -7.75   -7.11   -5.98   -4.34   -2.11    0.86    4.68    9.37   14.70
+   105.0    0.00   -0.22   -0.86   -1.85   -3.08   -4.42   -5.72   -6.81   -7.58   -7.92   -7.78   -7.16   -6.04   -4.41   -2.19    0.75    4.54    9.21   14.52
+   110.0    0.00   -0.21   -0.85   -1.85   -3.09   -4.43   -5.73   -6.83   -7.61   -7.96   -7.83   -7.21   -6.10   -4.49   -2.28    0.64    4.42    9.07   14.35
+   115.0    0.00   -0.21   -0.85   -1.85   -3.09   -4.44   -5.75   -6.86   -7.65   -8.01   -7.89   -7.28   -6.18   -4.57   -2.36    0.56    4.32    8.95   14.20
+   120.0    0.00   -0.21   -0.86   -1.86   -3.10   -4.46   -5.77   -6.90   -7.69   -8.06   -7.95   -7.35   -6.25   -4.64   -2.44    0.48    4.25    8.86   14.08
+   125.0    0.00   -0.21   -0.86   -1.86   -3.12   -4.48   -5.80   -6.93   -7.73   -8.11   -8.01   -7.42   -6.33   -4.72   -2.50    0.43    4.20    8.81   13.99
+   130.0    0.00   -0.21   -0.86   -1.87   -3.13   -4.50   -5.83   -6.97   -7.78   -8.16   -8.07   -7.48   -6.39   -4.78   -2.55    0.40    4.18    8.78   13.94
+   135.0    0.00   -0.21   -0.86   -1.88   -3.15   -4.53   -5.86   -7.01   -7.82   -8.21   -8.12   -7.54   -6.45   -4.83   -2.59    0.38    4.17    8.78   13.92
+   140.0    0.00   -0.21   -0.86   -1.89   -3.16   -4.55   -5.89   -7.04   -7.85   -8.24   -8.16   -7.58   -6.49   -4.87   -2.62    0.37    4.18    8.79   13.93
+   145.0    0.00   -0.21   -0.87   -1.89   -3.18   -4.57   -5.92   -7.07   -7.88   -8.28   -8.19   -7.61   -6.52   -4.89   -2.63    0.37    4.19    8.81   13.95
+   150.0    0.00   -0.21   -0.87   -1.90   -3.19   -4.59   -5.95   -7.10   -7.91   -8.30   -8.21   -7.63   -6.54   -4.90   -2.63    0.37    4.21    8.83   13.98
+   155.0    0.00   -0.21   -0.87   -1.91   -3.20   -4.61   -5.97   -7.12   -7.93   -8.32   -8.23   -7.65   -6.55   -4.91   -2.64    0.38    4.21    8.84   14.00
+   160.0    0.00   -0.21   -0.87   -1.91   -3.21   -4.63   -5.98   -7.13   -7.94   -8.33   -8.24   -7.65   -6.56   -4.91   -2.64    0.38    4.21    8.83   14.00
+   165.0    0.00   -0.21   -0.88   -1.92   -3.22   -4.64   -6.00   -7.14   -7.95   -8.34   -8.24   -7.65   -6.55   -4.91   -2.64    0.37    4.19    8.81   13.98
+   170.0    0.00   -0.21   -0.88   -1.92   -3.23   -4.64   -6.00   -7.15   -7.96   -8.34   -8.25   -7.65   -6.55   -4.91   -2.64    0.35    4.16    8.76   13.93
+   175.0    0.00   -0.21   -0.88   -1.92   -3.23   -4.65   -6.01   -7.16   -7.97   -8.35   -8.25   -7.65   -6.55   -4.90   -2.64    0.33    4.11    8.70   13.87
+   180.0    0.00   -0.21   -0.88   -1.92   -3.23   -4.65   -6.01   -7.16   -7.97   -8.35   -8.25   -7.66   -6.55   -4.90   -2.65    0.31    4.07    8.63   13.79
+   185.0    0.00   -0.21   -0.88   -1.92   -3.23   -4.64   -6.00   -7.16   -7.97   -8.36   -8.26   -7.66   -6.55   -4.90   -2.66    0.28    4.02    8.57   13.72
+   190.0    0.00   -0.21   -0.87   -1.92   -3.22   -4.64   -6.00   -7.15   -7.97   -8.36   -8.26   -7.66   -6.54   -4.90   -2.67    0.26    3.99    8.52   13.66
+   195.0    0.00   -0.21   -0.87   -1.91   -3.21   -4.63   -5.99   -7.15   -7.97   -8.35   -8.25   -7.65   -6.53   -4.89   -2.66    0.26    3.97    8.50   13.64
+   200.0    0.00   -0.21   -0.87   -1.91   -3.20   -4.61   -5.98   -7.14   -7.96   -8.34   -8.24   -7.63   -6.52   -4.88   -2.65    0.27    3.98    8.52   13.67
+   205.0    0.00   -0.21   -0.87   -1.90   -3.19   -4.60   -5.96   -7.12   -7.94   -8.33   -8.22   -7.61   -6.49   -4.85   -2.62    0.30    4.03    8.58   13.75
+   210.0    0.00   -0.21   -0.87   -1.89   -3.18   -4.59   -5.94   -7.10   -7.92   -8.30   -8.19   -7.57   -6.45   -4.80   -2.57    0.35    4.11    8.70   13.88
+   215.0    0.00   -0.21   -0.86   -1.89   -3.17   -4.57   -5.92   -7.08   -7.89   -8.26   -8.14   -7.52   -6.39   -4.74   -2.51    0.44    4.22    8.85   14.06
+   220.0    0.00   -0.21   -0.86   -1.88   -3.16   -4.55   -5.90   -7.05   -7.85   -8.22   -8.09   -7.46   -6.32   -4.67   -2.42    0.54    4.36    9.04   14.28
+   225.0    0.00   -0.21   -0.86   -1.88   -3.15   -4.53   -5.88   -7.01   -7.81   -8.17   -8.03   -7.38   -6.24   -4.58   -2.32    0.67    4.53    9.25   14.52
+   230.0    0.00   -0.21   -0.86   -1.87   -3.14   -4.52   -5.85   -6.98   -7.77   -8.11   -7.96   -7.30   -6.15   -4.48   -2.20    0.81    4.71    9.46   14.74
+   235.0    0.00   -0.21   -0.86   -1.87   -3.13   -4.50   -5.83   -6.95   -7.72   -8.05   -7.89   -7.22   -6.06   -4.37   -2.08    0.96    4.88    9.66   14.94
+   240.0    0.00   -0.22   -0.86   -1.86   -3.12   -4.49   -5.80   -6.91   -7.68   -7.99   -7.82   -7.14   -5.97   -4.27   -1.96    1.10    5.04    9.83   15.09
+   245.0    0.00   -0.22   -0.86   -1.86   -3.12   -4.48   -5.78   -6.88   -7.64   -7.94   -7.76   -7.07   -5.88   -4.17   -1.84    1.23    5.18    9.95   15.17
+   250.0    0.00   -0.22   -0.86   -1.87   -3.11   -4.47   -5.77   -6.86   -7.60   -7.90   -7.71   -7.01   -5.81   -4.08   -1.74    1.34    5.27   10.01   15.19
+   255.0    0.00   -0.22   -0.87   -1.87   -3.12   -4.47   -5.76   -6.84   -7.58   -7.87   -7.67   -6.97   -5.76   -4.01   -1.66    1.41    5.32   10.00   15.12
+   260.0    0.00   -0.22   -0.87   -1.87   -3.12   -4.47   -5.76   -6.84   -7.57   -7.86   -7.65   -6.94   -5.72   -3.97   -1.61    1.45    5.32    9.94   15.00
+   265.0    0.00   -0.23   -0.88   -1.88   -3.13   -4.48   -5.77   -6.84   -7.57   -7.86   -7.65   -6.93   -5.70   -3.94   -1.59    1.45    5.26    9.81   14.82
+   270.0    0.00   -0.23   -0.88   -1.89   -3.14   -4.49   -5.78   -6.85   -7.58   -7.87   -7.66   -6.94   -5.71   -3.94   -1.60    1.41    5.16    9.65   14.61
+   275.0    0.00   -0.23   -0.89   -1.90   -3.16   -4.51   -5.80   -6.88   -7.61   -7.90   -7.69   -6.97   -5.73   -3.97   -1.64    1.33    5.03    9.45   14.39
+   280.0    0.00   -0.23   -0.90   -1.92   -3.18   -4.54   -5.83   -6.91   -7.64   -7.93   -7.73   -7.01   -5.77   -4.02   -1.71    1.23    4.87    9.24   14.18
+   285.0    0.00   -0.24   -0.91   -1.93   -3.20   -4.56   -5.87   -6.95   -7.69   -7.98   -7.78   -7.06   -5.83   -4.09   -1.80    1.10    4.70    9.04   13.99
+   290.0    0.00   -0.24   -0.91   -1.95   -3.23   -4.60   -5.91   -7.00   -7.74   -8.04   -7.83   -7.12   -5.90   -4.17   -1.91    0.96    4.53    8.85   13.85
+   295.0    0.00   -0.24   -0.92   -1.96   -3.25   -4.63   -5.95   -7.05   -7.79   -8.09   -7.90   -7.19   -5.97   -4.26   -2.02    0.82    4.37    8.70   13.74
+   300.0    0.00   -0.25   -0.93   -1.98   -3.28   -4.67   -6.00   -7.10   -7.85   -8.15   -7.96   -7.26   -6.06   -4.36   -2.14    0.69    4.23    8.58   13.68
+   305.0    0.00   -0.25   -0.94   -2.00   -3.30   -4.71   -6.04   -7.16   -7.91   -8.21   -8.02   -7.32   -6.14   -4.46   -2.26    0.57    4.12    8.51   13.66
+   310.0    0.00   -0.25   -0.95   -2.01   -3.33   -4.74   -6.09   -7.21   -7.97   -8.27   -8.08   -7.39   -6.22   -4.55   -2.36    0.46    4.04    8.47   13.66
+   315.0    0.00   -0.26   -0.96   -2.03   -3.35   -4.78   -6.13   -7.26   -8.02   -8.33   -8.14   -7.45   -6.29   -4.64   -2.45    0.39    4.00    8.46   13.68
+   320.0    0.00   -0.26   -0.96   -2.04   -3.37   -4.81   -6.17   -7.30   -8.07   -8.38   -8.19   -7.51   -6.35   -4.71   -2.52    0.33    3.97    8.47   13.69
+   325.0    0.00   -0.26   -0.97   -2.05   -3.39   -4.83   -6.20   -7.34   -8.11   -8.42   -8.23   -7.55   -6.40   -4.76   -2.57    0.30    3.97    8.50   13.71
+   330.0    0.00   -0.26   -0.98   -2.06   -3.41   -4.85   -6.23   -7.37   -8.14   -8.45   -8.27   -7.59   -6.44   -4.81   -2.61    0.28    3.98    8.53   13.70
+   335.0    0.00   -0.26   -0.98   -2.07   -3.42   -4.87   -6.25   -7.40   -8.17   -8.48   -8.30   -7.62   -6.47   -4.83   -2.63    0.28    4.01    8.56   13.69
+   340.0    0.00   -0.27   -0.98   -2.07   -3.42   -4.88   -6.27   -7.42   -8.19   -8.51   -8.32   -7.64   -6.48   -4.84   -2.63    0.29    4.03    8.59   13.67
+   345.0    0.00   -0.27   -0.98   -2.08   -3.43   -4.88   -6.27   -7.43   -8.21   -8.52   -8.33   -7.64   -6.48   -4.84   -2.62    0.30    4.06    8.61   13.65
+   350.0    0.00   -0.27   -0.98   -2.08   -3.43   -4.88   -6.28   -7.43   -8.22   -8.53   -8.33   -7.64   -6.48   -4.82   -2.60    0.33    4.08    8.63   13.63
+   355.0    0.00   -0.27   -0.98   -2.07   -3.42   -4.88   -6.27   -7.43   -8.22   -8.53   -8.33   -7.63   -6.46   -4.80   -2.58    0.35    4.11    8.65   13.64
+   360.0    0.00   -0.27   -0.98   -2.07   -3.42   -4.87   -6.26   -7.43   -8.21   -8.53   -8.32   -7.62   -6.44   -4.77   -2.54    0.39    4.14    8.68   13.67
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.08     -0.59    120.35                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.13   -0.51   -1.08   -1.79   -2.58   -3.39   -4.17   -4.81   -5.21   -5.25   -4.86   -4.03   -2.83   -1.33    0.49    2.75    5.68    9.44
+     0.0    0.00   -0.12   -0.48   -1.02   -1.69   -2.44   -3.24   -4.04   -4.72   -5.17   -5.25   -4.89   -4.12   -3.00   -1.59    0.15    2.44    5.50    9.31
+     5.0    0.00   -0.12   -0.48   -1.02   -1.69   -2.44   -3.24   -4.03   -4.72   -5.16   -5.25   -4.90   -4.13   -3.01   -1.61    0.14    2.42    5.45    9.20
+    10.0    0.00   -0.12   -0.47   -1.01   -1.68   -2.44   -3.24   -4.03   -4.71   -5.15   -5.24   -4.90   -4.13   -3.02   -1.61    0.14    2.41    5.41    9.12
+    15.0    0.00   -0.12   -0.47   -1.01   -1.68   -2.44   -3.24   -4.02   -4.70   -5.14   -5.23   -4.89   -4.13   -3.02   -1.60    0.15    2.41    5.38    9.06
+    20.0    0.00   -0.11   -0.47   -1.01   -1.68   -2.44   -3.24   -4.02   -4.69   -5.13   -5.21   -4.88   -4.12   -3.00   -1.58    0.18    2.43    5.37    9.05
+    25.0    0.00   -0.11   -0.46   -1.00   -1.68   -2.44   -3.24   -4.02   -4.68   -5.11   -5.20   -4.86   -4.10   -2.97   -1.54    0.22    2.46    5.39    9.06
+    30.0    0.00   -0.11   -0.46   -1.00   -1.68   -2.45   -3.24   -4.01   -4.67   -5.09   -5.18   -4.84   -4.07   -2.93   -1.49    0.28    2.51    5.42    9.11
+    35.0    0.00   -0.11   -0.46   -1.00   -1.68   -2.45   -3.24   -4.01   -4.66   -5.08   -5.16   -4.81   -4.03   -2.88   -1.42    0.35    2.58    5.48    9.19
+    40.0    0.00   -0.11   -0.45   -1.00   -1.68   -2.45   -3.25   -4.01   -4.65   -5.06   -5.13   -4.78   -4.00   -2.83   -1.36    0.42    2.65    5.55    9.30
+    45.0    0.00   -0.10   -0.45   -0.99   -1.68   -2.45   -3.25   -4.01   -4.65   -5.05   -5.11   -4.75   -3.96   -2.78   -1.30    0.49    2.72    5.62    9.41
+    50.0    0.00   -0.10   -0.45   -0.99   -1.68   -2.45   -3.25   -4.01   -4.65   -5.05   -5.10   -4.72   -3.92   -2.73   -1.24    0.56    2.78    5.69    9.52
+    55.0    0.00   -0.10   -0.45   -0.99   -1.68   -2.46   -3.26   -4.02   -4.65   -5.04   -5.09   -4.70   -3.88   -2.69   -1.19    0.60    2.84    5.76    9.62
+    60.0    0.00   -0.10   -0.44   -0.99   -1.68   -2.46   -3.27   -4.03   -4.66   -5.05   -5.08   -4.68   -3.86   -2.66   -1.16    0.64    2.87    5.81    9.70
+    65.0    0.00   -0.10   -0.44   -0.99   -1.69   -2.47   -3.28   -4.05   -4.68   -5.06   -5.08   -4.67   -3.84   -2.64   -1.15    0.65    2.89    5.84    9.76
+    70.0    0.00   -0.10   -0.44   -0.99   -1.69   -2.48   -3.30   -4.07   -4.70   -5.07   -5.08   -4.67   -3.83   -2.64   -1.15    0.64    2.88    5.85    9.79
+    75.0    0.00   -0.10   -0.44   -0.99   -1.69   -2.49   -3.31   -4.09   -4.72   -5.09   -5.09   -4.67   -3.84   -2.65   -1.17    0.61    2.86    5.83    9.78
+    80.0    0.00   -0.10   -0.45   -1.00   -1.70   -2.50   -3.33   -4.12   -4.75   -5.11   -5.11   -4.68   -3.85   -2.67   -1.21    0.57    2.82    5.80    9.74
+    85.0    0.00   -0.10   -0.45   -1.00   -1.71   -2.52   -3.36   -4.14   -4.78   -5.14   -5.13   -4.70   -3.87   -2.70   -1.25    0.52    2.77    5.75    9.67
+    90.0    0.00   -0.10   -0.45   -1.01   -1.72   -2.54   -3.38   -4.17   -4.81   -5.17   -5.15   -4.72   -3.89   -2.73   -1.29    0.47    2.71    5.68    9.57
+    95.0    0.00   -0.10   -0.46   -1.02   -1.74   -2.55   -3.40   -4.20   -4.83   -5.19   -5.18   -4.74   -3.92   -2.77   -1.33    0.42    2.66    5.62    9.47
+   100.0    0.00   -0.11   -0.46   -1.03   -1.75   -2.58   -3.43   -4.22   -4.86   -5.22   -5.20   -4.77   -3.95   -2.80   -1.37    0.38    2.61    5.56    9.36
+   105.0    0.00   -0.11   -0.47   -1.04   -1.77   -2.60   -3.45   -4.25   -4.88   -5.24   -5.22   -4.79   -3.97   -2.82   -1.40    0.35    2.58    5.51    9.26
+   110.0    0.00   -0.11   -0.48   -1.05   -1.79   -2.62   -3.47   -4.27   -4.90   -5.26   -5.25   -4.82   -4.00   -2.84   -1.41    0.35    2.57    5.48    9.18
+   115.0    0.00   -0.11   -0.48   -1.07   -1.81   -2.64   -3.50   -4.29   -4.92   -5.28   -5.26   -4.84   -4.01   -2.85   -1.41    0.36    2.58    5.46    9.13
+   120.0    0.00   -0.12   -0.49   -1.08   -1.83   -2.66   -3.52   -4.30   -4.93   -5.29   -5.28   -4.85   -4.03   -2.86   -1.39    0.38    2.61    5.47    9.10
+   125.0    0.00   -0.12   -0.50   -1.10   -1.85   -2.68   -3.53   -4.32   -4.94   -5.30   -5.29   -4.87   -4.03   -2.85   -1.37    0.43    2.65    5.50    9.09
+   130.0    0.00   -0.12   -0.50   -1.11   -1.86   -2.70   -3.55   -4.33   -4.95   -5.30   -5.30   -4.88   -4.04   -2.84   -1.33    0.48    2.71    5.54    9.11
+   135.0    0.00   -0.12   -0.51   -1.12   -1.88   -2.72   -3.56   -4.33   -4.95   -5.30   -5.30   -4.88   -4.04   -2.82   -1.29    0.54    2.77    5.60    9.15
+   140.0    0.00   -0.13   -0.52   -1.13   -1.89   -2.73   -3.57   -4.33   -4.95   -5.31   -5.31   -4.89   -4.04   -2.80   -1.25    0.60    2.84    5.66    9.19
+   145.0    0.00   -0.13   -0.52   -1.14   -1.90   -2.74   -3.57   -4.33   -4.94   -5.31   -5.31   -4.89   -4.04   -2.79   -1.22    0.65    2.90    5.71    9.23
+   150.0    0.00   -0.13   -0.53   -1.15   -1.91   -2.74   -3.57   -4.33   -4.94   -5.31   -5.32   -4.90   -4.04   -2.78   -1.19    0.69    2.94    5.74    9.25
+   155.0    0.00   -0.13   -0.53   -1.15   -1.91   -2.74   -3.57   -4.33   -4.94   -5.31   -5.33   -4.91   -4.05   -2.78   -1.18    0.71    2.97    5.76    9.25
+   160.0    0.00   -0.13   -0.53   -1.15   -1.91   -2.74   -3.56   -4.32   -4.93   -5.31   -5.33   -4.92   -4.06   -2.78   -1.18    0.71    2.97    5.76    9.23
+   165.0    0.00   -0.14   -0.54   -1.15   -1.91   -2.73   -3.55   -4.31   -4.93   -5.31   -5.34   -4.94   -4.07   -2.80   -1.19    0.70    2.95    5.73    9.18
+   170.0    0.00   -0.14   -0.54   -1.15   -1.90   -2.72   -3.54   -4.30   -4.93   -5.32   -5.35   -4.95   -4.09   -2.82   -1.22    0.66    2.91    5.68    9.11
+   175.0    0.00   -0.14   -0.54   -1.15   -1.90   -2.71   -3.53   -4.30   -4.93   -5.32   -5.36   -4.96   -4.11   -2.84   -1.26    0.61    2.85    5.62    9.03
+   180.0    0.00   -0.14   -0.54   -1.14   -1.89   -2.70   -3.52   -4.29   -4.93   -5.33   -5.37   -4.97   -4.12   -2.87   -1.30    0.55    2.77    5.55    8.96
+   185.0    0.00   -0.14   -0.54   -1.14   -1.87   -2.69   -3.51   -4.29   -4.93   -5.34   -5.38   -4.98   -4.13   -2.89   -1.35    0.48    2.70    5.48    8.89
+   190.0    0.00   -0.14   -0.53   -1.13   -1.86   -2.67   -3.50   -4.29   -4.94   -5.34   -5.38   -4.97   -4.12   -2.90   -1.38    0.42    2.63    5.42    8.86
+   195.0    0.00   -0.14   -0.53   -1.12   -1.85   -2.66   -3.49   -4.28   -4.94   -5.34   -5.37   -4.96   -4.11   -2.90   -1.40    0.38    2.58    5.39    8.87
+   200.0    0.00   -0.14   -0.53   -1.12   -1.84   -2.65   -3.49   -4.29   -4.95   -5.34   -5.36   -4.94   -4.09   -2.89   -1.41    0.35    2.55    5.39    8.92
+   205.0    0.00   -0.15   -0.53   -1.11   -1.83   -2.64   -3.48   -4.29   -4.95   -5.34   -5.35   -4.91   -4.05   -2.86   -1.40    0.35    2.55    5.43    9.01
+   210.0    0.00   -0.15   -0.53   -1.11   -1.82   -2.63   -3.48   -4.29   -4.95   -5.34   -5.33   -4.88   -4.01   -2.82   -1.36    0.38    2.59    5.50    9.15
+   215.0    0.00   -0.15   -0.53   -1.10   -1.82   -2.63   -3.48   -4.29   -4.95   -5.33   -5.32   -4.85   -3.97   -2.77   -1.31    0.44    2.67    5.61    9.32
+   220.0    0.00   -0.15   -0.53   -1.10   -1.82   -2.63   -3.48   -4.29   -4.95   -5.32   -5.30   -4.82   -3.93   -2.71   -1.24    0.52    2.78    5.76    9.50
+   225.0    0.00   -0.15   -0.53   -1.10   -1.82   -2.63   -3.47   -4.28   -4.94   -5.31   -5.28   -4.79   -3.89   -2.66   -1.17    0.63    2.91    5.91    9.68
+   230.0    0.00   -0.15   -0.53   -1.11   -1.82   -2.63   -3.47   -4.28   -4.93   -5.30   -5.27   -4.78   -3.86   -2.61   -1.09    0.75    3.06    6.07    9.84
+   235.0    0.00   -0.15   -0.54   -1.11   -1.82   -2.63   -3.47   -4.27   -4.92   -5.29   -5.26   -4.77   -3.85   -2.58   -1.01    0.86    3.21    6.22    9.96
+   240.0    0.00   -0.15   -0.54   -1.11   -1.83   -2.63   -3.47   -4.26   -4.91   -5.28   -5.26   -4.78   -3.86   -2.56   -0.95    0.97    3.35    6.35   10.04
+   245.0    0.00   -0.15   -0.54   -1.12   -1.83   -2.63   -3.46   -4.25   -4.89   -5.27   -5.26   -4.80   -3.88   -2.56   -0.91    1.06    3.46    6.44   10.07
+   250.0    0.00   -0.15   -0.54   -1.12   -1.84   -2.63   -3.46   -4.23   -4.88   -5.26   -5.27   -4.83   -3.92   -2.58   -0.90    1.12    3.53    6.48   10.05
+   255.0    0.00   -0.16   -0.55   -1.13   -1.84   -2.64   -3.45   -4.22   -4.86   -5.26   -5.29   -4.87   -3.97   -2.63   -0.91    1.14    3.56    6.47    9.98
+   260.0    0.00   -0.16   -0.55   -1.13   -1.85   -2.64   -3.44   -4.20   -4.84   -5.25   -5.31   -4.91   -4.03   -2.68   -0.95    1.12    3.54    6.41    9.87
+   265.0    0.00   -0.16   -0.55   -1.14   -1.85   -2.64   -3.43   -4.19   -4.83   -5.25   -5.33   -4.96   -4.09   -2.75   -1.01    1.07    3.48    6.31    9.74
+   270.0    0.00   -0.16   -0.56   -1.14   -1.86   -2.63   -3.43   -4.18   -4.82   -5.25   -5.34   -5.00   -4.15   -2.82   -1.08    0.98    3.37    6.18    9.61
+   275.0    0.00   -0.16   -0.56   -1.14   -1.86   -2.63   -3.42   -4.16   -4.80   -5.24   -5.36   -5.03   -4.20   -2.89   -1.17    0.87    3.23    6.03    9.50
+   280.0    0.00   -0.16   -0.56   -1.15   -1.86   -2.63   -3.41   -4.15   -4.79   -5.24   -5.36   -5.05   -4.24   -2.95   -1.26    0.75    3.08    5.88    9.41
+   285.0    0.00   -0.16   -0.56   -1.14   -1.85   -2.62   -3.40   -4.14   -4.79   -5.23   -5.36   -5.06   -4.27   -3.00   -1.35    0.62    2.92    5.73    9.36
+   290.0    0.00   -0.16   -0.56   -1.14   -1.85   -2.61   -3.39   -4.13   -4.78   -5.23   -5.36   -5.06   -4.28   -3.04   -1.42    0.50    2.77    5.60    9.35
+   295.0    0.00   -0.16   -0.55   -1.14   -1.84   -2.60   -3.38   -4.12   -4.77   -5.22   -5.35   -5.05   -4.27   -3.05   -1.48    0.39    2.64    5.51    9.38
+   300.0    0.00   -0.15   -0.55   -1.13   -1.83   -2.59   -3.37   -4.12   -4.77   -5.21   -5.33   -5.02   -4.25   -3.06   -1.53    0.30    2.53    5.45    9.45
+   305.0    0.00   -0.15   -0.55   -1.12   -1.82   -2.57   -3.35   -4.11   -4.76   -5.20   -5.31   -4.99   -4.22   -3.04   -1.55    0.24    2.46    5.42    9.53
+   310.0    0.00   -0.15   -0.54   -1.11   -1.80   -2.56   -3.34   -4.10   -4.76   -5.20   -5.29   -4.96   -4.18   -3.02   -1.56    0.20    2.41    5.42    9.63
+   315.0    0.00   -0.15   -0.54   -1.10   -1.79   -2.54   -3.33   -4.09   -4.75   -5.19   -5.28   -4.93   -4.14   -2.99   -1.55    0.18    2.40    5.45    9.72
+   320.0    0.00   -0.15   -0.53   -1.09   -1.77   -2.52   -3.31   -4.08   -4.75   -5.18   -5.26   -4.90   -4.11   -2.96   -1.54    0.18    2.40    5.50    9.80
+   325.0    0.00   -0.14   -0.53   -1.08   -1.76   -2.51   -3.30   -4.07   -4.74   -5.18   -5.25   -4.88   -4.08   -2.94   -1.53    0.18    2.42    5.54    9.84
+   330.0    0.00   -0.14   -0.52   -1.07   -1.74   -2.49   -3.28   -4.07   -4.74   -5.18   -5.24   -4.86   -4.06   -2.92   -1.52    0.19    2.45    5.59    9.85
+   335.0    0.00   -0.14   -0.51   -1.06   -1.73   -2.48   -3.27   -4.06   -4.74   -5.17   -5.24   -4.86   -4.05   -2.92   -1.52    0.20    2.47    5.62    9.83
+   340.0    0.00   -0.14   -0.51   -1.05   -1.72   -2.46   -3.26   -4.05   -4.74   -5.17   -5.24   -4.86   -4.06   -2.92   -1.52    0.21    2.49    5.63    9.76
+   345.0    0.00   -0.13   -0.50   -1.04   -1.71   -2.46   -3.25   -4.05   -4.73   -5.17   -5.24   -4.86   -4.07   -2.93   -1.53    0.20    2.49    5.62    9.67
+   350.0    0.00   -0.13   -0.49   -1.03   -1.70   -2.45   -3.25   -4.04   -4.73   -5.17   -5.24   -4.87   -4.08   -2.95   -1.55    0.19    2.48    5.59    9.55
+   355.0    0.00   -0.13   -0.49   -1.03   -1.69   -2.44   -3.24   -4.04   -4.73   -5.17   -5.25   -4.88   -4.10   -2.98   -1.57    0.17    2.46    5.55    9.43
+   360.0    0.00   -0.12   -0.48   -1.02   -1.69   -2.44   -3.24   -4.04   -4.72   -5.17   -5.25   -4.89   -4.12   -3.00   -1.59    0.15    2.44    5.50    9.31
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH701073.3     NONE                                        TYPE / SERIAL NO    
+COPIED              Geo++ GmbH               2    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+COPIED FROM AOAD/M_T        NONE                            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.58     -0.37     91.85                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.23   -0.90   -1.93   -3.22   -4.62   -5.96   -7.09   -7.87   -8.21   -8.06   -7.39   -6.23   -4.55   -2.28    0.69    4.47    9.08   14.23
+     0.0    0.00   -0.27   -0.98   -2.07   -3.42   -4.87   -6.26   -7.43   -8.21   -8.53   -8.32   -7.62   -6.44   -4.77   -2.54    0.39    4.14    8.68   13.67
+     5.0    0.00   -0.27   -0.98   -2.06   -3.41   -4.86   -6.25   -7.41   -8.20   -8.52   -8.31   -7.60   -6.41   -4.74   -2.50    0.42    4.18    8.73   13.73
+    10.0    0.00   -0.26   -0.97   -2.05   -3.39   -4.84   -6.23   -7.40   -8.19   -8.50   -8.30   -7.58   -6.38   -4.70   -2.46    0.47    4.23    8.79   13.83
+    15.0    0.00   -0.26   -0.97   -2.05   -3.38   -4.82   -6.21   -7.37   -8.17   -8.49   -8.28   -7.56   -6.36   -4.66   -2.41    0.53    4.30    8.88   13.96
+    20.0    0.00   -0.26   -0.96   -2.03   -3.36   -4.80   -6.18   -7.35   -8.15   -8.47   -8.27   -7.54   -6.33   -4.62   -2.36    0.60    4.38    9.00   14.12
+    25.0    0.00   -0.26   -0.96   -2.02   -3.34   -4.77   -6.16   -7.32   -8.12   -8.44   -8.25   -7.53   -6.30   -4.58   -2.30    0.68    4.49    9.13   14.31
+    30.0    0.00   -0.26   -0.95   -2.01   -3.32   -4.75   -6.12   -7.28   -8.08   -8.42   -8.22   -7.51   -6.28   -4.54   -2.24    0.77    4.61    9.29   14.51
+    35.0    0.00   -0.25   -0.94   -2.00   -3.30   -4.72   -6.09   -7.25   -8.05   -8.38   -8.20   -7.48   -6.25   -4.50   -2.17    0.87    4.75    9.46   14.71
+    40.0    0.00   -0.25   -0.93   -1.98   -3.28   -4.69   -6.05   -7.21   -8.01   -8.35   -8.17   -7.46   -6.23   -4.46   -2.10    0.97    4.88    9.62   14.90
+    45.0    0.00   -0.25   -0.93   -1.97   -3.26   -4.66   -6.02   -7.16   -7.96   -8.30   -8.13   -7.43   -6.19   -4.42   -2.03    1.08    5.02    9.78   15.07
+    50.0    0.00   -0.24   -0.92   -1.95   -3.24   -4.63   -5.98   -7.12   -7.91   -8.26   -8.09   -7.39   -6.16   -4.37   -1.97    1.17    5.14    9.92   15.22
+    55.0    0.00   -0.24   -0.91   -1.94   -3.21   -4.60   -5.94   -7.07   -7.86   -8.20   -8.04   -7.35   -6.12   -4.33   -1.91    1.24    5.24   10.04   15.34
+    60.0    0.00   -0.24   -0.90   -1.92   -3.19   -4.57   -5.90   -7.02   -7.81   -8.15   -7.99   -7.30   -6.08   -4.29   -1.87    1.30    5.31   10.11   15.41
+    65.0    0.00   -0.23   -0.89   -1.91   -3.17   -4.54   -5.86   -6.97   -7.75   -8.09   -7.93   -7.25   -6.03   -4.25   -1.83    1.33    5.34   10.15   15.45
+    70.0    0.00   -0.23   -0.89   -1.90   -3.15   -4.51   -5.82   -6.93   -7.70   -8.03   -7.88   -7.20   -5.99   -4.22   -1.82    1.33    5.33   10.14   15.45
+    75.0    0.00   -0.23   -0.88   -1.88   -3.13   -4.49   -5.79   -6.89   -7.65   -7.98   -7.82   -7.15   -5.96   -4.21   -1.82    1.31    5.28   10.08   15.40
+    80.0    0.00   -0.23   -0.87   -1.87   -3.12   -4.46   -5.76   -6.85   -7.61   -7.94   -7.78   -7.11   -5.93   -4.20   -1.85    1.25    5.20    9.99   15.32
+    85.0    0.00   -0.22   -0.87   -1.86   -3.10   -4.44   -5.74   -6.83   -7.58   -7.91   -7.75   -7.09   -5.92   -4.21   -1.89    1.17    5.09    9.86   15.20
+    90.0    0.00   -0.22   -0.86   -1.86   -3.09   -4.43   -5.72   -6.81   -7.56   -7.89   -7.73   -7.08   -5.92   -4.24   -1.95    1.08    4.96    9.71   15.05
+    95.0    0.00   -0.22   -0.86   -1.85   -3.09   -4.42   -5.71   -6.80   -7.56   -7.89   -7.73   -7.09   -5.94   -4.28   -2.02    0.97    4.82    9.54   14.88
+   100.0    0.00   -0.22   -0.86   -1.85   -3.08   -4.42   -5.71   -6.80   -7.56   -7.90   -7.75   -7.11   -5.98   -4.34   -2.11    0.86    4.68    9.37   14.70
+   105.0    0.00   -0.22   -0.86   -1.85   -3.08   -4.42   -5.72   -6.81   -7.58   -7.92   -7.78   -7.16   -6.04   -4.41   -2.19    0.75    4.54    9.21   14.52
+   110.0    0.00   -0.21   -0.85   -1.85   -3.09   -4.43   -5.73   -6.83   -7.61   -7.96   -7.83   -7.21   -6.10   -4.49   -2.28    0.64    4.42    9.07   14.35
+   115.0    0.00   -0.21   -0.85   -1.85   -3.09   -4.44   -5.75   -6.86   -7.65   -8.01   -7.89   -7.28   -6.18   -4.57   -2.36    0.56    4.32    8.95   14.20
+   120.0    0.00   -0.21   -0.86   -1.86   -3.10   -4.46   -5.77   -6.90   -7.69   -8.06   -7.95   -7.35   -6.25   -4.64   -2.44    0.48    4.25    8.86   14.08
+   125.0    0.00   -0.21   -0.86   -1.86   -3.12   -4.48   -5.80   -6.93   -7.73   -8.11   -8.01   -7.42   -6.33   -4.72   -2.50    0.43    4.20    8.81   13.99
+   130.0    0.00   -0.21   -0.86   -1.87   -3.13   -4.50   -5.83   -6.97   -7.78   -8.16   -8.07   -7.48   -6.39   -4.78   -2.55    0.40    4.18    8.78   13.94
+   135.0    0.00   -0.21   -0.86   -1.88   -3.15   -4.53   -5.86   -7.01   -7.82   -8.21   -8.12   -7.54   -6.45   -4.83   -2.59    0.38    4.17    8.78   13.92
+   140.0    0.00   -0.21   -0.86   -1.89   -3.16   -4.55   -5.89   -7.04   -7.85   -8.24   -8.16   -7.58   -6.49   -4.87   -2.62    0.37    4.18    8.79   13.93
+   145.0    0.00   -0.21   -0.87   -1.89   -3.18   -4.57   -5.92   -7.07   -7.88   -8.28   -8.19   -7.61   -6.52   -4.89   -2.63    0.37    4.19    8.81   13.95
+   150.0    0.00   -0.21   -0.87   -1.90   -3.19   -4.59   -5.95   -7.10   -7.91   -8.30   -8.21   -7.63   -6.54   -4.90   -2.63    0.37    4.21    8.83   13.98
+   155.0    0.00   -0.21   -0.87   -1.91   -3.20   -4.61   -5.97   -7.12   -7.93   -8.32   -8.23   -7.65   -6.55   -4.91   -2.64    0.38    4.21    8.84   14.00
+   160.0    0.00   -0.21   -0.87   -1.91   -3.21   -4.63   -5.98   -7.13   -7.94   -8.33   -8.24   -7.65   -6.56   -4.91   -2.64    0.38    4.21    8.83   14.00
+   165.0    0.00   -0.21   -0.88   -1.92   -3.22   -4.64   -6.00   -7.14   -7.95   -8.34   -8.24   -7.65   -6.55   -4.91   -2.64    0.37    4.19    8.81   13.98
+   170.0    0.00   -0.21   -0.88   -1.92   -3.23   -4.64   -6.00   -7.15   -7.96   -8.34   -8.25   -7.65   -6.55   -4.91   -2.64    0.35    4.16    8.76   13.93
+   175.0    0.00   -0.21   -0.88   -1.92   -3.23   -4.65   -6.01   -7.16   -7.97   -8.35   -8.25   -7.65   -6.55   -4.90   -2.64    0.33    4.11    8.70   13.87
+   180.0    0.00   -0.21   -0.88   -1.92   -3.23   -4.65   -6.01   -7.16   -7.97   -8.35   -8.25   -7.66   -6.55   -4.90   -2.65    0.31    4.07    8.63   13.79
+   185.0    0.00   -0.21   -0.88   -1.92   -3.23   -4.64   -6.00   -7.16   -7.97   -8.36   -8.26   -7.66   -6.55   -4.90   -2.66    0.28    4.02    8.57   13.72
+   190.0    0.00   -0.21   -0.87   -1.92   -3.22   -4.64   -6.00   -7.15   -7.97   -8.36   -8.26   -7.66   -6.54   -4.90   -2.67    0.26    3.99    8.52   13.66
+   195.0    0.00   -0.21   -0.87   -1.91   -3.21   -4.63   -5.99   -7.15   -7.97   -8.35   -8.25   -7.65   -6.53   -4.89   -2.66    0.26    3.97    8.50   13.64
+   200.0    0.00   -0.21   -0.87   -1.91   -3.20   -4.61   -5.98   -7.14   -7.96   -8.34   -8.24   -7.63   -6.52   -4.88   -2.65    0.27    3.98    8.52   13.67
+   205.0    0.00   -0.21   -0.87   -1.90   -3.19   -4.60   -5.96   -7.12   -7.94   -8.33   -8.22   -7.61   -6.49   -4.85   -2.62    0.30    4.03    8.58   13.75
+   210.0    0.00   -0.21   -0.87   -1.89   -3.18   -4.59   -5.94   -7.10   -7.92   -8.30   -8.19   -7.57   -6.45   -4.80   -2.57    0.35    4.11    8.70   13.88
+   215.0    0.00   -0.21   -0.86   -1.89   -3.17   -4.57   -5.92   -7.08   -7.89   -8.26   -8.14   -7.52   -6.39   -4.74   -2.51    0.44    4.22    8.85   14.06
+   220.0    0.00   -0.21   -0.86   -1.88   -3.16   -4.55   -5.90   -7.05   -7.85   -8.22   -8.09   -7.46   -6.32   -4.67   -2.42    0.54    4.36    9.04   14.28
+   225.0    0.00   -0.21   -0.86   -1.88   -3.15   -4.53   -5.88   -7.01   -7.81   -8.17   -8.03   -7.38   -6.24   -4.58   -2.32    0.67    4.53    9.25   14.52
+   230.0    0.00   -0.21   -0.86   -1.87   -3.14   -4.52   -5.85   -6.98   -7.77   -8.11   -7.96   -7.30   -6.15   -4.48   -2.20    0.81    4.71    9.46   14.74
+   235.0    0.00   -0.21   -0.86   -1.87   -3.13   -4.50   -5.83   -6.95   -7.72   -8.05   -7.89   -7.22   -6.06   -4.37   -2.08    0.96    4.88    9.66   14.94
+   240.0    0.00   -0.22   -0.86   -1.86   -3.12   -4.49   -5.80   -6.91   -7.68   -7.99   -7.82   -7.14   -5.97   -4.27   -1.96    1.10    5.04    9.83   15.09
+   245.0    0.00   -0.22   -0.86   -1.86   -3.12   -4.48   -5.78   -6.88   -7.64   -7.94   -7.76   -7.07   -5.88   -4.17   -1.84    1.23    5.18    9.95   15.17
+   250.0    0.00   -0.22   -0.86   -1.87   -3.11   -4.47   -5.77   -6.86   -7.60   -7.90   -7.71   -7.01   -5.81   -4.08   -1.74    1.34    5.27   10.01   15.19
+   255.0    0.00   -0.22   -0.87   -1.87   -3.12   -4.47   -5.76   -6.84   -7.58   -7.87   -7.67   -6.97   -5.76   -4.01   -1.66    1.41    5.32   10.00   15.12
+   260.0    0.00   -0.22   -0.87   -1.87   -3.12   -4.47   -5.76   -6.84   -7.57   -7.86   -7.65   -6.94   -5.72   -3.97   -1.61    1.45    5.32    9.94   15.00
+   265.0    0.00   -0.23   -0.88   -1.88   -3.13   -4.48   -5.77   -6.84   -7.57   -7.86   -7.65   -6.93   -5.70   -3.94   -1.59    1.45    5.26    9.81   14.82
+   270.0    0.00   -0.23   -0.88   -1.89   -3.14   -4.49   -5.78   -6.85   -7.58   -7.87   -7.66   -6.94   -5.71   -3.94   -1.60    1.41    5.16    9.65   14.61
+   275.0    0.00   -0.23   -0.89   -1.90   -3.16   -4.51   -5.80   -6.88   -7.61   -7.90   -7.69   -6.97   -5.73   -3.97   -1.64    1.33    5.03    9.45   14.39
+   280.0    0.00   -0.23   -0.90   -1.92   -3.18   -4.54   -5.83   -6.91   -7.64   -7.93   -7.73   -7.01   -5.77   -4.02   -1.71    1.23    4.87    9.24   14.18
+   285.0    0.00   -0.24   -0.91   -1.93   -3.20   -4.56   -5.87   -6.95   -7.69   -7.98   -7.78   -7.06   -5.83   -4.09   -1.80    1.10    4.70    9.04   13.99
+   290.0    0.00   -0.24   -0.91   -1.95   -3.23   -4.60   -5.91   -7.00   -7.74   -8.04   -7.83   -7.12   -5.90   -4.17   -1.91    0.96    4.53    8.85   13.85
+   295.0    0.00   -0.24   -0.92   -1.96   -3.25   -4.63   -5.95   -7.05   -7.79   -8.09   -7.90   -7.19   -5.97   -4.26   -2.02    0.82    4.37    8.70   13.74
+   300.0    0.00   -0.25   -0.93   -1.98   -3.28   -4.67   -6.00   -7.10   -7.85   -8.15   -7.96   -7.26   -6.06   -4.36   -2.14    0.69    4.23    8.58   13.68
+   305.0    0.00   -0.25   -0.94   -2.00   -3.30   -4.71   -6.04   -7.16   -7.91   -8.21   -8.02   -7.32   -6.14   -4.46   -2.26    0.57    4.12    8.51   13.66
+   310.0    0.00   -0.25   -0.95   -2.01   -3.33   -4.74   -6.09   -7.21   -7.97   -8.27   -8.08   -7.39   -6.22   -4.55   -2.36    0.46    4.04    8.47   13.66
+   315.0    0.00   -0.26   -0.96   -2.03   -3.35   -4.78   -6.13   -7.26   -8.02   -8.33   -8.14   -7.45   -6.29   -4.64   -2.45    0.39    4.00    8.46   13.68
+   320.0    0.00   -0.26   -0.96   -2.04   -3.37   -4.81   -6.17   -7.30   -8.07   -8.38   -8.19   -7.51   -6.35   -4.71   -2.52    0.33    3.97    8.47   13.69
+   325.0    0.00   -0.26   -0.97   -2.05   -3.39   -4.83   -6.20   -7.34   -8.11   -8.42   -8.23   -7.55   -6.40   -4.76   -2.57    0.30    3.97    8.50   13.71
+   330.0    0.00   -0.26   -0.98   -2.06   -3.41   -4.85   -6.23   -7.37   -8.14   -8.45   -8.27   -7.59   -6.44   -4.81   -2.61    0.28    3.98    8.53   13.70
+   335.0    0.00   -0.26   -0.98   -2.07   -3.42   -4.87   -6.25   -7.40   -8.17   -8.48   -8.30   -7.62   -6.47   -4.83   -2.63    0.28    4.01    8.56   13.69
+   340.0    0.00   -0.27   -0.98   -2.07   -3.42   -4.88   -6.27   -7.42   -8.19   -8.51   -8.32   -7.64   -6.48   -4.84   -2.63    0.29    4.03    8.59   13.67
+   345.0    0.00   -0.27   -0.98   -2.08   -3.43   -4.88   -6.27   -7.43   -8.21   -8.52   -8.33   -7.64   -6.48   -4.84   -2.62    0.30    4.06    8.61   13.65
+   350.0    0.00   -0.27   -0.98   -2.08   -3.43   -4.88   -6.28   -7.43   -8.22   -8.53   -8.33   -7.64   -6.48   -4.82   -2.60    0.33    4.08    8.63   13.63
+   355.0    0.00   -0.27   -0.98   -2.07   -3.42   -4.88   -6.27   -7.43   -8.22   -8.53   -8.33   -7.63   -6.46   -4.80   -2.58    0.35    4.11    8.65   13.64
+   360.0    0.00   -0.27   -0.98   -2.07   -3.42   -4.87   -6.26   -7.43   -8.21   -8.53   -8.32   -7.62   -6.44   -4.77   -2.54    0.39    4.14    8.68   13.67
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.08     -0.59    120.35                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.13   -0.51   -1.08   -1.79   -2.58   -3.39   -4.17   -4.81   -5.21   -5.25   -4.86   -4.03   -2.83   -1.33    0.49    2.75    5.68    9.44
+     0.0    0.00   -0.12   -0.48   -1.02   -1.69   -2.44   -3.24   -4.04   -4.72   -5.17   -5.25   -4.89   -4.12   -3.00   -1.59    0.15    2.44    5.50    9.31
+     5.0    0.00   -0.12   -0.48   -1.02   -1.69   -2.44   -3.24   -4.03   -4.72   -5.16   -5.25   -4.90   -4.13   -3.01   -1.61    0.14    2.42    5.45    9.20
+    10.0    0.00   -0.12   -0.47   -1.01   -1.68   -2.44   -3.24   -4.03   -4.71   -5.15   -5.24   -4.90   -4.13   -3.02   -1.61    0.14    2.41    5.41    9.12
+    15.0    0.00   -0.12   -0.47   -1.01   -1.68   -2.44   -3.24   -4.02   -4.70   -5.14   -5.23   -4.89   -4.13   -3.02   -1.60    0.15    2.41    5.38    9.06
+    20.0    0.00   -0.11   -0.47   -1.01   -1.68   -2.44   -3.24   -4.02   -4.69   -5.13   -5.21   -4.88   -4.12   -3.00   -1.58    0.18    2.43    5.37    9.05
+    25.0    0.00   -0.11   -0.46   -1.00   -1.68   -2.44   -3.24   -4.02   -4.68   -5.11   -5.20   -4.86   -4.10   -2.97   -1.54    0.22    2.46    5.39    9.06
+    30.0    0.00   -0.11   -0.46   -1.00   -1.68   -2.45   -3.24   -4.01   -4.67   -5.09   -5.18   -4.84   -4.07   -2.93   -1.49    0.28    2.51    5.42    9.11
+    35.0    0.00   -0.11   -0.46   -1.00   -1.68   -2.45   -3.24   -4.01   -4.66   -5.08   -5.16   -4.81   -4.03   -2.88   -1.42    0.35    2.58    5.48    9.19
+    40.0    0.00   -0.11   -0.45   -1.00   -1.68   -2.45   -3.25   -4.01   -4.65   -5.06   -5.13   -4.78   -4.00   -2.83   -1.36    0.42    2.65    5.55    9.30
+    45.0    0.00   -0.10   -0.45   -0.99   -1.68   -2.45   -3.25   -4.01   -4.65   -5.05   -5.11   -4.75   -3.96   -2.78   -1.30    0.49    2.72    5.62    9.41
+    50.0    0.00   -0.10   -0.45   -0.99   -1.68   -2.45   -3.25   -4.01   -4.65   -5.05   -5.10   -4.72   -3.92   -2.73   -1.24    0.56    2.78    5.69    9.52
+    55.0    0.00   -0.10   -0.45   -0.99   -1.68   -2.46   -3.26   -4.02   -4.65   -5.04   -5.09   -4.70   -3.88   -2.69   -1.19    0.60    2.84    5.76    9.62
+    60.0    0.00   -0.10   -0.44   -0.99   -1.68   -2.46   -3.27   -4.03   -4.66   -5.05   -5.08   -4.68   -3.86   -2.66   -1.16    0.64    2.87    5.81    9.70
+    65.0    0.00   -0.10   -0.44   -0.99   -1.69   -2.47   -3.28   -4.05   -4.68   -5.06   -5.08   -4.67   -3.84   -2.64   -1.15    0.65    2.89    5.84    9.76
+    70.0    0.00   -0.10   -0.44   -0.99   -1.69   -2.48   -3.30   -4.07   -4.70   -5.07   -5.08   -4.67   -3.83   -2.64   -1.15    0.64    2.88    5.85    9.79
+    75.0    0.00   -0.10   -0.44   -0.99   -1.69   -2.49   -3.31   -4.09   -4.72   -5.09   -5.09   -4.67   -3.84   -2.65   -1.17    0.61    2.86    5.83    9.78
+    80.0    0.00   -0.10   -0.45   -1.00   -1.70   -2.50   -3.33   -4.12   -4.75   -5.11   -5.11   -4.68   -3.85   -2.67   -1.21    0.57    2.82    5.80    9.74
+    85.0    0.00   -0.10   -0.45   -1.00   -1.71   -2.52   -3.36   -4.14   -4.78   -5.14   -5.13   -4.70   -3.87   -2.70   -1.25    0.52    2.77    5.75    9.67
+    90.0    0.00   -0.10   -0.45   -1.01   -1.72   -2.54   -3.38   -4.17   -4.81   -5.17   -5.15   -4.72   -3.89   -2.73   -1.29    0.47    2.71    5.68    9.57
+    95.0    0.00   -0.10   -0.46   -1.02   -1.74   -2.55   -3.40   -4.20   -4.83   -5.19   -5.18   -4.74   -3.92   -2.77   -1.33    0.42    2.66    5.62    9.47
+   100.0    0.00   -0.11   -0.46   -1.03   -1.75   -2.58   -3.43   -4.22   -4.86   -5.22   -5.20   -4.77   -3.95   -2.80   -1.37    0.38    2.61    5.56    9.36
+   105.0    0.00   -0.11   -0.47   -1.04   -1.77   -2.60   -3.45   -4.25   -4.88   -5.24   -5.22   -4.79   -3.97   -2.82   -1.40    0.35    2.58    5.51    9.26
+   110.0    0.00   -0.11   -0.48   -1.05   -1.79   -2.62   -3.47   -4.27   -4.90   -5.26   -5.25   -4.82   -4.00   -2.84   -1.41    0.35    2.57    5.48    9.18
+   115.0    0.00   -0.11   -0.48   -1.07   -1.81   -2.64   -3.50   -4.29   -4.92   -5.28   -5.26   -4.84   -4.01   -2.85   -1.41    0.36    2.58    5.46    9.13
+   120.0    0.00   -0.12   -0.49   -1.08   -1.83   -2.66   -3.52   -4.30   -4.93   -5.29   -5.28   -4.85   -4.03   -2.86   -1.39    0.38    2.61    5.47    9.10
+   125.0    0.00   -0.12   -0.50   -1.10   -1.85   -2.68   -3.53   -4.32   -4.94   -5.30   -5.29   -4.87   -4.03   -2.85   -1.37    0.43    2.65    5.50    9.09
+   130.0    0.00   -0.12   -0.50   -1.11   -1.86   -2.70   -3.55   -4.33   -4.95   -5.30   -5.30   -4.88   -4.04   -2.84   -1.33    0.48    2.71    5.54    9.11
+   135.0    0.00   -0.12   -0.51   -1.12   -1.88   -2.72   -3.56   -4.33   -4.95   -5.30   -5.30   -4.88   -4.04   -2.82   -1.29    0.54    2.77    5.60    9.15
+   140.0    0.00   -0.13   -0.52   -1.13   -1.89   -2.73   -3.57   -4.33   -4.95   -5.31   -5.31   -4.89   -4.04   -2.80   -1.25    0.60    2.84    5.66    9.19
+   145.0    0.00   -0.13   -0.52   -1.14   -1.90   -2.74   -3.57   -4.33   -4.94   -5.31   -5.31   -4.89   -4.04   -2.79   -1.22    0.65    2.90    5.71    9.23
+   150.0    0.00   -0.13   -0.53   -1.15   -1.91   -2.74   -3.57   -4.33   -4.94   -5.31   -5.32   -4.90   -4.04   -2.78   -1.19    0.69    2.94    5.74    9.25
+   155.0    0.00   -0.13   -0.53   -1.15   -1.91   -2.74   -3.57   -4.33   -4.94   -5.31   -5.33   -4.91   -4.05   -2.78   -1.18    0.71    2.97    5.76    9.25
+   160.0    0.00   -0.13   -0.53   -1.15   -1.91   -2.74   -3.56   -4.32   -4.93   -5.31   -5.33   -4.92   -4.06   -2.78   -1.18    0.71    2.97    5.76    9.23
+   165.0    0.00   -0.14   -0.54   -1.15   -1.91   -2.73   -3.55   -4.31   -4.93   -5.31   -5.34   -4.94   -4.07   -2.80   -1.19    0.70    2.95    5.73    9.18
+   170.0    0.00   -0.14   -0.54   -1.15   -1.90   -2.72   -3.54   -4.30   -4.93   -5.32   -5.35   -4.95   -4.09   -2.82   -1.22    0.66    2.91    5.68    9.11
+   175.0    0.00   -0.14   -0.54   -1.15   -1.90   -2.71   -3.53   -4.30   -4.93   -5.32   -5.36   -4.96   -4.11   -2.84   -1.26    0.61    2.85    5.62    9.03
+   180.0    0.00   -0.14   -0.54   -1.14   -1.89   -2.70   -3.52   -4.29   -4.93   -5.33   -5.37   -4.97   -4.12   -2.87   -1.30    0.55    2.77    5.55    8.96
+   185.0    0.00   -0.14   -0.54   -1.14   -1.87   -2.69   -3.51   -4.29   -4.93   -5.34   -5.38   -4.98   -4.13   -2.89   -1.35    0.48    2.70    5.48    8.89
+   190.0    0.00   -0.14   -0.53   -1.13   -1.86   -2.67   -3.50   -4.29   -4.94   -5.34   -5.38   -4.97   -4.12   -2.90   -1.38    0.42    2.63    5.42    8.86
+   195.0    0.00   -0.14   -0.53   -1.12   -1.85   -2.66   -3.49   -4.28   -4.94   -5.34   -5.37   -4.96   -4.11   -2.90   -1.40    0.38    2.58    5.39    8.87
+   200.0    0.00   -0.14   -0.53   -1.12   -1.84   -2.65   -3.49   -4.29   -4.95   -5.34   -5.36   -4.94   -4.09   -2.89   -1.41    0.35    2.55    5.39    8.92
+   205.0    0.00   -0.15   -0.53   -1.11   -1.83   -2.64   -3.48   -4.29   -4.95   -5.34   -5.35   -4.91   -4.05   -2.86   -1.40    0.35    2.55    5.43    9.01
+   210.0    0.00   -0.15   -0.53   -1.11   -1.82   -2.63   -3.48   -4.29   -4.95   -5.34   -5.33   -4.88   -4.01   -2.82   -1.36    0.38    2.59    5.50    9.15
+   215.0    0.00   -0.15   -0.53   -1.10   -1.82   -2.63   -3.48   -4.29   -4.95   -5.33   -5.32   -4.85   -3.97   -2.77   -1.31    0.44    2.67    5.61    9.32
+   220.0    0.00   -0.15   -0.53   -1.10   -1.82   -2.63   -3.48   -4.29   -4.95   -5.32   -5.30   -4.82   -3.93   -2.71   -1.24    0.52    2.78    5.76    9.50
+   225.0    0.00   -0.15   -0.53   -1.10   -1.82   -2.63   -3.47   -4.28   -4.94   -5.31   -5.28   -4.79   -3.89   -2.66   -1.17    0.63    2.91    5.91    9.68
+   230.0    0.00   -0.15   -0.53   -1.11   -1.82   -2.63   -3.47   -4.28   -4.93   -5.30   -5.27   -4.78   -3.86   -2.61   -1.09    0.75    3.06    6.07    9.84
+   235.0    0.00   -0.15   -0.54   -1.11   -1.82   -2.63   -3.47   -4.27   -4.92   -5.29   -5.26   -4.77   -3.85   -2.58   -1.01    0.86    3.21    6.22    9.96
+   240.0    0.00   -0.15   -0.54   -1.11   -1.83   -2.63   -3.47   -4.26   -4.91   -5.28   -5.26   -4.78   -3.86   -2.56   -0.95    0.97    3.35    6.35   10.04
+   245.0    0.00   -0.15   -0.54   -1.12   -1.83   -2.63   -3.46   -4.25   -4.89   -5.27   -5.26   -4.80   -3.88   -2.56   -0.91    1.06    3.46    6.44   10.07
+   250.0    0.00   -0.15   -0.54   -1.12   -1.84   -2.63   -3.46   -4.23   -4.88   -5.26   -5.27   -4.83   -3.92   -2.58   -0.90    1.12    3.53    6.48   10.05
+   255.0    0.00   -0.16   -0.55   -1.13   -1.84   -2.64   -3.45   -4.22   -4.86   -5.26   -5.29   -4.87   -3.97   -2.63   -0.91    1.14    3.56    6.47    9.98
+   260.0    0.00   -0.16   -0.55   -1.13   -1.85   -2.64   -3.44   -4.20   -4.84   -5.25   -5.31   -4.91   -4.03   -2.68   -0.95    1.12    3.54    6.41    9.87
+   265.0    0.00   -0.16   -0.55   -1.14   -1.85   -2.64   -3.43   -4.19   -4.83   -5.25   -5.33   -4.96   -4.09   -2.75   -1.01    1.07    3.48    6.31    9.74
+   270.0    0.00   -0.16   -0.56   -1.14   -1.86   -2.63   -3.43   -4.18   -4.82   -5.25   -5.34   -5.00   -4.15   -2.82   -1.08    0.98    3.37    6.18    9.61
+   275.0    0.00   -0.16   -0.56   -1.14   -1.86   -2.63   -3.42   -4.16   -4.80   -5.24   -5.36   -5.03   -4.20   -2.89   -1.17    0.87    3.23    6.03    9.50
+   280.0    0.00   -0.16   -0.56   -1.15   -1.86   -2.63   -3.41   -4.15   -4.79   -5.24   -5.36   -5.05   -4.24   -2.95   -1.26    0.75    3.08    5.88    9.41
+   285.0    0.00   -0.16   -0.56   -1.14   -1.85   -2.62   -3.40   -4.14   -4.79   -5.23   -5.36   -5.06   -4.27   -3.00   -1.35    0.62    2.92    5.73    9.36
+   290.0    0.00   -0.16   -0.56   -1.14   -1.85   -2.61   -3.39   -4.13   -4.78   -5.23   -5.36   -5.06   -4.28   -3.04   -1.42    0.50    2.77    5.60    9.35
+   295.0    0.00   -0.16   -0.55   -1.14   -1.84   -2.60   -3.38   -4.12   -4.77   -5.22   -5.35   -5.05   -4.27   -3.05   -1.48    0.39    2.64    5.51    9.38
+   300.0    0.00   -0.15   -0.55   -1.13   -1.83   -2.59   -3.37   -4.12   -4.77   -5.21   -5.33   -5.02   -4.25   -3.06   -1.53    0.30    2.53    5.45    9.45
+   305.0    0.00   -0.15   -0.55   -1.12   -1.82   -2.57   -3.35   -4.11   -4.76   -5.20   -5.31   -4.99   -4.22   -3.04   -1.55    0.24    2.46    5.42    9.53
+   310.0    0.00   -0.15   -0.54   -1.11   -1.80   -2.56   -3.34   -4.10   -4.76   -5.20   -5.29   -4.96   -4.18   -3.02   -1.56    0.20    2.41    5.42    9.63
+   315.0    0.00   -0.15   -0.54   -1.10   -1.79   -2.54   -3.33   -4.09   -4.75   -5.19   -5.28   -4.93   -4.14   -2.99   -1.55    0.18    2.40    5.45    9.72
+   320.0    0.00   -0.15   -0.53   -1.09   -1.77   -2.52   -3.31   -4.08   -4.75   -5.18   -5.26   -4.90   -4.11   -2.96   -1.54    0.18    2.40    5.50    9.80
+   325.0    0.00   -0.14   -0.53   -1.08   -1.76   -2.51   -3.30   -4.07   -4.74   -5.18   -5.25   -4.88   -4.08   -2.94   -1.53    0.18    2.42    5.54    9.84
+   330.0    0.00   -0.14   -0.52   -1.07   -1.74   -2.49   -3.28   -4.07   -4.74   -5.18   -5.24   -4.86   -4.06   -2.92   -1.52    0.19    2.45    5.59    9.85
+   335.0    0.00   -0.14   -0.51   -1.06   -1.73   -2.48   -3.27   -4.06   -4.74   -5.17   -5.24   -4.86   -4.05   -2.92   -1.52    0.20    2.47    5.62    9.83
+   340.0    0.00   -0.14   -0.51   -1.05   -1.72   -2.46   -3.26   -4.05   -4.74   -5.17   -5.24   -4.86   -4.06   -2.92   -1.52    0.21    2.49    5.63    9.76
+   345.0    0.00   -0.13   -0.50   -1.04   -1.71   -2.46   -3.25   -4.05   -4.73   -5.17   -5.24   -4.86   -4.07   -2.93   -1.53    0.20    2.49    5.62    9.67
+   350.0    0.00   -0.13   -0.49   -1.03   -1.70   -2.45   -3.25   -4.04   -4.73   -5.17   -5.24   -4.87   -4.08   -2.95   -1.55    0.19    2.48    5.59    9.55
+   355.0    0.00   -0.13   -0.49   -1.03   -1.69   -2.44   -3.24   -4.04   -4.73   -5.17   -5.25   -4.88   -4.10   -2.98   -1.57    0.17    2.46    5.55    9.43
+   360.0    0.00   -0.12   -0.48   -1.02   -1.69   -2.44   -3.24   -4.04   -4.72   -5.17   -5.25   -4.89   -4.12   -3.00   -1.59    0.15    2.44    5.50    9.31
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH701933A_M    NONE                                        TYPE / SERIAL NO    
+FIELD               NGS                      2    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.28     -0.67     89.35                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.73   -1.50   -2.63   -3.82   -5.02   -6.16   -7.19   -7.77   -8.11   -7.86   -7.29   -6.23   -4.55   -2.38    0.79    4.77
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.18      0.51    118.85                              NORTH / EAST / UP   
+   NOAZI    0.00   -2.43   -4.01   -4.88   -5.39   -5.78   -6.09   -6.57   -7.11   -7.61   -7.95   -7.96   -7.43   -6.23   -4.23   -0.81    4.25
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH701933A_M    SNOW                                        TYPE / SERIAL NO    
+FIELD               NGS                      2    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.38     -0.57     89.25                              NORTH / EAST / UP   
+   NOAZI    0.00    0.07   -0.50   -1.53   -2.92   -4.42   -5.96   -7.19   -8.17   -8.51   -8.36   -7.69   -6.33   -4.35   -1.68    1.79    6.17
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.18      0.51    116.95                              NORTH / EAST / UP   
+   NOAZI    0.00   -2.53   -4.01   -4.68   -5.09   -5.38   -5.69   -6.07   -6.61   -7.11   -7.55   -7.66   -7.13   -5.93   -3.73   -0.11    5.55
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH701933B_M    NONE                                        TYPE / SERIAL NO    
+FIELD               NGS                      2    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.28     -0.67     89.35                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.73   -1.50   -2.63   -3.82   -5.02   -6.16   -7.19   -7.77   -8.11   -7.86   -7.29   -6.23   -4.55   -2.38    0.79    4.77
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.18      0.51    118.85                              NORTH / EAST / UP   
+   NOAZI    0.00   -2.43   -4.01   -4.88   -5.39   -5.78   -6.09   -6.57   -7.11   -7.61   -7.95   -7.96   -7.43   -6.23   -4.23   -0.81    4.25
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH701933B_M    SNOW                                        TYPE / SERIAL NO    
+FIELD               NGS                      2    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.38     -0.57     89.25                              NORTH / EAST / UP   
+   NOAZI    0.00    0.07   -0.50   -1.53   -2.92   -4.42   -5.96   -7.19   -8.17   -8.51   -8.36   -7.69   -6.33   -4.35   -1.68    1.79    6.17
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.18      0.51    116.95                              NORTH / EAST / UP   
+   NOAZI    0.00   -2.53   -4.01   -4.68   -5.09   -5.38   -5.69   -6.07   -6.61   -7.11   -7.55   -7.66   -7.13   -5.93   -3.73   -0.11    5.55
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH701933C_M    NONE                                        TYPE / SERIAL NO    
+FIELD               NGS                      2    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.28     -0.67     89.35                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.73   -1.50   -2.63   -3.82   -5.02   -6.16   -7.19   -7.77   -8.11   -7.86   -7.29   -6.23   -4.55   -2.38    0.79    4.77
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.18      0.51    118.85                              NORTH / EAST / UP   
+   NOAZI    0.00   -2.43   -4.01   -4.88   -5.39   -5.78   -6.09   -6.57   -7.11   -7.61   -7.95   -7.96   -7.43   -6.23   -4.23   -0.81    4.25
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH701933C_M    SCIS                                        TYPE / SERIAL NO    
+FIELD               NGS                      2    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.68     -0.67     87.35                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.53   -1.50   -2.73   -4.32   -6.02   -7.46   -8.69   -9.47   -9.81   -9.56   -8.79   -7.33   -5.45   -2.98    0.29    4.27
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.88     -0.39    117.85                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.53   -1.11   -1.88   -2.59   -3.38   -4.19   -4.97   -5.61   -6.01   -6.05   -5.76   -4.93   -3.63   -2.03   -0.01    2.65
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH701933C_M    SCIT                                        TYPE / SERIAL NO    
+FIELD               NGS                      2    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.88     -0.97     88.45                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.83   -2.00   -3.33   -4.72   -6.22   -7.56   -8.69   -9.37   -9.61   -9.46   -8.79   -7.63   -5.95   -3.78   -0.81    2.97
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.28     -0.89    117.65                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.03   -0.41   -0.98   -1.69   -2.48   -3.29   -4.07   -4.81   -5.21   -5.35   -4.86   -3.93   -2.63   -0.83    1.29    3.95
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH701933C_M    SNOW                                        TYPE / SERIAL NO    
+FIELD               NGS                      2    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.38     -0.57     89.25                              NORTH / EAST / UP   
+   NOAZI    0.00    0.07   -0.50   -1.53   -2.92   -4.42   -5.96   -7.19   -8.17   -8.51   -8.36   -7.69   -6.33   -4.35   -1.68    1.79    6.17
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.18      0.51    116.95                              NORTH / EAST / UP   
+   NOAZI    0.00   -2.53   -4.01   -4.68   -5.09   -5.38   -5.69   -6.07   -6.61   -7.11   -7.55   -7.66   -7.13   -5.93   -3.73   -0.11    5.55
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH701941.1     NONE                                        TYPE / SERIAL NO    
+FIELD               NGS                      4    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.38     -0.27     89.85                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.53   -1.40   -2.43   -3.62   -4.92   -6.16   -7.19   -7.87   -8.11   -7.96   -7.39   -6.23   -4.65   -2.48    0.49    4.27
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.38     -0.39    119.05                              NORTH / EAST / UP   
+   NOAZI    0.00   -2.33   -3.81   -4.58   -5.09   -5.48   -5.89   -6.37   -6.91   -7.41   -7.75   -7.76   -7.23   -6.03   -4.03   -0.81    4.05
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH701941.2     NONE                                        TYPE / SERIAL NO    
+FIELD               NGS                      4    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.38     -0.27     89.85                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.53   -1.40   -2.43   -3.62   -4.92   -6.16   -7.19   -7.87   -8.11   -7.96   -7.39   -6.23   -4.65   -2.48    0.49    4.27
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.38     -0.39    119.05                              NORTH / EAST / UP   
+   NOAZI    0.00   -2.33   -3.81   -4.58   -5.09   -5.48   -5.89   -6.37   -6.91   -7.41   -7.75   -7.76   -7.23   -6.03   -4.03   -0.81    4.05
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH701941.A     NONE                                        TYPE / SERIAL NO    
+FIELD               NGS                      4    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.38     -0.27     89.85                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.53   -1.40   -2.43   -3.62   -4.92   -6.16   -7.19   -7.87   -8.11   -7.96   -7.39   -6.23   -4.65   -2.48    0.49    4.27
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.38     -0.39    119.05                              NORTH / EAST / UP   
+   NOAZI    0.00   -2.33   -3.81   -4.58   -5.09   -5.48   -5.89   -6.37   -6.91   -7.41   -7.75   -7.76   -7.23   -6.03   -4.03   -0.81    4.05
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH701941.B     NONE                                        TYPE / SERIAL NO    
+FIELD               NGS                      4    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.38     -0.27     89.85                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.53   -1.40   -2.43   -3.62   -4.92   -6.16   -7.19   -7.87   -8.11   -7.96   -7.39   -6.23   -4.65   -2.48    0.49    4.27
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.38     -0.39    119.05                              NORTH / EAST / UP   
+   NOAZI    0.00   -2.33   -3.81   -4.58   -5.09   -5.48   -5.89   -6.37   -6.91   -7.41   -7.75   -7.76   -7.23   -6.03   -4.03   -0.81    4.05
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH701941.B     SCIS                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               1    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+Number of Calibrated Antennas GPS:      001                 COMMENT             
+Number of Individual Calibrations GPS:  002                 COMMENT             
+   G01                                                      START OF FREQUENCY  
+     -0.60      0.24     85.11                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.48   -1.81   -3.69   -5.74   -7.64   -9.18  -10.29  -10.95  -11.09  -10.66   -9.57   -7.81   -5.46   -2.62    0.70    4.73    9.91   16.63
+     0.0    0.00   -0.48   -1.82   -3.72   -5.80   -7.74   -9.32  -10.47  -11.15  -11.34  -10.93   -9.84   -8.03   -5.57   -2.61    0.80    4.81    9.79   16.02
+     5.0    0.00   -0.48   -1.82   -3.72   -5.80   -7.74   -9.32  -10.47  -11.16  -11.35  -10.96   -9.89   -8.11   -5.68   -2.75    0.64    4.60    9.50   15.68
+    10.0    0.00   -0.48   -1.82   -3.71   -5.80   -7.74   -9.32  -10.46  -11.15  -11.34  -10.97   -9.94   -8.19   -5.79   -2.87    0.48    4.40    9.23   15.40
+    15.0    0.00   -0.48   -1.81   -3.71   -5.80   -7.74   -9.32  -10.45  -11.13  -11.33  -10.98   -9.97   -8.25   -5.87   -2.97    0.36    4.22    9.00   15.19
+    20.0    0.00   -0.48   -1.81   -3.72   -5.81   -7.74   -9.31  -10.43  -11.09  -11.30  -10.97   -9.99   -8.30   -5.94   -3.04    0.28    4.11    8.84   15.08
+    25.0    0.00   -0.47   -1.81   -3.72   -5.81   -7.74   -9.29  -10.39  -11.05  -11.26  -10.95  -10.00   -8.33   -5.97   -3.07    0.25    4.06    8.77   15.08
+    30.0    0.00   -0.47   -1.81   -3.72   -5.81   -7.74   -9.27  -10.36  -11.00  -11.21  -10.91   -9.99   -8.33   -5.97   -3.04    0.30    4.10    8.79   15.19
+    35.0    0.00   -0.47   -1.81   -3.72   -5.82   -7.73   -9.25  -10.31  -10.94  -11.15  -10.88   -9.97   -8.32   -5.93   -2.97    0.40    4.21    8.91   15.40
+    40.0    0.00   -0.47   -1.81   -3.73   -5.82   -7.73   -9.23  -10.27  -10.89  -11.10  -10.83   -9.93   -8.28   -5.87   -2.86    0.56    4.38    9.10   15.71
+    45.0    0.00   -0.47   -1.81   -3.73   -5.83   -7.73   -9.22  -10.24  -10.84  -11.04  -10.78   -9.88   -8.21   -5.77   -2.71    0.74    4.60    9.34   16.08
+    50.0    0.00   -0.47   -1.81   -3.74   -5.83   -7.73   -9.20  -10.21  -10.80  -10.99  -10.72   -9.82   -8.13   -5.65   -2.55    0.94    4.83    9.62   16.49
+    55.0    0.00   -0.47   -1.81   -3.74   -5.83   -7.73   -9.19  -10.19  -10.77  -10.95  -10.66   -9.74   -8.03   -5.52   -2.39    1.13    5.05    9.90   16.92
+    60.0    0.00   -0.47   -1.82   -3.74   -5.84   -7.73   -9.19  -10.18  -10.74  -10.91  -10.61   -9.66   -7.93   -5.40   -2.25    1.28    5.23   10.16   17.33
+    65.0    0.00   -0.47   -1.82   -3.74   -5.84   -7.73   -9.19  -10.18  -10.73  -10.88  -10.55   -9.57   -7.82   -5.29   -2.15    1.38    5.36   10.37   17.69
+    70.0    0.00   -0.47   -1.82   -3.74   -5.84   -7.73   -9.19  -10.18  -10.72  -10.85  -10.49   -9.49   -7.72   -5.20   -2.09    1.42    5.42   10.52   17.97
+    75.0    0.00   -0.47   -1.81   -3.74   -5.84   -7.73   -9.20  -10.18  -10.71  -10.82  -10.43   -9.40   -7.64   -5.14   -2.08    1.40    5.42   10.61   18.16
+    80.0    0.00   -0.47   -1.81   -3.74   -5.83   -7.72   -9.19  -10.17  -10.70  -10.78  -10.37   -9.33   -7.57   -5.12   -2.12    1.32    5.35   10.63   18.24
+    85.0    0.00   -0.47   -1.81   -3.73   -5.82   -7.71   -9.18  -10.16  -10.68  -10.75  -10.31   -9.26   -7.53   -5.14   -2.21    1.18    5.24   10.59   18.22
+    90.0    0.00   -0.46   -1.81   -3.72   -5.80   -7.68   -9.15  -10.13  -10.65  -10.71  -10.26   -9.21   -7.51   -5.18   -2.33    1.02    5.09   10.50   18.08
+    95.0    0.00   -0.46   -1.80   -3.71   -5.78   -7.65   -9.12  -10.10  -10.61  -10.66  -10.21   -9.17   -7.51   -5.25   -2.47    0.84    4.93   10.37   17.85
+   100.0    0.00   -0.46   -1.80   -3.69   -5.75   -7.62   -9.07  -10.05  -10.56  -10.61  -10.16   -9.14   -7.52   -5.33   -2.61    0.66    4.77   10.22   17.55
+   105.0    0.00   -0.46   -1.79   -3.68   -5.72   -7.57   -9.02   -9.99  -10.50  -10.56  -10.12   -9.13   -7.55   -5.41   -2.75    0.50    4.62   10.06   17.19
+   110.0    0.00   -0.46   -1.79   -3.66   -5.69   -7.52   -8.96   -9.94  -10.45  -10.51  -10.09   -9.12   -7.57   -5.48   -2.86    0.37    4.49    9.90   16.83
+   115.0    0.00   -0.46   -1.78   -3.64   -5.66   -7.48   -8.91   -9.88  -10.40  -10.47  -10.06   -9.11   -7.59   -5.54   -2.95    0.26    4.38    9.75   16.48
+   120.0    0.00   -0.46   -1.78   -3.63   -5.63   -7.44   -8.86   -9.83  -10.36  -10.45  -10.05   -9.11   -7.61   -5.57   -3.01    0.19    4.29    9.62   16.17
+   125.0    0.00   -0.46   -1.77   -3.62   -5.60   -7.40   -8.82   -9.80  -10.34  -10.44  -10.04   -9.11   -7.61   -5.58   -3.03    0.14    4.22    9.50   15.93
+   130.0    0.00   -0.46   -1.77   -3.60   -5.58   -7.37   -8.80   -9.79  -10.34  -10.45  -10.06   -9.11   -7.60   -5.56   -3.02    0.13    4.18    9.42   15.78
+   135.0    0.00   -0.46   -1.77   -3.60   -5.57   -7.36   -8.79   -9.79  -10.36  -10.48  -10.08   -9.12   -7.58   -5.53   -2.99    0.14    4.14    9.36   15.71
+   140.0    0.00   -0.46   -1.77   -3.59   -5.56   -7.36   -8.80   -9.82  -10.41  -10.54  -10.13   -9.14   -7.56   -5.48   -2.94    0.16    4.13    9.33   15.73
+   145.0    0.00   -0.46   -1.77   -3.59   -5.56   -7.37   -8.83   -9.87  -10.48  -10.61  -10.19   -9.16   -7.55   -5.44   -2.89    0.19    4.13    9.32   15.82
+   150.0    0.00   -0.46   -1.77   -3.59   -5.57   -7.39   -8.87   -9.94  -10.57  -10.70  -10.27   -9.21   -7.55   -5.40   -2.83    0.23    4.14    9.34   15.97
+   155.0    0.00   -0.47   -1.77   -3.59   -5.58   -7.41   -8.92  -10.01  -10.66  -10.81  -10.36   -9.27   -7.57   -5.37   -2.79    0.28    4.17    9.39   16.13
+   160.0    0.00   -0.47   -1.77   -3.60   -5.59   -7.45   -8.97  -10.10  -10.77  -10.92  -10.47   -9.34   -7.60   -5.37   -2.75    0.32    4.22    9.46   16.30
+   165.0    0.00   -0.47   -1.77   -3.61   -5.61   -7.48   -9.03  -10.18  -10.87  -11.04  -10.58   -9.44   -7.66   -5.39   -2.73    0.37    4.28    9.53   16.44
+   170.0    0.00   -0.47   -1.78   -3.61   -5.63   -7.51   -9.09  -10.26  -10.97  -11.15  -10.69   -9.54   -7.74   -5.43   -2.73    0.41    4.35    9.61   16.53
+   175.0    0.00   -0.47   -1.78   -3.62   -5.64   -7.55   -9.14  -10.33  -11.06  -11.25  -10.79   -9.64   -7.83   -5.49   -2.75    0.45    4.42    9.68   16.57
+   180.0    0.00   -0.47   -1.78   -3.63   -5.66   -7.57   -9.18  -10.39  -11.13  -11.33  -10.88   -9.74   -7.92   -5.56   -2.78    0.47    4.48    9.74   16.56
+   185.0    0.00   -0.48   -1.78   -3.63   -5.67   -7.59   -9.21  -10.43  -11.19  -11.39  -10.96   -9.82   -8.00   -5.63   -2.82    0.48    4.53    9.77   16.50
+   190.0    0.00   -0.48   -1.79   -3.64   -5.68   -7.61   -9.24  -10.47  -11.23  -11.44  -11.01   -9.88   -8.07   -5.70   -2.87    0.47    4.55    9.78   16.42
+   195.0    0.00   -0.48   -1.79   -3.64   -5.68   -7.61   -9.25  -10.49  -11.25  -11.46  -11.03   -9.91   -8.12   -5.75   -2.91    0.44    4.55    9.78   16.34
+   200.0    0.00   -0.48   -1.79   -3.64   -5.68   -7.62   -9.26  -10.49  -11.25  -11.46  -11.03   -9.91   -8.13   -5.79   -2.96    0.40    4.52    9.75   16.27
+   205.0    0.00   -0.48   -1.79   -3.64   -5.68   -7.61   -9.25  -10.49  -11.24  -11.44  -11.00   -9.88   -8.11   -5.79   -2.99    0.35    4.48    9.73   16.25
+   210.0    0.00   -0.48   -1.79   -3.64   -5.67   -7.60   -9.24  -10.47  -11.22  -11.40  -10.95   -9.82   -8.06   -5.77   -3.01    0.30    4.43    9.71   16.29
+   215.0    0.00   -0.49   -1.80   -3.63   -5.66   -7.59   -9.22  -10.45  -11.19  -11.36  -10.88   -9.74   -7.99   -5.73   -3.01    0.26    4.38    9.71   16.38
+   220.0    0.00   -0.49   -1.80   -3.63   -5.65   -7.57   -9.20  -10.42  -11.15  -11.30  -10.80   -9.65   -7.90   -5.67   -2.99    0.25    4.36    9.75   16.54
+   225.0    0.00   -0.49   -1.80   -3.63   -5.64   -7.55   -9.17  -10.39  -11.10  -11.24  -10.73   -9.56   -7.81   -5.59   -2.95    0.26    4.38    9.82   16.74
+   230.0    0.00   -0.49   -1.80   -3.63   -5.63   -7.53   -9.14  -10.35  -11.06  -11.18  -10.66   -9.48   -7.72   -5.51   -2.88    0.32    4.45    9.93   16.95
+   235.0    0.00   -0.49   -1.80   -3.63   -5.62   -7.51   -9.11  -10.31  -11.01  -11.13  -10.60   -9.41   -7.65   -5.42   -2.78    0.42    4.57   10.08   17.16
+   240.0    0.00   -0.50   -1.81   -3.63   -5.62   -7.50   -9.09  -10.27  -10.97  -11.10  -10.57   -9.37   -7.59   -5.34   -2.67    0.56    4.73   10.25   17.34
+   245.0    0.00   -0.50   -1.81   -3.63   -5.62   -7.49   -9.06  -10.24  -10.94  -11.07  -10.55   -9.36   -7.56   -5.27   -2.55    0.74    4.92   10.43   17.45
+   250.0    0.00   -0.50   -1.82   -3.64   -5.62   -7.48   -9.05  -10.22  -10.92  -11.06  -10.55   -9.37   -7.55   -5.21   -2.42    0.92    5.13   10.60   17.50
+   255.0    0.00   -0.50   -1.82   -3.65   -5.63   -7.48   -9.04  -10.20  -10.91  -11.06  -10.58   -9.40   -7.56   -5.17   -2.30    1.11    5.33   10.73   17.46
+   260.0    0.00   -0.50   -1.83   -3.66   -5.64   -7.49   -9.04  -10.20  -10.91  -11.08  -10.62   -9.44   -7.59   -5.14   -2.19    1.28    5.51   10.81   17.34
+   265.0    0.00   -0.50   -1.83   -3.67   -5.66   -7.51   -9.06  -10.21  -10.92  -11.11  -10.66   -9.50   -7.62   -5.12   -2.11    1.41    5.63   10.82   17.17
+   270.0    0.00   -0.51   -1.84   -3.69   -5.68   -7.54   -9.08  -10.23  -10.95  -11.14  -10.71   -9.55   -7.65   -5.11   -2.05    1.50    5.69   10.78   16.95
+   275.0    0.00   -0.51   -1.85   -3.70   -5.71   -7.57   -9.12  -10.27  -10.98  -11.18  -10.75   -9.59   -7.67   -5.10   -2.01    1.54    5.68   10.68   16.74
+   280.0    0.00   -0.51   -1.85   -3.72   -5.74   -7.61   -9.16  -10.31  -11.02  -11.22  -10.78   -9.61   -7.69   -5.10   -2.01    1.52    5.61   10.54   16.54
+   285.0    0.00   -0.51   -1.86   -3.74   -5.77   -7.65   -9.20  -10.35  -11.06  -11.25  -10.80   -9.62   -7.68   -5.10   -2.02    1.47    5.49   10.38   16.40
+   290.0    0.00   -0.51   -1.86   -3.75   -5.79   -7.69   -9.24  -10.39  -11.09  -11.27  -10.81   -9.61   -7.67   -5.09   -2.05    1.38    5.34   10.22   16.33
+   295.0    0.00   -0.51   -1.87   -3.76   -5.82   -7.72   -9.28  -10.43  -11.12  -11.28  -10.81   -9.59   -7.64   -5.08   -2.09    1.27    5.19   10.08   16.34
+   300.0    0.00   -0.51   -1.87   -3.77   -5.84   -7.75   -9.32  -10.46  -11.14  -11.29  -10.79   -9.56   -7.61   -5.08   -2.13    1.18    5.06   10.00   16.43
+   305.0    0.00   -0.51   -1.87   -3.78   -5.85   -7.77   -9.34  -10.48  -11.15  -11.28  -10.77   -9.53   -7.58   -5.06   -2.16    1.10    4.97    9.97   16.58
+   310.0    0.00   -0.51   -1.87   -3.78   -5.86   -7.78   -9.35  -10.49  -11.15  -11.27  -10.75   -9.50   -7.55   -5.06   -2.18    1.05    4.92   10.00   16.77
+   315.0    0.00   -0.51   -1.87   -3.78   -5.86   -7.79   -9.36  -10.49  -11.15  -11.26  -10.73   -9.48   -7.54   -5.05   -2.19    1.04    4.93   10.08   16.98
+   320.0    0.00   -0.50   -1.87   -3.78   -5.86   -7.78   -9.35  -10.49  -11.14  -11.25  -10.72   -9.47   -7.53   -5.05   -2.19    1.05    4.99   10.19   17.17
+   325.0    0.00   -0.50   -1.86   -3.77   -5.85   -7.78   -9.35  -10.48  -11.13  -11.24  -10.72   -9.48   -7.55   -5.07   -2.19    1.09    5.07   10.32   17.30
+   330.0    0.00   -0.50   -1.86   -3.76   -5.84   -7.77   -9.34  -10.47  -11.12  -11.24  -10.73   -9.50   -7.58   -5.09   -2.19    1.13    5.15   10.43   17.36
+   335.0    0.00   -0.50   -1.85   -3.76   -5.83   -7.76   -9.32  -10.46  -11.12  -11.25  -10.75   -9.54   -7.63   -5.13   -2.20    1.16    5.22   10.49   17.33
+   340.0    0.00   -0.50   -1.84   -3.75   -5.82   -7.75   -9.32  -10.45  -11.12  -11.26  -10.78   -9.59   -7.69   -5.19   -2.23    1.16    5.26   10.50   17.21
+   345.0    0.00   -0.49   -1.84   -3.74   -5.82   -7.74   -9.31  -10.45  -11.13  -11.28  -10.82   -9.65   -7.77   -5.27   -2.29    1.13    5.23   10.42   16.99
+   350.0    0.00   -0.49   -1.83   -3.73   -5.81   -7.74   -9.31  -10.46  -11.14  -11.30  -10.86   -9.72   -7.85   -5.36   -2.38    1.06    5.14   10.27   16.70
+   355.0    0.00   -0.49   -1.83   -3.72   -5.80   -7.73   -9.31  -10.46  -11.15  -11.32  -10.90   -9.78   -7.94   -5.46   -2.49    0.94    5.00   10.05   16.37
+   360.0    0.00   -0.48   -1.82   -3.72   -5.80   -7.74   -9.32  -10.47  -11.15  -11.34  -10.93   -9.84   -8.03   -5.57   -2.61    0.80    4.81    9.79   16.02
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.74      0.87    119.72                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.16   -0.61   -1.28   -2.08   -2.93   -3.79   -4.60   -5.31   -5.79   -5.94   -5.65   -4.85   -3.57   -1.86    0.24    2.80    5.94    9.75
+     0.0    0.00   -0.15   -0.56   -1.18   -1.96   -2.82   -3.72   -4.60   -5.35   -5.88   -6.07   -5.84   -5.16   -3.98   -2.27    0.07    3.03    6.34    9.13
+     5.0    0.00   -0.15   -0.56   -1.18   -1.96   -2.83   -3.74   -4.61   -5.35   -5.87   -6.05   -5.84   -5.19   -4.04   -2.34    0.00    2.99    6.30    9.01
+    10.0    0.00   -0.14   -0.55   -1.18   -1.97   -2.85   -3.76   -4.62   -5.34   -5.84   -6.02   -5.82   -5.19   -4.07   -2.38   -0.03    2.96    6.27    9.00
+    15.0    0.00   -0.14   -0.55   -1.19   -1.98   -2.86   -3.77   -4.61   -5.32   -5.80   -5.97   -5.78   -5.17   -4.06   -2.38   -0.05    2.93    6.25    9.09
+    20.0    0.00   -0.14   -0.55   -1.19   -1.99   -2.88   -3.77   -4.60   -5.28   -5.75   -5.93   -5.74   -5.13   -4.02   -2.35   -0.03    2.91    6.23    9.27
+    25.0    0.00   -0.14   -0.56   -1.21   -2.01   -2.89   -3.77   -4.58   -5.25   -5.71   -5.88   -5.70   -5.08   -3.96   -2.28    0.00    2.88    6.20    9.51
+    30.0    0.00   -0.14   -0.56   -1.22   -2.03   -2.90   -3.77   -4.56   -5.21   -5.67   -5.85   -5.66   -5.02   -3.87   -2.19    0.05    2.85    6.14    9.76
+    35.0    0.00   -0.14   -0.57   -1.23   -2.04   -2.91   -3.76   -4.53   -5.18   -5.65   -5.84   -5.64   -4.97   -3.78   -2.08    0.11    2.80    6.06   10.02
+    40.0    0.00   -0.14   -0.58   -1.25   -2.06   -2.92   -3.75   -4.51   -5.16   -5.64   -5.84   -5.64   -4.93   -3.69   -1.97    0.17    2.74    5.95   10.24
+    45.0    0.00   -0.14   -0.58   -1.26   -2.08   -2.93   -3.74   -4.49   -5.14   -5.63   -5.85   -5.65   -4.91   -3.62   -1.87    0.22    2.67    5.82   10.42
+    50.0    0.00   -0.14   -0.59   -1.28   -2.09   -2.93   -3.73   -4.47   -5.13   -5.64   -5.88   -5.67   -4.90   -3.56   -1.78    0.26    2.59    5.67   10.55
+    55.0    0.00   -0.14   -0.60   -1.29   -2.11   -2.94   -3.73   -4.46   -5.12   -5.65   -5.91   -5.70   -4.89   -3.51   -1.72    0.27    2.49    5.52   10.63
+    60.0    0.00   -0.14   -0.61   -1.31   -2.12   -2.95   -3.72   -4.45   -5.12   -5.66   -5.93   -5.72   -4.90   -3.49   -1.69    0.26    2.40    5.37   10.66
+    65.0    0.00   -0.14   -0.61   -1.32   -2.14   -2.96   -3.72   -4.44   -5.11   -5.66   -5.94   -5.73   -4.90   -3.48   -1.69    0.23    2.30    5.25   10.66
+    70.0    0.00   -0.15   -0.62   -1.33   -2.15   -2.96   -3.73   -4.44   -5.11   -5.66   -5.94   -5.73   -4.90   -3.48   -1.71    0.17    2.21    5.15   10.64
+    75.0    0.00   -0.15   -0.62   -1.33   -2.15   -2.97   -3.73   -4.45   -5.11   -5.65   -5.92   -5.71   -4.89   -3.50   -1.75    0.10    2.13    5.08   10.59
+    80.0    0.00   -0.15   -0.62   -1.34   -2.16   -2.98   -3.74   -4.46   -5.11   -5.64   -5.90   -5.68   -4.87   -3.51   -1.81    0.02    2.07    5.05   10.54
+    85.0    0.00   -0.15   -0.62   -1.34   -2.16   -2.98   -3.76   -4.47   -5.12   -5.63   -5.86   -5.64   -4.85   -3.53   -1.87   -0.05    2.03    5.06   10.48
+    90.0    0.00   -0.15   -0.62   -1.33   -2.15   -2.98   -3.77   -4.49   -5.13   -5.63   -5.84   -5.60   -4.82   -3.54   -1.92   -0.11    2.02    5.11   10.42
+    95.0    0.00   -0.15   -0.62   -1.32   -2.15   -2.98   -3.78   -4.51   -5.16   -5.64   -5.81   -5.56   -4.78   -3.54   -1.97   -0.15    2.05    5.20   10.36
+   100.0    0.00   -0.15   -0.61   -1.31   -2.13   -2.97   -3.79   -4.54   -5.19   -5.65   -5.81   -5.53   -4.76   -3.54   -1.99   -0.16    2.11    5.32   10.29
+   105.0    0.00   -0.14   -0.61   -1.30   -2.11   -2.96   -3.79   -4.56   -5.23   -5.69   -5.82   -5.51   -4.73   -3.53   -1.99   -0.13    2.22    5.48   10.23
+   110.0    0.00   -0.14   -0.60   -1.29   -2.09   -2.94   -3.79   -4.59   -5.27   -5.73   -5.85   -5.52   -4.72   -3.51   -1.96   -0.06    2.36    5.66   10.18
+   115.0    0.00   -0.14   -0.59   -1.27   -2.07   -2.92   -3.78   -4.61   -5.31   -5.78   -5.89   -5.54   -4.72   -3.49   -1.91    0.04    2.54    5.86   10.14
+   120.0    0.00   -0.14   -0.59   -1.25   -2.04   -2.90   -3.77   -4.62   -5.35   -5.83   -5.94   -5.57   -4.73   -3.46   -1.85    0.16    2.73    6.06   10.11
+   125.0    0.00   -0.14   -0.58   -1.23   -2.01   -2.87   -3.75   -4.62   -5.37   -5.88   -5.99   -5.61   -4.73   -3.44   -1.77    0.30    2.94    6.27   10.10
+   130.0    0.00   -0.14   -0.57   -1.22   -1.99   -2.84   -3.73   -4.61   -5.39   -5.91   -6.03   -5.64   -4.74   -3.40   -1.69    0.44    3.13    6.45   10.09
+   135.0    0.00   -0.14   -0.56   -1.20   -1.97   -2.81   -3.71   -4.60   -5.39   -5.93   -6.05   -5.66   -4.74   -3.37   -1.61    0.57    3.29    6.60   10.09
+   140.0    0.00   -0.14   -0.56   -1.19   -1.95   -2.79   -3.68   -4.58   -5.38   -5.93   -6.06   -5.66   -4.74   -3.34   -1.55    0.66    3.41    6.71   10.07
+   145.0    0.00   -0.13   -0.55   -1.18   -1.94   -2.78   -3.67   -4.56   -5.36   -5.91   -6.04   -5.65   -4.72   -3.32   -1.51    0.72    3.48    6.75   10.02
+   150.0    0.00   -0.13   -0.55   -1.18   -1.93   -2.77   -3.66   -4.54   -5.33   -5.87   -6.00   -5.61   -4.69   -3.30   -1.50    0.73    3.48    6.71    9.93
+   155.0    0.00   -0.13   -0.55   -1.17   -1.94   -2.78   -3.66   -4.53   -5.30   -5.83   -5.95   -5.57   -4.67   -3.30   -1.52    0.69    3.41    6.60    9.77
+   160.0    0.00   -0.13   -0.55   -1.18   -1.94   -2.79   -3.67   -4.53   -5.28   -5.78   -5.89   -5.52   -4.64   -3.30   -1.56    0.61    3.29    6.42    9.55
+   165.0    0.00   -0.13   -0.55   -1.18   -1.96   -2.81   -3.69   -4.54   -5.27   -5.74   -5.84   -5.47   -4.62   -3.32   -1.62    0.50    3.11    6.18    9.26
+   170.0    0.00   -0.14   -0.55   -1.18   -1.97   -2.84   -3.72   -4.56   -5.26   -5.72   -5.80   -5.44   -4.61   -3.36   -1.70    0.36    2.91    5.91    8.93
+   175.0    0.00   -0.14   -0.55   -1.19   -1.98   -2.86   -3.75   -4.59   -5.27   -5.71   -5.78   -5.43   -4.62   -3.40   -1.79    0.22    2.71    5.62    8.58
+   180.0    0.00   -0.14   -0.55   -1.19   -2.00   -2.88   -3.78   -4.62   -5.29   -5.72   -5.79   -5.44   -4.65   -3.46   -1.88    0.09    2.51    5.34    8.24
+   185.0    0.00   -0.14   -0.55   -1.20   -2.01   -2.90   -3.81   -4.64   -5.32   -5.74   -5.81   -5.47   -4.70   -3.52   -1.96   -0.01    2.36    5.12    7.96
+   190.0    0.00   -0.14   -0.56   -1.20   -2.01   -2.91   -3.82   -4.67   -5.35   -5.78   -5.85   -5.51   -4.75   -3.58   -2.02   -0.08    2.26    4.97    7.78
+   195.0    0.00   -0.14   -0.56   -1.20   -2.00   -2.90   -3.82   -4.68   -5.38   -5.82   -5.90   -5.57   -4.81   -3.62   -2.05   -0.11    2.22    4.90    7.73
+   200.0    0.00   -0.15   -0.56   -1.20   -1.99   -2.89   -3.81   -4.68   -5.39   -5.86   -5.96   -5.63   -4.86   -3.65   -2.06   -0.09    2.24    4.94    7.82
+   205.0    0.00   -0.15   -0.56   -1.19   -1.98   -2.86   -3.78   -4.66   -5.40   -5.89   -6.01   -5.69   -4.89   -3.66   -2.03   -0.04    2.32    5.06    8.07
+   210.0    0.00   -0.15   -0.57   -1.19   -1.96   -2.83   -3.74   -4.63   -5.39   -5.91   -6.05   -5.72   -4.91   -3.65   -1.98    0.04    2.44    5.26    8.45
+   215.0    0.00   -0.16   -0.57   -1.19   -1.94   -2.79   -3.70   -4.59   -5.37   -5.91   -6.07   -5.74   -4.91   -3.61   -1.92    0.14    2.58    5.50    8.93
+   220.0    0.00   -0.16   -0.58   -1.19   -1.93   -2.76   -3.65   -4.55   -5.35   -5.90   -6.07   -5.74   -4.88   -3.56   -1.84    0.23    2.72    5.75    9.45
+   225.0    0.00   -0.16   -0.59   -1.19   -1.92   -2.73   -3.62   -4.51   -5.32   -5.89   -6.05   -5.71   -4.84   -3.49   -1.77    0.32    2.84    5.98    9.95
+   230.0    0.00   -0.17   -0.59   -1.20   -1.92   -2.72   -3.59   -4.48   -5.29   -5.86   -6.03   -5.67   -4.78   -3.43   -1.70    0.38    2.92    6.16   10.38
+   235.0    0.00   -0.17   -0.61   -1.21   -1.92   -2.72   -3.58   -4.47   -5.28   -5.85   -6.00   -5.63   -4.73   -3.37   -1.65    0.40    2.95    6.26   10.68
+   240.0    0.00   -0.18   -0.62   -1.23   -1.94   -2.74   -3.59   -4.47   -5.28   -5.83   -5.98   -5.59   -4.68   -3.32   -1.63    0.39    2.92    6.27   10.82
+   245.0    0.00   -0.18   -0.63   -1.25   -1.98   -2.77   -3.63   -4.50   -5.29   -5.83   -5.96   -5.57   -4.65   -3.30   -1.63    0.36    2.85    6.20   10.78
+   250.0    0.00   -0.19   -0.65   -1.28   -2.02   -2.82   -3.68   -4.54   -5.32   -5.85   -5.96   -5.56   -4.64   -3.31   -1.66    0.29    2.75    6.04   10.58
+   255.0    0.00   -0.19   -0.66   -1.32   -2.07   -2.89   -3.74   -4.60   -5.36   -5.87   -5.97   -5.56   -4.65   -3.33   -1.71    0.22    2.62    5.84   10.24
+   260.0    0.00   -0.20   -0.68   -1.35   -2.13   -2.96   -3.81   -4.66   -5.40   -5.90   -5.99   -5.59   -4.69   -3.38   -1.77    0.14    2.50    5.61    9.81
+   265.0    0.00   -0.20   -0.69   -1.38   -2.18   -3.03   -3.89   -4.72   -5.44   -5.92   -6.02   -5.63   -4.74   -3.45   -1.83    0.08    2.40    5.40    9.37
+   270.0    0.00   -0.20   -0.71   -1.42   -2.23   -3.09   -3.95   -4.77   -5.47   -5.94   -6.04   -5.67   -4.80   -3.51   -1.88    0.04    2.34    5.23    8.97
+   275.0    0.00   -0.21   -0.72   -1.45   -2.28   -3.15   -4.01   -4.81   -5.49   -5.95   -6.05   -5.70   -4.86   -3.57   -1.92    0.03    2.33    5.14    8.68
+   280.0    0.00   -0.21   -0.73   -1.47   -2.32   -3.19   -4.04   -4.82   -5.48   -5.93   -6.05   -5.73   -4.91   -3.62   -1.94    0.06    2.38    5.14    8.53
+   285.0    0.00   -0.21   -0.74   -1.48   -2.34   -3.21   -4.05   -4.81   -5.45   -5.90   -6.03   -5.73   -4.93   -3.64   -1.93    0.11    2.47    5.23    8.56
+   290.0    0.00   -0.21   -0.74   -1.49   -2.35   -3.22   -4.04   -4.78   -5.41   -5.85   -5.99   -5.72   -4.93   -3.63   -1.89    0.20    2.61    5.40    8.74
+   295.0    0.00   -0.21   -0.74   -1.49   -2.34   -3.20   -4.01   -4.73   -5.34   -5.79   -5.95   -5.68   -4.91   -3.60   -1.83    0.30    2.77    5.63    9.07
+   300.0    0.00   -0.21   -0.73   -1.48   -2.33   -3.17   -3.96   -4.67   -5.27   -5.72   -5.89   -5.64   -4.87   -3.55   -1.76    0.41    2.93    5.90    9.48
+   305.0    0.00   -0.20   -0.72   -1.46   -2.30   -3.13   -3.90   -4.60   -5.20   -5.66   -5.83   -5.59   -4.82   -3.49   -1.69    0.51    3.10    6.18    9.93
+   310.0    0.00   -0.20   -0.71   -1.44   -2.26   -3.08   -3.84   -4.53   -5.15   -5.61   -5.79   -5.54   -4.76   -3.43   -1.62    0.60    3.23    6.43   10.36
+   315.0    0.00   -0.20   -0.70   -1.41   -2.22   -3.02   -3.78   -4.48   -5.10   -5.57   -5.76   -5.51   -4.72   -3.38   -1.57    0.66    3.34    6.63   10.70
+   320.0    0.00   -0.19   -0.68   -1.38   -2.17   -2.97   -3.73   -4.44   -5.08   -5.57   -5.76   -5.50   -4.70   -3.36   -1.54    0.69    3.40    6.77   10.92
+   325.0    0.00   -0.19   -0.66   -1.34   -2.12   -2.92   -3.69   -4.42   -5.09   -5.58   -5.77   -5.51   -4.70   -3.36   -1.56    0.68    3.42    6.84   10.99
+   330.0    0.00   -0.18   -0.65   -1.31   -2.08   -2.87   -3.66   -4.42   -5.11   -5.62   -5.81   -5.54   -4.73   -3.40   -1.60    0.64    3.41    6.85   10.91
+   335.0    0.00   -0.17   -0.63   -1.28   -2.04   -2.84   -3.65   -4.44   -5.15   -5.67   -5.87   -5.59   -4.79   -3.47   -1.68    0.57    3.36    6.80   10.69
+   340.0    0.00   -0.17   -0.61   -1.25   -2.01   -2.82   -3.65   -4.47   -5.20   -5.73   -5.93   -5.66   -4.86   -3.56   -1.79    0.47    3.30    6.71   10.38
+   345.0    0.00   -0.16   -0.60   -1.23   -1.98   -2.81   -3.66   -4.50   -5.25   -5.79   -5.99   -5.72   -4.95   -3.67   -1.91    0.37    3.22    6.61   10.02
+   350.0    0.00   -0.16   -0.58   -1.21   -1.97   -2.81   -3.68   -4.54   -5.30   -5.84   -6.03   -5.78   -5.03   -3.79   -2.04    0.26    3.15    6.50    9.67
+   355.0    0.00   -0.15   -0.57   -1.19   -1.96   -2.81   -3.70   -4.57   -5.33   -5.87   -6.06   -5.82   -5.10   -3.89   -2.16    0.16    3.09    6.41    9.36
+   360.0    0.00   -0.15   -0.56   -1.18   -1.96   -2.82   -3.72   -4.60   -5.35   -5.88   -6.07   -5.84   -5.16   -3.98   -2.27    0.07    3.03    6.34    9.13
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH701945B_M    NONE                                        TYPE / SERIAL NO    
+COPIED              Geo++ GmbH               2    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+COPIED FROM AOAD/M_T        NONE                            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.58     -0.37     91.85                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.23   -0.90   -1.93   -3.22   -4.62   -5.96   -7.09   -7.87   -8.21   -8.06   -7.39   -6.23   -4.55   -2.28    0.69    4.47    9.08   14.23
+     0.0    0.00   -0.27   -0.98   -2.07   -3.42   -4.87   -6.26   -7.43   -8.21   -8.53   -8.32   -7.62   -6.44   -4.77   -2.54    0.39    4.14    8.68   13.67
+     5.0    0.00   -0.27   -0.98   -2.06   -3.41   -4.86   -6.25   -7.41   -8.20   -8.52   -8.31   -7.60   -6.41   -4.74   -2.50    0.42    4.18    8.73   13.73
+    10.0    0.00   -0.26   -0.97   -2.05   -3.39   -4.84   -6.23   -7.40   -8.19   -8.50   -8.30   -7.58   -6.38   -4.70   -2.46    0.47    4.23    8.79   13.83
+    15.0    0.00   -0.26   -0.97   -2.05   -3.38   -4.82   -6.21   -7.37   -8.17   -8.49   -8.28   -7.56   -6.36   -4.66   -2.41    0.53    4.30    8.88   13.96
+    20.0    0.00   -0.26   -0.96   -2.03   -3.36   -4.80   -6.18   -7.35   -8.15   -8.47   -8.27   -7.54   -6.33   -4.62   -2.36    0.60    4.38    9.00   14.12
+    25.0    0.00   -0.26   -0.96   -2.02   -3.34   -4.77   -6.16   -7.32   -8.12   -8.44   -8.25   -7.53   -6.30   -4.58   -2.30    0.68    4.49    9.13   14.31
+    30.0    0.00   -0.26   -0.95   -2.01   -3.32   -4.75   -6.12   -7.28   -8.08   -8.42   -8.22   -7.51   -6.28   -4.54   -2.24    0.77    4.61    9.29   14.51
+    35.0    0.00   -0.25   -0.94   -2.00   -3.30   -4.72   -6.09   -7.25   -8.05   -8.38   -8.20   -7.48   -6.25   -4.50   -2.17    0.87    4.75    9.46   14.71
+    40.0    0.00   -0.25   -0.93   -1.98   -3.28   -4.69   -6.05   -7.21   -8.01   -8.35   -8.17   -7.46   -6.23   -4.46   -2.10    0.97    4.88    9.62   14.90
+    45.0    0.00   -0.25   -0.93   -1.97   -3.26   -4.66   -6.02   -7.16   -7.96   -8.30   -8.13   -7.43   -6.19   -4.42   -2.03    1.08    5.02    9.78   15.07
+    50.0    0.00   -0.24   -0.92   -1.95   -3.24   -4.63   -5.98   -7.12   -7.91   -8.26   -8.09   -7.39   -6.16   -4.37   -1.97    1.17    5.14    9.92   15.22
+    55.0    0.00   -0.24   -0.91   -1.94   -3.21   -4.60   -5.94   -7.07   -7.86   -8.20   -8.04   -7.35   -6.12   -4.33   -1.91    1.24    5.24   10.04   15.34
+    60.0    0.00   -0.24   -0.90   -1.92   -3.19   -4.57   -5.90   -7.02   -7.81   -8.15   -7.99   -7.30   -6.08   -4.29   -1.87    1.30    5.31   10.11   15.41
+    65.0    0.00   -0.23   -0.89   -1.91   -3.17   -4.54   -5.86   -6.97   -7.75   -8.09   -7.93   -7.25   -6.03   -4.25   -1.83    1.33    5.34   10.15   15.45
+    70.0    0.00   -0.23   -0.89   -1.90   -3.15   -4.51   -5.82   -6.93   -7.70   -8.03   -7.88   -7.20   -5.99   -4.22   -1.82    1.33    5.33   10.14   15.45
+    75.0    0.00   -0.23   -0.88   -1.88   -3.13   -4.49   -5.79   -6.89   -7.65   -7.98   -7.82   -7.15   -5.96   -4.21   -1.82    1.31    5.28   10.08   15.40
+    80.0    0.00   -0.23   -0.87   -1.87   -3.12   -4.46   -5.76   -6.85   -7.61   -7.94   -7.78   -7.11   -5.93   -4.20   -1.85    1.25    5.20    9.99   15.32
+    85.0    0.00   -0.22   -0.87   -1.86   -3.10   -4.44   -5.74   -6.83   -7.58   -7.91   -7.75   -7.09   -5.92   -4.21   -1.89    1.17    5.09    9.86   15.20
+    90.0    0.00   -0.22   -0.86   -1.86   -3.09   -4.43   -5.72   -6.81   -7.56   -7.89   -7.73   -7.08   -5.92   -4.24   -1.95    1.08    4.96    9.71   15.05
+    95.0    0.00   -0.22   -0.86   -1.85   -3.09   -4.42   -5.71   -6.80   -7.56   -7.89   -7.73   -7.09   -5.94   -4.28   -2.02    0.97    4.82    9.54   14.88
+   100.0    0.00   -0.22   -0.86   -1.85   -3.08   -4.42   -5.71   -6.80   -7.56   -7.90   -7.75   -7.11   -5.98   -4.34   -2.11    0.86    4.68    9.37   14.70
+   105.0    0.00   -0.22   -0.86   -1.85   -3.08   -4.42   -5.72   -6.81   -7.58   -7.92   -7.78   -7.16   -6.04   -4.41   -2.19    0.75    4.54    9.21   14.52
+   110.0    0.00   -0.21   -0.85   -1.85   -3.09   -4.43   -5.73   -6.83   -7.61   -7.96   -7.83   -7.21   -6.10   -4.49   -2.28    0.64    4.42    9.07   14.35
+   115.0    0.00   -0.21   -0.85   -1.85   -3.09   -4.44   -5.75   -6.86   -7.65   -8.01   -7.89   -7.28   -6.18   -4.57   -2.36    0.56    4.32    8.95   14.20
+   120.0    0.00   -0.21   -0.86   -1.86   -3.10   -4.46   -5.77   -6.90   -7.69   -8.06   -7.95   -7.35   -6.25   -4.64   -2.44    0.48    4.25    8.86   14.08
+   125.0    0.00   -0.21   -0.86   -1.86   -3.12   -4.48   -5.80   -6.93   -7.73   -8.11   -8.01   -7.42   -6.33   -4.72   -2.50    0.43    4.20    8.81   13.99
+   130.0    0.00   -0.21   -0.86   -1.87   -3.13   -4.50   -5.83   -6.97   -7.78   -8.16   -8.07   -7.48   -6.39   -4.78   -2.55    0.40    4.18    8.78   13.94
+   135.0    0.00   -0.21   -0.86   -1.88   -3.15   -4.53   -5.86   -7.01   -7.82   -8.21   -8.12   -7.54   -6.45   -4.83   -2.59    0.38    4.17    8.78   13.92
+   140.0    0.00   -0.21   -0.86   -1.89   -3.16   -4.55   -5.89   -7.04   -7.85   -8.24   -8.16   -7.58   -6.49   -4.87   -2.62    0.37    4.18    8.79   13.93
+   145.0    0.00   -0.21   -0.87   -1.89   -3.18   -4.57   -5.92   -7.07   -7.88   -8.28   -8.19   -7.61   -6.52   -4.89   -2.63    0.37    4.19    8.81   13.95
+   150.0    0.00   -0.21   -0.87   -1.90   -3.19   -4.59   -5.95   -7.10   -7.91   -8.30   -8.21   -7.63   -6.54   -4.90   -2.63    0.37    4.21    8.83   13.98
+   155.0    0.00   -0.21   -0.87   -1.91   -3.20   -4.61   -5.97   -7.12   -7.93   -8.32   -8.23   -7.65   -6.55   -4.91   -2.64    0.38    4.21    8.84   14.00
+   160.0    0.00   -0.21   -0.87   -1.91   -3.21   -4.63   -5.98   -7.13   -7.94   -8.33   -8.24   -7.65   -6.56   -4.91   -2.64    0.38    4.21    8.83   14.00
+   165.0    0.00   -0.21   -0.88   -1.92   -3.22   -4.64   -6.00   -7.14   -7.95   -8.34   -8.24   -7.65   -6.55   -4.91   -2.64    0.37    4.19    8.81   13.98
+   170.0    0.00   -0.21   -0.88   -1.92   -3.23   -4.64   -6.00   -7.15   -7.96   -8.34   -8.25   -7.65   -6.55   -4.91   -2.64    0.35    4.16    8.76   13.93
+   175.0    0.00   -0.21   -0.88   -1.92   -3.23   -4.65   -6.01   -7.16   -7.97   -8.35   -8.25   -7.65   -6.55   -4.90   -2.64    0.33    4.11    8.70   13.87
+   180.0    0.00   -0.21   -0.88   -1.92   -3.23   -4.65   -6.01   -7.16   -7.97   -8.35   -8.25   -7.66   -6.55   -4.90   -2.65    0.31    4.07    8.63   13.79
+   185.0    0.00   -0.21   -0.88   -1.92   -3.23   -4.64   -6.00   -7.16   -7.97   -8.36   -8.26   -7.66   -6.55   -4.90   -2.66    0.28    4.02    8.57   13.72
+   190.0    0.00   -0.21   -0.87   -1.92   -3.22   -4.64   -6.00   -7.15   -7.97   -8.36   -8.26   -7.66   -6.54   -4.90   -2.67    0.26    3.99    8.52   13.66
+   195.0    0.00   -0.21   -0.87   -1.91   -3.21   -4.63   -5.99   -7.15   -7.97   -8.35   -8.25   -7.65   -6.53   -4.89   -2.66    0.26    3.97    8.50   13.64
+   200.0    0.00   -0.21   -0.87   -1.91   -3.20   -4.61   -5.98   -7.14   -7.96   -8.34   -8.24   -7.63   -6.52   -4.88   -2.65    0.27    3.98    8.52   13.67
+   205.0    0.00   -0.21   -0.87   -1.90   -3.19   -4.60   -5.96   -7.12   -7.94   -8.33   -8.22   -7.61   -6.49   -4.85   -2.62    0.30    4.03    8.58   13.75
+   210.0    0.00   -0.21   -0.87   -1.89   -3.18   -4.59   -5.94   -7.10   -7.92   -8.30   -8.19   -7.57   -6.45   -4.80   -2.57    0.35    4.11    8.70   13.88
+   215.0    0.00   -0.21   -0.86   -1.89   -3.17   -4.57   -5.92   -7.08   -7.89   -8.26   -8.14   -7.52   -6.39   -4.74   -2.51    0.44    4.22    8.85   14.06
+   220.0    0.00   -0.21   -0.86   -1.88   -3.16   -4.55   -5.90   -7.05   -7.85   -8.22   -8.09   -7.46   -6.32   -4.67   -2.42    0.54    4.36    9.04   14.28
+   225.0    0.00   -0.21   -0.86   -1.88   -3.15   -4.53   -5.88   -7.01   -7.81   -8.17   -8.03   -7.38   -6.24   -4.58   -2.32    0.67    4.53    9.25   14.52
+   230.0    0.00   -0.21   -0.86   -1.87   -3.14   -4.52   -5.85   -6.98   -7.77   -8.11   -7.96   -7.30   -6.15   -4.48   -2.20    0.81    4.71    9.46   14.74
+   235.0    0.00   -0.21   -0.86   -1.87   -3.13   -4.50   -5.83   -6.95   -7.72   -8.05   -7.89   -7.22   -6.06   -4.37   -2.08    0.96    4.88    9.66   14.94
+   240.0    0.00   -0.22   -0.86   -1.86   -3.12   -4.49   -5.80   -6.91   -7.68   -7.99   -7.82   -7.14   -5.97   -4.27   -1.96    1.10    5.04    9.83   15.09
+   245.0    0.00   -0.22   -0.86   -1.86   -3.12   -4.48   -5.78   -6.88   -7.64   -7.94   -7.76   -7.07   -5.88   -4.17   -1.84    1.23    5.18    9.95   15.17
+   250.0    0.00   -0.22   -0.86   -1.87   -3.11   -4.47   -5.77   -6.86   -7.60   -7.90   -7.71   -7.01   -5.81   -4.08   -1.74    1.34    5.27   10.01   15.19
+   255.0    0.00   -0.22   -0.87   -1.87   -3.12   -4.47   -5.76   -6.84   -7.58   -7.87   -7.67   -6.97   -5.76   -4.01   -1.66    1.41    5.32   10.00   15.12
+   260.0    0.00   -0.22   -0.87   -1.87   -3.12   -4.47   -5.76   -6.84   -7.57   -7.86   -7.65   -6.94   -5.72   -3.97   -1.61    1.45    5.32    9.94   15.00
+   265.0    0.00   -0.23   -0.88   -1.88   -3.13   -4.48   -5.77   -6.84   -7.57   -7.86   -7.65   -6.93   -5.70   -3.94   -1.59    1.45    5.26    9.81   14.82
+   270.0    0.00   -0.23   -0.88   -1.89   -3.14   -4.49   -5.78   -6.85   -7.58   -7.87   -7.66   -6.94   -5.71   -3.94   -1.60    1.41    5.16    9.65   14.61
+   275.0    0.00   -0.23   -0.89   -1.90   -3.16   -4.51   -5.80   -6.88   -7.61   -7.90   -7.69   -6.97   -5.73   -3.97   -1.64    1.33    5.03    9.45   14.39
+   280.0    0.00   -0.23   -0.90   -1.92   -3.18   -4.54   -5.83   -6.91   -7.64   -7.93   -7.73   -7.01   -5.77   -4.02   -1.71    1.23    4.87    9.24   14.18
+   285.0    0.00   -0.24   -0.91   -1.93   -3.20   -4.56   -5.87   -6.95   -7.69   -7.98   -7.78   -7.06   -5.83   -4.09   -1.80    1.10    4.70    9.04   13.99
+   290.0    0.00   -0.24   -0.91   -1.95   -3.23   -4.60   -5.91   -7.00   -7.74   -8.04   -7.83   -7.12   -5.90   -4.17   -1.91    0.96    4.53    8.85   13.85
+   295.0    0.00   -0.24   -0.92   -1.96   -3.25   -4.63   -5.95   -7.05   -7.79   -8.09   -7.90   -7.19   -5.97   -4.26   -2.02    0.82    4.37    8.70   13.74
+   300.0    0.00   -0.25   -0.93   -1.98   -3.28   -4.67   -6.00   -7.10   -7.85   -8.15   -7.96   -7.26   -6.06   -4.36   -2.14    0.69    4.23    8.58   13.68
+   305.0    0.00   -0.25   -0.94   -2.00   -3.30   -4.71   -6.04   -7.16   -7.91   -8.21   -8.02   -7.32   -6.14   -4.46   -2.26    0.57    4.12    8.51   13.66
+   310.0    0.00   -0.25   -0.95   -2.01   -3.33   -4.74   -6.09   -7.21   -7.97   -8.27   -8.08   -7.39   -6.22   -4.55   -2.36    0.46    4.04    8.47   13.66
+   315.0    0.00   -0.26   -0.96   -2.03   -3.35   -4.78   -6.13   -7.26   -8.02   -8.33   -8.14   -7.45   -6.29   -4.64   -2.45    0.39    4.00    8.46   13.68
+   320.0    0.00   -0.26   -0.96   -2.04   -3.37   -4.81   -6.17   -7.30   -8.07   -8.38   -8.19   -7.51   -6.35   -4.71   -2.52    0.33    3.97    8.47   13.69
+   325.0    0.00   -0.26   -0.97   -2.05   -3.39   -4.83   -6.20   -7.34   -8.11   -8.42   -8.23   -7.55   -6.40   -4.76   -2.57    0.30    3.97    8.50   13.71
+   330.0    0.00   -0.26   -0.98   -2.06   -3.41   -4.85   -6.23   -7.37   -8.14   -8.45   -8.27   -7.59   -6.44   -4.81   -2.61    0.28    3.98    8.53   13.70
+   335.0    0.00   -0.26   -0.98   -2.07   -3.42   -4.87   -6.25   -7.40   -8.17   -8.48   -8.30   -7.62   -6.47   -4.83   -2.63    0.28    4.01    8.56   13.69
+   340.0    0.00   -0.27   -0.98   -2.07   -3.42   -4.88   -6.27   -7.42   -8.19   -8.51   -8.32   -7.64   -6.48   -4.84   -2.63    0.29    4.03    8.59   13.67
+   345.0    0.00   -0.27   -0.98   -2.08   -3.43   -4.88   -6.27   -7.43   -8.21   -8.52   -8.33   -7.64   -6.48   -4.84   -2.62    0.30    4.06    8.61   13.65
+   350.0    0.00   -0.27   -0.98   -2.08   -3.43   -4.88   -6.28   -7.43   -8.22   -8.53   -8.33   -7.64   -6.48   -4.82   -2.60    0.33    4.08    8.63   13.63
+   355.0    0.00   -0.27   -0.98   -2.07   -3.42   -4.88   -6.27   -7.43   -8.22   -8.53   -8.33   -7.63   -6.46   -4.80   -2.58    0.35    4.11    8.65   13.64
+   360.0    0.00   -0.27   -0.98   -2.07   -3.42   -4.87   -6.26   -7.43   -8.21   -8.53   -8.32   -7.62   -6.44   -4.77   -2.54    0.39    4.14    8.68   13.67
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.08     -0.59    120.35                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.13   -0.51   -1.08   -1.79   -2.58   -3.39   -4.17   -4.81   -5.21   -5.25   -4.86   -4.03   -2.83   -1.33    0.49    2.75    5.68    9.44
+     0.0    0.00   -0.12   -0.48   -1.02   -1.69   -2.44   -3.24   -4.04   -4.72   -5.17   -5.25   -4.89   -4.12   -3.00   -1.59    0.15    2.44    5.50    9.31
+     5.0    0.00   -0.12   -0.48   -1.02   -1.69   -2.44   -3.24   -4.03   -4.72   -5.16   -5.25   -4.90   -4.13   -3.01   -1.61    0.14    2.42    5.45    9.20
+    10.0    0.00   -0.12   -0.47   -1.01   -1.68   -2.44   -3.24   -4.03   -4.71   -5.15   -5.24   -4.90   -4.13   -3.02   -1.61    0.14    2.41    5.41    9.12
+    15.0    0.00   -0.12   -0.47   -1.01   -1.68   -2.44   -3.24   -4.02   -4.70   -5.14   -5.23   -4.89   -4.13   -3.02   -1.60    0.15    2.41    5.38    9.06
+    20.0    0.00   -0.11   -0.47   -1.01   -1.68   -2.44   -3.24   -4.02   -4.69   -5.13   -5.21   -4.88   -4.12   -3.00   -1.58    0.18    2.43    5.37    9.05
+    25.0    0.00   -0.11   -0.46   -1.00   -1.68   -2.44   -3.24   -4.02   -4.68   -5.11   -5.20   -4.86   -4.10   -2.97   -1.54    0.22    2.46    5.39    9.06
+    30.0    0.00   -0.11   -0.46   -1.00   -1.68   -2.45   -3.24   -4.01   -4.67   -5.09   -5.18   -4.84   -4.07   -2.93   -1.49    0.28    2.51    5.42    9.11
+    35.0    0.00   -0.11   -0.46   -1.00   -1.68   -2.45   -3.24   -4.01   -4.66   -5.08   -5.16   -4.81   -4.03   -2.88   -1.42    0.35    2.58    5.48    9.19
+    40.0    0.00   -0.11   -0.45   -1.00   -1.68   -2.45   -3.25   -4.01   -4.65   -5.06   -5.13   -4.78   -4.00   -2.83   -1.36    0.42    2.65    5.55    9.30
+    45.0    0.00   -0.10   -0.45   -0.99   -1.68   -2.45   -3.25   -4.01   -4.65   -5.05   -5.11   -4.75   -3.96   -2.78   -1.30    0.49    2.72    5.62    9.41
+    50.0    0.00   -0.10   -0.45   -0.99   -1.68   -2.45   -3.25   -4.01   -4.65   -5.05   -5.10   -4.72   -3.92   -2.73   -1.24    0.56    2.78    5.69    9.52
+    55.0    0.00   -0.10   -0.45   -0.99   -1.68   -2.46   -3.26   -4.02   -4.65   -5.04   -5.09   -4.70   -3.88   -2.69   -1.19    0.60    2.84    5.76    9.62
+    60.0    0.00   -0.10   -0.44   -0.99   -1.68   -2.46   -3.27   -4.03   -4.66   -5.05   -5.08   -4.68   -3.86   -2.66   -1.16    0.64    2.87    5.81    9.70
+    65.0    0.00   -0.10   -0.44   -0.99   -1.69   -2.47   -3.28   -4.05   -4.68   -5.06   -5.08   -4.67   -3.84   -2.64   -1.15    0.65    2.89    5.84    9.76
+    70.0    0.00   -0.10   -0.44   -0.99   -1.69   -2.48   -3.30   -4.07   -4.70   -5.07   -5.08   -4.67   -3.83   -2.64   -1.15    0.64    2.88    5.85    9.79
+    75.0    0.00   -0.10   -0.44   -0.99   -1.69   -2.49   -3.31   -4.09   -4.72   -5.09   -5.09   -4.67   -3.84   -2.65   -1.17    0.61    2.86    5.83    9.78
+    80.0    0.00   -0.10   -0.45   -1.00   -1.70   -2.50   -3.33   -4.12   -4.75   -5.11   -5.11   -4.68   -3.85   -2.67   -1.21    0.57    2.82    5.80    9.74
+    85.0    0.00   -0.10   -0.45   -1.00   -1.71   -2.52   -3.36   -4.14   -4.78   -5.14   -5.13   -4.70   -3.87   -2.70   -1.25    0.52    2.77    5.75    9.67
+    90.0    0.00   -0.10   -0.45   -1.01   -1.72   -2.54   -3.38   -4.17   -4.81   -5.17   -5.15   -4.72   -3.89   -2.73   -1.29    0.47    2.71    5.68    9.57
+    95.0    0.00   -0.10   -0.46   -1.02   -1.74   -2.55   -3.40   -4.20   -4.83   -5.19   -5.18   -4.74   -3.92   -2.77   -1.33    0.42    2.66    5.62    9.47
+   100.0    0.00   -0.11   -0.46   -1.03   -1.75   -2.58   -3.43   -4.22   -4.86   -5.22   -5.20   -4.77   -3.95   -2.80   -1.37    0.38    2.61    5.56    9.36
+   105.0    0.00   -0.11   -0.47   -1.04   -1.77   -2.60   -3.45   -4.25   -4.88   -5.24   -5.22   -4.79   -3.97   -2.82   -1.40    0.35    2.58    5.51    9.26
+   110.0    0.00   -0.11   -0.48   -1.05   -1.79   -2.62   -3.47   -4.27   -4.90   -5.26   -5.25   -4.82   -4.00   -2.84   -1.41    0.35    2.57    5.48    9.18
+   115.0    0.00   -0.11   -0.48   -1.07   -1.81   -2.64   -3.50   -4.29   -4.92   -5.28   -5.26   -4.84   -4.01   -2.85   -1.41    0.36    2.58    5.46    9.13
+   120.0    0.00   -0.12   -0.49   -1.08   -1.83   -2.66   -3.52   -4.30   -4.93   -5.29   -5.28   -4.85   -4.03   -2.86   -1.39    0.38    2.61    5.47    9.10
+   125.0    0.00   -0.12   -0.50   -1.10   -1.85   -2.68   -3.53   -4.32   -4.94   -5.30   -5.29   -4.87   -4.03   -2.85   -1.37    0.43    2.65    5.50    9.09
+   130.0    0.00   -0.12   -0.50   -1.11   -1.86   -2.70   -3.55   -4.33   -4.95   -5.30   -5.30   -4.88   -4.04   -2.84   -1.33    0.48    2.71    5.54    9.11
+   135.0    0.00   -0.12   -0.51   -1.12   -1.88   -2.72   -3.56   -4.33   -4.95   -5.30   -5.30   -4.88   -4.04   -2.82   -1.29    0.54    2.77    5.60    9.15
+   140.0    0.00   -0.13   -0.52   -1.13   -1.89   -2.73   -3.57   -4.33   -4.95   -5.31   -5.31   -4.89   -4.04   -2.80   -1.25    0.60    2.84    5.66    9.19
+   145.0    0.00   -0.13   -0.52   -1.14   -1.90   -2.74   -3.57   -4.33   -4.94   -5.31   -5.31   -4.89   -4.04   -2.79   -1.22    0.65    2.90    5.71    9.23
+   150.0    0.00   -0.13   -0.53   -1.15   -1.91   -2.74   -3.57   -4.33   -4.94   -5.31   -5.32   -4.90   -4.04   -2.78   -1.19    0.69    2.94    5.74    9.25
+   155.0    0.00   -0.13   -0.53   -1.15   -1.91   -2.74   -3.57   -4.33   -4.94   -5.31   -5.33   -4.91   -4.05   -2.78   -1.18    0.71    2.97    5.76    9.25
+   160.0    0.00   -0.13   -0.53   -1.15   -1.91   -2.74   -3.56   -4.32   -4.93   -5.31   -5.33   -4.92   -4.06   -2.78   -1.18    0.71    2.97    5.76    9.23
+   165.0    0.00   -0.14   -0.54   -1.15   -1.91   -2.73   -3.55   -4.31   -4.93   -5.31   -5.34   -4.94   -4.07   -2.80   -1.19    0.70    2.95    5.73    9.18
+   170.0    0.00   -0.14   -0.54   -1.15   -1.90   -2.72   -3.54   -4.30   -4.93   -5.32   -5.35   -4.95   -4.09   -2.82   -1.22    0.66    2.91    5.68    9.11
+   175.0    0.00   -0.14   -0.54   -1.15   -1.90   -2.71   -3.53   -4.30   -4.93   -5.32   -5.36   -4.96   -4.11   -2.84   -1.26    0.61    2.85    5.62    9.03
+   180.0    0.00   -0.14   -0.54   -1.14   -1.89   -2.70   -3.52   -4.29   -4.93   -5.33   -5.37   -4.97   -4.12   -2.87   -1.30    0.55    2.77    5.55    8.96
+   185.0    0.00   -0.14   -0.54   -1.14   -1.87   -2.69   -3.51   -4.29   -4.93   -5.34   -5.38   -4.98   -4.13   -2.89   -1.35    0.48    2.70    5.48    8.89
+   190.0    0.00   -0.14   -0.53   -1.13   -1.86   -2.67   -3.50   -4.29   -4.94   -5.34   -5.38   -4.97   -4.12   -2.90   -1.38    0.42    2.63    5.42    8.86
+   195.0    0.00   -0.14   -0.53   -1.12   -1.85   -2.66   -3.49   -4.28   -4.94   -5.34   -5.37   -4.96   -4.11   -2.90   -1.40    0.38    2.58    5.39    8.87
+   200.0    0.00   -0.14   -0.53   -1.12   -1.84   -2.65   -3.49   -4.29   -4.95   -5.34   -5.36   -4.94   -4.09   -2.89   -1.41    0.35    2.55    5.39    8.92
+   205.0    0.00   -0.15   -0.53   -1.11   -1.83   -2.64   -3.48   -4.29   -4.95   -5.34   -5.35   -4.91   -4.05   -2.86   -1.40    0.35    2.55    5.43    9.01
+   210.0    0.00   -0.15   -0.53   -1.11   -1.82   -2.63   -3.48   -4.29   -4.95   -5.34   -5.33   -4.88   -4.01   -2.82   -1.36    0.38    2.59    5.50    9.15
+   215.0    0.00   -0.15   -0.53   -1.10   -1.82   -2.63   -3.48   -4.29   -4.95   -5.33   -5.32   -4.85   -3.97   -2.77   -1.31    0.44    2.67    5.61    9.32
+   220.0    0.00   -0.15   -0.53   -1.10   -1.82   -2.63   -3.48   -4.29   -4.95   -5.32   -5.30   -4.82   -3.93   -2.71   -1.24    0.52    2.78    5.76    9.50
+   225.0    0.00   -0.15   -0.53   -1.10   -1.82   -2.63   -3.47   -4.28   -4.94   -5.31   -5.28   -4.79   -3.89   -2.66   -1.17    0.63    2.91    5.91    9.68
+   230.0    0.00   -0.15   -0.53   -1.11   -1.82   -2.63   -3.47   -4.28   -4.93   -5.30   -5.27   -4.78   -3.86   -2.61   -1.09    0.75    3.06    6.07    9.84
+   235.0    0.00   -0.15   -0.54   -1.11   -1.82   -2.63   -3.47   -4.27   -4.92   -5.29   -5.26   -4.77   -3.85   -2.58   -1.01    0.86    3.21    6.22    9.96
+   240.0    0.00   -0.15   -0.54   -1.11   -1.83   -2.63   -3.47   -4.26   -4.91   -5.28   -5.26   -4.78   -3.86   -2.56   -0.95    0.97    3.35    6.35   10.04
+   245.0    0.00   -0.15   -0.54   -1.12   -1.83   -2.63   -3.46   -4.25   -4.89   -5.27   -5.26   -4.80   -3.88   -2.56   -0.91    1.06    3.46    6.44   10.07
+   250.0    0.00   -0.15   -0.54   -1.12   -1.84   -2.63   -3.46   -4.23   -4.88   -5.26   -5.27   -4.83   -3.92   -2.58   -0.90    1.12    3.53    6.48   10.05
+   255.0    0.00   -0.16   -0.55   -1.13   -1.84   -2.64   -3.45   -4.22   -4.86   -5.26   -5.29   -4.87   -3.97   -2.63   -0.91    1.14    3.56    6.47    9.98
+   260.0    0.00   -0.16   -0.55   -1.13   -1.85   -2.64   -3.44   -4.20   -4.84   -5.25   -5.31   -4.91   -4.03   -2.68   -0.95    1.12    3.54    6.41    9.87
+   265.0    0.00   -0.16   -0.55   -1.14   -1.85   -2.64   -3.43   -4.19   -4.83   -5.25   -5.33   -4.96   -4.09   -2.75   -1.01    1.07    3.48    6.31    9.74
+   270.0    0.00   -0.16   -0.56   -1.14   -1.86   -2.63   -3.43   -4.18   -4.82   -5.25   -5.34   -5.00   -4.15   -2.82   -1.08    0.98    3.37    6.18    9.61
+   275.0    0.00   -0.16   -0.56   -1.14   -1.86   -2.63   -3.42   -4.16   -4.80   -5.24   -5.36   -5.03   -4.20   -2.89   -1.17    0.87    3.23    6.03    9.50
+   280.0    0.00   -0.16   -0.56   -1.15   -1.86   -2.63   -3.41   -4.15   -4.79   -5.24   -5.36   -5.05   -4.24   -2.95   -1.26    0.75    3.08    5.88    9.41
+   285.0    0.00   -0.16   -0.56   -1.14   -1.85   -2.62   -3.40   -4.14   -4.79   -5.23   -5.36   -5.06   -4.27   -3.00   -1.35    0.62    2.92    5.73    9.36
+   290.0    0.00   -0.16   -0.56   -1.14   -1.85   -2.61   -3.39   -4.13   -4.78   -5.23   -5.36   -5.06   -4.28   -3.04   -1.42    0.50    2.77    5.60    9.35
+   295.0    0.00   -0.16   -0.55   -1.14   -1.84   -2.60   -3.38   -4.12   -4.77   -5.22   -5.35   -5.05   -4.27   -3.05   -1.48    0.39    2.64    5.51    9.38
+   300.0    0.00   -0.15   -0.55   -1.13   -1.83   -2.59   -3.37   -4.12   -4.77   -5.21   -5.33   -5.02   -4.25   -3.06   -1.53    0.30    2.53    5.45    9.45
+   305.0    0.00   -0.15   -0.55   -1.12   -1.82   -2.57   -3.35   -4.11   -4.76   -5.20   -5.31   -4.99   -4.22   -3.04   -1.55    0.24    2.46    5.42    9.53
+   310.0    0.00   -0.15   -0.54   -1.11   -1.80   -2.56   -3.34   -4.10   -4.76   -5.20   -5.29   -4.96   -4.18   -3.02   -1.56    0.20    2.41    5.42    9.63
+   315.0    0.00   -0.15   -0.54   -1.10   -1.79   -2.54   -3.33   -4.09   -4.75   -5.19   -5.28   -4.93   -4.14   -2.99   -1.55    0.18    2.40    5.45    9.72
+   320.0    0.00   -0.15   -0.53   -1.09   -1.77   -2.52   -3.31   -4.08   -4.75   -5.18   -5.26   -4.90   -4.11   -2.96   -1.54    0.18    2.40    5.50    9.80
+   325.0    0.00   -0.14   -0.53   -1.08   -1.76   -2.51   -3.30   -4.07   -4.74   -5.18   -5.25   -4.88   -4.08   -2.94   -1.53    0.18    2.42    5.54    9.84
+   330.0    0.00   -0.14   -0.52   -1.07   -1.74   -2.49   -3.28   -4.07   -4.74   -5.18   -5.24   -4.86   -4.06   -2.92   -1.52    0.19    2.45    5.59    9.85
+   335.0    0.00   -0.14   -0.51   -1.06   -1.73   -2.48   -3.27   -4.06   -4.74   -5.17   -5.24   -4.86   -4.05   -2.92   -1.52    0.20    2.47    5.62    9.83
+   340.0    0.00   -0.14   -0.51   -1.05   -1.72   -2.46   -3.26   -4.05   -4.74   -5.17   -5.24   -4.86   -4.06   -2.92   -1.52    0.21    2.49    5.63    9.76
+   345.0    0.00   -0.13   -0.50   -1.04   -1.71   -2.46   -3.25   -4.05   -4.73   -5.17   -5.24   -4.86   -4.07   -2.93   -1.53    0.20    2.49    5.62    9.67
+   350.0    0.00   -0.13   -0.49   -1.03   -1.70   -2.45   -3.25   -4.04   -4.73   -5.17   -5.24   -4.87   -4.08   -2.95   -1.55    0.19    2.48    5.59    9.55
+   355.0    0.00   -0.13   -0.49   -1.03   -1.69   -2.44   -3.24   -4.04   -4.73   -5.17   -5.25   -4.88   -4.10   -2.98   -1.57    0.17    2.46    5.55    9.43
+   360.0    0.00   -0.12   -0.48   -1.02   -1.69   -2.44   -3.24   -4.04   -4.72   -5.17   -5.25   -4.89   -4.12   -3.00   -1.59    0.15    2.44    5.50    9.31
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH701945B_M    SCIS                                        TYPE / SERIAL NO    
+FIELD               NGS                      2    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.48      0.13     89.65                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.43   -1.40   -2.73   -4.12   -5.92   -7.36   -8.69   -9.47   -9.81   -9.66   -8.79   -7.63   -5.85   -3.38   -0.41    3.37
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.58      0.01    119.25                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.43   -1.01   -1.78   -2.59   -3.38   -4.19   -4.97   -5.71   -6.21   -6.25   -5.86   -5.13   -3.83   -2.23   -0.21    2.45
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH701945B_M    SCIT                                        TYPE / SERIAL NO    
+FIELD               NGS                      3    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.68     -0.27     89.25                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.53   -1.50   -2.83   -4.22   -5.82   -7.16   -8.29   -9.07   -9.31   -9.16   -8.39   -7.13   -5.45   -3.28   -0.41    3.07
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.18     -0.39    117.85                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.23   -0.61   -1.18   -1.89   -2.58   -3.39   -4.27   -4.91   -5.31   -5.45   -5.06   -4.23   -2.83   -1.13    1.19    4.15
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH701945B_M    SNOW                                        TYPE / SERIAL NO    
+COPIED              Geo++ GmbH               1    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+COPIED FROM ASH701945C_M    SNOW                            COMMENT             
+ATTENTION! COPIED WITHOUT VERIFICATION BY CALIBRATION!      COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.19      0.40     89.87                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.25   -0.98   -2.12   -3.53   -5.10   -6.66   -8.07   -9.14   -9.69   -9.58   -8.72   -7.11   -4.85   -2.02    1.30    5.15    9.61   14.67
+     0.0    0.00   -0.24   -0.99   -2.19   -3.70   -5.38   -7.04   -8.51   -9.59  -10.12   -9.97   -9.11   -7.54   -5.35   -2.58    0.73    4.64    9.15   14.07
+     5.0    0.00   -0.24   -0.99   -2.17   -3.68   -5.35   -7.01   -8.48   -9.57  -10.11   -9.96   -9.09   -7.52   -5.31   -2.54    0.78    4.69    9.21   14.20
+    10.0    0.00   -0.23   -0.98   -2.16   -3.66   -5.32   -6.98   -8.45   -9.54  -10.09   -9.95   -9.07   -7.48   -5.25   -2.47    0.85    4.75    9.30   14.38
+    15.0    0.00   -0.23   -0.97   -2.15   -3.63   -5.29   -6.94   -8.41   -9.52  -10.07   -9.93   -9.04   -7.43   -5.18   -2.39    0.93    4.84    9.42   14.60
+    20.0    0.00   -0.23   -0.97   -2.13   -3.61   -5.25   -6.90   -8.38   -9.49  -10.05   -9.91   -9.01   -7.38   -5.10   -2.30    1.02    4.93    9.55   14.83
+    25.0    0.00   -0.23   -0.96   -2.11   -3.58   -5.22   -6.87   -8.35   -9.47  -10.03   -9.89   -8.97   -7.31   -5.02   -2.19    1.13    5.05    9.69   15.07
+    30.0    0.00   -0.23   -0.95   -2.10   -3.55   -5.18   -6.83   -8.32   -9.45  -10.02   -9.87   -8.93   -7.25   -4.92   -2.08    1.25    5.16    9.83   15.28
+    35.0    0.00   -0.23   -0.94   -2.08   -3.52   -5.15   -6.79   -8.29   -9.42  -10.00   -9.85   -8.89   -7.18   -4.82   -1.96    1.38    5.29    9.96   15.47
+    40.0    0.00   -0.22   -0.94   -2.06   -3.50   -5.11   -6.75   -8.25   -9.39   -9.97   -9.81   -8.84   -7.11   -4.73   -1.84    1.50    5.40   10.08   15.62
+    45.0    0.00   -0.22   -0.93   -2.05   -3.47   -5.07   -6.71   -8.20   -9.35   -9.93   -9.77   -8.79   -7.04   -4.64   -1.74    1.61    5.52   10.19   15.73
+    50.0    0.00   -0.22   -0.92   -2.03   -3.44   -5.03   -6.66   -8.15   -9.29   -9.87   -9.71   -8.73   -6.97   -4.56   -1.65    1.71    5.62   10.29   15.81
+    55.0    0.00   -0.22   -0.92   -2.02   -3.41   -4.99   -6.60   -8.08   -9.21   -9.79   -9.64   -8.67   -6.91   -4.50   -1.57    1.80    5.72   10.38   15.86
+    60.0    0.00   -0.22   -0.91   -2.00   -3.39   -4.94   -6.54   -7.99   -9.12   -9.70   -9.55   -8.60   -6.85   -4.45   -1.52    1.87    5.80   10.46   15.89
+    65.0    0.00   -0.22   -0.91   -1.99   -3.36   -4.90   -6.47   -7.91   -9.02   -9.59   -9.46   -8.52   -6.81   -4.42   -1.49    1.92    5.87   10.52   15.91
+    70.0    0.00   -0.22   -0.91   -1.98   -3.34   -4.86   -6.40   -7.81   -8.91   -9.48   -9.36   -8.46   -6.77   -4.40   -1.48    1.95    5.92   10.58   15.91
+    75.0    0.00   -0.22   -0.91   -1.98   -3.32   -4.82   -6.34   -7.73   -8.80   -9.37   -9.27   -8.39   -6.74   -4.40   -1.48    1.95    5.95   10.61   15.90
+    80.0    0.00   -0.23   -0.91   -1.97   -3.31   -4.79   -6.29   -7.65   -8.71   -9.28   -9.19   -8.34   -6.72   -4.41   -1.50    1.94    5.95   10.60   15.85
+    85.0    0.00   -0.23   -0.91   -1.97   -3.30   -4.77   -6.25   -7.60   -8.64   -9.21   -9.13   -8.31   -6.72   -4.43   -1.54    1.91    5.92   10.56   15.78
+    90.0    0.00   -0.23   -0.92   -1.98   -3.31   -4.77   -6.24   -7.57   -8.60   -9.16   -9.09   -8.29   -6.72   -4.46   -1.58    1.85    5.85   10.48   15.66
+    95.0    0.00   -0.23   -0.92   -1.99   -3.31   -4.78   -6.24   -7.57   -8.59   -9.15   -9.08   -8.29   -6.74   -4.49   -1.64    1.77    5.75   10.34   15.50
+   100.0    0.00   -0.24   -0.93   -2.00   -3.33   -4.80   -6.26   -7.59   -8.61   -9.17   -9.10   -8.31   -6.77   -4.54   -1.70    1.67    5.61   10.17   15.30
+   105.0    0.00   -0.24   -0.94   -2.02   -3.36   -4.83   -6.31   -7.64   -8.66   -9.22   -9.14   -8.34   -6.80   -4.58   -1.78    1.56    5.45    9.95   15.06
+   110.0    0.00   -0.24   -0.95   -2.03   -3.38   -4.87   -6.36   -7.70   -8.73   -9.28   -9.20   -8.39   -6.85   -4.64   -1.86    1.43    5.26    9.72   14.80
+   115.0    0.00   -0.25   -0.96   -2.05   -3.42   -4.92   -6.42   -7.78   -8.82   -9.36   -9.27   -8.45   -6.90   -4.69   -1.94    1.31    5.08    9.48   14.53
+   120.0    0.00   -0.25   -0.97   -2.07   -3.45   -4.97   -6.49   -7.86   -8.90   -9.45   -9.34   -8.51   -6.96   -4.76   -2.03    1.18    4.91    9.26   14.29
+   125.0    0.00   -0.26   -0.98   -2.10   -3.48   -5.02   -6.55   -7.93   -8.98   -9.52   -9.42   -8.58   -7.02   -4.83   -2.11    1.07    4.76    9.08   14.08
+   130.0    0.00   -0.26   -0.99   -2.12   -3.51   -5.06   -6.61   -7.99   -9.04   -9.59   -9.48   -8.64   -7.08   -4.90   -2.19    0.97    4.65    8.94   13.91
+   135.0    0.00   -0.27   -1.01   -2.14   -3.54   -5.10   -6.65   -8.04   -9.09   -9.63   -9.53   -8.69   -7.14   -4.97   -2.27    0.90    4.58    8.86   13.80
+   140.0    0.00   -0.27   -1.02   -2.15   -3.57   -5.13   -6.68   -8.07   -9.12   -9.67   -9.56   -8.74   -7.20   -5.03   -2.32    0.86    4.55    8.83   13.75
+   145.0    0.00   -0.27   -1.03   -2.17   -3.59   -5.15   -6.70   -8.09   -9.14   -9.68   -9.59   -8.78   -7.25   -5.09   -2.37    0.84    4.55    8.85   13.73
+   150.0    0.00   -0.28   -1.04   -2.19   -3.61   -5.17   -6.72   -8.10   -9.14   -9.69   -9.61   -8.81   -7.30   -5.13   -2.40    0.84    4.58    8.89   13.74
+   155.0    0.00   -0.28   -1.05   -2.20   -3.62   -5.18   -6.72   -8.10   -9.14   -9.70   -9.62   -8.84   -7.34   -5.16   -2.41    0.86    4.63    8.93   13.76
+   160.0    0.00   -0.29   -1.05   -2.21   -3.64   -5.19   -6.73   -8.10   -9.15   -9.71   -9.64   -8.87   -7.36   -5.18   -2.41    0.88    4.66    8.97   13.76
+   165.0    0.00   -0.29   -1.06   -2.22   -3.65   -5.20   -6.74   -8.11   -9.16   -9.72   -9.66   -8.89   -7.38   -5.19   -2.40    0.89    4.68    8.97   13.74
+   170.0    0.00   -0.29   -1.07   -2.23   -3.66   -5.22   -6.76   -8.13   -9.18   -9.75   -9.69   -8.91   -7.39   -5.19   -2.39    0.90    4.66    8.93   13.69
+   175.0    0.00   -0.29   -1.07   -2.24   -3.67   -5.23   -6.77   -8.15   -9.21   -9.78   -9.72   -8.93   -7.40   -5.18   -2.39    0.88    4.61    8.85   13.62
+   180.0    0.00   -0.29   -1.07   -2.24   -3.68   -5.24   -6.79   -8.18   -9.25   -9.82   -9.75   -8.95   -7.39   -5.17   -2.39    0.85    4.53    8.74   13.53
+   185.0    0.00   -0.29   -1.07   -2.24   -3.68   -5.25   -6.81   -8.21   -9.28   -9.86   -9.78   -8.96   -7.39   -5.16   -2.40    0.79    4.43    8.62   13.46
+   190.0    0.00   -0.29   -1.07   -2.25   -3.69   -5.26   -6.83   -8.23   -9.31   -9.89   -9.80   -8.96   -7.38   -5.15   -2.42    0.73    4.33    8.51   13.43
+   195.0    0.00   -0.29   -1.07   -2.24   -3.69   -5.26   -6.84   -8.25   -9.33   -9.90   -9.81   -8.96   -7.37   -5.15   -2.44    0.67    4.24    8.45   13.47
+   200.0    0.00   -0.29   -1.07   -2.24   -3.68   -5.26   -6.83   -8.25   -9.33   -9.90   -9.80   -8.94   -7.36   -5.15   -2.46    0.63    4.20    8.46   13.60
+   205.0    0.00   -0.29   -1.07   -2.23   -3.67   -5.25   -6.82   -8.23   -9.31   -9.87   -9.77   -8.92   -7.34   -5.15   -2.47    0.62    4.23    8.56   13.82
+   210.0    0.00   -0.29   -1.06   -2.22   -3.65   -5.22   -6.79   -8.19   -9.27   -9.83   -9.73   -8.89   -7.32   -5.14   -2.46    0.66    4.33    8.77   14.14
+   215.0    0.00   -0.29   -1.05   -2.21   -3.63   -5.19   -6.75   -8.14   -9.20   -9.76   -9.67   -8.84   -7.29   -5.12   -2.43    0.75    4.51    9.06   14.53
+   220.0    0.00   -0.29   -1.05   -2.19   -3.61   -5.16   -6.70   -8.08   -9.13   -9.69   -9.61   -8.80   -7.26   -5.08   -2.35    0.90    4.77    9.44   14.97
+   225.0    0.00   -0.28   -1.04   -2.18   -3.58   -5.12   -6.64   -8.01   -9.05   -9.61   -9.54   -8.74   -7.22   -5.03   -2.25    1.10    5.10    9.87   15.42
+   230.0    0.00   -0.28   -1.03   -2.16   -3.55   -5.08   -6.58   -7.94   -8.98   -9.54   -9.48   -8.69   -7.17   -4.95   -2.10    1.35    5.46   10.31   15.82
+   235.0    0.00   -0.28   -1.02   -2.14   -3.53   -5.03   -6.53   -7.87   -8.91   -9.47   -9.42   -8.64   -7.10   -4.84   -1.92    1.63    5.83   10.72   16.15
+   240.0    0.00   -0.27   -1.01   -2.13   -3.50   -5.00   -6.49   -7.82   -8.86   -9.43   -9.38   -8.59   -7.03   -4.72   -1.73    1.91    6.18   11.06   16.36
+   245.0    0.00   -0.27   -1.00   -2.11   -3.47   -4.97   -6.45   -7.79   -8.83   -9.40   -9.35   -8.55   -6.96   -4.59   -1.53    2.17    6.47   11.30   16.43
+   250.0    0.00   -0.27   -0.99   -2.10   -3.45   -4.94   -6.43   -7.77   -8.82   -9.40   -9.34   -8.51   -6.88   -4.46   -1.34    2.40    6.68   11.42   16.37
+   255.0    0.00   -0.26   -0.99   -2.08   -3.44   -4.93   -6.42   -7.77   -8.83   -9.41   -9.33   -8.48   -6.80   -4.33   -1.17    2.57    6.80   11.41   16.17
+   260.0    0.00   -0.26   -0.98   -2.07   -3.43   -4.92   -6.42   -7.79   -8.85   -9.43   -9.34   -8.46   -6.73   -4.22   -1.05    2.67    6.81   11.28   15.87
+   265.0    0.00   -0.26   -0.98   -2.07   -3.43   -4.92   -6.44   -7.81   -8.88   -9.46   -9.35   -8.44   -6.68   -4.14   -0.97    2.68    6.72   11.06   15.50
+   270.0    0.00   -0.26   -0.97   -2.06   -3.43   -4.93   -6.46   -7.84   -8.92   -9.49   -9.36   -8.42   -6.64   -4.10   -0.96    2.63    6.55   10.76   15.11
+   275.0    0.00   -0.25   -0.97   -2.06   -3.43   -4.95   -6.48   -7.88   -8.96   -9.52   -9.38   -8.42   -6.62   -4.10   -1.00    2.50    6.32   10.43   14.75
+   280.0    0.00   -0.25   -0.97   -2.07   -3.44   -4.97   -6.52   -7.92   -8.99   -9.54   -9.39   -8.42   -6.63   -4.13   -1.10    2.32    6.05   10.10   14.44
+   285.0    0.00   -0.25   -0.97   -2.07   -3.46   -5.00   -6.55   -7.95   -9.02   -9.56   -9.39   -8.42   -6.66   -4.21   -1.24    2.10    5.76    9.79   14.20
+   290.0    0.00   -0.25   -0.97   -2.08   -3.48   -5.03   -6.59   -7.99   -9.05   -9.58   -9.41   -8.44   -6.71   -4.31   -1.42    1.86    5.49    9.54   14.06
+   295.0    0.00   -0.25   -0.97   -2.09   -3.51   -5.07   -6.63   -8.03   -9.08   -9.60   -9.42   -8.47   -6.78   -4.44   -1.61    1.62    5.24    9.35   14.01
+   300.0    0.00   -0.25   -0.98   -2.11   -3.53   -5.11   -6.68   -8.08   -9.12   -9.62   -9.44   -8.52   -6.86   -4.58   -1.80    1.40    5.04    9.23   14.02
+   305.0    0.00   -0.25   -0.98   -2.12   -3.56   -5.15   -6.73   -8.13   -9.16   -9.65   -9.48   -8.57   -6.96   -4.73   -1.99    1.20    4.88    9.16   14.08
+   310.0    0.00   -0.25   -0.98   -2.14   -3.59   -5.20   -6.79   -8.18   -9.21   -9.69   -9.52   -8.64   -7.06   -4.87   -2.16    1.04    4.77    9.14   14.16
+   315.0    0.00   -0.25   -0.99   -2.15   -3.62   -5.24   -6.84   -8.24   -9.27   -9.75   -9.58   -8.71   -7.16   -5.00   -2.31    0.91    4.70    9.14   14.23
+   320.0    0.00   -0.25   -0.99   -2.17   -3.65   -5.29   -6.90   -8.31   -9.33   -9.81   -9.64   -8.78   -7.25   -5.11   -2.42    0.82    4.66    9.16   14.27
+   325.0    0.00   -0.24   -0.99   -2.18   -3.67   -5.33   -6.95   -8.37   -9.40   -9.88   -9.71   -8.86   -7.34   -5.21   -2.51    0.75    4.63    9.17   14.27
+   330.0    0.00   -0.24   -1.00   -2.19   -3.70   -5.36   -7.00   -8.43   -9.46   -9.95   -9.78   -8.93   -7.41   -5.28   -2.57    0.71    4.62    9.17   14.23
+   335.0    0.00   -0.24   -1.00   -2.20   -3.71   -5.39   -7.04   -8.48   -9.52  -10.01   -9.85   -8.99   -7.47   -5.33   -2.62    0.69    4.61    9.16   14.16
+   340.0    0.00   -0.24   -1.00   -2.20   -3.72   -5.40   -7.07   -8.51   -9.56  -10.06   -9.90   -9.05   -7.52   -5.37   -2.64    0.68    4.61    9.14   14.09
+   345.0    0.00   -0.24   -1.00   -2.20   -3.73   -5.41   -7.08   -8.53   -9.59  -10.10   -9.94   -9.08   -7.55   -5.39   -2.65    0.67    4.60    9.12   14.02
+   350.0    0.00   -0.24   -1.00   -2.20   -3.72   -5.41   -7.08   -8.54   -9.61  -10.12   -9.96   -9.10   -7.56   -5.39   -2.64    0.68    4.60    9.11   13.99
+   355.0    0.00   -0.24   -1.00   -2.19   -3.71   -5.40   -7.07   -8.53   -9.61  -10.12   -9.98   -9.11   -7.56   -5.37   -2.62    0.70    4.62    9.11   14.00
+   360.0    0.00   -0.24   -0.99   -2.19   -3.70   -5.38   -7.04   -8.51   -9.59  -10.12   -9.97   -9.11   -7.54   -5.35   -2.58    0.73    4.64    9.15   14.07
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.84      0.19    119.49                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.11   -0.44   -0.93   -1.56   -2.28   -3.08   -3.90   -4.67   -5.24   -5.46   -5.23   -4.51   -3.32   -1.74    0.25    2.77    6.04   10.22
+     0.0    0.00   -0.15   -0.44   -0.81   -1.30   -1.94   -2.77   -3.73   -4.64   -5.27   -5.45   -5.13   -4.41   -3.44   -2.22   -0.55    1.94    5.51    9.85
+     5.0    0.00   -0.15   -0.44   -0.82   -1.30   -1.95   -2.78   -3.74   -4.65   -5.29   -5.48   -5.16   -4.45   -3.46   -2.22   -0.53    1.98    5.53    9.81
+    10.0    0.00   -0.15   -0.44   -0.82   -1.31   -1.96   -2.79   -3.75   -4.66   -5.31   -5.51   -5.20   -4.48   -3.48   -2.20   -0.48    2.04    5.57    9.82
+    15.0    0.00   -0.15   -0.44   -0.83   -1.32   -1.97   -2.80   -3.76   -4.67   -5.32   -5.53   -5.24   -4.52   -3.49   -2.17   -0.41    2.12    5.63    9.89
+    20.0    0.00   -0.15   -0.45   -0.84   -1.34   -1.99   -2.81   -3.76   -4.66   -5.32   -5.55   -5.27   -4.55   -3.49   -2.13   -0.32    2.22    5.72   10.00
+    25.0    0.00   -0.15   -0.46   -0.86   -1.36   -2.01   -2.82   -3.75   -4.65   -5.32   -5.56   -5.30   -4.57   -3.48   -2.07   -0.22    2.33    5.82   10.16
+    30.0    0.00   -0.16   -0.46   -0.87   -1.38   -2.03   -2.83   -3.75   -4.64   -5.31   -5.57   -5.32   -4.59   -3.47   -2.01   -0.12    2.44    5.93   10.34
+    35.0    0.00   -0.16   -0.47   -0.89   -1.41   -2.06   -2.85   -3.75   -4.63   -5.30   -5.57   -5.34   -4.60   -3.45   -1.94   -0.01    2.56    6.04   10.53
+    40.0    0.00   -0.16   -0.48   -0.91   -1.44   -2.08   -2.87   -3.75   -4.61   -5.28   -5.57   -5.34   -4.60   -3.42   -1.86    0.10    2.67    6.14   10.71
+    45.0    0.00   -0.16   -0.48   -0.93   -1.47   -2.12   -2.89   -3.75   -4.60   -5.26   -5.55   -5.34   -4.60   -3.39   -1.79    0.20    2.78    6.24   10.87
+    50.0    0.00   -0.16   -0.49   -0.95   -1.50   -2.15   -2.91   -3.75   -4.59   -5.24   -5.54   -5.34   -4.59   -3.36   -1.73    0.30    2.88    6.33   10.98
+    55.0    0.00   -0.16   -0.50   -0.96   -1.53   -2.18   -2.93   -3.76   -4.57   -5.22   -5.52   -5.32   -4.58   -3.33   -1.67    0.38    2.97    6.40   11.05
+    60.0    0.00   -0.16   -0.50   -0.98   -1.56   -2.22   -2.96   -3.77   -4.56   -5.20   -5.49   -5.30   -4.56   -3.31   -1.63    0.46    3.06    6.47   11.07
+    65.0    0.00   -0.16   -0.51   -1.00   -1.59   -2.25   -2.99   -3.78   -4.56   -5.18   -5.47   -5.28   -4.55   -3.29   -1.59    0.52    3.14    6.53   11.04
+    70.0    0.00   -0.15   -0.51   -1.01   -1.61   -2.29   -3.02   -3.80   -4.56   -5.16   -5.44   -5.26   -4.53   -3.28   -1.56    0.58    3.22    6.58   10.96
+    75.0    0.00   -0.15   -0.51   -1.02   -1.64   -2.32   -3.06   -3.83   -4.56   -5.15   -5.42   -5.24   -4.52   -3.27   -1.54    0.62    3.29    6.62   10.84
+    80.0    0.00   -0.15   -0.51   -1.03   -1.66   -2.35   -3.10   -3.86   -4.58   -5.14   -5.40   -5.22   -4.51   -3.26   -1.53    0.66    3.34    6.65   10.68
+    85.0    0.00   -0.15   -0.51   -1.04   -1.68   -2.39   -3.13   -3.89   -4.60   -5.15   -5.39   -5.21   -4.50   -3.26   -1.52    0.68    3.39    6.66   10.51
+    90.0    0.00   -0.14   -0.51   -1.05   -1.70   -2.42   -3.18   -3.93   -4.63   -5.16   -5.39   -5.20   -4.49   -3.26   -1.53    0.69    3.41    6.65   10.33
+    95.0    0.00   -0.14   -0.51   -1.05   -1.72   -2.45   -3.22   -3.98   -4.67   -5.19   -5.40   -5.19   -4.48   -3.26   -1.53    0.68    3.41    6.63   10.15
+   100.0    0.00   -0.14   -0.50   -1.05   -1.73   -2.48   -3.26   -4.03   -4.72   -5.22   -5.42   -5.19   -4.48   -3.26   -1.54    0.67    3.38    6.58    9.99
+   105.0    0.00   -0.13   -0.50   -1.06   -1.74   -2.51   -3.30   -4.08   -4.77   -5.27   -5.44   -5.20   -4.48   -3.26   -1.55    0.64    3.34    6.51    9.85
+   110.0    0.00   -0.13   -0.49   -1.05   -1.75   -2.53   -3.34   -4.13   -4.82   -5.31   -5.47   -5.21   -4.47   -3.25   -1.56    0.60    3.28    6.43    9.74
+   115.0    0.00   -0.12   -0.49   -1.05   -1.76   -2.55   -3.38   -4.18   -4.87   -5.36   -5.51   -5.23   -4.47   -3.25   -1.57    0.57    3.22    6.35    9.67
+   120.0    0.00   -0.12   -0.48   -1.05   -1.77   -2.57   -3.41   -4.22   -4.92   -5.40   -5.54   -5.25   -4.48   -3.24   -1.57    0.54    3.15    6.26    9.62
+   125.0    0.00   -0.11   -0.47   -1.05   -1.77   -2.58   -3.43   -4.24   -4.95   -5.43   -5.57   -5.27   -4.48   -3.23   -1.56    0.53    3.10    6.19    9.60
+   130.0    0.00   -0.11   -0.47   -1.04   -1.77   -2.59   -3.44   -4.26   -4.96   -5.45   -5.59   -5.29   -4.49   -3.23   -1.55    0.54    3.08    6.14    9.59
+   135.0    0.00   -0.10   -0.46   -1.04   -1.77   -2.60   -3.45   -4.26   -4.97   -5.46   -5.61   -5.31   -4.51   -3.22   -1.52    0.56    3.07    6.10    9.59
+   140.0    0.00   -0.10   -0.45   -1.03   -1.77   -2.60   -3.44   -4.25   -4.96   -5.46   -5.63   -5.34   -4.54   -3.23   -1.49    0.60    3.09    6.07    9.59
+   145.0    0.00   -0.10   -0.45   -1.03   -1.77   -2.60   -3.43   -4.23   -4.94   -5.45   -5.64   -5.37   -4.57   -3.24   -1.46    0.66    3.13    6.06    9.57
+   150.0    0.00   -0.09   -0.44   -1.03   -1.77   -2.60   -3.42   -4.21   -4.91   -5.43   -5.65   -5.41   -4.61   -3.25   -1.44    0.72    3.17    6.04    9.52
+   155.0    0.00   -0.09   -0.44   -1.02   -1.77   -2.59   -3.41   -4.19   -4.88   -5.42   -5.66   -5.45   -4.66   -3.28   -1.42    0.77    3.22    6.02    9.44
+   160.0    0.00   -0.08   -0.43   -1.02   -1.77   -2.59   -3.40   -4.17   -4.86   -5.41   -5.67   -5.49   -4.72   -3.32   -1.42    0.81    3.24    5.97    9.33
+   165.0    0.00   -0.08   -0.42   -1.02   -1.77   -2.59   -3.40   -4.16   -4.84   -5.40   -5.69   -5.53   -4.77   -3.37   -1.43    0.82    3.23    5.90    9.20
+   170.0    0.00   -0.07   -0.42   -1.01   -1.78   -2.60   -3.40   -4.15   -4.84   -5.40   -5.71   -5.58   -4.83   -3.42   -1.47    0.79    3.18    5.79    9.05
+   175.0    0.00   -0.07   -0.41   -1.01   -1.78   -2.60   -3.41   -4.16   -4.85   -5.41   -5.73   -5.61   -4.88   -3.47   -1.52    0.73    3.10    5.66    8.90
+   180.0    0.00   -0.07   -0.41   -1.01   -1.77   -2.61   -3.42   -4.18   -4.86   -5.43   -5.76   -5.64   -4.92   -3.52   -1.59    0.64    2.97    5.51    8.78
+   185.0    0.00   -0.07   -0.40   -1.00   -1.77   -2.61   -3.43   -4.20   -4.89   -5.45   -5.77   -5.66   -4.94   -3.56   -1.66    0.53    2.82    5.36    8.70
+   190.0    0.00   -0.06   -0.40   -0.99   -1.77   -2.61   -3.44   -4.22   -4.91   -5.47   -5.78   -5.66   -4.94   -3.59   -1.73    0.41    2.67    5.22    8.69
+   195.0    0.00   -0.06   -0.39   -0.98   -1.76   -2.61   -3.45   -4.24   -4.94   -5.49   -5.78   -5.64   -4.91   -3.59   -1.78    0.29    2.53    5.13    8.76
+   200.0    0.00   -0.06   -0.39   -0.97   -1.74   -2.60   -3.45   -4.25   -4.95   -5.50   -5.76   -5.59   -4.86   -3.56   -1.81    0.21    2.42    5.10    8.91
+   205.0    0.00   -0.06   -0.38   -0.96   -1.72   -2.58   -3.44   -4.25   -4.96   -5.49   -5.73   -5.53   -4.79   -3.51   -1.81    0.16    2.37    5.14    9.15
+   210.0    0.00   -0.06   -0.38   -0.95   -1.70   -2.55   -3.42   -4.24   -4.95   -5.47   -5.69   -5.46   -4.70   -3.43   -1.77    0.15    2.38    5.26    9.46
+   215.0    0.00   -0.06   -0.38   -0.94   -1.68   -2.52   -3.39   -4.21   -4.93   -5.44   -5.63   -5.37   -4.59   -3.33   -1.70    0.21    2.47    5.45    9.82
+   220.0    0.00   -0.06   -0.37   -0.92   -1.65   -2.48   -3.34   -4.17   -4.89   -5.39   -5.56   -5.27   -4.48   -3.22   -1.60    0.31    2.62    5.71   10.21
+   225.0    0.00   -0.06   -0.37   -0.91   -1.62   -2.44   -3.30   -4.12   -4.84   -5.34   -5.49   -5.18   -4.37   -3.11   -1.48    0.44    2.81    6.01   10.60
+   230.0    0.00   -0.06   -0.37   -0.90   -1.60   -2.40   -3.25   -4.07   -4.79   -5.29   -5.43   -5.10   -4.27   -3.00   -1.36    0.60    3.04    6.32   10.94
+   235.0    0.00   -0.07   -0.37   -0.89   -1.57   -2.36   -3.20   -4.02   -4.74   -5.24   -5.37   -5.03   -4.19   -2.90   -1.24    0.77    3.27    6.61   11.22
+   240.0    0.00   -0.07   -0.37   -0.89   -1.55   -2.32   -3.15   -3.97   -4.69   -5.19   -5.33   -4.99   -4.14   -2.84   -1.15    0.91    3.47    6.86   11.41
+   245.0    0.00   -0.07   -0.38   -0.88   -1.54   -2.30   -3.11   -3.93   -4.65   -5.16   -5.30   -4.97   -4.12   -2.80   -1.09    1.01    3.63    7.04   11.50
+   250.0    0.00   -0.08   -0.38   -0.88   -1.53   -2.27   -3.08   -3.89   -4.62   -5.14   -5.29   -4.97   -4.13   -2.81   -1.07    1.06    3.72    7.13   11.49
+   255.0    0.00   -0.08   -0.39   -0.89   -1.52   -2.26   -3.06   -3.87   -4.60   -5.13   -5.30   -4.99   -4.16   -2.85   -1.11    1.04    3.72    7.13   11.39
+   260.0    0.00   -0.09   -0.40   -0.89   -1.52   -2.25   -3.04   -3.85   -4.59   -5.13   -5.31   -5.03   -4.22   -2.92   -1.19    0.97    3.65    7.04   11.22
+   265.0    0.00   -0.09   -0.40   -0.90   -1.53   -2.25   -3.03   -3.84   -4.58   -5.13   -5.34   -5.08   -4.30   -3.03   -1.32    0.83    3.50    6.87   11.01
+   270.0    0.00   -0.10   -0.41   -0.91   -1.53   -2.25   -3.03   -3.83   -4.58   -5.14   -5.37   -5.13   -4.39   -3.15   -1.47    0.65    3.30    6.66   10.78
+   275.0    0.00   -0.10   -0.42   -0.92   -1.53   -2.24   -3.02   -3.82   -4.58   -5.15   -5.39   -5.19   -4.48   -3.28   -1.64    0.44    3.07    6.42   10.56
+   280.0    0.00   -0.11   -0.43   -0.92   -1.54   -2.24   -3.01   -3.81   -4.57   -5.15   -5.41   -5.23   -4.56   -3.40   -1.81    0.22    2.82    6.18   10.38
+   285.0    0.00   -0.11   -0.44   -0.93   -1.54   -2.23   -3.00   -3.79   -4.55   -5.14   -5.42   -5.27   -4.62   -3.51   -1.98    0.01    2.58    5.96   10.26
+   290.0    0.00   -0.11   -0.44   -0.93   -1.53   -2.22   -2.98   -3.77   -4.53   -5.13   -5.42   -5.28   -4.67   -3.60   -2.11   -0.18    2.37    5.79   10.19
+   295.0    0.00   -0.12   -0.45   -0.93   -1.52   -2.20   -2.95   -3.74   -4.50   -5.11   -5.41   -5.28   -4.69   -3.66   -2.22   -0.33    2.21    5.66   10.20
+   300.0    0.00   -0.12   -0.45   -0.93   -1.51   -2.18   -2.92   -3.71   -4.48   -5.09   -5.39   -5.27   -4.69   -3.69   -2.29   -0.44    2.09    5.59   10.25
+   305.0    0.00   -0.13   -0.45   -0.92   -1.49   -2.15   -2.89   -3.68   -4.45   -5.06   -5.36   -5.24   -4.67   -3.69   -2.33   -0.51    2.01    5.56   10.33
+   310.0    0.00   -0.13   -0.45   -0.91   -1.47   -2.12   -2.85   -3.65   -4.43   -5.04   -5.34   -5.21   -4.63   -3.66   -2.33   -0.55    1.97    5.57   10.42
+   315.0    0.00   -0.13   -0.45   -0.90   -1.45   -2.08   -2.82   -3.63   -4.41   -5.03   -5.31   -5.16   -4.58   -3.62   -2.32   -0.56    1.96    5.60   10.51
+   320.0    0.00   -0.14   -0.45   -0.89   -1.42   -2.05   -2.79   -3.61   -4.41   -5.02   -5.29   -5.13   -4.53   -3.57   -2.29   -0.55    1.96    5.63   10.57
+   325.0    0.00   -0.14   -0.45   -0.87   -1.39   -2.02   -2.77   -3.61   -4.42   -5.03   -5.29   -5.09   -4.47   -3.52   -2.26   -0.55    1.97    5.66   10.58
+   330.0    0.00   -0.14   -0.45   -0.86   -1.37   -2.00   -2.75   -3.61   -4.44   -5.05   -5.29   -5.06   -4.43   -3.47   -2.23   -0.54    1.97    5.66   10.55
+   335.0    0.00   -0.14   -0.44   -0.85   -1.35   -1.97   -2.75   -3.62   -4.46   -5.08   -5.30   -5.05   -4.39   -3.44   -2.21   -0.54    1.97    5.66   10.47
+   340.0    0.00   -0.14   -0.44   -0.84   -1.33   -1.96   -2.74   -3.64   -4.50   -5.12   -5.32   -5.04   -4.37   -3.41   -2.20   -0.54    1.95    5.63   10.35
+   345.0    0.00   -0.14   -0.44   -0.83   -1.32   -1.95   -2.75   -3.66   -4.54   -5.16   -5.35   -5.05   -4.36   -3.40   -2.20   -0.55    1.94    5.59   10.21
+   350.0    0.00   -0.15   -0.44   -0.82   -1.31   -1.94   -2.76   -3.69   -4.58   -5.20   -5.38   -5.07   -4.37   -3.41   -2.21   -0.56    1.93    5.55   10.07
+   355.0    0.00   -0.15   -0.44   -0.82   -1.30   -1.94   -2.76   -3.71   -4.61   -5.24   -5.41   -5.10   -4.39   -3.42   -2.22   -0.56    1.93    5.53    9.94
+   360.0    0.00   -0.15   -0.44   -0.81   -1.30   -1.94   -2.77   -3.73   -4.64   -5.27   -5.45   -5.13   -4.41   -3.44   -2.22   -0.55    1.94    5.51    9.85
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH701945C_M    NONE                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               1    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+Number of Calibrated Antennas GPS:      001                 COMMENT             
+Number of Individual Calibrations GPS:  002                 COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.68     -0.49     90.78                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.23   -0.91   -1.96   -3.28   -4.74   -6.16   -7.38   -8.25   -8.68   -8.60   -8.01   -6.90   -5.23   -2.91    0.18    4.15    9.00   14.41
+     0.0    0.00   -0.17   -0.83   -1.94   -3.37   -4.92   -6.37   -7.56   -8.36   -8.73   -8.67   -8.14   -7.10   -5.45   -3.09    0.04    3.98    8.79   14.58
+     5.0    0.00   -0.17   -0.83   -1.94   -3.37   -4.93   -6.39   -7.58   -8.37   -8.73   -8.65   -8.10   -7.05   -5.39   -3.03    0.09    4.03    8.84   14.66
+    10.0    0.00   -0.17   -0.82   -1.93   -3.37   -4.93   -6.40   -7.59   -8.39   -8.73   -8.63   -8.07   -6.99   -5.33   -2.97    0.15    4.08    8.88   14.71
+    15.0    0.00   -0.17   -0.82   -1.93   -3.36   -4.93   -6.41   -7.61   -8.40   -8.74   -8.62   -8.03   -6.94   -5.27   -2.91    0.20    4.11    8.90   14.73
+    20.0    0.00   -0.17   -0.82   -1.92   -3.35   -4.92   -6.41   -7.61   -8.41   -8.75   -8.61   -8.01   -6.90   -5.21   -2.85    0.26    4.15    8.92   14.73
+    25.0    0.00   -0.17   -0.82   -1.91   -3.34   -4.91   -6.40   -7.61   -8.41   -8.75   -8.61   -7.99   -6.86   -5.15   -2.78    0.32    4.19    8.93   14.72
+    30.0    0.00   -0.17   -0.82   -1.91   -3.33   -4.89   -6.38   -7.60   -8.41   -8.76   -8.61   -7.98   -6.83   -5.09   -2.71    0.39    4.24    8.95   14.71
+    35.0    0.00   -0.17   -0.82   -1.90   -3.31   -4.86   -6.35   -7.57   -8.40   -8.75   -8.62   -7.97   -6.80   -5.04   -2.64    0.46    4.30    8.99   14.71
+    40.0    0.00   -0.17   -0.82   -1.90   -3.29   -4.84   -6.32   -7.54   -8.38   -8.75   -8.61   -7.96   -6.77   -4.99   -2.57    0.54    4.38    9.04   14.73
+    45.0    0.00   -0.18   -0.82   -1.89   -3.28   -4.81   -6.28   -7.51   -8.35   -8.73   -8.61   -7.95   -6.74   -4.94   -2.49    0.62    4.46    9.12   14.78
+    50.0    0.00   -0.18   -0.82   -1.89   -3.26   -4.78   -6.24   -7.47   -8.32   -8.71   -8.59   -7.93   -6.71   -4.89   -2.43    0.70    4.56    9.22   14.86
+    55.0    0.00   -0.18   -0.83   -1.89   -3.25   -4.75   -6.20   -7.43   -8.28   -8.68   -8.57   -7.91   -6.68   -4.84   -2.37    0.78    4.66    9.34   14.95
+    60.0    0.00   -0.19   -0.84   -1.89   -3.25   -4.73   -6.17   -7.39   -8.24   -8.65   -8.54   -7.88   -6.64   -4.80   -2.31    0.85    4.76    9.47   15.06
+    65.0    0.00   -0.19   -0.84   -1.90   -3.24   -4.72   -6.15   -7.36   -8.21   -8.61   -8.50   -7.84   -6.61   -4.76   -2.27    0.91    4.86    9.61   15.16
+    70.0    0.00   -0.20   -0.85   -1.91   -3.25   -4.71   -6.13   -7.33   -8.18   -8.58   -8.47   -7.81   -6.57   -4.74   -2.25    0.95    4.94    9.73   15.25
+    75.0    0.00   -0.21   -0.86   -1.92   -3.26   -4.72   -6.13   -7.32   -8.16   -8.55   -8.43   -7.77   -6.55   -4.72   -2.24    0.97    5.00    9.84   15.31
+    80.0    0.00   -0.21   -0.88   -1.93   -3.27   -4.73   -6.13   -7.32   -8.15   -8.53   -8.41   -7.75   -6.53   -4.73   -2.26    0.97    5.04    9.92   15.33
+    85.0    0.00   -0.22   -0.89   -1.95   -3.28   -4.74   -6.14   -7.33   -8.15   -8.52   -8.39   -7.73   -6.54   -4.75   -2.30    0.93    5.04    9.97   15.31
+    90.0    0.00   -0.23   -0.90   -1.96   -3.30   -4.76   -6.16   -7.34   -8.16   -8.53   -8.39   -7.74   -6.55   -4.80   -2.37    0.87    5.01    9.97   15.25
+    95.0    0.00   -0.23   -0.91   -1.98   -3.32   -4.78   -6.19   -7.37   -8.19   -8.55   -8.41   -7.76   -6.59   -4.87   -2.47    0.77    4.95    9.94   15.15
+   100.0    0.00   -0.24   -0.93   -2.00   -3.34   -4.80   -6.21   -7.40   -8.22   -8.58   -8.44   -7.79   -6.65   -4.95   -2.58    0.65    4.85    9.86   15.02
+   105.0    0.00   -0.25   -0.94   -2.01   -3.35   -4.82   -6.23   -7.43   -8.26   -8.62   -8.48   -7.85   -6.72   -5.06   -2.71    0.51    4.72    9.76   14.89
+   110.0    0.00   -0.25   -0.95   -2.02   -3.36   -4.83   -6.25   -7.46   -8.30   -8.67   -8.54   -7.92   -6.81   -5.17   -2.85    0.35    4.57    9.63   14.76
+   115.0    0.00   -0.26   -0.96   -2.03   -3.37   -4.84   -6.27   -7.48   -8.34   -8.73   -8.61   -8.00   -6.90   -5.28   -2.99    0.19    4.40    9.48   14.63
+   120.0    0.00   -0.27   -0.97   -2.04   -3.37   -4.84   -6.27   -7.51   -8.38   -8.79   -8.69   -8.08   -6.99   -5.39   -3.12    0.03    4.23    9.33   14.54
+   125.0    0.00   -0.27   -0.98   -2.04   -3.37   -4.83   -6.27   -7.52   -8.42   -8.85   -8.76   -8.16   -7.08   -5.48   -3.24   -0.11    4.07    9.18   14.46
+   130.0    0.00   -0.28   -0.98   -2.05   -3.37   -4.82   -6.26   -7.53   -8.45   -8.90   -8.83   -8.24   -7.15   -5.56   -3.33   -0.23    3.93    9.05   14.41
+   135.0    0.00   -0.28   -0.99   -2.04   -3.36   -4.80   -6.25   -7.53   -8.47   -8.95   -8.89   -8.30   -7.21   -5.61   -3.39   -0.32    3.81    8.92   14.38
+   140.0    0.00   -0.28   -0.99   -2.04   -3.34   -4.79   -6.23   -7.52   -8.49   -8.98   -8.94   -8.35   -7.25   -5.64   -3.42   -0.37    3.72    8.82   14.35
+   145.0    0.00   -0.29   -0.99   -2.04   -3.33   -4.76   -6.21   -7.51   -8.49   -9.01   -8.97   -8.38   -7.26   -5.64   -3.42   -0.39    3.67    8.74   14.32
+   150.0    0.00   -0.29   -1.00   -2.03   -3.32   -4.74   -6.19   -7.50   -8.49   -9.02   -8.99   -8.39   -7.26   -5.62   -3.39   -0.37    3.65    8.68   14.29
+   155.0    0.00   -0.29   -1.00   -2.03   -3.30   -4.72   -6.17   -7.48   -8.48   -9.01   -8.99   -8.38   -7.24   -5.58   -3.34   -0.33    3.65    8.64   14.24
+   160.0    0.00   -0.30   -1.00   -2.03   -3.29   -4.71   -6.15   -7.46   -8.46   -9.00   -8.97   -8.36   -7.20   -5.53   -3.27   -0.26    3.69    8.61   14.18
+   165.0    0.00   -0.30   -1.00   -2.02   -3.28   -4.69   -6.13   -7.44   -8.44   -8.98   -8.94   -8.32   -7.16   -5.47   -3.20   -0.19    3.73    8.60   14.10
+   170.0    0.00   -0.30   -1.00   -2.02   -3.28   -4.68   -6.12   -7.42   -8.42   -8.94   -8.90   -8.28   -7.11   -5.41   -3.12   -0.11    3.79    8.59   14.02
+   175.0    0.00   -0.30   -1.00   -2.01   -3.27   -4.68   -6.11   -7.41   -8.39   -8.91   -8.86   -8.23   -7.06   -5.35   -3.06   -0.04    3.84    8.60   13.96
+   180.0    0.00   -0.30   -0.99   -2.01   -3.27   -4.68   -6.10   -7.39   -8.36   -8.86   -8.81   -8.18   -7.01   -5.30   -3.01    0.02    3.89    8.61   13.91
+   185.0    0.00   -0.30   -0.99   -2.01   -3.27   -4.67   -6.10   -7.38   -8.33   -8.82   -8.75   -8.12   -6.96   -5.27   -2.97    0.05    3.93    8.63   13.90
+   190.0    0.00   -0.30   -0.99   -2.01   -3.27   -4.67   -6.09   -7.36   -8.30   -8.77   -8.70   -8.07   -6.92   -5.24   -2.95    0.07    3.95    8.66   13.94
+   195.0    0.00   -0.29   -0.98   -2.00   -3.26   -4.67   -6.09   -7.35   -8.27   -8.73   -8.64   -8.02   -6.89   -5.22   -2.95    0.08    3.97    8.71   14.02
+   200.0    0.00   -0.29   -0.98   -1.99   -3.26   -4.66   -6.08   -7.33   -8.24   -8.68   -8.59   -7.98   -6.86   -5.21   -2.95    0.07    3.99    8.76   14.15
+   205.0    0.00   -0.29   -0.97   -1.99   -3.25   -4.65   -6.06   -7.30   -8.20   -8.64   -8.55   -7.94   -6.83   -5.21   -2.96    0.07    4.01    8.84   14.32
+   210.0    0.00   -0.29   -0.97   -1.98   -3.24   -4.64   -6.04   -7.27   -8.17   -8.60   -8.51   -7.90   -6.81   -5.20   -2.97    0.06    4.03    8.93   14.51
+   215.0    0.00   -0.28   -0.96   -1.97   -3.22   -4.62   -6.01   -7.24   -8.13   -8.55   -8.47   -7.87   -6.79   -5.19   -2.96    0.08    4.08    9.04   14.71
+   220.0    0.00   -0.28   -0.95   -1.96   -3.20   -4.59   -5.98   -7.20   -8.08   -8.51   -8.43   -7.84   -6.77   -5.17   -2.94    0.11    4.14    9.16   14.90
+   225.0    0.00   -0.27   -0.95   -1.94   -3.19   -4.56   -5.94   -7.15   -8.04   -8.47   -8.40   -7.82   -6.75   -5.15   -2.91    0.16    4.23    9.29   15.07
+   230.0    0.00   -0.27   -0.94   -1.93   -3.17   -4.53   -5.90   -7.11   -7.99   -8.43   -8.37   -7.80   -6.73   -5.12   -2.86    0.24    4.34    9.43   15.19
+   235.0    0.00   -0.27   -0.93   -1.92   -3.15   -4.51   -5.86   -7.06   -7.95   -8.40   -8.35   -7.78   -6.71   -5.09   -2.80    0.33    4.46    9.55   15.25
+   240.0    0.00   -0.26   -0.92   -1.91   -3.13   -4.48   -5.83   -7.03   -7.91   -8.37   -8.33   -7.77   -6.69   -5.05   -2.74    0.43    4.59    9.67   15.26
+   245.0    0.00   -0.26   -0.91   -1.90   -3.12   -4.46   -5.81   -7.00   -7.88   -8.35   -8.31   -7.76   -6.67   -5.02   -2.67    0.53    4.71    9.77   15.22
+   250.0    0.00   -0.25   -0.91   -1.89   -3.11   -4.45   -5.79   -6.98   -7.87   -8.33   -8.30   -7.75   -6.66   -4.98   -2.61    0.62    4.81    9.83   15.13
+   255.0    0.00   -0.25   -0.90   -1.88   -3.11   -4.45   -5.79   -6.98   -7.86   -8.32   -8.30   -7.74   -6.65   -4.96   -2.57    0.68    4.89    9.86   14.99
+   260.0    0.00   -0.24   -0.89   -1.88   -3.11   -4.46   -5.81   -6.99   -7.87   -8.33   -8.30   -7.74   -6.64   -4.95   -2.54    0.72    4.92    9.86   14.83
+   265.0    0.00   -0.24   -0.89   -1.88   -3.12   -4.49   -5.83   -7.02   -7.89   -8.35   -8.30   -7.74   -6.64   -4.94   -2.54    0.72    4.91    9.81   14.66
+   270.0    0.00   -0.23   -0.88   -1.89   -3.14   -4.52   -5.87   -7.06   -7.93   -8.37   -8.32   -7.75   -6.64   -4.96   -2.57    0.68    4.86    9.71   14.48
+   275.0    0.00   -0.23   -0.88   -1.89   -3.16   -4.55   -5.93   -7.12   -7.98   -8.41   -8.35   -7.76   -6.66   -4.98   -2.61    0.61    4.76    9.59   14.31
+   280.0    0.00   -0.22   -0.88   -1.90   -3.18   -4.60   -5.98   -7.18   -8.04   -8.46   -8.38   -7.79   -6.69   -5.02   -2.68    0.51    4.62    9.43   14.15
+   285.0    0.00   -0.22   -0.88   -1.91   -3.21   -4.64   -6.04   -7.25   -8.10   -8.51   -8.42   -7.82   -6.72   -5.07   -2.76    0.38    4.45    9.25   14.00
+   290.0    0.00   -0.21   -0.88   -1.92   -3.24   -4.69   -6.10   -7.31   -8.17   -8.57   -8.47   -7.87   -6.77   -5.13   -2.85    0.25    4.27    9.05   13.88
+   295.0    0.00   -0.21   -0.87   -1.93   -3.26   -4.73   -6.16   -7.37   -8.23   -8.63   -8.52   -7.92   -6.82   -5.20   -2.95    0.11    4.09    8.86   13.78
+   300.0    0.00   -0.21   -0.87   -1.94   -3.29   -4.77   -6.21   -7.43   -8.28   -8.68   -8.57   -7.97   -6.88   -5.27   -3.04   -0.01    3.93    8.68   13.70
+   305.0    0.00   -0.20   -0.87   -1.94   -3.31   -4.80   -6.25   -7.47   -8.33   -8.73   -8.63   -8.03   -6.95   -5.34   -3.12   -0.12    3.78    8.53   13.64
+   310.0    0.00   -0.20   -0.87   -1.95   -3.32   -4.83   -6.28   -7.50   -8.36   -8.76   -8.68   -8.10   -7.02   -5.41   -3.19   -0.20    3.67    8.40   13.62
+   315.0    0.00   -0.19   -0.86   -1.95   -3.33   -4.84   -6.30   -7.52   -8.38   -8.79   -8.72   -8.15   -7.08   -5.47   -3.24   -0.26    3.59    8.32   13.62
+   320.0    0.00   -0.19   -0.86   -1.95   -3.34   -4.86   -6.31   -7.53   -8.38   -8.81   -8.75   -8.20   -7.14   -5.52   -3.28   -0.29    3.56    8.27   13.65
+   325.0    0.00   -0.19   -0.86   -1.96   -3.35   -4.87   -6.31   -7.53   -8.38   -8.81   -8.77   -8.24   -7.19   -5.56   -3.30   -0.29    3.55    8.27   13.72
+   330.0    0.00   -0.18   -0.86   -1.96   -3.36   -4.87   -6.32   -7.52   -8.38   -8.81   -8.78   -8.27   -7.22   -5.59   -3.30   -0.27    3.58    8.30   13.81
+   335.0    0.00   -0.18   -0.85   -1.96   -3.36   -4.88   -6.32   -7.52   -8.37   -8.80   -8.78   -8.28   -7.24   -5.60   -3.29   -0.23    3.64    8.36   13.93
+   340.0    0.00   -0.18   -0.85   -1.95   -3.36   -4.89   -6.33   -7.52   -8.36   -8.78   -8.77   -8.27   -7.24   -5.59   -3.26   -0.18    3.70    8.44   14.06
+   345.0    0.00   -0.18   -0.84   -1.95   -3.36   -4.89   -6.33   -7.52   -8.35   -8.77   -8.75   -8.25   -7.22   -5.57   -3.23   -0.13    3.78    8.54   14.21
+   350.0    0.00   -0.17   -0.84   -1.95   -3.37   -4.90   -6.35   -7.53   -8.35   -8.75   -8.72   -8.22   -7.19   -5.54   -3.19   -0.07    3.85    8.63   14.35
+   355.0    0.00   -0.17   -0.84   -1.95   -3.37   -4.91   -6.36   -7.54   -8.35   -8.74   -8.69   -8.19   -7.15   -5.50   -3.14   -0.01    3.92    8.71   14.48
+   360.0    0.00   -0.17   -0.83   -1.94   -3.37   -4.92   -6.37   -7.56   -8.36   -8.73   -8.67   -8.14   -7.10   -5.45   -3.09    0.04    3.98    8.79   14.58
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.32      1.36    119.82                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.17   -0.65   -1.32   -2.08   -2.85   -3.60   -4.33   -4.98   -5.42   -5.48   -5.04   -4.09   -2.77   -1.28    0.31    2.16    4.73    8.57
+     0.0    0.00   -0.10   -0.53   -1.21   -2.02   -2.86   -3.68   -4.44   -5.08   -5.53   -5.64   -5.29   -4.44   -3.16   -1.59    0.17    2.25    5.09    9.46
+     5.0    0.00   -0.10   -0.55   -1.24   -2.05   -2.89   -3.68   -4.41   -5.04   -5.50   -5.63   -5.32   -4.48   -3.17   -1.54    0.30    2.44    5.31    9.71
+    10.0    0.00   -0.11   -0.56   -1.26   -2.08   -2.91   -3.69   -4.39   -5.01   -5.46   -5.61   -5.32   -4.49   -3.16   -1.49    0.40    2.57    5.43    9.82
+    15.0    0.00   -0.12   -0.58   -1.29   -2.11   -2.94   -3.69   -4.38   -4.98   -5.42   -5.58   -5.30   -4.47   -3.12   -1.42    0.48    2.63    5.45    9.81
+    20.0    0.00   -0.12   -0.59   -1.31   -2.14   -2.96   -3.70   -4.37   -4.95   -5.39   -5.54   -5.25   -4.41   -3.06   -1.37    0.51    2.61    5.37    9.71
+    25.0    0.00   -0.13   -0.61   -1.33   -2.17   -2.98   -3.71   -4.37   -4.94   -5.36   -5.50   -5.19   -4.34   -2.99   -1.32    0.50    2.53    5.23    9.56
+    30.0    0.00   -0.14   -0.62   -1.35   -2.18   -2.99   -3.73   -4.37   -4.94   -5.34   -5.45   -5.11   -4.24   -2.90   -1.28    0.46    2.41    5.06    9.40
+    35.0    0.00   -0.14   -0.63   -1.37   -2.20   -3.00   -3.73   -4.38   -4.94   -5.33   -5.41   -5.03   -4.13   -2.80   -1.24    0.41    2.27    4.91    9.28
+    40.0    0.00   -0.15   -0.64   -1.37   -2.20   -3.01   -3.74   -4.39   -4.95   -5.33   -5.38   -4.96   -4.03   -2.71   -1.20    0.37    2.17    4.80    9.22
+    45.0    0.00   -0.15   -0.65   -1.38   -2.20   -3.00   -3.74   -4.41   -4.97   -5.34   -5.36   -4.90   -3.95   -2.63   -1.17    0.34    2.11    4.77    9.22
+    50.0    0.00   -0.16   -0.66   -1.38   -2.19   -2.99   -3.74   -4.42   -4.99   -5.36   -5.36   -4.87   -3.89   -2.57   -1.14    0.34    2.11    4.83    9.28
+    55.0    0.00   -0.16   -0.66   -1.38   -2.18   -2.97   -3.73   -4.42   -5.02   -5.39   -5.38   -4.86   -3.86   -2.54   -1.11    0.37    2.19    4.97    9.37
+    60.0    0.00   -0.17   -0.66   -1.37   -2.16   -2.95   -3.71   -4.43   -5.05   -5.44   -5.42   -4.89   -3.87   -2.54   -1.09    0.43    2.32    5.16    9.46
+    65.0    0.00   -0.17   -0.67   -1.36   -2.14   -2.92   -3.69   -4.44   -5.08   -5.49   -5.48   -4.95   -3.92   -2.57   -1.09    0.49    2.48    5.38    9.52
+    70.0    0.00   -0.18   -0.67   -1.35   -2.12   -2.90   -3.68   -4.44   -5.11   -5.54   -5.55   -5.02   -3.99   -2.63   -1.12    0.54    2.64    5.58    9.51
+    75.0    0.00   -0.18   -0.67   -1.34   -2.10   -2.87   -3.66   -4.44   -5.13   -5.59   -5.61   -5.10   -4.08   -2.72   -1.17    0.57    2.76    5.73    9.43
+    80.0    0.00   -0.19   -0.67   -1.34   -2.08   -2.85   -3.64   -4.43   -5.15   -5.62   -5.67   -5.18   -4.18   -2.82   -1.26    0.55    2.82    5.81    9.28
+    85.0    0.00   -0.19   -0.67   -1.33   -2.07   -2.83   -3.63   -4.43   -5.16   -5.64   -5.71   -5.24   -4.27   -2.93   -1.37    0.47    2.80    5.79    9.09
+    90.0    0.00   -0.20   -0.67   -1.33   -2.06   -2.82   -3.62   -4.42   -5.15   -5.64   -5.72   -5.27   -4.33   -3.03   -1.49    0.35    2.70    5.69    8.89
+    95.0    0.00   -0.20   -0.68   -1.32   -2.05   -2.82   -3.61   -4.42   -5.14   -5.63   -5.70   -5.27   -4.37   -3.11   -1.61    0.20    2.53    5.52    8.72
+   100.0    0.00   -0.20   -0.68   -1.32   -2.05   -2.81   -3.61   -4.40   -5.12   -5.59   -5.66   -5.24   -4.36   -3.16   -1.72    0.03    2.32    5.32    8.61
+   105.0    0.00   -0.21   -0.68   -1.33   -2.05   -2.81   -3.60   -4.39   -5.09   -5.54   -5.60   -5.18   -4.32   -3.16   -1.78   -0.11    2.11    5.11    8.59
+   110.0    0.00   -0.21   -0.69   -1.33   -2.06   -2.82   -3.60   -4.37   -5.05   -5.48   -5.52   -5.09   -4.24   -3.11   -1.79   -0.21    1.93    4.94    8.68
+   115.0    0.00   -0.21   -0.69   -1.34   -2.06   -2.82   -3.59   -4.35   -5.01   -5.42   -5.44   -4.99   -4.14   -3.01   -1.74   -0.23    1.82    4.82    8.86
+   120.0    0.00   -0.22   -0.70   -1.34   -2.07   -2.82   -3.58   -4.32   -4.96   -5.36   -5.36   -4.90   -4.02   -2.88   -1.61   -0.17    1.78    4.77    9.11
+   125.0    0.00   -0.22   -0.70   -1.35   -2.07   -2.82   -3.57   -4.29   -4.92   -5.31   -5.30   -4.82   -3.90   -2.72   -1.43   -0.03    1.84    4.78    9.37
+   130.0    0.00   -0.22   -0.71   -1.36   -2.08   -2.81   -3.55   -4.26   -4.88   -5.27   -5.26   -4.76   -3.79   -2.54   -1.21    0.19    1.97    4.83    9.60
+   135.0    0.00   -0.23   -0.72   -1.36   -2.08   -2.81   -3.53   -4.23   -4.86   -5.25   -5.25   -4.73   -3.71   -2.38   -0.96    0.45    2.15    4.91    9.76
+   140.0    0.00   -0.23   -0.72   -1.37   -2.08   -2.80   -3.51   -4.21   -4.84   -5.25   -5.27   -4.73   -3.66   -2.23   -0.73    0.71    2.34    4.96    9.80
+   145.0    0.00   -0.23   -0.73   -1.38   -2.08   -2.79   -3.49   -4.19   -4.83   -5.27   -5.30   -4.77   -3.65   -2.13   -0.53    0.95    2.50    4.96    9.70
+   150.0    0.00   -0.24   -0.73   -1.38   -2.08   -2.78   -3.47   -4.17   -4.82   -5.29   -5.35   -4.82   -3.67   -2.08   -0.41    1.10    2.60    4.89    9.48
+   155.0    0.00   -0.24   -0.74   -1.39   -2.08   -2.77   -3.46   -4.16   -4.83   -5.32   -5.41   -4.90   -3.72   -2.09   -0.36    1.16    2.59    4.73    9.15
+   160.0    0.00   -0.24   -0.74   -1.39   -2.08   -2.77   -3.45   -4.16   -4.84   -5.35   -5.47   -4.97   -3.80   -2.16   -0.42    1.11    2.49    4.51    8.77
+   165.0    0.00   -0.24   -0.74   -1.39   -2.09   -2.77   -3.45   -4.16   -4.85   -5.38   -5.52   -5.04   -3.90   -2.28   -0.56    0.94    2.29    4.24    8.39
+   170.0    0.00   -0.24   -0.74   -1.39   -2.09   -2.77   -3.46   -4.17   -4.86   -5.40   -5.55   -5.10   -4.00   -2.44   -0.77    0.68    2.01    3.97    8.07
+   175.0    0.00   -0.24   -0.74   -1.40   -2.09   -2.78   -3.46   -4.18   -4.87   -5.41   -5.56   -5.14   -4.09   -2.61   -1.04    0.36    1.70    3.72    7.86
+   180.0    0.00   -0.24   -0.75   -1.40   -2.09   -2.78   -3.47   -4.19   -4.88   -5.41   -5.56   -5.15   -4.17   -2.79   -1.32    0.03    1.40    3.54    7.80
+   185.0    0.00   -0.24   -0.75   -1.40   -2.10   -2.79   -3.49   -4.20   -4.88   -5.39   -5.54   -5.15   -4.24   -2.96   -1.59   -0.29    1.15    3.46    7.88
+   190.0    0.00   -0.24   -0.74   -1.40   -2.10   -2.79   -3.50   -4.21   -4.88   -5.38   -5.51   -5.14   -4.28   -3.09   -1.81   -0.54    0.98    3.49    8.09
+   195.0    0.00   -0.24   -0.74   -1.40   -2.10   -2.80   -3.50   -4.22   -4.88   -5.36   -5.48   -5.12   -4.30   -3.18   -1.96   -0.70    0.92    3.62    8.38
+   200.0    0.00   -0.23   -0.74   -1.40   -2.10   -2.80   -3.51   -4.22   -4.88   -5.35   -5.45   -5.09   -4.30   -3.22   -2.03   -0.75    0.98    3.84    8.71
+   205.0    0.00   -0.23   -0.74   -1.39   -2.10   -2.80   -3.51   -4.22   -4.88   -5.34   -5.44   -5.07   -4.28   -3.21   -2.02   -0.70    1.12    4.11    9.01
+   210.0    0.00   -0.23   -0.73   -1.39   -2.10   -2.80   -3.51   -4.22   -4.87   -5.33   -5.43   -5.06   -4.25   -3.16   -1.94   -0.56    1.33    4.38    9.22
+   215.0    0.00   -0.22   -0.73   -1.39   -2.09   -2.80   -3.50   -4.21   -4.87   -5.34   -5.43   -5.05   -4.22   -3.08   -1.80   -0.36    1.57    4.61    9.30
+   220.0    0.00   -0.22   -0.72   -1.38   -2.09   -2.79   -3.50   -4.21   -4.87   -5.34   -5.44   -5.05   -4.18   -2.98   -1.64   -0.15    1.80    4.76    9.23
+   225.0    0.00   -0.21   -0.72   -1.38   -2.09   -2.79   -3.49   -4.20   -4.87   -5.35   -5.45   -5.05   -4.14   -2.88   -1.47    0.06    1.98    4.81    9.01
+   230.0    0.00   -0.21   -0.71   -1.37   -2.09   -2.79   -3.49   -4.20   -4.87   -5.36   -5.46   -5.05   -4.10   -2.79   -1.33    0.23    2.10    4.77    8.69
+   235.0    0.00   -0.20   -0.70   -1.37   -2.09   -2.79   -3.49   -4.19   -4.86   -5.35   -5.47   -5.04   -4.07   -2.72   -1.22    0.34    2.13    4.64    8.30
+   240.0    0.00   -0.19   -0.69   -1.36   -2.08   -2.79   -3.49   -4.19   -4.85   -5.34   -5.46   -5.03   -4.04   -2.67   -1.15    0.38    2.10    4.46    7.91
+   245.0    0.00   -0.19   -0.68   -1.36   -2.08   -2.80   -3.49   -4.18   -4.84   -5.32   -5.43   -5.00   -4.02   -2.64   -1.13    0.37    2.02    4.27    7.58
+   250.0    0.00   -0.18   -0.67   -1.35   -2.08   -2.80   -3.49   -4.18   -4.82   -5.29   -5.39   -4.97   -4.00   -2.64   -1.14    0.33    1.93    4.11    7.35
+   255.0    0.00   -0.17   -0.66   -1.34   -2.08   -2.81   -3.50   -4.17   -4.79   -5.25   -5.35   -4.93   -3.98   -2.65   -1.18    0.27    1.86    4.03    7.25
+   260.0    0.00   -0.16   -0.65   -1.33   -2.08   -2.81   -3.50   -4.16   -4.77   -5.20   -5.30   -4.89   -3.97   -2.67   -1.22    0.23    1.84    4.04    7.28
+   265.0    0.00   -0.16   -0.63   -1.31   -2.07   -2.81   -3.51   -4.16   -4.75   -5.16   -5.25   -4.85   -3.96   -2.69   -1.25    0.23    1.89    4.15    7.42
+   270.0    0.00   -0.15   -0.62   -1.30   -2.06   -2.82   -3.52   -4.16   -4.73   -5.13   -5.20   -4.82   -3.95   -2.70   -1.26    0.27    2.02    4.35    7.62
+   275.0    0.00   -0.14   -0.60   -1.28   -2.05   -2.81   -3.52   -4.17   -4.72   -5.11   -5.17   -4.80   -3.94   -2.70   -1.23    0.36    2.21    4.61    7.84
+   280.0    0.00   -0.13   -0.58   -1.26   -2.04   -2.81   -3.53   -4.18   -4.73   -5.10   -5.16   -4.79   -3.94   -2.69   -1.18    0.49    2.43    4.88    8.01
+   285.0    0.00   -0.13   -0.57   -1.24   -2.02   -2.80   -3.54   -4.20   -4.75   -5.12   -5.17   -4.79   -3.93   -2.66   -1.11    0.64    2.66    5.12    8.09
+   290.0    0.00   -0.12   -0.55   -1.22   -2.00   -2.80   -3.55   -4.22   -4.78   -5.15   -5.20   -4.80   -3.93   -2.63   -1.03    0.78    2.85    5.28    8.05
+   295.0    0.00   -0.11   -0.54   -1.20   -1.98   -2.79   -3.56   -4.25   -4.83   -5.20   -5.24   -4.82   -3.93   -2.60   -0.96    0.89    2.97    5.34    7.89
+   300.0    0.00   -0.10   -0.52   -1.18   -1.96   -2.78   -3.57   -4.29   -4.89   -5.26   -5.29   -4.85   -3.92   -2.57   -0.91    0.95    3.00    5.27    7.63
+   305.0    0.00   -0.10   -0.51   -1.16   -1.94   -2.77   -3.58   -4.33   -4.95   -5.33   -5.34   -4.88   -3.92   -2.55   -0.90    0.94    2.93    5.10    7.31
+   310.0    0.00   -0.09   -0.50   -1.14   -1.92   -2.76   -3.60   -4.38   -5.02   -5.40   -5.40   -4.91   -3.93   -2.55   -0.92    0.85    2.76    4.85    6.99
+   315.0    0.00   -0.09   -0.49   -1.13   -1.91   -2.76   -3.62   -4.42   -5.08   -5.47   -5.45   -4.94   -3.94   -2.56   -0.98    0.71    2.53    4.55    6.73
+   320.0    0.00   -0.09   -0.48   -1.12   -1.90   -2.76   -3.63   -4.46   -5.13   -5.53   -5.50   -4.96   -3.95   -2.60   -1.08    0.53    2.26    4.27    6.58
+   325.0    0.00   -0.09   -0.48   -1.11   -1.90   -2.76   -3.65   -4.49   -5.18   -5.57   -5.54   -4.99   -3.99   -2.66   -1.19    0.34    2.01    4.04    6.58
+   330.0    0.00   -0.08   -0.48   -1.11   -1.90   -2.77   -3.66   -4.51   -5.20   -5.60   -5.57   -5.03   -4.03   -2.73   -1.31    0.16    1.80    3.91    6.75
+   335.0    0.00   -0.08   -0.48   -1.12   -1.91   -2.78   -3.67   -4.52   -5.21   -5.62   -5.59   -5.07   -4.09   -2.82   -1.43    0.02    1.67    3.90    7.08
+   340.0    0.00   -0.09   -0.49   -1.13   -1.92   -2.79   -3.67   -4.51   -5.21   -5.62   -5.61   -5.11   -4.16   -2.91   -1.52   -0.07    1.64    4.01    7.53
+   345.0    0.00   -0.09   -0.49   -1.14   -1.94   -2.80   -3.68   -4.50   -5.19   -5.61   -5.63   -5.16   -4.23   -2.99   -1.59   -0.08    1.71    4.23    8.06
+   350.0    0.00   -0.09   -0.50   -1.16   -1.96   -2.82   -3.68   -4.48   -5.16   -5.59   -5.64   -5.21   -4.31   -3.06   -1.62   -0.04    1.85    4.51    8.59
+   355.0    0.00   -0.10   -0.52   -1.18   -1.99   -2.84   -3.68   -4.46   -5.13   -5.56   -5.64   -5.26   -4.38   -3.12   -1.62    0.05    2.04    4.81    9.07
+   360.0    0.00   -0.10   -0.53   -1.21   -2.02   -2.86   -3.68   -4.44   -5.08   -5.53   -5.64   -5.29   -4.44   -3.16   -1.59    0.17    2.25    5.09    9.46
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH701945C_M    OLGA                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               1    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+Number of Calibrated Antennas GPS:      001                 COMMENT             
+Number of Individual Calibrations GPS:  001                 COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.05     -1.03     83.94                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.28   -1.07   -2.25   -3.64   -5.07   -6.40   -7.50   -8.22   -8.44   -8.05   -7.04   -5.49   -3.52   -1.23    1.48    4.96    9.69   15.99
+     0.0    0.00   -0.34   -1.19   -2.40   -3.81   -5.25   -6.58   -7.66   -8.36   -8.55   -8.13   -7.11   -5.57   -3.66   -1.45    1.20    4.61    9.21   15.19
+     5.0    0.00   -0.33   -1.17   -2.38   -3.79   -5.23   -6.55   -7.63   -8.30   -8.44   -7.97   -6.90   -5.33   -3.43   -1.27    1.29    4.58    9.03   14.82
+    10.0    0.00   -0.33   -1.16   -2.36   -3.76   -5.20   -6.53   -7.60   -8.26   -8.36   -7.83   -6.70   -5.10   -3.19   -1.05    1.44    4.64    8.96   14.54
+    15.0    0.00   -0.32   -1.15   -2.34   -3.73   -5.18   -6.52   -7.58   -8.22   -8.29   -7.72   -6.54   -4.91   -2.98   -0.84    1.63    4.78    8.99   14.40
+    20.0    0.00   -0.32   -1.13   -2.31   -3.71   -5.16   -6.50   -7.57   -8.20   -8.26   -7.66   -6.46   -4.80   -2.85   -0.69    1.82    4.98    9.15   14.43
+    25.0    0.00   -0.31   -1.12   -2.29   -3.68   -5.14   -6.48   -7.56   -8.20   -8.25   -7.66   -6.47   -4.81   -2.83   -0.61    1.97    5.21    9.42   14.67
+    30.0    0.00   -0.31   -1.10   -2.27   -3.66   -5.11   -6.46   -7.55   -8.20   -8.28   -7.72   -6.57   -4.93   -2.94   -0.65    2.06    5.44    9.78   15.08
+    35.0    0.00   -0.30   -1.09   -2.25   -3.63   -5.08   -6.44   -7.53   -8.20   -8.32   -7.83   -6.74   -5.14   -3.15   -0.78    2.07    5.65   10.18   15.63
+    40.0    0.00   -0.30   -1.08   -2.23   -3.61   -5.06   -6.41   -7.51   -8.21   -8.38   -7.97   -6.97   -5.43   -3.43   -0.99    2.02    5.81   10.57   16.26
+    45.0    0.00   -0.29   -1.07   -2.22   -3.59   -5.02   -6.37   -7.48   -8.21   -8.44   -8.12   -7.20   -5.73   -3.75   -1.24    1.91    5.91   10.92   16.89
+    50.0    0.00   -0.29   -1.06   -2.20   -3.57   -4.99   -6.33   -7.44   -8.20   -8.49   -8.24   -7.42   -6.01   -4.04   -1.47    1.79    5.94   11.17   17.45
+    55.0    0.00   -0.29   -1.05   -2.19   -3.55   -4.97   -6.30   -7.41   -8.18   -8.52   -8.33   -7.56   -6.20   -4.24   -1.66    1.66    5.91   11.31   17.87
+    60.0    0.00   -0.28   -1.05   -2.18   -3.53   -4.94   -6.26   -7.37   -8.15   -8.51   -8.36   -7.62   -6.28   -4.33   -1.75    1.57    5.83   11.31   18.11
+    65.0    0.00   -0.28   -1.04   -2.17   -3.52   -4.92   -6.23   -7.33   -8.11   -8.47   -8.32   -7.58   -6.22   -4.27   -1.72    1.52    5.70   11.16   18.13
+    70.0    0.00   -0.28   -1.04   -2.17   -3.51   -4.90   -6.20   -7.29   -8.06   -8.41   -8.22   -7.43   -6.04   -4.08   -1.58    1.53    5.54   10.89   17.94
+    75.0    0.00   -0.28   -1.04   -2.17   -3.51   -4.89   -6.18   -7.26   -8.01   -8.32   -8.08   -7.21   -5.75   -3.77   -1.35    1.59    5.36   10.52   17.58
+    80.0    0.00   -0.27   -1.04   -2.17   -3.51   -4.89   -6.17   -7.24   -7.96   -8.23   -7.91   -6.95   -5.41   -3.41   -1.08    1.66    5.17   10.09   17.08
+    85.0    0.00   -0.27   -1.04   -2.17   -3.51   -4.89   -6.17   -7.22   -7.93   -8.14   -7.74   -6.70   -5.08   -3.06   -0.80    1.74    4.97    9.64   16.52
+    90.0    0.00   -0.27   -1.04   -2.18   -3.52   -4.90   -6.18   -7.22   -7.91   -8.08   -7.62   -6.49   -4.80   -2.77   -0.59    1.78    4.77    9.21   15.97
+    95.0    0.00   -0.27   -1.04   -2.19   -3.54   -4.92   -6.19   -7.24   -7.91   -8.05   -7.55   -6.36   -4.63   -2.59   -0.47    1.77    4.58    8.84   15.47
+   100.0    0.00   -0.27   -1.05   -2.20   -3.55   -4.94   -6.22   -7.26   -7.94   -8.08   -7.56   -6.35   -4.59   -2.56   -0.48    1.68    4.39    8.54   15.08
+   105.0    0.00   -0.27   -1.05   -2.21   -3.57   -4.96   -6.25   -7.31   -7.99   -8.15   -7.65   -6.45   -4.70   -2.68   -0.61    1.52    4.22    8.35   14.83
+   110.0    0.00   -0.27   -1.06   -2.23   -3.59   -4.99   -6.29   -7.36   -8.08   -8.27   -7.81   -6.65   -4.94   -2.94   -0.86    1.32    4.07    8.25   14.73
+   115.0    0.00   -0.27   -1.06   -2.24   -3.61   -5.02   -6.33   -7.43   -8.18   -8.42   -8.02   -6.93   -5.27   -3.28   -1.18    1.09    3.96    8.25   14.75
+   120.0    0.00   -0.27   -1.07   -2.25   -3.64   -5.06   -6.38   -7.51   -8.30   -8.60   -8.26   -7.25   -5.64   -3.66   -1.51    0.87    3.90    8.34   14.88
+   125.0    0.00   -0.27   -1.07   -2.26   -3.66   -5.09   -6.44   -7.58   -8.41   -8.77   -8.50   -7.55   -5.98   -4.01   -1.79    0.70    3.89    8.48   15.07
+   130.0    0.00   -0.27   -1.08   -2.28   -3.68   -5.13   -6.49   -7.66   -8.52   -8.91   -8.69   -7.79   -6.25   -4.26   -1.99    0.62    3.95    8.66   15.28
+   135.0    0.00   -0.27   -1.08   -2.29   -3.70   -5.16   -6.54   -7.72   -8.60   -9.02   -8.82   -7.93   -6.40   -4.39   -2.06    0.64    4.07    8.85   15.49
+   140.0    0.00   -0.27   -1.08   -2.29   -3.72   -5.19   -6.57   -7.76   -8.65   -9.07   -8.87   -7.97   -6.42   -4.38   -2.00    0.76    4.23    9.04   15.66
+   145.0    0.00   -0.26   -1.08   -2.30   -3.73   -5.21   -6.59   -7.78   -8.65   -9.05   -8.82   -7.89   -6.30   -4.22   -1.81    0.96    4.43    9.20   15.78
+   150.0    0.00   -0.26   -1.08   -2.30   -3.74   -5.21   -6.59   -7.77   -8.61   -8.97   -8.70   -7.72   -6.08   -3.97   -1.55    1.21    4.64    9.34   15.86
+   155.0    0.00   -0.26   -1.08   -2.30   -3.73   -5.21   -6.58   -7.72   -8.53   -8.83   -8.50   -7.48   -5.81   -3.67   -1.25    1.47    4.84    9.45   15.90
+   160.0    0.00   -0.26   -1.07   -2.29   -3.73   -5.19   -6.54   -7.65   -8.40   -8.65   -8.28   -7.21   -5.52   -3.39   -0.99    1.70    4.99    9.53   15.91
+   165.0    0.00   -0.26   -1.07   -2.28   -3.71   -5.16   -6.48   -7.55   -8.25   -8.45   -8.04   -6.96   -5.28   -3.18   -0.81    1.84    5.10    9.58   15.92
+   170.0    0.00   -0.25   -1.06   -2.27   -3.69   -5.12   -6.41   -7.44   -8.09   -8.26   -7.83   -6.76   -5.13   -3.08   -0.75    1.88    5.13    9.61   15.95
+   175.0    0.00   -0.25   -1.05   -2.25   -3.66   -5.08   -6.34   -7.32   -7.94   -8.08   -7.66   -6.65   -5.10   -3.12   -0.83    1.80    5.10    9.63   15.99
+   180.0    0.00   -0.25   -1.04   -2.24   -3.64   -5.04   -6.27   -7.22   -7.80   -7.94   -7.56   -6.63   -5.18   -3.29   -1.04    1.63    5.02    9.65   16.07
+   185.0    0.00   -0.25   -1.03   -2.22   -3.61   -5.00   -6.21   -7.14   -7.71   -7.86   -7.53   -6.69   -5.36   -3.56   -1.34    1.38    4.91    9.68   16.17
+   190.0    0.00   -0.24   -1.02   -2.21   -3.59   -4.97   -6.17   -7.09   -7.66   -7.83   -7.56   -6.82   -5.59   -3.89   -1.69    1.12    4.79    9.72   16.28
+   195.0    0.00   -0.24   -1.01   -2.19   -3.57   -4.95   -6.16   -7.08   -7.66   -7.86   -7.65   -6.99   -5.85   -4.20   -2.00    0.89    4.70    9.78   16.40
+   200.0    0.00   -0.24   -1.01   -2.18   -3.56   -4.95   -6.18   -7.12   -7.72   -7.94   -7.76   -7.15   -6.06   -4.44   -2.23    0.73    4.67    9.86   16.51
+   205.0    0.00   -0.24   -1.00   -2.16   -3.55   -4.96   -6.22   -7.19   -7.82   -8.06   -7.89   -7.28   -6.19   -4.57   -2.33    0.69    4.70    9.97   16.61
+   210.0    0.00   -0.24   -0.99   -2.15   -3.55   -4.99   -6.28   -7.30   -7.96   -8.20   -8.00   -7.35   -6.20   -4.54   -2.26    0.78    4.82   10.09   16.68
+   215.0    0.00   -0.24   -0.99   -2.15   -3.55   -5.02   -6.36   -7.43   -8.11   -8.35   -8.09   -7.34   -6.10   -4.35   -2.04    0.99    5.00   10.23   16.74
+   220.0    0.00   -0.24   -0.98   -2.14   -3.56   -5.05   -6.44   -7.56   -8.27   -8.47   -8.14   -7.26   -5.88   -4.04   -1.69    1.31    5.23   10.37   16.79
+   225.0    0.00   -0.24   -0.98   -2.14   -3.56   -5.09   -6.52   -7.68   -8.40   -8.58   -8.14   -7.12   -5.59   -3.64   -1.27    1.67    5.48   10.49   16.83
+   230.0    0.00   -0.24   -0.98   -2.13   -3.57   -5.11   -6.58   -7.77   -8.51   -8.64   -8.11   -6.94   -5.27   -3.22   -0.84    2.02    5.70   10.60   16.87
+   235.0    0.00   -0.24   -0.98   -2.13   -3.56   -5.12   -6.61   -7.83   -8.57   -8.67   -8.05   -6.76   -4.96   -2.83   -0.46    2.31    5.86   10.66   16.91
+   240.0    0.00   -0.24   -0.98   -2.13   -3.56   -5.12   -6.62   -7.85   -8.59   -8.66   -7.98   -6.60   -4.71   -2.55   -0.20    2.49    5.93   10.66   16.94
+   245.0    0.00   -0.24   -0.98   -2.13   -3.55   -5.10   -6.59   -7.82   -8.56   -8.62   -7.90   -6.48   -4.57   -2.40   -0.09    2.52    5.89   10.61   16.96
+   250.0    0.00   -0.25   -0.99   -2.13   -3.54   -5.07   -6.54   -7.75   -8.49   -8.55   -7.84   -6.43   -4.54   -2.41   -0.16    2.39    5.73   10.48   16.94
+   255.0    0.00   -0.25   -1.00   -2.13   -3.52   -5.02   -6.47   -7.66   -8.39   -8.46   -7.79   -6.45   -4.62   -2.56   -0.38    2.13    5.48   10.30   16.88
+   260.0    0.00   -0.26   -1.01   -2.14   -3.51   -4.98   -6.39   -7.55   -8.27   -8.37   -7.77   -6.52   -4.79   -2.83   -0.71    1.77    5.15   10.06   16.77
+   265.0    0.00   -0.27   -1.02   -2.15   -3.51   -4.94   -6.30   -7.43   -8.15   -8.30   -7.77   -6.63   -5.02   -3.16   -1.10    1.37    4.79    9.78   16.58
+   270.0    0.00   -0.27   -1.04   -2.17   -3.51   -4.91   -6.24   -7.33   -8.05   -8.23   -7.79   -6.76   -5.27   -3.50   -1.49    0.98    4.45    9.50   16.33
+   275.0    0.00   -0.28   -1.05   -2.19   -3.52   -4.90   -6.19   -7.26   -7.97   -8.19   -7.83   -6.89   -5.49   -3.79   -1.81    0.67    4.16    9.23   16.03
+   280.0    0.00   -0.29   -1.07   -2.21   -3.54   -4.91   -6.17   -7.22   -7.93   -8.18   -7.87   -7.00   -5.66   -4.00   -2.02    0.48    3.98    9.01   15.70
+   285.0    0.00   -0.29   -1.09   -2.24   -3.58   -4.93   -6.18   -7.22   -7.93   -8.20   -7.92   -7.08   -5.76   -4.09   -2.09    0.43    3.92    8.87   15.38
+   290.0    0.00   -0.30   -1.11   -2.27   -3.62   -4.97   -6.22   -7.26   -7.97   -8.24   -7.97   -7.12   -5.78   -4.06   -2.02    0.53    3.99    8.81   15.11
+   295.0    0.00   -0.31   -1.13   -2.31   -3.66   -5.03   -6.28   -7.32   -8.04   -8.31   -8.02   -7.14   -5.74   -3.95   -1.83    0.75    4.17    8.86   14.92
+   300.0    0.00   -0.31   -1.15   -2.34   -3.72   -5.10   -6.36   -7.41   -8.14   -8.40   -8.08   -7.15   -5.67   -3.78   -1.57    1.05    4.43    8.99   14.84
+   305.0    0.00   -0.32   -1.17   -2.38   -3.77   -5.17   -6.45   -7.52   -8.24   -8.50   -8.15   -7.16   -5.59   -3.59   -1.29    1.39    4.74    9.20   14.88
+   310.0    0.00   -0.33   -1.18   -2.41   -3.81   -5.23   -6.53   -7.61   -8.35   -8.60   -8.23   -7.19   -5.54   -3.44   -1.05    1.69    5.06    9.45   15.03
+   315.0    0.00   -0.33   -1.20   -2.43   -3.85   -5.29   -6.61   -7.70   -8.45   -8.70   -8.32   -7.23   -5.53   -3.36   -0.88    1.93    5.33    9.72   15.27
+   320.0    0.00   -0.34   -1.21   -2.45   -3.89   -5.33   -6.66   -7.77   -8.53   -8.79   -8.40   -7.31   -5.57   -3.35   -0.81    2.06    5.52    9.96   15.57
+   325.0    0.00   -0.34   -1.21   -2.47   -3.91   -5.36   -6.70   -7.82   -8.59   -8.85   -8.48   -7.40   -5.66   -3.43   -0.85    2.08    5.61   10.14   15.86
+   330.0    0.00   -0.34   -1.22   -2.47   -3.92   -5.37   -6.72   -7.84   -8.61   -8.89   -8.54   -7.48   -5.77   -3.56   -0.97    1.99    5.60   10.24   16.11
+   335.0    0.00   -0.34   -1.22   -2.48   -3.92   -5.37   -6.71   -7.83   -8.61   -8.90   -8.57   -7.55   -5.89   -3.71   -1.15    1.83    5.49   10.24   16.26
+   340.0    0.00   -0.34   -1.22   -2.47   -3.91   -5.36   -6.70   -7.81   -8.59   -8.88   -8.57   -7.58   -5.97   -3.85   -1.34    1.62    5.32   10.13   16.28
+   345.0    0.00   -0.34   -1.21   -2.46   -3.89   -5.34   -6.67   -7.78   -8.54   -8.83   -8.51   -7.55   -5.98   -3.93   -1.49    1.42    5.10    9.95   16.17
+   350.0    0.00   -0.34   -1.21   -2.44   -3.87   -5.31   -6.64   -7.74   -8.48   -8.75   -8.42   -7.46   -5.92   -3.93   -1.57    1.27    4.89    9.71   15.92
+   355.0    0.00   -0.34   -1.20   -2.43   -3.84   -5.28   -6.60   -7.69   -8.42   -8.65   -8.29   -7.31   -5.78   -3.84   -1.55    1.19    4.72    9.45   15.58
+   360.0    0.00   -0.34   -1.19   -2.40   -3.81   -5.25   -6.58   -7.66   -8.36   -8.55   -8.13   -7.11   -5.57   -3.66   -1.45    1.20    4.61    9.21   15.19
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.69      1.20    116.56                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.18   -0.68   -1.38   -2.14   -2.89   -3.63   -4.38   -5.12   -5.74   -6.00   -5.70   -4.71   -3.08   -0.98    1.41    4.05    7.15   10.99
+     0.0    0.00   -0.23   -0.75   -1.43   -2.15   -2.82   -3.49   -4.19   -4.94   -5.63   -6.01   -5.83   -4.85   -3.07   -0.66    2.08    4.95    8.07   12.05
+     5.0    0.00   -0.22   -0.75   -1.43   -2.15   -2.83   -3.48   -4.16   -4.89   -5.56   -5.94   -5.74   -4.73   -2.90   -0.46    2.28    5.15    8.40   12.94
+    10.0    0.00   -0.22   -0.74   -1.43   -2.16   -2.84   -3.49   -4.16   -4.87   -5.52   -5.88   -5.65   -4.61   -2.75   -0.30    2.43    5.29    8.66   13.68
+    15.0    0.00   -0.21   -0.74   -1.44   -2.17   -2.86   -3.51   -4.17   -4.86   -5.48   -5.82   -5.56   -4.50   -2.62   -0.19    2.49    5.31    8.77   14.16
+    20.0    0.00   -0.21   -0.73   -1.44   -2.19   -2.89   -3.54   -4.19   -4.86   -5.46   -5.77   -5.48   -4.40   -2.54   -0.15    2.46    5.21    8.68   14.30
+    25.0    0.00   -0.20   -0.72   -1.44   -2.20   -2.92   -3.58   -4.22   -4.88   -5.45   -5.72   -5.41   -4.34   -2.51   -0.19    2.31    4.97    8.39   14.07
+    30.0    0.00   -0.20   -0.72   -1.44   -2.22   -2.95   -3.62   -4.26   -4.89   -5.43   -5.68   -5.36   -4.30   -2.54   -0.32    2.07    4.60    7.93   13.49
+    35.0    0.00   -0.19   -0.71   -1.44   -2.23   -2.98   -3.66   -4.30   -4.91   -5.42   -5.64   -5.31   -4.29   -2.61   -0.51    1.75    4.16    7.35   12.67
+    40.0    0.00   -0.19   -0.70   -1.43   -2.24   -3.00   -3.69   -4.32   -4.92   -5.41   -5.60   -5.29   -4.31   -2.72   -0.74    1.39    3.69    6.74   11.71
+    45.0    0.00   -0.18   -0.70   -1.43   -2.24   -3.01   -3.70   -4.34   -4.92   -5.39   -5.58   -5.28   -4.36   -2.86   -0.99    1.04    3.27    6.18   10.76
+    50.0    0.00   -0.18   -0.69   -1.42   -2.23   -3.01   -3.71   -4.35   -4.92   -5.38   -5.56   -5.28   -4.42   -3.01   -1.23    0.74    2.94    5.77    9.94
+    55.0    0.00   -0.17   -0.68   -1.41   -2.22   -3.00   -3.71   -4.35   -4.92   -5.38   -5.57   -5.31   -4.50   -3.15   -1.43    0.53    2.76    5.55    9.37
+    60.0    0.00   -0.17   -0.67   -1.40   -2.21   -2.99   -3.70   -4.34   -4.93   -5.39   -5.59   -5.35   -4.57   -3.27   -1.57    0.42    2.73    5.55    9.09
+    65.0    0.00   -0.16   -0.66   -1.38   -2.19   -2.97   -3.69   -4.34   -4.94   -5.42   -5.63   -5.41   -4.65   -3.36   -1.64    0.42    2.85    5.76    9.11
+    70.0    0.00   -0.16   -0.65   -1.37   -2.18   -2.96   -3.68   -4.35   -4.97   -5.46   -5.69   -5.48   -4.72   -3.41   -1.64    0.52    3.09    6.13    9.37
+    75.0    0.00   -0.15   -0.65   -1.36   -2.16   -2.94   -3.67   -4.36   -5.00   -5.53   -5.77   -5.56   -4.78   -3.42   -1.58    0.69    3.41    6.57    9.79
+    80.0    0.00   -0.15   -0.64   -1.35   -2.15   -2.93   -3.66   -4.38   -5.06   -5.61   -5.87   -5.65   -4.82   -3.41   -1.48    0.89    3.73    7.01   10.24
+    85.0    0.00   -0.15   -0.63   -1.34   -2.14   -2.92   -3.67   -4.40   -5.12   -5.70   -5.98   -5.73   -4.86   -3.37   -1.36    1.09    4.00    7.35   10.63
+    90.0    0.00   -0.15   -0.63   -1.34   -2.13   -2.92   -3.67   -4.43   -5.18   -5.79   -6.08   -5.81   -4.89   -3.32   -1.24    1.25    4.18    7.53   10.85
+    95.0    0.00   -0.14   -0.63   -1.34   -2.13   -2.92   -3.69   -4.46   -5.23   -5.87   -6.17   -5.89   -4.91   -3.27   -1.14    1.36    4.23    7.52   10.86
+   100.0    0.00   -0.14   -0.63   -1.34   -2.14   -2.93   -3.70   -4.48   -5.27   -5.93   -6.24   -5.94   -4.92   -3.24   -1.08    1.39    4.16    7.32   10.67
+   105.0    0.00   -0.14   -0.63   -1.35   -2.15   -2.93   -3.70   -4.49   -5.29   -5.97   -6.28   -5.98   -4.94   -3.22   -1.04    1.37    3.99    6.97   10.32
+   110.0    0.00   -0.14   -0.63   -1.35   -2.16   -2.94   -3.71   -4.49   -5.28   -5.97   -6.30   -6.01   -4.95   -3.21   -1.04    1.29    3.75    6.55    9.90
+   115.0    0.00   -0.14   -0.63   -1.36   -2.17   -2.95   -3.70   -4.47   -5.25   -5.94   -6.28   -6.01   -4.96   -3.22   -1.06    1.20    3.51    6.13    9.53
+   120.0    0.00   -0.14   -0.64   -1.37   -2.18   -2.96   -3.69   -4.43   -5.20   -5.88   -6.24   -6.00   -4.97   -3.23   -1.09    1.13    3.32    5.81    9.31
+   125.0    0.00   -0.14   -0.64   -1.38   -2.19   -2.96   -3.68   -4.39   -5.12   -5.80   -6.18   -5.97   -4.97   -3.24   -1.10    1.09    3.21    5.65    9.32
+   130.0    0.00   -0.14   -0.64   -1.39   -2.20   -2.97   -3.66   -4.33   -5.04   -5.71   -6.11   -5.93   -4.96   -3.24   -1.09    1.12    3.23    5.69    9.62
+   135.0    0.00   -0.14   -0.64   -1.39   -2.21   -2.96   -3.63   -4.28   -4.96   -5.62   -6.03   -5.88   -4.94   -3.22   -1.04    1.20    3.36    5.92   10.19
+   140.0    0.00   -0.14   -0.65   -1.40   -2.21   -2.96   -3.61   -4.23   -4.89   -5.54   -5.95   -5.82   -4.90   -3.18   -0.97    1.34    3.58    6.30   10.96
+   145.0    0.00   -0.14   -0.65   -1.40   -2.21   -2.95   -3.59   -4.20   -4.84   -5.47   -5.88   -5.76   -4.85   -3.12   -0.87    1.51    3.86    6.77   11.84
+   150.0    0.00   -0.14   -0.65   -1.39   -2.21   -2.95   -3.58   -4.18   -4.80   -5.42   -5.82   -5.70   -4.78   -3.04   -0.76    1.68    4.14    7.25   12.68
+   155.0    0.00   -0.14   -0.64   -1.39   -2.20   -2.94   -3.57   -4.17   -4.79   -5.39   -5.77   -5.63   -4.70   -2.96   -0.66    1.82    4.36    7.63   13.36
+   160.0    0.00   -0.14   -0.64   -1.38   -2.18   -2.92   -3.57   -4.17   -4.79   -5.38   -5.73   -5.56   -4.62   -2.88   -0.59    1.89    4.48    7.85   13.76
+   165.0    0.00   -0.14   -0.64   -1.37   -2.17   -2.91   -3.56   -4.18   -4.80   -5.38   -5.70   -5.50   -4.54   -2.81   -0.56    1.88    4.47    7.88   13.81
+   170.0    0.00   -0.14   -0.63   -1.35   -2.15   -2.89   -3.56   -4.20   -4.83   -5.39   -5.68   -5.44   -4.46   -2.77   -0.58    1.79    4.33    7.69   13.48
+   175.0    0.00   -0.14   -0.63   -1.34   -2.12   -2.87   -3.56   -4.21   -4.85   -5.40   -5.65   -5.38   -4.41   -2.76   -0.65    1.63    4.08    7.33   12.83
+   180.0    0.00   -0.14   -0.62   -1.32   -2.10   -2.85   -3.55   -4.23   -4.87   -5.40   -5.63   -5.33   -4.37   -2.78   -0.77    1.41    3.77    6.87   11.95
+   185.0    0.00   -0.15   -0.62   -1.31   -2.08   -2.83   -3.54   -4.24   -4.89   -5.41   -5.61   -5.30   -4.36   -2.83   -0.92    1.17    3.46    6.40   10.97
+   190.0    0.00   -0.15   -0.62   -1.30   -2.05   -2.81   -3.54   -4.24   -4.90   -5.41   -5.60   -5.28   -4.37   -2.91   -1.08    0.96    3.21    6.01   10.04
+   195.0    0.00   -0.15   -0.62   -1.28   -2.03   -2.79   -3.53   -4.25   -4.92   -5.42   -5.59   -5.28   -4.40   -3.00   -1.22    0.81    3.08    5.79    9.29
+   200.0    0.00   -0.15   -0.61   -1.28   -2.02   -2.78   -3.53   -4.26   -4.93   -5.44   -5.61   -5.30   -4.45   -3.09   -1.33    0.75    3.10    5.78    8.82
+   205.0    0.00   -0.16   -0.62   -1.27   -2.01   -2.77   -3.53   -4.28   -4.96   -5.46   -5.64   -5.34   -4.52   -3.18   -1.39    0.78    3.29    6.02    8.68
+   210.0    0.00   -0.16   -0.62   -1.27   -2.01   -2.77   -3.54   -4.30   -5.00   -5.51   -5.69   -5.40   -4.58   -3.24   -1.39    0.92    3.62    6.47    8.88
+   215.0    0.00   -0.16   -0.62   -1.27   -2.01   -2.78   -3.57   -4.35   -5.06   -5.58   -5.76   -5.47   -4.65   -3.27   -1.34    1.13    4.05    7.07    9.34
+   220.0    0.00   -0.17   -0.63   -1.28   -2.02   -2.80   -3.60   -4.40   -5.13   -5.66   -5.85   -5.56   -4.71   -3.27   -1.24    1.38    4.51    7.72    9.97
+   225.0    0.00   -0.17   -0.64   -1.29   -2.03   -2.82   -3.64   -4.46   -5.22   -5.77   -5.95   -5.64   -4.75   -3.24   -1.12    1.65    4.95    8.32   10.65
+   230.0    0.00   -0.18   -0.65   -1.30   -2.05   -2.85   -3.68   -4.53   -5.31   -5.88   -6.06   -5.72   -4.77   -3.19   -0.98    1.88    5.28    8.78   11.24
+   235.0    0.00   -0.18   -0.66   -1.31   -2.07   -2.87   -3.72   -4.59   -5.40   -5.99   -6.17   -5.78   -4.77   -3.12   -0.85    2.04    5.46    9.02   11.66
+   240.0    0.00   -0.19   -0.67   -1.33   -2.08   -2.89   -3.76   -4.65   -5.48   -6.09   -6.26   -5.83   -4.75   -3.03   -0.74    2.11    5.46    9.01   11.83
+   245.0    0.00   -0.19   -0.68   -1.34   -2.10   -2.91   -3.78   -4.69   -5.54   -6.17   -6.33   -5.86   -4.71   -2.95   -0.67    2.08    5.28    8.75   11.76
+   250.0    0.00   -0.20   -0.69   -1.35   -2.11   -2.91   -3.78   -4.70   -5.58   -6.21   -6.37   -5.86   -4.66   -2.87   -0.63    1.96    4.96    8.30   11.47
+   255.0    0.00   -0.20   -0.70   -1.37   -2.11   -2.91   -3.77   -4.70   -5.59   -6.23   -6.38   -5.85   -4.60   -2.80   -0.63    1.79    4.54    7.72   11.05
+   260.0    0.00   -0.21   -0.71   -1.38   -2.12   -2.90   -3.75   -4.67   -5.57   -6.22   -6.37   -5.82   -4.55   -2.75   -0.66    1.58    4.09    7.11   10.60
+   265.0    0.00   -0.21   -0.72   -1.38   -2.11   -2.88   -3.71   -4.62   -5.52   -6.18   -6.33   -5.77   -4.50   -2.72   -0.71    1.38    3.69    6.59   10.21
+   270.0    0.00   -0.22   -0.73   -1.39   -2.11   -2.86   -3.67   -4.57   -5.46   -6.13   -6.29   -5.73   -4.47   -2.71   -0.77    1.21    3.39    6.22    9.99
+   275.0    0.00   -0.22   -0.74   -1.40   -2.10   -2.83   -3.63   -4.51   -5.39   -6.07   -6.24   -5.70   -4.45   -2.72   -0.81    1.11    3.24    6.07    9.96
+   280.0    0.00   -0.23   -0.74   -1.40   -2.10   -2.81   -3.59   -4.45   -5.33   -6.01   -6.19   -5.68   -4.45   -2.74   -0.85    1.08    3.24    6.14   10.14
+   285.0    0.00   -0.23   -0.75   -1.41   -2.10   -2.80   -3.56   -4.41   -5.28   -5.96   -6.16   -5.67   -4.48   -2.79   -0.88    1.12    3.39    6.41   10.48
+   290.0    0.00   -0.24   -0.75   -1.41   -2.10   -2.79   -3.54   -4.39   -5.25   -5.93   -6.15   -5.69   -4.53   -2.85   -0.90    1.21    3.65    6.82   10.91
+   295.0    0.00   -0.24   -0.76   -1.42   -2.10   -2.80   -3.54   -4.38   -5.24   -5.93   -6.16   -5.73   -4.60   -2.93   -0.92    1.33    3.97    7.29   11.33
+   300.0    0.00   -0.24   -0.76   -1.42   -2.11   -2.81   -3.56   -4.40   -5.26   -5.94   -6.19   -5.79   -4.69   -3.02   -0.94    1.45    4.29    7.73   11.65
+   305.0    0.00   -0.24   -0.77   -1.43   -2.12   -2.82   -3.58   -4.42   -5.28   -5.97   -6.23   -5.85   -4.79   -3.12   -0.98    1.55    4.56    8.08   11.79
+   310.0    0.00   -0.24   -0.77   -1.43   -2.13   -2.84   -3.61   -4.46   -5.32   -6.01   -6.28   -5.93   -4.89   -3.22   -1.04    1.61    4.74    8.27   11.70
+   315.0    0.00   -0.24   -0.77   -1.44   -2.14   -2.86   -3.63   -4.49   -5.35   -6.04   -6.32   -6.00   -4.99   -3.33   -1.11    1.62    4.82    8.29   11.41
+   320.0    0.00   -0.24   -0.77   -1.44   -2.15   -2.87   -3.65   -4.51   -5.37   -6.06   -6.36   -6.06   -5.08   -3.43   -1.18    1.59    4.80    8.16   10.96
+   325.0    0.00   -0.24   -0.77   -1.44   -2.15   -2.88   -3.66   -4.51   -5.37   -6.06   -6.37   -6.10   -5.15   -3.51   -1.25    1.54    4.71    7.93   10.45
+   330.0    0.00   -0.24   -0.77   -1.44   -2.15   -2.88   -3.66   -4.50   -5.35   -6.04   -6.37   -6.13   -5.19   -3.56   -1.30    1.48    4.58    7.66    9.99
+   335.0    0.00   -0.24   -0.77   -1.44   -2.15   -2.88   -3.64   -4.46   -5.30   -6.00   -6.35   -6.13   -5.21   -3.57   -1.31    1.45    4.48    7.42    9.69
+   340.0    0.00   -0.24   -0.76   -1.44   -2.15   -2.87   -3.61   -4.41   -5.24   -5.94   -6.30   -6.10   -5.19   -3.55   -1.27    1.47    4.42    7.29    9.63
+   345.0    0.00   -0.24   -0.76   -1.44   -2.15   -2.85   -3.58   -4.35   -5.16   -5.86   -6.24   -6.06   -5.14   -3.48   -1.18    1.55    4.45    7.29    9.87
+   350.0    0.00   -0.23   -0.76   -1.44   -2.14   -2.84   -3.54   -4.29   -5.08   -5.78   -6.17   -5.99   -5.07   -3.37   -1.04    1.69    4.56    7.44   10.40
+   355.0    0.00   -0.23   -0.75   -1.43   -2.14   -2.83   -3.51   -4.23   -5.00   -5.70   -6.09   -5.91   -4.97   -3.23   -0.86    1.88    4.74    7.72   11.17
+   360.0    0.00   -0.23   -0.75   -1.43   -2.15   -2.82   -3.49   -4.19   -4.94   -5.63   -6.01   -5.83   -4.85   -3.07   -0.66    2.08    4.95    8.07   12.05
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH701945C_M    PFAN                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               1    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+Number of Calibrated Antennas GPS:      001                 COMMENT             
+Number of Individual Calibrations GPS:  001                 COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.25     -0.55     85.58                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.23   -0.90   -1.90   -3.12   -4.44   -5.75   -6.94   -7.88   -8.40   -8.35   -7.59   -6.09   -3.91   -1.16    2.07    5.77   10.01   14.77
+     0.0    0.00   -0.34   -1.10   -2.17   -3.41   -4.67   -5.88   -6.95   -7.79   -8.29   -8.31   -7.73   -6.46   -4.51   -1.94    1.15    4.68    8.62   13.01
+     5.0    0.00   -0.34   -1.12   -2.19   -3.40   -4.65   -5.83   -6.89   -7.73   -8.25   -8.30   -7.75   -6.50   -4.55   -1.95    1.18    4.74    8.69   13.05
+    10.0    0.00   -0.35   -1.13   -2.19   -3.39   -4.61   -5.77   -6.81   -7.66   -8.20   -8.28   -7.76   -6.53   -4.57   -1.93    1.25    4.85    8.79   13.13
+    15.0    0.00   -0.36   -1.14   -2.19   -3.37   -4.56   -5.70   -6.74   -7.59   -8.15   -8.26   -7.76   -6.54   -4.55   -1.88    1.34    4.97    8.93   13.23
+    20.0    0.00   -0.36   -1.14   -2.18   -3.34   -4.51   -5.63   -6.66   -7.52   -8.10   -8.24   -7.75   -6.52   -4.51   -1.81    1.45    5.11    9.08   13.39
+    25.0    0.00   -0.37   -1.14   -2.17   -3.31   -4.46   -5.57   -6.59   -7.47   -8.06   -8.20   -7.72   -6.47   -4.44   -1.71    1.57    5.25    9.25   13.61
+    30.0    0.00   -0.37   -1.14   -2.15   -3.27   -4.41   -5.50   -6.53   -7.41   -8.02   -8.17   -7.67   -6.41   -4.35   -1.61    1.69    5.38    9.43   13.88
+    35.0    0.00   -0.37   -1.13   -2.13   -3.23   -4.35   -5.45   -6.48   -7.37   -7.99   -8.13   -7.62   -6.33   -4.26   -1.50    1.79    5.51    9.61   14.20
+    40.0    0.00   -0.37   -1.12   -2.11   -3.20   -4.30   -5.39   -6.43   -7.34   -7.96   -8.10   -7.57   -6.25   -4.16   -1.40    1.89    5.61    9.80   14.56
+    45.0    0.00   -0.37   -1.11   -2.08   -3.16   -4.26   -5.35   -6.39   -7.31   -7.94   -8.08   -7.53   -6.19   -4.07   -1.31    1.97    5.71    9.98   14.94
+    50.0    0.00   -0.37   -1.10   -2.06   -3.12   -4.21   -5.30   -6.36   -7.29   -7.93   -8.07   -7.50   -6.14   -4.01   -1.24    2.04    5.79   10.14   15.30
+    55.0    0.00   -0.36   -1.09   -2.03   -3.08   -4.17   -5.26   -6.33   -7.28   -7.93   -8.07   -7.50   -6.11   -3.96   -1.18    2.10    5.86   10.29   15.61
+    60.0    0.00   -0.36   -1.07   -2.01   -3.04   -4.12   -5.22   -6.30   -7.26   -7.94   -8.09   -7.51   -6.11   -3.94   -1.15    2.14    5.93   10.40   15.85
+    65.0    0.00   -0.35   -1.06   -1.98   -3.01   -4.08   -5.18   -6.27   -7.25   -7.94   -8.11   -7.54   -6.13   -3.94   -1.12    2.18    5.97   10.47   15.99
+    70.0    0.00   -0.35   -1.04   -1.95   -2.97   -4.04   -5.14   -6.23   -7.23   -7.95   -8.14   -7.58   -6.17   -3.95   -1.10    2.21    6.00   10.49   16.03
+    75.0    0.00   -0.34   -1.03   -1.93   -2.94   -4.00   -5.10   -6.20   -7.21   -7.95   -8.17   -7.62   -6.20   -3.96   -1.09    2.23    6.01   10.46   15.96
+    80.0    0.00   -0.33   -1.01   -1.91   -2.91   -3.97   -5.06   -6.17   -7.19   -7.95   -8.19   -7.65   -6.23   -3.97   -1.08    2.24    5.98   10.37   15.80
+    85.0    0.00   -0.33   -1.00   -1.89   -2.89   -3.95   -5.04   -6.14   -7.18   -7.95   -8.20   -7.67   -6.24   -3.97   -1.07    2.24    5.92   10.23   15.58
+    90.0    0.00   -0.32   -0.98   -1.87   -2.88   -3.93   -5.02   -6.13   -7.17   -7.95   -8.20   -7.67   -6.23   -3.95   -1.06    2.21    5.83   10.06   15.34
+    95.0    0.00   -0.31   -0.97   -1.86   -2.87   -3.93   -5.03   -6.14   -7.17   -7.94   -8.19   -7.65   -6.20   -3.92   -1.05    2.17    5.71    9.87   15.10
+   100.0    0.00   -0.30   -0.96   -1.85   -2.87   -3.95   -5.05   -6.16   -7.19   -7.95   -8.17   -7.60   -6.14   -3.88   -1.05    2.10    5.57    9.69   14.92
+   105.0    0.00   -0.30   -0.95   -1.85   -2.88   -3.97   -5.09   -6.21   -7.23   -7.96   -8.15   -7.55   -6.08   -3.83   -1.06    2.02    5.43    9.53   14.81
+   110.0    0.00   -0.29   -0.94   -1.85   -2.90   -4.02   -5.16   -6.28   -7.29   -7.99   -8.13   -7.49   -6.01   -3.79   -1.09    1.92    5.29    9.41   14.78
+   115.0    0.00   -0.28   -0.93   -1.86   -2.93   -4.08   -5.24   -6.37   -7.37   -8.03   -8.12   -7.45   -5.95   -3.76   -1.12    1.82    5.18    9.35   14.84
+   120.0    0.00   -0.27   -0.93   -1.87   -2.97   -4.15   -5.34   -6.49   -7.46   -8.08   -8.13   -7.41   -5.91   -3.76   -1.17    1.73    5.10    9.36   14.96
+   125.0    0.00   -0.26   -0.92   -1.88   -3.01   -4.23   -5.45   -6.61   -7.57   -8.16   -8.15   -7.40   -5.90   -3.77   -1.23    1.66    5.06    9.42   15.13
+   130.0    0.00   -0.26   -0.92   -1.89   -3.06   -4.31   -5.57   -6.74   -7.69   -8.24   -8.19   -7.42   -5.91   -3.81   -1.29    1.61    5.08    9.53   15.30
+   135.0    0.00   -0.25   -0.91   -1.91   -3.11   -4.40   -5.69   -6.87   -7.81   -8.33   -8.25   -7.45   -5.95   -3.87   -1.35    1.58    5.13    9.68   15.43
+   140.0    0.00   -0.24   -0.91   -1.92   -3.15   -4.48   -5.80   -7.00   -7.93   -8.42   -8.31   -7.51   -6.01   -3.94   -1.41    1.58    5.22    9.82   15.50
+   145.0    0.00   -0.23   -0.91   -1.94   -3.20   -4.57   -5.91   -7.11   -8.03   -8.50   -8.38   -7.57   -6.09   -4.02   -1.45    1.61    5.33    9.95   15.49
+   150.0    0.00   -0.22   -0.90   -1.95   -3.24   -4.64   -6.01   -7.22   -8.13   -8.58   -8.45   -7.64   -6.16   -4.09   -1.48    1.65    5.44   10.04   15.38
+   155.0    0.00   -0.22   -0.90   -1.96   -3.28   -4.70   -6.09   -7.30   -8.20   -8.65   -8.51   -7.70   -6.23   -4.14   -1.50    1.70    5.53   10.07   15.17
+   160.0    0.00   -0.21   -0.90   -1.97   -3.31   -4.76   -6.16   -7.37   -8.27   -8.70   -8.56   -7.76   -6.28   -4.18   -1.50    1.75    5.58   10.03   14.90
+   165.0    0.00   -0.20   -0.89   -1.98   -3.34   -4.80   -6.21   -7.43   -8.32   -8.74   -8.59   -7.80   -6.32   -4.20   -1.48    1.79    5.60    9.93   14.60
+   170.0    0.00   -0.19   -0.88   -1.98   -3.36   -4.83   -6.26   -7.47   -8.35   -8.77   -8.62   -7.82   -6.34   -4.19   -1.45    1.82    5.57    9.77   14.29
+   175.0    0.00   -0.18   -0.87   -1.98   -3.37   -4.86   -6.29   -7.51   -8.38   -8.80   -8.64   -7.84   -6.34   -4.17   -1.42    1.83    5.51    9.59   14.02
+   180.0    0.00   -0.18   -0.87   -1.98   -3.37   -4.87   -6.31   -7.53   -8.41   -8.82   -8.66   -7.84   -6.33   -4.15   -1.39    1.83    5.43    9.40   13.82
+   185.0    0.00   -0.17   -0.86   -1.97   -3.38   -4.88   -6.32   -7.55   -8.43   -8.84   -8.68   -7.85   -6.32   -4.11   -1.35    1.83    5.34    9.24   13.72
+   190.0    0.00   -0.16   -0.84   -1.96   -3.37   -4.88   -6.33   -7.55   -8.44   -8.86   -8.70   -7.86   -6.31   -4.08   -1.31    1.84    5.28    9.13   13.72
+   195.0    0.00   -0.15   -0.83   -1.95   -3.36   -4.87   -6.32   -7.56   -8.45   -8.88   -8.73   -7.88   -6.31   -4.05   -1.27    1.86    5.26    9.09   13.82
+   200.0    0.00   -0.15   -0.82   -1.94   -3.34   -4.86   -6.31   -7.55   -8.46   -8.90   -8.75   -7.90   -6.31   -4.03   -1.23    1.91    5.30    9.13   14.01
+   205.0    0.00   -0.14   -0.81   -1.92   -3.32   -4.84   -6.29   -7.54   -8.46   -8.91   -8.77   -7.93   -6.32   -4.01   -1.17    1.99    5.40    9.27   14.26
+   210.0    0.00   -0.13   -0.79   -1.90   -3.30   -4.82   -6.27   -7.52   -8.45   -8.91   -8.79   -7.94   -6.32   -3.98   -1.10    2.11    5.56    9.48   14.55
+   215.0    0.00   -0.13   -0.78   -1.88   -3.27   -4.79   -6.24   -7.50   -8.43   -8.90   -8.78   -7.94   -6.31   -3.94   -1.01    2.26    5.78    9.75   14.84
+   220.0    0.00   -0.12   -0.76   -1.85   -3.25   -4.75   -6.21   -7.46   -8.40   -8.88   -8.76   -7.91   -6.27   -3.88   -0.91    2.44    6.04   10.07   15.11
+   225.0    0.00   -0.12   -0.75   -1.83   -3.22   -4.72   -6.17   -7.43   -8.36   -8.83   -8.71   -7.86   -6.21   -3.80   -0.79    2.62    6.31   10.40   15.35
+   230.0    0.00   -0.11   -0.74   -1.81   -3.19   -4.69   -6.14   -7.39   -8.31   -8.77   -8.64   -7.77   -6.12   -3.70   -0.67    2.81    6.58   10.72   15.54
+   235.0    0.00   -0.11   -0.72   -1.79   -3.16   -4.66   -6.11   -7.36   -8.27   -8.70   -8.54   -7.66   -6.00   -3.59   -0.54    2.97    6.82   11.01   15.69
+   240.0    0.00   -0.11   -0.71   -1.76   -3.13   -4.62   -6.08   -7.32   -8.22   -8.63   -8.43   -7.52   -5.85   -3.46   -0.43    3.10    7.01   11.26   15.80
+   245.0    0.00   -0.10   -0.70   -1.74   -3.10   -4.59   -6.05   -7.30   -8.18   -8.56   -8.32   -7.37   -5.70   -3.32   -0.33    3.19    7.15   11.45   15.88
+   250.0    0.00   -0.10   -0.70   -1.73   -3.07   -4.57   -6.03   -7.28   -8.15   -8.50   -8.21   -7.23   -5.54   -3.21   -0.27    3.22    7.22   11.58   15.94
+   255.0    0.00   -0.10   -0.69   -1.71   -3.05   -4.54   -6.01   -7.26   -8.13   -8.45   -8.12   -7.10   -5.41   -3.11   -0.24    3.21    7.23   11.66   15.99
+   260.0    0.00   -0.11   -0.69   -1.70   -3.03   -4.52   -5.99   -7.26   -8.12   -8.43   -8.06   -7.01   -5.32   -3.05   -0.24    3.16    7.20   11.70   16.03
+   265.0    0.00   -0.11   -0.69   -1.69   -3.01   -4.49   -5.98   -7.25   -8.13   -8.43   -8.04   -6.97   -5.27   -3.04   -0.28    3.07    7.12   11.70   16.05
+   270.0    0.00   -0.12   -0.69   -1.68   -2.99   -4.47   -5.96   -7.25   -8.14   -8.45   -8.06   -6.97   -5.28   -3.07   -0.36    2.97    7.03   11.67   16.06
+   275.0    0.00   -0.12   -0.70   -1.68   -2.98   -4.45   -5.95   -7.26   -8.17   -8.49   -8.11   -7.03   -5.34   -3.14   -0.46    2.85    6.92   11.61   16.03
+   280.0    0.00   -0.13   -0.71   -1.68   -2.97   -4.44   -5.93   -7.26   -8.20   -8.55   -8.20   -7.13   -5.44   -3.25   -0.57    2.74    6.82   11.53   15.95
+   285.0    0.00   -0.14   -0.72   -1.69   -2.96   -4.42   -5.91   -7.25   -8.22   -8.62   -8.30   -7.26   -5.58   -3.39   -0.69    2.63    6.72   11.43   15.82
+   290.0    0.00   -0.15   -0.73   -1.70   -2.97   -4.41   -5.90   -7.25   -8.24   -8.68   -8.41   -7.41   -5.74   -3.53   -0.81    2.53    6.62   11.30   15.63
+   295.0    0.00   -0.16   -0.75   -1.72   -2.98   -4.41   -5.89   -7.24   -8.26   -8.74   -8.52   -7.55   -5.90   -3.68   -0.92    2.45    6.52   11.13   15.38
+   300.0    0.00   -0.17   -0.78   -1.75   -3.00   -4.42   -5.88   -7.22   -8.26   -8.78   -8.61   -7.68   -6.05   -3.81   -1.02    2.37    6.41   10.94   15.08
+   305.0    0.00   -0.18   -0.80   -1.78   -3.02   -4.43   -5.87   -7.21   -8.26   -8.80   -8.67   -7.78   -6.16   -3.91   -1.10    2.28    6.28   10.70   14.76
+   310.0    0.00   -0.20   -0.83   -1.82   -3.06   -4.45   -5.88   -7.20   -8.24   -8.80   -8.70   -7.84   -6.25   -4.00   -1.18    2.20    6.13   10.44   14.42
+   315.0    0.00   -0.21   -0.86   -1.85   -3.10   -4.48   -5.89   -7.19   -8.22   -8.78   -8.70   -7.87   -6.30   -4.06   -1.25    2.09    5.95   10.15   14.09
+   320.0    0.00   -0.23   -0.89   -1.90   -3.14   -4.52   -5.90   -7.18   -8.19   -8.74   -8.67   -7.87   -6.32   -4.11   -1.32    1.97    5.75    9.86   13.79
+   325.0    0.00   -0.24   -0.92   -1.94   -3.19   -4.55   -5.92   -7.17   -8.15   -8.69   -8.62   -7.84   -6.32   -4.14   -1.40    1.84    5.53    9.56   13.54
+   330.0    0.00   -0.26   -0.95   -1.99   -3.24   -4.59   -5.94   -7.16   -8.11   -8.63   -8.56   -7.80   -6.31   -4.17   -1.48    1.70    5.31    9.29   13.33
+   335.0    0.00   -0.27   -0.98   -2.03   -3.29   -4.63   -5.96   -7.15   -8.07   -8.57   -8.50   -7.75   -6.31   -4.21   -1.57    1.55    5.10    9.05   13.18
+   340.0    0.00   -0.29   -1.01   -2.07   -3.33   -4.66   -5.97   -7.13   -8.02   -8.51   -8.44   -7.72   -6.31   -4.26   -1.66    1.42    4.92    8.85   13.08
+   345.0    0.00   -0.30   -1.04   -2.10   -3.36   -4.68   -5.96   -7.10   -7.97   -8.45   -8.39   -7.70   -6.33   -4.32   -1.75    1.30    4.78    8.71   13.02
+   350.0    0.00   -0.31   -1.06   -2.13   -3.39   -4.69   -5.95   -7.06   -7.92   -8.39   -8.36   -7.70   -6.36   -4.38   -1.83    1.21    4.70    8.62   12.99
+   355.0    0.00   -0.32   -1.09   -2.16   -3.40   -4.69   -5.92   -7.01   -7.86   -8.34   -8.33   -7.71   -6.41   -4.45   -1.89    1.16    4.66    8.59   12.99
+   360.0    0.00   -0.34   -1.10   -2.17   -3.41   -4.67   -5.88   -6.95   -7.79   -8.29   -8.31   -7.73   -6.46   -4.51   -1.94    1.15    4.68    8.62   13.01
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.02      1.65    118.14                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.13   -0.51   -1.06   -1.70   -2.35   -2.98   -3.56   -4.10   -4.57   -4.92   -5.04   -4.75   -3.87   -2.19    0.39    3.86    7.99   12.30
+     0.0    0.00   -0.27   -0.76   -1.39   -2.09   -2.78   -3.40   -3.92   -4.33   -4.67   -4.94   -5.08   -4.91   -4.16   -2.57   -0.11    2.89    5.72    7.50
+     5.0    0.00   -0.28   -0.77   -1.40   -2.09   -2.76   -3.36   -3.85   -4.24   -4.57   -4.84   -5.00   -4.85   -4.15   -2.65   -0.33    2.53    5.30    7.21
+    10.0    0.00   -0.28   -0.77   -1.40   -2.08   -2.73   -3.30   -3.76   -4.14   -4.46   -4.75   -4.91   -4.78   -4.10   -2.68   -0.48    2.25    4.97    7.02
+    15.0    0.00   -0.29   -0.78   -1.40   -2.06   -2.69   -3.22   -3.66   -4.03   -4.36   -4.65   -4.82   -4.69   -4.03   -2.66   -0.55    2.08    4.78    6.99
+    20.0    0.00   -0.29   -0.78   -1.40   -2.04   -2.64   -3.15   -3.57   -3.94   -4.28   -4.57   -4.73   -4.58   -3.91   -2.57   -0.52    2.05    4.77    7.16
+    25.0    0.00   -0.29   -0.78   -1.39   -2.02   -2.59   -3.07   -3.48   -3.86   -4.21   -4.50   -4.64   -4.46   -3.77   -2.42   -0.40    2.17    4.96    7.57
+    30.0    0.00   -0.29   -0.78   -1.38   -1.99   -2.54   -3.01   -3.42   -3.80   -4.15   -4.45   -4.56   -4.34   -3.61   -2.24   -0.20    2.41    5.34    8.20
+    35.0    0.00   -0.29   -0.78   -1.37   -1.97   -2.50   -2.97   -3.37   -3.76   -4.12   -4.41   -4.49   -4.22   -3.44   -2.04    0.04    2.75    5.88    9.01
+    40.0    0.00   -0.29   -0.77   -1.36   -1.95   -2.47   -2.94   -3.35   -3.75   -4.11   -4.38   -4.42   -4.11   -3.30   -1.87    0.28    3.13    6.52    9.93
+    45.0    0.00   -0.28   -0.77   -1.35   -1.93   -2.45   -2.92   -3.35   -3.76   -4.12   -4.36   -4.38   -4.04   -3.20   -1.74    0.48    3.51    7.17   10.85
+    50.0    0.00   -0.28   -0.76   -1.33   -1.91   -2.44   -2.92   -3.36   -3.77   -4.13   -4.36   -4.35   -4.00   -3.16   -1.68    0.62    3.83    7.76   11.67
+    55.0    0.00   -0.27   -0.75   -1.32   -1.90   -2.43   -2.92   -3.37   -3.80   -4.15   -4.37   -4.35   -4.01   -3.19   -1.71    0.65    4.03    8.21   12.28
+    60.0    0.00   -0.27   -0.74   -1.30   -1.88   -2.42   -2.92   -3.39   -3.82   -4.17   -4.39   -4.39   -4.07   -3.28   -1.82    0.58    4.10    8.46   12.61
+    65.0    0.00   -0.26   -0.72   -1.29   -1.87   -2.41   -2.92   -3.39   -3.83   -4.19   -4.42   -4.44   -4.17   -3.44   -2.01    0.41    4.01    8.49   12.63
+    70.0    0.00   -0.25   -0.71   -1.27   -1.85   -2.40   -2.91   -3.39   -3.83   -4.21   -4.46   -4.53   -4.31   -3.64   -2.26    0.16    3.79    8.29   12.35
+    75.0    0.00   -0.24   -0.69   -1.25   -1.83   -2.38   -2.89   -3.38   -3.83   -4.23   -4.52   -4.64   -4.48   -3.87   -2.53   -0.13    3.47    7.92   11.84
+    80.0    0.00   -0.23   -0.68   -1.23   -1.81   -2.36   -2.87   -3.35   -3.82   -4.24   -4.58   -4.75   -4.65   -4.09   -2.78   -0.43    3.10    7.42   11.20
+    85.0    0.00   -0.22   -0.66   -1.21   -1.79   -2.33   -2.83   -3.32   -3.80   -4.26   -4.65   -4.87   -4.81   -4.27   -2.99   -0.70    2.72    6.90   10.57
+    90.0    0.00   -0.21   -0.64   -1.19   -1.76   -2.30   -2.80   -3.29   -3.79   -4.29   -4.72   -4.99   -4.94   -4.40   -3.13   -0.89    2.40    6.43   10.09
+    95.0    0.00   -0.20   -0.62   -1.17   -1.74   -2.28   -2.78   -3.27   -3.79   -4.32   -4.79   -5.08   -5.03   -4.46   -3.18   -0.99    2.19    6.10    9.88
+   100.0    0.00   -0.19   -0.60   -1.15   -1.72   -2.26   -2.76   -3.26   -3.80   -4.36   -4.86   -5.15   -5.07   -4.45   -3.13   -0.97    2.11    5.96   10.03
+   105.0    0.00   -0.17   -0.58   -1.13   -1.71   -2.25   -2.75   -3.27   -3.83   -4.41   -4.92   -5.20   -5.06   -4.36   -2.98   -0.83    2.18    6.06   10.56
+   110.0    0.00   -0.16   -0.56   -1.11   -1.69   -2.25   -2.76   -3.29   -3.87   -4.47   -4.98   -5.22   -5.01   -4.22   -2.77   -0.60    2.40    6.38   11.44
+   115.0    0.00   -0.15   -0.54   -1.09   -1.69   -2.25   -2.79   -3.33   -3.92   -4.53   -5.03   -5.23   -4.94   -4.05   -2.51   -0.29    2.74    6.89   12.59
+   120.0    0.00   -0.13   -0.52   -1.08   -1.68   -2.27   -2.83   -3.39   -3.98   -4.59   -5.07   -5.22   -4.86   -3.88   -2.25    0.05    3.16    7.53   13.87
+   125.0    0.00   -0.12   -0.50   -1.06   -1.68   -2.29   -2.87   -3.45   -4.05   -4.64   -5.10   -5.22   -4.80   -3.73   -2.00    0.40    3.63    8.23   15.12
+   130.0    0.00   -0.11   -0.48   -1.04   -1.69   -2.32   -2.92   -3.51   -4.11   -4.69   -5.13   -5.22   -4.76   -3.63   -1.80    0.71    4.09    8.89   16.18
+   135.0    0.00   -0.09   -0.46   -1.03   -1.69   -2.35   -2.97   -3.57   -4.16   -4.73   -5.16   -5.24   -4.77   -3.59   -1.68    0.97    4.50    9.45   16.93
+   140.0    0.00   -0.08   -0.44   -1.01   -1.69   -2.38   -3.02   -3.62   -4.21   -4.77   -5.19   -5.29   -4.83   -3.63   -1.63    1.16    4.83    9.85   17.26
+   145.0    0.00   -0.07   -0.42   -0.99   -1.68   -2.40   -3.06   -3.67   -4.24   -4.79   -5.23   -5.36   -4.93   -3.73   -1.66    1.26    5.05   10.06   17.17
+   150.0    0.00   -0.05   -0.39   -0.97   -1.68   -2.41   -3.09   -3.70   -4.27   -4.81   -5.27   -5.44   -5.06   -3.88   -1.76    1.27    5.16   10.07   16.67
+   155.0    0.00   -0.04   -0.37   -0.95   -1.67   -2.42   -3.11   -3.72   -4.29   -4.83   -5.30   -5.52   -5.21   -4.06   -1.92    1.21    5.16    9.91   15.88
+   160.0    0.00   -0.03   -0.35   -0.92   -1.65   -2.41   -3.12   -3.74   -4.30   -4.84   -5.34   -5.60   -5.35   -4.25   -2.10    1.09    5.07    9.63   14.92
+   165.0    0.00   -0.02   -0.33   -0.90   -1.63   -2.40   -3.12   -3.75   -4.31   -4.85   -5.36   -5.67   -5.47   -4.42   -2.29    0.92    4.90    9.27   13.94
+   170.0    0.00   -0.01   -0.31   -0.87   -1.60   -2.39   -3.12   -3.76   -4.32   -4.86   -5.37   -5.70   -5.55   -4.55   -2.46    0.72    4.68    8.90   13.10
+   175.0    0.00    0.00   -0.29   -0.84   -1.57   -2.37   -3.11   -3.76   -4.33   -4.87   -5.37   -5.70   -5.57   -4.63   -2.60    0.52    4.43    8.57   12.50
+   180.0    0.00    0.01   -0.27   -0.82   -1.54   -2.34   -3.10   -3.77   -4.35   -4.87   -5.35   -5.65   -5.53   -4.64   -2.71    0.32    4.17    8.32   12.23
+   185.0    0.00    0.01   -0.26   -0.79   -1.51   -2.31   -3.09   -3.77   -4.36   -4.87   -5.31   -5.57   -5.43   -4.59   -2.76    0.14    3.93    8.17   12.30
+   190.0    0.00    0.02   -0.25   -0.77   -1.48   -2.28   -3.07   -3.77   -4.37   -4.86   -5.25   -5.45   -5.29   -4.48   -2.78   -0.02    3.72    8.11   12.66
+   195.0    0.00    0.02   -0.24   -0.75   -1.46   -2.26   -3.05   -3.77   -4.37   -4.84   -5.18   -5.32   -5.12   -4.35   -2.75   -0.14    3.55    8.14   13.22
+   200.0    0.00    0.02   -0.23   -0.74   -1.44   -2.23   -3.03   -3.75   -4.36   -4.82   -5.11   -5.18   -4.93   -4.19   -2.69   -0.21    3.44    8.23   13.87
+   205.0    0.00    0.02   -0.23   -0.73   -1.42   -2.20   -3.00   -3.73   -4.34   -4.79   -5.04   -5.06   -4.77   -4.03   -2.61   -0.23    3.38    8.36   14.48
+   210.0    0.00    0.02   -0.23   -0.73   -1.41   -2.18   -2.98   -3.71   -4.32   -4.76   -4.98   -4.96   -4.63   -3.88   -2.51   -0.20    3.39    8.49   14.94
+   215.0    0.00    0.02   -0.24   -0.74   -1.41   -2.17   -2.95   -3.68   -4.29   -4.73   -4.94   -4.89   -4.53   -3.76   -2.39   -0.11    3.47    8.61   15.18
+   220.0    0.00    0.02   -0.25   -0.75   -1.41   -2.16   -2.93   -3.65   -4.26   -4.71   -4.93   -4.87   -4.48   -3.67   -2.26    0.05    3.62    8.71   15.16
+   225.0    0.00    0.01   -0.26   -0.76   -1.43   -2.17   -2.92   -3.62   -4.24   -4.70   -4.94   -4.88   -4.47   -3.61   -2.12    0.25    3.83    8.80   14.90
+   230.0    0.00    0.01   -0.27   -0.78   -1.45   -2.18   -2.91   -3.60   -4.22   -4.70   -4.96   -4.93   -4.51   -3.58   -1.99    0.49    4.09    8.88   14.47
+   235.0    0.00    0.00   -0.29   -0.81   -1.48   -2.20   -2.92   -3.60   -4.21   -4.71   -5.01   -5.01   -4.57   -3.57   -1.85    0.75    4.38    8.96   13.95
+   240.0    0.00   -0.01   -0.31   -0.84   -1.51   -2.23   -2.93   -3.60   -4.22   -4.73   -5.07   -5.09   -4.64   -3.57   -1.73    1.02    4.69    9.07   13.44
+   245.0    0.00   -0.02   -0.33   -0.87   -1.55   -2.26   -2.96   -3.62   -4.23   -4.76   -5.12   -5.17   -4.71   -3.58   -1.62    1.25    4.97    9.20   13.06
+   250.0    0.00   -0.03   -0.35   -0.90   -1.58   -2.30   -2.99   -3.65   -4.26   -4.80   -5.18   -5.23   -4.77   -3.59   -1.54    1.44    5.21    9.35   12.86
+   255.0    0.00   -0.04   -0.37   -0.93   -1.62   -2.34   -3.03   -3.68   -4.29   -4.83   -5.22   -5.28   -4.81   -3.60   -1.49    1.55    5.38    9.51   12.89
+   260.0    0.00   -0.05   -0.39   -0.96   -1.65   -2.37   -3.06   -3.71   -4.32   -4.86   -5.24   -5.30   -4.82   -3.61   -1.49    1.58    5.46    9.65   13.13
+   265.0    0.00   -0.06   -0.41   -0.99   -1.68   -2.40   -3.09   -3.73   -4.34   -4.87   -5.24   -5.29   -4.82   -3.62   -1.53    1.52    5.43    9.76   13.53
+   270.0    0.00   -0.08   -0.44   -1.01   -1.70   -2.41   -3.10   -3.75   -4.35   -4.88   -5.23   -5.27   -4.80   -3.64   -1.62    1.38    5.31    9.81   14.03
+   275.0    0.00   -0.09   -0.45   -1.03   -1.71   -2.41   -3.10   -3.74   -4.35   -4.86   -5.20   -5.23   -4.78   -3.67   -1.73    1.18    5.09    9.78   14.52
+   280.0    0.00   -0.10   -0.47   -1.04   -1.71   -2.41   -3.08   -3.73   -4.33   -4.84   -5.17   -5.19   -4.75   -3.71   -1.87    0.94    4.82    9.67   14.90
+   285.0    0.00   -0.11   -0.49   -1.06   -1.71   -2.39   -3.05   -3.69   -4.30   -4.80   -5.13   -5.15   -4.74   -3.75   -2.01    0.69    4.53    9.48   15.11
+   290.0    0.00   -0.13   -0.51   -1.07   -1.71   -2.37   -3.02   -3.65   -4.26   -4.77   -5.10   -5.13   -4.75   -3.80   -2.13    0.48    4.24    9.22   15.09
+   295.0    0.00   -0.14   -0.53   -1.08   -1.70   -2.35   -2.98   -3.61   -4.22   -4.74   -5.08   -5.13   -4.77   -3.86   -2.24    0.31    4.00    8.93   14.83
+   300.0    0.00   -0.15   -0.54   -1.09   -1.70   -2.33   -2.96   -3.58   -4.19   -4.72   -5.08   -5.15   -4.80   -3.91   -2.30    0.22    3.84    8.63   14.35
+   305.0    0.00   -0.16   -0.56   -1.11   -1.71   -2.33   -2.94   -3.56   -4.17   -4.72   -5.10   -5.18   -4.85   -3.95   -2.32    0.20    3.76    8.35   13.70
+   310.0    0.00   -0.18   -0.58   -1.12   -1.72   -2.34   -2.95   -3.57   -4.18   -4.73   -5.12   -5.23   -4.90   -3.98   -2.31    0.26    3.77    8.12   12.94
+   315.0    0.00   -0.19   -0.60   -1.14   -1.75   -2.36   -2.97   -3.59   -4.20   -4.75   -5.16   -5.28   -4.95   -4.00   -2.26    0.37    3.85    7.94   12.15
+   320.0    0.00   -0.20   -0.62   -1.17   -1.78   -2.40   -3.02   -3.64   -4.24   -4.79   -5.19   -5.32   -4.99   -4.01   -2.20    0.50    3.97    7.80   11.39
+   325.0    0.00   -0.21   -0.64   -1.20   -1.82   -2.46   -3.09   -3.71   -4.30   -4.83   -5.22   -5.35   -5.03   -4.02   -2.15    0.63    4.09    7.69   10.69
+   330.0    0.00   -0.22   -0.66   -1.23   -1.87   -2.52   -3.17   -3.78   -4.35   -4.86   -5.24   -5.37   -5.04   -4.03   -2.11    0.72    4.17    7.59   10.08
+   335.0    0.00   -0.23   -0.68   -1.26   -1.92   -2.59   -3.25   -3.85   -4.41   -4.88   -5.24   -5.36   -5.05   -4.04   -2.11    0.74    4.18    7.44    9.55
+   340.0    0.00   -0.24   -0.70   -1.29   -1.97   -2.66   -3.32   -3.92   -4.44   -4.89   -5.22   -5.34   -5.04   -4.06   -2.15    0.69    4.09    7.24    9.08
+   345.0    0.00   -0.25   -0.71   -1.32   -2.01   -2.71   -3.38   -3.96   -4.46   -4.87   -5.17   -5.29   -5.02   -4.08   -2.23    0.56    3.90    6.96    8.66
+   350.0    0.00   -0.26   -0.73   -1.35   -2.05   -2.75   -3.41   -3.98   -4.44   -4.82   -5.11   -5.23   -5.00   -4.11   -2.34    0.37    3.62    6.59    8.25
+   355.0    0.00   -0.27   -0.74   -1.37   -2.07   -2.78   -3.42   -3.96   -4.40   -4.75   -5.03   -5.16   -4.96   -4.14   -2.46    0.13    3.27    6.17    7.87
+   360.0    0.00   -0.27   -0.76   -1.39   -2.09   -2.78   -3.40   -3.92   -4.33   -4.67   -4.94   -5.08   -4.91   -4.16   -2.57   -0.11    2.89    5.72    7.50
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH701945C_M    SCIS                                        TYPE / SERIAL NO    
+FIELD               NGS                      2    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.48      0.13     89.65                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.43   -1.40   -2.73   -4.12   -5.92   -7.36   -8.69   -9.47   -9.81   -9.66   -8.79   -7.63   -5.85   -3.38   -0.41    3.37
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.58      0.01    119.25                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.43   -1.01   -1.78   -2.59   -3.38   -4.19   -4.97   -5.71   -6.21   -6.25   -5.86   -5.13   -3.83   -2.23   -0.21    2.45
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH701945C_M    SCIT                                        TYPE / SERIAL NO    
+FIELD               NGS                      3    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.68     -0.27     89.25                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.53   -1.50   -2.83   -4.22   -5.82   -7.16   -8.29   -9.07   -9.31   -9.16   -8.39   -7.13   -5.45   -3.28   -0.41    3.07
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.18     -0.39    117.85                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.23   -0.61   -1.18   -1.89   -2.58   -3.39   -4.27   -4.91   -5.31   -5.45   -5.06   -4.23   -2.83   -1.13    1.19    4.15
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH701945C_M    SNOW                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               1    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+Number of Calibrated Antennas GPS:      001                 COMMENT             
+Number of Individual Calibrations GPS:  006                 COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.19      0.40     89.87                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.25   -0.98   -2.12   -3.53   -5.10   -6.66   -8.07   -9.14   -9.69   -9.58   -8.72   -7.11   -4.85   -2.02    1.30    5.15    9.61   14.67
+     0.0    0.00   -0.24   -0.99   -2.19   -3.70   -5.38   -7.04   -8.51   -9.59  -10.12   -9.97   -9.11   -7.54   -5.35   -2.58    0.73    4.64    9.15   14.07
+     5.0    0.00   -0.24   -0.99   -2.17   -3.68   -5.35   -7.01   -8.48   -9.57  -10.11   -9.96   -9.09   -7.52   -5.31   -2.54    0.78    4.69    9.21   14.20
+    10.0    0.00   -0.23   -0.98   -2.16   -3.66   -5.32   -6.98   -8.45   -9.54  -10.09   -9.95   -9.07   -7.48   -5.25   -2.47    0.85    4.75    9.30   14.38
+    15.0    0.00   -0.23   -0.97   -2.15   -3.63   -5.29   -6.94   -8.41   -9.52  -10.07   -9.93   -9.04   -7.43   -5.18   -2.39    0.93    4.84    9.42   14.60
+    20.0    0.00   -0.23   -0.97   -2.13   -3.61   -5.25   -6.90   -8.38   -9.49  -10.05   -9.91   -9.01   -7.38   -5.10   -2.30    1.02    4.93    9.55   14.83
+    25.0    0.00   -0.23   -0.96   -2.11   -3.58   -5.22   -6.87   -8.35   -9.47  -10.03   -9.89   -8.97   -7.31   -5.02   -2.19    1.13    5.05    9.69   15.07
+    30.0    0.00   -0.23   -0.95   -2.10   -3.55   -5.18   -6.83   -8.32   -9.45  -10.02   -9.87   -8.93   -7.25   -4.92   -2.08    1.25    5.16    9.83   15.28
+    35.0    0.00   -0.23   -0.94   -2.08   -3.52   -5.15   -6.79   -8.29   -9.42  -10.00   -9.85   -8.89   -7.18   -4.82   -1.96    1.38    5.29    9.96   15.47
+    40.0    0.00   -0.22   -0.94   -2.06   -3.50   -5.11   -6.75   -8.25   -9.39   -9.97   -9.81   -8.84   -7.11   -4.73   -1.84    1.50    5.40   10.08   15.62
+    45.0    0.00   -0.22   -0.93   -2.05   -3.47   -5.07   -6.71   -8.20   -9.35   -9.93   -9.77   -8.79   -7.04   -4.64   -1.74    1.61    5.52   10.19   15.73
+    50.0    0.00   -0.22   -0.92   -2.03   -3.44   -5.03   -6.66   -8.15   -9.29   -9.87   -9.71   -8.73   -6.97   -4.56   -1.65    1.71    5.62   10.29   15.81
+    55.0    0.00   -0.22   -0.92   -2.02   -3.41   -4.99   -6.60   -8.08   -9.21   -9.79   -9.64   -8.67   -6.91   -4.50   -1.57    1.80    5.72   10.38   15.86
+    60.0    0.00   -0.22   -0.91   -2.00   -3.39   -4.94   -6.54   -7.99   -9.12   -9.70   -9.55   -8.60   -6.85   -4.45   -1.52    1.87    5.80   10.46   15.89
+    65.0    0.00   -0.22   -0.91   -1.99   -3.36   -4.90   -6.47   -7.91   -9.02   -9.59   -9.46   -8.52   -6.81   -4.42   -1.49    1.92    5.87   10.52   15.91
+    70.0    0.00   -0.22   -0.91   -1.98   -3.34   -4.86   -6.40   -7.81   -8.91   -9.48   -9.36   -8.46   -6.77   -4.40   -1.48    1.95    5.92   10.58   15.91
+    75.0    0.00   -0.22   -0.91   -1.98   -3.32   -4.82   -6.34   -7.73   -8.80   -9.37   -9.27   -8.39   -6.74   -4.40   -1.48    1.95    5.95   10.61   15.90
+    80.0    0.00   -0.23   -0.91   -1.97   -3.31   -4.79   -6.29   -7.65   -8.71   -9.28   -9.19   -8.34   -6.72   -4.41   -1.50    1.94    5.95   10.60   15.85
+    85.0    0.00   -0.23   -0.91   -1.97   -3.30   -4.77   -6.25   -7.60   -8.64   -9.21   -9.13   -8.31   -6.72   -4.43   -1.54    1.91    5.92   10.56   15.78
+    90.0    0.00   -0.23   -0.92   -1.98   -3.31   -4.77   -6.24   -7.57   -8.60   -9.16   -9.09   -8.29   -6.72   -4.46   -1.58    1.85    5.85   10.48   15.66
+    95.0    0.00   -0.23   -0.92   -1.99   -3.31   -4.78   -6.24   -7.57   -8.59   -9.15   -9.08   -8.29   -6.74   -4.49   -1.64    1.77    5.75   10.34   15.50
+   100.0    0.00   -0.24   -0.93   -2.00   -3.33   -4.80   -6.26   -7.59   -8.61   -9.17   -9.10   -8.31   -6.77   -4.54   -1.70    1.67    5.61   10.17   15.30
+   105.0    0.00   -0.24   -0.94   -2.02   -3.36   -4.83   -6.31   -7.64   -8.66   -9.22   -9.14   -8.34   -6.80   -4.58   -1.78    1.56    5.45    9.95   15.06
+   110.0    0.00   -0.24   -0.95   -2.03   -3.38   -4.87   -6.36   -7.70   -8.73   -9.28   -9.20   -8.39   -6.85   -4.64   -1.86    1.43    5.26    9.72   14.80
+   115.0    0.00   -0.25   -0.96   -2.05   -3.42   -4.92   -6.42   -7.78   -8.82   -9.36   -9.27   -8.45   -6.90   -4.69   -1.94    1.31    5.08    9.48   14.53
+   120.0    0.00   -0.25   -0.97   -2.07   -3.45   -4.97   -6.49   -7.86   -8.90   -9.45   -9.34   -8.51   -6.96   -4.76   -2.03    1.18    4.91    9.26   14.29
+   125.0    0.00   -0.26   -0.98   -2.10   -3.48   -5.02   -6.55   -7.93   -8.98   -9.52   -9.42   -8.58   -7.02   -4.83   -2.11    1.07    4.76    9.08   14.08
+   130.0    0.00   -0.26   -0.99   -2.12   -3.51   -5.06   -6.61   -7.99   -9.04   -9.59   -9.48   -8.64   -7.08   -4.90   -2.19    0.97    4.65    8.94   13.91
+   135.0    0.00   -0.27   -1.01   -2.14   -3.54   -5.10   -6.65   -8.04   -9.09   -9.63   -9.53   -8.69   -7.14   -4.97   -2.27    0.90    4.58    8.86   13.80
+   140.0    0.00   -0.27   -1.02   -2.15   -3.57   -5.13   -6.68   -8.07   -9.12   -9.67   -9.56   -8.74   -7.20   -5.03   -2.32    0.86    4.55    8.83   13.75
+   145.0    0.00   -0.27   -1.03   -2.17   -3.59   -5.15   -6.70   -8.09   -9.14   -9.68   -9.59   -8.78   -7.25   -5.09   -2.37    0.84    4.55    8.85   13.73
+   150.0    0.00   -0.28   -1.04   -2.19   -3.61   -5.17   -6.72   -8.10   -9.14   -9.69   -9.61   -8.81   -7.30   -5.13   -2.40    0.84    4.58    8.89   13.74
+   155.0    0.00   -0.28   -1.05   -2.20   -3.62   -5.18   -6.72   -8.10   -9.14   -9.70   -9.62   -8.84   -7.34   -5.16   -2.41    0.86    4.63    8.93   13.76
+   160.0    0.00   -0.29   -1.05   -2.21   -3.64   -5.19   -6.73   -8.10   -9.15   -9.71   -9.64   -8.87   -7.36   -5.18   -2.41    0.88    4.66    8.97   13.76
+   165.0    0.00   -0.29   -1.06   -2.22   -3.65   -5.20   -6.74   -8.11   -9.16   -9.72   -9.66   -8.89   -7.38   -5.19   -2.40    0.89    4.68    8.97   13.74
+   170.0    0.00   -0.29   -1.07   -2.23   -3.66   -5.22   -6.76   -8.13   -9.18   -9.75   -9.69   -8.91   -7.39   -5.19   -2.39    0.90    4.66    8.93   13.69
+   175.0    0.00   -0.29   -1.07   -2.24   -3.67   -5.23   -6.77   -8.15   -9.21   -9.78   -9.72   -8.93   -7.40   -5.18   -2.39    0.88    4.61    8.85   13.62
+   180.0    0.00   -0.29   -1.07   -2.24   -3.68   -5.24   -6.79   -8.18   -9.25   -9.82   -9.75   -8.95   -7.39   -5.17   -2.39    0.85    4.53    8.74   13.53
+   185.0    0.00   -0.29   -1.07   -2.24   -3.68   -5.25   -6.81   -8.21   -9.28   -9.86   -9.78   -8.96   -7.39   -5.16   -2.40    0.79    4.43    8.62   13.46
+   190.0    0.00   -0.29   -1.07   -2.25   -3.69   -5.26   -6.83   -8.23   -9.31   -9.89   -9.80   -8.96   -7.38   -5.15   -2.42    0.73    4.33    8.51   13.43
+   195.0    0.00   -0.29   -1.07   -2.24   -3.69   -5.26   -6.84   -8.25   -9.33   -9.90   -9.81   -8.96   -7.37   -5.15   -2.44    0.67    4.24    8.45   13.47
+   200.0    0.00   -0.29   -1.07   -2.24   -3.68   -5.26   -6.83   -8.25   -9.33   -9.90   -9.80   -8.94   -7.36   -5.15   -2.46    0.63    4.20    8.46   13.60
+   205.0    0.00   -0.29   -1.07   -2.23   -3.67   -5.25   -6.82   -8.23   -9.31   -9.87   -9.77   -8.92   -7.34   -5.15   -2.47    0.62    4.23    8.56   13.82
+   210.0    0.00   -0.29   -1.06   -2.22   -3.65   -5.22   -6.79   -8.19   -9.27   -9.83   -9.73   -8.89   -7.32   -5.14   -2.46    0.66    4.33    8.77   14.14
+   215.0    0.00   -0.29   -1.05   -2.21   -3.63   -5.19   -6.75   -8.14   -9.20   -9.76   -9.67   -8.84   -7.29   -5.12   -2.43    0.75    4.51    9.06   14.53
+   220.0    0.00   -0.29   -1.05   -2.19   -3.61   -5.16   -6.70   -8.08   -9.13   -9.69   -9.61   -8.80   -7.26   -5.08   -2.35    0.90    4.77    9.44   14.97
+   225.0    0.00   -0.28   -1.04   -2.18   -3.58   -5.12   -6.64   -8.01   -9.05   -9.61   -9.54   -8.74   -7.22   -5.03   -2.25    1.10    5.10    9.87   15.42
+   230.0    0.00   -0.28   -1.03   -2.16   -3.55   -5.08   -6.58   -7.94   -8.98   -9.54   -9.48   -8.69   -7.17   -4.95   -2.10    1.35    5.46   10.31   15.82
+   235.0    0.00   -0.28   -1.02   -2.14   -3.53   -5.03   -6.53   -7.87   -8.91   -9.47   -9.42   -8.64   -7.10   -4.84   -1.92    1.63    5.83   10.72   16.15
+   240.0    0.00   -0.27   -1.01   -2.13   -3.50   -5.00   -6.49   -7.82   -8.86   -9.43   -9.38   -8.59   -7.03   -4.72   -1.73    1.91    6.18   11.06   16.36
+   245.0    0.00   -0.27   -1.00   -2.11   -3.47   -4.97   -6.45   -7.79   -8.83   -9.40   -9.35   -8.55   -6.96   -4.59   -1.53    2.17    6.47   11.30   16.43
+   250.0    0.00   -0.27   -0.99   -2.10   -3.45   -4.94   -6.43   -7.77   -8.82   -9.40   -9.34   -8.51   -6.88   -4.46   -1.34    2.40    6.68   11.42   16.37
+   255.0    0.00   -0.26   -0.99   -2.08   -3.44   -4.93   -6.42   -7.77   -8.83   -9.41   -9.33   -8.48   -6.80   -4.33   -1.17    2.57    6.80   11.41   16.17
+   260.0    0.00   -0.26   -0.98   -2.07   -3.43   -4.92   -6.42   -7.79   -8.85   -9.43   -9.34   -8.46   -6.73   -4.22   -1.05    2.67    6.81   11.28   15.87
+   265.0    0.00   -0.26   -0.98   -2.07   -3.43   -4.92   -6.44   -7.81   -8.88   -9.46   -9.35   -8.44   -6.68   -4.14   -0.97    2.68    6.72   11.06   15.50
+   270.0    0.00   -0.26   -0.97   -2.06   -3.43   -4.93   -6.46   -7.84   -8.92   -9.49   -9.36   -8.42   -6.64   -4.10   -0.96    2.63    6.55   10.76   15.11
+   275.0    0.00   -0.25   -0.97   -2.06   -3.43   -4.95   -6.48   -7.88   -8.96   -9.52   -9.38   -8.42   -6.62   -4.10   -1.00    2.50    6.32   10.43   14.75
+   280.0    0.00   -0.25   -0.97   -2.07   -3.44   -4.97   -6.52   -7.92   -8.99   -9.54   -9.39   -8.42   -6.63   -4.13   -1.10    2.32    6.05   10.10   14.44
+   285.0    0.00   -0.25   -0.97   -2.07   -3.46   -5.00   -6.55   -7.95   -9.02   -9.56   -9.39   -8.42   -6.66   -4.21   -1.24    2.10    5.76    9.79   14.20
+   290.0    0.00   -0.25   -0.97   -2.08   -3.48   -5.03   -6.59   -7.99   -9.05   -9.58   -9.41   -8.44   -6.71   -4.31   -1.42    1.86    5.49    9.54   14.06
+   295.0    0.00   -0.25   -0.97   -2.09   -3.51   -5.07   -6.63   -8.03   -9.08   -9.60   -9.42   -8.47   -6.78   -4.44   -1.61    1.62    5.24    9.35   14.01
+   300.0    0.00   -0.25   -0.98   -2.11   -3.53   -5.11   -6.68   -8.08   -9.12   -9.62   -9.44   -8.52   -6.86   -4.58   -1.80    1.40    5.04    9.23   14.02
+   305.0    0.00   -0.25   -0.98   -2.12   -3.56   -5.15   -6.73   -8.13   -9.16   -9.65   -9.48   -8.57   -6.96   -4.73   -1.99    1.20    4.88    9.16   14.08
+   310.0    0.00   -0.25   -0.98   -2.14   -3.59   -5.20   -6.79   -8.18   -9.21   -9.69   -9.52   -8.64   -7.06   -4.87   -2.16    1.04    4.77    9.14   14.16
+   315.0    0.00   -0.25   -0.99   -2.15   -3.62   -5.24   -6.84   -8.24   -9.27   -9.75   -9.58   -8.71   -7.16   -5.00   -2.31    0.91    4.70    9.14   14.23
+   320.0    0.00   -0.25   -0.99   -2.17   -3.65   -5.29   -6.90   -8.31   -9.33   -9.81   -9.64   -8.78   -7.25   -5.11   -2.42    0.82    4.66    9.16   14.27
+   325.0    0.00   -0.24   -0.99   -2.18   -3.67   -5.33   -6.95   -8.37   -9.40   -9.88   -9.71   -8.86   -7.34   -5.21   -2.51    0.75    4.63    9.17   14.27
+   330.0    0.00   -0.24   -1.00   -2.19   -3.70   -5.36   -7.00   -8.43   -9.46   -9.95   -9.78   -8.93   -7.41   -5.28   -2.57    0.71    4.62    9.17   14.23
+   335.0    0.00   -0.24   -1.00   -2.20   -3.71   -5.39   -7.04   -8.48   -9.52  -10.01   -9.85   -8.99   -7.47   -5.33   -2.62    0.69    4.61    9.16   14.16
+   340.0    0.00   -0.24   -1.00   -2.20   -3.72   -5.40   -7.07   -8.51   -9.56  -10.06   -9.90   -9.05   -7.52   -5.37   -2.64    0.68    4.61    9.14   14.09
+   345.0    0.00   -0.24   -1.00   -2.20   -3.73   -5.41   -7.08   -8.53   -9.59  -10.10   -9.94   -9.08   -7.55   -5.39   -2.65    0.67    4.60    9.12   14.02
+   350.0    0.00   -0.24   -1.00   -2.20   -3.72   -5.41   -7.08   -8.54   -9.61  -10.12   -9.96   -9.10   -7.56   -5.39   -2.64    0.68    4.60    9.11   13.99
+   355.0    0.00   -0.24   -1.00   -2.19   -3.71   -5.40   -7.07   -8.53   -9.61  -10.12   -9.98   -9.11   -7.56   -5.37   -2.62    0.70    4.62    9.11   14.00
+   360.0    0.00   -0.24   -0.99   -2.19   -3.70   -5.38   -7.04   -8.51   -9.59  -10.12   -9.97   -9.11   -7.54   -5.35   -2.58    0.73    4.64    9.15   14.07
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.84      0.19    119.49                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.11   -0.44   -0.93   -1.56   -2.28   -3.08   -3.90   -4.67   -5.24   -5.46   -5.23   -4.51   -3.32   -1.74    0.25    2.77    6.04   10.22
+     0.0    0.00   -0.15   -0.44   -0.81   -1.30   -1.94   -2.77   -3.73   -4.64   -5.27   -5.45   -5.13   -4.41   -3.44   -2.22   -0.55    1.94    5.51    9.85
+     5.0    0.00   -0.15   -0.44   -0.82   -1.30   -1.95   -2.78   -3.74   -4.65   -5.29   -5.48   -5.16   -4.45   -3.46   -2.22   -0.53    1.98    5.53    9.81
+    10.0    0.00   -0.15   -0.44   -0.82   -1.31   -1.96   -2.79   -3.75   -4.66   -5.31   -5.51   -5.20   -4.48   -3.48   -2.20   -0.48    2.04    5.57    9.82
+    15.0    0.00   -0.15   -0.44   -0.83   -1.32   -1.97   -2.80   -3.76   -4.67   -5.32   -5.53   -5.24   -4.52   -3.49   -2.17   -0.41    2.12    5.63    9.89
+    20.0    0.00   -0.15   -0.45   -0.84   -1.34   -1.99   -2.81   -3.76   -4.66   -5.32   -5.55   -5.27   -4.55   -3.49   -2.13   -0.32    2.22    5.72   10.00
+    25.0    0.00   -0.15   -0.46   -0.86   -1.36   -2.01   -2.82   -3.75   -4.65   -5.32   -5.56   -5.30   -4.57   -3.48   -2.07   -0.22    2.33    5.82   10.16
+    30.0    0.00   -0.16   -0.46   -0.87   -1.38   -2.03   -2.83   -3.75   -4.64   -5.31   -5.57   -5.32   -4.59   -3.47   -2.01   -0.12    2.44    5.93   10.34
+    35.0    0.00   -0.16   -0.47   -0.89   -1.41   -2.06   -2.85   -3.75   -4.63   -5.30   -5.57   -5.34   -4.60   -3.45   -1.94   -0.01    2.56    6.04   10.53
+    40.0    0.00   -0.16   -0.48   -0.91   -1.44   -2.08   -2.87   -3.75   -4.61   -5.28   -5.57   -5.34   -4.60   -3.42   -1.86    0.10    2.67    6.14   10.71
+    45.0    0.00   -0.16   -0.48   -0.93   -1.47   -2.12   -2.89   -3.75   -4.60   -5.26   -5.55   -5.34   -4.60   -3.39   -1.79    0.20    2.78    6.24   10.87
+    50.0    0.00   -0.16   -0.49   -0.95   -1.50   -2.15   -2.91   -3.75   -4.59   -5.24   -5.54   -5.34   -4.59   -3.36   -1.73    0.30    2.88    6.33   10.98
+    55.0    0.00   -0.16   -0.50   -0.96   -1.53   -2.18   -2.93   -3.76   -4.57   -5.22   -5.52   -5.32   -4.58   -3.33   -1.67    0.38    2.97    6.40   11.05
+    60.0    0.00   -0.16   -0.50   -0.98   -1.56   -2.22   -2.96   -3.77   -4.56   -5.20   -5.49   -5.30   -4.56   -3.31   -1.63    0.46    3.06    6.47   11.07
+    65.0    0.00   -0.16   -0.51   -1.00   -1.59   -2.25   -2.99   -3.78   -4.56   -5.18   -5.47   -5.28   -4.55   -3.29   -1.59    0.52    3.14    6.53   11.04
+    70.0    0.00   -0.15   -0.51   -1.01   -1.61   -2.29   -3.02   -3.80   -4.56   -5.16   -5.44   -5.26   -4.53   -3.28   -1.56    0.58    3.22    6.58   10.96
+    75.0    0.00   -0.15   -0.51   -1.02   -1.64   -2.32   -3.06   -3.83   -4.56   -5.15   -5.42   -5.24   -4.52   -3.27   -1.54    0.62    3.29    6.62   10.84
+    80.0    0.00   -0.15   -0.51   -1.03   -1.66   -2.35   -3.10   -3.86   -4.58   -5.14   -5.40   -5.22   -4.51   -3.26   -1.53    0.66    3.34    6.65   10.68
+    85.0    0.00   -0.15   -0.51   -1.04   -1.68   -2.39   -3.13   -3.89   -4.60   -5.15   -5.39   -5.21   -4.50   -3.26   -1.52    0.68    3.39    6.66   10.51
+    90.0    0.00   -0.14   -0.51   -1.05   -1.70   -2.42   -3.18   -3.93   -4.63   -5.16   -5.39   -5.20   -4.49   -3.26   -1.53    0.69    3.41    6.65   10.33
+    95.0    0.00   -0.14   -0.51   -1.05   -1.72   -2.45   -3.22   -3.98   -4.67   -5.19   -5.40   -5.19   -4.48   -3.26   -1.53    0.68    3.41    6.63   10.15
+   100.0    0.00   -0.14   -0.50   -1.05   -1.73   -2.48   -3.26   -4.03   -4.72   -5.22   -5.42   -5.19   -4.48   -3.26   -1.54    0.67    3.38    6.58    9.99
+   105.0    0.00   -0.13   -0.50   -1.06   -1.74   -2.51   -3.30   -4.08   -4.77   -5.27   -5.44   -5.20   -4.48   -3.26   -1.55    0.64    3.34    6.51    9.85
+   110.0    0.00   -0.13   -0.49   -1.05   -1.75   -2.53   -3.34   -4.13   -4.82   -5.31   -5.47   -5.21   -4.47   -3.25   -1.56    0.60    3.28    6.43    9.74
+   115.0    0.00   -0.12   -0.49   -1.05   -1.76   -2.55   -3.38   -4.18   -4.87   -5.36   -5.51   -5.23   -4.47   -3.25   -1.57    0.57    3.22    6.35    9.67
+   120.0    0.00   -0.12   -0.48   -1.05   -1.77   -2.57   -3.41   -4.22   -4.92   -5.40   -5.54   -5.25   -4.48   -3.24   -1.57    0.54    3.15    6.26    9.62
+   125.0    0.00   -0.11   -0.47   -1.05   -1.77   -2.58   -3.43   -4.24   -4.95   -5.43   -5.57   -5.27   -4.48   -3.23   -1.56    0.53    3.10    6.19    9.60
+   130.0    0.00   -0.11   -0.47   -1.04   -1.77   -2.59   -3.44   -4.26   -4.96   -5.45   -5.59   -5.29   -4.49   -3.23   -1.55    0.54    3.08    6.14    9.59
+   135.0    0.00   -0.10   -0.46   -1.04   -1.77   -2.60   -3.45   -4.26   -4.97   -5.46   -5.61   -5.31   -4.51   -3.22   -1.52    0.56    3.07    6.10    9.59
+   140.0    0.00   -0.10   -0.45   -1.03   -1.77   -2.60   -3.44   -4.25   -4.96   -5.46   -5.63   -5.34   -4.54   -3.23   -1.49    0.60    3.09    6.07    9.59
+   145.0    0.00   -0.10   -0.45   -1.03   -1.77   -2.60   -3.43   -4.23   -4.94   -5.45   -5.64   -5.37   -4.57   -3.24   -1.46    0.66    3.13    6.06    9.57
+   150.0    0.00   -0.09   -0.44   -1.03   -1.77   -2.60   -3.42   -4.21   -4.91   -5.43   -5.65   -5.41   -4.61   -3.25   -1.44    0.72    3.17    6.04    9.52
+   155.0    0.00   -0.09   -0.44   -1.02   -1.77   -2.59   -3.41   -4.19   -4.88   -5.42   -5.66   -5.45   -4.66   -3.28   -1.42    0.77    3.22    6.02    9.44
+   160.0    0.00   -0.08   -0.43   -1.02   -1.77   -2.59   -3.40   -4.17   -4.86   -5.41   -5.67   -5.49   -4.72   -3.32   -1.42    0.81    3.24    5.97    9.33
+   165.0    0.00   -0.08   -0.42   -1.02   -1.77   -2.59   -3.40   -4.16   -4.84   -5.40   -5.69   -5.53   -4.77   -3.37   -1.43    0.82    3.23    5.90    9.20
+   170.0    0.00   -0.07   -0.42   -1.01   -1.78   -2.60   -3.40   -4.15   -4.84   -5.40   -5.71   -5.58   -4.83   -3.42   -1.47    0.79    3.18    5.79    9.05
+   175.0    0.00   -0.07   -0.41   -1.01   -1.78   -2.60   -3.41   -4.16   -4.85   -5.41   -5.73   -5.61   -4.88   -3.47   -1.52    0.73    3.10    5.66    8.90
+   180.0    0.00   -0.07   -0.41   -1.01   -1.77   -2.61   -3.42   -4.18   -4.86   -5.43   -5.76   -5.64   -4.92   -3.52   -1.59    0.64    2.97    5.51    8.78
+   185.0    0.00   -0.07   -0.40   -1.00   -1.77   -2.61   -3.43   -4.20   -4.89   -5.45   -5.77   -5.66   -4.94   -3.56   -1.66    0.53    2.82    5.36    8.70
+   190.0    0.00   -0.06   -0.40   -0.99   -1.77   -2.61   -3.44   -4.22   -4.91   -5.47   -5.78   -5.66   -4.94   -3.59   -1.73    0.41    2.67    5.22    8.69
+   195.0    0.00   -0.06   -0.39   -0.98   -1.76   -2.61   -3.45   -4.24   -4.94   -5.49   -5.78   -5.64   -4.91   -3.59   -1.78    0.29    2.53    5.13    8.76
+   200.0    0.00   -0.06   -0.39   -0.97   -1.74   -2.60   -3.45   -4.25   -4.95   -5.50   -5.76   -5.59   -4.86   -3.56   -1.81    0.21    2.42    5.10    8.91
+   205.0    0.00   -0.06   -0.38   -0.96   -1.72   -2.58   -3.44   -4.25   -4.96   -5.49   -5.73   -5.53   -4.79   -3.51   -1.81    0.16    2.37    5.14    9.15
+   210.0    0.00   -0.06   -0.38   -0.95   -1.70   -2.55   -3.42   -4.24   -4.95   -5.47   -5.69   -5.46   -4.70   -3.43   -1.77    0.15    2.38    5.26    9.46
+   215.0    0.00   -0.06   -0.38   -0.94   -1.68   -2.52   -3.39   -4.21   -4.93   -5.44   -5.63   -5.37   -4.59   -3.33   -1.70    0.21    2.47    5.45    9.82
+   220.0    0.00   -0.06   -0.37   -0.92   -1.65   -2.48   -3.34   -4.17   -4.89   -5.39   -5.56   -5.27   -4.48   -3.22   -1.60    0.31    2.62    5.71   10.21
+   225.0    0.00   -0.06   -0.37   -0.91   -1.62   -2.44   -3.30   -4.12   -4.84   -5.34   -5.49   -5.18   -4.37   -3.11   -1.48    0.44    2.81    6.01   10.60
+   230.0    0.00   -0.06   -0.37   -0.90   -1.60   -2.40   -3.25   -4.07   -4.79   -5.29   -5.43   -5.10   -4.27   -3.00   -1.36    0.60    3.04    6.32   10.94
+   235.0    0.00   -0.07   -0.37   -0.89   -1.57   -2.36   -3.20   -4.02   -4.74   -5.24   -5.37   -5.03   -4.19   -2.90   -1.24    0.77    3.27    6.61   11.22
+   240.0    0.00   -0.07   -0.37   -0.89   -1.55   -2.32   -3.15   -3.97   -4.69   -5.19   -5.33   -4.99   -4.14   -2.84   -1.15    0.91    3.47    6.86   11.41
+   245.0    0.00   -0.07   -0.38   -0.88   -1.54   -2.30   -3.11   -3.93   -4.65   -5.16   -5.30   -4.97   -4.12   -2.80   -1.09    1.01    3.63    7.04   11.50
+   250.0    0.00   -0.08   -0.38   -0.88   -1.53   -2.27   -3.08   -3.89   -4.62   -5.14   -5.29   -4.97   -4.13   -2.81   -1.07    1.06    3.72    7.13   11.49
+   255.0    0.00   -0.08   -0.39   -0.89   -1.52   -2.26   -3.06   -3.87   -4.60   -5.13   -5.30   -4.99   -4.16   -2.85   -1.11    1.04    3.72    7.13   11.39
+   260.0    0.00   -0.09   -0.40   -0.89   -1.52   -2.25   -3.04   -3.85   -4.59   -5.13   -5.31   -5.03   -4.22   -2.92   -1.19    0.97    3.65    7.04   11.22
+   265.0    0.00   -0.09   -0.40   -0.90   -1.53   -2.25   -3.03   -3.84   -4.58   -5.13   -5.34   -5.08   -4.30   -3.03   -1.32    0.83    3.50    6.87   11.01
+   270.0    0.00   -0.10   -0.41   -0.91   -1.53   -2.25   -3.03   -3.83   -4.58   -5.14   -5.37   -5.13   -4.39   -3.15   -1.47    0.65    3.30    6.66   10.78
+   275.0    0.00   -0.10   -0.42   -0.92   -1.53   -2.24   -3.02   -3.82   -4.58   -5.15   -5.39   -5.19   -4.48   -3.28   -1.64    0.44    3.07    6.42   10.56
+   280.0    0.00   -0.11   -0.43   -0.92   -1.54   -2.24   -3.01   -3.81   -4.57   -5.15   -5.41   -5.23   -4.56   -3.40   -1.81    0.22    2.82    6.18   10.38
+   285.0    0.00   -0.11   -0.44   -0.93   -1.54   -2.23   -3.00   -3.79   -4.55   -5.14   -5.42   -5.27   -4.62   -3.51   -1.98    0.01    2.58    5.96   10.26
+   290.0    0.00   -0.11   -0.44   -0.93   -1.53   -2.22   -2.98   -3.77   -4.53   -5.13   -5.42   -5.28   -4.67   -3.60   -2.11   -0.18    2.37    5.79   10.19
+   295.0    0.00   -0.12   -0.45   -0.93   -1.52   -2.20   -2.95   -3.74   -4.50   -5.11   -5.41   -5.28   -4.69   -3.66   -2.22   -0.33    2.21    5.66   10.20
+   300.0    0.00   -0.12   -0.45   -0.93   -1.51   -2.18   -2.92   -3.71   -4.48   -5.09   -5.39   -5.27   -4.69   -3.69   -2.29   -0.44    2.09    5.59   10.25
+   305.0    0.00   -0.13   -0.45   -0.92   -1.49   -2.15   -2.89   -3.68   -4.45   -5.06   -5.36   -5.24   -4.67   -3.69   -2.33   -0.51    2.01    5.56   10.33
+   310.0    0.00   -0.13   -0.45   -0.91   -1.47   -2.12   -2.85   -3.65   -4.43   -5.04   -5.34   -5.21   -4.63   -3.66   -2.33   -0.55    1.97    5.57   10.42
+   315.0    0.00   -0.13   -0.45   -0.90   -1.45   -2.08   -2.82   -3.63   -4.41   -5.03   -5.31   -5.16   -4.58   -3.62   -2.32   -0.56    1.96    5.60   10.51
+   320.0    0.00   -0.14   -0.45   -0.89   -1.42   -2.05   -2.79   -3.61   -4.41   -5.02   -5.29   -5.13   -4.53   -3.57   -2.29   -0.55    1.96    5.63   10.57
+   325.0    0.00   -0.14   -0.45   -0.87   -1.39   -2.02   -2.77   -3.61   -4.42   -5.03   -5.29   -5.09   -4.47   -3.52   -2.26   -0.55    1.97    5.66   10.58
+   330.0    0.00   -0.14   -0.45   -0.86   -1.37   -2.00   -2.75   -3.61   -4.44   -5.05   -5.29   -5.06   -4.43   -3.47   -2.23   -0.54    1.97    5.66   10.55
+   335.0    0.00   -0.14   -0.44   -0.85   -1.35   -1.97   -2.75   -3.62   -4.46   -5.08   -5.30   -5.05   -4.39   -3.44   -2.21   -0.54    1.97    5.66   10.47
+   340.0    0.00   -0.14   -0.44   -0.84   -1.33   -1.96   -2.74   -3.64   -4.50   -5.12   -5.32   -5.04   -4.37   -3.41   -2.20   -0.54    1.95    5.63   10.35
+   345.0    0.00   -0.14   -0.44   -0.83   -1.32   -1.95   -2.75   -3.66   -4.54   -5.16   -5.35   -5.05   -4.36   -3.40   -2.20   -0.55    1.94    5.59   10.21
+   350.0    0.00   -0.15   -0.44   -0.82   -1.31   -1.94   -2.76   -3.69   -4.58   -5.20   -5.38   -5.07   -4.37   -3.41   -2.21   -0.56    1.93    5.55   10.07
+   355.0    0.00   -0.15   -0.44   -0.82   -1.30   -1.94   -2.76   -3.71   -4.61   -5.24   -5.41   -5.10   -4.39   -3.42   -2.22   -0.56    1.93    5.53    9.94
+   360.0    0.00   -0.15   -0.44   -0.81   -1.30   -1.94   -2.77   -3.73   -4.64   -5.27   -5.45   -5.13   -4.41   -3.44   -2.22   -0.55    1.94    5.51    9.85
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH701945D_M    NONE                                        TYPE / SERIAL NO    
+COPIED              Geo++ GmbH               2    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+COPIED FROM AOAD/M_T        NONE                            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.58     -0.37     91.85                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.23   -0.90   -1.93   -3.22   -4.62   -5.96   -7.09   -7.87   -8.21   -8.06   -7.39   -6.23   -4.55   -2.28    0.69    4.47    9.08   14.23
+     0.0    0.00   -0.27   -0.98   -2.07   -3.42   -4.87   -6.26   -7.43   -8.21   -8.53   -8.32   -7.62   -6.44   -4.77   -2.54    0.39    4.14    8.68   13.67
+     5.0    0.00   -0.27   -0.98   -2.06   -3.41   -4.86   -6.25   -7.41   -8.20   -8.52   -8.31   -7.60   -6.41   -4.74   -2.50    0.42    4.18    8.73   13.73
+    10.0    0.00   -0.26   -0.97   -2.05   -3.39   -4.84   -6.23   -7.40   -8.19   -8.50   -8.30   -7.58   -6.38   -4.70   -2.46    0.47    4.23    8.79   13.83
+    15.0    0.00   -0.26   -0.97   -2.05   -3.38   -4.82   -6.21   -7.37   -8.17   -8.49   -8.28   -7.56   -6.36   -4.66   -2.41    0.53    4.30    8.88   13.96
+    20.0    0.00   -0.26   -0.96   -2.03   -3.36   -4.80   -6.18   -7.35   -8.15   -8.47   -8.27   -7.54   -6.33   -4.62   -2.36    0.60    4.38    9.00   14.12
+    25.0    0.00   -0.26   -0.96   -2.02   -3.34   -4.77   -6.16   -7.32   -8.12   -8.44   -8.25   -7.53   -6.30   -4.58   -2.30    0.68    4.49    9.13   14.31
+    30.0    0.00   -0.26   -0.95   -2.01   -3.32   -4.75   -6.12   -7.28   -8.08   -8.42   -8.22   -7.51   -6.28   -4.54   -2.24    0.77    4.61    9.29   14.51
+    35.0    0.00   -0.25   -0.94   -2.00   -3.30   -4.72   -6.09   -7.25   -8.05   -8.38   -8.20   -7.48   -6.25   -4.50   -2.17    0.87    4.75    9.46   14.71
+    40.0    0.00   -0.25   -0.93   -1.98   -3.28   -4.69   -6.05   -7.21   -8.01   -8.35   -8.17   -7.46   -6.23   -4.46   -2.10    0.97    4.88    9.62   14.90
+    45.0    0.00   -0.25   -0.93   -1.97   -3.26   -4.66   -6.02   -7.16   -7.96   -8.30   -8.13   -7.43   -6.19   -4.42   -2.03    1.08    5.02    9.78   15.07
+    50.0    0.00   -0.24   -0.92   -1.95   -3.24   -4.63   -5.98   -7.12   -7.91   -8.26   -8.09   -7.39   -6.16   -4.37   -1.97    1.17    5.14    9.92   15.22
+    55.0    0.00   -0.24   -0.91   -1.94   -3.21   -4.60   -5.94   -7.07   -7.86   -8.20   -8.04   -7.35   -6.12   -4.33   -1.91    1.24    5.24   10.04   15.34
+    60.0    0.00   -0.24   -0.90   -1.92   -3.19   -4.57   -5.90   -7.02   -7.81   -8.15   -7.99   -7.30   -6.08   -4.29   -1.87    1.30    5.31   10.11   15.41
+    65.0    0.00   -0.23   -0.89   -1.91   -3.17   -4.54   -5.86   -6.97   -7.75   -8.09   -7.93   -7.25   -6.03   -4.25   -1.83    1.33    5.34   10.15   15.45
+    70.0    0.00   -0.23   -0.89   -1.90   -3.15   -4.51   -5.82   -6.93   -7.70   -8.03   -7.88   -7.20   -5.99   -4.22   -1.82    1.33    5.33   10.14   15.45
+    75.0    0.00   -0.23   -0.88   -1.88   -3.13   -4.49   -5.79   -6.89   -7.65   -7.98   -7.82   -7.15   -5.96   -4.21   -1.82    1.31    5.28   10.08   15.40
+    80.0    0.00   -0.23   -0.87   -1.87   -3.12   -4.46   -5.76   -6.85   -7.61   -7.94   -7.78   -7.11   -5.93   -4.20   -1.85    1.25    5.20    9.99   15.32
+    85.0    0.00   -0.22   -0.87   -1.86   -3.10   -4.44   -5.74   -6.83   -7.58   -7.91   -7.75   -7.09   -5.92   -4.21   -1.89    1.17    5.09    9.86   15.20
+    90.0    0.00   -0.22   -0.86   -1.86   -3.09   -4.43   -5.72   -6.81   -7.56   -7.89   -7.73   -7.08   -5.92   -4.24   -1.95    1.08    4.96    9.71   15.05
+    95.0    0.00   -0.22   -0.86   -1.85   -3.09   -4.42   -5.71   -6.80   -7.56   -7.89   -7.73   -7.09   -5.94   -4.28   -2.02    0.97    4.82    9.54   14.88
+   100.0    0.00   -0.22   -0.86   -1.85   -3.08   -4.42   -5.71   -6.80   -7.56   -7.90   -7.75   -7.11   -5.98   -4.34   -2.11    0.86    4.68    9.37   14.70
+   105.0    0.00   -0.22   -0.86   -1.85   -3.08   -4.42   -5.72   -6.81   -7.58   -7.92   -7.78   -7.16   -6.04   -4.41   -2.19    0.75    4.54    9.21   14.52
+   110.0    0.00   -0.21   -0.85   -1.85   -3.09   -4.43   -5.73   -6.83   -7.61   -7.96   -7.83   -7.21   -6.10   -4.49   -2.28    0.64    4.42    9.07   14.35
+   115.0    0.00   -0.21   -0.85   -1.85   -3.09   -4.44   -5.75   -6.86   -7.65   -8.01   -7.89   -7.28   -6.18   -4.57   -2.36    0.56    4.32    8.95   14.20
+   120.0    0.00   -0.21   -0.86   -1.86   -3.10   -4.46   -5.77   -6.90   -7.69   -8.06   -7.95   -7.35   -6.25   -4.64   -2.44    0.48    4.25    8.86   14.08
+   125.0    0.00   -0.21   -0.86   -1.86   -3.12   -4.48   -5.80   -6.93   -7.73   -8.11   -8.01   -7.42   -6.33   -4.72   -2.50    0.43    4.20    8.81   13.99
+   130.0    0.00   -0.21   -0.86   -1.87   -3.13   -4.50   -5.83   -6.97   -7.78   -8.16   -8.07   -7.48   -6.39   -4.78   -2.55    0.40    4.18    8.78   13.94
+   135.0    0.00   -0.21   -0.86   -1.88   -3.15   -4.53   -5.86   -7.01   -7.82   -8.21   -8.12   -7.54   -6.45   -4.83   -2.59    0.38    4.17    8.78   13.92
+   140.0    0.00   -0.21   -0.86   -1.89   -3.16   -4.55   -5.89   -7.04   -7.85   -8.24   -8.16   -7.58   -6.49   -4.87   -2.62    0.37    4.18    8.79   13.93
+   145.0    0.00   -0.21   -0.87   -1.89   -3.18   -4.57   -5.92   -7.07   -7.88   -8.28   -8.19   -7.61   -6.52   -4.89   -2.63    0.37    4.19    8.81   13.95
+   150.0    0.00   -0.21   -0.87   -1.90   -3.19   -4.59   -5.95   -7.10   -7.91   -8.30   -8.21   -7.63   -6.54   -4.90   -2.63    0.37    4.21    8.83   13.98
+   155.0    0.00   -0.21   -0.87   -1.91   -3.20   -4.61   -5.97   -7.12   -7.93   -8.32   -8.23   -7.65   -6.55   -4.91   -2.64    0.38    4.21    8.84   14.00
+   160.0    0.00   -0.21   -0.87   -1.91   -3.21   -4.63   -5.98   -7.13   -7.94   -8.33   -8.24   -7.65   -6.56   -4.91   -2.64    0.38    4.21    8.83   14.00
+   165.0    0.00   -0.21   -0.88   -1.92   -3.22   -4.64   -6.00   -7.14   -7.95   -8.34   -8.24   -7.65   -6.55   -4.91   -2.64    0.37    4.19    8.81   13.98
+   170.0    0.00   -0.21   -0.88   -1.92   -3.23   -4.64   -6.00   -7.15   -7.96   -8.34   -8.25   -7.65   -6.55   -4.91   -2.64    0.35    4.16    8.76   13.93
+   175.0    0.00   -0.21   -0.88   -1.92   -3.23   -4.65   -6.01   -7.16   -7.97   -8.35   -8.25   -7.65   -6.55   -4.90   -2.64    0.33    4.11    8.70   13.87
+   180.0    0.00   -0.21   -0.88   -1.92   -3.23   -4.65   -6.01   -7.16   -7.97   -8.35   -8.25   -7.66   -6.55   -4.90   -2.65    0.31    4.07    8.63   13.79
+   185.0    0.00   -0.21   -0.88   -1.92   -3.23   -4.64   -6.00   -7.16   -7.97   -8.36   -8.26   -7.66   -6.55   -4.90   -2.66    0.28    4.02    8.57   13.72
+   190.0    0.00   -0.21   -0.87   -1.92   -3.22   -4.64   -6.00   -7.15   -7.97   -8.36   -8.26   -7.66   -6.54   -4.90   -2.67    0.26    3.99    8.52   13.66
+   195.0    0.00   -0.21   -0.87   -1.91   -3.21   -4.63   -5.99   -7.15   -7.97   -8.35   -8.25   -7.65   -6.53   -4.89   -2.66    0.26    3.97    8.50   13.64
+   200.0    0.00   -0.21   -0.87   -1.91   -3.20   -4.61   -5.98   -7.14   -7.96   -8.34   -8.24   -7.63   -6.52   -4.88   -2.65    0.27    3.98    8.52   13.67
+   205.0    0.00   -0.21   -0.87   -1.90   -3.19   -4.60   -5.96   -7.12   -7.94   -8.33   -8.22   -7.61   -6.49   -4.85   -2.62    0.30    4.03    8.58   13.75
+   210.0    0.00   -0.21   -0.87   -1.89   -3.18   -4.59   -5.94   -7.10   -7.92   -8.30   -8.19   -7.57   -6.45   -4.80   -2.57    0.35    4.11    8.70   13.88
+   215.0    0.00   -0.21   -0.86   -1.89   -3.17   -4.57   -5.92   -7.08   -7.89   -8.26   -8.14   -7.52   -6.39   -4.74   -2.51    0.44    4.22    8.85   14.06
+   220.0    0.00   -0.21   -0.86   -1.88   -3.16   -4.55   -5.90   -7.05   -7.85   -8.22   -8.09   -7.46   -6.32   -4.67   -2.42    0.54    4.36    9.04   14.28
+   225.0    0.00   -0.21   -0.86   -1.88   -3.15   -4.53   -5.88   -7.01   -7.81   -8.17   -8.03   -7.38   -6.24   -4.58   -2.32    0.67    4.53    9.25   14.52
+   230.0    0.00   -0.21   -0.86   -1.87   -3.14   -4.52   -5.85   -6.98   -7.77   -8.11   -7.96   -7.30   -6.15   -4.48   -2.20    0.81    4.71    9.46   14.74
+   235.0    0.00   -0.21   -0.86   -1.87   -3.13   -4.50   -5.83   -6.95   -7.72   -8.05   -7.89   -7.22   -6.06   -4.37   -2.08    0.96    4.88    9.66   14.94
+   240.0    0.00   -0.22   -0.86   -1.86   -3.12   -4.49   -5.80   -6.91   -7.68   -7.99   -7.82   -7.14   -5.97   -4.27   -1.96    1.10    5.04    9.83   15.09
+   245.0    0.00   -0.22   -0.86   -1.86   -3.12   -4.48   -5.78   -6.88   -7.64   -7.94   -7.76   -7.07   -5.88   -4.17   -1.84    1.23    5.18    9.95   15.17
+   250.0    0.00   -0.22   -0.86   -1.87   -3.11   -4.47   -5.77   -6.86   -7.60   -7.90   -7.71   -7.01   -5.81   -4.08   -1.74    1.34    5.27   10.01   15.19
+   255.0    0.00   -0.22   -0.87   -1.87   -3.12   -4.47   -5.76   -6.84   -7.58   -7.87   -7.67   -6.97   -5.76   -4.01   -1.66    1.41    5.32   10.00   15.12
+   260.0    0.00   -0.22   -0.87   -1.87   -3.12   -4.47   -5.76   -6.84   -7.57   -7.86   -7.65   -6.94   -5.72   -3.97   -1.61    1.45    5.32    9.94   15.00
+   265.0    0.00   -0.23   -0.88   -1.88   -3.13   -4.48   -5.77   -6.84   -7.57   -7.86   -7.65   -6.93   -5.70   -3.94   -1.59    1.45    5.26    9.81   14.82
+   270.0    0.00   -0.23   -0.88   -1.89   -3.14   -4.49   -5.78   -6.85   -7.58   -7.87   -7.66   -6.94   -5.71   -3.94   -1.60    1.41    5.16    9.65   14.61
+   275.0    0.00   -0.23   -0.89   -1.90   -3.16   -4.51   -5.80   -6.88   -7.61   -7.90   -7.69   -6.97   -5.73   -3.97   -1.64    1.33    5.03    9.45   14.39
+   280.0    0.00   -0.23   -0.90   -1.92   -3.18   -4.54   -5.83   -6.91   -7.64   -7.93   -7.73   -7.01   -5.77   -4.02   -1.71    1.23    4.87    9.24   14.18
+   285.0    0.00   -0.24   -0.91   -1.93   -3.20   -4.56   -5.87   -6.95   -7.69   -7.98   -7.78   -7.06   -5.83   -4.09   -1.80    1.10    4.70    9.04   13.99
+   290.0    0.00   -0.24   -0.91   -1.95   -3.23   -4.60   -5.91   -7.00   -7.74   -8.04   -7.83   -7.12   -5.90   -4.17   -1.91    0.96    4.53    8.85   13.85
+   295.0    0.00   -0.24   -0.92   -1.96   -3.25   -4.63   -5.95   -7.05   -7.79   -8.09   -7.90   -7.19   -5.97   -4.26   -2.02    0.82    4.37    8.70   13.74
+   300.0    0.00   -0.25   -0.93   -1.98   -3.28   -4.67   -6.00   -7.10   -7.85   -8.15   -7.96   -7.26   -6.06   -4.36   -2.14    0.69    4.23    8.58   13.68
+   305.0    0.00   -0.25   -0.94   -2.00   -3.30   -4.71   -6.04   -7.16   -7.91   -8.21   -8.02   -7.32   -6.14   -4.46   -2.26    0.57    4.12    8.51   13.66
+   310.0    0.00   -0.25   -0.95   -2.01   -3.33   -4.74   -6.09   -7.21   -7.97   -8.27   -8.08   -7.39   -6.22   -4.55   -2.36    0.46    4.04    8.47   13.66
+   315.0    0.00   -0.26   -0.96   -2.03   -3.35   -4.78   -6.13   -7.26   -8.02   -8.33   -8.14   -7.45   -6.29   -4.64   -2.45    0.39    4.00    8.46   13.68
+   320.0    0.00   -0.26   -0.96   -2.04   -3.37   -4.81   -6.17   -7.30   -8.07   -8.38   -8.19   -7.51   -6.35   -4.71   -2.52    0.33    3.97    8.47   13.69
+   325.0    0.00   -0.26   -0.97   -2.05   -3.39   -4.83   -6.20   -7.34   -8.11   -8.42   -8.23   -7.55   -6.40   -4.76   -2.57    0.30    3.97    8.50   13.71
+   330.0    0.00   -0.26   -0.98   -2.06   -3.41   -4.85   -6.23   -7.37   -8.14   -8.45   -8.27   -7.59   -6.44   -4.81   -2.61    0.28    3.98    8.53   13.70
+   335.0    0.00   -0.26   -0.98   -2.07   -3.42   -4.87   -6.25   -7.40   -8.17   -8.48   -8.30   -7.62   -6.47   -4.83   -2.63    0.28    4.01    8.56   13.69
+   340.0    0.00   -0.27   -0.98   -2.07   -3.42   -4.88   -6.27   -7.42   -8.19   -8.51   -8.32   -7.64   -6.48   -4.84   -2.63    0.29    4.03    8.59   13.67
+   345.0    0.00   -0.27   -0.98   -2.08   -3.43   -4.88   -6.27   -7.43   -8.21   -8.52   -8.33   -7.64   -6.48   -4.84   -2.62    0.30    4.06    8.61   13.65
+   350.0    0.00   -0.27   -0.98   -2.08   -3.43   -4.88   -6.28   -7.43   -8.22   -8.53   -8.33   -7.64   -6.48   -4.82   -2.60    0.33    4.08    8.63   13.63
+   355.0    0.00   -0.27   -0.98   -2.07   -3.42   -4.88   -6.27   -7.43   -8.22   -8.53   -8.33   -7.63   -6.46   -4.80   -2.58    0.35    4.11    8.65   13.64
+   360.0    0.00   -0.27   -0.98   -2.07   -3.42   -4.87   -6.26   -7.43   -8.21   -8.53   -8.32   -7.62   -6.44   -4.77   -2.54    0.39    4.14    8.68   13.67
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.08     -0.59    120.35                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.13   -0.51   -1.08   -1.79   -2.58   -3.39   -4.17   -4.81   -5.21   -5.25   -4.86   -4.03   -2.83   -1.33    0.49    2.75    5.68    9.44
+     0.0    0.00   -0.12   -0.48   -1.02   -1.69   -2.44   -3.24   -4.04   -4.72   -5.17   -5.25   -4.89   -4.12   -3.00   -1.59    0.15    2.44    5.50    9.31
+     5.0    0.00   -0.12   -0.48   -1.02   -1.69   -2.44   -3.24   -4.03   -4.72   -5.16   -5.25   -4.90   -4.13   -3.01   -1.61    0.14    2.42    5.45    9.20
+    10.0    0.00   -0.12   -0.47   -1.01   -1.68   -2.44   -3.24   -4.03   -4.71   -5.15   -5.24   -4.90   -4.13   -3.02   -1.61    0.14    2.41    5.41    9.12
+    15.0    0.00   -0.12   -0.47   -1.01   -1.68   -2.44   -3.24   -4.02   -4.70   -5.14   -5.23   -4.89   -4.13   -3.02   -1.60    0.15    2.41    5.38    9.06
+    20.0    0.00   -0.11   -0.47   -1.01   -1.68   -2.44   -3.24   -4.02   -4.69   -5.13   -5.21   -4.88   -4.12   -3.00   -1.58    0.18    2.43    5.37    9.05
+    25.0    0.00   -0.11   -0.46   -1.00   -1.68   -2.44   -3.24   -4.02   -4.68   -5.11   -5.20   -4.86   -4.10   -2.97   -1.54    0.22    2.46    5.39    9.06
+    30.0    0.00   -0.11   -0.46   -1.00   -1.68   -2.45   -3.24   -4.01   -4.67   -5.09   -5.18   -4.84   -4.07   -2.93   -1.49    0.28    2.51    5.42    9.11
+    35.0    0.00   -0.11   -0.46   -1.00   -1.68   -2.45   -3.24   -4.01   -4.66   -5.08   -5.16   -4.81   -4.03   -2.88   -1.42    0.35    2.58    5.48    9.19
+    40.0    0.00   -0.11   -0.45   -1.00   -1.68   -2.45   -3.25   -4.01   -4.65   -5.06   -5.13   -4.78   -4.00   -2.83   -1.36    0.42    2.65    5.55    9.30
+    45.0    0.00   -0.10   -0.45   -0.99   -1.68   -2.45   -3.25   -4.01   -4.65   -5.05   -5.11   -4.75   -3.96   -2.78   -1.30    0.49    2.72    5.62    9.41
+    50.0    0.00   -0.10   -0.45   -0.99   -1.68   -2.45   -3.25   -4.01   -4.65   -5.05   -5.10   -4.72   -3.92   -2.73   -1.24    0.56    2.78    5.69    9.52
+    55.0    0.00   -0.10   -0.45   -0.99   -1.68   -2.46   -3.26   -4.02   -4.65   -5.04   -5.09   -4.70   -3.88   -2.69   -1.19    0.60    2.84    5.76    9.62
+    60.0    0.00   -0.10   -0.44   -0.99   -1.68   -2.46   -3.27   -4.03   -4.66   -5.05   -5.08   -4.68   -3.86   -2.66   -1.16    0.64    2.87    5.81    9.70
+    65.0    0.00   -0.10   -0.44   -0.99   -1.69   -2.47   -3.28   -4.05   -4.68   -5.06   -5.08   -4.67   -3.84   -2.64   -1.15    0.65    2.89    5.84    9.76
+    70.0    0.00   -0.10   -0.44   -0.99   -1.69   -2.48   -3.30   -4.07   -4.70   -5.07   -5.08   -4.67   -3.83   -2.64   -1.15    0.64    2.88    5.85    9.79
+    75.0    0.00   -0.10   -0.44   -0.99   -1.69   -2.49   -3.31   -4.09   -4.72   -5.09   -5.09   -4.67   -3.84   -2.65   -1.17    0.61    2.86    5.83    9.78
+    80.0    0.00   -0.10   -0.45   -1.00   -1.70   -2.50   -3.33   -4.12   -4.75   -5.11   -5.11   -4.68   -3.85   -2.67   -1.21    0.57    2.82    5.80    9.74
+    85.0    0.00   -0.10   -0.45   -1.00   -1.71   -2.52   -3.36   -4.14   -4.78   -5.14   -5.13   -4.70   -3.87   -2.70   -1.25    0.52    2.77    5.75    9.67
+    90.0    0.00   -0.10   -0.45   -1.01   -1.72   -2.54   -3.38   -4.17   -4.81   -5.17   -5.15   -4.72   -3.89   -2.73   -1.29    0.47    2.71    5.68    9.57
+    95.0    0.00   -0.10   -0.46   -1.02   -1.74   -2.55   -3.40   -4.20   -4.83   -5.19   -5.18   -4.74   -3.92   -2.77   -1.33    0.42    2.66    5.62    9.47
+   100.0    0.00   -0.11   -0.46   -1.03   -1.75   -2.58   -3.43   -4.22   -4.86   -5.22   -5.20   -4.77   -3.95   -2.80   -1.37    0.38    2.61    5.56    9.36
+   105.0    0.00   -0.11   -0.47   -1.04   -1.77   -2.60   -3.45   -4.25   -4.88   -5.24   -5.22   -4.79   -3.97   -2.82   -1.40    0.35    2.58    5.51    9.26
+   110.0    0.00   -0.11   -0.48   -1.05   -1.79   -2.62   -3.47   -4.27   -4.90   -5.26   -5.25   -4.82   -4.00   -2.84   -1.41    0.35    2.57    5.48    9.18
+   115.0    0.00   -0.11   -0.48   -1.07   -1.81   -2.64   -3.50   -4.29   -4.92   -5.28   -5.26   -4.84   -4.01   -2.85   -1.41    0.36    2.58    5.46    9.13
+   120.0    0.00   -0.12   -0.49   -1.08   -1.83   -2.66   -3.52   -4.30   -4.93   -5.29   -5.28   -4.85   -4.03   -2.86   -1.39    0.38    2.61    5.47    9.10
+   125.0    0.00   -0.12   -0.50   -1.10   -1.85   -2.68   -3.53   -4.32   -4.94   -5.30   -5.29   -4.87   -4.03   -2.85   -1.37    0.43    2.65    5.50    9.09
+   130.0    0.00   -0.12   -0.50   -1.11   -1.86   -2.70   -3.55   -4.33   -4.95   -5.30   -5.30   -4.88   -4.04   -2.84   -1.33    0.48    2.71    5.54    9.11
+   135.0    0.00   -0.12   -0.51   -1.12   -1.88   -2.72   -3.56   -4.33   -4.95   -5.30   -5.30   -4.88   -4.04   -2.82   -1.29    0.54    2.77    5.60    9.15
+   140.0    0.00   -0.13   -0.52   -1.13   -1.89   -2.73   -3.57   -4.33   -4.95   -5.31   -5.31   -4.89   -4.04   -2.80   -1.25    0.60    2.84    5.66    9.19
+   145.0    0.00   -0.13   -0.52   -1.14   -1.90   -2.74   -3.57   -4.33   -4.94   -5.31   -5.31   -4.89   -4.04   -2.79   -1.22    0.65    2.90    5.71    9.23
+   150.0    0.00   -0.13   -0.53   -1.15   -1.91   -2.74   -3.57   -4.33   -4.94   -5.31   -5.32   -4.90   -4.04   -2.78   -1.19    0.69    2.94    5.74    9.25
+   155.0    0.00   -0.13   -0.53   -1.15   -1.91   -2.74   -3.57   -4.33   -4.94   -5.31   -5.33   -4.91   -4.05   -2.78   -1.18    0.71    2.97    5.76    9.25
+   160.0    0.00   -0.13   -0.53   -1.15   -1.91   -2.74   -3.56   -4.32   -4.93   -5.31   -5.33   -4.92   -4.06   -2.78   -1.18    0.71    2.97    5.76    9.23
+   165.0    0.00   -0.14   -0.54   -1.15   -1.91   -2.73   -3.55   -4.31   -4.93   -5.31   -5.34   -4.94   -4.07   -2.80   -1.19    0.70    2.95    5.73    9.18
+   170.0    0.00   -0.14   -0.54   -1.15   -1.90   -2.72   -3.54   -4.30   -4.93   -5.32   -5.35   -4.95   -4.09   -2.82   -1.22    0.66    2.91    5.68    9.11
+   175.0    0.00   -0.14   -0.54   -1.15   -1.90   -2.71   -3.53   -4.30   -4.93   -5.32   -5.36   -4.96   -4.11   -2.84   -1.26    0.61    2.85    5.62    9.03
+   180.0    0.00   -0.14   -0.54   -1.14   -1.89   -2.70   -3.52   -4.29   -4.93   -5.33   -5.37   -4.97   -4.12   -2.87   -1.30    0.55    2.77    5.55    8.96
+   185.0    0.00   -0.14   -0.54   -1.14   -1.87   -2.69   -3.51   -4.29   -4.93   -5.34   -5.38   -4.98   -4.13   -2.89   -1.35    0.48    2.70    5.48    8.89
+   190.0    0.00   -0.14   -0.53   -1.13   -1.86   -2.67   -3.50   -4.29   -4.94   -5.34   -5.38   -4.97   -4.12   -2.90   -1.38    0.42    2.63    5.42    8.86
+   195.0    0.00   -0.14   -0.53   -1.12   -1.85   -2.66   -3.49   -4.28   -4.94   -5.34   -5.37   -4.96   -4.11   -2.90   -1.40    0.38    2.58    5.39    8.87
+   200.0    0.00   -0.14   -0.53   -1.12   -1.84   -2.65   -3.49   -4.29   -4.95   -5.34   -5.36   -4.94   -4.09   -2.89   -1.41    0.35    2.55    5.39    8.92
+   205.0    0.00   -0.15   -0.53   -1.11   -1.83   -2.64   -3.48   -4.29   -4.95   -5.34   -5.35   -4.91   -4.05   -2.86   -1.40    0.35    2.55    5.43    9.01
+   210.0    0.00   -0.15   -0.53   -1.11   -1.82   -2.63   -3.48   -4.29   -4.95   -5.34   -5.33   -4.88   -4.01   -2.82   -1.36    0.38    2.59    5.50    9.15
+   215.0    0.00   -0.15   -0.53   -1.10   -1.82   -2.63   -3.48   -4.29   -4.95   -5.33   -5.32   -4.85   -3.97   -2.77   -1.31    0.44    2.67    5.61    9.32
+   220.0    0.00   -0.15   -0.53   -1.10   -1.82   -2.63   -3.48   -4.29   -4.95   -5.32   -5.30   -4.82   -3.93   -2.71   -1.24    0.52    2.78    5.76    9.50
+   225.0    0.00   -0.15   -0.53   -1.10   -1.82   -2.63   -3.47   -4.28   -4.94   -5.31   -5.28   -4.79   -3.89   -2.66   -1.17    0.63    2.91    5.91    9.68
+   230.0    0.00   -0.15   -0.53   -1.11   -1.82   -2.63   -3.47   -4.28   -4.93   -5.30   -5.27   -4.78   -3.86   -2.61   -1.09    0.75    3.06    6.07    9.84
+   235.0    0.00   -0.15   -0.54   -1.11   -1.82   -2.63   -3.47   -4.27   -4.92   -5.29   -5.26   -4.77   -3.85   -2.58   -1.01    0.86    3.21    6.22    9.96
+   240.0    0.00   -0.15   -0.54   -1.11   -1.83   -2.63   -3.47   -4.26   -4.91   -5.28   -5.26   -4.78   -3.86   -2.56   -0.95    0.97    3.35    6.35   10.04
+   245.0    0.00   -0.15   -0.54   -1.12   -1.83   -2.63   -3.46   -4.25   -4.89   -5.27   -5.26   -4.80   -3.88   -2.56   -0.91    1.06    3.46    6.44   10.07
+   250.0    0.00   -0.15   -0.54   -1.12   -1.84   -2.63   -3.46   -4.23   -4.88   -5.26   -5.27   -4.83   -3.92   -2.58   -0.90    1.12    3.53    6.48   10.05
+   255.0    0.00   -0.16   -0.55   -1.13   -1.84   -2.64   -3.45   -4.22   -4.86   -5.26   -5.29   -4.87   -3.97   -2.63   -0.91    1.14    3.56    6.47    9.98
+   260.0    0.00   -0.16   -0.55   -1.13   -1.85   -2.64   -3.44   -4.20   -4.84   -5.25   -5.31   -4.91   -4.03   -2.68   -0.95    1.12    3.54    6.41    9.87
+   265.0    0.00   -0.16   -0.55   -1.14   -1.85   -2.64   -3.43   -4.19   -4.83   -5.25   -5.33   -4.96   -4.09   -2.75   -1.01    1.07    3.48    6.31    9.74
+   270.0    0.00   -0.16   -0.56   -1.14   -1.86   -2.63   -3.43   -4.18   -4.82   -5.25   -5.34   -5.00   -4.15   -2.82   -1.08    0.98    3.37    6.18    9.61
+   275.0    0.00   -0.16   -0.56   -1.14   -1.86   -2.63   -3.42   -4.16   -4.80   -5.24   -5.36   -5.03   -4.20   -2.89   -1.17    0.87    3.23    6.03    9.50
+   280.0    0.00   -0.16   -0.56   -1.15   -1.86   -2.63   -3.41   -4.15   -4.79   -5.24   -5.36   -5.05   -4.24   -2.95   -1.26    0.75    3.08    5.88    9.41
+   285.0    0.00   -0.16   -0.56   -1.14   -1.85   -2.62   -3.40   -4.14   -4.79   -5.23   -5.36   -5.06   -4.27   -3.00   -1.35    0.62    2.92    5.73    9.36
+   290.0    0.00   -0.16   -0.56   -1.14   -1.85   -2.61   -3.39   -4.13   -4.78   -5.23   -5.36   -5.06   -4.28   -3.04   -1.42    0.50    2.77    5.60    9.35
+   295.0    0.00   -0.16   -0.55   -1.14   -1.84   -2.60   -3.38   -4.12   -4.77   -5.22   -5.35   -5.05   -4.27   -3.05   -1.48    0.39    2.64    5.51    9.38
+   300.0    0.00   -0.15   -0.55   -1.13   -1.83   -2.59   -3.37   -4.12   -4.77   -5.21   -5.33   -5.02   -4.25   -3.06   -1.53    0.30    2.53    5.45    9.45
+   305.0    0.00   -0.15   -0.55   -1.12   -1.82   -2.57   -3.35   -4.11   -4.76   -5.20   -5.31   -4.99   -4.22   -3.04   -1.55    0.24    2.46    5.42    9.53
+   310.0    0.00   -0.15   -0.54   -1.11   -1.80   -2.56   -3.34   -4.10   -4.76   -5.20   -5.29   -4.96   -4.18   -3.02   -1.56    0.20    2.41    5.42    9.63
+   315.0    0.00   -0.15   -0.54   -1.10   -1.79   -2.54   -3.33   -4.09   -4.75   -5.19   -5.28   -4.93   -4.14   -2.99   -1.55    0.18    2.40    5.45    9.72
+   320.0    0.00   -0.15   -0.53   -1.09   -1.77   -2.52   -3.31   -4.08   -4.75   -5.18   -5.26   -4.90   -4.11   -2.96   -1.54    0.18    2.40    5.50    9.80
+   325.0    0.00   -0.14   -0.53   -1.08   -1.76   -2.51   -3.30   -4.07   -4.74   -5.18   -5.25   -4.88   -4.08   -2.94   -1.53    0.18    2.42    5.54    9.84
+   330.0    0.00   -0.14   -0.52   -1.07   -1.74   -2.49   -3.28   -4.07   -4.74   -5.18   -5.24   -4.86   -4.06   -2.92   -1.52    0.19    2.45    5.59    9.85
+   335.0    0.00   -0.14   -0.51   -1.06   -1.73   -2.48   -3.27   -4.06   -4.74   -5.17   -5.24   -4.86   -4.05   -2.92   -1.52    0.20    2.47    5.62    9.83
+   340.0    0.00   -0.14   -0.51   -1.05   -1.72   -2.46   -3.26   -4.05   -4.74   -5.17   -5.24   -4.86   -4.06   -2.92   -1.52    0.21    2.49    5.63    9.76
+   345.0    0.00   -0.13   -0.50   -1.04   -1.71   -2.46   -3.25   -4.05   -4.73   -5.17   -5.24   -4.86   -4.07   -2.93   -1.53    0.20    2.49    5.62    9.67
+   350.0    0.00   -0.13   -0.49   -1.03   -1.70   -2.45   -3.25   -4.04   -4.73   -5.17   -5.24   -4.87   -4.08   -2.95   -1.55    0.19    2.48    5.59    9.55
+   355.0    0.00   -0.13   -0.49   -1.03   -1.69   -2.44   -3.24   -4.04   -4.73   -5.17   -5.25   -4.88   -4.10   -2.98   -1.57    0.17    2.46    5.55    9.43
+   360.0    0.00   -0.12   -0.48   -1.02   -1.69   -2.44   -3.24   -4.04   -4.72   -5.17   -5.25   -4.89   -4.12   -3.00   -1.59    0.15    2.44    5.50    9.31
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH701945D_M    SCIS                                        TYPE / SERIAL NO    
+FIELD               NGS                      2    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.48      0.13     89.65                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.43   -1.40   -2.73   -4.12   -5.92   -7.36   -8.69   -9.47   -9.81   -9.66   -8.79   -7.63   -5.85   -3.38   -0.41    3.37
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.58      0.01    119.25                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.43   -1.01   -1.78   -2.59   -3.38   -4.19   -4.97   -5.71   -6.21   -6.25   -5.86   -5.13   -3.83   -2.23   -0.21    2.45
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH701945D_M    SCIT                                        TYPE / SERIAL NO    
+FIELD               NGS                      3    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.68     -0.27     89.25                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.53   -1.50   -2.83   -4.22   -5.82   -7.16   -8.29   -9.07   -9.31   -9.16   -8.39   -7.13   -5.45   -3.28   -0.41    3.07
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.18     -0.39    117.85                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.23   -0.61   -1.18   -1.89   -2.58   -3.39   -4.27   -4.91   -5.31   -5.45   -5.06   -4.23   -2.83   -1.13    1.19    4.15
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH701945D_M    SNOW                                        TYPE / SERIAL NO    
+COPIED              Geo++ GmbH               1    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+COPIED FROM ASH701945C_M    SNOW                            COMMENT             
+ATTENTION! COPIED WITHOUT VERIFICATION BY CALIBRATION!      COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.19      0.40     89.87                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.25   -0.98   -2.12   -3.53   -5.10   -6.66   -8.07   -9.14   -9.69   -9.58   -8.72   -7.11   -4.85   -2.02    1.30    5.15    9.61   14.67
+     0.0    0.00   -0.24   -0.99   -2.19   -3.70   -5.38   -7.04   -8.51   -9.59  -10.12   -9.97   -9.11   -7.54   -5.35   -2.58    0.73    4.64    9.15   14.07
+     5.0    0.00   -0.24   -0.99   -2.17   -3.68   -5.35   -7.01   -8.48   -9.57  -10.11   -9.96   -9.09   -7.52   -5.31   -2.54    0.78    4.69    9.21   14.20
+    10.0    0.00   -0.23   -0.98   -2.16   -3.66   -5.32   -6.98   -8.45   -9.54  -10.09   -9.95   -9.07   -7.48   -5.25   -2.47    0.85    4.75    9.30   14.38
+    15.0    0.00   -0.23   -0.97   -2.15   -3.63   -5.29   -6.94   -8.41   -9.52  -10.07   -9.93   -9.04   -7.43   -5.18   -2.39    0.93    4.84    9.42   14.60
+    20.0    0.00   -0.23   -0.97   -2.13   -3.61   -5.25   -6.90   -8.38   -9.49  -10.05   -9.91   -9.01   -7.38   -5.10   -2.30    1.02    4.93    9.55   14.83
+    25.0    0.00   -0.23   -0.96   -2.11   -3.58   -5.22   -6.87   -8.35   -9.47  -10.03   -9.89   -8.97   -7.31   -5.02   -2.19    1.13    5.05    9.69   15.07
+    30.0    0.00   -0.23   -0.95   -2.10   -3.55   -5.18   -6.83   -8.32   -9.45  -10.02   -9.87   -8.93   -7.25   -4.92   -2.08    1.25    5.16    9.83   15.28
+    35.0    0.00   -0.23   -0.94   -2.08   -3.52   -5.15   -6.79   -8.29   -9.42  -10.00   -9.85   -8.89   -7.18   -4.82   -1.96    1.38    5.29    9.96   15.47
+    40.0    0.00   -0.22   -0.94   -2.06   -3.50   -5.11   -6.75   -8.25   -9.39   -9.97   -9.81   -8.84   -7.11   -4.73   -1.84    1.50    5.40   10.08   15.62
+    45.0    0.00   -0.22   -0.93   -2.05   -3.47   -5.07   -6.71   -8.20   -9.35   -9.93   -9.77   -8.79   -7.04   -4.64   -1.74    1.61    5.52   10.19   15.73
+    50.0    0.00   -0.22   -0.92   -2.03   -3.44   -5.03   -6.66   -8.15   -9.29   -9.87   -9.71   -8.73   -6.97   -4.56   -1.65    1.71    5.62   10.29   15.81
+    55.0    0.00   -0.22   -0.92   -2.02   -3.41   -4.99   -6.60   -8.08   -9.21   -9.79   -9.64   -8.67   -6.91   -4.50   -1.57    1.80    5.72   10.38   15.86
+    60.0    0.00   -0.22   -0.91   -2.00   -3.39   -4.94   -6.54   -7.99   -9.12   -9.70   -9.55   -8.60   -6.85   -4.45   -1.52    1.87    5.80   10.46   15.89
+    65.0    0.00   -0.22   -0.91   -1.99   -3.36   -4.90   -6.47   -7.91   -9.02   -9.59   -9.46   -8.52   -6.81   -4.42   -1.49    1.92    5.87   10.52   15.91
+    70.0    0.00   -0.22   -0.91   -1.98   -3.34   -4.86   -6.40   -7.81   -8.91   -9.48   -9.36   -8.46   -6.77   -4.40   -1.48    1.95    5.92   10.58   15.91
+    75.0    0.00   -0.22   -0.91   -1.98   -3.32   -4.82   -6.34   -7.73   -8.80   -9.37   -9.27   -8.39   -6.74   -4.40   -1.48    1.95    5.95   10.61   15.90
+    80.0    0.00   -0.23   -0.91   -1.97   -3.31   -4.79   -6.29   -7.65   -8.71   -9.28   -9.19   -8.34   -6.72   -4.41   -1.50    1.94    5.95   10.60   15.85
+    85.0    0.00   -0.23   -0.91   -1.97   -3.30   -4.77   -6.25   -7.60   -8.64   -9.21   -9.13   -8.31   -6.72   -4.43   -1.54    1.91    5.92   10.56   15.78
+    90.0    0.00   -0.23   -0.92   -1.98   -3.31   -4.77   -6.24   -7.57   -8.60   -9.16   -9.09   -8.29   -6.72   -4.46   -1.58    1.85    5.85   10.48   15.66
+    95.0    0.00   -0.23   -0.92   -1.99   -3.31   -4.78   -6.24   -7.57   -8.59   -9.15   -9.08   -8.29   -6.74   -4.49   -1.64    1.77    5.75   10.34   15.50
+   100.0    0.00   -0.24   -0.93   -2.00   -3.33   -4.80   -6.26   -7.59   -8.61   -9.17   -9.10   -8.31   -6.77   -4.54   -1.70    1.67    5.61   10.17   15.30
+   105.0    0.00   -0.24   -0.94   -2.02   -3.36   -4.83   -6.31   -7.64   -8.66   -9.22   -9.14   -8.34   -6.80   -4.58   -1.78    1.56    5.45    9.95   15.06
+   110.0    0.00   -0.24   -0.95   -2.03   -3.38   -4.87   -6.36   -7.70   -8.73   -9.28   -9.20   -8.39   -6.85   -4.64   -1.86    1.43    5.26    9.72   14.80
+   115.0    0.00   -0.25   -0.96   -2.05   -3.42   -4.92   -6.42   -7.78   -8.82   -9.36   -9.27   -8.45   -6.90   -4.69   -1.94    1.31    5.08    9.48   14.53
+   120.0    0.00   -0.25   -0.97   -2.07   -3.45   -4.97   -6.49   -7.86   -8.90   -9.45   -9.34   -8.51   -6.96   -4.76   -2.03    1.18    4.91    9.26   14.29
+   125.0    0.00   -0.26   -0.98   -2.10   -3.48   -5.02   -6.55   -7.93   -8.98   -9.52   -9.42   -8.58   -7.02   -4.83   -2.11    1.07    4.76    9.08   14.08
+   130.0    0.00   -0.26   -0.99   -2.12   -3.51   -5.06   -6.61   -7.99   -9.04   -9.59   -9.48   -8.64   -7.08   -4.90   -2.19    0.97    4.65    8.94   13.91
+   135.0    0.00   -0.27   -1.01   -2.14   -3.54   -5.10   -6.65   -8.04   -9.09   -9.63   -9.53   -8.69   -7.14   -4.97   -2.27    0.90    4.58    8.86   13.80
+   140.0    0.00   -0.27   -1.02   -2.15   -3.57   -5.13   -6.68   -8.07   -9.12   -9.67   -9.56   -8.74   -7.20   -5.03   -2.32    0.86    4.55    8.83   13.75
+   145.0    0.00   -0.27   -1.03   -2.17   -3.59   -5.15   -6.70   -8.09   -9.14   -9.68   -9.59   -8.78   -7.25   -5.09   -2.37    0.84    4.55    8.85   13.73
+   150.0    0.00   -0.28   -1.04   -2.19   -3.61   -5.17   -6.72   -8.10   -9.14   -9.69   -9.61   -8.81   -7.30   -5.13   -2.40    0.84    4.58    8.89   13.74
+   155.0    0.00   -0.28   -1.05   -2.20   -3.62   -5.18   -6.72   -8.10   -9.14   -9.70   -9.62   -8.84   -7.34   -5.16   -2.41    0.86    4.63    8.93   13.76
+   160.0    0.00   -0.29   -1.05   -2.21   -3.64   -5.19   -6.73   -8.10   -9.15   -9.71   -9.64   -8.87   -7.36   -5.18   -2.41    0.88    4.66    8.97   13.76
+   165.0    0.00   -0.29   -1.06   -2.22   -3.65   -5.20   -6.74   -8.11   -9.16   -9.72   -9.66   -8.89   -7.38   -5.19   -2.40    0.89    4.68    8.97   13.74
+   170.0    0.00   -0.29   -1.07   -2.23   -3.66   -5.22   -6.76   -8.13   -9.18   -9.75   -9.69   -8.91   -7.39   -5.19   -2.39    0.90    4.66    8.93   13.69
+   175.0    0.00   -0.29   -1.07   -2.24   -3.67   -5.23   -6.77   -8.15   -9.21   -9.78   -9.72   -8.93   -7.40   -5.18   -2.39    0.88    4.61    8.85   13.62
+   180.0    0.00   -0.29   -1.07   -2.24   -3.68   -5.24   -6.79   -8.18   -9.25   -9.82   -9.75   -8.95   -7.39   -5.17   -2.39    0.85    4.53    8.74   13.53
+   185.0    0.00   -0.29   -1.07   -2.24   -3.68   -5.25   -6.81   -8.21   -9.28   -9.86   -9.78   -8.96   -7.39   -5.16   -2.40    0.79    4.43    8.62   13.46
+   190.0    0.00   -0.29   -1.07   -2.25   -3.69   -5.26   -6.83   -8.23   -9.31   -9.89   -9.80   -8.96   -7.38   -5.15   -2.42    0.73    4.33    8.51   13.43
+   195.0    0.00   -0.29   -1.07   -2.24   -3.69   -5.26   -6.84   -8.25   -9.33   -9.90   -9.81   -8.96   -7.37   -5.15   -2.44    0.67    4.24    8.45   13.47
+   200.0    0.00   -0.29   -1.07   -2.24   -3.68   -5.26   -6.83   -8.25   -9.33   -9.90   -9.80   -8.94   -7.36   -5.15   -2.46    0.63    4.20    8.46   13.60
+   205.0    0.00   -0.29   -1.07   -2.23   -3.67   -5.25   -6.82   -8.23   -9.31   -9.87   -9.77   -8.92   -7.34   -5.15   -2.47    0.62    4.23    8.56   13.82
+   210.0    0.00   -0.29   -1.06   -2.22   -3.65   -5.22   -6.79   -8.19   -9.27   -9.83   -9.73   -8.89   -7.32   -5.14   -2.46    0.66    4.33    8.77   14.14
+   215.0    0.00   -0.29   -1.05   -2.21   -3.63   -5.19   -6.75   -8.14   -9.20   -9.76   -9.67   -8.84   -7.29   -5.12   -2.43    0.75    4.51    9.06   14.53
+   220.0    0.00   -0.29   -1.05   -2.19   -3.61   -5.16   -6.70   -8.08   -9.13   -9.69   -9.61   -8.80   -7.26   -5.08   -2.35    0.90    4.77    9.44   14.97
+   225.0    0.00   -0.28   -1.04   -2.18   -3.58   -5.12   -6.64   -8.01   -9.05   -9.61   -9.54   -8.74   -7.22   -5.03   -2.25    1.10    5.10    9.87   15.42
+   230.0    0.00   -0.28   -1.03   -2.16   -3.55   -5.08   -6.58   -7.94   -8.98   -9.54   -9.48   -8.69   -7.17   -4.95   -2.10    1.35    5.46   10.31   15.82
+   235.0    0.00   -0.28   -1.02   -2.14   -3.53   -5.03   -6.53   -7.87   -8.91   -9.47   -9.42   -8.64   -7.10   -4.84   -1.92    1.63    5.83   10.72   16.15
+   240.0    0.00   -0.27   -1.01   -2.13   -3.50   -5.00   -6.49   -7.82   -8.86   -9.43   -9.38   -8.59   -7.03   -4.72   -1.73    1.91    6.18   11.06   16.36
+   245.0    0.00   -0.27   -1.00   -2.11   -3.47   -4.97   -6.45   -7.79   -8.83   -9.40   -9.35   -8.55   -6.96   -4.59   -1.53    2.17    6.47   11.30   16.43
+   250.0    0.00   -0.27   -0.99   -2.10   -3.45   -4.94   -6.43   -7.77   -8.82   -9.40   -9.34   -8.51   -6.88   -4.46   -1.34    2.40    6.68   11.42   16.37
+   255.0    0.00   -0.26   -0.99   -2.08   -3.44   -4.93   -6.42   -7.77   -8.83   -9.41   -9.33   -8.48   -6.80   -4.33   -1.17    2.57    6.80   11.41   16.17
+   260.0    0.00   -0.26   -0.98   -2.07   -3.43   -4.92   -6.42   -7.79   -8.85   -9.43   -9.34   -8.46   -6.73   -4.22   -1.05    2.67    6.81   11.28   15.87
+   265.0    0.00   -0.26   -0.98   -2.07   -3.43   -4.92   -6.44   -7.81   -8.88   -9.46   -9.35   -8.44   -6.68   -4.14   -0.97    2.68    6.72   11.06   15.50
+   270.0    0.00   -0.26   -0.97   -2.06   -3.43   -4.93   -6.46   -7.84   -8.92   -9.49   -9.36   -8.42   -6.64   -4.10   -0.96    2.63    6.55   10.76   15.11
+   275.0    0.00   -0.25   -0.97   -2.06   -3.43   -4.95   -6.48   -7.88   -8.96   -9.52   -9.38   -8.42   -6.62   -4.10   -1.00    2.50    6.32   10.43   14.75
+   280.0    0.00   -0.25   -0.97   -2.07   -3.44   -4.97   -6.52   -7.92   -8.99   -9.54   -9.39   -8.42   -6.63   -4.13   -1.10    2.32    6.05   10.10   14.44
+   285.0    0.00   -0.25   -0.97   -2.07   -3.46   -5.00   -6.55   -7.95   -9.02   -9.56   -9.39   -8.42   -6.66   -4.21   -1.24    2.10    5.76    9.79   14.20
+   290.0    0.00   -0.25   -0.97   -2.08   -3.48   -5.03   -6.59   -7.99   -9.05   -9.58   -9.41   -8.44   -6.71   -4.31   -1.42    1.86    5.49    9.54   14.06
+   295.0    0.00   -0.25   -0.97   -2.09   -3.51   -5.07   -6.63   -8.03   -9.08   -9.60   -9.42   -8.47   -6.78   -4.44   -1.61    1.62    5.24    9.35   14.01
+   300.0    0.00   -0.25   -0.98   -2.11   -3.53   -5.11   -6.68   -8.08   -9.12   -9.62   -9.44   -8.52   -6.86   -4.58   -1.80    1.40    5.04    9.23   14.02
+   305.0    0.00   -0.25   -0.98   -2.12   -3.56   -5.15   -6.73   -8.13   -9.16   -9.65   -9.48   -8.57   -6.96   -4.73   -1.99    1.20    4.88    9.16   14.08
+   310.0    0.00   -0.25   -0.98   -2.14   -3.59   -5.20   -6.79   -8.18   -9.21   -9.69   -9.52   -8.64   -7.06   -4.87   -2.16    1.04    4.77    9.14   14.16
+   315.0    0.00   -0.25   -0.99   -2.15   -3.62   -5.24   -6.84   -8.24   -9.27   -9.75   -9.58   -8.71   -7.16   -5.00   -2.31    0.91    4.70    9.14   14.23
+   320.0    0.00   -0.25   -0.99   -2.17   -3.65   -5.29   -6.90   -8.31   -9.33   -9.81   -9.64   -8.78   -7.25   -5.11   -2.42    0.82    4.66    9.16   14.27
+   325.0    0.00   -0.24   -0.99   -2.18   -3.67   -5.33   -6.95   -8.37   -9.40   -9.88   -9.71   -8.86   -7.34   -5.21   -2.51    0.75    4.63    9.17   14.27
+   330.0    0.00   -0.24   -1.00   -2.19   -3.70   -5.36   -7.00   -8.43   -9.46   -9.95   -9.78   -8.93   -7.41   -5.28   -2.57    0.71    4.62    9.17   14.23
+   335.0    0.00   -0.24   -1.00   -2.20   -3.71   -5.39   -7.04   -8.48   -9.52  -10.01   -9.85   -8.99   -7.47   -5.33   -2.62    0.69    4.61    9.16   14.16
+   340.0    0.00   -0.24   -1.00   -2.20   -3.72   -5.40   -7.07   -8.51   -9.56  -10.06   -9.90   -9.05   -7.52   -5.37   -2.64    0.68    4.61    9.14   14.09
+   345.0    0.00   -0.24   -1.00   -2.20   -3.73   -5.41   -7.08   -8.53   -9.59  -10.10   -9.94   -9.08   -7.55   -5.39   -2.65    0.67    4.60    9.12   14.02
+   350.0    0.00   -0.24   -1.00   -2.20   -3.72   -5.41   -7.08   -8.54   -9.61  -10.12   -9.96   -9.10   -7.56   -5.39   -2.64    0.68    4.60    9.11   13.99
+   355.0    0.00   -0.24   -1.00   -2.19   -3.71   -5.40   -7.07   -8.53   -9.61  -10.12   -9.98   -9.11   -7.56   -5.37   -2.62    0.70    4.62    9.11   14.00
+   360.0    0.00   -0.24   -0.99   -2.19   -3.70   -5.38   -7.04   -8.51   -9.59  -10.12   -9.97   -9.11   -7.54   -5.35   -2.58    0.73    4.64    9.15   14.07
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.84      0.19    119.49                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.11   -0.44   -0.93   -1.56   -2.28   -3.08   -3.90   -4.67   -5.24   -5.46   -5.23   -4.51   -3.32   -1.74    0.25    2.77    6.04   10.22
+     0.0    0.00   -0.15   -0.44   -0.81   -1.30   -1.94   -2.77   -3.73   -4.64   -5.27   -5.45   -5.13   -4.41   -3.44   -2.22   -0.55    1.94    5.51    9.85
+     5.0    0.00   -0.15   -0.44   -0.82   -1.30   -1.95   -2.78   -3.74   -4.65   -5.29   -5.48   -5.16   -4.45   -3.46   -2.22   -0.53    1.98    5.53    9.81
+    10.0    0.00   -0.15   -0.44   -0.82   -1.31   -1.96   -2.79   -3.75   -4.66   -5.31   -5.51   -5.20   -4.48   -3.48   -2.20   -0.48    2.04    5.57    9.82
+    15.0    0.00   -0.15   -0.44   -0.83   -1.32   -1.97   -2.80   -3.76   -4.67   -5.32   -5.53   -5.24   -4.52   -3.49   -2.17   -0.41    2.12    5.63    9.89
+    20.0    0.00   -0.15   -0.45   -0.84   -1.34   -1.99   -2.81   -3.76   -4.66   -5.32   -5.55   -5.27   -4.55   -3.49   -2.13   -0.32    2.22    5.72   10.00
+    25.0    0.00   -0.15   -0.46   -0.86   -1.36   -2.01   -2.82   -3.75   -4.65   -5.32   -5.56   -5.30   -4.57   -3.48   -2.07   -0.22    2.33    5.82   10.16
+    30.0    0.00   -0.16   -0.46   -0.87   -1.38   -2.03   -2.83   -3.75   -4.64   -5.31   -5.57   -5.32   -4.59   -3.47   -2.01   -0.12    2.44    5.93   10.34
+    35.0    0.00   -0.16   -0.47   -0.89   -1.41   -2.06   -2.85   -3.75   -4.63   -5.30   -5.57   -5.34   -4.60   -3.45   -1.94   -0.01    2.56    6.04   10.53
+    40.0    0.00   -0.16   -0.48   -0.91   -1.44   -2.08   -2.87   -3.75   -4.61   -5.28   -5.57   -5.34   -4.60   -3.42   -1.86    0.10    2.67    6.14   10.71
+    45.0    0.00   -0.16   -0.48   -0.93   -1.47   -2.12   -2.89   -3.75   -4.60   -5.26   -5.55   -5.34   -4.60   -3.39   -1.79    0.20    2.78    6.24   10.87
+    50.0    0.00   -0.16   -0.49   -0.95   -1.50   -2.15   -2.91   -3.75   -4.59   -5.24   -5.54   -5.34   -4.59   -3.36   -1.73    0.30    2.88    6.33   10.98
+    55.0    0.00   -0.16   -0.50   -0.96   -1.53   -2.18   -2.93   -3.76   -4.57   -5.22   -5.52   -5.32   -4.58   -3.33   -1.67    0.38    2.97    6.40   11.05
+    60.0    0.00   -0.16   -0.50   -0.98   -1.56   -2.22   -2.96   -3.77   -4.56   -5.20   -5.49   -5.30   -4.56   -3.31   -1.63    0.46    3.06    6.47   11.07
+    65.0    0.00   -0.16   -0.51   -1.00   -1.59   -2.25   -2.99   -3.78   -4.56   -5.18   -5.47   -5.28   -4.55   -3.29   -1.59    0.52    3.14    6.53   11.04
+    70.0    0.00   -0.15   -0.51   -1.01   -1.61   -2.29   -3.02   -3.80   -4.56   -5.16   -5.44   -5.26   -4.53   -3.28   -1.56    0.58    3.22    6.58   10.96
+    75.0    0.00   -0.15   -0.51   -1.02   -1.64   -2.32   -3.06   -3.83   -4.56   -5.15   -5.42   -5.24   -4.52   -3.27   -1.54    0.62    3.29    6.62   10.84
+    80.0    0.00   -0.15   -0.51   -1.03   -1.66   -2.35   -3.10   -3.86   -4.58   -5.14   -5.40   -5.22   -4.51   -3.26   -1.53    0.66    3.34    6.65   10.68
+    85.0    0.00   -0.15   -0.51   -1.04   -1.68   -2.39   -3.13   -3.89   -4.60   -5.15   -5.39   -5.21   -4.50   -3.26   -1.52    0.68    3.39    6.66   10.51
+    90.0    0.00   -0.14   -0.51   -1.05   -1.70   -2.42   -3.18   -3.93   -4.63   -5.16   -5.39   -5.20   -4.49   -3.26   -1.53    0.69    3.41    6.65   10.33
+    95.0    0.00   -0.14   -0.51   -1.05   -1.72   -2.45   -3.22   -3.98   -4.67   -5.19   -5.40   -5.19   -4.48   -3.26   -1.53    0.68    3.41    6.63   10.15
+   100.0    0.00   -0.14   -0.50   -1.05   -1.73   -2.48   -3.26   -4.03   -4.72   -5.22   -5.42   -5.19   -4.48   -3.26   -1.54    0.67    3.38    6.58    9.99
+   105.0    0.00   -0.13   -0.50   -1.06   -1.74   -2.51   -3.30   -4.08   -4.77   -5.27   -5.44   -5.20   -4.48   -3.26   -1.55    0.64    3.34    6.51    9.85
+   110.0    0.00   -0.13   -0.49   -1.05   -1.75   -2.53   -3.34   -4.13   -4.82   -5.31   -5.47   -5.21   -4.47   -3.25   -1.56    0.60    3.28    6.43    9.74
+   115.0    0.00   -0.12   -0.49   -1.05   -1.76   -2.55   -3.38   -4.18   -4.87   -5.36   -5.51   -5.23   -4.47   -3.25   -1.57    0.57    3.22    6.35    9.67
+   120.0    0.00   -0.12   -0.48   -1.05   -1.77   -2.57   -3.41   -4.22   -4.92   -5.40   -5.54   -5.25   -4.48   -3.24   -1.57    0.54    3.15    6.26    9.62
+   125.0    0.00   -0.11   -0.47   -1.05   -1.77   -2.58   -3.43   -4.24   -4.95   -5.43   -5.57   -5.27   -4.48   -3.23   -1.56    0.53    3.10    6.19    9.60
+   130.0    0.00   -0.11   -0.47   -1.04   -1.77   -2.59   -3.44   -4.26   -4.96   -5.45   -5.59   -5.29   -4.49   -3.23   -1.55    0.54    3.08    6.14    9.59
+   135.0    0.00   -0.10   -0.46   -1.04   -1.77   -2.60   -3.45   -4.26   -4.97   -5.46   -5.61   -5.31   -4.51   -3.22   -1.52    0.56    3.07    6.10    9.59
+   140.0    0.00   -0.10   -0.45   -1.03   -1.77   -2.60   -3.44   -4.25   -4.96   -5.46   -5.63   -5.34   -4.54   -3.23   -1.49    0.60    3.09    6.07    9.59
+   145.0    0.00   -0.10   -0.45   -1.03   -1.77   -2.60   -3.43   -4.23   -4.94   -5.45   -5.64   -5.37   -4.57   -3.24   -1.46    0.66    3.13    6.06    9.57
+   150.0    0.00   -0.09   -0.44   -1.03   -1.77   -2.60   -3.42   -4.21   -4.91   -5.43   -5.65   -5.41   -4.61   -3.25   -1.44    0.72    3.17    6.04    9.52
+   155.0    0.00   -0.09   -0.44   -1.02   -1.77   -2.59   -3.41   -4.19   -4.88   -5.42   -5.66   -5.45   -4.66   -3.28   -1.42    0.77    3.22    6.02    9.44
+   160.0    0.00   -0.08   -0.43   -1.02   -1.77   -2.59   -3.40   -4.17   -4.86   -5.41   -5.67   -5.49   -4.72   -3.32   -1.42    0.81    3.24    5.97    9.33
+   165.0    0.00   -0.08   -0.42   -1.02   -1.77   -2.59   -3.40   -4.16   -4.84   -5.40   -5.69   -5.53   -4.77   -3.37   -1.43    0.82    3.23    5.90    9.20
+   170.0    0.00   -0.07   -0.42   -1.01   -1.78   -2.60   -3.40   -4.15   -4.84   -5.40   -5.71   -5.58   -4.83   -3.42   -1.47    0.79    3.18    5.79    9.05
+   175.0    0.00   -0.07   -0.41   -1.01   -1.78   -2.60   -3.41   -4.16   -4.85   -5.41   -5.73   -5.61   -4.88   -3.47   -1.52    0.73    3.10    5.66    8.90
+   180.0    0.00   -0.07   -0.41   -1.01   -1.77   -2.61   -3.42   -4.18   -4.86   -5.43   -5.76   -5.64   -4.92   -3.52   -1.59    0.64    2.97    5.51    8.78
+   185.0    0.00   -0.07   -0.40   -1.00   -1.77   -2.61   -3.43   -4.20   -4.89   -5.45   -5.77   -5.66   -4.94   -3.56   -1.66    0.53    2.82    5.36    8.70
+   190.0    0.00   -0.06   -0.40   -0.99   -1.77   -2.61   -3.44   -4.22   -4.91   -5.47   -5.78   -5.66   -4.94   -3.59   -1.73    0.41    2.67    5.22    8.69
+   195.0    0.00   -0.06   -0.39   -0.98   -1.76   -2.61   -3.45   -4.24   -4.94   -5.49   -5.78   -5.64   -4.91   -3.59   -1.78    0.29    2.53    5.13    8.76
+   200.0    0.00   -0.06   -0.39   -0.97   -1.74   -2.60   -3.45   -4.25   -4.95   -5.50   -5.76   -5.59   -4.86   -3.56   -1.81    0.21    2.42    5.10    8.91
+   205.0    0.00   -0.06   -0.38   -0.96   -1.72   -2.58   -3.44   -4.25   -4.96   -5.49   -5.73   -5.53   -4.79   -3.51   -1.81    0.16    2.37    5.14    9.15
+   210.0    0.00   -0.06   -0.38   -0.95   -1.70   -2.55   -3.42   -4.24   -4.95   -5.47   -5.69   -5.46   -4.70   -3.43   -1.77    0.15    2.38    5.26    9.46
+   215.0    0.00   -0.06   -0.38   -0.94   -1.68   -2.52   -3.39   -4.21   -4.93   -5.44   -5.63   -5.37   -4.59   -3.33   -1.70    0.21    2.47    5.45    9.82
+   220.0    0.00   -0.06   -0.37   -0.92   -1.65   -2.48   -3.34   -4.17   -4.89   -5.39   -5.56   -5.27   -4.48   -3.22   -1.60    0.31    2.62    5.71   10.21
+   225.0    0.00   -0.06   -0.37   -0.91   -1.62   -2.44   -3.30   -4.12   -4.84   -5.34   -5.49   -5.18   -4.37   -3.11   -1.48    0.44    2.81    6.01   10.60
+   230.0    0.00   -0.06   -0.37   -0.90   -1.60   -2.40   -3.25   -4.07   -4.79   -5.29   -5.43   -5.10   -4.27   -3.00   -1.36    0.60    3.04    6.32   10.94
+   235.0    0.00   -0.07   -0.37   -0.89   -1.57   -2.36   -3.20   -4.02   -4.74   -5.24   -5.37   -5.03   -4.19   -2.90   -1.24    0.77    3.27    6.61   11.22
+   240.0    0.00   -0.07   -0.37   -0.89   -1.55   -2.32   -3.15   -3.97   -4.69   -5.19   -5.33   -4.99   -4.14   -2.84   -1.15    0.91    3.47    6.86   11.41
+   245.0    0.00   -0.07   -0.38   -0.88   -1.54   -2.30   -3.11   -3.93   -4.65   -5.16   -5.30   -4.97   -4.12   -2.80   -1.09    1.01    3.63    7.04   11.50
+   250.0    0.00   -0.08   -0.38   -0.88   -1.53   -2.27   -3.08   -3.89   -4.62   -5.14   -5.29   -4.97   -4.13   -2.81   -1.07    1.06    3.72    7.13   11.49
+   255.0    0.00   -0.08   -0.39   -0.89   -1.52   -2.26   -3.06   -3.87   -4.60   -5.13   -5.30   -4.99   -4.16   -2.85   -1.11    1.04    3.72    7.13   11.39
+   260.0    0.00   -0.09   -0.40   -0.89   -1.52   -2.25   -3.04   -3.85   -4.59   -5.13   -5.31   -5.03   -4.22   -2.92   -1.19    0.97    3.65    7.04   11.22
+   265.0    0.00   -0.09   -0.40   -0.90   -1.53   -2.25   -3.03   -3.84   -4.58   -5.13   -5.34   -5.08   -4.30   -3.03   -1.32    0.83    3.50    6.87   11.01
+   270.0    0.00   -0.10   -0.41   -0.91   -1.53   -2.25   -3.03   -3.83   -4.58   -5.14   -5.37   -5.13   -4.39   -3.15   -1.47    0.65    3.30    6.66   10.78
+   275.0    0.00   -0.10   -0.42   -0.92   -1.53   -2.24   -3.02   -3.82   -4.58   -5.15   -5.39   -5.19   -4.48   -3.28   -1.64    0.44    3.07    6.42   10.56
+   280.0    0.00   -0.11   -0.43   -0.92   -1.54   -2.24   -3.01   -3.81   -4.57   -5.15   -5.41   -5.23   -4.56   -3.40   -1.81    0.22    2.82    6.18   10.38
+   285.0    0.00   -0.11   -0.44   -0.93   -1.54   -2.23   -3.00   -3.79   -4.55   -5.14   -5.42   -5.27   -4.62   -3.51   -1.98    0.01    2.58    5.96   10.26
+   290.0    0.00   -0.11   -0.44   -0.93   -1.53   -2.22   -2.98   -3.77   -4.53   -5.13   -5.42   -5.28   -4.67   -3.60   -2.11   -0.18    2.37    5.79   10.19
+   295.0    0.00   -0.12   -0.45   -0.93   -1.52   -2.20   -2.95   -3.74   -4.50   -5.11   -5.41   -5.28   -4.69   -3.66   -2.22   -0.33    2.21    5.66   10.20
+   300.0    0.00   -0.12   -0.45   -0.93   -1.51   -2.18   -2.92   -3.71   -4.48   -5.09   -5.39   -5.27   -4.69   -3.69   -2.29   -0.44    2.09    5.59   10.25
+   305.0    0.00   -0.13   -0.45   -0.92   -1.49   -2.15   -2.89   -3.68   -4.45   -5.06   -5.36   -5.24   -4.67   -3.69   -2.33   -0.51    2.01    5.56   10.33
+   310.0    0.00   -0.13   -0.45   -0.91   -1.47   -2.12   -2.85   -3.65   -4.43   -5.04   -5.34   -5.21   -4.63   -3.66   -2.33   -0.55    1.97    5.57   10.42
+   315.0    0.00   -0.13   -0.45   -0.90   -1.45   -2.08   -2.82   -3.63   -4.41   -5.03   -5.31   -5.16   -4.58   -3.62   -2.32   -0.56    1.96    5.60   10.51
+   320.0    0.00   -0.14   -0.45   -0.89   -1.42   -2.05   -2.79   -3.61   -4.41   -5.02   -5.29   -5.13   -4.53   -3.57   -2.29   -0.55    1.96    5.63   10.57
+   325.0    0.00   -0.14   -0.45   -0.87   -1.39   -2.02   -2.77   -3.61   -4.42   -5.03   -5.29   -5.09   -4.47   -3.52   -2.26   -0.55    1.97    5.66   10.58
+   330.0    0.00   -0.14   -0.45   -0.86   -1.37   -2.00   -2.75   -3.61   -4.44   -5.05   -5.29   -5.06   -4.43   -3.47   -2.23   -0.54    1.97    5.66   10.55
+   335.0    0.00   -0.14   -0.44   -0.85   -1.35   -1.97   -2.75   -3.62   -4.46   -5.08   -5.30   -5.05   -4.39   -3.44   -2.21   -0.54    1.97    5.66   10.47
+   340.0    0.00   -0.14   -0.44   -0.84   -1.33   -1.96   -2.74   -3.64   -4.50   -5.12   -5.32   -5.04   -4.37   -3.41   -2.20   -0.54    1.95    5.63   10.35
+   345.0    0.00   -0.14   -0.44   -0.83   -1.32   -1.95   -2.75   -3.66   -4.54   -5.16   -5.35   -5.05   -4.36   -3.40   -2.20   -0.55    1.94    5.59   10.21
+   350.0    0.00   -0.15   -0.44   -0.82   -1.31   -1.94   -2.76   -3.69   -4.58   -5.20   -5.38   -5.07   -4.37   -3.41   -2.21   -0.56    1.93    5.55   10.07
+   355.0    0.00   -0.15   -0.44   -0.82   -1.30   -1.94   -2.76   -3.71   -4.61   -5.24   -5.41   -5.10   -4.39   -3.42   -2.22   -0.56    1.93    5.53    9.94
+   360.0    0.00   -0.15   -0.44   -0.81   -1.30   -1.94   -2.77   -3.73   -4.64   -5.27   -5.45   -5.13   -4.41   -3.44   -2.22   -0.55    1.94    5.51    9.85
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH701945E_M    NONE                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               2    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+Number of Calibrated Antennas GPS:      002                 COMMENT             
+Number of Individual Calibrations GPS:  004                 COMMENT             
+   G01                                                      START OF FREQUENCY  
+      1.05     -0.12     90.51                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.22   -0.87   -1.87   -3.14   -4.52   -5.87   -7.02   -7.84   -8.24   -8.16   -7.58   -6.49   -4.85   -2.57    0.47    4.37    9.09   14.30
+     0.0    0.00   -0.28   -0.98   -2.03   -3.34   -4.77   -6.14   -7.31   -8.13   -8.50   -8.37   -7.75   -6.63   -4.98   -2.72    0.26    4.05    8.66   13.87
+     5.0    0.00   -0.27   -0.97   -2.02   -3.32   -4.75   -6.12   -7.28   -8.10   -8.47   -8.35   -7.72   -6.59   -4.92   -2.65    0.34    4.14    8.73   13.95
+    10.0    0.00   -0.27   -0.96   -2.01   -3.31   -4.72   -6.10   -7.26   -8.07   -8.44   -8.32   -7.69   -6.55   -4.87   -2.58    0.43    4.24    8.83   14.05
+    15.0    0.00   -0.27   -0.95   -1.99   -3.29   -4.70   -6.07   -7.23   -8.05   -8.42   -8.30   -7.67   -6.52   -4.83   -2.50    0.53    4.36    8.95   14.18
+    20.0    0.00   -0.26   -0.94   -1.98   -3.27   -4.68   -6.05   -7.21   -8.02   -8.39   -8.27   -7.64   -6.49   -4.78   -2.43    0.64    4.49    9.10   14.33
+    25.0    0.00   -0.26   -0.93   -1.96   -3.25   -4.66   -6.03   -7.19   -8.00   -8.37   -8.25   -7.62   -6.46   -4.73   -2.36    0.74    4.62    9.25   14.50
+    30.0    0.00   -0.25   -0.92   -1.95   -3.24   -4.64   -6.01   -7.16   -7.97   -8.34   -8.22   -7.59   -6.42   -4.68   -2.28    0.85    4.76    9.41   14.68
+    35.0    0.00   -0.25   -0.92   -1.94   -3.22   -4.62   -5.98   -7.14   -7.94   -8.31   -8.19   -7.55   -6.37   -4.62   -2.20    0.95    4.88    9.57   14.87
+    40.0    0.00   -0.25   -0.91   -1.93   -3.21   -4.60   -5.96   -7.11   -7.91   -8.27   -8.14   -7.50   -6.32   -4.55   -2.13    1.03    4.99    9.72   15.06
+    45.0    0.00   -0.24   -0.90   -1.92   -3.19   -4.58   -5.93   -7.07   -7.87   -8.23   -8.09   -7.44   -6.26   -4.49   -2.06    1.11    5.08    9.85   15.25
+    50.0    0.00   -0.24   -0.89   -1.90   -3.17   -4.56   -5.90   -7.03   -7.82   -8.17   -8.03   -7.38   -6.19   -4.43   -2.01    1.16    5.15    9.95   15.43
+    55.0    0.00   -0.23   -0.89   -1.89   -3.16   -4.54   -5.87   -6.99   -7.77   -8.11   -7.97   -7.32   -6.13   -4.37   -1.96    1.19    5.19   10.03   15.58
+    60.0    0.00   -0.23   -0.88   -1.89   -3.15   -4.51   -5.83   -6.95   -7.72   -8.05   -7.91   -7.25   -6.07   -4.32   -1.93    1.21    5.21   10.08   15.69
+    65.0    0.00   -0.23   -0.87   -1.88   -3.13   -4.49   -5.80   -6.90   -7.66   -8.00   -7.85   -7.20   -6.03   -4.29   -1.92    1.21    5.21   10.10   15.74
+    70.0    0.00   -0.22   -0.87   -1.87   -3.12   -4.47   -5.77   -6.86   -7.61   -7.95   -7.80   -7.16   -6.00   -4.28   -1.92    1.19    5.18   10.09   15.73
+    75.0    0.00   -0.22   -0.86   -1.87   -3.11   -4.46   -5.74   -6.82   -7.57   -7.91   -7.77   -7.14   -5.99   -4.29   -1.94    1.16    5.14   10.04   15.65
+    80.0    0.00   -0.22   -0.86   -1.86   -3.10   -4.44   -5.72   -6.80   -7.55   -7.89   -7.76   -7.15   -6.01   -4.31   -1.98    1.12    5.09    9.95   15.49
+    85.0    0.00   -0.21   -0.86   -1.86   -3.10   -4.44   -5.71   -6.78   -7.54   -7.89   -7.78   -7.17   -6.05   -4.36   -2.03    1.06    5.01    9.83   15.25
+    90.0    0.00   -0.21   -0.85   -1.86   -3.10   -4.43   -5.71   -6.78   -7.54   -7.90   -7.81   -7.22   -6.11   -4.43   -2.09    1.00    4.92    9.67   14.96
+    95.0    0.00   -0.21   -0.85   -1.85   -3.10   -4.44   -5.72   -6.79   -7.56   -7.94   -7.86   -7.29   -6.19   -4.51   -2.17    0.92    4.81    9.49   14.63
+   100.0    0.00   -0.21   -0.85   -1.85   -3.10   -4.45   -5.73   -6.82   -7.60   -7.99   -7.93   -7.38   -6.28   -4.60   -2.26    0.82    4.69    9.28   14.29
+   105.0    0.00   -0.20   -0.85   -1.85   -3.11   -4.46   -5.75   -6.85   -7.65   -8.06   -8.01   -7.47   -6.38   -4.70   -2.36    0.71    4.55    9.07   13.96
+   110.0    0.00   -0.20   -0.84   -1.85   -3.11   -4.47   -5.78   -6.89   -7.70   -8.13   -8.10   -7.56   -6.48   -4.80   -2.46    0.59    4.39    8.87   13.68
+   115.0    0.00   -0.20   -0.84   -1.85   -3.12   -4.48   -5.80   -6.93   -7.76   -8.20   -8.18   -7.65   -6.57   -4.90   -2.57    0.46    4.24    8.68   13.47
+   120.0    0.00   -0.20   -0.84   -1.85   -3.12   -4.50   -5.83   -6.97   -7.82   -8.27   -8.25   -7.73   -6.66   -4.99   -2.68    0.33    4.09    8.53   13.33
+   125.0    0.00   -0.19   -0.83   -1.85   -3.12   -4.51   -5.85   -7.01   -7.87   -8.33   -8.32   -7.80   -6.74   -5.08   -2.79    0.21    3.96    8.41   13.29
+   130.0    0.00   -0.19   -0.83   -1.84   -3.12   -4.52   -5.87   -7.05   -7.91   -8.38   -8.38   -7.86   -6.80   -5.16   -2.88    0.11    3.86    8.35   13.34
+   135.0    0.00   -0.19   -0.82   -1.84   -3.12   -4.52   -5.89   -7.07   -7.95   -8.42   -8.42   -7.91   -6.85   -5.22   -2.95    0.03    3.79    8.34   13.46
+   140.0    0.00   -0.19   -0.82   -1.83   -3.12   -4.52   -5.89   -7.09   -7.97   -8.45   -8.46   -7.95   -6.90   -5.27   -3.01   -0.03    3.76    8.37   13.62
+   145.0    0.00   -0.18   -0.81   -1.83   -3.11   -4.52   -5.90   -7.10   -7.99   -8.48   -8.49   -7.98   -6.93   -5.30   -3.04   -0.05    3.77    8.45   13.80
+   150.0    0.00   -0.18   -0.81   -1.82   -3.10   -4.51   -5.90   -7.11   -8.01   -8.50   -8.51   -8.01   -6.96   -5.33   -3.06   -0.04    3.81    8.54   13.98
+   155.0    0.00   -0.18   -0.80   -1.81   -3.09   -4.50   -5.89   -7.11   -8.02   -8.51   -8.53   -8.03   -6.98   -5.34   -3.05   -0.01    3.89    8.65   14.12
+   160.0    0.00   -0.18   -0.80   -1.80   -3.08   -4.49   -5.89   -7.11   -8.02   -8.52   -8.54   -8.04   -6.99   -5.34   -3.03    0.04    3.97    8.76   14.21
+   165.0    0.00   -0.18   -0.79   -1.79   -3.07   -4.49   -5.88   -7.11   -8.03   -8.53   -8.55   -8.05   -7.00   -5.34   -3.01    0.10    4.07    8.85   14.24
+   170.0    0.00   -0.18   -0.79   -1.79   -3.06   -4.48   -5.88   -7.11   -8.03   -8.53   -8.56   -8.06   -7.00   -5.33   -2.98    0.16    4.15    8.92   14.21
+   175.0    0.00   -0.17   -0.79   -1.78   -3.05   -4.47   -5.87   -7.10   -8.02   -8.53   -8.55   -8.05   -6.99   -5.32   -2.95    0.22    4.22    8.96   14.13
+   180.0    0.00   -0.17   -0.78   -1.77   -3.04   -4.46   -5.86   -7.10   -8.01   -8.51   -8.53   -8.03   -6.98   -5.30   -2.93    0.25    4.26    8.98   14.04
+   185.0    0.00   -0.17   -0.78   -1.76   -3.03   -4.45   -5.85   -7.08   -7.99   -8.49   -8.50   -8.00   -6.95   -5.29   -2.91    0.27    4.28    8.98   13.94
+   190.0    0.00   -0.17   -0.78   -1.76   -3.02   -4.44   -5.84   -7.07   -7.97   -8.45   -8.45   -7.95   -6.91   -5.26   -2.90    0.27    4.29    8.97   13.88
+   195.0    0.00   -0.17   -0.78   -1.75   -3.01   -4.43   -5.82   -7.04   -7.93   -8.40   -8.39   -7.88   -6.85   -5.23   -2.89    0.27    4.29    8.98   13.88
+   200.0    0.00   -0.18   -0.77   -1.75   -3.00   -4.41   -5.80   -7.01   -7.89   -8.34   -8.31   -7.81   -6.79   -5.19   -2.88    0.27    4.29    9.00   13.94
+   205.0    0.00   -0.18   -0.77   -1.74   -2.99   -4.39   -5.77   -6.97   -7.83   -8.27   -8.23   -7.72   -6.71   -5.13   -2.85    0.28    4.30    9.06   14.08
+   210.0    0.00   -0.18   -0.78   -1.74   -2.98   -4.37   -5.74   -6.92   -7.77   -8.19   -8.15   -7.63   -6.63   -5.07   -2.80    0.31    4.34    9.15   14.28
+   215.0    0.00   -0.18   -0.78   -1.74   -2.97   -4.35   -5.71   -6.87   -7.71   -8.12   -8.06   -7.54   -6.54   -4.98   -2.73    0.37    4.42    9.28   14.53
+   220.0    0.00   -0.18   -0.78   -1.74   -2.96   -4.32   -5.67   -6.82   -7.65   -8.05   -7.98   -7.45   -6.44   -4.88   -2.63    0.47    4.52    9.43   14.81
+   225.0    0.00   -0.19   -0.78   -1.74   -2.95   -4.30   -5.63   -6.77   -7.59   -7.98   -7.91   -7.37   -6.34   -4.76   -2.50    0.60    4.66    9.60   15.07
+   230.0    0.00   -0.19   -0.79   -1.74   -2.94   -4.28   -5.59   -6.73   -7.54   -7.93   -7.85   -7.29   -6.24   -4.63   -2.35    0.76    4.81    9.76   15.30
+   235.0    0.00   -0.20   -0.80   -1.74   -2.94   -4.26   -5.56   -6.69   -7.50   -7.89   -7.81   -7.23   -6.14   -4.50   -2.19    0.92    4.96    9.90   15.47
+   240.0    0.00   -0.20   -0.80   -1.75   -2.94   -4.25   -5.54   -6.66   -7.47   -7.87   -7.78   -7.18   -6.05   -4.37   -2.03    1.08    5.10   10.00   15.55
+   245.0    0.00   -0.21   -0.81   -1.76   -2.94   -4.25   -5.53   -6.65   -7.46   -7.85   -7.76   -7.13   -5.98   -4.25   -1.89    1.22    5.20   10.05   15.55
+   250.0    0.00   -0.21   -0.82   -1.77   -2.95   -4.25   -5.53   -6.65   -7.46   -7.85   -7.75   -7.10   -5.91   -4.16   -1.78    1.32    5.25   10.03   15.46
+   255.0    0.00   -0.22   -0.84   -1.79   -2.97   -4.26   -5.54   -6.66   -7.47   -7.86   -7.75   -7.08   -5.87   -4.09   -1.72    1.36    5.24    9.95   15.31
+   260.0    0.00   -0.22   -0.85   -1.81   -2.99   -4.29   -5.56   -6.68   -7.49   -7.88   -7.75   -7.08   -5.85   -4.07   -1.70    1.34    5.17    9.82   15.10
+   265.0    0.00   -0.23   -0.86   -1.83   -3.02   -4.32   -5.60   -6.71   -7.52   -7.90   -7.76   -7.08   -5.85   -4.08   -1.74    1.26    5.05    9.65   14.86
+   270.0    0.00   -0.23   -0.88   -1.85   -3.05   -4.36   -5.64   -6.75   -7.55   -7.92   -7.78   -7.09   -5.88   -4.14   -1.84    1.12    4.87    9.45   14.62
+   275.0    0.00   -0.24   -0.89   -1.88   -3.09   -4.40   -5.69   -6.80   -7.59   -7.95   -7.80   -7.12   -5.93   -4.23   -1.99    0.93    4.67    9.25   14.40
+   280.0    0.00   -0.25   -0.91   -1.90   -3.13   -4.45   -5.75   -6.85   -7.64   -7.98   -7.83   -7.16   -6.00   -4.36   -2.17    0.71    4.45    9.06   14.21
+   285.0    0.00   -0.25   -0.92   -1.93   -3.17   -4.51   -5.81   -6.91   -7.69   -8.02   -7.87   -7.21   -6.10   -4.51   -2.38    0.48    4.23    8.89   14.07
+   290.0    0.00   -0.26   -0.94   -1.96   -3.21   -4.56   -5.87   -6.97   -7.74   -8.07   -7.91   -7.28   -6.21   -4.68   -2.59    0.25    4.04    8.76   13.97
+   295.0    0.00   -0.26   -0.95   -1.98   -3.25   -4.61   -5.93   -7.03   -7.80   -8.12   -7.97   -7.36   -6.32   -4.84   -2.79    0.05    3.88    8.67   13.92
+   300.0    0.00   -0.27   -0.96   -2.01   -3.29   -4.66   -5.99   -7.10   -7.86   -8.18   -8.04   -7.45   -6.44   -5.00   -2.96   -0.11    3.76    8.61   13.90
+   305.0    0.00   -0.27   -0.97   -2.03   -3.32   -4.71   -6.04   -7.15   -7.92   -8.24   -8.11   -7.54   -6.56   -5.13   -3.10   -0.23    3.68    8.59   13.89
+   310.0    0.00   -0.28   -0.98   -2.05   -3.35   -4.75   -6.09   -7.21   -7.98   -8.31   -8.18   -7.62   -6.66   -5.24   -3.20   -0.31    3.65    8.59   13.90
+   315.0    0.00   -0.28   -0.99   -2.06   -3.37   -4.78   -6.13   -7.26   -8.03   -8.37   -8.25   -7.70   -6.74   -5.31   -3.26   -0.33    3.65    8.60   13.90
+   320.0    0.00   -0.28   -1.00   -2.07   -3.39   -4.80   -6.16   -7.30   -8.09   -8.43   -8.32   -7.77   -6.80   -5.35   -3.27   -0.32    3.68    8.62   13.89
+   325.0    0.00   -0.28   -1.00   -2.08   -3.40   -4.82   -6.19   -7.33   -8.13   -8.48   -8.37   -7.82   -6.83   -5.36   -3.24   -0.28    3.71    8.63   13.88
+   330.0    0.00   -0.28   -1.00   -2.08   -3.40   -4.83   -6.20   -7.36   -8.16   -8.52   -8.41   -7.85   -6.84   -5.33   -3.19   -0.21    3.76    8.63   13.85
+   335.0    0.00   -0.28   -1.00   -2.08   -3.40   -4.83   -6.21   -7.37   -8.18   -8.55   -8.44   -7.86   -6.83   -5.29   -3.12   -0.14    3.80    8.62   13.82
+   340.0    0.00   -0.28   -1.00   -2.07   -3.40   -4.83   -6.21   -7.37   -8.19   -8.56   -8.45   -7.86   -6.80   -5.23   -3.04   -0.06    3.85    8.61   13.80
+   345.0    0.00   -0.28   -0.99   -2.07   -3.39   -4.82   -6.20   -7.37   -8.18   -8.56   -8.44   -7.84   -6.76   -5.17   -2.96    0.02    3.89    8.60   13.78
+   350.0    0.00   -0.28   -0.99   -2.06   -3.37   -4.80   -6.18   -7.35   -8.17   -8.54   -8.43   -7.82   -6.72   -5.10   -2.87    0.10    3.93    8.60   13.79
+   355.0    0.00   -0.28   -0.98   -2.04   -3.36   -4.79   -6.17   -7.33   -8.15   -8.52   -8.40   -7.78   -6.67   -5.04   -2.79    0.18    3.99    8.62   13.81
+   360.0    0.00   -0.28   -0.98   -2.03   -3.34   -4.77   -6.14   -7.31   -8.13   -8.50   -8.37   -7.75   -6.63   -4.98   -2.72    0.26    4.05    8.66   13.87
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.02      0.58    119.01                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.10   -0.41   -0.91   -1.60   -2.45   -3.38   -4.28   -5.02   -5.46   -5.48   -5.04   -4.17   -2.94   -1.40    0.49    2.87    5.90    9.63
+     0.0    0.00   -0.14   -0.49   -1.01   -1.68   -2.45   -3.30   -4.16   -4.91   -5.39   -5.48   -5.09   -4.23   -3.01   -1.51    0.28    2.54    5.59    9.71
+     5.0    0.00   -0.13   -0.48   -1.00   -1.66   -2.45   -3.31   -4.17   -4.91   -5.39   -5.48   -5.09   -4.25   -3.04   -1.53    0.30    2.60    5.65    9.69
+    10.0    0.00   -0.13   -0.46   -0.98   -1.65   -2.44   -3.31   -4.18   -4.93   -5.40   -5.49   -5.11   -4.28   -3.06   -1.53    0.35    2.70    5.75    9.67
+    15.0    0.00   -0.12   -0.44   -0.96   -1.63   -2.43   -3.32   -4.20   -4.95   -5.43   -5.51   -5.14   -4.31   -3.08   -1.50    0.43    2.84    5.88    9.67
+    20.0    0.00   -0.11   -0.43   -0.93   -1.61   -2.42   -3.33   -4.22   -4.98   -5.46   -5.54   -5.16   -4.32   -3.07   -1.45    0.54    3.00    6.02    9.67
+    25.0    0.00   -0.10   -0.41   -0.90   -1.58   -2.41   -3.33   -4.24   -5.01   -5.48   -5.56   -5.17   -4.32   -3.05   -1.39    0.67    3.16    6.17    9.68
+    30.0    0.00   -0.09   -0.39   -0.88   -1.56   -2.40   -3.33   -4.25   -5.03   -5.50   -5.57   -5.17   -4.30   -3.01   -1.31    0.78    3.32    6.31    9.71
+    35.0    0.00   -0.08   -0.37   -0.85   -1.53   -2.38   -3.33   -4.26   -5.04   -5.51   -5.56   -5.14   -4.26   -2.95   -1.24    0.88    3.44    6.43    9.76
+    40.0    0.00   -0.08   -0.35   -0.82   -1.50   -2.36   -3.32   -4.27   -5.04   -5.50   -5.54   -5.10   -4.21   -2.89   -1.18    0.95    3.51    6.51    9.84
+    45.0    0.00   -0.07   -0.33   -0.80   -1.48   -2.34   -3.31   -4.26   -5.04   -5.48   -5.50   -5.05   -4.15   -2.84   -1.14    0.98    3.54    6.56    9.93
+    50.0    0.00   -0.06   -0.32   -0.78   -1.46   -2.33   -3.30   -4.25   -5.02   -5.45   -5.45   -4.99   -4.10   -2.80   -1.13    0.96    3.52    6.57   10.03
+    55.0    0.00   -0.05   -0.30   -0.76   -1.44   -2.31   -3.29   -4.24   -5.00   -5.42   -5.41   -4.94   -4.05   -2.78   -1.14    0.91    3.46    6.55   10.13
+    60.0    0.00   -0.05   -0.29   -0.75   -1.43   -2.31   -3.29   -4.24   -4.99   -5.39   -5.37   -4.90   -4.03   -2.79   -1.19    0.83    3.36    6.50   10.20
+    65.0    0.00   -0.04   -0.28   -0.74   -1.42   -2.31   -3.29   -4.23   -4.98   -5.38   -5.35   -4.89   -4.03   -2.82   -1.26    0.72    3.25    6.42   10.24
+    70.0    0.00   -0.04   -0.27   -0.73   -1.43   -2.31   -3.30   -4.24   -4.98   -5.37   -5.35   -4.90   -4.06   -2.87   -1.34    0.61    3.13    6.32   10.22
+    75.0    0.00   -0.04   -0.27   -0.74   -1.44   -2.33   -3.32   -4.25   -4.99   -5.38   -5.37   -4.93   -4.11   -2.95   -1.43    0.51    3.01    6.21   10.15
+    80.0    0.00   -0.03   -0.27   -0.74   -1.45   -2.35   -3.34   -4.28   -5.01   -5.41   -5.41   -4.98   -4.18   -3.02   -1.52    0.42    2.91    6.10   10.01
+    85.0    0.00   -0.03   -0.27   -0.75   -1.47   -2.38   -3.37   -4.31   -5.05   -5.45   -5.46   -5.05   -4.25   -3.10   -1.58    0.35    2.83    5.98    9.82
+    90.0    0.00   -0.03   -0.28   -0.77   -1.50   -2.41   -3.41   -4.35   -5.09   -5.50   -5.52   -5.12   -4.32   -3.16   -1.63    0.31    2.78    5.86    9.59
+    95.0    0.00   -0.03   -0.28   -0.78   -1.53   -2.45   -3.45   -4.39   -5.13   -5.55   -5.57   -5.18   -4.38   -3.20   -1.65    0.30    2.74    5.76    9.35
+   100.0    0.00   -0.03   -0.29   -0.80   -1.56   -2.49   -3.49   -4.43   -5.17   -5.59   -5.61   -5.22   -4.41   -3.21   -1.65    0.31    2.72    5.67    9.12
+   105.0    0.00   -0.03   -0.30   -0.82   -1.59   -2.53   -3.53   -4.47   -5.20   -5.62   -5.64   -5.23   -4.41   -3.19   -1.62    0.33    2.72    5.60    8.94
+   110.0    0.00   -0.04   -0.31   -0.84   -1.61   -2.56   -3.56   -4.49   -5.22   -5.63   -5.64   -5.22   -4.37   -3.15   -1.58    0.36    2.72    5.55    8.82
+   115.0    0.00   -0.04   -0.32   -0.86   -1.64   -2.58   -3.58   -4.51   -5.23   -5.62   -5.62   -5.18   -4.32   -3.09   -1.52    0.40    2.72    5.54    8.78
+   120.0    0.00   -0.04   -0.33   -0.88   -1.66   -2.60   -3.59   -4.51   -5.22   -5.60   -5.58   -5.12   -4.24   -3.01   -1.46    0.43    2.73    5.55    8.82
+   125.0    0.00   -0.05   -0.34   -0.89   -1.67   -2.61   -3.59   -4.50   -5.19   -5.56   -5.52   -5.05   -4.16   -2.93   -1.40    0.45    2.74    5.59    8.94
+   130.0    0.00   -0.05   -0.35   -0.91   -1.69   -2.61   -3.58   -4.48   -5.16   -5.52   -5.47   -4.97   -4.08   -2.86   -1.35    0.47    2.75    5.65    9.11
+   135.0    0.00   -0.05   -0.36   -0.92   -1.69   -2.61   -3.57   -4.45   -5.12   -5.47   -5.41   -4.91   -4.02   -2.80   -1.32    0.48    2.76    5.72    9.31
+   140.0    0.00   -0.06   -0.37   -0.93   -1.69   -2.60   -3.54   -4.41   -5.08   -5.43   -5.37   -4.87   -3.98   -2.77   -1.31    0.48    2.77    5.79    9.51
+   145.0    0.00   -0.06   -0.38   -0.94   -1.69   -2.58   -3.51   -4.37   -5.04   -5.39   -5.34   -4.85   -3.96   -2.77   -1.31    0.47    2.79    5.86    9.67
+   150.0    0.00   -0.07   -0.39   -0.94   -1.69   -2.57   -3.48   -4.34   -5.01   -5.37   -5.33   -4.85   -3.97   -2.78   -1.33    0.46    2.79    5.90    9.77
+   155.0    0.00   -0.07   -0.39   -0.95   -1.69   -2.55   -3.46   -4.30   -4.98   -5.36   -5.33   -4.87   -4.01   -2.82   -1.36    0.44    2.79    5.92    9.80
+   160.0    0.00   -0.08   -0.40   -0.95   -1.69   -2.54   -3.43   -4.28   -4.96   -5.35   -5.35   -4.91   -4.06   -2.87   -1.40    0.42    2.78    5.90    9.75
+   165.0    0.00   -0.08   -0.41   -0.96   -1.68   -2.53   -3.42   -4.26   -4.95   -5.35   -5.37   -4.95   -4.11   -2.93   -1.44    0.39    2.76    5.85    9.65
+   170.0    0.00   -0.09   -0.41   -0.96   -1.69   -2.52   -3.41   -4.25   -4.94   -5.36   -5.39   -4.99   -4.17   -2.98   -1.49    0.36    2.72    5.78    9.50
+   175.0    0.00   -0.09   -0.42   -0.97   -1.69   -2.52   -3.41   -4.25   -4.94   -5.36   -5.41   -5.02   -4.21   -3.03   -1.53    0.33    2.68    5.69    9.33
+   180.0    0.00   -0.09   -0.43   -0.97   -1.69   -2.53   -3.41   -4.25   -4.94   -5.36   -5.41   -5.03   -4.23   -3.06   -1.56    0.30    2.63    5.59    9.19
+   185.0    0.00   -0.10   -0.43   -0.98   -1.70   -2.54   -3.42   -4.26   -4.94   -5.36   -5.41   -5.03   -4.23   -3.07   -1.58    0.27    2.58    5.51    9.09
+   190.0    0.00   -0.10   -0.44   -0.99   -1.71   -2.55   -3.44   -4.27   -4.95   -5.35   -5.39   -5.01   -4.22   -3.06   -1.58    0.25    2.55    5.46    9.05
+   195.0    0.00   -0.11   -0.44   -0.99   -1.72   -2.57   -3.45   -4.28   -4.95   -5.34   -5.36   -4.98   -4.19   -3.04   -1.57    0.25    2.54    5.44    9.09
+   200.0    0.00   -0.11   -0.44   -0.99   -1.72   -2.58   -3.47   -4.30   -4.95   -5.32   -5.33   -4.94   -4.15   -3.01   -1.54    0.27    2.55    5.47    9.20
+   205.0    0.00   -0.11   -0.45   -0.99   -1.73   -2.59   -3.48   -4.31   -4.95   -5.31   -5.31   -4.91   -4.11   -2.97   -1.50    0.32    2.60    5.54    9.36
+   210.0    0.00   -0.12   -0.45   -0.99   -1.73   -2.59   -3.49   -4.32   -4.96   -5.31   -5.29   -4.88   -4.08   -2.92   -1.44    0.39    2.68    5.64    9.55
+   215.0    0.00   -0.12   -0.45   -0.99   -1.72   -2.59   -3.49   -4.33   -4.97   -5.31   -5.29   -4.86   -4.05   -2.87   -1.37    0.48    2.78    5.77    9.74
+   220.0    0.00   -0.12   -0.45   -0.99   -1.72   -2.58   -3.49   -4.33   -4.98   -5.33   -5.30   -4.87   -4.03   -2.83   -1.30    0.58    2.91    5.90    9.90
+   225.0    0.00   -0.12   -0.45   -0.98   -1.70   -2.57   -3.48   -4.33   -4.99   -5.34   -5.32   -4.88   -4.02   -2.79   -1.22    0.69    3.03    6.01    9.99
+   230.0    0.00   -0.13   -0.45   -0.97   -1.69   -2.55   -3.47   -4.33   -5.00   -5.37   -5.35   -4.90   -4.03   -2.76   -1.15    0.79    3.14    6.09   10.02
+   235.0    0.00   -0.13   -0.45   -0.96   -1.67   -2.53   -3.45   -4.32   -5.01   -5.39   -5.38   -4.93   -4.03   -2.74   -1.10    0.87    3.21    6.13    9.96
+   240.0    0.00   -0.13   -0.45   -0.95   -1.65   -2.50   -3.42   -4.31   -5.01   -5.42   -5.41   -4.95   -4.04   -2.72   -1.06    0.91    3.25    6.12    9.83
+   245.0    0.00   -0.13   -0.44   -0.94   -1.63   -2.47   -3.40   -4.29   -5.02   -5.43   -5.43   -4.97   -4.04   -2.71   -1.05    0.92    3.24    6.06    9.66
+   250.0    0.00   -0.14   -0.44   -0.93   -1.61   -2.44   -3.37   -4.28   -5.02   -5.44   -5.45   -4.98   -4.04   -2.72   -1.06    0.88    3.17    5.96    9.46
+   255.0    0.00   -0.14   -0.44   -0.92   -1.59   -2.42   -3.35   -4.26   -5.01   -5.45   -5.45   -4.97   -4.04   -2.73   -1.11    0.80    3.07    5.83    9.26
+   260.0    0.00   -0.14   -0.45   -0.92   -1.57   -2.40   -3.33   -4.25   -5.01   -5.45   -5.45   -4.96   -4.04   -2.75   -1.18    0.69    2.93    5.70    9.10
+   265.0    0.00   -0.14   -0.45   -0.91   -1.56   -2.38   -3.31   -4.24   -5.01   -5.45   -5.44   -4.95   -4.04   -2.79   -1.26    0.55    2.78    5.58    9.00
+   270.0    0.00   -0.15   -0.45   -0.91   -1.55   -2.36   -3.30   -4.23   -5.01   -5.45   -5.43   -4.94   -4.04   -2.83   -1.36    0.41    2.64    5.50    8.98
+   275.0    0.00   -0.15   -0.45   -0.92   -1.55   -2.36   -3.29   -4.23   -5.01   -5.45   -5.44   -4.95   -4.06   -2.87   -1.45    0.29    2.53    5.46    9.03
+   280.0    0.00   -0.15   -0.46   -0.92   -1.55   -2.36   -3.29   -4.24   -5.02   -5.47   -5.46   -4.97   -4.08   -2.93   -1.54    0.18    2.45    5.47    9.15
+   285.0    0.00   -0.16   -0.47   -0.93   -1.56   -2.36   -3.29   -4.25   -5.04   -5.50   -5.49   -5.00   -4.12   -2.98   -1.60    0.12    2.43    5.54    9.31
+   290.0    0.00   -0.16   -0.47   -0.94   -1.56   -2.37   -3.30   -4.26   -5.07   -5.54   -5.54   -5.05   -4.17   -3.02   -1.64    0.10    2.45    5.64    9.51
+   295.0    0.00   -0.16   -0.48   -0.95   -1.58   -2.38   -3.31   -4.28   -5.10   -5.58   -5.60   -5.11   -4.23   -3.06   -1.65    0.12    2.52    5.77    9.71
+   300.0    0.00   -0.16   -0.49   -0.96   -1.59   -2.39   -3.32   -4.29   -5.13   -5.63   -5.66   -5.18   -4.28   -3.08   -1.63    0.18    2.62    5.91    9.89
+   305.0    0.00   -0.16   -0.50   -0.98   -1.61   -2.40   -3.33   -4.30   -5.15   -5.67   -5.72   -5.25   -4.33   -3.09   -1.59    0.26    2.73    6.04   10.03
+   310.0    0.00   -0.17   -0.50   -0.99   -1.62   -2.41   -3.34   -4.31   -5.17   -5.71   -5.77   -5.31   -4.37   -3.08   -1.53    0.36    2.84    6.13   10.12
+   315.0    0.00   -0.17   -0.51   -1.00   -1.64   -2.43   -3.34   -4.31   -5.17   -5.73   -5.81   -5.34   -4.38   -3.06   -1.47    0.45    2.92    6.18   10.16
+   320.0    0.00   -0.17   -0.52   -1.01   -1.65   -2.43   -3.34   -4.30   -5.16   -5.73   -5.82   -5.36   -4.38   -3.03   -1.41    0.52    2.96    6.18   10.15
+   325.0    0.00   -0.17   -0.52   -1.02   -1.67   -2.44   -3.34   -4.29   -5.14   -5.71   -5.81   -5.35   -4.37   -3.00   -1.36    0.56    2.96    6.13   10.11
+   330.0    0.00   -0.16   -0.52   -1.03   -1.68   -2.45   -3.33   -4.26   -5.10   -5.67   -5.77   -5.32   -4.34   -2.97   -1.33    0.56    2.92    6.04   10.04
+   335.0    0.00   -0.16   -0.52   -1.04   -1.68   -2.45   -3.33   -4.24   -5.06   -5.62   -5.72   -5.27   -4.30   -2.94   -1.33    0.54    2.85    5.93    9.97
+   340.0    0.00   -0.16   -0.52   -1.04   -1.69   -2.46   -3.32   -4.21   -5.02   -5.56   -5.66   -5.22   -4.26   -2.93   -1.34    0.49    2.75    5.81    9.89
+   345.0    0.00   -0.16   -0.52   -1.04   -1.69   -2.46   -3.31   -4.19   -4.98   -5.50   -5.59   -5.16   -4.23   -2.93   -1.38    0.42    2.66    5.70    9.82
+   350.0    0.00   -0.15   -0.51   -1.03   -1.69   -2.46   -3.30   -4.17   -4.94   -5.45   -5.54   -5.12   -4.22   -2.95   -1.42    0.35    2.58    5.62    9.77
+   355.0    0.00   -0.15   -0.50   -1.03   -1.69   -2.46   -3.30   -4.16   -4.92   -5.41   -5.50   -5.09   -4.22   -2.97   -1.47    0.30    2.54    5.58    9.73
+   360.0    0.00   -0.14   -0.49   -1.01   -1.68   -2.45   -3.30   -4.16   -4.91   -5.39   -5.48   -5.09   -4.23   -3.01   -1.51    0.28    2.54    5.59    9.71
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH701945E_M    SCIS                                        TYPE / SERIAL NO    
+FIELD               NGS                      2    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.48      0.13     89.65                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.43   -1.40   -2.73   -4.12   -5.92   -7.36   -8.69   -9.47   -9.81   -9.66   -8.79   -7.63   -5.85   -3.38   -0.41    3.37
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.58      0.01    119.25                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.43   -1.01   -1.78   -2.59   -3.38   -4.19   -4.97   -5.71   -6.21   -6.25   -5.86   -5.13   -3.83   -2.23   -0.21    2.45
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH701945E_M    SCIT                                        TYPE / SERIAL NO    
+FIELD               NGS                      3    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.68     -0.27     89.25                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.53   -1.50   -2.83   -4.22   -5.82   -7.16   -8.29   -9.07   -9.31   -9.16   -8.39   -7.13   -5.45   -3.28   -0.41    3.07
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.18     -0.39    117.85                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.23   -0.61   -1.18   -1.89   -2.58   -3.39   -4.27   -4.91   -5.31   -5.45   -5.06   -4.23   -2.83   -1.13    1.19    4.15
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH701945E_M    SNOW                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               1    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+Number of Calibrated Antennas GPS:      001                 COMMENT             
+Number of Individual Calibrations GPS:  006                 COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.96     -0.70     90.19                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.23   -0.91   -1.94   -3.21   -4.61   -6.01   -7.29   -8.29   -8.88   -8.90   -8.23   -6.83   -4.75   -2.07    1.11    4.75    8.82   13.24
+     0.0    0.00   -0.23   -0.93   -2.05   -3.49   -5.05   -6.56   -7.83   -8.71   -9.12   -9.00   -8.34   -7.09   -5.21   -2.62    0.71    4.70    9.11   13.49
+     5.0    0.00   -0.23   -0.93   -2.05   -3.48   -5.05   -6.57   -7.84   -8.73   -9.14   -9.02   -8.34   -7.09   -5.20   -2.62    0.69    4.69    9.13   13.56
+    10.0    0.00   -0.23   -0.93   -2.05   -3.48   -5.05   -6.56   -7.85   -8.75   -9.16   -9.04   -8.35   -7.08   -5.19   -2.62    0.67    4.67    9.15   13.66
+    15.0    0.00   -0.23   -0.93   -2.05   -3.47   -5.03   -6.55   -7.85   -8.76   -9.19   -9.06   -8.35   -7.06   -5.17   -2.61    0.66    4.65    9.17   13.78
+    20.0    0.00   -0.23   -0.93   -2.04   -3.45   -5.01   -6.53   -7.84   -8.77   -9.21   -9.08   -8.36   -7.04   -5.13   -2.58    0.67    4.64    9.19   13.92
+    25.0    0.00   -0.24   -0.93   -2.03   -3.43   -4.98   -6.50   -7.82   -8.77   -9.22   -9.10   -8.36   -7.02   -5.09   -2.53    0.70    4.65    9.23   14.07
+    30.0    0.00   -0.24   -0.93   -2.03   -3.41   -4.95   -6.46   -7.79   -8.76   -9.24   -9.11   -8.36   -7.00   -5.03   -2.46    0.75    4.69    9.28   14.20
+    35.0    0.00   -0.24   -0.93   -2.02   -3.39   -4.91   -6.42   -7.76   -8.75   -9.24   -9.12   -8.36   -6.96   -4.96   -2.37    0.84    4.75    9.34   14.30
+    40.0    0.00   -0.24   -0.93   -2.01   -3.36   -4.87   -6.37   -7.71   -8.72   -9.23   -9.12   -8.35   -6.91   -4.87   -2.26    0.95    4.84    9.41   14.38
+    45.0    0.00   -0.24   -0.93   -2.00   -3.34   -4.83   -6.32   -7.66   -8.68   -9.21   -9.11   -8.32   -6.85   -4.77   -2.13    1.09    4.96    9.48   14.42
+    50.0    0.00   -0.24   -0.93   -1.99   -3.32   -4.78   -6.26   -7.60   -8.63   -9.17   -9.08   -8.28   -6.78   -4.66   -1.98    1.25    5.09    9.57   14.44
+    55.0    0.00   -0.25   -0.93   -1.98   -3.29   -4.74   -6.20   -7.54   -8.57   -9.12   -9.03   -8.22   -6.70   -4.54   -1.83    1.41    5.23    9.65   14.43
+    60.0    0.00   -0.25   -0.93   -1.98   -3.27   -4.70   -6.14   -7.47   -8.50   -9.05   -8.97   -8.15   -6.60   -4.41   -1.67    1.58    5.37    9.73   14.40
+    65.0    0.00   -0.25   -0.93   -1.97   -3.25   -4.66   -6.08   -7.39   -8.42   -8.98   -8.90   -8.07   -6.51   -4.30   -1.53    1.73    5.51    9.80   14.37
+    70.0    0.00   -0.25   -0.94   -1.96   -3.23   -4.62   -6.02   -7.31   -8.33   -8.89   -8.82   -8.00   -6.43   -4.19   -1.41    1.86    5.62    9.86   14.34
+    75.0    0.00   -0.25   -0.94   -1.96   -3.21   -4.58   -5.96   -7.24   -8.25   -8.81   -8.74   -7.93   -6.36   -4.11   -1.31    1.97    5.71    9.91   14.32
+    80.0    0.00   -0.25   -0.94   -1.95   -3.19   -4.54   -5.90   -7.16   -8.17   -8.73   -8.67   -7.87   -6.31   -4.06   -1.25    2.04    5.77    9.93   14.29
+    85.0    0.00   -0.25   -0.94   -1.95   -3.17   -4.50   -5.85   -7.09   -8.09   -8.66   -8.62   -7.84   -6.29   -4.04   -1.23    2.07    5.80    9.93   14.26
+    90.0    0.00   -0.26   -0.94   -1.94   -3.16   -4.47   -5.80   -7.03   -8.03   -8.61   -8.59   -7.84   -6.30   -4.06   -1.24    2.06    5.79    9.90   14.21
+    95.0    0.00   -0.26   -0.94   -1.94   -3.14   -4.44   -5.76   -6.98   -7.98   -8.58   -8.58   -7.86   -6.34   -4.11   -1.28    2.02    5.75    9.84   14.14
+   100.0    0.00   -0.26   -0.94   -1.93   -3.13   -4.42   -5.72   -6.94   -7.95   -8.56   -8.60   -7.90   -6.41   -4.19   -1.36    1.95    5.66    9.74   14.03
+   105.0    0.00   -0.26   -0.93   -1.93   -3.12   -4.40   -5.70   -6.92   -7.93   -8.57   -8.63   -7.97   -6.50   -4.29   -1.46    1.85    5.55    9.60   13.90
+   110.0    0.00   -0.26   -0.93   -1.92   -3.11   -4.39   -5.68   -6.91   -7.93   -8.59   -8.68   -8.05   -6.60   -4.40   -1.58    1.73    5.41    9.44   13.74
+   115.0    0.00   -0.26   -0.93   -1.92   -3.10   -4.38   -5.68   -6.91   -7.95   -8.63   -8.74   -8.13   -6.71   -4.52   -1.70    1.58    5.24    9.24   13.56
+   120.0    0.00   -0.25   -0.93   -1.91   -3.10   -4.38   -5.69   -6.93   -7.98   -8.67   -8.81   -8.21   -6.80   -4.64   -1.84    1.42    5.05    9.03   13.36
+   125.0    0.00   -0.25   -0.92   -1.91   -3.09   -4.39   -5.70   -6.96   -8.02   -8.72   -8.87   -8.28   -6.89   -4.74   -1.97    1.26    4.86    8.81   13.17
+   130.0    0.00   -0.25   -0.92   -1.90   -3.09   -4.39   -5.72   -6.99   -8.06   -8.77   -8.92   -8.34   -6.96   -4.84   -2.10    1.09    4.65    8.60   13.00
+   135.0    0.00   -0.25   -0.91   -1.90   -3.09   -4.40   -5.75   -7.03   -8.11   -8.82   -8.96   -8.38   -7.02   -4.93   -2.23    0.92    4.46    8.40   12.85
+   140.0    0.00   -0.25   -0.91   -1.89   -3.09   -4.41   -5.77   -7.07   -8.15   -8.85   -8.99   -8.41   -7.06   -5.00   -2.35    0.77    4.28    8.23   12.74
+   145.0    0.00   -0.25   -0.90   -1.88   -3.09   -4.42   -5.80   -7.10   -8.19   -8.88   -9.01   -8.43   -7.10   -5.07   -2.45    0.62    4.12    8.09   12.66
+   150.0    0.00   -0.24   -0.90   -1.88   -3.09   -4.43   -5.82   -7.13   -8.22   -8.91   -9.02   -8.44   -7.12   -5.12   -2.55    0.50    3.99    7.99   12.60
+   155.0    0.00   -0.24   -0.89   -1.87   -3.08   -4.44   -5.84   -7.16   -8.25   -8.93   -9.03   -8.45   -7.15   -5.18   -2.63    0.40    3.90    7.92   12.55
+   160.0    0.00   -0.24   -0.89   -1.86   -3.07   -4.44   -5.85   -7.18   -8.27   -8.95   -9.05   -8.47   -7.18   -5.22   -2.69    0.34    3.84    7.87   12.51
+   165.0    0.00   -0.24   -0.88   -1.85   -3.07   -4.43   -5.85   -7.19   -8.28   -8.96   -9.07   -8.50   -7.22   -5.27   -2.74    0.30    3.82    7.86   12.45
+   170.0    0.00   -0.23   -0.87   -1.84   -3.06   -4.42   -5.85   -7.19   -8.29   -8.98   -9.09   -8.53   -7.25   -5.31   -2.76    0.30    3.84    7.86   12.38
+   175.0    0.00   -0.23   -0.87   -1.84   -3.05   -4.41   -5.84   -7.18   -8.29   -8.99   -9.12   -8.56   -7.29   -5.33   -2.76    0.32    3.88    7.87   12.29
+   180.0    0.00   -0.23   -0.87   -1.83   -3.04   -4.40   -5.82   -7.17   -8.29   -9.00   -9.14   -8.60   -7.32   -5.34   -2.74    0.38    3.94    7.89   12.18
+   185.0    0.00   -0.23   -0.86   -1.82   -3.03   -4.39   -5.81   -7.16   -8.28   -9.01   -9.16   -8.62   -7.34   -5.33   -2.70    0.45    4.01    7.91   12.07
+   190.0    0.00   -0.23   -0.86   -1.82   -3.02   -4.38   -5.79   -7.14   -8.27   -9.00   -9.17   -8.63   -7.34   -5.30   -2.63    0.54    4.10    7.94   11.99
+   195.0    0.00   -0.23   -0.86   -1.82   -3.02   -4.37   -5.77   -7.12   -8.25   -8.99   -9.16   -8.62   -7.31   -5.24   -2.54    0.64    4.18    7.98   11.94
+   200.0    0.00   -0.22   -0.86   -1.82   -3.01   -4.36   -5.76   -7.09   -8.22   -8.96   -9.13   -8.58   -7.25   -5.16   -2.44    0.75    4.27    8.03   11.95
+   205.0    0.00   -0.22   -0.86   -1.82   -3.02   -4.36   -5.74   -7.07   -8.18   -8.91   -9.07   -8.52   -7.17   -5.06   -2.34    0.85    4.36    8.11   12.03
+   210.0    0.00   -0.22   -0.86   -1.82   -3.02   -4.36   -5.73   -7.04   -8.14   -8.85   -9.00   -8.42   -7.06   -4.95   -2.22    0.95    4.46    8.22   12.19
+   215.0    0.00   -0.22   -0.86   -1.83   -3.03   -4.36   -5.72   -7.01   -8.08   -8.78   -8.90   -8.31   -6.94   -4.82   -2.11    1.05    4.56    8.36   12.42
+   220.0    0.00   -0.22   -0.86   -1.84   -3.04   -4.37   -5.72   -6.98   -8.03   -8.69   -8.79   -8.18   -6.80   -4.70   -2.00    1.15    4.67    8.53   12.71
+   225.0    0.00   -0.22   -0.87   -1.85   -3.05   -4.38   -5.71   -6.95   -7.97   -8.60   -8.68   -8.06   -6.67   -4.58   -1.90    1.25    4.79    8.72   13.02
+   230.0    0.00   -0.22   -0.87   -1.86   -3.07   -4.39   -5.71   -6.93   -7.91   -8.52   -8.57   -7.94   -6.56   -4.47   -1.80    1.35    4.92    8.93   13.33
+   235.0    0.00   -0.22   -0.87   -1.87   -3.08   -4.40   -5.71   -6.90   -7.86   -8.44   -8.48   -7.84   -6.46   -4.38   -1.71    1.45    5.06    9.13   13.59
+   240.0    0.00   -0.22   -0.88   -1.88   -3.10   -4.41   -5.71   -6.89   -7.82   -8.38   -8.40   -7.76   -6.39   -4.31   -1.63    1.56    5.21    9.31   13.79
+   245.0    0.00   -0.22   -0.88   -1.89   -3.11   -4.43   -5.71   -6.87   -7.80   -8.34   -8.36   -7.71   -6.34   -4.26   -1.56    1.66    5.34    9.46   13.88
+   250.0    0.00   -0.22   -0.88   -1.90   -3.12   -4.44   -5.72   -6.87   -7.78   -8.33   -8.34   -7.70   -6.32   -4.22   -1.49    1.76    5.46    9.55   13.88
+   255.0    0.00   -0.22   -0.89   -1.90   -3.14   -4.45   -5.73   -6.88   -7.79   -8.33   -8.35   -7.71   -6.32   -4.20   -1.43    1.85    5.55    9.58   13.76
+   260.0    0.00   -0.22   -0.89   -1.91   -3.15   -4.47   -5.75   -6.90   -7.81   -8.36   -8.39   -7.74   -6.34   -4.19   -1.39    1.92    5.60    9.54   13.56
+   265.0    0.00   -0.22   -0.89   -1.92   -3.16   -4.48   -5.77   -6.93   -7.85   -8.41   -8.44   -7.79   -6.37   -4.18   -1.35    1.96    5.60    9.44   13.29
+   270.0    0.00   -0.22   -0.89   -1.92   -3.17   -4.50   -5.79   -6.96   -7.90   -8.47   -8.50   -7.84   -6.40   -4.18   -1.33    1.98    5.56    9.29   13.00
+   275.0    0.00   -0.22   -0.90   -1.93   -3.18   -4.52   -5.83   -7.01   -7.96   -8.54   -8.57   -7.90   -6.43   -4.19   -1.33    1.95    5.47    9.09   12.71
+   280.0    0.00   -0.22   -0.90   -1.93   -3.19   -4.54   -5.86   -7.06   -8.02   -8.61   -8.64   -7.95   -6.46   -4.21   -1.35    1.89    5.34    8.88   12.47
+   285.0    0.00   -0.22   -0.90   -1.94   -3.20   -4.56   -5.90   -7.12   -8.09   -8.68   -8.70   -8.00   -6.49   -4.23   -1.39    1.80    5.18    8.67   12.30
+   290.0    0.00   -0.22   -0.90   -1.94   -3.22   -4.59   -5.95   -7.18   -8.16   -8.74   -8.75   -8.03   -6.52   -4.26   -1.46    1.68    5.00    8.48   12.22
+   295.0    0.00   -0.22   -0.90   -1.95   -3.24   -4.62   -6.00   -7.24   -8.22   -8.80   -8.80   -8.06   -6.55   -4.31   -1.55    1.54    4.82    8.33   12.24
+   300.0    0.00   -0.22   -0.90   -1.96   -3.25   -4.66   -6.05   -7.30   -8.28   -8.85   -8.83   -8.09   -6.58   -4.37   -1.65    1.39    4.66    8.23   12.33
+   305.0    0.00   -0.22   -0.90   -1.96   -3.28   -4.70   -6.10   -7.36   -8.34   -8.89   -8.86   -8.11   -6.62   -4.45   -1.77    1.25    4.53    8.19   12.49
+   310.0    0.00   -0.22   -0.91   -1.97   -3.30   -4.74   -6.15   -7.41   -8.39   -8.92   -8.87   -8.13   -6.67   -4.54   -1.90    1.11    4.44    8.20   12.69
+   315.0    0.00   -0.22   -0.91   -1.98   -3.32   -4.78   -6.21   -7.47   -8.43   -8.95   -8.89   -8.16   -6.72   -4.64   -2.02    0.99    4.38    8.27   12.90
+   320.0    0.00   -0.22   -0.91   -1.99   -3.35   -4.82   -6.26   -7.52   -8.47   -8.97   -8.90   -8.19   -6.79   -4.74   -2.15    0.90    4.37    8.37   13.09
+   325.0    0.00   -0.22   -0.91   -2.00   -3.37   -4.86   -6.32   -7.57   -8.50   -8.99   -8.92   -8.21   -6.85   -4.84   -2.26    0.83    4.40    8.49   13.25
+   330.0    0.00   -0.22   -0.92   -2.02   -3.40   -4.91   -6.37   -7.62   -8.54   -9.00   -8.93   -8.24   -6.91   -4.94   -2.35    0.79    4.45    8.63   13.36
+   335.0    0.00   -0.22   -0.92   -2.03   -3.42   -4.94   -6.41   -7.67   -8.57   -9.02   -8.94   -8.27   -6.97   -5.02   -2.43    0.76    4.51    8.75   13.43
+   340.0    0.00   -0.22   -0.92   -2.03   -3.44   -4.98   -6.46   -7.71   -8.60   -9.04   -8.95   -8.29   -7.02   -5.09   -2.49    0.75    4.58    8.87   13.46
+   345.0    0.00   -0.23   -0.92   -2.04   -3.46   -5.01   -6.49   -7.75   -8.63   -9.06   -8.96   -8.31   -7.06   -5.14   -2.54    0.74    4.64    8.96   13.46
+   350.0    0.00   -0.23   -0.93   -2.05   -3.47   -5.03   -6.52   -7.78   -8.66   -9.08   -8.98   -8.33   -7.08   -5.18   -2.58    0.74    4.68    9.03   13.45
+   355.0    0.00   -0.23   -0.93   -2.05   -3.48   -5.05   -6.55   -7.81   -8.69   -9.10   -8.99   -8.33   -7.09   -5.20   -2.60    0.73    4.70    9.08   13.46
+   360.0    0.00   -0.23   -0.93   -2.05   -3.49   -5.05   -6.56   -7.83   -8.71   -9.12   -9.00   -8.34   -7.09   -5.21   -2.62    0.71    4.70    9.11   13.49
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.45      0.35    115.91                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.11   -0.42   -0.90   -1.54   -2.28   -3.08   -3.89   -4.63   -5.18   -5.44   -5.32   -4.76   -3.74   -2.23   -0.15    2.60    6.15   10.43
+     0.0    0.00   -0.06   -0.36   -0.90   -1.62   -2.45   -3.30   -4.10   -4.79   -5.33   -5.62   -5.56   -5.06   -4.03   -2.46   -0.36    2.29    5.62    9.88
+     5.0    0.00   -0.06   -0.37   -0.91   -1.64   -2.47   -3.32   -4.12   -4.81   -5.33   -5.61   -5.56   -5.06   -4.05   -2.49   -0.38    2.29    5.58    9.65
+    10.0    0.00   -0.07   -0.37   -0.92   -1.65   -2.48   -3.33   -4.13   -4.81   -5.33   -5.61   -5.55   -5.05   -4.04   -2.48   -0.36    2.32    5.60    9.50
+    15.0    0.00   -0.07   -0.38   -0.92   -1.65   -2.47   -3.32   -4.12   -4.81   -5.33   -5.60   -5.53   -5.03   -4.02   -2.46   -0.32    2.39    5.67    9.44
+    20.0    0.00   -0.07   -0.38   -0.92   -1.64   -2.46   -3.30   -4.11   -4.80   -5.32   -5.59   -5.50   -4.99   -3.98   -2.41   -0.26    2.49    5.79    9.47
+    25.0    0.00   -0.07   -0.39   -0.92   -1.62   -2.43   -3.27   -4.08   -4.79   -5.31   -5.57   -5.48   -4.95   -3.93   -2.35   -0.19    2.60    5.95    9.59
+    30.0    0.00   -0.08   -0.39   -0.91   -1.61   -2.40   -3.24   -4.05   -4.77   -5.30   -5.55   -5.44   -4.90   -3.87   -2.30   -0.11    2.73    6.14    9.79
+    35.0    0.00   -0.08   -0.39   -0.91   -1.58   -2.37   -3.20   -4.02   -4.75   -5.29   -5.54   -5.41   -4.86   -3.82   -2.24   -0.04    2.84    6.33   10.02
+    40.0    0.00   -0.08   -0.39   -0.90   -1.57   -2.34   -3.17   -4.00   -4.73   -5.28   -5.52   -5.38   -4.81   -3.77   -2.20    0.01    2.93    6.51   10.28
+    45.0    0.00   -0.09   -0.39   -0.89   -1.55   -2.31   -3.14   -3.98   -4.72   -5.27   -5.50   -5.35   -4.77   -3.73   -2.17    0.04    3.00    6.66   10.52
+    50.0    0.00   -0.09   -0.40   -0.89   -1.54   -2.29   -3.13   -3.97   -4.72   -5.26   -5.48   -5.31   -4.72   -3.69   -2.14    0.05    3.03    6.76   10.73
+    55.0    0.00   -0.09   -0.40   -0.89   -1.53   -2.28   -3.12   -3.96   -4.72   -5.25   -5.46   -5.28   -4.68   -3.66   -2.13    0.04    3.02    6.80   10.86
+    60.0    0.00   -0.10   -0.40   -0.89   -1.53   -2.28   -3.12   -3.97   -4.72   -5.25   -5.45   -5.25   -4.64   -3.62   -2.13    0.02    2.99    6.79   10.93
+    65.0    0.00   -0.10   -0.41   -0.89   -1.53   -2.29   -3.13   -3.98   -4.73   -5.25   -5.43   -5.21   -4.60   -3.60   -2.12   -0.01    2.94    6.74   10.91
+    70.0    0.00   -0.10   -0.41   -0.90   -1.54   -2.30   -3.15   -4.00   -4.74   -5.25   -5.41   -5.18   -4.57   -3.57   -2.11   -0.03    2.88    6.64   10.82
+    75.0    0.00   -0.11   -0.42   -0.91   -1.55   -2.32   -3.17   -4.01   -4.75   -5.24   -5.39   -5.16   -4.54   -3.54   -2.10   -0.05    2.82    6.52   10.67
+    80.0    0.00   -0.11   -0.42   -0.91   -1.56   -2.33   -3.18   -4.03   -4.75   -5.24   -5.38   -5.14   -4.52   -3.52   -2.08   -0.04    2.77    6.40   10.48
+    85.0    0.00   -0.11   -0.43   -0.92   -1.57   -2.34   -3.19   -4.03   -4.75   -5.23   -5.37   -5.13   -4.51   -3.50   -2.05   -0.02    2.75    6.29   10.28
+    90.0    0.00   -0.12   -0.43   -0.93   -1.58   -2.35   -3.19   -4.02   -4.74   -5.22   -5.37   -5.13   -4.51   -3.48   -2.01    0.03    2.76    6.20   10.09
+    95.0    0.00   -0.12   -0.44   -0.93   -1.58   -2.35   -3.18   -4.01   -4.72   -5.20   -5.36   -5.15   -4.52   -3.48   -1.97    0.09    2.79    6.15    9.94
+   100.0    0.00   -0.12   -0.44   -0.94   -1.58   -2.34   -3.17   -3.98   -4.69   -5.18   -5.37   -5.17   -4.55   -3.48   -1.93    0.16    2.84    6.12    9.83
+   105.0    0.00   -0.12   -0.44   -0.94   -1.58   -2.33   -3.14   -3.94   -4.65   -5.16   -5.37   -5.19   -4.57   -3.48   -1.89    0.23    2.91    6.13    9.79
+   110.0    0.00   -0.13   -0.45   -0.94   -1.57   -2.31   -3.10   -3.90   -4.62   -5.15   -5.38   -5.22   -4.61   -3.49   -1.86    0.29    2.97    6.17    9.80
+   115.0    0.00   -0.13   -0.45   -0.93   -1.55   -2.28   -3.07   -3.86   -4.58   -5.13   -5.39   -5.25   -4.63   -3.50   -1.84    0.34    3.03    6.22    9.86
+   120.0    0.00   -0.13   -0.45   -0.93   -1.54   -2.25   -3.03   -3.82   -4.55   -5.12   -5.39   -5.27   -4.66   -3.51   -1.84    0.36    3.07    6.28    9.96
+   125.0    0.00   -0.13   -0.45   -0.92   -1.52   -2.23   -3.00   -3.79   -4.53   -5.11   -5.40   -5.28   -4.67   -3.52   -1.84    0.36    3.08    6.32   10.08
+   130.0    0.00   -0.13   -0.45   -0.91   -1.50   -2.20   -2.97   -3.77   -4.52   -5.10   -5.39   -5.28   -4.67   -3.53   -1.87    0.32    3.05    6.35   10.21
+   135.0    0.00   -0.14   -0.44   -0.90   -1.49   -2.18   -2.95   -3.76   -4.51   -5.10   -5.39   -5.27   -4.66   -3.55   -1.91    0.26    3.00    6.36   10.33
+   140.0    0.00   -0.14   -0.44   -0.89   -1.47   -2.16   -2.94   -3.76   -4.52   -5.10   -5.38   -5.25   -4.65   -3.56   -1.97    0.16    2.91    6.35   10.42
+   145.0    0.00   -0.14   -0.44   -0.89   -1.46   -2.15   -2.94   -3.76   -4.53   -5.11   -5.37   -5.23   -4.64   -3.59   -2.05    0.04    2.81    6.31   10.48
+   150.0    0.00   -0.14   -0.44   -0.88   -1.45   -2.14   -2.94   -3.77   -4.54   -5.12   -5.36   -5.21   -4.63   -3.62   -2.15   -0.09    2.68    6.26   10.49
+   155.0    0.00   -0.14   -0.44   -0.88   -1.44   -2.14   -2.94   -3.79   -4.56   -5.12   -5.36   -5.20   -4.64   -3.67   -2.25   -0.24    2.56    6.20   10.47
+   160.0    0.00   -0.14   -0.44   -0.87   -1.44   -2.13   -2.94   -3.80   -4.57   -5.13   -5.36   -5.20   -4.66   -3.74   -2.37   -0.38    2.43    6.13   10.41
+   165.0    0.00   -0.14   -0.44   -0.87   -1.43   -2.13   -2.95   -3.81   -4.59   -5.14   -5.37   -5.22   -4.71   -3.83   -2.50   -0.52    2.32    6.07   10.33
+   170.0    0.00   -0.14   -0.44   -0.87   -1.43   -2.13   -2.95   -3.81   -4.59   -5.15   -5.39   -5.25   -4.77   -3.92   -2.62   -0.64    2.23    6.01   10.24
+   175.0    0.00   -0.14   -0.45   -0.88   -1.43   -2.13   -2.94   -3.81   -4.59   -5.16   -5.41   -5.30   -4.84   -4.02   -2.73   -0.74    2.16    5.96   10.16
+   180.0    0.00   -0.15   -0.45   -0.88   -1.44   -2.13   -2.94   -3.80   -4.59   -5.17   -5.44   -5.36   -4.93   -4.12   -2.81   -0.81    2.11    5.93   10.08
+   185.0    0.00   -0.15   -0.45   -0.89   -1.45   -2.13   -2.93   -3.79   -4.58   -5.18   -5.47   -5.42   -5.00   -4.19   -2.87   -0.84    2.09    5.90   10.04
+   190.0    0.00   -0.15   -0.46   -0.90   -1.46   -2.14   -2.93   -3.77   -4.57   -5.18   -5.51   -5.48   -5.07   -4.24   -2.90   -0.84    2.09    5.88   10.02
+   195.0    0.00   -0.15   -0.46   -0.91   -1.47   -2.14   -2.92   -3.76   -4.56   -5.19   -5.54   -5.53   -5.11   -4.26   -2.88   -0.81    2.11    5.88   10.05
+   200.0    0.00   -0.15   -0.47   -0.92   -1.49   -2.16   -2.93   -3.75   -4.55   -5.19   -5.56   -5.55   -5.13   -4.24   -2.83   -0.74    2.15    5.88   10.11
+   205.0    0.00   -0.15   -0.47   -0.94   -1.51   -2.17   -2.93   -3.75   -4.54   -5.19   -5.57   -5.56   -5.11   -4.19   -2.73   -0.65    2.20    5.89   10.21
+   210.0    0.00   -0.15   -0.48   -0.95   -1.53   -2.20   -2.95   -3.75   -4.53   -5.18   -5.56   -5.55   -5.06   -4.09   -2.61   -0.53    2.27    5.91   10.33
+   215.0    0.00   -0.15   -0.48   -0.97   -1.55   -2.22   -2.97   -3.76   -4.53   -5.17   -5.54   -5.51   -4.99   -3.98   -2.46   -0.41    2.33    5.94   10.47
+   220.0    0.00   -0.14   -0.49   -0.98   -1.58   -2.25   -2.99   -3.77   -4.53   -5.16   -5.51   -5.45   -4.90   -3.85   -2.32   -0.28    2.41    5.97   10.62
+   225.0    0.00   -0.14   -0.49   -0.99   -1.60   -2.28   -3.02   -3.78   -4.53   -5.14   -5.47   -5.38   -4.80   -3.72   -2.18   -0.16    2.48    6.02   10.76
+   230.0    0.00   -0.14   -0.49   -1.00   -1.62   -2.31   -3.04   -3.80   -4.52   -5.11   -5.42   -5.31   -4.71   -3.61   -2.06   -0.06    2.54    6.06   10.87
+   235.0    0.00   -0.14   -0.49   -1.01   -1.64   -2.34   -3.07   -3.81   -4.51   -5.07   -5.36   -5.24   -4.63   -3.53   -1.98    0.01    2.60    6.12   10.95
+   240.0    0.00   -0.13   -0.48   -1.01   -1.65   -2.36   -3.09   -3.82   -4.50   -5.04   -5.31   -5.18   -4.57   -3.48   -1.94    0.05    2.65    6.17   11.00
+   245.0    0.00   -0.13   -0.48   -1.01   -1.66   -2.37   -3.11   -3.83   -4.49   -5.01   -5.26   -5.13   -4.53   -3.47   -1.94    0.06    2.68    6.21   11.00
+   250.0    0.00   -0.12   -0.47   -1.00   -1.65   -2.37   -3.11   -3.83   -4.48   -4.97   -5.22   -5.09   -4.53   -3.49   -1.98    0.03    2.69    6.25   10.97
+   255.0    0.00   -0.12   -0.46   -0.99   -1.64   -2.37   -3.11   -3.83   -4.46   -4.95   -5.19   -5.08   -4.54   -3.54   -2.05   -0.01    2.69    6.27   10.90
+   260.0    0.00   -0.11   -0.45   -0.97   -1.63   -2.36   -3.11   -3.82   -4.45   -4.93   -5.17   -5.07   -4.57   -3.61   -2.13   -0.08    2.68    6.28   10.80
+   265.0    0.00   -0.11   -0.43   -0.95   -1.60   -2.34   -3.09   -3.81   -4.44   -4.92   -5.16   -5.08   -4.61   -3.68   -2.22   -0.15    2.65    6.28   10.70
+   270.0    0.00   -0.10   -0.42   -0.92   -1.57   -2.31   -3.07   -3.80   -4.44   -4.92   -5.16   -5.10   -4.64   -3.74   -2.29   -0.21    2.62    6.27   10.60
+   275.0    0.00   -0.10   -0.40   -0.90   -1.54   -2.28   -3.05   -3.79   -4.44   -4.93   -5.18   -5.11   -4.67   -3.78   -2.34   -0.26    2.60    6.25   10.53
+   280.0    0.00   -0.09   -0.39   -0.87   -1.50   -2.24   -3.02   -3.78   -4.45   -4.95   -5.20   -5.13   -4.68   -3.79   -2.36   -0.28    2.58    6.23   10.49
+   285.0    0.00   -0.08   -0.37   -0.84   -1.47   -2.20   -2.99   -3.77   -4.46   -4.97   -5.22   -5.14   -4.68   -3.77   -2.34   -0.27    2.57    6.22   10.51
+   290.0    0.00   -0.08   -0.36   -0.82   -1.43   -2.17   -2.97   -3.77   -4.48   -5.00   -5.25   -5.15   -4.66   -3.73   -2.29   -0.23    2.57    6.22   10.57
+   295.0    0.00   -0.07   -0.34   -0.80   -1.41   -2.14   -2.95   -3.77   -4.50   -5.04   -5.28   -5.16   -4.63   -3.66   -2.21   -0.18    2.60    6.23   10.67
+   300.0    0.00   -0.07   -0.33   -0.78   -1.38   -2.12   -2.93   -3.77   -4.52   -5.07   -5.32   -5.17   -4.60   -3.59   -2.12   -0.10    2.63    6.25   10.82
+   305.0    0.00   -0.06   -0.32   -0.76   -1.37   -2.10   -2.93   -3.77   -4.54   -5.10   -5.35   -5.18   -4.57   -3.52   -2.03   -0.02    2.66    6.28   10.99
+   310.0    0.00   -0.06   -0.32   -0.76   -1.36   -2.10   -2.93   -3.78   -4.56   -5.14   -5.38   -5.20   -4.56   -3.47   -1.95    0.05    2.70    6.30   11.15
+   315.0    0.00   -0.06   -0.31   -0.76   -1.36   -2.11   -2.94   -3.80   -4.58   -5.17   -5.41   -5.23   -4.56   -3.44   -1.90    0.10    2.73    6.32   11.29
+   320.0    0.00   -0.06   -0.31   -0.76   -1.38   -2.13   -2.96   -3.82   -4.61   -5.19   -5.45   -5.26   -4.59   -3.44   -1.88    0.12    2.74    6.32   11.38
+   325.0    0.00   -0.05   -0.31   -0.77   -1.40   -2.16   -2.99   -3.85   -4.63   -5.22   -5.48   -5.30   -4.63   -3.48   -1.90    0.12    2.72    6.30   11.41
+   330.0    0.00   -0.05   -0.32   -0.78   -1.43   -2.19   -3.03   -3.88   -4.65   -5.24   -5.51   -5.35   -4.69   -3.54   -1.95    0.08    2.69    6.25   11.36
+   335.0    0.00   -0.05   -0.32   -0.80   -1.46   -2.24   -3.08   -3.92   -4.68   -5.26   -5.54   -5.40   -4.77   -3.63   -2.03    0.02    2.63    6.16   11.23
+   340.0    0.00   -0.05   -0.33   -0.82   -1.50   -2.29   -3.13   -3.96   -4.70   -5.27   -5.56   -5.45   -4.85   -3.73   -2.12   -0.06    2.55    6.05   11.03
+   345.0    0.00   -0.05   -0.34   -0.84   -1.53   -2.34   -3.18   -4.00   -4.73   -5.29   -5.58   -5.49   -4.92   -3.82   -2.23   -0.15    2.47    5.93   10.76
+   350.0    0.00   -0.06   -0.35   -0.86   -1.57   -2.38   -3.23   -4.04   -4.75   -5.31   -5.60   -5.53   -4.98   -3.91   -2.32   -0.24    2.39    5.81   10.47
+   355.0    0.00   -0.06   -0.35   -0.88   -1.60   -2.42   -3.27   -4.07   -4.78   -5.32   -5.61   -5.55   -5.03   -3.98   -2.40   -0.31    2.33    5.70   10.16
+   360.0    0.00   -0.06   -0.36   -0.90   -1.62   -2.45   -3.30   -4.10   -4.79   -5.33   -5.62   -5.56   -5.06   -4.03   -2.46   -0.36    2.29    5.62    9.88
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH701945G_M    NONE                                        TYPE / SERIAL NO    
+COPIED              Geo++ GmbH               2    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+COPIED FROM AOAD/M_T        NONE                            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.58     -0.37     91.85                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.23   -0.90   -1.93   -3.22   -4.62   -5.96   -7.09   -7.87   -8.21   -8.06   -7.39   -6.23   -4.55   -2.28    0.69    4.47    9.08   14.23
+     0.0    0.00   -0.27   -0.98   -2.07   -3.42   -4.87   -6.26   -7.43   -8.21   -8.53   -8.32   -7.62   -6.44   -4.77   -2.54    0.39    4.14    8.68   13.67
+     5.0    0.00   -0.27   -0.98   -2.06   -3.41   -4.86   -6.25   -7.41   -8.20   -8.52   -8.31   -7.60   -6.41   -4.74   -2.50    0.42    4.18    8.73   13.73
+    10.0    0.00   -0.26   -0.97   -2.05   -3.39   -4.84   -6.23   -7.40   -8.19   -8.50   -8.30   -7.58   -6.38   -4.70   -2.46    0.47    4.23    8.79   13.83
+    15.0    0.00   -0.26   -0.97   -2.05   -3.38   -4.82   -6.21   -7.37   -8.17   -8.49   -8.28   -7.56   -6.36   -4.66   -2.41    0.53    4.30    8.88   13.96
+    20.0    0.00   -0.26   -0.96   -2.03   -3.36   -4.80   -6.18   -7.35   -8.15   -8.47   -8.27   -7.54   -6.33   -4.62   -2.36    0.60    4.38    9.00   14.12
+    25.0    0.00   -0.26   -0.96   -2.02   -3.34   -4.77   -6.16   -7.32   -8.12   -8.44   -8.25   -7.53   -6.30   -4.58   -2.30    0.68    4.49    9.13   14.31
+    30.0    0.00   -0.26   -0.95   -2.01   -3.32   -4.75   -6.12   -7.28   -8.08   -8.42   -8.22   -7.51   -6.28   -4.54   -2.24    0.77    4.61    9.29   14.51
+    35.0    0.00   -0.25   -0.94   -2.00   -3.30   -4.72   -6.09   -7.25   -8.05   -8.38   -8.20   -7.48   -6.25   -4.50   -2.17    0.87    4.75    9.46   14.71
+    40.0    0.00   -0.25   -0.93   -1.98   -3.28   -4.69   -6.05   -7.21   -8.01   -8.35   -8.17   -7.46   -6.23   -4.46   -2.10    0.97    4.88    9.62   14.90
+    45.0    0.00   -0.25   -0.93   -1.97   -3.26   -4.66   -6.02   -7.16   -7.96   -8.30   -8.13   -7.43   -6.19   -4.42   -2.03    1.08    5.02    9.78   15.07
+    50.0    0.00   -0.24   -0.92   -1.95   -3.24   -4.63   -5.98   -7.12   -7.91   -8.26   -8.09   -7.39   -6.16   -4.37   -1.97    1.17    5.14    9.92   15.22
+    55.0    0.00   -0.24   -0.91   -1.94   -3.21   -4.60   -5.94   -7.07   -7.86   -8.20   -8.04   -7.35   -6.12   -4.33   -1.91    1.24    5.24   10.04   15.34
+    60.0    0.00   -0.24   -0.90   -1.92   -3.19   -4.57   -5.90   -7.02   -7.81   -8.15   -7.99   -7.30   -6.08   -4.29   -1.87    1.30    5.31   10.11   15.41
+    65.0    0.00   -0.23   -0.89   -1.91   -3.17   -4.54   -5.86   -6.97   -7.75   -8.09   -7.93   -7.25   -6.03   -4.25   -1.83    1.33    5.34   10.15   15.45
+    70.0    0.00   -0.23   -0.89   -1.90   -3.15   -4.51   -5.82   -6.93   -7.70   -8.03   -7.88   -7.20   -5.99   -4.22   -1.82    1.33    5.33   10.14   15.45
+    75.0    0.00   -0.23   -0.88   -1.88   -3.13   -4.49   -5.79   -6.89   -7.65   -7.98   -7.82   -7.15   -5.96   -4.21   -1.82    1.31    5.28   10.08   15.40
+    80.0    0.00   -0.23   -0.87   -1.87   -3.12   -4.46   -5.76   -6.85   -7.61   -7.94   -7.78   -7.11   -5.93   -4.20   -1.85    1.25    5.20    9.99   15.32
+    85.0    0.00   -0.22   -0.87   -1.86   -3.10   -4.44   -5.74   -6.83   -7.58   -7.91   -7.75   -7.09   -5.92   -4.21   -1.89    1.17    5.09    9.86   15.20
+    90.0    0.00   -0.22   -0.86   -1.86   -3.09   -4.43   -5.72   -6.81   -7.56   -7.89   -7.73   -7.08   -5.92   -4.24   -1.95    1.08    4.96    9.71   15.05
+    95.0    0.00   -0.22   -0.86   -1.85   -3.09   -4.42   -5.71   -6.80   -7.56   -7.89   -7.73   -7.09   -5.94   -4.28   -2.02    0.97    4.82    9.54   14.88
+   100.0    0.00   -0.22   -0.86   -1.85   -3.08   -4.42   -5.71   -6.80   -7.56   -7.90   -7.75   -7.11   -5.98   -4.34   -2.11    0.86    4.68    9.37   14.70
+   105.0    0.00   -0.22   -0.86   -1.85   -3.08   -4.42   -5.72   -6.81   -7.58   -7.92   -7.78   -7.16   -6.04   -4.41   -2.19    0.75    4.54    9.21   14.52
+   110.0    0.00   -0.21   -0.85   -1.85   -3.09   -4.43   -5.73   -6.83   -7.61   -7.96   -7.83   -7.21   -6.10   -4.49   -2.28    0.64    4.42    9.07   14.35
+   115.0    0.00   -0.21   -0.85   -1.85   -3.09   -4.44   -5.75   -6.86   -7.65   -8.01   -7.89   -7.28   -6.18   -4.57   -2.36    0.56    4.32    8.95   14.20
+   120.0    0.00   -0.21   -0.86   -1.86   -3.10   -4.46   -5.77   -6.90   -7.69   -8.06   -7.95   -7.35   -6.25   -4.64   -2.44    0.48    4.25    8.86   14.08
+   125.0    0.00   -0.21   -0.86   -1.86   -3.12   -4.48   -5.80   -6.93   -7.73   -8.11   -8.01   -7.42   -6.33   -4.72   -2.50    0.43    4.20    8.81   13.99
+   130.0    0.00   -0.21   -0.86   -1.87   -3.13   -4.50   -5.83   -6.97   -7.78   -8.16   -8.07   -7.48   -6.39   -4.78   -2.55    0.40    4.18    8.78   13.94
+   135.0    0.00   -0.21   -0.86   -1.88   -3.15   -4.53   -5.86   -7.01   -7.82   -8.21   -8.12   -7.54   -6.45   -4.83   -2.59    0.38    4.17    8.78   13.92
+   140.0    0.00   -0.21   -0.86   -1.89   -3.16   -4.55   -5.89   -7.04   -7.85   -8.24   -8.16   -7.58   -6.49   -4.87   -2.62    0.37    4.18    8.79   13.93
+   145.0    0.00   -0.21   -0.87   -1.89   -3.18   -4.57   -5.92   -7.07   -7.88   -8.28   -8.19   -7.61   -6.52   -4.89   -2.63    0.37    4.19    8.81   13.95
+   150.0    0.00   -0.21   -0.87   -1.90   -3.19   -4.59   -5.95   -7.10   -7.91   -8.30   -8.21   -7.63   -6.54   -4.90   -2.63    0.37    4.21    8.83   13.98
+   155.0    0.00   -0.21   -0.87   -1.91   -3.20   -4.61   -5.97   -7.12   -7.93   -8.32   -8.23   -7.65   -6.55   -4.91   -2.64    0.38    4.21    8.84   14.00
+   160.0    0.00   -0.21   -0.87   -1.91   -3.21   -4.63   -5.98   -7.13   -7.94   -8.33   -8.24   -7.65   -6.56   -4.91   -2.64    0.38    4.21    8.83   14.00
+   165.0    0.00   -0.21   -0.88   -1.92   -3.22   -4.64   -6.00   -7.14   -7.95   -8.34   -8.24   -7.65   -6.55   -4.91   -2.64    0.37    4.19    8.81   13.98
+   170.0    0.00   -0.21   -0.88   -1.92   -3.23   -4.64   -6.00   -7.15   -7.96   -8.34   -8.25   -7.65   -6.55   -4.91   -2.64    0.35    4.16    8.76   13.93
+   175.0    0.00   -0.21   -0.88   -1.92   -3.23   -4.65   -6.01   -7.16   -7.97   -8.35   -8.25   -7.65   -6.55   -4.90   -2.64    0.33    4.11    8.70   13.87
+   180.0    0.00   -0.21   -0.88   -1.92   -3.23   -4.65   -6.01   -7.16   -7.97   -8.35   -8.25   -7.66   -6.55   -4.90   -2.65    0.31    4.07    8.63   13.79
+   185.0    0.00   -0.21   -0.88   -1.92   -3.23   -4.64   -6.00   -7.16   -7.97   -8.36   -8.26   -7.66   -6.55   -4.90   -2.66    0.28    4.02    8.57   13.72
+   190.0    0.00   -0.21   -0.87   -1.92   -3.22   -4.64   -6.00   -7.15   -7.97   -8.36   -8.26   -7.66   -6.54   -4.90   -2.67    0.26    3.99    8.52   13.66
+   195.0    0.00   -0.21   -0.87   -1.91   -3.21   -4.63   -5.99   -7.15   -7.97   -8.35   -8.25   -7.65   -6.53   -4.89   -2.66    0.26    3.97    8.50   13.64
+   200.0    0.00   -0.21   -0.87   -1.91   -3.20   -4.61   -5.98   -7.14   -7.96   -8.34   -8.24   -7.63   -6.52   -4.88   -2.65    0.27    3.98    8.52   13.67
+   205.0    0.00   -0.21   -0.87   -1.90   -3.19   -4.60   -5.96   -7.12   -7.94   -8.33   -8.22   -7.61   -6.49   -4.85   -2.62    0.30    4.03    8.58   13.75
+   210.0    0.00   -0.21   -0.87   -1.89   -3.18   -4.59   -5.94   -7.10   -7.92   -8.30   -8.19   -7.57   -6.45   -4.80   -2.57    0.35    4.11    8.70   13.88
+   215.0    0.00   -0.21   -0.86   -1.89   -3.17   -4.57   -5.92   -7.08   -7.89   -8.26   -8.14   -7.52   -6.39   -4.74   -2.51    0.44    4.22    8.85   14.06
+   220.0    0.00   -0.21   -0.86   -1.88   -3.16   -4.55   -5.90   -7.05   -7.85   -8.22   -8.09   -7.46   -6.32   -4.67   -2.42    0.54    4.36    9.04   14.28
+   225.0    0.00   -0.21   -0.86   -1.88   -3.15   -4.53   -5.88   -7.01   -7.81   -8.17   -8.03   -7.38   -6.24   -4.58   -2.32    0.67    4.53    9.25   14.52
+   230.0    0.00   -0.21   -0.86   -1.87   -3.14   -4.52   -5.85   -6.98   -7.77   -8.11   -7.96   -7.30   -6.15   -4.48   -2.20    0.81    4.71    9.46   14.74
+   235.0    0.00   -0.21   -0.86   -1.87   -3.13   -4.50   -5.83   -6.95   -7.72   -8.05   -7.89   -7.22   -6.06   -4.37   -2.08    0.96    4.88    9.66   14.94
+   240.0    0.00   -0.22   -0.86   -1.86   -3.12   -4.49   -5.80   -6.91   -7.68   -7.99   -7.82   -7.14   -5.97   -4.27   -1.96    1.10    5.04    9.83   15.09
+   245.0    0.00   -0.22   -0.86   -1.86   -3.12   -4.48   -5.78   -6.88   -7.64   -7.94   -7.76   -7.07   -5.88   -4.17   -1.84    1.23    5.18    9.95   15.17
+   250.0    0.00   -0.22   -0.86   -1.87   -3.11   -4.47   -5.77   -6.86   -7.60   -7.90   -7.71   -7.01   -5.81   -4.08   -1.74    1.34    5.27   10.01   15.19
+   255.0    0.00   -0.22   -0.87   -1.87   -3.12   -4.47   -5.76   -6.84   -7.58   -7.87   -7.67   -6.97   -5.76   -4.01   -1.66    1.41    5.32   10.00   15.12
+   260.0    0.00   -0.22   -0.87   -1.87   -3.12   -4.47   -5.76   -6.84   -7.57   -7.86   -7.65   -6.94   -5.72   -3.97   -1.61    1.45    5.32    9.94   15.00
+   265.0    0.00   -0.23   -0.88   -1.88   -3.13   -4.48   -5.77   -6.84   -7.57   -7.86   -7.65   -6.93   -5.70   -3.94   -1.59    1.45    5.26    9.81   14.82
+   270.0    0.00   -0.23   -0.88   -1.89   -3.14   -4.49   -5.78   -6.85   -7.58   -7.87   -7.66   -6.94   -5.71   -3.94   -1.60    1.41    5.16    9.65   14.61
+   275.0    0.00   -0.23   -0.89   -1.90   -3.16   -4.51   -5.80   -6.88   -7.61   -7.90   -7.69   -6.97   -5.73   -3.97   -1.64    1.33    5.03    9.45   14.39
+   280.0    0.00   -0.23   -0.90   -1.92   -3.18   -4.54   -5.83   -6.91   -7.64   -7.93   -7.73   -7.01   -5.77   -4.02   -1.71    1.23    4.87    9.24   14.18
+   285.0    0.00   -0.24   -0.91   -1.93   -3.20   -4.56   -5.87   -6.95   -7.69   -7.98   -7.78   -7.06   -5.83   -4.09   -1.80    1.10    4.70    9.04   13.99
+   290.0    0.00   -0.24   -0.91   -1.95   -3.23   -4.60   -5.91   -7.00   -7.74   -8.04   -7.83   -7.12   -5.90   -4.17   -1.91    0.96    4.53    8.85   13.85
+   295.0    0.00   -0.24   -0.92   -1.96   -3.25   -4.63   -5.95   -7.05   -7.79   -8.09   -7.90   -7.19   -5.97   -4.26   -2.02    0.82    4.37    8.70   13.74
+   300.0    0.00   -0.25   -0.93   -1.98   -3.28   -4.67   -6.00   -7.10   -7.85   -8.15   -7.96   -7.26   -6.06   -4.36   -2.14    0.69    4.23    8.58   13.68
+   305.0    0.00   -0.25   -0.94   -2.00   -3.30   -4.71   -6.04   -7.16   -7.91   -8.21   -8.02   -7.32   -6.14   -4.46   -2.26    0.57    4.12    8.51   13.66
+   310.0    0.00   -0.25   -0.95   -2.01   -3.33   -4.74   -6.09   -7.21   -7.97   -8.27   -8.08   -7.39   -6.22   -4.55   -2.36    0.46    4.04    8.47   13.66
+   315.0    0.00   -0.26   -0.96   -2.03   -3.35   -4.78   -6.13   -7.26   -8.02   -8.33   -8.14   -7.45   -6.29   -4.64   -2.45    0.39    4.00    8.46   13.68
+   320.0    0.00   -0.26   -0.96   -2.04   -3.37   -4.81   -6.17   -7.30   -8.07   -8.38   -8.19   -7.51   -6.35   -4.71   -2.52    0.33    3.97    8.47   13.69
+   325.0    0.00   -0.26   -0.97   -2.05   -3.39   -4.83   -6.20   -7.34   -8.11   -8.42   -8.23   -7.55   -6.40   -4.76   -2.57    0.30    3.97    8.50   13.71
+   330.0    0.00   -0.26   -0.98   -2.06   -3.41   -4.85   -6.23   -7.37   -8.14   -8.45   -8.27   -7.59   -6.44   -4.81   -2.61    0.28    3.98    8.53   13.70
+   335.0    0.00   -0.26   -0.98   -2.07   -3.42   -4.87   -6.25   -7.40   -8.17   -8.48   -8.30   -7.62   -6.47   -4.83   -2.63    0.28    4.01    8.56   13.69
+   340.0    0.00   -0.27   -0.98   -2.07   -3.42   -4.88   -6.27   -7.42   -8.19   -8.51   -8.32   -7.64   -6.48   -4.84   -2.63    0.29    4.03    8.59   13.67
+   345.0    0.00   -0.27   -0.98   -2.08   -3.43   -4.88   -6.27   -7.43   -8.21   -8.52   -8.33   -7.64   -6.48   -4.84   -2.62    0.30    4.06    8.61   13.65
+   350.0    0.00   -0.27   -0.98   -2.08   -3.43   -4.88   -6.28   -7.43   -8.22   -8.53   -8.33   -7.64   -6.48   -4.82   -2.60    0.33    4.08    8.63   13.63
+   355.0    0.00   -0.27   -0.98   -2.07   -3.42   -4.88   -6.27   -7.43   -8.22   -8.53   -8.33   -7.63   -6.46   -4.80   -2.58    0.35    4.11    8.65   13.64
+   360.0    0.00   -0.27   -0.98   -2.07   -3.42   -4.87   -6.26   -7.43   -8.21   -8.53   -8.32   -7.62   -6.44   -4.77   -2.54    0.39    4.14    8.68   13.67
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.08     -0.59    120.35                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.13   -0.51   -1.08   -1.79   -2.58   -3.39   -4.17   -4.81   -5.21   -5.25   -4.86   -4.03   -2.83   -1.33    0.49    2.75    5.68    9.44
+     0.0    0.00   -0.12   -0.48   -1.02   -1.69   -2.44   -3.24   -4.04   -4.72   -5.17   -5.25   -4.89   -4.12   -3.00   -1.59    0.15    2.44    5.50    9.31
+     5.0    0.00   -0.12   -0.48   -1.02   -1.69   -2.44   -3.24   -4.03   -4.72   -5.16   -5.25   -4.90   -4.13   -3.01   -1.61    0.14    2.42    5.45    9.20
+    10.0    0.00   -0.12   -0.47   -1.01   -1.68   -2.44   -3.24   -4.03   -4.71   -5.15   -5.24   -4.90   -4.13   -3.02   -1.61    0.14    2.41    5.41    9.12
+    15.0    0.00   -0.12   -0.47   -1.01   -1.68   -2.44   -3.24   -4.02   -4.70   -5.14   -5.23   -4.89   -4.13   -3.02   -1.60    0.15    2.41    5.38    9.06
+    20.0    0.00   -0.11   -0.47   -1.01   -1.68   -2.44   -3.24   -4.02   -4.69   -5.13   -5.21   -4.88   -4.12   -3.00   -1.58    0.18    2.43    5.37    9.05
+    25.0    0.00   -0.11   -0.46   -1.00   -1.68   -2.44   -3.24   -4.02   -4.68   -5.11   -5.20   -4.86   -4.10   -2.97   -1.54    0.22    2.46    5.39    9.06
+    30.0    0.00   -0.11   -0.46   -1.00   -1.68   -2.45   -3.24   -4.01   -4.67   -5.09   -5.18   -4.84   -4.07   -2.93   -1.49    0.28    2.51    5.42    9.11
+    35.0    0.00   -0.11   -0.46   -1.00   -1.68   -2.45   -3.24   -4.01   -4.66   -5.08   -5.16   -4.81   -4.03   -2.88   -1.42    0.35    2.58    5.48    9.19
+    40.0    0.00   -0.11   -0.45   -1.00   -1.68   -2.45   -3.25   -4.01   -4.65   -5.06   -5.13   -4.78   -4.00   -2.83   -1.36    0.42    2.65    5.55    9.30
+    45.0    0.00   -0.10   -0.45   -0.99   -1.68   -2.45   -3.25   -4.01   -4.65   -5.05   -5.11   -4.75   -3.96   -2.78   -1.30    0.49    2.72    5.62    9.41
+    50.0    0.00   -0.10   -0.45   -0.99   -1.68   -2.45   -3.25   -4.01   -4.65   -5.05   -5.10   -4.72   -3.92   -2.73   -1.24    0.56    2.78    5.69    9.52
+    55.0    0.00   -0.10   -0.45   -0.99   -1.68   -2.46   -3.26   -4.02   -4.65   -5.04   -5.09   -4.70   -3.88   -2.69   -1.19    0.60    2.84    5.76    9.62
+    60.0    0.00   -0.10   -0.44   -0.99   -1.68   -2.46   -3.27   -4.03   -4.66   -5.05   -5.08   -4.68   -3.86   -2.66   -1.16    0.64    2.87    5.81    9.70
+    65.0    0.00   -0.10   -0.44   -0.99   -1.69   -2.47   -3.28   -4.05   -4.68   -5.06   -5.08   -4.67   -3.84   -2.64   -1.15    0.65    2.89    5.84    9.76
+    70.0    0.00   -0.10   -0.44   -0.99   -1.69   -2.48   -3.30   -4.07   -4.70   -5.07   -5.08   -4.67   -3.83   -2.64   -1.15    0.64    2.88    5.85    9.79
+    75.0    0.00   -0.10   -0.44   -0.99   -1.69   -2.49   -3.31   -4.09   -4.72   -5.09   -5.09   -4.67   -3.84   -2.65   -1.17    0.61    2.86    5.83    9.78
+    80.0    0.00   -0.10   -0.45   -1.00   -1.70   -2.50   -3.33   -4.12   -4.75   -5.11   -5.11   -4.68   -3.85   -2.67   -1.21    0.57    2.82    5.80    9.74
+    85.0    0.00   -0.10   -0.45   -1.00   -1.71   -2.52   -3.36   -4.14   -4.78   -5.14   -5.13   -4.70   -3.87   -2.70   -1.25    0.52    2.77    5.75    9.67
+    90.0    0.00   -0.10   -0.45   -1.01   -1.72   -2.54   -3.38   -4.17   -4.81   -5.17   -5.15   -4.72   -3.89   -2.73   -1.29    0.47    2.71    5.68    9.57
+    95.0    0.00   -0.10   -0.46   -1.02   -1.74   -2.55   -3.40   -4.20   -4.83   -5.19   -5.18   -4.74   -3.92   -2.77   -1.33    0.42    2.66    5.62    9.47
+   100.0    0.00   -0.11   -0.46   -1.03   -1.75   -2.58   -3.43   -4.22   -4.86   -5.22   -5.20   -4.77   -3.95   -2.80   -1.37    0.38    2.61    5.56    9.36
+   105.0    0.00   -0.11   -0.47   -1.04   -1.77   -2.60   -3.45   -4.25   -4.88   -5.24   -5.22   -4.79   -3.97   -2.82   -1.40    0.35    2.58    5.51    9.26
+   110.0    0.00   -0.11   -0.48   -1.05   -1.79   -2.62   -3.47   -4.27   -4.90   -5.26   -5.25   -4.82   -4.00   -2.84   -1.41    0.35    2.57    5.48    9.18
+   115.0    0.00   -0.11   -0.48   -1.07   -1.81   -2.64   -3.50   -4.29   -4.92   -5.28   -5.26   -4.84   -4.01   -2.85   -1.41    0.36    2.58    5.46    9.13
+   120.0    0.00   -0.12   -0.49   -1.08   -1.83   -2.66   -3.52   -4.30   -4.93   -5.29   -5.28   -4.85   -4.03   -2.86   -1.39    0.38    2.61    5.47    9.10
+   125.0    0.00   -0.12   -0.50   -1.10   -1.85   -2.68   -3.53   -4.32   -4.94   -5.30   -5.29   -4.87   -4.03   -2.85   -1.37    0.43    2.65    5.50    9.09
+   130.0    0.00   -0.12   -0.50   -1.11   -1.86   -2.70   -3.55   -4.33   -4.95   -5.30   -5.30   -4.88   -4.04   -2.84   -1.33    0.48    2.71    5.54    9.11
+   135.0    0.00   -0.12   -0.51   -1.12   -1.88   -2.72   -3.56   -4.33   -4.95   -5.30   -5.30   -4.88   -4.04   -2.82   -1.29    0.54    2.77    5.60    9.15
+   140.0    0.00   -0.13   -0.52   -1.13   -1.89   -2.73   -3.57   -4.33   -4.95   -5.31   -5.31   -4.89   -4.04   -2.80   -1.25    0.60    2.84    5.66    9.19
+   145.0    0.00   -0.13   -0.52   -1.14   -1.90   -2.74   -3.57   -4.33   -4.94   -5.31   -5.31   -4.89   -4.04   -2.79   -1.22    0.65    2.90    5.71    9.23
+   150.0    0.00   -0.13   -0.53   -1.15   -1.91   -2.74   -3.57   -4.33   -4.94   -5.31   -5.32   -4.90   -4.04   -2.78   -1.19    0.69    2.94    5.74    9.25
+   155.0    0.00   -0.13   -0.53   -1.15   -1.91   -2.74   -3.57   -4.33   -4.94   -5.31   -5.33   -4.91   -4.05   -2.78   -1.18    0.71    2.97    5.76    9.25
+   160.0    0.00   -0.13   -0.53   -1.15   -1.91   -2.74   -3.56   -4.32   -4.93   -5.31   -5.33   -4.92   -4.06   -2.78   -1.18    0.71    2.97    5.76    9.23
+   165.0    0.00   -0.14   -0.54   -1.15   -1.91   -2.73   -3.55   -4.31   -4.93   -5.31   -5.34   -4.94   -4.07   -2.80   -1.19    0.70    2.95    5.73    9.18
+   170.0    0.00   -0.14   -0.54   -1.15   -1.90   -2.72   -3.54   -4.30   -4.93   -5.32   -5.35   -4.95   -4.09   -2.82   -1.22    0.66    2.91    5.68    9.11
+   175.0    0.00   -0.14   -0.54   -1.15   -1.90   -2.71   -3.53   -4.30   -4.93   -5.32   -5.36   -4.96   -4.11   -2.84   -1.26    0.61    2.85    5.62    9.03
+   180.0    0.00   -0.14   -0.54   -1.14   -1.89   -2.70   -3.52   -4.29   -4.93   -5.33   -5.37   -4.97   -4.12   -2.87   -1.30    0.55    2.77    5.55    8.96
+   185.0    0.00   -0.14   -0.54   -1.14   -1.87   -2.69   -3.51   -4.29   -4.93   -5.34   -5.38   -4.98   -4.13   -2.89   -1.35    0.48    2.70    5.48    8.89
+   190.0    0.00   -0.14   -0.53   -1.13   -1.86   -2.67   -3.50   -4.29   -4.94   -5.34   -5.38   -4.97   -4.12   -2.90   -1.38    0.42    2.63    5.42    8.86
+   195.0    0.00   -0.14   -0.53   -1.12   -1.85   -2.66   -3.49   -4.28   -4.94   -5.34   -5.37   -4.96   -4.11   -2.90   -1.40    0.38    2.58    5.39    8.87
+   200.0    0.00   -0.14   -0.53   -1.12   -1.84   -2.65   -3.49   -4.29   -4.95   -5.34   -5.36   -4.94   -4.09   -2.89   -1.41    0.35    2.55    5.39    8.92
+   205.0    0.00   -0.15   -0.53   -1.11   -1.83   -2.64   -3.48   -4.29   -4.95   -5.34   -5.35   -4.91   -4.05   -2.86   -1.40    0.35    2.55    5.43    9.01
+   210.0    0.00   -0.15   -0.53   -1.11   -1.82   -2.63   -3.48   -4.29   -4.95   -5.34   -5.33   -4.88   -4.01   -2.82   -1.36    0.38    2.59    5.50    9.15
+   215.0    0.00   -0.15   -0.53   -1.10   -1.82   -2.63   -3.48   -4.29   -4.95   -5.33   -5.32   -4.85   -3.97   -2.77   -1.31    0.44    2.67    5.61    9.32
+   220.0    0.00   -0.15   -0.53   -1.10   -1.82   -2.63   -3.48   -4.29   -4.95   -5.32   -5.30   -4.82   -3.93   -2.71   -1.24    0.52    2.78    5.76    9.50
+   225.0    0.00   -0.15   -0.53   -1.10   -1.82   -2.63   -3.47   -4.28   -4.94   -5.31   -5.28   -4.79   -3.89   -2.66   -1.17    0.63    2.91    5.91    9.68
+   230.0    0.00   -0.15   -0.53   -1.11   -1.82   -2.63   -3.47   -4.28   -4.93   -5.30   -5.27   -4.78   -3.86   -2.61   -1.09    0.75    3.06    6.07    9.84
+   235.0    0.00   -0.15   -0.54   -1.11   -1.82   -2.63   -3.47   -4.27   -4.92   -5.29   -5.26   -4.77   -3.85   -2.58   -1.01    0.86    3.21    6.22    9.96
+   240.0    0.00   -0.15   -0.54   -1.11   -1.83   -2.63   -3.47   -4.26   -4.91   -5.28   -5.26   -4.78   -3.86   -2.56   -0.95    0.97    3.35    6.35   10.04
+   245.0    0.00   -0.15   -0.54   -1.12   -1.83   -2.63   -3.46   -4.25   -4.89   -5.27   -5.26   -4.80   -3.88   -2.56   -0.91    1.06    3.46    6.44   10.07
+   250.0    0.00   -0.15   -0.54   -1.12   -1.84   -2.63   -3.46   -4.23   -4.88   -5.26   -5.27   -4.83   -3.92   -2.58   -0.90    1.12    3.53    6.48   10.05
+   255.0    0.00   -0.16   -0.55   -1.13   -1.84   -2.64   -3.45   -4.22   -4.86   -5.26   -5.29   -4.87   -3.97   -2.63   -0.91    1.14    3.56    6.47    9.98
+   260.0    0.00   -0.16   -0.55   -1.13   -1.85   -2.64   -3.44   -4.20   -4.84   -5.25   -5.31   -4.91   -4.03   -2.68   -0.95    1.12    3.54    6.41    9.87
+   265.0    0.00   -0.16   -0.55   -1.14   -1.85   -2.64   -3.43   -4.19   -4.83   -5.25   -5.33   -4.96   -4.09   -2.75   -1.01    1.07    3.48    6.31    9.74
+   270.0    0.00   -0.16   -0.56   -1.14   -1.86   -2.63   -3.43   -4.18   -4.82   -5.25   -5.34   -5.00   -4.15   -2.82   -1.08    0.98    3.37    6.18    9.61
+   275.0    0.00   -0.16   -0.56   -1.14   -1.86   -2.63   -3.42   -4.16   -4.80   -5.24   -5.36   -5.03   -4.20   -2.89   -1.17    0.87    3.23    6.03    9.50
+   280.0    0.00   -0.16   -0.56   -1.15   -1.86   -2.63   -3.41   -4.15   -4.79   -5.24   -5.36   -5.05   -4.24   -2.95   -1.26    0.75    3.08    5.88    9.41
+   285.0    0.00   -0.16   -0.56   -1.14   -1.85   -2.62   -3.40   -4.14   -4.79   -5.23   -5.36   -5.06   -4.27   -3.00   -1.35    0.62    2.92    5.73    9.36
+   290.0    0.00   -0.16   -0.56   -1.14   -1.85   -2.61   -3.39   -4.13   -4.78   -5.23   -5.36   -5.06   -4.28   -3.04   -1.42    0.50    2.77    5.60    9.35
+   295.0    0.00   -0.16   -0.55   -1.14   -1.84   -2.60   -3.38   -4.12   -4.77   -5.22   -5.35   -5.05   -4.27   -3.05   -1.48    0.39    2.64    5.51    9.38
+   300.0    0.00   -0.15   -0.55   -1.13   -1.83   -2.59   -3.37   -4.12   -4.77   -5.21   -5.33   -5.02   -4.25   -3.06   -1.53    0.30    2.53    5.45    9.45
+   305.0    0.00   -0.15   -0.55   -1.12   -1.82   -2.57   -3.35   -4.11   -4.76   -5.20   -5.31   -4.99   -4.22   -3.04   -1.55    0.24    2.46    5.42    9.53
+   310.0    0.00   -0.15   -0.54   -1.11   -1.80   -2.56   -3.34   -4.10   -4.76   -5.20   -5.29   -4.96   -4.18   -3.02   -1.56    0.20    2.41    5.42    9.63
+   315.0    0.00   -0.15   -0.54   -1.10   -1.79   -2.54   -3.33   -4.09   -4.75   -5.19   -5.28   -4.93   -4.14   -2.99   -1.55    0.18    2.40    5.45    9.72
+   320.0    0.00   -0.15   -0.53   -1.09   -1.77   -2.52   -3.31   -4.08   -4.75   -5.18   -5.26   -4.90   -4.11   -2.96   -1.54    0.18    2.40    5.50    9.80
+   325.0    0.00   -0.14   -0.53   -1.08   -1.76   -2.51   -3.30   -4.07   -4.74   -5.18   -5.25   -4.88   -4.08   -2.94   -1.53    0.18    2.42    5.54    9.84
+   330.0    0.00   -0.14   -0.52   -1.07   -1.74   -2.49   -3.28   -4.07   -4.74   -5.18   -5.24   -4.86   -4.06   -2.92   -1.52    0.19    2.45    5.59    9.85
+   335.0    0.00   -0.14   -0.51   -1.06   -1.73   -2.48   -3.27   -4.06   -4.74   -5.17   -5.24   -4.86   -4.05   -2.92   -1.52    0.20    2.47    5.62    9.83
+   340.0    0.00   -0.14   -0.51   -1.05   -1.72   -2.46   -3.26   -4.05   -4.74   -5.17   -5.24   -4.86   -4.06   -2.92   -1.52    0.21    2.49    5.63    9.76
+   345.0    0.00   -0.13   -0.50   -1.04   -1.71   -2.46   -3.25   -4.05   -4.73   -5.17   -5.24   -4.86   -4.07   -2.93   -1.53    0.20    2.49    5.62    9.67
+   350.0    0.00   -0.13   -0.49   -1.03   -1.70   -2.45   -3.25   -4.04   -4.73   -5.17   -5.24   -4.87   -4.08   -2.95   -1.55    0.19    2.48    5.59    9.55
+   355.0    0.00   -0.13   -0.49   -1.03   -1.69   -2.44   -3.24   -4.04   -4.73   -5.17   -5.25   -4.88   -4.10   -2.98   -1.57    0.17    2.46    5.55    9.43
+   360.0    0.00   -0.12   -0.48   -1.02   -1.69   -2.44   -3.24   -4.04   -4.72   -5.17   -5.25   -4.89   -4.12   -3.00   -1.59    0.15    2.44    5.50    9.31
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH701945G_M    SCIS                                        TYPE / SERIAL NO    
+FIELD               NGS                      0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.48      0.13     89.65                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.43   -1.40   -2.73   -4.12   -5.92   -7.36   -8.69   -9.47   -9.81   -9.66   -8.79   -7.63   -5.85   -3.38   -0.41    3.37
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.58      0.01    119.25                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.43   -1.01   -1.78   -2.59   -3.38   -4.19   -4.97   -5.71   -6.21   -6.25   -5.86   -5.13   -3.83   -2.23   -0.21    2.45
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH701945G_M    SCIT                                        TYPE / SERIAL NO    
+FIELD               NGS                      0    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.68     -0.27     89.25                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.53   -1.50   -2.83   -4.22   -5.82   -7.16   -8.29   -9.07   -9.31   -9.16   -8.39   -7.13   -5.45   -3.28   -0.41    3.07
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.18     -0.39    117.85                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.23   -0.61   -1.18   -1.89   -2.58   -3.39   -4.27   -4.91   -5.31   -5.45   -5.06   -4.23   -2.83   -1.13    1.19    4.15
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH701945G_M    SNOW                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH              14    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+Number of Calibrated Antennas GPS:      014                 COMMENT             
+Number of Individual Calibrations GPS:  028                 COMMENT             
+   G01                                                      START OF FREQUENCY  
+      1.25     -0.33     91.49                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.22   -0.88   -1.90   -3.21   -4.68   -6.18   -7.56   -8.63   -9.22   -9.18   -8.43   -6.97   -4.87   -2.23    0.91    4.56    8.76   13.47
+     0.0    0.00   -0.21   -0.89   -1.97   -3.37   -4.93   -6.48   -7.84   -8.84   -9.34   -9.25   -8.51   -7.12   -5.10   -2.45    0.81    4.67    9.00   13.49
+     5.0    0.00   -0.21   -0.88   -1.96   -3.35   -4.91   -6.46   -7.82   -8.82   -9.32   -9.22   -8.47   -7.07   -5.03   -2.38    0.88    4.74    9.09   13.65
+    10.0    0.00   -0.21   -0.88   -1.95   -3.34   -4.89   -6.44   -7.80   -8.81   -9.31   -9.20   -8.43   -7.01   -4.95   -2.30    0.95    4.79    9.16   13.83
+    15.0    0.00   -0.21   -0.87   -1.94   -3.32   -4.86   -6.41   -7.78   -8.79   -9.30   -9.19   -8.40   -6.96   -4.88   -2.22    1.01    4.83    9.21   14.00
+    20.0    0.00   -0.21   -0.87   -1.93   -3.30   -4.84   -6.38   -7.75   -8.78   -9.29   -9.18   -8.38   -6.91   -4.81   -2.15    1.07    4.87    9.27   14.18
+    25.0    0.00   -0.21   -0.86   -1.92   -3.28   -4.81   -6.35   -7.73   -8.76   -9.29   -9.17   -8.37   -6.87   -4.75   -2.07    1.14    4.92    9.34   14.34
+    30.0    0.00   -0.21   -0.86   -1.91   -3.25   -4.77   -6.31   -7.70   -8.75   -9.28   -9.18   -8.36   -6.84   -4.68   -1.98    1.24    5.01    9.41   14.48
+    35.0    0.00   -0.21   -0.86   -1.89   -3.23   -4.74   -6.28   -7.66   -8.72   -9.28   -9.18   -8.36   -6.81   -4.62   -1.89    1.35    5.11    9.51   14.61
+    40.0    0.00   -0.21   -0.85   -1.88   -3.21   -4.71   -6.24   -7.62   -8.69   -9.26   -9.18   -8.36   -6.80   -4.57   -1.79    1.48    5.25    9.62   14.70
+    45.0    0.00   -0.21   -0.85   -1.87   -3.19   -4.68   -6.19   -7.58   -8.66   -9.24   -9.18   -8.36   -6.78   -4.52   -1.69    1.62    5.39    9.73   14.76
+    50.0    0.00   -0.21   -0.85   -1.87   -3.17   -4.64   -6.15   -7.53   -8.61   -9.21   -9.16   -8.36   -6.77   -4.47   -1.59    1.76    5.54    9.84   14.79
+    55.0    0.00   -0.21   -0.85   -1.86   -3.15   -4.61   -6.10   -7.48   -8.56   -9.17   -9.14   -8.34   -6.75   -4.43   -1.51    1.87    5.67    9.94   14.78
+    60.0    0.00   -0.21   -0.85   -1.86   -3.14   -4.59   -6.06   -7.42   -8.50   -9.12   -9.10   -8.33   -6.74   -4.41   -1.46    1.96    5.76    9.99   14.75
+    65.0    0.00   -0.21   -0.85   -1.85   -3.13   -4.57   -6.03   -7.37   -8.44   -9.06   -9.06   -8.30   -6.73   -4.39   -1.43    2.00    5.81   10.01   14.69
+    70.0    0.00   -0.21   -0.85   -1.85   -3.13   -4.55   -6.00   -7.33   -8.39   -9.01   -9.01   -8.27   -6.72   -4.40   -1.45    1.98    5.79    9.97   14.60
+    75.0    0.00   -0.22   -0.85   -1.86   -3.13   -4.54   -5.97   -7.29   -8.34   -8.96   -8.97   -8.25   -6.72   -4.43   -1.50    1.91    5.70    9.86   14.47
+    80.0    0.00   -0.22   -0.86   -1.86   -3.13   -4.54   -5.96   -7.27   -8.31   -8.92   -8.94   -8.23   -6.73   -4.48   -1.60    1.78    5.54    9.71   14.33
+    85.0    0.00   -0.22   -0.86   -1.87   -3.14   -4.54   -5.96   -7.26   -8.29   -8.90   -8.92   -8.23   -6.76   -4.56   -1.73    1.60    5.34    9.50   14.15
+    90.0    0.00   -0.22   -0.87   -1.88   -3.15   -4.56   -5.98   -7.27   -8.30   -8.91   -8.93   -8.25   -6.81   -4.65   -1.88    1.39    5.09    9.25   13.95
+    95.0    0.00   -0.23   -0.88   -1.89   -3.16   -4.58   -6.00   -7.30   -8.33   -8.93   -8.96   -8.29   -6.87   -4.76   -2.04    1.16    4.83    8.99   13.73
+   100.0    0.00   -0.23   -0.88   -1.90   -3.18   -4.60   -6.03   -7.34   -8.38   -8.99   -9.01   -8.35   -6.95   -4.87   -2.21    0.94    4.56    8.72   13.50
+   105.0    0.00   -0.23   -0.89   -1.91   -3.20   -4.63   -6.08   -7.40   -8.45   -9.06   -9.09   -8.43   -7.05   -4.99   -2.37    0.74    4.32    8.48   13.26
+   110.0    0.00   -0.23   -0.90   -1.92   -3.22   -4.66   -6.12   -7.46   -8.52   -9.14   -9.18   -8.52   -7.14   -5.10   -2.51    0.56    4.12    8.26   13.05
+   115.0    0.00   -0.24   -0.90   -1.94   -3.24   -4.69   -6.17   -7.53   -8.60   -9.24   -9.27   -8.61   -7.23   -5.20   -2.62    0.43    3.97    8.09   12.86
+   120.0    0.00   -0.24   -0.91   -1.95   -3.25   -4.72   -6.21   -7.59   -8.68   -9.33   -9.36   -8.69   -7.31   -5.28   -2.71    0.33    3.86    7.98   12.71
+   125.0    0.00   -0.24   -0.92   -1.96   -3.27   -4.74   -6.25   -7.64   -8.75   -9.40   -9.44   -8.76   -7.37   -5.34   -2.77    0.27    3.80    7.92   12.62
+   130.0    0.00   -0.25   -0.92   -1.96   -3.28   -4.77   -6.29   -7.69   -8.81   -9.46   -9.49   -8.81   -7.41   -5.37   -2.80    0.25    3.79    7.91   12.59
+   135.0    0.00   -0.25   -0.92   -1.97   -3.29   -4.78   -6.31   -7.72   -8.85   -9.50   -9.53   -8.84   -7.43   -5.39   -2.81    0.25    3.81    7.94   12.62
+   140.0    0.00   -0.25   -0.93   -1.97   -3.30   -4.79   -6.32   -7.74   -8.87   -9.52   -9.53   -8.84   -7.43   -5.38   -2.80    0.26    3.85    8.01   12.71
+   145.0    0.00   -0.25   -0.93   -1.98   -3.30   -4.79   -6.33   -7.75   -8.87   -9.51   -9.52   -8.82   -7.40   -5.36   -2.79    0.29    3.90    8.10   12.84
+   150.0    0.00   -0.25   -0.93   -1.98   -3.30   -4.79   -6.32   -7.74   -8.85   -9.49   -9.49   -8.78   -7.37   -5.34   -2.77    0.31    3.95    8.20   12.99
+   155.0    0.00   -0.25   -0.93   -1.98   -3.30   -4.78   -6.31   -7.72   -8.83   -9.45   -9.44   -8.73   -7.33   -5.31   -2.74    0.34    4.00    8.30   13.16
+   160.0    0.00   -0.25   -0.93   -1.98   -3.29   -4.77   -6.30   -7.70   -8.80   -9.41   -9.40   -8.69   -7.29   -5.28   -2.72    0.36    4.04    8.39   13.30
+   165.0    0.00   -0.25   -0.93   -1.97   -3.28   -4.76   -6.27   -7.67   -8.76   -9.37   -9.36   -8.65   -7.25   -5.25   -2.70    0.39    4.09    8.46   13.43
+   170.0    0.00   -0.25   -0.93   -1.97   -3.27   -4.74   -6.25   -7.64   -8.73   -9.34   -9.32   -8.62   -7.23   -5.22   -2.67    0.43    4.13    8.51   13.51
+   175.0    0.00   -0.25   -0.93   -1.96   -3.26   -4.72   -6.23   -7.61   -8.70   -9.31   -9.30   -8.60   -7.21   -5.19   -2.63    0.48    4.18    8.55   13.55
+   180.0    0.00   -0.25   -0.93   -1.95   -3.25   -4.71   -6.20   -7.58   -8.67   -9.29   -9.29   -8.59   -7.19   -5.16   -2.58    0.54    4.23    8.58   13.56
+   185.0    0.00   -0.25   -0.92   -1.95   -3.23   -4.68   -6.18   -7.56   -8.65   -9.28   -9.28   -8.58   -7.18   -5.13   -2.52    0.61    4.30    8.61   13.53
+   190.0    0.00   -0.25   -0.92   -1.94   -3.22   -4.66   -6.15   -7.53   -8.63   -9.26   -9.28   -8.58   -7.16   -5.08   -2.44    0.70    4.38    8.64   13.50
+   195.0    0.00   -0.25   -0.91   -1.93   -3.20   -4.64   -6.12   -7.50   -8.60   -9.25   -9.27   -8.57   -7.13   -5.03   -2.36    0.81    4.47    8.68   13.48
+   200.0    0.00   -0.25   -0.91   -1.92   -3.19   -4.62   -6.09   -7.47   -8.58   -9.22   -9.25   -8.54   -7.09   -4.96   -2.26    0.91    4.56    8.74   13.49
+   205.0    0.00   -0.24   -0.90   -1.91   -3.17   -4.59   -6.06   -7.44   -8.54   -9.19   -9.21   -8.50   -7.04   -4.89   -2.17    1.02    4.67    8.82   13.54
+   210.0    0.00   -0.24   -0.90   -1.89   -3.15   -4.57   -6.03   -7.40   -8.50   -9.14   -9.16   -8.44   -6.96   -4.80   -2.07    1.13    4.77    8.92   13.63
+   215.0    0.00   -0.24   -0.89   -1.88   -3.13   -4.54   -6.00   -7.35   -8.45   -9.08   -9.09   -8.36   -6.88   -4.71   -1.98    1.22    4.87    9.03   13.76
+   220.0    0.00   -0.24   -0.88   -1.87   -3.11   -4.52   -5.96   -7.31   -8.39   -9.01   -9.01   -8.27   -6.79   -4.62   -1.90    1.30    4.96    9.16   13.93
+   225.0    0.00   -0.23   -0.88   -1.86   -3.09   -4.49   -5.93   -7.27   -8.33   -8.94   -8.93   -8.18   -6.69   -4.54   -1.83    1.36    5.05    9.29   14.12
+   230.0    0.00   -0.23   -0.87   -1.84   -3.08   -4.46   -5.90   -7.23   -8.28   -8.88   -8.85   -8.09   -6.61   -4.47   -1.77    1.42    5.12    9.41   14.30
+   235.0    0.00   -0.23   -0.86   -1.83   -3.06   -4.44   -5.87   -7.19   -8.24   -8.82   -8.78   -8.02   -6.53   -4.41   -1.73    1.46    5.18    9.51   14.44
+   240.0    0.00   -0.23   -0.86   -1.82   -3.04   -4.43   -5.85   -7.17   -8.21   -8.78   -8.73   -7.96   -6.48   -4.36   -1.70    1.49    5.23    9.59   14.52
+   245.0    0.00   -0.22   -0.85   -1.81   -3.03   -4.41   -5.83   -7.15   -8.19   -8.76   -8.70   -7.93   -6.45   -4.34   -1.68    1.51    5.26    9.63   14.53
+   250.0    0.00   -0.22   -0.84   -1.81   -3.02   -4.40   -5.83   -7.16   -8.20   -8.77   -8.71   -7.93   -6.45   -4.33   -1.67    1.52    5.26    9.62   14.46
+   255.0    0.00   -0.22   -0.84   -1.80   -3.02   -4.40   -5.84   -7.17   -8.22   -8.80   -8.74   -7.96   -6.46   -4.34   -1.67    1.51    5.25    9.55   14.30
+   260.0    0.00   -0.22   -0.84   -1.80   -3.02   -4.41   -5.85   -7.20   -8.27   -8.85   -8.79   -8.01   -6.50   -4.36   -1.68    1.49    5.20    9.44   14.06
+   265.0    0.00   -0.22   -0.84   -1.80   -3.03   -4.43   -5.88   -7.25   -8.33   -8.92   -8.87   -8.07   -6.55   -4.40   -1.71    1.45    5.11    9.27   13.76
+   270.0    0.00   -0.21   -0.84   -1.80   -3.04   -4.45   -5.92   -7.30   -8.40   -9.00   -8.95   -8.15   -6.62   -4.45   -1.76    1.38    4.99    9.06   13.43
+   275.0    0.00   -0.21   -0.84   -1.81   -3.05   -4.48   -5.97   -7.37   -8.48   -9.09   -9.04   -8.23   -6.68   -4.51   -1.83    1.28    4.83    8.82   13.10
+   280.0    0.00   -0.21   -0.84   -1.82   -3.07   -4.51   -6.02   -7.43   -8.56   -9.18   -9.12   -8.31   -6.75   -4.57   -1.91    1.16    4.64    8.56   12.79
+   285.0    0.00   -0.21   -0.84   -1.83   -3.10   -4.56   -6.08   -7.51   -8.64   -9.26   -9.20   -8.37   -6.81   -4.65   -2.01    1.00    4.43    8.30   12.52
+   290.0    0.00   -0.21   -0.84   -1.84   -3.13   -4.60   -6.14   -7.58   -8.71   -9.33   -9.26   -8.43   -6.88   -4.73   -2.13    0.83    4.20    8.05   12.31
+   295.0    0.00   -0.21   -0.85   -1.86   -3.16   -4.65   -6.20   -7.65   -8.78   -9.39   -9.31   -8.48   -6.93   -4.81   -2.26    0.65    3.99    7.84   12.18
+   300.0    0.00   -0.21   -0.85   -1.87   -3.19   -4.70   -6.26   -7.71   -8.83   -9.43   -9.34   -8.51   -6.98   -4.90   -2.39    0.48    3.79    7.67   12.11
+   305.0    0.00   -0.21   -0.86   -1.89   -3.22   -4.75   -6.32   -7.76   -8.88   -9.46   -9.37   -8.54   -7.03   -4.99   -2.52    0.33    3.64    7.57   12.12
+   310.0    0.00   -0.21   -0.87   -1.91   -3.26   -4.79   -6.37   -7.81   -8.91   -9.48   -9.38   -8.56   -7.08   -5.07   -2.63    0.20    3.54    7.53   12.17
+   315.0    0.00   -0.21   -0.87   -1.93   -3.29   -4.84   -6.42   -7.85   -8.93   -9.49   -9.38   -8.58   -7.13   -5.14   -2.73    0.12    3.50    7.55   12.27
+   320.0    0.00   -0.21   -0.88   -1.94   -3.31   -4.87   -6.45   -7.88   -8.95   -9.49   -9.38   -8.59   -7.17   -5.21   -2.79    0.09    3.53    7.64   12.39
+   325.0    0.00   -0.21   -0.88   -1.95   -3.34   -4.90   -6.48   -7.89   -8.95   -9.48   -9.38   -8.60   -7.20   -5.26   -2.83    0.10    3.61    7.78   12.53
+   330.0    0.00   -0.21   -0.88   -1.96   -3.36   -4.93   -6.50   -7.90   -8.94   -9.47   -9.37   -8.61   -7.23   -5.29   -2.83    0.16    3.74    7.96   12.66
+   335.0    0.00   -0.21   -0.89   -1.97   -3.37   -4.94   -6.52   -7.91   -8.93   -9.45   -9.36   -8.61   -7.25   -5.30   -2.81    0.25    3.91    8.16   12.80
+   340.0    0.00   -0.21   -0.89   -1.98   -3.38   -4.95   -6.52   -7.90   -8.92   -9.43   -9.34   -8.61   -7.25   -5.29   -2.76    0.36    4.09    8.37   12.93
+   345.0    0.00   -0.21   -0.89   -1.98   -3.38   -4.96   -6.52   -7.89   -8.90   -9.41   -9.32   -8.60   -7.24   -5.26   -2.69    0.49    4.27    8.56   13.06
+   350.0    0.00   -0.21   -0.89   -1.98   -3.38   -4.95   -6.51   -7.88   -8.88   -9.39   -9.30   -8.57   -7.21   -5.22   -2.62    0.61    4.43    8.74   13.20
+   355.0    0.00   -0.21   -0.89   -1.98   -3.38   -4.94   -6.50   -7.86   -8.86   -9.36   -9.27   -8.54   -7.17   -5.16   -2.53    0.72    4.56    8.88   13.34
+   360.0    0.00   -0.21   -0.89   -1.97   -3.37   -4.93   -6.48   -7.84   -8.84   -9.34   -9.25   -8.51   -7.12   -5.10   -2.45    0.81    4.67    9.00   13.49
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.19      0.06    120.15                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.12   -0.48   -1.00   -1.63   -2.33   -3.06   -3.80   -4.51   -5.11   -5.47   -5.46   -4.96   -3.92   -2.32   -0.15    2.61    5.99    9.92
+     0.0    0.00   -0.12   -0.45   -0.94   -1.53   -2.20   -2.93   -3.73   -4.52   -5.19   -5.57   -5.52   -4.98   -3.93   -2.41   -0.41    2.23    5.73   10.21
+     5.0    0.00   -0.12   -0.45   -0.94   -1.54   -2.22   -2.96   -3.76   -4.55   -5.21   -5.61   -5.58   -5.06   -4.02   -2.49   -0.44    2.26    5.78   10.17
+    10.0    0.00   -0.12   -0.45   -0.95   -1.56   -2.24   -2.99   -3.78   -4.57   -5.23   -5.63   -5.63   -5.14   -4.11   -2.56   -0.45    2.31    5.84   10.12
+    15.0    0.00   -0.12   -0.45   -0.96   -1.57   -2.26   -3.01   -3.81   -4.58   -5.25   -5.66   -5.67   -5.20   -4.18   -2.61   -0.44    2.38    5.92   10.07
+    20.0    0.00   -0.12   -0.46   -0.96   -1.58   -2.28   -3.04   -3.82   -4.59   -5.25   -5.67   -5.70   -5.25   -4.24   -2.63   -0.40    2.48    6.01   10.03
+    25.0    0.00   -0.12   -0.46   -0.97   -1.60   -2.30   -3.06   -3.84   -4.60   -5.25   -5.67   -5.72   -5.28   -4.26   -2.62   -0.33    2.60    6.13   10.01
+    30.0    0.00   -0.12   -0.46   -0.97   -1.61   -2.32   -3.07   -3.85   -4.60   -5.24   -5.66   -5.72   -5.29   -4.26   -2.59   -0.25    2.74    6.26   10.03
+    35.0    0.00   -0.12   -0.46   -0.98   -1.62   -2.33   -3.08   -3.85   -4.59   -5.23   -5.65   -5.71   -5.27   -4.24   -2.53   -0.14    2.89    6.40   10.07
+    40.0    0.00   -0.12   -0.46   -0.98   -1.63   -2.34   -3.09   -3.86   -4.59   -5.22   -5.63   -5.68   -5.25   -4.20   -2.46   -0.03    3.03    6.54   10.14
+    45.0    0.00   -0.12   -0.46   -0.99   -1.63   -2.35   -3.10   -3.86   -4.58   -5.20   -5.60   -5.65   -5.21   -4.14   -2.39    0.08    3.16    6.68   10.24
+    50.0    0.00   -0.12   -0.47   -0.99   -1.64   -2.36   -3.11   -3.87   -4.58   -5.19   -5.58   -5.62   -5.16   -4.08   -2.31    0.17    3.27    6.79   10.35
+    55.0    0.00   -0.12   -0.47   -0.99   -1.64   -2.36   -3.12   -3.87   -4.58   -5.18   -5.56   -5.58   -5.11   -4.03   -2.25    0.24    3.35    6.88   10.47
+    60.0    0.00   -0.12   -0.47   -1.00   -1.65   -2.37   -3.13   -3.88   -4.59   -5.18   -5.54   -5.56   -5.07   -3.98   -2.20    0.28    3.38    6.93   10.57
+    65.0    0.00   -0.12   -0.47   -1.00   -1.66   -2.38   -3.14   -3.89   -4.60   -5.18   -5.54   -5.54   -5.04   -3.94   -2.17    0.29    3.38    6.94   10.64
+    70.0    0.00   -0.13   -0.48   -1.01   -1.66   -2.39   -3.15   -3.91   -4.62   -5.20   -5.54   -5.52   -5.02   -3.92   -2.16    0.27    3.34    6.90   10.67
+    75.0    0.00   -0.13   -0.48   -1.01   -1.67   -2.40   -3.17   -3.93   -4.64   -5.22   -5.55   -5.52   -5.01   -3.91   -2.18    0.23    3.27    6.83   10.65
+    80.0    0.00   -0.13   -0.48   -1.02   -1.68   -2.42   -3.19   -3.96   -4.67   -5.24   -5.56   -5.52   -5.00   -3.91   -2.20    0.17    3.17    6.72   10.59
+    85.0    0.00   -0.13   -0.49   -1.03   -1.69   -2.43   -3.21   -3.98   -4.69   -5.26   -5.58   -5.53   -5.00   -3.92   -2.22    0.11    3.07    6.60   10.48
+    90.0    0.00   -0.13   -0.49   -1.03   -1.70   -2.45   -3.23   -4.00   -4.72   -5.29   -5.60   -5.54   -5.00   -3.92   -2.25    0.05    2.97    6.46   10.34
+    95.0    0.00   -0.13   -0.49   -1.04   -1.71   -2.46   -3.24   -4.02   -4.74   -5.30   -5.61   -5.54   -5.00   -3.92   -2.26    0.01    2.88    6.33   10.19
+   100.0    0.00   -0.13   -0.50   -1.05   -1.72   -2.47   -3.25   -4.03   -4.75   -5.31   -5.61   -5.53   -4.98   -3.90   -2.25   -0.02    2.82    6.22   10.04
+   105.0    0.00   -0.13   -0.50   -1.05   -1.73   -2.48   -3.26   -4.04   -4.75   -5.31   -5.61   -5.52   -4.97   -3.88   -2.23   -0.01    2.79    6.15    9.91
+   110.0    0.00   -0.13   -0.50   -1.06   -1.74   -2.49   -3.26   -4.04   -4.74   -5.30   -5.60   -5.51   -4.94   -3.84   -2.20    0.01    2.79    6.11    9.83
+   115.0    0.00   -0.13   -0.51   -1.07   -1.75   -2.49   -3.26   -4.02   -4.73   -5.28   -5.58   -5.48   -4.91   -3.80   -2.15    0.06    2.81    6.10    9.79
+   120.0    0.00   -0.13   -0.51   -1.07   -1.75   -2.49   -3.25   -4.01   -4.70   -5.26   -5.55   -5.46   -4.87   -3.76   -2.09    0.11    2.86    6.13    9.81
+   125.0    0.00   -0.14   -0.51   -1.07   -1.75   -2.48   -3.24   -3.98   -4.68   -5.23   -5.53   -5.43   -4.85   -3.72   -2.04    0.17    2.92    6.19    9.87
+   130.0    0.00   -0.14   -0.51   -1.08   -1.75   -2.48   -3.22   -3.96   -4.65   -5.20   -5.51   -5.42   -4.83   -3.69   -2.00    0.23    2.98    6.26    9.96
+   135.0    0.00   -0.14   -0.51   -1.08   -1.75   -2.47   -3.20   -3.93   -4.62   -5.18   -5.49   -5.41   -4.83   -3.68   -1.98    0.26    3.03    6.33   10.08
+   140.0    0.00   -0.14   -0.51   -1.07   -1.74   -2.45   -3.18   -3.90   -4.59   -5.16   -5.49   -5.42   -4.84   -3.69   -1.98    0.27    3.05    6.39   10.20
+   145.0    0.00   -0.14   -0.51   -1.07   -1.74   -2.44   -3.16   -3.88   -4.57   -5.15   -5.49   -5.44   -4.87   -3.73   -2.01    0.25    3.05    6.42   10.30
+   150.0    0.00   -0.13   -0.51   -1.07   -1.73   -2.43   -3.14   -3.86   -4.56   -5.15   -5.51   -5.48   -4.92   -3.79   -2.07    0.19    3.01    6.41   10.36
+   155.0    0.00   -0.13   -0.51   -1.06   -1.72   -2.42   -3.13   -3.85   -4.56   -5.16   -5.54   -5.52   -4.98   -3.86   -2.15    0.11    2.94    6.37   10.37
+   160.0    0.00   -0.13   -0.50   -1.06   -1.71   -2.41   -3.12   -3.85   -4.56   -5.18   -5.57   -5.57   -5.05   -3.94   -2.25    0.01    2.84    6.30   10.34
+   165.0    0.00   -0.13   -0.50   -1.05   -1.70   -2.40   -3.11   -3.85   -4.57   -5.20   -5.61   -5.62   -5.12   -4.03   -2.36   -0.11    2.73    6.20   10.27
+   170.0    0.00   -0.13   -0.50   -1.04   -1.69   -2.39   -3.11   -3.85   -4.58   -5.22   -5.64   -5.67   -5.18   -4.12   -2.46   -0.23    2.60    6.08   10.17
+   175.0    0.00   -0.13   -0.49   -1.03   -1.68   -2.38   -3.11   -3.86   -4.59   -5.24   -5.66   -5.70   -5.23   -4.19   -2.55   -0.34    2.49    5.97   10.05
+   180.0    0.00   -0.13   -0.49   -1.02   -1.67   -2.37   -3.11   -3.86   -4.61   -5.25   -5.67   -5.72   -5.26   -4.24   -2.63   -0.43    2.39    5.86    9.94
+   185.0    0.00   -0.13   -0.48   -1.02   -1.66   -2.37   -3.11   -3.87   -4.62   -5.26   -5.68   -5.72   -5.27   -4.26   -2.68   -0.50    2.31    5.79    9.86
+   190.0    0.00   -0.12   -0.48   -1.01   -1.65   -2.36   -3.11   -3.88   -4.62   -5.26   -5.66   -5.70   -5.25   -4.26   -2.70   -0.53    2.27    5.75    9.81
+   195.0    0.00   -0.12   -0.47   -1.00   -1.64   -2.36   -3.11   -3.88   -4.62   -5.25   -5.64   -5.66   -5.22   -4.24   -2.69   -0.54    2.27    5.75    9.82
+   200.0    0.00   -0.12   -0.47   -0.99   -1.64   -2.36   -3.12   -3.89   -4.62   -5.23   -5.60   -5.61   -5.16   -4.19   -2.65   -0.51    2.30    5.80    9.88
+   205.0    0.00   -0.12   -0.46   -0.98   -1.63   -2.35   -3.11   -3.89   -4.61   -5.21   -5.56   -5.55   -5.10   -4.12   -2.59   -0.45    2.36    5.88    9.97
+   210.0    0.00   -0.12   -0.46   -0.98   -1.62   -2.35   -3.11   -3.88   -4.60   -5.18   -5.52   -5.49   -5.02   -4.05   -2.52   -0.38    2.44    5.98   10.10
+   215.0    0.00   -0.12   -0.46   -0.97   -1.62   -2.34   -3.11   -3.88   -4.59   -5.15   -5.47   -5.43   -4.95   -3.97   -2.43   -0.29    2.54    6.09   10.23
+   220.0    0.00   -0.12   -0.46   -0.97   -1.61   -2.34   -3.10   -3.87   -4.57   -5.13   -5.43   -5.38   -4.88   -3.89   -2.35   -0.20    2.64    6.19   10.35
+   225.0    0.00   -0.12   -0.45   -0.97   -1.61   -2.33   -3.10   -3.86   -4.56   -5.10   -5.40   -5.33   -4.83   -3.82   -2.27   -0.11    2.73    6.28   10.43
+   230.0    0.00   -0.12   -0.45   -0.97   -1.61   -2.33   -3.09   -3.85   -4.54   -5.08   -5.37   -5.30   -4.79   -3.77   -2.20   -0.03    2.80    6.33   10.46
+   235.0    0.00   -0.12   -0.45   -0.97   -1.61   -2.33   -3.08   -3.83   -4.52   -5.06   -5.35   -5.28   -4.76   -3.74   -2.16    0.02    2.84    6.34   10.43
+   240.0    0.00   -0.12   -0.45   -0.97   -1.61   -2.32   -3.07   -3.82   -4.50   -5.04   -5.33   -5.27   -4.75   -3.72   -2.13    0.05    2.86    6.31   10.33
+   245.0    0.00   -0.12   -0.46   -0.97   -1.61   -2.32   -3.06   -3.80   -4.47   -5.02   -5.32   -5.26   -4.75   -3.72   -2.13    0.05    2.84    6.23   10.17
+   250.0    0.00   -0.12   -0.46   -0.98   -1.61   -2.32   -3.05   -3.78   -4.45   -4.99   -5.31   -5.27   -4.77   -3.74   -2.15    0.03    2.78    6.12    9.96
+   255.0    0.00   -0.12   -0.46   -0.98   -1.61   -2.31   -3.03   -3.75   -4.42   -4.97   -5.29   -5.27   -4.79   -3.77   -2.18   -0.02    2.71    5.97    9.71
+   260.0    0.00   -0.12   -0.46   -0.98   -1.61   -2.31   -3.02   -3.73   -4.39   -4.94   -5.28   -5.28   -4.82   -3.81   -2.24   -0.09    2.61    5.81    9.45
+   265.0    0.00   -0.12   -0.46   -0.98   -1.61   -2.30   -3.00   -3.70   -4.36   -4.91   -5.27   -5.28   -4.84   -3.86   -2.30   -0.17    2.50    5.65    9.20
+   270.0    0.00   -0.12   -0.47   -0.99   -1.61   -2.29   -2.98   -3.67   -4.32   -4.88   -5.25   -5.29   -4.87   -3.91   -2.36   -0.25    2.39    5.49    8.98
+   275.0    0.00   -0.12   -0.47   -0.99   -1.61   -2.28   -2.96   -3.64   -4.29   -4.85   -5.23   -5.29   -4.89   -3.95   -2.42   -0.33    2.28    5.36    8.81
+   280.0    0.00   -0.12   -0.47   -0.99   -1.61   -2.27   -2.94   -3.61   -4.26   -4.83   -5.21   -5.28   -4.90   -3.98   -2.47   -0.41    2.18    5.24    8.69
+   285.0    0.00   -0.12   -0.47   -0.99   -1.60   -2.25   -2.92   -3.59   -4.23   -4.81   -5.20   -5.27   -4.90   -3.99   -2.51   -0.47    2.10    5.16    8.63
+   290.0    0.00   -0.12   -0.47   -0.98   -1.59   -2.24   -2.90   -3.56   -4.22   -4.79   -5.19   -5.26   -4.89   -3.99   -2.52   -0.51    2.05    5.12    8.64
+   295.0    0.00   -0.12   -0.47   -0.98   -1.58   -2.22   -2.88   -3.55   -4.20   -4.79   -5.18   -5.25   -4.87   -3.97   -2.52   -0.52    2.02    5.10    8.70
+   300.0    0.00   -0.12   -0.47   -0.97   -1.57   -2.20   -2.86   -3.53   -4.20   -4.79   -5.18   -5.24   -4.85   -3.94   -2.49   -0.52    2.01    5.12    8.81
+   305.0    0.00   -0.12   -0.47   -0.97   -1.56   -2.19   -2.84   -3.53   -4.20   -4.80   -5.19   -5.23   -4.81   -3.89   -2.45   -0.49    2.02    5.16    8.96
+   310.0    0.00   -0.12   -0.47   -0.96   -1.54   -2.17   -2.83   -3.52   -4.21   -4.82   -5.20   -5.22   -4.78   -3.83   -2.39   -0.45    2.04    5.21    9.14
+   315.0    0.00   -0.12   -0.46   -0.96   -1.53   -2.16   -2.82   -3.53   -4.23   -4.85   -5.22   -5.22   -4.74   -3.77   -2.32   -0.40    2.07    5.28    9.33
+   320.0    0.00   -0.12   -0.46   -0.95   -1.52   -2.14   -2.82   -3.54   -4.26   -4.88   -5.25   -5.22   -4.71   -3.71   -2.26   -0.35    2.11    5.35    9.52
+   325.0    0.00   -0.12   -0.46   -0.94   -1.51   -2.14   -2.82   -3.55   -4.29   -4.92   -5.28   -5.23   -4.69   -3.67   -2.21   -0.31    2.15    5.41    9.70
+   330.0    0.00   -0.12   -0.46   -0.94   -1.50   -2.13   -2.82   -3.57   -4.32   -4.96   -5.32   -5.25   -4.68   -3.64   -2.17   -0.28    2.18    5.48    9.86
+   335.0    0.00   -0.12   -0.45   -0.93   -1.50   -2.13   -2.83   -3.59   -4.35   -5.00   -5.36   -5.28   -4.69   -3.63   -2.16   -0.27    2.20    5.53   10.00
+   340.0    0.00   -0.12   -0.45   -0.93   -1.50   -2.14   -2.84   -3.61   -4.39   -5.04   -5.40   -5.31   -4.72   -3.65   -2.17   -0.27    2.21    5.58   10.10
+   345.0    0.00   -0.12   -0.45   -0.93   -1.50   -2.14   -2.86   -3.64   -4.43   -5.08   -5.44   -5.36   -4.76   -3.69   -2.20   -0.29    2.22    5.62   10.18
+   350.0    0.00   -0.12   -0.45   -0.93   -1.51   -2.16   -2.88   -3.67   -4.46   -5.12   -5.49   -5.41   -4.82   -3.75   -2.26   -0.33    2.22    5.65   10.22
+   355.0    0.00   -0.12   -0.45   -0.93   -1.52   -2.18   -2.91   -3.70   -4.49   -5.16   -5.53   -5.47   -4.90   -3.84   -2.33   -0.37    2.22    5.69   10.23
+   360.0    0.00   -0.12   -0.45   -0.94   -1.53   -2.20   -2.93   -3.73   -4.52   -5.19   -5.57   -5.52   -4.98   -3.93   -2.41   -0.41    2.23    5.73   10.21
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH701946.2     NONE                                        TYPE / SERIAL NO    
+COPIED              Geo++ GmbH               2    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+COPIED FROM AOAD/M_T        NONE                            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.58     -0.37     91.85                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.23   -0.90   -1.93   -3.22   -4.62   -5.96   -7.09   -7.87   -8.21   -8.06   -7.39   -6.23   -4.55   -2.28    0.69    4.47    9.08   14.23
+     0.0    0.00   -0.27   -0.98   -2.07   -3.42   -4.87   -6.26   -7.43   -8.21   -8.53   -8.32   -7.62   -6.44   -4.77   -2.54    0.39    4.14    8.68   13.67
+     5.0    0.00   -0.27   -0.98   -2.06   -3.41   -4.86   -6.25   -7.41   -8.20   -8.52   -8.31   -7.60   -6.41   -4.74   -2.50    0.42    4.18    8.73   13.73
+    10.0    0.00   -0.26   -0.97   -2.05   -3.39   -4.84   -6.23   -7.40   -8.19   -8.50   -8.30   -7.58   -6.38   -4.70   -2.46    0.47    4.23    8.79   13.83
+    15.0    0.00   -0.26   -0.97   -2.05   -3.38   -4.82   -6.21   -7.37   -8.17   -8.49   -8.28   -7.56   -6.36   -4.66   -2.41    0.53    4.30    8.88   13.96
+    20.0    0.00   -0.26   -0.96   -2.03   -3.36   -4.80   -6.18   -7.35   -8.15   -8.47   -8.27   -7.54   -6.33   -4.62   -2.36    0.60    4.38    9.00   14.12
+    25.0    0.00   -0.26   -0.96   -2.02   -3.34   -4.77   -6.16   -7.32   -8.12   -8.44   -8.25   -7.53   -6.30   -4.58   -2.30    0.68    4.49    9.13   14.31
+    30.0    0.00   -0.26   -0.95   -2.01   -3.32   -4.75   -6.12   -7.28   -8.08   -8.42   -8.22   -7.51   -6.28   -4.54   -2.24    0.77    4.61    9.29   14.51
+    35.0    0.00   -0.25   -0.94   -2.00   -3.30   -4.72   -6.09   -7.25   -8.05   -8.38   -8.20   -7.48   -6.25   -4.50   -2.17    0.87    4.75    9.46   14.71
+    40.0    0.00   -0.25   -0.93   -1.98   -3.28   -4.69   -6.05   -7.21   -8.01   -8.35   -8.17   -7.46   -6.23   -4.46   -2.10    0.97    4.88    9.62   14.90
+    45.0    0.00   -0.25   -0.93   -1.97   -3.26   -4.66   -6.02   -7.16   -7.96   -8.30   -8.13   -7.43   -6.19   -4.42   -2.03    1.08    5.02    9.78   15.07
+    50.0    0.00   -0.24   -0.92   -1.95   -3.24   -4.63   -5.98   -7.12   -7.91   -8.26   -8.09   -7.39   -6.16   -4.37   -1.97    1.17    5.14    9.92   15.22
+    55.0    0.00   -0.24   -0.91   -1.94   -3.21   -4.60   -5.94   -7.07   -7.86   -8.20   -8.04   -7.35   -6.12   -4.33   -1.91    1.24    5.24   10.04   15.34
+    60.0    0.00   -0.24   -0.90   -1.92   -3.19   -4.57   -5.90   -7.02   -7.81   -8.15   -7.99   -7.30   -6.08   -4.29   -1.87    1.30    5.31   10.11   15.41
+    65.0    0.00   -0.23   -0.89   -1.91   -3.17   -4.54   -5.86   -6.97   -7.75   -8.09   -7.93   -7.25   -6.03   -4.25   -1.83    1.33    5.34   10.15   15.45
+    70.0    0.00   -0.23   -0.89   -1.90   -3.15   -4.51   -5.82   -6.93   -7.70   -8.03   -7.88   -7.20   -5.99   -4.22   -1.82    1.33    5.33   10.14   15.45
+    75.0    0.00   -0.23   -0.88   -1.88   -3.13   -4.49   -5.79   -6.89   -7.65   -7.98   -7.82   -7.15   -5.96   -4.21   -1.82    1.31    5.28   10.08   15.40
+    80.0    0.00   -0.23   -0.87   -1.87   -3.12   -4.46   -5.76   -6.85   -7.61   -7.94   -7.78   -7.11   -5.93   -4.20   -1.85    1.25    5.20    9.99   15.32
+    85.0    0.00   -0.22   -0.87   -1.86   -3.10   -4.44   -5.74   -6.83   -7.58   -7.91   -7.75   -7.09   -5.92   -4.21   -1.89    1.17    5.09    9.86   15.20
+    90.0    0.00   -0.22   -0.86   -1.86   -3.09   -4.43   -5.72   -6.81   -7.56   -7.89   -7.73   -7.08   -5.92   -4.24   -1.95    1.08    4.96    9.71   15.05
+    95.0    0.00   -0.22   -0.86   -1.85   -3.09   -4.42   -5.71   -6.80   -7.56   -7.89   -7.73   -7.09   -5.94   -4.28   -2.02    0.97    4.82    9.54   14.88
+   100.0    0.00   -0.22   -0.86   -1.85   -3.08   -4.42   -5.71   -6.80   -7.56   -7.90   -7.75   -7.11   -5.98   -4.34   -2.11    0.86    4.68    9.37   14.70
+   105.0    0.00   -0.22   -0.86   -1.85   -3.08   -4.42   -5.72   -6.81   -7.58   -7.92   -7.78   -7.16   -6.04   -4.41   -2.19    0.75    4.54    9.21   14.52
+   110.0    0.00   -0.21   -0.85   -1.85   -3.09   -4.43   -5.73   -6.83   -7.61   -7.96   -7.83   -7.21   -6.10   -4.49   -2.28    0.64    4.42    9.07   14.35
+   115.0    0.00   -0.21   -0.85   -1.85   -3.09   -4.44   -5.75   -6.86   -7.65   -8.01   -7.89   -7.28   -6.18   -4.57   -2.36    0.56    4.32    8.95   14.20
+   120.0    0.00   -0.21   -0.86   -1.86   -3.10   -4.46   -5.77   -6.90   -7.69   -8.06   -7.95   -7.35   -6.25   -4.64   -2.44    0.48    4.25    8.86   14.08
+   125.0    0.00   -0.21   -0.86   -1.86   -3.12   -4.48   -5.80   -6.93   -7.73   -8.11   -8.01   -7.42   -6.33   -4.72   -2.50    0.43    4.20    8.81   13.99
+   130.0    0.00   -0.21   -0.86   -1.87   -3.13   -4.50   -5.83   -6.97   -7.78   -8.16   -8.07   -7.48   -6.39   -4.78   -2.55    0.40    4.18    8.78   13.94
+   135.0    0.00   -0.21   -0.86   -1.88   -3.15   -4.53   -5.86   -7.01   -7.82   -8.21   -8.12   -7.54   -6.45   -4.83   -2.59    0.38    4.17    8.78   13.92
+   140.0    0.00   -0.21   -0.86   -1.89   -3.16   -4.55   -5.89   -7.04   -7.85   -8.24   -8.16   -7.58   -6.49   -4.87   -2.62    0.37    4.18    8.79   13.93
+   145.0    0.00   -0.21   -0.87   -1.89   -3.18   -4.57   -5.92   -7.07   -7.88   -8.28   -8.19   -7.61   -6.52   -4.89   -2.63    0.37    4.19    8.81   13.95
+   150.0    0.00   -0.21   -0.87   -1.90   -3.19   -4.59   -5.95   -7.10   -7.91   -8.30   -8.21   -7.63   -6.54   -4.90   -2.63    0.37    4.21    8.83   13.98
+   155.0    0.00   -0.21   -0.87   -1.91   -3.20   -4.61   -5.97   -7.12   -7.93   -8.32   -8.23   -7.65   -6.55   -4.91   -2.64    0.38    4.21    8.84   14.00
+   160.0    0.00   -0.21   -0.87   -1.91   -3.21   -4.63   -5.98   -7.13   -7.94   -8.33   -8.24   -7.65   -6.56   -4.91   -2.64    0.38    4.21    8.83   14.00
+   165.0    0.00   -0.21   -0.88   -1.92   -3.22   -4.64   -6.00   -7.14   -7.95   -8.34   -8.24   -7.65   -6.55   -4.91   -2.64    0.37    4.19    8.81   13.98
+   170.0    0.00   -0.21   -0.88   -1.92   -3.23   -4.64   -6.00   -7.15   -7.96   -8.34   -8.25   -7.65   -6.55   -4.91   -2.64    0.35    4.16    8.76   13.93
+   175.0    0.00   -0.21   -0.88   -1.92   -3.23   -4.65   -6.01   -7.16   -7.97   -8.35   -8.25   -7.65   -6.55   -4.90   -2.64    0.33    4.11    8.70   13.87
+   180.0    0.00   -0.21   -0.88   -1.92   -3.23   -4.65   -6.01   -7.16   -7.97   -8.35   -8.25   -7.66   -6.55   -4.90   -2.65    0.31    4.07    8.63   13.79
+   185.0    0.00   -0.21   -0.88   -1.92   -3.23   -4.64   -6.00   -7.16   -7.97   -8.36   -8.26   -7.66   -6.55   -4.90   -2.66    0.28    4.02    8.57   13.72
+   190.0    0.00   -0.21   -0.87   -1.92   -3.22   -4.64   -6.00   -7.15   -7.97   -8.36   -8.26   -7.66   -6.54   -4.90   -2.67    0.26    3.99    8.52   13.66
+   195.0    0.00   -0.21   -0.87   -1.91   -3.21   -4.63   -5.99   -7.15   -7.97   -8.35   -8.25   -7.65   -6.53   -4.89   -2.66    0.26    3.97    8.50   13.64
+   200.0    0.00   -0.21   -0.87   -1.91   -3.20   -4.61   -5.98   -7.14   -7.96   -8.34   -8.24   -7.63   -6.52   -4.88   -2.65    0.27    3.98    8.52   13.67
+   205.0    0.00   -0.21   -0.87   -1.90   -3.19   -4.60   -5.96   -7.12   -7.94   -8.33   -8.22   -7.61   -6.49   -4.85   -2.62    0.30    4.03    8.58   13.75
+   210.0    0.00   -0.21   -0.87   -1.89   -3.18   -4.59   -5.94   -7.10   -7.92   -8.30   -8.19   -7.57   -6.45   -4.80   -2.57    0.35    4.11    8.70   13.88
+   215.0    0.00   -0.21   -0.86   -1.89   -3.17   -4.57   -5.92   -7.08   -7.89   -8.26   -8.14   -7.52   -6.39   -4.74   -2.51    0.44    4.22    8.85   14.06
+   220.0    0.00   -0.21   -0.86   -1.88   -3.16   -4.55   -5.90   -7.05   -7.85   -8.22   -8.09   -7.46   -6.32   -4.67   -2.42    0.54    4.36    9.04   14.28
+   225.0    0.00   -0.21   -0.86   -1.88   -3.15   -4.53   -5.88   -7.01   -7.81   -8.17   -8.03   -7.38   -6.24   -4.58   -2.32    0.67    4.53    9.25   14.52
+   230.0    0.00   -0.21   -0.86   -1.87   -3.14   -4.52   -5.85   -6.98   -7.77   -8.11   -7.96   -7.30   -6.15   -4.48   -2.20    0.81    4.71    9.46   14.74
+   235.0    0.00   -0.21   -0.86   -1.87   -3.13   -4.50   -5.83   -6.95   -7.72   -8.05   -7.89   -7.22   -6.06   -4.37   -2.08    0.96    4.88    9.66   14.94
+   240.0    0.00   -0.22   -0.86   -1.86   -3.12   -4.49   -5.80   -6.91   -7.68   -7.99   -7.82   -7.14   -5.97   -4.27   -1.96    1.10    5.04    9.83   15.09
+   245.0    0.00   -0.22   -0.86   -1.86   -3.12   -4.48   -5.78   -6.88   -7.64   -7.94   -7.76   -7.07   -5.88   -4.17   -1.84    1.23    5.18    9.95   15.17
+   250.0    0.00   -0.22   -0.86   -1.87   -3.11   -4.47   -5.77   -6.86   -7.60   -7.90   -7.71   -7.01   -5.81   -4.08   -1.74    1.34    5.27   10.01   15.19
+   255.0    0.00   -0.22   -0.87   -1.87   -3.12   -4.47   -5.76   -6.84   -7.58   -7.87   -7.67   -6.97   -5.76   -4.01   -1.66    1.41    5.32   10.00   15.12
+   260.0    0.00   -0.22   -0.87   -1.87   -3.12   -4.47   -5.76   -6.84   -7.57   -7.86   -7.65   -6.94   -5.72   -3.97   -1.61    1.45    5.32    9.94   15.00
+   265.0    0.00   -0.23   -0.88   -1.88   -3.13   -4.48   -5.77   -6.84   -7.57   -7.86   -7.65   -6.93   -5.70   -3.94   -1.59    1.45    5.26    9.81   14.82
+   270.0    0.00   -0.23   -0.88   -1.89   -3.14   -4.49   -5.78   -6.85   -7.58   -7.87   -7.66   -6.94   -5.71   -3.94   -1.60    1.41    5.16    9.65   14.61
+   275.0    0.00   -0.23   -0.89   -1.90   -3.16   -4.51   -5.80   -6.88   -7.61   -7.90   -7.69   -6.97   -5.73   -3.97   -1.64    1.33    5.03    9.45   14.39
+   280.0    0.00   -0.23   -0.90   -1.92   -3.18   -4.54   -5.83   -6.91   -7.64   -7.93   -7.73   -7.01   -5.77   -4.02   -1.71    1.23    4.87    9.24   14.18
+   285.0    0.00   -0.24   -0.91   -1.93   -3.20   -4.56   -5.87   -6.95   -7.69   -7.98   -7.78   -7.06   -5.83   -4.09   -1.80    1.10    4.70    9.04   13.99
+   290.0    0.00   -0.24   -0.91   -1.95   -3.23   -4.60   -5.91   -7.00   -7.74   -8.04   -7.83   -7.12   -5.90   -4.17   -1.91    0.96    4.53    8.85   13.85
+   295.0    0.00   -0.24   -0.92   -1.96   -3.25   -4.63   -5.95   -7.05   -7.79   -8.09   -7.90   -7.19   -5.97   -4.26   -2.02    0.82    4.37    8.70   13.74
+   300.0    0.00   -0.25   -0.93   -1.98   -3.28   -4.67   -6.00   -7.10   -7.85   -8.15   -7.96   -7.26   -6.06   -4.36   -2.14    0.69    4.23    8.58   13.68
+   305.0    0.00   -0.25   -0.94   -2.00   -3.30   -4.71   -6.04   -7.16   -7.91   -8.21   -8.02   -7.32   -6.14   -4.46   -2.26    0.57    4.12    8.51   13.66
+   310.0    0.00   -0.25   -0.95   -2.01   -3.33   -4.74   -6.09   -7.21   -7.97   -8.27   -8.08   -7.39   -6.22   -4.55   -2.36    0.46    4.04    8.47   13.66
+   315.0    0.00   -0.26   -0.96   -2.03   -3.35   -4.78   -6.13   -7.26   -8.02   -8.33   -8.14   -7.45   -6.29   -4.64   -2.45    0.39    4.00    8.46   13.68
+   320.0    0.00   -0.26   -0.96   -2.04   -3.37   -4.81   -6.17   -7.30   -8.07   -8.38   -8.19   -7.51   -6.35   -4.71   -2.52    0.33    3.97    8.47   13.69
+   325.0    0.00   -0.26   -0.97   -2.05   -3.39   -4.83   -6.20   -7.34   -8.11   -8.42   -8.23   -7.55   -6.40   -4.76   -2.57    0.30    3.97    8.50   13.71
+   330.0    0.00   -0.26   -0.98   -2.06   -3.41   -4.85   -6.23   -7.37   -8.14   -8.45   -8.27   -7.59   -6.44   -4.81   -2.61    0.28    3.98    8.53   13.70
+   335.0    0.00   -0.26   -0.98   -2.07   -3.42   -4.87   -6.25   -7.40   -8.17   -8.48   -8.30   -7.62   -6.47   -4.83   -2.63    0.28    4.01    8.56   13.69
+   340.0    0.00   -0.27   -0.98   -2.07   -3.42   -4.88   -6.27   -7.42   -8.19   -8.51   -8.32   -7.64   -6.48   -4.84   -2.63    0.29    4.03    8.59   13.67
+   345.0    0.00   -0.27   -0.98   -2.08   -3.43   -4.88   -6.27   -7.43   -8.21   -8.52   -8.33   -7.64   -6.48   -4.84   -2.62    0.30    4.06    8.61   13.65
+   350.0    0.00   -0.27   -0.98   -2.08   -3.43   -4.88   -6.28   -7.43   -8.22   -8.53   -8.33   -7.64   -6.48   -4.82   -2.60    0.33    4.08    8.63   13.63
+   355.0    0.00   -0.27   -0.98   -2.07   -3.42   -4.88   -6.27   -7.43   -8.22   -8.53   -8.33   -7.63   -6.46   -4.80   -2.58    0.35    4.11    8.65   13.64
+   360.0    0.00   -0.27   -0.98   -2.07   -3.42   -4.87   -6.26   -7.43   -8.21   -8.53   -8.32   -7.62   -6.44   -4.77   -2.54    0.39    4.14    8.68   13.67
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.08     -0.59    120.35                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.13   -0.51   -1.08   -1.79   -2.58   -3.39   -4.17   -4.81   -5.21   -5.25   -4.86   -4.03   -2.83   -1.33    0.49    2.75    5.68    9.44
+     0.0    0.00   -0.12   -0.48   -1.02   -1.69   -2.44   -3.24   -4.04   -4.72   -5.17   -5.25   -4.89   -4.12   -3.00   -1.59    0.15    2.44    5.50    9.31
+     5.0    0.00   -0.12   -0.48   -1.02   -1.69   -2.44   -3.24   -4.03   -4.72   -5.16   -5.25   -4.90   -4.13   -3.01   -1.61    0.14    2.42    5.45    9.20
+    10.0    0.00   -0.12   -0.47   -1.01   -1.68   -2.44   -3.24   -4.03   -4.71   -5.15   -5.24   -4.90   -4.13   -3.02   -1.61    0.14    2.41    5.41    9.12
+    15.0    0.00   -0.12   -0.47   -1.01   -1.68   -2.44   -3.24   -4.02   -4.70   -5.14   -5.23   -4.89   -4.13   -3.02   -1.60    0.15    2.41    5.38    9.06
+    20.0    0.00   -0.11   -0.47   -1.01   -1.68   -2.44   -3.24   -4.02   -4.69   -5.13   -5.21   -4.88   -4.12   -3.00   -1.58    0.18    2.43    5.37    9.05
+    25.0    0.00   -0.11   -0.46   -1.00   -1.68   -2.44   -3.24   -4.02   -4.68   -5.11   -5.20   -4.86   -4.10   -2.97   -1.54    0.22    2.46    5.39    9.06
+    30.0    0.00   -0.11   -0.46   -1.00   -1.68   -2.45   -3.24   -4.01   -4.67   -5.09   -5.18   -4.84   -4.07   -2.93   -1.49    0.28    2.51    5.42    9.11
+    35.0    0.00   -0.11   -0.46   -1.00   -1.68   -2.45   -3.24   -4.01   -4.66   -5.08   -5.16   -4.81   -4.03   -2.88   -1.42    0.35    2.58    5.48    9.19
+    40.0    0.00   -0.11   -0.45   -1.00   -1.68   -2.45   -3.25   -4.01   -4.65   -5.06   -5.13   -4.78   -4.00   -2.83   -1.36    0.42    2.65    5.55    9.30
+    45.0    0.00   -0.10   -0.45   -0.99   -1.68   -2.45   -3.25   -4.01   -4.65   -5.05   -5.11   -4.75   -3.96   -2.78   -1.30    0.49    2.72    5.62    9.41
+    50.0    0.00   -0.10   -0.45   -0.99   -1.68   -2.45   -3.25   -4.01   -4.65   -5.05   -5.10   -4.72   -3.92   -2.73   -1.24    0.56    2.78    5.69    9.52
+    55.0    0.00   -0.10   -0.45   -0.99   -1.68   -2.46   -3.26   -4.02   -4.65   -5.04   -5.09   -4.70   -3.88   -2.69   -1.19    0.60    2.84    5.76    9.62
+    60.0    0.00   -0.10   -0.44   -0.99   -1.68   -2.46   -3.27   -4.03   -4.66   -5.05   -5.08   -4.68   -3.86   -2.66   -1.16    0.64    2.87    5.81    9.70
+    65.0    0.00   -0.10   -0.44   -0.99   -1.69   -2.47   -3.28   -4.05   -4.68   -5.06   -5.08   -4.67   -3.84   -2.64   -1.15    0.65    2.89    5.84    9.76
+    70.0    0.00   -0.10   -0.44   -0.99   -1.69   -2.48   -3.30   -4.07   -4.70   -5.07   -5.08   -4.67   -3.83   -2.64   -1.15    0.64    2.88    5.85    9.79
+    75.0    0.00   -0.10   -0.44   -0.99   -1.69   -2.49   -3.31   -4.09   -4.72   -5.09   -5.09   -4.67   -3.84   -2.65   -1.17    0.61    2.86    5.83    9.78
+    80.0    0.00   -0.10   -0.45   -1.00   -1.70   -2.50   -3.33   -4.12   -4.75   -5.11   -5.11   -4.68   -3.85   -2.67   -1.21    0.57    2.82    5.80    9.74
+    85.0    0.00   -0.10   -0.45   -1.00   -1.71   -2.52   -3.36   -4.14   -4.78   -5.14   -5.13   -4.70   -3.87   -2.70   -1.25    0.52    2.77    5.75    9.67
+    90.0    0.00   -0.10   -0.45   -1.01   -1.72   -2.54   -3.38   -4.17   -4.81   -5.17   -5.15   -4.72   -3.89   -2.73   -1.29    0.47    2.71    5.68    9.57
+    95.0    0.00   -0.10   -0.46   -1.02   -1.74   -2.55   -3.40   -4.20   -4.83   -5.19   -5.18   -4.74   -3.92   -2.77   -1.33    0.42    2.66    5.62    9.47
+   100.0    0.00   -0.11   -0.46   -1.03   -1.75   -2.58   -3.43   -4.22   -4.86   -5.22   -5.20   -4.77   -3.95   -2.80   -1.37    0.38    2.61    5.56    9.36
+   105.0    0.00   -0.11   -0.47   -1.04   -1.77   -2.60   -3.45   -4.25   -4.88   -5.24   -5.22   -4.79   -3.97   -2.82   -1.40    0.35    2.58    5.51    9.26
+   110.0    0.00   -0.11   -0.48   -1.05   -1.79   -2.62   -3.47   -4.27   -4.90   -5.26   -5.25   -4.82   -4.00   -2.84   -1.41    0.35    2.57    5.48    9.18
+   115.0    0.00   -0.11   -0.48   -1.07   -1.81   -2.64   -3.50   -4.29   -4.92   -5.28   -5.26   -4.84   -4.01   -2.85   -1.41    0.36    2.58    5.46    9.13
+   120.0    0.00   -0.12   -0.49   -1.08   -1.83   -2.66   -3.52   -4.30   -4.93   -5.29   -5.28   -4.85   -4.03   -2.86   -1.39    0.38    2.61    5.47    9.10
+   125.0    0.00   -0.12   -0.50   -1.10   -1.85   -2.68   -3.53   -4.32   -4.94   -5.30   -5.29   -4.87   -4.03   -2.85   -1.37    0.43    2.65    5.50    9.09
+   130.0    0.00   -0.12   -0.50   -1.11   -1.86   -2.70   -3.55   -4.33   -4.95   -5.30   -5.30   -4.88   -4.04   -2.84   -1.33    0.48    2.71    5.54    9.11
+   135.0    0.00   -0.12   -0.51   -1.12   -1.88   -2.72   -3.56   -4.33   -4.95   -5.30   -5.30   -4.88   -4.04   -2.82   -1.29    0.54    2.77    5.60    9.15
+   140.0    0.00   -0.13   -0.52   -1.13   -1.89   -2.73   -3.57   -4.33   -4.95   -5.31   -5.31   -4.89   -4.04   -2.80   -1.25    0.60    2.84    5.66    9.19
+   145.0    0.00   -0.13   -0.52   -1.14   -1.90   -2.74   -3.57   -4.33   -4.94   -5.31   -5.31   -4.89   -4.04   -2.79   -1.22    0.65    2.90    5.71    9.23
+   150.0    0.00   -0.13   -0.53   -1.15   -1.91   -2.74   -3.57   -4.33   -4.94   -5.31   -5.32   -4.90   -4.04   -2.78   -1.19    0.69    2.94    5.74    9.25
+   155.0    0.00   -0.13   -0.53   -1.15   -1.91   -2.74   -3.57   -4.33   -4.94   -5.31   -5.33   -4.91   -4.05   -2.78   -1.18    0.71    2.97    5.76    9.25
+   160.0    0.00   -0.13   -0.53   -1.15   -1.91   -2.74   -3.56   -4.32   -4.93   -5.31   -5.33   -4.92   -4.06   -2.78   -1.18    0.71    2.97    5.76    9.23
+   165.0    0.00   -0.14   -0.54   -1.15   -1.91   -2.73   -3.55   -4.31   -4.93   -5.31   -5.34   -4.94   -4.07   -2.80   -1.19    0.70    2.95    5.73    9.18
+   170.0    0.00   -0.14   -0.54   -1.15   -1.90   -2.72   -3.54   -4.30   -4.93   -5.32   -5.35   -4.95   -4.09   -2.82   -1.22    0.66    2.91    5.68    9.11
+   175.0    0.00   -0.14   -0.54   -1.15   -1.90   -2.71   -3.53   -4.30   -4.93   -5.32   -5.36   -4.96   -4.11   -2.84   -1.26    0.61    2.85    5.62    9.03
+   180.0    0.00   -0.14   -0.54   -1.14   -1.89   -2.70   -3.52   -4.29   -4.93   -5.33   -5.37   -4.97   -4.12   -2.87   -1.30    0.55    2.77    5.55    8.96
+   185.0    0.00   -0.14   -0.54   -1.14   -1.87   -2.69   -3.51   -4.29   -4.93   -5.34   -5.38   -4.98   -4.13   -2.89   -1.35    0.48    2.70    5.48    8.89
+   190.0    0.00   -0.14   -0.53   -1.13   -1.86   -2.67   -3.50   -4.29   -4.94   -5.34   -5.38   -4.97   -4.12   -2.90   -1.38    0.42    2.63    5.42    8.86
+   195.0    0.00   -0.14   -0.53   -1.12   -1.85   -2.66   -3.49   -4.28   -4.94   -5.34   -5.37   -4.96   -4.11   -2.90   -1.40    0.38    2.58    5.39    8.87
+   200.0    0.00   -0.14   -0.53   -1.12   -1.84   -2.65   -3.49   -4.29   -4.95   -5.34   -5.36   -4.94   -4.09   -2.89   -1.41    0.35    2.55    5.39    8.92
+   205.0    0.00   -0.15   -0.53   -1.11   -1.83   -2.64   -3.48   -4.29   -4.95   -5.34   -5.35   -4.91   -4.05   -2.86   -1.40    0.35    2.55    5.43    9.01
+   210.0    0.00   -0.15   -0.53   -1.11   -1.82   -2.63   -3.48   -4.29   -4.95   -5.34   -5.33   -4.88   -4.01   -2.82   -1.36    0.38    2.59    5.50    9.15
+   215.0    0.00   -0.15   -0.53   -1.10   -1.82   -2.63   -3.48   -4.29   -4.95   -5.33   -5.32   -4.85   -3.97   -2.77   -1.31    0.44    2.67    5.61    9.32
+   220.0    0.00   -0.15   -0.53   -1.10   -1.82   -2.63   -3.48   -4.29   -4.95   -5.32   -5.30   -4.82   -3.93   -2.71   -1.24    0.52    2.78    5.76    9.50
+   225.0    0.00   -0.15   -0.53   -1.10   -1.82   -2.63   -3.47   -4.28   -4.94   -5.31   -5.28   -4.79   -3.89   -2.66   -1.17    0.63    2.91    5.91    9.68
+   230.0    0.00   -0.15   -0.53   -1.11   -1.82   -2.63   -3.47   -4.28   -4.93   -5.30   -5.27   -4.78   -3.86   -2.61   -1.09    0.75    3.06    6.07    9.84
+   235.0    0.00   -0.15   -0.54   -1.11   -1.82   -2.63   -3.47   -4.27   -4.92   -5.29   -5.26   -4.77   -3.85   -2.58   -1.01    0.86    3.21    6.22    9.96
+   240.0    0.00   -0.15   -0.54   -1.11   -1.83   -2.63   -3.47   -4.26   -4.91   -5.28   -5.26   -4.78   -3.86   -2.56   -0.95    0.97    3.35    6.35   10.04
+   245.0    0.00   -0.15   -0.54   -1.12   -1.83   -2.63   -3.46   -4.25   -4.89   -5.27   -5.26   -4.80   -3.88   -2.56   -0.91    1.06    3.46    6.44   10.07
+   250.0    0.00   -0.15   -0.54   -1.12   -1.84   -2.63   -3.46   -4.23   -4.88   -5.26   -5.27   -4.83   -3.92   -2.58   -0.90    1.12    3.53    6.48   10.05
+   255.0    0.00   -0.16   -0.55   -1.13   -1.84   -2.64   -3.45   -4.22   -4.86   -5.26   -5.29   -4.87   -3.97   -2.63   -0.91    1.14    3.56    6.47    9.98
+   260.0    0.00   -0.16   -0.55   -1.13   -1.85   -2.64   -3.44   -4.20   -4.84   -5.25   -5.31   -4.91   -4.03   -2.68   -0.95    1.12    3.54    6.41    9.87
+   265.0    0.00   -0.16   -0.55   -1.14   -1.85   -2.64   -3.43   -4.19   -4.83   -5.25   -5.33   -4.96   -4.09   -2.75   -1.01    1.07    3.48    6.31    9.74
+   270.0    0.00   -0.16   -0.56   -1.14   -1.86   -2.63   -3.43   -4.18   -4.82   -5.25   -5.34   -5.00   -4.15   -2.82   -1.08    0.98    3.37    6.18    9.61
+   275.0    0.00   -0.16   -0.56   -1.14   -1.86   -2.63   -3.42   -4.16   -4.80   -5.24   -5.36   -5.03   -4.20   -2.89   -1.17    0.87    3.23    6.03    9.50
+   280.0    0.00   -0.16   -0.56   -1.15   -1.86   -2.63   -3.41   -4.15   -4.79   -5.24   -5.36   -5.05   -4.24   -2.95   -1.26    0.75    3.08    5.88    9.41
+   285.0    0.00   -0.16   -0.56   -1.14   -1.85   -2.62   -3.40   -4.14   -4.79   -5.23   -5.36   -5.06   -4.27   -3.00   -1.35    0.62    2.92    5.73    9.36
+   290.0    0.00   -0.16   -0.56   -1.14   -1.85   -2.61   -3.39   -4.13   -4.78   -5.23   -5.36   -5.06   -4.28   -3.04   -1.42    0.50    2.77    5.60    9.35
+   295.0    0.00   -0.16   -0.55   -1.14   -1.84   -2.60   -3.38   -4.12   -4.77   -5.22   -5.35   -5.05   -4.27   -3.05   -1.48    0.39    2.64    5.51    9.38
+   300.0    0.00   -0.15   -0.55   -1.13   -1.83   -2.59   -3.37   -4.12   -4.77   -5.21   -5.33   -5.02   -4.25   -3.06   -1.53    0.30    2.53    5.45    9.45
+   305.0    0.00   -0.15   -0.55   -1.12   -1.82   -2.57   -3.35   -4.11   -4.76   -5.20   -5.31   -4.99   -4.22   -3.04   -1.55    0.24    2.46    5.42    9.53
+   310.0    0.00   -0.15   -0.54   -1.11   -1.80   -2.56   -3.34   -4.10   -4.76   -5.20   -5.29   -4.96   -4.18   -3.02   -1.56    0.20    2.41    5.42    9.63
+   315.0    0.00   -0.15   -0.54   -1.10   -1.79   -2.54   -3.33   -4.09   -4.75   -5.19   -5.28   -4.93   -4.14   -2.99   -1.55    0.18    2.40    5.45    9.72
+   320.0    0.00   -0.15   -0.53   -1.09   -1.77   -2.52   -3.31   -4.08   -4.75   -5.18   -5.26   -4.90   -4.11   -2.96   -1.54    0.18    2.40    5.50    9.80
+   325.0    0.00   -0.14   -0.53   -1.08   -1.76   -2.51   -3.30   -4.07   -4.74   -5.18   -5.25   -4.88   -4.08   -2.94   -1.53    0.18    2.42    5.54    9.84
+   330.0    0.00   -0.14   -0.52   -1.07   -1.74   -2.49   -3.28   -4.07   -4.74   -5.18   -5.24   -4.86   -4.06   -2.92   -1.52    0.19    2.45    5.59    9.85
+   335.0    0.00   -0.14   -0.51   -1.06   -1.73   -2.48   -3.27   -4.06   -4.74   -5.17   -5.24   -4.86   -4.05   -2.92   -1.52    0.20    2.47    5.62    9.83
+   340.0    0.00   -0.14   -0.51   -1.05   -1.72   -2.46   -3.26   -4.05   -4.74   -5.17   -5.24   -4.86   -4.06   -2.92   -1.52    0.21    2.49    5.63    9.76
+   345.0    0.00   -0.13   -0.50   -1.04   -1.71   -2.46   -3.25   -4.05   -4.73   -5.17   -5.24   -4.86   -4.07   -2.93   -1.53    0.20    2.49    5.62    9.67
+   350.0    0.00   -0.13   -0.49   -1.03   -1.70   -2.45   -3.25   -4.04   -4.73   -5.17   -5.24   -4.87   -4.08   -2.95   -1.55    0.19    2.48    5.59    9.55
+   355.0    0.00   -0.13   -0.49   -1.03   -1.69   -2.44   -3.24   -4.04   -4.73   -5.17   -5.25   -4.88   -4.10   -2.98   -1.57    0.17    2.46    5.55    9.43
+   360.0    0.00   -0.12   -0.48   -1.02   -1.69   -2.44   -3.24   -4.04   -4.72   -5.17   -5.25   -4.89   -4.12   -3.00   -1.59    0.15    2.44    5.50    9.31
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH701946.2     SNOW                                        TYPE / SERIAL NO    
+COPIED              Geo++ GmbH               3    07-JUL-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+COPIED FROM ASH701946.3     SNOW                            COMMENT             
+ATTENTION! COPIED WITHOUT VERIFICATION BY CALIBRATION!      COMMENT             
+   G01                                                      START OF FREQUENCY  
+      1.70     -0.54     89.93                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.23   -0.92   -1.99   -3.35   -4.89   -6.44   -7.85   -8.92   -9.49   -9.42   -8.63   -7.12   -4.94   -2.16    1.16    4.98    9.27   13.87
+     0.0    0.00   -0.26   -1.00   -2.13   -3.58   -5.18   -6.78   -8.18   -9.20   -9.68   -9.51   -8.67   -7.17   -5.05   -2.32    1.03    5.03    9.57   14.29
+     5.0    0.00   -0.26   -0.99   -2.12   -3.55   -5.15   -6.75   -8.15   -9.18   -9.66   -9.50   -8.64   -7.12   -4.98   -2.24    1.12    5.10    9.66   14.50
+    10.0    0.00   -0.26   -0.98   -2.10   -3.53   -5.12   -6.72   -8.13   -9.16   -9.65   -9.48   -8.62   -7.08   -4.91   -2.16    1.19    5.16    9.73   14.69
+    15.0    0.00   -0.25   -0.97   -2.08   -3.50   -5.09   -6.69   -8.10   -9.14   -9.64   -9.48   -8.60   -7.03   -4.84   -2.08    1.25    5.20    9.79   14.87
+    20.0    0.00   -0.25   -0.96   -2.07   -3.48   -5.06   -6.66   -8.08   -9.13   -9.63   -9.47   -8.58   -6.99   -4.78   -2.00    1.32    5.24    9.83   15.02
+    25.0    0.00   -0.25   -0.95   -2.05   -3.45   -5.03   -6.63   -8.05   -9.11   -9.63   -9.46   -8.57   -6.96   -4.72   -1.93    1.39    5.29    9.87   15.14
+    30.0    0.00   -0.24   -0.94   -2.03   -3.43   -5.01   -6.60   -8.03   -9.09   -9.62   -9.46   -8.55   -6.93   -4.66   -1.84    1.48    5.36    9.92   15.24
+    35.0    0.00   -0.24   -0.93   -2.01   -3.41   -4.98   -6.57   -8.00   -9.07   -9.60   -9.45   -8.54   -6.90   -4.60   -1.76    1.57    5.44    9.97   15.30
+    40.0    0.00   -0.24   -0.92   -2.00   -3.39   -4.95   -6.54   -7.97   -9.05   -9.59   -9.44   -8.53   -6.87   -4.55   -1.67    1.68    5.54   10.03   15.32
+    45.0    0.00   -0.23   -0.91   -1.98   -3.37   -4.93   -6.51   -7.94   -9.02   -9.56   -9.43   -8.52   -6.85   -4.50   -1.58    1.80    5.65   10.09   15.30
+    50.0    0.00   -0.23   -0.90   -1.97   -3.35   -4.90   -6.48   -7.91   -8.98   -9.54   -9.41   -8.51   -6.83   -4.45   -1.50    1.91    5.75   10.14   15.25
+    55.0    0.00   -0.23   -0.89   -1.96   -3.33   -4.88   -6.45   -7.87   -8.95   -9.50   -9.39   -8.50   -6.82   -4.42   -1.44    2.00    5.84   10.17   15.16
+    60.0    0.00   -0.22   -0.89   -1.94   -3.31   -4.85   -6.42   -7.83   -8.91   -9.47   -9.36   -8.48   -6.81   -4.40   -1.39    2.07    5.91   10.17   15.04
+    65.0    0.00   -0.22   -0.88   -1.93   -3.29   -4.83   -6.39   -7.79   -8.87   -9.44   -9.34   -8.48   -6.81   -4.39   -1.36    2.11    5.94   10.14   14.90
+    70.0    0.00   -0.22   -0.88   -1.93   -3.28   -4.81   -6.35   -7.75   -8.83   -9.40   -9.33   -8.48   -6.82   -4.40   -1.37    2.11    5.92   10.08   14.73
+    75.0    0.00   -0.22   -0.87   -1.92   -3.27   -4.78   -6.32   -7.72   -8.79   -9.38   -9.32   -8.49   -6.84   -4.43   -1.40    2.07    5.87    9.97   14.55
+    80.0    0.00   -0.21   -0.87   -1.91   -3.25   -4.77   -6.30   -7.69   -8.77   -9.36   -9.32   -8.51   -6.88   -4.49   -1.47    2.00    5.77    9.84   14.35
+    85.0    0.00   -0.21   -0.87   -1.91   -3.24   -4.75   -6.28   -7.66   -8.75   -9.36   -9.33   -8.54   -6.93   -4.56   -1.55    1.89    5.64    9.68   14.15
+    90.0    0.00   -0.21   -0.87   -1.91   -3.24   -4.74   -6.26   -7.65   -8.74   -9.37   -9.36   -8.59   -7.00   -4.65   -1.66    1.76    5.49    9.51   13.96
+    95.0    0.00   -0.21   -0.87   -1.91   -3.24   -4.73   -6.25   -7.64   -8.74   -9.38   -9.40   -8.65   -7.08   -4.75   -1.79    1.62    5.33    9.34   13.78
+   100.0    0.00   -0.21   -0.87   -1.91   -3.24   -4.73   -6.25   -7.65   -8.76   -9.41   -9.44   -8.71   -7.17   -4.85   -1.92    1.47    5.17    9.18   13.61
+   105.0    0.00   -0.21   -0.87   -1.91   -3.24   -4.73   -6.26   -7.66   -8.78   -9.45   -9.49   -8.78   -7.25   -4.96   -2.04    1.33    5.03    9.05   13.48
+   110.0    0.00   -0.21   -0.87   -1.92   -3.25   -4.74   -6.27   -7.67   -8.80   -9.48   -9.54   -8.84   -7.34   -5.06   -2.16    1.20    4.91    8.95   13.38
+   115.0    0.00   -0.21   -0.87   -1.92   -3.26   -4.76   -6.29   -7.70   -8.83   -9.52   -9.59   -8.90   -7.41   -5.16   -2.27    1.09    4.82    8.88   13.32
+   120.0    0.00   -0.21   -0.88   -1.93   -3.27   -4.78   -6.31   -7.73   -8.86   -9.55   -9.63   -8.95   -7.48   -5.24   -2.36    1.00    4.75    8.85   13.29
+   125.0    0.00   -0.21   -0.88   -1.94   -3.28   -4.79   -6.33   -7.75   -8.89   -9.58   -9.66   -8.99   -7.53   -5.31   -2.44    0.93    4.71    8.86   13.30
+   130.0    0.00   -0.21   -0.88   -1.95   -3.30   -4.81   -6.36   -7.78   -8.92   -9.60   -9.68   -9.01   -7.56   -5.36   -2.50    0.88    4.70    8.88   13.34
+   135.0    0.00   -0.21   -0.89   -1.95   -3.31   -4.83   -6.38   -7.80   -8.94   -9.62   -9.68   -9.02   -7.58   -5.40   -2.55    0.84    4.69    8.93   13.40
+   140.0    0.00   -0.21   -0.89   -1.96   -3.32   -4.85   -6.40   -7.82   -8.95   -9.62   -9.68   -9.02   -7.59   -5.42   -2.59    0.82    4.70    8.97   13.46
+   145.0    0.00   -0.22   -0.89   -1.96   -3.33   -4.86   -6.41   -7.83   -8.96   -9.62   -9.67   -9.02   -7.60   -5.44   -2.61    0.79    4.70    9.00   13.51
+   150.0    0.00   -0.22   -0.89   -1.97   -3.33   -4.86   -6.42   -7.84   -8.95   -9.61   -9.66   -9.01   -7.60   -5.45   -2.63    0.77    4.69    9.02   13.54
+   155.0    0.00   -0.22   -0.89   -1.97   -3.33   -4.86   -6.41   -7.83   -8.95   -9.60   -9.65   -8.99   -7.59   -5.45   -2.65    0.76    4.68    9.01   13.54
+   160.0    0.00   -0.22   -0.89   -1.96   -3.33   -4.85   -6.40   -7.82   -8.93   -9.59   -9.64   -8.99   -7.59   -5.46   -2.65    0.74    4.65    8.98   13.50
+   165.0    0.00   -0.22   -0.89   -1.96   -3.32   -4.84   -6.38   -7.80   -8.91   -9.57   -9.63   -8.98   -7.58   -5.45   -2.65    0.73    4.62    8.92   13.44
+   170.0    0.00   -0.22   -0.89   -1.95   -3.30   -4.82   -6.36   -7.77   -8.89   -9.56   -9.62   -8.97   -7.57   -5.44   -2.65    0.72    4.58    8.84   13.35
+   175.0    0.00   -0.22   -0.89   -1.94   -3.28   -4.79   -6.33   -7.74   -8.87   -9.54   -9.61   -8.96   -7.56   -5.42   -2.63    0.72    4.54    8.76   13.25
+   180.0    0.00   -0.22   -0.88   -1.93   -3.26   -4.76   -6.29   -7.71   -8.84   -9.52   -9.60   -8.95   -7.54   -5.39   -2.60    0.73    4.51    8.68   13.16
+   185.0    0.00   -0.22   -0.88   -1.92   -3.24   -4.73   -6.26   -7.67   -8.81   -9.50   -9.58   -8.93   -7.51   -5.35   -2.56    0.75    4.48    8.62   13.10
+   190.0    0.00   -0.22   -0.87   -1.91   -3.22   -4.70   -6.23   -7.64   -8.79   -9.48   -9.55   -8.89   -7.46   -5.29   -2.51    0.78    4.48    8.58   13.08
+   195.0    0.00   -0.22   -0.87   -1.90   -3.20   -4.68   -6.20   -7.61   -8.76   -9.45   -9.52   -8.84   -7.39   -5.22   -2.44    0.82    4.50    8.59   13.11
+   200.0    0.00   -0.22   -0.87   -1.89   -3.19   -4.65   -6.17   -7.58   -8.72   -9.41   -9.46   -8.77   -7.31   -5.14   -2.37    0.88    4.54    8.64   13.21
+   205.0    0.00   -0.22   -0.86   -1.88   -3.17   -4.64   -6.15   -7.56   -8.69   -9.36   -9.40   -8.69   -7.22   -5.04   -2.28    0.95    4.62    8.74   13.37
+   210.0    0.00   -0.22   -0.86   -1.87   -3.16   -4.62   -6.13   -7.54   -8.66   -9.31   -9.32   -8.59   -7.11   -4.94   -2.20    1.03    4.72    8.90   13.59
+   215.0    0.00   -0.22   -0.86   -1.86   -3.15   -4.61   -6.12   -7.52   -8.63   -9.25   -9.23   -8.48   -6.99   -4.84   -2.10    1.13    4.85    9.10   13.85
+   220.0    0.00   -0.22   -0.86   -1.86   -3.15   -4.61   -6.12   -7.51   -8.60   -9.19   -9.14   -8.37   -6.88   -4.73   -2.01    1.23    5.01    9.33   14.13
+   225.0    0.00   -0.22   -0.86   -1.86   -3.14   -4.61   -6.12   -7.50   -8.57   -9.13   -9.06   -8.27   -6.77   -4.64   -1.92    1.35    5.19    9.58   14.39
+   230.0    0.00   -0.22   -0.86   -1.86   -3.14   -4.61   -6.12   -7.49   -8.54   -9.08   -8.98   -8.17   -6.68   -4.55   -1.83    1.47    5.37    9.83   14.63
+   235.0    0.00   -0.22   -0.86   -1.86   -3.15   -4.62   -6.12   -7.49   -8.52   -9.04   -8.91   -8.10   -6.61   -4.48   -1.76    1.59    5.55   10.06   14.80
+   240.0    0.00   -0.22   -0.86   -1.86   -3.15   -4.62   -6.13   -7.49   -8.51   -9.01   -8.87   -8.05   -6.55   -4.43   -1.69    1.69    5.72   10.26   14.90
+   245.0    0.00   -0.22   -0.87   -1.87   -3.16   -4.64   -6.14   -7.49   -8.50   -8.99   -8.85   -8.02   -6.52   -4.40   -1.63    1.79    5.86   10.40   14.92
+   250.0    0.00   -0.23   -0.87   -1.88   -3.18   -4.65   -6.15   -7.51   -8.51   -9.00   -8.84   -8.02   -6.52   -4.38   -1.60    1.86    5.95   10.46   14.84
+   255.0    0.00   -0.23   -0.88   -1.89   -3.19   -4.67   -6.17   -7.53   -8.53   -9.02   -8.87   -8.04   -6.54   -4.38   -1.58    1.90    5.99   10.45   14.68
+   260.0    0.00   -0.23   -0.89   -1.90   -3.21   -4.69   -6.20   -7.55   -8.56   -9.05   -8.91   -8.08   -6.57   -4.41   -1.59    1.89    5.97   10.37   14.45
+   265.0    0.00   -0.24   -0.89   -1.92   -3.23   -4.71   -6.23   -7.59   -8.61   -9.10   -8.96   -8.13   -6.62   -4.45   -1.62    1.84    5.88   10.20   14.17
+   270.0    0.00   -0.24   -0.90   -1.94   -3.25   -4.75   -6.27   -7.64   -8.66   -9.17   -9.03   -8.20   -6.68   -4.50   -1.69    1.75    5.72    9.96   13.87
+   275.0    0.00   -0.24   -0.91   -1.96   -3.28   -4.78   -6.31   -7.69   -8.73   -9.24   -9.10   -8.27   -6.74   -4.57   -1.77    1.61    5.51    9.68   13.56
+   280.0    0.00   -0.25   -0.93   -1.98   -3.32   -4.83   -6.37   -7.75   -8.80   -9.32   -9.18   -8.34   -6.81   -4.64   -1.89    1.43    5.25    9.36   13.28
+   285.0    0.00   -0.25   -0.94   -2.00   -3.35   -4.88   -6.43   -7.83   -8.88   -9.40   -9.26   -8.41   -6.88   -4.73   -2.02    1.23    4.97    9.04   13.03
+   290.0    0.00   -0.25   -0.95   -2.02   -3.39   -4.93   -6.49   -7.90   -8.96   -9.48   -9.33   -8.48   -6.95   -4.82   -2.16    1.01    4.67    8.73   12.83
+   295.0    0.00   -0.26   -0.96   -2.05   -3.43   -4.98   -6.56   -7.98   -9.03   -9.55   -9.40   -8.54   -7.02   -4.91   -2.31    0.79    4.40    8.46   12.70
+   300.0    0.00   -0.26   -0.97   -2.07   -3.47   -5.04   -6.63   -8.05   -9.11   -9.62   -9.46   -8.59   -7.08   -5.01   -2.45    0.60    4.16    8.25   12.62
+   305.0    0.00   -0.26   -0.98   -2.09   -3.51   -5.09   -6.69   -8.12   -9.17   -9.67   -9.51   -8.64   -7.14   -5.09   -2.57    0.43    3.98    8.10   12.60
+   310.0    0.00   -0.27   -0.99   -2.12   -3.54   -5.14   -6.75   -8.18   -9.23   -9.72   -9.54   -8.68   -7.19   -5.17   -2.67    0.31    3.87    8.04   12.63
+   315.0    0.00   -0.27   -1.00   -2.13   -3.57   -5.18   -6.80   -8.23   -9.27   -9.75   -9.57   -8.71   -7.24   -5.23   -2.75    0.24    3.83    8.05   12.71
+   320.0    0.00   -0.27   -1.01   -2.15   -3.60   -5.22   -6.84   -8.26   -9.30   -9.77   -9.59   -8.74   -7.28   -5.28   -2.79    0.23    3.86    8.13   12.82
+   325.0    0.00   -0.27   -1.01   -2.16   -3.62   -5.24   -6.86   -8.28   -9.31   -9.78   -9.60   -8.76   -7.30   -5.31   -2.80    0.26    3.95    8.28   12.96
+   330.0    0.00   -0.27   -1.02   -2.17   -3.63   -5.26   -6.88   -8.30   -9.32   -9.78   -9.60   -8.77   -7.32   -5.32   -2.78    0.33    4.10    8.46   13.12
+   335.0    0.00   -0.27   -1.02   -2.17   -3.64   -5.26   -6.88   -8.29   -9.31   -9.77   -9.60   -8.77   -7.32   -5.31   -2.73    0.44    4.27    8.67   13.29
+   340.0    0.00   -0.27   -1.02   -2.17   -3.63   -5.26   -6.88   -8.28   -9.29   -9.76   -9.59   -8.76   -7.31   -5.28   -2.67    0.57    4.45    8.89   13.48
+   345.0    0.00   -0.27   -1.01   -2.17   -3.63   -5.25   -6.86   -8.26   -9.27   -9.74   -9.57   -8.74   -7.29   -5.23   -2.59    0.70    4.63    9.10   13.68
+   350.0    0.00   -0.27   -1.01   -2.16   -3.61   -5.23   -6.84   -8.24   -9.25   -9.72   -9.55   -8.72   -7.25   -5.18   -2.50    0.82    4.79    9.29   13.88
+   355.0    0.00   -0.27   -1.00   -2.15   -3.60   -5.21   -6.81   -8.21   -9.22   -9.70   -9.53   -8.70   -7.21   -5.11   -2.41    0.94    4.93    9.45   14.09
+   360.0    0.00   -0.26   -1.00   -2.13   -3.58   -5.18   -6.78   -8.18   -9.20   -9.68   -9.51   -8.67   -7.17   -5.05   -2.32    1.03    5.03    9.57   14.29
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.36      0.26    119.74                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.12   -0.45   -0.97   -1.61   -2.36   -3.17   -3.99   -4.76   -5.36   -5.68   -5.59   -5.03   -3.99   -2.46   -0.35    2.47    6.18   10.82
+     0.0    0.00   -0.09   -0.38   -0.84   -1.46   -2.21   -3.08   -4.00   -4.87   -5.56   -5.92   -5.84   -5.28   -4.23   -2.68   -0.55    2.34    6.08   10.51
+     5.0    0.00   -0.08   -0.37   -0.84   -1.46   -2.22   -3.08   -3.99   -4.86   -5.55   -5.92   -5.88   -5.36   -4.33   -2.77   -0.59    2.33    6.07   10.50
+    10.0    0.00   -0.08   -0.37   -0.84   -1.47   -2.23   -3.09   -3.98   -4.84   -5.52   -5.92   -5.91   -5.42   -4.41   -2.84   -0.63    2.32    6.08   10.57
+    15.0    0.00   -0.08   -0.36   -0.84   -1.48   -2.24   -3.09   -3.97   -4.81   -5.49   -5.90   -5.92   -5.47   -4.47   -2.89   -0.66    2.32    6.12   10.72
+    20.0    0.00   -0.08   -0.36   -0.84   -1.48   -2.25   -3.09   -3.96   -4.78   -5.46   -5.88   -5.92   -5.49   -4.50   -2.91   -0.66    2.34    6.19   10.95
+    25.0    0.00   -0.07   -0.36   -0.85   -1.49   -2.26   -3.10   -3.95   -4.76   -5.43   -5.85   -5.91   -5.48   -4.50   -2.90   -0.63    2.39    6.30   11.23
+    30.0    0.00   -0.07   -0.36   -0.85   -1.50   -2.27   -3.10   -3.94   -4.73   -5.40   -5.82   -5.88   -5.45   -4.46   -2.84   -0.56    2.47    6.42   11.53
+    35.0    0.00   -0.07   -0.36   -0.86   -1.51   -2.27   -3.09   -3.92   -4.71   -5.37   -5.80   -5.85   -5.41   -4.39   -2.75   -0.46    2.58    6.56   11.82
+    40.0    0.00   -0.07   -0.36   -0.86   -1.52   -2.28   -3.09   -3.91   -4.69   -5.35   -5.77   -5.81   -5.35   -4.30   -2.63   -0.32    2.71    6.70   12.07
+    45.0    0.00   -0.07   -0.37   -0.87   -1.52   -2.28   -3.08   -3.90   -4.68   -5.34   -5.76   -5.78   -5.29   -4.19   -2.49   -0.17    2.85    6.83   12.25
+    50.0    0.00   -0.07   -0.37   -0.87   -1.52   -2.27   -3.08   -3.89   -4.68   -5.34   -5.75   -5.75   -5.22   -4.09   -2.35   -0.02    2.99    6.93   12.35
+    55.0    0.00   -0.07   -0.37   -0.87   -1.52   -2.27   -3.07   -3.89   -4.67   -5.34   -5.74   -5.73   -5.17   -4.00   -2.22    0.12    3.10    7.01   12.36
+    60.0    0.00   -0.07   -0.37   -0.88   -1.53   -2.27   -3.07   -3.89   -4.68   -5.34   -5.74   -5.71   -5.13   -3.93   -2.13    0.22    3.19    7.04   12.29
+    65.0    0.00   -0.07   -0.38   -0.88   -1.53   -2.27   -3.07   -3.89   -4.68   -5.35   -5.74   -5.70   -5.10   -3.89   -2.09    0.27    3.23    7.04   12.16
+    70.0    0.00   -0.07   -0.38   -0.88   -1.53   -2.27   -3.07   -3.89   -4.69   -5.35   -5.74   -5.69   -5.09   -3.88   -2.09    0.25    3.21    7.00   11.98
+    75.0    0.00   -0.07   -0.38   -0.89   -1.53   -2.27   -3.07   -3.90   -4.69   -5.35   -5.73   -5.68   -5.08   -3.90   -2.15    0.18    3.15    6.94   11.79
+    80.0    0.00   -0.08   -0.39   -0.89   -1.54   -2.28   -3.08   -3.90   -4.69   -5.34   -5.71   -5.66   -5.09   -3.96   -2.25    0.05    3.04    6.85   11.62
+    85.0    0.00   -0.08   -0.39   -0.90   -1.55   -2.29   -3.09   -3.91   -4.69   -5.32   -5.68   -5.64   -5.11   -4.03   -2.39   -0.11    2.90    6.75   11.46
+    90.0    0.00   -0.08   -0.40   -0.91   -1.56   -2.30   -3.10   -3.92   -4.69   -5.30   -5.65   -5.61   -5.12   -4.11   -2.54   -0.30    2.74    6.66   11.35
+    95.0    0.00   -0.08   -0.40   -0.91   -1.56   -2.31   -3.11   -3.92   -4.68   -5.27   -5.60   -5.57   -5.12   -4.18   -2.68   -0.48    2.59    6.59   11.29
+   100.0    0.00   -0.09   -0.41   -0.92   -1.57   -2.32   -3.12   -3.93   -4.66   -5.24   -5.56   -5.53   -5.11   -4.24   -2.81   -0.64    2.46    6.53   11.27
+   105.0    0.00   -0.09   -0.41   -0.93   -1.58   -2.33   -3.13   -3.93   -4.65   -5.21   -5.51   -5.49   -5.09   -4.27   -2.89   -0.75    2.36    6.50   11.28
+   110.0    0.00   -0.09   -0.42   -0.94   -1.59   -2.34   -3.14   -3.93   -4.64   -5.18   -5.47   -5.44   -5.06   -4.26   -2.92   -0.80    2.32    6.50   11.32
+   115.0    0.00   -0.09   -0.42   -0.94   -1.60   -2.35   -3.14   -3.93   -4.63   -5.16   -5.44   -5.40   -5.01   -4.22   -2.89   -0.79    2.32    6.52   11.36
+   120.0    0.00   -0.10   -0.43   -0.95   -1.61   -2.36   -3.15   -3.93   -4.63   -5.15   -5.42   -5.37   -4.96   -4.15   -2.81   -0.73    2.36    6.54   11.39
+   125.0    0.00   -0.10   -0.43   -0.96   -1.62   -2.37   -3.16   -3.94   -4.63   -5.15   -5.41   -5.34   -4.90   -4.06   -2.70   -0.62    2.44    6.57   11.41
+   130.0    0.00   -0.10   -0.44   -0.96   -1.63   -2.37   -3.16   -3.94   -4.65   -5.17   -5.43   -5.33   -4.85   -3.96   -2.56   -0.48    2.53    6.59   11.41
+   135.0    0.00   -0.10   -0.44   -0.97   -1.63   -2.38   -3.17   -3.96   -4.67   -5.20   -5.45   -5.34   -4.82   -3.86   -2.42   -0.34    2.61    6.59   11.38
+   140.0    0.00   -0.11   -0.45   -0.98   -1.64   -2.39   -3.18   -3.98   -4.70   -5.24   -5.50   -5.36   -4.79   -3.78   -2.30   -0.22    2.68    6.56   11.32
+   145.0    0.00   -0.11   -0.45   -0.98   -1.65   -2.40   -3.20   -4.00   -4.74   -5.29   -5.55   -5.40   -4.80   -3.73   -2.21   -0.13    2.70    6.51   11.24
+   150.0    0.00   -0.11   -0.45   -0.98   -1.65   -2.41   -3.22   -4.03   -4.78   -5.35   -5.61   -5.45   -4.82   -3.72   -2.17   -0.11    2.68    6.41   11.14
+   155.0    0.00   -0.11   -0.46   -0.99   -1.66   -2.42   -3.24   -4.06   -4.82   -5.41   -5.68   -5.51   -4.87   -3.75   -2.19   -0.13    2.61    6.29   11.02
+   160.0    0.00   -0.12   -0.46   -0.99   -1.66   -2.43   -3.26   -4.10   -4.87   -5.46   -5.74   -5.58   -4.93   -3.82   -2.26   -0.22    2.49    6.15   10.89
+   165.0    0.00   -0.12   -0.46   -0.99   -1.67   -2.44   -3.28   -4.13   -4.91   -5.51   -5.80   -5.65   -5.02   -3.91   -2.37   -0.34    2.35    6.00   10.75
+   170.0    0.00   -0.12   -0.46   -0.99   -1.67   -2.45   -3.30   -4.16   -4.95   -5.56   -5.85   -5.71   -5.10   -4.03   -2.51   -0.50    2.20    5.85   10.59
+   175.0    0.00   -0.12   -0.46   -0.99   -1.67   -2.46   -3.32   -4.18   -4.98   -5.59   -5.89   -5.77   -5.19   -4.15   -2.66   -0.65    2.06    5.71   10.44
+   180.0    0.00   -0.13   -0.46   -0.99   -1.67   -2.46   -3.33   -4.20   -5.00   -5.62   -5.92   -5.82   -5.26   -4.26   -2.79   -0.78    1.94    5.61   10.29
+   185.0    0.00   -0.13   -0.46   -0.99   -1.67   -2.46   -3.33   -4.21   -5.02   -5.63   -5.94   -5.85   -5.32   -4.35   -2.89   -0.88    1.87    5.54   10.15
+   190.0    0.00   -0.13   -0.47   -0.99   -1.66   -2.46   -3.33   -4.22   -5.02   -5.63   -5.94   -5.86   -5.35   -4.40   -2.95   -0.92    1.86    5.52   10.04
+   195.0    0.00   -0.13   -0.47   -0.98   -1.65   -2.45   -3.32   -4.21   -5.02   -5.63   -5.93   -5.86   -5.36   -4.40   -2.95   -0.90    1.90    5.56    9.97
+   200.0    0.00   -0.14   -0.47   -0.98   -1.64   -2.43   -3.31   -4.20   -5.00   -5.61   -5.92   -5.84   -5.33   -4.37   -2.90   -0.83    1.99    5.63    9.96
+   205.0    0.00   -0.14   -0.47   -0.98   -1.63   -2.42   -3.29   -4.18   -4.98   -5.59   -5.89   -5.80   -5.27   -4.29   -2.80   -0.70    2.13    5.75   10.00
+   210.0    0.00   -0.14   -0.48   -0.98   -1.63   -2.40   -3.26   -4.15   -4.96   -5.57   -5.85   -5.74   -5.19   -4.18   -2.65   -0.53    2.30    5.89   10.10
+   215.0    0.00   -0.14   -0.48   -0.98   -1.62   -2.38   -3.24   -4.12   -4.93   -5.53   -5.81   -5.68   -5.09   -4.04   -2.49   -0.35    2.48    6.05   10.26
+   220.0    0.00   -0.15   -0.48   -0.98   -1.62   -2.37   -3.22   -4.09   -4.90   -5.50   -5.77   -5.61   -4.99   -3.89   -2.31   -0.16    2.65    6.21   10.46
+   225.0    0.00   -0.15   -0.49   -0.99   -1.62   -2.36   -3.19   -4.06   -4.86   -5.46   -5.72   -5.54   -4.88   -3.75   -2.14    0.00    2.79    6.34   10.67
+   230.0    0.00   -0.15   -0.50   -1.00   -1.62   -2.35   -3.18   -4.03   -4.83   -5.42   -5.67   -5.47   -4.78   -3.61   -1.99    0.14    2.90    6.45   10.88
+   235.0    0.00   -0.16   -0.51   -1.01   -1.63   -2.35   -3.16   -4.01   -4.79   -5.38   -5.62   -5.40   -4.69   -3.51   -1.87    0.24    2.97    6.51   11.05
+   240.0    0.00   -0.16   -0.51   -1.02   -1.64   -2.36   -3.15   -3.98   -4.76   -5.34   -5.57   -5.35   -4.63   -3.43   -1.80    0.30    2.99    6.52   11.16
+   245.0    0.00   -0.16   -0.52   -1.04   -1.66   -2.37   -3.15   -3.96   -4.72   -5.30   -5.53   -5.31   -4.59   -3.39   -1.76    0.31    2.96    6.48   11.18
+   250.0    0.00   -0.16   -0.53   -1.05   -1.68   -2.39   -3.15   -3.95   -4.69   -5.26   -5.50   -5.29   -4.58   -3.39   -1.77    0.28    2.91    6.39   11.10
+   255.0    0.00   -0.17   -0.54   -1.07   -1.70   -2.40   -3.16   -3.93   -4.66   -5.22   -5.47   -5.28   -4.59   -3.41   -1.81    0.23    2.82    6.26   10.92
+   260.0    0.00   -0.17   -0.55   -1.09   -1.72   -2.43   -3.17   -3.92   -4.63   -5.19   -5.45   -5.28   -4.62   -3.47   -1.87    0.15    2.71    6.10   10.66
+   265.0    0.00   -0.17   -0.55   -1.10   -1.75   -2.45   -3.18   -3.92   -4.61   -5.16   -5.43   -5.29   -4.66   -3.54   -1.96    0.06    2.60    5.92   10.34
+   270.0    0.00   -0.17   -0.56   -1.11   -1.77   -2.47   -3.19   -3.92   -4.60   -5.14   -5.43   -5.31   -4.72   -3.62   -2.05   -0.04    2.49    5.75   10.00
+   275.0    0.00   -0.17   -0.56   -1.12   -1.78   -2.48   -3.20   -3.92   -4.59   -5.13   -5.42   -5.33   -4.77   -3.70   -2.15   -0.14    2.39    5.59    9.67
+   280.0    0.00   -0.17   -0.56   -1.13   -1.79   -2.50   -3.21   -3.92   -4.58   -5.12   -5.42   -5.35   -4.81   -3.77   -2.24   -0.23    2.29    5.46    9.40
+   285.0    0.00   -0.16   -0.56   -1.13   -1.79   -2.50   -3.22   -3.93   -4.59   -5.13   -5.43   -5.37   -4.85   -3.83   -2.31   -0.31    2.22    5.37    9.22
+   290.0    0.00   -0.16   -0.55   -1.12   -1.79   -2.50   -3.22   -3.94   -4.60   -5.14   -5.44   -5.38   -4.87   -3.87   -2.38   -0.39    2.16    5.33    9.15
+   295.0    0.00   -0.16   -0.55   -1.11   -1.78   -2.49   -3.22   -3.94   -4.61   -5.15   -5.45   -5.38   -4.88   -3.89   -2.42   -0.45    2.11    5.34    9.19
+   300.0    0.00   -0.16   -0.54   -1.09   -1.76   -2.48   -3.22   -3.96   -4.64   -5.18   -5.46   -5.38   -4.87   -3.89   -2.45   -0.49    2.09    5.40    9.35
+   305.0    0.00   -0.15   -0.53   -1.07   -1.73   -2.45   -3.21   -3.97   -4.66   -5.21   -5.48   -5.38   -4.85   -3.88   -2.46   -0.52    2.08    5.49    9.59
+   310.0    0.00   -0.15   -0.51   -1.05   -1.70   -2.43   -3.20   -3.98   -4.69   -5.25   -5.51   -5.38   -4.83   -3.86   -2.46   -0.54    2.09    5.60    9.89
+   315.0    0.00   -0.14   -0.50   -1.02   -1.67   -2.40   -3.18   -3.98   -4.73   -5.29   -5.54   -5.39   -4.81   -3.84   -2.45   -0.54    2.11    5.73   10.21
+   320.0    0.00   -0.13   -0.48   -1.00   -1.63   -2.36   -3.16   -3.99   -4.76   -5.33   -5.58   -5.40   -4.80   -3.81   -2.43   -0.53    2.15    5.86   10.49
+   325.0    0.00   -0.13   -0.47   -0.97   -1.60   -2.33   -3.15   -4.00   -4.79   -5.38   -5.62   -5.43   -4.81   -3.80   -2.42   -0.52    2.19    5.97   10.72
+   330.0    0.00   -0.12   -0.45   -0.94   -1.56   -2.30   -3.13   -4.00   -4.82   -5.43   -5.67   -5.47   -4.83   -3.81   -2.41   -0.49    2.23    6.06   10.87
+   335.0    0.00   -0.12   -0.43   -0.92   -1.53   -2.27   -3.11   -4.01   -4.85   -5.47   -5.72   -5.52   -4.87   -3.83   -2.41   -0.47    2.28    6.12   10.93
+   340.0    0.00   -0.11   -0.42   -0.89   -1.51   -2.25   -3.10   -4.01   -4.86   -5.50   -5.77   -5.58   -4.93   -3.88   -2.43   -0.46    2.31    6.15   10.91
+   345.0    0.00   -0.10   -0.41   -0.88   -1.49   -2.23   -3.09   -4.01   -4.88   -5.53   -5.82   -5.65   -5.01   -3.94   -2.47   -0.46    2.34    6.15   10.82
+   350.0    0.00   -0.10   -0.40   -0.86   -1.47   -2.22   -3.08   -4.01   -4.88   -5.55   -5.86   -5.72   -5.09   -4.03   -2.53   -0.48    2.35    6.14   10.71
+   355.0    0.00   -0.09   -0.39   -0.85   -1.46   -2.21   -3.08   -4.00   -4.88   -5.56   -5.90   -5.78   -5.19   -4.13   -2.60   -0.50    2.35    6.11   10.59
+   360.0    0.00   -0.09   -0.38   -0.84   -1.46   -2.21   -3.08   -4.00   -4.87   -5.56   -5.92   -5.84   -5.28   -4.23   -2.68   -0.55    2.34    6.08   10.51
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH701946.3     NONE                                        TYPE / SERIAL NO    
+COPIED              Geo++ GmbH               2    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+COPIED FROM AOAD/M_T        NONE                            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.58     -0.37     91.85                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.23   -0.90   -1.93   -3.22   -4.62   -5.96   -7.09   -7.87   -8.21   -8.06   -7.39   -6.23   -4.55   -2.28    0.69    4.47    9.08   14.23
+     0.0    0.00   -0.27   -0.98   -2.07   -3.42   -4.87   -6.26   -7.43   -8.21   -8.53   -8.32   -7.62   -6.44   -4.77   -2.54    0.39    4.14    8.68   13.67
+     5.0    0.00   -0.27   -0.98   -2.06   -3.41   -4.86   -6.25   -7.41   -8.20   -8.52   -8.31   -7.60   -6.41   -4.74   -2.50    0.42    4.18    8.73   13.73
+    10.0    0.00   -0.26   -0.97   -2.05   -3.39   -4.84   -6.23   -7.40   -8.19   -8.50   -8.30   -7.58   -6.38   -4.70   -2.46    0.47    4.23    8.79   13.83
+    15.0    0.00   -0.26   -0.97   -2.05   -3.38   -4.82   -6.21   -7.37   -8.17   -8.49   -8.28   -7.56   -6.36   -4.66   -2.41    0.53    4.30    8.88   13.96
+    20.0    0.00   -0.26   -0.96   -2.03   -3.36   -4.80   -6.18   -7.35   -8.15   -8.47   -8.27   -7.54   -6.33   -4.62   -2.36    0.60    4.38    9.00   14.12
+    25.0    0.00   -0.26   -0.96   -2.02   -3.34   -4.77   -6.16   -7.32   -8.12   -8.44   -8.25   -7.53   -6.30   -4.58   -2.30    0.68    4.49    9.13   14.31
+    30.0    0.00   -0.26   -0.95   -2.01   -3.32   -4.75   -6.12   -7.28   -8.08   -8.42   -8.22   -7.51   -6.28   -4.54   -2.24    0.77    4.61    9.29   14.51
+    35.0    0.00   -0.25   -0.94   -2.00   -3.30   -4.72   -6.09   -7.25   -8.05   -8.38   -8.20   -7.48   -6.25   -4.50   -2.17    0.87    4.75    9.46   14.71
+    40.0    0.00   -0.25   -0.93   -1.98   -3.28   -4.69   -6.05   -7.21   -8.01   -8.35   -8.17   -7.46   -6.23   -4.46   -2.10    0.97    4.88    9.62   14.90
+    45.0    0.00   -0.25   -0.93   -1.97   -3.26   -4.66   -6.02   -7.16   -7.96   -8.30   -8.13   -7.43   -6.19   -4.42   -2.03    1.08    5.02    9.78   15.07
+    50.0    0.00   -0.24   -0.92   -1.95   -3.24   -4.63   -5.98   -7.12   -7.91   -8.26   -8.09   -7.39   -6.16   -4.37   -1.97    1.17    5.14    9.92   15.22
+    55.0    0.00   -0.24   -0.91   -1.94   -3.21   -4.60   -5.94   -7.07   -7.86   -8.20   -8.04   -7.35   -6.12   -4.33   -1.91    1.24    5.24   10.04   15.34
+    60.0    0.00   -0.24   -0.90   -1.92   -3.19   -4.57   -5.90   -7.02   -7.81   -8.15   -7.99   -7.30   -6.08   -4.29   -1.87    1.30    5.31   10.11   15.41
+    65.0    0.00   -0.23   -0.89   -1.91   -3.17   -4.54   -5.86   -6.97   -7.75   -8.09   -7.93   -7.25   -6.03   -4.25   -1.83    1.33    5.34   10.15   15.45
+    70.0    0.00   -0.23   -0.89   -1.90   -3.15   -4.51   -5.82   -6.93   -7.70   -8.03   -7.88   -7.20   -5.99   -4.22   -1.82    1.33    5.33   10.14   15.45
+    75.0    0.00   -0.23   -0.88   -1.88   -3.13   -4.49   -5.79   -6.89   -7.65   -7.98   -7.82   -7.15   -5.96   -4.21   -1.82    1.31    5.28   10.08   15.40
+    80.0    0.00   -0.23   -0.87   -1.87   -3.12   -4.46   -5.76   -6.85   -7.61   -7.94   -7.78   -7.11   -5.93   -4.20   -1.85    1.25    5.20    9.99   15.32
+    85.0    0.00   -0.22   -0.87   -1.86   -3.10   -4.44   -5.74   -6.83   -7.58   -7.91   -7.75   -7.09   -5.92   -4.21   -1.89    1.17    5.09    9.86   15.20
+    90.0    0.00   -0.22   -0.86   -1.86   -3.09   -4.43   -5.72   -6.81   -7.56   -7.89   -7.73   -7.08   -5.92   -4.24   -1.95    1.08    4.96    9.71   15.05
+    95.0    0.00   -0.22   -0.86   -1.85   -3.09   -4.42   -5.71   -6.80   -7.56   -7.89   -7.73   -7.09   -5.94   -4.28   -2.02    0.97    4.82    9.54   14.88
+   100.0    0.00   -0.22   -0.86   -1.85   -3.08   -4.42   -5.71   -6.80   -7.56   -7.90   -7.75   -7.11   -5.98   -4.34   -2.11    0.86    4.68    9.37   14.70
+   105.0    0.00   -0.22   -0.86   -1.85   -3.08   -4.42   -5.72   -6.81   -7.58   -7.92   -7.78   -7.16   -6.04   -4.41   -2.19    0.75    4.54    9.21   14.52
+   110.0    0.00   -0.21   -0.85   -1.85   -3.09   -4.43   -5.73   -6.83   -7.61   -7.96   -7.83   -7.21   -6.10   -4.49   -2.28    0.64    4.42    9.07   14.35
+   115.0    0.00   -0.21   -0.85   -1.85   -3.09   -4.44   -5.75   -6.86   -7.65   -8.01   -7.89   -7.28   -6.18   -4.57   -2.36    0.56    4.32    8.95   14.20
+   120.0    0.00   -0.21   -0.86   -1.86   -3.10   -4.46   -5.77   -6.90   -7.69   -8.06   -7.95   -7.35   -6.25   -4.64   -2.44    0.48    4.25    8.86   14.08
+   125.0    0.00   -0.21   -0.86   -1.86   -3.12   -4.48   -5.80   -6.93   -7.73   -8.11   -8.01   -7.42   -6.33   -4.72   -2.50    0.43    4.20    8.81   13.99
+   130.0    0.00   -0.21   -0.86   -1.87   -3.13   -4.50   -5.83   -6.97   -7.78   -8.16   -8.07   -7.48   -6.39   -4.78   -2.55    0.40    4.18    8.78   13.94
+   135.0    0.00   -0.21   -0.86   -1.88   -3.15   -4.53   -5.86   -7.01   -7.82   -8.21   -8.12   -7.54   -6.45   -4.83   -2.59    0.38    4.17    8.78   13.92
+   140.0    0.00   -0.21   -0.86   -1.89   -3.16   -4.55   -5.89   -7.04   -7.85   -8.24   -8.16   -7.58   -6.49   -4.87   -2.62    0.37    4.18    8.79   13.93
+   145.0    0.00   -0.21   -0.87   -1.89   -3.18   -4.57   -5.92   -7.07   -7.88   -8.28   -8.19   -7.61   -6.52   -4.89   -2.63    0.37    4.19    8.81   13.95
+   150.0    0.00   -0.21   -0.87   -1.90   -3.19   -4.59   -5.95   -7.10   -7.91   -8.30   -8.21   -7.63   -6.54   -4.90   -2.63    0.37    4.21    8.83   13.98
+   155.0    0.00   -0.21   -0.87   -1.91   -3.20   -4.61   -5.97   -7.12   -7.93   -8.32   -8.23   -7.65   -6.55   -4.91   -2.64    0.38    4.21    8.84   14.00
+   160.0    0.00   -0.21   -0.87   -1.91   -3.21   -4.63   -5.98   -7.13   -7.94   -8.33   -8.24   -7.65   -6.56   -4.91   -2.64    0.38    4.21    8.83   14.00
+   165.0    0.00   -0.21   -0.88   -1.92   -3.22   -4.64   -6.00   -7.14   -7.95   -8.34   -8.24   -7.65   -6.55   -4.91   -2.64    0.37    4.19    8.81   13.98
+   170.0    0.00   -0.21   -0.88   -1.92   -3.23   -4.64   -6.00   -7.15   -7.96   -8.34   -8.25   -7.65   -6.55   -4.91   -2.64    0.35    4.16    8.76   13.93
+   175.0    0.00   -0.21   -0.88   -1.92   -3.23   -4.65   -6.01   -7.16   -7.97   -8.35   -8.25   -7.65   -6.55   -4.90   -2.64    0.33    4.11    8.70   13.87
+   180.0    0.00   -0.21   -0.88   -1.92   -3.23   -4.65   -6.01   -7.16   -7.97   -8.35   -8.25   -7.66   -6.55   -4.90   -2.65    0.31    4.07    8.63   13.79
+   185.0    0.00   -0.21   -0.88   -1.92   -3.23   -4.64   -6.00   -7.16   -7.97   -8.36   -8.26   -7.66   -6.55   -4.90   -2.66    0.28    4.02    8.57   13.72
+   190.0    0.00   -0.21   -0.87   -1.92   -3.22   -4.64   -6.00   -7.15   -7.97   -8.36   -8.26   -7.66   -6.54   -4.90   -2.67    0.26    3.99    8.52   13.66
+   195.0    0.00   -0.21   -0.87   -1.91   -3.21   -4.63   -5.99   -7.15   -7.97   -8.35   -8.25   -7.65   -6.53   -4.89   -2.66    0.26    3.97    8.50   13.64
+   200.0    0.00   -0.21   -0.87   -1.91   -3.20   -4.61   -5.98   -7.14   -7.96   -8.34   -8.24   -7.63   -6.52   -4.88   -2.65    0.27    3.98    8.52   13.67
+   205.0    0.00   -0.21   -0.87   -1.90   -3.19   -4.60   -5.96   -7.12   -7.94   -8.33   -8.22   -7.61   -6.49   -4.85   -2.62    0.30    4.03    8.58   13.75
+   210.0    0.00   -0.21   -0.87   -1.89   -3.18   -4.59   -5.94   -7.10   -7.92   -8.30   -8.19   -7.57   -6.45   -4.80   -2.57    0.35    4.11    8.70   13.88
+   215.0    0.00   -0.21   -0.86   -1.89   -3.17   -4.57   -5.92   -7.08   -7.89   -8.26   -8.14   -7.52   -6.39   -4.74   -2.51    0.44    4.22    8.85   14.06
+   220.0    0.00   -0.21   -0.86   -1.88   -3.16   -4.55   -5.90   -7.05   -7.85   -8.22   -8.09   -7.46   -6.32   -4.67   -2.42    0.54    4.36    9.04   14.28
+   225.0    0.00   -0.21   -0.86   -1.88   -3.15   -4.53   -5.88   -7.01   -7.81   -8.17   -8.03   -7.38   -6.24   -4.58   -2.32    0.67    4.53    9.25   14.52
+   230.0    0.00   -0.21   -0.86   -1.87   -3.14   -4.52   -5.85   -6.98   -7.77   -8.11   -7.96   -7.30   -6.15   -4.48   -2.20    0.81    4.71    9.46   14.74
+   235.0    0.00   -0.21   -0.86   -1.87   -3.13   -4.50   -5.83   -6.95   -7.72   -8.05   -7.89   -7.22   -6.06   -4.37   -2.08    0.96    4.88    9.66   14.94
+   240.0    0.00   -0.22   -0.86   -1.86   -3.12   -4.49   -5.80   -6.91   -7.68   -7.99   -7.82   -7.14   -5.97   -4.27   -1.96    1.10    5.04    9.83   15.09
+   245.0    0.00   -0.22   -0.86   -1.86   -3.12   -4.48   -5.78   -6.88   -7.64   -7.94   -7.76   -7.07   -5.88   -4.17   -1.84    1.23    5.18    9.95   15.17
+   250.0    0.00   -0.22   -0.86   -1.87   -3.11   -4.47   -5.77   -6.86   -7.60   -7.90   -7.71   -7.01   -5.81   -4.08   -1.74    1.34    5.27   10.01   15.19
+   255.0    0.00   -0.22   -0.87   -1.87   -3.12   -4.47   -5.76   -6.84   -7.58   -7.87   -7.67   -6.97   -5.76   -4.01   -1.66    1.41    5.32   10.00   15.12
+   260.0    0.00   -0.22   -0.87   -1.87   -3.12   -4.47   -5.76   -6.84   -7.57   -7.86   -7.65   -6.94   -5.72   -3.97   -1.61    1.45    5.32    9.94   15.00
+   265.0    0.00   -0.23   -0.88   -1.88   -3.13   -4.48   -5.77   -6.84   -7.57   -7.86   -7.65   -6.93   -5.70   -3.94   -1.59    1.45    5.26    9.81   14.82
+   270.0    0.00   -0.23   -0.88   -1.89   -3.14   -4.49   -5.78   -6.85   -7.58   -7.87   -7.66   -6.94   -5.71   -3.94   -1.60    1.41    5.16    9.65   14.61
+   275.0    0.00   -0.23   -0.89   -1.90   -3.16   -4.51   -5.80   -6.88   -7.61   -7.90   -7.69   -6.97   -5.73   -3.97   -1.64    1.33    5.03    9.45   14.39
+   280.0    0.00   -0.23   -0.90   -1.92   -3.18   -4.54   -5.83   -6.91   -7.64   -7.93   -7.73   -7.01   -5.77   -4.02   -1.71    1.23    4.87    9.24   14.18
+   285.0    0.00   -0.24   -0.91   -1.93   -3.20   -4.56   -5.87   -6.95   -7.69   -7.98   -7.78   -7.06   -5.83   -4.09   -1.80    1.10    4.70    9.04   13.99
+   290.0    0.00   -0.24   -0.91   -1.95   -3.23   -4.60   -5.91   -7.00   -7.74   -8.04   -7.83   -7.12   -5.90   -4.17   -1.91    0.96    4.53    8.85   13.85
+   295.0    0.00   -0.24   -0.92   -1.96   -3.25   -4.63   -5.95   -7.05   -7.79   -8.09   -7.90   -7.19   -5.97   -4.26   -2.02    0.82    4.37    8.70   13.74
+   300.0    0.00   -0.25   -0.93   -1.98   -3.28   -4.67   -6.00   -7.10   -7.85   -8.15   -7.96   -7.26   -6.06   -4.36   -2.14    0.69    4.23    8.58   13.68
+   305.0    0.00   -0.25   -0.94   -2.00   -3.30   -4.71   -6.04   -7.16   -7.91   -8.21   -8.02   -7.32   -6.14   -4.46   -2.26    0.57    4.12    8.51   13.66
+   310.0    0.00   -0.25   -0.95   -2.01   -3.33   -4.74   -6.09   -7.21   -7.97   -8.27   -8.08   -7.39   -6.22   -4.55   -2.36    0.46    4.04    8.47   13.66
+   315.0    0.00   -0.26   -0.96   -2.03   -3.35   -4.78   -6.13   -7.26   -8.02   -8.33   -8.14   -7.45   -6.29   -4.64   -2.45    0.39    4.00    8.46   13.68
+   320.0    0.00   -0.26   -0.96   -2.04   -3.37   -4.81   -6.17   -7.30   -8.07   -8.38   -8.19   -7.51   -6.35   -4.71   -2.52    0.33    3.97    8.47   13.69
+   325.0    0.00   -0.26   -0.97   -2.05   -3.39   -4.83   -6.20   -7.34   -8.11   -8.42   -8.23   -7.55   -6.40   -4.76   -2.57    0.30    3.97    8.50   13.71
+   330.0    0.00   -0.26   -0.98   -2.06   -3.41   -4.85   -6.23   -7.37   -8.14   -8.45   -8.27   -7.59   -6.44   -4.81   -2.61    0.28    3.98    8.53   13.70
+   335.0    0.00   -0.26   -0.98   -2.07   -3.42   -4.87   -6.25   -7.40   -8.17   -8.48   -8.30   -7.62   -6.47   -4.83   -2.63    0.28    4.01    8.56   13.69
+   340.0    0.00   -0.27   -0.98   -2.07   -3.42   -4.88   -6.27   -7.42   -8.19   -8.51   -8.32   -7.64   -6.48   -4.84   -2.63    0.29    4.03    8.59   13.67
+   345.0    0.00   -0.27   -0.98   -2.08   -3.43   -4.88   -6.27   -7.43   -8.21   -8.52   -8.33   -7.64   -6.48   -4.84   -2.62    0.30    4.06    8.61   13.65
+   350.0    0.00   -0.27   -0.98   -2.08   -3.43   -4.88   -6.28   -7.43   -8.22   -8.53   -8.33   -7.64   -6.48   -4.82   -2.60    0.33    4.08    8.63   13.63
+   355.0    0.00   -0.27   -0.98   -2.07   -3.42   -4.88   -6.27   -7.43   -8.22   -8.53   -8.33   -7.63   -6.46   -4.80   -2.58    0.35    4.11    8.65   13.64
+   360.0    0.00   -0.27   -0.98   -2.07   -3.42   -4.87   -6.26   -7.43   -8.21   -8.53   -8.32   -7.62   -6.44   -4.77   -2.54    0.39    4.14    8.68   13.67
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.08     -0.59    120.35                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.13   -0.51   -1.08   -1.79   -2.58   -3.39   -4.17   -4.81   -5.21   -5.25   -4.86   -4.03   -2.83   -1.33    0.49    2.75    5.68    9.44
+     0.0    0.00   -0.12   -0.48   -1.02   -1.69   -2.44   -3.24   -4.04   -4.72   -5.17   -5.25   -4.89   -4.12   -3.00   -1.59    0.15    2.44    5.50    9.31
+     5.0    0.00   -0.12   -0.48   -1.02   -1.69   -2.44   -3.24   -4.03   -4.72   -5.16   -5.25   -4.90   -4.13   -3.01   -1.61    0.14    2.42    5.45    9.20
+    10.0    0.00   -0.12   -0.47   -1.01   -1.68   -2.44   -3.24   -4.03   -4.71   -5.15   -5.24   -4.90   -4.13   -3.02   -1.61    0.14    2.41    5.41    9.12
+    15.0    0.00   -0.12   -0.47   -1.01   -1.68   -2.44   -3.24   -4.02   -4.70   -5.14   -5.23   -4.89   -4.13   -3.02   -1.60    0.15    2.41    5.38    9.06
+    20.0    0.00   -0.11   -0.47   -1.01   -1.68   -2.44   -3.24   -4.02   -4.69   -5.13   -5.21   -4.88   -4.12   -3.00   -1.58    0.18    2.43    5.37    9.05
+    25.0    0.00   -0.11   -0.46   -1.00   -1.68   -2.44   -3.24   -4.02   -4.68   -5.11   -5.20   -4.86   -4.10   -2.97   -1.54    0.22    2.46    5.39    9.06
+    30.0    0.00   -0.11   -0.46   -1.00   -1.68   -2.45   -3.24   -4.01   -4.67   -5.09   -5.18   -4.84   -4.07   -2.93   -1.49    0.28    2.51    5.42    9.11
+    35.0    0.00   -0.11   -0.46   -1.00   -1.68   -2.45   -3.24   -4.01   -4.66   -5.08   -5.16   -4.81   -4.03   -2.88   -1.42    0.35    2.58    5.48    9.19
+    40.0    0.00   -0.11   -0.45   -1.00   -1.68   -2.45   -3.25   -4.01   -4.65   -5.06   -5.13   -4.78   -4.00   -2.83   -1.36    0.42    2.65    5.55    9.30
+    45.0    0.00   -0.10   -0.45   -0.99   -1.68   -2.45   -3.25   -4.01   -4.65   -5.05   -5.11   -4.75   -3.96   -2.78   -1.30    0.49    2.72    5.62    9.41
+    50.0    0.00   -0.10   -0.45   -0.99   -1.68   -2.45   -3.25   -4.01   -4.65   -5.05   -5.10   -4.72   -3.92   -2.73   -1.24    0.56    2.78    5.69    9.52
+    55.0    0.00   -0.10   -0.45   -0.99   -1.68   -2.46   -3.26   -4.02   -4.65   -5.04   -5.09   -4.70   -3.88   -2.69   -1.19    0.60    2.84    5.76    9.62
+    60.0    0.00   -0.10   -0.44   -0.99   -1.68   -2.46   -3.27   -4.03   -4.66   -5.05   -5.08   -4.68   -3.86   -2.66   -1.16    0.64    2.87    5.81    9.70
+    65.0    0.00   -0.10   -0.44   -0.99   -1.69   -2.47   -3.28   -4.05   -4.68   -5.06   -5.08   -4.67   -3.84   -2.64   -1.15    0.65    2.89    5.84    9.76
+    70.0    0.00   -0.10   -0.44   -0.99   -1.69   -2.48   -3.30   -4.07   -4.70   -5.07   -5.08   -4.67   -3.83   -2.64   -1.15    0.64    2.88    5.85    9.79
+    75.0    0.00   -0.10   -0.44   -0.99   -1.69   -2.49   -3.31   -4.09   -4.72   -5.09   -5.09   -4.67   -3.84   -2.65   -1.17    0.61    2.86    5.83    9.78
+    80.0    0.00   -0.10   -0.45   -1.00   -1.70   -2.50   -3.33   -4.12   -4.75   -5.11   -5.11   -4.68   -3.85   -2.67   -1.21    0.57    2.82    5.80    9.74
+    85.0    0.00   -0.10   -0.45   -1.00   -1.71   -2.52   -3.36   -4.14   -4.78   -5.14   -5.13   -4.70   -3.87   -2.70   -1.25    0.52    2.77    5.75    9.67
+    90.0    0.00   -0.10   -0.45   -1.01   -1.72   -2.54   -3.38   -4.17   -4.81   -5.17   -5.15   -4.72   -3.89   -2.73   -1.29    0.47    2.71    5.68    9.57
+    95.0    0.00   -0.10   -0.46   -1.02   -1.74   -2.55   -3.40   -4.20   -4.83   -5.19   -5.18   -4.74   -3.92   -2.77   -1.33    0.42    2.66    5.62    9.47
+   100.0    0.00   -0.11   -0.46   -1.03   -1.75   -2.58   -3.43   -4.22   -4.86   -5.22   -5.20   -4.77   -3.95   -2.80   -1.37    0.38    2.61    5.56    9.36
+   105.0    0.00   -0.11   -0.47   -1.04   -1.77   -2.60   -3.45   -4.25   -4.88   -5.24   -5.22   -4.79   -3.97   -2.82   -1.40    0.35    2.58    5.51    9.26
+   110.0    0.00   -0.11   -0.48   -1.05   -1.79   -2.62   -3.47   -4.27   -4.90   -5.26   -5.25   -4.82   -4.00   -2.84   -1.41    0.35    2.57    5.48    9.18
+   115.0    0.00   -0.11   -0.48   -1.07   -1.81   -2.64   -3.50   -4.29   -4.92   -5.28   -5.26   -4.84   -4.01   -2.85   -1.41    0.36    2.58    5.46    9.13
+   120.0    0.00   -0.12   -0.49   -1.08   -1.83   -2.66   -3.52   -4.30   -4.93   -5.29   -5.28   -4.85   -4.03   -2.86   -1.39    0.38    2.61    5.47    9.10
+   125.0    0.00   -0.12   -0.50   -1.10   -1.85   -2.68   -3.53   -4.32   -4.94   -5.30   -5.29   -4.87   -4.03   -2.85   -1.37    0.43    2.65    5.50    9.09
+   130.0    0.00   -0.12   -0.50   -1.11   -1.86   -2.70   -3.55   -4.33   -4.95   -5.30   -5.30   -4.88   -4.04   -2.84   -1.33    0.48    2.71    5.54    9.11
+   135.0    0.00   -0.12   -0.51   -1.12   -1.88   -2.72   -3.56   -4.33   -4.95   -5.30   -5.30   -4.88   -4.04   -2.82   -1.29    0.54    2.77    5.60    9.15
+   140.0    0.00   -0.13   -0.52   -1.13   -1.89   -2.73   -3.57   -4.33   -4.95   -5.31   -5.31   -4.89   -4.04   -2.80   -1.25    0.60    2.84    5.66    9.19
+   145.0    0.00   -0.13   -0.52   -1.14   -1.90   -2.74   -3.57   -4.33   -4.94   -5.31   -5.31   -4.89   -4.04   -2.79   -1.22    0.65    2.90    5.71    9.23
+   150.0    0.00   -0.13   -0.53   -1.15   -1.91   -2.74   -3.57   -4.33   -4.94   -5.31   -5.32   -4.90   -4.04   -2.78   -1.19    0.69    2.94    5.74    9.25
+   155.0    0.00   -0.13   -0.53   -1.15   -1.91   -2.74   -3.57   -4.33   -4.94   -5.31   -5.33   -4.91   -4.05   -2.78   -1.18    0.71    2.97    5.76    9.25
+   160.0    0.00   -0.13   -0.53   -1.15   -1.91   -2.74   -3.56   -4.32   -4.93   -5.31   -5.33   -4.92   -4.06   -2.78   -1.18    0.71    2.97    5.76    9.23
+   165.0    0.00   -0.14   -0.54   -1.15   -1.91   -2.73   -3.55   -4.31   -4.93   -5.31   -5.34   -4.94   -4.07   -2.80   -1.19    0.70    2.95    5.73    9.18
+   170.0    0.00   -0.14   -0.54   -1.15   -1.90   -2.72   -3.54   -4.30   -4.93   -5.32   -5.35   -4.95   -4.09   -2.82   -1.22    0.66    2.91    5.68    9.11
+   175.0    0.00   -0.14   -0.54   -1.15   -1.90   -2.71   -3.53   -4.30   -4.93   -5.32   -5.36   -4.96   -4.11   -2.84   -1.26    0.61    2.85    5.62    9.03
+   180.0    0.00   -0.14   -0.54   -1.14   -1.89   -2.70   -3.52   -4.29   -4.93   -5.33   -5.37   -4.97   -4.12   -2.87   -1.30    0.55    2.77    5.55    8.96
+   185.0    0.00   -0.14   -0.54   -1.14   -1.87   -2.69   -3.51   -4.29   -4.93   -5.34   -5.38   -4.98   -4.13   -2.89   -1.35    0.48    2.70    5.48    8.89
+   190.0    0.00   -0.14   -0.53   -1.13   -1.86   -2.67   -3.50   -4.29   -4.94   -5.34   -5.38   -4.97   -4.12   -2.90   -1.38    0.42    2.63    5.42    8.86
+   195.0    0.00   -0.14   -0.53   -1.12   -1.85   -2.66   -3.49   -4.28   -4.94   -5.34   -5.37   -4.96   -4.11   -2.90   -1.40    0.38    2.58    5.39    8.87
+   200.0    0.00   -0.14   -0.53   -1.12   -1.84   -2.65   -3.49   -4.29   -4.95   -5.34   -5.36   -4.94   -4.09   -2.89   -1.41    0.35    2.55    5.39    8.92
+   205.0    0.00   -0.15   -0.53   -1.11   -1.83   -2.64   -3.48   -4.29   -4.95   -5.34   -5.35   -4.91   -4.05   -2.86   -1.40    0.35    2.55    5.43    9.01
+   210.0    0.00   -0.15   -0.53   -1.11   -1.82   -2.63   -3.48   -4.29   -4.95   -5.34   -5.33   -4.88   -4.01   -2.82   -1.36    0.38    2.59    5.50    9.15
+   215.0    0.00   -0.15   -0.53   -1.10   -1.82   -2.63   -3.48   -4.29   -4.95   -5.33   -5.32   -4.85   -3.97   -2.77   -1.31    0.44    2.67    5.61    9.32
+   220.0    0.00   -0.15   -0.53   -1.10   -1.82   -2.63   -3.48   -4.29   -4.95   -5.32   -5.30   -4.82   -3.93   -2.71   -1.24    0.52    2.78    5.76    9.50
+   225.0    0.00   -0.15   -0.53   -1.10   -1.82   -2.63   -3.47   -4.28   -4.94   -5.31   -5.28   -4.79   -3.89   -2.66   -1.17    0.63    2.91    5.91    9.68
+   230.0    0.00   -0.15   -0.53   -1.11   -1.82   -2.63   -3.47   -4.28   -4.93   -5.30   -5.27   -4.78   -3.86   -2.61   -1.09    0.75    3.06    6.07    9.84
+   235.0    0.00   -0.15   -0.54   -1.11   -1.82   -2.63   -3.47   -4.27   -4.92   -5.29   -5.26   -4.77   -3.85   -2.58   -1.01    0.86    3.21    6.22    9.96
+   240.0    0.00   -0.15   -0.54   -1.11   -1.83   -2.63   -3.47   -4.26   -4.91   -5.28   -5.26   -4.78   -3.86   -2.56   -0.95    0.97    3.35    6.35   10.04
+   245.0    0.00   -0.15   -0.54   -1.12   -1.83   -2.63   -3.46   -4.25   -4.89   -5.27   -5.26   -4.80   -3.88   -2.56   -0.91    1.06    3.46    6.44   10.07
+   250.0    0.00   -0.15   -0.54   -1.12   -1.84   -2.63   -3.46   -4.23   -4.88   -5.26   -5.27   -4.83   -3.92   -2.58   -0.90    1.12    3.53    6.48   10.05
+   255.0    0.00   -0.16   -0.55   -1.13   -1.84   -2.64   -3.45   -4.22   -4.86   -5.26   -5.29   -4.87   -3.97   -2.63   -0.91    1.14    3.56    6.47    9.98
+   260.0    0.00   -0.16   -0.55   -1.13   -1.85   -2.64   -3.44   -4.20   -4.84   -5.25   -5.31   -4.91   -4.03   -2.68   -0.95    1.12    3.54    6.41    9.87
+   265.0    0.00   -0.16   -0.55   -1.14   -1.85   -2.64   -3.43   -4.19   -4.83   -5.25   -5.33   -4.96   -4.09   -2.75   -1.01    1.07    3.48    6.31    9.74
+   270.0    0.00   -0.16   -0.56   -1.14   -1.86   -2.63   -3.43   -4.18   -4.82   -5.25   -5.34   -5.00   -4.15   -2.82   -1.08    0.98    3.37    6.18    9.61
+   275.0    0.00   -0.16   -0.56   -1.14   -1.86   -2.63   -3.42   -4.16   -4.80   -5.24   -5.36   -5.03   -4.20   -2.89   -1.17    0.87    3.23    6.03    9.50
+   280.0    0.00   -0.16   -0.56   -1.15   -1.86   -2.63   -3.41   -4.15   -4.79   -5.24   -5.36   -5.05   -4.24   -2.95   -1.26    0.75    3.08    5.88    9.41
+   285.0    0.00   -0.16   -0.56   -1.14   -1.85   -2.62   -3.40   -4.14   -4.79   -5.23   -5.36   -5.06   -4.27   -3.00   -1.35    0.62    2.92    5.73    9.36
+   290.0    0.00   -0.16   -0.56   -1.14   -1.85   -2.61   -3.39   -4.13   -4.78   -5.23   -5.36   -5.06   -4.28   -3.04   -1.42    0.50    2.77    5.60    9.35
+   295.0    0.00   -0.16   -0.55   -1.14   -1.84   -2.60   -3.38   -4.12   -4.77   -5.22   -5.35   -5.05   -4.27   -3.05   -1.48    0.39    2.64    5.51    9.38
+   300.0    0.00   -0.15   -0.55   -1.13   -1.83   -2.59   -3.37   -4.12   -4.77   -5.21   -5.33   -5.02   -4.25   -3.06   -1.53    0.30    2.53    5.45    9.45
+   305.0    0.00   -0.15   -0.55   -1.12   -1.82   -2.57   -3.35   -4.11   -4.76   -5.20   -5.31   -4.99   -4.22   -3.04   -1.55    0.24    2.46    5.42    9.53
+   310.0    0.00   -0.15   -0.54   -1.11   -1.80   -2.56   -3.34   -4.10   -4.76   -5.20   -5.29   -4.96   -4.18   -3.02   -1.56    0.20    2.41    5.42    9.63
+   315.0    0.00   -0.15   -0.54   -1.10   -1.79   -2.54   -3.33   -4.09   -4.75   -5.19   -5.28   -4.93   -4.14   -2.99   -1.55    0.18    2.40    5.45    9.72
+   320.0    0.00   -0.15   -0.53   -1.09   -1.77   -2.52   -3.31   -4.08   -4.75   -5.18   -5.26   -4.90   -4.11   -2.96   -1.54    0.18    2.40    5.50    9.80
+   325.0    0.00   -0.14   -0.53   -1.08   -1.76   -2.51   -3.30   -4.07   -4.74   -5.18   -5.25   -4.88   -4.08   -2.94   -1.53    0.18    2.42    5.54    9.84
+   330.0    0.00   -0.14   -0.52   -1.07   -1.74   -2.49   -3.28   -4.07   -4.74   -5.18   -5.24   -4.86   -4.06   -2.92   -1.52    0.19    2.45    5.59    9.85
+   335.0    0.00   -0.14   -0.51   -1.06   -1.73   -2.48   -3.27   -4.06   -4.74   -5.17   -5.24   -4.86   -4.05   -2.92   -1.52    0.20    2.47    5.62    9.83
+   340.0    0.00   -0.14   -0.51   -1.05   -1.72   -2.46   -3.26   -4.05   -4.74   -5.17   -5.24   -4.86   -4.06   -2.92   -1.52    0.21    2.49    5.63    9.76
+   345.0    0.00   -0.13   -0.50   -1.04   -1.71   -2.46   -3.25   -4.05   -4.73   -5.17   -5.24   -4.86   -4.07   -2.93   -1.53    0.20    2.49    5.62    9.67
+   350.0    0.00   -0.13   -0.49   -1.03   -1.70   -2.45   -3.25   -4.04   -4.73   -5.17   -5.24   -4.87   -4.08   -2.95   -1.55    0.19    2.48    5.59    9.55
+   355.0    0.00   -0.13   -0.49   -1.03   -1.69   -2.44   -3.24   -4.04   -4.73   -5.17   -5.25   -4.88   -4.10   -2.98   -1.57    0.17    2.46    5.55    9.43
+   360.0    0.00   -0.12   -0.48   -1.02   -1.69   -2.44   -3.24   -4.04   -4.72   -5.17   -5.25   -4.89   -4.12   -3.00   -1.59    0.15    2.44    5.50    9.31
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH701946.3     SNOW                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               3    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+Number of Calibrated Antennas GPS:      003                 COMMENT             
+Number of Individual Calibrations GPS:  006                 COMMENT             
+   G01                                                      START OF FREQUENCY  
+      1.70     -0.54     89.93                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.23   -0.92   -1.99   -3.35   -4.89   -6.44   -7.85   -8.92   -9.49   -9.42   -8.63   -7.12   -4.94   -2.16    1.16    4.98    9.27   13.87
+     0.0    0.00   -0.26   -1.00   -2.13   -3.58   -5.18   -6.78   -8.18   -9.20   -9.68   -9.51   -8.67   -7.17   -5.05   -2.32    1.03    5.03    9.57   14.29
+     5.0    0.00   -0.26   -0.99   -2.12   -3.55   -5.15   -6.75   -8.15   -9.18   -9.66   -9.50   -8.64   -7.12   -4.98   -2.24    1.12    5.10    9.66   14.50
+    10.0    0.00   -0.26   -0.98   -2.10   -3.53   -5.12   -6.72   -8.13   -9.16   -9.65   -9.48   -8.62   -7.08   -4.91   -2.16    1.19    5.16    9.73   14.69
+    15.0    0.00   -0.25   -0.97   -2.08   -3.50   -5.09   -6.69   -8.10   -9.14   -9.64   -9.48   -8.60   -7.03   -4.84   -2.08    1.25    5.20    9.79   14.87
+    20.0    0.00   -0.25   -0.96   -2.07   -3.48   -5.06   -6.66   -8.08   -9.13   -9.63   -9.47   -8.58   -6.99   -4.78   -2.00    1.32    5.24    9.83   15.02
+    25.0    0.00   -0.25   -0.95   -2.05   -3.45   -5.03   -6.63   -8.05   -9.11   -9.63   -9.46   -8.57   -6.96   -4.72   -1.93    1.39    5.29    9.87   15.14
+    30.0    0.00   -0.24   -0.94   -2.03   -3.43   -5.01   -6.60   -8.03   -9.09   -9.62   -9.46   -8.55   -6.93   -4.66   -1.84    1.48    5.36    9.92   15.24
+    35.0    0.00   -0.24   -0.93   -2.01   -3.41   -4.98   -6.57   -8.00   -9.07   -9.60   -9.45   -8.54   -6.90   -4.60   -1.76    1.57    5.44    9.97   15.30
+    40.0    0.00   -0.24   -0.92   -2.00   -3.39   -4.95   -6.54   -7.97   -9.05   -9.59   -9.44   -8.53   -6.87   -4.55   -1.67    1.68    5.54   10.03   15.32
+    45.0    0.00   -0.23   -0.91   -1.98   -3.37   -4.93   -6.51   -7.94   -9.02   -9.56   -9.43   -8.52   -6.85   -4.50   -1.58    1.80    5.65   10.09   15.30
+    50.0    0.00   -0.23   -0.90   -1.97   -3.35   -4.90   -6.48   -7.91   -8.98   -9.54   -9.41   -8.51   -6.83   -4.45   -1.50    1.91    5.75   10.14   15.25
+    55.0    0.00   -0.23   -0.89   -1.96   -3.33   -4.88   -6.45   -7.87   -8.95   -9.50   -9.39   -8.50   -6.82   -4.42   -1.44    2.00    5.84   10.17   15.16
+    60.0    0.00   -0.22   -0.89   -1.94   -3.31   -4.85   -6.42   -7.83   -8.91   -9.47   -9.36   -8.48   -6.81   -4.40   -1.39    2.07    5.91   10.17   15.04
+    65.0    0.00   -0.22   -0.88   -1.93   -3.29   -4.83   -6.39   -7.79   -8.87   -9.44   -9.34   -8.48   -6.81   -4.39   -1.36    2.11    5.94   10.14   14.90
+    70.0    0.00   -0.22   -0.88   -1.93   -3.28   -4.81   -6.35   -7.75   -8.83   -9.40   -9.33   -8.48   -6.82   -4.40   -1.37    2.11    5.92   10.08   14.73
+    75.0    0.00   -0.22   -0.87   -1.92   -3.27   -4.78   -6.32   -7.72   -8.79   -9.38   -9.32   -8.49   -6.84   -4.43   -1.40    2.07    5.87    9.97   14.55
+    80.0    0.00   -0.21   -0.87   -1.91   -3.25   -4.77   -6.30   -7.69   -8.77   -9.36   -9.32   -8.51   -6.88   -4.49   -1.47    2.00    5.77    9.84   14.35
+    85.0    0.00   -0.21   -0.87   -1.91   -3.24   -4.75   -6.28   -7.66   -8.75   -9.36   -9.33   -8.54   -6.93   -4.56   -1.55    1.89    5.64    9.68   14.15
+    90.0    0.00   -0.21   -0.87   -1.91   -3.24   -4.74   -6.26   -7.65   -8.74   -9.37   -9.36   -8.59   -7.00   -4.65   -1.66    1.76    5.49    9.51   13.96
+    95.0    0.00   -0.21   -0.87   -1.91   -3.24   -4.73   -6.25   -7.64   -8.74   -9.38   -9.40   -8.65   -7.08   -4.75   -1.79    1.62    5.33    9.34   13.78
+   100.0    0.00   -0.21   -0.87   -1.91   -3.24   -4.73   -6.25   -7.65   -8.76   -9.41   -9.44   -8.71   -7.17   -4.85   -1.92    1.47    5.17    9.18   13.61
+   105.0    0.00   -0.21   -0.87   -1.91   -3.24   -4.73   -6.26   -7.66   -8.78   -9.45   -9.49   -8.78   -7.25   -4.96   -2.04    1.33    5.03    9.05   13.48
+   110.0    0.00   -0.21   -0.87   -1.92   -3.25   -4.74   -6.27   -7.67   -8.80   -9.48   -9.54   -8.84   -7.34   -5.06   -2.16    1.20    4.91    8.95   13.38
+   115.0    0.00   -0.21   -0.87   -1.92   -3.26   -4.76   -6.29   -7.70   -8.83   -9.52   -9.59   -8.90   -7.41   -5.16   -2.27    1.09    4.82    8.88   13.32
+   120.0    0.00   -0.21   -0.88   -1.93   -3.27   -4.78   -6.31   -7.73   -8.86   -9.55   -9.63   -8.95   -7.48   -5.24   -2.36    1.00    4.75    8.85   13.29
+   125.0    0.00   -0.21   -0.88   -1.94   -3.28   -4.79   -6.33   -7.75   -8.89   -9.58   -9.66   -8.99   -7.53   -5.31   -2.44    0.93    4.71    8.86   13.30
+   130.0    0.00   -0.21   -0.88   -1.95   -3.30   -4.81   -6.36   -7.78   -8.92   -9.60   -9.68   -9.01   -7.56   -5.36   -2.50    0.88    4.70    8.88   13.34
+   135.0    0.00   -0.21   -0.89   -1.95   -3.31   -4.83   -6.38   -7.80   -8.94   -9.62   -9.68   -9.02   -7.58   -5.40   -2.55    0.84    4.69    8.93   13.40
+   140.0    0.00   -0.21   -0.89   -1.96   -3.32   -4.85   -6.40   -7.82   -8.95   -9.62   -9.68   -9.02   -7.59   -5.42   -2.59    0.82    4.70    8.97   13.46
+   145.0    0.00   -0.22   -0.89   -1.96   -3.33   -4.86   -6.41   -7.83   -8.96   -9.62   -9.67   -9.02   -7.60   -5.44   -2.61    0.79    4.70    9.00   13.51
+   150.0    0.00   -0.22   -0.89   -1.97   -3.33   -4.86   -6.42   -7.84   -8.95   -9.61   -9.66   -9.01   -7.60   -5.45   -2.63    0.77    4.69    9.02   13.54
+   155.0    0.00   -0.22   -0.89   -1.97   -3.33   -4.86   -6.41   -7.83   -8.95   -9.60   -9.65   -8.99   -7.59   -5.45   -2.65    0.76    4.68    9.01   13.54
+   160.0    0.00   -0.22   -0.89   -1.96   -3.33   -4.85   -6.40   -7.82   -8.93   -9.59   -9.64   -8.99   -7.59   -5.46   -2.65    0.74    4.65    8.98   13.50
+   165.0    0.00   -0.22   -0.89   -1.96   -3.32   -4.84   -6.38   -7.80   -8.91   -9.57   -9.63   -8.98   -7.58   -5.45   -2.65    0.73    4.62    8.92   13.44
+   170.0    0.00   -0.22   -0.89   -1.95   -3.30   -4.82   -6.36   -7.77   -8.89   -9.56   -9.62   -8.97   -7.57   -5.44   -2.65    0.72    4.58    8.84   13.35
+   175.0    0.00   -0.22   -0.89   -1.94   -3.28   -4.79   -6.33   -7.74   -8.87   -9.54   -9.61   -8.96   -7.56   -5.42   -2.63    0.72    4.54    8.76   13.25
+   180.0    0.00   -0.22   -0.88   -1.93   -3.26   -4.76   -6.29   -7.71   -8.84   -9.52   -9.60   -8.95   -7.54   -5.39   -2.60    0.73    4.51    8.68   13.16
+   185.0    0.00   -0.22   -0.88   -1.92   -3.24   -4.73   -6.26   -7.67   -8.81   -9.50   -9.58   -8.93   -7.51   -5.35   -2.56    0.75    4.48    8.62   13.10
+   190.0    0.00   -0.22   -0.87   -1.91   -3.22   -4.70   -6.23   -7.64   -8.79   -9.48   -9.55   -8.89   -7.46   -5.29   -2.51    0.78    4.48    8.58   13.08
+   195.0    0.00   -0.22   -0.87   -1.90   -3.20   -4.68   -6.20   -7.61   -8.76   -9.45   -9.52   -8.84   -7.39   -5.22   -2.44    0.82    4.50    8.59   13.11
+   200.0    0.00   -0.22   -0.87   -1.89   -3.19   -4.65   -6.17   -7.58   -8.72   -9.41   -9.46   -8.77   -7.31   -5.14   -2.37    0.88    4.54    8.64   13.21
+   205.0    0.00   -0.22   -0.86   -1.88   -3.17   -4.64   -6.15   -7.56   -8.69   -9.36   -9.40   -8.69   -7.22   -5.04   -2.28    0.95    4.62    8.74   13.37
+   210.0    0.00   -0.22   -0.86   -1.87   -3.16   -4.62   -6.13   -7.54   -8.66   -9.31   -9.32   -8.59   -7.11   -4.94   -2.20    1.03    4.72    8.90   13.59
+   215.0    0.00   -0.22   -0.86   -1.86   -3.15   -4.61   -6.12   -7.52   -8.63   -9.25   -9.23   -8.48   -6.99   -4.84   -2.10    1.13    4.85    9.10   13.85
+   220.0    0.00   -0.22   -0.86   -1.86   -3.15   -4.61   -6.12   -7.51   -8.60   -9.19   -9.14   -8.37   -6.88   -4.73   -2.01    1.23    5.01    9.33   14.13
+   225.0    0.00   -0.22   -0.86   -1.86   -3.14   -4.61   -6.12   -7.50   -8.57   -9.13   -9.06   -8.27   -6.77   -4.64   -1.92    1.35    5.19    9.58   14.39
+   230.0    0.00   -0.22   -0.86   -1.86   -3.14   -4.61   -6.12   -7.49   -8.54   -9.08   -8.98   -8.17   -6.68   -4.55   -1.83    1.47    5.37    9.83   14.63
+   235.0    0.00   -0.22   -0.86   -1.86   -3.15   -4.62   -6.12   -7.49   -8.52   -9.04   -8.91   -8.10   -6.61   -4.48   -1.76    1.59    5.55   10.06   14.80
+   240.0    0.00   -0.22   -0.86   -1.86   -3.15   -4.62   -6.13   -7.49   -8.51   -9.01   -8.87   -8.05   -6.55   -4.43   -1.69    1.69    5.72   10.26   14.90
+   245.0    0.00   -0.22   -0.87   -1.87   -3.16   -4.64   -6.14   -7.49   -8.50   -8.99   -8.85   -8.02   -6.52   -4.40   -1.63    1.79    5.86   10.40   14.92
+   250.0    0.00   -0.23   -0.87   -1.88   -3.18   -4.65   -6.15   -7.51   -8.51   -9.00   -8.84   -8.02   -6.52   -4.38   -1.60    1.86    5.95   10.46   14.84
+   255.0    0.00   -0.23   -0.88   -1.89   -3.19   -4.67   -6.17   -7.53   -8.53   -9.02   -8.87   -8.04   -6.54   -4.38   -1.58    1.90    5.99   10.45   14.68
+   260.0    0.00   -0.23   -0.89   -1.90   -3.21   -4.69   -6.20   -7.55   -8.56   -9.05   -8.91   -8.08   -6.57   -4.41   -1.59    1.89    5.97   10.37   14.45
+   265.0    0.00   -0.24   -0.89   -1.92   -3.23   -4.71   -6.23   -7.59   -8.61   -9.10   -8.96   -8.13   -6.62   -4.45   -1.62    1.84    5.88   10.20   14.17
+   270.0    0.00   -0.24   -0.90   -1.94   -3.25   -4.75   -6.27   -7.64   -8.66   -9.17   -9.03   -8.20   -6.68   -4.50   -1.69    1.75    5.72    9.96   13.87
+   275.0    0.00   -0.24   -0.91   -1.96   -3.28   -4.78   -6.31   -7.69   -8.73   -9.24   -9.10   -8.27   -6.74   -4.57   -1.77    1.61    5.51    9.68   13.56
+   280.0    0.00   -0.25   -0.93   -1.98   -3.32   -4.83   -6.37   -7.75   -8.80   -9.32   -9.18   -8.34   -6.81   -4.64   -1.89    1.43    5.25    9.36   13.28
+   285.0    0.00   -0.25   -0.94   -2.00   -3.35   -4.88   -6.43   -7.83   -8.88   -9.40   -9.26   -8.41   -6.88   -4.73   -2.02    1.23    4.97    9.04   13.03
+   290.0    0.00   -0.25   -0.95   -2.02   -3.39   -4.93   -6.49   -7.90   -8.96   -9.48   -9.33   -8.48   -6.95   -4.82   -2.16    1.01    4.67    8.73   12.83
+   295.0    0.00   -0.26   -0.96   -2.05   -3.43   -4.98   -6.56   -7.98   -9.03   -9.55   -9.40   -8.54   -7.02   -4.91   -2.31    0.79    4.40    8.46   12.70
+   300.0    0.00   -0.26   -0.97   -2.07   -3.47   -5.04   -6.63   -8.05   -9.11   -9.62   -9.46   -8.59   -7.08   -5.01   -2.45    0.60    4.16    8.25   12.62
+   305.0    0.00   -0.26   -0.98   -2.09   -3.51   -5.09   -6.69   -8.12   -9.17   -9.67   -9.51   -8.64   -7.14   -5.09   -2.57    0.43    3.98    8.10   12.60
+   310.0    0.00   -0.27   -0.99   -2.12   -3.54   -5.14   -6.75   -8.18   -9.23   -9.72   -9.54   -8.68   -7.19   -5.17   -2.67    0.31    3.87    8.04   12.63
+   315.0    0.00   -0.27   -1.00   -2.13   -3.57   -5.18   -6.80   -8.23   -9.27   -9.75   -9.57   -8.71   -7.24   -5.23   -2.75    0.24    3.83    8.05   12.71
+   320.0    0.00   -0.27   -1.01   -2.15   -3.60   -5.22   -6.84   -8.26   -9.30   -9.77   -9.59   -8.74   -7.28   -5.28   -2.79    0.23    3.86    8.13   12.82
+   325.0    0.00   -0.27   -1.01   -2.16   -3.62   -5.24   -6.86   -8.28   -9.31   -9.78   -9.60   -8.76   -7.30   -5.31   -2.80    0.26    3.95    8.28   12.96
+   330.0    0.00   -0.27   -1.02   -2.17   -3.63   -5.26   -6.88   -8.30   -9.32   -9.78   -9.60   -8.77   -7.32   -5.32   -2.78    0.33    4.10    8.46   13.12
+   335.0    0.00   -0.27   -1.02   -2.17   -3.64   -5.26   -6.88   -8.29   -9.31   -9.77   -9.60   -8.77   -7.32   -5.31   -2.73    0.44    4.27    8.67   13.29
+   340.0    0.00   -0.27   -1.02   -2.17   -3.63   -5.26   -6.88   -8.28   -9.29   -9.76   -9.59   -8.76   -7.31   -5.28   -2.67    0.57    4.45    8.89   13.48
+   345.0    0.00   -0.27   -1.01   -2.17   -3.63   -5.25   -6.86   -8.26   -9.27   -9.74   -9.57   -8.74   -7.29   -5.23   -2.59    0.70    4.63    9.10   13.68
+   350.0    0.00   -0.27   -1.01   -2.16   -3.61   -5.23   -6.84   -8.24   -9.25   -9.72   -9.55   -8.72   -7.25   -5.18   -2.50    0.82    4.79    9.29   13.88
+   355.0    0.00   -0.27   -1.00   -2.15   -3.60   -5.21   -6.81   -8.21   -9.22   -9.70   -9.53   -8.70   -7.21   -5.11   -2.41    0.94    4.93    9.45   14.09
+   360.0    0.00   -0.26   -1.00   -2.13   -3.58   -5.18   -6.78   -8.18   -9.20   -9.68   -9.51   -8.67   -7.17   -5.05   -2.32    1.03    5.03    9.57   14.29
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.36      0.26    119.74                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.12   -0.45   -0.97   -1.61   -2.36   -3.17   -3.99   -4.76   -5.36   -5.68   -5.59   -5.03   -3.99   -2.46   -0.35    2.47    6.18   10.82
+     0.0    0.00   -0.09   -0.38   -0.84   -1.46   -2.21   -3.08   -4.00   -4.87   -5.56   -5.92   -5.84   -5.28   -4.23   -2.68   -0.55    2.34    6.08   10.51
+     5.0    0.00   -0.08   -0.37   -0.84   -1.46   -2.22   -3.08   -3.99   -4.86   -5.55   -5.92   -5.88   -5.36   -4.33   -2.77   -0.59    2.33    6.07   10.50
+    10.0    0.00   -0.08   -0.37   -0.84   -1.47   -2.23   -3.09   -3.98   -4.84   -5.52   -5.92   -5.91   -5.42   -4.41   -2.84   -0.63    2.32    6.08   10.57
+    15.0    0.00   -0.08   -0.36   -0.84   -1.48   -2.24   -3.09   -3.97   -4.81   -5.49   -5.90   -5.92   -5.47   -4.47   -2.89   -0.66    2.32    6.12   10.72
+    20.0    0.00   -0.08   -0.36   -0.84   -1.48   -2.25   -3.09   -3.96   -4.78   -5.46   -5.88   -5.92   -5.49   -4.50   -2.91   -0.66    2.34    6.19   10.95
+    25.0    0.00   -0.07   -0.36   -0.85   -1.49   -2.26   -3.10   -3.95   -4.76   -5.43   -5.85   -5.91   -5.48   -4.50   -2.90   -0.63    2.39    6.30   11.23
+    30.0    0.00   -0.07   -0.36   -0.85   -1.50   -2.27   -3.10   -3.94   -4.73   -5.40   -5.82   -5.88   -5.45   -4.46   -2.84   -0.56    2.47    6.42   11.53
+    35.0    0.00   -0.07   -0.36   -0.86   -1.51   -2.27   -3.09   -3.92   -4.71   -5.37   -5.80   -5.85   -5.41   -4.39   -2.75   -0.46    2.58    6.56   11.82
+    40.0    0.00   -0.07   -0.36   -0.86   -1.52   -2.28   -3.09   -3.91   -4.69   -5.35   -5.77   -5.81   -5.35   -4.30   -2.63   -0.32    2.71    6.70   12.07
+    45.0    0.00   -0.07   -0.37   -0.87   -1.52   -2.28   -3.08   -3.90   -4.68   -5.34   -5.76   -5.78   -5.29   -4.19   -2.49   -0.17    2.85    6.83   12.25
+    50.0    0.00   -0.07   -0.37   -0.87   -1.52   -2.27   -3.08   -3.89   -4.68   -5.34   -5.75   -5.75   -5.22   -4.09   -2.35   -0.02    2.99    6.93   12.35
+    55.0    0.00   -0.07   -0.37   -0.87   -1.52   -2.27   -3.07   -3.89   -4.67   -5.34   -5.74   -5.73   -5.17   -4.00   -2.22    0.12    3.10    7.01   12.36
+    60.0    0.00   -0.07   -0.37   -0.88   -1.53   -2.27   -3.07   -3.89   -4.68   -5.34   -5.74   -5.71   -5.13   -3.93   -2.13    0.22    3.19    7.04   12.29
+    65.0    0.00   -0.07   -0.38   -0.88   -1.53   -2.27   -3.07   -3.89   -4.68   -5.35   -5.74   -5.70   -5.10   -3.89   -2.09    0.27    3.23    7.04   12.16
+    70.0    0.00   -0.07   -0.38   -0.88   -1.53   -2.27   -3.07   -3.89   -4.69   -5.35   -5.74   -5.69   -5.09   -3.88   -2.09    0.25    3.21    7.00   11.98
+    75.0    0.00   -0.07   -0.38   -0.89   -1.53   -2.27   -3.07   -3.90   -4.69   -5.35   -5.73   -5.68   -5.08   -3.90   -2.15    0.18    3.15    6.94   11.79
+    80.0    0.00   -0.08   -0.39   -0.89   -1.54   -2.28   -3.08   -3.90   -4.69   -5.34   -5.71   -5.66   -5.09   -3.96   -2.25    0.05    3.04    6.85   11.62
+    85.0    0.00   -0.08   -0.39   -0.90   -1.55   -2.29   -3.09   -3.91   -4.69   -5.32   -5.68   -5.64   -5.11   -4.03   -2.39   -0.11    2.90    6.75   11.46
+    90.0    0.00   -0.08   -0.40   -0.91   -1.56   -2.30   -3.10   -3.92   -4.69   -5.30   -5.65   -5.61   -5.12   -4.11   -2.54   -0.30    2.74    6.66   11.35
+    95.0    0.00   -0.08   -0.40   -0.91   -1.56   -2.31   -3.11   -3.92   -4.68   -5.27   -5.60   -5.57   -5.12   -4.18   -2.68   -0.48    2.59    6.59   11.29
+   100.0    0.00   -0.09   -0.41   -0.92   -1.57   -2.32   -3.12   -3.93   -4.66   -5.24   -5.56   -5.53   -5.11   -4.24   -2.81   -0.64    2.46    6.53   11.27
+   105.0    0.00   -0.09   -0.41   -0.93   -1.58   -2.33   -3.13   -3.93   -4.65   -5.21   -5.51   -5.49   -5.09   -4.27   -2.89   -0.75    2.36    6.50   11.28
+   110.0    0.00   -0.09   -0.42   -0.94   -1.59   -2.34   -3.14   -3.93   -4.64   -5.18   -5.47   -5.44   -5.06   -4.26   -2.92   -0.80    2.32    6.50   11.32
+   115.0    0.00   -0.09   -0.42   -0.94   -1.60   -2.35   -3.14   -3.93   -4.63   -5.16   -5.44   -5.40   -5.01   -4.22   -2.89   -0.79    2.32    6.52   11.36
+   120.0    0.00   -0.10   -0.43   -0.95   -1.61   -2.36   -3.15   -3.93   -4.63   -5.15   -5.42   -5.37   -4.96   -4.15   -2.81   -0.73    2.36    6.54   11.39
+   125.0    0.00   -0.10   -0.43   -0.96   -1.62   -2.37   -3.16   -3.94   -4.63   -5.15   -5.41   -5.34   -4.90   -4.06   -2.70   -0.62    2.44    6.57   11.41
+   130.0    0.00   -0.10   -0.44   -0.96   -1.63   -2.37   -3.16   -3.94   -4.65   -5.17   -5.43   -5.33   -4.85   -3.96   -2.56   -0.48    2.53    6.59   11.41
+   135.0    0.00   -0.10   -0.44   -0.97   -1.63   -2.38   -3.17   -3.96   -4.67   -5.20   -5.45   -5.34   -4.82   -3.86   -2.42   -0.34    2.61    6.59   11.38
+   140.0    0.00   -0.11   -0.45   -0.98   -1.64   -2.39   -3.18   -3.98   -4.70   -5.24   -5.50   -5.36   -4.79   -3.78   -2.30   -0.22    2.68    6.56   11.32
+   145.0    0.00   -0.11   -0.45   -0.98   -1.65   -2.40   -3.20   -4.00   -4.74   -5.29   -5.55   -5.40   -4.80   -3.73   -2.21   -0.13    2.70    6.51   11.24
+   150.0    0.00   -0.11   -0.45   -0.98   -1.65   -2.41   -3.22   -4.03   -4.78   -5.35   -5.61   -5.45   -4.82   -3.72   -2.17   -0.11    2.68    6.41   11.14
+   155.0    0.00   -0.11   -0.46   -0.99   -1.66   -2.42   -3.24   -4.06   -4.82   -5.41   -5.68   -5.51   -4.87   -3.75   -2.19   -0.13    2.61    6.29   11.02
+   160.0    0.00   -0.12   -0.46   -0.99   -1.66   -2.43   -3.26   -4.10   -4.87   -5.46   -5.74   -5.58   -4.93   -3.82   -2.26   -0.22    2.49    6.15   10.89
+   165.0    0.00   -0.12   -0.46   -0.99   -1.67   -2.44   -3.28   -4.13   -4.91   -5.51   -5.80   -5.65   -5.02   -3.91   -2.37   -0.34    2.35    6.00   10.75
+   170.0    0.00   -0.12   -0.46   -0.99   -1.67   -2.45   -3.30   -4.16   -4.95   -5.56   -5.85   -5.71   -5.10   -4.03   -2.51   -0.50    2.20    5.85   10.59
+   175.0    0.00   -0.12   -0.46   -0.99   -1.67   -2.46   -3.32   -4.18   -4.98   -5.59   -5.89   -5.77   -5.19   -4.15   -2.66   -0.65    2.06    5.71   10.44
+   180.0    0.00   -0.13   -0.46   -0.99   -1.67   -2.46   -3.33   -4.20   -5.00   -5.62   -5.92   -5.82   -5.26   -4.26   -2.79   -0.78    1.94    5.61   10.29
+   185.0    0.00   -0.13   -0.46   -0.99   -1.67   -2.46   -3.33   -4.21   -5.02   -5.63   -5.94   -5.85   -5.32   -4.35   -2.89   -0.88    1.87    5.54   10.15
+   190.0    0.00   -0.13   -0.47   -0.99   -1.66   -2.46   -3.33   -4.22   -5.02   -5.63   -5.94   -5.86   -5.35   -4.40   -2.95   -0.92    1.86    5.52   10.04
+   195.0    0.00   -0.13   -0.47   -0.98   -1.65   -2.45   -3.32   -4.21   -5.02   -5.63   -5.93   -5.86   -5.36   -4.40   -2.95   -0.90    1.90    5.56    9.97
+   200.0    0.00   -0.14   -0.47   -0.98   -1.64   -2.43   -3.31   -4.20   -5.00   -5.61   -5.92   -5.84   -5.33   -4.37   -2.90   -0.83    1.99    5.63    9.96
+   205.0    0.00   -0.14   -0.47   -0.98   -1.63   -2.42   -3.29   -4.18   -4.98   -5.59   -5.89   -5.80   -5.27   -4.29   -2.80   -0.70    2.13    5.75   10.00
+   210.0    0.00   -0.14   -0.48   -0.98   -1.63   -2.40   -3.26   -4.15   -4.96   -5.57   -5.85   -5.74   -5.19   -4.18   -2.65   -0.53    2.30    5.89   10.10
+   215.0    0.00   -0.14   -0.48   -0.98   -1.62   -2.38   -3.24   -4.12   -4.93   -5.53   -5.81   -5.68   -5.09   -4.04   -2.49   -0.35    2.48    6.05   10.26
+   220.0    0.00   -0.15   -0.48   -0.98   -1.62   -2.37   -3.22   -4.09   -4.90   -5.50   -5.77   -5.61   -4.99   -3.89   -2.31   -0.16    2.65    6.21   10.46
+   225.0    0.00   -0.15   -0.49   -0.99   -1.62   -2.36   -3.19   -4.06   -4.86   -5.46   -5.72   -5.54   -4.88   -3.75   -2.14    0.00    2.79    6.34   10.67
+   230.0    0.00   -0.15   -0.50   -1.00   -1.62   -2.35   -3.18   -4.03   -4.83   -5.42   -5.67   -5.47   -4.78   -3.61   -1.99    0.14    2.90    6.45   10.88
+   235.0    0.00   -0.16   -0.51   -1.01   -1.63   -2.35   -3.16   -4.01   -4.79   -5.38   -5.62   -5.40   -4.69   -3.51   -1.87    0.24    2.97    6.51   11.05
+   240.0    0.00   -0.16   -0.51   -1.02   -1.64   -2.36   -3.15   -3.98   -4.76   -5.34   -5.57   -5.35   -4.63   -3.43   -1.80    0.30    2.99    6.52   11.16
+   245.0    0.00   -0.16   -0.52   -1.04   -1.66   -2.37   -3.15   -3.96   -4.72   -5.30   -5.53   -5.31   -4.59   -3.39   -1.76    0.31    2.96    6.48   11.18
+   250.0    0.00   -0.16   -0.53   -1.05   -1.68   -2.39   -3.15   -3.95   -4.69   -5.26   -5.50   -5.29   -4.58   -3.39   -1.77    0.28    2.91    6.39   11.10
+   255.0    0.00   -0.17   -0.54   -1.07   -1.70   -2.40   -3.16   -3.93   -4.66   -5.22   -5.47   -5.28   -4.59   -3.41   -1.81    0.23    2.82    6.26   10.92
+   260.0    0.00   -0.17   -0.55   -1.09   -1.72   -2.43   -3.17   -3.92   -4.63   -5.19   -5.45   -5.28   -4.62   -3.47   -1.87    0.15    2.71    6.10   10.66
+   265.0    0.00   -0.17   -0.55   -1.10   -1.75   -2.45   -3.18   -3.92   -4.61   -5.16   -5.43   -5.29   -4.66   -3.54   -1.96    0.06    2.60    5.92   10.34
+   270.0    0.00   -0.17   -0.56   -1.11   -1.77   -2.47   -3.19   -3.92   -4.60   -5.14   -5.43   -5.31   -4.72   -3.62   -2.05   -0.04    2.49    5.75   10.00
+   275.0    0.00   -0.17   -0.56   -1.12   -1.78   -2.48   -3.20   -3.92   -4.59   -5.13   -5.42   -5.33   -4.77   -3.70   -2.15   -0.14    2.39    5.59    9.67
+   280.0    0.00   -0.17   -0.56   -1.13   -1.79   -2.50   -3.21   -3.92   -4.58   -5.12   -5.42   -5.35   -4.81   -3.77   -2.24   -0.23    2.29    5.46    9.40
+   285.0    0.00   -0.16   -0.56   -1.13   -1.79   -2.50   -3.22   -3.93   -4.59   -5.13   -5.43   -5.37   -4.85   -3.83   -2.31   -0.31    2.22    5.37    9.22
+   290.0    0.00   -0.16   -0.55   -1.12   -1.79   -2.50   -3.22   -3.94   -4.60   -5.14   -5.44   -5.38   -4.87   -3.87   -2.38   -0.39    2.16    5.33    9.15
+   295.0    0.00   -0.16   -0.55   -1.11   -1.78   -2.49   -3.22   -3.94   -4.61   -5.15   -5.45   -5.38   -4.88   -3.89   -2.42   -0.45    2.11    5.34    9.19
+   300.0    0.00   -0.16   -0.54   -1.09   -1.76   -2.48   -3.22   -3.96   -4.64   -5.18   -5.46   -5.38   -4.87   -3.89   -2.45   -0.49    2.09    5.40    9.35
+   305.0    0.00   -0.15   -0.53   -1.07   -1.73   -2.45   -3.21   -3.97   -4.66   -5.21   -5.48   -5.38   -4.85   -3.88   -2.46   -0.52    2.08    5.49    9.59
+   310.0    0.00   -0.15   -0.51   -1.05   -1.70   -2.43   -3.20   -3.98   -4.69   -5.25   -5.51   -5.38   -4.83   -3.86   -2.46   -0.54    2.09    5.60    9.89
+   315.0    0.00   -0.14   -0.50   -1.02   -1.67   -2.40   -3.18   -3.98   -4.73   -5.29   -5.54   -5.39   -4.81   -3.84   -2.45   -0.54    2.11    5.73   10.21
+   320.0    0.00   -0.13   -0.48   -1.00   -1.63   -2.36   -3.16   -3.99   -4.76   -5.33   -5.58   -5.40   -4.80   -3.81   -2.43   -0.53    2.15    5.86   10.49
+   325.0    0.00   -0.13   -0.47   -0.97   -1.60   -2.33   -3.15   -4.00   -4.79   -5.38   -5.62   -5.43   -4.81   -3.80   -2.42   -0.52    2.19    5.97   10.72
+   330.0    0.00   -0.12   -0.45   -0.94   -1.56   -2.30   -3.13   -4.00   -4.82   -5.43   -5.67   -5.47   -4.83   -3.81   -2.41   -0.49    2.23    6.06   10.87
+   335.0    0.00   -0.12   -0.43   -0.92   -1.53   -2.27   -3.11   -4.01   -4.85   -5.47   -5.72   -5.52   -4.87   -3.83   -2.41   -0.47    2.28    6.12   10.93
+   340.0    0.00   -0.11   -0.42   -0.89   -1.51   -2.25   -3.10   -4.01   -4.86   -5.50   -5.77   -5.58   -4.93   -3.88   -2.43   -0.46    2.31    6.15   10.91
+   345.0    0.00   -0.10   -0.41   -0.88   -1.49   -2.23   -3.09   -4.01   -4.88   -5.53   -5.82   -5.65   -5.01   -3.94   -2.47   -0.46    2.34    6.15   10.82
+   350.0    0.00   -0.10   -0.40   -0.86   -1.47   -2.22   -3.08   -4.01   -4.88   -5.55   -5.86   -5.72   -5.09   -4.03   -2.53   -0.48    2.35    6.14   10.71
+   355.0    0.00   -0.09   -0.39   -0.85   -1.46   -2.21   -3.08   -4.00   -4.88   -5.56   -5.90   -5.78   -5.19   -4.13   -2.60   -0.50    2.35    6.11   10.59
+   360.0    0.00   -0.09   -0.38   -0.84   -1.46   -2.21   -3.08   -4.00   -4.87   -5.56   -5.92   -5.84   -5.28   -4.23   -2.68   -0.55    2.34    6.08   10.51
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH701975.01A   NONE                                        TYPE / SERIAL NO    
+FIELD               NGS                      3    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+     -1.52     -4.47     38.25                              NORTH / EAST / UP   
+   NOAZI    0.00    0.77    1.10    1.17    0.98    0.48   -0.06   -0.59   -0.97   -1.11   -1.06   -0.79   -0.33    0.45    1.52    3.09    5.17
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -1.78     -3.79     54.55                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.43   -0.71   -0.88   -0.99   -1.08   -1.09   -1.27   -1.51   -1.61   -1.55   -1.46   -1.23   -0.83   -0.53   -0.21    0.25
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+ASH701975.01AGP NONE                                        TYPE / SERIAL NO    
+CONVERTED           TUM                      3    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+CONVERTED FROM igs_01.pcv                                   COMMENT             
+   G01                                                      START OF FREQUENCY  
+     -1.42     -3.67     37.85                              NORTH / EAST / UP   
+   NOAZI    0.00    3.27    6.20    8.57   10.28   11.48   12.14   12.41   12.33   12.09   11.64   11.41   11.17   11.35   11.92   13.59   16.37
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -2.08     -3.29     38.45                              NORTH / EAST / UP   
+   NOAZI    0.00   -1.83   -3.41   -4.88   -6.29   -7.48   -8.79   -9.77  -10.71  -11.21  -11.35  -10.96   -9.93   -8.33   -6.13   -3.11    0.95
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+JAV_GRANT-G3T   NONE                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               5    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     4                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+Number of Calibrated Antennas GPS:      005                 COMMENT             
+Number of Individual Calibrations GPS:  010                 COMMENT             
+Number of Calibrated Antennas GLO:      005                 COMMENT             
+Number of Individual Calibrations GLO:  011                 COMMENT             
+# GLONASS PCV                                               COMMENT             
+#  derived from Delta PCV per 25.0 MHz                      COMMENT             
+#  for frequency channel number k=0                         COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.56      1.16     50.28                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.07   -0.23   -0.41   -0.49   -0.42   -0.19    0.10    0.27    0.18   -0.24   -0.88   -1.48   -1.69   -1.23   -0.13    1.22    2.10    1.69
+     0.0    0.00   -0.10   -0.29   -0.47   -0.56   -0.51   -0.33   -0.12    0.01   -0.06   -0.34   -0.70   -0.88   -0.54    0.51    2.19    4.00    5.07    4.44
+     5.0    0.00   -0.10   -0.29   -0.46   -0.55   -0.48   -0.29   -0.07    0.06    0.00   -0.28   -0.62   -0.77   -0.39    0.75    2.55    4.48    5.64    4.97
+    10.0    0.00   -0.10   -0.28   -0.46   -0.53   -0.46   -0.26   -0.03    0.10    0.04   -0.24   -0.60   -0.75   -0.35    0.85    2.75    4.83    6.10    5.43
+    15.0    0.00   -0.10   -0.28   -0.45   -0.52   -0.45   -0.24   -0.01    0.13    0.06   -0.24   -0.63   -0.81   -0.42    0.79    2.78    4.99    6.39    5.75
+    20.0    0.00   -0.11   -0.29   -0.45   -0.52   -0.44   -0.23    0.01    0.15    0.07   -0.26   -0.70   -0.95   -0.62    0.59    2.62    4.93    6.46    5.89
+    25.0    0.00   -0.11   -0.29   -0.45   -0.51   -0.43   -0.22    0.03    0.17    0.07   -0.29   -0.80   -1.14   -0.90    0.24    2.27    4.65    6.30    5.82
+    30.0    0.00   -0.11   -0.29   -0.45   -0.52   -0.43   -0.21    0.04    0.18    0.07   -0.34   -0.92   -1.36   -1.24   -0.20    1.78    4.17    5.90    5.53
+    35.0    0.00   -0.11   -0.29   -0.45   -0.52   -0.43   -0.21    0.04    0.19    0.07   -0.37   -1.03   -1.58   -1.59   -0.69    1.18    3.53    5.29    5.04
+    40.0    0.00   -0.11   -0.29   -0.46   -0.53   -0.44   -0.22    0.05    0.20    0.07   -0.40   -1.11   -1.77   -1.91   -1.17    0.55    2.79    4.53    4.38
+    45.0    0.00   -0.11   -0.29   -0.46   -0.53   -0.45   -0.22    0.05    0.21    0.08   -0.41   -1.17   -1.90   -2.17   -1.59   -0.06    2.02    3.69    3.63
+    50.0    0.00   -0.11   -0.30   -0.47   -0.54   -0.46   -0.22    0.06    0.22    0.10   -0.40   -1.18   -1.97   -2.34   -1.92   -0.58    1.31    2.86    2.84
+    55.0    0.00   -0.11   -0.30   -0.48   -0.55   -0.47   -0.23    0.06    0.23    0.12   -0.37   -1.15   -1.97   -2.41   -2.11   -0.96    0.72    2.11    2.11
+    60.0    0.00   -0.11   -0.30   -0.48   -0.56   -0.48   -0.24    0.06    0.24    0.14   -0.33   -1.09   -1.90   -2.38   -2.17   -1.18    0.29    1.51    1.49
+    65.0    0.00   -0.11   -0.31   -0.49   -0.57   -0.49   -0.25    0.05    0.25    0.16   -0.28   -1.01   -1.79   -2.26   -2.10   -1.24    0.05    1.10    1.04
+    70.0    0.00   -0.11   -0.31   -0.50   -0.59   -0.50   -0.26    0.05    0.25    0.18   -0.23   -0.93   -1.65   -2.08   -1.93   -1.14    0.01    0.91    0.77
+    75.0    0.00   -0.11   -0.31   -0.51   -0.60   -0.52   -0.27    0.04    0.24    0.19   -0.20   -0.85   -1.52   -1.89   -1.71   -0.94    0.12    0.90    0.68
+    80.0    0.00   -0.11   -0.32   -0.52   -0.61   -0.53   -0.28    0.03    0.24    0.19   -0.18   -0.79   -1.40   -1.71   -1.47   -0.68    0.35    1.04    0.74
+    85.0    0.00   -0.11   -0.32   -0.52   -0.63   -0.55   -0.30    0.01    0.22    0.18   -0.19   -0.77   -1.34   -1.58   -1.27   -0.43    0.62    1.27    0.88
+    90.0    0.00   -0.11   -0.32   -0.53   -0.64   -0.57   -0.32   -0.01    0.20    0.16   -0.21   -0.79   -1.34   -1.53   -1.15   -0.23    0.85    1.50    1.04
+    95.0    0.00   -0.11   -0.32   -0.54   -0.65   -0.58   -0.34   -0.03    0.18    0.13   -0.25   -0.85   -1.39   -1.57   -1.14   -0.15    1.00    1.66    1.13
+   100.0    0.00   -0.11   -0.32   -0.54   -0.66   -0.60   -0.36   -0.04    0.16    0.10   -0.30   -0.93   -1.51   -1.69   -1.25   -0.21    1.00    1.69    1.09
+   105.0    0.00   -0.11   -0.32   -0.55   -0.67   -0.62   -0.38   -0.06    0.15    0.08   -0.36   -1.03   -1.67   -1.90   -1.47   -0.41    0.84    1.54    0.87
+   110.0    0.00   -0.10   -0.32   -0.55   -0.68   -0.63   -0.39   -0.07    0.14    0.06   -0.40   -1.13   -1.85   -2.16   -1.78   -0.75    0.51    1.20    0.47
+   115.0    0.00   -0.10   -0.31   -0.55   -0.68   -0.63   -0.39   -0.07    0.15    0.06   -0.43   -1.22   -2.02   -2.43   -2.15   -1.18    0.04    0.70   -0.09
+   120.0    0.00   -0.10   -0.31   -0.54   -0.68   -0.63   -0.39   -0.05    0.18    0.09   -0.42   -1.27   -2.16   -2.68   -2.52   -1.65   -0.51    0.09   -0.78
+   125.0    0.00   -0.09   -0.30   -0.53   -0.67   -0.62   -0.37   -0.02    0.22    0.14   -0.38   -1.28   -2.24   -2.88   -2.84   -2.10   -1.08   -0.57   -1.50
+   130.0    0.00   -0.09   -0.29   -0.52   -0.65   -0.59   -0.33    0.03    0.29    0.22   -0.31   -1.23   -2.26   -2.98   -3.07   -2.47   -1.58   -1.18   -2.16
+   135.0    0.00   -0.08   -0.28   -0.51   -0.63   -0.56   -0.28    0.10    0.38    0.33   -0.19   -1.12   -2.18   -2.98   -3.17   -2.70   -1.95   -1.65   -2.67
+   140.0    0.00   -0.08   -0.27   -0.49   -0.60   -0.51   -0.21    0.20    0.50    0.47   -0.03   -0.95   -2.03   -2.86   -3.12   -2.75   -2.12   -1.92   -2.94
+   145.0    0.00   -0.07   -0.26   -0.46   -0.56   -0.45   -0.12    0.31    0.64    0.63    0.16   -0.74   -1.80   -2.63   -2.91   -2.60   -2.05   -1.93   -2.93
+   150.0    0.00   -0.07   -0.25   -0.44   -0.52   -0.38   -0.03    0.43    0.79    0.82    0.37   -0.49   -1.50   -2.29   -2.55   -2.26   -1.75   -1.66   -2.59
+   155.0    0.00   -0.06   -0.23   -0.41   -0.47   -0.31    0.07    0.57    0.95    1.01    0.60   -0.21   -1.16   -1.88   -2.07   -1.74   -1.23   -1.13   -1.97
+   160.0    0.00   -0.06   -0.22   -0.39   -0.43   -0.24    0.18    0.70    1.12    1.20    0.83    0.07   -0.80   -1.42   -1.52   -1.10   -0.53   -0.38   -1.10
+   165.0    0.00   -0.05   -0.21   -0.36   -0.38   -0.17    0.27    0.83    1.27    1.39    1.05    0.34   -0.45   -0.96   -0.93   -0.40    0.28    0.52   -0.07
+   170.0    0.00   -0.05   -0.19   -0.34   -0.35   -0.11    0.36    0.94    1.41    1.55    1.24    0.59   -0.13   -0.53   -0.37    0.31    1.11    1.47    1.02
+   175.0    0.00   -0.04   -0.18   -0.32   -0.31   -0.06    0.43    1.03    1.52    1.68    1.40    0.79    0.14   -0.16    0.13    0.95    1.89    2.38    2.03
+   180.0    0.00   -0.03   -0.17   -0.30   -0.29   -0.03    0.47    1.09    1.60    1.78    1.52    0.94    0.34    0.12    0.51    1.46    2.54    3.15    2.88
+   185.0    0.00   -0.03   -0.16   -0.28   -0.27   -0.01    0.50    1.12    1.64    1.83    1.58    1.02    0.46    0.28    0.76    1.81    3.01    3.71    3.48
+   190.0    0.00   -0.02   -0.15   -0.27   -0.26    0.00    0.50    1.12    1.64    1.83    1.59    1.03    0.48    0.33    0.85    1.97    3.25    4.01    3.76
+   195.0    0.00   -0.02   -0.14   -0.26   -0.25   -0.01    0.47    1.08    1.59    1.78    1.54    0.98    0.41    0.26    0.78    1.93    3.25    4.03    3.72
+   200.0    0.00   -0.02   -0.13   -0.25   -0.26   -0.03    0.43    1.02    1.51    1.69    1.43    0.85    0.26    0.07    0.56    1.70    3.02    3.79    3.36
+   205.0    0.00   -0.01   -0.12   -0.25   -0.26   -0.06    0.38    0.94    1.40    1.55    1.28    0.67    0.03   -0.21    0.22    1.32    2.60    3.32    2.75
+   210.0    0.00   -0.01   -0.12   -0.24   -0.27   -0.08    0.32    0.84    1.27    1.39    1.08    0.43   -0.26   -0.57   -0.21    0.82    2.04    2.68    1.95
+   215.0    0.00   -0.01   -0.11   -0.24   -0.27   -0.11    0.26    0.73    1.12    1.20    0.85    0.16   -0.59   -0.97   -0.69    0.25    1.40    1.95    1.07
+   220.0    0.00    0.00   -0.11   -0.23   -0.27   -0.13    0.20    0.63    0.96    0.99    0.60   -0.14   -0.93   -1.38   -1.18   -0.32    0.75    1.21    0.18
+   225.0    0.00    0.00   -0.10   -0.23   -0.27   -0.15    0.15    0.53    0.81    0.79    0.34   -0.44   -1.28   -1.78   -1.64   -0.85    0.15    0.54   -0.60
+   230.0    0.00    0.00   -0.10   -0.22   -0.27   -0.16    0.11    0.45    0.67    0.59    0.10   -0.72   -1.59   -2.13   -2.03   -1.30   -0.35   -0.02   -1.23
+   235.0    0.00    0.00   -0.10   -0.22   -0.27   -0.17    0.08    0.37    0.54    0.40   -0.13   -0.98   -1.86   -2.41   -2.33   -1.62   -0.71   -0.40   -1.64
+   240.0    0.00    0.00   -0.10   -0.22   -0.26   -0.17    0.05    0.31    0.42    0.23   -0.34   -1.20   -2.07   -2.60   -2.51   -1.81   -0.91   -0.60   -1.81
+   245.0    0.00    0.00   -0.10   -0.21   -0.26   -0.17    0.03    0.25    0.32    0.09   -0.51   -1.37   -2.21   -2.70   -2.57   -1.84   -0.93   -0.60   -1.76
+   250.0    0.00    0.00   -0.10   -0.21   -0.26   -0.18    0.01    0.20    0.23   -0.04   -0.64   -1.48   -2.28   -2.70   -2.51   -1.74   -0.79   -0.41   -1.49
+   255.0    0.00   -0.01   -0.10   -0.22   -0.26   -0.18   -0.01    0.15    0.15   -0.14   -0.75   -1.55   -2.28   -2.62   -2.35   -1.51   -0.51   -0.08   -1.06
+   260.0    0.00   -0.01   -0.11   -0.23   -0.27   -0.20   -0.05    0.09    0.07   -0.23   -0.82   -1.58   -2.22   -2.47   -2.10   -1.19   -0.13    0.37   -0.52
+   265.0    0.00   -0.01   -0.12   -0.24   -0.29   -0.23   -0.09    0.03   -0.01   -0.32   -0.88   -1.57   -2.13   -2.27   -1.81   -0.82    0.31    0.88    0.09
+   270.0    0.00   -0.02   -0.13   -0.25   -0.31   -0.27   -0.15   -0.05   -0.10   -0.39   -0.92   -1.55   -2.03   -2.07   -1.51   -0.43    0.77    1.41    0.71
+   275.0    0.00   -0.02   -0.14   -0.27   -0.35   -0.32   -0.22   -0.13   -0.19   -0.47   -0.96   -1.53   -1.93   -1.89   -1.24   -0.07    1.21    1.92    1.29
+   280.0    0.00   -0.03   -0.15   -0.30   -0.39   -0.38   -0.30   -0.22   -0.28   -0.54   -1.00   -1.52   -1.86   -1.75   -1.02    0.23    1.59    2.37    1.80
+   285.0    0.00   -0.03   -0.17   -0.33   -0.43   -0.44   -0.38   -0.32   -0.37   -0.62   -1.05   -1.53   -1.83   -1.67   -0.89    0.43    1.88    2.73    2.21
+   290.0    0.00   -0.04   -0.18   -0.35   -0.48   -0.51   -0.46   -0.41   -0.46   -0.69   -1.10   -1.57   -1.85   -1.66   -0.84    0.54    2.05    2.98    2.52
+   295.0    0.00   -0.04   -0.19   -0.38   -0.53   -0.58   -0.54   -0.49   -0.54   -0.76   -1.16   -1.62   -1.91   -1.73   -0.89    0.53    2.11    3.12    2.71
+   300.0    0.00   -0.05   -0.21   -0.41   -0.57   -0.64   -0.61   -0.56   -0.60   -0.81   -1.21   -1.69   -2.00   -1.84   -1.01    0.43    2.07    3.14    2.79
+   305.0    0.00   -0.05   -0.22   -0.44   -0.61   -0.68   -0.66   -0.61   -0.64   -0.85   -1.26   -1.76   -2.11   -2.00   -1.19    0.26    1.94    3.08    2.79
+   310.0    0.00   -0.06   -0.24   -0.46   -0.64   -0.72   -0.70   -0.64   -0.66   -0.86   -1.29   -1.82   -2.22   -2.15   -1.38    0.07    1.77    2.94    2.71
+   315.0    0.00   -0.06   -0.25   -0.48   -0.66   -0.74   -0.72   -0.65   -0.65   -0.85   -1.29   -1.86   -2.30   -2.28   -1.55   -0.12    1.58    2.78    2.60
+   320.0    0.00   -0.07   -0.26   -0.49   -0.67   -0.75   -0.71   -0.63   -0.62   -0.82   -1.26   -1.85   -2.33   -2.35   -1.66   -0.26    1.43    2.64    2.49
+   325.0    0.00   -0.07   -0.27   -0.50   -0.68   -0.74   -0.69   -0.59   -0.57   -0.76   -1.20   -1.80   -2.29   -2.34   -1.68   -0.31    1.36    2.55    2.40
+   330.0    0.00   -0.08   -0.27   -0.50   -0.67   -0.72   -0.65   -0.53   -0.49   -0.67   -1.11   -1.70   -2.19   -2.24   -1.58   -0.24    1.39    2.55    2.39
+   335.0    0.00   -0.08   -0.28   -0.50   -0.66   -0.70   -0.60   -0.46   -0.41   -0.57   -0.99   -1.56   -2.02   -2.05   -1.38   -0.03    1.57    2.67    2.47
+   340.0    0.00   -0.09   -0.28   -0.50   -0.65   -0.66   -0.55   -0.39   -0.32   -0.46   -0.85   -1.38   -1.80   -1.77   -1.06    0.30    1.88    2.94    2.66
+   345.0    0.00   -0.09   -0.28   -0.49   -0.63   -0.62   -0.49   -0.31   -0.23   -0.34   -0.70   -1.19   -1.55   -1.45   -0.68    0.73    2.32    3.34    2.97
+   350.0    0.00   -0.09   -0.28   -0.49   -0.60   -0.58   -0.43   -0.24   -0.14   -0.24   -0.56   -1.00   -1.29   -1.11   -0.25    1.22    2.86    3.86    3.40
+   355.0    0.00   -0.10   -0.29   -0.48   -0.58   -0.54   -0.38   -0.17   -0.06   -0.14   -0.44   -0.83   -1.06   -0.80    0.16    1.73    3.43    4.46    3.90
+   360.0    0.00   -0.10   -0.29   -0.47   -0.56   -0.51   -0.33   -0.12    0.01   -0.06   -0.34   -0.70   -0.88   -0.54    0.51    2.19    4.00    5.07    4.44
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -3.10     -1.38     46.83                              NORTH / EAST / UP   
+   NOAZI    0.00    0.01    0.00   -0.06   -0.25   -0.58   -1.01   -1.38   -1.47   -1.05   -0.09    1.21    2.39    2.84    2.14    0.40   -1.60   -2.42   -0.58
+     0.0    0.00   -0.39   -0.69   -0.93   -1.13   -1.30   -1.36   -1.19   -0.64    0.37    1.72    3.07    3.91    3.72    2.25   -0.25   -2.85   -4.06   -2.12
+     5.0    0.00   -0.39   -0.69   -0.92   -1.12   -1.27   -1.31   -1.11   -0.52    0.52    1.88    3.20    3.96    3.64    2.04   -0.54   -3.12   -4.18   -1.95
+    10.0    0.00   -0.38   -0.68   -0.92   -1.11   -1.26   -1.29   -1.06   -0.44    0.65    2.04    3.37    4.08    3.67    1.95   -0.74   -3.34   -4.30   -1.86
+    15.0    0.00   -0.38   -0.68   -0.91   -1.10   -1.26   -1.30   -1.07   -0.41    0.72    2.18    3.55    4.28    3.82    2.01   -0.78   -3.45   -4.38   -1.83
+    20.0    0.00   -0.37   -0.67   -0.90   -1.11   -1.29   -1.35   -1.12   -0.45    0.73    2.27    3.74    4.52    4.09    2.23   -0.64   -3.39   -4.36   -1.80
+    25.0    0.00   -0.36   -0.65   -0.89   -1.11   -1.32   -1.42   -1.23   -0.56    0.67    2.30    3.88    4.79    4.43    2.60   -0.31   -3.12   -4.17   -1.75
+    30.0    0.00   -0.35   -0.63   -0.87   -1.11   -1.36   -1.51   -1.37   -0.72    0.52    2.23    3.95    5.03    4.82    3.08    0.21   -2.64   -3.80   -1.62
+    35.0    0.00   -0.34   -0.61   -0.85   -1.11   -1.40   -1.61   -1.54   -0.95    0.29    2.07    3.93    5.19    5.20    3.63    0.87   -1.96   -3.24   -1.41
+    40.0    0.00   -0.32   -0.58   -0.83   -1.10   -1.43   -1.70   -1.72   -1.21   -0.02    1.79    3.77    5.25    5.50    4.18    1.62   -1.13   -2.49   -1.07
+    45.0    0.00   -0.30   -0.55   -0.79   -1.08   -1.44   -1.79   -1.90   -1.51   -0.39    1.41    3.49    5.16    5.68    4.67    2.37   -0.20   -1.61   -0.62
+    50.0    0.00   -0.28   -0.52   -0.75   -1.04   -1.43   -1.85   -2.08   -1.81   -0.81    0.94    3.07    4.90    5.71    5.03    3.06    0.72   -0.66   -0.05
+    55.0    0.00   -0.26   -0.48   -0.70   -0.99   -1.41   -1.89   -2.23   -2.11   -1.25    0.40    2.53    4.49    5.55    5.21    3.61    1.57    0.29    0.61
+    60.0    0.00   -0.24   -0.44   -0.64   -0.92   -1.36   -1.89   -2.34   -2.38   -1.69   -0.18    1.91    3.95    5.21    5.18    3.95    2.25    1.17    1.34
+    65.0    0.00   -0.21   -0.39   -0.57   -0.85   -1.29   -1.87   -2.42   -2.61   -2.11   -0.75    1.24    3.29    4.70    4.93    4.04    2.71    1.90    2.09
+    70.0    0.00   -0.18   -0.34   -0.50   -0.76   -1.20   -1.82   -2.47   -2.80   -2.48   -1.30    0.56    2.58    4.06    4.48    3.87    2.89    2.42    2.81
+    75.0    0.00   -0.15   -0.29   -0.42   -0.66   -1.10   -1.76   -2.48   -2.94   -2.79   -1.79   -0.07    1.86    3.34    3.86    3.47    2.79    2.71    3.48
+    80.0    0.00   -0.12   -0.23   -0.35   -0.57   -1.00   -1.68   -2.46   -3.04   -3.03   -2.20   -0.64    1.18    2.59    3.13    2.85    2.43    2.75    4.03
+    85.0    0.00   -0.09   -0.17   -0.27   -0.47   -0.90   -1.59   -2.42   -3.09   -3.20   -2.51   -1.10    0.58    1.87    2.34    2.09    1.84    2.54    4.43
+    90.0    0.00   -0.06   -0.11   -0.19   -0.38   -0.80   -1.50   -2.37   -3.10   -3.29   -2.72   -1.44    0.08    1.22    1.55    1.24    1.09    2.12    4.65
+    95.0    0.00   -0.03   -0.05   -0.11   -0.29   -0.71   -1.42   -2.31   -3.07   -3.33   -2.84   -1.68   -0.30    0.66    0.82    0.39    0.25    1.54    4.67
+   100.0    0.00    0.01    0.00   -0.04   -0.21   -0.63   -1.35   -2.25   -3.03   -3.31   -2.87   -1.80   -0.57    0.22    0.19   -0.41   -0.61    0.83    4.47
+   105.0    0.00    0.04    0.06    0.04   -0.13   -0.56   -1.29   -2.19   -2.96   -3.25   -2.85   -1.85   -0.73   -0.10   -0.33   -1.12   -1.43    0.06    4.06
+   110.0    0.00    0.08    0.12    0.11   -0.07   -0.50   -1.23   -2.12   -2.88   -3.17   -2.77   -1.82   -0.81   -0.33   -0.73   -1.70   -2.17   -0.74    3.44
+   115.0    0.00    0.11    0.18    0.17    0.00   -0.44   -1.17   -2.05   -2.79   -3.05   -2.66   -1.76   -0.83   -0.47   -1.01   -2.15   -2.80   -1.52    2.64
+   120.0    0.00    0.14    0.24    0.24    0.06   -0.39   -1.11   -1.97   -2.68   -2.92   -2.54   -1.68   -0.82   -0.55   -1.20   -2.48   -3.32   -2.28    1.69
+   125.0    0.00    0.17    0.30    0.31    0.13   -0.33   -1.04   -1.88   -2.55   -2.78   -2.40   -1.59   -0.79   -0.60   -1.32   -2.70   -3.72   -2.98    0.65
+   130.0    0.00    0.21    0.35    0.38    0.19   -0.26   -0.96   -1.77   -2.41   -2.61   -2.26   -1.49   -0.76   -0.62   -1.39   -2.83   -4.03   -3.62   -0.43
+   135.0    0.00    0.24    0.41    0.44    0.26   -0.19   -0.87   -1.64   -2.24   -2.43   -2.09   -1.39   -0.72   -0.63   -1.42   -2.92   -4.27   -4.19   -1.49
+   140.0    0.00    0.27    0.46    0.51    0.34   -0.10   -0.76   -1.49   -2.05   -2.22   -1.91   -1.26   -0.66   -0.61   -1.42   -2.95   -4.44   -4.68   -2.47
+   145.0    0.00    0.29    0.51    0.58    0.42    0.00   -0.63   -1.32   -1.84   -1.98   -1.69   -1.09   -0.56   -0.56   -1.39   -2.94   -4.55   -5.08   -3.30
+   150.0    0.00    0.32    0.56    0.65    0.50    0.10   -0.49   -1.13   -1.60   -1.72   -1.43   -0.87   -0.40   -0.44   -1.30   -2.88   -4.59   -5.35   -3.91
+   155.0    0.00    0.34    0.61    0.72    0.59    0.21   -0.34   -0.93   -1.34   -1.42   -1.12   -0.59   -0.17   -0.25   -1.13   -2.75   -4.54   -5.47   -4.27
+   160.0    0.00    0.36    0.66    0.78    0.68    0.33   -0.19   -0.72   -1.07   -1.09   -0.77   -0.24    0.16    0.05   -0.86   -2.51   -4.37   -5.41   -4.33
+   165.0    0.00    0.38    0.70    0.85    0.76    0.44   -0.03   -0.50   -0.79   -0.75   -0.37    0.18    0.58    0.46   -0.47   -2.15   -4.05   -5.14   -4.08
+   170.0    0.00    0.40    0.73    0.91    0.85    0.56    0.12   -0.29   -0.51   -0.39    0.05    0.66    1.09    0.97    0.03   -1.66   -3.56   -4.64   -3.50
+   175.0    0.00    0.41    0.76    0.96    0.92    0.66    0.27   -0.09   -0.23   -0.04    0.49    1.17    1.66    1.57    0.65   -1.03   -2.91   -3.91   -2.64
+   180.0    0.00    0.42    0.79    1.00    0.99    0.76    0.41    0.10    0.02    0.30    0.93    1.70    2.27    2.24    1.36   -0.28   -2.09   -2.98   -1.52
+   185.0    0.00    0.43    0.81    1.04    1.05    0.85    0.53    0.27    0.26    0.62    1.33    2.20    2.87    2.93    2.12    0.56   -1.15   -1.89   -0.21
+   190.0    0.00    0.43    0.82    1.06    1.10    0.92    0.63    0.41    0.45    0.88    1.69    2.66    3.42    3.59    2.88    1.43   -0.15   -0.70    1.22
+   195.0    0.00    0.43    0.82    1.08    1.12    0.97    0.71    0.52    0.61    1.10    1.97    3.03    3.90    4.17    3.59    2.27    0.86    0.50    2.67
+   200.0    0.00    0.42    0.82    1.08    1.14    1.00    0.76    0.60    0.71    1.24    2.17    3.30    4.26    4.64    4.18    3.01    1.77    1.64    4.05
+   205.0    0.00    0.41    0.80    1.06    1.13    1.00    0.78    0.63    0.76    1.31    2.27    3.45    4.48    4.96    4.62    3.59    2.52    2.61    5.28
+   210.0    0.00    0.40    0.78    1.03    1.10    0.98    0.77    0.62    0.75    1.29    2.26    3.46    4.55    5.11    4.87    3.95    3.04    3.34    6.29
+   215.0    0.00    0.39    0.75    0.99    1.05    0.93    0.71    0.56    0.67    1.19    2.14    3.35    4.47    5.08    4.90    4.06    3.27    3.76    6.99
+   220.0    0.00    0.37    0.70    0.93    0.98    0.85    0.63    0.46    0.53    1.00    1.91    3.11    4.24    4.87    4.73    3.92    3.19    3.83    7.36
+   225.0    0.00    0.34    0.66    0.86    0.89    0.75    0.50    0.30    0.32    0.74    1.60    2.76    3.88    4.52    4.37    3.54    2.80    3.55    7.36
+   230.0    0.00    0.32    0.60    0.77    0.78    0.61    0.34    0.09    0.05    0.40    1.20    2.32    3.42    4.05    3.85    2.95    2.14    2.92    7.00
+   235.0    0.00    0.29    0.53    0.67    0.65    0.46    0.15   -0.15   -0.26    0.00    0.73    1.81    2.90    3.49    3.23    2.20    1.26    2.00    6.29
+   240.0    0.00    0.25    0.47    0.57    0.51    0.28   -0.07   -0.43   -0.61   -0.43    0.23    1.27    2.33    2.90    2.54    1.35    0.22    0.85    5.27
+   245.0    0.00    0.22    0.39    0.45    0.36    0.09   -0.30   -0.72   -0.99   -0.88   -0.29    0.72    1.77    2.31    1.86    0.48   -0.90   -0.46    3.99
+   250.0    0.00    0.18    0.31    0.33    0.19   -0.11   -0.55   -1.03   -1.36   -1.33   -0.79    0.19    1.24    1.75    1.22   -0.36   -2.02   -1.84    2.53
+   255.0    0.00    0.15    0.23    0.21    0.03   -0.31   -0.79   -1.32   -1.72   -1.76   -1.26   -0.29    0.76    1.27    0.66   -1.11   -3.08   -3.23    0.94
+   260.0    0.00    0.11    0.15    0.08   -0.14   -0.51   -1.03   -1.60   -2.05   -2.13   -1.67   -0.70    0.38    0.89    0.21   -1.75   -4.02   -4.54   -0.69
+   265.0    0.00    0.07    0.07   -0.05   -0.30   -0.71   -1.25   -1.85   -2.33   -2.44   -1.99   -1.00    0.10    0.63   -0.11   -2.23   -4.80   -5.73   -2.30
+   270.0    0.00    0.03   -0.01   -0.17   -0.46   -0.89   -1.45   -2.07   -2.56   -2.67   -2.20   -1.19   -0.04    0.50   -0.28   -2.54   -5.40   -6.75   -3.82
+   275.0    0.00   -0.01   -0.09   -0.29   -0.60   -1.06   -1.63   -2.25   -2.72   -2.81   -2.31   -1.25   -0.06    0.51   -0.30   -2.70   -5.82   -7.57   -5.20
+   280.0    0.00   -0.05   -0.17   -0.40   -0.74   -1.21   -1.78   -2.38   -2.82   -2.86   -2.29   -1.17    0.07    0.65   -0.19   -2.71   -6.06   -8.20   -6.38
+   285.0    0.00   -0.08   -0.24   -0.50   -0.87   -1.35   -1.91   -2.48   -2.86   -2.82   -2.16   -0.97    0.32    0.92    0.04   -2.58   -6.13   -8.61   -7.33
+   290.0    0.00   -0.12   -0.31   -0.59   -0.98   -1.46   -2.01   -2.53   -2.84   -2.70   -1.94   -0.65    0.70    1.30    0.38   -2.33   -6.05   -8.83   -8.03
+   295.0    0.00   -0.15   -0.37   -0.68   -1.07   -1.56   -2.09   -2.56   -2.78   -2.52   -1.63   -0.24    1.16    1.77    0.81   -1.99   -5.84   -8.85   -8.46
+   300.0    0.00   -0.18   -0.43   -0.75   -1.15   -1.63   -2.14   -2.55   -2.68   -2.29   -1.27    0.23    1.69    2.29    1.28   -1.58   -5.52   -8.70   -8.62
+   305.0    0.00   -0.21   -0.48   -0.81   -1.22   -1.69   -2.17   -2.52   -2.55   -2.03   -0.88    0.73    2.24    2.84    1.78   -1.12   -5.12   -8.39   -8.54
+   310.0    0.00   -0.24   -0.52   -0.86   -1.26   -1.72   -2.17   -2.47   -2.40   -1.77   -0.49    1.22    2.77    3.36    2.28   -0.66   -4.66   -7.95   -8.22
+   315.0    0.00   -0.27   -0.56   -0.90   -1.29   -1.74   -2.15   -2.40   -2.25   -1.50   -0.12    1.67    3.25    3.83    2.72   -0.20   -4.16   -7.41   -7.72
+   320.0    0.00   -0.29   -0.60   -0.93   -1.31   -1.73   -2.11   -2.31   -2.08   -1.25    0.22    2.05    3.65    4.21    3.09    0.20   -3.67   -6.81   -7.07
+   325.0    0.00   -0.31   -0.62   -0.95   -1.31   -1.70   -2.05   -2.20   -1.91   -1.01    0.51    2.36    3.94    4.47    3.35    0.53   -3.20   -6.18   -6.33
+   330.0    0.00   -0.33   -0.65   -0.96   -1.30   -1.66   -1.97   -2.07   -1.73   -0.79    0.75    2.59    4.12    4.61    3.49    0.75   -2.81   -5.57   -5.53
+   335.0    0.00   -0.35   -0.66   -0.96   -1.28   -1.60   -1.87   -1.93   -1.55   -0.58    0.95    2.74    4.20    4.62    3.49    0.85   -2.51   -5.02   -4.74
+   340.0    0.00   -0.36   -0.68   -0.96   -1.25   -1.54   -1.76   -1.77   -1.36   -0.38    1.12    2.83    4.18    4.52    3.37    0.82   -2.34   -4.57   -4.00
+   345.0    0.00   -0.37   -0.68   -0.96   -1.22   -1.47   -1.65   -1.61   -1.17   -0.19    1.26    2.88    4.11    4.34    3.15    0.66   -2.30   -4.25   -3.35
+   350.0    0.00   -0.38   -0.69   -0.95   -1.18   -1.40   -1.54   -1.45   -0.98    0.00    1.41    2.93    4.02    4.11    2.85    0.40   -2.39   -4.06   -2.81
+   355.0    0.00   -0.38   -0.69   -0.94   -1.16   -1.34   -1.44   -1.31   -0.80    0.19    1.56    2.98    3.94    3.89    2.54    0.08   -2.59   -4.00   -2.40
+   360.0    0.00   -0.39   -0.69   -0.93   -1.13   -1.30   -1.36   -1.19   -0.64    0.37    1.72    3.07    3.91    3.72    2.25   -0.25   -2.85   -4.06   -2.12
+   G02                                                      END OF FREQUENCY    
+   R01                                                      START OF FREQUENCY  
+      0.56      1.16     50.28                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.16   -0.54   -1.04   -1.45   -1.65   -1.59   -1.34   -1.10   -1.09   -1.42   -2.07   -2.78   -3.16   -2.82   -1.74   -0.24    0.92    0.82
+     0.0    0.00   -0.08   -0.40   -0.83   -1.26   -1.55   -1.63   -1.54   -1.39   -1.31   -1.40   -1.61   -1.79   -1.60   -0.82    0.65    2.48    4.06    4.64
+     5.0    0.00   -0.09   -0.41   -0.82   -1.24   -1.49   -1.56   -1.47   -1.32   -1.24   -1.34   -1.53   -1.67   -1.43   -0.55    1.02    2.97    4.66    5.30
+    10.0    0.00   -0.10   -0.41   -0.83   -1.21   -1.45   -1.49   -1.39   -1.24   -1.17   -1.27   -1.49   -1.62   -1.37   -0.43    1.24    3.34    5.15    5.82
+    15.0    0.00   -0.11   -0.43   -0.83   -1.19   -1.41   -1.43   -1.32   -1.16   -1.10   -1.23   -1.48   -1.65   -1.41   -0.45    1.31    3.53    5.48    6.14
+    20.0    0.00   -0.13   -0.46   -0.84   -1.19   -1.38   -1.38   -1.23   -1.07   -1.03   -1.18   -1.50   -1.75   -1.57   -0.61    1.20    3.53    5.58    6.23
+    25.0    0.00   -0.15   -0.48   -0.86   -1.19   -1.35   -1.33   -1.16   -0.99   -0.95   -1.15   -1.54   -1.89   -1.81   -0.92    0.90    3.31    5.44    6.05
+    30.0    0.00   -0.16   -0.50   -0.89   -1.21   -1.34   -1.28   -1.10   -0.90   -0.89   -1.14   -1.61   -2.07   -2.11   -1.32    0.48    2.92    5.07    5.62
+    35.0    0.00   -0.17   -0.52   -0.91   -1.22   -1.34   -1.26   -1.06   -0.84   -0.82   -1.11   -1.68   -2.26   -2.42   -1.74   -0.03    2.37    4.49    4.97
+    40.0    0.00   -0.20   -0.56   -0.95   -1.25   -1.35   -1.26   -1.01   -0.79   -0.78   -1.10   -1.73   -2.42   -2.71   -2.16   -0.57    1.74    3.78    4.14
+    45.0    0.00   -0.21   -0.58   -0.98   -1.27   -1.37   -1.25   -0.99   -0.75   -0.74   -1.09   -1.78   -2.54   -2.94   -2.50   -1.06    1.08    2.99    3.24
+    50.0    0.00   -0.23   -0.62   -1.02   -1.32   -1.41   -1.25   -0.97   -0.73   -0.71   -1.08   -1.80   -2.61   -3.07   -2.77   -1.47    0.49    2.22    2.34
+    55.0    0.00   -0.24   -0.65   -1.08   -1.36   -1.44   -1.27   -0.96   -0.71   -0.70   -1.07   -1.79   -2.62   -3.12   -2.90   -1.76    0.02    1.54    1.54
+    60.0    0.00   -0.26   -0.68   -1.11   -1.41   -1.47   -1.29   -0.97   -0.71   -0.70   -1.06   -1.76   -2.57   -3.08   -2.90   -1.88   -0.32    1.00    0.89
+    65.0    0.00   -0.27   -0.71   -1.16   -1.45   -1.51   -1.31   -0.99   -0.72   -0.70   -1.06   -1.73   -2.49   -2.97   -2.80   -1.88   -0.48    0.64    0.47
+    70.0    0.00   -0.28   -0.75   -1.21   -1.51   -1.55   -1.34   -1.00   -0.74   -0.72   -1.06   -1.71   -2.40   -2.80   -2.61   -1.75   -0.48    0.48    0.25
+    75.0    0.00   -0.30   -0.78   -1.25   -1.56   -1.60   -1.38   -1.03   -0.77   -0.76   -1.08   -1.69   -2.33   -2.66   -2.40   -1.54   -0.37    0.49    0.22
+    80.0    0.00   -0.31   -0.81   -1.31   -1.61   -1.65   -1.42   -1.07   -0.80   -0.80   -1.13   -1.70   -2.27   -2.52   -2.20   -1.32   -0.18    0.60    0.36
+    85.0    0.00   -0.32   -0.84   -1.34   -1.67   -1.70   -1.47   -1.12   -0.85   -0.85   -1.19   -1.75   -2.28   -2.45   -2.07   -1.13    0.01    0.79    0.57
+    90.0    0.00   -0.33   -0.86   -1.38   -1.71   -1.76   -1.52   -1.17   -0.91   -0.91   -1.26   -1.83   -2.34   -2.48   -2.02   -1.03    0.14    0.94    0.77
+    95.0    0.00   -0.34   -0.88   -1.42   -1.77   -1.80   -1.57   -1.22   -0.97   -0.99   -1.36   -1.95   -2.46   -2.59   -2.11   -1.06    0.16    1.00    0.87
+   100.0    0.00   -0.35   -0.90   -1.45   -1.81   -1.87   -1.64   -1.27   -1.02   -1.06   -1.45   -2.08   -2.65   -2.80   -2.32   -1.25    0.03    0.92    0.81
+   105.0    0.00   -0.35   -0.92   -1.49   -1.85   -1.93   -1.71   -1.35   -1.07   -1.11   -1.55   -2.22   -2.86   -3.09   -2.65   -1.58   -0.27    0.66    0.53
+   110.0    0.00   -0.36   -0.93   -1.51   -1.89   -1.98   -1.76   -1.40   -1.14   -1.17   -1.62   -2.35   -3.09   -3.43   -3.06   -2.04   -0.71    0.21    0.04
+   115.0    0.00   -0.36   -0.93   -1.52   -1.91   -2.01   -1.80   -1.44   -1.17   -1.21   -1.67   -2.47   -3.31   -3.76   -3.51   -2.56   -1.27   -0.37   -0.63
+   120.0    0.00   -0.36   -0.93   -1.52   -1.93   -2.04   -1.85   -1.46   -1.17   -1.21   -1.69   -2.55   -3.48   -4.06   -3.96   -3.10   -1.88   -1.05   -1.46
+   125.0    0.00   -0.35   -0.92   -1.51   -1.94   -2.06   -1.86   -1.48   -1.16   -1.18   -1.67   -2.58   -3.59   -4.32   -4.33   -3.59   -2.47   -1.74   -2.32
+   130.0    0.00   -0.35   -0.91   -1.50   -1.93   -2.05   -1.84   -1.46   -1.11   -1.11   -1.61   -2.54   -3.64   -4.46   -4.60   -3.98   -2.97   -2.36   -3.13
+   135.0    0.00   -0.34   -0.89   -1.48   -1.91   -2.02   -1.81   -1.40   -1.04   -1.01   -1.50   -2.45   -3.59   -4.50   -4.74   -4.22   -3.31   -2.82   -3.79
+   140.0    0.00   -0.32   -0.87   -1.45   -1.87   -1.97   -1.75   -1.32   -0.94   -0.89   -1.35   -2.31   -3.49   -4.42   -4.73   -4.27   -3.45   -3.07   -4.18
+   145.0    0.00   -0.31   -0.84   -1.41   -1.81   -1.91   -1.66   -1.21   -0.81   -0.74   -1.18   -2.13   -3.31   -4.25   -4.55   -4.12   -3.34   -3.07   -4.31
+   150.0    0.00   -0.30   -0.81   -1.36   -1.75   -1.83   -1.57   -1.10   -0.68   -0.57   -1.01   -1.94   -3.07   -3.97   -4.24   -3.79   -3.02   -2.79   -4.09
+   155.0    0.00   -0.28   -0.78   -1.31   -1.68   -1.73   -1.46   -0.97   -0.54   -0.41   -0.82   -1.72   -2.81   -3.64   -3.82   -3.30   -2.51   -2.28   -3.58
+   160.0    0.00   -0.27   -0.75   -1.26   -1.62   -1.65   -1.35   -0.85   -0.40   -0.28   -0.67   -1.52   -2.54   -3.28   -3.36   -2.73   -1.85   -1.57   -2.81
+   165.0    0.00   -0.25   -0.72   -1.21   -1.55   -1.57   -1.27   -0.75   -0.29   -0.15   -0.52   -1.35   -2.30   -2.93   -2.87   -2.11   -1.11   -0.75   -1.87
+   170.0    0.00   -0.24   -0.68   -1.16   -1.50   -1.50   -1.19   -0.68   -0.21   -0.07   -0.43   -1.21   -2.09   -2.60   -2.42   -1.52   -0.40    0.10   -0.86
+   175.0    0.00   -0.22   -0.64   -1.12   -1.44   -1.45   -1.14   -0.64   -0.17   -0.03   -0.38   -1.11   -1.93   -2.35   -2.04   -1.02    0.24    0.88    0.08
+   180.0    0.00   -0.19   -0.61   -1.07   -1.40   -1.43   -1.14   -0.63   -0.18   -0.03   -0.35   -1.06   -1.83   -2.18   -1.79   -0.66    0.72    1.50    0.88
+   185.0    0.00   -0.18   -0.57   -1.02   -1.37   -1.41   -1.14   -0.67   -0.21   -0.06   -0.38   -1.06   -1.79   -2.11   -1.65   -0.45    1.03    1.92    1.44
+   190.0    0.00   -0.16   -0.54   -0.99   -1.34   -1.41   -1.18   -0.72   -0.28   -0.13   -0.43   -1.11   -1.83   -2.13   -1.66   -0.42    1.11    2.09    1.70
+   195.0    0.00   -0.14   -0.50   -0.96   -1.32   -1.43   -1.24   -0.81   -0.39   -0.23   -0.51   -1.18   -1.92   -2.24   -1.81   -0.58    0.97    2.00    1.65
+   200.0    0.00   -0.13   -0.47   -0.93   -1.32   -1.47   -1.30   -0.90   -0.49   -0.33   -0.62   -1.30   -2.06   -2.45   -2.08   -0.89    0.64    1.67    1.29
+   205.0    0.00   -0.11   -0.44   -0.91   -1.31   -1.50   -1.37   -1.00   -0.61   -0.46   -0.73   -1.42   -2.25   -2.71   -2.43   -1.32    0.17    1.16    0.69
+   210.0    0.00   -0.08   -0.42   -0.88   -1.31   -1.52   -1.43   -1.08   -0.71   -0.57   -0.86   -1.59   -2.46   -3.02   -2.85   -1.83   -0.41    0.52   -0.09
+   215.0    0.00   -0.07   -0.39   -0.86   -1.29   -1.53   -1.47   -1.16   -0.80   -0.67   -0.99   -1.75   -2.71   -3.35   -3.27   -2.37   -1.02   -0.18   -0.94
+   220.0    0.00   -0.05   -0.37   -0.83   -1.28   -1.53   -1.50   -1.22   -0.88   -0.77   -1.11   -1.93   -2.94   -3.68   -3.69   -2.86   -1.60   -0.85   -1.79
+   225.0    0.00   -0.04   -0.33   -0.80   -1.26   -1.53   -1.51   -1.26   -0.93   -0.86   -1.24   -2.11   -3.17   -3.98   -4.06   -3.30   -2.09   -1.42   -2.51
+   230.0    0.00   -0.02   -0.31   -0.77   -1.23   -1.51   -1.51   -1.26   -0.98   -0.94   -1.37   -2.27   -3.38   -4.22   -4.35   -3.63   -2.47   -1.86   -3.08
+   235.0    0.00   -0.01   -0.30   -0.75   -1.21   -1.49   -1.48   -1.27   -1.01   -1.01   -1.48   -2.43   -3.56   -4.42   -4.54   -3.82   -2.69   -2.11   -3.40
+   240.0    0.00    0.00   -0.28   -0.73   -1.17   -1.46   -1.46   -1.25   -1.05   -1.10   -1.61   -2.57   -3.69   -4.52   -4.62   -3.88   -2.74   -2.17   -3.47
+   245.0    0.00    0.01   -0.27   -0.70   -1.15   -1.42   -1.44   -1.26   -1.08   -1.18   -1.72   -2.68   -3.77   -4.55   -4.58   -3.79   -2.62   -2.05   -3.29
+   250.0    0.00    0.02   -0.25   -0.69   -1.13   -1.40   -1.43   -1.27   -1.13   -1.26   -1.82   -2.77   -3.80   -4.49   -4.43   -3.58   -2.35   -1.72   -2.86
+   255.0    0.00    0.02   -0.24   -0.69   -1.12   -1.38   -1.41   -1.29   -1.19   -1.35   -1.92   -2.82   -3.77   -4.35   -4.19   -3.24   -1.97   -1.26   -2.25
+   260.0    0.00    0.02   -0.24   -0.68   -1.11   -1.39   -1.44   -1.33   -1.26   -1.44   -1.99   -2.85   -3.69   -4.15   -3.88   -2.85   -1.50   -0.70   -1.52
+   265.0    0.00    0.03   -0.24   -0.68   -1.12   -1.41   -1.47   -1.39   -1.34   -1.53   -2.06   -2.84   -3.58   -3.91   -3.52   -2.41   -0.99   -0.09   -0.70
+   270.0    0.00    0.03   -0.24   -0.69   -1.14   -1.45   -1.53   -1.47   -1.44   -1.61   -2.10   -2.80   -3.45   -3.66   -3.18   -1.98   -0.48    0.54    0.11
+   275.0    0.00    0.03   -0.24   -0.70   -1.18   -1.50   -1.60   -1.55   -1.53   -1.69   -2.12   -2.75   -3.31   -3.44   -2.87   -1.59   -0.01    1.11    0.88
+   280.0    0.00    0.03   -0.25   -0.73   -1.21   -1.56   -1.69   -1.64   -1.61   -1.74   -2.13   -2.69   -3.19   -3.25   -2.61   -1.27    0.39    1.63    1.53
+   285.0    0.00    0.03   -0.26   -0.74   -1.25   -1.62   -1.77   -1.74   -1.69   -1.78   -2.12   -2.64   -3.08   -3.12   -2.45   -1.07    0.68    2.02    2.05
+   290.0    0.00    0.02   -0.27   -0.76   -1.30   -1.69   -1.85   -1.82   -1.75   -1.80   -2.09   -2.59   -3.03   -3.05   -2.38   -0.96    0.85    2.28    2.40
+   295.0    0.00    0.03   -0.26   -0.79   -1.35   -1.76   -1.93   -1.88   -1.78   -1.80   -2.06   -2.53   -3.01   -3.07   -2.41   -0.98    0.89    2.42    2.59
+   300.0    0.00    0.02   -0.28   -0.81   -1.39   -1.82   -1.99   -1.93   -1.80   -1.78   -2.02   -2.51   -3.00   -3.13   -2.52   -1.09    0.83    2.41    2.62
+   305.0    0.00    0.02   -0.29   -0.84   -1.43   -1.86   -2.04   -1.97   -1.80   -1.74   -1.97   -2.48   -3.03   -3.23   -2.69   -1.27    0.66    2.30    2.53
+   310.0    0.00    0.01   -0.31   -0.86   -1.46   -1.90   -2.07   -1.98   -1.79   -1.70   -1.93   -2.46   -3.08   -3.35   -2.87   -1.48    0.46    2.11    2.35
+   315.0    0.00    0.01   -0.32   -0.87   -1.47   -1.91   -2.08   -1.98   -1.76   -1.66   -1.89   -2.44   -3.11   -3.44   -3.03   -1.68    0.24    1.89    2.14
+   320.0    0.00    0.07   -0.33   -0.88   -1.47   -1.92   -2.07   -1.96   -1.73   -1.63   -1.84   -2.41   -3.12   -3.49   -3.13   -1.83    0.05    1.68    1.95
+   325.0    0.00   -0.01   -0.34   -0.89   -1.48   -1.90   -2.05   -1.93   -1.70   -1.59   -1.81   -2.37   -3.07   -3.47   -3.14   -1.89   -0.05    1.54    1.80
+   330.0    0.00   -0.02   -0.34   -0.88   -1.46   -1.87   -2.01   -1.89   -1.66   -1.55   -1.77   -2.31   -2.98   -3.36   -3.02   -1.82   -0.06    1.50    1.79
+   335.0    0.00   -0.02   -0.35   -0.88   -1.43   -1.84   -1.96   -1.85   -1.63   -1.53   -1.71   -2.22   -2.83   -3.16   -2.80   -1.61    0.09    1.59    1.93
+   340.0    0.00   -0.04   -0.35   -0.87   -1.40   -1.79   -1.91   -1.80   -1.60   -1.49   -1.66   -2.10   -2.64   -2.88   -2.46   -1.28    0.38    1.84    2.22
+   345.0    0.00   -0.05   -0.37   -0.86   -1.37   -1.73   -1.85   -1.75   -1.56   -1.46   -1.59   -1.99   -2.42   -2.56   -2.07   -0.84    0.81    2.24    2.68
+   350.0    0.00   -0.05   -0.37   -0.85   -1.32   -1.66   -1.78   -1.69   -1.51   -1.42   -1.53   -1.85   -2.18   -2.21   -1.62   -0.35    1.34    2.79    3.28
+   355.0    0.00   -0.07   -0.39   -0.84   -1.29   -1.60   -1.71   -1.62   -1.46   -1.37   -1.47   -1.72   -1.96   -1.88   -1.19    0.17    1.91    3.42    3.95
+   360.0    0.00   -0.08   -0.40   -0.83   -1.26   -1.55   -1.63   -1.54   -1.39   -1.31   -1.40   -1.61   -1.79   -1.60   -0.82    0.65    2.48    4.06    4.64
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+     -3.10     -1.38     46.83                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.09   -0.34   -0.69   -1.09   -1.54   -2.06   -2.62   -3.10   -3.23   -2.85   -1.94   -0.79   -0.01   -0.26   -1.82   -4.30   -6.39   -6.41
+     0.0    0.00   -0.74   -1.49   -2.21   -2.86   -3.43   -3.88   -4.11   -4.00   -3.42   -2.39   -1.15   -0.15    0.06   -0.93   -3.11   -5.88   -8.03   -7.93
+     5.0    0.00   -0.77   -1.53   -2.21   -2.81   -3.32   -3.73   -3.97   -3.86   -3.30   -2.27   -1.02   -0.04    0.09   -1.04   -3.41   -6.35   -8.54   -8.24
+    10.0    0.00   -0.78   -1.54   -2.20   -2.74   -3.19   -3.57   -3.80   -3.73   -3.18   -2.16   -0.89    0.11    0.22   -1.02   -3.59   -6.73   -9.03   -8.67
+    15.0    0.00   -0.81   -1.57   -2.18   -2.65   -3.05   -3.40   -3.65   -3.61   -3.11   -2.08   -0.78    0.30    0.44   -0.84   -3.57   -6.94   -9.44   -9.12
+    20.0    0.00   -0.82   -1.58   -2.15   -2.57   -2.92   -3.26   -3.51   -3.53   -3.08   -2.06   -0.68    0.49    0.76   -0.52   -3.34   -6.92   -9.64   -9.47
+    25.0    0.00   -0.83   -1.58   -2.13   -2.49   -2.78   -3.10   -3.40   -3.48   -3.09   -2.08   -0.63    0.70    1.11   -0.05   -2.91   -6.63   -9.58   -9.64
+    30.0    0.00   -0.84   -1.58   -2.09   -2.41   -2.66   -2.97   -3.31   -3.47   -3.16   -2.18   -0.66    0.85    1.48    0.49   -2.29   -6.08   -9.22   -9.53
+    35.0    0.00   -0.85   -1.57   -2.06   -2.33   -2.55   -2.85   -3.23   -3.50   -3.29   -2.35   -0.76    0.91    1.81    1.06   -1.55   -5.32   -8.56   -9.12
+    40.0    0.00   -0.84   -1.57   -2.04   -2.26   -2.45   -2.75   -3.19   -3.56   -3.47   -2.60   -0.97    0.89    2.03    1.58   -0.79   -4.42   -7.64   -8.39
+    45.0    0.00   -0.84   -1.55   -2.00   -2.21   -2.36   -2.67   -3.17   -3.67   -3.70   -2.91   -1.27    0.72    2.11    1.98   -0.10   -3.48   -6.57   -7.38
+    50.0    0.00   -0.82   -1.54   -1.97   -2.15   -2.28   -2.62   -3.19   -3.79   -3.97   -3.29   -1.67    0.40    2.02    2.18    0.45   -2.61   -5.44   -6.17
+    55.0    0.00   -0.81   -1.52   -1.94   -2.11   -2.24   -2.58   -3.22   -3.94   -4.26   -3.71   -2.15   -0.04    1.73    2.15    0.75   -1.93   -4.40   -4.87
+    60.0    0.00   -0.80   -1.49   -1.91   -2.07   -2.21   -2.57   -3.27   -4.09   -4.55   -4.15   -2.68   -0.59    1.25    1.85    0.75   -1.54   -3.53   -3.59
+    65.0    0.00   -0.77   -1.46   -1.87   -2.04   -2.18   -2.56   -3.32   -4.24   -4.84   -4.57   -3.25   -1.24    0.60    1.29    0.42   -1.48   -2.95   -2.46
+    70.0    0.00   -0.74   -1.41   -1.83   -2.01   -2.16   -2.57   -3.38   -4.38   -5.09   -4.97   -3.81   -1.93   -0.19    0.51   -0.21   -1.78   -2.73   -1.58
+    75.0    0.00   -0.71   -1.37   -1.79   -1.98   -2.15   -2.59   -3.44   -4.49   -5.31   -5.33   -4.32   -2.63   -1.04   -0.42   -1.09   -2.41   -2.87   -1.02
+    80.0    0.00   -0.67   -1.32   -1.75   -1.95   -2.14   -2.61   -3.48   -4.59   -5.48   -5.62   -4.79   -3.29   -1.91   -1.44   -2.15   -3.30   -3.34   -0.84
+    85.0    0.00   -0.63   -1.25   -1.69   -1.91   -2.13   -2.61   -3.49   -4.65   -5.60   -5.84   -5.16   -3.87   -2.72   -2.47   -3.28   -4.38   -4.11   -1.03
+    90.0    0.00   -0.58   -1.18   -1.62   -1.87   -2.10   -2.60   -3.50   -4.67   -5.65   -5.97   -5.43   -4.34   -3.42   -3.40   -4.40   -5.51   -5.08   -1.55
+    95.0    0.00   -0.54   -1.10   -1.54   -1.80   -2.06   -2.57   -3.48   -4.65   -5.65   -6.03   -5.61   -4.68   -3.98   -4.18   -5.37   -6.60   -6.12   -2.34
+   100.0    0.00   -0.48   -1.02   -1.45   -1.73   -2.00   -2.53   -3.43   -4.59   -5.59   -6.01   -5.66   -4.89   -4.37   -4.76   -6.15   -7.55   -7.17   -3.32
+   105.0    0.00   -0.42   -0.93   -1.34   -1.62   -1.93   -2.47   -3.37   -4.49   -5.48   -5.92   -5.64   -4.95   -4.56   -5.13   -6.69   -8.28   -8.12   -4.40
+   110.0    0.00   -0.35   -0.82   -1.22   -1.53   -1.84   -2.39   -3.27   -4.37   -5.33   -5.76   -5.51   -4.90   -4.60   -5.26   -6.96   -8.77   -8.90   -5.50
+   115.0    0.00   -0.29   -0.71   -1.10   -1.40   -1.73   -2.27   -3.14   -4.20   -5.13   -5.53   -5.30   -4.73   -4.48   -5.20   -7.00   -9.00   -9.48   -6.55
+   120.0    0.00   -0.22   -0.58   -0.96   -1.26   -1.61   -2.16   -2.99   -4.00   -4.88   -5.27   -5.04   -4.48   -4.24   -4.98   -6.84   -9.02   -9.88   -7.50
+   125.0    0.00   -0.15   -0.46   -0.80   -1.11   -1.48   -2.01   -2.83   -3.79   -4.61   -4.95   -4.72   -4.16   -3.93   -4.66   -6.53   -8.86  -10.08   -8.29
+   130.0    0.00   -0.07   -0.33   -0.64   -0.96   -1.33   -1.87   -2.65   -3.54   -4.29   -4.60   -4.35   -3.81   -3.57   -4.28   -6.13   -8.57  -10.13   -8.94
+   135.0    0.00   -0.24   -0.19   -0.49   -0.80   -1.18   -1.72   -2.46   -3.29   -3.96   -4.20   -3.95   -3.42   -3.20   -3.88   -5.73   -8.23  -10.06   -9.43
+   140.0    0.00    0.08   -0.06   -0.31   -0.62   -1.02   -1.56   -2.26   -3.01   -3.60   -3.79   -3.52   -3.02   -2.82   -3.50   -5.33   -7.86   -9.91   -9.78
+   145.0    0.00    0.14    0.07   -0.15   -0.46   -0.87   -1.40   -2.06   -2.74   -3.22   -3.35   -3.06   -2.60   -2.45   -3.15   -4.94   -7.50   -9.71   -9.98
+   150.0    0.00    0.22    0.20    0.02   -0.29   -0.72   -1.25   -1.87   -2.45   -2.84   -2.89   -2.58   -2.16   -2.07   -2.81   -4.59   -7.13   -9.44  -10.02
+   155.0    0.00    0.28    0.34    0.19   -0.12   -0.57   -1.10   -1.67   -2.16   -2.45   -2.42   -2.09   -1.72   -1.69   -2.46   -4.24   -6.74   -9.09   -9.92
+   160.0    0.00    0.35    0.47    0.35    0.04   -0.42   -0.96   -1.49   -1.89   -2.05   -1.95   -1.59   -1.25   -1.28   -2.09   -3.83   -6.28   -8.63   -9.62
+   165.0    0.00    0.42    0.59    0.50    0.19   -0.28   -0.81   -1.29   -1.61   -1.68   -1.47   -1.09   -0.76   -0.83   -1.65   -3.35   -5.73   -8.04   -9.14
+   170.0    0.00    0.48    0.70    0.65    0.35   -0.13   -0.67   -1.11   -1.35   -1.31   -1.02   -0.58   -0.25   -0.33   -1.13   -2.77   -5.03   -7.27   -8.42
+   175.0    0.00    0.54    0.81    0.79    0.49   -0.66   -0.52   -0.92   -1.08   -0.97   -0.58   -0.09    0.28    0.23   -0.52   -2.05   -4.20   -6.32   -7.50
+   180.0    0.00    0.58    0.91    0.91    0.62    0.13   -0.36   -0.74   -0.85   -0.64   -0.17    0.40    0.83    0.84    0.19   -1.22   -3.21   -5.22   -6.36
+   185.0    0.00    0.64    1.00    1.03    0.75    0.28   -0.22   -0.55   -0.60   -0.34    0.19    0.84    1.36    1.49    0.96   -0.29   -2.12   -3.99   -5.02
+   190.0    0.00    0.67    1.07    1.12    0.86    0.40   -0.08   -0.38   -0.40   -0.08    0.52    1.25    1.86    2.13    1.76    0.67   -1.00   -2.70   -3.56
+   195.0    0.00    0.70    1.13    1.21    0.96    0.52    0.07   -0.22   -0.19    0.16    0.79    1.59    2.33    2.73    2.54    1.62    0.11   -1.44   -2.05
+   200.0    0.00    0.72    1.18    1.28    1.04    0.62    0.19   -0.06   -0.04    0.33    1.00    1.86    2.72    3.28    3.25    2.47    1.09   -0.28   -0.59
+   205.0    0.00    0.74    1.21    1.32    1.10    0.70    0.30    0.06    0.08    0.45    1.14    2.06    3.02    3.72    3.82    3.15    1.86    0.66    0.74
+   210.0    0.00    0.75    1.23    1.34    1.14    0.76    0.38    0.14    0.16    0.50    1.19    2.14    3.20    4.01    4.22    3.60    2.36    1.32    1.84
+   215.0    0.00    0.76    1.23    1.34    1.14    0.78    0.41    0.18    0.17    0.48    1.14    2.12    3.25    4.15    4.40    3.77    2.53    1.62    2.60
+   220.0    0.00    0.75    1.21    1.31    1.12    0.77    0.42    0.17    0.12    0.36    0.98    1.98    3.14    4.09    4.36    3.68    2.37    1.54    2.98
+   225.0    0.00    0.74    1.18    1.26    1.07    0.72    0.35    0.08   -0.03    0.16    0.73    1.70    2.89    3.86    4.11    3.32    1.88    1.09    2.94
+   230.0    0.00    0.72    1.13    1.19    0.98    0.62    0.24   -0.07   -0.24   -0.14    0.35    1.30    2.48    3.47    3.64    2.71    1.11    0.29    2.49
+   235.0    0.00    0.69    1.06    1.09    0.86    0.49    0.08   -0.28   -0.53   -0.54   -0.13    0.76    1.95    2.91    3.02    1.93    0.13   -0.78    1.64
+   240.0    0.00    0.65    0.99    0.98    0.71    0.31   -0.13   -0.56   -0.90   -1.02   -0.70    0.14    1.30    2.24    2.27    1.01   -0.99   -2.06    0.43
+   245.0    0.00    0.62    0.90    0.84    0.54    0.10   -0.39   -0.89   -1.34   -1.56   -1.34   -0.56    0.57    1.50    1.46    0.05   -2.19   -3.47   -1.06
+   250.0    0.00    0.56    0.80    0.68    0.32   -0.15   -0.69   -1.27   -1.82   -2.15   -2.03   -1.31   -0.20    0.71    0.63   -0.90   -3.37   -4.92   -2.73
+   255.0    0.00    0.52    0.69    0.52    0.11   -0.42   -1.01   -1.67   -2.32   -2.76   -2.73   -2.07   -0.98   -0.05   -0.16   -1.80   -4.48   -6.34   -4.53
+   260.0    0.00    0.46    0.56    0.33   -0.13   -0.70   -1.35   -2.08   -2.82   -3.35   -3.41   -2.80   -1.70   -0.77   -0.88   -2.60   -5.47   -7.67   -6.35
+   265.0    0.00    0.40    0.44    0.13   -0.37   -1.00   -1.70   -2.48   -3.29   -3.91   -4.04   -3.44   -2.35   -1.39   -1.49   -3.27   -6.32   -8.88   -8.13
+   270.0    0.00    0.33    0.31   -0.06   -0.63   -1.30   -2.05   -2.88   -3.74   -4.41   -4.56   -3.99   -2.87   -1.88   -1.97   -3.78   -7.00   -9.92   -9.80
+   275.0    0.00    0.27    0.17   -0.26   -0.87   -1.60   -2.37   -3.25   -4.13   -4.83   -4.98   -4.40   -3.25   -2.23   -2.29   -4.15   -7.52  -10.78  -11.32
+   280.0    0.00    0.19    0.03   -0.46   -1.13   -1.88   -2.69   -3.57   -4.46   -5.14   -5.26   -4.64   -3.46   -2.41   -2.47   -4.37   -7.87  -11.47  -12.61
+   285.0    0.00    0.13   -0.11   -0.65   -1.37   -2.16   -2.98   -3.86   -4.72   -5.34   -5.41   -4.74   -3.51   -2.44   -2.50   -4.43   -8.07  -11.95  -13.66
+   290.0    0.00    0.06   -0.24   -0.84   -1.61   -2.41   -3.24   -4.09   -4.91   -5.45   -5.43   -4.67   -3.39   -2.31   -2.39   -4.38   -8.12  -12.25  -14.44
+   295.0    0.00   -0.01   -0.38   -1.03   -1.82   -2.65   -3.47   -4.30   -5.03   -5.47   -5.32   -4.47   -3.15   -2.05   -2.16   -4.19   -8.02  -12.33  -14.91
+   300.0    0.00   -0.08   -0.51   -1.21   -2.02   -2.86   -3.68   -4.44   -5.09   -5.40   -5.13   -4.16   -2.78   -1.70   -1.84   -3.91   -7.79  -12.22  -15.08
+   305.0    0.00   -0.15   -0.63   -1.37   -2.21   -3.05   -3.85   -4.56   -5.10   -5.28   -4.86   -3.79   -2.36   -1.28   -1.47   -3.56   -7.44  -11.91  -14.96
+   310.0    0.00   -0.22   -0.75   -1.52   -2.37   -3.22   -3.99   -4.65   -5.08   -5.12   -4.56   -3.38   -1.92   -0.85   -1.06   -3.16   -7.00  -11.42  -14.53
+   315.0    0.00   -0.29   -0.86   -1.66   -2.52   -3.37   -4.10   -4.70   -5.03   -4.92   -4.24   -2.97   -1.48   -0.45   -0.68   -2.75   -6.49  -10.80  -13.85
+   320.0    0.00   -0.35   -0.98   -1.78   -2.65   -3.48   -4.19   -4.73   -4.96   -4.73   -3.93   -2.60   -1.09   -0.09   -0.35   -2.38   -5.97  -10.08  -12.98
+   325.0    0.00   -0.41   -1.06   -1.88   -2.75   -3.57   -4.25   -4.73   -4.87   -4.54   -3.64   -2.26   -0.78    0.17   -0.12   -2.06   -5.47   -9.32  -11.98
+   330.0    0.00   -0.47   -1.16   -1.98   -2.84   -3.63   -4.29   -4.71   -4.78   -4.36   -3.39   -1.99   -0.55    0.34    0.02   -1.86   -5.07   -8.60  -10.93
+   335.0    0.00   -0.53   -1.23   -2.05   -2.89   -3.66   -4.28   -4.67   -4.67   -4.18   -3.17   -1.77   -0.39    0.41    0.03   -1.79   -4.79   -7.99   -9.93
+   340.0    0.00   -0.57   -1.31   -2.12   -2.93   -3.67   -4.26   -4.60   -4.55   -4.02   -2.98   -1.61   -0.30    0.39   -0.07   -1.86   -4.69   -7.57   -9.06
+   345.0    0.00   -0.62   -1.36   -2.16   -2.94   -3.64   -4.20   -4.50   -4.43   -3.86   -2.82   -1.48   -0.26    0.31   -0.24   -2.07   -4.77   -7.35   -8.38
+   350.0    0.00   -0.67   -1.42   -2.19   -2.92   -3.59   -4.12   -4.39   -4.30   -3.71   -2.66   -1.36   -0.23    0.20   -0.49   -2.38   -5.02   -7.37   -7.97
+   355.0    0.00   -0.70   -1.46   -2.21   -2.91   -3.52   -4.01   -4.26   -4.15   -3.56   -2.52   -1.26   -0.20    0.11   -0.73   -2.75   -5.42   -7.61   -7.82
+   360.0    0.00   -0.74   -1.49   -2.21   -2.86   -3.43   -3.88   -4.11   -4.00   -3.42   -2.39   -1.15   -0.15    0.06   -0.93   -3.11   -5.88   -8.03   -7.93
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+JAV_RINGANT_G3T NONE                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               5    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     4                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+Number of Calibrated Antennas GPS:      005                 COMMENT             
+Number of Individual Calibrations GPS:  010                 COMMENT             
+Number of Calibrated Antennas GLO:      005                 COMMENT             
+Number of Individual Calibrations GLO:  010                 COMMENT             
+# GLONASS PCV                                               COMMENT             
+#  derived from Delta PCV per 25.0 MHz                      COMMENT             
+#  for frequency channel number k=0                         COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.25      2.24     49.04                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.14   -0.55   -1.12   -1.77   -2.44   -3.11   -3.77   -4.38   -4.84   -4.99   -4.70   -3.92   -2.73   -1.25    0.40    2.29    4.63    7.72
+     0.0    0.00   -0.13   -0.52   -1.09   -1.72   -2.36   -3.00   -3.64   -4.25   -4.74   -4.94   -4.71   -3.98   -2.82   -1.35    0.28    2.12    4.35    7.17
+     5.0    0.00   -0.13   -0.53   -1.09   -1.73   -2.37   -3.01   -3.64   -4.24   -4.73   -4.93   -4.70   -3.99   -2.83   -1.37    0.28    2.13    4.37    7.23
+    10.0    0.00   -0.14   -0.53   -1.10   -1.74   -2.38   -3.01   -3.64   -4.24   -4.72   -4.92   -4.70   -3.99   -2.84   -1.39    0.26    2.12    4.39    7.31
+    15.0    0.00   -0.14   -0.54   -1.11   -1.75   -2.39   -3.03   -3.65   -4.25   -4.71   -4.91   -4.69   -3.99   -2.85   -1.41    0.22    2.09    4.40    7.41
+    20.0    0.00   -0.14   -0.54   -1.12   -1.76   -2.41   -3.04   -3.67   -4.25   -4.71   -4.90   -4.68   -3.98   -2.87   -1.45    0.18    2.05    4.40    7.49
+    25.0    0.00   -0.14   -0.55   -1.12   -1.77   -2.42   -3.06   -3.69   -4.27   -4.72   -4.90   -4.67   -3.98   -2.88   -1.47    0.14    2.02    4.39    7.56
+    30.0    0.00   -0.15   -0.55   -1.13   -1.78   -2.44   -3.09   -3.71   -4.29   -4.73   -4.90   -4.67   -3.98   -2.88   -1.49    0.11    1.98    4.36    7.59
+    35.0    0.00   -0.15   -0.56   -1.14   -1.80   -2.46   -3.11   -3.74   -4.32   -4.75   -4.91   -4.67   -3.98   -2.88   -1.49    0.10    1.96    4.34    7.58
+    40.0    0.00   -0.15   -0.56   -1.15   -1.81   -2.48   -3.14   -3.77   -4.34   -4.77   -4.93   -4.68   -3.98   -2.87   -1.48    0.12    1.96    4.32    7.54
+    45.0    0.00   -0.15   -0.57   -1.15   -1.82   -2.50   -3.16   -3.80   -4.37   -4.80   -4.94   -4.69   -3.97   -2.85   -1.44    0.15    1.99    4.30    7.47
+    50.0    0.00   -0.16   -0.57   -1.16   -1.83   -2.51   -3.18   -3.82   -4.40   -4.82   -4.96   -4.70   -3.96   -2.82   -1.39    0.22    2.04    4.31    7.40
+    55.0    0.00   -0.16   -0.57   -1.17   -1.84   -2.52   -3.20   -3.84   -4.42   -4.84   -4.98   -4.70   -3.95   -2.79   -1.33    0.30    2.11    4.33    7.33
+    60.0    0.00   -0.16   -0.58   -1.17   -1.85   -2.53   -3.21   -3.85   -4.43   -4.86   -4.99   -4.71   -3.94   -2.75   -1.26    0.39    2.20    4.38    7.29
+    65.0    0.00   -0.16   -0.58   -1.17   -1.85   -2.54   -3.21   -3.85   -4.44   -4.86   -5.00   -4.71   -3.92   -2.70   -1.18    0.49    2.31    4.45    7.30
+    70.0    0.00   -0.16   -0.58   -1.18   -1.85   -2.54   -3.21   -3.85   -4.43   -4.86   -5.00   -4.70   -3.90   -2.66   -1.12    0.58    2.41    4.54    7.34
+    75.0    0.00   -0.16   -0.58   -1.18   -1.85   -2.54   -3.21   -3.85   -4.43   -4.85   -4.99   -4.68   -3.88   -2.62   -1.06    0.66    2.51    4.65    7.44
+    80.0    0.00   -0.16   -0.59   -1.18   -1.85   -2.53   -3.20   -3.84   -4.41   -4.84   -4.97   -4.66   -3.86   -2.59   -1.02    0.72    2.59    4.76    7.57
+    85.0    0.00   -0.17   -0.59   -1.18   -1.85   -2.53   -3.19   -3.82   -4.39   -4.82   -4.94   -4.64   -3.83   -2.57   -0.99    0.76    2.66    4.87    7.72
+    90.0    0.00   -0.17   -0.59   -1.18   -1.85   -2.53   -3.18   -3.81   -4.38   -4.79   -4.92   -4.62   -3.81   -2.55   -0.98    0.78    2.70    4.95    7.86
+    95.0    0.00   -0.17   -0.59   -1.18   -1.85   -2.52   -3.17   -3.80   -4.36   -4.77   -4.90   -4.59   -3.79   -2.55   -0.98    0.77    2.71    5.01    7.98
+   100.0    0.00   -0.17   -0.59   -1.18   -1.85   -2.52   -3.17   -3.79   -4.35   -4.76   -4.87   -4.57   -3.78   -2.54   -1.00    0.74    2.69    5.04    8.06
+   105.0    0.00   -0.17   -0.59   -1.18   -1.84   -2.51   -3.16   -3.78   -4.34   -4.74   -4.86   -4.55   -3.77   -2.55   -1.02    0.70    2.65    5.02    8.08
+   110.0    0.00   -0.17   -0.59   -1.18   -1.84   -2.51   -3.16   -3.78   -4.34   -4.74   -4.85   -4.54   -3.76   -2.56   -1.05    0.65    2.60    4.98    8.03
+   115.0    0.00   -0.17   -0.59   -1.18   -1.84   -2.51   -3.16   -3.78   -4.34   -4.74   -4.85   -4.54   -3.76   -2.57   -1.09    0.60    2.52    4.89    7.92
+   120.0    0.00   -0.17   -0.59   -1.18   -1.84   -2.51   -3.16   -3.79   -4.35   -4.75   -4.86   -4.54   -3.76   -2.58   -1.12    0.54    2.44    4.79    7.77
+   125.0    0.00   -0.17   -0.59   -1.18   -1.84   -2.51   -3.16   -3.80   -4.36   -4.77   -4.87   -4.55   -3.77   -2.59   -1.14    0.49    2.36    4.67    7.58
+   130.0    0.00   -0.17   -0.59   -1.17   -1.83   -2.51   -3.17   -3.80   -4.38   -4.78   -4.89   -4.56   -3.78   -2.60   -1.17    0.44    2.29    4.55    7.38
+   135.0    0.00   -0.17   -0.59   -1.17   -1.83   -2.50   -3.17   -3.81   -4.39   -4.80   -4.91   -4.58   -3.79   -2.61   -1.19    0.40    2.22    4.44    7.20
+   140.0    0.00   -0.17   -0.59   -1.17   -1.83   -2.50   -3.17   -3.82   -4.41   -4.82   -4.93   -4.60   -3.80   -2.62   -1.21    0.37    2.16    4.35    7.06
+   145.0    0.00   -0.17   -0.59   -1.17   -1.82   -2.50   -3.17   -3.82   -4.42   -4.84   -4.95   -4.61   -3.81   -2.64   -1.22    0.34    2.12    4.29    6.98
+   150.0    0.00   -0.17   -0.58   -1.17   -1.82   -2.49   -3.16   -3.83   -4.43   -4.86   -4.97   -4.63   -3.83   -2.65   -1.23    0.33    2.09    4.26    6.95
+   155.0    0.00   -0.17   -0.58   -1.16   -1.82   -2.49   -3.16   -3.83   -4.43   -4.87   -4.98   -4.65   -3.85   -2.66   -1.24    0.32    2.09    4.27    6.99
+   160.0    0.00   -0.17   -0.58   -1.16   -1.81   -2.48   -3.16   -3.83   -4.44   -4.88   -5.00   -4.67   -3.86   -2.67   -1.25    0.31    2.09    4.30    7.08
+   165.0    0.00   -0.16   -0.58   -1.16   -1.81   -2.48   -3.15   -3.82   -4.44   -4.89   -5.02   -4.69   -3.88   -2.69   -1.26    0.32    2.12    4.36    7.20
+   170.0    0.00   -0.16   -0.58   -1.16   -1.81   -2.48   -3.15   -3.82   -4.45   -4.91   -5.04   -4.71   -3.91   -2.70   -1.26    0.33    2.15    4.43    7.35
+   175.0    0.00   -0.16   -0.58   -1.16   -1.81   -2.47   -3.15   -3.83   -4.45   -4.92   -5.06   -4.74   -3.93   -2.72   -1.26    0.35    2.20    4.51    7.50
+   180.0    0.00   -0.16   -0.58   -1.15   -1.81   -2.48   -3.15   -3.83   -4.46   -4.93   -5.08   -4.77   -3.96   -2.74   -1.27    0.37    2.24    4.59    7.64
+   185.0    0.00   -0.16   -0.57   -1.15   -1.81   -2.48   -3.16   -3.84   -4.47   -4.95   -5.10   -4.80   -3.99   -2.76   -1.27    0.40    2.29    4.66    7.76
+   190.0    0.00   -0.16   -0.57   -1.15   -1.81   -2.48   -3.16   -3.84   -4.48   -4.97   -5.13   -4.83   -4.02   -2.78   -1.27    0.42    2.34    4.73    7.85
+   195.0    0.00   -0.16   -0.57   -1.15   -1.81   -2.49   -3.17   -3.86   -4.50   -4.98   -5.15   -4.86   -4.05   -2.80   -1.27    0.45    2.38    4.78    7.91
+   200.0    0.00   -0.15   -0.57   -1.15   -1.81   -2.50   -3.18   -3.87   -4.51   -5.00   -5.17   -4.88   -4.08   -2.83   -1.27    0.46    2.41    4.81    7.96
+   205.0    0.00   -0.15   -0.56   -1.15   -1.82   -2.50   -3.19   -3.88   -4.52   -5.01   -5.19   -4.90   -4.10   -2.85   -1.28    0.47    2.44    4.84    8.00
+   210.0    0.00   -0.15   -0.56   -1.15   -1.82   -2.51   -3.20   -3.89   -4.53   -5.02   -5.20   -4.92   -4.12   -2.87   -1.29    0.47    2.45    4.86    8.03
+   215.0    0.00   -0.15   -0.56   -1.14   -1.82   -2.51   -3.21   -3.90   -4.54   -5.02   -5.20   -4.93   -4.13   -2.88   -1.31    0.46    2.45    4.88    8.08
+   220.0    0.00   -0.15   -0.55   -1.14   -1.81   -2.51   -3.21   -3.90   -4.54   -5.02   -5.20   -4.92   -4.14   -2.89   -1.32    0.45    2.45    4.89    8.13
+   225.0    0.00   -0.14   -0.55   -1.13   -1.81   -2.51   -3.21   -3.90   -4.54   -5.02   -5.19   -4.92   -4.13   -2.89   -1.33    0.44    2.45    4.91    8.20
+   230.0    0.00   -0.14   -0.54   -1.13   -1.80   -2.50   -3.21   -3.90   -4.53   -5.01   -5.18   -4.90   -4.12   -2.89   -1.33    0.44    2.45    4.93    8.28
+   235.0    0.00   -0.14   -0.54   -1.12   -1.79   -2.50   -3.20   -3.89   -4.53   -5.00   -5.16   -4.88   -4.10   -2.87   -1.32    0.44    2.45    4.96    8.35
+   240.0    0.00   -0.14   -0.53   -1.11   -1.78   -2.48   -3.19   -3.88   -4.51   -4.98   -5.14   -4.86   -4.08   -2.85   -1.30    0.45    2.46    4.99    8.43
+   245.0    0.00   -0.13   -0.53   -1.10   -1.77   -2.47   -3.17   -3.87   -4.50   -4.97   -5.12   -4.84   -4.05   -2.82   -1.27    0.48    2.48    5.02    8.49
+   250.0    0.00   -0.13   -0.52   -1.09   -1.75   -2.45   -3.15   -3.85   -4.49   -4.96   -5.11   -4.81   -4.01   -2.78   -1.23    0.51    2.51    5.04    8.53
+   255.0    0.00   -0.13   -0.51   -1.08   -1.74   -2.43   -3.13   -3.83   -4.47   -4.94   -5.09   -4.79   -3.98   -2.73   -1.19    0.56    2.55    5.07    8.54
+   260.0    0.00   -0.13   -0.51   -1.07   -1.72   -2.41   -3.11   -3.81   -4.46   -4.93   -5.08   -4.77   -3.95   -2.69   -1.14    0.60    2.58    5.09    8.54
+   265.0    0.00   -0.12   -0.50   -1.06   -1.70   -2.39   -3.09   -3.79   -4.44   -4.92   -5.07   -4.75   -3.92   -2.65   -1.09    0.65    2.61    5.09    8.52
+   270.0    0.00   -0.12   -0.50   -1.05   -1.69   -2.37   -3.07   -3.77   -4.43   -4.91   -5.06   -4.74   -3.89   -2.61   -1.05    0.68    2.63    5.09    8.48
+   275.0    0.00   -0.12   -0.49   -1.04   -1.68   -2.35   -3.05   -3.76   -4.41   -4.90   -5.05   -4.72   -3.87   -2.59   -1.03    0.69    2.63    5.07    8.44
+   280.0    0.00   -0.12   -0.49   -1.03   -1.67   -2.34   -3.04   -3.74   -4.40   -4.89   -5.04   -4.71   -3.86   -2.57   -1.02    0.69    2.61    5.04    8.41
+   285.0    0.00   -0.12   -0.49   -1.03   -1.66   -2.33   -3.03   -3.73   -4.39   -4.88   -5.02   -4.69   -3.84   -2.57   -1.03    0.65    2.57    5.00    8.37
+   290.0    0.00   -0.12   -0.49   -1.03   -1.66   -2.33   -3.02   -3.72   -4.38   -4.86   -5.01   -4.68   -3.84   -2.58   -1.07    0.60    2.50    4.95    8.34
+   295.0    0.00   -0.12   -0.48   -1.03   -1.66   -2.32   -3.02   -3.72   -4.37   -4.85   -4.99   -4.67   -3.84   -2.60   -1.11    0.53    2.42    4.88    8.32
+   300.0    0.00   -0.12   -0.48   -1.03   -1.66   -2.33   -3.01   -3.71   -4.36   -4.83   -4.98   -4.66   -3.84   -2.63   -1.17    0.44    2.32    4.80    8.28
+   305.0    0.00   -0.12   -0.49   -1.03   -1.66   -2.33   -3.02   -3.71   -4.35   -4.82   -4.96   -4.65   -3.85   -2.66   -1.24    0.35    2.22    4.72    8.24
+   310.0    0.00   -0.12   -0.49   -1.03   -1.66   -2.33   -3.02   -3.71   -4.34   -4.81   -4.95   -4.65   -3.86   -2.70   -1.30    0.26    2.13    4.64    8.17
+   315.0    0.00   -0.12   -0.49   -1.04   -1.67   -2.34   -3.02   -3.70   -4.34   -4.80   -4.95   -4.65   -3.88   -2.73   -1.35    0.19    2.05    4.56    8.08
+   320.0    0.00   -0.12   -0.49   -1.04   -1.68   -2.34   -3.02   -3.70   -4.33   -4.79   -4.94   -4.65   -3.89   -2.76   -1.40    0.14    1.99    4.48    7.96
+   325.0    0.00   -0.12   -0.50   -1.05   -1.68   -2.35   -3.02   -3.70   -4.32   -4.79   -4.94   -4.66   -3.91   -2.78   -1.42    0.12    1.95    4.42    7.82
+   330.0    0.00   -0.12   -0.50   -1.05   -1.69   -2.35   -3.02   -3.69   -4.31   -4.78   -4.95   -4.67   -3.93   -2.80   -1.43    0.11    1.94    4.36    7.67
+   335.0    0.00   -0.12   -0.50   -1.06   -1.69   -2.35   -3.02   -3.68   -4.31   -4.78   -4.95   -4.68   -3.94   -2.81   -1.42    0.13    1.95    4.32    7.51
+   340.0    0.00   -0.12   -0.51   -1.06   -1.70   -2.35   -3.01   -3.67   -4.30   -4.77   -4.95   -4.70   -3.96   -2.81   -1.41    0.17    1.98    4.30    7.37
+   345.0    0.00   -0.13   -0.51   -1.07   -1.70   -2.35   -3.01   -3.66   -4.29   -4.77   -4.95   -4.70   -3.97   -2.81   -1.39    0.21    2.02    4.30    7.26
+   350.0    0.00   -0.13   -0.52   -1.07   -1.71   -2.36   -3.00   -3.65   -4.27   -4.76   -4.95   -4.71   -3.97   -2.81   -1.37    0.24    2.06    4.30    7.19
+   355.0    0.00   -0.13   -0.52   -1.08   -1.71   -2.36   -3.00   -3.65   -4.26   -4.75   -4.95   -4.71   -3.98   -2.81   -1.36    0.27    2.10    4.32    7.16
+   360.0    0.00   -0.13   -0.52   -1.09   -1.72   -2.36   -3.00   -3.64   -4.25   -4.74   -4.94   -4.71   -3.98   -2.82   -1.35    0.28    2.12    4.35    7.17
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      6.80     -3.16     54.72                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.10   -0.37   -0.74   -1.14   -1.51   -1.88   -2.26   -2.69   -3.15   -3.55   -3.76   -3.61   -2.99   -1.86   -0.23    1.84    4.26    6.89
+     0.0    0.00   -0.03   -0.23   -0.54   -0.88   -1.22   -1.56   -1.92   -2.34   -2.78   -3.16   -3.35   -3.21   -2.64   -1.57    0.01    2.08    4.59    7.35
+     5.0    0.00   -0.05   -0.27   -0.59   -0.95   -1.29   -1.62   -1.97   -2.36   -2.78   -3.13   -3.28   -3.08   -2.43   -1.25    0.44    2.61    5.18    7.95
+    10.0    0.00   -0.07   -0.30   -0.64   -1.01   -1.36   -1.69   -2.02   -2.40   -2.79   -3.11   -3.23   -2.99   -2.27   -1.01    0.79    3.05    5.66    8.48
+    15.0    0.00   -0.08   -0.34   -0.69   -1.07   -1.43   -1.76   -2.09   -2.45   -2.82   -3.12   -3.22   -2.95   -2.18   -0.85    1.02    3.35    6.02    8.89
+    20.0    0.00   -0.10   -0.37   -0.74   -1.14   -1.50   -1.84   -2.16   -2.51   -2.87   -3.17   -3.25   -2.96   -2.17   -0.79    1.13    3.50    6.21    9.16
+    25.0    0.00   -0.12   -0.41   -0.80   -1.20   -1.58   -1.92   -2.24   -2.59   -2.95   -3.24   -3.33   -3.04   -2.23   -0.84    1.10    3.49    6.25    9.30
+    30.0    0.00   -0.14   -0.45   -0.85   -1.27   -1.65   -2.00   -2.33   -2.68   -3.05   -3.35   -3.44   -3.16   -2.36   -0.98    0.95    3.35    6.13    9.31
+    35.0    0.00   -0.16   -0.48   -0.90   -1.33   -1.72   -2.08   -2.42   -2.79   -3.17   -3.48   -3.59   -3.33   -2.55   -1.20    0.70    3.08    5.89    9.20
+    40.0    0.00   -0.18   -0.52   -0.94   -1.38   -1.79   -2.16   -2.52   -2.90   -3.30   -3.63   -3.76   -3.52   -2.77   -1.46    0.39    2.73    5.56    9.00
+    45.0    0.00   -0.20   -0.55   -0.99   -1.44   -1.86   -2.24   -2.61   -3.01   -3.43   -3.79   -3.94   -3.73   -3.01   -1.75    0.04    2.34    5.17    8.75
+    50.0    0.00   -0.21   -0.58   -1.03   -1.49   -1.92   -2.31   -2.70   -3.12   -3.56   -3.94   -4.12   -3.92   -3.24   -2.03   -0.30    1.94    4.78    8.49
+    55.0    0.00   -0.23   -0.61   -1.07   -1.54   -1.97   -2.38   -2.78   -3.22   -3.68   -4.08   -4.27   -4.10   -3.45   -2.29   -0.61    1.58    4.43    8.23
+    60.0    0.00   -0.25   -0.64   -1.11   -1.59   -2.03   -2.44   -2.85   -3.31   -3.78   -4.19   -4.39   -4.23   -3.61   -2.48   -0.86    1.29    4.14    8.03
+    65.0    0.00   -0.26   -0.67   -1.15   -1.63   -2.08   -2.49   -2.91   -3.38   -3.86   -4.27   -4.47   -4.32   -3.71   -2.61   -1.02    1.11    3.96    7.89
+    70.0    0.00   -0.27   -0.69   -1.18   -1.67   -2.12   -2.54   -2.97   -3.43   -3.91   -4.32   -4.51   -4.35   -3.75   -2.66   -1.09    1.04    3.90    7.84
+    75.0    0.00   -0.28   -0.72   -1.22   -1.71   -2.17   -2.59   -3.01   -3.47   -3.94   -4.33   -4.51   -4.33   -3.72   -2.63   -1.05    1.09    3.97    7.88
+    80.0    0.00   -0.29   -0.74   -1.25   -1.75   -2.21   -2.63   -3.05   -3.50   -3.95   -4.32   -4.47   -4.27   -3.63   -2.51   -0.90    1.27    4.16    8.01
+    85.0    0.00   -0.30   -0.75   -1.27   -1.78   -2.25   -2.67   -3.09   -3.52   -3.95   -4.29   -4.40   -4.17   -3.49   -2.33   -0.67    1.55    4.45    8.22
+    90.0    0.00   -0.31   -0.77   -1.30   -1.82   -2.28   -2.71   -3.12   -3.54   -3.95   -4.25   -4.32   -4.04   -3.31   -2.09   -0.37    1.91    4.83    8.48
+    95.0    0.00   -0.32   -0.78   -1.32   -1.84   -2.32   -2.74   -3.15   -3.56   -3.94   -4.21   -4.24   -3.91   -3.12   -1.83   -0.03    2.31    5.24    8.75
+   100.0    0.00   -0.32   -0.79   -1.33   -1.87   -2.34   -2.77   -3.17   -3.57   -3.93   -4.17   -4.17   -3.78   -2.93   -1.56    0.32    2.72    5.64    9.01
+   105.0    0.00   -0.32   -0.80   -1.35   -1.88   -2.37   -2.80   -3.20   -3.59   -3.94   -4.15   -4.11   -3.67   -2.75   -1.32    0.64    3.08    5.98    9.20
+   110.0    0.00   -0.33   -0.80   -1.35   -1.89   -2.38   -2.81   -3.22   -3.61   -3.95   -4.15   -4.07   -3.59   -2.62   -1.12    0.89    3.36    6.22    9.30
+   115.0    0.00   -0.32   -0.80   -1.35   -1.90   -2.39   -2.82   -3.23   -3.62   -3.96   -4.16   -4.07   -3.55   -2.53   -0.99    1.05    3.52    6.32    9.27
+   120.0    0.00   -0.32   -0.80   -1.35   -1.89   -2.38   -2.82   -3.23   -3.63   -3.98   -4.18   -4.08   -3.55   -2.50   -0.93    1.11    3.54    6.27    9.09
+   125.0    0.00   -0.32   -0.79   -1.34   -1.88   -2.36   -2.80   -3.22   -3.63   -4.00   -4.21   -4.12   -3.58   -2.52   -0.96    1.05    3.42    6.05    8.78
+   130.0    0.00   -0.31   -0.78   -1.32   -1.85   -2.33   -2.77   -3.19   -3.62   -4.01   -4.24   -4.16   -3.63   -2.59   -1.06    0.89    3.16    5.68    8.34
+   135.0    0.00   -0.30   -0.76   -1.30   -1.82   -2.29   -2.73   -3.15   -3.59   -4.00   -4.26   -4.20   -3.70   -2.69   -1.21    0.65    2.80    5.20    7.81
+   140.0    0.00   -0.29   -0.74   -1.27   -1.78   -2.24   -2.67   -3.09   -3.55   -3.98   -4.26   -4.24   -3.76   -2.80   -1.39    0.36    2.38    4.66    7.23
+   145.0    0.00   -0.28   -0.72   -1.23   -1.73   -2.18   -2.60   -3.02   -3.48   -3.93   -4.24   -4.24   -3.81   -2.89   -1.56    0.07    1.95    4.13    6.68
+   150.0    0.00   -0.27   -0.69   -1.19   -1.68   -2.12   -2.52   -2.94   -3.40   -3.86   -4.19   -4.22   -3.82   -2.95   -1.70   -0.17    1.59    3.66    6.21
+   155.0    0.00   -0.25   -0.67   -1.15   -1.62   -2.04   -2.44   -2.85   -3.31   -3.77   -4.11   -4.16   -3.78   -2.96   -1.77   -0.33    1.34    3.33    5.86
+   160.0    0.00   -0.24   -0.64   -1.10   -1.56   -1.97   -2.35   -2.75   -3.20   -3.66   -4.00   -4.06   -3.70   -2.91   -1.76   -0.37    1.24    3.18    5.68
+   165.0    0.00   -0.22   -0.60   -1.05   -1.50   -1.89   -2.26   -2.65   -3.09   -3.54   -3.87   -3.92   -3.57   -2.79   -1.65   -0.27    1.31    3.22    5.69
+   170.0    0.00   -0.20   -0.57   -1.00   -1.43   -1.82   -2.18   -2.55   -2.98   -3.40   -3.72   -3.76   -3.39   -2.60   -1.45   -0.05    1.56    3.47    5.87
+   175.0    0.00   -0.19   -0.53   -0.95   -1.37   -1.75   -2.09   -2.46   -2.86   -3.27   -3.55   -3.57   -3.19   -2.38   -1.18    0.28    1.95    3.88    6.20
+   180.0    0.00   -0.17   -0.49   -0.90   -1.31   -1.67   -2.01   -2.36   -2.75   -3.13   -3.39   -3.39   -2.99   -2.13   -0.88    0.67    2.44    4.40    6.61
+   185.0    0.00   -0.15   -0.45   -0.85   -1.24   -1.61   -1.94   -2.28   -2.64   -3.00   -3.24   -3.22   -2.79   -1.90   -0.58    1.08    2.95    4.95    7.04
+   190.0    0.00   -0.13   -0.42   -0.79   -1.18   -1.54   -1.87   -2.20   -2.55   -2.88   -3.11   -3.07   -2.64   -1.72   -0.33    1.43    3.41    5.45    7.41
+   195.0    0.00   -0.11   -0.38   -0.74   -1.12   -1.47   -1.80   -2.12   -2.46   -2.78   -3.00   -2.97   -2.54   -1.61   -0.18    1.66    3.74    5.82    7.66
+   200.0    0.00   -0.09   -0.34   -0.68   -1.06   -1.41   -1.73   -2.05   -2.38   -2.70   -2.93   -2.92   -2.52   -1.61   -0.16    1.74    3.89    6.00    7.71
+   205.0    0.00   -0.07   -0.30   -0.63   -1.00   -1.34   -1.67   -1.98   -2.32   -2.65   -2.90   -2.93   -2.58   -1.72   -0.29    1.62    3.81    5.93    7.55
+   210.0    0.00   -0.05   -0.26   -0.58   -0.93   -1.28   -1.60   -1.92   -2.26   -2.61   -2.90   -2.99   -2.72   -1.94   -0.58    1.31    3.49    5.60    7.16
+   215.0    0.00   -0.03   -0.22   -0.53   -0.88   -1.22   -1.54   -1.86   -2.22   -2.60   -2.94   -3.11   -2.94   -2.27   -1.01    0.81    2.96    5.05    6.58
+   220.0    0.00   -0.01   -0.19   -0.48   -0.82   -1.15   -1.48   -1.81   -2.19   -2.61   -3.01   -3.27   -3.22   -2.68   -1.54    0.18    2.25    4.31    5.86
+   225.0    0.00    0.01   -0.16   -0.43   -0.76   -1.09   -1.42   -1.77   -2.17   -2.63   -3.10   -3.46   -3.53   -3.12   -2.12   -0.53    1.46    3.49    5.08
+   230.0    0.00    0.03   -0.12   -0.39   -0.71   -1.04   -1.37   -1.73   -2.16   -2.67   -3.21   -3.66   -3.85   -3.57   -2.70   -1.24    0.66    2.66    4.33
+   235.0    0.00    0.04   -0.09   -0.35   -0.66   -0.99   -1.32   -1.70   -2.16   -2.71   -3.32   -3.86   -4.14   -3.97   -3.22   -1.87   -0.05    1.93    3.69
+   240.0    0.00    0.06   -0.07   -0.31   -0.62   -0.95   -1.29   -1.68   -2.16   -2.76   -3.42   -4.02   -4.38   -4.29   -3.63   -2.36   -0.60    1.39    3.25
+   245.0    0.00    0.07   -0.04   -0.28   -0.58   -0.91   -1.25   -1.66   -2.17   -2.81   -3.51   -4.15   -4.55   -4.51   -3.88   -2.65   -0.91    1.09    3.05
+   250.0    0.00    0.08   -0.02   -0.25   -0.55   -0.88   -1.23   -1.65   -2.19   -2.84   -3.57   -4.23   -4.64   -4.59   -3.97   -2.72   -0.97    1.08    3.12
+   255.0    0.00    0.09    0.00   -0.23   -0.53   -0.86   -1.22   -1.65   -2.20   -2.87   -3.60   -4.26   -4.64   -4.55   -3.88   -2.58   -0.77    1.34    3.44
+   260.0    0.00    0.10    0.02   -0.21   -0.51   -0.84   -1.21   -1.65   -2.21   -2.88   -3.60   -4.23   -4.55   -4.40   -3.64   -2.24   -0.34    1.83    3.98
+   265.0    0.00    0.11    0.03   -0.19   -0.49   -0.83   -1.20   -1.65   -2.21   -2.88   -3.57   -4.15   -4.41   -4.16   -3.28   -1.77    0.24    2.50    4.66
+   270.0    0.00    0.12    0.04   -0.18   -0.48   -0.82   -1.20   -1.65   -2.21   -2.86   -3.52   -4.04   -4.21   -3.86   -2.87   -1.24    0.89    3.24    5.41
+   275.0    0.00    0.12    0.05   -0.17   -0.48   -0.82   -1.21   -1.66   -2.20   -2.82   -3.44   -3.90   -4.00   -3.56   -2.45   -0.70    1.54    3.96    6.12
+   280.0    0.00    0.12    0.05   -0.17   -0.48   -0.82   -1.21   -1.66   -2.19   -2.79   -3.36   -3.76   -3.80   -3.27   -2.09   -0.24    2.09    4.58    6.73
+   285.0    0.00    0.12    0.05   -0.17   -0.48   -0.83   -1.21   -1.66   -2.17   -2.74   -3.28   -3.64   -3.62   -3.05   -1.81    0.08    2.47    5.01    7.15
+   290.0    0.00    0.12    0.05   -0.17   -0.48   -0.83   -1.22   -1.65   -2.16   -2.70   -3.21   -3.53   -3.49   -2.90   -1.66    0.24    2.65    5.21    7.36
+   295.0    0.00    0.12    0.05   -0.18   -0.49   -0.84   -1.22   -1.65   -2.14   -2.67   -3.16   -3.46   -3.41   -2.84   -1.64    0.22    2.60    5.17    7.35
+   300.0    0.00    0.12    0.04   -0.19   -0.50   -0.85   -1.23   -1.65   -2.14   -2.65   -3.12   -3.43   -3.39   -2.88   -1.75    0.02    2.35    4.91    7.13
+   305.0    0.00    0.11    0.03   -0.20   -0.51   -0.86   -1.23   -1.66   -2.13   -2.65   -3.12   -3.43   -3.43   -2.98   -1.95   -0.30    1.93    4.47    6.75
+   310.0    0.00    0.11    0.02   -0.21   -0.52   -0.87   -1.24   -1.66   -2.14   -2.65   -3.13   -3.46   -3.50   -3.13   -2.22   -0.70    1.42    3.92    6.27
+   315.0    0.00    0.10    0.00   -0.23   -0.54   -0.88   -1.25   -1.67   -2.16   -2.67   -3.16   -3.50   -3.59   -3.30   -2.50   -1.11    0.89    3.35    5.78
+   320.0    0.00    0.09   -0.01   -0.25   -0.56   -0.90   -1.27   -1.69   -2.17   -2.70   -3.20   -3.56   -3.68   -3.45   -2.75   -1.48    0.42    2.84    5.35
+   325.0    0.00    0.08   -0.03   -0.27   -0.58   -0.92   -1.29   -1.71   -2.20   -2.73   -3.24   -3.61   -3.76   -3.57   -2.94   -1.75    0.06    2.45    5.04
+   330.0    0.00    0.07   -0.05   -0.30   -0.61   -0.94   -1.31   -1.73   -2.22   -2.76   -3.27   -3.65   -3.80   -3.62   -3.02   -1.89   -0.13    2.24    4.89
+   335.0    0.00    0.05   -0.08   -0.33   -0.64   -0.98   -1.34   -1.76   -2.25   -2.78   -3.29   -3.66   -3.79   -3.60   -2.99   -1.86   -0.12    2.24    4.94
+   340.0    0.00    0.04   -0.11   -0.37   -0.68   -1.01   -1.37   -1.78   -2.27   -2.80   -3.29   -3.64   -3.74   -3.50   -2.84   -1.68    0.08    2.44    5.17
+   345.0    0.00    0.02   -0.13   -0.41   -0.73   -1.06   -1.41   -1.81   -2.29   -2.80   -3.28   -3.59   -3.64   -3.33   -2.59   -1.36    0.45    2.83    5.57
+   350.0    0.00    0.01   -0.16   -0.45   -0.77   -1.11   -1.45   -1.84   -2.30   -2.80   -3.24   -3.52   -3.51   -3.12   -2.28   -0.94    0.94    3.35    6.11
+   355.0    0.00   -0.01   -0.20   -0.49   -0.83   -1.16   -1.50   -1.88   -2.32   -2.79   -3.20   -3.44   -3.36   -2.88   -1.92   -0.47    1.51    3.96    6.72
+   360.0    0.00   -0.03   -0.23   -0.54   -0.88   -1.22   -1.56   -1.92   -2.34   -2.78   -3.16   -3.35   -3.21   -2.64   -1.57    0.01    2.08    4.59    7.35
+   G02                                                      END OF FREQUENCY    
+   R01                                                      START OF FREQUENCY  
+      0.25      2.24     49.04                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.17   -0.68   -1.39   -2.17   -2.98   -3.79   -4.62   -5.43   -6.15   -6.57   -6.54   -5.97   -4.95   -3.61   -2.13   -0.46    1.63    4.58
+     0.0    0.00    0.09   -0.17   -0.71   -1.37   -2.07   -2.77   -3.43   -4.06   -4.58   -4.87   -4.77   -4.22   -3.27   -2.03   -0.67    0.88    2.89    5.81
+     5.0    0.00    0.10   -0.17   -0.69   -1.37   -2.07   -2.78   -3.45   -4.08   -4.62   -4.92   -4.83   -4.29   -3.31   -2.05   -0.64    0.92    2.88    5.70
+    10.0    0.00    0.09   -0.16   -0.69   -1.37   -2.07   -2.78   -3.47   -4.12   -4.68   -4.98   -4.91   -4.36   -3.36   -2.08   -0.64    0.93    2.87    5.61
+    15.0    0.00    0.09   -0.17   -0.70   -1.37   -2.08   -2.81   -3.50   -4.18   -4.73   -5.06   -4.99   -4.44   -3.42   -2.12   -0.67    0.90    2.84    5.56
+    20.0    0.00    0.09   -0.17   -0.71   -1.38   -2.10   -2.83   -3.55   -4.23   -4.82   -5.14   -5.07   -4.50   -3.50   -2.18   -0.72    0.85    2.78    5.51
+    25.0    0.00    0.09   -0.18   -0.71   -1.39   -2.12   -2.87   -3.62   -4.31   -4.91   -5.24   -5.16   -4.59   -3.56   -2.24   -0.78    0.79    2.72    5.50
+    30.0    0.00    0.07   -0.19   -0.73   -1.41   -2.15   -2.92   -3.68   -4.41   -5.01   -5.34   -5.24   -4.65   -3.61   -2.30   -0.86    0.70    2.64    5.47
+    35.0    0.00    0.06   -0.21   -0.75   -1.45   -2.20   -2.98   -3.76   -4.50   -5.11   -5.43   -5.33   -4.71   -3.67   -2.35   -0.92    0.61    2.55    5.44
+    40.0    0.00    0.05   -0.23   -0.79   -1.48   -2.26   -3.04   -3.84   -4.60   -5.21   -5.54   -5.40   -4.78   -3.71   -2.39   -0.98    0.54    2.48    5.41
+    45.0    0.00    0.04   -0.26   -0.81   -1.53   -2.31   -3.12   -3.93   -4.69   -5.31   -5.61   -5.48   -4.82   -3.74   -2.42   -1.02    0.48    2.41    5.35
+    50.0    0.00    0.02   -0.28   -0.86   -1.59   -2.37   -3.19   -4.00   -4.78   -5.39   -5.70   -5.55   -4.87   -3.78   -2.44   -1.03    0.46    2.36    5.31
+    55.0    0.00    0.01   -0.31   -0.91   -1.64   -2.43   -3.26   -4.08   -4.86   -5.48   -5.78   -5.61   -4.93   -3.82   -2.46   -1.04    0.44    2.33    5.24
+    60.0    0.00   -0.01   -0.37   -0.96   -1.71   -2.50   -3.33   -4.15   -4.92   -5.55   -5.85   -5.70   -5.00   -3.87   -2.48   -1.03    0.47    2.33    5.16
+    65.0    0.00   -0.03   -0.40   -1.01   -1.76   -2.57   -3.39   -4.20   -4.98   -5.60   -5.92   -5.78   -5.08   -3.93   -2.51   -1.02    0.51    2.34    5.11
+    70.0    0.00   -0.05   -0.44   -1.08   -1.84   -2.65   -3.45   -4.25   -5.03   -5.66   -6.00   -5.87   -5.19   -4.02   -2.56   -1.01    0.55    2.38    5.04
+    75.0    0.00   -0.07   -0.48   -1.14   -1.91   -2.72   -3.52   -4.31   -5.08   -5.72   -6.09   -5.97   -5.30   -4.12   -2.62   -1.03    0.59    2.42    4.99
+    80.0    0.00   -0.10   -0.54   -1.20   -1.99   -2.79   -3.58   -4.36   -5.12   -5.79   -6.17   -6.08   -5.44   -4.26   -2.72   -1.07    0.60    2.44    4.95
+    85.0    0.00   -0.13   -0.59   -1.28   -2.06   -2.86   -3.65   -4.42   -5.18   -5.85   -6.26   -6.22   -5.59   -4.41   -2.84   -1.13    0.59    2.45    4.92
+    90.0    0.00   -0.15   -0.63   -1.34   -2.15   -2.94   -3.71   -4.48   -5.25   -5.93   -6.38   -6.37   -5.77   -4.58   -2.99   -1.24    0.52    2.40    4.87
+    95.0    0.00   -0.18   -0.69   -1.40   -2.22   -3.02   -3.79   -4.55   -5.32   -6.02   -6.51   -6.51   -5.94   -4.76   -3.16   -1.39    0.40    2.32    4.80
+   100.0    0.00   -0.20   -0.73   -1.48   -2.31   -3.10   -3.87   -4.64   -5.41   -6.14   -6.62   -6.68   -6.12   -4.94   -3.34   -1.57    0.23    2.19    4.72
+   105.0    0.00   -0.22   -0.78   -1.54   -2.37   -3.18   -3.96   -4.73   -5.52   -6.26   -6.77   -6.83   -6.28   -5.12   -3.53   -1.77    0.03    2.00    4.60
+   110.0    0.00   -0.24   -0.82   -1.61   -2.45   -3.26   -4.04   -4.83   -5.64   -6.39   -6.91   -6.97   -6.44   -5.29   -3.72   -1.99   -0.20    1.79    4.44
+   115.0    0.00   -0.28   -0.87   -1.67   -2.52   -3.35   -4.14   -4.93   -5.75   -6.53   -7.05   -7.12   -6.58   -5.45   -3.92   -2.22   -0.47    1.53    4.24
+   120.0    0.00   -0.30   -0.91   -1.72   -2.58   -3.42   -4.22   -5.04   -5.88   -6.65   -7.19   -7.25   -6.69   -5.59   -4.09   -2.45   -0.74    1.26    4.01
+   125.0    0.00   -0.32   -0.95   -1.78   -2.66   -3.50   -4.31   -5.15   -6.00   -6.79   -7.32   -7.36   -6.81   -5.71   -4.24   -2.66   -1.00    0.98    3.75
+   130.0    0.00   -0.34   -0.99   -1.82   -2.70   -3.56   -4.40   -5.24   -6.11   -6.90   -7.42   -7.45   -6.90   -5.80   -4.39   -2.87   -1.24    0.72    3.48
+   135.0    0.00   -0.36   -1.03   -1.86   -2.75   -3.62   -4.47   -5.33   -6.21   -7.00   -7.51   -7.54   -6.97   -5.90   -4.52   -3.04   -1.47    0.47    3.21
+   140.0    0.00   -0.37   -1.06   -1.90   -2.81   -3.68   -4.54   -5.41   -6.31   -7.10   -7.60   -7.60   -7.03   -5.97   -4.64   -3.20   -1.67    0.26    2.98
+   145.0    0.00   -0.39   -1.09   -1.95   -2.84   -3.73   -4.61   -5.49   -6.39   -7.17   -7.66   -7.65   -7.07   -6.05   -4.74   -3.35   -1.82    0.09    2.77
+   150.0    0.00   -0.40   -1.10   -1.98   -2.88   -3.78   -4.65   -5.56   -6.46   -7.24   -7.71   -7.69   -7.14   -6.12   -4.84   -3.48   -1.97   -0.05    2.60
+   155.0    0.00   -0.43   -1.12   -2.00   -2.92   -3.82   -4.70   -5.63   -6.52   -7.30   -7.77   -7.74   -7.19   -6.18   -4.94   -3.59   -2.08   -0.14    2.49
+   160.0    0.00   -0.44   -1.14   -2.02   -2.94   -3.85   -4.75   -5.68   -6.59   -7.36   -7.82   -7.79   -7.23   -6.25   -5.03   -3.71   -2.18   -0.22    2.42
+   165.0    0.00   -0.44   -1.16   -2.04   -2.97   -3.88   -4.80   -5.73   -6.64   -7.42   -7.87   -7.83   -7.28   -6.33   -5.13   -3.81   -2.26   -0.25    2.39
+   170.0    0.00   -0.45   -1.18   -2.06   -2.99   -3.92   -4.84   -5.78   -6.71   -7.48   -7.92   -7.88   -7.35   -6.40   -5.23   -3.90   -2.34   -0.28    2.41
+   175.0    0.00   -0.45   -1.19   -2.07   -3.01   -3.93   -4.87   -5.84   -6.76   -7.54   -7.98   -7.95   -7.42   -6.48   -5.31   -3.99   -2.39   -0.31    2.44
+   180.0    0.00   -0.46   -1.20   -2.07   -3.02   -3.96   -4.90   -5.87   -6.81   -7.59   -8.04   -8.01   -7.49   -6.57   -5.42   -4.07   -2.45   -0.31    2.48
+   185.0    0.00   -0.46   -1.19   -2.07   -3.02   -3.97   -4.94   -5.91   -6.85   -7.65   -8.10   -8.09   -7.57   -6.65   -5.49   -4.14   -2.49   -0.33    2.53
+   190.0    0.00   -0.46   -1.19   -2.07   -3.02   -3.98   -4.95   -5.92   -6.88   -7.69   -8.16   -8.16   -7.65   -6.74   -5.57   -4.19   -2.53   -0.33    2.57
+   195.0    0.00   -0.46   -1.19   -2.07   -3.02   -3.98   -4.95   -5.94   -6.91   -7.71   -8.20   -8.22   -7.73   -6.81   -5.63   -4.23   -2.55   -0.32    2.59
+   200.0    0.00   -0.45   -1.18   -2.06   -3.01   -3.98   -4.94   -5.94   -6.91   -7.73   -8.23   -8.27   -7.80   -6.89   -5.67   -4.26   -2.56   -0.33    2.63
+   205.0    0.00   -0.44   -1.17   -2.05   -3.00   -3.96   -4.92   -5.92   -6.89   -7.72   -8.25   -8.30   -7.84   -6.94   -5.70   -4.26   -2.54   -0.31    2.68
+   210.0    0.00   -0.44   -1.14   -2.03   -2.98   -3.93   -4.89   -5.88   -6.85   -7.70   -8.24   -8.32   -7.88   -6.97   -5.71   -4.25   -2.50   -0.26    2.72
+   215.0    0.00   -0.43   -1.13   -2.00   -2.95   -3.89   -4.85   -5.82   -6.79   -7.65   -8.21   -8.32   -7.88   -6.97   -5.71   -4.21   -2.45   -0.20    2.82
+   220.0    0.00   -0.42   -1.10   -1.98   -2.91   -3.85   -4.79   -5.76   -6.73   -7.58   -8.16   -8.28   -7.87   -6.95   -5.67   -4.14   -2.37   -0.13    2.92
+   225.0    0.00   -0.40   -1.09   -1.94   -2.87   -3.80   -4.73   -5.69   -6.65   -7.50   -8.08   -8.23   -7.81   -6.89   -5.59   -4.05   -2.25   -0.01    3.06
+   230.0    0.00   -0.38   -1.05   -1.91   -2.82   -3.74   -4.67   -5.61   -6.55   -7.40   -7.99   -8.12   -7.71   -6.79   -5.48   -3.92   -2.11    0.13    3.25
+   235.0    0.00   -0.36   -1.03   -1.86   -2.77   -3.69   -4.59   -5.53   -6.47   -7.31   -7.87   -8.01   -7.59   -6.65   -5.33   -3.76   -1.95    0.31    3.46
+   240.0    0.00   -0.35   -0.99   -1.82   -2.72   -3.62   -4.52   -5.44   -6.36   -7.19   -7.74   -7.87   -7.44   -6.49   -5.15   -3.58   -1.77    0.52    3.71
+   245.0    0.00   -0.32   -0.96   -1.77   -2.65   -3.54   -4.44   -5.36   -6.26   -7.08   -7.61   -7.71   -7.26   -6.29   -4.94   -3.36   -1.55    0.76    3.97
+   250.0    0.00   -0.31   -0.91   -1.71   -2.58   -3.46   -4.34   -5.25   -6.16   -6.96   -7.47   -7.53   -7.05   -6.07   -4.70   -3.12   -1.31    1.00    4.26
+   255.0    0.00   -0.29   -0.87   -1.65   -2.51   -3.38   -4.25   -5.15   -6.04   -6.83   -7.32   -7.35   -6.83   -5.81   -4.44   -2.85   -1.03    1.27    4.53
+   260.0    0.00   -0.27   -0.83   -1.59   -2.42   -3.28   -4.14   -5.04   -5.94   -6.69   -7.16   -7.16   -6.61   -5.56   -4.17   -2.58   -0.76    1.56    4.82
+   265.0    0.00   -0.24   -0.79   -1.53   -2.34   -3.18   -4.04   -4.92   -5.80   -6.56   -7.02   -6.97   -6.39   -5.30   -3.89   -2.28   -0.46    1.85    5.10
+   270.0    0.00   -0.22   -0.74   -1.45   -2.25   -3.07   -3.91   -4.79   -5.67   -6.42   -6.85   -6.79   -6.17   -5.04   -3.61   -2.00   -0.18    2.13    5.35
+   275.0    0.00   -0.19   -0.69   -1.39   -2.16   -2.96   -3.78   -4.65   -5.52   -6.26   -6.68   -6.60   -5.95   -4.82   -3.37   -1.74    0.09    2.40    5.60
+   280.0    0.00   -0.17   -0.65   -1.32   -2.07   -2.85   -3.66   -4.51   -5.36   -6.09   -6.51   -6.42   -5.76   -4.60   -3.14   -1.50    0.33    2.65    5.85
+   285.0    0.00   -0.15   -0.61   -1.25   -1.98   -2.73   -3.52   -4.35   -5.20   -5.92   -6.33   -6.23   -5.56   -4.41   -2.94   -1.32    0.54    2.86    6.06
+   290.0    0.00   -0.13   -0.56   -1.19   -1.90   -2.63   -3.39   -4.20   -5.03   -5.74   -6.15   -6.05   -5.39   -4.25   -2.79   -1.15    0.70    3.05    6.26
+   295.0    0.00   -0.10   -0.51   -1.13   -1.82   -2.52   -3.28   -4.06   -4.87   -5.56   -5.97   -5.88   -5.23   -4.10   -2.65   -1.03    0.81    3.18    6.45
+   300.0    0.00   -0.08   -0.47   -1.07   -1.75   -2.45   -3.15   -3.92   -4.71   -5.39   -5.79   -5.71   -5.07   -3.97   -2.56   -0.96    0.87    3.27    6.60
+   305.0    0.00   -0.06   -0.44   -1.02   -1.68   -2.36   -3.06   -3.81   -4.56   -5.23   -5.62   -5.54   -4.93   -3.86   -2.49   -0.94    0.89    3.32    6.73
+   310.0    0.00   -0.03   -0.39   -0.97   -1.62   -2.29   -2.98   -3.70   -4.44   -5.09   -5.46   -5.39   -4.80   -3.76   -2.44   -0.93    0.88    3.32    6.82
+   315.0    0.00   -0.01   -0.36   -0.92   -1.57   -2.23   -2.90   -3.60   -4.33   -4.95   -5.31   -5.25   -4.67   -3.67   -2.38   -0.94    0.84    3.29    6.87
+   320.0    0.00    0.12   -0.32   -0.88   -1.53   -2.19   -2.86   -3.55   -4.24   -4.83   -5.18   -5.11   -4.55   -3.58   -2.36   -0.94    0.79    3.24    6.86
+   325.0    0.00    0.02   -0.30   -0.85   -1.49   -2.16   -2.82   -3.50   -4.17   -4.75   -5.07   -4.99   -4.44   -3.49   -2.30   -0.94    0.74    3.18    6.82
+   330.0    0.00    0.04   -0.27   -0.82   -1.47   -2.14   -2.80   -3.47   -4.12   -4.67   -4.98   -4.88   -4.34   -3.42   -2.26   -0.94    0.71    3.09    6.73
+   335.0    0.00    0.05   -0.24   -0.79   -1.43   -2.12   -2.79   -3.45   -4.09   -4.62   -4.91   -4.81   -4.26   -3.35   -2.21   -0.91    0.70    3.03    6.61
+   340.0    0.00    0.07   -0.22   -0.76   -1.42   -2.11   -2.78   -3.43   -4.07   -4.58   -4.85   -4.75   -4.22   -3.30   -2.16   -0.86    0.70    2.98    6.46
+   345.0    0.00    0.07   -0.20   -0.74   -1.40   -2.09   -2.77   -3.42   -4.05   -4.56   -4.82   -4.71   -4.18   -3.26   -2.11   -0.81    0.73    2.94    6.28
+   350.0    0.00    0.08   -0.19   -0.72   -1.39   -2.09   -2.76   -3.42   -4.04   -4.55   -4.82   -4.71   -4.16   -3.24   -2.07   -0.76    0.78    2.91    6.12
+   355.0    0.00    0.09   -0.18   -0.71   -1.38   -2.08   -2.77   -3.43   -4.05   -4.56   -4.83   -4.73   -4.18   -3.24   -2.05   -0.71    0.83    2.90    5.96
+   360.0    0.00    0.09   -0.17   -0.71   -1.37   -2.07   -2.77   -3.43   -4.06   -4.58   -4.87   -4.77   -4.22   -3.27   -2.03   -0.67    0.88    2.89    5.81
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+      6.80     -3.16     54.72                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.06   -0.23   -0.50   -0.85   -1.25   -1.75   -2.33   -3.01   -3.73   -4.41   -4.94   -5.16   -4.97   -4.29   -3.07   -1.32    0.90    3.39
+     0.0    0.00   -0.15   -0.44   -0.94   -1.62   -2.45   -3.37   -4.29   -5.14   -5.89   -6.46   -6.88   -7.05   -6.91   -6.30   -5.05   -3.06   -0.42    2.43
+     5.0    0.00   -0.17   -0.48   -0.97   -1.66   -2.47   -3.37   -4.25   -5.05   -5.72   -6.23   -6.53   -6.60   -6.35   -5.61   -4.26   -2.15    0.60    3.59
+    10.0    0.00   -0.19   -0.50   -1.00   -1.68   -2.49   -3.37   -4.21   -4.98   -5.59   -6.02   -6.25   -6.24   -5.89   -5.07   -3.60   -1.43    1.36    4.45
+    15.0    0.00   -0.19   -0.53   -1.03   -1.70   -2.50   -3.36   -4.19   -4.92   -5.49   -5.88   -6.06   -5.99   -5.56   -4.66   -3.15   -0.95    1.85    4.99
+    20.0    0.00   -0.21   -0.55   -1.06   -1.73   -2.51   -3.36   -4.15   -4.87   -5.42   -5.80   -5.95   -5.83   -5.36   -4.40   -2.87   -0.70    2.06    5.21
+    25.0    0.00   -0.23   -0.58   -1.09   -1.74   -2.52   -3.34   -4.13   -4.83   -5.39   -5.77   -5.92   -5.79   -5.28   -4.31   -2.78   -0.66    2.03    5.16
+    30.0    0.00   -0.24   -0.61   -1.11   -1.76   -2.52   -3.32   -4.11   -4.81   -5.39   -5.78   -5.94   -5.81   -5.30   -4.33   -2.84   -0.79    1.80    4.92
+    35.0    0.00   -0.26   -0.63   -1.14   -1.78   -2.51   -3.31   -4.08   -4.80   -5.40   -5.81   -6.00   -5.89   -5.40   -4.45   -3.02   -1.06    1.44    4.55
+    40.0    0.00   -0.28   -0.66   -1.15   -1.78   -2.50   -3.29   -4.06   -4.78   -5.40   -5.85   -6.07   -5.99   -5.53   -4.63   -3.27   -1.41    1.01    4.11
+    45.0    0.00   -0.29   -0.68   -1.18   -1.79   -2.50   -3.26   -4.02   -4.74   -5.38   -5.87   -6.14   -6.10   -5.67   -4.83   -3.54   -1.77    0.56    3.65
+    50.0    0.00   -0.30   -0.69   -1.19   -1.79   -2.48   -3.21   -3.96   -4.68   -5.34   -5.86   -6.17   -6.16   -5.79   -5.02   -3.80   -2.12    0.15    3.24
+    55.0    0.00   -0.31   -0.71   -1.20   -1.79   -2.44   -3.15   -3.88   -4.60   -5.26   -5.81   -6.15   -6.20   -5.89   -5.17   -4.01   -2.39   -0.16    2.89
+    60.0    0.00   -0.32   -0.73   -1.22   -1.79   -2.41   -3.08   -3.78   -4.48   -5.14   -5.71   -6.08   -6.17   -5.91   -5.23   -4.14   -2.56   -0.36    2.67
+    65.0    0.00   -0.33   -0.74   -1.22   -1.77   -2.37   -3.00   -3.65   -4.34   -4.99   -5.55   -5.94   -6.07   -5.85   -5.22   -4.14   -2.57   -0.40    2.56
+    70.0    0.00   -0.33   -0.74   -1.22   -1.75   -2.31   -2.90   -3.52   -4.16   -4.79   -5.36   -5.76   -5.91   -5.72   -5.10   -4.02   -2.43   -0.26    2.62
+    75.0    0.00   -0.32   -0.76   -1.23   -1.72   -2.26   -2.80   -3.37   -3.97   -4.57   -5.12   -5.54   -5.69   -5.50   -4.87   -3.75   -2.11    0.08    2.86
+    80.0    0.00   -0.33   -0.75   -1.22   -1.70   -2.19   -2.69   -3.21   -3.77   -4.35   -4.89   -5.28   -5.43   -5.21   -4.52   -3.32   -1.60    0.63    3.30
+    85.0    0.00   -0.33   -0.74   -1.20   -1.65   -2.12   -2.57   -3.06   -3.58   -4.13   -4.64   -5.01   -5.13   -4.84   -4.07   -2.77   -0.93    1.35    3.95
+    90.0    0.00   -0.32   -0.74   -1.18   -1.62   -2.03   -2.46   -2.91   -3.40   -3.94   -4.41   -4.75   -4.80   -4.43   -3.54   -2.10   -0.12    2.25    4.79
+    95.0    0.00   -0.32   -0.72   -1.16   -1.56   -1.95   -2.34   -2.76   -3.24   -3.74   -4.20   -4.50   -4.47   -4.00   -2.96   -1.35    0.76    3.25    5.77
+   100.0    0.00   -0.31   -0.70   -1.12   -1.51   -1.85   -2.22   -2.62   -3.08   -3.58   -4.02   -4.26   -4.14   -3.54   -2.35   -0.59    1.68    4.28    6.85
+   105.0    0.00   -0.30   -0.69   -1.09   -1.44   -1.77   -2.11   -2.49   -2.95   -3.45   -3.85   -4.04   -3.82   -3.09   -1.77    0.15    2.54    5.24    7.92
+   110.0    0.00   -0.29   -0.65   -1.03   -1.36   -1.67   -1.98   -2.37   -2.83   -3.32   -3.72   -3.83   -3.53   -2.68   -1.24    0.78    3.26    6.07    8.89
+   115.0    0.00   -0.27   -0.62   -0.97   -1.28   -1.56   -1.85   -2.24   -2.70   -3.19   -3.58   -3.66   -3.26   -2.32   -0.79    1.27    3.79    6.65    9.65
+   120.0    0.00   -0.25   -0.59   -0.92   -1.19   -1.44   -1.72   -2.10   -2.57   -3.07   -3.44   -3.48   -3.03   -2.02   -0.46    1.59    4.07    6.95   10.10
+   125.0    0.00   -0.24   -0.55   -0.85   -1.09   -1.31   -1.57   -1.95   -2.43   -2.94   -3.30   -3.31   -2.82   -1.79   -0.26    1.71    4.09    6.92   10.21
+   130.0    0.00   -0.21   -0.50   -0.77   -0.98   -1.17   -1.42   -1.78   -2.27   -2.79   -3.14   -3.14   -2.64   -1.64   -0.19    1.64    3.85    6.57    9.94
+   135.0    0.00   -0.19   -0.45   -0.70   -0.87   -1.02   -1.26   -1.60   -2.09   -2.60   -2.96   -2.96   -2.49   -1.54   -0.22    1.42    3.41    5.96    9.35
+   140.0    0.00   -0.16   -0.39   -0.61   -0.75   -0.88   -1.08   -1.40   -1.89   -2.40   -2.76   -2.78   -2.34   -1.49   -0.31    1.11    2.84    5.18    8.50
+   145.0    0.00   -0.14   -0.34   -0.52   -0.63   -0.72   -0.90   -1.20   -1.66   -2.17   -2.53   -2.58   -2.21   -1.44   -0.43    0.77    2.26    4.37    7.56
+   150.0    0.00   -0.12   -0.28   -0.42   -0.51   -0.57   -0.71   -1.00   -1.43   -1.93   -2.30   -2.37   -2.05   -1.39   -0.52    0.50    1.77    3.66    6.69
+   155.0    0.00   -0.09   -0.23   -0.33   -0.38   -0.42   -0.54   -0.80   -1.21   -1.69   -2.06   -2.16   -1.89   -1.30   -0.53    0.35    1.48    3.19    6.01
+   160.0    0.00   -0.06   -0.17   -0.23   -0.26   -0.28   -0.37   -0.60   -0.99   -1.45   -1.82   -1.94   -1.71   -1.17   -0.44    0.40    1.45    3.06    5.69
+   165.0    0.00   -0.03   -0.10   -0.14   -0.15   -0.14   -0.21   -0.43   -0.80   -1.24   -1.60   -1.71   -1.50   -0.97   -0.23    0.65    1.74    3.32    5.80
+   170.0    0.00    0.20   -0.05   -0.05   -0.03   -0.02   -0.08   -0.28   -0.63   -1.05   -1.40   -1.52   -1.28   -0.72    0.10    1.10    2.32    3.97    6.36
+   175.0    0.00    0.02    0.01    0.03    0.07    0.10    0.05   -0.16   -0.49   -0.90   -1.22   -1.32   -1.06   -0.44    0.52    1.70    3.13    4.93    7.30
+   180.0    0.00    0.04    0.08    0.11    0.16    0.21    0.15   -0.05   -0.39   -0.78   -1.09   -1.17   -0.87   -0.14    0.95    2.37    4.07    6.09    8.49
+   185.0    0.00    0.07    0.13    0.18    0.25    0.28    0.22    0.02   -0.31   -0.70   -1.01   -1.06   -0.71    0.10    1.36    3.02    5.00    7.25    9.73
+   190.0    0.00    0.10    0.17    0.26    0.34    0.36    0.29    0.07   -0.28   -0.66   -0.98   -1.01   -0.64    0.25    1.65    3.52    5.76    8.23   10.81
+   195.0    0.00    0.12    0.22    0.31    0.40    0.43    0.33    0.10   -0.27   -0.67   -0.98   -1.04   -0.66    0.26    1.75    3.76    6.19    8.84   11.51
+   200.0    0.00    0.14    0.26    0.38    0.46    0.47    0.37    0.11   -0.28   -0.71   -1.06   -1.15   -0.81    0.08    1.59    3.68    6.20    8.95   11.63
+   205.0    0.00    0.16    0.30    0.42    0.50    0.51    0.38    0.11   -0.32   -0.79   -1.19   -1.35   -1.09   -0.28    1.16    3.20    5.71    8.44   11.05
+   210.0    0.00    0.18    0.33    0.45    0.54    0.53    0.39    0.08   -0.37   -0.90   -1.38   -1.64   -1.51   -0.84    0.44    2.34    4.71    7.30    9.75
+   215.0    0.00    0.19    0.35    0.48    0.55    0.53    0.37    0.05   -0.45   -1.05   -1.62   -2.01   -2.05   -1.59   -0.54    1.13    3.27    5.62    7.81
+   220.0    0.00    0.20    0.36    0.49    0.56    0.52    0.33   -0.02   -0.56   -1.23   -1.91   -2.45   -2.70   -2.50   -1.71   -0.34    1.48    3.50    5.37
+   225.0    0.00    0.22    0.37    0.50    0.54    0.49    0.27   -0.12   -0.71   -1.44   -2.23   -2.95   -3.42   -3.47   -2.99   -1.95   -0.47    1.18    2.67
+   230.0    0.00    0.23    0.38    0.48    0.50    0.42    0.18   -0.24   -0.88   -1.69   -2.60   -3.48   -4.17   -4.48   -4.28   -3.57   -2.42   -1.13   -0.03
+   235.0    0.00    0.22    0.38    0.45    0.45    0.33    0.06   -0.40   -1.09   -1.96   -2.99   -4.03   -4.91   -5.44   -5.50   -5.04   -4.19   -3.20   -2.43
+   240.0    0.00    0.23    0.36    0.42    0.37    0.21   -0.11   -0.61   -1.32   -2.27   -3.38   -4.55   -5.59   -6.30   -6.55   -6.28   -5.62   -4.84   -4.30
+   245.0    0.00    0.22    0.35    0.37    0.28    0.07   -0.28   -0.83   -1.60   -2.60   -3.78   -5.03   -6.18   -7.02   -7.36   -7.18   -6.59   -5.90   -5.49
+   250.0    0.00    0.22    0.32    0.31    0.17   -0.09   -0.50   -1.09   -1.90   -2.94   -4.17   -5.47   -6.68   -7.55   -7.92   -7.72   -7.09   -6.33   -5.90
+   255.0    0.00    0.22    0.29    0.23    0.04   -0.28   -0.75   -1.38   -2.22   -3.28   -4.53   -5.86   -7.06   -7.90   -8.21   -7.90   -7.11   -6.17   -5.57
+   260.0    0.00    0.20    0.26    0.16   -0.09   -0.47   -1.00   -1.69   -2.56   -3.63   -4.87   -6.18   -7.32   -8.09   -8.28   -7.77   -6.73   -5.52   -4.62
+   265.0    0.00    0.20    0.23    0.08   -0.23   -0.68   -1.26   -2.00   -2.89   -3.98   -5.19   -6.44   -7.52   -8.16   -8.17   -7.44   -6.10   -4.51   -3.26
+   270.0    0.00    0.19    0.19    0.18   -0.36   -0.88   -1.52   -2.31   -3.23   -4.31   -5.49   -6.67   -7.64   -8.15   -7.98   -7.01   -5.37   -3.40   -1.73
+   275.0    0.00    0.17    0.15   -0.08   -0.51   -1.08   -1.79   -2.61   -3.55   -4.62   -5.77   -6.87   -7.75   -8.13   -7.78   -6.60   -4.66   -2.35   -0.30
+   280.0    0.00    0.15    0.10   -0.17   -0.64   -1.26   -2.03   -2.90   -3.86   -4.92   -6.03   -7.07   -7.87   -8.13   -7.66   -6.30   -4.15   -1.56    0.83
+   285.0    0.00    0.13    0.06   -0.24   -0.77   -1.44   -2.24   -3.15   -4.14   -5.20   -6.29   -7.30   -8.01   -8.22   -7.65   -6.21   -3.93   -1.16    1.47
+   290.0    0.00    0.12    0.02   -0.32   -0.87   -1.60   -2.44   -3.37   -4.40   -5.47   -6.55   -7.53   -8.22   -8.38   -7.80   -6.33   -4.03   -1.20    1.55
+   295.0    0.00    0.11   -0.02   -0.39   -0.98   -1.73   -2.60   -3.58   -4.62   -5.72   -6.81   -7.78   -8.46   -8.63   -8.09   -6.69   -4.46   -1.67    1.07
+   300.0    0.00    0.09   -0.06   -0.45   -1.07   -1.85   -2.75   -3.75   -4.83   -5.94   -7.05   -8.04   -8.75   -8.98   -8.52   -7.24   -5.15   -2.50    0.14
+   305.0    0.00    0.07   -0.10   -0.52   -1.14   -1.95   -2.87   -3.90   -4.99   -6.15   -7.29   -8.31   -9.05   -9.35   -9.00   -7.90   -6.00   -3.55   -1.09
+   310.0    0.00    0.05   -0.13   -0.56   -1.21   -2.03   -2.97   -4.02   -5.15   -6.32   -7.49   -8.55   -9.34   -9.71   -9.49   -8.56   -6.89   -4.67   -2.41
+   315.0    0.00    0.03   -0.18   -0.61   -1.27   -2.09   -3.05   -4.12   -5.27   -6.47   -7.66   -8.73   -9.57  -10.02   -9.91   -9.14   -7.68   -5.67   -3.61
+   320.0    0.00    0.01   -0.20   -0.65   -1.33   -2.16   -3.13   -4.21   -5.36   -6.57   -7.77   -8.85   -9.71  -10.21  -10.19   -9.55   -8.24   -6.40   -4.51
+   325.0    0.00   -0.01   -0.24   -0.69   -1.37   -2.22   -3.19   -4.27   -5.43   -6.63   -7.82   -8.88   -9.74  -10.26  -10.30   -9.73   -8.51   -6.76   -4.95
+   330.0    0.00   -0.03   -0.26   -0.73   -1.41   -2.25   -3.24   -4.31   -5.46   -6.65   -7.79   -8.82   -9.64  -10.13  -10.18   -9.64   -8.45   -6.71   -4.90
+   335.0    0.00   -0.05   -0.30   -0.77   -1.45   -2.30   -3.28   -4.35   -5.47   -6.60   -7.68   -8.65   -9.41   -9.85   -9.85   -9.26   -8.02   -6.22   -4.33
+   340.0    0.00   -0.06   -0.33   -0.81   -1.49   -2.33   -3.31   -4.36   -5.44   -6.52   -7.51   -8.39   -9.05   -9.40   -9.32   -8.65   -7.29   -5.37   -3.32
+   345.0    0.00   -0.09   -0.36   -0.84   -1.53   -2.38   -3.34   -4.36   -5.40   -6.38   -7.29   -8.04   -8.60   -8.84   -8.63   -7.84   -6.34   -4.23   -1.99
+   350.0    0.00   -0.10   -0.38   -0.88   -1.56   -2.41   -3.35   -4.34   -5.32   -6.23   -7.02   -7.66   -8.09   -8.21   -7.87   -6.92   -5.25   -2.95   -0.48
+   355.0    0.00   -0.13   -0.42   -0.90   -1.60   -2.43   -3.36   -4.32   -5.23   -6.06   -6.74   -7.26   -7.56   -7.55   -7.06   -5.97   -4.12   -1.64    1.04
+   360.0    0.00   -0.15   -0.44   -0.94   -1.62   -2.45   -3.37   -4.29   -5.14   -5.89   -6.46   -6.88   -7.05   -6.91   -6.30   -5.05   -3.06   -0.42    2.43
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+JAVRINGANT_DM   NONE                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               5    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     4                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+Number of Calibrated Antennas GPS:      005                 COMMENT             
+Number of Individual Calibrations GPS:  014                 COMMENT             
+Number of Calibrated Antennas GLO:      005                 COMMENT             
+Number of Individual Calibrations GLO:  014                 COMMENT             
+# GLONASS PCV                                               COMMENT             
+#  derived from Delta PCV per 25.0 MHz                      COMMENT             
+#  for frequency channel number k=0                         COMMENT             
+   G01                                                      START OF FREQUENCY  
+      1.05      0.86     89.31                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.23   -0.92   -2.00   -3.36   -4.86   -6.29   -7.47   -8.24   -8.52   -8.31   -7.66   -6.56   -4.96   -2.69    0.45    4.61    9.66   15.13
+     0.0    0.00   -0.22   -0.88   -1.92   -3.25   -4.72   -6.15   -7.32   -8.07   -8.30   -8.03   -7.32   -6.23   -4.70   -2.55    0.47    4.55    9.55   14.88
+     5.0    0.00   -0.22   -0.88   -1.92   -3.25   -4.72   -6.14   -7.32   -8.08   -8.32   -8.05   -7.34   -6.23   -4.71   -2.57    0.42    4.47    9.45   14.76
+    10.0    0.00   -0.22   -0.88   -1.92   -3.25   -4.72   -6.15   -7.33   -8.09   -8.34   -8.08   -7.36   -6.26   -4.73   -2.60    0.37    4.38    9.34   14.64
+    15.0    0.00   -0.23   -0.89   -1.93   -3.26   -4.73   -6.16   -7.35   -8.12   -8.38   -8.12   -7.40   -6.29   -4.75   -2.63    0.32    4.31    9.24   14.53
+    20.0    0.00   -0.23   -0.90   -1.94   -3.27   -4.74   -6.17   -7.37   -8.15   -8.42   -8.16   -7.45   -6.33   -4.79   -2.67    0.29    4.26    9.18   14.46
+    25.0    0.00   -0.23   -0.90   -1.95   -3.28   -4.75   -6.19   -7.40   -8.19   -8.47   -8.21   -7.50   -6.37   -4.82   -2.69    0.27    4.24    9.15   14.43
+    30.0    0.00   -0.24   -0.91   -1.96   -3.29   -4.77   -6.22   -7.43   -8.23   -8.51   -8.27   -7.55   -6.42   -4.85   -2.71    0.27    4.25    9.17   14.47
+    35.0    0.00   -0.24   -0.92   -1.97   -3.31   -4.79   -6.24   -7.46   -8.26   -8.55   -8.31   -7.60   -6.46   -4.88   -2.72    0.28    4.29    9.24   14.56
+    40.0    0.00   -0.24   -0.92   -1.98   -3.33   -4.81   -6.27   -7.48   -8.29   -8.59   -8.35   -7.64   -6.50   -4.91   -2.71    0.32    4.36    9.34   14.71
+    45.0    0.00   -0.25   -0.93   -2.00   -3.34   -4.83   -6.29   -7.51   -8.32   -8.61   -8.38   -7.67   -6.53   -4.92   -2.70    0.36    4.45    9.47   14.89
+    50.0    0.00   -0.25   -0.94   -2.01   -3.36   -4.85   -6.31   -7.52   -8.33   -8.63   -8.40   -7.70   -6.55   -4.93   -2.69    0.41    4.54    9.61   15.09
+    55.0    0.00   -0.25   -0.94   -2.02   -3.37   -4.87   -6.32   -7.53   -8.34   -8.64   -8.42   -7.71   -6.57   -4.94   -2.67    0.46    4.63    9.74   15.27
+    60.0    0.00   -0.25   -0.95   -2.03   -3.39   -4.88   -6.33   -7.54   -8.34   -8.64   -8.42   -7.72   -6.57   -4.94   -2.65    0.50    4.69    9.84   15.43
+    65.0    0.00   -0.26   -0.96   -2.04   -3.40   -4.89   -6.34   -7.54   -8.34   -8.64   -8.42   -7.72   -6.58   -4.93   -2.64    0.53    4.73    9.90   15.54
+    70.0    0.00   -0.26   -0.96   -2.04   -3.40   -4.90   -6.34   -7.54   -8.34   -8.63   -8.42   -7.72   -6.58   -4.93   -2.63    0.54    4.74    9.92   15.59
+    75.0    0.00   -0.26   -0.97   -2.05   -3.41   -4.90   -6.34   -7.54   -8.33   -8.63   -8.42   -7.72   -6.58   -4.93   -2.63    0.53    4.73    9.89   15.58
+    80.0    0.00   -0.26   -0.97   -2.05   -3.41   -4.90   -6.34   -7.54   -8.33   -8.63   -8.42   -7.73   -6.58   -4.93   -2.64    0.51    4.68    9.83   15.52
+    85.0    0.00   -0.26   -0.97   -2.06   -3.42   -4.90   -6.34   -7.54   -8.33   -8.64   -8.43   -7.74   -6.59   -4.95   -2.66    0.47    4.62    9.74   15.42
+    90.0    0.00   -0.26   -0.97   -2.06   -3.42   -4.91   -6.34   -7.54   -8.34   -8.65   -8.44   -7.75   -6.61   -4.96   -2.68    0.43    4.55    9.64   15.30
+    95.0    0.00   -0.26   -0.97   -2.06   -3.42   -4.91   -6.34   -7.54   -8.35   -8.66   -8.46   -7.77   -6.63   -4.99   -2.71    0.39    4.49    9.55   15.18
+   100.0    0.00   -0.27   -0.97   -2.06   -3.42   -4.91   -6.35   -7.55   -8.36   -8.67   -8.48   -7.79   -6.65   -5.01   -2.75    0.35    4.44    9.49   15.09
+   105.0    0.00   -0.27   -0.97   -2.06   -3.42   -4.91   -6.35   -7.56   -8.37   -8.69   -8.50   -7.82   -6.68   -5.04   -2.77    0.33    4.42    9.46   15.03
+   110.0    0.00   -0.27   -0.97   -2.06   -3.42   -4.91   -6.36   -7.57   -8.38   -8.70   -8.51   -7.84   -6.71   -5.07   -2.80    0.32    4.43    9.47   15.01
+   115.0    0.00   -0.26   -0.97   -2.06   -3.42   -4.92   -6.36   -7.57   -8.38   -8.70   -8.52   -7.85   -6.73   -5.10   -2.81    0.33    4.47    9.52   15.03
+   120.0    0.00   -0.26   -0.97   -2.06   -3.42   -4.92   -6.36   -7.57   -8.38   -8.70   -8.52   -7.86   -6.75   -5.12   -2.82    0.35    4.53    9.61   15.10
+   125.0    0.00   -0.26   -0.97   -2.06   -3.42   -4.92   -6.36   -7.57   -8.37   -8.69   -8.51   -7.86   -6.75   -5.13   -2.81    0.39    4.61    9.72   15.18
+   130.0    0.00   -0.26   -0.97   -2.05   -3.42   -4.92   -6.36   -7.56   -8.36   -8.67   -8.49   -7.85   -6.75   -5.12   -2.79    0.44    4.70    9.83   15.28
+   135.0    0.00   -0.26   -0.96   -2.05   -3.42   -4.92   -6.36   -7.55   -8.33   -8.64   -8.46   -7.83   -6.74   -5.11   -2.76    0.50    4.79    9.93   15.36
+   140.0    0.00   -0.26   -0.96   -2.05   -3.42   -4.92   -6.35   -7.53   -8.31   -8.61   -8.43   -7.80   -6.71   -5.08   -2.72    0.57    4.87   10.01   15.42
+   145.0    0.00   -0.26   -0.96   -2.05   -3.42   -4.91   -6.34   -7.52   -8.28   -8.57   -8.39   -7.76   -6.68   -5.04   -2.67    0.62    4.93   10.06   15.44
+   150.0    0.00   -0.26   -0.96   -2.05   -3.42   -4.91   -6.34   -7.50   -8.26   -8.54   -8.36   -7.73   -6.64   -5.00   -2.62    0.68    4.97   10.06   15.43
+   155.0    0.00   -0.25   -0.95   -2.04   -3.42   -4.91   -6.33   -7.48   -8.23   -8.51   -8.32   -7.69   -6.60   -4.95   -2.57    0.72    4.98   10.03   15.38
+   160.0    0.00   -0.25   -0.95   -2.04   -3.41   -4.90   -6.32   -7.47   -8.21   -8.49   -8.30   -7.66   -6.56   -4.90   -2.52    0.75    4.96    9.96   15.31
+   165.0    0.00   -0.25   -0.95   -2.04   -3.41   -4.90   -6.31   -7.45   -8.19   -8.47   -8.28   -7.64   -6.53   -4.86   -2.48    0.76    4.92    9.87   15.22
+   170.0    0.00   -0.25   -0.95   -2.04   -3.41   -4.90   -6.30   -7.44   -8.18   -8.46   -8.27   -7.62   -6.50   -4.83   -2.46    0.75    4.86    9.76   15.14
+   175.0    0.00   -0.25   -0.94   -2.04   -3.41   -4.89   -6.30   -7.44   -8.18   -8.46   -8.26   -7.62   -6.49   -4.81   -2.45    0.73    4.79    9.66   15.07
+   180.0    0.00   -0.24   -0.94   -2.03   -3.41   -4.89   -6.29   -7.43   -8.17   -8.46   -8.27   -7.62   -6.49   -4.81   -2.45    0.70    4.73    9.57   15.04
+   185.0    0.00   -0.24   -0.94   -2.03   -3.41   -4.89   -6.29   -7.43   -8.17   -8.46   -8.27   -7.63   -6.50   -4.82   -2.47    0.66    4.66    9.51   15.04
+   190.0    0.00   -0.24   -0.94   -2.03   -3.41   -4.89   -6.29   -7.43   -8.18   -8.46   -8.28   -7.64   -6.51   -4.84   -2.51    0.61    4.61    9.47   15.07
+   195.0    0.00   -0.24   -0.93   -2.03   -3.41   -4.90   -6.30   -7.43   -8.18   -8.47   -8.29   -7.65   -6.54   -4.88   -2.55    0.57    4.57    9.48   15.15
+   200.0    0.00   -0.24   -0.93   -2.03   -3.41   -4.90   -6.30   -7.44   -8.18   -8.47   -8.29   -7.66   -6.56   -4.92   -2.60    0.52    4.56    9.51   15.25
+   205.0    0.00   -0.23   -0.93   -2.03   -3.41   -4.90   -6.31   -7.44   -8.18   -8.47   -8.29   -7.68   -6.59   -4.96   -2.66    0.48    4.56    9.58   15.36
+   210.0    0.00   -0.23   -0.93   -2.03   -3.41   -4.91   -6.31   -7.45   -8.18   -8.46   -8.29   -7.68   -6.62   -5.01   -2.71    0.45    4.58    9.67   15.47
+   215.0    0.00   -0.23   -0.92   -2.03   -3.41   -4.91   -6.32   -7.45   -8.18   -8.46   -8.29   -7.69   -6.64   -5.05   -2.76    0.43    4.62    9.77   15.58
+   220.0    0.00   -0.23   -0.92   -2.02   -3.42   -4.92   -6.33   -7.46   -8.19   -8.46   -8.28   -7.69   -6.66   -5.08   -2.79    0.42    4.67    9.87   15.67
+   225.0    0.00   -0.23   -0.92   -2.02   -3.42   -4.92   -6.34   -7.47   -8.19   -8.46   -8.28   -7.69   -6.67   -5.11   -2.81    0.42    4.72    9.98   15.74
+   230.0    0.00   -0.22   -0.92   -2.02   -3.42   -4.93   -6.34   -7.48   -8.20   -8.46   -8.28   -7.69   -6.67   -5.12   -2.83    0.44    4.78   10.07   15.77
+   235.0    0.00   -0.22   -0.91   -2.02   -3.41   -4.93   -6.35   -7.48   -8.20   -8.46   -8.28   -7.69   -6.67   -5.13   -2.83    0.46    4.84   10.14   15.78
+   240.0    0.00   -0.22   -0.91   -2.01   -3.41   -4.93   -6.35   -7.49   -8.21   -8.47   -8.28   -7.69   -6.68   -5.12   -2.82    0.48    4.88   10.19   15.77
+   245.0    0.00   -0.22   -0.91   -2.01   -3.41   -4.92   -6.35   -7.50   -8.22   -8.48   -8.29   -7.69   -6.68   -5.12   -2.81    0.50    4.91   10.20   15.73
+   250.0    0.00   -0.22   -0.90   -2.00   -3.40   -4.92   -6.35   -7.50   -8.23   -8.50   -8.31   -7.70   -6.68   -5.11   -2.80    0.51    4.91   10.19   15.67
+   255.0    0.00   -0.21   -0.90   -2.00   -3.39   -4.91   -6.35   -7.50   -8.24   -8.51   -8.32   -7.72   -6.68   -5.11   -2.79    0.51    4.90   10.15   15.59
+   260.0    0.00   -0.21   -0.90   -1.99   -3.38   -4.90   -6.34   -7.51   -8.25   -8.53   -8.34   -7.73   -6.69   -5.11   -2.79    0.50    4.86   10.08   15.50
+   265.0    0.00   -0.21   -0.89   -1.98   -3.38   -4.89   -6.33   -7.50   -8.26   -8.55   -8.36   -7.75   -6.70   -5.12   -2.80    0.47    4.79    9.98   15.40
+   270.0    0.00   -0.21   -0.89   -1.98   -3.37   -4.88   -6.32   -7.50   -8.27   -8.56   -8.38   -7.77   -6.72   -5.13   -2.82    0.43    4.71    9.85   15.29
+   275.0    0.00   -0.21   -0.89   -1.97   -3.36   -4.87   -6.32   -7.50   -8.27   -8.57   -8.40   -7.79   -6.73   -5.14   -2.84    0.37    4.61    9.72   15.17
+   280.0    0.00   -0.21   -0.88   -1.97   -3.35   -4.86   -6.31   -7.49   -8.27   -8.58   -8.41   -7.80   -6.74   -5.15   -2.87    0.31    4.50    9.57   15.04
+   285.0    0.00   -0.21   -0.88   -1.96   -3.34   -4.85   -6.30   -7.49   -8.27   -8.58   -8.42   -7.81   -6.75   -5.17   -2.89    0.26    4.40    9.44   14.92
+   290.0    0.00   -0.21   -0.88   -1.96   -3.34   -4.85   -6.29   -7.48   -8.27   -8.58   -8.42   -7.81   -6.76   -5.18   -2.92    0.21    4.31    9.32   14.81
+   295.0    0.00   -0.21   -0.88   -1.95   -3.33   -4.84   -6.29   -7.48   -8.27   -8.58   -8.42   -7.81   -6.75   -5.18   -2.93    0.17    4.25    9.22   14.71
+   300.0    0.00   -0.21   -0.87   -1.95   -3.33   -4.84   -6.28   -7.47   -8.26   -8.57   -8.40   -7.79   -6.73   -5.17   -2.93    0.15    4.21    9.16   14.64
+   305.0    0.00   -0.21   -0.87   -1.95   -3.32   -4.83   -6.28   -7.47   -8.25   -8.56   -8.38   -7.76   -6.71   -5.15   -2.92    0.16    4.20    9.14   14.60
+   310.0    0.00   -0.21   -0.87   -1.94   -3.32   -4.83   -6.28   -7.46   -8.24   -8.54   -8.35   -7.73   -6.67   -5.11   -2.89    0.18    4.23    9.17   14.60
+   315.0    0.00   -0.21   -0.87   -1.94   -3.31   -4.82   -6.27   -7.46   -8.23   -8.51   -8.32   -7.68   -6.62   -5.07   -2.85    0.22    4.28    9.22   14.64
+   320.0    0.00   -0.21   -0.87   -1.94   -3.31   -4.82   -6.26   -7.45   -8.21   -8.48   -8.27   -7.63   -6.57   -5.02   -2.80    0.28    4.36    9.31   14.71
+   325.0    0.00   -0.21   -0.87   -1.93   -3.30   -4.81   -6.25   -7.43   -8.19   -8.45   -8.23   -7.58   -6.51   -4.96   -2.74    0.35    4.44    9.41   14.79
+   330.0    0.00   -0.21   -0.87   -1.93   -3.29   -4.80   -6.24   -7.41   -8.16   -8.42   -8.18   -7.52   -6.45   -4.90   -2.69    0.41    4.53    9.52   14.89
+   335.0    0.00   -0.21   -0.87   -1.93   -3.28   -4.78   -6.22   -7.39   -8.14   -8.38   -8.14   -7.46   -6.39   -4.84   -2.63    0.47    4.60    9.61   14.97
+   340.0    0.00   -0.21   -0.87   -1.92   -3.27   -4.77   -6.20   -7.37   -8.12   -8.35   -8.10   -7.41   -6.34   -4.79   -2.59    0.51    4.65    9.68   15.03
+   345.0    0.00   -0.21   -0.87   -1.92   -3.27   -4.75   -6.19   -7.35   -8.09   -8.33   -8.06   -7.37   -6.29   -4.75   -2.56    0.53    4.67    9.70   15.06
+   350.0    0.00   -0.21   -0.87   -1.92   -3.26   -4.74   -6.17   -7.34   -8.08   -8.31   -8.04   -7.34   -6.25   -4.72   -2.54    0.53    4.65    9.69   15.04
+   355.0    0.00   -0.22   -0.87   -1.92   -3.25   -4.73   -6.15   -7.32   -8.07   -8.30   -8.03   -7.33   -6.23   -4.70   -2.54    0.51    4.61    9.64   14.98
+   360.0    0.00   -0.22   -0.88   -1.92   -3.25   -4.72   -6.15   -7.32   -8.07   -8.30   -8.03   -7.32   -6.23   -4.70   -2.55    0.47    4.55    9.55   14.88
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.28     -0.07    119.64                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.11   -0.45   -0.99   -1.72   -2.59   -3.51   -4.37   -5.05   -5.43   -5.42   -5.01   -4.24   -3.14   -1.70    0.18    2.71    6.10   10.37
+     0.0    0.00   -0.11   -0.43   -0.97   -1.68   -2.53   -3.44   -4.31   -5.03   -5.47   -5.54   -5.22   -4.51   -3.45   -2.04   -0.17    2.38    5.86   10.41
+     5.0    0.00   -0.10   -0.43   -0.96   -1.67   -2.51   -3.43   -4.30   -5.02   -5.47   -5.55   -5.23   -4.53   -3.48   -2.08   -0.22    2.32    5.78   10.33
+    10.0    0.00   -0.10   -0.42   -0.95   -1.65   -2.50   -3.41   -4.29   -5.01   -5.46   -5.55   -5.24   -4.54   -3.50   -2.10   -0.24    2.28    5.73   10.26
+    15.0    0.00   -0.10   -0.42   -0.94   -1.64   -2.49   -3.40   -4.28   -5.00   -5.45   -5.54   -5.23   -4.53   -3.49   -2.09   -0.23    2.29    5.72   10.21
+    20.0    0.00   -0.10   -0.41   -0.93   -1.64   -2.48   -3.40   -4.27   -4.99   -5.43   -5.51   -5.19   -4.50   -3.45   -2.05   -0.18    2.33    5.75   10.20
+    25.0    0.00   -0.10   -0.41   -0.93   -1.64   -2.48   -3.39   -4.26   -4.97   -5.40   -5.47   -5.14   -4.44   -3.39   -1.97   -0.11    2.40    5.80   10.22
+    30.0    0.00   -0.10   -0.41   -0.93   -1.64   -2.49   -3.40   -4.26   -4.96   -5.37   -5.42   -5.08   -4.36   -3.30   -1.88   -0.01    2.50    5.90   10.28
+    35.0    0.00   -0.10   -0.41   -0.93   -1.64   -2.49   -3.40   -4.26   -4.95   -5.35   -5.37   -5.01   -4.27   -3.19   -1.77    0.11    2.62    6.01   10.38
+    40.0    0.00   -0.10   -0.41   -0.93   -1.65   -2.50   -3.42   -4.27   -4.94   -5.32   -5.33   -4.94   -4.18   -3.09   -1.65    0.23    2.75    6.13   10.50
+    45.0    0.00   -0.10   -0.41   -0.94   -1.66   -2.52   -3.43   -4.28   -4.94   -5.30   -5.28   -4.87   -4.09   -2.98   -1.54    0.35    2.87    6.25   10.64
+    50.0    0.00   -0.10   -0.41   -0.95   -1.67   -2.53   -3.45   -4.29   -4.94   -5.29   -5.25   -4.82   -4.02   -2.89   -1.44    0.45    2.97    6.36   10.76
+    55.0    0.00   -0.10   -0.42   -0.95   -1.68   -2.55   -3.46   -4.30   -4.95   -5.28   -5.23   -4.79   -3.97   -2.83   -1.36    0.53    3.04    6.43   10.86
+    60.0    0.00   -0.10   -0.42   -0.96   -1.69   -2.56   -3.47   -4.31   -4.95   -5.28   -5.23   -4.78   -3.95   -2.80   -1.32    0.57    3.08    6.47   10.91
+    65.0    0.00   -0.10   -0.42   -0.97   -1.71   -2.57   -3.48   -4.32   -4.96   -5.29   -5.24   -4.79   -3.95   -2.79   -1.31    0.58    3.08    6.46   10.93
+    70.0    0.00   -0.10   -0.43   -0.98   -1.72   -2.58   -3.49   -4.33   -4.97   -5.31   -5.27   -4.82   -3.98   -2.81   -1.33    0.56    3.04    6.41   10.90
+    75.0    0.00   -0.10   -0.43   -0.98   -1.72   -2.59   -3.50   -4.33   -4.98   -5.33   -5.30   -4.86   -4.03   -2.86   -1.37    0.50    2.96    6.31   10.83
+    80.0    0.00   -0.10   -0.43   -0.99   -1.73   -2.60   -3.50   -4.34   -4.99   -5.35   -5.34   -4.91   -4.09   -2.92   -1.44    0.41    2.85    6.19   10.74
+    85.0    0.00   -0.10   -0.44   -1.00   -1.74   -2.60   -3.50   -4.34   -5.00   -5.38   -5.38   -4.96   -4.15   -2.99   -1.52    0.31    2.72    6.05   10.64
+    90.0    0.00   -0.10   -0.44   -1.00   -1.74   -2.60   -3.50   -4.34   -5.01   -5.40   -5.41   -5.01   -4.20   -3.05   -1.59    0.21    2.59    5.91   10.55
+    95.0    0.00   -0.11   -0.45   -1.01   -1.75   -2.61   -3.50   -4.35   -5.02   -5.42   -5.44   -5.04   -4.24   -3.10   -1.66    0.12    2.47    5.78   10.48
+   100.0    0.00   -0.11   -0.45   -1.01   -1.75   -2.61   -3.51   -4.35   -5.04   -5.44   -5.46   -5.06   -4.26   -3.12   -1.71    0.04    2.37    5.69   10.44
+   105.0    0.00   -0.11   -0.45   -1.01   -1.75   -2.61   -3.51   -4.36   -5.05   -5.45   -5.47   -5.07   -4.26   -3.13   -1.74   -0.01    2.30    5.64   10.44
+   110.0    0.00   -0.11   -0.46   -1.02   -1.76   -2.62   -3.52   -4.38   -5.06   -5.47   -5.48   -5.06   -4.25   -3.12   -1.74   -0.03    2.27    5.63   10.46
+   115.0    0.00   -0.11   -0.46   -1.02   -1.76   -2.62   -3.53   -4.39   -5.08   -5.48   -5.48   -5.05   -4.23   -3.10   -1.73   -0.02    2.29    5.66   10.49
+   120.0    0.00   -0.11   -0.46   -1.02   -1.76   -2.63   -3.54   -4.40   -5.09   -5.49   -5.48   -5.03   -4.20   -3.07   -1.69    0.02    2.35    5.72   10.50
+   125.0    0.00   -0.11   -0.46   -1.02   -1.77   -2.63   -3.55   -4.42   -5.11   -5.49   -5.47   -5.02   -4.18   -3.04   -1.65    0.08    2.43    5.80   10.49
+   130.0    0.00   -0.11   -0.46   -1.03   -1.77   -2.64   -3.56   -4.43   -5.12   -5.50   -5.47   -5.02   -4.17   -3.02   -1.61    0.15    2.53    5.88   10.44
+   135.0    0.00   -0.11   -0.46   -1.03   -1.77   -2.64   -3.56   -4.43   -5.12   -5.50   -5.48   -5.02   -4.17   -3.01   -1.58    0.22    2.63    5.95   10.33
+   140.0    0.00   -0.12   -0.46   -1.03   -1.77   -2.64   -3.56   -4.43   -5.12   -5.51   -5.49   -5.03   -4.19   -3.02   -1.56    0.28    2.72    5.99   10.16
+   145.0    0.00   -0.12   -0.46   -1.02   -1.77   -2.64   -3.56   -4.43   -5.12   -5.51   -5.49   -5.05   -4.22   -3.05   -1.57    0.31    2.77    6.00    9.96
+   150.0    0.00   -0.12   -0.46   -1.02   -1.76   -2.63   -3.55   -4.42   -5.12   -5.51   -5.51   -5.08   -4.26   -3.10   -1.60    0.32    2.80    5.97    9.72
+   155.0    0.00   -0.12   -0.46   -1.02   -1.76   -2.63   -3.55   -4.42   -5.11   -5.50   -5.52   -5.11   -4.31   -3.16   -1.65    0.29    2.78    5.91    9.48
+   160.0    0.00   -0.12   -0.46   -1.02   -1.76   -2.62   -3.54   -4.41   -5.10   -5.50   -5.52   -5.14   -4.36   -3.22   -1.71    0.23    2.73    5.82    9.28
+   165.0    0.00   -0.12   -0.46   -1.02   -1.76   -2.62   -3.54   -4.40   -5.09   -5.49   -5.52   -5.15   -4.40   -3.28   -1.79    0.15    2.65    5.72    9.13
+   170.0    0.00   -0.12   -0.46   -1.02   -1.75   -2.62   -3.54   -4.40   -5.09   -5.49   -5.52   -5.16   -4.43   -3.33   -1.86    0.07    2.56    5.63    9.06
+   175.0    0.00   -0.12   -0.46   -1.01   -1.75   -2.62   -3.54   -4.40   -5.08   -5.48   -5.51   -5.16   -4.44   -3.37   -1.92   -0.02    2.46    5.57    9.09
+   180.0    0.00   -0.12   -0.46   -1.01   -1.75   -2.62   -3.54   -4.40   -5.08   -5.47   -5.50   -5.14   -4.43   -3.38   -1.97   -0.09    2.39    5.54    9.22
+   185.0    0.00   -0.12   -0.46   -1.01   -1.75   -2.62   -3.54   -4.41   -5.08   -5.46   -5.48   -5.12   -4.41   -3.37   -1.98   -0.13    2.35    5.57    9.43
+   190.0    0.00   -0.12   -0.46   -1.01   -1.75   -2.62   -3.55   -4.41   -5.09   -5.46   -5.46   -5.09   -4.37   -3.34   -1.97   -0.14    2.35    5.65    9.71
+   195.0    0.00   -0.12   -0.46   -1.01   -1.75   -2.63   -3.56   -4.42   -5.09   -5.45   -5.44   -5.05   -4.32   -3.29   -1.93   -0.11    2.40    5.78   10.03
+   200.0    0.00   -0.12   -0.46   -1.01   -1.75   -2.63   -3.56   -4.43   -5.09   -5.45   -5.42   -5.01   -4.27   -3.23   -1.87   -0.03    2.50    5.95   10.35
+   205.0    0.00   -0.12   -0.46   -1.01   -1.75   -2.63   -3.56   -4.43   -5.10   -5.44   -5.40   -4.98   -4.22   -3.16   -1.78    0.07    2.63    6.14   10.65
+   210.0    0.00   -0.12   -0.46   -1.01   -1.74   -2.63   -3.56   -4.43   -5.10   -5.44   -5.39   -4.95   -4.17   -3.09   -1.68    0.20    2.79    6.33   10.89
+   215.0    0.00   -0.12   -0.46   -1.00   -1.74   -2.62   -3.56   -4.43   -5.10   -5.44   -5.38   -4.93   -4.13   -3.02   -1.58    0.34    2.96    6.51   11.05
+   220.0    0.00   -0.12   -0.46   -1.00   -1.74   -2.62   -3.56   -4.43   -5.09   -5.43   -5.37   -4.91   -4.10   -2.96   -1.49    0.47    3.11    6.66   11.14
+   225.0    0.00   -0.12   -0.46   -1.00   -1.74   -2.62   -3.55   -4.42   -5.09   -5.43   -5.37   -4.90   -4.07   -2.91   -1.41    0.57    3.24    6.76   11.13
+   230.0    0.00   -0.12   -0.46   -1.00   -1.74   -2.61   -3.55   -4.42   -5.09   -5.42   -5.36   -4.89   -4.05   -2.88   -1.36    0.64    3.31    6.81   11.06
+   235.0    0.00   -0.12   -0.46   -1.00   -1.74   -2.61   -3.55   -4.42   -5.08   -5.42   -5.35   -4.88   -4.03   -2.86   -1.33    0.67    3.34    6.79   10.94
+   240.0    0.00   -0.12   -0.46   -1.01   -1.74   -2.61   -3.55   -4.42   -5.09   -5.42   -5.35   -4.87   -4.03   -2.86   -1.34    0.65    3.31    6.73   10.79
+   245.0    0.00   -0.12   -0.46   -1.01   -1.74   -2.61   -3.55   -4.42   -5.09   -5.42   -5.35   -4.86   -4.02   -2.87   -1.38    0.59    3.22    6.62   10.63
+   250.0    0.00   -0.13   -0.47   -1.01   -1.74   -2.62   -3.55   -4.43   -5.10   -5.43   -5.35   -4.86   -4.03   -2.90   -1.44    0.49    3.10    6.49   10.49
+   255.0    0.00   -0.13   -0.47   -1.02   -1.75   -2.62   -3.56   -4.44   -5.11   -5.43   -5.35   -4.86   -4.04   -2.93   -1.52    0.37    2.95    6.35   10.38
+   260.0    0.00   -0.13   -0.47   -1.02   -1.75   -2.63   -3.57   -4.45   -5.12   -5.44   -5.36   -4.87   -4.06   -2.98   -1.61    0.24    2.79    6.22   10.31
+   265.0    0.00   -0.13   -0.47   -1.02   -1.76   -2.64   -3.58   -4.46   -5.13   -5.45   -5.37   -4.88   -4.08   -3.03   -1.70    0.11    2.65    6.10   10.28
+   270.0    0.00   -0.13   -0.48   -1.03   -1.77   -2.64   -3.58   -4.47   -5.14   -5.47   -5.38   -4.90   -4.12   -3.09   -1.78   -0.01    2.53    6.02   10.28
+   275.0    0.00   -0.13   -0.48   -1.03   -1.77   -2.65   -3.59   -4.47   -5.14   -5.48   -5.40   -4.93   -4.16   -3.14   -1.85   -0.09    2.46    5.98   10.30
+   280.0    0.00   -0.13   -0.48   -1.04   -1.78   -2.65   -3.59   -4.47   -5.14   -5.49   -5.42   -4.97   -4.20   -3.19   -1.90   -0.13    2.42    5.98   10.33
+   285.0    0.00   -0.13   -0.48   -1.04   -1.78   -2.65   -3.58   -4.46   -5.14   -5.49   -5.44   -5.00   -4.25   -3.24   -1.93   -0.14    2.44    6.01   10.37
+   290.0    0.00   -0.13   -0.49   -1.05   -1.78   -2.65   -3.58   -4.45   -5.13   -5.49   -5.46   -5.04   -4.29   -3.27   -1.94   -0.11    2.50    6.07   10.41
+   295.0    0.00   -0.13   -0.49   -1.05   -1.78   -2.65   -3.57   -4.43   -5.11   -5.48   -5.47   -5.07   -4.32   -3.29   -1.92   -0.05    2.58    6.15   10.43
+   300.0    0.00   -0.13   -0.49   -1.05   -1.78   -2.64   -3.55   -4.41   -5.09   -5.48   -5.48   -5.09   -4.35   -3.30   -1.89    0.03    2.69    6.23   10.45
+   305.0    0.00   -0.13   -0.49   -1.05   -1.78   -2.64   -3.54   -4.39   -5.07   -5.46   -5.48   -5.11   -4.37   -3.29   -1.84    0.12    2.80    6.32   10.47
+   310.0    0.00   -0.13   -0.48   -1.05   -1.78   -2.63   -3.53   -4.38   -5.05   -5.45   -5.48   -5.11   -4.37   -3.28   -1.80    0.20    2.89    6.39   10.48
+   315.0    0.00   -0.13   -0.48   -1.05   -1.78   -2.63   -3.52   -4.36   -5.04   -5.44   -5.47   -5.11   -4.37   -3.26   -1.75    0.27    2.96    6.44   10.50
+   320.0    0.00   -0.12   -0.48   -1.04   -1.77   -2.62   -3.51   -4.35   -5.03   -5.43   -5.47   -5.11   -4.36   -3.24   -1.72    0.31    3.00    6.46   10.52
+   325.0    0.00   -0.12   -0.48   -1.04   -1.77   -2.61   -3.50   -4.34   -5.02   -5.42   -5.46   -5.11   -4.36   -3.23   -1.70    0.32    3.00    6.45   10.54
+   330.0    0.00   -0.12   -0.47   -1.03   -1.76   -2.61   -3.50   -4.34   -5.02   -5.42   -5.46   -5.10   -4.35   -3.23   -1.71    0.30    2.97    6.42   10.56
+   335.0    0.00   -0.12   -0.46   -1.02   -1.75   -2.60   -3.49   -4.34   -5.02   -5.42   -5.46   -5.11   -4.36   -3.24   -1.73    0.26    2.90    6.36   10.58
+   340.0    0.00   -0.12   -0.46   -1.01   -1.74   -2.59   -3.48   -4.34   -5.02   -5.43   -5.47   -5.12   -4.37   -3.26   -1.78    0.18    2.81    6.27   10.59
+   345.0    0.00   -0.11   -0.45   -1.00   -1.72   -2.57   -3.48   -4.33   -5.03   -5.44   -5.49   -5.14   -4.40   -3.30   -1.84    0.10    2.69    6.17   10.57
+   350.0    0.00   -0.11   -0.45   -0.99   -1.71   -2.56   -3.47   -4.33   -5.03   -5.45   -5.51   -5.16   -4.43   -3.35   -1.91    0.00    2.58    6.06   10.53
+   355.0    0.00   -0.11   -0.44   -0.98   -1.69   -2.54   -3.45   -4.32   -5.03   -5.46   -5.53   -5.19   -4.47   -3.40   -1.98   -0.09    2.47    5.95   10.48
+   360.0    0.00   -0.11   -0.43   -0.97   -1.68   -2.53   -3.44   -4.31   -5.03   -5.47   -5.54   -5.22   -4.51   -3.45   -2.04   -0.17    2.38    5.86   10.41
+   G02                                                      END OF FREQUENCY    
+   R01                                                      START OF FREQUENCY  
+      1.05      0.86     89.31                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.24   -0.96   -2.09   -3.50   -5.06   -6.57   -7.85   -8.75   -9.17   -9.08   -8.51   -7.47   -5.92   -3.72   -0.68    3.36    8.35   13.94
+     0.0    0.00   -0.26   -0.97   -2.06   -3.45   -5.01   -6.54   -7.82   -8.70   -9.04   -8.88   -8.28   -7.28   -5.83   -3.73   -0.74    3.32    8.22   13.23
+     5.0    0.00   -0.26   -0.97   -2.07   -3.47   -5.03   -6.55   -7.85   -8.73   -9.09   -8.92   -8.32   -7.31   -5.89   -3.81   -0.86    3.18    8.08   13.06
+    10.0    0.00   -0.26   -0.98   -2.08   -3.48   -5.05   -6.59   -7.88   -8.76   -9.13   -8.97   -8.37   -7.38   -5.96   -3.91   -0.98    3.02    7.92   12.93
+    15.0    0.00   -0.27   -0.99   -2.09   -3.50   -5.07   -6.61   -7.92   -8.81   -9.19   -9.04   -8.44   -7.46   -6.04   -4.00   -1.09    2.89    7.77   12.85
+    20.0    0.00   -0.27   -1.01   -2.11   -3.53   -5.09   -6.63   -7.94   -8.85   -9.24   -9.11   -8.52   -7.54   -6.12   -4.09   -1.19    2.78    7.69   12.85
+    25.0    0.00   -0.27   -1.01   -2.13   -3.54   -5.10   -6.65   -7.97   -8.89   -9.31   -9.19   -8.62   -7.62   -6.19   -4.16   -1.24    2.72    7.65   12.92
+    30.0    0.00   -0.29   -1.02   -2.14   -3.56   -5.12   -6.68   -7.99   -8.93   -9.36   -9.27   -8.70   -7.71   -6.25   -4.20   -1.26    2.71    7.68   13.10
+    35.0    0.00   -0.29   -1.04   -2.15   -3.58   -5.14   -6.68   -8.01   -8.95   -9.40   -9.33   -8.78   -7.78   -6.29   -4.21   -1.25    2.75    7.77   13.33
+    40.0    0.00   -0.29   -1.04   -2.17   -3.60   -5.15   -6.70   -8.01   -8.96   -9.44   -9.38   -8.84   -7.83   -6.32   -4.18   -1.19    2.84    7.89   13.60
+    45.0    0.00   -0.30   -1.05   -2.19   -3.60   -5.16   -6.69   -8.01   -8.97   -9.45   -9.42   -8.88   -7.86   -6.31   -4.12   -1.11    2.95    8.06   13.90
+    50.0    0.00   -0.30   -1.06   -2.20   -3.62   -5.16   -6.69   -8.00   -8.96   -9.46   -9.44   -8.91   -7.87   -6.29   -4.07   -1.00    3.07    8.22   14.18
+    55.0    0.00   -0.30   -1.06   -2.21   -3.63   -5.17   -6.68   -7.99   -8.95   -9.45   -9.45   -8.91   -7.87   -6.26   -3.99   -0.90    3.21    8.37   14.41
+    60.0    0.00   -0.30   -1.07   -2.22   -3.63   -5.17   -6.67   -7.98   -8.92   -9.44   -9.43   -8.89   -7.82   -6.21   -3.90   -0.81    3.30    8.48   14.57
+    65.0    0.00   -0.30   -1.08   -2.23   -3.64   -5.18   -6.67   -7.95   -8.90   -9.42   -9.40   -8.86   -7.78   -6.13   -3.83   -0.71    3.37    8.54   14.66
+    70.0    0.00   -0.30   -1.08   -2.23   -3.64   -5.18   -6.66   -7.94   -8.89   -9.38   -9.37   -8.82   -7.73   -6.07   -3.76   -0.66    3.40    8.55   14.67
+    75.0    0.00   -0.30   -1.09   -2.23   -3.64   -5.18   -6.66   -7.94   -8.87   -9.36   -9.33   -8.77   -7.68   -6.01   -3.70   -0.63    3.42    8.52   14.59
+    80.0    0.00   -0.30   -1.08   -2.23   -3.64   -5.18   -6.66   -7.94   -8.86   -9.33   -9.30   -8.73   -7.62   -5.96   -3.67   -0.61    3.39    8.47   14.47
+    85.0    0.00   -0.30   -1.08   -2.23   -3.65   -5.18   -6.66   -7.94   -8.85   -9.33   -9.27   -8.69   -7.57   -5.93   -3.65   -0.61    3.37    8.39   14.31
+    90.0    0.00   -0.29   -1.07   -2.23   -3.64   -5.19   -6.66   -7.94   -8.86   -9.32   -9.25   -8.64   -7.53   -5.88   -3.64   -0.62    3.33    8.32   14.16
+    95.0    0.00   -0.29   -1.07   -2.22   -3.64   -5.18   -6.67   -7.94   -8.87   -9.31   -9.23   -8.62   -7.50   -5.87   -3.63   -0.64    3.31    8.26   14.03
+   100.0    0.00   -0.30   -1.06   -2.21   -3.63   -5.18   -6.67   -7.95   -8.87   -9.30   -9.21   -8.59   -7.48   -5.85   -3.64   -0.65    3.30    8.26   13.96
+   105.0    0.00   -0.29   -1.04   -2.20   -3.61   -5.17   -6.67   -7.96   -8.88   -9.31   -9.20   -8.57   -7.46   -5.84   -3.62   -0.64    3.31    8.28   13.96
+   110.0    0.00   -0.29   -1.03   -2.18   -3.60   -5.15   -6.67   -7.96   -8.88   -9.30   -9.19   -8.55   -7.44   -5.82   -3.62   -0.62    3.37    8.35   14.00
+   115.0    0.00   -0.27   -1.02   -2.17   -3.58   -5.14   -6.66   -7.95   -8.87   -9.28   -9.17   -8.53   -7.41   -5.80   -3.59   -0.57    3.44    8.45   14.11
+   120.0    0.00   -0.27   -1.01   -2.15   -3.56   -5.12   -6.64   -7.94   -8.86   -9.26   -9.14   -8.50   -7.39   -5.78   -3.55   -0.52    3.52    8.58   14.26
+   125.0    0.00   -0.26   -1.00   -2.13   -3.54   -5.10   -6.62   -7.92   -8.83   -9.23   -9.11   -8.47   -7.35   -5.75   -3.51   -0.46    3.62    8.72   14.41
+   130.0    0.00   -0.26   -0.99   -2.10   -3.52   -5.07   -6.59   -7.89   -8.80   -9.19   -9.06   -8.42   -7.30   -5.69   -3.45   -0.39    3.71    8.84   14.59
+   135.0    0.00   -0.26   -0.97   -2.08   -3.49   -5.05   -6.56   -7.85   -8.74   -9.14   -9.00   -8.37   -7.26   -5.64   -3.40   -0.32    3.80    8.93   14.72
+   140.0    0.00   -0.25   -0.96   -2.07   -3.47   -5.02   -6.52   -7.81   -8.69   -9.09   -8.95   -8.32   -7.21   -5.59   -3.34   -0.24    3.87    9.00   14.81
+   145.0    0.00   -0.25   -0.95   -2.05   -3.44   -4.98   -6.49   -7.76   -8.63   -9.02   -8.89   -8.26   -7.16   -5.54   -3.28   -0.19    3.92    9.04   14.84
+   150.0    0.00   -0.24   -0.94   -2.04   -3.43   -4.95   -6.46   -7.71   -8.59   -8.97   -8.84   -8.22   -7.12   -5.51   -3.24   -0.14    3.95    9.02   14.81
+   155.0    0.00   -0.23   -0.92   -2.01   -3.41   -4.94   -6.43   -7.67   -8.53   -8.90   -8.79   -8.18   -7.09   -5.47   -3.21   -0.11    3.95    8.98   14.73
+   160.0    0.00   -0.23   -0.91   -2.00   -3.39   -4.91   -6.39   -7.64   -8.49   -8.86   -8.76   -8.15   -7.07   -5.45   -3.18   -0.09    3.93    8.90   14.61
+   165.0    0.00   -0.22   -0.91   -1.99   -3.38   -4.90   -6.37   -7.60   -8.45   -8.83   -8.73   -8.15   -7.08   -5.46   -3.18   -0.10    3.89    8.80   14.44
+   170.0    0.00   -0.22   -0.90   -1.99   -3.37   -4.89   -6.35   -7.58   -8.42   -8.81   -8.73   -8.15   -7.08   -5.48   -3.20   -0.12    3.84    8.69   14.28
+   175.0    0.00   -0.22   -0.89   -1.98   -3.37   -4.88   -6.35   -7.58   -8.42   -8.81   -8.73   -8.17   -7.13   -5.51   -3.23   -0.16    3.78    8.59   14.11
+   180.0    0.00   -0.21   -0.89   -1.97   -3.37   -4.89   -6.35   -7.58   -8.43   -8.82   -8.75   -8.20   -7.17   -5.56   -3.27   -0.20    3.72    8.49   13.99
+   185.0    0.00   -0.21   -0.89   -1.97   -3.37   -4.90   -6.36   -7.59   -8.44   -8.84   -8.78   -8.25   -7.22   -5.62   -3.33   -0.26    3.65    8.40   13.88
+   190.0    0.00   -0.21   -0.89   -1.98   -3.38   -4.91   -6.39   -7.62   -8.48   -8.87   -8.81   -8.29   -7.26   -5.67   -3.40   -0.35    3.58    8.33   13.80
+   195.0    0.00   -0.21   -0.88   -1.98   -3.39   -4.93   -6.42   -7.64   -8.51   -8.92   -8.85   -8.33   -7.32   -5.74   -3.47   -0.41    3.51    8.30   13.80
+   200.0    0.00   -0.21   -0.88   -1.98   -3.40   -4.94   -6.44   -7.68   -8.54   -8.95   -8.89   -8.36   -7.36   -5.80   -3.55   -0.50    3.45    8.28   13.83
+   205.0    0.00   -0.20   -0.88   -1.99   -3.40   -4.96   -6.47   -7.71   -8.57   -8.98   -8.92   -8.41   -7.41   -5.85   -3.63   -0.57    3.40    8.28   13.88
+   210.0    0.00   -0.20   -0.89   -2.00   -3.41   -4.98   -6.48   -7.75   -8.61   -9.01   -8.95   -8.42   -7.44   -5.90   -3.70   -0.63    3.37    8.32   13.97
+   215.0    0.00   -0.20   -0.88   -2.00   -3.42   -5.00   -6.51   -7.77   -8.63   -9.03   -8.97   -8.46   -7.47   -5.95   -3.76   -0.70    3.35    8.38   14.08
+   220.0    0.00   -0.20   -0.89   -2.00   -3.44   -5.02   -6.53   -7.79   -8.66   -9.07   -8.99   -8.47   -7.50   -5.98   -3.80   -0.73    3.36    8.45   14.20
+   225.0    0.00   -0.21   -0.89   -2.01   -3.45   -5.02   -6.54   -7.81   -8.67   -9.08   -9.00   -8.49   -7.51   -6.01   -3.83   -0.75    3.39    8.56   14.33
+   230.0    0.00   -0.20   -0.90   -2.02   -3.46   -5.04   -6.54   -7.82   -8.69   -9.09   -9.02   -8.50   -7.52   -6.03   -3.85   -0.74    3.44    8.66   14.42
+   235.0    0.00   -0.20   -0.90   -2.03   -3.46   -5.05   -6.55   -7.82   -8.69   -9.10   -9.03   -8.52   -7.54   -6.05   -3.86   -0.73    3.50    8.75   14.50
+   240.0    0.00   -0.20   -0.90   -2.03   -3.47   -5.05   -6.56   -7.82   -8.70   -9.11   -9.05   -8.53   -7.57   -6.07   -3.86   -0.70    3.56    8.84   14.56
+   245.0    0.00   -0.21   -0.91   -2.04   -3.48   -5.05   -6.56   -7.83   -8.70   -9.12   -9.07   -8.55   -7.59   -6.08   -3.85   -0.67    3.62    8.89   14.57
+   250.0    0.00   -0.21   -0.91   -2.04   -3.49   -5.06   -6.56   -7.83   -8.71   -9.14   -9.10   -8.58   -7.62   -6.09   -3.84   -0.64    3.66    8.92   14.53
+   255.0    0.00   -0.20   -0.92   -2.05   -3.50   -5.06   -6.57   -7.84   -8.72   -9.16   -9.12   -8.61   -7.64   -6.11   -3.84   -0.63    3.67    8.90   14.45
+   260.0    0.00   -0.21   -0.92   -2.06   -3.50   -5.07   -6.58   -7.86   -8.74   -9.18   -9.15   -8.64   -7.67   -6.12   -3.84   -0.64    3.64    8.83   14.33
+   265.0    0.00   -0.21   -0.92   -2.07   -3.52   -5.08   -6.60   -7.86   -8.76   -9.22   -9.18   -8.67   -7.69   -6.14   -3.86   -0.67    3.56    8.69   14.17
+   270.0    0.00   -0.21   -0.93   -2.08   -3.52   -5.09   -6.61   -7.88   -8.79   -9.24   -9.21   -8.71   -7.72   -6.16   -3.89   -0.72    3.44    8.51   13.98
+   275.0    0.00   -0.22   -0.93   -2.08   -3.53   -5.10   -6.63   -7.91   -8.81   -9.27   -9.24   -8.74   -7.73   -6.17   -3.92   -0.81    3.29    8.30   13.78
+   280.0    0.00   -0.22   -0.93   -2.09   -3.53   -5.12   -6.64   -7.93   -8.84   -9.30   -9.26   -8.75   -7.74   -6.18   -3.97   -0.90    3.12    8.05   13.55
+   285.0    0.00   -0.22   -0.93   -2.08   -3.53   -5.12   -6.65   -7.95   -8.87   -9.31   -9.28   -8.77   -7.75   -6.20   -4.00   -0.99    2.94    7.82   13.37
+   290.0    0.00   -0.22   -0.94   -2.09   -3.54   -5.13   -6.66   -7.96   -8.88   -9.33   -9.29   -8.77   -7.76   -6.21   -4.04   -1.08    2.78    7.62   13.20
+   295.0    0.00   -0.23   -0.94   -2.08   -3.53   -5.13   -6.66   -7.97   -8.90   -9.35   -9.30   -8.77   -7.74   -6.21   -4.06   -1.15    2.67    7.46   13.08
+   300.0    0.00   -0.23   -0.93   -2.08   -3.53   -5.13   -6.66   -7.96   -8.89   -9.34   -9.28   -8.75   -7.72   -6.19   -4.06   -1.19    2.59    7.36   13.03
+   305.0    0.00   -0.23   -0.93   -2.08   -3.52   -5.11   -6.65   -7.96   -8.88   -9.33   -9.26   -8.71   -7.69   -6.17   -4.05   -1.18    2.57    7.34   13.04
+   310.0    0.00   -0.23   -0.94   -2.07   -3.51   -5.10   -6.64   -7.94   -8.86   -9.29   -9.22   -8.68   -7.65   -6.12   -4.01   -1.15    2.62    7.41   13.10
+   315.0    0.00   -0.23   -0.94   -2.07   -3.50   -5.08   -6.61   -7.92   -8.83   -9.25   -9.19   -8.63   -7.60   -6.08   -3.95   -1.08    2.73    7.52   13.20
+   320.0    0.00   -0.24   -0.94   -2.07   -3.49   -5.06   -6.59   -7.90   -8.79   -9.21   -9.13   -8.57   -7.54   -6.02   -3.88   -0.97    2.88    7.70   13.35
+   325.0    0.00   -0.24   -0.94   -2.05   -3.47   -5.04   -6.57   -7.86   -8.75   -9.17   -9.08   -8.52   -7.48   -5.96   -3.80   -0.85    3.04    7.90   13.47
+   330.0    0.00   -0.24   -0.94   -2.05   -3.46   -5.02   -6.55   -7.82   -8.71   -9.12   -9.02   -8.44   -7.43   -5.90   -3.74   -0.75    3.21    8.11   13.59
+   335.0    0.00   -0.24   -0.94   -2.05   -3.45   -5.00   -6.53   -7.80   -8.69   -9.08   -8.97   -8.38   -7.37   -5.84   -3.67   -0.65    3.36    8.27   13.66
+   340.0    0.00   -0.24   -0.94   -2.04   -3.44   -4.99   -6.51   -7.78   -8.67   -9.04   -8.93   -8.33   -7.32   -5.80   -3.63   -0.59    3.46    8.39   13.69
+   345.0    0.00   -0.24   -0.94   -2.04   -3.44   -4.98   -6.51   -7.79   -8.65   -9.03   -8.89   -8.29   -7.28   -5.78   -3.61   -0.57    3.51    8.45   13.65
+   350.0    0.00   -0.25   -0.94   -2.05   -3.44   -5.00   -6.51   -7.79   -8.65   -9.02   -8.87   -8.26   -7.25   -5.77   -3.62   -0.59    3.49    8.44   13.54
+   355.0    0.00   -0.26   -0.96   -2.05   -3.44   -5.00   -6.51   -7.80   -8.67   -9.02   -8.87   -8.27   -7.25   -5.78   -3.67   -0.64    3.43    8.35   13.40
+   360.0    0.00   -0.26   -0.97   -2.06   -3.45   -5.01   -6.54   -7.82   -8.70   -9.04   -8.88   -8.28   -7.28   -5.83   -3.73   -0.74    3.32    8.22   13.23
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+      0.28     -0.07    119.64                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.12   -0.49   -1.06   -1.85   -2.80   -3.83   -4.84   -5.69   -6.25   -6.40   -6.12   -5.47   -4.51   -3.29   -1.73    0.38    3.35    7.37
+     0.0    0.00   -0.12   -0.46   -1.04   -1.80   -2.72   -3.72   -4.69   -5.55   -6.15   -6.40   -6.28   -5.78   -4.91   -3.67   -2.00    0.25    3.22    6.86
+     5.0    0.00   -0.11   -0.46   -1.03   -1.80   -2.72   -3.73   -4.71   -5.55   -6.14   -6.39   -6.26   -5.77   -4.94   -3.74   -2.10    0.14    3.06    6.61
+    10.0    0.00   -0.11   -0.45   -1.02   -1.79   -2.73   -3.74   -4.73   -5.56   -6.13   -6.37   -6.25   -5.76   -4.96   -3.78   -2.15    0.05    2.95    6.45
+    15.0    0.00   -0.11   -0.45   -1.01   -1.79   -2.74   -3.76   -4.75   -5.57   -6.13   -6.36   -6.22   -5.73   -4.93   -3.78   -2.17    0.02    2.89    6.39
+    20.0    0.00   -0.11   -0.44   -1.00   -1.79   -2.74   -3.78   -4.77   -5.59   -6.14   -6.33   -6.17   -5.68   -4.86   -3.73   -2.14    0.02    2.91    6.46
+    25.0    0.00   -0.11   -0.43   -1.00   -1.79   -2.74   -3.78   -4.78   -5.60   -6.14   -6.32   -6.12   -5.60   -4.78   -3.63   -2.08    0.07    2.97    6.64
+    30.0    0.00   -0.10   -0.43   -1.00   -1.79   -2.75   -3.80   -4.79   -5.62   -6.14   -6.29   -6.07   -5.52   -4.67   -3.51   -1.96    0.17    3.11    6.92
+    35.0    0.00   -0.10   -0.43   -1.00   -1.79   -2.75   -3.79   -4.79   -5.62   -6.14   -6.28   -6.03   -5.43   -4.54   -3.37   -1.83    0.29    3.27    7.27
+    40.0    0.00   -0.10   -0.43   -1.00   -1.79   -2.74   -3.80   -4.79   -5.61   -6.13   -6.26   -5.99   -5.35   -4.43   -3.23   -1.68    0.44    3.46    7.64
+    45.0    0.00   -0.10   -0.43   -1.00   -1.79   -2.75   -3.78   -4.78   -5.61   -6.12   -6.24   -5.95   -5.28   -4.32   -3.11   -1.55    0.57    3.64    8.02
+    50.0    0.00   -0.10   -0.43   -1.01   -1.79   -2.74   -3.77   -4.77   -5.60   -6.12   -6.24   -5.93   -5.23   -4.24   -3.00   -1.44    0.68    3.79    8.34
+    55.0    0.00   -0.10   -0.44   -1.01   -1.79   -2.74   -3.76   -4.75   -5.58   -6.11   -6.24   -5.93   -5.21   -4.19   -2.93   -1.37    0.75    3.89    8.59
+    60.0    0.00   -0.10   -0.44   -1.02   -1.80   -2.74   -3.75   -4.74   -5.57   -6.10   -6.25   -5.94   -5.21   -4.18   -2.90   -1.34    0.78    3.93    8.71
+    65.0    0.00   -0.10   -0.44   -1.03   -1.82   -2.74   -3.75   -4.73   -5.56   -6.11   -6.26   -5.95   -5.23   -4.19   -2.91   -1.36    0.75    3.91    8.73
+    70.0    0.00   -0.10   -0.46   -1.05   -1.83   -2.76   -3.76   -4.73   -5.57   -6.11   -6.28   -5.99   -5.27   -4.22   -2.96   -1.41    0.68    3.81    8.64
+    75.0    0.00   -0.10   -0.46   -1.05   -1.85   -2.78   -3.78   -4.75   -5.58   -6.13   -6.30   -6.02   -5.32   -4.29   -3.02   -1.49    0.56    3.66    8.45
+    80.0    0.00   -0.11   -0.46   -1.07   -1.87   -2.81   -3.81   -4.78   -5.60   -6.15   -6.33   -6.06   -5.37   -4.36   -3.10   -1.60    0.43    3.47    8.18
+    85.0    0.00   -0.11   -0.48   -1.09   -1.90   -2.84   -3.84   -4.81   -5.63   -6.20   -6.37   -6.10   -5.42   -4.42   -3.18   -1.71    0.28    3.28    7.87
+    90.0    0.00   -0.11   -0.48   -1.10   -1.92   -2.87   -3.88   -4.85   -5.67   -6.23   -6.40   -6.14   -5.47   -4.47   -3.25   -1.79    0.16    3.09    7.56
+    95.0    0.00   -0.12   -0.49   -1.12   -1.96   -2.92   -3.92   -4.90   -5.72   -6.27   -6.44   -6.17   -5.49   -4.51   -3.29   -1.85    0.07    2.93    7.27
+   100.0    0.00   -0.12   -0.50   -1.14   -1.97   -2.95   -3.97   -4.95   -5.78   -6.32   -6.48   -6.19   -5.50   -4.51   -3.31   -1.89    0.01    2.83    7.05
+   105.0    0.00   -0.12   -0.50   -1.14   -1.99   -2.97   -4.00   -4.99   -5.82   -6.36   -6.50   -6.21   -5.50   -4.51   -3.32   -1.89   -2.30    2.78    6.90
+   110.0    0.00   -0.12   -0.51   -1.16   -2.01   -3.00   -4.04   -5.04   -5.85   -6.40   -6.53   -6.22   -5.50   -4.48   -3.28   -1.85    0.03    2.79    6.82
+   115.0    0.00   -0.12   -0.51   -1.16   -2.01   -3.00   -4.05   -5.06   -5.89   -6.43   -6.55   -6.22   -5.49   -4.45   -3.24   -1.79    0.10    2.85    6.82
+   120.0    0.00   -0.12   -0.51   -1.16   -2.01   -3.01   -4.06   -5.07   -5.91   -6.45   -6.57   -6.22   -5.47   -4.42   -3.17   -1.72    0.19    2.94    6.87
+   125.0    0.00   -0.12   -0.51   -1.15   -2.01   -3.01   -4.07   -5.08   -5.93   -6.46   -6.57   -6.23   -5.45   -4.38   -3.12   -1.64    0.29    3.05    6.96
+   130.0    0.00   -0.12   -0.51   -1.16   -2.01   -3.00   -4.05   -5.08   -5.93   -6.47   -6.58   -6.23   -5.45   -4.36   -3.07   -1.57    0.37    3.14    7.05
+   135.0    0.00   -0.12   -0.51   -1.16   -1.99   -2.98   -4.03   -5.06   -5.91   -6.47   -6.60   -6.24   -5.45   -4.35   -3.05   -1.53    0.44    3.22    7.12
+   140.0    0.00   -0.13   -0.50   -1.15   -1.98   -2.96   -4.01   -5.03   -5.90   -6.47   -6.61   -6.25   -5.46   -4.36   -3.05   -1.52    0.46    3.25    7.14
+   145.0    0.00   -0.13   -0.50   -1.12   -1.96   -2.93   -3.98   -5.01   -5.89   -6.46   -6.60   -6.26   -5.49   -4.39   -3.09   -1.55    0.44    3.23    7.12
+   150.0    0.00   -0.13   -0.50   -1.12   -1.94   -2.90   -3.95   -4.99   -5.87   -6.45   -6.61   -6.28   -5.52   -4.45   -3.15   -1.61    0.38    3.17    7.01
+   155.0    0.00   -0.13   -0.50   -1.11   -1.92   -2.89   -3.94   -4.97   -5.85   -6.43   -6.60   -6.29   -5.55   -4.51   -3.23   -1.70    0.28    3.05    6.85
+   160.0    0.00   -0.13   -0.49   -1.10   -1.91   -2.86   -3.92   -4.95   -5.84   -6.43   -6.59   -6.30   -5.59   -4.57   -3.32   -1.82    0.15    2.91    6.66
+   165.0    0.00   -0.13   -0.49   -1.09   -1.90   -2.86   -3.92   -4.94   -5.83   -6.40   -6.58   -6.30   -5.62   -4.63   -3.42   -1.94    0.02    2.75    6.44
+   170.0    0.00   -0.13   -0.49   -1.09   -1.89   -2.86   -3.91   -4.94   -5.82   -6.40   -6.57   -6.29   -5.65   -4.70   -3.52   -2.05   -0.10    2.60    6.22
+   175.0    0.00   -0.13   -0.48   -1.08   -1.88   -2.86   -3.91   -4.94   -5.80   -6.38   -6.54   -6.29   -5.67   -4.76   -3.61   -2.15   -0.20    2.49    6.04
+   180.0    0.00   -0.13   -0.48   -1.08   -1.88   -2.86   -3.92   -4.94   -5.79   -6.35   -6.52   -6.27   -5.67   -4.79   -3.67   -2.22   -0.27    2.41    5.92
+   185.0    0.00   -0.13   -0.48   -1.08   -1.88   -2.86   -3.92   -4.95   -5.79   -6.33   -6.49   -6.25   -5.67   -4.81   -3.70   -2.25   -0.28    2.42    5.88
+   190.0    0.00   -0.13   -0.48   -1.07   -1.88   -2.86   -3.92   -4.94   -5.78   -6.31   -6.45   -6.22   -5.65   -4.81   -3.71   -2.24   -0.23    2.49    5.93
+   195.0    0.00   -0.13   -0.48   -1.08   -1.88   -2.87   -3.93   -4.94   -5.77   -6.29   -6.43   -6.19   -5.62   -4.79   -3.67   -2.19   -0.14    2.62    6.07
+   200.0    0.00   -0.13   -0.48   -1.08   -1.88   -2.87   -3.92   -4.94   -5.76   -6.27   -6.40   -6.16   -5.59   -4.75   -3.62   -2.09   -2.50    2.81    6.28
+   205.0    0.00   -0.13   -0.49   -1.08   -1.88   -2.86   -3.92   -4.93   -5.76   -6.26   -6.38   -6.13   -5.55   -4.69   -3.54   -1.97    0.18    3.06    6.57
+   210.0    0.00   -0.13   -0.49   -1.08   -1.87   -2.86   -3.91   -4.92   -5.75   -6.25   -6.37   -6.11   -5.51   -4.62   -3.43   -1.82    0.38    3.31    6.90
+   215.0    0.00   -0.13   -0.49   -1.07   -1.87   -2.85   -3.91   -4.92   -5.75   -6.26   -6.36   -6.09   -5.46   -4.54   -3.31   -1.65    0.59    3.57    7.24
+   220.0    0.00   -0.13   -0.49   -1.07   -1.87   -2.84   -3.90   -4.92   -5.75   -6.25   -6.36   -6.06   -5.42   -4.45   -3.19   -1.50    0.78    3.82    7.58
+   225.0    0.00   -0.13   -0.50   -1.07   -1.87   -2.84   -3.89   -4.91   -5.75   -6.27   -6.37   -6.05   -5.37   -4.37   -3.07   -1.37    0.94    4.02    7.85
+   230.0    0.00   -0.13   -0.50   -1.07   -1.87   -2.82   -3.88   -4.91   -5.76   -6.27   -6.38   -6.04   -5.32   -4.29   -2.98   -1.27    1.05    4.18    8.09
+   235.0    0.00   -0.13   -0.50   -1.07   -1.87   -2.82   -3.87   -4.91   -5.76   -6.29   -6.37   -6.03   -5.27   -4.23   -2.90   -1.20    1.12    4.25    8.24
+   240.0    0.00   -0.13   -0.50   -1.08   -1.87   -2.81   -3.87   -4.91   -5.77   -6.30   -6.39   -6.01   -5.25   -4.18   -2.86   -1.18    1.12    4.26    8.31
+   245.0    0.00   -0.13   -0.50   -1.09   -1.87   -2.80   -3.86   -4.89   -5.77   -6.30   -6.39   -6.00   -5.23   -4.17   -2.86   -1.19    1.07    4.21    8.29
+   250.0    0.00   -0.14   -0.51   -1.09   -1.86   -2.80   -3.84   -4.89   -5.76   -6.31   -6.39   -6.00   -5.22   -4.17   -2.88   -1.26    0.97    4.10    8.20
+   255.0    0.00   -0.14   -0.51   -1.10   -1.87   -2.80   -3.84   -4.87   -5.76   -6.29   -6.38   -5.99   -5.23   -4.19   -2.94   -1.36    0.83    3.94    8.06
+   260.0    0.00   -0.15   -0.52   -1.10   -1.86   -2.79   -3.83   -4.86   -5.74   -6.28   -6.38   -6.00   -5.25   -4.24   -3.03   -1.49    0.66    3.76    7.88
+   265.0    0.00   -0.15   -0.52   -1.10   -1.87   -2.79   -3.82   -4.85   -5.72   -6.26   -6.36   -6.00   -5.27   -4.30   -3.14   -1.64    0.48    3.56    7.70
+   270.0    0.00   -0.15   -0.53   -1.11   -1.87   -2.79   -3.80   -4.83   -5.69   -6.24   -6.35   -6.00   -5.31   -4.38   -3.24   -1.80    0.30    3.38    7.52
+   275.0    0.00   -0.15   -0.53   -1.11   -1.87   -2.79   -3.80   -4.81   -5.67   -6.22   -6.34   -6.02   -5.35   -4.44   -3.35   -1.93    0.16    3.23    7.38
+   280.0    0.00   -0.15   -0.53   -1.12   -1.88   -2.78   -3.79   -4.79   -5.64   -6.20   -6.33   -6.04   -5.39   -4.51   -3.44   -2.04    0.03    3.12    7.28
+   285.0    0.00   -0.15   -0.53   -1.12   -1.88   -2.78   -3.77   -4.78   -5.63   -6.19   -6.34   -6.05   -5.43   -4.57   -3.51   -2.11   -0.05    3.06    7.26
+   290.0    0.00   -0.15   -0.54   -1.12   -1.88   -2.78   -3.77   -4.76   -5.62   -6.18   -6.34   -6.08   -5.46   -4.60   -3.55   -2.15   -0.07    3.05    7.32
+   295.0    0.00   -0.15   -0.54   -1.12   -1.88   -2.78   -3.76   -4.75   -5.60   -6.17   -6.35   -6.10   -5.48   -4.62   -3.55   -2.13   -0.05    3.10    7.43
+   300.0    0.00   -0.15   -0.54   -1.12   -1.87   -2.77   -3.75   -4.74   -5.60   -6.19   -6.37   -6.11   -5.49   -4.62   -3.52   -2.08    0.03    3.19    7.59
+   305.0    0.00   -0.15   -0.53   -1.12   -1.87   -2.77   -3.75   -4.73   -5.60   -6.19   -6.39   -6.14   -5.50   -4.59   -3.47   -1.99    0.14    3.32    7.80
+   310.0    0.00   -0.15   -0.52   -1.12   -1.87   -2.76   -3.74   -4.73   -5.60   -6.21   -6.41   -6.15   -5.50   -4.57   -3.40   -1.89    0.26    3.48    8.00
+   315.0    0.00   -0.14   -0.52   -1.12   -1.86   -2.76   -3.73   -4.73   -5.61   -6.22   -6.42   -6.17   -5.50   -4.53   -3.33   -1.78    0.39    3.63    8.18
+   320.0    0.00   -0.13   -0.52   -1.10   -1.85   -2.75   -3.72   -4.72   -5.61   -6.23   -6.44   -6.19   -5.51   -4.51   -3.27   -1.68    0.52    3.76    8.32
+   325.0    0.00   -0.13   -0.52   -1.10   -1.85   -2.73   -3.71   -4.72   -5.61   -6.23   -6.45   -6.21   -5.53   -4.51   -3.22   -1.61    0.62    3.85    8.38
+   330.0    0.00   -0.13   -0.51   -1.09   -1.84   -2.73   -3.71   -4.71   -5.60   -6.23   -6.46   -6.22   -5.54   -4.53   -3.21   -1.56    0.69    3.91    8.36
+   335.0    0.00   -0.13   -0.50   -1.08   -1.83   -2.73   -3.70   -4.71   -5.59   -6.21   -6.45   -6.24   -5.58   -4.56   -3.23   -1.55    0.71    3.90    8.25
+   340.0    0.00   -0.13   -0.50   -1.07   -1.82   -2.72   -3.69   -4.70   -5.58   -6.21   -6.45   -6.26   -5.61   -4.61   -3.29   -1.60    0.68    3.83    8.07
+   345.0    0.00   -0.12   -0.49   -1.06   -1.81   -2.71   -3.70   -4.68   -5.57   -6.19   -6.45   -6.27   -5.67   -4.68   -3.38   -1.67    0.61    3.72    7.80
+   350.0    0.00   -0.12   -0.48   -1.05   -1.81   -2.71   -3.71   -4.69   -5.55   -6.17   -6.44   -6.28   -5.70   -4.76   -3.48   -1.77    0.50    3.56    7.48
+   355.0    0.00   -0.12   -0.47   -1.05   -1.80   -2.71   -3.70   -4.69   -5.55   -6.16   -6.43   -6.28   -5.74   -4.84   -3.58   -1.89    0.38    3.39    7.16
+   360.0    0.00   -0.12   -0.46   -1.04   -1.80   -2.72   -3.72   -4.69   -5.55   -6.15   -6.40   -6.28   -5.78   -4.91   -3.67   -2.00    0.25    3.22    6.86
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+JAVRINGANT_DM   JVDM                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               5    27-APR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     4                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+# Number of Calibrated Antennas:           5                COMMENT             
+# Number of Individual GPS-Calibrations:  14                COMMENT             
+# Number of Individual GLO-Calibrations:  10                COMMENT             
+# GLONASS PCV                                               COMMENT             
+#  derived from Delta PCV per 25.0 MHz                      COMMENT             
+#  for frequency channel number k=0                         COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.86      0.73     88.80                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.23   -0.89   -1.93   -3.25   -4.73   -6.19   -7.46   -8.38   -8.86   -8.83   -8.25   -7.07   -5.19   -2.49    1.15    5.70   10.90   16.20
+     0.0    0.00   -0.22   -0.87   -1.89   -3.18   -4.63   -6.07   -7.33   -8.26   -8.73   -8.65   -8.00   -6.76   -4.88   -2.27    1.21    5.60   10.75   16.10
+     5.0    0.00   -0.22   -0.87   -1.89   -3.18   -4.63   -6.08   -7.34   -8.28   -8.74   -8.65   -7.99   -6.74   -4.86   -2.25    1.19    5.55   10.68   16.05
+    10.0    0.00   -0.22   -0.87   -1.89   -3.19   -4.64   -6.09   -7.36   -8.30   -8.75   -8.66   -7.99   -6.73   -4.85   -2.25    1.18    5.51   10.62   16.00
+    15.0    0.00   -0.22   -0.87   -1.89   -3.19   -4.65   -6.11   -7.38   -8.32   -8.77   -8.68   -8.00   -6.74   -4.85   -2.26    1.17    5.49   10.58   15.94
+    20.0    0.00   -0.22   -0.87   -1.89   -3.19   -4.66   -6.12   -7.40   -8.34   -8.79   -8.69   -8.02   -6.75   -4.87   -2.26    1.17    5.50   10.58   15.91
+    25.0    0.00   -0.22   -0.87   -1.89   -3.20   -4.67   -6.14   -7.42   -8.35   -8.80   -8.71   -8.04   -6.78   -4.89   -2.27    1.19    5.54   10.62   15.90
+    30.0    0.00   -0.22   -0.87   -1.89   -3.21   -4.68   -6.15   -7.44   -8.36   -8.82   -8.73   -8.07   -6.82   -4.92   -2.28    1.23    5.62   10.70   15.94
+    35.0    0.00   -0.22   -0.86   -1.89   -3.21   -4.69   -6.17   -7.45   -8.38   -8.83   -8.75   -8.10   -6.86   -4.96   -2.28    1.28    5.73   10.83   16.02
+    40.0    0.00   -0.22   -0.86   -1.89   -3.22   -4.70   -6.18   -7.46   -8.38   -8.84   -8.76   -8.13   -6.90   -5.00   -2.29    1.33    5.85   10.98   16.15
+    45.0    0.00   -0.22   -0.86   -1.89   -3.22   -4.71   -6.19   -7.47   -8.39   -8.85   -8.78   -8.17   -6.95   -5.03   -2.29    1.39    5.97   11.15   16.30
+    50.0    0.00   -0.22   -0.86   -1.89   -3.22   -4.72   -6.20   -7.48   -8.40   -8.86   -8.80   -8.20   -6.99   -5.07   -2.30    1.43    6.08   11.31   16.48
+    55.0    0.00   -0.22   -0.86   -1.89   -3.22   -4.72   -6.20   -7.49   -8.41   -8.88   -8.83   -8.23   -7.03   -5.11   -2.31    1.46    6.16   11.45   16.66
+    60.0    0.00   -0.22   -0.87   -1.90   -3.23   -4.72   -6.21   -7.49   -8.42   -8.89   -8.85   -8.26   -7.07   -5.15   -2.34    1.47    6.21   11.55   16.82
+    65.0    0.00   -0.22   -0.87   -1.90   -3.23   -4.72   -6.21   -7.50   -8.43   -8.91   -8.88   -8.30   -7.11   -5.19   -2.37    1.45    6.22   11.61   16.95
+    70.0    0.00   -0.22   -0.87   -1.90   -3.23   -4.72   -6.21   -7.50   -8.44   -8.93   -8.90   -8.33   -7.15   -5.23   -2.42    1.40    6.19   11.61   17.03
+    75.0    0.00   -0.22   -0.87   -1.90   -3.23   -4.72   -6.21   -7.50   -8.45   -8.95   -8.93   -8.37   -7.19   -5.28   -2.48    1.34    6.12   11.56   17.05
+    80.0    0.00   -0.22   -0.87   -1.90   -3.23   -4.72   -6.20   -7.50   -8.46   -8.96   -8.95   -8.40   -7.24   -5.34   -2.55    1.25    6.02   11.47   17.02
+    85.0    0.00   -0.22   -0.87   -1.90   -3.23   -4.71   -6.20   -7.50   -8.46   -8.97   -8.98   -8.43   -7.28   -5.40   -2.62    1.15    5.90   11.35   16.93
+    90.0    0.00   -0.23   -0.88   -1.91   -3.23   -4.71   -6.19   -7.49   -8.45   -8.97   -8.99   -8.46   -7.32   -5.45   -2.70    1.05    5.78   11.21   16.81
+    95.0    0.00   -0.23   -0.88   -1.91   -3.23   -4.71   -6.19   -7.48   -8.44   -8.97   -9.00   -8.48   -7.36   -5.50   -2.77    0.95    5.65   11.07   16.67
+   100.0    0.00   -0.23   -0.88   -1.92   -3.24   -4.72   -6.18   -7.47   -8.43   -8.96   -9.00   -8.50   -7.39   -5.55   -2.84    0.86    5.53   10.93   16.53
+   105.0    0.00   -0.23   -0.89   -1.92   -3.25   -4.72   -6.18   -7.47   -8.42   -8.95   -8.99   -8.50   -7.40   -5.58   -2.89    0.79    5.44   10.81   16.39
+   110.0    0.00   -0.23   -0.89   -1.93   -3.26   -4.73   -6.19   -7.46   -8.41   -8.93   -8.98   -8.49   -7.40   -5.60   -2.92    0.73    5.36   10.72   16.29
+   115.0    0.00   -0.23   -0.90   -1.94   -3.27   -4.74   -6.20   -7.46   -8.40   -8.92   -8.95   -8.47   -7.39   -5.59   -2.94    0.70    5.31   10.65   16.21
+   120.0    0.00   -0.23   -0.90   -1.95   -3.29   -4.76   -6.21   -7.47   -8.40   -8.90   -8.93   -8.43   -7.35   -5.57   -2.93    0.69    5.28   10.62   16.17
+   125.0    0.00   -0.23   -0.91   -1.96   -3.30   -4.78   -6.23   -7.48   -8.40   -8.88   -8.90   -8.39   -7.31   -5.53   -2.90    0.70    5.28   10.61   16.17
+   130.0    0.00   -0.24   -0.91   -1.97   -3.32   -4.80   -6.25   -7.49   -8.40   -8.87   -8.87   -8.35   -7.25   -5.47   -2.85    0.73    5.30   10.62   16.19
+   135.0    0.00   -0.24   -0.92   -1.98   -3.33   -4.81   -6.26   -7.51   -8.40   -8.86   -8.84   -8.30   -7.19   -5.40   -2.79    0.78    5.33   10.65   16.22
+   140.0    0.00   -0.24   -0.92   -1.99   -3.34   -4.83   -6.28   -7.52   -8.41   -8.86   -8.82   -8.26   -7.13   -5.33   -2.71    0.85    5.38   10.69   16.25
+   145.0    0.00   -0.24   -0.92   -1.99   -3.35   -4.84   -6.29   -7.53   -8.41   -8.86   -8.80   -8.22   -7.07   -5.25   -2.63    0.93    5.45   10.73   16.28
+   150.0    0.00   -0.24   -0.92   -1.99   -3.35   -4.84   -6.29   -7.53   -8.42   -8.85   -8.79   -8.20   -7.03   -5.19   -2.55    1.01    5.51   10.77   16.30
+   155.0    0.00   -0.24   -0.92   -1.99   -3.35   -4.84   -6.28   -7.52   -8.41   -8.85   -8.79   -8.18   -6.99   -5.13   -2.47    1.09    5.58   10.81   16.30
+   160.0    0.00   -0.24   -0.92   -1.99   -3.34   -4.83   -6.27   -7.51   -8.41   -8.85   -8.79   -8.18   -6.97   -5.08   -2.40    1.17    5.65   10.85   16.28
+   165.0    0.00   -0.24   -0.92   -1.99   -3.33   -4.81   -6.25   -7.50   -8.39   -8.85   -8.79   -8.18   -6.96   -5.05   -2.35    1.24    5.71   10.88   16.26
+   170.0    0.00   -0.24   -0.92   -1.98   -3.32   -4.79   -6.23   -7.48   -8.38   -8.84   -8.80   -8.19   -6.96   -5.03   -2.31    1.29    5.77   10.91   16.24
+   175.0    0.00   -0.23   -0.91   -1.97   -3.31   -4.77   -6.21   -7.45   -8.36   -8.83   -8.80   -8.20   -6.97   -5.03   -2.29    1.33    5.81   10.94   16.23
+   180.0    0.00   -0.23   -0.91   -1.96   -3.29   -4.76   -6.19   -7.43   -8.35   -8.83   -8.80   -8.21   -6.98   -5.04   -2.29    1.34    5.84   10.97   16.23
+   185.0    0.00   -0.23   -0.90   -1.95   -3.28   -4.74   -6.17   -7.41   -8.33   -8.82   -8.80   -8.21   -7.00   -5.06   -2.31    1.34    5.86   11.01   16.26
+   190.0    0.00   -0.23   -0.90   -1.95   -3.27   -4.73   -6.16   -7.40   -8.32   -8.81   -8.79   -8.22   -7.01   -5.09   -2.34    1.32    5.87   11.05   16.32
+   195.0    0.00   -0.23   -0.89   -1.94   -3.26   -4.72   -6.15   -7.40   -8.32   -8.80   -8.79   -8.22   -7.02   -5.11   -2.37    1.30    5.87   11.10   16.39
+   200.0    0.00   -0.23   -0.89   -1.93   -3.25   -4.72   -6.16   -7.40   -8.32   -8.80   -8.78   -8.21   -7.03   -5.14   -2.41    1.27    5.88   11.16   16.49
+   205.0    0.00   -0.23   -0.88   -1.92   -3.25   -4.72   -6.16   -7.41   -8.33   -8.80   -8.77   -8.20   -7.03   -5.16   -2.44    1.24    5.89   11.23   16.60
+   210.0    0.00   -0.22   -0.88   -1.92   -3.24   -4.72   -6.17   -7.43   -8.34   -8.80   -8.76   -8.19   -7.04   -5.18   -2.47    1.23    5.92   11.31   16.70
+   215.0    0.00   -0.22   -0.88   -1.91   -3.24   -4.72   -6.19   -7.44   -8.35   -8.80   -8.76   -8.19   -7.04   -5.20   -2.49    1.23    5.97   11.40   16.79
+   220.0    0.00   -0.22   -0.87   -1.91   -3.24   -4.73   -6.20   -7.46   -8.36   -8.80   -8.75   -8.18   -7.04   -5.21   -2.49    1.26    6.03   11.49   16.86
+   225.0    0.00   -0.22   -0.87   -1.91   -3.24   -4.73   -6.21   -7.47   -8.37   -8.81   -8.75   -8.19   -7.05   -5.21   -2.48    1.30    6.11   11.58   16.89
+   230.0    0.00   -0.22   -0.87   -1.91   -3.24   -4.74   -6.21   -7.47   -8.37   -8.81   -8.76   -8.20   -7.07   -5.22   -2.46    1.36    6.20   11.66   16.88
+   235.0    0.00   -0.22   -0.87   -1.90   -3.24   -4.74   -6.21   -7.47   -8.37   -8.81   -8.77   -8.21   -7.08   -5.22   -2.44    1.42    6.29   11.72   16.84
+   240.0    0.00   -0.22   -0.87   -1.90   -3.24   -4.73   -6.20   -7.47   -8.36   -8.82   -8.78   -8.24   -7.10   -5.23   -2.41    1.49    6.36   11.75   16.76
+   245.0    0.00   -0.22   -0.87   -1.90   -3.24   -4.73   -6.20   -7.46   -8.36   -8.82   -8.80   -8.26   -7.13   -5.23   -2.38    1.54    6.41   11.74   16.65
+   250.0    0.00   -0.22   -0.87   -1.90   -3.23   -4.72   -6.19   -7.45   -8.36   -8.83   -8.82   -8.29   -7.15   -5.24   -2.36    1.58    6.42   11.69   16.51
+   255.0    0.00   -0.22   -0.87   -1.90   -3.23   -4.72   -6.18   -7.44   -8.35   -8.84   -8.84   -8.32   -7.17   -5.24   -2.35    1.58    6.39   11.59   16.36
+   260.0    0.00   -0.22   -0.87   -1.90   -3.23   -4.72   -6.18   -7.44   -8.36   -8.85   -8.86   -8.34   -7.19   -5.25   -2.36    1.55    6.31   11.44   16.19
+   265.0    0.00   -0.22   -0.87   -1.91   -3.24   -4.72   -6.18   -7.44   -8.37   -8.87   -8.88   -8.36   -7.20   -5.26   -2.39    1.48    6.17   11.26   16.02
+   270.0    0.00   -0.22   -0.87   -1.91   -3.24   -4.73   -6.19   -7.45   -8.39   -8.89   -8.90   -8.38   -7.21   -5.28   -2.43    1.37    5.99   11.03   15.86
+   275.0    0.00   -0.22   -0.87   -1.91   -3.25   -4.73   -6.20   -7.47   -8.41   -8.91   -8.92   -8.38   -7.21   -5.29   -2.49    1.25    5.79   10.79   15.71
+   280.0    0.00   -0.22   -0.88   -1.92   -3.25   -4.74   -6.21   -7.49   -8.43   -8.94   -8.94   -8.39   -7.21   -5.31   -2.55    1.11    5.57   10.56   15.57
+   285.0    0.00   -0.22   -0.88   -1.92   -3.26   -4.75   -6.23   -7.51   -8.46   -8.96   -8.95   -8.39   -7.21   -5.32   -2.62    0.96    5.36   10.34   15.46
+   290.0    0.00   -0.22   -0.88   -1.93   -3.27   -4.76   -6.24   -7.53   -8.48   -8.97   -8.96   -8.38   -7.21   -5.34   -2.68    0.84    5.18   10.15   15.37
+   295.0    0.00   -0.22   -0.88   -1.93   -3.27   -4.77   -6.25   -7.55   -8.49   -8.98   -8.96   -8.38   -7.20   -5.35   -2.74    0.73    5.04   10.02   15.31
+   300.0    0.00   -0.22   -0.88   -1.93   -3.28   -4.77   -6.26   -7.55   -8.49   -8.98   -8.95   -8.37   -7.19   -5.36   -2.77    0.66    4.96    9.95   15.28
+   305.0    0.00   -0.22   -0.88   -1.93   -3.28   -4.77   -6.25   -7.54   -8.49   -8.97   -8.93   -8.35   -7.18   -5.37   -2.79    0.64    4.94    9.95   15.29
+   310.0    0.00   -0.22   -0.89   -1.93   -3.27   -4.76   -6.24   -7.53   -8.47   -8.95   -8.91   -8.33   -7.17   -5.36   -2.79    0.65    4.97   10.00   15.33
+   315.0    0.00   -0.22   -0.89   -1.93   -3.27   -4.75   -6.22   -7.50   -8.44   -8.92   -8.89   -8.31   -7.15   -5.34   -2.76    0.70    5.05   10.11   15.41
+   320.0    0.00   -0.22   -0.89   -1.93   -3.26   -4.73   -6.20   -7.47   -8.40   -8.88   -8.85   -8.28   -7.13   -5.31   -2.71    0.78    5.17   10.25   15.51
+   325.0    0.00   -0.22   -0.88   -1.92   -3.25   -4.71   -6.17   -7.43   -8.36   -8.85   -8.82   -8.25   -7.09   -5.27   -2.65    0.87    5.30   10.41   15.63
+   330.0    0.00   -0.22   -0.88   -1.92   -3.23   -4.69   -6.14   -7.40   -8.32   -8.81   -8.78   -8.21   -7.05   -5.22   -2.58    0.97    5.43   10.57   15.75
+   335.0    0.00   -0.22   -0.88   -1.91   -3.22   -4.67   -6.11   -7.37   -8.29   -8.77   -8.75   -8.17   -7.00   -5.16   -2.51    1.06    5.54   10.70   15.88
+   340.0    0.00   -0.22   -0.88   -1.91   -3.21   -4.66   -6.09   -7.34   -8.27   -8.75   -8.72   -8.13   -6.95   -5.09   -2.44    1.13    5.63   10.79   15.98
+   345.0    0.00   -0.22   -0.88   -1.90   -3.20   -4.64   -6.07   -7.32   -8.25   -8.73   -8.69   -8.09   -6.90   -5.03   -2.38    1.18    5.67   10.84   16.06
+   350.0    0.00   -0.22   -0.88   -1.90   -3.19   -4.63   -6.06   -7.32   -8.24   -8.72   -8.67   -8.06   -6.84   -4.97   -2.33    1.21    5.67   10.85   16.11
+   355.0    0.00   -0.22   -0.87   -1.89   -3.19   -4.63   -6.06   -7.32   -8.25   -8.72   -8.66   -8.03   -6.80   -4.92   -2.29    1.22    5.65   10.81   16.12
+   360.0    0.00   -0.22   -0.87   -1.89   -3.18   -4.63   -6.07   -7.33   -8.26   -8.73   -8.65   -8.00   -6.76   -4.88   -2.27    1.21    5.60   10.75   16.10
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.03     -0.25    118.49                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.11   -0.44   -0.94   -1.59   -2.33   -3.09   -3.81   -4.39   -4.73   -4.75   -4.42   -3.77   -2.83   -1.58    0.10    2.47    5.83   10.26
+     0.0    0.00   -0.09   -0.40   -0.89   -1.52   -2.25   -3.03   -3.77   -4.40   -4.79   -4.87   -4.63   -4.05   -3.18   -1.97   -0.27    2.14    5.47    9.71
+     5.0    0.00   -0.09   -0.40   -0.88   -1.51   -2.24   -3.02   -3.77   -4.39   -4.78   -4.87   -4.62   -4.06   -3.21   -2.03   -0.36    2.03    5.38    9.68
+    10.0    0.00   -0.09   -0.39   -0.88   -1.50   -2.23   -3.01   -3.76   -4.37   -4.76   -4.85   -4.61   -4.06   -3.22   -2.05   -0.41    1.97    5.33    9.73
+    15.0    0.00   -0.09   -0.39   -0.87   -1.50   -2.23   -3.01   -3.75   -4.36   -4.74   -4.82   -4.57   -4.03   -3.20   -2.05   -0.42    1.96    5.35    9.84
+    20.0    0.00   -0.09   -0.39   -0.87   -1.50   -2.23   -3.01   -3.74   -4.34   -4.71   -4.78   -4.53   -3.98   -3.16   -2.02   -0.39    1.99    5.42   10.00
+    25.0    0.00   -0.09   -0.39   -0.87   -1.50   -2.23   -3.01   -3.74   -4.33   -4.68   -4.74   -4.47   -3.92   -3.09   -1.96   -0.33    2.06    5.53   10.19
+    30.0    0.00   -0.09   -0.39   -0.87   -1.50   -2.24   -3.01   -3.74   -4.32   -4.66   -4.69   -4.41   -3.84   -3.02   -1.87   -0.24    2.17    5.67   10.40
+    35.0    0.00   -0.10   -0.39   -0.87   -1.51   -2.25   -3.02   -3.74   -4.31   -4.63   -4.64   -4.34   -3.76   -2.93   -1.78   -0.14    2.30    5.83   10.60
+    40.0    0.00   -0.10   -0.40   -0.88   -1.52   -2.26   -3.03   -3.75   -4.31   -4.61   -4.60   -4.28   -3.69   -2.84   -1.68   -0.02    2.43    5.98   10.76
+    45.0    0.00   -0.10   -0.40   -0.88   -1.52   -2.27   -3.05   -3.76   -4.31   -4.59   -4.57   -4.23   -3.62   -2.76   -1.59    0.09    2.56    6.12   10.87
+    50.0    0.00   -0.10   -0.40   -0.89   -1.53   -2.28   -3.06   -3.77   -4.31   -4.58   -4.54   -4.19   -3.57   -2.69   -1.50    0.18    2.67    6.22   10.91
+    55.0    0.00   -0.10   -0.41   -0.90   -1.54   -2.29   -3.07   -3.78   -4.31   -4.58   -4.53   -4.17   -3.53   -2.64   -1.44    0.26    2.75    6.28   10.88
+    60.0    0.00   -0.10   -0.41   -0.91   -1.55   -2.30   -3.08   -3.79   -4.32   -4.58   -4.53   -4.16   -3.51   -2.61   -1.40    0.31    2.79    6.28   10.78
+    65.0    0.00   -0.11   -0.42   -0.91   -1.56   -2.31   -3.08   -3.79   -4.32   -4.59   -4.53   -4.16   -3.51   -2.60   -1.38    0.33    2.80    6.25   10.62
+    70.0    0.00   -0.11   -0.42   -0.92   -1.57   -2.32   -3.09   -3.79   -4.33   -4.60   -4.55   -4.18   -3.52   -2.61   -1.39    0.32    2.77    6.17   10.43
+    75.0    0.00   -0.11   -0.43   -0.93   -1.58   -2.32   -3.09   -3.80   -4.34   -4.61   -4.57   -4.20   -3.54   -2.63   -1.41    0.29    2.72    6.06   10.23
+    80.0    0.00   -0.12   -0.44   -0.94   -1.59   -2.33   -3.09   -3.80   -4.34   -4.63   -4.59   -4.23   -3.57   -2.66   -1.44    0.24    2.64    5.94   10.05
+    85.0    0.00   -0.12   -0.45   -0.95   -1.60   -2.33   -3.10   -3.80   -4.35   -4.65   -4.62   -4.26   -3.60   -2.68   -1.47    0.19    2.55    5.83    9.90
+    90.0    0.00   -0.12   -0.45   -0.96   -1.61   -2.34   -3.10   -3.81   -4.37   -4.67   -4.65   -4.28   -3.62   -2.71   -1.51    0.13    2.47    5.73    9.82
+    95.0    0.00   -0.12   -0.46   -0.97   -1.62   -2.35   -3.11   -3.82   -4.39   -4.69   -4.67   -4.31   -3.64   -2.72   -1.53    0.08    2.39    5.65    9.80
+   100.0    0.00   -0.13   -0.47   -0.98   -1.63   -2.36   -3.12   -3.84   -4.41   -4.72   -4.70   -4.33   -3.65   -2.72   -1.54    0.05    2.34    5.62    9.86
+   105.0    0.00   -0.13   -0.47   -0.99   -1.65   -2.38   -3.14   -3.86   -4.43   -4.75   -4.72   -4.34   -3.65   -2.72   -1.54    0.03    2.32    5.62    9.97
+   110.0    0.00   -0.13   -0.48   -1.01   -1.66   -2.40   -3.16   -3.88   -4.46   -4.77   -4.74   -4.35   -3.64   -2.70   -1.52    0.04    2.32    5.66   10.12
+   115.0    0.00   -0.13   -0.49   -1.02   -1.68   -2.42   -3.19   -3.91   -4.49   -4.80   -4.77   -4.36   -3.64   -2.68   -1.50    0.07    2.36    5.73   10.28
+   120.0    0.00   -0.14   -0.49   -1.03   -1.69   -2.44   -3.21   -3.94   -4.51   -4.83   -4.79   -4.37   -3.64   -2.66   -1.46    0.12    2.41    5.81   10.43
+   125.0    0.00   -0.14   -0.50   -1.04   -1.71   -2.46   -3.23   -3.96   -4.54   -4.85   -4.81   -4.39   -3.64   -2.65   -1.43    0.17    2.48    5.89   10.54
+   130.0    0.00   -0.14   -0.50   -1.05   -1.72   -2.47   -3.25   -3.98   -4.56   -4.88   -4.84   -4.41   -3.66   -2.64   -1.39    0.23    2.56    5.96   10.58
+   135.0    0.00   -0.14   -0.51   -1.05   -1.73   -2.49   -3.27   -3.99   -4.57   -4.89   -4.86   -4.44   -3.68   -2.65   -1.37    0.29    2.62    5.99   10.54
+   140.0    0.00   -0.14   -0.51   -1.06   -1.74   -2.50   -3.28   -4.00   -4.58   -4.91   -4.88   -4.48   -3.72   -2.67   -1.36    0.32    2.66    5.98   10.43
+   145.0    0.00   -0.14   -0.51   -1.06   -1.75   -2.50   -3.28   -4.00   -4.58   -4.91   -4.91   -4.52   -3.77   -2.71   -1.38    0.34    2.67    5.93   10.25
+   150.0    0.00   -0.14   -0.51   -1.06   -1.75   -2.50   -3.28   -4.00   -4.58   -4.92   -4.93   -4.56   -3.82   -2.76   -1.41    0.32    2.64    5.84   10.01
+   155.0    0.00   -0.14   -0.51   -1.06   -1.74   -2.50   -3.27   -3.99   -4.57   -4.91   -4.94   -4.59   -3.87   -2.82   -1.46    0.28    2.58    5.70    9.76
+   160.0    0.00   -0.14   -0.50   -1.06   -1.74   -2.49   -3.26   -3.97   -4.55   -4.91   -4.95   -4.62   -3.93   -2.89   -1.53    0.21    2.49    5.54    9.51
+   165.0    0.00   -0.14   -0.50   -1.05   -1.73   -2.48   -3.24   -3.95   -4.53   -4.89   -4.95   -4.65   -3.97   -2.95   -1.61    0.11    2.37    5.38    9.29
+   170.0    0.00   -0.14   -0.50   -1.04   -1.72   -2.46   -3.23   -3.93   -4.51   -4.88   -4.95   -4.66   -4.01   -3.01   -1.68    0.01    2.24    5.23    9.15
+   175.0    0.00   -0.14   -0.49   -1.03   -1.70   -2.45   -3.21   -3.92   -4.50   -4.86   -4.94   -4.66   -4.03   -3.05   -1.75   -0.08    2.12    5.11    9.08
+   180.0    0.00   -0.13   -0.48   -1.02   -1.69   -2.43   -3.19   -3.90   -4.48   -4.85   -4.92   -4.65   -4.03   -3.07   -1.81   -0.16    2.03    5.04    9.11
+   185.0    0.00   -0.13   -0.48   -1.01   -1.67   -2.42   -3.18   -3.89   -4.47   -4.83   -4.90   -4.63   -4.02   -3.08   -1.83   -0.21    1.98    5.03    9.24
+   190.0    0.00   -0.13   -0.47   -0.99   -1.66   -2.40   -3.17   -3.88   -4.46   -4.82   -4.88   -4.60   -3.99   -3.06   -1.83   -0.22    1.98    5.10    9.44
+   195.0    0.00   -0.13   -0.46   -0.98   -1.64   -2.39   -3.15   -3.87   -4.45   -4.80   -4.86   -4.57   -3.95   -3.02   -1.80   -0.19    2.04    5.22    9.69
+   200.0    0.00   -0.12   -0.45   -0.97   -1.63   -2.37   -3.14   -3.86   -4.44   -4.79   -4.83   -4.53   -3.90   -2.97   -1.74   -0.11    2.15    5.41    9.98
+   205.0    0.00   -0.12   -0.45   -0.96   -1.61   -2.36   -3.14   -3.86   -4.43   -4.77   -4.80   -4.49   -3.84   -2.90   -1.65    0.01    2.32    5.63   10.27
+   210.0    0.00   -0.12   -0.44   -0.95   -1.60   -2.35   -3.13   -3.85   -4.43   -4.76   -4.78   -4.45   -3.78   -2.82   -1.54    0.16    2.52    5.88   10.52
+   215.0    0.00   -0.12   -0.44   -0.94   -1.59   -2.34   -3.12   -3.84   -4.42   -4.74   -4.75   -4.41   -3.73   -2.74   -1.42    0.32    2.73    6.12   10.72
+   220.0    0.00   -0.11   -0.43   -0.93   -1.58   -2.33   -3.11   -3.84   -4.41   -4.73   -4.73   -4.38   -3.68   -2.67   -1.31    0.48    2.94    6.34   10.86
+   225.0    0.00   -0.11   -0.43   -0.93   -1.58   -2.33   -3.11   -3.83   -4.40   -4.72   -4.72   -4.36   -3.65   -2.60   -1.22    0.62    3.12    6.51   10.92
+   230.0    0.00   -0.11   -0.42   -0.92   -1.57   -2.32   -3.10   -3.82   -4.39   -4.71   -4.70   -4.34   -3.62   -2.56   -1.15    0.73    3.25    6.61   10.90
+   235.0    0.00   -0.11   -0.42   -0.92   -1.57   -2.32   -3.10   -3.82   -4.39   -4.70   -4.69   -4.33   -3.61   -2.54   -1.11    0.78    3.31    6.64   10.82
+   240.0    0.00   -0.11   -0.42   -0.92   -1.57   -2.32   -3.10   -3.82   -4.38   -4.70   -4.69   -4.33   -3.61   -2.54   -1.11    0.78    3.29    6.60   10.70
+   245.0    0.00   -0.11   -0.42   -0.92   -1.57   -2.32   -3.09   -3.81   -4.38   -4.70   -4.69   -4.33   -3.62   -2.56   -1.15    0.71    3.20    6.49   10.55
+   250.0    0.00   -0.11   -0.42   -0.92   -1.57   -2.32   -3.09   -3.81   -4.38   -4.70   -4.70   -4.34   -3.64   -2.61   -1.23    0.60    3.05    6.32   10.41
+   255.0    0.00   -0.10   -0.42   -0.92   -1.58   -2.32   -3.10   -3.81   -4.38   -4.70   -4.71   -4.36   -3.67   -2.67   -1.33    0.44    2.85    6.12   10.28
+   260.0    0.00   -0.10   -0.42   -0.93   -1.58   -2.32   -3.10   -3.81   -4.38   -4.71   -4.72   -4.38   -3.71   -2.74   -1.46    0.26    2.63    5.91   10.19
+   265.0    0.00   -0.10   -0.42   -0.93   -1.58   -2.33   -3.10   -3.82   -4.39   -4.72   -4.74   -4.41   -3.75   -2.81   -1.58    0.07    2.40    5.72   10.15
+   270.0    0.00   -0.10   -0.43   -0.94   -1.59   -2.33   -3.10   -3.81   -4.39   -4.73   -4.75   -4.43   -3.79   -2.88   -1.70   -0.11    2.19    5.55   10.17
+   275.0    0.00   -0.10   -0.43   -0.94   -1.59   -2.33   -3.09   -3.81   -4.39   -4.74   -4.77   -4.45   -3.83   -2.94   -1.80   -0.25    2.03    5.44   10.24
+   280.0    0.00   -0.10   -0.43   -0.94   -1.59   -2.33   -3.09   -3.81   -4.39   -4.74   -4.78   -4.47   -3.86   -2.99   -1.87   -0.34    1.93    5.40   10.35
+   285.0    0.00   -0.10   -0.43   -0.94   -1.60   -2.33   -3.09   -3.80   -4.39   -4.74   -4.79   -4.49   -3.87   -3.01   -1.90   -0.38    1.90    5.42   10.49
+   290.0    0.00   -0.10   -0.43   -0.95   -1.60   -2.33   -3.08   -3.79   -4.38   -4.74   -4.79   -4.50   -3.88   -3.02   -1.90   -0.37    1.93    5.50   10.65
+   295.0    0.00   -0.10   -0.43   -0.95   -1.60   -2.32   -3.07   -3.78   -4.37   -4.74   -4.79   -4.50   -3.88   -3.01   -1.87   -0.31    2.03    5.63   10.81
+   300.0    0.00   -0.10   -0.43   -0.95   -1.60   -2.32   -3.07   -3.78   -4.37   -4.73   -4.79   -4.50   -3.88   -2.98   -1.81   -0.21    2.17    5.79   10.95
+   305.0    0.00   -0.10   -0.43   -0.95   -1.59   -2.32   -3.06   -3.77   -4.36   -4.73   -4.79   -4.49   -3.86   -2.94   -1.74   -0.09    2.33    5.96   11.05
+   310.0    0.00   -0.10   -0.43   -0.95   -1.59   -2.31   -3.06   -3.77   -4.36   -4.73   -4.79   -4.49   -3.85   -2.91   -1.66    0.04    2.50    6.12   11.10
+   315.0    0.00   -0.10   -0.43   -0.94   -1.59   -2.31   -3.05   -3.76   -4.35   -4.73   -4.79   -4.49   -3.84   -2.88   -1.59    0.15    2.65    6.25   11.09
+   320.0    0.00   -0.10   -0.43   -0.94   -1.58   -2.30   -3.05   -3.77   -4.36   -4.73   -4.79   -4.49   -3.83   -2.86   -1.54    0.24    2.77    6.34   11.03
+   325.0    0.00   -0.10   -0.43   -0.93   -1.58   -2.30   -3.05   -3.77   -4.36   -4.74   -4.79   -4.49   -3.84   -2.85   -1.52    0.29    2.83    6.36   10.92
+   330.0    0.00   -0.10   -0.42   -0.93   -1.57   -2.30   -3.05   -3.77   -4.37   -4.75   -4.81   -4.51   -3.85   -2.87   -1.53    0.29    2.84    6.33   10.75
+   335.0    0.00   -0.10   -0.42   -0.92   -1.56   -2.29   -3.05   -3.78   -4.38   -4.76   -4.82   -4.52   -3.88   -2.90   -1.56    0.26    2.79    6.24   10.56
+   340.0    0.00   -0.10   -0.41   -0.92   -1.55   -2.28   -3.05   -3.78   -4.39   -4.77   -4.84   -4.55   -3.91   -2.95   -1.63    0.18    2.70    6.11   10.34
+   345.0    0.00   -0.10   -0.41   -0.91   -1.55   -2.28   -3.05   -3.79   -4.40   -4.78   -4.85   -4.57   -3.95   -3.01   -1.71    0.08    2.57    5.95   10.13
+   350.0    0.00   -0.10   -0.41   -0.90   -1.54   -2.27   -3.04   -3.78   -4.40   -4.79   -4.87   -4.60   -3.99   -3.07   -1.80   -0.04    2.42    5.77    9.95
+   355.0    0.00   -0.09   -0.40   -0.89   -1.53   -2.26   -3.03   -3.78   -4.40   -4.79   -4.87   -4.62   -4.03   -3.13   -1.89   -0.17    2.27    5.61    9.80
+   360.0    0.00   -0.09   -0.40   -0.89   -1.52   -2.25   -3.03   -3.77   -4.40   -4.79   -4.87   -4.63   -4.05   -3.18   -1.97   -0.27    2.14    5.47    9.71
+   G02                                                      END OF FREQUENCY    
+   R01                                                      START OF FREQUENCY  
+      0.86      0.73     88.80                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.22   -0.87   -1.90   -3.23   -4.76   -6.33   -7.73   -8.78   -9.38   -9.41   -8.86   -7.67   -5.80   -3.18    0.30    4.67    9.80   15.33
+     0.0    0.00   -0.17   -0.77   -1.78   -3.12   -4.68   -6.30   -7.74   -8.83   -9.39   -9.33   -8.65   -7.38   -5.52   -3.01    0.32    4.59    9.78   15.50
+     5.0    0.00   -0.18   -0.78   -1.78   -3.12   -4.67   -6.28   -7.72   -8.82   -9.39   -9.35   -8.69   -7.43   -5.58   -3.06    0.25    4.52    9.69   15.34
+    10.0    0.00   -0.19   -0.80   -1.79   -3.13   -4.67   -6.27   -7.72   -8.82   -9.40   -9.38   -8.74   -7.51   -5.66   -3.13    0.20    4.47    9.61   15.21
+    15.0    0.00   -0.19   -0.81   -1.80   -3.13   -4.67   -6.27   -7.71   -8.82   -9.42   -9.42   -8.81   -7.59   -5.74   -3.21    0.15    4.42    9.54   15.11
+    20.0    0.00   -0.20   -0.82   -1.82   -3.14   -4.68   -6.27   -7.71   -8.83   -9.44   -9.47   -8.88   -7.66   -5.83   -3.27    0.10    4.38    9.51   15.07
+    25.0    0.00   -0.20   -0.83   -1.84   -3.16   -4.70   -6.29   -7.73   -8.83   -9.46   -9.51   -8.93   -7.75   -5.91   -3.34    0.04    4.35    9.50   15.08
+    30.0    0.00   -0.21   -0.84   -1.85   -3.19   -4.72   -6.31   -7.75   -8.85   -9.48   -9.54   -8.99   -7.82   -5.98   -3.42    0.01    4.34    9.52   15.16
+    35.0    0.00   -0.22   -0.85   -1.87   -3.21   -4.75   -6.34   -7.77   -8.88   -9.50   -9.57   -9.04   -7.87   -6.04   -3.47   -0.03    4.36    9.59   15.30
+    40.0    0.00   -0.22   -0.86   -1.89   -3.25   -4.80   -6.38   -7.80   -8.89   -9.52   -9.59   -9.05   -7.91   -6.11   -3.52   -0.06    4.37    9.67   15.49
+    45.0    0.00   -0.23   -0.88   -1.92   -3.28   -4.84   -6.41   -7.84   -8.92   -9.54   -9.60   -9.08   -7.95   -6.14   -3.56   -0.07    4.41    9.78   15.69
+    50.0    0.00   -0.24   -0.89   -1.94   -3.32   -4.88   -6.47   -7.87   -8.95   -9.55   -9.61   -9.09   -7.96   -6.17   -3.59   -0.08    4.44    9.90   15.91
+    55.0    0.00   -0.24   -0.91   -1.96   -3.34   -4.91   -6.50   -7.92   -8.97   -9.56   -9.61   -9.08   -7.97   -6.18   -3.60   -0.08    4.48   10.00   16.10
+    60.0    0.00   -0.25   -0.93   -2.00   -3.38   -4.94   -6.53   -7.94   -8.98   -9.56   -9.60   -9.08   -7.96   -6.19   -3.61   -0.06    4.53   10.09   16.24
+    65.0    0.00   -0.26   -0.94   -2.02   -3.40   -4.96   -6.55   -7.95   -8.99   -9.56   -9.59   -9.07   -7.96   -6.19   -3.59   -0.04    4.57   10.16   16.31
+    70.0    0.00   -0.26   -0.96   -2.04   -3.42   -4.99   -6.56   -7.95   -8.98   -9.55   -9.58   -9.05   -7.95   -6.18   -3.59   -0.02    4.61   10.19   16.31
+    75.0    0.00   -0.27   -0.97   -2.05   -3.43   -5.00   -6.56   -7.94   -8.97   -9.53   -9.57   -9.05   -7.94   -6.17   -3.58   -1.34    4.62   10.17   16.21
+    80.0    0.00   -0.27   -0.98   -2.06   -3.44   -4.99   -6.54   -7.91   -8.95   -9.50   -9.55   -9.04   -7.95   -6.17   -3.57    0.02    4.63   10.11   16.05
+    85.0    0.00   -0.28   -0.99   -2.06   -3.43   -4.97   -6.52   -7.88   -8.91   -9.48   -9.53   -9.04   -7.95   -6.17   -3.56    0.02    4.60   10.02   15.82
+    90.0    0.00   -0.29   -1.00   -2.07   -3.42   -4.94   -6.47   -7.83   -8.85   -9.44   -9.51   -9.03   -7.95   -6.16   -3.55    0.02    4.57    9.89   15.58
+    95.0    0.00   -0.29   -1.00   -2.06   -3.41   -4.91   -6.42   -7.78   -8.80   -9.41   -9.50   -9.03   -7.96   -6.16   -3.55   -0.95    4.50    9.76   15.33
+   100.0    0.00   -0.29   -1.00   -2.06   -3.39   -4.88   -6.37   -7.71   -8.75   -9.36   -9.48   -9.03   -7.95   -6.16   -3.54   -0.01    4.43    9.62   15.12
+   105.0    0.00   -0.29   -1.01   -2.05   -3.38   -4.84   -6.32   -7.66   -8.71   -9.33   -9.46   -9.02   -7.94   -6.15   -3.54   -0.03    4.38    9.50   14.94
+   110.0    0.00   -0.29   -1.00   -2.05   -3.36   -4.80   -6.28   -7.60   -8.65   -9.29   -9.44   -9.00   -7.93   -6.14   -3.54   -0.06    4.32    9.42   14.85
+   115.0    0.00   -0.29   -1.01   -2.05   -3.33   -4.77   -6.23   -7.56   -8.60   -9.26   -9.41   -8.98   -7.91   -6.11   -3.52   -0.05    4.30    9.37   14.84
+   120.0    0.00   -0.29   -1.00   -2.04   -3.33   -4.75   -6.20   -7.51   -8.57   -9.22   -9.38   -8.94   -7.86   -6.07   -3.48   -0.03    4.30    9.40   14.92
+   125.0    0.00   -0.29   -1.01   -2.03   -3.31   -4.74   -6.18   -7.48   -8.54   -9.18   -9.34   -8.89   -7.81   -6.02   -3.43    0.02    4.36    9.47   15.06
+   130.0    0.00   -0.30   -1.00   -2.02   -3.31   -4.73   -6.15   -7.46   -8.51   -9.15   -9.28   -8.84   -7.74   -5.94   -3.35    0.09    4.45    9.60   15.25
+   135.0    0.00   -0.30   -0.99   -2.02   -3.30   -4.71   -6.14   -7.45   -8.47   -9.10   -9.23   -8.77   -7.67   -5.85   -3.26    0.21    4.58    9.77   15.47
+   140.0    0.00   -0.29   -0.99   -2.02   -3.30   -4.71   -6.14   -7.43   -8.46   -9.08   -9.18   -8.71   -7.58   -5.76   -3.14    0.34    4.73    9.96   15.65
+   145.0    0.00   -0.29   -0.98   -2.01   -3.30   -4.71   -6.14   -7.43   -8.44   -9.05   -9.13   -8.62   -7.48   -5.64   -3.01    0.49    4.92   10.13   15.81
+   150.0    0.00   -0.29   -0.97   -2.00   -3.30   -4.72   -6.15   -7.43   -8.44   -9.01   -9.09   -8.56   -7.41   -5.55   -2.89    0.64    5.07   10.29   15.91
+   155.0    0.00   -0.28   -0.97   -2.00   -3.30   -4.72   -6.15   -7.43   -8.43   -8.99   -9.05   -8.50   -7.33   -5.45   -2.78    0.77    5.22   10.41   15.91
+   160.0    0.00   -0.28   -0.96   -1.99   -3.29   -4.72   -6.16   -7.45   -8.43   -8.98   -9.01   -8.46   -7.26   -5.37   -2.68    0.88    5.32   10.47   15.81
+   165.0    0.00   -0.27   -0.95   -1.99   -3.28   -4.72   -6.16   -7.46   -8.43   -8.98   -8.99   -8.42   -7.22   -5.31   -2.61    0.95    5.37   10.44   15.65
+   170.0    0.00   -0.27   -0.94   -1.97   -3.27   -4.72   -6.17   -7.47   -8.44   -8.98   -8.99   -8.40   -7.18   -5.26   -2.58    0.97    5.37   10.36   15.42
+   175.0    0.00   -0.26   -0.93   -1.96   -3.26   -4.71   -6.18   -7.47   -8.46   -8.98   -8.99   -8.41   -7.18   -5.26   -2.58    0.96    5.30   10.22   15.16
+   180.0    0.00   -0.25   -0.92   -1.94   -3.24   -4.71   -6.18   -7.48   -8.48   -9.01   -9.01   -8.43   -7.20   -5.30   -2.62    0.87    5.18   10.03   14.87
+   185.0    0.00   -0.25   -0.90   -1.92   -3.23   -4.69   -6.17   -7.48   -8.49   -9.04   -9.06   -8.47   -7.26   -5.36   -2.70    0.77    5.02    9.83   14.61
+   190.0    0.00   -0.24   -0.89   -1.91   -3.21   -4.68   -6.17   -7.50   -8.52   -9.09   -9.10   -8.53   -7.32   -5.44   -2.82    0.62    4.85    9.64   14.42
+   195.0    0.00   -0.23   -0.87   -1.89   -3.19   -4.66   -6.16   -7.52   -8.55   -9.13   -9.16   -8.60   -7.39   -5.52   -2.92    0.48    4.68    9.46   14.27
+   200.0    0.00   -0.23   -0.86   -1.87   -3.15   -4.65   -6.16   -7.53   -8.59   -9.18   -9.23   -8.68   -7.49   -5.63   -3.05    0.35    4.54    9.34   14.24
+   205.0    0.00   -0.22   -0.84   -1.83   -3.14   -4.63   -6.15   -7.54   -8.62   -9.24   -9.29   -8.74   -7.56   -5.72   -3.14    0.23    4.43    9.27   14.27
+   210.0    0.00   -0.21   -0.84   -1.82   -3.11   -4.61   -6.15   -7.56   -8.65   -9.29   -9.36   -8.82   -7.65   -5.81   -3.24    0.16    4.38    9.28   14.38
+   215.0    0.00   -0.20   -0.83   -1.80   -3.10   -4.60   -6.16   -7.57   -8.68   -9.32   -9.42   -8.88   -7.71   -5.87   -3.29    0.11    4.39    9.35   14.56
+   220.0    0.00   -0.20   -0.81   -1.79   -3.09   -4.60   -6.17   -7.60   -8.71   -9.36   -9.45   -8.92   -7.75   -5.91   -3.31    0.13    4.44    9.47   14.75
+   225.0    0.00   -0.19   -0.80   -1.79   -3.09   -4.60   -6.18   -7.62   -8.74   -9.39   -9.48   -8.96   -7.77   -5.91   -3.30    0.17    4.53    9.61   14.95
+   230.0    0.00   -0.19   -0.80   -1.78   -3.09   -4.61   -6.19   -7.63   -8.76   -9.42   -9.50   -8.97   -7.79   -5.91   -3.26    0.25    4.65    9.76   15.14
+   235.0    0.00   -0.19   -0.78   -1.77   -3.09   -4.62   -6.21   -7.66   -8.78   -9.43   -9.50   -8.95   -7.77   -5.88   -3.22    0.32    4.76    9.89   15.27
+   240.0    0.00   -0.18   -0.78   -1.77   -3.10   -4.63   -6.23   -7.69   -8.80   -9.45   -9.50   -8.95   -7.74   -5.85   -3.15    0.42    4.85    9.99   15.32
+   245.0    0.00   -0.18   -0.77   -1.77   -3.11   -4.67   -6.26   -7.72   -8.83   -9.45   -9.50   -8.93   -7.71   -5.80   -3.09    0.48    4.92   10.03   15.32
+   250.0    0.00   -0.17   -0.77   -1.77   -3.12   -4.69   -6.30   -7.75   -8.85   -9.46   -9.49   -8.91   -7.68   -5.76   -3.05    0.53    4.95   10.01   15.24
+   255.0    0.00   -0.17   -0.77   -1.78   -3.13   -4.72   -6.33   -7.78   -8.86   -9.47   -9.48   -8.89   -7.66   -5.73   -3.02    0.54    4.93    9.94   15.11
+   260.0    0.00   -0.17   -0.77   -1.78   -3.16   -4.74   -6.36   -7.81   -8.89   -9.48   -9.48   -8.87   -7.64   -5.72   -3.02    0.52    4.87    9.82   14.92
+   265.0    0.00   -0.17   -0.76   -1.80   -3.18   -4.76   -6.39   -7.83   -8.91   -9.49   -9.49   -8.87   -7.64   -5.72   -3.04    0.47    4.78    9.68   14.72
+   270.0    0.00   -0.16   -0.76   -1.80   -3.19   -4.79   -6.41   -7.85   -8.93   -9.51   -9.50   -8.89   -7.65   -5.75   -3.08    0.40    4.66    9.50   14.53
+   275.0    0.00   -0.16   -0.76   -1.80   -3.21   -4.80   -6.43   -7.87   -8.95   -9.52   -9.52   -8.90   -7.67   -5.77   -3.13    0.33    4.55    9.34   14.36
+   280.0    0.00   -0.16   -0.77   -1.81   -3.21   -4.81   -6.44   -7.89   -8.96   -9.55   -9.54   -8.93   -7.70   -5.81   -3.17    0.26    4.43    9.22   14.24
+   285.0    0.00   -0.16   -0.77   -1.81   -3.22   -4.82   -6.45   -7.89   -8.98   -9.56   -9.57   -8.96   -7.73   -5.84   -3.22    0.18    4.35    9.14   14.19
+   290.0    0.00   -0.16   -0.76   -1.82   -3.23   -4.82   -6.45   -7.90   -8.99   -9.57   -9.59   -8.99   -7.77   -5.87   -3.25    0.15    4.31    9.10   14.21
+   295.0    0.00   -0.15   -0.76   -1.82   -3.22   -4.83   -6.45   -7.90   -8.99   -9.58   -9.61   -9.02   -7.78   -5.89   -3.27    0.12    4.30    9.12   14.30
+   300.0    0.00   -0.15   -0.76   -1.81   -3.23   -4.82   -6.45   -7.89   -8.98   -9.58   -9.61   -9.02   -7.79   -5.89   -3.27    0.13    4.33    9.20   14.45
+   305.0    0.00   -0.15   -0.76   -1.81   -3.22   -4.81   -6.44   -7.88   -8.98   -9.58   -9.60   -9.01   -7.78   -5.88   -3.25    0.17    4.40    9.31   14.65
+   310.0    0.00   -0.15   -0.77   -1.81   -3.21   -4.80   -6.43   -7.88   -8.97   -9.57   -9.58   -8.98   -7.74   -5.84   -3.22    0.21    4.47    9.45   14.89
+   315.0    0.00   -0.15   -0.77   -1.80   -3.21   -4.79   -6.41   -7.86   -8.95   -9.55   -9.56   -8.95   -7.69   -5.79   -3.15    0.27    4.56    9.61   15.14
+   320.0    0.00   -0.15   -0.77   -1.80   -3.20   -4.78   -6.41   -7.85   -8.94   -9.52   -9.51   -8.89   -7.64   -5.72   -3.09    0.34    4.65    9.76   15.38
+   325.0    0.00   -0.15   -0.76   -1.79   -3.19   -4.77   -6.39   -7.83   -8.92   -9.50   -9.48   -8.83   -7.56   -5.65   -3.03    0.39    4.72    9.89   15.59
+   330.0    0.00   -0.16   -0.76   -1.79   -3.17   -4.75   -6.38   -7.84   -8.90   -9.47   -9.43   -8.76   -7.49   -5.59   -2.98    0.43    4.76   10.00   15.74
+   335.0    0.00   -0.16   -0.76   -1.78   -3.16   -4.74   -6.38   -7.83   -8.90   -9.44   -9.39   -8.70   -7.43   -5.53   -2.95    0.45    4.79   10.05   15.86
+   340.0    0.00   -0.16   -0.76   -1.78   -3.15   -4.75   -6.36   -7.81   -8.89   -9.43   -9.36   -8.66   -7.38   -5.48   -2.93    0.45    4.79   10.06   15.88
+   345.0    0.00   -0.16   -0.76   -1.78   -3.15   -4.73   -6.35   -7.79   -8.87   -9.41   -9.33   -8.63   -7.35   -5.47   -2.92    0.44    4.77   10.03   15.86
+   350.0    0.00   -0.17   -0.77   -1.78   -3.13   -4.70   -6.33   -7.78   -8.85   -9.39   -9.32   -8.62   -7.33   -5.46   -2.94    0.40    4.71    9.98   15.78
+   355.0    0.00   -0.17   -0.76   -1.77   -3.13   -4.69   -6.32   -7.77   -8.85   -9.39   -9.32   -8.63   -7.34   -5.48   -2.96    0.37    4.65    9.89   15.65
+   360.0    0.00   -0.17   -0.77   -1.78   -3.12   -4.68   -6.30   -7.74   -8.83   -9.39   -9.33   -8.65   -7.38   -5.52   -3.01    0.32    4.59    9.78   15.50
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+     -0.03     -0.25    118.49                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.12   -0.47   -1.01   -1.71   -2.52   -3.37   -4.20   -4.91   -5.37   -5.49   -5.24   -4.61   -3.65   -2.38   -0.71    1.56    4.71    8.80
+     0.0    0.00   -0.11   -0.45   -0.98   -1.65   -2.43   -3.28   -4.11   -4.85   -5.36   -5.58   -5.45   -4.93   -4.06   -2.80   -1.09    1.17    4.04    7.38
+     5.0    0.00   -0.11   -0.46   -0.98   -1.64   -2.42   -3.26   -4.09   -4.83   -5.37   -5.61   -5.49   -4.99   -4.12   -2.86   -1.15    1.10    3.97    7.27
+    10.0    0.00   -0.12   -0.46   -0.98   -1.63   -2.40   -3.23   -4.07   -4.81   -5.36   -5.63   -5.53   -5.04   -4.16   -2.89   -1.18    1.09    3.96    7.32
+    15.0    0.00   -0.12   -0.46   -0.98   -1.64   -2.39   -3.22   -4.05   -4.80   -5.37   -5.64   -5.54   -5.06   -4.17   -2.89   -1.16    1.12    4.04    7.54
+    20.0    0.00   -0.13   -0.47   -0.99   -1.64   -2.39   -3.22   -4.03   -4.79   -5.37   -5.64   -5.55   -5.05   -4.15   -2.87   -1.12    1.18    4.18    7.87
+    25.0    0.00   -0.13   -0.48   -1.00   -1.65   -2.39   -3.21   -4.03   -4.79   -5.36   -5.65   -5.53   -5.02   -4.10   -2.81   -1.07    1.26    4.35    8.29
+    30.0    0.00   -0.13   -0.48   -1.00   -1.65   -2.40   -3.21   -4.03   -4.79   -5.37   -5.62   -5.50   -4.96   -4.04   -2.72   -0.99    1.35    4.54    8.76
+    35.0    0.00   -0.14   -0.49   -1.01   -1.66   -2.42   -3.22   -4.04   -4.80   -5.36   -5.60   -5.44   -4.88   -3.94   -2.63   -0.91    1.44    4.72    9.22
+    40.0    0.00   -0.14   -0.50   -1.03   -1.69   -2.44   -3.24   -4.07   -4.81   -5.35   -5.57   -5.39   -4.79   -3.83   -2.53   -0.83    1.51    4.87    9.61
+    45.0    0.00   -0.14   -0.50   -1.03   -1.70   -2.46   -3.28   -4.09   -4.83   -5.35   -5.55   -5.33   -4.69   -3.72   -2.44   -0.76    1.57    4.98    9.93
+    50.0    0.00   -0.14   -0.51   -1.05   -1.72   -2.49   -3.30   -4.12   -4.85   -5.35   -5.51   -5.26   -4.62   -3.62   -2.34   -0.71    1.60    5.04   10.12
+    55.0    0.00   -0.15   -0.52   -1.07   -1.74   -2.51   -3.34   -4.16   -4.86   -5.35   -5.49   -5.22   -4.53   -3.53   -2.28   -0.67    1.61    5.07   10.20
+    60.0    0.00   -0.15   -0.52   -1.08   -1.76   -2.54   -3.37   -4.19   -4.89   -5.35   -5.47   -5.17   -4.47   -3.47   -2.23   -0.65    1.59    5.02   10.15
+    65.0    0.00   -0.16   -0.53   -1.09   -1.78   -2.57   -3.40   -4.22   -4.91   -5.36   -5.44   -5.12   -4.43   -3.45   -2.22   -0.66    1.56    4.96   10.00
+    70.0    0.00   -0.15   -0.53   -1.10   -1.80   -2.61   -3.44   -4.25   -4.93   -5.37   -5.44   -5.11   -4.41   -3.44   -2.24   -0.70    1.51    4.87    9.77
+    75.0    0.00   -0.15   -0.53   -1.10   -1.82   -2.62   -3.47   -4.29   -4.96   -5.37   -5.43   -5.10   -4.41   -3.46   -2.28   -0.74    1.46    4.75    9.48
+    80.0    0.00   -0.16   -0.54   -1.11   -1.83   -2.64   -3.49   -4.30   -4.97   -5.37   -5.42   -5.10   -4.43   -3.51   -2.33   -0.80    1.40    4.63    9.17
+    85.0    0.00   -0.16   -0.55   -1.10   -1.83   -2.64   -3.50   -4.31   -4.98   -5.38   -5.43   -5.11   -4.46   -3.55   -2.39   -0.86    1.33    4.52    8.85
+    90.0    0.00   -0.16   -0.54   -1.11   -1.82   -2.64   -3.50   -4.32   -4.99   -5.38   -5.44   -5.12   -4.49   -3.60   -2.46   -0.92    1.28    4.42    8.58
+    95.0    0.00   -0.16   -0.54   -1.10   -1.82   -2.63   -3.49   -4.31   -4.99   -5.38   -5.44   -5.15   -4.52   -3.65   -2.51   -0.97    1.23    4.33    8.34
+   100.0    0.00   -0.17   -0.54   -1.09   -1.80   -2.62   -3.48   -4.31   -4.98   -5.39   -5.46   -5.17   -4.56   -3.68   -2.54   -1.00    1.21    4.29    8.18
+   105.0    0.00   -0.16   -0.53   -1.08   -1.79   -2.60   -3.46   -4.29   -4.97   -5.40   -5.47   -5.19   -4.58   -3.71   -2.56   -1.01    1.21    4.27    8.09
+   110.0    0.00   -0.16   -0.53   -1.08   -1.77   -2.58   -3.44   -4.27   -4.97   -5.40   -5.48   -5.20   -4.59   -3.71   -2.55   -0.99    1.23    4.29    8.08
+   115.0    0.00   -0.15   -0.53   -1.07   -1.76   -2.56   -3.42   -4.26   -4.96   -5.40   -5.51   -5.22   -4.60   -3.70   -2.53   -0.94    1.29    4.35    8.14
+   120.0    0.00   -0.16   -0.52   -1.07   -1.74   -2.54   -3.39   -4.24   -4.94   -5.41   -5.53   -5.24   -4.61   -3.69   -2.48   -0.87    1.36    4.45    8.27
+   125.0    0.00   -0.16   -0.52   -1.05   -1.73   -2.52   -3.37   -4.22   -4.94   -5.42   -5.54   -5.27   -4.62   -3.67   -2.43   -0.79    1.46    4.56    8.44
+   130.0    0.00   -0.15   -0.51   -1.06   -1.72   -2.50   -3.35   -4.21   -4.94   -5.44   -5.57   -5.28   -4.62   -3.64   -2.36   -0.70    1.58    4.69    8.62
+   135.0    0.00   -0.15   -0.52   -1.05   -1.72   -2.50   -3.36   -4.20   -4.94   -5.43   -5.58   -5.30   -4.63   -3.62   -2.30   -0.61    1.69    4.81    8.80
+   140.0    0.00   -0.15   -0.52   -1.05   -1.73   -2.51   -3.36   -4.20   -4.94   -5.45   -5.59   -5.33   -4.64   -3.60   -2.26   -0.54    1.77    4.91    8.95
+   145.0    0.00   -0.15   -0.52   -1.06   -1.74   -2.52   -3.37   -4.21   -4.95   -5.45   -5.61   -5.34   -4.65   -3.60   -2.24   -0.49    1.82    4.97    9.04
+   150.0    0.00   -0.15   -0.52   -1.07   -1.76   -2.54   -3.40   -4.24   -4.96   -5.46   -5.61   -5.34   -4.66   -3.61   -2.23   -0.48    1.84    4.99    9.05
+   155.0    0.00   -0.15   -0.52   -1.07   -1.77   -2.57   -3.42   -4.25   -4.97   -5.45   -5.60   -5.33   -4.66   -3.62   -2.25   -0.50    1.81    4.92    8.97
+   160.0    0.00   -0.15   -0.51   -1.09   -1.80   -2.60   -3.46   -4.27   -4.98   -5.45   -5.58   -5.32   -4.67   -3.65   -2.30   -0.56    1.73    4.80    8.80
+   165.0    0.00   -0.15   -0.51   -1.09   -1.82   -2.63   -3.48   -4.30   -4.98   -5.43   -5.56   -5.31   -4.66   -3.67   -2.35   -0.65    1.60    4.62    8.54
+   170.0    0.00   -0.14   -0.52   -1.10   -1.84   -2.66   -3.52   -4.31   -4.97   -5.41   -5.53   -5.28   -4.67   -3.70   -2.41   -0.75    1.45    4.40    8.23
+   175.0    0.00   -0.14   -0.51   -1.10   -1.85   -2.69   -3.53   -4.33   -4.98   -5.38   -5.49   -5.25   -4.66   -3.72   -2.47   -0.85    1.29    4.16    7.88
+   180.0    0.00   -0.13   -0.51   -1.10   -1.85   -2.69   -3.54   -4.33   -4.96   -5.36   -5.46   -5.21   -4.63   -3.73   -2.53   -0.95    1.14    3.94    7.56
+   185.0    0.00   -0.13   -0.51   -1.11   -1.85   -2.70   -3.55   -4.32   -4.95   -5.33   -5.42   -5.18   -4.62   -3.74   -2.55   -1.00    1.03    3.75    7.31
+   190.0    0.00   -0.13   -0.50   -1.09   -1.84   -2.68   -3.54   -4.31   -4.92   -5.31   -5.40   -5.16   -4.59   -3.72   -2.55   -1.03    0.97    3.66    7.16
+   195.0    0.00   -0.13   -0.49   -1.08   -1.82   -2.66   -3.50   -4.28   -4.91   -5.29   -5.39   -5.14   -4.58   -3.69   -2.52   -1.01    0.98    3.64    7.14
+   200.0    0.00   -0.11   -0.48   -1.06   -1.81   -2.63   -3.47   -4.25   -4.88   -5.28   -5.38   -5.13   -4.55   -3.65   -2.45   -0.93    1.05    3.73    7.28
+   205.0    0.00   -0.11   -0.47   -1.04   -1.76   -2.59   -3.43   -4.22   -4.86   -5.27   -5.38   -5.14   -4.52   -3.58   -2.36   -0.81    1.21    3.92    7.58
+   210.0    0.00   -0.11   -0.45   -1.02   -1.73   -2.55   -3.39   -4.18   -4.85   -5.28   -5.41   -5.14   -4.49   -3.51   -2.24   -0.64    1.42    4.21    8.00
+   215.0    0.00   -0.11   -0.45   -1.00   -1.70   -2.50   -3.34   -4.14   -4.84   -5.29   -5.42   -5.15   -4.47   -3.43   -2.10   -0.47    1.66    4.54    8.50
+   220.0    0.00   -0.10   -0.44   -0.97   -1.66   -2.46   -3.29   -4.13   -4.84   -5.31   -5.44   -5.16   -4.44   -3.36   -1.97   -0.29    1.90    4.90    9.06
+   225.0    0.00   -0.10   -0.42   -0.95   -1.63   -2.43   -3.27   -4.10   -4.83   -5.34   -5.48   -5.17   -4.42   -3.28   -1.86   -0.12    2.13    5.24    9.60
+   230.0    0.00   -0.09   -0.41   -0.93   -1.60   -2.39   -3.24   -4.09   -4.85   -5.37   -5.49   -5.17   -4.38   -3.22   -1.76    0.01    2.31    5.51   10.03
+   235.0    0.00   -0.09   -0.40   -0.91   -1.58   -2.37   -3.24   -4.11   -4.88   -5.38   -5.51   -5.17   -4.35   -3.17   -1.70    0.08    2.41    5.69   10.34
+   240.0    0.00   -0.09   -0.40   -0.91   -1.57   -2.37   -3.25   -4.13   -4.90   -5.41   -5.52   -5.16   -4.33   -3.14   -1.68    0.10    2.42    5.75   10.49
+   245.0    0.00   -0.09   -0.39   -0.90   -1.57   -2.37   -3.25   -4.14   -4.92   -5.44   -5.53   -5.14   -4.31   -3.13   -1.69    0.04    2.36    5.70   10.45
+   250.0    0.00   -0.08   -0.38   -0.89   -1.57   -2.39   -3.27   -4.18   -4.95   -5.44   -5.52   -5.13   -4.30   -3.15   -1.76   -0.06    2.22    5.54   10.26
+   255.0    0.00   -0.07   -0.38   -0.89   -1.59   -2.40   -3.32   -4.21   -4.98   -5.45   -5.52   -5.12   -4.31   -3.20   -1.86   -0.22    2.03    5.30    9.90
+   260.0    0.00   -0.07   -0.38   -0.90   -1.59   -2.43   -3.35   -4.24   -4.99   -5.45   -5.50   -5.11   -4.33   -3.27   -1.99   -0.39    1.81    5.01    9.48
+   265.0    0.00   -0.07   -0.38   -0.90   -1.61   -2.47   -3.39   -4.28   -5.02   -5.46   -5.50   -5.12   -4.36   -3.35   -2.12   -0.57    1.60    4.73    9.02
+   270.0    0.00   -0.07   -0.39   -0.92   -1.64   -2.50   -3.42   -4.30   -5.02   -5.45   -5.49   -5.12   -4.41   -3.45   -2.27   -0.74    1.40    4.48    8.61
+   275.0    0.00   -0.07   -0.39   -0.93   -1.66   -2.53   -3.45   -4.33   -5.03   -5.45   -5.48   -5.13   -4.47   -3.55   -2.40   -0.88    1.27    4.31    8.30
+   280.0    0.00   -0.07   -0.39   -0.93   -1.67   -2.55   -3.47   -4.35   -5.03   -5.43   -5.48   -5.16   -4.54   -3.65   -2.51   -0.97    1.21    4.25    8.13
+   285.0    0.00   -0.07   -0.39   -0.94   -1.70   -2.57   -3.49   -4.34   -5.03   -5.42   -5.48   -5.19   -4.59   -3.73   -2.58   -1.01    1.22    4.29    8.12
+   290.0    0.00   -0.07   -0.40   -0.96   -1.71   -2.59   -3.50   -4.34   -5.02   -5.42   -5.48   -5.22   -4.65   -3.80   -2.63   -1.00    1.29    4.43    8.27
+   295.0    0.00   -0.07   -0.40   -0.96   -1.73   -2.59   -3.50   -4.34   -5.00   -5.41   -5.49   -5.24   -4.68   -3.84   -2.65   -0.96    1.43    4.66    8.56
+   300.0    0.00   -0.08   -0.41   -0.97   -1.73   -2.60   -3.50   -4.33   -5.00   -5.40   -5.50   -5.27   -4.72   -3.86   -2.63   -0.88    1.59    4.92    8.93
+   305.0    0.00   -0.08   -0.41   -0.98   -1.73   -2.60   -3.49   -4.31   -4.98   -5.39   -5.50   -5.27   -4.73   -3.85   -2.59   -0.79    1.76    5.19    9.33
+   310.0    0.00   -0.08   -0.42   -0.99   -1.73   -2.59   -3.48   -4.31   -4.97   -5.39   -5.50   -5.28   -4.73   -3.84   -2.54   -0.70    1.91    5.42    9.68
+   315.0    0.00   -0.09   -0.42   -0.98   -1.73   -2.58   -3.46   -4.28   -4.95   -5.39   -5.50   -5.28   -4.72   -3.81   -2.49   -0.62    2.02    5.59    9.93
+   320.0    0.00   -0.09   -0.42   -0.98   -1.72   -2.56   -3.45   -4.28   -4.95   -5.38   -5.50   -5.28   -4.71   -3.79   -2.45   -0.57    2.09    5.66   10.05
+   325.0    0.00   -0.09   -0.43   -0.98   -1.72   -2.56   -3.43   -4.26   -4.93   -5.37   -5.49   -5.27   -4.69   -3.76   -2.43   -0.56    2.07    5.62   10.01
+   330.0    0.00   -0.09   -0.43   -0.98   -1.71   -2.54   -3.41   -4.23   -4.92   -5.38   -5.50   -5.28   -4.68   -3.76   -2.44   -0.59    2.01    5.49    9.80
+   335.0    0.00   -0.10   -0.43   -0.98   -1.69   -2.53   -3.39   -4.22   -4.91   -5.36   -5.50   -5.27   -4.70   -3.77   -2.45   -0.64    1.88    5.28    9.46
+   340.0    0.00   -0.10   -0.43   -0.99   -1.68   -2.50   -3.37   -4.20   -4.90   -5.36   -5.51   -5.29   -4.71   -3.80   -2.51   -0.73    1.74    5.01    9.01
+   345.0    0.00   -0.11   -0.44   -0.98   -1.68   -2.49   -3.35   -4.19   -4.89   -5.36   -5.52   -5.31   -4.75   -3.85   -2.57   -0.82    1.57    4.72    8.52
+   350.0    0.00   -0.11   -0.45   -0.97   -1.67   -2.47   -3.32   -4.16   -4.87   -5.36   -5.54   -5.36   -4.81   -3.92   -2.65   -0.92    1.41    4.44    8.05
+   355.0    0.00   -0.10   -0.44   -0.97   -1.66   -2.45   -3.29   -4.13   -4.86   -5.36   -5.55   -5.41   -4.88   -3.98   -2.73   -1.02    1.27    4.21    7.66
+   360.0    0.00   -0.11   -0.45   -0.98   -1.65   -2.43   -3.28   -4.11   -4.85   -5.36   -5.58   -5.45   -4.93   -4.06   -2.80   -1.09    1.17    4.04    7.38
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+JNSMARANT_GGD   NONE                                        TYPE / SERIAL NO    
+FIELD               NGS                      3    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      1.88      0.13     63.35                              NORTH / EAST / UP   
+   NOAZI    0.00    0.47    0.70    0.87    0.88    0.78    0.64    0.61    0.53    0.69    0.84    1.11    1.37    1.55    1.82    2.09    2.47
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -1.78     -0.59     72.05                              NORTH / EAST / UP   
+   NOAZI    0.00   -1.43   -2.31   -2.68   -2.79   -2.78   -2.69   -2.67   -2.81   -2.91   -2.95   -2.96   -2.83   -2.63   -2.33   -1.81   -0.85
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+JPLD/M_R        NONE                                        TYPE / SERIAL NO    
+CONVERTED           TUM                      0    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+CONVERTED FROM igs_01.pcv                                   COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.58     -0.37     59.85                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.23   -0.90   -1.93   -3.22   -4.62   -5.96   -7.09   -7.87   -8.21   -8.06   -7.39   -6.23   -4.55   -2.28    0.69    4.47    9.08   14.23
+     0.0    0.00   -0.27   -0.98   -2.07   -3.42   -4.87   -6.26   -7.43   -8.21   -8.53   -8.32   -7.62   -6.44   -4.77   -2.54    0.39    4.14    8.68   13.67
+     5.0    0.00   -0.27   -0.98   -2.06   -3.41   -4.86   -6.25   -7.41   -8.20   -8.52   -8.31   -7.60   -6.41   -4.74   -2.50    0.42    4.18    8.73   13.73
+    10.0    0.00   -0.26   -0.97   -2.05   -3.39   -4.84   -6.23   -7.40   -8.19   -8.50   -8.30   -7.58   -6.38   -4.70   -2.46    0.47    4.23    8.79   13.83
+    15.0    0.00   -0.26   -0.97   -2.05   -3.38   -4.82   -6.21   -7.37   -8.17   -8.49   -8.28   -7.56   -6.36   -4.66   -2.41    0.53    4.30    8.88   13.96
+    20.0    0.00   -0.26   -0.96   -2.03   -3.36   -4.80   -6.18   -7.35   -8.15   -8.47   -8.27   -7.54   -6.33   -4.62   -2.36    0.60    4.38    9.00   14.12
+    25.0    0.00   -0.26   -0.96   -2.02   -3.34   -4.77   -6.16   -7.32   -8.12   -8.44   -8.25   -7.53   -6.30   -4.58   -2.30    0.68    4.49    9.13   14.31
+    30.0    0.00   -0.26   -0.95   -2.01   -3.32   -4.75   -6.12   -7.28   -8.08   -8.42   -8.22   -7.51   -6.28   -4.54   -2.24    0.77    4.61    9.29   14.51
+    35.0    0.00   -0.25   -0.94   -2.00   -3.30   -4.72   -6.09   -7.25   -8.05   -8.38   -8.20   -7.48   -6.25   -4.50   -2.17    0.87    4.75    9.46   14.71
+    40.0    0.00   -0.25   -0.93   -1.98   -3.28   -4.69   -6.05   -7.21   -8.01   -8.35   -8.17   -7.46   -6.23   -4.46   -2.10    0.97    4.88    9.62   14.90
+    45.0    0.00   -0.25   -0.93   -1.97   -3.26   -4.66   -6.02   -7.16   -7.96   -8.30   -8.13   -7.43   -6.19   -4.42   -2.03    1.08    5.02    9.78   15.07
+    50.0    0.00   -0.24   -0.92   -1.95   -3.24   -4.63   -5.98   -7.12   -7.91   -8.26   -8.09   -7.39   -6.16   -4.37   -1.97    1.17    5.14    9.92   15.22
+    55.0    0.00   -0.24   -0.91   -1.94   -3.21   -4.60   -5.94   -7.07   -7.86   -8.20   -8.04   -7.35   -6.12   -4.33   -1.91    1.24    5.24   10.04   15.34
+    60.0    0.00   -0.24   -0.90   -1.92   -3.19   -4.57   -5.90   -7.02   -7.81   -8.15   -7.99   -7.30   -6.08   -4.29   -1.87    1.30    5.31   10.11   15.41
+    65.0    0.00   -0.23   -0.89   -1.91   -3.17   -4.54   -5.86   -6.97   -7.75   -8.09   -7.93   -7.25   -6.03   -4.25   -1.83    1.33    5.34   10.15   15.45
+    70.0    0.00   -0.23   -0.89   -1.90   -3.15   -4.51   -5.82   -6.93   -7.70   -8.03   -7.88   -7.20   -5.99   -4.22   -1.82    1.33    5.33   10.14   15.45
+    75.0    0.00   -0.23   -0.88   -1.88   -3.13   -4.49   -5.79   -6.89   -7.65   -7.98   -7.82   -7.15   -5.96   -4.21   -1.82    1.31    5.28   10.08   15.40
+    80.0    0.00   -0.23   -0.87   -1.87   -3.12   -4.46   -5.76   -6.85   -7.61   -7.94   -7.78   -7.11   -5.93   -4.20   -1.85    1.25    5.20    9.99   15.32
+    85.0    0.00   -0.22   -0.87   -1.86   -3.10   -4.44   -5.74   -6.83   -7.58   -7.91   -7.75   -7.09   -5.92   -4.21   -1.89    1.17    5.09    9.86   15.20
+    90.0    0.00   -0.22   -0.86   -1.86   -3.09   -4.43   -5.72   -6.81   -7.56   -7.89   -7.73   -7.08   -5.92   -4.24   -1.95    1.08    4.96    9.71   15.05
+    95.0    0.00   -0.22   -0.86   -1.85   -3.09   -4.42   -5.71   -6.80   -7.56   -7.89   -7.73   -7.09   -5.94   -4.28   -2.02    0.97    4.82    9.54   14.88
+   100.0    0.00   -0.22   -0.86   -1.85   -3.08   -4.42   -5.71   -6.80   -7.56   -7.90   -7.75   -7.11   -5.98   -4.34   -2.11    0.86    4.68    9.37   14.70
+   105.0    0.00   -0.22   -0.86   -1.85   -3.08   -4.42   -5.72   -6.81   -7.58   -7.92   -7.78   -7.16   -6.04   -4.41   -2.19    0.75    4.54    9.21   14.52
+   110.0    0.00   -0.21   -0.85   -1.85   -3.09   -4.43   -5.73   -6.83   -7.61   -7.96   -7.83   -7.21   -6.10   -4.49   -2.28    0.64    4.42    9.07   14.35
+   115.0    0.00   -0.21   -0.85   -1.85   -3.09   -4.44   -5.75   -6.86   -7.65   -8.01   -7.89   -7.28   -6.18   -4.57   -2.36    0.56    4.32    8.95   14.20
+   120.0    0.00   -0.21   -0.86   -1.86   -3.10   -4.46   -5.77   -6.90   -7.69   -8.06   -7.95   -7.35   -6.25   -4.64   -2.44    0.48    4.25    8.86   14.08
+   125.0    0.00   -0.21   -0.86   -1.86   -3.12   -4.48   -5.80   -6.93   -7.73   -8.11   -8.01   -7.42   -6.33   -4.72   -2.50    0.43    4.20    8.81   13.99
+   130.0    0.00   -0.21   -0.86   -1.87   -3.13   -4.50   -5.83   -6.97   -7.78   -8.16   -8.07   -7.48   -6.39   -4.78   -2.55    0.40    4.18    8.78   13.94
+   135.0    0.00   -0.21   -0.86   -1.88   -3.15   -4.53   -5.86   -7.01   -7.82   -8.21   -8.12   -7.54   -6.45   -4.83   -2.59    0.38    4.17    8.78   13.92
+   140.0    0.00   -0.21   -0.86   -1.89   -3.16   -4.55   -5.89   -7.04   -7.85   -8.24   -8.16   -7.58   -6.49   -4.87   -2.62    0.37    4.18    8.79   13.93
+   145.0    0.00   -0.21   -0.87   -1.89   -3.18   -4.57   -5.92   -7.07   -7.88   -8.28   -8.19   -7.61   -6.52   -4.89   -2.63    0.37    4.19    8.81   13.95
+   150.0    0.00   -0.21   -0.87   -1.90   -3.19   -4.59   -5.95   -7.10   -7.91   -8.30   -8.21   -7.63   -6.54   -4.90   -2.63    0.37    4.21    8.83   13.98
+   155.0    0.00   -0.21   -0.87   -1.91   -3.20   -4.61   -5.97   -7.12   -7.93   -8.32   -8.23   -7.65   -6.55   -4.91   -2.64    0.38    4.21    8.84   14.00
+   160.0    0.00   -0.21   -0.87   -1.91   -3.21   -4.63   -5.98   -7.13   -7.94   -8.33   -8.24   -7.65   -6.56   -4.91   -2.64    0.38    4.21    8.83   14.00
+   165.0    0.00   -0.21   -0.88   -1.92   -3.22   -4.64   -6.00   -7.14   -7.95   -8.34   -8.24   -7.65   -6.55   -4.91   -2.64    0.37    4.19    8.81   13.98
+   170.0    0.00   -0.21   -0.88   -1.92   -3.23   -4.64   -6.00   -7.15   -7.96   -8.34   -8.25   -7.65   -6.55   -4.91   -2.64    0.35    4.16    8.76   13.93
+   175.0    0.00   -0.21   -0.88   -1.92   -3.23   -4.65   -6.01   -7.16   -7.97   -8.35   -8.25   -7.65   -6.55   -4.90   -2.64    0.33    4.11    8.70   13.87
+   180.0    0.00   -0.21   -0.88   -1.92   -3.23   -4.65   -6.01   -7.16   -7.97   -8.35   -8.25   -7.66   -6.55   -4.90   -2.65    0.31    4.07    8.63   13.79
+   185.0    0.00   -0.21   -0.88   -1.92   -3.23   -4.64   -6.00   -7.16   -7.97   -8.36   -8.26   -7.66   -6.55   -4.90   -2.66    0.28    4.02    8.57   13.72
+   190.0    0.00   -0.21   -0.87   -1.92   -3.22   -4.64   -6.00   -7.15   -7.97   -8.36   -8.26   -7.66   -6.54   -4.90   -2.67    0.26    3.99    8.52   13.66
+   195.0    0.00   -0.21   -0.87   -1.91   -3.21   -4.63   -5.99   -7.15   -7.97   -8.35   -8.25   -7.65   -6.53   -4.89   -2.66    0.26    3.97    8.50   13.64
+   200.0    0.00   -0.21   -0.87   -1.91   -3.20   -4.61   -5.98   -7.14   -7.96   -8.34   -8.24   -7.63   -6.52   -4.88   -2.65    0.27    3.98    8.52   13.67
+   205.0    0.00   -0.21   -0.87   -1.90   -3.19   -4.60   -5.96   -7.12   -7.94   -8.33   -8.22   -7.61   -6.49   -4.85   -2.62    0.30    4.03    8.58   13.75
+   210.0    0.00   -0.21   -0.87   -1.89   -3.18   -4.59   -5.94   -7.10   -7.92   -8.30   -8.19   -7.57   -6.45   -4.80   -2.57    0.35    4.11    8.70   13.88
+   215.0    0.00   -0.21   -0.86   -1.89   -3.17   -4.57   -5.92   -7.08   -7.89   -8.26   -8.14   -7.52   -6.39   -4.74   -2.51    0.44    4.22    8.85   14.06
+   220.0    0.00   -0.21   -0.86   -1.88   -3.16   -4.55   -5.90   -7.05   -7.85   -8.22   -8.09   -7.46   -6.32   -4.67   -2.42    0.54    4.36    9.04   14.28
+   225.0    0.00   -0.21   -0.86   -1.88   -3.15   -4.53   -5.88   -7.01   -7.81   -8.17   -8.03   -7.38   -6.24   -4.58   -2.32    0.67    4.53    9.25   14.52
+   230.0    0.00   -0.21   -0.86   -1.87   -3.14   -4.52   -5.85   -6.98   -7.77   -8.11   -7.96   -7.30   -6.15   -4.48   -2.20    0.81    4.71    9.46   14.74
+   235.0    0.00   -0.21   -0.86   -1.87   -3.13   -4.50   -5.83   -6.95   -7.72   -8.05   -7.89   -7.22   -6.06   -4.37   -2.08    0.96    4.88    9.66   14.94
+   240.0    0.00   -0.22   -0.86   -1.86   -3.12   -4.49   -5.80   -6.91   -7.68   -7.99   -7.82   -7.14   -5.97   -4.27   -1.96    1.10    5.04    9.83   15.09
+   245.0    0.00   -0.22   -0.86   -1.86   -3.12   -4.48   -5.78   -6.88   -7.64   -7.94   -7.76   -7.07   -5.88   -4.17   -1.84    1.23    5.18    9.95   15.17
+   250.0    0.00   -0.22   -0.86   -1.87   -3.11   -4.47   -5.77   -6.86   -7.60   -7.90   -7.71   -7.01   -5.81   -4.08   -1.74    1.34    5.27   10.01   15.19
+   255.0    0.00   -0.22   -0.87   -1.87   -3.12   -4.47   -5.76   -6.84   -7.58   -7.87   -7.67   -6.97   -5.76   -4.01   -1.66    1.41    5.32   10.00   15.12
+   260.0    0.00   -0.22   -0.87   -1.87   -3.12   -4.47   -5.76   -6.84   -7.57   -7.86   -7.65   -6.94   -5.72   -3.97   -1.61    1.45    5.32    9.94   15.00
+   265.0    0.00   -0.23   -0.88   -1.88   -3.13   -4.48   -5.77   -6.84   -7.57   -7.86   -7.65   -6.93   -5.70   -3.94   -1.59    1.45    5.26    9.81   14.82
+   270.0    0.00   -0.23   -0.88   -1.89   -3.14   -4.49   -5.78   -6.85   -7.58   -7.87   -7.66   -6.94   -5.71   -3.94   -1.60    1.41    5.16    9.65   14.61
+   275.0    0.00   -0.23   -0.89   -1.90   -3.16   -4.51   -5.80   -6.88   -7.61   -7.90   -7.69   -6.97   -5.73   -3.97   -1.64    1.33    5.03    9.45   14.39
+   280.0    0.00   -0.23   -0.90   -1.92   -3.18   -4.54   -5.83   -6.91   -7.64   -7.93   -7.73   -7.01   -5.77   -4.02   -1.71    1.23    4.87    9.24   14.18
+   285.0    0.00   -0.24   -0.91   -1.93   -3.20   -4.56   -5.87   -6.95   -7.69   -7.98   -7.78   -7.06   -5.83   -4.09   -1.80    1.10    4.70    9.04   13.99
+   290.0    0.00   -0.24   -0.91   -1.95   -3.23   -4.60   -5.91   -7.00   -7.74   -8.04   -7.83   -7.12   -5.90   -4.17   -1.91    0.96    4.53    8.85   13.85
+   295.0    0.00   -0.24   -0.92   -1.96   -3.25   -4.63   -5.95   -7.05   -7.79   -8.09   -7.90   -7.19   -5.97   -4.26   -2.02    0.82    4.37    8.70   13.74
+   300.0    0.00   -0.25   -0.93   -1.98   -3.28   -4.67   -6.00   -7.10   -7.85   -8.15   -7.96   -7.26   -6.06   -4.36   -2.14    0.69    4.23    8.58   13.68
+   305.0    0.00   -0.25   -0.94   -2.00   -3.30   -4.71   -6.04   -7.16   -7.91   -8.21   -8.02   -7.32   -6.14   -4.46   -2.26    0.57    4.12    8.51   13.66
+   310.0    0.00   -0.25   -0.95   -2.01   -3.33   -4.74   -6.09   -7.21   -7.97   -8.27   -8.08   -7.39   -6.22   -4.55   -2.36    0.46    4.04    8.47   13.66
+   315.0    0.00   -0.26   -0.96   -2.03   -3.35   -4.78   -6.13   -7.26   -8.02   -8.33   -8.14   -7.45   -6.29   -4.64   -2.45    0.39    4.00    8.46   13.68
+   320.0    0.00   -0.26   -0.96   -2.04   -3.37   -4.81   -6.17   -7.30   -8.07   -8.38   -8.19   -7.51   -6.35   -4.71   -2.52    0.33    3.97    8.47   13.69
+   325.0    0.00   -0.26   -0.97   -2.05   -3.39   -4.83   -6.20   -7.34   -8.11   -8.42   -8.23   -7.55   -6.40   -4.76   -2.57    0.30    3.97    8.50   13.71
+   330.0    0.00   -0.26   -0.98   -2.06   -3.41   -4.85   -6.23   -7.37   -8.14   -8.45   -8.27   -7.59   -6.44   -4.81   -2.61    0.28    3.98    8.53   13.70
+   335.0    0.00   -0.26   -0.98   -2.07   -3.42   -4.87   -6.25   -7.40   -8.17   -8.48   -8.30   -7.62   -6.47   -4.83   -2.63    0.28    4.01    8.56   13.69
+   340.0    0.00   -0.27   -0.98   -2.07   -3.42   -4.88   -6.27   -7.42   -8.19   -8.51   -8.32   -7.64   -6.48   -4.84   -2.63    0.29    4.03    8.59   13.67
+   345.0    0.00   -0.27   -0.98   -2.08   -3.43   -4.88   -6.27   -7.43   -8.21   -8.52   -8.33   -7.64   -6.48   -4.84   -2.62    0.30    4.06    8.61   13.65
+   350.0    0.00   -0.27   -0.98   -2.08   -3.43   -4.88   -6.28   -7.43   -8.22   -8.53   -8.33   -7.64   -6.48   -4.82   -2.60    0.33    4.08    8.63   13.63
+   355.0    0.00   -0.27   -0.98   -2.07   -3.42   -4.88   -6.27   -7.43   -8.22   -8.53   -8.33   -7.63   -6.46   -4.80   -2.58    0.35    4.11    8.65   13.64
+   360.0    0.00   -0.27   -0.98   -2.07   -3.42   -4.87   -6.26   -7.43   -8.21   -8.53   -8.32   -7.62   -6.44   -4.77   -2.54    0.39    4.14    8.68   13.67
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.08     -0.59     88.35                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.13   -0.51   -1.08   -1.79   -2.58   -3.39   -4.17   -4.81   -5.21   -5.25   -4.86   -4.03   -2.83   -1.33    0.49    2.75    5.68    9.44
+     0.0    0.00   -0.12   -0.48   -1.02   -1.69   -2.44   -3.24   -4.04   -4.72   -5.17   -5.25   -4.89   -4.12   -3.00   -1.59    0.15    2.44    5.50    9.31
+     5.0    0.00   -0.12   -0.48   -1.02   -1.69   -2.44   -3.24   -4.03   -4.72   -5.16   -5.25   -4.90   -4.13   -3.01   -1.61    0.14    2.42    5.45    9.20
+    10.0    0.00   -0.12   -0.47   -1.01   -1.68   -2.44   -3.24   -4.03   -4.71   -5.15   -5.24   -4.90   -4.13   -3.02   -1.61    0.14    2.41    5.41    9.12
+    15.0    0.00   -0.12   -0.47   -1.01   -1.68   -2.44   -3.24   -4.02   -4.70   -5.14   -5.23   -4.89   -4.13   -3.02   -1.60    0.15    2.41    5.38    9.06
+    20.0    0.00   -0.11   -0.47   -1.01   -1.68   -2.44   -3.24   -4.02   -4.69   -5.13   -5.21   -4.88   -4.12   -3.00   -1.58    0.18    2.43    5.37    9.05
+    25.0    0.00   -0.11   -0.46   -1.00   -1.68   -2.44   -3.24   -4.02   -4.68   -5.11   -5.20   -4.86   -4.10   -2.97   -1.54    0.22    2.46    5.39    9.06
+    30.0    0.00   -0.11   -0.46   -1.00   -1.68   -2.45   -3.24   -4.01   -4.67   -5.09   -5.18   -4.84   -4.07   -2.93   -1.49    0.28    2.51    5.42    9.11
+    35.0    0.00   -0.11   -0.46   -1.00   -1.68   -2.45   -3.24   -4.01   -4.66   -5.08   -5.16   -4.81   -4.03   -2.88   -1.42    0.35    2.58    5.48    9.19
+    40.0    0.00   -0.11   -0.45   -1.00   -1.68   -2.45   -3.25   -4.01   -4.65   -5.06   -5.13   -4.78   -4.00   -2.83   -1.36    0.42    2.65    5.55    9.30
+    45.0    0.00   -0.10   -0.45   -0.99   -1.68   -2.45   -3.25   -4.01   -4.65   -5.05   -5.11   -4.75   -3.96   -2.78   -1.30    0.49    2.72    5.62    9.41
+    50.0    0.00   -0.10   -0.45   -0.99   -1.68   -2.45   -3.25   -4.01   -4.65   -5.05   -5.10   -4.72   -3.92   -2.73   -1.24    0.56    2.78    5.69    9.52
+    55.0    0.00   -0.10   -0.45   -0.99   -1.68   -2.46   -3.26   -4.02   -4.65   -5.04   -5.09   -4.70   -3.88   -2.69   -1.19    0.60    2.84    5.76    9.62
+    60.0    0.00   -0.10   -0.44   -0.99   -1.68   -2.46   -3.27   -4.03   -4.66   -5.05   -5.08   -4.68   -3.86   -2.66   -1.16    0.64    2.87    5.81    9.70
+    65.0    0.00   -0.10   -0.44   -0.99   -1.69   -2.47   -3.28   -4.05   -4.68   -5.06   -5.08   -4.67   -3.84   -2.64   -1.15    0.65    2.89    5.84    9.76
+    70.0    0.00   -0.10   -0.44   -0.99   -1.69   -2.48   -3.30   -4.07   -4.70   -5.07   -5.08   -4.67   -3.83   -2.64   -1.15    0.64    2.88    5.85    9.79
+    75.0    0.00   -0.10   -0.44   -0.99   -1.69   -2.49   -3.31   -4.09   -4.72   -5.09   -5.09   -4.67   -3.84   -2.65   -1.17    0.61    2.86    5.83    9.78
+    80.0    0.00   -0.10   -0.45   -1.00   -1.70   -2.50   -3.33   -4.12   -4.75   -5.11   -5.11   -4.68   -3.85   -2.67   -1.21    0.57    2.82    5.80    9.74
+    85.0    0.00   -0.10   -0.45   -1.00   -1.71   -2.52   -3.36   -4.14   -4.78   -5.14   -5.13   -4.70   -3.87   -2.70   -1.25    0.52    2.77    5.75    9.67
+    90.0    0.00   -0.10   -0.45   -1.01   -1.72   -2.54   -3.38   -4.17   -4.81   -5.17   -5.15   -4.72   -3.89   -2.73   -1.29    0.47    2.71    5.68    9.57
+    95.0    0.00   -0.10   -0.46   -1.02   -1.74   -2.55   -3.40   -4.20   -4.83   -5.19   -5.18   -4.74   -3.92   -2.77   -1.33    0.42    2.66    5.62    9.47
+   100.0    0.00   -0.11   -0.46   -1.03   -1.75   -2.58   -3.43   -4.22   -4.86   -5.22   -5.20   -4.77   -3.95   -2.80   -1.37    0.38    2.61    5.56    9.36
+   105.0    0.00   -0.11   -0.47   -1.04   -1.77   -2.60   -3.45   -4.25   -4.88   -5.24   -5.22   -4.79   -3.97   -2.82   -1.40    0.35    2.58    5.51    9.26
+   110.0    0.00   -0.11   -0.48   -1.05   -1.79   -2.62   -3.47   -4.27   -4.90   -5.26   -5.25   -4.82   -4.00   -2.84   -1.41    0.35    2.57    5.48    9.18
+   115.0    0.00   -0.11   -0.48   -1.07   -1.81   -2.64   -3.50   -4.29   -4.92   -5.28   -5.26   -4.84   -4.01   -2.85   -1.41    0.36    2.58    5.46    9.13
+   120.0    0.00   -0.12   -0.49   -1.08   -1.83   -2.66   -3.52   -4.30   -4.93   -5.29   -5.28   -4.85   -4.03   -2.86   -1.39    0.38    2.61    5.47    9.10
+   125.0    0.00   -0.12   -0.50   -1.10   -1.85   -2.68   -3.53   -4.32   -4.94   -5.30   -5.29   -4.87   -4.03   -2.85   -1.37    0.43    2.65    5.50    9.09
+   130.0    0.00   -0.12   -0.50   -1.11   -1.86   -2.70   -3.55   -4.33   -4.95   -5.30   -5.30   -4.88   -4.04   -2.84   -1.33    0.48    2.71    5.54    9.11
+   135.0    0.00   -0.12   -0.51   -1.12   -1.88   -2.72   -3.56   -4.33   -4.95   -5.30   -5.30   -4.88   -4.04   -2.82   -1.29    0.54    2.77    5.60    9.15
+   140.0    0.00   -0.13   -0.52   -1.13   -1.89   -2.73   -3.57   -4.33   -4.95   -5.31   -5.31   -4.89   -4.04   -2.80   -1.25    0.60    2.84    5.66    9.19
+   145.0    0.00   -0.13   -0.52   -1.14   -1.90   -2.74   -3.57   -4.33   -4.94   -5.31   -5.31   -4.89   -4.04   -2.79   -1.22    0.65    2.90    5.71    9.23
+   150.0    0.00   -0.13   -0.53   -1.15   -1.91   -2.74   -3.57   -4.33   -4.94   -5.31   -5.32   -4.90   -4.04   -2.78   -1.19    0.69    2.94    5.74    9.25
+   155.0    0.00   -0.13   -0.53   -1.15   -1.91   -2.74   -3.57   -4.33   -4.94   -5.31   -5.33   -4.91   -4.05   -2.78   -1.18    0.71    2.97    5.76    9.25
+   160.0    0.00   -0.13   -0.53   -1.15   -1.91   -2.74   -3.56   -4.32   -4.93   -5.31   -5.33   -4.92   -4.06   -2.78   -1.18    0.71    2.97    5.76    9.23
+   165.0    0.00   -0.14   -0.54   -1.15   -1.91   -2.73   -3.55   -4.31   -4.93   -5.31   -5.34   -4.94   -4.07   -2.80   -1.19    0.70    2.95    5.73    9.18
+   170.0    0.00   -0.14   -0.54   -1.15   -1.90   -2.72   -3.54   -4.30   -4.93   -5.32   -5.35   -4.95   -4.09   -2.82   -1.22    0.66    2.91    5.68    9.11
+   175.0    0.00   -0.14   -0.54   -1.15   -1.90   -2.71   -3.53   -4.30   -4.93   -5.32   -5.36   -4.96   -4.11   -2.84   -1.26    0.61    2.85    5.62    9.03
+   180.0    0.00   -0.14   -0.54   -1.14   -1.89   -2.70   -3.52   -4.29   -4.93   -5.33   -5.37   -4.97   -4.12   -2.87   -1.30    0.55    2.77    5.55    8.96
+   185.0    0.00   -0.14   -0.54   -1.14   -1.87   -2.69   -3.51   -4.29   -4.93   -5.34   -5.38   -4.98   -4.13   -2.89   -1.35    0.48    2.70    5.48    8.89
+   190.0    0.00   -0.14   -0.53   -1.13   -1.86   -2.67   -3.50   -4.29   -4.94   -5.34   -5.38   -4.97   -4.12   -2.90   -1.38    0.42    2.63    5.42    8.86
+   195.0    0.00   -0.14   -0.53   -1.12   -1.85   -2.66   -3.49   -4.28   -4.94   -5.34   -5.37   -4.96   -4.11   -2.90   -1.40    0.38    2.58    5.39    8.87
+   200.0    0.00   -0.14   -0.53   -1.12   -1.84   -2.65   -3.49   -4.29   -4.95   -5.34   -5.36   -4.94   -4.09   -2.89   -1.41    0.35    2.55    5.39    8.92
+   205.0    0.00   -0.15   -0.53   -1.11   -1.83   -2.64   -3.48   -4.29   -4.95   -5.34   -5.35   -4.91   -4.05   -2.86   -1.40    0.35    2.55    5.43    9.01
+   210.0    0.00   -0.15   -0.53   -1.11   -1.82   -2.63   -3.48   -4.29   -4.95   -5.34   -5.33   -4.88   -4.01   -2.82   -1.36    0.38    2.59    5.50    9.15
+   215.0    0.00   -0.15   -0.53   -1.10   -1.82   -2.63   -3.48   -4.29   -4.95   -5.33   -5.32   -4.85   -3.97   -2.77   -1.31    0.44    2.67    5.61    9.32
+   220.0    0.00   -0.15   -0.53   -1.10   -1.82   -2.63   -3.48   -4.29   -4.95   -5.32   -5.30   -4.82   -3.93   -2.71   -1.24    0.52    2.78    5.76    9.50
+   225.0    0.00   -0.15   -0.53   -1.10   -1.82   -2.63   -3.47   -4.28   -4.94   -5.31   -5.28   -4.79   -3.89   -2.66   -1.17    0.63    2.91    5.91    9.68
+   230.0    0.00   -0.15   -0.53   -1.11   -1.82   -2.63   -3.47   -4.28   -4.93   -5.30   -5.27   -4.78   -3.86   -2.61   -1.09    0.75    3.06    6.07    9.84
+   235.0    0.00   -0.15   -0.54   -1.11   -1.82   -2.63   -3.47   -4.27   -4.92   -5.29   -5.26   -4.77   -3.85   -2.58   -1.01    0.86    3.21    6.22    9.96
+   240.0    0.00   -0.15   -0.54   -1.11   -1.83   -2.63   -3.47   -4.26   -4.91   -5.28   -5.26   -4.78   -3.86   -2.56   -0.95    0.97    3.35    6.35   10.04
+   245.0    0.00   -0.15   -0.54   -1.12   -1.83   -2.63   -3.46   -4.25   -4.89   -5.27   -5.26   -4.80   -3.88   -2.56   -0.91    1.06    3.46    6.44   10.07
+   250.0    0.00   -0.15   -0.54   -1.12   -1.84   -2.63   -3.46   -4.23   -4.88   -5.26   -5.27   -4.83   -3.92   -2.58   -0.90    1.12    3.53    6.48   10.05
+   255.0    0.00   -0.16   -0.55   -1.13   -1.84   -2.64   -3.45   -4.22   -4.86   -5.26   -5.29   -4.87   -3.97   -2.63   -0.91    1.14    3.56    6.47    9.98
+   260.0    0.00   -0.16   -0.55   -1.13   -1.85   -2.64   -3.44   -4.20   -4.84   -5.25   -5.31   -4.91   -4.03   -2.68   -0.95    1.12    3.54    6.41    9.87
+   265.0    0.00   -0.16   -0.55   -1.14   -1.85   -2.64   -3.43   -4.19   -4.83   -5.25   -5.33   -4.96   -4.09   -2.75   -1.01    1.07    3.48    6.31    9.74
+   270.0    0.00   -0.16   -0.56   -1.14   -1.86   -2.63   -3.43   -4.18   -4.82   -5.25   -5.34   -5.00   -4.15   -2.82   -1.08    0.98    3.37    6.18    9.61
+   275.0    0.00   -0.16   -0.56   -1.14   -1.86   -2.63   -3.42   -4.16   -4.80   -5.24   -5.36   -5.03   -4.20   -2.89   -1.17    0.87    3.23    6.03    9.50
+   280.0    0.00   -0.16   -0.56   -1.15   -1.86   -2.63   -3.41   -4.15   -4.79   -5.24   -5.36   -5.05   -4.24   -2.95   -1.26    0.75    3.08    5.88    9.41
+   285.0    0.00   -0.16   -0.56   -1.14   -1.85   -2.62   -3.40   -4.14   -4.79   -5.23   -5.36   -5.06   -4.27   -3.00   -1.35    0.62    2.92    5.73    9.36
+   290.0    0.00   -0.16   -0.56   -1.14   -1.85   -2.61   -3.39   -4.13   -4.78   -5.23   -5.36   -5.06   -4.28   -3.04   -1.42    0.50    2.77    5.60    9.35
+   295.0    0.00   -0.16   -0.55   -1.14   -1.84   -2.60   -3.38   -4.12   -4.77   -5.22   -5.35   -5.05   -4.27   -3.05   -1.48    0.39    2.64    5.51    9.38
+   300.0    0.00   -0.15   -0.55   -1.13   -1.83   -2.59   -3.37   -4.12   -4.77   -5.21   -5.33   -5.02   -4.25   -3.06   -1.53    0.30    2.53    5.45    9.45
+   305.0    0.00   -0.15   -0.55   -1.12   -1.82   -2.57   -3.35   -4.11   -4.76   -5.20   -5.31   -4.99   -4.22   -3.04   -1.55    0.24    2.46    5.42    9.53
+   310.0    0.00   -0.15   -0.54   -1.11   -1.80   -2.56   -3.34   -4.10   -4.76   -5.20   -5.29   -4.96   -4.18   -3.02   -1.56    0.20    2.41    5.42    9.63
+   315.0    0.00   -0.15   -0.54   -1.10   -1.79   -2.54   -3.33   -4.09   -4.75   -5.19   -5.28   -4.93   -4.14   -2.99   -1.55    0.18    2.40    5.45    9.72
+   320.0    0.00   -0.15   -0.53   -1.09   -1.77   -2.52   -3.31   -4.08   -4.75   -5.18   -5.26   -4.90   -4.11   -2.96   -1.54    0.18    2.40    5.50    9.80
+   325.0    0.00   -0.14   -0.53   -1.08   -1.76   -2.51   -3.30   -4.07   -4.74   -5.18   -5.25   -4.88   -4.08   -2.94   -1.53    0.18    2.42    5.54    9.84
+   330.0    0.00   -0.14   -0.52   -1.07   -1.74   -2.49   -3.28   -4.07   -4.74   -5.18   -5.24   -4.86   -4.06   -2.92   -1.52    0.19    2.45    5.59    9.85
+   335.0    0.00   -0.14   -0.51   -1.06   -1.73   -2.48   -3.27   -4.06   -4.74   -5.17   -5.24   -4.86   -4.05   -2.92   -1.52    0.20    2.47    5.62    9.83
+   340.0    0.00   -0.14   -0.51   -1.05   -1.72   -2.46   -3.26   -4.05   -4.74   -5.17   -5.24   -4.86   -4.06   -2.92   -1.52    0.21    2.49    5.63    9.76
+   345.0    0.00   -0.13   -0.50   -1.04   -1.71   -2.46   -3.25   -4.05   -4.73   -5.17   -5.24   -4.86   -4.07   -2.93   -1.53    0.20    2.49    5.62    9.67
+   350.0    0.00   -0.13   -0.49   -1.03   -1.70   -2.45   -3.25   -4.04   -4.73   -5.17   -5.24   -4.87   -4.08   -2.95   -1.55    0.19    2.48    5.59    9.55
+   355.0    0.00   -0.13   -0.49   -1.03   -1.69   -2.44   -3.24   -4.04   -4.73   -5.17   -5.25   -4.88   -4.10   -2.98   -1.57    0.17    2.46    5.55    9.43
+   360.0    0.00   -0.12   -0.48   -1.02   -1.69   -2.44   -3.24   -4.04   -4.72   -5.17   -5.25   -4.89   -4.12   -3.00   -1.59    0.15    2.44    5.50    9.31
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+JPLD/M_RA_SOP   NONE                                        TYPE / SERIAL NO    
+CONVERTED           TUM                      0    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+CONVERTED FROM igs_01.pcv                                   COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.58     -0.37     59.85                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.23   -0.90   -1.93   -3.22   -4.62   -5.96   -7.09   -7.87   -8.21   -8.06   -7.39   -6.23   -4.55   -2.28    0.69    4.47    9.08   14.23
+     0.0    0.00   -0.27   -0.98   -2.07   -3.42   -4.87   -6.26   -7.43   -8.21   -8.53   -8.32   -7.62   -6.44   -4.77   -2.54    0.39    4.14    8.68   13.67
+     5.0    0.00   -0.27   -0.98   -2.06   -3.41   -4.86   -6.25   -7.41   -8.20   -8.52   -8.31   -7.60   -6.41   -4.74   -2.50    0.42    4.18    8.73   13.73
+    10.0    0.00   -0.26   -0.97   -2.05   -3.39   -4.84   -6.23   -7.40   -8.19   -8.50   -8.30   -7.58   -6.38   -4.70   -2.46    0.47    4.23    8.79   13.83
+    15.0    0.00   -0.26   -0.97   -2.05   -3.38   -4.82   -6.21   -7.37   -8.17   -8.49   -8.28   -7.56   -6.36   -4.66   -2.41    0.53    4.30    8.88   13.96
+    20.0    0.00   -0.26   -0.96   -2.03   -3.36   -4.80   -6.18   -7.35   -8.15   -8.47   -8.27   -7.54   -6.33   -4.62   -2.36    0.60    4.38    9.00   14.12
+    25.0    0.00   -0.26   -0.96   -2.02   -3.34   -4.77   -6.16   -7.32   -8.12   -8.44   -8.25   -7.53   -6.30   -4.58   -2.30    0.68    4.49    9.13   14.31
+    30.0    0.00   -0.26   -0.95   -2.01   -3.32   -4.75   -6.12   -7.28   -8.08   -8.42   -8.22   -7.51   -6.28   -4.54   -2.24    0.77    4.61    9.29   14.51
+    35.0    0.00   -0.25   -0.94   -2.00   -3.30   -4.72   -6.09   -7.25   -8.05   -8.38   -8.20   -7.48   -6.25   -4.50   -2.17    0.87    4.75    9.46   14.71
+    40.0    0.00   -0.25   -0.93   -1.98   -3.28   -4.69   -6.05   -7.21   -8.01   -8.35   -8.17   -7.46   -6.23   -4.46   -2.10    0.97    4.88    9.62   14.90
+    45.0    0.00   -0.25   -0.93   -1.97   -3.26   -4.66   -6.02   -7.16   -7.96   -8.30   -8.13   -7.43   -6.19   -4.42   -2.03    1.08    5.02    9.78   15.07
+    50.0    0.00   -0.24   -0.92   -1.95   -3.24   -4.63   -5.98   -7.12   -7.91   -8.26   -8.09   -7.39   -6.16   -4.37   -1.97    1.17    5.14    9.92   15.22
+    55.0    0.00   -0.24   -0.91   -1.94   -3.21   -4.60   -5.94   -7.07   -7.86   -8.20   -8.04   -7.35   -6.12   -4.33   -1.91    1.24    5.24   10.04   15.34
+    60.0    0.00   -0.24   -0.90   -1.92   -3.19   -4.57   -5.90   -7.02   -7.81   -8.15   -7.99   -7.30   -6.08   -4.29   -1.87    1.30    5.31   10.11   15.41
+    65.0    0.00   -0.23   -0.89   -1.91   -3.17   -4.54   -5.86   -6.97   -7.75   -8.09   -7.93   -7.25   -6.03   -4.25   -1.83    1.33    5.34   10.15   15.45
+    70.0    0.00   -0.23   -0.89   -1.90   -3.15   -4.51   -5.82   -6.93   -7.70   -8.03   -7.88   -7.20   -5.99   -4.22   -1.82    1.33    5.33   10.14   15.45
+    75.0    0.00   -0.23   -0.88   -1.88   -3.13   -4.49   -5.79   -6.89   -7.65   -7.98   -7.82   -7.15   -5.96   -4.21   -1.82    1.31    5.28   10.08   15.40
+    80.0    0.00   -0.23   -0.87   -1.87   -3.12   -4.46   -5.76   -6.85   -7.61   -7.94   -7.78   -7.11   -5.93   -4.20   -1.85    1.25    5.20    9.99   15.32
+    85.0    0.00   -0.22   -0.87   -1.86   -3.10   -4.44   -5.74   -6.83   -7.58   -7.91   -7.75   -7.09   -5.92   -4.21   -1.89    1.17    5.09    9.86   15.20
+    90.0    0.00   -0.22   -0.86   -1.86   -3.09   -4.43   -5.72   -6.81   -7.56   -7.89   -7.73   -7.08   -5.92   -4.24   -1.95    1.08    4.96    9.71   15.05
+    95.0    0.00   -0.22   -0.86   -1.85   -3.09   -4.42   -5.71   -6.80   -7.56   -7.89   -7.73   -7.09   -5.94   -4.28   -2.02    0.97    4.82    9.54   14.88
+   100.0    0.00   -0.22   -0.86   -1.85   -3.08   -4.42   -5.71   -6.80   -7.56   -7.90   -7.75   -7.11   -5.98   -4.34   -2.11    0.86    4.68    9.37   14.70
+   105.0    0.00   -0.22   -0.86   -1.85   -3.08   -4.42   -5.72   -6.81   -7.58   -7.92   -7.78   -7.16   -6.04   -4.41   -2.19    0.75    4.54    9.21   14.52
+   110.0    0.00   -0.21   -0.85   -1.85   -3.09   -4.43   -5.73   -6.83   -7.61   -7.96   -7.83   -7.21   -6.10   -4.49   -2.28    0.64    4.42    9.07   14.35
+   115.0    0.00   -0.21   -0.85   -1.85   -3.09   -4.44   -5.75   -6.86   -7.65   -8.01   -7.89   -7.28   -6.18   -4.57   -2.36    0.56    4.32    8.95   14.20
+   120.0    0.00   -0.21   -0.86   -1.86   -3.10   -4.46   -5.77   -6.90   -7.69   -8.06   -7.95   -7.35   -6.25   -4.64   -2.44    0.48    4.25    8.86   14.08
+   125.0    0.00   -0.21   -0.86   -1.86   -3.12   -4.48   -5.80   -6.93   -7.73   -8.11   -8.01   -7.42   -6.33   -4.72   -2.50    0.43    4.20    8.81   13.99
+   130.0    0.00   -0.21   -0.86   -1.87   -3.13   -4.50   -5.83   -6.97   -7.78   -8.16   -8.07   -7.48   -6.39   -4.78   -2.55    0.40    4.18    8.78   13.94
+   135.0    0.00   -0.21   -0.86   -1.88   -3.15   -4.53   -5.86   -7.01   -7.82   -8.21   -8.12   -7.54   -6.45   -4.83   -2.59    0.38    4.17    8.78   13.92
+   140.0    0.00   -0.21   -0.86   -1.89   -3.16   -4.55   -5.89   -7.04   -7.85   -8.24   -8.16   -7.58   -6.49   -4.87   -2.62    0.37    4.18    8.79   13.93
+   145.0    0.00   -0.21   -0.87   -1.89   -3.18   -4.57   -5.92   -7.07   -7.88   -8.28   -8.19   -7.61   -6.52   -4.89   -2.63    0.37    4.19    8.81   13.95
+   150.0    0.00   -0.21   -0.87   -1.90   -3.19   -4.59   -5.95   -7.10   -7.91   -8.30   -8.21   -7.63   -6.54   -4.90   -2.63    0.37    4.21    8.83   13.98
+   155.0    0.00   -0.21   -0.87   -1.91   -3.20   -4.61   -5.97   -7.12   -7.93   -8.32   -8.23   -7.65   -6.55   -4.91   -2.64    0.38    4.21    8.84   14.00
+   160.0    0.00   -0.21   -0.87   -1.91   -3.21   -4.63   -5.98   -7.13   -7.94   -8.33   -8.24   -7.65   -6.56   -4.91   -2.64    0.38    4.21    8.83   14.00
+   165.0    0.00   -0.21   -0.88   -1.92   -3.22   -4.64   -6.00   -7.14   -7.95   -8.34   -8.24   -7.65   -6.55   -4.91   -2.64    0.37    4.19    8.81   13.98
+   170.0    0.00   -0.21   -0.88   -1.92   -3.23   -4.64   -6.00   -7.15   -7.96   -8.34   -8.25   -7.65   -6.55   -4.91   -2.64    0.35    4.16    8.76   13.93
+   175.0    0.00   -0.21   -0.88   -1.92   -3.23   -4.65   -6.01   -7.16   -7.97   -8.35   -8.25   -7.65   -6.55   -4.90   -2.64    0.33    4.11    8.70   13.87
+   180.0    0.00   -0.21   -0.88   -1.92   -3.23   -4.65   -6.01   -7.16   -7.97   -8.35   -8.25   -7.66   -6.55   -4.90   -2.65    0.31    4.07    8.63   13.79
+   185.0    0.00   -0.21   -0.88   -1.92   -3.23   -4.64   -6.00   -7.16   -7.97   -8.36   -8.26   -7.66   -6.55   -4.90   -2.66    0.28    4.02    8.57   13.72
+   190.0    0.00   -0.21   -0.87   -1.92   -3.22   -4.64   -6.00   -7.15   -7.97   -8.36   -8.26   -7.66   -6.54   -4.90   -2.67    0.26    3.99    8.52   13.66
+   195.0    0.00   -0.21   -0.87   -1.91   -3.21   -4.63   -5.99   -7.15   -7.97   -8.35   -8.25   -7.65   -6.53   -4.89   -2.66    0.26    3.97    8.50   13.64
+   200.0    0.00   -0.21   -0.87   -1.91   -3.20   -4.61   -5.98   -7.14   -7.96   -8.34   -8.24   -7.63   -6.52   -4.88   -2.65    0.27    3.98    8.52   13.67
+   205.0    0.00   -0.21   -0.87   -1.90   -3.19   -4.60   -5.96   -7.12   -7.94   -8.33   -8.22   -7.61   -6.49   -4.85   -2.62    0.30    4.03    8.58   13.75
+   210.0    0.00   -0.21   -0.87   -1.89   -3.18   -4.59   -5.94   -7.10   -7.92   -8.30   -8.19   -7.57   -6.45   -4.80   -2.57    0.35    4.11    8.70   13.88
+   215.0    0.00   -0.21   -0.86   -1.89   -3.17   -4.57   -5.92   -7.08   -7.89   -8.26   -8.14   -7.52   -6.39   -4.74   -2.51    0.44    4.22    8.85   14.06
+   220.0    0.00   -0.21   -0.86   -1.88   -3.16   -4.55   -5.90   -7.05   -7.85   -8.22   -8.09   -7.46   -6.32   -4.67   -2.42    0.54    4.36    9.04   14.28
+   225.0    0.00   -0.21   -0.86   -1.88   -3.15   -4.53   -5.88   -7.01   -7.81   -8.17   -8.03   -7.38   -6.24   -4.58   -2.32    0.67    4.53    9.25   14.52
+   230.0    0.00   -0.21   -0.86   -1.87   -3.14   -4.52   -5.85   -6.98   -7.77   -8.11   -7.96   -7.30   -6.15   -4.48   -2.20    0.81    4.71    9.46   14.74
+   235.0    0.00   -0.21   -0.86   -1.87   -3.13   -4.50   -5.83   -6.95   -7.72   -8.05   -7.89   -7.22   -6.06   -4.37   -2.08    0.96    4.88    9.66   14.94
+   240.0    0.00   -0.22   -0.86   -1.86   -3.12   -4.49   -5.80   -6.91   -7.68   -7.99   -7.82   -7.14   -5.97   -4.27   -1.96    1.10    5.04    9.83   15.09
+   245.0    0.00   -0.22   -0.86   -1.86   -3.12   -4.48   -5.78   -6.88   -7.64   -7.94   -7.76   -7.07   -5.88   -4.17   -1.84    1.23    5.18    9.95   15.17
+   250.0    0.00   -0.22   -0.86   -1.87   -3.11   -4.47   -5.77   -6.86   -7.60   -7.90   -7.71   -7.01   -5.81   -4.08   -1.74    1.34    5.27   10.01   15.19
+   255.0    0.00   -0.22   -0.87   -1.87   -3.12   -4.47   -5.76   -6.84   -7.58   -7.87   -7.67   -6.97   -5.76   -4.01   -1.66    1.41    5.32   10.00   15.12
+   260.0    0.00   -0.22   -0.87   -1.87   -3.12   -4.47   -5.76   -6.84   -7.57   -7.86   -7.65   -6.94   -5.72   -3.97   -1.61    1.45    5.32    9.94   15.00
+   265.0    0.00   -0.23   -0.88   -1.88   -3.13   -4.48   -5.77   -6.84   -7.57   -7.86   -7.65   -6.93   -5.70   -3.94   -1.59    1.45    5.26    9.81   14.82
+   270.0    0.00   -0.23   -0.88   -1.89   -3.14   -4.49   -5.78   -6.85   -7.58   -7.87   -7.66   -6.94   -5.71   -3.94   -1.60    1.41    5.16    9.65   14.61
+   275.0    0.00   -0.23   -0.89   -1.90   -3.16   -4.51   -5.80   -6.88   -7.61   -7.90   -7.69   -6.97   -5.73   -3.97   -1.64    1.33    5.03    9.45   14.39
+   280.0    0.00   -0.23   -0.90   -1.92   -3.18   -4.54   -5.83   -6.91   -7.64   -7.93   -7.73   -7.01   -5.77   -4.02   -1.71    1.23    4.87    9.24   14.18
+   285.0    0.00   -0.24   -0.91   -1.93   -3.20   -4.56   -5.87   -6.95   -7.69   -7.98   -7.78   -7.06   -5.83   -4.09   -1.80    1.10    4.70    9.04   13.99
+   290.0    0.00   -0.24   -0.91   -1.95   -3.23   -4.60   -5.91   -7.00   -7.74   -8.04   -7.83   -7.12   -5.90   -4.17   -1.91    0.96    4.53    8.85   13.85
+   295.0    0.00   -0.24   -0.92   -1.96   -3.25   -4.63   -5.95   -7.05   -7.79   -8.09   -7.90   -7.19   -5.97   -4.26   -2.02    0.82    4.37    8.70   13.74
+   300.0    0.00   -0.25   -0.93   -1.98   -3.28   -4.67   -6.00   -7.10   -7.85   -8.15   -7.96   -7.26   -6.06   -4.36   -2.14    0.69    4.23    8.58   13.68
+   305.0    0.00   -0.25   -0.94   -2.00   -3.30   -4.71   -6.04   -7.16   -7.91   -8.21   -8.02   -7.32   -6.14   -4.46   -2.26    0.57    4.12    8.51   13.66
+   310.0    0.00   -0.25   -0.95   -2.01   -3.33   -4.74   -6.09   -7.21   -7.97   -8.27   -8.08   -7.39   -6.22   -4.55   -2.36    0.46    4.04    8.47   13.66
+   315.0    0.00   -0.26   -0.96   -2.03   -3.35   -4.78   -6.13   -7.26   -8.02   -8.33   -8.14   -7.45   -6.29   -4.64   -2.45    0.39    4.00    8.46   13.68
+   320.0    0.00   -0.26   -0.96   -2.04   -3.37   -4.81   -6.17   -7.30   -8.07   -8.38   -8.19   -7.51   -6.35   -4.71   -2.52    0.33    3.97    8.47   13.69
+   325.0    0.00   -0.26   -0.97   -2.05   -3.39   -4.83   -6.20   -7.34   -8.11   -8.42   -8.23   -7.55   -6.40   -4.76   -2.57    0.30    3.97    8.50   13.71
+   330.0    0.00   -0.26   -0.98   -2.06   -3.41   -4.85   -6.23   -7.37   -8.14   -8.45   -8.27   -7.59   -6.44   -4.81   -2.61    0.28    3.98    8.53   13.70
+   335.0    0.00   -0.26   -0.98   -2.07   -3.42   -4.87   -6.25   -7.40   -8.17   -8.48   -8.30   -7.62   -6.47   -4.83   -2.63    0.28    4.01    8.56   13.69
+   340.0    0.00   -0.27   -0.98   -2.07   -3.42   -4.88   -6.27   -7.42   -8.19   -8.51   -8.32   -7.64   -6.48   -4.84   -2.63    0.29    4.03    8.59   13.67
+   345.0    0.00   -0.27   -0.98   -2.08   -3.43   -4.88   -6.27   -7.43   -8.21   -8.52   -8.33   -7.64   -6.48   -4.84   -2.62    0.30    4.06    8.61   13.65
+   350.0    0.00   -0.27   -0.98   -2.08   -3.43   -4.88   -6.28   -7.43   -8.22   -8.53   -8.33   -7.64   -6.48   -4.82   -2.60    0.33    4.08    8.63   13.63
+   355.0    0.00   -0.27   -0.98   -2.07   -3.42   -4.88   -6.27   -7.43   -8.22   -8.53   -8.33   -7.63   -6.46   -4.80   -2.58    0.35    4.11    8.65   13.64
+   360.0    0.00   -0.27   -0.98   -2.07   -3.42   -4.87   -6.26   -7.43   -8.21   -8.53   -8.32   -7.62   -6.44   -4.77   -2.54    0.39    4.14    8.68   13.67
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.08     -0.59     88.35                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.13   -0.51   -1.08   -1.79   -2.58   -3.39   -4.17   -4.81   -5.21   -5.25   -4.86   -4.03   -2.83   -1.33    0.49    2.75    5.68    9.44
+     0.0    0.00   -0.12   -0.48   -1.02   -1.69   -2.44   -3.24   -4.04   -4.72   -5.17   -5.25   -4.89   -4.12   -3.00   -1.59    0.15    2.44    5.50    9.31
+     5.0    0.00   -0.12   -0.48   -1.02   -1.69   -2.44   -3.24   -4.03   -4.72   -5.16   -5.25   -4.90   -4.13   -3.01   -1.61    0.14    2.42    5.45    9.20
+    10.0    0.00   -0.12   -0.47   -1.01   -1.68   -2.44   -3.24   -4.03   -4.71   -5.15   -5.24   -4.90   -4.13   -3.02   -1.61    0.14    2.41    5.41    9.12
+    15.0    0.00   -0.12   -0.47   -1.01   -1.68   -2.44   -3.24   -4.02   -4.70   -5.14   -5.23   -4.89   -4.13   -3.02   -1.60    0.15    2.41    5.38    9.06
+    20.0    0.00   -0.11   -0.47   -1.01   -1.68   -2.44   -3.24   -4.02   -4.69   -5.13   -5.21   -4.88   -4.12   -3.00   -1.58    0.18    2.43    5.37    9.05
+    25.0    0.00   -0.11   -0.46   -1.00   -1.68   -2.44   -3.24   -4.02   -4.68   -5.11   -5.20   -4.86   -4.10   -2.97   -1.54    0.22    2.46    5.39    9.06
+    30.0    0.00   -0.11   -0.46   -1.00   -1.68   -2.45   -3.24   -4.01   -4.67   -5.09   -5.18   -4.84   -4.07   -2.93   -1.49    0.28    2.51    5.42    9.11
+    35.0    0.00   -0.11   -0.46   -1.00   -1.68   -2.45   -3.24   -4.01   -4.66   -5.08   -5.16   -4.81   -4.03   -2.88   -1.42    0.35    2.58    5.48    9.19
+    40.0    0.00   -0.11   -0.45   -1.00   -1.68   -2.45   -3.25   -4.01   -4.65   -5.06   -5.13   -4.78   -4.00   -2.83   -1.36    0.42    2.65    5.55    9.30
+    45.0    0.00   -0.10   -0.45   -0.99   -1.68   -2.45   -3.25   -4.01   -4.65   -5.05   -5.11   -4.75   -3.96   -2.78   -1.30    0.49    2.72    5.62    9.41
+    50.0    0.00   -0.10   -0.45   -0.99   -1.68   -2.45   -3.25   -4.01   -4.65   -5.05   -5.10   -4.72   -3.92   -2.73   -1.24    0.56    2.78    5.69    9.52
+    55.0    0.00   -0.10   -0.45   -0.99   -1.68   -2.46   -3.26   -4.02   -4.65   -5.04   -5.09   -4.70   -3.88   -2.69   -1.19    0.60    2.84    5.76    9.62
+    60.0    0.00   -0.10   -0.44   -0.99   -1.68   -2.46   -3.27   -4.03   -4.66   -5.05   -5.08   -4.68   -3.86   -2.66   -1.16    0.64    2.87    5.81    9.70
+    65.0    0.00   -0.10   -0.44   -0.99   -1.69   -2.47   -3.28   -4.05   -4.68   -5.06   -5.08   -4.67   -3.84   -2.64   -1.15    0.65    2.89    5.84    9.76
+    70.0    0.00   -0.10   -0.44   -0.99   -1.69   -2.48   -3.30   -4.07   -4.70   -5.07   -5.08   -4.67   -3.83   -2.64   -1.15    0.64    2.88    5.85    9.79
+    75.0    0.00   -0.10   -0.44   -0.99   -1.69   -2.49   -3.31   -4.09   -4.72   -5.09   -5.09   -4.67   -3.84   -2.65   -1.17    0.61    2.86    5.83    9.78
+    80.0    0.00   -0.10   -0.45   -1.00   -1.70   -2.50   -3.33   -4.12   -4.75   -5.11   -5.11   -4.68   -3.85   -2.67   -1.21    0.57    2.82    5.80    9.74
+    85.0    0.00   -0.10   -0.45   -1.00   -1.71   -2.52   -3.36   -4.14   -4.78   -5.14   -5.13   -4.70   -3.87   -2.70   -1.25    0.52    2.77    5.75    9.67
+    90.0    0.00   -0.10   -0.45   -1.01   -1.72   -2.54   -3.38   -4.17   -4.81   -5.17   -5.15   -4.72   -3.89   -2.73   -1.29    0.47    2.71    5.68    9.57
+    95.0    0.00   -0.10   -0.46   -1.02   -1.74   -2.55   -3.40   -4.20   -4.83   -5.19   -5.18   -4.74   -3.92   -2.77   -1.33    0.42    2.66    5.62    9.47
+   100.0    0.00   -0.11   -0.46   -1.03   -1.75   -2.58   -3.43   -4.22   -4.86   -5.22   -5.20   -4.77   -3.95   -2.80   -1.37    0.38    2.61    5.56    9.36
+   105.0    0.00   -0.11   -0.47   -1.04   -1.77   -2.60   -3.45   -4.25   -4.88   -5.24   -5.22   -4.79   -3.97   -2.82   -1.40    0.35    2.58    5.51    9.26
+   110.0    0.00   -0.11   -0.48   -1.05   -1.79   -2.62   -3.47   -4.27   -4.90   -5.26   -5.25   -4.82   -4.00   -2.84   -1.41    0.35    2.57    5.48    9.18
+   115.0    0.00   -0.11   -0.48   -1.07   -1.81   -2.64   -3.50   -4.29   -4.92   -5.28   -5.26   -4.84   -4.01   -2.85   -1.41    0.36    2.58    5.46    9.13
+   120.0    0.00   -0.12   -0.49   -1.08   -1.83   -2.66   -3.52   -4.30   -4.93   -5.29   -5.28   -4.85   -4.03   -2.86   -1.39    0.38    2.61    5.47    9.10
+   125.0    0.00   -0.12   -0.50   -1.10   -1.85   -2.68   -3.53   -4.32   -4.94   -5.30   -5.29   -4.87   -4.03   -2.85   -1.37    0.43    2.65    5.50    9.09
+   130.0    0.00   -0.12   -0.50   -1.11   -1.86   -2.70   -3.55   -4.33   -4.95   -5.30   -5.30   -4.88   -4.04   -2.84   -1.33    0.48    2.71    5.54    9.11
+   135.0    0.00   -0.12   -0.51   -1.12   -1.88   -2.72   -3.56   -4.33   -4.95   -5.30   -5.30   -4.88   -4.04   -2.82   -1.29    0.54    2.77    5.60    9.15
+   140.0    0.00   -0.13   -0.52   -1.13   -1.89   -2.73   -3.57   -4.33   -4.95   -5.31   -5.31   -4.89   -4.04   -2.80   -1.25    0.60    2.84    5.66    9.19
+   145.0    0.00   -0.13   -0.52   -1.14   -1.90   -2.74   -3.57   -4.33   -4.94   -5.31   -5.31   -4.89   -4.04   -2.79   -1.22    0.65    2.90    5.71    9.23
+   150.0    0.00   -0.13   -0.53   -1.15   -1.91   -2.74   -3.57   -4.33   -4.94   -5.31   -5.32   -4.90   -4.04   -2.78   -1.19    0.69    2.94    5.74    9.25
+   155.0    0.00   -0.13   -0.53   -1.15   -1.91   -2.74   -3.57   -4.33   -4.94   -5.31   -5.33   -4.91   -4.05   -2.78   -1.18    0.71    2.97    5.76    9.25
+   160.0    0.00   -0.13   -0.53   -1.15   -1.91   -2.74   -3.56   -4.32   -4.93   -5.31   -5.33   -4.92   -4.06   -2.78   -1.18    0.71    2.97    5.76    9.23
+   165.0    0.00   -0.14   -0.54   -1.15   -1.91   -2.73   -3.55   -4.31   -4.93   -5.31   -5.34   -4.94   -4.07   -2.80   -1.19    0.70    2.95    5.73    9.18
+   170.0    0.00   -0.14   -0.54   -1.15   -1.90   -2.72   -3.54   -4.30   -4.93   -5.32   -5.35   -4.95   -4.09   -2.82   -1.22    0.66    2.91    5.68    9.11
+   175.0    0.00   -0.14   -0.54   -1.15   -1.90   -2.71   -3.53   -4.30   -4.93   -5.32   -5.36   -4.96   -4.11   -2.84   -1.26    0.61    2.85    5.62    9.03
+   180.0    0.00   -0.14   -0.54   -1.14   -1.89   -2.70   -3.52   -4.29   -4.93   -5.33   -5.37   -4.97   -4.12   -2.87   -1.30    0.55    2.77    5.55    8.96
+   185.0    0.00   -0.14   -0.54   -1.14   -1.87   -2.69   -3.51   -4.29   -4.93   -5.34   -5.38   -4.98   -4.13   -2.89   -1.35    0.48    2.70    5.48    8.89
+   190.0    0.00   -0.14   -0.53   -1.13   -1.86   -2.67   -3.50   -4.29   -4.94   -5.34   -5.38   -4.97   -4.12   -2.90   -1.38    0.42    2.63    5.42    8.86
+   195.0    0.00   -0.14   -0.53   -1.12   -1.85   -2.66   -3.49   -4.28   -4.94   -5.34   -5.37   -4.96   -4.11   -2.90   -1.40    0.38    2.58    5.39    8.87
+   200.0    0.00   -0.14   -0.53   -1.12   -1.84   -2.65   -3.49   -4.29   -4.95   -5.34   -5.36   -4.94   -4.09   -2.89   -1.41    0.35    2.55    5.39    8.92
+   205.0    0.00   -0.15   -0.53   -1.11   -1.83   -2.64   -3.48   -4.29   -4.95   -5.34   -5.35   -4.91   -4.05   -2.86   -1.40    0.35    2.55    5.43    9.01
+   210.0    0.00   -0.15   -0.53   -1.11   -1.82   -2.63   -3.48   -4.29   -4.95   -5.34   -5.33   -4.88   -4.01   -2.82   -1.36    0.38    2.59    5.50    9.15
+   215.0    0.00   -0.15   -0.53   -1.10   -1.82   -2.63   -3.48   -4.29   -4.95   -5.33   -5.32   -4.85   -3.97   -2.77   -1.31    0.44    2.67    5.61    9.32
+   220.0    0.00   -0.15   -0.53   -1.10   -1.82   -2.63   -3.48   -4.29   -4.95   -5.32   -5.30   -4.82   -3.93   -2.71   -1.24    0.52    2.78    5.76    9.50
+   225.0    0.00   -0.15   -0.53   -1.10   -1.82   -2.63   -3.47   -4.28   -4.94   -5.31   -5.28   -4.79   -3.89   -2.66   -1.17    0.63    2.91    5.91    9.68
+   230.0    0.00   -0.15   -0.53   -1.11   -1.82   -2.63   -3.47   -4.28   -4.93   -5.30   -5.27   -4.78   -3.86   -2.61   -1.09    0.75    3.06    6.07    9.84
+   235.0    0.00   -0.15   -0.54   -1.11   -1.82   -2.63   -3.47   -4.27   -4.92   -5.29   -5.26   -4.77   -3.85   -2.58   -1.01    0.86    3.21    6.22    9.96
+   240.0    0.00   -0.15   -0.54   -1.11   -1.83   -2.63   -3.47   -4.26   -4.91   -5.28   -5.26   -4.78   -3.86   -2.56   -0.95    0.97    3.35    6.35   10.04
+   245.0    0.00   -0.15   -0.54   -1.12   -1.83   -2.63   -3.46   -4.25   -4.89   -5.27   -5.26   -4.80   -3.88   -2.56   -0.91    1.06    3.46    6.44   10.07
+   250.0    0.00   -0.15   -0.54   -1.12   -1.84   -2.63   -3.46   -4.23   -4.88   -5.26   -5.27   -4.83   -3.92   -2.58   -0.90    1.12    3.53    6.48   10.05
+   255.0    0.00   -0.16   -0.55   -1.13   -1.84   -2.64   -3.45   -4.22   -4.86   -5.26   -5.29   -4.87   -3.97   -2.63   -0.91    1.14    3.56    6.47    9.98
+   260.0    0.00   -0.16   -0.55   -1.13   -1.85   -2.64   -3.44   -4.20   -4.84   -5.25   -5.31   -4.91   -4.03   -2.68   -0.95    1.12    3.54    6.41    9.87
+   265.0    0.00   -0.16   -0.55   -1.14   -1.85   -2.64   -3.43   -4.19   -4.83   -5.25   -5.33   -4.96   -4.09   -2.75   -1.01    1.07    3.48    6.31    9.74
+   270.0    0.00   -0.16   -0.56   -1.14   -1.86   -2.63   -3.43   -4.18   -4.82   -5.25   -5.34   -5.00   -4.15   -2.82   -1.08    0.98    3.37    6.18    9.61
+   275.0    0.00   -0.16   -0.56   -1.14   -1.86   -2.63   -3.42   -4.16   -4.80   -5.24   -5.36   -5.03   -4.20   -2.89   -1.17    0.87    3.23    6.03    9.50
+   280.0    0.00   -0.16   -0.56   -1.15   -1.86   -2.63   -3.41   -4.15   -4.79   -5.24   -5.36   -5.05   -4.24   -2.95   -1.26    0.75    3.08    5.88    9.41
+   285.0    0.00   -0.16   -0.56   -1.14   -1.85   -2.62   -3.40   -4.14   -4.79   -5.23   -5.36   -5.06   -4.27   -3.00   -1.35    0.62    2.92    5.73    9.36
+   290.0    0.00   -0.16   -0.56   -1.14   -1.85   -2.61   -3.39   -4.13   -4.78   -5.23   -5.36   -5.06   -4.28   -3.04   -1.42    0.50    2.77    5.60    9.35
+   295.0    0.00   -0.16   -0.55   -1.14   -1.84   -2.60   -3.38   -4.12   -4.77   -5.22   -5.35   -5.05   -4.27   -3.05   -1.48    0.39    2.64    5.51    9.38
+   300.0    0.00   -0.15   -0.55   -1.13   -1.83   -2.59   -3.37   -4.12   -4.77   -5.21   -5.33   -5.02   -4.25   -3.06   -1.53    0.30    2.53    5.45    9.45
+   305.0    0.00   -0.15   -0.55   -1.12   -1.82   -2.57   -3.35   -4.11   -4.76   -5.20   -5.31   -4.99   -4.22   -3.04   -1.55    0.24    2.46    5.42    9.53
+   310.0    0.00   -0.15   -0.54   -1.11   -1.80   -2.56   -3.34   -4.10   -4.76   -5.20   -5.29   -4.96   -4.18   -3.02   -1.56    0.20    2.41    5.42    9.63
+   315.0    0.00   -0.15   -0.54   -1.10   -1.79   -2.54   -3.33   -4.09   -4.75   -5.19   -5.28   -4.93   -4.14   -2.99   -1.55    0.18    2.40    5.45    9.72
+   320.0    0.00   -0.15   -0.53   -1.09   -1.77   -2.52   -3.31   -4.08   -4.75   -5.18   -5.26   -4.90   -4.11   -2.96   -1.54    0.18    2.40    5.50    9.80
+   325.0    0.00   -0.14   -0.53   -1.08   -1.76   -2.51   -3.30   -4.07   -4.74   -5.18   -5.25   -4.88   -4.08   -2.94   -1.53    0.18    2.42    5.54    9.84
+   330.0    0.00   -0.14   -0.52   -1.07   -1.74   -2.49   -3.28   -4.07   -4.74   -5.18   -5.24   -4.86   -4.06   -2.92   -1.52    0.19    2.45    5.59    9.85
+   335.0    0.00   -0.14   -0.51   -1.06   -1.73   -2.48   -3.27   -4.06   -4.74   -5.17   -5.24   -4.86   -4.05   -2.92   -1.52    0.20    2.47    5.62    9.83
+   340.0    0.00   -0.14   -0.51   -1.05   -1.72   -2.46   -3.26   -4.05   -4.74   -5.17   -5.24   -4.86   -4.06   -2.92   -1.52    0.21    2.49    5.63    9.76
+   345.0    0.00   -0.13   -0.50   -1.04   -1.71   -2.46   -3.25   -4.05   -4.73   -5.17   -5.24   -4.86   -4.07   -2.93   -1.53    0.20    2.49    5.62    9.67
+   350.0    0.00   -0.13   -0.49   -1.03   -1.70   -2.45   -3.25   -4.04   -4.73   -5.17   -5.24   -4.87   -4.08   -2.95   -1.55    0.19    2.48    5.59    9.55
+   355.0    0.00   -0.13   -0.49   -1.03   -1.69   -2.44   -3.24   -4.04   -4.73   -5.17   -5.25   -4.88   -4.10   -2.98   -1.57    0.17    2.46    5.55    9.43
+   360.0    0.00   -0.12   -0.48   -1.02   -1.69   -2.44   -3.24   -4.04   -4.72   -5.17   -5.25   -4.89   -4.12   -3.00   -1.59    0.15    2.44    5.50    9.31
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+JPSLEGANT_E     NONE                                        TYPE / SERIAL NO    
+FIELD               NGS                      3    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      1.28     -0.27     35.45                              NORTH / EAST / UP   
+   NOAZI    0.00   -1.73   -2.60   -2.83   -2.82   -2.62   -2.46   -2.19   -1.97   -1.71   -1.56   -1.39   -1.23   -0.95   -0.18    1.29    3.77
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      1.62     -1.69     54.15                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.23   -0.31   -0.28   -0.29   -0.18   -0.09   -0.07   -0.01   -0.01    0.05    0.34    0.57    0.77    0.87    0.79    0.55
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+JPSODYSSEY_I    NONE                                        TYPE / SERIAL NO    
+FIELD               NGS                      1    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.98     -2.27     70.35                              NORTH / EAST / UP   
+   NOAZI    0.00    0.47    0.80    0.97    0.98    0.88    0.64    0.51    0.33    0.19    0.24    0.41    0.57    0.75    1.12    1.69    2.77
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.38     -2.29     81.25                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.03   -0.01    0.02    0.01    0.02    0.01   -0.07   -0.11   -0.21   -0.15    0.04    0.17    0.17   -0.03   -0.61   -1.45
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+JPSREGANT_DD_E  NONE                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH              12    27-JAN-03 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+      0.14     -0.27    100.81                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.10   -0.40   -0.92   -1.65   -2.53   -3.47   -4.33   -5.00   -5.38   -5.47   -5.25   -4.70   -3.76   -2.30   -0.15    2.71    6.16    9.79
+     0.0    0.00   -0.07   -0.37   -0.89   -1.64   -2.54   -3.47   -4.30   -4.92   -5.26   -5.33   -5.14   -4.68   -3.84   -2.46   -0.36    2.51    5.99    9.67
+     5.0    0.00   -0.08   -0.37   -0.90   -1.65   -2.56   -3.50   -4.35   -4.97   -5.32   -5.40   -5.22   -4.77   -3.94   -2.57   -0.49    2.38    5.87    9.58
+    10.0    0.00   -0.08   -0.38   -0.91   -1.67   -2.58   -3.53   -4.38   -5.02   -5.39   -5.48   -5.31   -4.86   -4.05   -2.69   -0.62    2.25    5.76    9.50
+    15.0    0.00   -0.08   -0.38   -0.92   -1.68   -2.60   -3.55   -4.42   -5.07   -5.45   -5.55   -5.40   -4.96   -4.15   -2.81   -0.74    2.12    5.65    9.43
+    20.0    0.00   -0.08   -0.38   -0.92   -1.69   -2.61   -3.57   -4.45   -5.12   -5.51   -5.63   -5.48   -5.05   -4.25   -2.91   -0.85    2.02    5.58    9.38
+    25.0    0.00   -0.08   -0.39   -0.93   -1.69   -2.62   -3.59   -4.47   -5.16   -5.57   -5.70   -5.56   -5.13   -4.33   -2.99   -0.93    1.96    5.54    9.37
+    30.0    0.00   -0.08   -0.39   -0.93   -1.70   -2.62   -3.60   -4.50   -5.19   -5.62   -5.76   -5.62   -5.19   -4.39   -3.04   -0.97    1.93    5.54    9.39
+    35.0    0.00   -0.09   -0.39   -0.94   -1.70   -2.63   -3.61   -4.51   -5.22   -5.65   -5.80   -5.66   -5.22   -4.41   -3.05   -0.97    1.95    5.58    9.45
+    40.0    0.00   -0.09   -0.39   -0.94   -1.70   -2.62   -3.61   -4.52   -5.24   -5.68   -5.82   -5.68   -5.23   -4.40   -3.03   -0.93    2.00    5.65    9.54
+    45.0    0.00   -0.09   -0.40   -0.94   -1.70   -2.62   -3.61   -4.52   -5.24   -5.69   -5.83   -5.67   -5.20   -4.35   -2.97   -0.85    2.09    5.75    9.65
+    50.0    0.00   -0.09   -0.40   -0.93   -1.69   -2.61   -3.60   -4.52   -5.24   -5.68   -5.81   -5.64   -5.15   -4.28   -2.87   -0.75    2.20    5.87    9.77
+    55.0    0.00   -0.09   -0.40   -0.93   -1.68   -2.60   -3.58   -4.50   -5.22   -5.66   -5.78   -5.58   -5.07   -4.18   -2.76   -0.64    2.31    5.97    9.88
+    60.0    0.00   -0.09   -0.40   -0.93   -1.68   -2.59   -3.57   -4.47   -5.19   -5.61   -5.72   -5.51   -4.98   -4.07   -2.64   -0.52    2.42    6.06    9.97
+    65.0    0.00   -0.09   -0.40   -0.93   -1.67   -2.57   -3.54   -4.44   -5.15   -5.56   -5.65   -5.42   -4.87   -3.95   -2.52   -0.41    2.50    6.12   10.01
+    70.0    0.00   -0.09   -0.40   -0.92   -1.66   -2.55   -3.51   -4.40   -5.10   -5.50   -5.57   -5.33   -4.76   -3.83   -2.40   -0.31    2.56    6.14    9.99
+    75.0    0.00   -0.09   -0.40   -0.92   -1.65   -2.54   -3.48   -4.36   -5.04   -5.43   -5.49   -5.23   -4.66   -3.72   -2.30   -0.23    2.60    6.11    9.92
+    80.0    0.00   -0.10   -0.40   -0.91   -1.64   -2.52   -3.45   -4.32   -4.98   -5.36   -5.41   -5.14   -4.56   -3.63   -2.21   -0.17    2.61    6.05    9.79
+    85.0    0.00   -0.10   -0.40   -0.91   -1.63   -2.50   -3.42   -4.28   -4.93   -5.30   -5.34   -5.07   -4.49   -3.55   -2.14   -0.13    2.60    5.96    9.61
+    90.0    0.00   -0.10   -0.40   -0.91   -1.62   -2.48   -3.40   -4.24   -4.88   -5.24   -5.29   -5.01   -4.43   -3.49   -2.08   -0.08    2.59    5.87    9.41
+    95.0    0.00   -0.10   -0.40   -0.91   -1.61   -2.47   -3.38   -4.21   -4.84   -5.20   -5.25   -4.98   -4.39   -3.44   -2.03   -0.04    2.60    5.79    9.21
+   100.0    0.00   -0.10   -0.40   -0.90   -1.61   -2.46   -3.36   -4.19   -4.82   -5.18   -5.22   -4.96   -4.37   -3.41   -1.98    0.02    2.63    5.75    9.04
+   105.0    0.00   -0.10   -0.40   -0.90   -1.61   -2.45   -3.35   -4.17   -4.80   -5.16   -5.21   -4.95   -4.36   -3.38   -1.93    0.09    2.70    5.76    8.94
+   110.0    0.00   -0.10   -0.40   -0.91   -1.61   -2.45   -3.35   -4.17   -4.80   -5.16   -5.22   -4.96   -4.36   -3.36   -1.87    0.19    2.82    5.85    8.94
+   115.0    0.00   -0.10   -0.40   -0.91   -1.61   -2.46   -3.35   -4.17   -4.80   -5.17   -5.23   -4.97   -4.36   -3.34   -1.81    0.31    2.98    6.02    9.04
+   120.0    0.00   -0.11   -0.41   -0.91   -1.61   -2.46   -3.36   -4.18   -4.81   -5.18   -5.24   -4.99   -4.37   -3.32   -1.74    0.44    3.18    6.25    9.26
+   125.0    0.00   -0.11   -0.41   -0.91   -1.62   -2.47   -3.37   -4.19   -4.82   -5.19   -5.26   -5.00   -4.38   -3.30   -1.67    0.59    3.41    6.55    9.58
+   130.0    0.00   -0.11   -0.41   -0.92   -1.63   -2.48   -3.38   -4.21   -4.84   -5.21   -5.27   -5.01   -4.38   -3.28   -1.61    0.72    3.65    6.89    9.99
+   135.0    0.00   -0.11   -0.42   -0.93   -1.64   -2.50   -3.40   -4.23   -4.86   -5.22   -5.28   -5.02   -4.38   -3.27   -1.56    0.85    3.87    7.23   10.44
+   140.0    0.00   -0.11   -0.42   -0.93   -1.65   -2.51   -3.42   -4.25   -4.88   -5.24   -5.30   -5.03   -4.39   -3.27   -1.53    0.94    4.06    7.55   10.89
+   145.0    0.00   -0.12   -0.42   -0.94   -1.66   -2.53   -3.45   -4.28   -4.91   -5.26   -5.31   -5.04   -4.40   -3.28   -1.53    0.98    4.19    7.81   11.29
+   150.0    0.00   -0.12   -0.43   -0.95   -1.68   -2.55   -3.47   -4.31   -4.93   -5.28   -5.33   -5.06   -4.43   -3.32   -1.56    0.97    4.24    7.97   11.60
+   155.0    0.00   -0.12   -0.43   -0.96   -1.69   -2.57   -3.50   -4.34   -4.97   -5.31   -5.35   -5.09   -4.46   -3.37   -1.63    0.90    4.21    8.03   11.79
+   160.0    0.00   -0.12   -0.44   -0.97   -1.71   -2.60   -3.54   -4.38   -5.01   -5.36   -5.40   -5.13   -4.52   -3.45   -1.74    0.77    4.09    7.96   11.82
+   165.0    0.00   -0.12   -0.44   -0.98   -1.72   -2.62   -3.57   -4.43   -5.07   -5.42   -5.46   -5.19   -4.60   -3.55   -1.88    0.59    3.89    7.77   11.70
+   170.0    0.00   -0.12   -0.45   -0.99   -1.74   -2.65   -3.61   -4.48   -5.13   -5.49   -5.53   -5.28   -4.69   -3.68   -2.05    0.36    3.61    7.48   11.43
+   175.0    0.00   -0.13   -0.46   -1.00   -1.76   -2.68   -3.65   -4.54   -5.21   -5.57   -5.62   -5.37   -4.80   -3.82   -2.24    0.10    3.28    7.10   11.05
+   180.0    0.00   -0.13   -0.46   -1.01   -1.78   -2.71   -3.70   -4.60   -5.28   -5.67   -5.73   -5.48   -4.92   -3.96   -2.44   -0.17    2.92    6.66   10.59
+   185.0    0.00   -0.13   -0.46   -1.02   -1.80   -2.74   -3.74   -4.66   -5.36   -5.76   -5.83   -5.60   -5.05   -4.11   -2.64   -0.44    2.56    6.22   10.10
+   190.0    0.00   -0.13   -0.47   -1.03   -1.81   -2.76   -3.78   -4.72   -5.44   -5.85   -5.94   -5.71   -5.16   -4.25   -2.82   -0.69    2.22    5.80    9.63
+   195.0    0.00   -0.13   -0.47   -1.04   -1.82   -2.78   -3.81   -4.76   -5.50   -5.93   -6.03   -5.81   -5.27   -4.37   -2.97   -0.90    1.94    5.45    9.23
+   200.0    0.00   -0.13   -0.47   -1.04   -1.83   -2.80   -3.83   -4.80   -5.55   -6.00   -6.10   -5.88   -5.35   -4.46   -3.08   -1.05    1.73    5.18    8.94
+   205.0    0.00   -0.13   -0.47   -1.04   -1.84   -2.81   -3.84   -4.82   -5.58   -6.03   -6.15   -5.94   -5.40   -4.51   -3.14   -1.14    1.60    5.02    8.76
+   210.0    0.00   -0.13   -0.47   -1.05   -1.84   -2.81   -3.84   -4.82   -5.58   -6.05   -6.17   -5.96   -5.42   -4.53   -3.16   -1.17    1.56    4.98    8.72
+   215.0    0.00   -0.13   -0.47   -1.04   -1.83   -2.80   -3.83   -4.80   -5.56   -6.03   -6.15   -5.94   -5.41   -4.50   -3.13   -1.12    1.62    5.04    8.80
+   220.0    0.00   -0.13   -0.47   -1.04   -1.82   -2.78   -3.80   -4.76   -5.52   -5.98   -6.11   -5.90   -5.36   -4.44   -3.04   -1.02    1.75    5.19    8.97
+   225.0    0.00   -0.12   -0.46   -1.03   -1.81   -2.75   -3.76   -4.71   -5.46   -5.92   -6.04   -5.83   -5.28   -4.34   -2.92   -0.85    1.95    5.41    9.21
+   230.0    0.00   -0.12   -0.46   -1.02   -1.79   -2.72   -3.71   -4.64   -5.38   -5.83   -5.95   -5.73   -5.17   -4.21   -2.75   -0.65    2.18    5.68    9.48
+   235.0    0.00   -0.12   -0.45   -1.00   -1.76   -2.68   -3.66   -4.57   -5.29   -5.73   -5.85   -5.62   -5.05   -4.07   -2.57   -0.43    2.44    5.95    9.73
+   240.0    0.00   -0.12   -0.44   -0.99   -1.73   -2.64   -3.59   -4.49   -5.20   -5.63   -5.74   -5.51   -4.92   -3.91   -2.38   -0.19    2.70    6.20    9.94
+   245.0    0.00   -0.11   -0.43   -0.97   -1.70   -2.59   -3.53   -4.41   -5.10   -5.53   -5.63   -5.39   -4.78   -3.75   -2.18    0.03    2.93    6.41   10.08
+   250.0    0.00   -0.11   -0.42   -0.95   -1.67   -2.54   -3.47   -4.33   -5.02   -5.43   -5.53   -5.28   -4.66   -3.60   -2.01    0.22    3.13    6.56   10.14
+   255.0    0.00   -0.11   -0.41   -0.93   -1.64   -2.50   -3.41   -4.26   -4.94   -5.35   -5.44   -5.18   -4.54   -3.47   -1.86    0.38    3.26    6.65   10.13
+   260.0    0.00   -0.10   -0.40   -0.91   -1.61   -2.45   -3.35   -4.20   -4.87   -5.28   -5.36   -5.10   -4.45   -3.36   -1.75    0.48    3.34    6.66   10.05
+   265.0    0.00   -0.10   -0.39   -0.89   -1.58   -2.41   -3.30   -4.14   -4.81   -5.21   -5.30   -5.03   -4.38   -3.29   -1.68    0.53    3.35    6.61    9.91
+   270.0    0.00   -0.09   -0.38   -0.87   -1.55   -2.37   -3.26   -4.09   -4.76   -5.16   -5.25   -4.98   -4.33   -3.25   -1.66    0.53    3.30    6.51    9.76
+   275.0    0.00   -0.09   -0.37   -0.85   -1.52   -2.34   -3.22   -4.06   -4.72   -5.12   -5.20   -4.94   -4.30   -3.24   -1.67    0.47    3.21    6.37    9.60
+   280.0    0.00   -0.09   -0.36   -0.84   -1.50   -2.31   -3.19   -4.02   -4.68   -5.08   -5.17   -4.91   -4.29   -3.26   -1.73    0.38    3.08    6.23    9.45
+   285.0    0.00   -0.08   -0.35   -0.82   -1.48   -2.29   -3.17   -4.00   -4.65   -5.05   -5.14   -4.89   -4.30   -3.30   -1.81    0.26    2.94    6.09    9.35
+   290.0    0.00   -0.08   -0.35   -0.81   -1.47   -2.28   -3.15   -3.97   -4.63   -5.02   -5.11   -4.88   -4.31   -3.35   -1.90    0.14    2.80    5.97    9.29
+   295.0    0.00   -0.08   -0.34   -0.80   -1.46   -2.27   -3.14   -3.96   -4.61   -5.00   -5.09   -4.87   -4.34   -3.42   -2.01    0.01    2.68    5.88    9.28
+   300.0    0.00   -0.08   -0.34   -0.80   -1.45   -2.26   -3.13   -3.95   -4.59   -4.97   -5.07   -4.87   -4.36   -3.48   -2.10   -0.10    2.58    5.83    9.31
+   305.0    0.00   -0.07   -0.33   -0.79   -1.45   -2.27   -3.14   -3.95   -4.58   -4.95   -5.05   -4.86   -4.38   -3.53   -2.18   -0.18    2.52    5.82    9.39
+   310.0    0.00   -0.07   -0.33   -0.80   -1.46   -2.27   -3.15   -3.95   -4.57   -4.94   -5.03   -4.86   -4.40   -3.57   -2.24   -0.24    2.50    5.85    9.48
+   315.0    0.00   -0.07   -0.33   -0.80   -1.47   -2.29   -3.16   -3.96   -4.58   -4.93   -5.02   -4.85   -4.41   -3.60   -2.27   -0.26    2.51    5.91    9.59
+   320.0    0.00   -0.07   -0.33   -0.80   -1.48   -2.31   -3.19   -3.98   -4.59   -4.94   -5.02   -4.85   -4.42   -3.61   -2.28   -0.25    2.55    5.99    9.70
+   325.0    0.00   -0.07   -0.33   -0.81   -1.50   -2.33   -3.21   -4.01   -4.61   -4.95   -5.03   -4.86   -4.42   -3.62   -2.27   -0.22    2.61    6.07    9.79
+   330.0    0.00   -0.07   -0.34   -0.82   -1.52   -2.36   -3.25   -4.04   -4.64   -4.97   -5.04   -4.87   -4.43   -3.62   -2.26   -0.18    2.67    6.14    9.86
+   335.0    0.00   -0.07   -0.34   -0.83   -1.54   -2.39   -3.28   -4.08   -4.67   -5.00   -5.07   -4.89   -4.44   -3.62   -2.25   -0.15    2.72    6.20    9.90
+   340.0    0.00   -0.07   -0.35   -0.84   -1.56   -2.42   -3.32   -4.12   -4.72   -5.04   -5.10   -4.92   -4.46   -3.63   -2.24   -0.14    2.74    6.22    9.91
+   345.0    0.00   -0.07   -0.35   -0.86   -1.58   -2.45   -3.36   -4.17   -4.76   -5.09   -5.14   -4.95   -4.49   -3.65   -2.26   -0.15    2.73    6.21    9.88
+   350.0    0.00   -0.07   -0.36   -0.87   -1.60   -2.48   -3.40   -4.22   -4.81   -5.14   -5.20   -5.01   -4.54   -3.70   -2.30   -0.19    2.69    6.17    9.83
+   355.0    0.00   -0.07   -0.36   -0.88   -1.62   -2.51   -3.44   -4.26   -4.87   -5.20   -5.26   -5.07   -4.60   -3.76   -2.37   -0.26    2.61    6.09    9.76
+   360.0    0.00   -0.07   -0.37   -0.89   -1.64   -2.54   -3.47   -4.30   -4.92   -5.26   -5.33   -5.14   -4.68   -3.84   -2.46   -0.36    2.51    5.99    9.67
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.21      0.21    116.46                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.04   -0.18   -0.42   -0.79   -1.25   -1.75   -2.19   -2.51   -2.66   -2.66   -2.55   -2.37   -2.08   -1.55   -0.57    1.05    3.40    6.32
+     0.0    0.00   -0.06   -0.21   -0.46   -0.81   -1.25   -1.76   -2.24   -2.60   -2.79   -2.78   -2.60   -2.31   -1.92   -1.33   -0.36    1.25    3.61    6.59
+     5.0    0.00   -0.06   -0.21   -0.45   -0.80   -1.25   -1.75   -2.22   -2.58   -2.75   -2.73   -2.55   -2.25   -1.85   -1.26   -0.29    1.30    3.65    6.64
+    10.0    0.00   -0.06   -0.21   -0.45   -0.80   -1.24   -1.74   -2.20   -2.55   -2.72   -2.68   -2.49   -2.19   -1.79   -1.20   -0.24    1.35    3.69    6.68
+    15.0    0.00   -0.06   -0.20   -0.44   -0.79   -1.24   -1.73   -2.19   -2.52   -2.67   -2.63   -2.43   -2.14   -1.74   -1.16   -0.19    1.39    3.72    6.69
+    20.0    0.00   -0.06   -0.20   -0.44   -0.79   -1.23   -1.72   -2.16   -2.49   -2.63   -2.58   -2.38   -2.10   -1.71   -1.13   -0.15    1.43    3.76    6.69
+    25.0    0.00   -0.05   -0.19   -0.43   -0.78   -1.22   -1.71   -2.14   -2.45   -2.58   -2.53   -2.34   -2.07   -1.70   -1.12   -0.13    1.48    3.80    6.68
+    30.0    0.00   -0.05   -0.19   -0.43   -0.78   -1.22   -1.70   -2.12   -2.42   -2.53   -2.48   -2.31   -2.05   -1.70   -1.12   -0.11    1.52    3.84    6.67
+    35.0    0.00   -0.05   -0.18   -0.42   -0.77   -1.21   -1.69   -2.10   -2.39   -2.50   -2.44   -2.29   -2.05   -1.72   -1.14   -0.11    1.55    3.89    6.65
+    40.0    0.00   -0.05   -0.18   -0.42   -0.77   -1.21   -1.68   -2.09   -2.36   -2.47   -2.42   -2.28   -2.07   -1.75   -1.16   -0.11    1.59    3.93    6.65
+    45.0    0.00   -0.04   -0.17   -0.41   -0.77   -1.21   -1.68   -2.09   -2.35   -2.45   -2.41   -2.28   -2.09   -1.78   -1.20   -0.12    1.61    3.97    6.65
+    50.0    0.00   -0.04   -0.17   -0.41   -0.77   -1.21   -1.69   -2.09   -2.35   -2.45   -2.41   -2.29   -2.11   -1.82   -1.23   -0.13    1.62    4.00    6.66
+    55.0    0.00   -0.04   -0.17   -0.41   -0.77   -1.22   -1.70   -2.10   -2.36   -2.46   -2.42   -2.31   -2.15   -1.85   -1.26   -0.15    1.63    4.02    6.69
+    60.0    0.00   -0.04   -0.16   -0.40   -0.77   -1.23   -1.71   -2.12   -2.39   -2.49   -2.45   -2.34   -2.18   -1.89   -1.29   -0.18    1.61    4.03    6.73
+    65.0    0.00   -0.03   -0.16   -0.40   -0.77   -1.24   -1.73   -2.15   -2.43   -2.53   -2.50   -2.39   -2.22   -1.92   -1.33   -0.21    1.59    4.02    6.78
+    70.0    0.00   -0.03   -0.16   -0.40   -0.78   -1.26   -1.76   -2.19   -2.47   -2.58   -2.55   -2.44   -2.26   -1.96   -1.36   -0.24    1.55    4.00    6.83
+    75.0    0.00   -0.03   -0.15   -0.40   -0.78   -1.27   -1.78   -2.23   -2.52   -2.64   -2.62   -2.50   -2.32   -2.00   -1.39   -0.28    1.50    3.97    6.88
+    80.0    0.00   -0.03   -0.15   -0.40   -0.79   -1.28   -1.81   -2.26   -2.57   -2.71   -2.69   -2.57   -2.38   -2.05   -1.44   -0.33    1.45    3.93    6.93
+    85.0    0.00   -0.03   -0.15   -0.40   -0.80   -1.30   -1.83   -2.30   -2.62   -2.77   -2.76   -2.65   -2.45   -2.12   -1.50   -0.39    1.38    3.89    6.97
+    90.0    0.00   -0.02   -0.15   -0.41   -0.80   -1.31   -1.85   -2.32   -2.66   -2.83   -2.84   -2.74   -2.54   -2.19   -1.57   -0.46    1.31    3.83    7.00
+    95.0    0.00   -0.02   -0.15   -0.41   -0.81   -1.32   -1.86   -2.35   -2.70   -2.88   -2.91   -2.82   -2.63   -2.29   -1.66   -0.55    1.23    3.78    7.01
+   100.0    0.00   -0.02   -0.15   -0.41   -0.81   -1.32   -1.87   -2.36   -2.72   -2.92   -2.97   -2.91   -2.73   -2.39   -1.76   -0.64    1.15    3.72    7.00
+   105.0    0.00   -0.02   -0.15   -0.41   -0.82   -1.33   -1.87   -2.36   -2.73   -2.95   -3.02   -2.98   -2.83   -2.50   -1.86   -0.73    1.07    3.66    6.97
+   110.0    0.00   -0.02   -0.15   -0.42   -0.82   -1.33   -1.87   -2.36   -2.73   -2.96   -3.06   -3.04   -2.91   -2.60   -1.97   -0.83    0.99    3.60    6.93
+   115.0    0.00   -0.02   -0.15   -0.42   -0.83   -1.33   -1.86   -2.34   -2.72   -2.95   -3.07   -3.09   -2.98   -2.69   -2.07   -0.93    0.91    3.53    6.87
+   120.0    0.00   -0.02   -0.15   -0.42   -0.83   -1.33   -1.86   -2.33   -2.70   -2.94   -3.07   -3.10   -3.03   -2.76   -2.15   -1.02    0.82    3.46    6.81
+   125.0    0.00   -0.02   -0.15   -0.42   -0.83   -1.33   -1.85   -2.31   -2.67   -2.91   -3.05   -3.10   -3.04   -2.80   -2.21   -1.09    0.75    3.39    6.74
+   130.0    0.00   -0.02   -0.15   -0.43   -0.83   -1.33   -1.84   -2.29   -2.64   -2.87   -3.00   -3.06   -3.02   -2.80   -2.24   -1.14    0.68    3.32    6.66
+   135.0    0.00   -0.02   -0.15   -0.43   -0.83   -1.32   -1.83   -2.27   -2.61   -2.82   -2.95   -3.00   -2.97   -2.77   -2.24   -1.17    0.62    3.24    6.59
+   140.0    0.00   -0.02   -0.16   -0.43   -0.83   -1.32   -1.82   -2.25   -2.57   -2.77   -2.88   -2.92   -2.88   -2.69   -2.19   -1.17    0.58    3.18    6.52
+   145.0    0.00   -0.02   -0.16   -0.43   -0.83   -1.31   -1.80   -2.23   -2.54   -2.72   -2.81   -2.82   -2.78   -2.59   -2.12   -1.14    0.57    3.12    6.45
+   150.0    0.00   -0.02   -0.16   -0.43   -0.82   -1.30   -1.79   -2.21   -2.51   -2.67   -2.73   -2.72   -2.65   -2.47   -2.02   -1.08    0.57    3.08    6.38
+   155.0    0.00   -0.02   -0.16   -0.42   -0.82   -1.29   -1.78   -2.19   -2.48   -2.63   -2.66   -2.62   -2.53   -2.33   -1.89   -1.00    0.60    3.05    6.30
+   160.0    0.00   -0.02   -0.16   -0.42   -0.81   -1.28   -1.76   -2.17   -2.46   -2.59   -2.60   -2.54   -2.41   -2.19   -1.76   -0.89    0.65    3.04    6.23
+   165.0    0.00   -0.02   -0.16   -0.42   -0.80   -1.27   -1.74   -2.15   -2.43   -2.56   -2.56   -2.46   -2.31   -2.06   -1.62   -0.77    0.72    3.04    6.15
+   170.0    0.00   -0.02   -0.16   -0.41   -0.79   -1.25   -1.73   -2.13   -2.41   -2.54   -2.52   -2.41   -2.22   -1.95   -1.49   -0.64    0.81    3.06    6.07
+   175.0    0.00   -0.02   -0.16   -0.41   -0.78   -1.24   -1.71   -2.12   -2.40   -2.52   -2.50   -2.37   -2.16   -1.86   -1.37   -0.52    0.91    3.09    5.98
+   180.0    0.00   -0.02   -0.16   -0.41   -0.78   -1.23   -1.69   -2.10   -2.38   -2.51   -2.49   -2.35   -2.12   -1.78   -1.26   -0.40    1.02    3.12    5.89
+   185.0    0.00   -0.03   -0.16   -0.40   -0.77   -1.21   -1.68   -2.09   -2.37   -2.51   -2.49   -2.34   -2.09   -1.73   -1.18   -0.29    1.11    3.16    5.80
+   190.0    0.00   -0.03   -0.16   -0.40   -0.76   -1.21   -1.67   -2.08   -2.37   -2.51   -2.49   -2.34   -2.08   -1.70   -1.12   -0.20    1.20    3.19    5.72
+   195.0    0.00   -0.03   -0.16   -0.40   -0.76   -1.20   -1.66   -2.07   -2.36   -2.50   -2.49   -2.34   -2.08   -1.68   -1.08   -0.14    1.27    3.22    5.66
+   200.0    0.00   -0.03   -0.16   -0.40   -0.76   -1.20   -1.66   -2.07   -2.36   -2.50   -2.49   -2.34   -2.08   -1.67   -1.05   -0.10    1.32    3.25    5.61
+   205.0    0.00   -0.03   -0.16   -0.40   -0.76   -1.20   -1.66   -2.07   -2.36   -2.49   -2.48   -2.33   -2.07   -1.67   -1.05   -0.08    1.34    3.26    5.59
+   210.0    0.00   -0.03   -0.16   -0.40   -0.76   -1.20   -1.67   -2.07   -2.36   -2.48   -2.46   -2.31   -2.06   -1.67   -1.05   -0.09    1.34    3.27    5.59
+   215.0    0.00   -0.03   -0.16   -0.40   -0.76   -1.21   -1.67   -2.08   -2.35   -2.47   -2.43   -2.28   -2.04   -1.66   -1.07   -0.11    1.32    3.28    5.63
+   220.0    0.00   -0.04   -0.16   -0.41   -0.77   -1.22   -1.68   -2.08   -2.35   -2.45   -2.40   -2.25   -2.02   -1.67   -1.10   -0.16    1.29    3.27    5.69
+   225.0    0.00   -0.04   -0.17   -0.41   -0.77   -1.22   -1.69   -2.08   -2.34   -2.42   -2.37   -2.21   -1.99   -1.67   -1.13   -0.21    1.24    3.27    5.78
+   230.0    0.00   -0.04   -0.17   -0.41   -0.77   -1.22   -1.69   -2.08   -2.33   -2.40   -2.33   -2.18   -1.98   -1.69   -1.18   -0.28    1.18    3.27    5.89
+   235.0    0.00   -0.04   -0.17   -0.41   -0.77   -1.22   -1.69   -2.08   -2.32   -2.38   -2.31   -2.16   -1.98   -1.71   -1.24   -0.35    1.12    3.27    6.01
+   240.0    0.00   -0.04   -0.17   -0.41   -0.77   -1.22   -1.69   -2.07   -2.31   -2.37   -2.30   -2.16   -1.99   -1.75   -1.30   -0.43    1.06    3.27    6.12
+   245.0    0.00   -0.04   -0.18   -0.41   -0.77   -1.22   -1.68   -2.07   -2.30   -2.37   -2.30   -2.17   -2.02   -1.80   -1.38   -0.52    1.00    3.27    6.23
+   250.0    0.00   -0.05   -0.18   -0.42   -0.77   -1.21   -1.67   -2.06   -2.30   -2.37   -2.32   -2.20   -2.06   -1.87   -1.46   -0.60    0.93    3.27    6.31
+   255.0    0.00   -0.05   -0.18   -0.42   -0.76   -1.20   -1.66   -2.06   -2.31   -2.40   -2.35   -2.25   -2.12   -1.94   -1.54   -0.68    0.87    3.25    6.37
+   260.0    0.00   -0.05   -0.18   -0.42   -0.76   -1.20   -1.66   -2.06   -2.33   -2.43   -2.40   -2.31   -2.20   -2.02   -1.62   -0.76    0.82    3.23    6.39
+   265.0    0.00   -0.05   -0.18   -0.42   -0.76   -1.19   -1.66   -2.07   -2.35   -2.47   -2.46   -2.38   -2.27   -2.10   -1.70   -0.83    0.76    3.20    6.38
+   270.0    0.00   -0.05   -0.19   -0.42   -0.76   -1.19   -1.66   -2.09   -2.39   -2.53   -2.53   -2.46   -2.35   -2.17   -1.77   -0.90    0.70    3.15    6.34
+   275.0    0.00   -0.06   -0.19   -0.42   -0.76   -1.19   -1.67   -2.11   -2.43   -2.59   -2.60   -2.53   -2.42   -2.24   -1.83   -0.96    0.65    3.10    6.26
+   280.0    0.00   -0.06   -0.19   -0.42   -0.76   -1.20   -1.69   -2.14   -2.48   -2.65   -2.67   -2.60   -2.48   -2.29   -1.88   -1.01    0.60    3.05    6.17
+   285.0    0.00   -0.06   -0.20   -0.42   -0.76   -1.21   -1.70   -2.17   -2.53   -2.71   -2.74   -2.66   -2.53   -2.33   -1.92   -1.04    0.55    2.99    6.07
+   290.0    0.00   -0.06   -0.20   -0.43   -0.77   -1.22   -1.72   -2.21   -2.57   -2.77   -2.79   -2.70   -2.56   -2.35   -1.94   -1.07    0.52    2.94    5.96
+   295.0    0.00   -0.06   -0.20   -0.43   -0.78   -1.23   -1.74   -2.24   -2.62   -2.82   -2.84   -2.74   -2.58   -2.37   -1.95   -1.08    0.51    2.91    5.87
+   300.0    0.00   -0.06   -0.21   -0.44   -0.78   -1.24   -1.77   -2.27   -2.66   -2.86   -2.87   -2.76   -2.60   -2.37   -1.95   -1.08    0.50    2.89    5.79
+   305.0    0.00   -0.07   -0.21   -0.44   -0.79   -1.25   -1.78   -2.29   -2.68   -2.89   -2.90   -2.78   -2.60   -2.36   -1.94   -1.06    0.52    2.90    5.74
+   310.0    0.00   -0.07   -0.21   -0.45   -0.80   -1.26   -1.80   -2.31   -2.70   -2.90   -2.91   -2.79   -2.60   -2.36   -1.92   -1.04    0.56    2.92    5.72
+   315.0    0.00   -0.07   -0.21   -0.45   -0.81   -1.27   -1.80   -2.32   -2.71   -2.91   -2.92   -2.79   -2.60   -2.34   -1.89   -1.00    0.61    2.97    5.74
+   320.0    0.00   -0.07   -0.22   -0.46   -0.81   -1.28   -1.81   -2.32   -2.71   -2.91   -2.92   -2.79   -2.59   -2.32   -1.86   -0.94    0.67    3.04    5.78
+   325.0    0.00   -0.07   -0.22   -0.46   -0.81   -1.28   -1.81   -2.32   -2.71   -2.91   -2.92   -2.79   -2.58   -2.30   -1.82   -0.88    0.75    3.12    5.86
+   330.0    0.00   -0.07   -0.22   -0.46   -0.82   -1.28   -1.80   -2.31   -2.70   -2.90   -2.91   -2.78   -2.57   -2.27   -1.77   -0.81    0.83    3.20    5.95
+   335.0    0.00   -0.07   -0.22   -0.46   -0.82   -1.28   -1.80   -2.30   -2.68   -2.89   -2.90   -2.77   -2.55   -2.24   -1.71   -0.74    0.91    3.29    6.07
+   340.0    0.00   -0.07   -0.22   -0.47   -0.82   -1.27   -1.79   -2.29   -2.67   -2.88   -2.89   -2.75   -2.52   -2.19   -1.64   -0.66    0.99    3.38    6.19
+   345.0    0.00   -0.07   -0.22   -0.46   -0.82   -1.27   -1.78   -2.27   -2.66   -2.86   -2.87   -2.73   -2.48   -2.13   -1.57   -0.58    1.07    3.45    6.30
+   350.0    0.00   -0.07   -0.22   -0.46   -0.81   -1.26   -1.77   -2.26   -2.64   -2.84   -2.84   -2.69   -2.43   -2.07   -1.49   -0.50    1.13    3.52    6.41
+   355.0    0.00   -0.07   -0.22   -0.46   -0.81   -1.26   -1.76   -2.25   -2.62   -2.82   -2.81   -2.65   -2.37   -1.99   -1.41   -0.43    1.19    3.57    6.51
+   360.0    0.00   -0.06   -0.21   -0.46   -0.81   -1.25   -1.76   -2.24   -2.60   -2.79   -2.78   -2.60   -2.31   -1.92   -1.33   -0.36    1.25    3.61    6.59
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+JPSREGANT_SD_E  NONE                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH              11    27-JAN-03 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+   G01                                                      START OF FREQUENCY  
+     -0.44     -0.26     91.25                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.15   -0.61   -1.36   -2.35   -3.47   -4.56   -5.47   -6.06   -6.29   -6.18   -5.77   -5.04   -3.89   -2.16    0.25    3.27    6.53    9.41
+     0.0    0.00   -0.17   -0.65   -1.41   -2.39   -3.46   -4.46   -5.25   -5.75   -5.96   -5.91   -5.64   -5.07   -4.03   -2.31    0.18    3.32    6.67    9.63
+     5.0    0.00   -0.17   -0.65   -1.42   -2.40   -3.48   -4.48   -5.27   -5.77   -5.98   -5.94   -5.67   -5.11   -4.09   -2.38    0.10    3.25    6.63    9.65
+    10.0    0.00   -0.17   -0.65   -1.42   -2.41   -3.49   -4.51   -5.30   -5.80   -6.01   -5.97   -5.71   -5.17   -4.16   -2.47    0.02    3.17    6.59    9.66
+    15.0    0.00   -0.17   -0.65   -1.42   -2.42   -3.51   -4.53   -5.34   -5.84   -6.05   -6.01   -5.76   -5.22   -4.23   -2.55   -0.08    3.09    6.54    9.67
+    20.0    0.00   -0.17   -0.65   -1.42   -2.42   -3.53   -4.56   -5.38   -5.89   -6.10   -6.07   -5.81   -5.28   -4.29   -2.63   -0.16    3.01    6.48    9.65
+    25.0    0.00   -0.17   -0.65   -1.42   -2.43   -3.55   -4.60   -5.43   -5.95   -6.16   -6.12   -5.86   -5.32   -4.34   -2.69   -0.24    2.93    6.43    9.62
+    30.0    0.00   -0.17   -0.64   -1.42   -2.44   -3.56   -4.63   -5.48   -6.01   -6.23   -6.18   -5.91   -5.36   -4.38   -2.74   -0.29    2.87    6.37    9.58
+    35.0    0.00   -0.17   -0.64   -1.42   -2.44   -3.58   -4.66   -5.53   -6.08   -6.30   -6.24   -5.95   -5.38   -4.39   -2.76   -0.33    2.82    6.32    9.52
+    40.0    0.00   -0.16   -0.64   -1.42   -2.44   -3.59   -4.69   -5.58   -6.14   -6.36   -6.29   -5.98   -5.39   -4.39   -2.76   -0.34    2.79    6.28    9.47
+    45.0    0.00   -0.16   -0.63   -1.41   -2.44   -3.60   -4.71   -5.61   -6.19   -6.42   -6.34   -6.00   -5.39   -4.37   -2.74   -0.34    2.78    6.25    9.43
+    50.0    0.00   -0.16   -0.63   -1.41   -2.43   -3.60   -4.72   -5.64   -6.23   -6.46   -6.37   -6.02   -5.38   -4.35   -2.71   -0.32    2.78    6.23    9.39
+    55.0    0.00   -0.16   -0.63   -1.40   -2.42   -3.59   -4.72   -5.66   -6.26   -6.49   -6.39   -6.02   -5.36   -4.31   -2.67   -0.29    2.78    6.21    9.38
+    60.0    0.00   -0.16   -0.62   -1.39   -2.41   -3.57   -4.71   -5.65   -6.26   -6.50   -6.40   -6.01   -5.34   -4.27   -2.62   -0.26    2.79    6.21    9.37
+    65.0    0.00   -0.15   -0.62   -1.38   -2.39   -3.55   -4.69   -5.64   -6.25   -6.49   -6.39   -5.99   -5.30   -4.22   -2.57   -0.22    2.81    6.20    9.37
+    70.0    0.00   -0.15   -0.61   -1.37   -2.38   -3.53   -4.66   -5.61   -6.22   -6.47   -6.37   -5.96   -5.26   -4.17   -2.52   -0.19    2.81    6.19    9.37
+    75.0    0.00   -0.15   -0.61   -1.36   -2.36   -3.50   -4.63   -5.56   -6.18   -6.43   -6.33   -5.92   -5.21   -4.11   -2.47   -0.15    2.82    6.16    9.34
+    80.0    0.00   -0.15   -0.60   -1.35   -2.34   -3.47   -4.59   -5.52   -6.14   -6.39   -6.28   -5.87   -5.15   -4.04   -2.40   -0.11    2.83    6.13    9.29
+    85.0    0.00   -0.15   -0.60   -1.34   -2.32   -3.44   -4.55   -5.47   -6.09   -6.33   -6.23   -5.81   -5.08   -3.96   -2.32   -0.05    2.83    6.08    9.21
+    90.0    0.00   -0.15   -0.59   -1.33   -2.31   -3.42   -4.51   -5.43   -6.04   -6.28   -6.17   -5.74   -5.00   -3.87   -2.23    0.02    2.86    6.03    9.10
+    95.0    0.00   -0.14   -0.59   -1.32   -2.29   -3.40   -4.49   -5.40   -6.00   -6.24   -6.11   -5.67   -4.90   -3.76   -2.11    0.12    2.90    5.99    8.96
+   100.0    0.00   -0.14   -0.59   -1.32   -2.28   -3.39   -4.47   -5.37   -5.97   -6.20   -6.06   -5.60   -4.81   -3.63   -1.97    0.24    2.97    5.96    8.82
+   105.0    0.00   -0.14   -0.58   -1.31   -2.28   -3.38   -4.46   -5.36   -5.95   -6.17   -6.02   -5.54   -4.71   -3.50   -1.82    0.39    3.07    5.98    8.69
+   110.0    0.00   -0.14   -0.58   -1.31   -2.28   -3.38   -4.46   -5.36   -5.95   -6.16   -6.00   -5.48   -4.63   -3.38   -1.66    0.56    3.21    6.03    8.60
+   115.0    0.00   -0.14   -0.58   -1.31   -2.28   -3.38   -4.47   -5.37   -5.96   -6.17   -5.99   -5.45   -4.56   -3.26   -1.51    0.75    3.39    6.14    8.57
+   120.0    0.00   -0.14   -0.58   -1.31   -2.28   -3.39   -4.48   -5.39   -5.98   -6.19   -6.00   -5.44   -4.51   -3.18   -1.37    0.93    3.59    6.31    8.61
+   125.0    0.00   -0.14   -0.58   -1.31   -2.28   -3.40   -4.49   -5.41   -6.01   -6.22   -6.02   -5.45   -4.50   -3.12   -1.26    1.10    3.81    6.53    8.74
+   130.0    0.00   -0.14   -0.58   -1.31   -2.29   -3.41   -4.51   -5.44   -6.04   -6.25   -6.06   -5.48   -4.52   -3.11   -1.19    1.25    4.03    6.79    8.96
+   135.0    0.00   -0.13   -0.58   -1.31   -2.29   -3.42   -4.53   -5.46   -6.08   -6.30   -6.12   -5.54   -4.57   -3.14   -1.17    1.35    4.24    7.07    9.23
+   140.0    0.00   -0.13   -0.58   -1.31   -2.29   -3.42   -4.54   -5.48   -6.11   -6.34   -6.18   -5.62   -4.65   -3.21   -1.20    1.40    4.40    7.34    9.55
+   145.0    0.00   -0.13   -0.57   -1.31   -2.30   -3.43   -4.55   -5.50   -6.14   -6.39   -6.24   -5.71   -4.76   -3.32   -1.28    1.40    4.51    7.58    9.88
+   150.0    0.00   -0.13   -0.57   -1.31   -2.30   -3.43   -4.56   -5.52   -6.17   -6.43   -6.30   -5.80   -4.88   -3.45   -1.40    1.33    4.55    7.76   10.18
+   155.0    0.00   -0.13   -0.57   -1.31   -2.29   -3.43   -4.57   -5.53   -6.19   -6.47   -6.36   -5.88   -5.00   -3.60   -1.55    1.21    4.52    7.86   10.43
+   160.0    0.00   -0.13   -0.57   -1.31   -2.29   -3.43   -4.57   -5.54   -6.21   -6.49   -6.40   -5.95   -5.10   -3.75   -1.73    1.04    4.41    7.87   10.59
+   165.0    0.00   -0.13   -0.57   -1.30   -2.29   -3.43   -4.58   -5.55   -6.22   -6.51   -6.43   -6.00   -5.19   -3.88   -1.91    0.83    4.22    7.77   10.65
+   170.0    0.00   -0.13   -0.57   -1.30   -2.29   -3.43   -4.58   -5.56   -6.23   -6.52   -6.45   -6.03   -5.25   -4.00   -2.09    0.61    3.99    7.59   10.60
+   175.0    0.00   -0.13   -0.57   -1.30   -2.29   -3.43   -4.58   -5.56   -6.23   -6.52   -6.44   -6.03   -5.28   -4.08   -2.25    0.37    3.71    7.33   10.46
+   180.0    0.00   -0.13   -0.57   -1.30   -2.28   -3.43   -4.58   -5.56   -6.23   -6.51   -6.42   -6.02   -5.29   -4.14   -2.38    0.15    3.41    7.02   10.23
+   185.0    0.00   -0.13   -0.57   -1.30   -2.28   -3.43   -4.58   -5.56   -6.22   -6.50   -6.40   -5.98   -5.27   -4.17   -2.49   -0.06    3.11    6.69    9.95
+   190.0    0.00   -0.13   -0.57   -1.30   -2.28   -3.43   -4.58   -5.56   -6.21   -6.47   -6.36   -5.94   -5.24   -4.18   -2.57   -0.24    2.85    6.37    9.65
+   195.0    0.00   -0.13   -0.57   -1.30   -2.28   -3.43   -4.58   -5.56   -6.20   -6.45   -6.32   -5.90   -5.21   -4.18   -2.63   -0.37    2.63    6.09    9.37
+   200.0    0.00   -0.13   -0.57   -1.30   -2.28   -3.43   -4.58   -5.55   -6.19   -6.42   -6.29   -5.86   -5.18   -4.17   -2.66   -0.47    2.47    5.87    9.12
+   205.0    0.00   -0.14   -0.57   -1.30   -2.28   -3.43   -4.57   -5.54   -6.17   -6.40   -6.26   -5.84   -5.16   -4.17   -2.68   -0.52    2.37    5.72    8.93
+   210.0    0.00   -0.14   -0.57   -1.30   -2.29   -3.43   -4.57   -5.53   -6.15   -6.38   -6.25   -5.82   -5.15   -4.16   -2.68   -0.52    2.34    5.65    8.80
+   215.0    0.00   -0.14   -0.58   -1.31   -2.29   -3.43   -4.56   -5.52   -6.14   -6.37   -6.24   -5.83   -5.16   -4.17   -2.67   -0.49    2.38    5.66    8.74
+   220.0    0.00   -0.14   -0.58   -1.31   -2.29   -3.43   -4.56   -5.51   -6.13   -6.37   -6.25   -5.85   -5.19   -4.18   -2.64   -0.43    2.47    5.73    8.74
+   225.0    0.00   -0.14   -0.58   -1.31   -2.30   -3.43   -4.56   -5.50   -6.13   -6.37   -6.27   -5.88   -5.21   -4.18   -2.60   -0.33    2.59    5.84    8.77
+   230.0    0.00   -0.14   -0.59   -1.32   -2.31   -3.44   -4.56   -5.51   -6.13   -6.39   -6.30   -5.92   -5.24   -4.17   -2.54   -0.21    2.75    5.98    8.83
+   235.0    0.00   -0.14   -0.59   -1.33   -2.32   -3.45   -4.57   -5.52   -6.14   -6.41   -6.33   -5.95   -5.25   -4.15   -2.46   -0.08    2.91    6.13    8.88
+   240.0    0.00   -0.15   -0.59   -1.34   -2.33   -3.46   -4.59   -5.53   -6.16   -6.43   -6.36   -5.97   -5.25   -4.10   -2.36    0.07    3.08    6.26    8.93
+   245.0    0.00   -0.15   -0.60   -1.34   -2.34   -3.47   -4.60   -5.55   -6.19   -6.46   -6.38   -5.97   -5.23   -4.03   -2.25    0.21    3.22    6.36    8.95
+   250.0    0.00   -0.15   -0.60   -1.35   -2.35   -3.49   -4.62   -5.57   -6.22   -6.49   -6.39   -5.96   -5.18   -3.95   -2.13    0.35    3.35    6.44    8.96
+   255.0    0.00   -0.15   -0.61   -1.36   -2.36   -3.51   -4.64   -5.60   -6.24   -6.50   -6.39   -5.94   -5.11   -3.84   -2.00    0.47    3.44    6.49    8.96
+   260.0    0.00   -0.15   -0.61   -1.37   -2.37   -3.52   -4.66   -5.62   -6.25   -6.51   -6.38   -5.89   -5.03   -3.74   -1.88    0.58    3.51    6.52    8.95
+   265.0    0.00   -0.16   -0.62   -1.38   -2.38   -3.53   -4.67   -5.63   -6.26   -6.50   -6.35   -5.83   -4.95   -3.63   -1.78    0.65    3.55    6.52    8.96
+   270.0    0.00   -0.16   -0.62   -1.38   -2.39   -3.54   -4.68   -5.63   -6.26   -6.48   -6.31   -5.77   -4.87   -3.55   -1.71    0.70    3.57    6.53    8.99
+   275.0    0.00   -0.16   -0.63   -1.39   -2.39   -3.54   -4.68   -5.62   -6.23   -6.45   -6.26   -5.71   -4.80   -3.49   -1.67    0.72    3.56    6.53    9.04
+   280.0    0.00   -0.16   -0.63   -1.39   -2.40   -3.54   -4.67   -5.60   -6.20   -6.40   -6.20   -5.65   -4.75   -3.46   -1.66    0.70    3.54    6.55    9.13
+   285.0    0.00   -0.16   -0.63   -1.39   -2.40   -3.53   -4.65   -5.57   -6.15   -6.34   -6.15   -5.60   -4.72   -3.46   -1.69    0.66    3.52    6.57    9.24
+   290.0    0.00   -0.17   -0.63   -1.39   -2.39   -3.52   -4.62   -5.53   -6.10   -6.28   -6.09   -5.57   -4.72   -3.49   -1.75    0.59    3.49    6.61    9.38
+   295.0    0.00   -0.17   -0.64   -1.40   -2.39   -3.51   -4.59   -5.48   -6.04   -6.22   -6.04   -5.54   -4.74   -3.55   -1.83    0.52    3.46    6.66    9.51
+   300.0    0.00   -0.17   -0.64   -1.40   -2.38   -3.49   -4.56   -5.43   -5.98   -6.16   -5.99   -5.53   -4.77   -3.62   -1.92    0.45    3.44    6.71    9.64
+   305.0    0.00   -0.17   -0.64   -1.40   -2.38   -3.47   -4.53   -5.38   -5.92   -6.10   -5.96   -5.53   -4.81   -3.70   -2.01    0.38    3.42    6.76    9.74
+   310.0    0.00   -0.17   -0.64   -1.40   -2.37   -3.46   -4.50   -5.34   -5.87   -6.05   -5.93   -5.54   -4.86   -3.77   -2.09    0.32    3.41    6.80    9.81
+   315.0    0.00   -0.17   -0.64   -1.40   -2.37   -3.45   -4.47   -5.30   -5.82   -6.01   -5.91   -5.55   -4.90   -3.83   -2.15    0.29    3.41    6.83    9.85
+   320.0    0.00   -0.17   -0.64   -1.40   -2.36   -3.43   -4.45   -5.27   -5.79   -5.98   -5.89   -5.56   -4.93   -3.88   -2.19    0.27    3.41    6.84    9.85
+   325.0    0.00   -0.17   -0.64   -1.40   -2.36   -3.43   -4.44   -5.25   -5.76   -5.96   -5.88   -5.56   -4.96   -3.90   -2.21    0.27    3.42    6.84    9.82
+   330.0    0.00   -0.17   -0.65   -1.40   -2.36   -3.42   -4.43   -5.23   -5.74   -5.94   -5.88   -5.57   -4.97   -3.92   -2.21    0.28    3.44    6.84    9.77
+   335.0    0.00   -0.17   -0.65   -1.40   -2.36   -3.42   -4.43   -5.22   -5.73   -5.93   -5.87   -5.57   -4.98   -3.92   -2.20    0.29    3.44    6.82    9.71
+   340.0    0.00   -0.17   -0.65   -1.40   -2.37   -3.43   -4.43   -5.22   -5.72   -5.93   -5.87   -5.58   -4.98   -3.92   -2.20    0.30    3.44    6.79    9.67
+   345.0    0.00   -0.17   -0.65   -1.40   -2.37   -3.43   -4.43   -5.22   -5.72   -5.93   -5.88   -5.58   -4.99   -3.93   -2.20    0.30    3.43    6.77    9.63
+   350.0    0.00   -0.17   -0.65   -1.41   -2.38   -3.44   -4.44   -5.23   -5.73   -5.93   -5.88   -5.60   -5.01   -3.95   -2.22    0.28    3.41    6.74    9.62
+   355.0    0.00   -0.17   -0.65   -1.41   -2.38   -3.45   -4.45   -5.24   -5.74   -5.94   -5.89   -5.61   -5.03   -3.98   -2.25    0.24    3.37    6.71    9.62
+   360.0    0.00   -0.17   -0.65   -1.41   -2.39   -3.46   -4.46   -5.25   -5.75   -5.96   -5.91   -5.64   -5.07   -4.03   -2.31    0.18    3.32    6.67    9.63
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.28     -0.11    118.90                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.06   -0.23   -0.51   -0.89   -1.34   -1.82   -2.27   -2.62   -2.84   -2.93   -2.87   -2.68   -2.30   -1.64   -0.54    1.17    3.55    6.48
+     0.0    0.00   -0.04   -0.19   -0.45   -0.82   -1.29   -1.83   -2.35   -2.77   -3.02   -3.06   -2.90   -2.59   -2.12   -1.40   -0.26    1.47    3.85    6.61
+     5.0    0.00   -0.04   -0.19   -0.45   -0.82   -1.29   -1.82   -2.34   -2.76   -3.01   -3.05   -2.89   -2.56   -2.08   -1.35   -0.21    1.52    3.88    6.62
+    10.0    0.00   -0.04   -0.19   -0.45   -0.82   -1.29   -1.82   -2.33   -2.75   -3.00   -3.04   -2.88   -2.55   -2.05   -1.32   -0.18    1.54    3.90    6.62
+    15.0    0.00   -0.04   -0.20   -0.46   -0.83   -1.29   -1.81   -2.32   -2.74   -2.99   -3.03   -2.87   -2.54   -2.05   -1.31   -0.16    1.56    3.91    6.62
+    20.0    0.00   -0.05   -0.20   -0.46   -0.83   -1.29   -1.81   -2.31   -2.72   -2.97   -3.02   -2.87   -2.55   -2.06   -1.32   -0.17    1.56    3.91    6.63
+    25.0    0.00   -0.05   -0.20   -0.47   -0.84   -1.30   -1.81   -2.30   -2.71   -2.95   -3.00   -2.87   -2.56   -2.08   -1.35   -0.19    1.55    3.92    6.66
+    30.0    0.00   -0.05   -0.21   -0.47   -0.84   -1.30   -1.80   -2.29   -2.68   -2.93   -2.99   -2.87   -2.59   -2.12   -1.39   -0.22    1.54    3.93    6.70
+    35.0    0.00   -0.05   -0.21   -0.48   -0.85   -1.31   -1.80   -2.28   -2.67   -2.91   -2.97   -2.87   -2.61   -2.16   -1.43   -0.25    1.53    3.95    6.76
+    40.0    0.00   -0.05   -0.22   -0.49   -0.86   -1.32   -1.81   -2.27   -2.65   -2.88   -2.96   -2.88   -2.64   -2.21   -1.48   -0.29    1.52    3.97    6.83
+    45.0    0.00   -0.05   -0.22   -0.50   -0.87   -1.33   -1.81   -2.27   -2.63   -2.86   -2.95   -2.88   -2.66   -2.24   -1.52   -0.31    1.51    4.00    6.91
+    50.0    0.00   -0.06   -0.22   -0.50   -0.88   -1.34   -1.82   -2.27   -2.62   -2.85   -2.93   -2.88   -2.67   -2.26   -1.54   -0.33    1.52    4.03    6.98
+    55.0    0.00   -0.06   -0.23   -0.51   -0.90   -1.35   -1.83   -2.27   -2.62   -2.84   -2.93   -2.88   -2.68   -2.28   -1.55   -0.33    1.52    4.05    7.04
+    60.0    0.00   -0.06   -0.23   -0.52   -0.91   -1.37   -1.84   -2.28   -2.63   -2.84   -2.93   -2.87   -2.68   -2.27   -1.54   -0.32    1.53    4.06    7.09
+    65.0    0.00   -0.06   -0.24   -0.53   -0.92   -1.38   -1.86   -2.29   -2.64   -2.85   -2.93   -2.88   -2.67   -2.26   -1.52   -0.30    1.55    4.07    7.11
+    70.0    0.00   -0.06   -0.24   -0.53   -0.93   -1.39   -1.87   -2.31   -2.65   -2.86   -2.94   -2.88   -2.67   -2.25   -1.50   -0.28    1.56    4.07    7.12
+    75.0    0.00   -0.06   -0.24   -0.54   -0.94   -1.40   -1.89   -2.32   -2.67   -2.88   -2.96   -2.90   -2.68   -2.24   -1.48   -0.25    1.57    4.06    7.12
+    80.0    0.00   -0.07   -0.25   -0.54   -0.94   -1.41   -1.90   -2.34   -2.68   -2.91   -2.99   -2.92   -2.69   -2.24   -1.46   -0.24    1.58    4.05    7.10
+    85.0    0.00   -0.07   -0.25   -0.55   -0.95   -1.42   -1.90   -2.35   -2.70   -2.93   -3.01   -2.95   -2.71   -2.25   -1.47   -0.24    1.57    4.03    7.08
+    90.0    0.00   -0.07   -0.25   -0.55   -0.95   -1.42   -1.91   -2.35   -2.71   -2.95   -3.05   -2.99   -2.75   -2.28   -1.49   -0.26    1.55    4.01    7.07
+    95.0    0.00   -0.07   -0.26   -0.55   -0.95   -1.42   -1.90   -2.35   -2.72   -2.97   -3.07   -3.03   -2.80   -2.34   -1.54   -0.30    1.52    3.98    7.06
+   100.0    0.00   -0.07   -0.26   -0.56   -0.95   -1.42   -1.90   -2.35   -2.72   -2.97   -3.10   -3.07   -2.86   -2.40   -1.61   -0.36    1.46    3.94    7.05
+   105.0    0.00   -0.07   -0.26   -0.56   -0.96   -1.41   -1.89   -2.34   -2.71   -2.97   -3.11   -3.11   -2.92   -2.48   -1.70   -0.45    1.39    3.90    7.03
+   110.0    0.00   -0.07   -0.26   -0.56   -0.96   -1.41   -1.88   -2.32   -2.69   -2.96   -3.12   -3.13   -2.97   -2.56   -1.79   -0.54    1.31    3.84    7.01
+   115.0    0.00   -0.08   -0.26   -0.56   -0.96   -1.41   -1.87   -2.31   -2.67   -2.94   -3.11   -3.14   -3.01   -2.63   -1.89   -0.65    1.21    3.77    6.97
+   120.0    0.00   -0.08   -0.27   -0.57   -0.96   -1.41   -1.87   -2.29   -2.65   -2.91   -3.08   -3.14   -3.03   -2.68   -1.97   -0.75    1.11    3.68    6.91
+   125.0    0.00   -0.08   -0.27   -0.57   -0.96   -1.41   -1.86   -2.27   -2.62   -2.88   -3.05   -3.11   -3.03   -2.71   -2.03   -0.85    1.00    3.57    6.82
+   130.0    0.00   -0.08   -0.27   -0.57   -0.97   -1.41   -1.86   -2.26   -2.59   -2.84   -3.00   -3.07   -3.00   -2.71   -2.07   -0.92    0.89    3.44    6.70
+   135.0    0.00   -0.08   -0.27   -0.58   -0.97   -1.42   -1.86   -2.25   -2.57   -2.80   -2.95   -3.01   -2.95   -2.69   -2.09   -0.98    0.79    3.31    6.55
+   140.0    0.00   -0.08   -0.28   -0.58   -0.98   -1.42   -1.86   -2.25   -2.55   -2.77   -2.90   -2.95   -2.89   -2.64   -2.07   -1.01    0.70    3.18    6.39
+   145.0    0.00   -0.08   -0.28   -0.59   -0.99   -1.43   -1.87   -2.25   -2.54   -2.74   -2.85   -2.88   -2.81   -2.57   -2.03   -1.02    0.64    3.05    6.23
+   150.0    0.00   -0.08   -0.28   -0.59   -0.99   -1.44   -1.88   -2.25   -2.53   -2.72   -2.81   -2.82   -2.74   -2.49   -1.97   -1.00    0.59    2.94    6.07
+   155.0    0.00   -0.08   -0.28   -0.59   -1.00   -1.45   -1.88   -2.26   -2.54   -2.71   -2.78   -2.78   -2.67   -2.41   -1.89   -0.95    0.58    2.86    5.94
+   160.0    0.00   -0.08   -0.28   -0.60   -1.00   -1.45   -1.89   -2.27   -2.54   -2.71   -2.77   -2.74   -2.62   -2.34   -1.81   -0.89    0.60    2.82    5.85
+   165.0    0.00   -0.08   -0.28   -0.60   -1.00   -1.46   -1.90   -2.28   -2.55   -2.72   -2.78   -2.73   -2.58   -2.28   -1.73   -0.82    0.64    2.82    5.80
+   170.0    0.00   -0.08   -0.28   -0.60   -1.01   -1.46   -1.90   -2.29   -2.57   -2.74   -2.79   -2.74   -2.56   -2.23   -1.66   -0.74    0.71    2.85    5.79
+   175.0    0.00   -0.08   -0.28   -0.60   -1.00   -1.46   -1.91   -2.29   -2.59   -2.76   -2.82   -2.76   -2.56   -2.20   -1.60   -0.65    0.80    2.93    5.83
+   180.0    0.00   -0.08   -0.28   -0.59   -1.00   -1.46   -1.91   -2.30   -2.60   -2.79   -2.86   -2.79   -2.58   -2.19   -1.55   -0.57    0.91    3.03    5.89
+   185.0    0.00   -0.08   -0.27   -0.59   -0.99   -1.45   -1.90   -2.30   -2.62   -2.82   -2.89   -2.83   -2.60   -2.18   -1.51   -0.49    1.02    3.15    5.98
+   190.0    0.00   -0.07   -0.27   -0.58   -0.99   -1.44   -1.90   -2.30   -2.63   -2.84   -2.92   -2.86   -2.62   -2.18   -1.48   -0.41    1.14    3.28    6.06
+   195.0    0.00   -0.07   -0.27   -0.58   -0.98   -1.43   -1.89   -2.30   -2.63   -2.85   -2.94   -2.88   -2.64   -2.18   -1.45   -0.34    1.24    3.40    6.14
+   200.0    0.00   -0.07   -0.26   -0.57   -0.97   -1.42   -1.88   -2.30   -2.63   -2.85   -2.95   -2.88   -2.64   -2.17   -1.42   -0.28    1.34    3.51    6.20
+   205.0    0.00   -0.07   -0.26   -0.56   -0.96   -1.41   -1.87   -2.29   -2.62   -2.85   -2.93   -2.87   -2.63   -2.16   -1.39   -0.23    1.41    3.59    6.23
+   210.0    0.00   -0.07   -0.25   -0.55   -0.95   -1.40   -1.86   -2.28   -2.61   -2.83   -2.91   -2.84   -2.60   -2.13   -1.36   -0.20    1.46    3.65    6.25
+   215.0    0.00   -0.06   -0.25   -0.54   -0.94   -1.39   -1.85   -2.26   -2.59   -2.80   -2.87   -2.79   -2.55   -2.09   -1.34   -0.18    1.49    3.68    6.24
+   220.0    0.00   -0.06   -0.24   -0.53   -0.92   -1.37   -1.83   -2.25   -2.57   -2.76   -2.81   -2.73   -2.49   -2.06   -1.33   -0.18    1.49    3.70    6.22
+   225.0    0.00   -0.06   -0.24   -0.53   -0.91   -1.36   -1.82   -2.23   -2.54   -2.72   -2.76   -2.67   -2.44   -2.02   -1.32   -0.20    1.47    3.69    6.21
+   230.0    0.00   -0.06   -0.23   -0.51   -0.90   -1.35   -1.80   -2.21   -2.51   -2.67   -2.70   -2.60   -2.39   -2.00   -1.33   -0.23    1.44    3.67    6.21
+   235.0    0.00   -0.05   -0.22   -0.50   -0.88   -1.33   -1.79   -2.19   -2.48   -2.63   -2.65   -2.55   -2.35   -1.99   -1.36   -0.29    1.38    3.65    6.24
+   240.0    0.00   -0.05   -0.22   -0.49   -0.87   -1.31   -1.77   -2.17   -2.45   -2.60   -2.61   -2.51   -2.32   -2.00   -1.41   -0.36    1.32    3.62    6.29
+   245.0    0.00   -0.05   -0.21   -0.48   -0.85   -1.29   -1.75   -2.14   -2.43   -2.57   -2.58   -2.49   -2.32   -2.03   -1.47   -0.44    1.24    3.60    6.36
+   250.0    0.00   -0.05   -0.21   -0.47   -0.84   -1.28   -1.73   -2.12   -2.41   -2.55   -2.57   -2.49   -2.35   -2.08   -1.54   -0.53    1.16    3.58    6.45
+   255.0    0.00   -0.05   -0.20   -0.46   -0.83   -1.26   -1.71   -2.11   -2.40   -2.55   -2.58   -2.52   -2.39   -2.14   -1.63   -0.62    1.08    3.55    6.54
+   260.0    0.00   -0.04   -0.20   -0.45   -0.81   -1.24   -1.69   -2.10   -2.39   -2.56   -2.60   -2.56   -2.45   -2.22   -1.72   -0.72    1.01    3.53    6.62
+   265.0    0.00   -0.04   -0.19   -0.45   -0.80   -1.23   -1.68   -2.09   -2.40   -2.58   -2.64   -2.61   -2.51   -2.29   -1.80   -0.80    0.93    3.49    6.68
+   270.0    0.00   -0.04   -0.19   -0.44   -0.79   -1.22   -1.67   -2.09   -2.42   -2.61   -2.69   -2.68   -2.59   -2.37   -1.87   -0.87    0.86    3.44    6.70
+   275.0    0.00   -0.04   -0.18   -0.43   -0.78   -1.21   -1.67   -2.10   -2.44   -2.66   -2.75   -2.75   -2.66   -2.44   -1.93   -0.93    0.80    3.38    6.67
+   280.0    0.00   -0.04   -0.18   -0.43   -0.78   -1.21   -1.67   -2.11   -2.47   -2.70   -2.81   -2.82   -2.72   -2.49   -1.98   -0.98    0.75    3.31    6.61
+   285.0    0.00   -0.04   -0.18   -0.43   -0.78   -1.21   -1.68   -2.13   -2.50   -2.75   -2.87   -2.88   -2.78   -2.53   -2.01   -1.00    0.70    3.24    6.50
+   290.0    0.00   -0.03   -0.18   -0.42   -0.78   -1.21   -1.69   -2.15   -2.54   -2.80   -2.93   -2.93   -2.82   -2.56   -2.02   -1.02    0.67    3.16    6.37
+   295.0    0.00   -0.03   -0.18   -0.42   -0.78   -1.22   -1.71   -2.18   -2.58   -2.85   -2.98   -2.98   -2.86   -2.57   -2.02   -1.02    0.65    3.09    6.24
+   300.0    0.00   -0.03   -0.17   -0.43   -0.78   -1.23   -1.72   -2.21   -2.61   -2.89   -3.02   -3.01   -2.88   -2.58   -2.01   -1.00    0.64    3.04    6.11
+   305.0    0.00   -0.03   -0.17   -0.43   -0.79   -1.24   -1.74   -2.23   -2.65   -2.93   -3.06   -3.04   -2.89   -2.57   -1.99   -0.98    0.66    3.02    6.01
+   310.0    0.00   -0.03   -0.18   -0.43   -0.79   -1.25   -1.76   -2.26   -2.68   -2.96   -3.08   -3.05   -2.89   -2.56   -1.97   -0.95    0.69    3.02    5.94
+   315.0    0.00   -0.03   -0.18   -0.43   -0.80   -1.26   -1.78   -2.28   -2.70   -2.98   -3.10   -3.06   -2.88   -2.54   -1.93   -0.90    0.73    3.05    5.92
+   320.0    0.00   -0.03   -0.18   -0.43   -0.80   -1.27   -1.79   -2.30   -2.72   -3.00   -3.10   -3.05   -2.86   -2.51   -1.90   -0.85    0.80    3.12    5.95
+   325.0    0.00   -0.03   -0.18   -0.44   -0.81   -1.28   -1.81   -2.32   -2.74   -3.01   -3.11   -3.05   -2.84   -2.48   -1.85   -0.79    0.88    3.21    6.02
+   330.0    0.00   -0.03   -0.18   -0.44   -0.81   -1.29   -1.82   -2.33   -2.75   -3.02   -3.11   -3.03   -2.82   -2.44   -1.80   -0.72    0.97    3.31    6.12
+   335.0    0.00   -0.03   -0.18   -0.44   -0.82   -1.29   -1.82   -2.34   -2.76   -3.02   -3.10   -3.01   -2.78   -2.39   -1.74   -0.65    1.06    3.43    6.23
+   340.0    0.00   -0.04   -0.18   -0.44   -0.82   -1.29   -1.83   -2.35   -2.77   -3.02   -3.09   -2.99   -2.75   -2.34   -1.67   -0.57    1.16    3.54    6.34
+   345.0    0.00   -0.04   -0.18   -0.44   -0.82   -1.30   -1.83   -2.35   -2.77   -3.03   -3.09   -2.97   -2.71   -2.28   -1.60   -0.48    1.25    3.65    6.44
+   350.0    0.00   -0.04   -0.18   -0.45   -0.82   -1.30   -1.83   -2.35   -2.77   -3.02   -3.08   -2.95   -2.66   -2.22   -1.53   -0.40    1.34    3.74    6.52
+   355.0    0.00   -0.04   -0.19   -0.45   -0.82   -1.30   -1.83   -2.35   -2.77   -3.02   -3.07   -2.92   -2.63   -2.17   -1.46   -0.33    1.41    3.80    6.58
+   360.0    0.00   -0.04   -0.19   -0.45   -0.82   -1.29   -1.83   -2.35   -2.77   -3.02   -3.06   -2.90   -2.59   -2.12   -1.40   -0.26    1.47    3.85    6.61
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+LEIAR10         NONE                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               5    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     4                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+Number of Calibrated Antennas GPS:      005                 COMMENT             
+Number of Individual Calibrations GPS:  010                 COMMENT             
+Number of Calibrated Antennas GLO:      005                 COMMENT             
+Number of Individual Calibrations GLO:  018                 COMMENT             
+# GLONASS PCV                                               COMMENT             
+#  derived from Delta PCV per 25.0 MHz                      COMMENT             
+#  for frequency channel number k=0                         COMMENT             
+   G01                                                      START OF FREQUENCY  
+      1.29     -0.70     88.84                              NORTH / EAST / UP   
+   NOAZI    0.00    0.04    0.11    0.15    0.08   -0.14   -0.47   -0.82   -1.09   -1.19   -1.11   -0.93   -0.73   -0.58   -0.45   -0.22    0.34    1.38    2.92
+     0.0    0.00    0.15    0.34    0.50    0.52    0.34    0.00   -0.40   -0.72   -0.83   -0.69   -0.32    0.18    0.71    1.21    1.78    2.66    4.20    6.86
+     5.0    0.00    0.14    0.34    0.50    0.53    0.37    0.05   -0.33   -0.64   -0.76   -0.63   -0.27    0.24    0.78    1.29    1.83    2.61    4.01    6.51
+    10.0    0.00    0.14    0.34    0.50    0.54    0.40    0.10   -0.26   -0.57   -0.71   -0.60   -0.26    0.23    0.76    1.25    1.72    2.35    3.51    5.72
+    15.0    0.00    0.14    0.33    0.50    0.55    0.43    0.15   -0.20   -0.51   -0.66   -0.59   -0.29    0.16    0.65    1.09    1.46    1.89    2.75    4.57
+    20.0    0.00    0.13    0.32    0.49    0.55    0.44    0.19   -0.15   -0.45   -0.63   -0.60   -0.36    0.02    0.45    0.81    1.05    1.29    1.82    3.19
+    25.0    0.00    0.13    0.31    0.48    0.54    0.45    0.21   -0.10   -0.41   -0.60   -0.62   -0.46   -0.16    0.17    0.42    0.54    0.57    0.81    1.74
+    30.0    0.00    0.12    0.30    0.46    0.52    0.44    0.22   -0.08   -0.38   -0.59   -0.66   -0.58   -0.38   -0.17   -0.04   -0.05   -0.18   -0.18    0.37
+    35.0    0.00    0.11    0.28    0.43    0.49    0.41    0.20   -0.08   -0.37   -0.59   -0.71   -0.70   -0.63   -0.54   -0.53   -0.66   -0.90   -1.06   -0.79
+    40.0    0.00    0.11    0.26    0.40    0.45    0.37    0.17   -0.11   -0.38   -0.61   -0.76   -0.83   -0.87   -0.91   -1.02   -1.24   -1.52   -1.75   -1.62
+    45.0    0.00    0.10    0.24    0.36    0.39    0.30    0.10   -0.16   -0.42   -0.64   -0.81   -0.95   -1.09   -1.25   -1.47   -1.73   -2.00   -2.18   -2.06
+    50.0    0.00    0.09    0.22    0.32    0.33    0.22    0.01   -0.24   -0.49   -0.70   -0.87   -1.05   -1.27   -1.53   -1.83   -2.10   -2.29   -2.32   -2.08
+    55.0    0.00    0.08    0.19    0.27    0.26    0.13   -0.10   -0.35   -0.58   -0.77   -0.93   -1.13   -1.40   -1.73   -2.07   -2.32   -2.38   -2.18   -1.71
+    60.0    0.00    0.07    0.16    0.23    0.19    0.03   -0.22   -0.48   -0.70   -0.86   -1.00   -1.18   -1.47   -1.83   -2.18   -2.37   -2.26   -1.79   -1.02
+    65.0    0.00    0.05    0.14    0.18    0.11   -0.08   -0.35   -0.63   -0.83   -0.96   -1.06   -1.21   -1.48   -1.84   -2.16   -2.26   -1.97   -1.21   -0.09
+    70.0    0.00    0.04    0.11    0.13    0.04   -0.19   -0.49   -0.78   -0.98   -1.07   -1.12   -1.22   -1.43   -1.75   -2.02   -2.02   -1.54   -0.51    0.95
+    75.0    0.00    0.03    0.09    0.09   -0.04   -0.29   -0.62   -0.93   -1.12   -1.19   -1.18   -1.21   -1.35   -1.59   -1.78   -1.67   -1.04    0.23    1.98
+    80.0    0.00    0.02    0.06    0.04   -0.10   -0.38   -0.74   -1.06   -1.26   -1.30   -1.24   -1.19   -1.24   -1.39   -1.48   -1.28   -0.51    0.92    2.88
+    85.0    0.00    0.01    0.04    0.01   -0.16   -0.46   -0.84   -1.18   -1.38   -1.40   -1.29   -1.17   -1.13   -1.17   -1.17   -0.89   -0.04    1.49    3.57
+    90.0    0.00    0.00    0.02   -0.03   -0.20   -0.52   -0.91   -1.27   -1.48   -1.49   -1.35   -1.16   -1.03   -0.98   -0.89   -0.55    0.33    1.88    3.98
+    95.0    0.00   -0.01    0.00   -0.05   -0.24   -0.56   -0.96   -1.33   -1.55   -1.56   -1.40   -1.16   -0.96   -0.83   -0.68   -0.30    0.55    2.04    4.08
+   100.0    0.00   -0.01   -0.02   -0.08   -0.26   -0.58   -0.99   -1.36   -1.60   -1.62   -1.45   -1.18   -0.93   -0.74   -0.55   -0.18    0.62    1.99    3.87
+   105.0    0.00   -0.02   -0.03   -0.09   -0.28   -0.59   -0.99   -1.37   -1.62   -1.65   -1.50   -1.23   -0.95   -0.74   -0.53   -0.19    0.52    1.73    3.41
+   110.0    0.00   -0.03   -0.04   -0.11   -0.28   -0.59   -0.98   -1.36   -1.61   -1.67   -1.54   -1.29   -1.02   -0.81   -0.61   -0.31    0.28    1.31    2.75
+   115.0    0.00   -0.04   -0.05   -0.11   -0.28   -0.58   -0.96   -1.34   -1.60   -1.68   -1.58   -1.36   -1.13   -0.94   -0.77   -0.53   -0.04    0.81    1.99
+   120.0    0.00   -0.04   -0.06   -0.12   -0.28   -0.57   -0.94   -1.30   -1.57   -1.67   -1.61   -1.44   -1.25   -1.10   -0.98   -0.80   -0.41    0.29    1.24
+   125.0    0.00   -0.05   -0.07   -0.12   -0.28   -0.55   -0.91   -1.27   -1.54   -1.66   -1.64   -1.51   -1.37   -1.27   -1.20   -1.06   -0.74   -0.15    0.61
+   130.0    0.00   -0.05   -0.07   -0.13   -0.28   -0.54   -0.89   -1.24   -1.51   -1.65   -1.65   -1.56   -1.47   -1.42   -1.37   -1.26   -0.97   -0.45    0.20
+   135.0    0.00   -0.05   -0.07   -0.13   -0.27   -0.53   -0.88   -1.22   -1.49   -1.63   -1.64   -1.59   -1.53   -1.50   -1.48   -1.36   -1.06   -0.54    0.06
+   140.0    0.00   -0.06   -0.08   -0.13   -0.27   -0.53   -0.87   -1.21   -1.47   -1.61   -1.62   -1.57   -1.52   -1.50   -1.47   -1.32   -0.96   -0.37    0.27
+   145.0    0.00   -0.06   -0.08   -0.12   -0.27   -0.53   -0.87   -1.21   -1.46   -1.58   -1.57   -1.50   -1.44   -1.40   -1.33   -1.12   -0.66    0.05    0.81
+   150.0    0.00   -0.06   -0.08   -0.12   -0.26   -0.53   -0.87   -1.21   -1.45   -1.54   -1.49   -1.38   -1.28   -1.20   -1.07   -0.77   -0.17    0.72    1.67
+   155.0    0.00   -0.06   -0.07   -0.12   -0.26   -0.53   -0.88   -1.21   -1.44   -1.49   -1.39   -1.22   -1.05   -0.90   -0.69   -0.28    0.48    1.57    2.77
+   160.0    0.00   -0.06   -0.07   -0.11   -0.25   -0.52   -0.88   -1.21   -1.42   -1.43   -1.27   -1.02   -0.77   -0.53   -0.22    0.31    1.22    2.54    4.03
+   165.0    0.00   -0.06   -0.07   -0.10   -0.24   -0.52   -0.87   -1.20   -1.39   -1.36   -1.14   -0.81   -0.45   -0.12    0.29    0.93    2.00    3.53    5.32
+   170.0    0.00   -0.06   -0.06   -0.09   -0.23   -0.50   -0.86   -1.19   -1.36   -1.29   -1.00   -0.58   -0.13    0.30    0.79    1.53    2.72    4.44    6.52
+   175.0    0.00   -0.06   -0.05   -0.08   -0.21   -0.48   -0.84   -1.16   -1.32   -1.22   -0.87   -0.37    0.17    0.68    1.25    2.05    3.32    5.18    7.50
+   180.0    0.00   -0.05   -0.05   -0.06   -0.19   -0.46   -0.81   -1.13   -1.27   -1.15   -0.75   -0.19    0.42    1.00    1.60    2.43    3.73    5.67    8.16
+   185.0    0.00   -0.05   -0.04   -0.05   -0.17   -0.43   -0.78   -1.09   -1.23   -1.09   -0.67   -0.06    0.60    1.21    1.83    2.64    3.91    5.85    8.42
+   190.0    0.00   -0.05   -0.03   -0.04   -0.15   -0.40   -0.74   -1.06   -1.20   -1.05   -0.62    0.01    0.69    1.31    1.90    2.65    3.84    5.70    8.25
+   195.0    0.00   -0.05   -0.03   -0.03   -0.13   -0.37   -0.71   -1.03   -1.18   -1.04   -0.61    0.02    0.68    1.28    1.81    2.46    3.52    5.24    7.67
+   200.0    0.00   -0.04   -0.02   -0.01   -0.11   -0.35   -0.69   -1.02   -1.17   -1.05   -0.64   -0.04    0.59    1.12    1.57    2.10    2.99    4.51    6.74
+   205.0    0.00   -0.04   -0.01   -0.01   -0.10   -0.34   -0.68   -1.02   -1.19   -1.09   -0.72   -0.17    0.41    0.87    1.21    1.60    2.31    3.60    5.56
+   210.0    0.00   -0.03   -0.01    0.00   -0.09   -0.34   -0.69   -1.03   -1.22   -1.16   -0.83   -0.34    0.16    0.52    0.75    1.00    1.53    2.60    4.27
+   215.0    0.00   -0.03    0.00    0.01   -0.09   -0.34   -0.70   -1.06   -1.27   -1.24   -0.96   -0.54   -0.13    0.13    0.24    0.36    0.74    1.61    3.02
+   220.0    0.00   -0.02    0.00    0.01   -0.10   -0.36   -0.73   -1.10   -1.33   -1.34   -1.11   -0.76   -0.44   -0.28   -0.27   -0.25    0.02    0.75    1.93
+   225.0    0.00   -0.02    0.01    0.01   -0.11   -0.38   -0.76   -1.15   -1.40   -1.43   -1.25   -0.97   -0.75   -0.69   -0.76   -0.80   -0.57    0.09    1.14
+   230.0    0.00   -0.01    0.02    0.01   -0.12   -0.40   -0.80   -1.20   -1.46   -1.52   -1.38   -1.17   -1.03   -1.05   -1.18   -1.24   -1.00   -0.31    0.71
+   235.0    0.00   -0.01    0.02    0.01   -0.13   -0.43   -0.84   -1.24   -1.51   -1.59   -1.48   -1.33   -1.27   -1.35   -1.52   -1.56   -1.23   -0.42    0.69
+   240.0    0.00    0.00    0.03    0.01   -0.14   -0.45   -0.87   -1.27   -1.55   -1.63   -1.56   -1.45   -1.45   -1.59   -1.76   -1.74   -1.27   -0.26    1.05
+   245.0    0.00    0.00    0.04    0.01   -0.14   -0.46   -0.89   -1.29   -1.57   -1.66   -1.60   -1.53   -1.57   -1.74   -1.90   -1.79   -1.14    0.12    1.72
+   250.0    0.00    0.01    0.05    0.02   -0.14   -0.46   -0.89   -1.30   -1.57   -1.66   -1.62   -1.57   -1.64   -1.82   -1.95   -1.73   -0.88    0.65    2.58
+   255.0    0.00    0.02    0.06    0.03   -0.13   -0.46   -0.88   -1.28   -1.55   -1.64   -1.61   -1.58   -1.66   -1.84   -1.92   -1.59   -0.56    1.24    3.48
+   260.0    0.00    0.03    0.07    0.05   -0.11   -0.43   -0.85   -1.25   -1.52   -1.61   -1.59   -1.57   -1.65   -1.80   -1.83   -1.41   -0.23    1.78    4.29
+   265.0    0.00    0.03    0.08    0.07   -0.08   -0.40   -0.81   -1.20   -1.47   -1.57   -1.56   -1.54   -1.60   -1.73   -1.71   -1.22    0.05    2.19    4.86
+   270.0    0.00    0.04    0.10    0.09   -0.05   -0.35   -0.75   -1.15   -1.43   -1.54   -1.53   -1.51   -1.55   -1.64   -1.58   -1.05    0.25    2.39    5.09
+   275.0    0.00    0.05    0.12    0.12   -0.01   -0.30   -0.69   -1.09   -1.38   -1.51   -1.52   -1.48   -1.50   -1.55   -1.45   -0.93    0.32    2.36    4.94
+   280.0    0.00    0.06    0.14    0.15    0.04   -0.24   -0.63   -1.03   -1.34   -1.50   -1.51   -1.47   -1.46   -1.46   -1.35   -0.86    0.26    2.09    4.39
+   285.0    0.00    0.07    0.15    0.19    0.09   -0.17   -0.56   -0.97   -1.31   -1.49   -1.52   -1.48   -1.42   -1.39   -1.26   -0.85    0.08    1.61    3.51
+   290.0    0.00    0.08    0.17    0.22    0.14   -0.11   -0.49   -0.92   -1.29   -1.50   -1.55   -1.49   -1.40   -1.33   -1.21   -0.89   -0.17    0.99    2.40
+   295.0    0.00    0.09    0.19    0.25    0.19   -0.05   -0.44   -0.88   -1.27   -1.51   -1.57   -1.50   -1.39   -1.29   -1.18   -0.95   -0.48    0.31    1.22
+   300.0    0.00    0.09    0.21    0.29    0.23    0.00   -0.39   -0.84   -1.26   -1.52   -1.60   -1.52   -1.38   -1.25   -1.15   -1.03   -0.76   -0.33    0.11
+   305.0    0.00    0.10    0.23    0.32    0.27    0.05   -0.34   -0.82   -1.25   -1.53   -1.61   -1.52   -1.35   -1.21   -1.12   -1.08   -0.99   -0.83   -0.76
+   310.0    0.00    0.11    0.25    0.35    0.31    0.09   -0.31   -0.79   -1.24   -1.53   -1.60   -1.50   -1.31   -1.15   -1.07   -1.08   -1.10   -1.13   -1.27
+   315.0    0.00    0.12    0.27    0.37    0.34    0.12   -0.28   -0.77   -1.22   -1.51   -1.58   -1.46   -1.25   -1.07   -0.99   -1.01   -1.08   -1.15   -1.35
+   320.0    0.00    0.12    0.28    0.40    0.37    0.15   -0.25   -0.75   -1.19   -1.47   -1.52   -1.38   -1.15   -0.95   -0.86   -0.86   -0.89   -0.89   -0.96
+   325.0    0.00    0.13    0.30    0.42    0.39    0.17   -0.23   -0.72   -1.16   -1.42   -1.44   -1.28   -1.02   -0.80   -0.67   -0.62   -0.54   -0.37   -0.14
+   330.0    0.00    0.13    0.31    0.44    0.42    0.19   -0.21   -0.69   -1.11   -1.35   -1.34   -1.14   -0.86   -0.61   -0.44   -0.30   -0.07    0.37    1.03
+   335.0    0.00    0.14    0.32    0.45    0.43    0.21   -0.19   -0.66   -1.06   -1.26   -1.23   -0.99   -0.67   -0.38   -0.15    0.08    0.49    1.24    2.40
+   340.0    0.00    0.14    0.33    0.47    0.45    0.23   -0.16   -0.62   -1.00   -1.17   -1.10   -0.83   -0.47   -0.14    0.16    0.50    1.09    2.15    3.81
+   345.0    0.00    0.14    0.34    0.48    0.47    0.26   -0.13   -0.57   -0.93   -1.08   -0.98   -0.67   -0.27    0.12    0.48    0.92    1.67    2.99    5.10
+   350.0    0.00    0.15    0.34    0.49    0.49    0.28   -0.09   -0.52   -0.86   -0.99   -0.86   -0.53   -0.09    0.36    0.78    1.30    2.15    3.66    6.11
+   355.0    0.00    0.15    0.34    0.50    0.50    0.31   -0.05   -0.46   -0.79   -0.91   -0.77   -0.41    0.07    0.56    1.03    1.60    2.50    4.08    6.72
+   360.0    0.00    0.15    0.34    0.50    0.52    0.34    0.00   -0.40   -0.72   -0.83   -0.69   -0.32    0.18    0.71    1.21    1.78    2.66    4.20    6.86
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.52      0.15     81.79                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.07   -0.25   -0.50   -0.77   -1.03   -1.29   -1.59   -1.95   -2.37   -2.77   -3.01   -2.90   -2.29   -1.15    0.40    2.03    3.33    3.90
+     0.0    0.00   -0.09   -0.30   -0.59   -0.89   -1.16   -1.43   -1.72   -2.05   -2.43   -2.79   -3.00   -2.92   -2.40   -1.42   -0.03    1.55    3.04    4.13
+     5.0    0.00   -0.09   -0.30   -0.59   -0.89   -1.18   -1.45   -1.74   -2.08   -2.44   -2.77   -2.94   -2.80   -2.22   -1.16    0.33    2.02    3.61    4.78
+    10.0    0.00   -0.08   -0.30   -0.58   -0.89   -1.19   -1.48   -1.78   -2.11   -2.46   -2.76   -2.90   -2.72   -2.09   -0.96    0.61    2.39    4.06    5.24
+    15.0    0.00   -0.08   -0.29   -0.58   -0.90   -1.21   -1.51   -1.81   -2.14   -2.48   -2.77   -2.89   -2.68   -2.02   -0.84    0.78    2.61    4.31    5.45
+    20.0    0.00   -0.08   -0.29   -0.58   -0.91   -1.22   -1.53   -1.85   -2.18   -2.52   -2.81   -2.91   -2.69   -2.02   -0.82    0.82    2.67    4.36    5.40
+    25.0    0.00   -0.08   -0.29   -0.58   -0.91   -1.24   -1.56   -1.89   -2.23   -2.58   -2.86   -2.97   -2.76   -2.09   -0.90    0.74    2.57    4.19    5.10
+    30.0    0.00   -0.08   -0.28   -0.58   -0.91   -1.25   -1.58   -1.92   -2.28   -2.64   -2.94   -3.06   -2.87   -2.22   -1.05    0.55    2.33    3.85    4.60
+    35.0    0.00   -0.07   -0.28   -0.57   -0.91   -1.25   -1.59   -1.95   -2.32   -2.70   -3.02   -3.18   -3.01   -2.39   -1.26    0.29    1.98    3.39    3.99
+    40.0    0.00   -0.07   -0.28   -0.57   -0.90   -1.25   -1.60   -1.96   -2.36   -2.77   -3.12   -3.30   -3.16   -2.57   -1.49    0.00    1.60    2.88    3.35
+    45.0    0.00   -0.07   -0.27   -0.56   -0.90   -1.24   -1.59   -1.97   -2.38   -2.82   -3.21   -3.42   -3.31   -2.74   -1.70   -0.28    1.23    2.41    2.78
+    50.0    0.00   -0.07   -0.27   -0.55   -0.88   -1.22   -1.57   -1.96   -2.39   -2.86   -3.28   -3.52   -3.42   -2.88   -1.85   -0.48    0.95    2.04    2.38
+    55.0    0.00   -0.07   -0.26   -0.55   -0.87   -1.20   -1.55   -1.94   -2.39   -2.88   -3.32   -3.58   -3.49   -2.95   -1.93   -0.59    0.79    1.84    2.22
+    60.0    0.00   -0.06   -0.26   -0.54   -0.85   -1.17   -1.51   -1.90   -2.36   -2.86   -3.33   -3.60   -3.50   -2.94   -1.91   -0.56    0.80    1.86    2.33
+    65.0    0.00   -0.06   -0.25   -0.53   -0.83   -1.14   -1.46   -1.84   -2.31   -2.82   -3.29   -3.56   -3.45   -2.85   -1.77   -0.40    0.99    2.10    2.73
+    70.0    0.00   -0.06   -0.25   -0.52   -0.81   -1.11   -1.42   -1.78   -2.24   -2.75   -3.22   -3.47   -3.32   -2.67   -1.54   -0.11    1.35    2.56    3.39
+    75.0    0.00   -0.06   -0.25   -0.51   -0.80   -1.07   -1.37   -1.71   -2.15   -2.65   -3.10   -3.33   -3.14   -2.43   -1.23    0.29    1.85    3.20    4.25
+    80.0    0.00   -0.06   -0.24   -0.50   -0.78   -1.05   -1.32   -1.64   -2.06   -2.53   -2.96   -3.15   -2.92   -2.15   -0.86    0.75    2.43    3.94    5.22
+    85.0    0.00   -0.06   -0.24   -0.50   -0.77   -1.02   -1.28   -1.57   -1.96   -2.40   -2.79   -2.94   -2.67   -1.84   -0.48    1.23    3.05    4.72    6.20
+    90.0    0.00   -0.06   -0.24   -0.50   -0.76   -1.01   -1.24   -1.51   -1.86   -2.26   -2.61   -2.73   -2.42   -1.55   -0.13    1.68    3.62    5.45    7.08
+    95.0    0.00   -0.05   -0.24   -0.49   -0.76   -1.00   -1.22   -1.46   -1.77   -2.13   -2.45   -2.54   -2.21   -1.31    0.15    2.04    4.08    6.03    7.75
+   100.0    0.00   -0.05   -0.24   -0.49   -0.76   -0.99   -1.20   -1.42   -1.70   -2.02   -2.30   -2.38   -2.04   -1.15    0.33    2.27    4.39    6.42    8.13
+   105.0    0.00   -0.05   -0.24   -0.50   -0.76   -1.00   -1.20   -1.40   -1.65   -1.94   -2.19   -2.26   -1.94   -1.07    0.40    2.34    4.50    6.54    8.17
+   110.0    0.00   -0.05   -0.24   -0.50   -0.77   -1.01   -1.20   -1.39   -1.61   -1.88   -2.13   -2.21   -1.92   -1.10    0.33    2.25    4.40    6.40    7.85
+   115.0    0.00   -0.05   -0.24   -0.50   -0.78   -1.02   -1.21   -1.39   -1.61   -1.87   -2.12   -2.22   -1.99   -1.23    0.13    2.00    4.10    5.98    7.20
+   120.0    0.00   -0.05   -0.24   -0.51   -0.79   -1.03   -1.23   -1.41   -1.63   -1.89   -2.16   -2.30   -2.13   -1.45   -0.18    1.61    3.61    5.34    6.26
+   125.0    0.00   -0.05   -0.24   -0.51   -0.79   -1.04   -1.25   -1.44   -1.66   -1.94   -2.24   -2.43   -2.33   -1.74   -0.56    1.12    2.99    4.53    5.13
+   130.0    0.00   -0.05   -0.24   -0.51   -0.80   -1.06   -1.27   -1.47   -1.72   -2.02   -2.36   -2.61   -2.58   -2.07   -0.99    0.57    2.30    3.63    3.93
+   135.0    0.00   -0.06   -0.24   -0.51   -0.80   -1.07   -1.29   -1.51   -1.78   -2.12   -2.51   -2.81   -2.84   -2.41   -1.42    0.03    1.60    2.73    2.76
+   140.0    0.00   -0.06   -0.25   -0.52   -0.81   -1.07   -1.31   -1.55   -1.85   -2.23   -2.66   -3.01   -3.09   -2.71   -1.80   -0.46    0.97    1.92    1.75
+   145.0    0.00   -0.06   -0.25   -0.52   -0.81   -1.08   -1.33   -1.59   -1.92   -2.34   -2.81   -3.19   -3.31   -2.97   -2.11   -0.85    0.46    1.28    0.99
+   150.0    0.00   -0.06   -0.25   -0.52   -0.81   -1.08   -1.34   -1.62   -1.98   -2.44   -2.94   -3.34   -3.47   -3.14   -2.31   -1.11    0.12    0.86    0.56
+   155.0    0.00   -0.06   -0.25   -0.52   -0.81   -1.08   -1.35   -1.64   -2.03   -2.51   -3.03   -3.45   -3.57   -3.23   -2.39   -1.21   -0.02    0.70    0.49
+   160.0    0.00   -0.06   -0.25   -0.52   -0.81   -1.08   -1.35   -1.66   -2.07   -2.57   -3.10   -3.50   -3.59   -3.22   -2.36   -1.17    0.03    0.80    0.77
+   165.0    0.00   -0.06   -0.25   -0.52   -0.81   -1.08   -1.35   -1.67   -2.09   -2.60   -3.12   -3.50   -3.55   -3.13   -2.22   -0.98    0.26    1.14    1.36
+   170.0    0.00   -0.06   -0.26   -0.53   -0.81   -1.08   -1.36   -1.68   -2.09   -2.60   -3.11   -3.46   -3.46   -2.97   -1.99   -0.69    0.64    1.67    2.18
+   175.0    0.00   -0.06   -0.26   -0.53   -0.81   -1.08   -1.35   -1.67   -2.08   -2.58   -3.07   -3.39   -3.34   -2.78   -1.72   -0.33    1.11    2.32    3.13
+   180.0    0.00   -0.06   -0.26   -0.53   -0.82   -1.08   -1.35   -1.66   -2.06   -2.55   -3.02   -3.30   -3.20   -2.58   -1.44    0.05    1.62    3.00    4.10
+   185.0    0.00   -0.07   -0.26   -0.53   -0.82   -1.08   -1.35   -1.65   -2.04   -2.50   -2.95   -3.21   -3.07   -2.40   -1.19    0.40    2.10    3.65    4.96
+   190.0    0.00   -0.07   -0.26   -0.54   -0.82   -1.08   -1.34   -1.63   -2.01   -2.46   -2.89   -3.14   -2.98   -2.27   -1.00    0.67    2.49    4.17    5.62
+   195.0    0.00   -0.07   -0.27   -0.54   -0.82   -1.08   -1.33   -1.61   -1.98   -2.42   -2.85   -3.10   -2.94   -2.21   -0.90    0.85    2.75    4.52    6.01
+   200.0    0.00   -0.07   -0.27   -0.54   -0.82   -1.08   -1.32   -1.60   -1.95   -2.39   -2.83   -3.09   -2.95   -2.23   -0.89    0.91    2.87    4.66    6.09
+   205.0    0.00   -0.07   -0.27   -0.54   -0.82   -1.08   -1.31   -1.58   -1.93   -2.38   -2.84   -3.13   -3.02   -2.32   -0.98    0.84    2.82    4.57    5.87
+   210.0    0.00   -0.07   -0.27   -0.54   -0.82   -1.07   -1.30   -1.57   -1.93   -2.39   -2.87   -3.20   -3.13   -2.47   -1.14    0.67    2.63    4.30    5.38
+   215.0    0.00   -0.07   -0.27   -0.54   -0.82   -1.07   -1.29   -1.56   -1.93   -2.41   -2.93   -3.30   -3.28   -2.66   -1.36    0.43    2.33    3.87    4.70
+   220.0    0.00   -0.08   -0.28   -0.54   -0.81   -1.06   -1.28   -1.56   -1.94   -2.45   -3.00   -3.42   -3.44   -2.85   -1.60    0.14    1.97    3.37    3.92
+   225.0    0.00   -0.08   -0.28   -0.54   -0.81   -1.05   -1.28   -1.56   -1.96   -2.49   -3.08   -3.53   -3.59   -3.03   -1.82   -0.13    1.61    2.86    3.17
+   230.0    0.00   -0.08   -0.28   -0.54   -0.80   -1.04   -1.27   -1.56   -1.98   -2.54   -3.15   -3.63   -3.70   -3.16   -1.98   -0.34    1.31    2.42    2.54
+   235.0    0.00   -0.08   -0.28   -0.54   -0.80   -1.03   -1.27   -1.57   -2.00   -2.58   -3.21   -3.69   -3.76   -3.22   -2.05   -0.46    1.12    2.13    2.13
+   240.0    0.00   -0.08   -0.28   -0.54   -0.79   -1.03   -1.27   -1.58   -2.03   -2.62   -3.24   -3.70   -3.74   -3.19   -2.02   -0.45    1.08    2.04    2.00
+   245.0    0.00   -0.08   -0.28   -0.54   -0.79   -1.03   -1.27   -1.59   -2.05   -2.64   -3.24   -3.66   -3.66   -3.07   -1.87   -0.30    1.22    2.18    2.18
+   250.0    0.00   -0.08   -0.28   -0.54   -0.79   -1.03   -1.27   -1.60   -2.06   -2.64   -3.21   -3.58   -3.51   -2.85   -1.62   -0.02    1.52    2.55    2.66
+   255.0    0.00   -0.09   -0.29   -0.54   -0.79   -1.03   -1.28   -1.61   -2.06   -2.62   -3.14   -3.45   -3.31   -2.57   -1.28    0.37    1.98    3.10    3.40
+   260.0    0.00   -0.09   -0.29   -0.54   -0.80   -1.04   -1.29   -1.62   -2.06   -2.58   -3.05   -3.28   -3.06   -2.25   -0.88    0.84    2.54    3.80    4.29
+   265.0    0.00   -0.09   -0.29   -0.55   -0.81   -1.05   -1.30   -1.62   -2.04   -2.52   -2.94   -3.10   -2.80   -1.92   -0.47    1.33    3.15    4.56    5.25
+   270.0    0.00   -0.09   -0.29   -0.56   -0.82   -1.06   -1.31   -1.62   -2.02   -2.46   -2.82   -2.92   -2.56   -1.61   -0.09    1.80    3.73    5.30    6.16
+   275.0    0.00   -0.09   -0.30   -0.56   -0.83   -1.08   -1.33   -1.62   -1.99   -2.39   -2.71   -2.76   -2.35   -1.35    0.22    2.19    4.22    5.92    6.90
+   280.0    0.00   -0.09   -0.30   -0.57   -0.84   -1.09   -1.34   -1.62   -1.96   -2.32   -2.60   -2.62   -2.19   -1.18    0.42    2.45    4.56    6.35    7.39
+   285.0    0.00   -0.09   -0.30   -0.58   -0.85   -1.11   -1.35   -1.61   -1.93   -2.26   -2.52   -2.53   -2.11   -1.10    0.50    2.54    4.71    6.53    7.55
+   290.0    0.00   -0.09   -0.31   -0.58   -0.87   -1.12   -1.36   -1.61   -1.90   -2.21   -2.46   -2.49   -2.10   -1.14    0.43    2.46    4.63    6.44    7.38
+   295.0    0.00   -0.09   -0.31   -0.59   -0.88   -1.14   -1.37   -1.60   -1.88   -2.18   -2.44   -2.50   -2.16   -1.27    0.23    2.21    4.33    6.07    6.87
+   300.0    0.00   -0.10   -0.31   -0.60   -0.89   -1.15   -1.37   -1.60   -1.87   -2.17   -2.44   -2.55   -2.29   -1.50   -0.09    1.80    3.83    5.46    6.09
+   305.0    0.00   -0.10   -0.31   -0.60   -0.89   -1.15   -1.38   -1.60   -1.86   -2.17   -2.48   -2.64   -2.47   -1.78   -0.50    1.27    3.18    4.67    5.12
+   310.0    0.00   -0.10   -0.32   -0.60   -0.90   -1.16   -1.38   -1.60   -1.87   -2.19   -2.53   -2.76   -2.67   -2.10   -0.94    0.69    2.44    3.78    4.06
+   315.0    0.00   -0.10   -0.32   -0.61   -0.90   -1.16   -1.38   -1.61   -1.88   -2.22   -2.60   -2.88   -2.88   -2.41   -1.39    0.09    1.69    2.88    3.03
+   320.0    0.00   -0.10   -0.32   -0.61   -0.90   -1.16   -1.38   -1.61   -1.89   -2.26   -2.67   -3.00   -3.07   -2.70   -1.79   -0.45    1.01    2.06    2.15
+   325.0    0.00   -0.09   -0.32   -0.60   -0.90   -1.16   -1.38   -1.62   -1.91   -2.30   -2.74   -3.11   -3.23   -2.92   -2.11   -0.88    0.45    1.41    1.49
+   330.0    0.00   -0.09   -0.31   -0.60   -0.90   -1.15   -1.38   -1.62   -1.93   -2.34   -2.80   -3.18   -3.33   -3.07   -2.32   -1.18    0.07    0.99    1.13
+   335.0    0.00   -0.09   -0.31   -0.60   -0.89   -1.15   -1.38   -1.63   -1.96   -2.37   -2.83   -3.23   -3.37   -3.12   -2.40   -1.31   -0.10    0.83    1.08
+   340.0    0.00   -0.09   -0.31   -0.60   -0.89   -1.15   -1.38   -1.64   -1.98   -2.40   -2.85   -3.23   -3.36   -3.09   -2.36   -1.27   -0.06    0.93    1.35
+   345.0    0.00   -0.09   -0.31   -0.59   -0.88   -1.15   -1.39   -1.66   -1.99   -2.41   -2.86   -3.20   -3.29   -2.98   -2.22   -1.09    0.18    1.26    1.87
+   350.0    0.00   -0.09   -0.31   -0.59   -0.88   -1.15   -1.40   -1.67   -2.01   -2.42   -2.84   -3.15   -3.18   -2.81   -1.98   -0.79    0.56    1.78    2.57
+   355.0    0.00   -0.09   -0.30   -0.59   -0.88   -1.16   -1.41   -1.69   -2.03   -2.43   -2.82   -3.08   -3.05   -2.61   -1.70   -0.42    1.04    2.40    3.36
+   360.0    0.00   -0.09   -0.30   -0.59   -0.89   -1.16   -1.43   -1.72   -2.05   -2.43   -2.79   -3.00   -2.92   -2.40   -1.42   -0.03    1.55    3.04    4.13
+   G02                                                      END OF FREQUENCY    
+   R01                                                      START OF FREQUENCY  
+      1.29     -0.70     88.84                              NORTH / EAST / UP   
+   NOAZI    0.00    0.02    0.07    0.10    0.06   -0.07   -0.30   -0.61   -0.91   -1.12   -1.14   -1.00   -0.77   -0.56   -0.45   -0.41   -0.22    0.49    2.10
+     0.0    0.00    0.18    0.34    0.48    0.54    0.50    0.34    0.07   -0.25   -0.50   -0.57   -0.36    0.15    0.83    1.47    1.94    2.37    3.17    5.17
+     5.0    0.00    0.17    0.34    0.47    0.54    0.52    0.39    0.17   -0.12   -0.38   -0.46   -0.26    0.24    0.91    1.55    1.97    2.28    2.90    4.67
+    10.0    0.00    0.17    0.34    0.47    0.54    0.54    0.44    0.25   -0.02   -0.27   -0.37   -0.20    0.25    0.89    1.46    1.82    1.96    2.34    3.83
+    15.0    0.00    0.17    0.33    0.46    0.54    0.56    0.49    0.31    0.05   -0.19   -0.32   -0.19    0.20    0.76    1.25    1.47    1.42    1.54    2.71
+    20.0    0.00    0.16    0.32    0.45    0.54    0.56    0.51    0.35    0.11   -0.15   -0.31   -0.24    0.06    0.52    0.91    0.98    0.75    0.61    1.47
+    25.0    0.00    0.16    0.31    0.44    0.53    0.56    0.51    0.37    0.12   -0.14   -0.32   -0.33   -0.11    0.22    0.45    0.37   -0.05   -0.38    0.23
+    30.0    0.00    0.15    0.30    0.43    0.50    0.53    0.48    0.33    0.10   -0.16   -0.38   -0.45   -0.33   -0.14   -0.06   -0.29   -0.85   -1.32   -0.87
+    35.0    0.00    0.14    0.29    0.40    0.47    0.48    0.42    0.27    0.04   -0.23   -0.47   -0.58   -0.58   -0.52   -0.59   -0.96   -1.60   -2.12   -1.75
+    40.0    0.00    0.14    0.27    0.38    0.44    0.43    0.35    0.18   -0.05   -0.32   -0.56   -0.72   -0.81   -0.87   -1.08   -1.56   -2.22   -2.72   -2.29
+    45.0    0.00    0.13    0.25    0.35    0.38    0.35    0.24    0.06   -0.16   -0.43   -0.66   -0.85   -1.00   -1.19   -1.51   -2.04   -2.67   -3.04   -2.47
+    50.0    0.00    0.12    0.24    0.32    0.33    0.26    0.12   -0.08   -0.32   -0.56   -0.77   -0.96   -1.16   -1.41   -1.81   -2.34   -2.89   -3.07   -2.31
+    55.0    0.00    0.11    0.21    0.28    0.27    0.17   -0.01   -0.23   -0.47   -0.71   -0.89   -1.07   -1.27   -1.56   -1.97   -2.48   -2.88   -2.83   -1.83
+    60.0    0.00    0.10    0.19    0.25    0.22    0.08   -0.15   -0.41   -0.65   -0.85   -1.00   -1.13   -1.31   -1.60   -1.99   -2.41   -2.64   -2.34   -1.11
+    65.0    0.00    0.07    0.17    0.21    0.15   -0.02   -0.28   -0.58   -0.82   -0.99   -1.09   -1.17   -1.30   -1.54   -1.88   -2.19   -2.24   -1.69   -0.21
+    70.0    0.00    0.06    0.14    0.17    0.09   -0.12   -0.42   -0.73   -0.99   -1.12   -1.17   -1.19   -1.24   -1.41   -1.66   -1.85   -1.70   -0.94    0.74
+    75.0    0.00    0.05    0.12    0.13    0.02   -0.20   -0.53   -0.89   -1.14   -1.26   -1.25   -1.19   -1.16   -1.23   -1.37   -1.41   -1.13   -0.17    1.63
+    80.0    0.00    0.04    0.09    0.08   -0.03   -0.28   -0.65   -1.01   -1.28   -1.39   -1.33   -1.18   -1.06   -1.03   -1.04   -0.99   -0.55    0.51    2.38
+    85.0    0.00    0.02    0.06    0.05   -0.09   -0.36   -0.75   -1.14   -1.40   -1.50   -1.39   -1.18   -0.97   -0.83   -0.76   -0.60   -0.09    1.03    2.93
+    90.0    0.00    0.01    0.04    0.03   -0.14   -0.43   -0.84   -1.23   -1.51   -1.59   -1.46   -1.19   -0.90   -0.68   -0.53   -0.32    0.23    1.37    3.23
+    95.0    0.00   -0.01    0.01   -0.03   -0.20   -0.50   -0.91   -1.31   -1.60   -1.68   -1.53   -1.21   -0.86   -0.60   -0.40   -0.16    0.36    1.46    3.26
+   100.0    0.00   -0.01   -0.02   -0.08   -0.24   -0.55   -0.97   -1.37   -1.67   -1.75   -1.59   -1.24   -0.88   -0.57   -0.37   -0.16    0.31    1.33    3.05
+   105.0    0.00   -0.03   -0.05   -0.11   -0.29   -0.60   -1.00   -1.42   -1.73   -1.80   -1.65   -1.32   -0.93   -0.63   -0.46   -0.31    0.08    1.01    2.64
+   110.0    0.00   -0.04   -0.07   -0.15   -0.33   -0.64   -1.04   -1.46   -1.75   -1.84   -1.70   -1.39   -1.02   -0.77   -0.64   -0.57   -0.28    0.53    2.10
+   115.0    0.00   -0.06   -0.10   -0.18   -0.37   -0.68   -1.07   -1.48   -1.77   -1.87   -1.74   -1.46   -1.14   -0.94   -0.89   -0.90   -0.72   -0.81    1.49
+   120.0    0.00   -0.07   -0.12   -0.22   -0.40   -0.70   -1.08   -1.47   -1.76   -1.86   -1.77   -1.53   -1.26   -1.12   -1.15   -1.26   -1.16   -0.52    0.91
+   125.0    0.00   -0.08   -0.16   -0.25   -0.43   -0.71   -1.08   -1.45   -1.74   -1.85   -1.79   -1.58   -1.38   -1.30   -1.40   -1.57   -1.54   -0.94    0.47
+   130.0    0.00   -0.09   -0.17   -0.28   -0.45   -0.72   -1.07   -1.42   -1.70   -1.83   -1.79   -1.61   -1.46   -1.44   -1.57   -1.78   -1.77   -1.18    0.23
+   135.0    0.00   -0.10   -0.18   -0.30   -0.46   -0.72   -1.05   -1.38   -1.65   -1.79   -1.76   -1.63   -1.51   -1.50   -1.66   -1.85   -1.83   -1.21    0.23
+   140.0    0.00   -0.11   -0.21   -0.31   -0.47   -0.71   -1.01   -1.33   -1.59   -1.74   -1.73   -1.61   -1.50   -1.48   -1.61   -1.75   -1.66   -0.98    0.53
+   145.0    0.00   -0.12   -0.22   -0.31   -0.47   -0.69   -0.97   -1.27   -1.52   -1.68   -1.67   -1.55   -1.42   -1.36   -1.40   -1.47   -1.29   -0.50    1.11
+   150.0    0.00   -0.12   -0.23   -0.31   -0.45   -0.65   -0.91   -1.20   -1.45   -1.60   -1.59   -1.45   -1.28   -1.15   -1.09   -1.04   -0.71    0.19    1.94
+   155.0    0.00   -0.13   -0.22   -0.32   -0.43   -0.60   -0.85   -1.12   -1.39   -1.52   -1.51   -1.34   -1.08   -0.84   -0.66   -0.46   -0.01    1.04    2.95
+   160.0    0.00   -0.13   -0.23   -0.30   -0.40   -0.54   -0.77   -1.05   -1.31   -1.46   -1.42   -1.20   -0.86   -0.48   -0.15    0.19    0.77    1.96    4.06
+   165.0    0.00   -0.13   -0.23   -0.29   -0.36   -0.49   -0.70   -0.98   -1.24   -1.39   -1.34   -1.07   -0.60   -0.09    0.39    0.84    1.55    2.86    5.17
+   170.0    0.00   -0.15   -0.22   -0.27   -0.33   -0.43   -0.63   -0.90   -1.19   -1.34   -1.27   -0.91   -0.34    0.30    0.90    1.47    2.24    3.65    6.17
+   175.0    0.00   -0.15   -0.22   -0.25   -0.27   -0.36   -0.55   -0.83   -1.14   -1.31   -1.20   -0.78   -0.12    0.64    1.35    1.98    2.79    4.26    6.94
+   180.0    0.00   -0.14   -0.21   -0.22   -0.23   -0.30   -0.48   -0.78   -1.09   -1.28   -1.15   -0.68    0.07    0.93    1.67    2.32    3.12    4.61    7.39
+   185.0    0.00   -0.14   -0.20   -0.20   -0.19   -0.25   -0.43   -0.73   -1.06   -1.25   -1.13   -0.61    0.20    1.09    1.87    2.49    3.22    4.66    7.50
+   190.0    0.00   -0.14   -0.19   -0.19   -0.16   -0.20   -0.37   -0.69   -1.04   -1.24   -1.12   -0.59    0.25    1.16    1.91    2.46    3.09    4.40    7.21
+   195.0    0.00   -0.14   -0.19   -0.17   -0.13   -0.16   -0.34   -0.67   -1.03   -1.24   -1.12   -0.60    0.22    1.11    1.79    2.23    2.71    3.90    6.57
+   200.0    0.00   -0.13   -0.17   -0.14   -0.10   -0.14   -0.32   -0.66   -1.02   -1.25   -1.14   -0.65    0.13    0.93    1.52    1.82    2.16    3.17    5.66
+   205.0    0.00   -0.11   -0.16   -0.14   -0.09   -0.14   -0.32   -0.67   -1.03   -1.26   -1.18   -0.73   -0.03    0.67    1.12    1.30    1.50    2.32    4.55
+   210.0    0.00   -0.10   -0.15   -0.13   -0.09   -0.15   -0.34   -0.68   -1.05   -1.28   -1.22   -0.84   -0.24    0.32    0.64    0.69    0.76    1.44    3.39
+   215.0    0.00   -0.10   -0.14   -0.11   -0.09   -0.16   -0.37   -0.71   -1.07   -1.29   -1.27   -0.95   -0.48   -0.07    0.11    0.05    0.05    0.60    2.29
+   220.0    0.00   -0.09   -0.13   -0.11   -0.11   -0.20   -0.42   -0.75   -1.09   -1.32   -1.31   -1.09   -0.74   -0.47   -0.42   -0.55   -0.59   -0.09    1.36
+   225.0    0.00   -0.08   -0.11   -0.11   -0.13   -0.24   -0.47   -0.80   -1.12   -1.33   -1.36   -1.20   -0.99   -0.87   -0.92   -1.08   -1.09   -0.58    0.71
+   230.0    0.00   -0.07   -0.10   -0.10   -0.15   -0.28   -0.53   -0.86   -1.15   -1.35   -1.39   -1.31   -1.21   -1.22   -1.35   -1.51   -1.44   -0.84    0.38
+   235.0    0.00   -0.06   -0.09   -0.10   -0.16   -0.33   -0.60   -0.91   -1.18   -1.37   -1.41   -1.38   -1.40   -1.50   -1.69   -1.82   -1.60   -0.86    0.40
+   240.0    0.00   -0.05   -0.07   -0.09   -0.18   -0.36   -0.66   -0.95   -1.22   -1.36   -1.42   -1.43   -1.51   -1.71   -1.93   -1.98   -1.61   -0.65    0.73
+   245.0    0.00   -0.04   -0.05   -0.08   -0.18   -0.40   -0.70   -1.00   -1.24   -1.37   -1.41   -1.46   -1.58   -1.83   -2.05   -2.02   -1.48   -0.29    1.28
+   250.0    0.00   -0.03   -0.02   -0.05   -0.18   -0.41   -0.72   -1.03   -1.26   -1.37   -1.41   -1.45   -1.61   -1.86   -2.08   -1.96   -1.24    0.15    1.95
+   255.0    0.00   -0.01   -0.06   -0.03   -0.16   -0.42   -0.73   -1.05   -1.27   -1.36   -1.39   -1.43   -1.59   -1.84   -2.02   -1.82   -0.99    0.60    2.61
+   260.0    0.00    0.01    0.02   -0.05   -0.13   -0.39   -0.72   -1.04   -1.26   -1.35   -1.38   -1.40   -1.53   -1.76   -1.89   -1.65   -0.73    0.96    3.12
+   265.0    0.00    0.01    0.05    0.04   -0.09   -0.35   -0.68   -1.01   -1.25   -1.35   -1.36   -1.36   -1.45   -1.63   -1.73   -1.48   -0.55    1.18    3.39
+   270.0    0.00    0.03    0.08    0.07   -0.04   -0.29   -0.62   -0.97   -1.23   -1.34   -1.35   -1.34   -1.38   -1.51   -1.57   -1.31   -0.43    1.19    3.36
+   275.0    0.00    0.04    0.11    0.12    0.02   -0.21   -0.55   -0.91   -1.19   -1.33   -1.36   -1.32   -1.32   -1.39   -1.42   -1.20   -0.43    1.00    2.99
+   280.0    0.00    0.06    0.14    0.16    0.09   -0.13   -0.47   -0.84   -1.15   -1.34   -1.37   -1.32   -1.29   -1.29   -1.31   -1.14   -0.56    0.61    2.31
+   285.0    0.00    0.07    0.16    0.22    0.16   -0.03   -0.37   -0.76   -1.11   -1.33   -1.40   -1.35   -1.26   -1.23   -1.22   -1.15   -0.78    0.07    1.39
+   290.0    0.00    0.09    0.19    0.26    0.24    0.05   -0.27   -0.68   -1.08   -1.35   -1.45   -1.39   -1.28   -1.19   -1.19   -1.20   -1.05   -0.56    0.36
+   295.0    0.00    0.10    0.21    0.30    0.31    0.14   -0.18   -0.60   -1.04   -1.35   -1.50   -1.45   -1.32   -1.19   -1.19   -1.28   -1.35   -1.19   -0.66
+   300.0    0.00    0.11    0.24    0.35    0.36    0.21   -0.10   -0.54   -1.00   -1.36   -1.55   -1.51   -1.36   -1.22   -1.20   -1.37   -1.60   -1.72   -1.54
+   305.0    0.00    0.12    0.26    0.39    0.41    0.28   -0.03   -0.49   -0.98   -1.38   -1.58   -1.56   -1.39   -1.23   -1.21   -1.43   -1.79   -2.10   -2.13
+   310.0    0.00    0.13    0.29    0.42    0.46    0.33    0.01   -0.45   -0.96   -1.39   -1.60   -1.60   -1.42   -1.22   -1.20   -1.43   -1.84   -2.25   -2.34
+   315.0    0.00    0.14    0.31    0.44    0.49    0.36    0.05   -0.42   -0.94   -1.38   -1.61   -1.61   -1.41   -1.20   -1.14   -1.34   -1.75   -2.13   -2.17
+   320.0    0.00    0.14    0.32    0.46    0.51    0.39    0.08   -0.39   -0.91   -1.35   -1.58   -1.57   -1.35   -1.10   -1.01   -1.16   -1.50   -1.74   -1.58
+   325.0    0.00    0.16    0.33    0.48    0.52    0.40    0.10   -0.36   -0.88   -1.31   -1.54   -1.50   -1.24   -0.96   -0.80   -0.86   -1.07   -1.12   -0.63
+   330.0    0.00    0.16    0.34    0.49    0.54    0.41    0.12   -0.33   -0.83   -1.25   -1.45   -1.37   -1.09   -0.76   -0.53   -0.48   -0.53   -0.33    0.55
+   335.0    0.00    0.17    0.35    0.49    0.53    0.42    0.13   -0.30   -0.77   -1.16   -1.34   -1.22   -0.89   -0.49   -0.17   -0.03    0.10    0.56    1.85
+   340.0    0.00    0.17    0.35    0.49    0.54    0.42    0.16   -0.25   -0.70   -1.05   -1.20   -1.05   -0.67   -0.20    0.21    0.48    0.75    1.44    3.09
+   345.0    0.00    0.17    0.36    0.49    0.53    0.44    0.19   -0.18   -0.60   -0.92   -1.04   -0.86   -0.43    0.11    0.61    0.97    1.37    2.22    4.14
+   350.0    0.00    0.18    0.35    0.49    0.54    0.45    0.23   -0.11   -0.49   -0.79   -0.87   -0.68   -0.21    0.40    0.97    1.42    1.87    2.81    4.90
+   355.0    0.00    0.18    0.35    0.49    0.53    0.48    0.28   -0.01   -0.36   -0.64   -0.72   -0.51   -0.07    0.65    1.26    1.76    2.22    3.14    5.24
+   360.0    0.00    0.18    0.34    0.48    0.54    0.50    0.34    0.07   -0.25   -0.50   -0.57   -0.36    0.15    0.83    1.47    1.94    2.37    3.17    5.17
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+      0.52      0.15     81.79                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.03   -0.12   -0.26   -0.48   -0.74   -1.06   -1.45   -1.89   -2.36   -2.80   -3.11   -3.11   -2.67   -1.72   -0.35    1.08    2.08    2.08
+     0.0    0.00   -0.10   -0.29   -0.54   -0.80   -1.05   -1.32   -1.64   -2.01   -2.45   -2.89   -3.18   -3.21   -2.81   -1.99   -0.80    0.49    1.59    2.16
+     5.0    0.00   -0.10   -0.29   -0.55   -0.82   -1.09   -1.38   -1.71   -2.10   -2.51   -2.89   -3.12   -3.05   -2.58   -1.68   -0.40    1.03    2.29    3.09
+    10.0    0.00   -0.09   -0.29   -0.54   -0.82   -1.12   -1.44   -1.79   -2.17   -2.56   -2.89   -3.05   -2.92   -2.39   -1.42   -0.06    1.47    2.87    3.82
+    15.0    0.00   -0.09   -0.28   -0.53   -0.83   -1.14   -1.48   -1.84   -2.22   -2.58   -2.87   -3.00   -2.82   -2.26   -1.24    0.17    1.76    3.24    4.24
+    20.0    0.00   -0.09   -0.28   -0.51   -0.81   -1.14   -1.49   -1.88   -2.25   -2.60   -2.88   -2.96   -2.77   -2.20   -1.17    0.25    1.88    3.40    4.34
+    25.0    0.00   -0.09   -0.26   -0.50   -0.79   -1.13   -1.49   -1.89   -2.27   -2.62   -2.87   -2.97   -2.79   -2.23   -1.22    0.20    1.82    3.29    4.11
+    30.0    0.00   -0.09   -0.24   -0.47   -0.76   -1.10   -1.47   -1.87   -2.27   -2.63   -2.90   -3.01   -2.86   -2.35   -1.37    0.01    1.59    2.98    3.61
+    35.0    0.00   -0.08   -0.23   -0.43   -0.70   -1.04   -1.41   -1.83   -2.25   -2.63   -2.93   -3.09   -2.99   -2.52   -1.61   -0.28    1.24    2.51    2.92
+    40.0    0.00   -0.07   -0.21   -0.40   -0.64   -0.96   -1.34   -1.77   -2.22   -2.64   -2.99   -3.20   -3.15   -2.74   -1.89   -0.61    0.83    1.95    2.14
+    45.0    0.00   -0.07   -0.19   -0.35   -0.59   -0.88   -1.25   -1.70   -2.17   -2.64   -3.06   -3.32   -3.33   -2.96   -2.16   -0.94    0.41    1.42    1.41
+    50.0    0.00   -0.06   -0.17   -0.31   -0.51   -0.79   -1.15   -1.61   -2.12   -2.65   -3.13   -3.45   -3.49   -3.17   -2.37   -1.20    0.07    0.97    0.83
+    55.0    0.00   -0.06   -0.15   -0.28   -0.45   -0.70   -1.06   -1.53   -2.07   -2.66   -3.18   -3.55   -3.62   -3.30   -2.51   -1.36   -0.14    0.69    0.52
+    60.0    0.00   -0.05   -0.13   -0.24   -0.38   -0.61   -0.96   -1.44   -2.02   -2.65   -3.23   -3.62   -3.69   -3.34   -2.54   -1.37   -0.16    0.64    0.50
+    65.0    0.00   -0.05   -0.11   -0.21   -0.32   -0.54   -0.86   -1.35   -1.96   -2.63   -3.23   -3.64   -3.70   -3.30   -2.42   -1.22   -0.99    0.83    0.79
+    70.0    0.00   -0.05   -0.10   -0.17   -0.28   -0.48   -0.80   -1.28   -1.91   -2.59   -3.21   -3.60   -3.61   -3.13   -2.18   -0.92    0.36    1.25    1.39
+    75.0    0.00   -0.04   -0.10   -0.16   -0.26   -0.43   -0.75   -1.22   -1.85   -2.53   -3.14   -3.51   -3.45   -2.88   -1.84   -0.49    0.86    1.86    2.22
+    80.0    0.00   -0.04   -0.09   -0.15   -0.24   -0.42   -0.72   -1.18   -1.80   -2.46   -3.04   -3.35   -3.22   -2.57   -1.42    0.02    1.47    2.59    3.18
+    85.0    0.00   -0.04   -0.09   -0.15   -0.25   -0.42   -0.72   -1.17   -1.75   -2.38   -2.91   -3.15   -2.95   -2.21   -0.97    0.55    2.11    3.36    4.16
+    90.0    0.00   -0.03   -0.09   -0.16   -0.27   -0.46   -0.75   -1.16   -1.71   -2.27   -2.74   -2.92   -2.66   -1.85   -0.56    1.06    2.70    4.09    5.06
+    95.0    0.00   -0.02   -0.09   -0.17   -0.30   -0.51   -0.79   -1.19   -1.67   -2.18   -2.58   -2.71   -2.39   -1.55   -0.21    1.47    3.18    4.66    5.73
+   100.0    0.00   -0.02   -0.09   -0.20   -0.36   -0.56   -0.85   -1.23   -1.66   -2.10   -2.43   -2.51   -2.17   -1.33    0.01    1.73    3.50    5.04    6.12
+   105.0    0.00   -0.02   -0.10   -0.24   -0.41   -0.65   -0.94   -1.28   -1.66   -2.04   -2.31   -2.36   -2.04   -1.22    0.11    1.80    3.61    5.16    6.18
+   110.0    0.00   -0.02   -0.11   -0.26   -0.47   -0.73   -1.02   -1.35   -1.68   -1.99   -2.23   -2.28   -1.99   -1.23    0.04    1.71    3.50    5.02    5.86
+   115.0    0.00   -0.02   -0.12   -0.29   -0.52   -0.81   -1.10   -1.40   -1.71   -1.99   -2.21   -2.27   -2.05   -1.37   -0.18    1.43    3.19    4.62    5.23
+   120.0    0.00   -0.02   -0.13   -0.32   -0.58   -0.88   -1.18   -1.47   -1.76   -2.02   -2.24   -2.34   -2.20   -1.62   -0.53    1.02    2.71    4.01    4.31
+   125.0    0.00   -0.02   -0.14   -0.34   -0.61   -0.92   -1.24   -1.53   -1.79   -2.06   -2.31   -2.48   -2.43   -1.96   -0.96    0.50    2.11    3.25    3.21
+   130.0    0.00   -0.02   -0.14   -0.36   -0.65   -0.97   -1.28   -1.57   -1.85   -2.13   -2.43   -2.68   -2.72   -2.35   -1.45   -0.07    1.44    2.41    2.04
+   135.0    0.00   -0.02   -0.14   -0.36   -0.65   -0.99   -1.30   -1.59   -1.89   -2.22   -2.58   -2.91   -3.03   -2.76   -1.92   -0.62    0.78    1.58    0.90
+   140.0    0.00   -0.02   -0.15   -0.37   -0.66   -0.97   -1.30   -1.59   -1.92   -2.30   -2.73   -3.14   -3.34   -3.11   -2.34   -1.10    0.20    0.85   -0.08
+   145.0    0.00   -0.02   -0.15   -0.37   -0.65   -0.95   -1.27   -1.58   -1.94   -2.38   -2.88   -3.35   -3.60   -3.42   -2.67   -1.47   -0.25    0.26   -0.84
+   150.0    0.00   -0.02   -0.15   -0.36   -0.63   -0.92   -1.22   -1.55   -1.95   -2.45   -3.01   -3.52   -3.80   -3.62   -2.88   -1.71   -0.54   -0.11   -1.27
+   155.0    0.00   -0.02   -0.14   -0.35   -0.60   -0.87   -1.17   -1.50   -1.93   -2.48   -3.10   -3.66   -3.93   -3.72   -2.95   -1.78   -0.65   -0.26   -1.37
+   160.0    0.00   -0.02   -0.14   -0.34   -0.57   -0.82   -1.10   -1.45   -1.92   -2.51   -3.17   -3.71   -3.97   -3.71   -2.90   -1.72   -0.60   -0.19   -1.13
+   165.0    0.00   -0.02   -0.13   -0.31   -0.54   -0.77   -1.04   -1.40   -1.89   -2.51   -3.18   -3.72   -3.93   -3.62   -2.75   -1.53   -0.40    0.09   -0.59
+   170.0    0.00   -0.01   -0.13   -0.31   -0.51   -0.73   -1.01   -1.36   -1.86   -2.50   -3.17   -3.68   -3.84   -3.44   -2.51   -1.26   -0.07    0.54    0.18
+   175.0    0.00   -0.01   -0.12   -0.29   -0.49   -0.70   -0.96   -1.33   -1.84   -2.48   -3.13   -3.61   -3.70   -3.24   -2.25   -0.95    0.30    1.08    1.10
+   180.0    0.00    0.06   -0.11   -0.28   -0.47   -0.68   -0.95   -1.32   -1.83   -2.46   -3.09   -3.53   -3.55   -3.04   -1.99   -0.63    0.69    1.65    2.05
+   185.0    0.00   -0.01   -0.11   -0.27   -0.47   -0.68   -0.96   -1.33   -1.84   -2.44   -3.04   -3.44   -3.42   -2.86   -1.79   -0.37    1.05    2.19    2.94
+   190.0    0.00   -0.01   -0.10   -0.27   -0.47   -0.69   -0.98   -1.35   -1.86   -2.45   -3.01   -3.38   -3.33   -2.75   -1.65   -0.20    1.33    2.63    3.66
+   195.0    0.00    0.07   -0.10   -0.27   -0.47   -0.71   -1.01   -1.39   -1.88   -2.44   -2.99   -3.34   -3.30   -2.72   -1.61   -0.11    1.48    2.94    4.14
+   200.0    0.00    0.07   -0.10   -0.27   -0.48   -0.74   -1.05   -1.44   -1.91   -2.46   -2.98   -3.34   -3.32   -2.77   -1.66   -0.14    1.54    3.07    4.34
+   205.0    0.00    0.07   -0.09   -0.27   -0.50   -0.77   -1.09   -1.47   -1.94   -2.48   -3.00   -3.38   -3.40   -2.89   -1.81   -0.27    1.46    3.02    4.23
+   210.0    0.00    0.07   -0.09   -0.27   -0.51   -0.80   -1.12   -1.51   -1.97   -2.49   -3.03   -3.44   -3.51   -3.08   -2.02   -0.48    1.28    2.81    3.83
+   215.0    0.00    0.07   -0.09   -0.27   -0.53   -0.83   -1.15   -1.53   -1.98   -2.51   -3.06   -3.52   -3.67   -3.29   -2.27   -0.73    1.02    2.48    3.22
+   220.0    0.00   -0.01   -0.10   -0.27   -0.52   -0.84   -1.16   -1.55   -1.98   -2.52   -3.10   -3.61   -3.82   -3.51   -2.53   -1.00    0.73    2.07    2.46
+   225.0    0.00    0.08   -0.09   -0.27   -0.53   -0.84   -1.17   -1.54   -1.97   -2.50   -3.12   -3.68   -3.96   -3.69   -2.76   -1.23    0.45    1.65    1.66
+   230.0    0.00    0.08   -0.09   -0.27   -0.53   -0.83   -1.16   -1.52   -1.95   -2.49   -3.12   -3.73   -4.05   -3.82   -2.91   -1.40    0.24    1.28    0.94
+   235.0    0.00    0.08   -0.09   -0.27   -0.53   -0.82   -1.14   -1.50   -1.91   -2.46   -3.11   -3.73   -4.08   -3.88   -2.96   -1.48    0.13    1.03    0.39
+   240.0    0.00    0.08   -0.09   -0.27   -0.51   -0.82   -1.13   -1.47   -1.89   -2.44   -3.08   -3.70   -4.03   -3.82   -2.91   -1.42    0.13    0.94    0.09
+   245.0    0.00    0.08   -0.09   -0.27   -0.51   -0.81   -1.11   -1.45   -1.87   -2.41   -3.03   -3.62   -3.92   -3.68   -2.73   -1.24    0.29    1.05    0.12
+   250.0    0.00    0.08   -0.09   -0.27   -0.50   -0.80   -1.10   -1.45   -1.86   -2.39   -2.98   -3.51   -3.75   -3.43   -2.45   -0.94    0.59    1.37    0.47
+   255.0    0.00   -0.02   -0.10   -0.26   -0.50   -0.79   -1.11   -1.46   -1.88   -2.38   -2.91   -3.37   -3.52   -3.11   -2.09   -0.54    1.02    1.85    1.13
+   260.0    0.00   -0.02   -0.10   -0.26   -0.51   -0.80   -1.13   -1.49   -1.91   -2.38   -2.85   -3.21   -3.25   -2.76   -1.66   -0.08    1.54    2.50    2.02
+   265.0    0.00   -0.02   -0.10   -0.28   -0.52   -0.82   -1.16   -1.54   -1.95   -2.39   -2.79   -3.05   -2.97   -2.39   -1.21    0.41    2.10    3.21    3.06
+   270.0    0.00   -0.02   -0.11   -0.29   -0.54   -0.85   -1.21   -1.59   -2.01   -2.41   -2.74   -2.90   -2.71   -2.04   -0.80    0.88    2.65    3.95    4.11
+   275.0    0.00   -0.02   -0.12   -0.29   -0.55   -0.88   -1.26   -1.66   -2.06   -2.43   -2.71   -2.77   -2.49   -1.73   -0.44    1.28    3.12    4.59    5.05
+   280.0    0.00   -0.02   -0.12   -0.31   -0.57   -0.91   -1.30   -1.72   -2.12   -2.45   -2.67   -2.66   -2.32   -1.51   -0.19    1.57    3.46    5.06    5.77
+   285.0    0.00   -0.03   -0.13   -0.32   -0.59   -0.94   -1.34   -1.76   -2.16   -2.47   -2.65   -2.59   -2.21   -1.38   -0.06    1.69    3.64    5.32    6.15
+   290.0    0.00   -0.04   -0.15   -0.33   -0.61   -0.96   -1.37   -1.79   -2.17   -2.46   -2.62   -2.56   -2.17   -1.37   -0.07    1.67    3.61    5.30    6.17
+   295.0    0.00   -0.04   -0.16   -0.35   -0.63   -0.98   -1.38   -1.78   -2.16   -2.45   -2.61   -2.57   -2.21   -1.45   -0.21    1.47    3.37    5.00    5.77
+   300.0    0.00   -0.06   -0.17   -0.37   -0.64   -0.99   -1.36   -1.76   -2.13   -2.42   -2.59   -2.59   -2.32   -1.65   -0.49    1.12    2.92    4.44    5.01
+   305.0    0.00   -0.06   -0.18   -0.38   -0.65   -0.97   -1.34   -1.72   -2.07   -2.37   -2.60   -2.66   -2.48   -1.91   -0.87    0.63    2.32    3.67    3.96
+   310.0    0.00   -0.07   -0.20   -0.39   -0.66   -0.97   -1.31   -1.65   -2.00   -2.32   -2.59   -2.75   -2.68   -2.23   -1.29    0.08    1.61    2.75    2.74
+   315.0    0.00   -0.07   -0.22   -0.42   -0.66   -0.95   -1.25   -1.59   -1.92   -2.26   -2.60   -2.85   -2.89   -2.56   -1.75   -0.51    0.86    1.78    1.48
+   320.0    0.00   -0.08   -0.23   -0.43   -0.67   -0.93   -1.20   -1.51   -1.84   -2.22   -2.62   -2.96   -3.10   -2.88   -2.18   -1.06    0.16    0.87    0.32
+   325.0    0.00   -0.08   -0.24   -0.44   -0.68   -0.92   -1.17   -1.45   -1.78   -2.19   -2.65   -3.07   -3.30   -3.16   -2.54   -1.53   -0.45    0.10   -0.61
+   330.0    0.00   -0.08   -0.24   -0.45   -0.69   -0.91   -1.14   -1.40   -1.74   -2.18   -2.69   -3.16   -3.45   -3.36   -2.81   -1.87   -0.89   -0.44   -1.20
+   335.0    0.00   -0.08   -0.26   -0.47   -0.69   -0.91   -1.12   -1.38   -1.73   -2.19   -2.72   -3.24   -3.54   -3.47   -2.94   -2.05   -1.12   -0.70   -1.42
+   340.0    0.00   -0.09   -0.27   -0.49   -0.71   -0.92   -1.12   -1.38   -1.75   -2.22   -2.76   -3.28   -3.58   -3.49   -2.95   -2.05   -1.13   -0.67   -1.23
+   345.0    0.00   -0.10   -0.28   -0.50   -0.73   -0.94   -1.15   -1.42   -1.78   -2.26   -2.82   -3.30   -3.55   -3.42   -2.84   -1.90   -0.93   -0.37   -0.68
+   350.0    0.00   -0.10   -0.29   -0.52   -0.75   -0.97   -1.20   -1.48   -1.85   -2.32   -2.84   -3.28   -3.47   -3.27   -2.61   -1.61   -0.56    0.16    0.15
+   355.0    0.00   -0.10   -0.29   -0.53   -0.77   -1.02   -1.26   -1.55   -1.93   -2.39   -2.87   -3.25   -3.35   -3.05   -2.31   -1.23   -0.06    0.85    1.14
+   360.0    0.00   -0.10   -0.29   -0.54   -0.80   -1.05   -1.32   -1.64   -2.01   -2.45   -2.89   -3.18   -3.21   -2.81   -1.99   -0.80    0.49    1.59    2.16
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+LEIAR25         NONE                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               5    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     4                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+Number of Calibrated Antennas GPS:      005                 COMMENT             
+Number of Individual Calibrations GPS:  010                 COMMENT             
+Number of Calibrated Antennas GLO:      005                 COMMENT             
+Number of Individual Calibrations GLO:  010                 COMMENT             
+# GLONASS PCV                                               COMMENT             
+#  derived from Delta PCV per 25.0 MHz                      COMMENT             
+#  for frequency channel number k=0                         COMMENT             
+   G01                                                      START OF FREQUENCY  
+      1.41      1.00    155.34                              NORTH / EAST / UP   
+   NOAZI    0.00    0.16    0.61    1.22    1.82    2.23    2.30    1.98    1.29    0.36   -0.63   -1.52   -2.17   -2.48   -2.35   -1.67   -0.26    2.02    5.15
+     0.0    0.00    0.10    0.52    1.15    1.82    2.33    2.49    2.21    1.52    0.58   -0.44   -1.33   -1.96   -2.26   -2.18   -1.61   -0.37    1.74    4.74
+     5.0    0.00    0.09    0.51    1.14    1.81    2.31    2.46    2.17    1.47    0.51   -0.53   -1.43   -2.08   -2.41   -2.35   -1.82   -0.62    1.46    4.47
+    10.0    0.00    0.09    0.50    1.12    1.79    2.29    2.43    2.13    1.42    0.44   -0.61   -1.53   -2.19   -2.54   -2.51   -2.00   -0.83    1.23    4.24
+    15.0    0.00    0.08    0.49    1.11    1.77    2.27    2.40    2.10    1.38    0.38   -0.68   -1.61   -2.29   -2.64   -2.63   -2.15   -0.99    1.06    4.08
+    20.0    0.00    0.08    0.48    1.10    1.76    2.25    2.38    2.07    1.34    0.34   -0.73   -1.67   -2.35   -2.71   -2.71   -2.23   -1.09    0.97    4.01
+    25.0    0.00    0.08    0.48    1.09    1.75    2.23    2.36    2.05    1.32    0.32   -0.75   -1.70   -2.39   -2.75   -2.75   -2.26   -1.10    0.96    4.02
+    30.0    0.00    0.08    0.47    1.08    1.73    2.22    2.35    2.04    1.31    0.31   -0.76   -1.70   -2.39   -2.75   -2.74   -2.23   -1.05    1.04    4.11
+    35.0    0.00    0.08    0.47    1.08    1.72    2.21    2.34    2.03    1.32    0.32   -0.74   -1.69   -2.37   -2.73   -2.69   -2.15   -0.92    1.20    4.27
+    40.0    0.00    0.07    0.47    1.07    1.72    2.20    2.33    2.04    1.33    0.35   -0.71   -1.65   -2.33   -2.67   -2.61   -2.03   -0.75    1.41    4.47
+    45.0    0.00    0.07    0.46    1.07    1.71    2.19    2.33    2.04    1.34    0.37   -0.68   -1.61   -2.28   -2.61   -2.51   -1.88   -0.55    1.64    4.68
+    50.0    0.00    0.08    0.46    1.06    1.70    2.18    2.32    2.04    1.35    0.40   -0.64   -1.56   -2.23   -2.54   -2.41   -1.73   -0.35    1.88    4.89
+    55.0    0.00    0.08    0.46    1.06    1.70    2.17    2.31    2.03    1.36    0.42   -0.61   -1.52   -2.18   -2.48   -2.32   -1.60   -0.16    2.09    5.06
+    60.0    0.00    0.08    0.47    1.06    1.69    2.16    2.29    2.02    1.35    0.42   -0.59   -1.50   -2.15   -2.43   -2.26   -1.50   -0.02    2.25    5.18
+    65.0    0.00    0.08    0.47    1.06    1.68    2.14    2.27    1.99    1.33    0.41   -0.59   -1.49   -2.13   -2.41   -2.22   -1.44    0.06    2.35    5.24
+    70.0    0.00    0.09    0.48    1.06    1.68    2.12    2.24    1.95    1.29    0.38   -0.61   -1.50   -2.14   -2.41   -2.22   -1.43    0.08    2.37    5.24
+    75.0    0.00    0.09    0.48    1.07    1.67    2.10    2.21    1.91    1.24    0.34   -0.65   -1.52   -2.16   -2.45   -2.26   -1.47    0.04    2.33    5.19
+    80.0    0.00    0.10    0.49    1.07    1.67    2.08    2.17    1.86    1.19    0.28   -0.70   -1.57   -2.21   -2.50   -2.33   -1.56   -0.05    2.24    5.10
+    85.0    0.00    0.10    0.50    1.08    1.66    2.06    2.13    1.81    1.12    0.21   -0.76   -1.63   -2.27   -2.57   -2.42   -1.67   -0.18    2.11    4.99
+    90.0    0.00    0.11    0.51    1.08    1.66    2.05    2.10    1.76    1.06    0.15   -0.82   -1.69   -2.33   -2.65   -2.52   -1.80   -0.32    1.97    4.89
+    95.0    0.00    0.11    0.52    1.09    1.66    2.04    2.07    1.71    1.01    0.09   -0.88   -1.75   -2.40   -2.73   -2.62   -1.92   -0.46    1.84    4.82
+   100.0    0.00    0.12    0.53    1.10    1.67    2.03    2.05    1.68    0.97    0.05   -0.92   -1.80   -2.45   -2.79   -2.70   -2.02   -0.57    1.75    4.79
+   105.0    0.00    0.13    0.54    1.12    1.67    2.03    2.04    1.67    0.95    0.03   -0.95   -1.82   -2.49   -2.83   -2.75   -2.08   -0.63    1.71    4.83
+   110.0    0.00    0.14    0.55    1.13    1.69    2.04    2.04    1.67    0.95    0.02   -0.95   -1.83   -2.50   -2.85   -2.77   -2.10   -0.64    1.74    4.93
+   115.0    0.00    0.14    0.57    1.15    1.70    2.05    2.06    1.68    0.97    0.04   -0.94   -1.81   -2.48   -2.83   -2.74   -2.06   -0.58    1.83    5.09
+   120.0    0.00    0.15    0.58    1.16    1.72    2.07    2.08    1.71    1.00    0.08   -0.90   -1.77   -2.43   -2.77   -2.68   -1.97   -0.47    1.97    5.29
+   125.0    0.00    0.16    0.60    1.18    1.74    2.10    2.11    1.75    1.05    0.13   -0.84   -1.71   -2.36   -2.69   -2.57   -1.84   -0.32    2.16    5.52
+   130.0    0.00    0.17    0.61    1.20    1.77    2.13    2.15    1.80    1.11    0.20   -0.77   -1.63   -2.28   -2.58   -2.44   -1.69   -0.13    2.37    5.76
+   135.0    0.00    0.18    0.63    1.23    1.79    2.16    2.19    1.85    1.17    0.27   -0.69   -1.55   -2.18   -2.47   -2.30   -1.52    0.06    2.57    5.97
+   140.0    0.00    0.19    0.65    1.25    1.82    2.19    2.23    1.90    1.23    0.34   -0.61   -1.46   -2.08   -2.35   -2.15   -1.35    0.24    2.75    6.14
+   145.0    0.00    0.19    0.66    1.27    1.85    2.22    2.28    1.95    1.29    0.40   -0.54   -1.39   -1.99   -2.24   -2.03   -1.21    0.38    2.88    6.25
+   150.0    0.00    0.20    0.68    1.29    1.87    2.26    2.31    1.99    1.34    0.45   -0.49   -1.33   -1.92   -2.16   -1.93   -1.11    0.47    2.94    6.28
+   155.0    0.00    0.21    0.69    1.31    1.90    2.29    2.35    2.03    1.37    0.49   -0.45   -1.29   -1.88   -2.11   -1.88   -1.06    0.50    2.94    6.23
+   160.0    0.00    0.22    0.70    1.33    1.92    2.31    2.37    2.06    1.40    0.51   -0.44   -1.28   -1.87   -2.10   -1.87   -1.07    0.46    2.87    6.11
+   165.0    0.00    0.22    0.72    1.35    1.94    2.33    2.40    2.08    1.41    0.51   -0.44   -1.29   -1.89   -2.12   -1.91   -1.13    0.37    2.73    5.93
+   170.0    0.00    0.23    0.73    1.36    1.96    2.35    2.41    2.09    1.41    0.50   -0.47   -1.33   -1.93   -2.19   -1.99   -1.24    0.23    2.55    5.71
+   175.0    0.00    0.24    0.74    1.38    1.98    2.37    2.42    2.09    1.40    0.48   -0.51   -1.38   -2.00   -2.27   -2.10   -1.38    0.05    2.34    5.47
+   180.0    0.00    0.24    0.75    1.39    1.99    2.38    2.43    2.09    1.39    0.45   -0.55   -1.45   -2.09   -2.38   -2.23   -1.54   -0.13    2.13    5.25
+   185.0    0.00    0.24    0.76    1.40    2.00    2.39    2.43    2.08    1.37    0.42   -0.60   -1.51   -2.17   -2.48   -2.36   -1.69   -0.31    1.93    5.06
+   190.0    0.00    0.25    0.76    1.40    2.00    2.39    2.43    2.07    1.35    0.39   -0.65   -1.58   -2.25   -2.58   -2.48   -1.83   -0.47    1.78    4.92
+   195.0    0.00    0.25    0.77    1.41    2.00    2.39    2.43    2.06    1.33    0.36   -0.69   -1.62   -2.31   -2.66   -2.57   -1.94   -0.58    1.68    4.85
+   200.0    0.00    0.25    0.77    1.41    2.00    2.38    2.42    2.05    1.31    0.33   -0.71   -1.66   -2.35   -2.71   -2.63   -2.00   -0.64    1.65    4.86
+   205.0    0.00    0.25    0.77    1.41    2.00    2.37    2.40    2.03    1.30    0.32   -0.73   -1.67   -2.37   -2.72   -2.65   -2.02   -0.64    1.67    4.94
+   210.0    0.00    0.25    0.77    1.40    1.99    2.36    2.38    2.01    1.28    0.31   -0.73   -1.66   -2.35   -2.71   -2.63   -1.99   -0.59    1.75    5.07
+   215.0    0.00    0.25    0.77    1.40    1.98    2.34    2.36    1.99    1.27    0.31   -0.71   -1.64   -2.32   -2.67   -2.59   -1.93   -0.51    1.87    5.24
+   220.0    0.00    0.25    0.76    1.39    1.96    2.32    2.34    1.97    1.26    0.31   -0.69   -1.60   -2.27   -2.61   -2.52   -1.85   -0.40    2.02    5.42
+   225.0    0.00    0.25    0.76    1.38    1.94    2.30    2.32    1.95    1.25    0.32   -0.67   -1.56   -2.22   -2.55   -2.44   -1.75   -0.28    2.16    5.59
+   230.0    0.00    0.25    0.75    1.36    1.93    2.27    2.29    1.93    1.24    0.32   -0.65   -1.53   -2.18   -2.50   -2.38   -1.67   -0.17    2.28    5.72
+   235.0    0.00    0.25    0.74    1.35    1.91    2.25    2.26    1.91    1.22    0.32   -0.64   -1.51   -2.15   -2.46   -2.33   -1.61   -0.10    2.37    5.79
+   240.0    0.00    0.24    0.73    1.34    1.89    2.22    2.24    1.89    1.21    0.32   -0.64   -1.50   -2.15   -2.45   -2.32   -1.58   -0.07    2.39    5.79
+   245.0    0.00    0.24    0.72    1.32    1.87    2.20    2.21    1.87    1.19    0.31   -0.65   -1.52   -2.17   -2.48   -2.34   -1.60   -0.08    2.36    5.71
+   250.0    0.00    0.23    0.72    1.31    1.85    2.18    2.19    1.85    1.17    0.29   -0.68   -1.56   -2.22   -2.54   -2.40   -1.66   -0.15    2.26    5.55
+   255.0    0.00    0.23    0.71    1.30    1.83    2.16    2.18    1.83    1.16    0.26   -0.71   -1.61   -2.29   -2.62   -2.50   -1.76   -0.27    2.10    5.33
+   260.0    0.00    0.22    0.70    1.28    1.82    2.15    2.16    1.81    1.14    0.23   -0.76   -1.68   -2.38   -2.73   -2.61   -1.89   -0.42    1.91    5.07
+   265.0    0.00    0.22    0.69    1.27    1.81    2.14    2.15    1.80    1.12    0.20   -0.81   -1.75   -2.47   -2.84   -2.74   -2.03   -0.59    1.69    4.79
+   270.0    0.00    0.21    0.68    1.26    1.80    2.14    2.15    1.80    1.10    0.17   -0.86   -1.81   -2.55   -2.94   -2.85   -2.17   -0.76    1.48    4.52
+   275.0    0.00    0.21    0.67    1.25    1.80    2.14    2.15    1.80    1.09    0.15   -0.89   -1.86   -2.62   -3.01   -2.94   -2.28   -0.90    1.30    4.30
+   280.0    0.00    0.20    0.66    1.25    1.80    2.14    2.16    1.80    1.10    0.14   -0.91   -1.89   -2.65   -3.05   -2.99   -2.35   -1.00    1.16    4.14
+   285.0    0.00    0.19    0.65    1.24    1.80    2.15    2.18    1.82    1.11    0.15   -0.91   -1.89   -2.65   -3.05   -3.00   -2.37   -1.05    1.09    4.07
+   290.0    0.00    0.19    0.64    1.24    1.80    2.17    2.20    1.84    1.13    0.17   -0.88   -1.86   -2.60   -3.00   -2.94   -2.33   -1.03    1.10    4.09
+   295.0    0.00    0.18    0.63    1.23    1.81    2.19    2.23    1.88    1.17    0.21   -0.83   -1.79   -2.51   -2.90   -2.84   -2.23   -0.94    1.19    4.20
+   300.0    0.00    0.17    0.62    1.23    1.82    2.21    2.26    1.92    1.22    0.27   -0.76   -1.69   -2.39   -2.76   -2.69   -2.08   -0.78    1.35    4.39
+   305.0    0.00    0.17    0.62    1.23    1.83    2.23    2.30    1.97    1.28    0.34   -0.67   -1.58   -2.25   -2.59   -2.50   -1.89   -0.58    1.57    4.64
+   310.0    0.00    0.16    0.61    1.23    1.84    2.26    2.34    2.03    1.35    0.42   -0.57   -1.45   -2.09   -2.40   -2.30   -1.67   -0.35    1.82    4.92
+   315.0    0.00    0.15    0.60    1.22    1.85    2.29    2.39    2.08    1.42    0.51   -0.46   -1.32   -1.94   -2.22   -2.10   -1.45   -0.12    2.08    5.20
+   320.0    0.00    0.15    0.59    1.22    1.86    2.31    2.43    2.14    1.48    0.59   -0.37   -1.21   -1.80   -2.06   -1.91   -1.25    0.10    2.32    5.45
+   325.0    0.00    0.14    0.58    1.22    1.86    2.33    2.46    2.19    1.54    0.66   -0.29   -1.11   -1.69   -1.93   -1.77   -1.09    0.28    2.52    5.65
+   330.0    0.00    0.13    0.57    1.21    1.87    2.35    2.50    2.23    1.59    0.71   -0.23   -1.05   -1.61   -1.84   -1.67   -0.98    0.40    2.64    5.76
+   335.0    0.00    0.13    0.56    1.20    1.87    2.36    2.52    2.26    1.62    0.74   -0.20   -1.02   -1.58   -1.81   -1.63   -0.94    0.44    2.68    5.78
+   340.0    0.00    0.12    0.55    1.19    1.87    2.37    2.53    2.28    1.64    0.75   -0.20   -1.02   -1.59   -1.82   -1.66   -0.97    0.40    2.62    5.70
+   345.0    0.00    0.11    0.54    1.19    1.86    2.37    2.53    2.28    1.63    0.73   -0.23   -1.06   -1.64   -1.89   -1.73   -1.07    0.28    2.49    5.54
+   350.0    0.00    0.11    0.53    1.17    1.85    2.36    2.52    2.27    1.61    0.70   -0.28   -1.13   -1.73   -1.99   -1.85   -1.22    0.10    2.28    5.30
+   355.0    0.00    0.10    0.52    1.16    1.84    2.34    2.51    2.24    1.57    0.64   -0.35   -1.23   -1.84   -2.12   -2.01   -1.40   -0.12    2.02    5.03
+   360.0    0.00    0.10    0.52    1.15    1.82    2.33    2.49    2.21    1.52    0.58   -0.44   -1.33   -1.96   -2.26   -2.18   -1.61   -0.37    1.74    4.74
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.15      0.29    164.00                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.13   -0.50   -0.99   -1.53   -2.06   -2.58   -3.15   -3.76   -4.33   -4.70   -4.71   -4.23   -3.25   -1.85   -0.11    2.01    4.69    8.18
+     0.0    0.00   -0.11   -0.45   -0.92   -1.45   -1.98   -2.53   -3.14   -3.77   -4.36   -4.74   -4.77   -4.35   -3.47   -2.17   -0.44    1.79    4.62    7.94
+     5.0    0.00   -0.11   -0.45   -0.93   -1.45   -1.99   -2.54   -3.15   -3.79   -4.37   -4.74   -4.77   -4.36   -3.51   -2.23   -0.51    1.73    4.59    7.91
+    10.0    0.00   -0.11   -0.45   -0.93   -1.46   -2.00   -2.56   -3.16   -3.80   -4.38   -4.76   -4.79   -4.39   -3.55   -2.30   -0.60    1.65    4.52    7.86
+    15.0    0.00   -0.11   -0.45   -0.94   -1.47   -2.01   -2.57   -3.18   -3.82   -4.39   -4.77   -4.81   -4.42   -3.61   -2.38   -0.70    1.55    4.44    7.80
+    20.0    0.00   -0.11   -0.46   -0.94   -1.47   -2.02   -2.58   -3.19   -3.83   -4.41   -4.78   -4.82   -4.45   -3.66   -2.45   -0.79    1.45    4.35    7.75
+    25.0    0.00   -0.12   -0.46   -0.94   -1.48   -2.03   -2.59   -3.21   -3.84   -4.41   -4.79   -4.84   -4.47   -3.70   -2.51   -0.87    1.36    4.28    7.71
+    30.0    0.00   -0.12   -0.46   -0.95   -1.48   -2.03   -2.60   -3.21   -3.84   -4.42   -4.79   -4.84   -4.48   -3.71   -2.54   -0.91    1.31    4.24    7.70
+    35.0    0.00   -0.12   -0.47   -0.95   -1.49   -2.03   -2.60   -3.20   -3.83   -4.41   -4.79   -4.83   -4.48   -3.71   -2.53   -0.90    1.32    4.25    7.73
+    40.0    0.00   -0.12   -0.47   -0.95   -1.49   -2.03   -2.59   -3.19   -3.81   -4.39   -4.76   -4.81   -4.45   -3.67   -2.48   -0.84    1.38    4.31    7.82
+    45.0    0.00   -0.12   -0.47   -0.96   -1.48   -2.02   -2.57   -3.16   -3.78   -4.35   -4.73   -4.77   -4.40   -3.60   -2.38   -0.73    1.50    4.43    7.97
+    50.0    0.00   -0.12   -0.47   -0.96   -1.48   -2.01   -2.55   -3.13   -3.74   -4.31   -4.68   -4.71   -4.32   -3.49   -2.24   -0.56    1.69    4.62    8.19
+    55.0    0.00   -0.13   -0.48   -0.96   -1.48   -1.99   -2.52   -3.09   -3.69   -4.25   -4.62   -4.64   -4.22   -3.35   -2.06   -0.34    1.92    4.86    8.46
+    60.0    0.00   -0.13   -0.48   -0.96   -1.47   -1.98   -2.49   -3.04   -3.64   -4.19   -4.54   -4.55   -4.10   -3.19   -1.85   -0.08    2.20    5.14    8.77
+    65.0    0.00   -0.13   -0.48   -0.96   -1.47   -1.96   -2.46   -3.00   -3.58   -4.12   -4.47   -4.45   -3.97   -3.01   -1.62    0.19    2.48    5.43    9.09
+    70.0    0.00   -0.13   -0.49   -0.96   -1.46   -1.95   -2.44   -2.97   -3.54   -4.06   -4.39   -4.36   -3.84   -2.84   -1.39    0.45    2.77    5.72    9.42
+    75.0    0.00   -0.14   -0.49   -0.97   -1.46   -1.94   -2.42   -2.94   -3.50   -4.01   -4.33   -4.27   -3.72   -2.67   -1.18    0.70    3.03    5.98    9.71
+    80.0    0.00   -0.14   -0.49   -0.97   -1.47   -1.94   -2.42   -2.93   -3.48   -3.98   -4.28   -4.20   -3.61   -2.52   -0.99    0.92    3.25    6.18    9.94
+    85.0    0.00   -0.14   -0.50   -0.98   -1.48   -1.95   -2.42   -2.93   -3.47   -3.97   -4.25   -4.15   -3.53   -2.40   -0.84    1.08    3.40    6.32   10.10
+    90.0    0.00   -0.14   -0.50   -0.98   -1.49   -1.97   -2.44   -2.95   -3.49   -3.98   -4.25   -4.12   -3.48   -2.32   -0.74    1.19    3.49    6.38   10.15
+    95.0    0.00   -0.15   -0.51   -0.99   -1.50   -1.99   -2.46   -2.97   -3.52   -4.00   -4.27   -4.13   -3.47   -2.29   -0.69    1.23    3.51    6.35   10.12
+   100.0    0.00   -0.15   -0.52   -1.00   -1.52   -2.01   -2.50   -3.02   -3.56   -4.05   -4.32   -4.17   -3.50   -2.31   -0.71    1.21    3.45    6.25    9.98
+   105.0    0.00   -0.15   -0.52   -1.02   -1.54   -2.04   -2.54   -3.06   -3.62   -4.11   -4.38   -4.24   -3.57   -2.38   -0.77    1.13    3.34    6.08    9.76
+   110.0    0.00   -0.15   -0.53   -1.03   -1.56   -2.07   -2.58   -3.12   -3.68   -4.19   -4.47   -4.33   -3.67   -2.48   -0.88    1.00    3.17    5.86    9.47
+   115.0    0.00   -0.16   -0.54   -1.04   -1.58   -2.11   -2.62   -3.17   -3.75   -4.27   -4.56   -4.45   -3.80   -2.62   -1.03    0.83    2.97    5.60    9.14
+   120.0    0.00   -0.16   -0.54   -1.06   -1.60   -2.14   -2.66   -3.22   -3.81   -4.35   -4.66   -4.57   -3.94   -2.78   -1.21    0.64    2.74    5.32    8.79
+   125.0    0.00   -0.16   -0.55   -1.07   -1.62   -2.17   -2.70   -3.27   -3.87   -4.42   -4.76   -4.69   -4.09   -2.95   -1.40    0.43    2.51    5.04    8.45
+   130.0    0.00   -0.16   -0.55   -1.08   -1.64   -2.19   -2.73   -3.31   -3.92   -4.49   -4.85   -4.81   -4.24   -3.12   -1.59    0.22    2.28    4.78    8.12
+   135.0    0.00   -0.16   -0.56   -1.09   -1.66   -2.21   -2.76   -3.34   -3.96   -4.55   -4.93   -4.92   -4.38   -3.29   -1.77    0.03    2.07    4.54    7.83
+   140.0    0.00   -0.17   -0.56   -1.10   -1.68   -2.23   -2.78   -3.37   -3.99   -4.59   -5.00   -5.02   -4.50   -3.44   -1.95   -0.16    1.88    4.33    7.58
+   145.0    0.00   -0.17   -0.57   -1.11   -1.69   -2.25   -2.80   -3.39   -4.02   -4.63   -5.05   -5.10   -4.61   -3.58   -2.10   -0.33    1.71    4.16    7.37
+   150.0    0.00   -0.17   -0.57   -1.12   -1.70   -2.26   -2.81   -3.40   -4.04   -4.66   -5.10   -5.17   -4.71   -3.70   -2.24   -0.47    1.56    4.02    7.21
+   155.0    0.00   -0.17   -0.58   -1.12   -1.71   -2.27   -2.83   -3.41   -4.05   -4.68   -5.14   -5.22   -4.78   -3.79   -2.35   -0.59    1.44    3.91    7.09
+   160.0    0.00   -0.17   -0.58   -1.13   -1.71   -2.28   -2.84   -3.42   -4.07   -4.70   -5.17   -5.27   -4.85   -3.87   -2.45   -0.70    1.35    3.83    7.02
+   165.0    0.00   -0.17   -0.58   -1.13   -1.72   -2.29   -2.84   -3.44   -4.08   -4.72   -5.20   -5.30   -4.90   -3.94   -2.53   -0.78    1.27    3.78    6.98
+   170.0    0.00   -0.17   -0.58   -1.13   -1.72   -2.29   -2.85   -3.45   -4.10   -4.74   -5.22   -5.34   -4.94   -3.99   -2.59   -0.84    1.23    3.76    7.00
+   175.0    0.00   -0.17   -0.58   -1.13   -1.73   -2.30   -2.86   -3.46   -4.11   -4.76   -5.25   -5.37   -4.97   -4.03   -2.64   -0.88    1.21    3.79    7.07
+   180.0    0.00   -0.17   -0.58   -1.13   -1.73   -2.30   -2.87   -3.47   -4.13   -4.78   -5.27   -5.39   -5.00   -4.06   -2.66   -0.90    1.22    3.85    7.19
+   185.0    0.00   -0.17   -0.57   -1.13   -1.72   -2.30   -2.87   -3.48   -4.14   -4.79   -5.28   -5.40   -5.01   -4.07   -2.67   -0.89    1.27    3.97    7.39
+   190.0    0.00   -0.16   -0.57   -1.12   -1.72   -2.30   -2.87   -3.48   -4.14   -4.80   -5.28   -5.40   -5.00   -4.06   -2.65   -0.85    1.36    4.13    7.65
+   195.0    0.00   -0.16   -0.57   -1.11   -1.71   -2.29   -2.86   -3.47   -4.14   -4.79   -5.27   -5.38   -4.97   -4.02   -2.60   -0.77    1.49    4.34    7.97
+   200.0    0.00   -0.16   -0.56   -1.11   -1.70   -2.27   -2.85   -3.46   -4.12   -4.77   -5.24   -5.34   -4.92   -3.96   -2.51   -0.65    1.66    4.60    8.35
+   205.0    0.00   -0.16   -0.55   -1.10   -1.68   -2.25   -2.83   -3.43   -4.09   -4.73   -5.19   -5.28   -4.84   -3.86   -2.39   -0.50    1.87    4.90    8.77
+   210.0    0.00   -0.15   -0.55   -1.08   -1.66   -2.23   -2.80   -3.40   -4.05   -4.68   -5.12   -5.19   -4.73   -3.72   -2.23   -0.30    2.11    5.21    9.20
+   215.0    0.00   -0.15   -0.54   -1.07   -1.64   -2.20   -2.76   -3.35   -4.00   -4.61   -5.04   -5.07   -4.59   -3.55   -2.03   -0.08    2.37    5.53    9.62
+   220.0    0.00   -0.15   -0.53   -1.05   -1.62   -2.17   -2.72   -3.30   -3.93   -4.53   -4.93   -4.94   -4.42   -3.35   -1.80    0.17    2.64    5.83    9.99
+   225.0    0.00   -0.15   -0.52   -1.04   -1.59   -2.13   -2.67   -3.24   -3.86   -4.44   -4.82   -4.80   -4.24   -3.14   -1.56    0.43    2.90    6.09   10.27
+   230.0    0.00   -0.14   -0.51   -1.02   -1.57   -2.09   -2.62   -3.18   -3.78   -4.34   -4.70   -4.65   -4.06   -2.92   -1.31    0.68    3.13    6.29   10.45
+   235.0    0.00   -0.14   -0.51   -1.01   -1.54   -2.06   -2.57   -3.11   -3.70   -4.25   -4.58   -4.50   -3.87   -2.70   -1.08    0.91    3.32    6.41   10.50
+   240.0    0.00   -0.14   -0.50   -0.99   -1.52   -2.02   -2.52   -3.05   -3.63   -4.16   -4.47   -4.37   -3.71   -2.51   -0.87    1.10    3.45    6.44   10.42
+   245.0    0.00   -0.13   -0.49   -0.98   -1.49   -1.99   -2.47   -3.00   -3.56   -4.08   -4.38   -4.25   -3.58   -2.35   -0.71    1.24    3.51    6.38   10.21
+   250.0    0.00   -0.13   -0.48   -0.96   -1.47   -1.96   -2.44   -2.95   -3.51   -4.02   -4.31   -4.17   -3.48   -2.24   -0.60    1.31    3.50    6.23    9.89
+   255.0    0.00   -0.13   -0.48   -0.95   -1.46   -1.94   -2.41   -2.92   -3.47   -3.98   -4.26   -4.12   -3.42   -2.19   -0.55    1.32    3.42    6.00    9.48
+   260.0    0.00   -0.12   -0.47   -0.94   -1.44   -1.92   -2.39   -2.89   -3.45   -3.96   -4.25   -4.11   -3.42   -2.19   -0.58    1.25    3.26    5.70    9.02
+   265.0    0.00   -0.12   -0.46   -0.94   -1.44   -1.91   -2.38   -2.88   -3.44   -3.95   -4.25   -4.13   -3.45   -2.25   -0.66    1.11    3.04    5.36    8.54
+   270.0    0.00   -0.12   -0.46   -0.93   -1.43   -1.91   -2.38   -2.89   -3.45   -3.97   -4.28   -4.18   -3.53   -2.35   -0.81    0.91    2.77    5.00    8.07
+   275.0    0.00   -0.12   -0.46   -0.93   -1.43   -1.91   -2.39   -2.90   -3.47   -4.00   -4.33   -4.25   -3.63   -2.50   -1.01    0.66    2.47    4.64    7.65
+   280.0    0.00   -0.11   -0.45   -0.93   -1.43   -1.92   -2.40   -2.93   -3.50   -4.04   -4.39   -4.33   -3.76   -2.68   -1.24    0.39    2.16    4.30    7.31
+   285.0    0.00   -0.11   -0.45   -0.93   -1.44   -1.93   -2.42   -2.96   -3.54   -4.09   -4.45   -4.43   -3.90   -2.87   -1.48    0.11    1.86    4.01    7.05
+   290.0    0.00   -0.11   -0.45   -0.92   -1.44   -1.94   -2.45   -2.99   -3.58   -4.15   -4.52   -4.52   -4.03   -3.05   -1.72   -0.17    1.58    3.76    6.88
+   295.0    0.00   -0.11   -0.45   -0.93   -1.45   -1.96   -2.47   -3.03   -3.63   -4.20   -4.59   -4.61   -4.16   -3.22   -1.93   -0.41    1.34    3.59    6.80
+   300.0    0.00   -0.11   -0.45   -0.93   -1.45   -1.97   -2.50   -3.06   -3.67   -4.25   -4.65   -4.69   -4.26   -3.37   -2.12   -0.62    1.16    3.48    6.80
+   305.0    0.00   -0.11   -0.45   -0.93   -1.45   -1.98   -2.52   -3.09   -3.71   -4.30   -4.70   -4.75   -4.35   -3.49   -2.26   -0.77    1.05    3.44    6.87
+   310.0    0.00   -0.11   -0.44   -0.93   -1.46   -1.99   -2.53   -3.12   -3.74   -4.33   -4.74   -4.80   -4.41   -3.56   -2.36   -0.86    0.99    3.46    6.98
+   315.0    0.00   -0.11   -0.44   -0.92   -1.46   -1.99   -2.54   -3.14   -3.77   -4.36   -4.77   -4.83   -4.44   -3.61   -2.40   -0.89    1.00    3.55    7.12
+   320.0    0.00   -0.10   -0.44   -0.92   -1.46   -2.00   -2.55   -3.15   -3.78   -4.38   -4.78   -4.84   -4.45   -3.62   -2.41   -0.87    1.07    3.67    7.28
+   325.0    0.00   -0.10   -0.44   -0.92   -1.45   -1.99   -2.55   -3.15   -3.79   -4.38   -4.79   -4.84   -4.45   -3.60   -2.38   -0.81    1.18    3.83    7.43
+   330.0    0.00   -0.10   -0.44   -0.92   -1.45   -1.99   -2.54   -3.15   -3.79   -4.38   -4.78   -4.83   -4.43   -3.57   -2.33   -0.73    1.31    4.00    7.58
+   335.0    0.00   -0.10   -0.44   -0.92   -1.45   -1.98   -2.54   -3.14   -3.78   -4.38   -4.78   -4.82   -4.40   -3.53   -2.26   -0.63    1.45    4.17    7.70
+   340.0    0.00   -0.11   -0.44   -0.92   -1.44   -1.98   -2.53   -3.14   -3.78   -4.37   -4.76   -4.80   -4.38   -3.50   -2.21   -0.54    1.59    4.33    7.80
+   345.0    0.00   -0.11   -0.44   -0.92   -1.44   -1.97   -2.53   -3.13   -3.77   -4.36   -4.75   -4.78   -4.36   -3.47   -2.16   -0.46    1.70    4.46    7.88
+   350.0    0.00   -0.11   -0.44   -0.92   -1.44   -1.97   -2.53   -3.13   -3.77   -4.36   -4.74   -4.77   -4.34   -3.45   -2.14   -0.42    1.77    4.56    7.93
+   355.0    0.00   -0.11   -0.45   -0.92   -1.44   -1.97   -2.53   -3.13   -3.77   -4.36   -4.74   -4.76   -4.34   -3.45   -2.14   -0.41    1.80    4.61    7.94
+   360.0    0.00   -0.11   -0.45   -0.92   -1.45   -1.98   -2.53   -3.14   -3.77   -4.36   -4.74   -4.77   -4.35   -3.47   -2.17   -0.44    1.79    4.62    7.94
+   G02                                                      END OF FREQUENCY    
+   R01                                                      START OF FREQUENCY  
+      1.41      1.00    155.34                              NORTH / EAST / UP   
+   NOAZI    0.00    0.14    0.56    1.16    1.80    2.32    2.54    2.41    1.85    1.03    0.12   -0.69   -1.25   -1.47   -1.33   -0.77    0.35    2.23    5.05
+     0.0    0.00    0.08    0.45    1.04    1.73    2.34    2.66    2.59    2.07    1.24    0.22   -0.75   -1.48   -1.86   -1.83   -1.32   -0.23    1.60    4.23
+     5.0    0.00    0.06    0.44    1.01    1.69    2.28    2.60    2.52    2.01    1.15    0.10   -0.89   -1.65   -2.07   -2.05   -1.58   -0.49    1.32    3.93
+    10.0    0.00    0.06    0.41    0.98    1.64    2.23    2.54    2.45    1.93    1.06   -0.01   -1.02   -1.81   -2.23   -2.23   -1.74   -0.69    1.09    3.66
+    15.0    0.00    0.05    0.39    0.95    1.60    2.18    2.49    2.40    1.86    0.95   -0.12   -1.13   -1.92   -2.33   -2.33   -1.86   -0.81    0.93    3.44
+    20.0    0.00    0.05    0.38    0.93    1.57    2.13    2.43    2.34    1.79    0.88   -0.20   -1.22   -1.98   -2.37   -2.36   -1.88   -0.87    0.84    3.31
+    25.0    0.00    0.05    0.37    0.91    1.54    2.09    2.38    2.27    1.72    0.81   -0.26   -1.26   -2.01   -2.36   -2.31   -1.83   -0.83    0.82    3.27
+    30.0    0.00    0.05    0.36    0.89    1.51    2.06    2.35    2.23    1.67    0.76   -0.30   -1.27   -1.98   -2.29   -2.22   -1.73   -0.75    0.89    3.34
+    35.0    0.00    0.05    0.35    0.88    1.49    2.04    2.32    2.19    1.64    0.72   -0.31   -1.26   -1.92   -2.21   -2.09   -1.59   -0.60    1.05    3.54
+    40.0    0.00    0.04    0.35    0.87    1.49    2.02    2.29    2.18    1.62    0.72   -0.31   -1.22   -1.84   -2.09   -1.95   -1.43   -0.42    1.27    3.83
+    45.0    0.00    0.04    0.34    0.87    1.48    2.01    2.29    2.16    1.61    0.72   -0.29   -1.17   -1.76   -1.98   -1.82   -1.26   -0.22    1.53    4.21
+    50.0    0.00    0.05    0.35    0.86    1.47    2.00    2.27    2.15    1.59    0.73   -0.25   -1.11   -1.68   -1.88   -1.70   -1.12   -0.03    1.84    4.66
+    55.0    0.00    0.06    0.35    0.87    1.48    2.00    2.27    2.15    1.60    0.76   -0.22   -1.05   -1.61   -1.81   -1.62   -1.02    0.16    2.13    5.10
+    60.0    0.00    0.06    0.37    0.88    1.48    2.00    2.26    2.15    1.61    0.77   -0.18   -1.01   -1.57   -1.76   -1.58   -0.94    0.31    2.42    5.54
+    65.0    0.00    0.06    0.37    0.89    1.49    2.00    2.26    2.14    1.61    0.78   -0.14   -0.97   -1.53   -1.74   -1.56   -0.90    0.42    2.66    5.91
+    70.0    0.00    0.07    0.39    0.91    1.51    2.01    2.26    2.12    1.60    0.79   -0.12   -0.95   -1.52   -1.75   -1.58   -0.90    0.49    2.83    6.20
+    75.0    0.00    0.08    0.41    0.93    1.52    2.01    2.26    2.11    1.59    0.80   -0.12   -0.92   -1.51   -1.78   -1.62   -0.92    0.52    2.94    6.36
+    80.0    0.00    0.09    0.43    0.95    1.55    2.03    2.26    2.10    1.58    0.79   -0.12   -0.93   -1.53   -1.80   -1.67   -0.98    0.51    2.96    6.40
+    85.0    0.00    0.10    0.46    0.98    1.57    2.04    2.25    2.09    1.56    0.76   -0.12   -0.93   -1.53   -1.83   -1.71   -1.02    0.46    2.92    6.31
+    90.0    0.00    0.11    0.48    1.02    1.61    2.07    2.25    2.08    1.53    0.76   -0.12   -0.92   -1.52   -1.83   -1.73   -1.07    0.39    2.82    6.13
+    95.0    0.00    0.11    0.50    1.05    1.63    2.09    2.25    2.06    1.52    0.74   -0.13   -0.91   -1.50   -1.82   -1.74   -1.10    0.32    2.68    5.90
+   100.0    0.00    0.13    0.52    1.08    1.67    2.12    2.26    2.05    1.51    0.74   -0.10   -0.88   -1.45   -1.77   -1.71   -1.12    0.25    2.54    5.64
+   105.0    0.00    0.14    0.54    1.12    1.70    2.15    2.28    2.07    1.51    0.75   -0.08   -0.82   -1.39   -1.69   -1.65   -1.09    0.20    2.40    5.43
+   110.0    0.00    0.15    0.57    1.15    1.75    2.19    2.32    2.10    1.53    0.77   -0.04   -0.76   -1.31   -1.61   -1.57   -1.06    0.18    2.31    5.26
+   115.0    0.00    0.16    0.60    1.19    1.80    2.23    2.37    2.13    1.58    0.82    0.02   -0.67   -1.20   -1.49   -1.46   -0.98    0.21    2.28    5.20
+   120.0    0.00    0.17    0.62    1.22    1.84    2.28    2.41    2.19    1.63    0.89    0.10   -0.58   -1.08   -1.36   -1.34   -0.86    0.27    2.31    5.23
+   125.0    0.00    0.18    0.64    1.27    1.89    2.34    2.47    2.25    1.70    0.95    0.18   -0.49   -0.97   -1.23   -1.21   -0.74    0.39    2.43    5.36
+   130.0    0.00    0.19    0.66    1.30    1.94    2.40    2.53    2.32    1.78    1.04    0.26   -0.39   -0.87   -1.11   -1.07   -0.61    0.55    2.59    5.58
+   135.0    0.00    0.20    0.68    1.34    1.97    2.45    2.60    2.39    1.86    1.12    0.35   -0.31   -0.78   -1.01   -0.95   -0.46    0.72    2.80    5.83
+   140.0    0.00    0.21    0.71    1.37    2.02    2.50    2.67    2.46    1.93    1.20    0.43   -0.24   -0.71   -0.93   -0.83   -0.31    0.90    3.03    6.10
+   145.0    0.00    0.21    0.72    1.39    2.06    2.54    2.74    2.53    2.01    1.26    0.49   -0.19   -0.66   -0.87   -0.75   -0.18    1.07    3.22    6.32
+   150.0    0.00    0.22    0.74    1.41    2.08    2.59    2.78    2.59    2.07    1.31    0.52   -0.17   -0.63   -0.84   -0.70   -0.09    1.19    3.37    6.47
+   155.0    0.00    0.23    0.74    1.43    2.11    2.62    2.82    2.64    2.10    1.35    0.54   -0.16   -0.65   -0.84   -0.68   -0.04    1.27    3.44    6.50
+   160.0    0.00    0.24    0.75    1.44    2.12    2.64    2.84    2.67    2.13    1.36    0.53   -0.20   -0.68   -0.88   -0.70   -0.05    1.26    3.41    6.41
+   165.0    0.00    0.24    0.76    1.45    2.12    2.64    2.86    2.68    2.13    1.35    0.51   -0.23   -0.74   -0.93   -0.75   -0.10    1.19    3.29    6.21
+   170.0    0.00    0.24    0.76    1.43    2.13    2.64    2.85    2.66    2.11    1.32    0.45   -0.30   -0.80   -1.01   -0.84   -0.22    1.04    3.08    5.90
+   175.0    0.00    0.25    0.76    1.44    2.12    2.64    2.83    2.64    2.08    1.28    0.40   -0.36   -0.88   -1.10   -0.95   -0.37    0.83    2.80    5.53
+   180.0    0.00    0.24    0.76    1.43    2.11    2.61    2.81    2.62    2.05    1.23    0.34   -0.43   -0.96   -1.20   -1.08   -0.55    0.58    2.47    5.16
+   185.0    0.00    0.24    0.75    1.41    2.09    2.59    2.78    2.58    2.01    1.17    0.28   -0.50   -1.03   -1.29   -1.21   -0.73    0.32    2.13    4.82
+   190.0    0.00    0.24    0.74    1.39    2.05    2.56    2.75    2.54    1.96    1.12    0.22   -0.56   -1.10   -1.37   -1.33   -0.92    0.06    1.84    4.55
+   195.0    0.00    0.24    0.74    1.38    2.02    2.53    2.72    2.50    1.91    1.07    0.17   -0.61   -1.15   -1.44   -1.43   -1.07   -0.15    1.61    4.37
+   200.0    0.00    0.24    0.72    1.36    2.00    2.49    2.68    2.46    1.87    1.03    0.14   -0.65   -1.19   -1.49   -1.50   -1.18   -0.30    1.47    4.33
+   205.0    0.00    0.23    0.71    1.34    1.97    2.46    2.63    2.42    1.84    1.00    0.10   -0.68   -1.22   -1.50   -1.53   -1.23   -0.36    1.41    4.40
+   210.0    0.00    0.23    0.70    1.30    1.94    2.42    2.60    2.39    1.81    0.97    0.08   -0.69   -1.22   -1.50   -1.51   -1.21   -0.35    1.46    4.57
+   215.0    0.00    0.22    0.68    1.28    1.91    2.38    2.57    2.37    1.79    0.96    0.07   -0.70   -1.21   -1.47   -1.47   -1.15   -0.27    1.58    4.80
+   220.0    0.00    0.22    0.66    1.26    1.86    2.35    2.54    2.34    1.78    0.95    0.06   -0.70   -1.20   -1.43   -1.40   -1.04   -0.12    1.79    5.07
+   225.0    0.00    0.21    0.65    1.23    1.83    2.32    2.52    2.33    1.77    0.95    0.05   -0.70   -1.19   -1.39   -1.31   -0.90    0.06    1.99    5.32
+   230.0    0.00    0.21    0.63    1.20    1.81    2.28    2.49    2.31    1.76    0.94    0.05   -0.70   -1.18   -1.35   -1.23   -0.77    0.26    2.19    5.52
+   235.0    0.00    0.21    0.62    1.19    1.78    2.26    2.46    2.30    1.75    0.94    0.04   -0.71   -1.18   -1.33   -1.16   -0.64    0.41    2.37    5.64
+   240.0    0.00    0.20    0.61    1.17    1.76    2.23    2.45    2.29    1.75    0.94    0.04   -0.72   -1.20   -1.32   -1.13   -0.56    0.53    2.48    5.66
+   245.0    0.00    0.20    0.60    1.15    1.74    2.22    2.43    2.28    1.75    0.94    0.03   -0.75   -1.23   -1.36   -1.13   -0.53    0.59    2.51    5.58
+   250.0    0.00    0.19    0.60    1.15    1.73    2.20    2.42    2.29    1.74    0.94    0.01   -0.78   -1.28   -1.41   -1.17   -0.54    0.57    2.45    5.41
+   255.0    0.00    0.19    0.59    1.14    1.72    2.20    2.42    2.29    1.77    0.94    0.71   -0.81   -1.34   -1.49   -1.26   -0.62    0.50    2.32    5.18
+   260.0    0.00    0.18    0.58    1.13    1.72    2.20    2.43    2.29    1.77    0.94   -0.01   -0.86   -1.42   -1.59   -1.37   -0.74    0.37    2.15    4.91
+   265.0    0.00    0.18    0.58    1.13    1.72    2.21    2.44    2.30    1.78    0.94   -0.01   -0.89   -1.48   -1.69   -1.49   -0.87    0.21    1.96    4.64
+   270.0    0.00    0.17    0.58    1.14    1.74    2.24    2.46    2.33    1.80    0.96   -0.02   -0.91   -1.53   -1.77   -1.60   -1.01    0.06    1.78    4.40
+   275.0    0.00    0.17    0.57    1.14    1.76    2.26    2.49    2.36    1.82    0.98   -0.01   -0.92   -1.57   -1.82   -1.67   -1.11   -0.07    1.63    4.24
+   280.0    0.00    0.16    0.57    1.16    1.79    2.29    2.53    2.40    1.87    1.00    0.91   -0.91   -1.58   -1.84   -1.70   -1.16   -0.13    1.54    4.14
+   285.0    0.00    0.16    0.58    1.17    1.81    2.32    2.57    2.44    1.90    1.04    0.04   -0.89   -1.54   -1.81   -1.68   -1.14   -0.14    1.53    4.12
+   290.0    0.00    0.16    0.58    1.19    1.83    2.37    2.63    2.48    1.94    1.07    0.08   -0.84   -1.47   -1.73   -1.58   -1.04   -0.06    1.59    4.20
+   295.0    0.00    0.15    0.58    1.19    1.86    2.41    2.68    2.54    1.99    1.12    0.13   -0.77   -1.37   -1.60   -1.44   -0.89    0.09    1.72    4.34
+   300.0    0.00    0.14    0.57    1.21    1.89    2.45    2.72    2.59    2.04    1.17    0.20   -0.67   -1.24   -1.43   -1.23   -0.68    0.30    1.91    4.52
+   305.0    0.00    0.14    0.58    1.22    1.92    2.49    2.77    2.64    2.09    1.22    0.27   -0.57   -1.10   -1.25   -1.01   -0.44    0.55    2.14    4.74
+   310.0    0.00    0.14    0.58    1.23    1.94    2.53    2.81    2.69    2.14    1.28    0.33   -0.46   -0.95   -1.05   -0.79   -0.20    0.79    2.37    4.94
+   315.0    0.00    0.13    0.57    1.22    1.95    2.55    2.85    2.72    2.19    1.34    0.41   -0.36   -0.82   -0.89   -0.60    0.01    0.99    2.58    5.14
+   320.0    0.00    0.13    0.56    1.22    1.96    2.57    2.87    2.76    2.21    1.39    0.47   -0.29   -0.72   -0.76   -0.45    0.15    1.15    2.75    5.28
+   325.0    0.00    0.12    0.55    1.22    1.95    2.56    2.87    2.77    2.24    1.43    0.52   -0.23   -0.66   -0.70   -0.40    0.23    1.23    2.85    5.38
+   330.0    0.00    0.11    0.54    1.20    1.94    2.56    2.88    2.78    2.27    1.45    0.56   -0.20   -0.64   -0.70   -0.42    0.20    1.23    2.86    5.41
+   335.0    0.00    0.11    0.53    1.18    1.92    2.54    2.87    2.78    2.27    1.46    0.55   -0.21   -0.69   -0.79   -0.52    0.08    1.12    2.81    5.37
+   340.0    0.00    0.10    0.51    1.16    1.90    2.52    2.85    2.77    2.27    1.45    0.53   -0.25   -0.77   -0.93   -0.72   -0.13    0.93    2.65    5.24
+   345.0    0.00    0.09    0.50    1.14    1.86    2.49    2.81    2.74    2.24    1.42    0.49   -0.35   -0.92   -1.14   -0.96   -0.40    0.67    2.45    5.06
+   350.0    0.00    0.09    0.48    1.11    1.82    2.43    2.76    2.71    2.21    1.38    0.42   -0.46   -1.09   -1.36   -1.25   -0.71    0.38    2.18    4.81
+   355.0    0.00    0.08    0.46    1.07    1.78    2.38    2.72    2.64    2.14    1.31    0.33   -0.60   -1.29   -1.62   -1.55   -1.02    0.07    1.89    4.53
+   360.0    0.00    0.08    0.45    1.04    1.73    2.34    2.66    2.59    2.07    1.24    0.22   -0.75   -1.48   -1.86   -1.83   -1.32   -0.23    1.60    4.23
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+     -0.15      0.29    164.00                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.14   -0.55   -1.12   -1.79   -2.49   -3.21   -3.97   -4.76   -5.48   -6.00   -6.16   -5.86   -5.10   -3.93   -2.42   -0.60    1.68    4.54
+     0.0    0.00   -0.15   -0.53   -1.07   -1.69   -2.35   -3.05   -3.79   -4.54   -5.24   -5.79   -6.07   -6.01   -5.57   -4.69   -3.32   -1.39    1.04    3.60
+     5.0    0.00   -0.15   -0.53   -1.07   -1.68   -2.34   -3.01   -3.75   -4.50   -5.19   -5.74   -6.05   -6.02   -5.61   -4.76   -3.39   -1.43    1.09    3.74
+    10.0    0.00   -0.15   -0.53   -1.07   -1.68   -2.32   -2.99   -3.70   -4.45   -5.16   -5.74   -6.06   -6.04   -5.64   -4.80   -3.44   -1.46    1.08    3.84
+    15.0    0.00   -0.15   -0.53   -1.08   -1.68   -2.31   -2.97   -3.67   -4.43   -5.15   -5.73   -6.07   -6.05   -5.66   -4.82   -3.47   -1.50    1.05    3.90
+    20.0    0.00   -0.15   -0.55   -1.08   -1.68   -2.30   -2.95   -3.65   -4.42   -5.16   -5.75   -6.09   -6.06   -5.64   -4.79   -3.46   -1.54    1.00    3.93
+    25.0    0.00   -0.16   -0.55   -1.08   -1.68   -2.29   -2.94   -3.66   -4.43   -5.18   -5.79   -6.11   -6.05   -5.60   -4.74   -3.44   -1.56    0.96    3.94
+    30.0    0.00   -0.16   -0.55   -1.09   -1.68   -2.29   -2.94   -3.66   -4.44   -5.22   -5.83   -6.13   -6.03   -5.53   -4.65   -3.36   -1.55    0.94    3.97
+    35.0    0.00   -0.16   -0.56   -1.09   -1.69   -2.29   -2.95   -3.67   -4.47   -5.26   -5.87   -6.13   -6.00   -5.45   -4.53   -3.25   -1.47    0.97    4.04
+    40.0    0.00   -0.16   -0.56   -1.10   -1.70   -2.30   -2.96   -3.70   -4.50   -5.30   -5.89   -6.13   -5.94   -5.34   -4.39   -3.09   -1.34    1.06    4.18
+    45.0    0.00   -0.15   -0.56   -1.11   -1.69   -2.31   -2.97   -3.71   -4.53   -5.32   -5.91   -6.12   -5.89   -5.23   -4.22   -2.92   -1.16    1.24    4.39
+    50.0    0.00   -0.15   -0.56   -1.11   -1.70   -2.33   -2.99   -3.74   -4.56   -5.35   -5.91   -6.09   -5.81   -5.09   -4.04   -2.69   -0.92    1.50    4.70
+    55.0    0.00   -0.16   -0.56   -1.11   -1.72   -2.34   -3.01   -3.75   -4.57   -5.34   -5.89   -6.05   -5.72   -4.96   -3.86   -2.45   -0.63    1.84    5.07
+    60.0    0.00   -0.16   -0.56   -1.11   -1.72   -2.36   -3.02   -3.76   -4.57   -5.32   -5.84   -5.98   -5.62   -4.83   -3.68   -2.20   -0.30    2.21    5.47
+    65.0    0.00   -0.15   -0.56   -1.12   -1.73   -2.36   -3.03   -3.77   -4.56   -5.28   -5.79   -5.89   -5.53   -4.70   -3.50   -1.95    0.01    2.60    5.87
+    70.0    0.00   -0.15   -0.56   -1.12   -1.74   -2.38   -3.06   -3.79   -4.56   -5.25   -5.72   -5.82   -5.44   -4.60   -3.35   -1.74    0.32    2.96    6.25
+    75.0    0.00   -0.15   -0.56   -1.12   -1.75   -2.40   -3.08   -3.80   -4.55   -5.22   -5.67   -5.74   -5.35   -4.50   -3.22   -1.54    0.57    3.26    6.54
+    80.0    0.00   -0.15   -0.56   -1.12   -1.76   -2.41   -3.10   -3.82   -4.55   -5.19   -5.62   -5.68   -5.27   -4.40   -3.10   -1.40    0.75    3.45    6.72
+    85.0    0.00   -0.15   -0.56   -1.13   -1.77   -2.44   -3.13   -3.85   -4.57   -5.19   -5.58   -5.62   -5.21   -4.33   -3.03   -1.32    0.84    3.53    6.77
+    90.0    0.00   -0.15   -0.55   -1.12   -1.78   -2.46   -3.17   -3.89   -4.61   -5.22   -5.58   -5.59   -5.16   -4.28   -2.99   -1.30    0.83    3.48    6.68
+    95.0    0.00   -0.15   -0.55   -1.12   -1.78   -2.48   -3.20   -3.93   -4.66   -5.25   -5.61   -5.59   -5.14   -4.26   -2.99   -1.35    0.72    3.30    6.47
+   100.0    0.00   -0.15   -0.55   -1.12   -1.79   -2.50   -3.25   -4.01   -4.72   -5.32   -5.66   -5.62   -5.16   -4.28   -3.04   -1.45    0.51    3.01    6.16
+   105.0    0.00   -0.14   -0.54   -1.12   -1.80   -2.53   -3.29   -4.06   -4.80   -5.40   -5.73   -5.68   -5.21   -4.33   -3.11   -1.61    0.26    2.66    5.79
+   110.0    0.00   -0.14   -0.54   -1.12   -1.80   -2.54   -3.33   -4.13   -4.89   -5.50   -5.84   -5.77   -5.29   -4.41   -3.23   -1.80   -0.03    2.28    5.40
+   115.0    0.00   -0.15   -0.54   -1.11   -1.80   -2.57   -3.36   -4.19   -4.97   -5.61   -5.94   -5.89   -5.40   -4.53   -3.37   -2.00   -0.32    1.91    5.03
+   120.0    0.00   -0.14   -0.53   -1.12   -1.81   -2.58   -3.39   -4.24   -5.04   -5.70   -6.06   -6.02   -5.54   -4.67   -3.54   -2.20   -0.59    1.60    4.73
+   125.0    0.00   -0.14   -0.54   -1.11   -1.80   -2.59   -3.41   -4.28   -5.10   -5.78   -6.17   -6.15   -5.69   -4.83   -3.72   -2.40   -0.79    1.37    4.51
+   130.0    0.00   -0.14   -0.52   -1.11   -1.81   -2.59   -3.42   -4.30   -5.14   -5.85   -6.27   -6.29   -5.85   -5.00   -3.88   -2.55   -0.92    1.25    4.38
+   135.0    0.00   -0.13   -0.53   -1.11   -1.81   -2.59   -3.44   -4.30   -5.16   -5.90   -6.35   -6.41   -6.01   -5.18   -4.03   -2.64   -0.97    1.24    4.33
+   140.0    0.00   -0.14   -0.52   -1.11   -1.83   -2.60   -3.44   -4.30   -5.16   -5.91   -6.41   -6.52   -6.15   -5.34   -4.17   -2.71   -0.94    1.31    4.36
+   145.0    0.00   -0.14   -0.53   -1.12   -1.83   -2.61   -3.43   -4.30   -5.15   -5.91   -6.44   -6.60   -6.28   -5.49   -4.27   -2.73   -0.85    1.47    4.42
+   150.0    0.00   -0.13   -0.53   -1.13   -1.84   -2.61   -3.43   -4.28   -5.13   -5.90   -6.45   -6.66   -6.38   -5.60   -4.34   -2.71   -0.73    1.65    4.49
+   155.0    0.00   -0.13   -0.54   -1.13   -1.85   -2.62   -3.43   -4.26   -5.10   -5.86   -6.45   -6.68   -6.44   -5.66   -4.38   -2.67   -0.59    1.83    4.56
+   160.0    0.00   -0.13   -0.54   -1.14   -1.85   -2.63   -3.44   -4.24   -5.07   -5.83   -6.43   -6.68   -6.47   -5.70   -4.39   -2.62   -0.46    1.99    4.61
+   165.0    0.00   -0.13   -0.54   -1.14   -1.87   -2.64   -3.43   -4.24   -5.04   -5.80   -6.39   -6.65   -6.46   -5.70   -4.38   -2.57   -0.37    2.09    4.60
+   170.0    0.00   -0.14   -0.54   -1.15   -1.87   -2.65   -3.44   -4.24   -5.03   -5.77   -6.35   -6.62   -6.42   -5.65   -4.34   -2.53   -0.32    2.12    4.58
+   175.0    0.00   -0.14   -0.55   -1.16   -1.90   -2.67   -3.45   -4.23   -5.02   -5.74   -6.31   -6.56   -6.35   -5.59   -4.30   -2.50   -0.32    2.10    4.53
+   180.0    0.00   -0.14   -0.55   -1.17   -1.91   -2.68   -3.46   -4.24   -5.01   -5.72   -6.27   -6.49   -6.27   -5.50   -4.23   -2.49   -0.38    2.02    4.48
+   185.0    0.00   -0.14   -0.55   -1.17   -1.90   -2.68   -3.45   -4.23   -5.00   -5.70   -6.23   -6.42   -6.17   -5.40   -4.16   -2.49   -0.45    1.92    4.48
+   190.0    0.00   -0.14   -0.56   -1.17   -1.90   -2.67   -3.44   -4.22   -4.98   -5.68   -6.19   -6.36   -6.07   -5.30   -4.09   -2.49   -0.53    1.82    4.51
+   195.0    0.00   -0.14   -0.56   -1.17   -1.90   -2.66   -3.42   -4.19   -4.96   -5.66   -6.15   -6.29   -5.97   -5.18   -4.01   -2.48   -0.60    1.73    4.61
+   200.0    0.00   -0.15   -0.56   -1.18   -1.89   -2.63   -3.39   -4.16   -4.93   -5.63   -6.12   -6.23   -5.88   -5.09   -3.91   -2.44   -0.63    1.71    4.77
+   205.0    0.00   -0.15   -0.56   -1.17   -1.87   -2.60   -3.35   -4.11   -4.89   -5.60   -6.08   -6.19   -5.81   -4.99   -3.81   -2.38   -0.60    1.76    5.00
+   210.0    0.00   -0.14   -0.56   -1.17   -1.86   -2.57   -3.31   -4.06   -4.84   -5.56   -6.05   -6.15   -5.75   -4.88   -3.70   -2.27   -0.51    1.87    5.27
+   215.0    0.00   -0.14   -0.56   -1.17   -1.85   -2.54   -3.25   -4.00   -4.79   -5.52   -6.03   -6.11   -5.69   -4.79   -3.57   -2.12   -0.36    2.05    5.56
+   220.0    0.00   -0.15   -0.57   -1.16   -1.83   -2.51   -3.21   -3.95   -4.74   -5.49   -6.00   -6.09   -5.64   -4.70   -3.43   -1.94   -0.15    2.28    5.84
+   225.0    0.00   -0.15   -0.56   -1.16   -1.82   -2.48   -3.16   -3.90   -4.69   -5.45   -5.98   -6.08   -5.62   -4.64   -3.30   -1.74    0.09    2.52    6.07
+   230.0    0.00   -0.15   -0.56   -1.15   -1.81   -2.47   -3.14   -3.86   -4.66   -5.41   -5.96   -6.07   -5.60   -4.58   -3.17   -1.54    0.33    2.76    6.23
+   235.0    0.00   -0.15   -0.57   -1.16   -1.81   -2.46   -3.12   -3.84   -4.63   -5.40   -5.95   -6.06   -5.58   -4.53   -3.07   -1.36    0.56    2.97    6.31
+   240.0    0.00   -0.15   -0.57   -1.16   -1.81   -2.46   -3.12   -3.84   -4.62   -5.39   -5.94   -6.06   -5.58   -4.50   -2.99   -1.23    0.73    3.11    6.30
+   245.0    0.00   -0.14   -0.57   -1.16   -1.81   -2.48   -3.13   -3.85   -4.63   -5.38   -5.95   -6.06   -5.60   -4.50   -2.96   -1.14    0.85    3.18    6.21
+   250.0    0.00   -0.15   -0.57   -1.17   -1.83   -2.50   -3.17   -3.88   -4.65   -5.40   -5.96   -6.08   -5.62   -4.53   -2.97   -1.13    0.87    3.16    6.03
+   255.0    0.00   -0.15   -0.58   -1.17   -1.84   -2.52   -3.20   -3.91   -4.68   -5.42   -5.97   -6.11   -5.66   -4.60   -3.03   -1.19    0.82    3.06    5.81
+   260.0    0.00   -0.14   -0.57   -1.17   -1.85   -2.55   -3.24   -3.95   -4.72   -5.45   -6.00   -6.15   -5.72   -4.69   -3.16   -1.32    0.68    2.89    5.55
+   265.0    0.00   -0.15   -0.56   -1.18   -1.87   -2.57   -3.26   -3.98   -4.76   -5.48   -6.02   -6.19   -5.79   -4.80   -3.30   -1.50    0.47    2.64    5.27
+   270.0    0.00   -0.15   -0.57   -1.17   -1.87   -2.58   -3.29   -4.02   -4.79   -5.52   -6.06   -6.24   -5.88   -4.93   -3.50   -1.74    0.20    2.37    4.99
+   275.0    0.00   -0.15   -0.57   -1.17   -1.87   -2.59   -3.31   -4.05   -4.82   -5.55   -6.10   -6.30   -5.96   -5.08   -3.70   -2.00   -0.10    2.06    4.71
+   280.0    0.00   -0.15   -0.56   -1.17   -1.86   -2.59   -3.31   -4.07   -4.83   -5.56   -6.13   -6.34   -6.06   -5.22   -3.90   -2.26   -0.40    1.74    4.45
+   285.0    0.00   -0.15   -0.56   -1.17   -1.86   -2.58   -3.31   -4.07   -4.85   -5.59   -6.16   -6.40   -6.14   -5.36   -4.09   -2.50   -0.69    1.44    4.21
+   290.0    0.00   -0.15   -0.55   -1.15   -1.84   -2.57   -3.30   -4.06   -4.85   -5.61   -6.20   -6.45   -6.22   -5.46   -4.26   -2.73   -0.96    1.15    3.97
+   295.0    0.00   -0.15   -0.55   -1.14   -1.83   -2.55   -3.28   -4.06   -4.86   -5.63   -6.23   -6.49   -6.28   -5.54   -4.37   -2.90   -1.19    0.90    3.73
+   300.0    0.00   -0.15   -0.55   -1.13   -1.80   -2.52   -3.27   -4.05   -4.85   -5.64   -6.25   -6.52   -6.31   -5.59   -4.45   -3.03   -1.37    0.68    3.50
+   305.0    0.00   -0.15   -0.55   -1.12   -1.78   -2.50   -3.25   -4.03   -4.86   -5.66   -6.27   -6.53   -6.32   -5.62   -4.50   -3.11   -1.49    0.50    3.28
+   310.0    0.00   -0.15   -0.53   -1.11   -1.77   -2.48   -3.22   -4.03   -4.86   -5.66   -6.28   -6.53   -6.32   -5.60   -4.51   -3.15   -1.58    0.37    3.08
+   315.0    0.00   -0.15   -0.53   -1.09   -1.75   -2.45   -3.20   -4.02   -4.87   -5.66   -6.27   -6.52   -6.28   -5.58   -4.48   -3.15   -1.61    0.30    2.90
+   320.0    0.00   -0.14   -0.52   -1.07   -1.74   -2.44   -3.20   -4.02   -4.86   -5.66   -6.24   -6.47   -6.24   -5.53   -4.46   -3.14   -1.61    0.26    2.78
+   325.0    0.00   -0.14   -0.52   -1.07   -1.71   -2.42   -3.19   -4.00   -4.85   -5.63   -6.22   -6.43   -6.19   -5.48   -4.43   -3.11   -1.58    0.28    2.70
+   330.0    0.00   -0.14   -0.52   -1.07   -1.71   -2.42   -3.17   -4.00   -4.84   -5.60   -6.16   -6.37   -6.14   -5.45   -4.42   -3.11   -1.55    0.35    2.69
+   335.0    0.00   -0.14   -0.52   -1.07   -1.71   -2.41   -3.17   -3.97   -4.80   -5.56   -6.11   -6.31   -6.09   -5.43   -4.41   -3.10   -1.49    0.45    2.74
+   340.0    0.00   -0.15   -0.52   -1.07   -1.70   -2.40   -3.15   -3.96   -4.77   -5.50   -6.03   -6.25   -6.05   -5.44   -4.45   -3.12   -1.44    0.57    2.85
+   345.0    0.00   -0.15   -0.52   -1.07   -1.70   -2.38   -3.13   -3.92   -4.71   -5.43   -5.96   -6.19   -6.02   -5.45   -4.49   -3.14   -1.41    0.71    3.03
+   350.0    0.00   -0.15   -0.52   -1.07   -1.69   -2.37   -3.11   -3.88   -4.66   -5.38   -5.90   -6.13   -6.00   -5.48   -4.55   -3.19   -1.39    0.84    3.22
+   355.0    0.00   -0.15   -0.53   -1.07   -1.69   -2.36   -3.08   -3.84   -4.60   -5.31   -5.84   -6.09   -6.00   -5.53   -4.62   -3.25   -1.38    0.95    3.41
+   360.0    0.00   -0.15   -0.53   -1.07   -1.69   -2.35   -3.05   -3.79   -4.54   -5.24   -5.79   -6.07   -6.01   -5.57   -4.69   -3.32   -1.39    1.04    3.60
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+LEIAR25         LEIT                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               5    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     4                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+Number of Calibrated Antennas GPS:      005                 COMMENT             
+Number of Individual Calibrations GPS:  010                 COMMENT             
+Number of Calibrated Antennas GLO:      005                 COMMENT             
+Number of Individual Calibrations GLO:  010                 COMMENT             
+# GLONASS PCV                                               COMMENT             
+#  derived from Delta PCV per 25.0 MHz                      COMMENT             
+#  for frequency channel number k=0                         COMMENT             
+   G01                                                      START OF FREQUENCY  
+      1.04      1.18    155.08                              NORTH / EAST / UP   
+   NOAZI    0.00    0.20    0.74    1.52    2.35    3.01    3.29    3.07    2.35    1.24   -0.02   -1.18   -2.05   -2.51   -2.51   -1.95   -0.67    1.54    4.80
+     0.0    0.00    0.16    0.70    1.52    2.42    3.15    3.49    3.29    2.55    1.40    0.10   -1.09   -1.96   -2.42   -2.43   -1.92   -0.78    1.23    4.26
+     5.0    0.00    0.15    0.70    1.51    2.41    3.14    3.48    3.27    2.52    1.36    0.04   -1.17   -2.06   -2.52   -2.53   -2.04   -0.92    1.05    4.06
+    10.0    0.00    0.15    0.69    1.50    2.39    3.12    3.46    3.25    2.49    1.32   -0.01   -1.24   -2.14   -2.61   -2.62   -2.13   -1.03    0.91    3.91
+    15.0    0.00    0.15    0.68    1.49    2.38    3.11    3.44    3.24    2.48    1.30   -0.05   -1.29   -2.20   -2.67   -2.68   -2.20   -1.11    0.82    3.82
+    20.0    0.00    0.15    0.68    1.48    2.36    3.09    3.43    3.22    2.47    1.29   -0.07   -1.31   -2.23   -2.71   -2.71   -2.22   -1.12    0.80    3.82
+    25.0    0.00    0.15    0.67    1.47    2.34    3.07    3.41    3.22    2.47    1.29   -0.06   -1.32   -2.24   -2.71   -2.71   -2.20   -1.09    0.85    3.89
+    30.0    0.00    0.14    0.66    1.45    2.33    3.05    3.40    3.22    2.48    1.31   -0.04   -1.29   -2.22   -2.70   -2.67   -2.14   -1.00    0.97    4.02
+    35.0    0.00    0.14    0.66    1.44    2.31    3.03    3.39    3.22    2.50    1.35    0.00   -1.26   -2.19   -2.66   -2.62   -2.05   -0.87    1.13    4.19
+    40.0    0.00    0.14    0.65    1.43    2.29    3.02    3.38    3.23    2.52    1.38    0.05   -1.21   -2.14   -2.60   -2.54   -1.94   -0.72    1.31    4.39
+    45.0    0.00    0.14    0.65    1.42    2.28    3.00    3.37    3.23    2.55    1.42    0.09   -1.16   -2.08   -2.54   -2.46   -1.83   -0.57    1.50    4.57
+    50.0    0.00    0.14    0.65    1.41    2.26    2.99    3.36    3.23    2.56    1.45    0.14   -1.11   -2.03   -2.48   -2.39   -1.73   -0.43    1.67    4.73
+    55.0    0.00    0.14    0.64    1.40    2.25    2.97    3.35    3.23    2.57    1.47    0.16   -1.08   -1.99   -2.44   -2.33   -1.65   -0.32    1.79    4.83
+    60.0    0.00    0.14    0.64    1.40    2.24    2.96    3.34    3.21    2.56    1.47    0.17   -1.06   -1.97   -2.41   -2.30   -1.61   -0.26    1.86    4.89
+    65.0    0.00    0.15    0.64    1.39    2.23    2.94    3.31    3.19    2.53    1.44    0.15   -1.07   -1.97   -2.40   -2.30   -1.61   -0.26    1.87    4.88
+    70.0    0.00    0.15    0.64    1.39    2.22    2.92    3.28    3.15    2.48    1.40    0.11   -1.10   -1.99   -2.43   -2.33   -1.65   -0.31    1.82    4.82
+    75.0    0.00    0.15    0.65    1.39    2.21    2.91    3.25    3.10    2.42    1.33    0.05   -1.15   -2.04   -2.48   -2.39   -1.74   -0.42    1.72    4.73
+    80.0    0.00    0.15    0.65    1.39    2.21    2.89    3.21    3.04    2.35    1.25   -0.03   -1.22   -2.10   -2.55   -2.49   -1.86   -0.55    1.59    4.63
+    85.0    0.00    0.16    0.66    1.40    2.20    2.87    3.17    2.98    2.27    1.17   -0.11   -1.30   -2.18   -2.64   -2.60   -2.00   -0.71    1.45    4.53
+    90.0    0.00    0.16    0.66    1.40    2.20    2.85    3.14    2.92    2.20    1.08   -0.20   -1.39   -2.27   -2.73   -2.71   -2.14   -0.86    1.32    4.45
+    95.0    0.00    0.17    0.67    1.41    2.20    2.84    3.10    2.87    2.12    1.00   -0.29   -1.46   -2.35   -2.82   -2.82   -2.27   -0.99    1.22    4.42
+   100.0    0.00    0.17    0.68    1.42    2.20    2.83    3.08    2.82    2.06    0.93   -0.35   -1.53   -2.41   -2.89   -2.91   -2.37   -1.08    1.17    4.43
+   105.0    0.00    0.18    0.69    1.43    2.21    2.82    3.06    2.79    2.02    0.88   -0.40   -1.57   -2.46   -2.94   -2.97   -2.43   -1.12    1.18    4.50
+   110.0    0.00    0.18    0.70    1.44    2.22    2.82    3.05    2.78    2.00    0.86   -0.41   -1.59   -2.47   -2.96   -2.99   -2.44   -1.10    1.24    4.61
+   115.0    0.00    0.19    0.72    1.46    2.23    2.83    3.05    2.77    2.00    0.87   -0.40   -1.57   -2.45   -2.95   -2.97   -2.40   -1.03    1.36    4.76
+   120.0    0.00    0.20    0.73    1.47    2.25    2.84    3.06    2.79    2.02    0.90   -0.36   -1.53   -2.41   -2.89   -2.90   -2.31   -0.91    1.51    4.93
+   125.0    0.00    0.20    0.74    1.49    2.27    2.86    3.08    2.81    2.06    0.95   -0.30   -1.45   -2.33   -2.80   -2.80   -2.19   -0.76    1.68    5.10
+   130.0    0.00    0.21    0.76    1.51    2.29    2.89    3.11    2.85    2.11    1.01   -0.22   -1.36   -2.22   -2.69   -2.67   -2.04   -0.59    1.85    5.26
+   135.0    0.00    0.22    0.77    1.53    2.31    2.92    3.14    2.89    2.16    1.09   -0.13   -1.26   -2.11   -2.56   -2.53   -1.89   -0.44    2.00    5.39
+   140.0    0.00    0.22    0.78    1.55    2.34    2.94    3.18    2.94    2.22    1.16   -0.04   -1.16   -1.99   -2.44   -2.40   -1.75   -0.30    2.11    5.48
+   145.0    0.00    0.23    0.80    1.57    2.37    2.97    3.22    2.98    2.28    1.22    0.04   -1.06   -1.89   -2.32   -2.28   -1.63   -0.21    2.17    5.52
+   150.0    0.00    0.23    0.81    1.59    2.39    3.00    3.25    3.02    2.32    1.28    0.10   -0.99   -1.81   -2.24   -2.19   -1.56   -0.17    2.17    5.51
+   155.0    0.00    0.24    0.82    1.61    2.41    3.03    3.28    3.05    2.36    1.32    0.14   -0.94   -1.76   -2.18   -2.14   -1.54   -0.19    2.12    5.45
+   160.0    0.00    0.24    0.83    1.62    2.44    3.06    3.31    3.08    2.38    1.34    0.16   -0.93   -1.74   -2.17   -2.14   -1.56   -0.25    2.02    5.35
+   165.0    0.00    0.25    0.84    1.64    2.46    3.08    3.33    3.10    2.39    1.34    0.15   -0.94   -1.76   -2.19   -2.18   -1.63   -0.36    1.88    5.22
+   170.0    0.00    0.25    0.85    1.65    2.47    3.10    3.35    3.11    2.39    1.32    0.12   -0.98   -1.81   -2.25   -2.26   -1.73   -0.49    1.72    5.07
+   175.0    0.00    0.25    0.85    1.66    2.49    3.11    3.36    3.11    2.38    1.30    0.08   -1.04   -1.88   -2.34   -2.35   -1.84   -0.63    1.56    4.92
+   180.0    0.00    0.26    0.86    1.67    2.50    3.12    3.37    3.11    2.37    1.27    0.03   -1.11   -1.97   -2.44   -2.46   -1.96   -0.76    1.42    4.78
+   185.0    0.00    0.26    0.86    1.67    2.50    3.13    3.37    3.11    2.35    1.23   -0.03   -1.18   -2.06   -2.54   -2.56   -2.06   -0.86    1.31    4.66
+   190.0    0.00    0.26    0.86    1.67    2.50    3.13    3.37    3.10    2.33    1.20   -0.07   -1.25   -2.13   -2.62   -2.65   -2.14   -0.93    1.24    4.58
+   195.0    0.00    0.26    0.86    1.67    2.50    3.12    3.36    3.09    2.32    1.18   -0.10   -1.29   -2.19   -2.68   -2.70   -2.18   -0.95    1.23    4.54
+   200.0    0.00    0.26    0.86    1.66    2.49    3.11    3.35    3.08    2.31    1.17   -0.12   -1.31   -2.21   -2.70   -2.71   -2.17   -0.92    1.26    4.55
+   205.0    0.00    0.25    0.85    1.65    2.47    3.10    3.33    3.06    2.30    1.16   -0.12   -1.30   -2.20   -2.68   -2.69   -2.13   -0.85    1.35    4.61
+   210.0    0.00    0.25    0.84    1.64    2.46    3.08    3.31    3.05    2.29    1.17   -0.10   -1.27   -2.16   -2.64   -2.63   -2.05   -0.75    1.47    4.71
+   215.0    0.00    0.25    0.84    1.63    2.44    3.05    3.29    3.03    2.29    1.19   -0.06   -1.22   -2.10   -2.57   -2.55   -1.95   -0.63    1.61    4.85
+   220.0    0.00    0.25    0.83    1.61    2.42    3.03    3.27    3.02    2.29    1.20   -0.02   -1.16   -2.02   -2.48   -2.46   -1.85   -0.51    1.76    5.01
+   225.0    0.00    0.24    0.82    1.60    2.39    3.00    3.24    3.00    2.28    1.22    0.02   -1.10   -1.95   -2.40   -2.37   -1.76   -0.40    1.89    5.17
+   230.0    0.00    0.24    0.81    1.58    2.37    2.98    3.22    2.98    2.28    1.24    0.05   -1.05   -1.88   -2.33   -2.31   -1.70   -0.32    2.00    5.32
+   235.0    0.00    0.24    0.80    1.56    2.35    2.96    3.20    2.97    2.27    1.24    0.07   -1.01   -1.84   -2.29   -2.28   -1.67   -0.29    2.06    5.44
+   240.0    0.00    0.23    0.79    1.55    2.33    2.94    3.18    2.95    2.26    1.24    0.07   -1.01   -1.83   -2.29   -2.29   -1.69   -0.31    2.07    5.51
+   245.0    0.00    0.23    0.78    1.53    2.31    2.92    3.16    2.94    2.25    1.22    0.06   -1.03   -1.86   -2.33   -2.34   -1.76   -0.38    2.03    5.53
+   250.0    0.00    0.22    0.77    1.52    2.30    2.91    3.15    2.93    2.23    1.19    0.02   -1.08   -1.93   -2.41   -2.43   -1.87   -0.50    1.93    5.48
+   255.0    0.00    0.22    0.76    1.51    2.29    2.90    3.15    2.92    2.21    1.16   -0.04   -1.16   -2.02   -2.52   -2.56   -2.01   -0.65    1.78    5.37
+   260.0    0.00    0.21    0.75    1.50    2.29    2.90    3.15    2.91    2.20    1.12   -0.11   -1.25   -2.14   -2.64   -2.70   -2.17   -0.83    1.59    5.20
+   265.0    0.00    0.21    0.75    1.50    2.28    2.90    3.15    2.91    2.18    1.07   -0.18   -1.35   -2.25   -2.78   -2.84   -2.33   -1.01    1.39    5.00
+   270.0    0.00    0.21    0.74    1.49    2.28    2.91    3.16    2.91    2.16    1.03   -0.25   -1.44   -2.36   -2.90   -2.97   -2.48   -1.18    1.19    4.77
+   275.0    0.00    0.20    0.74    1.49    2.29    2.92    3.17    2.92    2.15    1.00   -0.31   -1.52   -2.45   -2.99   -3.07   -2.59   -1.33    1.01    4.55
+   280.0    0.00    0.20    0.73    1.49    2.29    2.93    3.18    2.93    2.15    0.98   -0.34   -1.57   -2.50   -3.04   -3.13   -2.66   -1.43    0.87    4.36
+   285.0    0.00    0.20    0.73    1.49    2.30    2.94    3.20    2.94    2.16    0.98   -0.35   -1.58   -2.51   -3.05   -3.14   -2.69   -1.47    0.78    4.22
+   290.0    0.00    0.19    0.73    1.49    2.31    2.96    3.22    2.96    2.17    1.00   -0.33   -1.55   -2.48   -3.01   -3.10   -2.65   -1.46    0.76    4.15
+   295.0    0.00    0.19    0.73    1.50    2.32    2.98    3.24    2.98    2.20    1.03   -0.28   -1.49   -2.40   -2.93   -3.01   -2.57   -1.38    0.81    4.15
+   300.0    0.00    0.19    0.72    1.50    2.34    3.00    3.27    3.01    2.24    1.08   -0.21   -1.40   -2.29   -2.80   -2.89   -2.44   -1.26    0.92    4.22
+   305.0    0.00    0.18    0.72    1.51    2.35    3.02    3.30    3.05    2.29    1.15   -0.13   -1.29   -2.16   -2.66   -2.73   -2.28   -1.10    1.08    4.35
+   310.0    0.00    0.18    0.72    1.52    2.36    3.04    3.33    3.09    2.34    1.22   -0.03   -1.17   -2.02   -2.50   -2.56   -2.11   -0.91    1.27    4.53
+   315.0    0.00    0.18    0.72    1.52    2.38    3.06    3.36    3.13    2.40    1.30    0.07   -1.05   -1.88   -2.35   -2.40   -1.93   -0.72    1.48    4.72
+   320.0    0.00    0.18    0.72    1.53    2.39    3.09    3.39    3.17    2.45    1.37    0.16   -0.94   -1.76   -2.22   -2.26   -1.77   -0.55    1.66    4.90
+   325.0    0.00    0.17    0.72    1.53    2.41    3.11    3.42    3.21    2.50    1.43    0.23   -0.86   -1.67   -2.12   -2.15   -1.65   -0.40    1.81    5.04
+   330.0    0.00    0.17    0.72    1.54    2.42    3.13    3.45    3.25    2.54    1.48    0.28   -0.81   -1.62   -2.06   -2.08   -1.56   -0.31    1.91    5.12
+   335.0    0.00    0.17    0.72    1.54    2.43    3.14    3.47    3.28    2.58    1.51    0.31   -0.79   -1.60   -2.04   -2.05   -1.53   -0.27    1.94    5.13
+   340.0    0.00    0.17    0.72    1.54    2.43    3.16    3.49    3.30    2.59    1.52    0.30   -0.81   -1.63   -2.07   -2.07   -1.54   -0.29    1.90    5.05
+   345.0    0.00    0.16    0.72    1.54    2.43    3.16    3.50    3.31    2.60    1.51    0.27   -0.85   -1.68   -2.13   -2.13   -1.60   -0.36    1.79    4.91
+   350.0    0.00    0.16    0.71    1.53    2.43    3.16    3.50    3.31    2.59    1.48    0.23   -0.92   -1.77   -2.21   -2.21   -1.69   -0.48    1.63    4.71
+   355.0    0.00    0.16    0.71    1.53    2.43    3.16    3.50    3.30    2.57    1.44    0.17   -1.00   -1.86   -2.32   -2.32   -1.80   -0.62    1.44    4.49
+   360.0    0.00    0.16    0.70    1.52    2.42    3.15    3.49    3.29    2.55    1.40    0.10   -1.09   -1.96   -2.42   -2.43   -1.92   -0.78    1.23    4.26
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.14      0.38    163.07                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.14   -0.54   -1.09   -1.70   -2.31   -2.92   -3.56   -4.20   -4.78   -5.12   -5.06   -4.46   -3.32   -1.71    0.26    2.56    5.27    8.52
+     0.0    0.00   -0.07   -0.40   -0.93   -1.55   -2.19   -2.83   -3.48   -4.11   -4.69   -5.07   -5.09   -4.62   -3.60   -2.09   -0.18    2.06    4.71    7.94
+     5.0    0.00   -0.07   -0.41   -0.93   -1.55   -2.20   -2.84   -3.48   -4.12   -4.69   -5.07   -5.10   -4.64   -3.63   -2.13   -0.23    2.00    4.64    7.90
+    10.0    0.00   -0.07   -0.41   -0.94   -1.56   -2.20   -2.84   -3.48   -4.12   -4.70   -5.08   -5.12   -4.66   -3.67   -2.17   -0.29    1.94    4.58    7.88
+    15.0    0.00   -0.08   -0.42   -0.95   -1.57   -2.21   -2.85   -3.49   -4.13   -4.71   -5.10   -5.15   -4.70   -3.71   -2.23   -0.35    1.87    4.53    7.88
+    20.0    0.00   -0.08   -0.43   -0.96   -1.58   -2.22   -2.86   -3.50   -4.14   -4.72   -5.13   -5.18   -4.74   -3.75   -2.28   -0.40    1.83    4.51    7.92
+    25.0    0.00   -0.09   -0.43   -0.97   -1.59   -2.23   -2.86   -3.50   -4.15   -4.74   -5.15   -5.21   -4.77   -3.79   -2.31   -0.43    1.81    4.53    7.99
+    30.0    0.00   -0.09   -0.44   -0.98   -1.60   -2.23   -2.86   -3.50   -4.15   -4.75   -5.17   -5.23   -4.80   -3.81   -2.32   -0.43    1.84    4.59    8.09
+    35.0    0.00   -0.09   -0.45   -0.99   -1.61   -2.24   -2.86   -3.50   -4.15   -4.76   -5.18   -5.25   -4.81   -3.81   -2.31   -0.39    1.91    4.70    8.23
+    40.0    0.00   -0.10   -0.46   -1.00   -1.62   -2.24   -2.86   -3.49   -4.15   -4.75   -5.18   -5.24   -4.79   -3.78   -2.25   -0.30    2.03    4.86    8.41
+    45.0    0.00   -0.10   -0.47   -1.01   -1.62   -2.24   -2.85   -3.48   -4.13   -4.74   -5.16   -5.21   -4.75   -3.71   -2.16   -0.17    2.21    5.07    8.61
+    50.0    0.00   -0.11   -0.48   -1.02   -1.63   -2.24   -2.84   -3.46   -4.10   -4.71   -5.12   -5.16   -4.67   -3.61   -2.02    0.00    2.43    5.32    8.84
+    55.0    0.00   -0.12   -0.49   -1.03   -1.63   -2.23   -2.82   -3.43   -4.07   -4.66   -5.06   -5.08   -4.56   -3.47   -1.85    0.21    2.68    5.60    9.10
+    60.0    0.00   -0.12   -0.50   -1.04   -1.64   -2.23   -2.81   -3.41   -4.03   -4.61   -4.98   -4.97   -4.43   -3.30   -1.65    0.45    2.95    5.91    9.37
+    65.0    0.00   -0.13   -0.51   -1.05   -1.64   -2.22   -2.79   -3.38   -3.99   -4.54   -4.89   -4.85   -4.28   -3.12   -1.43    0.70    3.23    6.21    9.65
+    70.0    0.00   -0.13   -0.52   -1.06   -1.65   -2.22   -2.78   -3.35   -3.94   -4.48   -4.80   -4.72   -4.11   -2.93   -1.21    0.94    3.51    6.51    9.92
+    75.0    0.00   -0.14   -0.53   -1.08   -1.66   -2.23   -2.77   -3.34   -3.91   -4.42   -4.71   -4.60   -3.95   -2.74   -1.01    1.16    3.75    6.78   10.17
+    80.0    0.00   -0.15   -0.54   -1.09   -1.67   -2.23   -2.78   -3.33   -3.89   -4.37   -4.63   -4.49   -3.81   -2.58   -0.83    1.35    3.96    7.00   10.39
+    85.0    0.00   -0.15   -0.55   -1.10   -1.68   -2.24   -2.78   -3.33   -3.88   -4.34   -4.58   -4.40   -3.70   -2.45   -0.70    1.48    4.10    7.17   10.55
+    90.0    0.00   -0.16   -0.56   -1.11   -1.70   -2.26   -2.80   -3.35   -3.89   -4.34   -4.55   -4.35   -3.63   -2.37   -0.62    1.56    4.18    7.26   10.64
+    95.0    0.00   -0.16   -0.57   -1.12   -1.71   -2.28   -2.83   -3.37   -3.91   -4.35   -4.55   -4.34   -3.60   -2.34   -0.60    1.58    4.19    7.27   10.65
+   100.0    0.00   -0.17   -0.58   -1.14   -1.73   -2.30   -2.86   -3.41   -3.95   -4.40   -4.59   -4.36   -3.63   -2.37   -0.63    1.53    4.13    7.20   10.57
+   105.0    0.00   -0.18   -0.59   -1.15   -1.75   -2.33   -2.89   -3.46   -4.01   -4.46   -4.66   -4.43   -3.70   -2.44   -0.72    1.42    4.00    7.04   10.40
+   110.0    0.00   -0.18   -0.60   -1.16   -1.77   -2.36   -2.93   -3.51   -4.08   -4.54   -4.75   -4.54   -3.81   -2.57   -0.86    1.26    3.81    6.82   10.14
+   115.0    0.00   -0.19   -0.61   -1.17   -1.78   -2.38   -2.97   -3.57   -4.16   -4.64   -4.86   -4.66   -3.95   -2.72   -1.03    1.06    3.57    6.53    9.80
+   120.0    0.00   -0.19   -0.62   -1.19   -1.80   -2.41   -3.01   -3.63   -4.23   -4.74   -4.98   -4.80   -4.11   -2.89   -1.22    0.84    3.31    6.20    9.42
+   125.0    0.00   -0.19   -0.62   -1.20   -1.81   -2.43   -3.05   -3.68   -4.31   -4.83   -5.10   -4.94   -4.26   -3.07   -1.42    0.62    3.03    5.86    9.02
+   130.0    0.00   -0.20   -0.63   -1.20   -1.83   -2.45   -3.08   -3.73   -4.37   -4.92   -5.21   -5.07   -4.41   -3.23   -1.60    0.40    2.76    5.51    8.61
+   135.0    0.00   -0.20   -0.64   -1.21   -1.84   -2.47   -3.11   -3.77   -4.43   -4.99   -5.30   -5.19   -4.55   -3.38   -1.77    0.20    2.51    5.19    8.23
+   140.0    0.00   -0.20   -0.64   -1.22   -1.85   -2.49   -3.14   -3.81   -4.48   -5.06   -5.38   -5.28   -4.66   -3.51   -1.91    0.03    2.28    4.90    7.90
+   145.0    0.00   -0.21   -0.65   -1.23   -1.86   -2.51   -3.16   -3.84   -4.52   -5.11   -5.44   -5.36   -4.75   -3.61   -2.03   -0.12    2.09    4.66    7.64
+   150.0    0.00   -0.21   -0.65   -1.23   -1.87   -2.52   -3.18   -3.86   -4.55   -5.14   -5.49   -5.41   -4.81   -3.69   -2.13   -0.24    1.94    4.47    7.45
+   155.0    0.00   -0.21   -0.65   -1.24   -1.88   -2.53   -3.20   -3.88   -4.58   -5.17   -5.52   -5.46   -4.87   -3.75   -2.20   -0.33    1.82    4.33    7.33
+   160.0    0.00   -0.21   -0.65   -1.24   -1.89   -2.54   -3.21   -3.90   -4.60   -5.20   -5.55   -5.49   -4.91   -3.80   -2.27   -0.41    1.74    4.25    7.28
+   165.0    0.00   -0.21   -0.66   -1.24   -1.89   -2.55   -3.23   -3.92   -4.62   -5.23   -5.58   -5.53   -4.95   -3.86   -2.32   -0.47    1.68    4.21    7.28
+   170.0    0.00   -0.21   -0.66   -1.25   -1.90   -2.56   -3.24   -3.94   -4.65   -5.25   -5.62   -5.57   -5.00   -3.91   -2.38   -0.51    1.65    4.21    7.34
+   175.0    0.00   -0.21   -0.66   -1.25   -1.90   -2.57   -3.25   -3.96   -4.67   -5.28   -5.65   -5.61   -5.05   -3.97   -2.43   -0.55    1.64    4.24    7.43
+   180.0    0.00   -0.21   -0.66   -1.25   -1.90   -2.58   -3.27   -3.98   -4.69   -5.31   -5.69   -5.65   -5.10   -4.02   -2.48   -0.58    1.66    4.31    7.56
+   185.0    0.00   -0.21   -0.66   -1.25   -1.91   -2.58   -3.27   -3.99   -4.71   -5.33   -5.72   -5.70   -5.15   -4.07   -2.52   -0.58    1.70    4.41    7.71
+   190.0    0.00   -0.21   -0.65   -1.25   -1.90   -2.58   -3.27   -3.99   -4.71   -5.35   -5.74   -5.73   -5.19   -4.11   -2.53   -0.56    1.77    4.54    7.89
+   195.0    0.00   -0.21   -0.65   -1.24   -1.90   -2.57   -3.27   -3.99   -4.71   -5.35   -5.75   -5.74   -5.21   -4.11   -2.52   -0.51    1.89    4.72    8.10
+   200.0    0.00   -0.20   -0.65   -1.24   -1.89   -2.56   -3.25   -3.97   -4.69   -5.33   -5.74   -5.73   -5.19   -4.08   -2.46   -0.40    2.04    4.93    8.35
+   205.0    0.00   -0.20   -0.64   -1.23   -1.88   -2.55   -3.23   -3.93   -4.65   -5.29   -5.70   -5.69   -5.14   -4.01   -2.35   -0.25    2.25    5.18    8.63
+   210.0    0.00   -0.20   -0.63   -1.22   -1.86   -2.52   -3.19   -3.89   -4.60   -5.23   -5.63   -5.61   -5.04   -3.88   -2.19   -0.04    2.50    5.47    8.95
+   215.0    0.00   -0.19   -0.63   -1.21   -1.85   -2.49   -3.15   -3.83   -4.53   -5.15   -5.53   -5.49   -4.90   -3.70   -1.97    0.21    2.79    5.79    9.29
+   220.0    0.00   -0.19   -0.62   -1.20   -1.82   -2.46   -3.10   -3.76   -4.44   -5.05   -5.41   -5.35   -4.72   -3.48   -1.71    0.51    3.11    6.13    9.64
+   225.0    0.00   -0.18   -0.61   -1.18   -1.80   -2.42   -3.04   -3.69   -4.35   -4.94   -5.28   -5.18   -4.51   -3.23   -1.42    0.82    3.44    6.47    9.99
+   230.0    0.00   -0.18   -0.60   -1.16   -1.77   -2.38   -2.98   -3.61   -4.25   -4.82   -5.14   -5.01   -4.29   -2.97   -1.12    1.14    3.76    6.78   10.30
+   235.0    0.00   -0.17   -0.59   -1.15   -1.75   -2.34   -2.92   -3.53   -4.16   -4.71   -5.00   -4.84   -4.08   -2.71   -0.83    1.44    4.04    7.04   10.55
+   240.0    0.00   -0.17   -0.58   -1.13   -1.72   -2.30   -2.87   -3.46   -4.07   -4.60   -4.87   -4.68   -3.89   -2.48   -0.58    1.69    4.26    7.22   10.71
+   245.0    0.00   -0.16   -0.57   -1.11   -1.69   -2.26   -2.82   -3.40   -4.00   -4.52   -4.77   -4.55   -3.73   -2.29   -0.38    1.87    4.40    7.30   10.76
+   250.0    0.00   -0.16   -0.56   -1.10   -1.67   -2.23   -2.78   -3.35   -3.94   -4.45   -4.70   -4.46   -3.61   -2.17   -0.25    1.97    4.44    7.27   10.68
+   255.0    0.00   -0.15   -0.54   -1.08   -1.65   -2.20   -2.74   -3.31   -3.91   -4.42   -4.65   -4.41   -3.55   -2.10   -0.21    1.97    4.37    7.13   10.49
+   260.0    0.00   -0.14   -0.53   -1.06   -1.63   -2.18   -2.72   -3.29   -3.89   -4.40   -4.64   -4.40   -3.55   -2.11   -0.25    1.87    4.20    6.89   10.19
+   265.0    0.00   -0.14   -0.52   -1.05   -1.62   -2.17   -2.71   -3.29   -3.89   -4.41   -4.66   -4.43   -3.60   -2.19   -0.37    1.69    3.94    6.55    9.80
+   270.0    0.00   -0.13   -0.51   -1.03   -1.60   -2.16   -2.71   -3.30   -3.91   -4.44   -4.71   -4.50   -3.69   -2.33   -0.56    1.43    3.61    6.15    9.35
+   275.0    0.00   -0.12   -0.50   -1.02   -1.59   -2.15   -2.72   -3.31   -3.94   -4.49   -4.77   -4.59   -3.82   -2.51   -0.80    1.12    3.23    5.71    8.87
+   280.0    0.00   -0.12   -0.49   -1.01   -1.58   -2.16   -2.73   -3.34   -3.98   -4.54   -4.84   -4.69   -3.97   -2.71   -1.08    0.77    2.83    5.28    8.42
+   285.0    0.00   -0.11   -0.48   -1.00   -1.58   -2.16   -2.75   -3.37   -4.02   -4.59   -4.92   -4.80   -4.12   -2.93   -1.36    0.43    2.44    4.87    8.02
+   290.0    0.00   -0.11   -0.47   -0.99   -1.57   -2.17   -2.77   -3.40   -4.06   -4.65   -4.99   -4.90   -4.27   -3.14   -1.64    0.11    2.10    4.53    7.69
+   295.0    0.00   -0.10   -0.46   -0.98   -1.57   -2.17   -2.79   -3.43   -4.10   -4.69   -5.05   -4.99   -4.41   -3.33   -1.88   -0.17    1.81    4.27    7.46
+   300.0    0.00   -0.09   -0.45   -0.97   -1.56   -2.18   -2.80   -3.46   -4.13   -4.73   -5.10   -5.06   -4.52   -3.49   -2.08   -0.39    1.60    4.10    7.33
+   305.0    0.00   -0.09   -0.44   -0.96   -1.56   -2.18   -2.82   -3.48   -4.16   -4.76   -5.13   -5.11   -4.60   -3.61   -2.23   -0.54    1.47    4.02    7.30
+   310.0    0.00   -0.09   -0.43   -0.95   -1.56   -2.19   -2.83   -3.50   -4.17   -4.78   -5.15   -5.15   -4.66   -3.69   -2.32   -0.63    1.43    4.02    7.35
+   315.0    0.00   -0.08   -0.42   -0.94   -1.55   -2.19   -2.84   -3.51   -4.18   -4.78   -5.16   -5.17   -4.70   -3.74   -2.37   -0.65    1.45    4.10    7.45
+   320.0    0.00   -0.08   -0.42   -0.94   -1.55   -2.19   -2.84   -3.51   -4.19   -4.78   -5.16   -5.17   -4.71   -3.75   -2.37   -0.62    1.53    4.22    7.58
+   325.0    0.00   -0.07   -0.41   -0.93   -1.54   -2.19   -2.84   -3.51   -4.18   -4.77   -5.15   -5.17   -4.70   -3.74   -2.34   -0.55    1.65    4.36    7.73
+   330.0    0.00   -0.07   -0.41   -0.93   -1.54   -2.19   -2.84   -3.51   -4.17   -4.76   -5.14   -5.15   -4.69   -3.71   -2.28   -0.45    1.77    4.50    7.85
+   335.0    0.00   -0.07   -0.40   -0.92   -1.54   -2.18   -2.84   -3.50   -4.16   -4.75   -5.12   -5.13   -4.67   -3.68   -2.22   -0.36    1.90    4.63    7.95
+   340.0    0.00   -0.07   -0.40   -0.92   -1.54   -2.18   -2.83   -3.50   -4.15   -4.73   -5.10   -5.12   -4.64   -3.64   -2.16   -0.27    2.00    4.72    8.01
+   345.0    0.00   -0.07   -0.40   -0.92   -1.54   -2.18   -2.83   -3.49   -4.14   -4.71   -5.09   -5.10   -4.62   -3.61   -2.11   -0.21    2.07    4.77    8.03
+   350.0    0.00   -0.07   -0.40   -0.92   -1.54   -2.18   -2.83   -3.48   -4.13   -4.70   -5.07   -5.09   -4.61   -3.59   -2.08   -0.17    2.10    4.78    8.01
+   355.0    0.00   -0.07   -0.40   -0.92   -1.54   -2.18   -2.83   -3.48   -4.12   -4.69   -5.07   -5.08   -4.61   -3.59   -2.08   -0.16    2.10    4.76    7.98
+   360.0    0.00   -0.07   -0.40   -0.93   -1.55   -2.19   -2.83   -3.48   -4.11   -4.69   -5.07   -5.09   -4.62   -3.60   -2.09   -0.18    2.06    4.71    7.94
+   G02                                                      END OF FREQUENCY    
+   R01                                                      START OF FREQUENCY  
+      1.04      1.18    155.08                              NORTH / EAST / UP   
+   NOAZI    0.00    0.20    0.74    1.53    2.40    3.13    3.50    3.39    2.79    1.77    0.55   -0.60   -1.49   -1.99   -2.03   -1.49   -0.24    1.88    4.95
+     0.0    0.00    0.12    0.60    1.38    2.25    2.98    3.36    3.22    2.51    1.38    0.07   -1.14   -2.02   -2.48   -2.52   -2.08   -1.08    0.78    3.77
+     5.0    0.00    0.11    0.60    1.36    2.23    2.96    3.34    3.17    2.46    1.31   -0.02   -1.27   -2.19   -2.67   -2.72   -2.32   -1.31    0.55    3.60
+    10.0    0.00    0.10    0.58    1.34    2.21    2.94    3.31    3.14    2.43    1.26   -0.10   -1.37   -2.31   -2.83   -2.90   -2.50   -1.50    0.38    3.50
+    15.0    0.00    0.10    0.56    1.33    2.19    2.93    3.29    3.13    2.41    1.24   -0.14   -1.43   -2.40   -2.94   -3.03   -2.64   -1.62    0.29    3.45
+    20.0    0.00    0.10    0.56    1.31    2.17    2.91    3.28    3.11    2.40    1.23   -0.16   -1.45   -2.44   -3.01   -3.09   -2.69   -1.64    0.29    3.48
+    25.0    0.00    0.09    0.55    1.30    2.15    2.89    3.25    3.10    2.38    1.22   -0.16   -1.46   -2.45   -3.02   -3.10   -2.67   -1.60    0.38    3.58
+    30.0    0.00    0.08    0.53    1.28    2.14    2.86    3.24    3.09    2.38    1.22   -0.14   -1.43   -2.43   -3.00   -3.05   -2.59   -1.46    0.56    3.73
+    35.0    0.00    0.08    0.53    1.27    2.12    2.84    3.21    3.07    2.37    1.24   -0.11   -1.40   -2.38   -2.94   -2.97   -2.44   -1.26    0.79    3.93
+    40.0    0.00    0.08    0.52    1.26    2.10    2.83    3.19    3.05    2.36    1.24   -0.08   -1.35   -2.31   -2.83   -2.84   -2.27   -1.04    1.04    4.17
+    45.0    0.00    0.07    0.52    1.26    2.09    2.80    3.16    3.02    2.35    1.25   -0.06   -1.30   -2.23   -2.72   -2.69   -2.09   -0.80    1.32    4.40
+    50.0    0.00    0.07    0.52    1.25    2.08    2.79    3.14    3.00    2.33    1.25   -0.02   -1.24   -2.15   -2.61   -2.55   -1.90   -0.57    1.58    4.63
+    55.0    0.00    0.07    0.51    1.24    2.07    2.77    3.12    2.97    2.31    1.25   -0.01   -1.19   -2.06   -2.50   -2.42   -1.74   -0.37    1.79    4.82
+    60.0    0.00    0.07    0.52    1.25    2.07    2.76    3.11    2.94    2.29    1.24    0.01   -1.13   -1.99   -2.41   -2.31   -1.62   -0.23    1.96    4.99
+    65.0    0.00    0.08    0.52    1.24    2.06    2.75    3.09    2.93    2.27    1.23    0.02   -1.10   -1.93   -2.33   -2.23   -1.54   -0.15    2.05    5.09
+    70.0    0.00    0.08    0.52    1.25    2.06    2.74    3.08    2.92    2.26    1.23    0.02   -1.07   -1.87   -2.27   -2.17   -1.50   -0.13    2.09    5.15
+    75.0    0.00    0.09    0.53    1.25    2.07    2.75    3.08    2.91    2.25    1.21    0.04   -1.04   -1.84   -2.24   -2.15   -1.52   -0.16    2.06    5.16
+    80.0    0.00    0.09    0.54    1.26    2.08    2.76    3.07    2.90    2.24    1.22    0.04   -1.03   -1.81   -2.22   -2.16   -1.55   -0.22    1.99    5.13
+    85.0    0.00    0.10    0.55    1.28    2.09    2.77    3.08    2.92    2.25    1.22    0.06   -1.00   -1.80   -2.21   -2.19   -1.62   -0.32    1.91    5.07
+    90.0    0.00    0.10    0.56    1.29    2.10    2.79    3.10    2.92    2.26    1.24    0.08   -1.00   -1.79   -2.21   -2.21   -1.67   -0.40    1.82    5.00
+    95.0    0.00    0.11    0.57    1.31    2.13    2.81    3.11    2.94    2.27    1.26    0.08   -0.97   -1.78   -2.21   -2.24   -1.73   -0.47    1.74    4.94
+   100.0    0.00    0.12    0.59    1.32    2.14    2.82    3.14    2.96    2.29    1.28    0.12   -0.95   -1.74   -2.20   -2.24   -1.75   -0.51    1.70    4.89
+   105.0    0.00    0.13    0.60    1.34    2.17    2.84    3.17    2.99    2.33    1.32    0.15   -0.90   -1.72   -2.17   -2.23   -1.74   -0.50    1.71    4.88
+   110.0    0.00    0.13    0.63    1.37    2.19    2.86    3.19    3.02    2.37    1.36    0.22   -0.85   -1.65   -2.13   -2.18   -1.70   -0.45    1.76    4.91
+   115.0    0.00    0.15    0.65    1.40    2.21    2.89    3.22    3.06    2.43    1.43    0.29   -0.77   -1.58   -2.06   -2.12   -1.61   -0.35    1.87    4.98
+   120.0    0.00    0.16    0.67    1.42    2.25    2.93    3.25    3.12    2.49    1.52    0.38   -0.68   -1.50   -1.97   -2.01   -1.50   -0.22    2.01    5.10
+   125.0    0.00    0.17    0.69    1.45    2.28    2.97    3.30    3.17    2.57    1.60    0.49   -0.56   -1.37   -1.84   -1.89   -1.36   -0.07    2.18    5.24
+   130.0    0.00    0.18    0.72    1.48    2.32    3.01    3.35    3.23    2.65    1.70    0.61   -0.42   -1.23   -1.71   -1.75   -1.21    0.10    2.34    5.39
+   135.0    0.00    0.20    0.74    1.52    2.35    3.06    3.42    3.30    2.73    1.81    0.73   -0.29   -1.10   -1.56   -1.59   -1.06    0.25    2.50    5.54
+   140.0    0.00    0.20    0.76    1.55    2.40    3.11    3.48    3.40    2.83    1.93    0.85   -0.17   -0.96   -1.43   -1.46   -0.92    0.39    2.62    5.67
+   145.0    0.00    0.22    0.79    1.59    2.46    3.17    3.56    3.47    2.93    2.02    0.98   -0.04   -0.84   -1.30   -1.33   -0.80    0.49    2.70    5.75
+   150.0    0.00    0.22    0.81    1.62    2.51    3.23    3.63    3.56    3.01    2.12    1.06    0.05   -0.75   -1.21   -1.23   -0.72    0.54    2.71    5.78
+   155.0    0.00    0.24    0.83    1.66    2.55    3.30    3.71    3.63    3.10    2.19    1.13    0.11   -0.69   -1.14   -1.17   -0.68    0.54    2.68    5.74
+   160.0    0.00    0.25    0.85    1.69    2.61    3.37    3.78    3.71    3.17    2.24    1.16    0.13   -0.66   -1.12   -1.15   -0.68    0.50    2.59    5.64
+   165.0    0.00    0.26    0.88    1.74    2.66    3.43    3.84    3.78    3.21    2.28    1.16    0.12   -0.69   -1.13   -1.17   -0.72    0.43    2.46    5.49
+   170.0    0.00    0.27    0.90    1.77    2.70    3.48    3.90    3.82    3.24    2.27    1.13    0.07   -0.75   -1.19   -1.23   -0.78    0.32    2.29    5.28
+   175.0    0.00    0.28    0.91    1.80    2.75    3.52    3.94    3.85    3.25    2.26    1.08   -0.01   -0.84   -1.29   -1.31   -0.86    0.20    2.12    5.07
+   180.0    0.00    0.29    0.93    1.83    2.78    3.56    3.99    3.88    3.25    2.23    1.02   -0.11   -0.95   -1.40   -1.42   -0.97    0.08    1.96    4.85
+   185.0    0.00    0.30    0.95    1.84    2.80    3.59    4.00    3.89    3.24    2.18    0.94   -0.21   -1.07   -1.53   -1.53   -1.08   -0.03    1.82    4.66
+   190.0    0.00    0.30    0.96    1.85    2.81    3.60    4.01    3.88    3.21    2.14    0.87   -0.31   -1.18   -1.64   -1.66   -1.18   -0.12    1.72    4.53
+   195.0    0.00    0.31    0.97    1.86    2.82    3.59    3.99    3.87    3.19    2.09    0.82   -0.38   -1.28   -1.76   -1.76   -1.28   -0.18    1.68    4.45
+   200.0    0.00    0.31    0.98    1.86    2.81    3.57    3.97    3.83    3.17    2.07    0.79   -0.42   -1.34   -1.83   -1.84   -1.33   -0.21    1.67    4.46
+   205.0    0.00    0.31    0.98    1.86    2.79    3.55    3.93    3.79    3.14    2.06    0.78   -0.42   -1.35   -1.86   -1.89   -1.36   -0.20    1.74    4.56
+   210.0    0.00    0.31    0.97    1.85    2.77    3.51    3.87    3.75    3.11    2.06    0.81   -0.39   -1.33   -1.87   -1.91   -1.37   -0.17    1.85    4.71
+   215.0    0.00    0.31    0.98    1.84    2.74    3.45    3.82    3.71    3.10    2.08    0.86   -0.33   -1.28   -1.85   -1.90   -1.35   -0.10    1.99    4.91
+   220.0    0.00    0.32    0.97    1.82    2.71    3.41    3.77    3.67    3.08    2.10    0.93   -0.25   -1.20   -1.79   -1.88   -1.33   -0.03    2.14    5.15
+   225.0    0.00    0.31    0.97    1.80    2.66    3.35    3.71    3.62    3.06    2.12    0.99   -0.18   -1.13   -1.73   -1.83   -1.29    0.06    2.29    5.37
+   230.0    0.00    0.31    0.96    1.78    2.63    3.31    3.66    3.56    3.03    2.14    1.03   -0.10   -1.06   -1.68   -1.80   -1.25    0.13    2.43    5.59
+   235.0    0.00    0.31    0.95    1.76    2.59    3.27    3.60    3.52    3.00    2.13    1.05   -0.05   -1.01   -1.64   -1.78   -1.23    0.17    2.52    5.74
+   240.0    0.00    0.30    0.94    1.74    2.56    3.23    3.56    3.48    2.97    2.12    1.05   -0.05   -1.00   -1.64   -1.78   -1.23    0.18    2.56    5.83
+   245.0    0.00    0.30    0.93    1.72    2.53    3.20    3.52    3.45    2.95    2.09    1.03   -0.08   -1.04   -1.67   -1.82   -1.27    0.15    2.56    5.86
+   250.0    0.00    0.29    0.92    1.71    2.52    3.18    3.50    3.43    2.91    2.04    0.96   -0.16   -1.12   -1.75   -1.88   -1.34    0.08    2.50    5.81
+   255.0    0.00    0.29    0.90    1.70    2.50    3.16    3.50    3.41    2.88    1.99    0.87   -0.27   -1.22   -1.86   -1.99   -1.43   -0.01    2.40    5.71
+   260.0    0.00    0.28    0.89    1.68    2.50    3.17    3.50    3.40    2.86    1.93    0.78   -0.38   -1.37   -1.98   -2.10   -1.54   -0.14    2.25    5.55
+   265.0    0.00    0.28    0.89    1.68    2.49    3.17    3.51    3.42    2.85    1.88    0.69   -0.51   -1.51   -2.13   -2.23   -1.67   -0.28    2.09    5.38
+   270.0    0.00    0.28    0.87    1.67    2.50    3.19    3.54    3.44    2.85    1.84    0.61   -0.62   -1.64   -2.26   -2.35   -1.80   -0.40    1.94    5.21
+   275.0    0.00    0.26    0.87    1.66    2.51    3.21    3.57    3.47    2.86    1.83    0.56   -0.70   -1.74   -2.37   -2.46   -1.90   -0.52    1.81    5.05
+   280.0    0.00    0.26    0.85    1.66    2.51    3.24    3.61    3.53    2.90    1.84    0.54   -0.75   -1.80   -2.43   -2.53   -1.97   -0.61    1.71    4.93
+   285.0    0.00    0.25    0.84    1.65    2.51    3.25    3.66    3.57    2.96    1.88    0.56   -0.75   -1.82   -2.45   -2.56   -2.00   -0.64    1.65    4.86
+   290.0    0.00    0.24    0.83    1.64    2.52    3.28    3.69    3.62    3.00    1.94    0.62   -0.71   -1.79   -2.43   -2.53   -1.97   -0.63    1.65    4.85
+   295.0    0.00    0.23    0.82    1.64    2.52    3.29    3.72    3.66    3.06    2.00    0.69   -0.63   -1.70   -2.36   -2.45   -1.90   -0.55    1.70    4.87
+   300.0    0.00    0.23    0.79    1.62    2.52    3.30    3.75    3.69    3.11    2.07    0.78   -0.53   -1.58   -2.22   -2.33   -1.78   -0.44    1.80    4.93
+   305.0    0.00    0.21    0.78    1.61    2.51    3.30    3.76    3.72    3.16    2.14    0.85   -0.42   -1.45   -2.08   -2.17   -1.62   -0.30    1.93    5.01
+   310.0    0.00    0.21    0.77    1.59    2.50    3.28    3.76    3.73    3.17    2.18    0.93   -0.32   -1.32   -1.92   -2.00   -1.46   -0.14    2.05    5.08
+   315.0    0.00    0.20    0.75    1.57    2.49    3.27    3.73    3.71    3.18    2.19    0.97   -0.24   -1.20   -1.78   -1.84   -1.29    0.72    2.17    5.15
+   320.0    0.00    0.19    0.74    1.56    2.45    3.25    3.71    3.68    3.14    2.18    0.98   -0.20   -1.12   -1.67   -1.71   -1.15    0.12    2.23    5.16
+   325.0    0.00    0.18    0.72    1.53    2.44    3.22    3.66    3.64    3.08    2.12    0.94   -0.20   -1.10   -1.60   -1.62   -1.07    0.18    2.26    5.13
+   330.0    0.00    0.17    0.71    1.52    2.41    3.18    3.62    3.58    3.02    2.05    0.88   -0.26   -1.12   -1.58   -1.58   -1.03    0.18    2.21    5.03
+   335.0    0.00    0.16    0.69    1.49    2.39    3.14    3.57    3.51    2.93    1.95    0.77   -0.35   -1.19   -1.64   -1.61   -1.07    0.11    2.09    4.90
+   340.0    0.00    0.16    0.68    1.47    2.34    3.12    3.52    3.44    2.83    1.83    0.63   -0.49   -1.32   -1.74   -1.71   -1.19   -0.05    1.90    4.69
+   345.0    0.00    0.14    0.67    1.44    2.32    3.07    3.48    3.37    2.74    1.70    0.48   -0.65   -1.47   -1.90   -1.87   -1.37   -0.25    1.64    4.46
+   350.0    0.00    0.13    0.64    1.41    2.29    3.03    3.43    3.31    2.65    1.58    0.34   -0.81   -1.66   -2.08   -2.06   -1.58   -0.51    1.36    4.22
+   355.0    0.00    0.13    0.62    1.40    2.27    3.01    3.39    3.25    2.57    1.47    0.20   -0.98   -1.84   -2.29   -2.29   -1.83   -0.79    1.07    3.99
+   360.0    0.00    0.12    0.60    1.38    2.25    2.98    3.36    3.22    2.51    1.38    0.07   -1.14   -2.02   -2.48   -2.52   -2.08   -1.08    0.78    3.77
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+     -0.14      0.38    163.07                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.15   -0.58   -1.21   -1.96   -2.79   -3.67   -4.60   -5.51   -6.33   -6.88   -7.05   -6.70   -5.87   -4.57   -2.85   -0.69    2.08    5.57
+     0.0    0.00   -0.05   -0.36   -0.91   -1.63   -2.48   -3.43   -4.44   -5.43   -6.33   -6.95   -7.14   -6.84   -6.03   -4.81   -3.21   -1.24    1.35    4.89
+     5.0    0.00   -0.05   -0.36   -0.89   -1.61   -2.46   -3.41   -4.41   -5.41   -6.29   -6.91   -7.13   -6.87   -6.10   -4.90   -3.31   -1.29    1.35    4.93
+    10.0    0.00   -0.05   -0.35   -0.89   -1.60   -2.44   -3.38   -4.38   -5.37   -6.25   -6.88   -7.13   -6.89   -6.17   -4.98   -3.40   -1.35    1.33    4.98
+    15.0    0.00   -0.06   -0.36   -0.89   -1.60   -2.44   -3.38   -4.37   -5.36   -6.23   -6.86   -7.12   -6.91   -6.21   -5.07   -3.49   -1.43    1.31    5.01
+    20.0    0.00   -0.06   -0.37   -0.90   -1.60   -2.44   -3.38   -4.38   -5.35   -6.21   -6.84   -7.10   -6.91   -6.24   -5.13   -3.56   -1.47    1.31    5.04
+    25.0    0.00   -0.07   -0.37   -0.90   -1.61   -2.46   -3.39   -4.38   -5.36   -6.22   -6.84   -7.09   -6.89   -6.24   -5.14   -3.58   -1.49    1.34    5.08
+    30.0    0.00   -0.07   -0.38   -0.92   -1.63   -2.47   -3.40   -4.40   -5.37   -6.22   -6.83   -7.06   -6.86   -6.21   -5.11   -3.56   -1.44    1.40    5.15
+    35.0    0.00   -0.08   -0.40   -0.94   -1.65   -2.48   -3.42   -4.42   -5.39   -6.23   -6.81   -7.03   -6.81   -6.14   -5.04   -3.47   -1.34    1.53    5.25
+    40.0    0.00   -0.09   -0.42   -0.96   -1.66   -2.50   -3.44   -4.43   -5.41   -6.23   -6.80   -6.98   -6.73   -6.04   -4.91   -3.31   -1.16    1.72    5.41
+    45.0    0.00   -0.09   -0.43   -0.97   -1.68   -2.51   -3.45   -4.44   -5.40   -6.23   -6.77   -6.93   -6.65   -5.91   -4.74   -3.11   -0.91    1.98    5.63
+    50.0    0.00   -0.10   -0.45   -1.00   -1.70   -2.53   -3.44   -4.42   -5.38   -6.20   -6.73   -6.87   -6.54   -5.76   -4.54   -2.86   -0.62    2.30    5.90
+    55.0    0.00   -0.12   -0.48   -1.02   -1.72   -2.52   -3.43   -4.39   -5.35   -6.15   -6.67   -6.79   -6.42   -5.60   -4.32   -2.59   -0.29    2.66    6.24
+    60.0    0.00   -0.12   -0.49   -1.05   -1.74   -2.53   -3.41   -4.36   -5.30   -6.10   -6.60   -6.69   -6.31   -5.43   -4.11   -2.30    0.05    3.05    6.62
+    65.0    0.00   -0.14   -0.52   -1.08   -1.76   -2.53   -3.39   -4.31   -5.23   -6.01   -6.52   -6.60   -6.20   -5.29   -3.90   -2.05    0.37    3.42    7.00
+    70.0    0.00   -0.14   -0.54   -1.11   -1.79   -2.54   -3.37   -4.26   -5.15   -5.94   -6.44   -6.52   -6.09   -5.17   -3.73   -1.83    0.65    3.76    7.36
+    75.0    0.00   -0.15   -0.57   -1.15   -1.82   -2.56   -3.34   -4.22   -5.09   -5.86   -6.36   -6.45   -6.01   -5.07   -3.62   -1.67    0.86    4.03    7.65
+    80.0    0.00   -0.17   -0.59   -1.19   -1.85   -2.57   -3.35   -4.18   -5.04   -5.79   -6.29   -6.39   -5.97   -5.02   -3.56   -1.58    1.00    4.20    7.87
+    85.0    0.00   -0.18   -0.62   -1.22   -1.89   -2.60   -3.35   -4.17   -5.01   -5.75   -6.27   -6.36   -5.95   -5.02   -3.56   -1.57    1.03    4.28    7.96
+    90.0    0.00   -0.19   -0.64   -1.26   -1.94   -2.64   -3.39   -4.19   -5.00   -5.75   -6.25   -6.37   -5.98   -5.06   -3.62   -1.63    0.97    4.23    7.92
+    95.0    0.00   -0.20   -0.67   -1.29   -1.98   -2.70   -3.44   -4.22   -5.03   -5.76   -6.27   -6.41   -6.03   -5.14   -3.72   -1.75    0.83    4.08    7.76
+   100.0    0.00   -0.21   -0.69   -1.33   -2.04   -2.76   -3.50   -4.28   -5.08   -5.83   -6.34   -6.46   -6.13   -5.26   -3.85   -1.91    0.63    3.84    7.48
+   105.0    0.00   -0.22   -0.71   -1.36   -2.09   -2.82   -3.57   -4.37   -5.17   -5.91   -6.43   -6.56   -6.24   -5.38   -4.01   -2.12    0.38    3.51    7.11
+   110.0    0.00   -0.22   -0.73   -1.40   -2.15   -2.90   -3.66   -4.46   -5.27   -6.01   -6.54   -6.70   -6.36   -5.53   -4.19   -2.33    0.11    3.17    6.68
+   115.0    0.00   -0.23   -0.74   -1.42   -2.18   -2.95   -3.74   -4.56   -5.40   -6.14   -6.66   -6.82   -6.50   -5.67   -4.35   -2.54   -0.17    2.81    6.23
+   120.0    0.00   -0.23   -0.75   -1.45   -2.22   -3.01   -3.82   -4.66   -5.50   -6.26   -6.79   -6.94   -6.63   -5.80   -4.50   -2.72   -0.41    2.47    5.81
+   125.0    0.00   -0.23   -0.76   -1.46   -2.24   -3.06   -3.89   -4.75   -5.61   -6.37   -6.90   -7.05   -6.73   -5.92   -4.63   -2.87   -0.62    2.19    5.47
+   130.0    0.00   -0.24   -0.76   -1.46   -2.26   -3.08   -3.93   -4.81   -5.68   -6.46   -7.00   -7.15   -6.82   -6.00   -4.71   -2.99   -0.78    1.96    5.19
+   135.0    0.00   -0.24   -0.77   -1.47   -2.26   -3.10   -3.96   -4.85   -5.74   -6.52   -7.07   -7.23   -6.89   -6.06   -4.77   -3.05   -0.88    1.80    5.02
+   140.0    0.00   -0.24   -0.76   -1.46   -2.25   -3.09   -3.97   -4.88   -5.77   -6.57   -7.12   -7.27   -6.93   -6.09   -4.80   -3.09   -0.95    1.72    4.95
+   145.0    0.00   -0.25   -0.76   -1.45   -2.24   -3.08   -3.95   -4.87   -5.78   -6.59   -7.14   -7.30   -6.96   -6.11   -4.80   -3.10   -0.97    1.69    4.97
+   150.0    0.00   -0.25   -0.75   -1.42   -2.21   -3.05   -3.93   -4.84   -5.76   -6.58   -7.15   -7.30   -6.95   -6.10   -4.80   -3.10   -0.97    1.70    5.04
+   155.0    0.00   -0.24   -0.73   -1.41   -2.17   -3.00   -3.89   -4.80   -5.74   -6.55   -7.13   -7.30   -6.96   -6.10   -4.78   -3.08   -0.95    1.74    5.14
+   160.0    0.00   -0.24   -0.72   -1.37   -2.14   -2.95   -3.84   -4.76   -5.70   -6.53   -7.11   -7.29   -6.95   -6.08   -4.77   -3.06   -0.92    1.78    5.24
+   165.0    0.00   -0.23   -0.71   -1.34   -2.10   -2.90   -3.79   -4.71   -5.66   -6.51   -7.10   -7.28   -6.94   -6.09   -4.76   -3.05   -0.90    1.83    5.31
+   170.0    0.00   -0.22   -0.70   -1.32   -2.06   -2.86   -3.74   -4.68   -5.64   -6.49   -7.09   -7.28   -6.95   -6.09   -4.76   -3.03   -0.87    1.85    5.35
+   175.0    0.00   -0.22   -0.68   -1.30   -2.02   -2.83   -3.70   -4.64   -5.60   -6.46   -7.08   -7.28   -6.96   -6.10   -4.77   -3.02   -0.86    1.86    5.33
+   180.0    0.00   -0.22   -0.67   -1.27   -1.99   -2.80   -3.68   -4.63   -5.59   -6.46   -7.08   -7.28   -6.96   -6.12   -4.78   -3.03   -0.84    1.87    5.29
+   185.0    0.00   -0.22   -0.66   -1.26   -1.98   -2.78   -3.66   -4.61   -5.58   -6.44   -7.07   -7.29   -6.98   -6.13   -4.79   -3.02   -0.82    1.89    5.23
+   190.0    0.00   -0.21   -0.64   -1.24   -1.96   -2.76   -3.65   -4.60   -5.56   -6.44   -7.06   -7.28   -6.98   -6.15   -4.79   -3.00   -0.78    1.91    5.17
+   195.0    0.00   -0.21   -0.64   -1.23   -1.96   -2.76   -3.66   -4.62   -5.56   -6.42   -7.04   -7.26   -6.97   -6.13   -4.79   -2.97   -0.72    1.97    5.14
+   200.0    0.00   -0.19   -0.63   -1.23   -1.96   -2.77   -3.67   -4.62   -5.56   -6.40   -7.01   -7.22   -6.93   -6.10   -4.75   -2.91   -0.65    2.06    5.18
+   205.0    0.00   -0.19   -0.62   -1.23   -1.97   -2.80   -3.69   -4.62   -5.55   -6.36   -6.96   -7.17   -6.88   -6.06   -4.70   -2.84   -0.54    2.18    5.28
+   210.0    0.00   -0.19   -0.61   -1.23   -1.98   -2.81   -3.71   -4.63   -5.53   -6.33   -6.90   -7.10   -6.81   -5.98   -4.62   -2.74   -0.41    2.33    5.46
+   215.0    0.00   -0.18   -0.62   -1.24   -2.00   -2.84   -3.74   -4.65   -5.52   -6.29   -6.83   -7.01   -6.72   -5.89   -4.52   -2.64   -0.27    2.52    5.71
+   220.0    0.00   -0.18   -0.61   -1.25   -2.01   -2.87   -3.77   -4.66   -5.51   -6.25   -6.76   -6.92   -6.62   -5.78   -4.40   -2.51   -0.13    2.72    6.00
+   225.0    0.00   -0.17   -0.61   -1.25   -2.04   -2.90   -3.79   -4.67   -5.51   -6.22   -6.71   -6.84   -6.51   -5.67   -4.29   -2.40    0.01    2.92    6.32
+   230.0    0.00   -0.17   -0.61   -1.26   -2.05   -2.92   -3.81   -4.68   -5.49   -6.20   -6.66   -6.78   -6.42   -5.57   -4.18   -2.28    0.13    3.09    6.63
+   235.0    0.00   -0.16   -0.61   -1.28   -2.07   -2.95   -3.83   -4.69   -5.51   -6.20   -6.64   -6.74   -6.36   -5.48   -4.08   -2.19    0.22    3.23    6.91
+   240.0    0.00   -0.16   -0.61   -1.28   -2.09   -2.97   -3.85   -4.71   -5.52   -6.20   -6.64   -6.72   -6.33   -5.42   -4.02   -2.13    0.26    3.30    7.10
+   245.0    0.00   -0.16   -0.61   -1.28   -2.09   -2.97   -3.87   -4.73   -5.55   -6.24   -6.68   -6.74   -6.34   -5.40   -3.99   -2.11    0.26    3.30    7.20
+   250.0    0.00   -0.16   -0.61   -1.29   -2.10   -2.99   -3.88   -4.75   -5.57   -6.28   -6.75   -6.80   -6.36   -5.42   -3.99   -2.13    0.21    3.22    7.18
+   255.0    0.00   -0.15   -0.60   -1.29   -2.11   -2.99   -3.88   -4.77   -5.62   -6.35   -6.81   -6.88   -6.44   -5.46   -4.04   -2.20    0.10    3.09    7.07
+   260.0    0.00   -0.14   -0.60   -1.28   -2.11   -2.99   -3.88   -4.78   -5.66   -6.41   -6.91   -6.98   -6.54   -5.55   -4.13   -2.32   -0.05    2.90    6.86
+   265.0    0.00   -0.14   -0.59   -1.28   -2.11   -2.99   -3.88   -4.80   -5.69   -6.47   -6.99   -7.09   -6.65   -5.67   -4.25   -2.45   -0.24    2.66    6.58
+   270.0    0.00   -0.14   -0.58   -1.27   -2.09   -2.98   -3.88   -4.81   -5.72   -6.53   -7.09   -7.20   -6.77   -5.81   -4.39   -2.63   -0.45    2.39    6.24
+   275.0    0.00   -0.13   -0.58   -1.26   -2.08   -2.96   -3.88   -4.80   -5.74   -6.58   -7.15   -7.30   -6.89   -5.95   -4.55   -2.82   -0.68    2.10    5.87
+   280.0    0.00   -0.13   -0.57   -1.25   -2.07   -2.95   -3.86   -4.80   -5.76   -6.61   -7.20   -7.37   -6.99   -6.07   -4.72   -3.02   -0.91    1.83    5.53
+   285.0    0.00   -0.12   -0.56   -1.24   -2.05   -2.93   -3.85   -4.81   -5.76   -6.62   -7.23   -7.41   -7.06   -6.18   -4.86   -3.21   -1.14    1.57    5.21
+   290.0    0.00   -0.12   -0.54   -1.22   -2.03   -2.92   -3.84   -4.80   -5.76   -6.62   -7.23   -7.43   -7.10   -6.25   -5.00   -3.36   -1.33    1.34    4.92
+   295.0    0.00   -0.10   -0.53   -1.20   -2.01   -2.90   -3.83   -4.78   -5.76   -6.61   -7.22   -7.42   -7.11   -6.30   -5.08   -3.50   -1.50    1.16    4.69
+   300.0    0.00   -0.09   -0.52   -1.18   -1.98   -2.88   -3.81   -4.78   -5.74   -6.60   -7.20   -7.39   -7.09   -6.32   -5.13   -3.59   -1.62    1.01    4.52
+   305.0    0.00   -0.09   -0.50   -1.15   -1.96   -2.85   -3.81   -4.78   -5.74   -6.59   -7.16   -7.34   -7.04   -6.29   -5.14   -3.64   -1.71    0.91    4.41
+   310.0    0.00   -0.09   -0.48   -1.13   -1.94   -2.84   -3.79   -4.77   -5.73   -6.57   -7.13   -7.30   -6.99   -6.24   -5.11   -3.65   -1.73    0.86    4.35
+   315.0    0.00   -0.08   -0.46   -1.10   -1.90   -2.81   -3.77   -4.76   -5.72   -6.55   -7.10   -7.25   -6.93   -6.18   -5.06   -3.62   -1.73    0.85    4.32
+   320.0    0.00   -0.07   -0.46   -1.08   -1.87   -2.78   -3.75   -4.75   -5.72   -6.54   -7.08   -7.20   -6.87   -6.10   -4.98   -3.54   -1.68    0.87    4.33
+   325.0    0.00   -0.06   -0.43   -1.05   -1.83   -2.74   -3.72   -4.73   -5.70   -6.53   -7.06   -7.18   -6.81   -6.02   -4.89   -3.45   -1.60    0.92    4.37
+   330.0    0.00   -0.06   -0.42   -1.03   -1.80   -2.71   -3.69   -4.71   -5.69   -6.52   -7.05   -7.15   -6.77   -5.95   -4.80   -3.34   -1.51    0.98    4.42
+   335.0    0.00   -0.06   -0.40   -0.99   -1.78   -2.67   -3.65   -4.67   -5.66   -6.51   -7.04   -7.13   -6.75   -5.92   -4.73   -3.25   -1.40    1.08    4.49
+   340.0    0.00   -0.06   -0.39   -0.97   -1.74   -2.62   -3.60   -4.64   -5.64   -6.48   -7.02   -7.14   -6.74   -5.89   -4.68   -3.18   -1.31    1.16    4.57
+   345.0    0.00   -0.05   -0.38   -0.95   -1.71   -2.58   -3.56   -4.59   -5.60   -6.45   -7.02   -7.14   -6.75   -5.89   -4.66   -3.14   -1.25    1.23    4.65
+   350.0    0.00   -0.05   -0.37   -0.93   -1.67   -2.54   -3.51   -4.53   -5.54   -6.41   -6.99   -7.14   -6.77   -5.92   -4.68   -3.13   -1.21    1.29    4.73
+   355.0    0.00   -0.05   -0.36   -0.91   -1.64   -2.50   -3.47   -4.49   -5.50   -6.37   -6.97   -7.13   -6.80   -5.97   -4.74   -3.16   -1.20    1.34    4.81
+   360.0    0.00   -0.05   -0.36   -0.91   -1.63   -2.48   -3.43   -4.44   -5.43   -6.33   -6.95   -7.14   -6.84   -6.03   -4.81   -3.21   -1.24    1.35    4.89
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+LEIAR25.R3      NONE                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               5    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     4                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+Number of Calibrated Antennas GPS:      005                 COMMENT             
+Number of Individual Calibrations GPS:  010                 COMMENT             
+Number of Calibrated Antennas GLO:      005                 COMMENT             
+Number of Individual Calibrations GLO:  010                 COMMENT             
+# GLONASS PCV                                               COMMENT             
+#  derived from Delta PCV per 25.0 MHz                      COMMENT             
+#  for frequency channel number k=0                         COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.41      0.11    162.23                              NORTH / EAST / UP   
+   NOAZI    0.00    0.24    0.89    1.79    2.71    3.41    3.70    3.51    2.86    1.89    0.78   -0.31   -1.22   -1.86   -2.13   -1.88   -0.91    0.97    3.76
+     0.0    0.00    0.22    0.88    1.81    2.76    3.46    3.72    3.46    2.75    1.76    0.68   -0.30   -1.08   -1.65   -1.93   -1.82   -1.09    0.49    2.91
+     5.0    0.00    0.22    0.87    1.80    2.75    3.46    3.72    3.46    2.74    1.72    0.63   -0.37   -1.16   -1.71   -2.00   -1.89   -1.19    0.35    2.77
+    10.0    0.00    0.21    0.87    1.80    2.75    3.46    3.73    3.47    2.73    1.70    0.58   -0.43   -1.22   -1.77   -2.05   -1.95   -1.25    0.27    2.70
+    15.0    0.00    0.21    0.86    1.79    2.74    3.46    3.74    3.48    2.74    1.68    0.54   -0.48   -1.29   -1.83   -2.09   -1.97   -1.27    0.26    2.73
+    20.0    0.00    0.21    0.85    1.78    2.73    3.46    3.75    3.49    2.75    1.68    0.53   -0.52   -1.34   -1.88   -2.12   -1.98   -1.24    0.33    2.85
+    25.0    0.00    0.20    0.84    1.76    2.72    3.46    3.75    3.51    2.77    1.70    0.53   -0.54   -1.37   -1.92   -2.14   -1.95   -1.17    0.45    3.05
+    30.0    0.00    0.20    0.84    1.75    2.71    3.45    3.76    3.54    2.81    1.74    0.55   -0.55   -1.40   -1.94   -2.14   -1.92   -1.07    0.63    3.31
+    35.0    0.00    0.20    0.83    1.74    2.70    3.45    3.77    3.56    2.85    1.78    0.58   -0.53   -1.40   -1.96   -2.14   -1.87   -0.95    0.84    3.60
+    40.0    0.00    0.19    0.82    1.73    2.69    3.45    3.78    3.59    2.89    1.84    0.63   -0.50   -1.40   -1.96   -2.14   -1.82   -0.82    1.05    3.90
+    45.0    0.00    0.19    0.81    1.72    2.68    3.44    3.79    3.62    2.94    1.89    0.69   -0.46   -1.37   -1.96   -2.13   -1.77   -0.72    1.24    4.16
+    50.0    0.00    0.19    0.81    1.71    2.67    3.43    3.79    3.64    2.98    1.95    0.75   -0.41   -1.34   -1.95   -2.13   -1.75   -0.64    1.38    4.36
+    55.0    0.00    0.19    0.80    1.70    2.66    3.42    3.79    3.65    3.01    2.00    0.81   -0.35   -1.31   -1.94   -2.13   -1.75   -0.61    1.46    4.49
+    60.0    0.00    0.19    0.80    1.70    2.65    3.42    3.79    3.66    3.03    2.03    0.85   -0.31   -1.27   -1.92   -2.14   -1.77   -0.63    1.46    4.54
+    65.0    0.00    0.19    0.80    1.69    2.64    3.41    3.78    3.66    3.04    2.05    0.88   -0.27   -1.24   -1.91   -2.16   -1.82   -0.70    1.40    4.50
+    70.0    0.00    0.19    0.80    1.69    2.64    3.40    3.77    3.65    3.03    2.06    0.90   -0.25   -1.22   -1.91   -2.19   -1.89   -0.80    1.29    4.38
+    75.0    0.00    0.19    0.80    1.69    2.64    3.40    3.76    3.63    3.02    2.04    0.90   -0.24   -1.21   -1.92   -2.23   -1.97   -0.93    1.13    4.22
+    80.0    0.00    0.19    0.80    1.69    2.64    3.39    3.75    3.61    2.99    2.02    0.88   -0.25   -1.22   -1.93   -2.27   -2.06   -1.06    0.95    4.02
+    85.0    0.00    0.19    0.81    1.70    2.64    3.39    3.74    3.59    2.96    1.98    0.84   -0.28   -1.24   -1.95   -2.31   -2.13   -1.19    0.78    3.82
+    90.0    0.00    0.19    0.81    1.70    2.64    3.39    3.73    3.57    2.92    1.94    0.80   -0.32   -1.27   -1.98   -2.34   -2.20   -1.29    0.63    3.65
+    95.0    0.00    0.20    0.82    1.71    2.65    3.39    3.72    3.55    2.89    1.89    0.75   -0.36   -1.31   -2.01   -2.37   -2.23   -1.35    0.54    3.52
+   100.0    0.00    0.20    0.82    1.72    2.66    3.40    3.72    3.53    2.86    1.85    0.70   -0.41   -1.35   -2.04   -2.39   -2.24   -1.37    0.50    3.45
+   105.0    0.00    0.21    0.83    1.73    2.67    3.40    3.72    3.52    2.84    1.82    0.66   -0.45   -1.38   -2.05   -2.38   -2.22   -1.33    0.53    3.44
+   110.0    0.00    0.21    0.84    1.74    2.68    3.41    3.72    3.52    2.83    1.80    0.64   -0.47   -1.40   -2.06   -2.36   -2.17   -1.26    0.61    3.50
+   115.0    0.00    0.21    0.85    1.75    2.69    3.42    3.73    3.52    2.83    1.80    0.63   -0.48   -1.41   -2.05   -2.32   -2.09   -1.15    0.74    3.61
+   120.0    0.00    0.22    0.86    1.76    2.70    3.42    3.73    3.52    2.84    1.81    0.64   -0.47   -1.39   -2.02   -2.27   -2.00   -1.01    0.90    3.76
+   125.0    0.00    0.22    0.87    1.78    2.71    3.43    3.73    3.53    2.85    1.83    0.67   -0.44   -1.36   -1.98   -2.21   -1.90   -0.87    1.07    3.93
+   130.0    0.00    0.23    0.88    1.79    2.72    3.44    3.74    3.54    2.87    1.86    0.71   -0.39   -1.31   -1.92   -2.13   -1.80   -0.74    1.23    4.10
+   135.0    0.00    0.23    0.89    1.80    2.73    3.44    3.74    3.55    2.89    1.90    0.76   -0.34   -1.25   -1.86   -2.06   -1.71   -0.62    1.36    4.24
+   140.0    0.00    0.24    0.90    1.81    2.74    3.45    3.75    3.56    2.91    1.94    0.82   -0.27   -1.18   -1.80   -2.00   -1.65   -0.54    1.46    4.34
+   145.0    0.00    0.24    0.91    1.82    2.75    3.45    3.75    3.57    2.93    1.97    0.87   -0.21   -1.12   -1.74   -1.95   -1.60   -0.50    1.50    4.38
+   150.0    0.00    0.25    0.92    1.83    2.76    3.46    3.76    3.57    2.95    2.00    0.91   -0.17   -1.08   -1.70   -1.93   -1.59   -0.50    1.49    4.37
+   155.0    0.00    0.25    0.93    1.85    2.77    3.47    3.76    3.58    2.96    2.02    0.93   -0.14   -1.05   -1.68   -1.92   -1.61   -0.54    1.43    4.29
+   160.0    0.00    0.26    0.94    1.86    2.78    3.47    3.77    3.58    2.96    2.02    0.94   -0.13   -1.04   -1.68   -1.94   -1.65   -0.62    1.33    4.16
+   165.0    0.00    0.26    0.94    1.87    2.79    3.48    3.77    3.59    2.96    2.02    0.93   -0.14   -1.06   -1.71   -1.98   -1.72   -0.71    1.19    3.99
+   170.0    0.00    0.27    0.95    1.87    2.80    3.49    3.78    3.59    2.95    2.00    0.90   -0.18   -1.10   -1.75   -2.04   -1.80   -0.83    1.04    3.80
+   175.0    0.00    0.27    0.96    1.88    2.81    3.50    3.78    3.58    2.94    1.97    0.86   -0.23   -1.15   -1.81   -2.11   -1.88   -0.95    0.88    3.60
+   180.0    0.00    0.27    0.96    1.89    2.81    3.50    3.78    3.57    2.92    1.94    0.81   -0.28   -1.21   -1.88   -2.18   -1.97   -1.06    0.74    3.41
+   185.0    0.00    0.27    0.96    1.89    2.81    3.50    3.78    3.56    2.89    1.90    0.76   -0.34   -1.27   -1.94   -2.24   -2.05   -1.15    0.62    3.27
+   190.0    0.00    0.28    0.96    1.89    2.81    3.49    3.76    3.54    2.86    1.86    0.72   -0.39   -1.32   -1.99   -2.30   -2.11   -1.22    0.54    3.17
+   195.0    0.00    0.28    0.96    1.88    2.80    3.48    3.75    3.52    2.83    1.82    0.68   -0.42   -1.35   -2.02   -2.33   -2.14   -1.26    0.51    3.14
+   200.0    0.00    0.28    0.96    1.88    2.79    3.46    3.72    3.49    2.80    1.80    0.66   -0.44   -1.36   -2.03   -2.35   -2.16   -1.27    0.52    3.18
+   205.0    0.00    0.28    0.96    1.87    2.77    3.44    3.69    3.46    2.78    1.78    0.66   -0.43   -1.35   -2.02   -2.34   -2.15   -1.24    0.58    3.29
+   210.0    0.00    0.28    0.96    1.86    2.75    3.41    3.66    3.43    2.76    1.78    0.67   -0.40   -1.32   -1.99   -2.32   -2.13   -1.19    0.69    3.45
+   215.0    0.00    0.28    0.95    1.84    2.73    3.38    3.63    3.40    2.74    1.79    0.70   -0.35   -1.27   -1.95   -2.28   -2.09   -1.11    0.83    3.66
+   220.0    0.00    0.28    0.94    1.83    2.71    3.35    3.59    3.38    2.74    1.81    0.75   -0.30   -1.21   -1.90   -2.24   -2.03   -1.02    0.98    3.89
+   225.0    0.00    0.27    0.94    1.81    2.68    3.32    3.57    3.36    2.74    1.84    0.79   -0.24   -1.16   -1.86   -2.20   -1.98   -0.93    1.14    4.12
+   230.0    0.00    0.27    0.93    1.80    2.66    3.29    3.54    3.35    2.76    1.87    0.84   -0.19   -1.11   -1.83   -2.18   -1.93   -0.84    1.29    4.32
+   235.0    0.00    0.27    0.92    1.79    2.64    3.27    3.53    3.35    2.78    1.91    0.89   -0.15   -1.09   -1.81   -2.16   -1.90   -0.76    1.41    4.47
+   240.0    0.00    0.27    0.92    1.77    2.62    3.26    3.53    3.36    2.80    1.94    0.92   -0.13   -1.09   -1.82   -2.16   -1.88   -0.71    1.49    4.57
+   245.0    0.00    0.27    0.91    1.76    2.61    3.25    3.53    3.38    2.83    1.97    0.94   -0.13   -1.11   -1.85   -2.19   -1.88   -0.69    1.52    4.58
+   250.0    0.00    0.27    0.91    1.76    2.61    3.25    3.54    3.41    2.86    2.00    0.94   -0.16   -1.16   -1.91   -2.23   -1.90   -0.70    1.49    4.52
+   255.0    0.00    0.26    0.90    1.75    2.60    3.26    3.56    3.43    2.88    2.01    0.93   -0.20   -1.22   -1.97   -2.27   -1.93   -0.74    1.41    4.38
+   260.0    0.00    0.26    0.90    1.75    2.60    3.27    3.58    3.45    2.90    2.01    0.90   -0.25   -1.29   -2.04   -2.33   -1.98   -0.80    1.28    4.19
+   265.0    0.00    0.26    0.90    1.75    2.61    3.28    3.60    3.47    2.91    1.99    0.86   -0.32   -1.36   -2.10   -2.38   -2.03   -0.89    1.13    3.96
+   270.0    0.00    0.26    0.89    1.75    2.62    3.29    3.62    3.49    2.91    1.97    0.82   -0.38   -1.42   -2.15   -2.42   -2.07   -0.98    0.96    3.72
+   275.0    0.00    0.26    0.89    1.75    2.63    3.31    3.63    3.50    2.91    1.95    0.77   -0.43   -1.46   -2.18   -2.43   -2.11   -1.07    0.79    3.50
+   280.0    0.00    0.26    0.89    1.76    2.64    3.32    3.64    3.50    2.90    1.92    0.74   -0.46   -1.48   -2.17   -2.43   -2.13   -1.14    0.66    3.33
+   285.0    0.00    0.25    0.89    1.76    2.65    3.33    3.65    3.50    2.88    1.89    0.71   -0.47   -1.47   -2.14   -2.40   -2.12   -1.18    0.56    3.21
+   290.0    0.00    0.25    0.89    1.77    2.66    3.35    3.65    3.49    2.86    1.87    0.70   -0.46   -1.43   -2.09   -2.34   -2.09   -1.19    0.52    3.18
+   295.0    0.00    0.25    0.90    1.77    2.67    3.35    3.66    3.48    2.84    1.85    0.70   -0.43   -1.37   -2.01   -2.26   -2.03   -1.16    0.53    3.21
+   300.0    0.00    0.25    0.90    1.78    2.68    3.36    3.66    3.47    2.82    1.84    0.71   -0.38   -1.29   -1.91   -2.16   -1.95   -1.09    0.60    3.31
+   305.0    0.00    0.25    0.90    1.79    2.69    3.37    3.65    3.46    2.81    1.85    0.74   -0.32   -1.20   -1.80   -2.06   -1.85   -1.00    0.72    3.46
+   310.0    0.00    0.25    0.90    1.79    2.70    3.38    3.66    3.45    2.81    1.85    0.77   -0.26   -1.11   -1.70   -1.95   -1.75   -0.89    0.86    3.63
+   315.0    0.00    0.24    0.90    1.80    2.71    3.39    3.66    3.45    2.81    1.87    0.81   -0.19   -1.02   -1.60   -1.86   -1.65   -0.77    1.01    3.80
+   320.0    0.00    0.24    0.90    1.81    2.72    3.39    3.66    3.45    2.81    1.88    0.85   -0.13   -0.95   -1.52   -1.78   -1.57   -0.67    1.14    3.93
+   325.0    0.00    0.24    0.90    1.81    2.73    3.40    3.67    3.45    2.81    1.89    0.87   -0.09   -0.89   -1.47   -1.73   -1.51   -0.60    1.23    4.01
+   330.0    0.00    0.24    0.90    1.81    2.73    3.41    3.68    3.46    2.81    1.90    0.89   -0.06   -0.86   -1.43   -1.70   -1.48   -0.56    1.27    4.01
+   335.0    0.00    0.24    0.90    1.82    2.74    3.42    3.68    3.46    2.81    1.90    0.89   -0.06   -0.85   -1.42   -1.69   -1.49   -0.57    1.25    3.93
+   340.0    0.00    0.23    0.90    1.82    2.75    3.43    3.69    3.46    2.81    1.88    0.87   -0.08   -0.87   -1.44   -1.71   -1.52   -0.63    1.16    3.79
+   345.0    0.00    0.23    0.89    1.82    2.75    3.44    3.70    3.47    2.80    1.86    0.84   -0.11   -0.90   -1.47   -1.75   -1.58   -0.72    1.02    3.58
+   350.0    0.00    0.23    0.89    1.82    2.76    3.45    3.71    3.47    2.78    1.83    0.79   -0.16   -0.95   -1.52   -1.81   -1.65   -0.84    0.85    3.35
+   355.0    0.00    0.22    0.89    1.81    2.76    3.45    3.71    3.46    2.77    1.79    0.74   -0.23   -1.01   -1.58   -1.87   -1.74   -0.97    0.66    3.12
+   360.0    0.00    0.22    0.88    1.81    2.76    3.46    3.72    3.46    2.75    1.76    0.68   -0.30   -1.08   -1.65   -1.93   -1.82   -1.09    0.49    2.91
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.18     -0.51    159.51                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.12   -0.47   -0.97   -1.56   -2.18   -2.85   -3.54   -4.22   -4.78   -5.05   -4.90   -4.24   -3.10   -1.59    0.24    2.42    5.17    8.67
+     0.0    0.00   -0.14   -0.49   -0.99   -1.55   -2.14   -2.74   -3.38   -4.03   -4.60   -4.92   -4.84   -4.25   -3.15   -1.64    0.19    2.31    4.87    8.07
+     5.0    0.00   -0.14   -0.50   -0.99   -1.56   -2.16   -2.77   -3.42   -4.07   -4.65   -4.99   -4.93   -4.36   -3.29   -1.81    0.00    2.11    4.67    7.82
+    10.0    0.00   -0.14   -0.50   -1.00   -1.57   -2.18   -2.80   -3.46   -4.12   -4.71   -5.06   -5.01   -4.47   -3.43   -1.96   -0.17    1.94    4.49    7.62
+    15.0    0.00   -0.14   -0.50   -1.01   -1.59   -2.20   -2.83   -3.50   -4.17   -4.76   -5.12   -5.09   -4.56   -3.53   -2.09   -0.31    1.80    4.36    7.48
+    20.0    0.00   -0.14   -0.50   -1.01   -1.60   -2.22   -2.86   -3.54   -4.22   -4.82   -5.18   -5.15   -4.62   -3.61   -2.18   -0.41    1.70    4.28    7.43
+    25.0    0.00   -0.14   -0.51   -1.02   -1.61   -2.24   -2.90   -3.59   -4.27   -4.87   -5.22   -5.19   -4.66   -3.65   -2.23   -0.47    1.65    4.26    7.47
+    30.0    0.00   -0.14   -0.51   -1.03   -1.63   -2.27   -2.93   -3.63   -4.32   -4.92   -5.26   -5.20   -4.67   -3.65   -2.24   -0.48    1.65    4.30    7.58
+    35.0    0.00   -0.15   -0.51   -1.03   -1.64   -2.29   -2.97   -3.67   -4.37   -4.95   -5.28   -5.20   -4.64   -3.62   -2.20   -0.45    1.70    4.39    7.77
+    40.0    0.00   -0.15   -0.51   -1.04   -1.65   -2.31   -3.00   -3.71   -4.41   -4.98   -5.29   -5.18   -4.59   -3.55   -2.12   -0.37    1.78    4.52    8.01
+    45.0    0.00   -0.15   -0.51   -1.04   -1.66   -2.33   -3.03   -3.75   -4.45   -5.01   -5.29   -5.14   -4.52   -3.45   -2.02   -0.26    1.90    4.68    8.28
+    50.0    0.00   -0.15   -0.51   -1.04   -1.67   -2.34   -3.05   -3.78   -4.47   -5.02   -5.27   -5.10   -4.44   -3.35   -1.89   -0.13    2.04    4.86    8.54
+    55.0    0.00   -0.15   -0.51   -1.04   -1.67   -2.35   -3.06   -3.79   -4.49   -5.03   -5.26   -5.05   -4.36   -3.23   -1.76    0.01    2.19    5.03    8.79
+    60.0    0.00   -0.15   -0.51   -1.04   -1.67   -2.35   -3.07   -3.80   -4.49   -5.02   -5.24   -5.01   -4.29   -3.13   -1.63    0.16    2.35    5.20    8.99
+    65.0    0.00   -0.14   -0.51   -1.04   -1.67   -2.34   -3.06   -3.80   -4.49   -5.02   -5.23   -4.98   -4.24   -3.05   -1.52    0.30    2.51    5.36    9.13
+    70.0    0.00   -0.14   -0.51   -1.04   -1.66   -2.33   -3.05   -3.78   -4.48   -5.01   -5.21   -4.96   -4.20   -2.99   -1.42    0.43    2.64    5.48    9.22
+    75.0    0.00   -0.14   -0.51   -1.03   -1.65   -2.32   -3.03   -3.76   -4.46   -4.99   -5.21   -4.96   -4.19   -2.95   -1.35    0.53    2.76    5.57    9.25
+    80.0    0.00   -0.14   -0.50   -1.02   -1.64   -2.30   -3.00   -3.73   -4.43   -4.98   -5.21   -4.97   -4.20   -2.95   -1.32    0.60    2.84    5.63    9.24
+    85.0    0.00   -0.14   -0.50   -1.02   -1.62   -2.27   -2.97   -3.70   -4.40   -4.97   -5.22   -5.00   -4.23   -2.96   -1.31    0.64    2.90    5.66    9.19
+    90.0    0.00   -0.14   -0.50   -1.01   -1.60   -2.25   -2.94   -3.66   -4.38   -4.95   -5.22   -5.02   -4.27   -2.99   -1.32    0.65    2.92    5.66    9.12
+    95.0    0.00   -0.14   -0.49   -1.00   -1.59   -2.22   -2.91   -3.63   -4.35   -4.94   -5.23   -5.05   -4.31   -3.03   -1.35    0.63    2.91    5.64    9.06
+   100.0    0.00   -0.14   -0.49   -0.99   -1.57   -2.20   -2.88   -3.60   -4.32   -4.93   -5.23   -5.07   -4.33   -3.07   -1.39    0.59    2.87    5.61    9.02
+   105.0    0.00   -0.13   -0.48   -0.98   -1.55   -2.18   -2.85   -3.57   -4.30   -4.91   -5.22   -5.07   -4.35   -3.09   -1.42    0.55    2.82    5.57    9.01
+   110.0    0.00   -0.13   -0.48   -0.97   -1.54   -2.16   -2.82   -3.55   -4.27   -4.89   -5.20   -5.05   -4.34   -3.10   -1.45    0.50    2.77    5.54    9.03
+   115.0    0.00   -0.13   -0.47   -0.96   -1.53   -2.14   -2.80   -3.52   -4.25   -4.86   -5.17   -5.01   -4.31   -3.09   -1.47    0.46    2.73    5.53    9.09
+   120.0    0.00   -0.13   -0.47   -0.96   -1.52   -2.13   -2.79   -3.50   -4.22   -4.82   -5.12   -4.95   -4.25   -3.05   -1.46    0.44    2.70    5.54    9.18
+   125.0    0.00   -0.13   -0.47   -0.95   -1.51   -2.12   -2.77   -3.48   -4.19   -4.77   -5.06   -4.88   -4.18   -2.99   -1.43    0.44    2.70    5.57    9.29
+   130.0    0.00   -0.12   -0.46   -0.94   -1.50   -2.11   -2.76   -3.46   -4.16   -4.72   -4.98   -4.79   -4.09   -2.92   -1.38    0.46    2.72    5.63    9.39
+   135.0    0.00   -0.12   -0.46   -0.94   -1.50   -2.10   -2.75   -3.44   -4.13   -4.67   -4.91   -4.70   -4.00   -2.84   -1.33    0.50    2.77    5.70    9.48
+   140.0    0.00   -0.12   -0.46   -0.94   -1.49   -2.10   -2.74   -3.43   -4.09   -4.62   -4.84   -4.62   -3.92   -2.77   -1.27    0.56    2.83    5.77    9.54
+   145.0    0.00   -0.12   -0.45   -0.93   -1.49   -2.09   -2.74   -3.41   -4.06   -4.57   -4.77   -4.55   -3.85   -2.71   -1.22    0.61    2.89    5.83    9.55
+   150.0    0.00   -0.12   -0.45   -0.93   -1.49   -2.09   -2.73   -3.39   -4.03   -4.53   -4.73   -4.50   -3.81   -2.68   -1.19    0.65    2.94    5.87    9.50
+   155.0    0.00   -0.12   -0.45   -0.93   -1.49   -2.09   -2.73   -3.39   -4.01   -4.50   -4.70   -4.48   -3.79   -2.68   -1.19    0.66    2.96    5.86    9.39
+   160.0    0.00   -0.11   -0.45   -0.93   -1.49   -2.10   -2.73   -3.38   -4.01   -4.49   -4.69   -4.48   -3.81   -2.71   -1.22    0.63    2.94    5.81    9.22
+   165.0    0.00   -0.11   -0.44   -0.93   -1.49   -2.10   -2.74   -3.39   -4.01   -4.50   -4.71   -4.52   -3.87   -2.77   -1.29    0.56    2.86    5.70    9.01
+   170.0    0.00   -0.11   -0.44   -0.93   -1.50   -2.11   -2.75   -3.40   -4.03   -4.52   -4.75   -4.57   -3.95   -2.87   -1.40    0.45    2.74    5.54    8.76
+   175.0    0.00   -0.11   -0.44   -0.93   -1.50   -2.11   -2.76   -3.42   -4.06   -4.57   -4.81   -4.65   -4.05   -2.99   -1.54    0.30    2.56    5.33    8.50
+   180.0    0.00   -0.11   -0.44   -0.93   -1.50   -2.12   -2.78   -3.45   -4.10   -4.62   -4.88   -4.75   -4.16   -3.12   -1.69    0.12    2.36    5.09    8.24
+   185.0    0.00   -0.11   -0.44   -0.93   -1.51   -2.13   -2.80   -3.49   -4.15   -4.69   -4.96   -4.85   -4.28   -3.26   -1.85   -0.07    2.13    4.84    8.01
+   190.0    0.00   -0.11   -0.44   -0.92   -1.51   -2.14   -2.82   -3.52   -4.20   -4.76   -5.05   -4.95   -4.39   -3.38   -1.99   -0.24    1.92    4.61    7.83
+   195.0    0.00   -0.11   -0.43   -0.92   -1.51   -2.15   -2.84   -3.56   -4.25   -4.83   -5.14   -5.04   -4.49   -3.49   -2.11   -0.39    1.74    4.42    7.71
+   200.0    0.00   -0.10   -0.43   -0.92   -1.51   -2.16   -2.85   -3.59   -4.30   -4.89   -5.21   -5.13   -4.57   -3.57   -2.20   -0.49    1.61    4.29    7.65
+   205.0    0.00   -0.10   -0.43   -0.92   -1.51   -2.16   -2.87   -3.61   -4.34   -4.95   -5.28   -5.19   -4.63   -3.61   -2.23   -0.53    1.56    4.24    7.68
+   210.0    0.00   -0.10   -0.43   -0.92   -1.51   -2.16   -2.87   -3.63   -4.37   -4.99   -5.33   -5.24   -4.66   -3.62   -2.22   -0.51    1.58    4.27    7.78
+   215.0    0.00   -0.10   -0.43   -0.92   -1.51   -2.17   -2.88   -3.64   -4.39   -5.02   -5.37   -5.27   -4.67   -3.60   -2.16   -0.42    1.68    4.39    7.93
+   220.0    0.00   -0.10   -0.43   -0.92   -1.51   -2.17   -2.88   -3.65   -4.41   -5.04   -5.38   -5.28   -4.66   -3.55   -2.07   -0.29    1.85    4.57    8.14
+   225.0    0.00   -0.10   -0.43   -0.92   -1.51   -2.17   -2.88   -3.65   -4.41   -5.05   -5.39   -5.27   -4.62   -3.48   -1.95   -0.12    2.06    4.79    8.37
+   230.0    0.00   -0.10   -0.43   -0.92   -1.51   -2.17   -2.88   -3.64   -4.41   -5.04   -5.38   -5.25   -4.58   -3.40   -1.82    0.07    2.28    5.04    8.60
+   235.0    0.00   -0.10   -0.43   -0.92   -1.51   -2.17   -2.88   -3.64   -4.40   -5.03   -5.36   -5.22   -4.53   -3.31   -1.69    0.24    2.49    5.27    8.82
+   240.0    0.00   -0.10   -0.43   -0.93   -1.52   -2.18   -2.89   -3.64   -4.39   -5.02   -5.34   -5.19   -4.48   -3.24   -1.58    0.38    2.67    5.46    8.99
+   245.0    0.00   -0.11   -0.44   -0.93   -1.53   -2.18   -2.89   -3.65   -4.39   -5.00   -5.31   -5.14   -4.42   -3.17   -1.50    0.48    2.79    5.59    9.11
+   250.0    0.00   -0.11   -0.44   -0.94   -1.53   -2.19   -2.90   -3.65   -4.38   -4.98   -5.27   -5.10   -4.37   -3.13   -1.46    0.52    2.83    5.65    9.17
+   255.0    0.00   -0.11   -0.44   -0.94   -1.54   -2.20   -2.91   -3.65   -4.37   -4.95   -5.23   -5.05   -4.33   -3.10   -1.46    0.50    2.80    5.62    9.16
+   260.0    0.00   -0.11   -0.44   -0.95   -1.55   -2.22   -2.92   -3.66   -4.36   -4.93   -5.19   -5.00   -4.29   -3.09   -1.49    0.43    2.71    5.53    9.10
+   265.0    0.00   -0.11   -0.45   -0.95   -1.56   -2.22   -2.93   -3.66   -4.35   -4.90   -5.15   -4.96   -4.26   -3.09   -1.54    0.32    2.56    5.38    8.99
+   270.0    0.00   -0.11   -0.45   -0.96   -1.57   -2.23   -2.93   -3.65   -4.33   -4.87   -5.10   -4.91   -4.23   -3.10   -1.61    0.20    2.39    5.20    8.85
+   275.0    0.00   -0.11   -0.45   -0.96   -1.57   -2.23   -2.92   -3.63   -4.30   -4.83   -5.06   -4.87   -4.21   -3.11   -1.67    0.08    2.22    5.02    8.71
+   280.0    0.00   -0.11   -0.46   -0.97   -1.57   -2.23   -2.91   -3.61   -4.27   -4.78   -5.01   -4.83   -4.18   -3.12   -1.72   -0.02    2.08    4.86    8.58
+   285.0    0.00   -0.12   -0.46   -0.97   -1.57   -2.22   -2.89   -3.58   -4.22   -4.73   -4.96   -4.79   -4.16   -3.11   -1.74   -0.08    1.99    4.75    8.49
+   290.0    0.00   -0.12   -0.46   -0.97   -1.57   -2.20   -2.86   -3.53   -4.17   -4.68   -4.92   -4.75   -4.12   -3.09   -1.73   -0.08    1.96    4.70    8.44
+   295.0    0.00   -0.12   -0.46   -0.97   -1.56   -2.19   -2.83   -3.49   -4.12   -4.63   -4.87   -4.71   -4.09   -3.04   -1.68   -0.03    2.00    4.71    8.45
+   300.0    0.00   -0.12   -0.47   -0.97   -1.55   -2.16   -2.79   -3.44   -4.06   -4.57   -4.82   -4.67   -4.04   -2.99   -1.60    0.07    2.10    4.80    8.52
+   305.0    0.00   -0.12   -0.47   -0.97   -1.54   -2.14   -2.76   -3.39   -4.01   -4.52   -4.78   -4.63   -4.00   -2.92   -1.49    0.21    2.25    4.93    8.62
+   310.0    0.00   -0.12   -0.47   -0.97   -1.53   -2.12   -2.72   -3.34   -3.96   -4.48   -4.74   -4.60   -3.95   -2.84   -1.37    0.37    2.43    5.10    8.76
+   315.0    0.00   -0.13   -0.47   -0.97   -1.53   -2.10   -2.69   -3.30   -3.92   -4.44   -4.71   -4.57   -3.91   -2.76   -1.25    0.53    2.62    5.29    8.90
+   320.0    0.00   -0.13   -0.47   -0.97   -1.52   -2.09   -2.67   -3.27   -3.89   -4.41   -4.69   -4.54   -3.87   -2.70   -1.14    0.68    2.79    5.45    9.03
+   325.0    0.00   -0.13   -0.48   -0.97   -1.52   -2.08   -2.65   -3.26   -3.87   -4.40   -4.68   -4.53   -3.85   -2.65   -1.06    0.79    2.93    5.58    9.12
+   330.0    0.00   -0.13   -0.48   -0.97   -1.51   -2.07   -2.65   -3.25   -3.86   -4.40   -4.68   -4.53   -3.84   -2.63   -1.02    0.86    3.01    5.65    9.16
+   335.0    0.00   -0.13   -0.48   -0.97   -1.52   -2.08   -2.65   -3.25   -3.87   -4.41   -4.69   -4.55   -3.86   -2.64   -1.02    0.86    3.02    5.66    9.12
+   340.0    0.00   -0.13   -0.48   -0.97   -1.52   -2.08   -2.66   -3.27   -3.89   -4.43   -4.72   -4.58   -3.89   -2.69   -1.08    0.81    2.97    5.59    9.01
+   345.0    0.00   -0.13   -0.48   -0.97   -1.52   -2.09   -2.67   -3.29   -3.91   -4.46   -4.75   -4.62   -3.96   -2.77   -1.17    0.71    2.86    5.47    8.84
+   350.0    0.00   -0.14   -0.49   -0.98   -1.53   -2.10   -2.69   -3.31   -3.95   -4.50   -4.80   -4.69   -4.04   -2.88   -1.30    0.56    2.70    5.29    8.61
+   355.0    0.00   -0.14   -0.49   -0.98   -1.54   -2.12   -2.72   -3.35   -3.99   -4.54   -4.86   -4.76   -4.14   -3.01   -1.46    0.38    2.51    5.09    8.34
+   360.0    0.00   -0.14   -0.49   -0.99   -1.55   -2.14   -2.74   -3.38   -4.03   -4.60   -4.92   -4.84   -4.25   -3.15   -1.64    0.19    2.31    4.87    8.07
+   G02                                                      END OF FREQUENCY    
+   R01                                                      START OF FREQUENCY  
+      0.41      0.11    162.23                              NORTH / EAST / UP   
+   NOAZI    0.00    0.15    0.60    1.28    2.07    2.80    3.26    3.32    2.89    2.09    1.09    0.08   -0.73   -1.29   -1.57   -1.50   -0.89    0.66    3.53
+     0.0    0.00    0.01    0.37    1.04    1.91    2.71    3.19    3.16    2.60    1.66    0.58   -0.36   -1.05   -1.48   -1.71   -1.72   -1.28    0.04    2.55
+     5.0    0.00    0.01    0.36    1.03    1.89    2.69    3.17    3.13    2.57    1.61    0.52   -0.44   -1.14   -1.57   -1.82   -1.82   -1.37   -0.06    2.39
+    10.0    0.00   -0.21    0.36    1.05    1.89    2.68    3.16    3.13    2.55    1.59    0.49   -0.48   -1.20   -1.64   -1.89   -1.89   -1.42   -0.12    2.30
+    15.0    0.00   -0.21    0.36    1.04    1.89    2.68    3.17    3.13    2.57    1.59    0.49   -0.50   -1.24   -1.69   -1.93   -1.92   -1.44   -0.13    2.29
+    20.0    0.00    0.01    0.36    1.04    1.89    2.69    3.18    3.15    2.59    1.62    0.51   -0.50   -1.25   -1.72   -1.96   -1.94   -1.42   -0.08    2.37
+    25.0    0.00   -0.20    0.35    1.04    1.89    2.71    3.19    3.18    2.63    1.67    0.55   -0.48   -1.24   -1.74   -1.97   -1.92   -1.38   -0.45    2.52
+    30.0    0.00    0.01    0.37    1.04    1.90    2.71    3.22    3.23    2.69    1.74    0.60   -0.45   -1.24   -1.74   -1.97   -1.91   -1.31    0.12    2.71
+    35.0    0.00    0.01    0.37    1.05    1.90    2.73    3.24    3.26    2.75    1.80    0.67   -0.40   -1.22   -1.75   -1.97   -1.87   -1.24    0.28    2.94
+    40.0    0.00    0.01    0.37    1.05    1.91    2.74    3.26    3.30    2.80    1.87    0.73   -0.36   -1.21   -1.75   -1.98   -1.84   -1.15    0.42    3.18
+    45.0    0.00    0.02    0.37    1.06    1.91    2.73    3.27    3.33    2.84    1.93    0.80   -0.31   -1.18   -1.75   -1.98   -1.81   -1.07    0.57    3.38
+    50.0    0.00    0.02    0.40    1.06    1.92    2.72    3.26    3.33    2.87    1.98    0.85   -0.26   -1.15   -1.74   -1.98   -1.79   -1.00    0.69    3.55
+    55.0    0.00    0.03    0.40    1.06    1.91    2.70    3.24    3.32    2.89    2.02    0.91   -0.21   -1.12   -1.73   -1.98   -1.78   -0.96    0.78    3.67
+    60.0    0.00    0.04    0.41    1.07    1.90    2.69    3.22    3.31    2.89    2.04    0.95   -0.16   -1.08   -1.71   -1.97   -1.77   -0.93    0.83    3.74
+    65.0    0.00    0.05    0.43    1.07    1.89    2.67    3.18    3.28    2.88    2.05    0.99   -0.11   -1.03   -1.67   -1.96   -1.77   -0.92    0.85    3.75
+    70.0    0.00    0.06    0.44    1.08    1.89    2.63    3.14    3.25    2.86    2.07    1.03   -0.06   -0.98   -1.63   -1.93   -1.76   -0.92    0.85    3.68
+    75.0    0.00    0.07    0.45    1.09    1.89    2.62    3.11    3.22    2.86    2.08    1.07    0.24   -0.91   -1.59   -1.90   -1.74   -0.92    0.82    3.59
+    80.0    0.00    0.08    0.47    1.11    1.89    2.60    3.10    3.21    2.85    2.11    1.11    0.06   -0.86   -1.54   -1.87   -1.72   -0.90    0.79    3.48
+    85.0    0.00    0.09    0.49    1.13    1.89    2.60    3.09    3.21    2.86    2.13    1.15    0.11   -0.80   -1.48   -1.82   -1.67   -0.88    0.77    3.37
+    90.0    0.00    0.09    0.50    1.14    1.90    2.61    3.10    3.22    2.89    2.17    1.19    0.15   -0.76   -1.44   -1.77   -1.63   -0.84    0.77    3.30
+    95.0    0.00    0.11    0.53    1.17    1.92    2.64    3.14    3.26    2.93    2.21    1.24    0.19   -0.74   -1.40   -1.71   -1.55   -0.78    0.81    3.25
+   100.0    0.00    0.13    0.54    1.19    1.95    2.68    3.18    3.31    3.00    2.26    1.27    0.22   -0.71   -1.37   -1.66   -1.47   -0.70    0.86    3.28
+   105.0    0.00    0.15    0.56    1.22    1.99    2.72    3.24    3.38    3.06    2.32    1.31    0.23   -0.70   -1.33   -1.58   -1.38   -0.59    0.97    3.37
+   110.0    0.00    0.16    0.60    1.25    2.02    2.77    3.29    3.46    3.13    2.37    1.34    0.24   -0.69   -1.29   -1.51   -1.27   -0.47    1.08    3.51
+   115.0    0.00    0.17    0.62    1.27    2.06    2.82    3.37    3.52    3.19    2.42    1.35    0.25   -0.68   -1.25   -1.43   -1.15   -0.35    1.21    3.72
+   120.0    0.00    0.19    0.64    1.30    2.10    2.87    3.42    3.57    3.24    2.46    1.37    0.26   -0.64   -1.19   -1.33   -1.04   -0.23    1.35    3.95
+   125.0    0.00    0.20    0.67    1.34    2.14    2.91    3.46    3.63    3.28    2.48    1.39    0.28   -0.61   -1.12   -1.24   -0.94   -0.14    1.45    4.20
+   130.0    0.00    0.21    0.69    1.38    2.17    2.94    3.50    3.65    3.30    2.49    1.40    0.32   -0.54   -1.03   -1.13   -0.85   -0.08    1.53    4.41
+   135.0    0.00    0.22    0.71    1.40    2.20    2.96    3.51    3.66    3.29    2.48    1.42    0.35   -0.47   -0.92   -1.03   -0.77   -0.05    1.55    4.57
+   140.0    0.00    0.24    0.73    1.42    2.22    2.98    3.52    3.65    3.28    2.48    1.44    0.40   -0.38   -0.83   -0.94   -0.75   -0.06    1.52    4.65
+   145.0    0.00    0.24    0.75    1.44    2.24    2.98    3.51    3.63    3.26    2.47    1.45    0.46   -0.30   -0.73   -0.88   -0.74   -0.14    1.41    4.62
+   150.0    0.00    0.26    0.77    1.46    2.25    2.98    3.49    3.59    3.24    2.46    1.46    0.50   -0.24   -0.67   -0.86   -0.78   -0.26    1.26    4.50
+   155.0    0.00    0.26    0.79    1.49    2.26    2.98    3.46    3.56    3.20    2.45    1.47    0.53   -0.19   -0.64   -0.87   -0.87   -0.41    1.04    4.26
+   160.0    0.00    0.28    0.80    1.50    2.26    2.96    3.44    3.53    3.16    2.42    1.47    0.55   -0.18   -0.66   -0.93   -1.00   -0.62    0.78    3.94
+   165.0    0.00    0.28    0.81    1.51    2.26    2.95    3.41    3.49    3.14    2.41    1.47    0.54   -0.21   -0.73   -1.06   -1.17   -0.83    0.50    3.55
+   170.0    0.00    0.30    0.82    1.51    2.27    2.94    3.39    3.47    3.12    2.38    1.44    0.50   -0.28   -0.84   -1.22   -1.36   -1.05    0.22    3.14
+   175.0    0.00    0.30    0.84    1.52    2.27    2.94    3.37    3.44    3.10    2.36    1.41    0.44   -0.38   -1.00   -1.42   -1.57   -1.28   -0.03    2.74
+   180.0    0.00    0.30    0.84    1.54    2.27    2.92    3.35    3.42    3.07    2.33    1.36    0.36   -0.52   -1.19   -1.63   -1.79   -1.47   -0.24    2.40
+   185.0    0.00    0.30    0.84    1.54    2.26    2.90    3.33    3.40    3.04    2.29    1.29    0.26   -0.66   -1.38   -1.84   -1.99   -1.62   -0.38    2.15
+   190.0    0.00    0.31    0.84    1.54    2.26    2.89    3.30    3.37    3.00    2.24    1.23    0.15   -0.81   -1.55   -2.03   -2.15   -1.73   -0.46    2.02
+   195.0    0.00    0.31    0.85    1.53    2.26    2.88    3.29    3.34    2.96    2.18    1.16    0.06   -0.94   -1.70   -2.17   -2.26   -1.78   -0.44    2.02
+   200.0    0.00    0.31    0.85    1.54    2.25    2.86    3.26    3.30    2.91    2.13    1.10   -0.03   -1.03   -1.81   -2.28   -2.32   -1.78   -0.36    2.16
+   205.0    0.00    0.31    0.85    1.53    2.24    2.86    3.22    3.26    2.87    2.08    1.04   -0.07   -1.07   -1.85   -2.31   -2.32   -1.71   -0.21    2.42
+   210.0    0.00    0.31    0.85    1.52    2.22    2.83    3.19    3.21    2.81    2.02    1.00   -0.09   -1.09   -1.84   -2.29   -2.28   -1.60    0.01    2.75
+   215.0    0.00    0.31    0.84    1.51    2.21    2.81    3.16    3.17    2.75    1.99    0.98   -0.07   -1.05   -1.79   -2.21   -2.19   -1.45    0.25    3.13
+   220.0    0.00    0.30    0.82    1.50    2.20    2.79    3.12    3.12    2.72    1.96    0.98   -0.04   -0.98   -1.70   -2.10   -2.05   -1.29    0.49    3.51
+   225.0    0.00    0.29    0.82    1.48    2.18    2.77    3.10    3.08    2.69    1.96    0.99    0.24   -0.89   -1.59   -1.98   -1.92   -1.12    0.73    3.85
+   230.0    0.00    0.28    0.81    1.47    2.16    2.74    3.07    3.06    2.67    1.94    1.02    0.05   -0.80   -1.48   -1.86   -1.77   -0.97    0.92    4.12
+   235.0    0.00    0.28    0.79    1.46    2.15    2.73    3.07    3.05    2.67    1.96    1.06    0.11   -0.74   -1.38   -1.76   -1.67   -0.83    1.07    4.28
+   240.0    0.00    0.27    0.78    1.44    2.13    2.73    3.07    3.06    2.68    1.97    1.08    0.15   -0.70   -1.33   -1.68   -1.58   -0.75    1.15    4.35
+   245.0    0.00    0.26    0.76    1.42    2.12    2.72    3.07    3.07    2.70    1.99    1.10    0.16   -0.68   -1.32   -1.66   -1.54   -0.71    1.17    4.29
+   250.0    0.00    0.25    0.75    1.41    2.12    2.72    3.08    3.10    2.72    2.02    1.10    0.14   -0.71   -1.35   -1.67   -1.54   -0.71    1.12    4.15
+   255.0    0.00    0.23    0.73    1.39    2.10    2.73    3.11    3.13    2.74    2.03    1.09    0.11   -0.76   -1.40   -1.70   -1.56   -0.75    1.02    3.92
+   260.0    0.00    0.23    0.71    1.38    2.10    2.74    3.13    3.15    2.76    2.03    1.06    0.06   -0.82   -1.46   -1.76   -1.62   -0.82    0.87    3.68
+   265.0    0.00    0.22    0.70    1.36    2.10    2.75    3.15    3.17    2.78    2.01    1.02    0.32   -0.88   -1.52   -1.82   -1.67   -0.91    0.72    3.44
+   270.0    0.00    0.20    0.67    1.35    2.09    2.76    3.17    3.20    2.78    1.99    0.99   -0.05   -0.93   -1.55   -1.85   -1.71   -1.00    0.57    3.23
+   275.0    0.00    0.19    0.65    1.32    2.09    2.77    3.19    3.22    2.79    1.98    0.95   -0.09   -0.95   -1.56   -1.83   -1.74   -1.08    0.43    3.10
+   280.0    0.00    0.17    0.62    1.31    2.09    2.78    3.21    3.23    2.79    1.96    0.93   -0.10   -0.94   -1.51   -1.80   -1.74   -1.14    0.34    3.05
+   285.0    0.00    0.15    0.60    1.29    2.08    2.79    3.24    3.24    2.79    1.94    0.92   -0.08   -0.87   -1.42   -1.71   -1.69   -1.16    0.28    3.08
+   290.0    0.00    0.14    0.58    1.27    2.08    2.81    3.25    3.26    2.80    1.94    0.93   -0.02   -0.77   -1.29   -1.57   -1.61   -1.15    0.29    3.22
+   295.0    0.00    0.13    0.57    1.25    2.07    2.81    3.28    3.28    2.80    1.96    0.97    0.05   -0.65   -1.13   -1.42   -1.50   -1.10    0.32    3.40
+   300.0    0.00    0.12    0.55    1.24    2.06    2.82    3.30    3.30    2.81    1.97    1.00    0.13   -0.51   -0.94   -1.24   -1.38   -1.02    0.40    3.63
+   305.0    0.00    0.11    0.53    1.23    2.06    2.83    3.30    3.32    2.83    2.01    1.05    0.22   -0.37   -0.77   -1.07   -1.23   -0.93    0.51    3.86
+   310.0    0.00    0.10    0.51    1.19    2.05    2.84    3.33    3.34    2.86    2.03    1.09    0.29   -0.26   -0.64   -0.93   -1.11   -0.83    0.62    4.06
+   315.0    0.00    0.08    0.49    1.18    2.04    2.85    3.34    3.36    2.88    2.06    1.13    0.35   -0.18   -0.54   -0.83   -1.01   -0.74    0.72    4.21
+   320.0    0.00    0.07    0.46    1.17    2.03    2.84    3.35    3.38    2.91    2.07    1.15    0.38   -0.15   -0.50   -0.78   -0.96   -0.68    0.79    4.27
+   325.0    0.00    0.06    0.45    1.15    2.02    2.84    3.36    3.39    2.91    2.07    1.14    0.36   -0.17   -0.52   -0.79   -0.96   -0.65    0.83    4.25
+   330.0    0.00    0.05    0.43    1.13    2.00    2.83    3.35    3.39    2.90    2.05    1.10    0.31   -0.24   -0.59   -0.86   -0.99   -0.66    0.81    4.14
+   335.0    0.00    0.05    0.42    1.12    1.99    2.81    3.33    3.36    2.86    2.02    1.05    0.22   -0.35   -0.71   -0.97   -1.08   -0.71    0.75    3.94
+   340.0    0.00    0.03    0.41    1.10    1.97    2.79    3.31    3.33    2.83    1.94    0.96    0.10   -0.49   -0.87   -1.10   -1.19   -0.80    0.64    3.68
+   345.0    0.00    0.03    0.39    1.09    1.95    2.77    3.29    3.30    2.78    1.87    0.86   -0.01   -0.64   -1.02   -1.27   -1.32   -0.91    0.50    3.38
+   350.0    0.00    0.02    0.38    1.08    1.94    2.75    3.25    3.26    2.71    1.80    0.76   -0.14   -0.79   -1.19   -1.44   -1.47   -1.04    0.34    3.07
+   355.0    0.00    0.01    0.38    1.06    1.92    2.72    3.21    3.19    2.65    1.72    0.67   -0.27   -0.92   -1.35   -1.58   -1.61   -1.17    0.18    2.80
+   360.0    0.00    0.01    0.37    1.04    1.91    2.71    3.19    3.16    2.60    1.66    0.58   -0.36   -1.05   -1.48   -1.71   -1.72   -1.28    0.04    2.55
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+      0.18     -0.51    159.51                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.15   -0.57   -1.15   -1.82   -2.49   -3.19   -3.92   -4.69   -5.41   -5.90   -6.00   -5.55   -4.54   -3.06   -1.18    1.08    3.85    7.28
+     0.0    0.00   -0.26   -0.75   -1.37   -2.00   -2.60   -3.20   -3.86   -4.60   -5.37   -5.97   -6.23   -5.96   -5.10   -3.68   -1.78    0.54    3.32    6.55
+     5.0    0.00   -0.27   -0.77   -1.38   -2.02   -2.64   -3.25   -3.92   -4.66   -5.42   -6.04   -6.30   -6.05   -5.23   -3.86   -1.98    0.33    3.11    6.28
+    10.0    0.00   -0.27   -0.78   -1.40   -2.03   -2.66   -3.29   -3.97   -4.72   -5.48   -6.08   -6.34   -6.12   -5.34   -4.00   -2.16    0.14    2.91    6.07
+    15.0    0.00   -0.28   -0.79   -1.41   -2.05   -2.67   -3.31   -4.01   -4.76   -5.51   -6.11   -6.38   -6.16   -5.39   -4.11   -2.31   -0.03    2.75    5.92
+    20.0    0.00   -0.29   -0.79   -1.41   -2.05   -2.68   -3.32   -4.03   -4.79   -5.55   -6.14   -6.39   -6.16   -5.42   -4.17   -2.42   -0.17    2.63    5.87
+    25.0    0.00   -0.29   -0.80   -1.41   -2.04   -2.67   -3.33   -4.05   -4.82   -5.58   -6.15   -6.38   -6.15   -5.41   -4.19   -2.48   -0.26    2.57    5.92
+    30.0    0.00   -0.29   -0.80   -1.41   -2.04   -2.67   -3.32   -4.06   -4.84   -5.60   -6.16   -6.36   -6.11   -5.36   -4.16   -2.48   -0.29    2.56    6.03
+    35.0    0.00   -0.30   -0.80   -1.41   -2.02   -2.65   -3.32   -4.05   -4.86   -5.61   -6.17   -6.35   -6.05   -5.29   -4.08   -2.44   -0.24    2.63    6.22
+    40.0    0.00   -0.30   -0.80   -1.40   -2.01   -2.63   -3.31   -4.06   -4.87   -5.64   -6.18   -6.32   -5.99   -5.19   -3.95   -2.31   -0.14    2.75    6.46
+    45.0    0.00   -0.30   -0.80   -1.39   -2.00   -2.62   -3.29   -4.06   -4.89   -5.66   -6.19   -6.29   -5.91   -5.05   -3.79   -2.14    0.02    2.93    6.73
+    50.0    0.00   -0.30   -0.80   -1.38   -1.99   -2.60   -3.29   -4.07   -4.90   -5.67   -6.18   -6.26   -5.82   -4.91   -3.59   -1.92    0.24    3.15    6.98
+    55.0    0.00   -0.30   -0.79   -1.37   -1.98   -2.60   -3.27   -4.05   -4.91   -5.69   -6.18   -6.22   -5.73   -4.75   -3.37   -1.66    0.50    3.38    7.21
+    60.0    0.00   -0.30   -0.79   -1.37   -1.97   -2.59   -3.28   -4.06   -4.91   -5.68   -6.17   -6.18   -5.64   -4.59   -3.15   -1.38    0.80    3.63    7.39
+    65.0    0.00   -0.29   -0.78   -1.36   -1.97   -2.58   -3.27   -4.06   -4.91   -5.68   -6.16   -6.14   -5.56   -4.44   -2.93   -1.09    1.10    3.89    7.50
+    70.0    0.00   -0.29   -0.78   -1.36   -1.97   -2.58   -3.27   -4.05   -4.91   -5.67   -6.13   -6.10   -5.48   -4.31   -2.71   -0.82    1.38    4.10    7.54
+    75.0    0.00   -0.28   -0.77   -1.35   -1.97   -2.58   -3.27   -4.05   -4.89   -5.65   -6.12   -6.07   -5.42   -4.19   -2.53   -0.58    1.64    4.28    7.53
+    80.0    0.00   -0.28   -0.76   -1.35   -1.96   -2.59   -3.26   -4.03   -4.86   -5.62   -6.09   -6.04   -5.38   -4.13   -2.42   -0.40    1.84    4.42    7.47
+    85.0    0.00   -0.27   -0.76   -1.35   -1.96   -2.58   -3.25   -4.01   -4.83   -5.59   -6.06   -6.03   -5.37   -4.09   -2.34   -0.28    1.99    4.50    7.38
+    90.0    0.00   -0.27   -0.75   -1.34   -1.95   -2.57   -3.23   -3.98   -4.79   -5.54   -6.03   -6.02   -5.38   -4.09   -2.31   -0.22    2.07    4.53    7.28
+    95.0    0.00   -0.26   -0.73   -1.33   -1.95   -2.56   -3.22   -3.95   -4.75   -5.51   -6.01   -6.03   -5.41   -4.13   -2.34   -0.22    2.09    4.53    7.20
+   100.0    0.00   -0.25   -0.73   -1.32   -1.93   -2.55   -3.19   -3.91   -4.70   -5.47   -6.00   -6.05   -5.45   -4.20   -2.41   -0.27    2.04    4.50    7.16
+   105.0    0.00   -0.23   -0.71   -1.30   -1.91   -2.53   -3.15   -3.86   -4.66   -5.43   -5.98   -6.07   -5.51   -4.26   -2.48   -0.35    1.97    4.45    7.18
+   110.0    0.00   -0.23   -0.69   -1.28   -1.89   -2.50   -3.11   -3.82   -4.62   -5.41   -5.97   -6.08   -5.55   -4.33   -2.56   -0.44    1.88    4.40    7.24
+   115.0    0.00   -0.22   -0.67   -1.26   -1.87   -2.46   -3.07   -3.78   -4.58   -5.38   -5.96   -6.08   -5.58   -4.38   -2.63   -0.53    1.79    4.37    7.38
+   120.0    0.00   -0.21   -0.65   -1.24   -1.84   -2.43   -3.04   -3.74   -4.54   -5.35   -5.94   -6.08   -5.57   -4.40   -2.67   -0.60    1.71    4.36    7.55
+   125.0    0.00   -0.20   -0.64   -1.21   -1.81   -2.40   -3.01   -3.70   -4.51   -5.31   -5.92   -6.06   -5.55   -4.37   -2.67   -0.63    1.66    4.36    7.75
+   130.0    0.00   -0.18   -0.61   -1.18   -1.79   -2.37   -2.97   -3.67   -4.48   -5.29   -5.88   -6.00   -5.48   -4.31   -2.63   -0.64    1.64    4.39    7.94
+   135.0    0.00   -0.16   -0.59   -1.16   -1.76   -2.34   -2.96   -3.65   -4.46   -5.26   -5.83   -5.92   -5.39   -4.22   -2.57   -0.61    1.64    4.42    8.10
+   140.0    0.00   -0.16   -0.58   -1.14   -1.73   -2.33   -2.94   -3.65   -4.44   -5.23   -5.77   -5.84   -5.29   -4.12   -2.49   -0.57    1.66    4.45    8.22
+   145.0    0.00   -0.14   -0.55   -1.11   -1.72   -2.32   -2.95   -3.65   -4.44   -5.20   -5.70   -5.74   -5.17   -4.01   -2.41   -0.52    1.67    4.45    8.24
+   150.0    0.00   -0.13   -0.53   -1.09   -1.70   -2.31   -2.95   -3.65   -4.43   -5.16   -5.64   -5.65   -5.08   -3.92   -2.36   -0.51    1.65    4.41    8.16
+   155.0    0.00   -0.12   -0.51   -1.07   -1.70   -2.32   -2.97   -3.68   -4.43   -5.13   -5.59   -5.58   -5.00   -3.88   -2.35   -0.54    1.59    4.31    7.99
+   160.0    0.00   -0.10   -0.49   -1.06   -1.69   -2.34   -3.00   -3.71   -4.46   -5.12   -5.54   -5.53   -4.96   -3.89   -2.40   -0.64    1.48    4.17    7.73
+   165.0    0.00   -0.09   -0.46   -1.04   -1.69   -2.36   -3.05   -3.76   -4.48   -5.13   -5.53   -5.52   -4.99   -3.95   -2.53   -0.79    1.30    3.96    7.41
+   170.0    0.00   -0.07   -0.45   -1.03   -1.70   -2.39   -3.10   -3.81   -4.53   -5.15   -5.55   -5.54   -5.06   -4.08   -2.72   -1.01    1.08    3.73    7.04
+   175.0    0.00   -0.07   -0.43   -1.01   -1.70   -2.42   -3.15   -3.87   -4.59   -5.20   -5.60   -5.61   -5.18   -4.27   -2.96   -1.28    0.82    3.46    6.67
+   180.0    0.00   -0.05   -0.41   -1.00   -1.70   -2.45   -3.21   -3.94   -4.65   -5.26   -5.66   -5.71   -5.33   -4.49   -3.23   -1.57    0.56    3.19    6.34
+   185.0    0.00   -0.04   -0.40   -0.99   -1.72   -2.48   -3.26   -4.01   -4.72   -5.35   -5.75   -5.84   -5.52   -4.73   -3.51   -1.85    0.29    2.96    6.07
+   190.0    0.00   -0.04   -0.38   -0.96   -1.72   -2.50   -3.31   -4.07   -4.80   -5.42   -5.85   -5.98   -5.70   -4.96   -3.76   -2.09    0.08    2.78    5.92
+   195.0    0.00   -0.03   -0.36   -0.96   -1.71   -2.53   -3.34   -4.13   -4.86   -5.51   -5.96   -6.11   -5.87   -5.16   -3.96   -2.27   -0.06    2.69    5.87
+   200.0    0.00   -0.01   -0.35   -0.94   -1.71   -2.54   -3.37   -4.17   -4.93   -5.58   -6.06   -6.24   -6.01   -5.31   -4.10   -2.36   -0.10    2.69    5.94
+   205.0    0.00    0.10   -0.33   -0.93   -1.69   -2.54   -3.39   -4.19   -4.97   -5.64   -6.14   -6.34   -6.12   -5.38   -4.13   -2.35   -0.04    2.81    6.13
+   210.0    0.00    0.10   -0.33   -0.92   -1.69   -2.52   -3.37   -4.20   -4.98   -5.68   -6.20   -6.40   -6.16   -5.39   -4.08   -2.23    0.13    3.02    6.42
+   215.0    0.00    0.10   -0.32   -0.91   -1.67   -2.52   -3.36   -4.19   -4.99   -5.70   -6.23   -6.43   -6.16   -5.34   -3.95   -2.02    0.38    3.32    6.75
+   220.0    0.00    0.01   -0.31   -0.90   -1.66   -2.49   -3.34   -4.17   -4.98   -5.70   -6.23   -6.42   -6.12   -5.23   -3.76   -1.76    0.72    3.68    7.14
+   225.0    0.00    0.01   -0.30   -0.88   -1.64   -2.47   -3.31   -4.14   -4.94   -5.68   -6.21   -6.38   -6.03   -5.08   -3.53   -1.45    1.08    4.05    7.51
+   230.0    0.00    0.01   -0.30   -0.88   -1.62   -2.44   -3.27   -4.09   -4.90   -5.63   -6.17   -6.32   -5.93   -4.92   -3.28   -1.13    1.43    4.41    7.83
+   235.0    0.00    0.01   -0.30   -0.87   -1.61   -2.42   -3.24   -4.05   -4.86   -5.59   -6.12   -6.26   -5.84   -4.76   -3.07   -0.85    1.75    4.72    8.08
+   240.0    0.00    0.01   -0.30   -0.88   -1.61   -2.41   -3.22   -4.02   -4.82   -5.55   -6.08   -6.20   -5.75   -4.64   -2.88   -0.64    2.00    4.94    8.24
+   245.0    0.00    0.11   -0.31   -0.88   -1.61   -2.39   -3.20   -4.01   -4.79   -5.52   -6.03   -6.14   -5.68   -4.54   -2.77   -0.48    2.16    5.08    8.29
+   250.0    0.00   -0.01   -0.31   -0.89   -1.60   -2.40   -3.19   -4.00   -4.78   -5.50   -5.99   -6.10   -5.62   -4.49   -2.71   -0.43    2.20    5.11    8.26
+   255.0    0.00   -0.01   -0.32   -0.90   -1.62   -2.41   -3.20   -4.00   -4.77   -5.47   -5.97   -6.07   -5.60   -4.47   -2.72   -0.46    2.16    5.04    8.12
+   260.0    0.00   -0.01   -0.33   -0.91   -1.63   -2.43   -3.22   -4.01   -4.78   -5.48   -5.96   -6.05   -5.58   -4.48   -2.76   -0.55    2.03    4.88    7.94
+   265.0    0.00   -0.02   -0.35   -0.92   -1.66   -2.44   -3.24   -4.04   -4.81   -5.49   -5.95   -6.03   -5.57   -4.50   -2.84   -0.70    1.83    4.67    7.72
+   270.0    0.00   -0.03   -0.36   -0.95   -1.68   -2.47   -3.26   -4.05   -4.82   -5.50   -5.94   -6.01   -5.55   -4.52   -2.93   -0.86    1.60    4.41    7.50
+   275.0    0.00   -0.04   -0.38   -0.97   -1.70   -2.48   -3.27   -4.07   -4.84   -5.51   -5.94   -5.99   -5.53   -4.52   -2.99   -1.02    1.36    4.15    7.32
+   280.0    0.00   -0.04   -0.41   -0.99   -1.71   -2.49   -3.29   -4.08   -4.84   -5.49   -5.92   -5.95   -5.48   -4.50   -3.04   -1.15    1.15    3.92    7.17
+   285.0    0.00   -0.07   -0.42   -1.01   -1.73   -2.50   -3.28   -4.07   -4.82   -5.47   -5.88   -5.89   -5.43   -4.45   -3.04   -1.24    0.98    3.73    7.11
+   290.0    0.00   -0.08   -0.45   -1.04   -1.75   -2.49   -3.26   -4.04   -4.80   -5.44   -5.84   -5.83   -5.33   -4.36   -2.99   -1.26    0.87    3.60    7.11
+   295.0    0.00   -0.09   -0.47   -1.06   -1.75   -2.49   -3.23   -4.01   -4.75   -5.40   -5.78   -5.76   -5.24   -4.25   -2.91   -1.24    0.82    3.53    7.18
+   300.0    0.00   -0.11   -0.50   -1.08   -1.76   -2.47   -3.19   -3.94   -4.68   -5.33   -5.71   -5.68   -5.14   -4.15   -2.81   -1.17    0.83    3.54    7.33
+   305.0    0.00   -0.11   -0.52   -1.10   -1.77   -2.45   -3.15   -3.88   -4.61   -5.26   -5.65   -5.61   -5.06   -4.05   -2.69   -1.08    0.89    3.59    7.49
+   310.0    0.00   -0.13   -0.54   -1.13   -1.77   -2.43   -3.10   -3.80   -4.53   -5.19   -5.59   -5.56   -5.00   -3.96   -2.59   -0.98    0.98    3.69    7.67
+   315.0    0.00   -0.15   -0.57   -1.15   -1.79   -2.42   -3.05   -3.73   -4.46   -5.12   -5.55   -5.53   -4.97   -3.91   -2.52   -0.89    1.08    3.80    7.83
+   320.0    0.00   -0.17   -0.59   -1.18   -1.80   -2.41   -3.02   -3.67   -4.41   -5.08   -5.53   -5.53   -4.98   -3.91   -2.48   -0.82    1.17    3.90    7.96
+   325.0    0.00   -0.17   -0.62   -1.21   -1.82   -2.40   -2.99   -3.64   -4.36   -5.06   -5.53   -5.57   -5.03   -3.96   -2.50   -0.79    1.24    3.99    8.02
+   330.0    0.00   -0.19   -0.64   -1.23   -1.83   -2.40   -2.98   -3.62   -4.34   -5.06   -5.56   -5.63   -5.13   -4.06   -2.57   -0.81    1.28    4.04    8.00
+   335.0    0.00   -0.20   -0.66   -1.26   -1.87   -2.43   -2.99   -3.62   -4.34   -5.08   -5.61   -5.73   -5.26   -4.20   -2.69   -0.89    1.26    4.03    7.91
+   340.0    0.00   -0.21   -0.68   -1.28   -1.89   -2.46   -3.02   -3.65   -4.38   -5.11   -5.68   -5.83   -5.39   -4.38   -2.87   -1.01    1.20    3.97    7.72
+   345.0    0.00   -0.22   -0.70   -1.30   -1.91   -2.49   -3.05   -3.69   -4.41   -5.17   -5.75   -5.94   -5.56   -4.56   -3.05   -1.17    1.08    3.87    7.48
+   350.0    0.00   -0.24   -0.73   -1.33   -1.94   -2.52   -3.09   -3.74   -4.48   -5.24   -5.83   -6.05   -5.70   -4.76   -3.27   -1.36    0.93    3.71    7.19
+   355.0    0.00   -0.25   -0.74   -1.35   -1.97   -2.57   -3.15   -3.81   -4.54   -5.30   -5.91   -6.15   -5.85   -4.94   -3.48   -1.57    0.74    3.52    6.86
+   360.0    0.00   -0.26   -0.75   -1.37   -2.00   -2.60   -3.20   -3.86   -4.60   -5.37   -5.97   -6.23   -5.96   -5.10   -3.68   -1.78    0.54    3.32    6.55
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+LEIAR25.R3      LEIT                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               5    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     4                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+Number of Calibrated Antennas GPS:      005                 COMMENT             
+Number of Individual Calibrations GPS:  010                 COMMENT             
+Number of Calibrated Antennas GLO:      005                 COMMENT             
+Number of Individual Calibrations GLO:  010                 COMMENT             
+# GLONASS PCV                                               COMMENT             
+#  derived from Delta PCV per 25.0 MHz                      COMMENT             
+#  for frequency channel number k=0                         COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.17      0.10    161.73                              NORTH / EAST / UP   
+   NOAZI    0.00    0.27    1.00    2.05    3.17    4.08    4.55    4.42    3.71    2.55    1.19   -0.12   -1.20   -1.93   -2.26   -2.09   -1.24    0.56    3.43
+     0.0    0.00    0.18    0.86    1.91    3.05    3.98    4.44    4.28    3.53    2.37    1.06   -0.15   -1.11   -1.79   -2.17   -2.14   -1.49    0.09    2.72
+     5.0    0.00    0.18    0.87    1.91    3.06    4.00    4.46    4.30    3.53    2.35    1.03   -0.19   -1.15   -1.81   -2.16   -2.12   -1.48    0.05    2.61
+    10.0    0.00    0.18    0.87    1.92    3.08    4.03    4.49    4.33    3.55    2.35    1.00   -0.23   -1.19   -1.82   -2.14   -2.08   -1.44    0.06    2.57
+    15.0    0.00    0.19    0.88    1.93    3.10    4.05    4.53    4.36    3.58    2.35    0.98   -0.26   -1.22   -1.83   -2.12   -2.03   -1.37    0.12    2.61
+    20.0    0.00    0.19    0.89    1.95    3.12    4.09    4.57    4.41    3.62    2.38    0.98   -0.28   -1.24   -1.84   -2.09   -1.97   -1.28    0.24    2.75
+    25.0    0.00    0.19    0.89    1.96    3.14    4.12    4.62    4.47    3.67    2.42    1.00   -0.28   -1.25   -1.84   -2.07   -1.90   -1.17    0.39    2.97
+    30.0    0.00    0.20    0.90    1.97    3.16    4.15    4.66    4.52    3.73    2.47    1.04   -0.27   -1.25   -1.84   -2.05   -1.84   -1.06    0.58    3.26
+    35.0    0.00    0.20    0.91    1.98    3.17    4.18    4.71    4.58    3.80    2.53    1.08   -0.25   -1.25   -1.85   -2.04   -1.79   -0.95    0.77    3.57
+    40.0    0.00    0.21    0.92    1.99    3.19    4.20    4.75    4.64    3.86    2.60    1.14   -0.21   -1.24   -1.85   -2.04   -1.76   -0.85    0.96    3.89
+    45.0    0.00    0.21    0.93    2.01    3.20    4.22    4.78    4.68    3.92    2.66    1.20   -0.17   -1.23   -1.86   -2.04   -1.74   -0.78    1.12    4.17
+    50.0    0.00    0.22    0.94    2.02    3.21    4.23    4.79    4.71    3.97    2.72    1.25   -0.13   -1.21   -1.86   -2.06   -1.75   -0.75    1.23    4.40
+    55.0    0.00    0.23    0.95    2.02    3.22    4.24    4.80    4.73    4.00    2.77    1.30   -0.09   -1.19   -1.87   -2.09   -1.78   -0.75    1.29    4.54
+    60.0    0.00    0.24    0.96    2.03    3.22    4.23    4.79    4.73    4.02    2.80    1.34   -0.06   -1.18   -1.88   -2.13   -1.83   -0.79    1.28    4.60
+    65.0    0.00    0.24    0.97    2.04    3.22    4.22    4.78    4.71    4.01    2.81    1.36   -0.04   -1.16   -1.90   -2.17   -1.90   -0.86    1.21    4.56
+    70.0    0.00    0.25    0.98    2.05    3.22    4.20    4.75    4.68    3.99    2.80    1.37   -0.02   -1.16   -1.92   -2.22   -1.98   -0.97    1.10    4.44
+    75.0    0.00    0.26    0.99    2.06    3.21    4.18    4.71    4.64    3.95    2.77    1.36   -0.02   -1.16   -1.94   -2.28   -2.07   -1.09    0.95    4.27
+    80.0    0.00    0.27    1.01    2.07    3.21    4.16    4.67    4.59    3.89    2.73    1.33   -0.04   -1.18   -1.97   -2.34   -2.16   -1.22    0.78    4.05
+    85.0    0.00    0.28    1.02    2.07    3.20    4.14    4.63    4.53    3.84    2.68    1.29   -0.07   -1.20   -2.01   -2.40   -2.26   -1.35    0.61    3.83
+    90.0    0.00    0.28    1.03    2.08    3.20    4.12    4.59    4.48    3.78    2.62    1.25   -0.10   -1.24   -2.05   -2.46   -2.34   -1.46    0.46    3.62
+    95.0    0.00    0.29    1.05    2.10    3.20    4.10    4.55    4.43    3.72    2.57    1.20   -0.14   -1.28   -2.10   -2.51   -2.41   -1.55    0.35    3.45
+   100.0    0.00    0.30    1.06    2.11    3.21    4.09    4.53    4.38    3.67    2.52    1.15   -0.19   -1.32   -2.14   -2.56   -2.46   -1.61    0.27    3.33
+   105.0    0.00    0.31    1.07    2.12    3.21    4.08    4.50    4.35    3.63    2.47    1.11   -0.23   -1.36   -2.18   -2.59   -2.48   -1.63    0.24    3.26
+   110.0    0.00    0.32    1.09    2.13    3.22    4.08    4.49    4.33    3.60    2.44    1.08   -0.26   -1.39   -2.20   -2.61   -2.49   -1.62    0.25    3.25
+   115.0    0.00    0.32    1.10    2.15    3.23    4.08    4.49    4.32    3.58    2.43    1.06   -0.28   -1.41   -2.21   -2.61   -2.47   -1.58    0.30    3.29
+   120.0    0.00    0.33    1.11    2.16    3.24    4.09    4.49    4.31    3.58    2.42    1.06   -0.28   -1.41   -2.21   -2.59   -2.43   -1.52    0.37    3.36
+   125.0    0.00    0.34    1.12    2.18    3.26    4.10    4.49    4.32    3.58    2.43    1.07   -0.27   -1.39   -2.18   -2.55   -2.38   -1.45    0.45    3.44
+   130.0    0.00    0.34    1.13    2.19    3.27    4.11    4.50    4.33    3.59    2.44    1.09   -0.24   -1.36   -2.14   -2.50   -2.31   -1.38    0.53    3.53
+   135.0    0.00    0.35    1.14    2.20    3.28    4.12    4.51    4.34    3.61    2.46    1.12   -0.21   -1.32   -2.09   -2.44   -2.24   -1.31    0.60    3.60
+   140.0    0.00    0.35    1.15    2.21    3.29    4.13    4.52    4.35    3.63    2.49    1.15   -0.17   -1.27   -2.04   -2.38   -2.18   -1.25    0.65    3.64
+   145.0    0.00    0.35    1.16    2.22    3.30    4.14    4.53    4.37    3.65    2.52    1.18   -0.12   -1.22   -1.98   -2.32   -2.13   -1.22    0.66    3.64
+   150.0    0.00    0.36    1.16    2.23    3.31    4.15    4.54    4.38    3.67    2.54    1.21   -0.09   -1.18   -1.94   -2.28   -2.10   -1.20    0.65    3.61
+   155.0    0.00    0.36    1.17    2.23    3.31    4.16    4.55    4.39    3.69    2.56    1.23   -0.07   -1.15   -1.91   -2.25   -2.08   -1.21    0.60    3.54
+   160.0    0.00    0.36    1.17    2.23    3.32    4.16    4.56    4.41    3.70    2.58    1.25   -0.06   -1.14   -1.90   -2.24   -2.08   -1.24    0.54    3.43
+   165.0    0.00    0.36    1.17    2.23    3.32    4.17    4.57    4.42    3.71    2.59    1.25   -0.06   -1.15   -1.91   -2.26   -2.10   -1.28    0.46    3.30
+   170.0    0.00    0.36    1.17    2.23    3.32    4.17    4.58    4.43    3.72    2.59    1.24   -0.08   -1.18   -1.94   -2.28   -2.14   -1.33    0.37    3.16
+   175.0    0.00    0.36    1.16    2.23    3.31    4.17    4.59    4.44    3.73    2.58    1.22   -0.11   -1.22   -1.98   -2.32   -2.17   -1.38    0.28    3.02
+   180.0    0.00    0.36    1.16    2.22    3.31    4.17    4.59    4.45    3.73    2.58    1.20   -0.15   -1.26   -2.02   -2.36   -2.21   -1.43    0.21    2.90
+   185.0    0.00    0.35    1.15    2.21    3.30    4.16    4.59    4.45    3.73    2.57    1.18   -0.18   -1.30   -2.06   -2.39   -2.23   -1.46    0.16    2.80
+   190.0    0.00    0.35    1.14    2.20    3.29    4.16    4.59    4.45    3.73    2.56    1.16   -0.21   -1.33   -2.08   -2.40   -2.24   -1.47    0.13    2.74
+   195.0    0.00    0.35    1.13    2.19    3.28    4.15    4.58    4.45    3.73    2.55    1.15   -0.22   -1.34   -2.08   -2.39   -2.23   -1.45    0.14    2.74
+   200.0    0.00    0.34    1.12    2.17    3.26    4.14    4.58    4.44    3.72    2.55    1.15   -0.21   -1.32   -2.06   -2.36   -2.20   -1.42    0.18    2.79
+   205.0    0.00    0.34    1.11    2.16    3.25    4.12    4.56    4.43    3.72    2.55    1.16   -0.19   -1.28   -2.01   -2.31   -2.14   -1.36    0.26    2.90
+   210.0    0.00    0.33    1.10    2.14    3.23    4.10    4.55    4.42    3.72    2.56    1.19   -0.14   -1.22   -1.93   -2.24   -2.08   -1.29    0.37    3.06
+   215.0    0.00    0.32    1.09    2.13    3.21    4.09    4.53    4.41    3.71    2.58    1.23   -0.07   -1.13   -1.85   -2.17   -2.01   -1.21    0.49    3.26
+   220.0    0.00    0.32    1.08    2.11    3.19    4.07    4.52    4.40    3.72    2.60    1.28    0.00   -1.05   -1.76   -2.09   -1.94   -1.12    0.63    3.50
+   225.0    0.00    0.31    1.06    2.09    3.17    4.05    4.50    4.39    3.73    2.63    1.33    0.08   -0.96   -1.68   -2.03   -1.89   -1.05    0.78    3.74
+   230.0    0.00    0.30    1.05    2.08    3.16    4.04    4.49    4.39    3.74    2.66    1.38    0.14   -0.89   -1.63   -1.99   -1.85   -0.98    0.91    3.98
+   235.0    0.00    0.29    1.04    2.06    3.14    4.03    4.49    4.39    3.75    2.69    1.42    0.19   -0.85   -1.60   -1.97   -1.84   -0.94    1.02    4.18
+   240.0    0.00    0.29    1.02    2.05    3.13    4.02    4.49    4.40    3.77    2.71    1.45    0.21   -0.84   -1.60   -1.99   -1.86   -0.92    1.10    4.32
+   245.0    0.00    0.28    1.01    2.04    3.12    4.02    4.49    4.41    3.78    2.73    1.46    0.21   -0.86   -1.65   -2.05   -1.90   -0.93    1.14    4.40
+   250.0    0.00    0.27    1.00    2.02    3.12    4.02    4.50    4.42    3.79    2.73    1.46    0.18   -0.92   -1.72   -2.13   -1.96   -0.97    1.13    4.39
+   255.0    0.00    0.26    0.99    2.01    3.11    4.02    4.51    4.44    3.80    2.73    1.43    0.13   -1.00   -1.82   -2.22   -2.04   -1.02    1.08    4.30
+   260.0    0.00    0.26    0.98    2.01    3.11    4.02    4.52    4.45    3.80    2.71    1.38    0.05   -1.10   -1.93   -2.32   -2.12   -1.09    0.99    4.13
+   265.0    0.00    0.25    0.97    2.00    3.11    4.03    4.53    4.45    3.79    2.68    1.32   -0.03   -1.20   -2.03   -2.42   -2.20   -1.17    0.87    3.91
+   270.0    0.00    0.24    0.96    1.99    3.10    4.03    4.53    4.45    3.78    2.64    1.26   -0.12   -1.30   -2.13   -2.50   -2.26   -1.24    0.74    3.65
+   275.0    0.00    0.23    0.95    1.98    3.10    4.03    4.53    4.45    3.76    2.60    1.19   -0.20   -1.38   -2.20   -2.55   -2.31   -1.31    0.60    3.39
+   280.0    0.00    0.23    0.94    1.97    3.10    4.03    4.53    4.43    3.73    2.55    1.14   -0.26   -1.43   -2.23   -2.57   -2.33   -1.37    0.46    3.15
+   285.0    0.00    0.22    0.93    1.97    3.09    4.03    4.52    4.42    3.70    2.51    1.09   -0.31   -1.46   -2.24   -2.55   -2.32   -1.40    0.36    2.95
+   290.0    0.00    0.21    0.92    1.96    3.09    4.02    4.51    4.40    3.67    2.48    1.06   -0.32   -1.45   -2.21   -2.51   -2.29   -1.41    0.28    2.82
+   295.0    0.00    0.21    0.91    1.95    3.08    4.01    4.50    4.37    3.64    2.45    1.04   -0.31   -1.41   -2.15   -2.45   -2.25   -1.41    0.24    2.77
+   300.0    0.00    0.20    0.90    1.94    3.07    4.00    4.48    4.35    3.62    2.43    1.05   -0.28   -1.35   -2.07   -2.37   -2.19   -1.39    0.24    2.80
+   305.0    0.00    0.20    0.89    1.93    3.06    3.99    4.46    4.33    3.60    2.43    1.07   -0.23   -1.28   -1.98   -2.29   -2.14   -1.36    0.28    2.89
+   310.0    0.00    0.19    0.89    1.92    3.05    3.98    4.45    4.31    3.59    2.43    1.10   -0.17   -1.20   -1.89   -2.22   -2.09   -1.32    0.33    3.03
+   315.0    0.00    0.19    0.88    1.92    3.04    3.96    4.43    4.30    3.58    2.44    1.13   -0.11   -1.12   -1.81   -2.15   -2.05   -1.29    0.39    3.18
+   320.0    0.00    0.19    0.88    1.91    3.03    3.95    4.42    4.29    3.58    2.46    1.17   -0.06   -1.05   -1.75   -2.11   -2.03   -1.27    0.45    3.33
+   325.0    0.00    0.18    0.87    1.90    3.03    3.95    4.41    4.28    3.58    2.47    1.19   -0.01   -1.00   -1.71   -2.09   -2.02   -1.27    0.49    3.44
+   330.0    0.00    0.18    0.87    1.90    3.02    3.94    4.40    4.27    3.57    2.47    1.21    0.02   -0.97   -1.69   -2.08   -2.03   -1.28    0.50    3.50
+   335.0    0.00    0.18    0.86    1.89    3.02    3.94    4.40    4.27    3.57    2.47    1.22    0.03   -0.96   -1.68   -2.09   -2.06   -1.31    0.47    3.48
+   340.0    0.00    0.18    0.86    1.89    3.02    3.94    4.40    4.26    3.56    2.46    1.21    0.02   -0.97   -1.70   -2.11   -2.08   -1.35    0.42    3.40
+   345.0    0.00    0.18    0.86    1.89    3.02    3.94    4.40    4.26    3.55    2.44    1.18   -0.01   -1.00   -1.72   -2.13   -2.11   -1.40    0.34    3.26
+   350.0    0.00    0.18    0.86    1.90    3.03    3.95    4.41    4.26    3.54    2.42    1.15   -0.05   -1.03   -1.74   -2.15   -2.14   -1.44    0.25    3.08
+   355.0    0.00    0.18    0.86    1.90    3.03    3.96    4.42    4.27    3.53    2.39    1.11   -0.10   -1.07   -1.77   -2.16   -2.15   -1.47    0.16    2.89
+   360.0    0.00    0.18    0.86    1.91    3.05    3.98    4.44    4.28    3.53    2.37    1.06   -0.15   -1.11   -1.79   -2.17   -2.14   -1.49    0.09    2.72
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.19     -0.64    158.79                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.16   -0.60   -1.22   -1.89   -2.56   -3.24   -3.94   -4.64   -5.21   -5.47   -5.22   -4.38   -3.03   -1.36    0.52    2.68    5.44    9.24
+     0.0    0.00   -0.18   -0.63   -1.25   -1.91   -2.55   -3.17   -3.80   -4.43   -4.98   -5.25   -5.06   -4.32   -3.06   -1.44    0.41    2.52    5.15    8.58
+     5.0    0.00   -0.18   -0.64   -1.26   -1.92   -2.56   -3.19   -3.82   -4.47   -5.03   -5.32   -5.15   -4.43   -3.19   -1.61    0.20    2.27    4.86    8.33
+    10.0    0.00   -0.18   -0.64   -1.27   -1.93   -2.58   -3.21   -3.85   -4.52   -5.09   -5.40   -5.25   -4.53   -3.31   -1.75    0.01    2.03    4.61    8.14
+    15.0    0.00   -0.18   -0.65   -1.27   -1.94   -2.59   -3.22   -3.88   -4.56   -5.16   -5.48   -5.33   -4.62   -3.40   -1.86   -0.13    1.85    4.41    8.02
+    20.0    0.00   -0.18   -0.65   -1.28   -1.95   -2.60   -3.24   -3.91   -4.61   -5.22   -5.55   -5.40   -4.68   -3.46   -1.92   -0.22    1.72    4.28    7.97
+    25.0    0.00   -0.18   -0.65   -1.28   -1.96   -2.61   -3.26   -3.94   -4.65   -5.27   -5.61   -5.46   -4.72   -3.48   -1.94   -0.25    1.67    4.24    8.00
+    30.0    0.00   -0.19   -0.65   -1.29   -1.97   -2.62   -3.28   -3.97   -4.69   -5.32   -5.66   -5.49   -4.73   -3.47   -1.91   -0.21    1.71    4.28    8.10
+    35.0    0.00   -0.19   -0.66   -1.29   -1.97   -2.63   -3.29   -3.99   -4.72   -5.36   -5.69   -5.51   -4.72   -3.43   -1.84   -0.12    1.81    4.40    8.27
+    40.0    0.00   -0.19   -0.66   -1.29   -1.97   -2.64   -3.31   -4.01   -4.75   -5.38   -5.71   -5.50   -4.69   -3.36   -1.73    0.02    1.98    4.59    8.47
+    45.0    0.00   -0.19   -0.66   -1.29   -1.98   -2.65   -3.32   -4.03   -4.77   -5.40   -5.71   -5.49   -4.64   -3.27   -1.60    0.19    2.19    4.83    8.71
+    50.0    0.00   -0.19   -0.66   -1.29   -1.98   -2.66   -3.33   -4.05   -4.78   -5.41   -5.70   -5.45   -4.58   -3.18   -1.47    0.37    2.42    5.09    8.96
+    55.0    0.00   -0.19   -0.65   -1.29   -1.98   -2.66   -3.35   -4.06   -4.79   -5.41   -5.68   -5.42   -4.52   -3.09   -1.35    0.54    2.66    5.36    9.20
+    60.0    0.00   -0.18   -0.65   -1.29   -1.98   -2.67   -3.36   -4.08   -4.80   -5.40   -5.66   -5.37   -4.46   -3.02   -1.24    0.69    2.86    5.61    9.42
+    65.0    0.00   -0.18   -0.65   -1.28   -1.98   -2.67   -3.36   -4.09   -4.81   -5.39   -5.63   -5.34   -4.42   -2.96   -1.17    0.81    3.03    5.83    9.60
+    70.0    0.00   -0.18   -0.65   -1.28   -1.97   -2.67   -3.37   -4.10   -4.81   -5.38   -5.61   -5.31   -4.38   -2.93   -1.13    0.87    3.15    5.98    9.74
+    75.0    0.00   -0.18   -0.64   -1.27   -1.97   -2.67   -3.38   -4.10   -4.81   -5.38   -5.60   -5.28   -4.37   -2.93   -1.13    0.89    3.20    6.08    9.84
+    80.0    0.00   -0.18   -0.64   -1.27   -1.96   -2.67   -3.38   -4.11   -4.81   -5.37   -5.58   -5.27   -4.37   -2.94   -1.16    0.86    3.20    6.11    9.89
+    85.0    0.00   -0.18   -0.63   -1.26   -1.95   -2.66   -3.37   -4.10   -4.81   -5.37   -5.58   -5.28   -4.38   -2.98   -1.22    0.80    3.14    6.09    9.90
+    90.0    0.00   -0.17   -0.63   -1.25   -1.94   -2.65   -3.36   -4.10   -4.81   -5.37   -5.58   -5.29   -4.41   -3.02   -1.29    0.71    3.06    6.02    9.88
+    95.0    0.00   -0.17   -0.62   -1.24   -1.93   -2.63   -3.35   -4.09   -4.81   -5.37   -5.59   -5.30   -4.44   -3.07   -1.36    0.62    2.95    5.93    9.85
+   100.0    0.00   -0.17   -0.62   -1.23   -1.92   -2.62   -3.33   -4.07   -4.80   -5.37   -5.60   -5.32   -4.47   -3.12   -1.42    0.53    2.84    5.83    9.81
+   105.0    0.00   -0.17   -0.61   -1.22   -1.90   -2.60   -3.31   -4.05   -4.78   -5.36   -5.60   -5.33   -4.49   -3.15   -1.47    0.46    2.75    5.73    9.77
+   110.0    0.00   -0.17   -0.61   -1.21   -1.89   -2.58   -3.29   -4.03   -4.76   -5.34   -5.60   -5.33   -4.49   -3.16   -1.48    0.43    2.70    5.67    9.76
+   115.0    0.00   -0.16   -0.60   -1.21   -1.88   -2.56   -3.26   -4.00   -4.73   -5.32   -5.58   -5.32   -4.48   -3.14   -1.47    0.44    2.68    5.63    9.77
+   120.0    0.00   -0.16   -0.60   -1.20   -1.86   -2.54   -3.23   -3.96   -4.69   -5.29   -5.55   -5.30   -4.45   -3.10   -1.42    0.48    2.71    5.65    9.80
+   125.0    0.00   -0.16   -0.59   -1.19   -1.85   -2.52   -3.21   -3.93   -4.65   -5.25   -5.51   -5.25   -4.40   -3.04   -1.34    0.57    2.78    5.70    9.86
+   130.0    0.00   -0.16   -0.59   -1.19   -1.84   -2.51   -3.18   -3.89   -4.61   -5.19   -5.46   -5.20   -4.33   -2.95   -1.24    0.67    2.88    5.78    9.94
+   135.0    0.00   -0.16   -0.59   -1.18   -1.84   -2.50   -3.16   -3.86   -4.56   -5.14   -5.39   -5.13   -4.25   -2.86   -1.13    0.80    3.00    5.89   10.02
+   140.0    0.00   -0.16   -0.59   -1.18   -1.83   -2.49   -3.15   -3.83   -4.52   -5.08   -5.32   -5.05   -4.17   -2.77   -1.03    0.91    3.12    5.99   10.07
+   145.0    0.00   -0.15   -0.58   -1.18   -1.83   -2.48   -3.14   -3.81   -4.48   -5.03   -5.26   -4.98   -4.10   -2.69   -0.94    1.01    3.23    6.08   10.10
+   150.0    0.00   -0.15   -0.58   -1.18   -1.84   -2.49   -3.13   -3.79   -4.45   -4.98   -5.20   -4.92   -4.04   -2.63   -0.88    1.08    3.30    6.13   10.07
+   155.0    0.00   -0.15   -0.58   -1.18   -1.84   -2.49   -3.13   -3.79   -4.43   -4.95   -5.16   -4.87   -4.00   -2.60   -0.86    1.10    3.32    6.13    9.99
+   160.0    0.00   -0.15   -0.58   -1.18   -1.84   -2.50   -3.14   -3.79   -4.42   -4.94   -5.14   -4.86   -3.99   -2.61   -0.88    1.07    3.29    6.07    9.84
+   165.0    0.00   -0.15   -0.58   -1.19   -1.85   -2.50   -3.15   -3.80   -4.43   -4.94   -5.15   -4.87   -4.02   -2.66   -0.95    0.99    3.20    5.96    9.63
+   170.0    0.00   -0.15   -0.58   -1.19   -1.85   -2.51   -3.16   -3.81   -4.45   -4.96   -5.17   -4.91   -4.08   -2.75   -1.06    0.86    3.06    5.80    9.37
+   175.0    0.00   -0.15   -0.58   -1.19   -1.86   -2.52   -3.17   -3.84   -4.48   -5.00   -5.23   -4.98   -4.17   -2.87   -1.21    0.69    2.89    5.60    9.09
+   180.0    0.00   -0.15   -0.58   -1.19   -1.86   -2.53   -3.19   -3.86   -4.52   -5.06   -5.30   -5.07   -4.29   -3.01   -1.38    0.51    2.69    5.38    8.81
+   185.0    0.00   -0.15   -0.58   -1.19   -1.86   -2.53   -3.20   -3.89   -4.57   -5.13   -5.39   -5.18   -4.42   -3.16   -1.55    0.32    2.49    5.18    8.56
+   190.0    0.00   -0.15   -0.58   -1.19   -1.86   -2.54   -3.22   -3.92   -4.62   -5.20   -5.49   -5.30   -4.56   -3.31   -1.71    0.15    2.32    5.01    8.37
+   195.0    0.00   -0.15   -0.58   -1.19   -1.86   -2.54   -3.23   -3.95   -4.67   -5.28   -5.59   -5.42   -4.68   -3.44   -1.84    0.02    2.19    4.89    8.27
+   200.0    0.00   -0.15   -0.58   -1.19   -1.86   -2.54   -3.24   -3.97   -4.72   -5.35   -5.68   -5.52   -4.78   -3.54   -1.93   -0.07    2.12    4.84    8.26
+   205.0    0.00   -0.15   -0.58   -1.19   -1.86   -2.55   -3.25   -4.00   -4.76   -5.42   -5.76   -5.60   -4.86   -3.60   -1.98   -0.10    2.10    4.87    8.36
+   210.0    0.00   -0.15   -0.58   -1.19   -1.86   -2.55   -3.26   -4.02   -4.80   -5.47   -5.82   -5.65   -4.90   -3.62   -1.98   -0.08    2.16    4.97    8.55
+   215.0    0.00   -0.15   -0.58   -1.19   -1.87   -2.56   -3.27   -4.04   -4.83   -5.51   -5.85   -5.68   -4.90   -3.60   -1.93    0.00    2.27    5.14    8.82
+   220.0    0.00   -0.15   -0.58   -1.19   -1.87   -2.56   -3.29   -4.06   -4.85   -5.53   -5.87   -5.68   -4.88   -3.54   -1.84    0.12    2.43    5.35    9.12
+   225.0    0.00   -0.15   -0.58   -1.20   -1.88   -2.57   -3.30   -4.07   -4.86   -5.53   -5.86   -5.65   -4.82   -3.45   -1.71    0.28    2.61    5.57    9.44
+   230.0    0.00   -0.15   -0.58   -1.20   -1.88   -2.58   -3.31   -4.08   -4.87   -5.52   -5.83   -5.60   -4.74   -3.34   -1.58    0.44    2.79    5.79    9.73
+   235.0    0.00   -0.15   -0.58   -1.20   -1.89   -2.59   -3.32   -4.09   -4.87   -5.50   -5.79   -5.54   -4.66   -3.23   -1.44    0.59    2.95    5.97    9.96
+   240.0    0.00   -0.15   -0.58   -1.20   -1.90   -2.60   -3.33   -4.09   -4.85   -5.48   -5.75   -5.47   -4.57   -3.13   -1.33    0.71    3.07    6.08   10.10
+   245.0    0.00   -0.15   -0.59   -1.21   -1.90   -2.61   -3.34   -4.09   -4.84   -5.44   -5.70   -5.40   -4.49   -3.04   -1.24    0.79    3.13    6.11   10.13
+   250.0    0.00   -0.15   -0.59   -1.21   -1.91   -2.62   -3.34   -4.09   -4.82   -5.41   -5.64   -5.34   -4.43   -2.98   -1.18    0.83    3.13    6.06   10.06
+   255.0    0.00   -0.15   -0.59   -1.21   -1.91   -2.62   -3.34   -4.07   -4.79   -5.37   -5.60   -5.30   -4.38   -2.94   -1.17    0.81    3.05    5.93    9.89
+   260.0    0.00   -0.15   -0.59   -1.21   -1.91   -2.62   -3.33   -4.06   -4.77   -5.33   -5.56   -5.26   -4.36   -2.94   -1.19    0.74    2.92    5.73    9.66
+   265.0    0.00   -0.15   -0.59   -1.21   -1.91   -2.61   -3.32   -4.04   -4.74   -5.30   -5.52   -5.23   -4.35   -2.95   -1.24    0.64    2.75    5.49    9.38
+   270.0    0.00   -0.15   -0.59   -1.21   -1.90   -2.60   -3.30   -4.01   -4.71   -5.26   -5.49   -5.22   -4.35   -2.98   -1.31    0.51    2.56    5.23    9.10
+   275.0    0.00   -0.15   -0.59   -1.21   -1.90   -2.59   -3.28   -3.98   -4.67   -5.23   -5.47   -5.20   -4.36   -3.02   -1.38    0.39    2.37    4.98    8.86
+   280.0    0.00   -0.15   -0.59   -1.20   -1.89   -2.57   -3.26   -3.95   -4.64   -5.20   -5.44   -5.19   -4.36   -3.04   -1.45    0.27    2.21    4.79    8.68
+   285.0    0.00   -0.15   -0.59   -1.20   -1.88   -2.55   -3.23   -3.92   -4.60   -5.16   -5.41   -5.17   -4.35   -3.05   -1.49    0.20    2.09    4.65    8.59
+   290.0    0.00   -0.15   -0.59   -1.19   -1.86   -2.53   -3.20   -3.89   -4.57   -5.13   -5.38   -5.14   -4.33   -3.04   -1.50    0.17    2.04    4.61    8.59
+   295.0    0.00   -0.15   -0.59   -1.19   -1.85   -2.51   -3.17   -3.85   -4.53   -5.09   -5.34   -5.10   -4.29   -3.01   -1.47    0.19    2.06    4.65    8.68
+   300.0    0.00   -0.15   -0.59   -1.19   -1.84   -2.50   -3.15   -3.82   -4.50   -5.05   -5.30   -5.05   -4.24   -2.95   -1.40    0.26    2.15    4.77    8.84
+   305.0    0.00   -0.16   -0.59   -1.18   -1.83   -2.48   -3.13   -3.79   -4.46   -5.01   -5.25   -4.99   -4.17   -2.87   -1.31    0.37    2.30    4.96    9.06
+   310.0    0.00   -0.16   -0.59   -1.18   -1.83   -2.47   -3.11   -3.77   -4.43   -4.97   -5.20   -4.93   -4.10   -2.78   -1.20    0.52    2.50    5.20    9.30
+   315.0    0.00   -0.16   -0.59   -1.18   -1.83   -2.46   -3.09   -3.75   -4.40   -4.94   -5.16   -4.88   -4.03   -2.70   -1.08    0.68    2.71    5.45    9.52
+   320.0    0.00   -0.16   -0.59   -1.18   -1.83   -2.46   -3.09   -3.73   -4.38   -4.90   -5.11   -4.82   -3.96   -2.62   -0.97    0.84    2.92    5.68    9.70
+   325.0    0.00   -0.16   -0.60   -1.19   -1.83   -2.46   -3.08   -3.72   -4.36   -4.87   -5.08   -4.78   -3.92   -2.56   -0.89    0.97    3.10    5.88    9.81
+   330.0    0.00   -0.16   -0.60   -1.19   -1.84   -2.46   -3.08   -3.72   -4.35   -4.85   -5.05   -4.76   -3.90   -2.54   -0.84    1.05    3.23    6.01    9.83
+   335.0    0.00   -0.17   -0.60   -1.20   -1.85   -2.47   -3.09   -3.72   -4.34   -4.84   -5.05   -4.76   -3.91   -2.55   -0.84    1.08    3.28    6.06    9.77
+   340.0    0.00   -0.17   -0.61   -1.21   -1.86   -2.49   -3.10   -3.72   -4.34   -4.85   -5.05   -4.78   -3.95   -2.60   -0.89    1.05    3.26    6.01    9.62
+   345.0    0.00   -0.17   -0.61   -1.22   -1.87   -2.50   -3.11   -3.74   -4.35   -4.86   -5.08   -4.83   -4.01   -2.68   -0.98    0.95    3.16    5.88    9.40
+   350.0    0.00   -0.17   -0.62   -1.23   -1.88   -2.51   -3.13   -3.75   -4.37   -4.89   -5.12   -4.89   -4.10   -2.79   -1.12    0.80    2.99    5.68    9.14
+   355.0    0.00   -0.18   -0.63   -1.24   -1.90   -2.53   -3.15   -3.77   -4.40   -4.93   -5.18   -4.97   -4.20   -2.92   -1.27    0.61    2.77    5.43    8.86
+   360.0    0.00   -0.18   -0.63   -1.25   -1.91   -2.55   -3.17   -3.80   -4.43   -4.98   -5.25   -5.06   -4.32   -3.06   -1.44    0.41    2.52    5.15    8.58
+   G02                                                      END OF FREQUENCY    
+   R01                                                      START OF FREQUENCY  
+      0.17      0.10    161.73                              NORTH / EAST / UP   
+   NOAZI    0.00    0.20    0.74    1.61    2.65    3.63    4.32    4.47    4.03    3.04    1.76    0.50   -0.56   -1.28   -1.66   -1.64   -1.01    0.71    3.95
+     0.0    0.00    0.09    0.57    1.42    2.47    3.47    4.18    4.35    3.90    2.90    1.59    0.28   -0.82   -1.60   -1.99   -1.94   -1.27    0.35    3.11
+     5.0    0.00    0.09    0.59    1.43    2.49    3.50    4.20    4.37    3.89    2.86    1.54    0.20   -0.89   -1.64   -2.01   -1.97   -1.34    0.20    2.92
+    10.0    0.00    0.09    0.59    1.44    2.51    3.54    4.23    4.39    3.89    2.83    1.48    0.14   -0.95   -1.65   -2.00   -1.98   -1.41    0.07    2.76
+    15.0    0.00    0.10    0.60    1.46    2.54    3.56    4.27    4.41    3.89    2.80    1.42    0.09   -0.96   -1.64   -1.98   -1.97   -1.44   -0.04    2.67
+    20.0    0.00    0.10    0.62    1.48    2.56    3.60    4.30    4.44    3.90    2.77    1.37    0.05   -0.98   -1.63   -1.93   -1.94   -1.46   -0.09    2.68
+    25.0    0.00    0.12    0.62    1.49    2.58    3.63    4.34    4.47    3.90    2.77    1.36    0.03   -0.98   -1.60   -1.89   -1.90   -1.46   -0.10    2.77
+    30.0    0.00    0.13    0.63    1.50    2.60    3.65    4.37    4.49    3.92    2.78    1.36    0.02   -0.97   -1.57   -1.86   -1.86   -1.43   -0.04    2.94
+    35.0    0.00    0.13    0.64    1.51    2.61    3.67    4.40    4.53    3.96    2.80    1.37    0.02   -0.98   -1.57   -1.84   -1.83   -1.38    0.06    3.18
+    40.0    0.00    0.14    0.65    1.52    2.62    3.68    4.42    4.55    3.99    2.84    1.41    0.03   -0.98   -1.58   -1.85   -1.82   -1.30    0.22    3.45
+    45.0    0.00    0.14    0.66    1.54    2.62    3.68    4.43    4.57    4.03    2.88    1.44    0.06   -1.00   -1.63   -1.88   -1.80   -1.22    0.41    3.74
+    50.0    0.00    0.15    0.67    1.54    2.61    3.67    4.41    4.58    4.07    2.93    1.48    0.08   -1.01   -1.67   -1.93   -1.81   -1.14    0.60    4.04
+    55.0    0.00    0.16    0.68    1.54    2.60    3.66    4.40    4.59    4.09    2.99    1.54    0.11   -1.02   -1.72   -1.99   -1.84   -1.07    0.79    4.27
+    60.0    0.00    0.18    0.69    1.54    2.59    3.62    4.36    4.57    4.11    3.03    1.60    0.14   -1.03   -1.77   -2.07   -1.88   -1.01    0.93    4.47
+    65.0    0.00    0.18    0.70    1.54    2.57    3.59    4.33    4.54    4.11    3.07    1.64    0.18   -1.02   -1.83   -2.14   -1.93   -0.99    1.03    4.58
+    70.0    0.00    0.19    0.71    1.55    2.56    3.55    4.29    4.51    4.10    3.08    1.68    0.22   -1.02   -1.87   -2.20   -1.99   -1.00    1.08    4.60
+    75.0    0.00    0.20    0.72    1.56    2.55    3.52    4.24    4.46    4.07    3.08    1.71    0.26   -1.00   -1.88   -2.26   -2.05   -1.05    1.06    4.57
+    80.0    0.00    0.21    0.74    1.57    2.54    3.50    4.19    4.41    4.02    3.06    1.72    0.29   -0.98   -1.87   -2.30   -2.11   -1.11    0.98    4.44
+    85.0    0.00    0.22    0.76    1.57    2.53    3.48    4.15    4.36    3.99    3.04    1.73    0.31   -0.93   -1.86   -2.30   -2.16   -1.20    0.88    4.30
+    90.0    0.00    0.22    0.77    1.58    2.54    3.47    4.13    4.32    3.94    3.01    1.73    0.35   -0.90   -1.82   -2.30   -2.20   -1.29    0.74    4.12
+    95.0    0.00    0.23    0.79    1.61    2.56    3.47    4.11    4.30    3.90    2.98    1.72    0.36   -0.85   -1.77   -2.27   -2.22   -1.37    0.61    3.95
+   100.0    0.00    0.25    0.82    1.63    2.59    3.48    4.13    4.27    3.88    2.97    1.70    0.37   -0.82   -1.71   -2.22   -2.20   -1.43    0.49    3.83
+   105.0    0.00    0.26    0.83    1.66    2.61    3.52    4.13    4.29    3.87    2.94    1.69    0.38   -0.78   -1.65   -2.13   -2.16   -1.44    0.41    3.74
+   110.0    0.00    0.27    0.86    1.68    2.65    3.55    4.17    4.31    3.88    2.93    1.69    0.39   -0.73   -1.56   -2.05   -2.09   -1.42    0.39    3.73
+   115.0    0.00    0.27    0.87    1.72    2.69    3.59    4.21    4.34    3.88    2.94    1.68    0.40   -0.69   -1.48   -1.94   -1.98   -1.34    0.43    3.79
+   120.0    0.00    0.28    0.89    1.75    2.73    3.64    4.27    4.37    3.91    2.94    1.69    0.42   -0.63   -1.39   -1.81   -1.86   -1.23    0.52    3.91
+   125.0    0.00    0.29    0.91    1.78    2.78    3.70    4.30    4.42    3.93    2.96    1.71    0.45   -0.57   -1.29   -1.68   -1.71   -1.10    0.64    4.08
+   130.0    0.00    0.29    0.92    1.81    2.81    3.74    4.34    4.46    3.95    2.97    1.73    0.49   -0.51   -1.18   -1.55   -1.57   -0.95    0.79    4.28
+   135.0    0.00    0.30    0.94    1.83    2.83    3.77    4.37    4.48    3.98    2.99    1.75    0.53   -0.44   -1.09   -1.43   -1.42   -0.82    0.94    4.48
+   140.0    0.00    0.31    0.95    1.85    2.86    3.79    4.39    4.49    3.99    3.01    1.78    0.57   -0.38   -1.01   -1.33   -1.31   -0.70    1.08    4.65
+   145.0    0.00    0.31    0.96    1.86    2.87    3.80    4.40    4.50    4.00    3.02    1.80    0.63   -0.31   -0.93   -1.25   -1.24   -0.62    1.16    4.77
+   150.0    0.00    0.32    0.96    1.87    2.88    3.81    4.39    4.49    3.99    3.03    1.83    0.66   -0.26   -0.88   -1.21   -1.21   -0.59    1.19    4.81
+   155.0    0.00    0.32    0.97    1.88    2.88    3.81    4.39    4.46    3.99    3.03    1.85    0.70   -0.21   -0.86   -1.20   -1.22   -0.61    1.16    4.78
+   160.0    0.00    0.31    0.97    1.87    2.89    3.79    4.37    4.46    3.98    3.04    1.87    0.72   -0.20   -0.86   -1.23   -1.26   -0.69    1.08    4.65
+   165.0    0.00    0.31    0.97    1.87    2.88    3.79    4.36    4.44    3.97    3.04    1.87    0.72   -0.23   -0.90   -1.30   -1.36   -0.79    0.95    4.44
+   170.0    0.00    0.31    0.97    1.87    2.87    3.78    4.36    4.44    3.96    3.04    1.86    0.70   -0.27   -0.97   -1.39   -1.47   -0.92    0.77    4.17
+   175.0    0.00    0.31    0.96    1.86    2.86    3.77    4.36    4.44    3.97    3.03    1.85    0.67   -0.33   -1.06   -1.50   -1.59   -1.06    0.58    3.87
+   180.0    0.00    0.31    0.95    1.85    2.85    3.77    4.36    4.46    3.99    3.04    1.83    0.62   -0.40   -1.15   -1.61   -1.71   -1.20    0.40    3.57
+   185.0    0.00    0.30    0.94    1.84    2.84    3.76    4.37    4.47    4.00    3.04    1.81    0.57   -0.47   -1.24   -1.70   -1.79   -1.30    0.25    3.29
+   190.0    0.00    0.30    0.93    1.82    2.83    3.77    4.38    4.49    4.02    3.05    1.79    0.52   -0.54   -1.31   -1.76   -1.86   -1.37    0.13    3.07
+   195.0    0.00    0.29    0.91    1.81    2.82    3.76    4.39    4.51    4.04    3.05    1.78    0.49   -0.59   -1.35   -1.79   -1.89   -1.39    0.08    2.94
+   200.0    0.00    0.28    0.90    1.78    2.80    3.76    4.40    4.53    4.05    3.05    1.77    0.47   -0.60   -1.36   -1.79   -1.87   -1.38    0.07    2.92
+   205.0    0.00    0.28    0.88    1.77    2.78    3.74    4.39    4.53    4.05    3.05    1.77    0.47   -0.59   -1.33   -1.75   -1.81   -1.33    0.13    3.01
+   210.0    0.00    0.27    0.87    1.74    2.76    3.72    4.38    4.52    4.05    3.05    1.77    0.50   -0.54   -1.25   -1.67   -1.75   -1.26    0.24    3.20
+   215.0    0.00    0.25    0.85    1.72    2.73    3.70    4.35    4.50    4.02    3.05    1.79    0.56   -0.45   -1.16   -1.59   -1.66   -1.17    0.38    3.47
+   220.0    0.00    0.25    0.84    1.70    2.70    3.67    4.33    4.46    4.01    3.04    1.82    0.62   -0.37   -1.06   -1.48   -1.58   -1.08    0.54    3.83
+   225.0    0.00    0.24    0.80    1.66    2.67    3.64    4.29    4.42    3.99    3.04    1.85    0.69   -0.27   -0.96   -1.41   -1.53   -1.01    0.73    4.20
+   230.0    0.00    0.23    0.79    1.64    2.65    3.60    4.25    4.39    3.96    3.04    1.88    0.76   -0.18   -0.89   -1.36   -1.49   -0.95    0.89    4.58
+   235.0    0.00    0.20    0.77    1.61    2.62    3.57    4.22    4.36    3.94    3.05    1.92    0.81   -0.13   -0.85   -1.33   -1.50   -0.92    1.02    4.91
+   240.0    0.00    0.20    0.75    1.60    2.60    3.55    4.20    4.36    3.95    3.06    1.95    0.84   -0.11   -0.85   -1.36   -1.53   -0.91    1.13    5.17
+   245.0    0.00    0.19    0.73    1.58    2.58    3.54    4.20    4.36    3.96    3.09    1.97    0.85   -0.12   -0.90   -1.44   -1.59   -0.92    1.20    5.35
+   250.0    0.00    0.18    0.72    1.56    2.58    3.54    4.21    4.38    3.99    3.11    1.99    0.84   -0.18   -0.98   -1.53   -1.66   -0.95    1.24    5.41
+   255.0    0.00    0.16    0.71    1.54    2.57    3.55    4.24    4.43    4.03    3.16    2.00    0.81   -0.26   -1.10   -1.65   -1.74   -0.98    1.22    5.36
+   260.0    0.00    0.16    0.69    1.54    2.58    3.56    4.29    4.48    4.09    3.19    1.99    0.74   -0.36   -1.22   -1.76   -1.81   -1.02    1.18    5.20
+   265.0    0.00    0.15    0.68    1.53    2.58    3.60    4.33    4.55    4.14    3.22    1.97    0.68   -0.46   -1.33   -1.85   -1.86   -1.03    1.11    4.98
+   270.0    0.00    0.14    0.67    1.53    2.58    3.63    4.37    4.60    4.21    3.25    1.96    0.61   -0.56   -1.42   -1.90   -1.87   -1.04    1.04    4.71
+   275.0    0.00    0.13    0.66    1.52    2.59    3.65    4.42    4.66    4.25    3.26    1.93    0.55   -0.63   -1.47   -1.90   -1.84   -1.02    0.94    4.42
+   280.0    0.00    0.13    0.65    1.51    2.60    3.67    4.46    4.70    4.27    3.26    1.92    0.53   -0.64   -1.45   -1.86   -1.78   -1.00    0.84    4.14
+   285.0    0.00    0.12    0.64    1.51    2.60    3.69    4.48    4.72    4.28    3.25    1.89    0.50   -0.64   -1.41   -1.76   -1.67   -0.95    0.76    3.89
+   290.0    0.00    0.11    0.63    1.50    2.60    3.69    4.48    4.72    4.27    3.23    1.87    0.51   -0.60   -1.32   -1.63   -1.56   -0.91    0.69    3.70
+   295.0    0.00    0.11    0.61    1.49    2.59    3.67    4.47    4.69    4.24    3.20    1.86    0.53   -0.52   -1.18   -1.49   -1.44   -0.87    0.64    3.59
+   300.0    0.00    0.10    0.60    1.47    2.57    3.65    4.44    4.65    4.19    3.16    1.86    0.57   -0.41   -1.05   -1.34   -1.32   -0.82    0.62    3.55
+   305.0    0.00    0.10    0.59    1.46    2.55    3.63    4.39    4.60    4.14    3.13    1.86    0.63   -0.32   -0.92   -1.22   -1.24   -0.79    0.63    3.59
+   310.0    0.00    0.09    0.59    1.44    2.53    3.59    4.34    4.53    4.09    3.10    1.87    0.68   -0.23   -0.81   -1.12   -1.18   -0.76    0.65    3.68
+   315.0    0.00    0.09    0.58    1.44    2.50    3.55    4.28    4.47    4.03    3.07    1.87    0.73   -0.16   -0.75   -1.08   -1.17   -0.75    0.68    3.78
+   320.0    0.00    0.09    0.58    1.42    2.48    3.50    4.23    4.42    3.99    3.06    1.88    0.75   -0.14   -0.73   -1.09   -1.19   -0.76    0.73    3.89
+   325.0    0.00    0.08    0.57    1.41    2.46    3.47    4.19    4.38    3.96    3.04    1.87    0.76   -0.14   -0.77   -1.15   -1.25   -0.79    0.77    3.97
+   330.0    0.00    0.08    0.57    1.40    2.44    3.44    4.14    4.33    3.93    3.02    1.87    0.74   -0.19   -0.86   -1.26   -1.34   -0.82    0.80    4.02
+   335.0    0.00    0.08    0.56    1.39    2.42    3.43    4.13    4.32    3.92    3.01    1.86    0.70   -0.28   -0.98   -1.40   -1.46   -0.88    0.79    4.00
+   340.0    0.00    0.08    0.56    1.39    2.42    3.42    4.12    4.31    3.91    3.00    1.83    0.63   -0.39   -1.13   -1.56   -1.58   -0.95    0.77    3.92
+   345.0    0.00    0.08    0.56    1.39    2.41    3.42    4.12    4.31    3.91    2.98    1.78    0.54   -0.51   -1.27   -1.69   -1.70   -1.03    0.70    3.77
+   350.0    0.00    0.08    0.57    1.40    2.43    3.43    4.13    4.32    3.90    2.97    1.73    0.46   -0.63   -1.40   -1.83   -1.81   -1.10    0.61    3.57
+   355.0    0.00    0.09    0.57    1.41    2.43    3.44    4.15    4.33    3.90    2.93    1.67    0.36   -0.74   -1.51   -1.93   -1.89   -1.18    0.49    3.35
+   360.0    0.00    0.09    0.57    1.42    2.47    3.47    4.18    4.35    3.90    2.90    1.59    0.28   -0.82   -1.60   -1.99   -1.94   -1.27    0.35    3.11
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+      0.19     -0.64    158.79                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.10   -0.39   -0.83   -1.37   -2.02   -2.78   -3.61   -4.44   -5.10   -5.42   -5.21   -4.46   -3.22   -1.66    0.17    2.36    5.14    8.81
+     0.0    0.00   -0.12   -0.42   -0.89   -1.45   -2.07   -2.75   -3.48   -4.22   -4.87   -5.24   -5.18   -4.58   -3.42   -1.83    0.08    2.26    4.75    7.58
+     5.0    0.00   -0.11   -0.43   -0.90   -1.46   -2.08   -2.78   -3.51   -4.26   -4.92   -5.31   -5.26   -4.68   -3.55   -1.99   -0.12    2.02    4.48    7.34
+    10.0    0.00   -0.11   -0.43   -0.91   -1.47   -2.12   -2.81   -3.56   -4.33   -4.99   -5.39   -5.35   -4.77   -3.66   -2.13   -0.31    1.79    4.25    7.21
+    15.0    0.00   -0.11   -0.44   -0.90   -1.48   -2.13   -2.84   -3.61   -4.39   -5.08   -5.48   -5.43   -4.84   -3.72   -2.22   -0.45    1.60    4.06    7.17
+    20.0    0.00   -0.11   -0.43   -0.91   -1.49   -2.15   -2.87   -3.67   -4.48   -5.17   -5.56   -5.50   -4.87   -3.75   -2.27   -0.54    1.45    3.93    7.23
+    25.0    0.00   -0.11   -0.43   -0.90   -1.50   -2.16   -2.91   -3.73   -4.55   -5.25   -5.64   -5.55   -4.89   -3.74   -2.27   -0.59    1.36    3.89    7.38
+    30.0    0.00   -0.12   -0.42   -0.91   -1.50   -2.17   -2.94   -3.77   -4.62   -5.33   -5.70   -5.57   -4.88   -3.71   -2.23   -0.57    1.36    3.93    7.61
+    35.0    0.00   -0.11   -0.42   -0.90   -1.49   -2.17   -2.94   -3.81   -4.67   -5.38   -5.74   -5.58   -4.85   -3.65   -2.16   -0.50    1.43    4.05    7.92
+    40.0    0.00   -0.11   -0.42   -0.89   -1.48   -2.17   -2.96   -3.82   -4.70   -5.41   -5.76   -5.57   -4.80   -3.57   -2.05   -0.38    1.57    4.25    8.25
+    45.0    0.00   -0.11   -0.41   -0.88   -1.47   -2.16   -2.94   -3.81   -4.70   -5.41   -5.75   -5.55   -4.74   -3.47   -1.92   -0.23    1.76    4.51    8.59
+    50.0    0.00   -0.10   -0.41   -0.86   -1.45   -2.13   -2.91   -3.79   -4.66   -5.39   -5.72   -5.50   -4.68   -3.39   -1.81   -0.06    1.99    4.80    8.93
+    55.0    0.00   -0.10   -0.39   -0.86   -1.43   -2.10   -2.88   -3.74   -4.61   -5.33   -5.67   -5.46   -4.63   -3.32   -1.70    0.11    2.26    5.12    9.23
+    60.0    0.00   -0.09   -0.39   -0.84   -1.41   -2.07   -2.84   -3.68   -4.54   -5.25   -5.59   -5.38   -4.59   -3.28   -1.62    0.26    2.50    5.43    9.48
+    65.0    0.00   -0.08   -0.39   -0.82   -1.38   -2.04   -2.78   -3.62   -4.46   -5.16   -5.51   -5.34   -4.56   -3.25   -1.57    0.40    2.72    5.72    9.67
+    70.0    0.00   -0.08   -0.38   -0.82   -1.36   -2.01   -2.74   -3.56   -4.38   -5.07   -5.43   -5.28   -4.53   -3.25   -1.54    0.48    2.91    5.94    9.78
+    75.0    0.00   -0.08   -0.37   -0.80   -1.35   -1.98   -2.70   -3.50   -4.31   -5.00   -5.36   -5.23   -4.52   -3.27   -1.56    0.53    3.03    6.11    9.85
+    80.0    0.00   -0.08   -0.37   -0.80   -1.33   -1.96   -2.67   -3.46   -4.24   -4.92   -5.29   -5.19   -4.52   -3.29   -1.59    0.53    3.10    6.21    9.86
+    85.0    0.00   -0.08   -0.36   -0.79   -1.32   -1.95   -2.66   -3.42   -4.21   -4.87   -5.24   -5.16   -4.52   -3.33   -1.64    0.51    3.10    6.24    9.82
+    90.0    0.00   -0.07   -0.36   -0.78   -1.31   -1.95   -2.65   -3.42   -4.19   -4.85   -5.20   -5.14   -4.52   -3.34   -1.68    0.45    3.07    6.20    9.76
+    95.0    0.00   -0.07   -0.35   -0.78   -1.32   -1.95   -2.66   -3.43   -4.20   -4.84   -5.20   -5.12   -4.51   -3.36   -1.71    0.41    3.01    6.14    9.70
+   100.0    0.00   -0.07   -0.35   -0.77   -1.32   -1.96   -2.67   -3.45   -4.23   -4.85   -5.20   -5.11   -4.50   -3.36   -1.72    0.36    2.93    6.05    9.64
+   105.0    0.00   -0.07   -0.34   -0.76   -1.32   -1.97   -2.70   -3.48   -4.25   -4.88   -5.21   -5.10   -4.47   -3.32   -1.71    0.33    2.86    5.96    9.61
+   110.0    0.00   -0.07   -0.35   -0.76   -1.32   -1.98   -2.73   -3.52   -4.30   -4.91   -5.23   -5.09   -4.42   -3.26   -1.66    0.34    2.82    5.89    9.62
+   115.0    0.00   -0.07   -0.34   -0.77   -1.34   -1.99   -2.74   -3.56   -4.34   -4.95   -5.25   -5.07   -4.37   -3.18   -1.59    0.39    2.81    5.84    9.67
+   120.0    0.00   -0.07   -0.34   -0.77   -1.32   -2.00   -2.76   -3.58   -4.37   -4.99   -5.26   -5.06   -4.32   -3.09   -1.49    0.46    2.83    5.86    9.76
+   125.0    0.00   -0.07   -0.33   -0.76   -1.33   -2.00   -2.78   -3.60   -4.39   -5.01   -5.27   -5.03   -4.25   -3.00   -1.37    0.56    2.88    5.89    9.87
+   130.0    0.00   -0.07   -0.33   -0.76   -1.32   -2.00   -2.77   -3.60   -4.40   -5.01   -5.27   -5.01   -4.19   -2.89   -1.25    0.66    2.96    5.95   10.01
+   135.0    0.00   -0.08   -0.34   -0.76   -1.32   -1.99   -2.76   -3.60   -4.40   -5.01   -5.25   -4.98   -4.13   -2.82   -1.15    0.77    3.04    6.03   10.13
+   140.0    0.00   -0.08   -0.34   -0.76   -1.31   -1.98   -2.75   -3.57   -4.38   -5.00   -5.23   -4.95   -4.09   -2.76   -1.08    0.84    3.11    6.09   10.20
+   145.0    0.00   -0.07   -0.34   -0.76   -1.31   -1.96   -2.74   -3.56   -4.36   -4.98   -5.22   -4.93   -4.07   -2.72   -1.04    0.88    3.16    6.12   10.21
+   150.0    0.00   -0.08   -0.34   -0.76   -1.31   -1.96   -2.71   -3.53   -4.34   -4.95   -5.20   -4.92   -4.06   -2.72   -1.05    0.87    3.14    6.09   10.13
+   155.0    0.00   -0.08   -0.34   -0.76   -1.30   -1.95   -2.70   -3.53   -4.32   -4.94   -5.19   -4.91   -4.07   -2.75   -1.10    0.81    3.06    5.99    9.95
+   160.0    0.00   -0.08   -0.35   -0.77   -1.30   -1.96   -2.70   -3.52   -4.31   -4.93   -5.18   -4.93   -4.11   -2.82   -1.20    0.68    2.92    5.81    9.69
+   165.0    0.00   -0.08   -0.35   -0.78   -1.31   -1.96   -2.70   -3.52   -4.32   -4.94   -5.20   -4.96   -4.17   -2.92   -1.35    0.50    2.73    5.58    9.32
+   170.0    0.00   -0.09   -0.36   -0.79   -1.32   -1.97   -2.72   -3.53   -4.33   -4.96   -5.22   -5.01   -4.25   -3.04   -1.52    0.29    2.49    5.30    8.90
+   175.0    0.00   -0.09   -0.37   -0.79   -1.34   -1.98   -2.74   -3.57   -4.37   -4.99   -5.27   -5.07   -4.34   -3.19   -1.70    0.06    2.23    4.99    8.46
+   180.0    0.00   -0.10   -0.37   -0.81   -1.35   -2.01   -2.77   -3.60   -4.42   -5.05   -5.33   -5.14   -4.44   -3.33   -1.90   -0.17    1.96    4.67    8.03
+   185.0    0.00   -0.10   -0.38   -0.82   -1.37   -2.03   -2.80   -3.65   -4.47   -5.12   -5.40   -5.22   -4.55   -3.46   -2.07   -0.38    1.72    4.41    7.66
+   190.0    0.00   -0.11   -0.39   -0.83   -1.39   -2.07   -2.84   -3.70   -4.53   -5.18   -5.48   -5.31   -4.66   -3.58   -2.22   -0.55    1.53    4.20    7.39
+   195.0    0.00   -0.11   -0.40   -0.84   -1.41   -2.09   -2.88   -3.75   -4.59   -5.26   -5.56   -5.40   -4.74   -3.68   -2.32   -0.66    1.42    4.09    7.26
+   200.0    0.00   -0.11   -0.40   -0.86   -1.43   -2.11   -2.92   -3.79   -4.65   -5.32   -5.64   -5.48   -4.81   -3.75   -2.37   -0.71    1.39    4.07    7.27
+   205.0    0.00   -0.11   -0.41   -0.87   -1.45   -2.14   -2.94   -3.83   -4.69   -5.39   -5.71   -5.54   -4.87   -3.78   -2.38   -0.70    1.42    4.16    7.43
+   210.0    0.00   -0.11   -0.42   -0.88   -1.46   -2.15   -2.97   -3.86   -4.74   -5.44   -5.77   -5.58   -4.90   -3.78   -2.36   -0.63    1.54    4.34    7.73
+   215.0    0.00   -0.12   -0.43   -0.89   -1.47   -2.17   -2.98   -3.88   -4.77   -5.48   -5.80   -5.62   -4.90   -3.75   -2.28   -0.51    1.72    4.59    8.12
+   220.0    0.00   -0.12   -0.43   -0.90   -1.48   -2.17   -3.00   -3.89   -4.78   -5.50   -5.83   -5.64   -4.89   -3.70   -2.19   -0.36    1.92    4.88    8.55
+   225.0    0.00   -0.12   -0.43   -0.91   -1.48   -2.17   -2.99   -3.89   -4.79   -5.50   -5.84   -5.63   -4.86   -3.63   -2.05   -0.18    2.14    5.16    9.01
+   230.0    0.00   -0.12   -0.43   -0.91   -1.48   -2.17   -2.98   -3.87   -4.78   -5.49   -5.82   -5.61   -4.81   -3.53   -1.93   -0.02    2.33    5.42    9.41
+   235.0    0.00   -0.12   -0.43   -0.90   -1.48   -2.16   -2.96   -3.85   -4.76   -5.47   -5.79   -5.57   -4.75   -3.44   -1.80    0.13    2.49    5.62    9.72
+   240.0    0.00   -0.13   -0.43   -0.89   -1.47   -2.14   -2.94   -3.83   -4.72   -5.44   -5.76   -5.51   -4.68   -3.36   -1.71    0.23    2.58    5.71    9.89
+   245.0    0.00   -0.13   -0.44   -0.89   -1.45   -2.12   -2.91   -3.79   -4.69   -5.39   -5.71   -5.46   -4.62   -3.28   -1.62    0.30    2.61    5.71    9.93
+   250.0    0.00   -0.13   -0.44   -0.88   -1.44   -2.10   -2.88   -3.76   -4.64   -5.34   -5.65   -5.40   -4.56   -3.22   -1.56    0.32    2.59    5.62    9.82
+   255.0    0.00   -0.12   -0.43   -0.87   -1.42   -2.07   -2.84   -3.70   -4.58   -5.29   -5.60   -5.34   -4.49   -3.16   -1.54    0.30    2.48    5.44    9.60
+   260.0    0.00   -0.12   -0.43   -0.86   -1.39   -2.04   -2.80   -3.66   -4.53   -5.23   -5.54   -5.29   -4.45   -3.13   -1.54    0.25    2.35    5.19    9.29
+   265.0    0.00   -0.12   -0.42   -0.85   -1.38   -2.01   -2.76   -3.62   -4.48   -5.18   -5.48   -5.24   -4.41   -3.10   -1.55    0.17    2.18    4.92    8.93
+   270.0    0.00   -0.12   -0.42   -0.83   -1.36   -1.98   -2.73   -3.58   -4.44   -5.13   -5.43   -5.20   -4.37   -3.09   -1.57    0.08    2.01    4.65    8.58
+   275.0    0.00   -0.12   -0.41   -0.83   -1.34   -1.96   -2.70   -3.54   -4.40   -5.09   -5.40   -5.16   -4.35   -3.09   -1.59    0.01    1.85    4.41    8.28
+   280.0    0.00   -0.12   -0.41   -0.81   -1.32   -1.94   -2.68   -3.51   -4.38   -5.06   -5.36   -5.12   -4.32   -3.06   -1.61   -0.05    1.74    4.24    8.07
+   285.0    0.00   -0.11   -0.41   -0.81   -1.31   -1.92   -2.66   -3.49   -4.35   -5.03   -5.33   -5.10   -4.28   -3.04   -1.61   -0.07    1.67    4.13    7.96
+   290.0    0.00   -0.11   -0.40   -0.79   -1.29   -1.90   -2.64   -3.49   -4.34   -5.02   -5.31   -5.06   -4.24   -3.00   -1.58   -0.06    1.67    4.13    7.98
+   295.0    0.00   -0.11   -0.40   -0.79   -1.29   -1.90   -2.63   -3.48   -4.33   -5.01   -5.30   -5.03   -4.20   -2.96   -1.53   -0.01    1.73    4.21    8.10
+   300.0    0.00   -0.11   -0.40   -0.80   -1.29   -1.90   -2.64   -3.48   -4.34   -5.01   -5.28   -5.00   -4.16   -2.90   -1.45    0.08    1.84    4.36    8.30
+   305.0    0.00   -0.12   -0.40   -0.79   -1.29   -1.91   -2.65   -3.49   -4.33   -5.00   -5.26   -4.96   -4.11   -2.83   -1.37    0.19    2.00    4.57    8.55
+   310.0    0.00   -0.12   -0.40   -0.79   -1.30   -1.92   -2.66   -3.50   -4.34   -4.99   -5.24   -4.93   -4.07   -2.77   -1.28    0.31    2.19    4.82    8.81
+   315.0    0.00   -0.12   -0.39   -0.80   -1.31   -1.92   -2.66   -3.51   -4.33   -4.98   -5.23   -4.91   -4.03   -2.73   -1.20    0.45    2.39    5.06    9.04
+   320.0    0.00   -0.12   -0.39   -0.80   -1.32   -1.94   -2.68   -3.50   -4.33   -4.96   -5.20   -4.88   -4.00   -2.69   -1.12    0.58    2.57    5.28    9.20
+   325.0    0.00   -0.12   -0.40   -0.81   -1.33   -1.95   -2.68   -3.50   -4.32   -4.94   -5.18   -4.87   -4.00   -2.69   -1.10    0.68    2.74    5.46    9.27
+   330.0    0.00   -0.11   -0.40   -0.82   -1.35   -1.96   -2.68   -3.49   -4.29   -4.90   -5.15   -4.87   -4.03   -2.72   -1.09    0.73    2.85    5.57    9.22
+   335.0    0.00   -0.12   -0.40   -0.83   -1.36   -1.98   -2.69   -3.48   -4.26   -4.87   -5.14   -4.89   -4.07   -2.77   -1.13    0.73    2.90    5.60    9.08
+   340.0    0.00   -0.12   -0.41   -0.84   -1.38   -2.00   -2.70   -3.46   -4.23   -4.85   -5.12   -4.91   -4.15   -2.87   -1.22    0.69    2.89    5.55    8.84
+   345.0    0.00   -0.12   -0.41   -0.86   -1.40   -2.01   -2.70   -3.46   -4.21   -4.83   -5.13   -4.96   -4.23   -2.99   -1.34    0.59    2.81    5.42    8.53
+   350.0    0.00   -0.11   -0.42   -0.87   -1.41   -2.02   -2.71   -3.45   -4.19   -4.82   -5.15   -5.02   -4.34   -3.13   -1.50    0.45    2.67    5.24    8.21
+   355.0    0.00   -0.12   -0.43   -0.88   -1.44   -2.04   -2.73   -3.46   -4.20   -4.83   -5.19   -5.10   -4.45   -3.27   -1.66    0.26    2.48    5.01    7.87
+   360.0    0.00   -0.12   -0.42   -0.89   -1.45   -2.07   -2.75   -3.48   -4.22   -4.87   -5.24   -5.18   -4.58   -3.42   -1.83    0.08    2.26    4.75    7.58
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+LEIAR25.R4      NONE                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               5    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     4                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+# Number of Calibrated Antennas:           5                COMMENT             
+# Number of Individual GPS-Calibrations:  10                COMMENT             
+# Number of Individual GLO-Calibrations:  12                COMMENT             
+# GLONASS PCV                                               COMMENT             
+#  derived from Delta PCV per 25.0 MHz                      COMMENT             
+#  for frequency channel number k=0                         COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.88      0.87    159.36                              NORTH / EAST / UP   
+   NOAZI    0.00    0.16    0.62    1.27    1.96    2.51    2.78    2.68    2.20    1.43    0.52   -0.40   -1.18   -1.72   -1.93   -1.66   -0.73    1.05    3.69
+     0.0    0.00    0.19    0.69    1.39    2.11    2.66    2.90    2.74    2.21    1.43    0.54   -0.31   -1.01   -1.51   -1.73   -1.54   -0.73    0.90    3.43
+     5.0    0.00    0.19    0.69    1.38    2.10    2.65    2.88    2.71    2.16    1.36    0.46   -0.40   -1.11   -1.62   -1.85   -1.68   -0.91    0.69    3.22
+    10.0    0.00    0.19    0.68    1.38    2.09    2.63    2.86    2.67    2.12    1.31    0.39   -0.47   -1.20   -1.72   -1.96   -1.81   -1.06    0.52    3.05
+    15.0    0.00    0.18    0.68    1.37    2.08    2.62    2.83    2.65    2.08    1.26    0.34   -0.54   -1.28   -1.81   -2.06   -1.91   -1.16    0.42    2.95
+    20.0    0.00    0.18    0.67    1.35    2.06    2.60    2.81    2.62    2.06    1.23    0.30   -0.60   -1.35   -1.89   -2.14   -1.97   -1.20    0.39    2.91
+    25.0    0.00    0.18    0.66    1.34    2.04    2.58    2.79    2.61    2.05    1.22    0.28   -0.63   -1.41   -1.95   -2.20   -2.00   -1.19    0.43    2.94
+    30.0    0.00    0.17    0.65    1.32    2.02    2.56    2.77    2.60    2.05    1.22    0.27   -0.66   -1.45   -2.00   -2.23   -1.99   -1.13    0.53    3.04
+    35.0    0.00    0.17    0.64    1.31    2.00    2.53    2.76    2.60    2.06    1.24    0.28   -0.66   -1.47   -2.03   -2.24   -1.96   -1.03    0.68    3.18
+    40.0    0.00    0.16    0.63    1.29    1.98    2.51    2.75    2.60    2.07    1.26    0.30   -0.66   -1.48   -2.04   -2.23   -1.90   -0.91    0.84    3.35
+    45.0    0.00    0.16    0.62    1.27    1.96    2.50    2.74    2.60    2.09    1.29    0.32   -0.65   -1.48   -2.04   -2.21   -1.84   -0.79    1.01    3.53
+    50.0    0.00    0.15    0.61    1.26    1.94    2.48    2.73    2.61    2.11    1.31    0.35   -0.63   -1.46   -2.03   -2.18   -1.78   -0.69    1.15    3.71
+    55.0    0.00    0.15    0.60    1.24    1.92    2.46    2.72    2.61    2.12    1.33    0.37   -0.60   -1.44   -2.00   -2.15   -1.73   -0.63    1.25    3.85
+    60.0    0.00    0.14    0.59    1.23    1.90    2.45    2.72    2.61    2.13    1.35    0.39   -0.58   -1.42   -1.98   -2.13   -1.72   -0.61    1.29    3.95
+    65.0    0.00    0.14    0.58    1.21    1.89    2.44    2.71    2.62    2.14    1.36    0.40   -0.57   -1.40   -1.96   -2.11   -1.73   -0.64    1.27    4.00
+    70.0    0.00    0.14    0.57    1.20    1.88    2.44    2.71    2.62    2.14    1.36    0.40   -0.56   -1.38   -1.94   -2.12   -1.76   -0.71    1.20    3.99
+    75.0    0.00    0.13    0.56    1.19    1.87    2.43    2.71    2.62    2.14    1.35    0.40   -0.56   -1.37   -1.93   -2.13   -1.83   -0.83    1.07    3.93
+    80.0    0.00    0.13    0.56    1.18    1.87    2.43    2.72    2.62    2.14    1.34    0.39   -0.56   -1.37   -1.93   -2.15   -1.90   -0.96    0.91    3.82
+    85.0    0.00    0.13    0.55    1.18    1.86    2.43    2.72    2.62    2.13    1.33    0.38   -0.57   -1.37   -1.93   -2.18   -1.98   -1.09    0.75    3.69
+    90.0    0.00    0.12    0.55    1.17    1.86    2.44    2.73    2.63    2.13    1.32    0.37   -0.58   -1.37   -1.94   -2.21   -2.05   -1.21    0.61    3.56
+    95.0    0.00    0.12    0.54    1.17    1.86    2.44    2.74    2.64    2.14    1.32    0.36   -0.58   -1.37   -1.94   -2.22   -2.09   -1.28    0.50    3.44
+   100.0    0.00    0.12    0.54    1.17    1.86    2.45    2.75    2.65    2.15    1.33    0.37   -0.57   -1.36   -1.93   -2.22   -2.10   -1.31    0.46    3.36
+   105.0    0.00    0.12    0.54    1.17    1.87    2.45    2.76    2.66    2.16    1.35    0.39   -0.55   -1.34   -1.90   -2.19   -2.06   -1.27    0.48    3.33
+   110.0    0.00    0.12    0.54    1.17    1.87    2.46    2.76    2.68    2.18    1.38    0.42   -0.51   -1.29   -1.85   -2.13   -1.99   -1.18    0.57    3.36
+   115.0    0.00    0.12    0.54    1.17    1.87    2.46    2.77    2.69    2.21    1.41    0.47   -0.45   -1.23   -1.78   -2.04   -1.87   -1.03    0.72    3.45
+   120.0    0.00    0.12    0.54    1.17    1.87    2.46    2.77    2.70    2.23    1.46    0.53   -0.38   -1.15   -1.69   -1.93   -1.73   -0.85    0.92    3.59
+   125.0    0.00    0.12    0.54    1.17    1.87    2.46    2.78    2.72    2.26    1.51    0.60   -0.29   -1.05   -1.58   -1.80   -1.57   -0.65    1.14    3.77
+   130.0    0.00    0.12    0.54    1.18    1.87    2.46    2.78    2.73    2.29    1.56    0.68   -0.20   -0.94   -1.46   -1.67   -1.40   -0.45    1.36    3.96
+   135.0    0.00    0.12    0.55    1.18    1.87    2.46    2.78    2.74    2.32    1.62    0.76   -0.10   -0.83   -1.34   -1.54   -1.25   -0.28    1.55    4.15
+   140.0    0.00    0.13    0.55    1.19    1.88    2.46    2.78    2.75    2.35    1.66    0.83   -0.01   -0.73   -1.24   -1.42   -1.13   -0.15    1.68    4.29
+   145.0    0.00    0.13    0.56    1.19    1.88    2.47    2.79    2.76    2.37    1.70    0.89    0.06   -0.65   -1.16   -1.34   -1.05   -0.08    1.75    4.38
+   150.0    0.00    0.13    0.56    1.20    1.89    2.47    2.80    2.77    2.39    1.73    0.92    0.11   -0.60   -1.10   -1.29   -1.02   -0.07    1.74    4.39
+   155.0    0.00    0.13    0.57    1.21    1.90    2.48    2.81    2.78    2.41    1.75    0.94    0.12   -0.59   -1.09   -1.29   -1.04   -0.13    1.65    4.33
+   160.0    0.00    0.14    0.57    1.22    1.91    2.49    2.82    2.80    2.42    1.75    0.93    0.11   -0.61   -1.12   -1.33   -1.10   -0.24    1.48    4.18
+   165.0    0.00    0.14    0.58    1.23    1.92    2.51    2.83    2.81    2.42    1.74    0.91    0.06   -0.67   -1.19   -1.41   -1.21   -0.40    1.27    3.96
+   170.0    0.00    0.14    0.59    1.24    1.94    2.52    2.85    2.82    2.42    1.72    0.86   -0.02   -0.76   -1.29   -1.52   -1.34   -0.58    1.02    3.71
+   175.0    0.00    0.15    0.59    1.24    1.95    2.53    2.86    2.82    2.41    1.68    0.79   -0.11   -0.88   -1.41   -1.65   -1.49   -0.77    0.77    3.44
+   180.0    0.00    0.15    0.60    1.25    1.95    2.54    2.86    2.82    2.39    1.64    0.72   -0.22   -1.01   -1.55   -1.78   -1.64   -0.95    0.55    3.18
+   185.0    0.00    0.15    0.61    1.26    1.96    2.55    2.86    2.81    2.36    1.59    0.64   -0.32   -1.13   -1.68   -1.92   -1.77   -1.09    0.37    2.98
+   190.0    0.00    0.16    0.61    1.26    1.96    2.54    2.85    2.79    2.33    1.54    0.57   -0.42   -1.24   -1.80   -2.03   -1.87   -1.20    0.25    2.85
+   195.0    0.00    0.16    0.62    1.27    1.96    2.53    2.83    2.76    2.29    1.49    0.51   -0.49   -1.33   -1.90   -2.12   -1.95   -1.26    0.21    2.80
+   200.0    0.00    0.16    0.62    1.27    1.96    2.52    2.81    2.73    2.25    1.45    0.46   -0.55   -1.39   -1.97   -2.19   -2.00   -1.27    0.24    2.86
+   205.0    0.00    0.17    0.63    1.27    1.95    2.50    2.78    2.69    2.21    1.41    0.43   -0.57   -1.42   -2.00   -2.22   -2.01   -1.23    0.34    3.00
+   210.0    0.00    0.17    0.63    1.27    1.94    2.48    2.74    2.64    2.17    1.39    0.42   -0.57   -1.43   -2.01   -2.24   -2.00   -1.16    0.49    3.21
+   215.0    0.00    0.17    0.63    1.27    1.93    2.45    2.71    2.60    2.14    1.37    0.42   -0.56   -1.41   -2.00   -2.23   -1.97   -1.07    0.68    3.46
+   220.0    0.00    0.17    0.63    1.27    1.92    2.43    2.67    2.57    2.11    1.36    0.43   -0.52   -1.37   -1.98   -2.21   -1.93   -0.96    0.88    3.73
+   225.0    0.00    0.18    0.64    1.27    1.91    2.41    2.64    2.53    2.08    1.35    0.45   -0.49   -1.33   -1.95   -2.19   -1.90   -0.87    1.06    3.98
+   230.0    0.00    0.18    0.64    1.27    1.91    2.40    2.63    2.51    2.07    1.35    0.47   -0.46   -1.30   -1.92   -2.18   -1.87   -0.80    1.21    4.17
+   235.0    0.00    0.18    0.64    1.27    1.91    2.40    2.62    2.50    2.06    1.35    0.48   -0.44   -1.28   -1.91   -2.18   -1.86   -0.75    1.31    4.29
+   240.0    0.00    0.18    0.65    1.27    1.91    2.40    2.62    2.50    2.05    1.35    0.48   -0.43   -1.27   -1.92   -2.19   -1.87   -0.74    1.35    4.33
+   245.0    0.00    0.19    0.65    1.28    1.92    2.41    2.63    2.51    2.06    1.34    0.47   -0.45   -1.29   -1.93   -2.21   -1.90   -0.77    1.33    4.27
+   250.0    0.00    0.19    0.65    1.29    1.93    2.43    2.65    2.52    2.06    1.33    0.45   -0.48   -1.32   -1.97   -2.25   -1.94   -0.82    1.25    4.12
+   255.0    0.00    0.19    0.66    1.29    1.94    2.45    2.67    2.54    2.07    1.32    0.41   -0.52   -1.37   -2.01   -2.28   -1.99   -0.90    1.13    3.92
+   260.0    0.00    0.19    0.66    1.30    1.96    2.47    2.70    2.57    2.07    1.30    0.38   -0.57   -1.41   -2.04   -2.32   -2.04   -0.98    0.98    3.68
+   265.0    0.00    0.19    0.67    1.31    1.98    2.50    2.73    2.59    2.08    1.29    0.34   -0.61   -1.45   -2.07   -2.34   -2.07   -1.06    0.83    3.44
+   270.0    0.00    0.20    0.67    1.32    1.99    2.52    2.76    2.61    2.09    1.27    0.31   -0.65   -1.48   -2.08   -2.34   -2.09   -1.13    0.69    3.23
+   275.0    0.00    0.20    0.67    1.33    2.01    2.54    2.78    2.63    2.10    1.27    0.29   -0.67   -1.48   -2.07   -2.32   -2.09   -1.17    0.59    3.07
+   280.0    0.00    0.20    0.68    1.33    2.02    2.56    2.80    2.65    2.11    1.27    0.29   -0.66   -1.46   -2.03   -2.27   -2.05   -1.17    0.54    2.98
+   285.0    0.00    0.20    0.68    1.34    2.03    2.57    2.82    2.67    2.12    1.29    0.31   -0.63   -1.41   -1.96   -2.20   -1.99   -1.13    0.55    2.99
+   290.0    0.00    0.20    0.68    1.35    2.04    2.59    2.83    2.69    2.15    1.32    0.35   -0.57   -1.33   -1.87   -2.10   -1.89   -1.04    0.63    3.07
+   295.0    0.00    0.20    0.69    1.35    2.04    2.60    2.85    2.70    2.17    1.36    0.42   -0.49   -1.24   -1.76   -1.98   -1.77   -0.91    0.77    3.24
+   300.0    0.00    0.20    0.69    1.36    2.05    2.60    2.86    2.72    2.21    1.41    0.49   -0.39   -1.13   -1.64   -1.85   -1.62   -0.75    0.96    3.46
+   305.0    0.00    0.20    0.69    1.36    2.06    2.61    2.87    2.75    2.25    1.47    0.57   -0.29   -1.01   -1.51   -1.71   -1.47   -0.57    1.17    3.71
+   310.0    0.00    0.20    0.69    1.36    2.06    2.62    2.88    2.77    2.29    1.53    0.66   -0.19   -0.90   -1.40   -1.59   -1.32   -0.39    1.39    3.97
+   315.0    0.00    0.21    0.70    1.37    2.07    2.63    2.90    2.79    2.33    1.59    0.73   -0.10   -0.81   -1.30   -1.47   -1.19   -0.22    1.60    4.20
+   320.0    0.00    0.21    0.70    1.37    2.08    2.64    2.91    2.81    2.36    1.64    0.80   -0.03   -0.73   -1.22   -1.38   -1.07   -0.08    1.77    4.37
+   325.0    0.00    0.20    0.70    1.38    2.08    2.65    2.92    2.83    2.39    1.68    0.84    0.02   -0.68   -1.17   -1.32   -1.00    0.02    1.87    4.49
+   330.0    0.00    0.20    0.70    1.38    2.09    2.66    2.93    2.84    2.40    1.69    0.86    0.04   -0.66   -1.14   -1.30   -0.96    0.06    1.91    4.52
+   335.0    0.00    0.20    0.70    1.39    2.10    2.66    2.94    2.85    2.40    1.69    0.85    0.03   -0.67   -1.15   -1.30   -0.97    0.04    1.88    4.47
+   340.0    0.00    0.20    0.70    1.39    2.10    2.67    2.94    2.84    2.38    1.66    0.82   -0.01   -0.71   -1.19   -1.34   -1.03   -0.04    1.77    4.34
+   345.0    0.00    0.20    0.70    1.39    2.11    2.67    2.94    2.83    2.35    1.62    0.77   -0.06   -0.76   -1.24   -1.41   -1.12   -0.17    1.60    4.15
+   350.0    0.00    0.20    0.70    1.39    2.11    2.67    2.93    2.80    2.31    1.56    0.70   -0.14   -0.84   -1.32   -1.50   -1.24   -0.34    1.38    3.92
+   355.0    0.00    0.20    0.70    1.39    2.11    2.67    2.92    2.77    2.27    1.50    0.62   -0.22   -0.92   -1.41   -1.61   -1.39   -0.53    1.14    3.68
+   360.0    0.00    0.19    0.69    1.39    2.11    2.66    2.90    2.74    2.21    1.43    0.54   -0.31   -1.01   -1.51   -1.73   -1.54   -0.73    0.90    3.43
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.12      0.02    153.58                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.14   -0.53   -1.08   -1.70   -2.34   -3.03   -3.76   -4.51   -5.13   -5.43   -5.20   -4.37   -3.04   -1.40    0.44    2.55    5.28    9.08
+     0.0    0.00   -0.18   -0.60   -1.18   -1.80   -2.43   -3.07   -3.74   -4.43   -5.01   -5.32   -5.18   -4.48   -3.28   -1.71    0.13    2.28    4.97    8.48
+     5.0    0.00   -0.18   -0.60   -1.18   -1.82   -2.45   -3.11   -3.79   -4.48   -5.07   -5.39   -5.25   -4.57   -3.39   -1.85   -0.04    2.09    4.79    8.37
+    10.0    0.00   -0.18   -0.60   -1.18   -1.83   -2.48   -3.14   -3.83   -4.53   -5.13   -5.45   -5.32   -4.65   -3.48   -1.96   -0.18    1.93    4.64    8.30
+    15.0    0.00   -0.17   -0.60   -1.19   -1.84   -2.50   -3.17   -3.88   -4.58   -5.18   -5.50   -5.37   -4.70   -3.55   -2.04   -0.28    1.82    4.55    8.30
+    20.0    0.00   -0.17   -0.60   -1.19   -1.85   -2.52   -3.21   -3.92   -4.62   -5.22   -5.54   -5.40   -4.73   -3.58   -2.08   -0.33    1.77    4.52    8.36
+    25.0    0.00   -0.17   -0.59   -1.19   -1.85   -2.54   -3.23   -3.95   -4.66   -5.25   -5.56   -5.41   -4.73   -3.58   -2.07   -0.32    1.77    4.55    8.46
+    30.0    0.00   -0.17   -0.59   -1.18   -1.85   -2.55   -3.25   -3.97   -4.68   -5.27   -5.57   -5.41   -4.71   -3.54   -2.03   -0.27    1.84    4.64    8.62
+    35.0    0.00   -0.16   -0.59   -1.18   -1.85   -2.55   -3.26   -3.98   -4.69   -5.28   -5.56   -5.39   -4.67   -3.48   -1.95   -0.17    1.95    4.77    8.80
+    40.0    0.00   -0.16   -0.58   -1.17   -1.85   -2.55   -3.26   -3.98   -4.69   -5.27   -5.55   -5.36   -4.62   -3.40   -1.84   -0.04    2.09    4.94    9.00
+    45.0    0.00   -0.16   -0.57   -1.16   -1.84   -2.54   -3.25   -3.97   -4.68   -5.26   -5.53   -5.32   -4.56   -3.31   -1.72    0.10    2.26    5.12    9.21
+    50.0    0.00   -0.15   -0.57   -1.15   -1.82   -2.52   -3.23   -3.96   -4.67   -5.25   -5.51   -5.28   -4.50   -3.21   -1.60    0.25    2.42    5.30    9.40
+    55.0    0.00   -0.15   -0.56   -1.14   -1.80   -2.49   -3.20   -3.93   -4.65   -5.23   -5.49   -5.25   -4.44   -3.12   -1.48    0.38    2.57    5.45    9.56
+    60.0    0.00   -0.15   -0.55   -1.12   -1.78   -2.47   -3.17   -3.91   -4.63   -5.21   -5.47   -5.21   -4.38   -3.05   -1.38    0.49    2.68    5.57    9.68
+    65.0    0.00   -0.14   -0.54   -1.11   -1.76   -2.43   -3.14   -3.88   -4.60   -5.19   -5.45   -5.19   -4.34   -2.98   -1.31    0.57    2.75    5.63    9.74
+    70.0    0.00   -0.14   -0.53   -1.09   -1.73   -2.40   -3.10   -3.84   -4.58   -5.18   -5.44   -5.17   -4.31   -2.94   -1.26    0.61    2.77    5.63    9.74
+    75.0    0.00   -0.14   -0.52   -1.07   -1.70   -2.37   -3.07   -3.81   -4.56   -5.17   -5.43   -5.16   -4.28   -2.91   -1.24    0.61    2.74    5.58    9.67
+    80.0    0.00   -0.13   -0.51   -1.06   -1.68   -2.33   -3.03   -3.78   -4.54   -5.16   -5.42   -5.15   -4.27   -2.89   -1.24    0.58    2.68    5.49    9.55
+    85.0    0.00   -0.13   -0.51   -1.04   -1.65   -2.30   -3.00   -3.75   -4.52   -5.15   -5.41   -5.14   -4.25   -2.89   -1.25    0.53    2.59    5.36    9.38
+    90.0    0.00   -0.13   -0.50   -1.03   -1.63   -2.27   -2.96   -3.72   -4.50   -5.13   -5.40   -5.13   -4.24   -2.89   -1.27    0.48    2.49    5.22    9.20
+    95.0    0.00   -0.12   -0.49   -1.01   -1.61   -2.24   -2.93   -3.70   -4.47   -5.11   -5.39   -5.11   -4.23   -2.88   -1.28    0.44    2.41    5.09    9.00
+   100.0    0.00   -0.12   -0.48   -1.00   -1.59   -2.22   -2.91   -3.67   -4.45   -5.09   -5.37   -5.10   -4.22   -2.87   -1.29    0.41    2.36    4.99    8.83
+   105.0    0.00   -0.12   -0.48   -0.99   -1.58   -2.20   -2.89   -3.65   -4.43   -5.07   -5.35   -5.08   -4.20   -2.86   -1.27    0.41    2.34    4.94    8.69
+   110.0    0.00   -0.12   -0.48   -0.99   -1.57   -2.19   -2.87   -3.62   -4.40   -5.05   -5.33   -5.05   -4.17   -2.83   -1.24    0.45    2.37    4.93    8.61
+   115.0    0.00   -0.11   -0.47   -0.98   -1.56   -2.18   -2.86   -3.61   -4.38   -5.02   -5.30   -5.02   -4.15   -2.79   -1.19    0.52    2.45    4.99    8.59
+   120.0    0.00   -0.11   -0.47   -0.98   -1.56   -2.18   -2.85   -3.59   -4.36   -4.99   -5.27   -5.00   -4.11   -2.75   -1.12    0.62    2.56    5.09    8.64
+   125.0    0.00   -0.11   -0.47   -0.98   -1.56   -2.18   -2.84   -3.58   -4.34   -4.97   -5.25   -4.97   -4.08   -2.70   -1.04    0.73    2.71    5.23    8.73
+   130.0    0.00   -0.11   -0.47   -0.98   -1.56   -2.18   -2.84   -3.57   -4.32   -4.95   -5.23   -4.95   -4.06   -2.65   -0.96    0.85    2.85    5.38    8.86
+   135.0    0.00   -0.11   -0.47   -0.98   -1.57   -2.18   -2.84   -3.57   -4.31   -4.94   -5.21   -4.94   -4.04   -2.62   -0.90    0.95    2.98    5.52    9.00
+   140.0    0.00   -0.11   -0.47   -0.98   -1.57   -2.19   -2.85   -3.57   -4.31   -4.93   -5.21   -4.93   -4.03   -2.60   -0.85    1.03    3.08    5.63    9.12
+   145.0    0.00   -0.11   -0.47   -0.99   -1.58   -2.20   -2.85   -3.57   -4.31   -4.93   -5.21   -4.94   -4.04   -2.59   -0.83    1.06    3.13    5.69    9.21
+   150.0    0.00   -0.11   -0.47   -0.99   -1.58   -2.20   -2.86   -3.58   -4.32   -4.94   -5.22   -4.96   -4.06   -2.62   -0.85    1.05    3.11    5.68    9.24
+   155.0    0.00   -0.11   -0.47   -0.99   -1.59   -2.21   -2.87   -3.59   -4.33   -4.96   -5.25   -4.99   -4.10   -2.66   -0.91    0.98    3.03    5.60    9.21
+   160.0    0.00   -0.11   -0.47   -0.99   -1.59   -2.21   -2.88   -3.60   -4.35   -4.98   -5.28   -5.03   -4.15   -2.74   -1.00    0.86    2.90    5.46    9.12
+   165.0    0.00   -0.11   -0.47   -0.99   -1.59   -2.22   -2.89   -3.61   -4.36   -5.00   -5.31   -5.08   -4.22   -2.83   -1.12    0.71    2.72    5.27    8.98
+   170.0    0.00   -0.11   -0.47   -1.00   -1.59   -2.22   -2.89   -3.63   -4.39   -5.03   -5.36   -5.14   -4.31   -2.94   -1.27    0.53    2.51    5.06    8.81
+   175.0    0.00   -0.11   -0.47   -0.99   -1.59   -2.22   -2.90   -3.64   -4.41   -5.07   -5.40   -5.21   -4.40   -3.07   -1.43    0.34    2.30    4.85    8.64
+   180.0    0.00   -0.11   -0.47   -0.99   -1.59   -2.23   -2.91   -3.65   -4.43   -5.10   -5.46   -5.28   -4.50   -3.19   -1.59    0.16    2.11    4.67    8.49
+   185.0    0.00   -0.11   -0.47   -0.99   -1.59   -2.23   -2.91   -3.67   -4.46   -5.14   -5.51   -5.35   -4.59   -3.31   -1.73    0.00    1.95    4.54    8.39
+   190.0    0.00   -0.11   -0.47   -0.99   -1.59   -2.23   -2.92   -3.69   -4.49   -5.18   -5.56   -5.42   -4.68   -3.42   -1.85   -0.12    1.86    4.48    8.37
+   195.0    0.00   -0.11   -0.47   -0.99   -1.59   -2.23   -2.93   -3.71   -4.52   -5.22   -5.61   -5.48   -4.75   -3.51   -1.94   -0.19    1.83    4.51    8.43
+   200.0    0.00   -0.11   -0.47   -0.99   -1.59   -2.24   -2.94   -3.73   -4.55   -5.27   -5.66   -5.53   -4.81   -3.57   -1.99   -0.21    1.87    4.62    8.57
+   205.0    0.00   -0.11   -0.47   -0.99   -1.59   -2.24   -2.96   -3.76   -4.59   -5.30   -5.70   -5.57   -4.84   -3.59   -2.00   -0.17    1.97    4.79    8.79
+   210.0    0.00   -0.12   -0.48   -0.99   -1.60   -2.25   -2.97   -3.78   -4.62   -5.34   -5.73   -5.59   -4.85   -3.59   -1.96   -0.10    2.11    5.01    9.05
+   215.0    0.00   -0.12   -0.48   -1.00   -1.60   -2.26   -2.99   -3.81   -4.65   -5.37   -5.75   -5.60   -4.84   -3.55   -1.90    0.01    2.29    5.26    9.33
+   220.0    0.00   -0.12   -0.48   -1.00   -1.60   -2.27   -3.01   -3.83   -4.68   -5.40   -5.76   -5.59   -4.81   -3.49   -1.81    0.15    2.47    5.50    9.58
+   225.0    0.00   -0.12   -0.49   -1.01   -1.61   -2.28   -3.03   -3.86   -4.71   -5.42   -5.77   -5.57   -4.76   -3.41   -1.70    0.28    2.64    5.70    9.80
+   230.0    0.00   -0.13   -0.49   -1.01   -1.62   -2.29   -3.04   -3.87   -4.72   -5.42   -5.76   -5.54   -4.70   -3.32   -1.59    0.41    2.78    5.84    9.93
+   235.0    0.00   -0.13   -0.50   -1.02   -1.63   -2.30   -3.05   -3.88   -4.73   -5.43   -5.74   -5.50   -4.63   -3.23   -1.48    0.52    2.88    5.92    9.98
+   240.0    0.00   -0.13   -0.50   -1.03   -1.64   -2.31   -3.06   -3.89   -4.73   -5.42   -5.72   -5.45   -4.56   -3.14   -1.39    0.59    2.92    5.92    9.93
+   245.0    0.00   -0.14   -0.51   -1.03   -1.65   -2.32   -3.06   -3.89   -4.73   -5.40   -5.69   -5.40   -4.49   -3.06   -1.31    0.64    2.91    5.84    9.80
+   250.0    0.00   -0.14   -0.51   -1.04   -1.66   -2.32   -3.06   -3.88   -4.71   -5.38   -5.66   -5.36   -4.43   -3.00   -1.26    0.65    2.85    5.71    9.61
+   255.0    0.00   -0.14   -0.52   -1.05   -1.67   -2.33   -3.06   -3.87   -4.69   -5.36   -5.63   -5.32   -4.39   -2.95   -1.24    0.63    2.76    5.54    9.39
+   260.0    0.00   -0.15   -0.53   -1.07   -1.68   -2.33   -3.06   -3.86   -4.67   -5.32   -5.59   -5.28   -4.35   -2.92   -1.23    0.59    2.65    5.36    9.16
+   265.0    0.00   -0.15   -0.54   -1.08   -1.69   -2.34   -3.05   -3.84   -4.64   -5.29   -5.56   -5.25   -4.33   -2.91   -1.24    0.54    2.54    5.18    8.95
+   270.0    0.00   -0.15   -0.55   -1.09   -1.70   -2.35   -3.05   -3.82   -4.61   -5.26   -5.53   -5.23   -4.31   -2.91   -1.26    0.49    2.45    5.05    8.81
+   275.0    0.00   -0.16   -0.55   -1.10   -1.71   -2.35   -3.04   -3.80   -4.58   -5.22   -5.49   -5.20   -4.29   -2.91   -1.27    0.45    2.38    4.96    8.73
+   280.0    0.00   -0.16   -0.56   -1.11   -1.72   -2.36   -3.04   -3.79   -4.55   -5.18   -5.46   -5.17   -4.28   -2.90   -1.28    0.43    2.36    4.94    8.74
+   285.0    0.00   -0.16   -0.57   -1.12   -1.73   -2.36   -3.04   -3.77   -4.52   -5.15   -5.42   -5.14   -4.26   -2.89   -1.28    0.44    2.38    4.99    8.82
+   290.0    0.00   -0.17   -0.57   -1.13   -1.74   -2.37   -3.03   -3.75   -4.49   -5.11   -5.37   -5.10   -4.23   -2.87   -1.26    0.47    2.44    5.09    8.97
+   295.0    0.00   -0.17   -0.58   -1.14   -1.75   -2.37   -3.03   -3.74   -4.46   -5.06   -5.32   -5.06   -4.19   -2.84   -1.23    0.53    2.55    5.25    9.15
+   300.0    0.00   -0.17   -0.59   -1.15   -1.76   -2.38   -3.02   -3.72   -4.43   -5.02   -5.27   -5.01   -4.15   -2.80   -1.17    0.61    2.68    5.43    9.36
+   305.0    0.00   -0.17   -0.59   -1.15   -1.76   -2.38   -3.02   -3.70   -4.40   -4.97   -5.22   -4.95   -4.10   -2.76   -1.12    0.71    2.82    5.61    9.55
+   310.0    0.00   -0.18   -0.59   -1.16   -1.77   -2.38   -3.01   -3.68   -4.37   -4.93   -5.17   -4.90   -4.06   -2.71   -1.06    0.80    2.97    5.79    9.70
+   315.0    0.00   -0.18   -0.60   -1.16   -1.77   -2.38   -3.00   -3.67   -4.34   -4.89   -5.13   -4.86   -4.02   -2.68   -1.00    0.89    3.09    5.93    9.79
+   320.0    0.00   -0.18   -0.60   -1.16   -1.77   -2.38   -3.00   -3.65   -4.31   -4.86   -5.09   -4.83   -3.99   -2.65   -0.97    0.95    3.18    6.03    9.82
+   325.0    0.00   -0.18   -0.60   -1.17   -1.77   -2.38   -2.99   -3.63   -4.29   -4.83   -5.07   -4.81   -3.99   -2.65   -0.96    0.98    3.23    6.06    9.78
+   330.0    0.00   -0.18   -0.60   -1.17   -1.77   -2.37   -2.98   -3.63   -4.28   -4.82   -5.06   -4.81   -4.00   -2.67   -0.98    0.96    3.22    6.04    9.67
+   335.0    0.00   -0.18   -0.60   -1.17   -1.77   -2.38   -2.98   -3.62   -4.27   -4.82   -5.07   -4.84   -4.04   -2.73   -1.04    0.91    3.16    5.95    9.50
+   340.0    0.00   -0.18   -0.61   -1.17   -1.78   -2.38   -2.99   -3.63   -4.28   -4.83   -5.09   -4.88   -4.10   -2.81   -1.13    0.81    3.05    5.81    9.30
+   345.0    0.00   -0.18   -0.61   -1.17   -1.78   -2.39   -3.00   -3.64   -4.30   -4.86   -5.13   -4.94   -4.18   -2.91   -1.26    0.67    2.89    5.62    9.07
+   350.0    0.00   -0.18   -0.61   -1.17   -1.79   -2.40   -3.02   -3.67   -4.34   -4.90   -5.19   -5.01   -4.28   -3.03   -1.40    0.50    2.70    5.41    8.85
+   355.0    0.00   -0.18   -0.61   -1.18   -1.79   -2.41   -3.04   -3.70   -4.38   -4.95   -5.25   -5.09   -4.38   -3.16   -1.55    0.31    2.49    5.19    8.65
+   360.0    0.00   -0.18   -0.60   -1.18   -1.80   -2.43   -3.07   -3.74   -4.43   -5.01   -5.32   -5.18   -4.48   -3.28   -1.71    0.13    2.28    4.97    8.48
+   G02                                                      END OF FREQUENCY    
+   R01                                                      START OF FREQUENCY  
+      0.88      0.87    159.36                              NORTH / EAST / UP   
+   NOAZI    0.00    0.09    0.32    0.70    1.10    1.43    1.57    1.40    0.90    0.15   -0.71   -1.55   -2.21   -2.64   -2.79   -2.55   -1.71    0.04    2.92
+     0.0    0.00    0.09    0.35    0.73    1.15    1.51    1.66    1.47    0.94    0.16   -0.74   -1.59   -2.24   -2.69   -2.89   -2.75   -2.03   -0.37    2.55
+     5.0    0.00    0.09    0.35    0.73    1.16    1.52    1.66    1.47    0.91    0.08   -0.85   -1.71   -2.38   -2.83   -3.05   -2.95   -2.29   -0.66    2.32
+    10.0    0.00    0.09    0.35    0.74    1.17    1.52    1.66    1.43    0.85    0.01   -0.95   -1.81   -2.50   -2.95   -3.18   -3.12   -2.50   -0.88    2.18
+    15.0    0.00    0.08    0.35    0.74    1.18    1.51    1.63    1.40    0.79   -0.08   -1.04   -1.92   -2.60   -3.05   -3.28   -3.23   -2.62   -0.99    2.15
+    20.0    0.00    0.09    0.35    0.73    1.16    1.50    1.60    1.34    0.73   -0.15   -1.11   -2.00   -2.69   -3.13   -3.36   -3.28   -2.65   -0.99    2.21
+    25.0    0.00    0.09    0.34    0.72    1.15    1.47    1.56    1.30    0.68   -0.20   -1.18   -2.05   -2.75   -3.19   -3.40   -3.28   -2.59   -0.89    2.36
+    30.0    0.00    0.08    0.34    0.71    1.13    1.44    1.52    1.26    0.65   -0.24   -1.21   -2.11   -2.79   -3.23   -3.41   -3.22   -2.47   -0.70    2.56
+    35.0    0.00    0.08    0.34    0.71    1.12    1.41    1.48    1.23    0.64   -0.24   -1.21   -2.11   -2.81   -3.25   -3.40   -3.15   -2.30   -0.46    2.78
+    40.0    0.00    0.09    0.33    0.71    1.10    1.38    1.46    1.22    0.63   -0.21   -1.17   -2.08   -2.82   -3.26   -3.38   -3.06   -2.09   -0.20    2.98
+    45.0    0.00    0.09    0.33    0.70    1.09    1.37    1.45    1.22    0.67   -0.16   -1.12   -2.05   -2.80   -3.26   -3.36   -2.96   -1.90    0.05    3.15
+    50.0    0.00    0.08    0.33    0.70    1.07    1.36    1.44    1.24    0.72   -0.08   -1.03   -1.99   -2.76   -3.25   -3.33   -2.88   -1.73    0.26    3.26
+    55.0    0.00    0.09    0.33    0.69    1.06    1.35    1.45    1.27    0.77   -1.33   -0.95   -1.90   -2.72   -3.22   -3.30   -2.80   -1.62    0.39    3.31
+    60.0    0.00    0.08    0.32    0.69    1.05    1.35    1.48    1.31    0.84    0.10   -0.84   -1.81   -2.65   -3.19   -3.28   -2.77   -1.57    0.45    3.28
+    65.0    0.00    0.08    0.32    0.68    1.06    1.37    1.49    1.37    0.92    0.19   -0.75   -1.73   -2.58   -3.14   -3.25   -2.77   -1.58    0.42    3.19
+    70.0    0.00    0.08    0.31    0.68    1.06    1.39    1.52    1.41    0.98    0.26   -0.66   -1.64   -2.51   -3.09   -3.24   -2.78   -1.62    0.34    3.07
+    75.0    0.00    0.07    0.32    0.68    1.06    1.40    1.55    1.45    1.03    0.32   -0.59   -1.56   -2.42   -3.01   -3.19   -2.82   -1.73    0.19    2.91
+    80.0    0.00    0.08    0.32    0.67    1.08    1.42    1.59    1.48    1.08    0.36   -0.53   -1.48   -2.34   -2.94   -3.15   -2.85   -1.84    0.02    2.75
+    85.0    0.00    0.08    0.32    0.68    1.08    1.44    1.61    1.51    1.10    0.39   -0.49   -1.43   -2.25   -2.84   -3.10   -2.86   -1.94   -0.13    2.62
+    90.0    0.00    0.07    0.32    0.68    1.09    1.46    1.63    1.53    1.11    0.41   -0.47   -1.38   -2.18   -2.76   -3.03   -2.86   -2.02   -0.25    2.53
+    95.0    0.00    0.07    0.31    0.68    1.11    1.47    1.67    1.56    1.13    0.42   -0.45   -1.33   -2.09   -2.65   -2.93   -2.81   -2.03   -0.32    2.49
+   100.0    0.00    0.07    0.31    0.68    1.12    1.49    1.69    1.58    1.14    0.43   -0.43   -1.28   -2.01   -2.55   -2.83   -2.73   -1.99   -0.29    2.54
+   105.0    0.00    0.07    0.31    0.68    1.13    1.50    1.71    1.59    1.15    0.45   -0.40   -1.23   -1.92   -2.42   -2.69   -2.59   -1.88   -0.20    2.65
+   110.0    0.00    0.06    0.31    0.68    1.13    1.52    1.71    1.62    1.18    0.48   -0.37   -1.17   -1.83   -2.30   -2.53   -2.43   -1.70   -0.03    2.83
+   115.0    0.00    0.06    0.30    0.68    1.13    1.52    1.73    1.64    1.21    0.51   -0.31   -1.10   -1.74   -2.17   -2.38   -2.23   -1.49    0.20    3.06
+   120.0    0.00    0.06    0.30    0.67    1.13    1.52    1.75    1.67    1.25    0.58   -0.25   -1.02   -1.65   -2.06   -2.23   -2.04   -1.24    0.47    3.30
+   125.0    0.00    0.06    0.28    0.66    1.12    1.54    1.77    1.71    1.30    0.64   -0.17   -0.93   -1.55   -1.95   -2.09   -1.85   -1.00    0.74    3.57
+   130.0    0.00    0.06    0.28    0.66    1.12    1.54    1.78    1.74    1.35    0.71   -0.07   -0.85   -1.46   -1.84   -1.96   -1.68   -0.79    0.99    3.80
+   135.0    0.00    0.05    0.28    0.65    1.10    1.52    1.79    1.77    1.42    0.79    0.01   -0.76   -1.38   -1.77   -1.86   -1.55   -0.63    1.17    4.00
+   140.0    0.00    0.06    0.27    0.65    1.10    1.52    1.79    1.79    1.47    0.84    0.08   -0.70   -1.31   -1.71   -1.79   -1.47   -0.54    1.27    4.11
+   145.0    0.00    0.06    0.27    0.64    1.08    1.52    1.80    1.81    1.50    0.88    0.12   -0.65   -1.29   -1.69   -1.78   -1.45   -0.54    1.26    4.14
+   150.0    0.00    0.06    0.26    0.64    1.08    1.51    1.81    1.82    1.51    0.90    0.13   -0.64   -1.29   -1.68   -1.79   -1.50   -0.61    1.17    4.05
+   155.0    0.00    0.04    0.27    0.64    1.08    1.51    1.81    1.82    1.52    0.90    0.11   -0.69   -1.33   -1.74   -1.85   -1.60   -0.77    0.96    3.87
+   160.0    0.00    0.05    0.26    0.62    1.07    1.50    1.80    1.82    1.50    0.86    0.05   -0.75   -1.41   -1.83   -1.96   -1.74   -0.98    0.66    3.58
+   165.0    0.00    0.05    0.26    0.62    1.07    1.51    1.79    1.80    1.45    0.79   -0.04   -0.86   -1.53   -1.96   -2.10   -1.92   -1.25    0.30    3.22
+   170.0    0.00    0.05    0.27    0.62    1.07    1.50    1.78    1.77    1.40    0.71   -0.15   -1.01   -1.68   -2.11   -2.26   -2.13   -1.54   -0.09    2.82
+   175.0    0.00    0.06    0.27    0.62    1.07    1.49    1.76    1.72    1.34    0.60   -0.31   -1.17   -1.86   -2.27   -2.45   -2.34   -1.82   -0.47    2.38
+   180.0    0.00    0.06    0.27    0.62    1.07    1.49    1.73    1.68    1.25    0.48   -0.45   -1.36   -2.05   -2.46   -2.62   -2.55   -2.10   -0.81    1.97
+   185.0    0.00    0.06    0.28    0.63    1.07    1.48    1.71    1.63    1.16    0.37   -0.60   -1.53   -2.23   -2.64   -2.80   -2.74   -2.31   -1.11    1.62
+   190.0    0.00    0.07    0.28    0.63    1.07    1.46    1.67    1.57    1.08    0.24   -0.75   -1.70   -2.39   -2.80   -2.95   -2.89   -2.50   -1.31    1.36
+   195.0    0.00    0.07    0.30    0.65    1.07    1.43    1.63    1.49    0.97    0.13   -0.87   -1.82   -2.53   -2.94   -3.09   -3.01   -2.61   -1.43    1.22
+   200.0    0.00    0.07    0.30    0.65    1.07    1.42    1.59    1.42    0.88    0.03   -0.98   -1.92   -2.62   -3.04   -3.19   -3.11   -2.66   -1.44    1.21
+   205.0    0.00    0.08    0.32    0.66    1.07    1.39    1.54    1.34    0.79   -0.07   -1.06   -1.98   -2.69   -3.11   -3.26   -3.16   -2.64   -1.35    1.32
+   210.0    0.00    0.08    0.32    0.67    1.06    1.37    1.47    1.26    0.70   -0.13   -1.10   -2.01   -2.72   -3.14   -3.30   -3.17   -2.58   -1.19    1.54
+   215.0    0.00    0.08    0.33    0.69    1.06    1.34    1.42    1.19    0.63   -0.19   -1.13   -2.02   -2.71   -3.14   -3.31   -3.16   -2.49   -0.97    1.83
+   220.0    0.00    0.08    0.34    0.71    1.07    1.33    1.37    1.12    0.56   -0.25   -1.14   -1.98   -2.67   -3.12   -3.31   -3.13   -2.37   -0.73    2.18
+   225.0    0.00    0.11    0.36    0.72    1.07    1.31    1.33    1.05    0.50   -0.28   -1.13   -1.95   -2.61   -3.08   -3.29   -3.10   -2.26   -0.48    2.52
+   230.0    0.00    0.11    0.37    0.74    1.09    1.32    1.32    1.02    0.45   -0.30   -1.12   -1.91   -2.55   -3.04   -3.26   -3.06   -2.16   -0.26    2.82
+   235.0    0.00    0.11    0.37    0.75    1.11    1.34    1.32    1.00    0.43   -0.31   -1.10   -1.86   -2.51   -2.99   -3.24   -3.03   -2.08   -0.09    3.04
+   240.0    0.00    0.11    0.39    0.77    1.13    1.36    1.33    1.01    0.43   -0.30   -1.09   -1.83   -2.47   -2.97   -3.22   -3.01   -2.03    0.01    3.16
+   245.0    0.00    0.12    0.41    0.79    1.17    1.40    1.36    1.04    0.45   -0.30   -1.08   -1.82   -2.46   -2.95   -3.21   -3.01   -2.01    0.04    3.16
+   250.0    0.00    0.13    0.42    0.82    1.21    1.44    1.42    1.08    0.50   -0.26   -1.06   -1.82   -2.46   -2.96   -3.22   -3.00   -2.02    0.01    3.05
+   255.0    0.00    0.13    0.43    0.83    1.23    1.49    1.48    1.15    0.55   -0.23   -1.06   -1.82   -2.47   -2.97   -3.22   -3.02   -2.07   -0.09    2.86
+   260.0    0.00    0.13    0.43    0.85    1.27    1.53    1.54    1.23    0.60   -0.20   -1.03   -1.82   -2.47   -2.96   -3.21   -3.03   -2.12   -0.22    2.61
+   265.0    0.00    0.13    0.44    0.86    1.30    1.59    1.60    1.29    0.68   -0.15   -1.02   -1.82   -2.47   -2.96   -3.20   -3.03   -2.17   -0.36    2.34
+   270.0    0.00    0.14    0.44    0.87    1.31    1.62    1.66    1.36    0.74   -0.10   -1.00   -1.81   -2.47   -2.94   -3.17   -3.00   -2.20   -0.49    2.12
+   275.0    0.00    0.14    0.44    0.87    1.32    1.64    1.70    1.41    0.79   -0.05   -0.96   -1.79   -2.43   -2.89   -3.12   -2.97   -2.20   -0.56    1.97
+   280.0    0.00    0.13    0.44    0.86    1.32    1.65    1.72    1.44    0.82   -0.02   -0.92   -1.73   -2.37   -2.82   -3.02   -2.89   -2.17   -0.58    1.93
+   285.0    0.00    0.13    0.44    0.86    1.31    1.63    1.71    1.45    0.84    0.02   -0.87   -1.67   -2.28   -2.71   -2.91   -2.79   -2.08   -0.51    2.01
+   290.0    0.00    0.13    0.42    0.85    1.29    1.61    1.68    1.44    0.86    0.05   -0.81   -1.58   -2.17   -2.58   -2.78   -2.64   -1.93   -0.35    2.20
+   295.0    0.00    0.13    0.42    0.83    1.24    1.57    1.65    1.40    0.85    0.08   -0.74   -1.48   -2.05   -2.44   -2.62   -2.47   -1.74   -0.12    2.52
+   300.0    0.00    0.13    0.41    0.81    1.21    1.52    1.61    1.37    0.84    0.10   -0.68   -1.37   -1.92   -2.29   -2.46   -2.28   -1.52    0.17    2.90
+   305.0    0.00    0.11    0.40    0.79    1.18    1.47    1.55    1.34    0.83    0.13   -0.61   -1.27   -1.79   -2.13   -2.28   -2.10   -1.28    0.48    3.31
+   310.0    0.00    0.11    0.38    0.75    1.15    1.43    1.50    1.29    0.81    0.15   -0.54   -1.17   -1.67   -2.02   -2.15   -1.92   -1.05    0.79    3.70
+   315.0    0.00    0.12    0.38    0.74    1.11    1.40    1.46    1.26    0.81    0.18   -0.49   -1.10   -1.59   -1.92   -2.03   -1.77   -0.84    1.08    4.04
+   320.0    0.00    0.12    0.37    0.72    1.09    1.36    1.44    1.25    0.82    0.20   -0.44   -1.05   -1.53   -1.87   -1.96   -1.67   -0.69    1.29    4.26
+   325.0    0.00    0.10    0.37    0.72    1.07    1.35    1.43    1.26    0.84    0.24   -0.41   -1.02   -1.52   -1.86   -1.95   -1.63   -0.60    1.39    4.39
+   330.0    0.00    0.10    0.36    0.70    1.07    1.36    1.44    1.28    0.87    0.27   -0.41   -1.03   -1.54   -1.88   -1.98   -1.64   -0.60    1.39    4.36
+   335.0    0.00    0.10    0.35    0.71    1.08    1.36    1.47    1.33    0.90    0.29   -0.42   -1.08   -1.62   -1.97   -2.05   -1.72   -0.69    1.28    4.21
+   340.0    0.00    0.10    0.35    0.71    1.08    1.39    1.52    1.36    0.93    0.29   -0.45   -1.15   -1.71   -2.09   -2.19   -1.87   -0.87    1.06    3.95
+   345.0    0.00    0.10    0.35    0.71    1.10    1.43    1.56    1.42    0.96    0.29   -0.48   -1.23   -1.82   -2.22   -2.35   -2.06   -1.12    0.75    3.61
+   350.0    0.00    0.10    0.35    0.71    1.12    1.46    1.60    1.44    0.97    0.26   -0.55   -1.34   -1.97   -2.38   -2.52   -2.28   -1.40    0.38    3.23
+   355.0    0.00    0.10    0.35    0.72    1.14    1.49    1.63    1.46    0.97    0.22   -0.65   -1.45   -2.10   -2.54   -2.71   -2.52   -1.72   -1.14    2.87
+   360.0    0.00    0.09    0.35    0.73    1.15    1.51    1.66    1.47    0.94    0.16   -0.74   -1.59   -2.24   -2.69   -2.89   -2.75   -2.03   -0.37    2.55
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+      0.12      0.02    153.58                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.16   -0.60   -1.22   -1.89   -2.55   -3.24   -3.96   -4.72   -5.40   -5.83   -5.74   -5.06   -3.82   -2.19   -0.29    1.89    4.61    8.20
+     0.0    0.00   -0.19   -0.65   -1.28   -1.95   -2.63   -3.30   -4.00   -4.72   -5.36   -5.74   -5.70   -5.12   -4.07   -2.64   -0.92    1.23    4.11    8.10
+     5.0    0.00   -0.19   -0.65   -1.28   -1.97   -2.63   -3.31   -4.01   -4.74   -5.39   -5.79   -5.76   -5.22   -4.18   -2.80   -1.11    0.99    3.83    7.81
+    10.0    0.00   -0.19   -0.65   -1.28   -1.98   -2.65   -3.32   -4.03   -4.76   -5.42   -5.84   -5.84   -5.31   -4.29   -2.91   -1.25    0.82    3.61    7.56
+    15.0    0.00   -0.18   -0.65   -1.29   -1.99   -2.67   -3.35   -4.06   -4.79   -5.46   -5.88   -5.89   -5.38   -4.37   -3.00   -1.33    0.72    3.49    7.41
+    20.0    0.00   -0.18   -0.66   -1.30   -2.00   -2.70   -3.39   -4.10   -4.83   -5.50   -5.93   -5.94   -5.44   -4.43   -3.04   -1.35    0.72    3.48    7.37
+    25.0    0.00   -0.18   -0.65   -1.31   -2.01   -2.73   -3.42   -4.14   -4.87   -5.53   -5.96   -5.98   -5.47   -4.46   -3.03   -1.29    0.81    3.59    7.41
+    30.0    0.00   -0.18   -0.66   -1.31   -2.03   -2.76   -3.46   -4.18   -4.91   -5.56   -5.99   -6.00   -5.48   -4.45   -2.99   -1.19    0.99    3.79    7.60
+    35.0    0.00   -0.17   -0.66   -1.31   -2.04   -2.79   -3.50   -4.22   -4.93   -5.58   -5.99   -6.00   -5.47   -4.42   -2.91   -1.04    1.22    4.07    7.85
+    40.0    0.00   -0.18   -0.65   -1.32   -2.06   -2.81   -3.53   -4.24   -4.95   -5.58   -5.98   -5.99   -5.45   -4.36   -2.80   -0.86    1.48    4.40    8.16
+    45.0    0.00   -0.18   -0.64   -1.31   -2.07   -2.82   -3.54   -4.25   -4.95   -5.57   -5.96   -5.95   -5.40   -4.30   -2.69   -0.68    1.75    4.74    8.51
+    50.0    0.00   -0.17   -0.65   -1.31   -2.07   -2.82   -3.55   -4.25   -4.95   -5.55   -5.93   -5.90   -5.34   -4.20   -2.57   -0.50    1.99    5.04    8.83
+    55.0    0.00   -0.17   -0.65   -1.32   -2.06   -2.81   -3.53   -4.24   -4.92   -5.52   -5.89   -5.85   -5.26   -4.10   -2.44   -0.36    2.17    5.26    9.08
+    60.0    0.00   -0.18   -0.64   -1.30   -2.05   -2.80   -3.51   -4.22   -4.89   -5.48   -5.85   -5.78   -5.17   -4.01   -2.33   -0.24    2.29    5.39    9.25
+    65.0    0.00   -0.17   -0.64   -1.29   -2.03   -2.76   -3.48   -4.17   -4.85   -5.45   -5.80   -5.72   -5.10   -3.90   -2.23   -0.16    2.33    5.42    9.31
+    70.0    0.00   -0.17   -0.63   -1.28   -2.00   -2.72   -3.42   -4.12   -4.82   -5.42   -5.76   -5.67   -5.02   -3.82   -2.15   -0.12    2.31    5.34    9.24
+    75.0    0.00   -0.17   -0.62   -1.26   -1.97   -2.69   -3.37   -4.07   -4.77   -5.38   -5.73   -5.63   -4.95   -3.73   -2.09   -0.12    2.22    5.18    9.07
+    80.0    0.00   -0.16   -0.61   -1.25   -1.94   -2.62   -3.31   -4.01   -4.73   -5.36   -5.71   -5.60   -4.90   -3.66   -2.03   -0.13    2.11    4.97    8.81
+    85.0    0.00   -0.16   -0.61   -1.23   -1.91   -2.58   -3.25   -3.95   -4.68   -5.33   -5.69   -5.57   -4.85   -3.61   -2.00   -0.16    1.97    4.72    8.50
+    90.0    0.00   -0.17   -0.60   -1.21   -1.87   -2.53   -3.18   -3.89   -4.64   -5.31   -5.68   -5.56   -4.82   -3.57   -1.97   -0.18    1.84    4.49    8.19
+    95.0    0.00   -0.16   -0.59   -1.19   -1.85   -2.48   -3.12   -3.84   -4.59   -5.28   -5.68   -5.55   -4.81   -3.54   -1.94   -0.19    1.77    4.30    7.90
+   100.0    0.00   -0.16   -0.58   -1.18   -1.82   -2.44   -3.08   -3.78   -4.55   -5.25   -5.66   -5.56   -4.81   -3.52   -1.92   -0.18    1.74    4.20    7.69
+   105.0    0.00   -0.16   -0.58   -1.17   -1.80   -2.41   -3.04   -3.74   -4.50   -5.22   -5.64   -5.55   -4.81   -3.52   -1.89   -0.15    1.76    4.17    7.56
+   110.0    0.00   -0.16   -0.59   -1.17   -1.78   -2.38   -3.00   -3.69   -4.45   -5.18   -5.63   -5.54   -4.80   -3.51   -1.87   -0.09    1.84    4.23    7.53
+   115.0    0.00   -0.15   -0.58   -1.16   -1.77   -2.36   -2.98   -3.65   -4.42   -5.14   -5.59   -5.52   -4.81   -3.50   -1.83   -0.52    1.97    4.37    7.59
+   120.0    0.00   -0.15   -0.57   -1.16   -1.77   -2.36   -2.96   -3.63   -4.37   -5.09   -5.55   -5.50   -4.79   -3.49   -1.79    0.09    2.13    4.55    7.74
+   125.0    0.00   -0.15   -0.57   -1.16   -1.77   -2.36   -2.95   -3.60   -4.34   -5.04   -5.51   -5.47   -4.78   -3.48   -1.75    0.19    2.30    4.77    7.93
+   130.0    0.00   -0.15   -0.57   -1.16   -1.77   -2.37   -2.95   -3.59   -4.31   -5.00   -5.47   -5.44   -4.77   -3.47   -1.72    0.28    2.45    4.96    8.12
+   135.0    0.00   -0.15   -0.57   -1.16   -1.78   -2.37   -2.96   -3.59   -4.29   -4.97   -5.42   -5.40   -4.75   -3.46   -1.69    0.33    2.55    5.12    8.30
+   140.0    0.00   -0.15   -0.57   -1.16   -1.78   -2.39   -2.98   -3.59   -4.28   -4.94   -5.40   -5.38   -4.74   -3.45   -1.68    0.37    2.62    5.21    8.41
+   145.0    0.00   -0.15   -0.57   -1.17   -1.79   -2.40   -2.98   -3.60   -4.28   -4.94   -5.39   -5.37   -4.73   -3.44   -1.68    0.36    2.62    5.22    8.45
+   150.0    0.00   -0.15   -0.57   -1.16   -1.79   -2.40   -2.99   -3.62   -4.30   -4.95   -5.39   -5.38   -4.74   -3.47   -1.71    0.32    2.55    5.14    8.39
+   155.0    0.00   -0.14   -0.57   -1.16   -1.80   -2.41   -3.00   -3.63   -4.32   -4.99   -5.43   -5.41   -4.77   -3.49   -1.76    0.24    2.43    4.97    8.25
+   160.0    0.00   -0.14   -0.57   -1.15   -1.80   -2.41   -3.02   -3.66   -4.36   -5.03   -5.48   -5.46   -4.81   -3.56   -1.83    0.12    2.26    4.75    8.05
+   165.0    0.00   -0.14   -0.56   -1.14   -1.79   -2.41   -3.02   -3.68   -4.39   -5.08   -5.54   -5.53   -4.88   -3.62   -1.93   -0.01    2.06    4.50    7.79
+   170.0    0.00   -0.14   -0.56   -1.15   -1.78   -2.40   -3.02   -3.70   -4.45   -5.15   -5.62   -5.61   -4.98   -3.72   -2.04   -0.17    1.84    4.23    7.52
+   175.0    0.00   -0.14   -0.55   -1.13   -1.77   -2.40   -3.03   -3.73   -4.50   -5.23   -5.71   -5.72   -5.08   -3.84   -2.17   -0.33    1.63    3.98    7.28
+   180.0    0.00   -0.14   -0.55   -1.13   -1.76   -2.40   -3.04   -3.75   -4.54   -5.30   -5.81   -5.82   -5.19   -3.95   -2.31   -0.49    1.45    3.79    7.09
+   185.0    0.00   -0.13   -0.54   -1.12   -1.76   -2.39   -3.05   -3.79   -4.60   -5.38   -5.91   -5.92   -5.30   -4.06   -2.44   -0.63    1.30    3.66    6.97
+   190.0    0.00   -0.13   -0.54   -1.12   -1.75   -2.39   -3.07   -3.83   -4.66   -5.45   -5.99   -6.02   -5.40   -4.18   -2.56   -0.75    1.22    3.60    6.95
+   195.0    0.00   -0.13   -0.54   -1.12   -1.75   -2.40   -3.09   -3.87   -4.72   -5.52   -6.07   -6.10   -5.49   -4.28   -2.65   -0.82    1.19    3.64    7.02
+   200.0    0.00   -0.13   -0.54   -1.12   -1.75   -2.42   -3.12   -3.91   -4.78   -5.59   -6.13   -6.16   -5.55   -4.35   -2.72   -0.86    1.22    3.77    7.18
+   205.0    0.00   -0.13   -0.54   -1.11   -1.75   -2.43   -3.16   -3.97   -4.85   -5.65   -6.18   -6.20   -5.58   -4.38   -2.76   -0.85    1.31    3.94    7.42
+   210.0    0.00   -0.14   -0.55   -1.11   -1.77   -2.45   -3.19   -4.02   -4.90   -5.70   -6.21   -6.21   -5.59   -4.39   -2.74   -0.81    1.43    4.17    7.70
+   215.0    0.00   -0.13   -0.54   -1.12   -1.78   -2.47   -3.23   -4.07   -4.95   -5.74   -6.23   -6.21   -5.58   -4.36   -2.71   -0.73    1.59    4.43    7.99
+   220.0    0.00   -0.13   -0.54   -1.12   -1.78   -2.49   -3.27   -4.11   -5.00   -5.78   -6.23   -6.19   -5.54   -4.31   -2.63   -0.61    1.77    4.69    8.27
+   225.0    0.00   -0.13   -0.55   -1.13   -1.79   -2.51   -3.29   -4.15   -5.03   -5.80   -6.23   -6.16   -5.49   -4.23   -2.53   -0.49    1.95    4.92    8.52
+   230.0    0.00   -0.14   -0.55   -1.13   -1.80   -2.52   -3.30   -4.16   -5.04   -5.79   -6.22   -6.12   -5.42   -4.14   -2.42   -0.34    2.12    5.10    8.71
+   235.0    0.00   -0.14   -0.55   -1.13   -1.80   -2.51   -3.30   -4.16   -5.04   -5.79   -6.19   -6.08   -5.34   -4.04   -2.29   -0.20    2.27    5.25    8.83
+   240.0    0.00   -0.14   -0.55   -1.13   -1.79   -2.51   -3.29   -4.14   -5.02   -5.77   -6.16   -6.02   -5.27   -3.93   -2.18   -0.09    2.37    5.32    8.88
+   245.0    0.00   -0.15   -0.56   -1.13   -1.79   -2.50   -3.25   -4.10   -4.98   -5.72   -6.12   -5.97   -5.20   -3.84   -2.05    0.02    2.42    5.32    8.87
+   250.0    0.00   -0.15   -0.55   -1.13   -1.79   -2.46   -3.21   -4.04   -4.92   -5.67   -6.08   -5.93   -5.13   -3.76   -1.96    0.09    2.43    5.28    8.79
+   255.0    0.00   -0.15   -0.56   -1.13   -1.77   -2.44   -3.16   -3.98   -4.84   -5.61   -6.03   -5.89   -5.08   -3.68   -1.90    0.13    2.40    5.16    8.68
+   260.0    0.00   -0.16   -0.57   -1.14   -1.77   -2.40   -3.11   -3.91   -4.77   -5.53   -5.97   -5.83   -5.02   -3.62   -1.84    0.13    2.33    5.01    8.53
+   265.0    0.00   -0.16   -0.58   -1.15   -1.76   -2.38   -3.06   -3.84   -4.70   -5.47   -5.92   -5.78   -4.98   -3.57   -1.81    0.11    2.22    4.83    8.37
+   270.0    0.00   -0.16   -0.59   -1.16   -1.76   -2.37   -3.03   -3.78   -4.63   -5.41   -5.87   -5.74   -4.93   -3.54   -1.80    0.08    2.12    4.67    8.24
+   275.0    0.00   -0.17   -0.59   -1.16   -1.76   -2.36   -3.00   -3.74   -4.58   -5.35   -5.81   -5.69   -4.88   -3.50   -1.78    0.04    2.00    4.51    8.12
+   280.0    0.00   -0.17   -0.60   -1.17   -1.77   -2.36   -3.00   -3.73   -4.55   -5.31   -5.76   -5.63   -4.83   -3.45   -1.77   -0.43    1.92    4.40    8.06
+   285.0    0.00   -0.17   -0.61   -1.19   -1.78   -2.37   -3.01   -3.73   -4.53   -5.29   -5.72   -5.58   -4.78   -3.41   -1.77   -0.02    1.86    4.34    8.03
+   290.0    0.00   -0.18   -0.61   -1.20   -1.81   -2.41   -3.03   -3.75   -4.55   -5.28   -5.68   -5.53   -4.72   -3.37   -1.75   -0.03    1.84    4.34    8.08
+   295.0    0.00   -0.18   -0.62   -1.21   -1.83   -2.44   -3.08   -3.80   -4.57   -5.27   -5.65   -5.49   -4.67   -3.33   -1.72   -0.01    1.89    4.42    8.17
+   300.0    0.00   -0.18   -0.63   -1.23   -1.86   -2.49   -3.13   -3.85   -4.61   -5.29   -5.63   -5.44   -4.62   -3.29   -1.69    0.02    1.96    4.54    8.32
+   305.0    0.00   -0.18   -0.63   -1.25   -1.89   -2.53   -3.19   -3.91   -4.66   -5.30   -5.62   -5.40   -4.58   -3.26   -1.66    0.08    2.07    4.70    8.50
+   310.0    0.00   -0.19   -0.64   -1.26   -1.92   -2.57   -3.25   -3.96   -4.71   -5.33   -5.61   -5.37   -4.55   -3.23   -1.63    0.14    2.20    4.91    8.71
+   315.0    0.00   -0.19   -0.65   -1.27   -1.95   -2.62   -3.29   -4.02   -4.74   -5.34   -5.62   -5.36   -4.54   -3.22   -1.60    0.21    2.32    5.10    8.90
+   320.0    0.00   -0.19   -0.65   -1.28   -1.96   -2.64   -3.34   -4.05   -4.77   -5.36   -5.61   -5.35   -4.53   -3.23   -1.62    0.24    2.43    5.28    9.08
+   325.0    0.00   -0.19   -0.65   -1.29   -1.97   -2.67   -3.36   -4.07   -4.78   -5.36   -5.61   -5.36   -4.56   -3.28   -1.65    0.24    2.49    5.39    9.21
+   330.0    0.00   -0.19   -0.65   -1.30   -1.98   -2.66   -3.36   -4.09   -4.79   -5.36   -5.61   -5.38   -4.60   -3.33   -1.72    0.18    2.48    5.44    9.27
+   335.0    0.00   -0.19   -0.65   -1.30   -1.98   -2.67   -3.36   -4.08   -4.78   -5.36   -5.62   -5.41   -4.66   -3.42   -1.82    0.09    2.40    5.39    9.25
+   340.0    0.00   -0.19   -0.66   -1.29   -1.98   -2.67   -3.35   -4.06   -4.76   -5.35   -5.63   -5.45   -4.73   -3.53   -1.95   -0.06    2.26    5.26    9.15
+   345.0    0.00   -0.19   -0.66   -1.29   -1.97   -2.65   -3.34   -4.04   -4.74   -5.34   -5.64   -5.50   -4.82   -3.65   -2.12   -0.25    2.04    5.04    8.96
+   350.0    0.00   -0.19   -0.66   -1.28   -1.97   -2.64   -3.32   -4.02   -4.73   -5.33   -5.67   -5.55   -4.92   -3.80   -2.29   -0.47    1.79    4.75    8.71
+   355.0    0.00   -0.19   -0.66   -1.29   -1.96   -2.63   -3.30   -4.00   -4.73   -5.34   -5.70   -5.62   -5.02   -3.93   -2.47   -0.71    1.50    4.44    8.41
+   360.0    0.00   -0.19   -0.65   -1.28   -1.95   -2.63   -3.30   -4.00   -4.72   -5.36   -5.74   -5.70   -5.12   -4.07   -2.64   -0.92    1.23    4.11    8.10
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+LEIAR25.R4      LEIT                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               5    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     4                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+# Number of Calibrated Antennas:           5                COMMENT             
+# Number of Individual GPS-Calibrations:  10                COMMENT             
+# Number of Individual GLO-Calibrations:  10                COMMENT             
+# GLONASS PCV                                               COMMENT             
+#  derived from Delta PCV per 25.0 MHz                      COMMENT             
+#  for frequency channel number k=0                         COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.60      0.98    158.30                              NORTH / EAST / UP   
+   NOAZI    0.00    0.16    0.62    1.30    2.05    2.69    3.06    3.01    2.51    1.66    0.62   -0.40   -1.24   -1.79   -1.99   -1.72   -0.80    1.01    3.84
+     0.0    0.00    0.14    0.60    1.31    2.13    2.82    3.19    3.09    2.51    1.60    0.56   -0.39   -1.13   -1.63   -1.87   -1.74   -0.96    0.82    3.71
+     5.0    0.00    0.14    0.60    1.31    2.11    2.81    3.17    3.06    2.47    1.55    0.50   -0.46   -1.21   -1.72   -1.97   -1.85   -1.10    0.63    3.48
+    10.0    0.00    0.14    0.60    1.30    2.10    2.79    3.14    3.03    2.44    1.50    0.44   -0.53   -1.29   -1.80   -2.05   -1.94   -1.20    0.49    3.30
+    15.0    0.00    0.14    0.59    1.29    2.09    2.77    3.12    3.00    2.41    1.46    0.40   -0.59   -1.35   -1.87   -2.11   -1.99   -1.26    0.41    3.18
+    20.0    0.00    0.14    0.59    1.29    2.08    2.75    3.10    2.98    2.38    1.44    0.36   -0.63   -1.41   -1.92   -2.15   -2.02   -1.27    0.40    3.14
+    25.0    0.00    0.14    0.59    1.28    2.07    2.73    3.07    2.95    2.36    1.42    0.34   -0.66   -1.44   -1.95   -2.17   -2.01   -1.23    0.45    3.19
+    30.0    0.00    0.14    0.59    1.28    2.06    2.72    3.05    2.93    2.35    1.41    0.33   -0.67   -1.46   -1.96   -2.17   -1.97   -1.16    0.56    3.32
+    35.0    0.00    0.14    0.59    1.27    2.05    2.70    3.03    2.92    2.33    1.41    0.33   -0.67   -1.46   -1.96   -2.14   -1.91   -1.06    0.70    3.51
+    40.0    0.00    0.14    0.59    1.27    2.04    2.68    3.01    2.90    2.33    1.41    0.35   -0.65   -1.44   -1.94   -2.11   -1.85   -0.95    0.86    3.74
+    45.0    0.00    0.14    0.59    1.27    2.03    2.67    3.00    2.88    2.32    1.42    0.36   -0.63   -1.42   -1.91   -2.07   -1.78   -0.84    1.01    3.97
+    50.0    0.00    0.14    0.59    1.27    2.02    2.66    2.98    2.87    2.32    1.42    0.38   -0.61   -1.39   -1.88   -2.03   -1.73   -0.76    1.14    4.17
+    55.0    0.00    0.14    0.59    1.27    2.02    2.64    2.97    2.86    2.32    1.43    0.40   -0.58   -1.36   -1.86   -2.00   -1.69   -0.71    1.22    4.32
+    60.0    0.00    0.14    0.59    1.27    2.01    2.64    2.96    2.85    2.32    1.44    0.42   -0.56   -1.34   -1.84   -1.99   -1.67   -0.69    1.25    4.39
+    65.0    0.00    0.14    0.59    1.27    2.01    2.63    2.95    2.85    2.32    1.45    0.43   -0.55   -1.33   -1.83   -1.99   -1.68   -0.71    1.22    4.38
+    70.0    0.00    0.14    0.59    1.27    2.00    2.63    2.95    2.85    2.33    1.46    0.44   -0.54   -1.33   -1.84   -2.00   -1.71   -0.76    1.15    4.29
+    75.0    0.00    0.14    0.60    1.27    2.00    2.62    2.95    2.86    2.34    1.48    0.45   -0.54   -1.34   -1.86   -2.02   -1.74   -0.82    1.04    4.14
+    80.0    0.00    0.15    0.60    1.27    2.00    2.62    2.96    2.87    2.36    1.49    0.46   -0.55   -1.36   -1.88   -2.05   -1.79   -0.90    0.91    3.94
+    85.0    0.00    0.15    0.60    1.26    2.00    2.63    2.96    2.89    2.38    1.52    0.47   -0.55   -1.38   -1.91   -2.08   -1.82   -0.96    0.79    3.74
+    90.0    0.00    0.15    0.60    1.26    2.00    2.63    2.98    2.91    2.41    1.54    0.49   -0.55   -1.39   -1.93   -2.10   -1.85   -1.00    0.70    3.56
+    95.0    0.00    0.15    0.60    1.26    2.00    2.63    2.99    2.94    2.44    1.58    0.52   -0.54   -1.39   -1.94   -2.11   -1.85   -1.02    0.65    3.43
+   100.0    0.00    0.15    0.60    1.26    1.99    2.63    3.00    2.96    2.48    1.62    0.55   -0.52   -1.39   -1.93   -2.10   -1.83   -0.99    0.66    3.39
+   105.0    0.00    0.15    0.60    1.26    1.99    2.63    3.01    2.99    2.52    1.66    0.59   -0.48   -1.36   -1.91   -2.07   -1.78   -0.93    0.72    3.43
+   110.0    0.00    0.15    0.60    1.25    1.98    2.63    3.01    3.01    2.55    1.71    0.64   -0.44   -1.32   -1.88   -2.02   -1.72   -0.83    0.85    3.56
+   115.0    0.00    0.16    0.60    1.25    1.98    2.62    3.02    3.02    2.59    1.76    0.69   -0.38   -1.27   -1.82   -1.96   -1.63   -0.71    1.01    3.78
+   120.0    0.00    0.16    0.60    1.25    1.97    2.62    3.02    3.04    2.61    1.80    0.75   -0.32   -1.21   -1.75   -1.89   -1.54   -0.58    1.21    4.04
+   125.0    0.00    0.16    0.60    1.24    1.96    2.61    3.02    3.05    2.64    1.84    0.80   -0.26   -1.14   -1.68   -1.81   -1.44   -0.45    1.41    4.34
+   130.0    0.00    0.16    0.60    1.24    1.96    2.60    3.01    3.05    2.66    1.87    0.85   -0.20   -1.07   -1.61   -1.74   -1.36   -0.33    1.59    4.62
+   135.0    0.00    0.16    0.60    1.24    1.95    2.60    3.01    3.05    2.67    1.90    0.89   -0.15   -1.01   -1.55   -1.68   -1.30   -0.25    1.73    4.86
+   140.0    0.00    0.16    0.60    1.24    1.95    2.59    3.01    3.06    2.68    1.91    0.92   -0.11   -0.97   -1.51   -1.64   -1.27   -0.21    1.81    5.02
+   145.0    0.00    0.17    0.61    1.24    1.95    2.59    3.01    3.06    2.68    1.92    0.93   -0.09   -0.94   -1.48   -1.63   -1.27   -0.21    1.83    5.10
+   150.0    0.00    0.17    0.61    1.24    1.95    2.59    3.01    3.06    2.68    1.93    0.94   -0.08   -0.93   -1.48   -1.64   -1.30   -0.26    1.78    5.06
+   155.0    0.00    0.17    0.61    1.25    1.96    2.60    3.02    3.06    2.68    1.92    0.93   -0.09   -0.94   -1.50   -1.68   -1.37   -0.36    1.66    4.93
+   160.0    0.00    0.17    0.62    1.25    1.96    2.61    3.02    3.07    2.68    1.91    0.91   -0.11   -0.97   -1.54   -1.74   -1.46   -0.49    1.48    4.71
+   165.0    0.00    0.17    0.62    1.26    1.97    2.62    3.03    3.08    2.68    1.90    0.89   -0.15   -1.02   -1.60   -1.82   -1.57   -0.65    1.26    4.43
+   170.0    0.00    0.18    0.62    1.26    1.98    2.63    3.04    3.08    2.68    1.88    0.85   -0.19   -1.07   -1.67   -1.91   -1.70   -0.82    1.03    4.11
+   175.0    0.00    0.18    0.63    1.27    1.99    2.64    3.05    3.08    2.67    1.86    0.82   -0.24   -1.13   -1.74   -2.00   -1.82   -0.99    0.80    3.79
+   180.0    0.00    0.18    0.63    1.28    2.00    2.65    3.06    3.08    2.65    1.84    0.79   -0.28   -1.19   -1.81   -2.08   -1.93   -1.14    0.59    3.51
+   185.0    0.00    0.18    0.64    1.28    2.01    2.66    3.06    3.07    2.64    1.81    0.75   -0.32   -1.23   -1.87   -2.16   -2.02   -1.26    0.43    3.27
+   190.0    0.00    0.18    0.64    1.29    2.01    2.66    3.05    3.06    2.61    1.78    0.72   -0.36   -1.27   -1.91   -2.21   -2.09   -1.34    0.32    3.12
+   195.0    0.00    0.18    0.64    1.29    2.02    2.66    3.04    3.04    2.59    1.75    0.69   -0.38   -1.30   -1.94   -2.25   -2.13   -1.39    0.27    3.05
+   200.0    0.00    0.19    0.65    1.30    2.02    2.65    3.03    3.01    2.56    1.72    0.67   -0.40   -1.31   -1.96   -2.26   -2.14   -1.38    0.28    3.07
+   205.0    0.00    0.19    0.65    1.30    2.02    2.64    3.01    2.98    2.52    1.69    0.65   -0.41   -1.32   -1.96   -2.26   -2.12   -1.34    0.35    3.16
+   210.0    0.00    0.19    0.65    1.31    2.02    2.63    2.98    2.95    2.49    1.67    0.63   -0.42   -1.32   -1.95   -2.25   -2.09   -1.27    0.47    3.32
+   215.0    0.00    0.19    0.65    1.31    2.02    2.62    2.96    2.92    2.46    1.64    0.62   -0.42   -1.31   -1.94   -2.23   -2.04   -1.18    0.62    3.52
+   220.0    0.00    0.19    0.66    1.31    2.01    2.61    2.94    2.90    2.43    1.62    0.61   -0.42   -1.31   -1.93   -2.20   -1.99   -1.08    0.78    3.73
+   225.0    0.00    0.19    0.66    1.31    2.01    2.61    2.93    2.88    2.42    1.61    0.61   -0.42   -1.30   -1.93   -2.18   -1.93   -0.98    0.93    3.94
+   230.0    0.00    0.19    0.66    1.32    2.02    2.60    2.92    2.87    2.41    1.60    0.60   -0.42   -1.31   -1.93   -2.17   -1.89   -0.90    1.06    4.12
+   235.0    0.00    0.19    0.66    1.32    2.02    2.61    2.92    2.87    2.40    1.60    0.60   -0.43   -1.31   -1.93   -2.17   -1.87   -0.84    1.16    4.24
+   240.0    0.00    0.19    0.66    1.32    2.03    2.61    2.93    2.87    2.41    1.60    0.60   -0.43   -1.33   -1.95   -2.18   -1.87   -0.81    1.21    4.31
+   245.0    0.00    0.19    0.66    1.33    2.04    2.63    2.95    2.89    2.42    1.61    0.60   -0.44   -1.34   -1.97   -2.20   -1.88   -0.82    1.21    4.30
+   250.0    0.00    0.19    0.67    1.33    2.05    2.65    2.97    2.91    2.44    1.62    0.60   -0.45   -1.36   -2.00   -2.24   -1.92   -0.85    1.17    4.23
+   255.0    0.00    0.19    0.67    1.34    2.06    2.67    2.99    2.93    2.46    1.63    0.60   -0.46   -1.38   -2.03   -2.27   -1.96   -0.91    1.08    4.10
+   260.0    0.00    0.19    0.67    1.35    2.08    2.69    3.02    2.96    2.48    1.65    0.61   -0.46   -1.40   -2.05   -2.31   -2.01   -0.99    0.96    3.92
+   265.0    0.00    0.19    0.67    1.35    2.09    2.72    3.05    2.99    2.50    1.66    0.61   -0.47   -1.40   -2.07   -2.33   -2.06   -1.07    0.84    3.72
+   270.0    0.00    0.18    0.67    1.36    2.11    2.74    3.09    3.02    2.53    1.67    0.61   -0.47   -1.40   -2.07   -2.34   -2.09   -1.13    0.71    3.52
+   275.0    0.00    0.18    0.67    1.36    2.13    2.77    3.12    3.05    2.55    1.68    0.62   -0.46   -1.39   -2.05   -2.34   -2.10   -1.18    0.61    3.34
+   280.0    0.00    0.18    0.67    1.37    2.14    2.79    3.15    3.08    2.57    1.70    0.63   -0.44   -1.37   -2.02   -2.31   -2.09   -1.19    0.55    3.19
+   285.0    0.00    0.18    0.67    1.37    2.15    2.82    3.18    3.11    2.59    1.71    0.65   -0.42   -1.33   -1.97   -2.25   -2.04   -1.17    0.54    3.10
+   290.0    0.00    0.18    0.66    1.38    2.17    2.84    3.20    3.13    2.61    1.73    0.66   -0.39   -1.29   -1.91   -2.17   -1.96   -1.10    0.58    3.08
+   295.0    0.00    0.17    0.66    1.38    2.18    2.86    3.23    3.16    2.63    1.75    0.69   -0.36   -1.23   -1.83   -2.08   -1.86   -0.99    0.68    3.14
+   300.0    0.00    0.17    0.66    1.38    2.18    2.87    3.25    3.18    2.65    1.77    0.71   -0.31   -1.16   -1.74   -1.97   -1.73   -0.85    0.82    3.26
+   305.0    0.00    0.17    0.65    1.38    2.19    2.89    3.27    3.20    2.67    1.79    0.74   -0.27   -1.10   -1.65   -1.86   -1.60   -0.70    1.00    3.44
+   310.0    0.00    0.17    0.65    1.38    2.19    2.90    3.28    3.22    2.69    1.81    0.77   -0.23   -1.03   -1.56   -1.75   -1.47   -0.54    1.19    3.66
+   315.0    0.00    0.16    0.65    1.37    2.20    2.90    3.29    3.23    2.70    1.82    0.79   -0.19   -0.97   -1.48   -1.65   -1.35   -0.40    1.37    3.89
+   320.0    0.00    0.16    0.64    1.37    2.19    2.91    3.30    3.24    2.71    1.83    0.81   -0.15   -0.92   -1.41   -1.57   -1.26   -0.29    1.53    4.11
+   325.0    0.00    0.16    0.64    1.36    2.19    2.91    3.30    3.24    2.71    1.84    0.82   -0.13   -0.88   -1.36   -1.51   -1.20   -0.22    1.64    4.30
+   330.0    0.00    0.15    0.63    1.36    2.19    2.90    3.30    3.23    2.70    1.83    0.82   -0.12   -0.86   -1.33   -1.49   -1.19   -0.20    1.69    4.43
+   335.0    0.00    0.15    0.63    1.35    2.18    2.90    3.29    3.22    2.69    1.81    0.80   -0.13   -0.86   -1.33   -1.49   -1.21   -0.24    1.67    4.48
+   340.0    0.00    0.15    0.62    1.34    2.17    2.89    3.28    3.21    2.66    1.78    0.78   -0.16   -0.88   -1.35   -1.53   -1.27   -0.33    1.58    4.45
+   345.0    0.00    0.15    0.62    1.34    2.16    2.87    3.26    3.18    2.63    1.75    0.73   -0.20   -0.92   -1.40   -1.59   -1.37   -0.46    1.43    4.34
+   350.0    0.00    0.14    0.61    1.33    2.15    2.86    3.24    3.15    2.60    1.70    0.68   -0.25   -0.98   -1.46   -1.68   -1.49   -0.62    1.24    4.17
+   355.0    0.00    0.14    0.61    1.32    2.14    2.84    3.22    3.12    2.56    1.65    0.62   -0.32   -1.05   -1.54   -1.77   -1.62   -0.79    1.03    3.95
+   360.0    0.00    0.14    0.60    1.31    2.13    2.82    3.19    3.09    2.51    1.60    0.56   -0.39   -1.13   -1.63   -1.87   -1.74   -0.96    0.82    3.71
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.11      0.05    154.04                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.15   -0.55   -1.14   -1.82   -2.53   -3.29   -4.08   -4.84   -5.45   -5.71   -5.46   -4.61   -3.25   -1.55    0.38    2.58    5.33    8.99
+     0.0    0.00   -0.20   -0.64   -1.22   -1.87   -2.54   -3.24   -3.97   -4.68   -5.25   -5.50   -5.27   -4.53   -3.34   -1.84   -0.09    2.04    4.84    8.57
+     5.0    0.00   -0.20   -0.64   -1.22   -1.88   -2.55   -3.26   -4.01   -4.73   -5.32   -5.59   -5.38   -4.65   -3.47   -1.97   -0.23    1.87    4.62    8.31
+    10.0    0.00   -0.20   -0.64   -1.23   -1.88   -2.57   -3.29   -4.04   -4.79   -5.39   -5.68   -5.49   -4.77   -3.58   -2.08   -0.34    1.74    4.44    8.09
+    15.0    0.00   -0.20   -0.64   -1.23   -1.89   -2.59   -3.32   -4.09   -4.84   -5.46   -5.77   -5.59   -4.87   -3.67   -2.16   -0.41    1.65    4.32    7.93
+    20.0    0.00   -0.20   -0.64   -1.23   -1.90   -2.60   -3.34   -4.13   -4.90   -5.53   -5.85   -5.67   -4.94   -3.73   -2.20   -0.43    1.63    4.27    7.86
+    25.0    0.00   -0.20   -0.64   -1.23   -1.90   -2.62   -3.37   -4.16   -4.95   -5.60   -5.91   -5.73   -4.99   -3.76   -2.19   -0.40    1.66    4.30    7.89
+    30.0    0.00   -0.20   -0.63   -1.23   -1.91   -2.63   -3.39   -4.20   -4.99   -5.65   -5.96   -5.78   -5.01   -3.75   -2.14   -0.33    1.76    4.40    8.00
+    35.0    0.00   -0.19   -0.63   -1.23   -1.91   -2.64   -3.41   -4.23   -5.03   -5.68   -6.00   -5.79   -5.00   -3.70   -2.06   -0.21    1.90    4.57    8.21
+    40.0    0.00   -0.19   -0.63   -1.23   -1.91   -2.65   -3.42   -4.25   -5.05   -5.70   -6.01   -5.79   -4.97   -3.63   -1.95   -0.06    2.09    4.79    8.48
+    45.0    0.00   -0.19   -0.63   -1.23   -1.91   -2.65   -3.43   -4.25   -5.06   -5.71   -6.00   -5.76   -4.91   -3.54   -1.82    0.11    2.29    5.03    8.80
+    50.0    0.00   -0.19   -0.62   -1.22   -1.91   -2.65   -3.43   -4.25   -5.06   -5.70   -5.98   -5.72   -4.85   -3.45   -1.69    0.28    2.50    5.29    9.12
+    55.0    0.00   -0.18   -0.62   -1.22   -1.91   -2.64   -3.42   -4.24   -5.04   -5.67   -5.95   -5.67   -4.78   -3.35   -1.56    0.44    2.70    5.53    9.42
+    60.0    0.00   -0.18   -0.61   -1.21   -1.90   -2.64   -3.41   -4.22   -5.01   -5.64   -5.91   -5.63   -4.72   -3.27   -1.45    0.58    2.87    5.72    9.66
+    65.0    0.00   -0.18   -0.61   -1.21   -1.90   -2.62   -3.39   -4.19   -4.97   -5.60   -5.86   -5.58   -4.68   -3.21   -1.37    0.68    2.99    5.87    9.83
+    70.0    0.00   -0.17   -0.60   -1.20   -1.89   -2.61   -3.37   -4.16   -4.93   -5.55   -5.82   -5.55   -4.64   -3.17   -1.32    0.75    3.06    5.94    9.91
+    75.0    0.00   -0.17   -0.59   -1.19   -1.88   -2.60   -3.34   -4.12   -4.88   -5.51   -5.78   -5.52   -4.63   -3.16   -1.31    0.77    3.08    5.94    9.90
+    80.0    0.00   -0.16   -0.59   -1.19   -1.87   -2.58   -3.32   -4.08   -4.84   -5.46   -5.75   -5.51   -4.63   -3.17   -1.32    0.75    3.05    5.88    9.79
+    85.0    0.00   -0.16   -0.58   -1.18   -1.86   -2.57   -3.29   -4.05   -4.80   -5.43   -5.73   -5.50   -4.63   -3.19   -1.35    0.70    2.97    5.76    9.62
+    90.0    0.00   -0.15   -0.57   -1.17   -1.85   -2.55   -3.27   -4.02   -4.77   -5.40   -5.71   -5.49   -4.65   -3.22   -1.40    0.62    2.85    5.60    9.40
+    95.0    0.00   -0.15   -0.57   -1.16   -1.84   -2.54   -3.26   -4.00   -4.74   -5.37   -5.69   -5.49   -4.66   -3.25   -1.46    0.54    2.73    5.43    9.18
+   100.0    0.00   -0.15   -0.56   -1.16   -1.84   -2.54   -3.25   -3.98   -4.72   -5.35   -5.66   -5.47   -4.66   -3.27   -1.50    0.46    2.61    5.27    8.97
+   105.0    0.00   -0.14   -0.55   -1.15   -1.83   -2.53   -3.24   -3.97   -4.70   -5.32   -5.64   -5.45   -4.64   -3.27   -1.53    0.40    2.52    5.14    8.81
+   110.0    0.00   -0.14   -0.54   -1.14   -1.82   -2.52   -3.23   -3.96   -4.69   -5.30   -5.61   -5.42   -4.61   -3.26   -1.54    0.36    2.46    5.07    8.71
+   115.0    0.00   -0.13   -0.54   -1.13   -1.81   -2.52   -3.23   -3.95   -4.67   -5.28   -5.57   -5.37   -4.57   -3.22   -1.52    0.36    2.45    5.05    8.69
+   120.0    0.00   -0.13   -0.53   -1.12   -1.81   -2.51   -3.22   -3.95   -4.66   -5.25   -5.53   -5.32   -4.51   -3.17   -1.47    0.40    2.49    5.10    8.74
+   125.0    0.00   -0.12   -0.52   -1.11   -1.80   -2.50   -3.22   -3.94   -4.64   -5.22   -5.49   -5.26   -4.44   -3.10   -1.41    0.47    2.58    5.21    8.85
+   130.0    0.00   -0.12   -0.51   -1.10   -1.78   -2.49   -3.21   -3.93   -4.63   -5.19   -5.44   -5.19   -4.37   -3.02   -1.32    0.57    2.70    5.37    9.00
+   135.0    0.00   -0.11   -0.50   -1.09   -1.77   -2.48   -3.20   -3.92   -4.62   -5.17   -5.40   -5.14   -4.30   -2.94   -1.24    0.67    2.84    5.54    9.17
+   140.0    0.00   -0.11   -0.49   -1.08   -1.76   -2.47   -3.19   -3.92   -4.61   -5.15   -5.37   -5.10   -4.25   -2.88   -1.16    0.77    2.97    5.71    9.32
+   145.0    0.00   -0.10   -0.48   -1.06   -1.75   -2.46   -3.18   -3.91   -4.60   -5.14   -5.36   -5.07   -4.21   -2.84   -1.10    0.86    3.09    5.84    9.43
+   150.0    0.00   -0.10   -0.48   -1.05   -1.73   -2.45   -3.18   -3.91   -4.61   -5.15   -5.36   -5.07   -4.20   -2.82   -1.08    0.90    3.16    5.93    9.48
+   155.0    0.00   -0.10   -0.47   -1.04   -1.72   -2.44   -3.18   -3.92   -4.62   -5.17   -5.38   -5.09   -4.22   -2.84   -1.08    0.91    3.18    5.95    9.47
+   160.0    0.00   -0.09   -0.46   -1.03   -1.71   -2.44   -3.18   -3.94   -4.65   -5.21   -5.42   -5.13   -4.27   -2.88   -1.13    0.86    3.13    5.90    9.38
+   165.0    0.00   -0.09   -0.46   -1.02   -1.70   -2.44   -3.19   -3.96   -4.69   -5.26   -5.48   -5.20   -4.34   -2.96   -1.22    0.77    3.03    5.78    9.23
+   170.0    0.00   -0.09   -0.45   -1.02   -1.70   -2.44   -3.21   -3.99   -4.74   -5.32   -5.56   -5.28   -4.43   -3.06   -1.33    0.63    2.87    5.60    9.04
+   175.0    0.00   -0.09   -0.45   -1.01   -1.70   -2.44   -3.23   -4.03   -4.80   -5.40   -5.65   -5.38   -4.54   -3.18   -1.48    0.46    2.68    5.39    8.84
+   180.0    0.00   -0.09   -0.45   -1.01   -1.70   -2.45   -3.25   -4.07   -4.86   -5.47   -5.74   -5.48   -4.65   -3.31   -1.63    0.28    2.47    5.17    8.64
+   185.0    0.00   -0.09   -0.44   -1.01   -1.70   -2.46   -3.27   -4.11   -4.92   -5.55   -5.83   -5.59   -4.77   -3.45   -1.78    0.11    2.28    4.98    8.49
+   190.0    0.00   -0.09   -0.44   -1.01   -1.70   -2.47   -3.29   -4.15   -4.97   -5.62   -5.91   -5.68   -4.88   -3.57   -1.92   -0.04    2.12    4.83    8.39
+   195.0    0.00   -0.09   -0.44   -1.01   -1.71   -2.48   -3.31   -4.18   -5.02   -5.68   -5.99   -5.77   -4.98   -3.68   -2.03   -0.16    2.02    4.75    8.36
+   200.0    0.00   -0.09   -0.45   -1.01   -1.71   -2.49   -3.33   -4.21   -5.05   -5.73   -6.05   -5.85   -5.06   -3.76   -2.11   -0.22    1.98    4.74    8.42
+   205.0    0.00   -0.09   -0.45   -1.02   -1.72   -2.50   -3.34   -4.22   -5.07   -5.76   -6.09   -5.90   -5.12   -3.82   -2.15   -0.22    2.02    4.82    8.54
+   210.0    0.00   -0.09   -0.45   -1.02   -1.72   -2.50   -3.35   -4.23   -5.08   -5.78   -6.12   -5.94   -5.16   -3.85   -2.14   -0.17    2.12    4.96    8.72
+   215.0    0.00   -0.09   -0.46   -1.03   -1.73   -2.51   -3.35   -4.23   -5.08   -5.78   -6.13   -5.96   -5.18   -3.84   -2.09   -0.06    2.28    5.16    8.94
+   220.0    0.00   -0.10   -0.46   -1.04   -1.73   -2.51   -3.34   -4.22   -5.07   -5.77   -6.13   -5.96   -5.17   -3.81   -2.02    0.07    2.47    5.39    9.18
+   225.0    0.00   -0.10   -0.47   -1.04   -1.74   -2.51   -3.34   -4.21   -5.06   -5.76   -6.12   -5.94   -5.14   -3.75   -1.91    0.23    2.67    5.61    9.40
+   230.0    0.00   -0.10   -0.48   -1.05   -1.75   -2.51   -3.33   -4.20   -5.05   -5.74   -6.10   -5.91   -5.09   -3.67   -1.80    0.38    2.86    5.81    9.59
+   235.0    0.00   -0.11   -0.48   -1.06   -1.75   -2.51   -3.33   -4.19   -5.03   -5.73   -6.07   -5.87   -5.03   -3.59   -1.68    0.52    3.01    5.96    9.72
+   240.0    0.00   -0.11   -0.49   -1.07   -1.76   -2.51   -3.33   -4.18   -5.02   -5.71   -6.04   -5.82   -4.96   -3.49   -1.58    0.63    3.11    6.04    9.78
+   245.0    0.00   -0.12   -0.50   -1.07   -1.76   -2.52   -3.33   -4.18   -5.01   -5.69   -6.01   -5.77   -4.88   -3.40   -1.49    0.69    3.14    6.05    9.78
+   250.0    0.00   -0.12   -0.51   -1.08   -1.77   -2.52   -3.33   -4.18   -5.01   -5.68   -5.97   -5.71   -4.80   -3.32   -1.43    0.71    3.11    5.98    9.71
+   255.0    0.00   -0.13   -0.51   -1.09   -1.77   -2.52   -3.33   -4.18   -5.01   -5.66   -5.94   -5.65   -4.73   -3.25   -1.39    0.69    3.02    5.86    9.58
+   260.0    0.00   -0.13   -0.52   -1.10   -1.78   -2.52   -3.33   -4.18   -5.01   -5.65   -5.90   -5.59   -4.66   -3.19   -1.38    0.63    2.89    5.69    9.43
+   265.0    0.00   -0.14   -0.53   -1.10   -1.78   -2.52   -3.33   -4.18   -5.00   -5.63   -5.87   -5.54   -4.59   -3.15   -1.39    0.55    2.74    5.50    9.25
+   270.0    0.00   -0.14   -0.54   -1.11   -1.78   -2.52   -3.32   -4.17   -4.99   -5.61   -5.83   -5.48   -4.54   -3.11   -1.41    0.45    2.58    5.32    9.09
+   275.0    0.00   -0.15   -0.54   -1.12   -1.78   -2.51   -3.31   -4.16   -4.97   -5.59   -5.79   -5.43   -4.49   -3.09   -1.43    0.37    2.45    5.16    8.95
+   280.0    0.00   -0.15   -0.55   -1.12   -1.78   -2.51   -3.30   -4.14   -4.95   -5.55   -5.75   -5.38   -4.44   -3.07   -1.46    0.30    2.35    5.06    8.85
+   285.0    0.00   -0.16   -0.56   -1.13   -1.78   -2.50   -3.28   -4.11   -4.91   -5.51   -5.70   -5.33   -4.40   -3.05   -1.47    0.26    2.30    5.01    8.80
+   290.0    0.00   -0.16   -0.57   -1.13   -1.78   -2.49   -3.26   -4.08   -4.87   -5.46   -5.65   -5.28   -4.36   -3.03   -1.46    0.26    2.30    5.03    8.81
+   295.0    0.00   -0.16   -0.57   -1.14   -1.78   -2.48   -3.24   -4.05   -4.83   -5.41   -5.59   -5.23   -4.33   -3.00   -1.44    0.29    2.35    5.11    8.87
+   300.0    0.00   -0.17   -0.58   -1.14   -1.78   -2.47   -3.22   -4.01   -4.78   -5.35   -5.54   -5.18   -4.28   -2.97   -1.40    0.35    2.45    5.24    8.98
+   305.0    0.00   -0.17   -0.59   -1.15   -1.78   -2.46   -3.19   -3.97   -4.73   -5.29   -5.48   -5.13   -4.24   -2.93   -1.36    0.42    2.57    5.40    9.12
+   310.0    0.00   -0.18   -0.59   -1.15   -1.79   -2.46   -3.18   -3.94   -4.68   -5.24   -5.42   -5.08   -4.20   -2.89   -1.30    0.51    2.70    5.57    9.28
+   315.0    0.00   -0.18   -0.60   -1.16   -1.79   -2.45   -3.16   -3.91   -4.64   -5.19   -5.37   -5.03   -4.16   -2.85   -1.25    0.59    2.82    5.72    9.43
+   320.0    0.00   -0.18   -0.61   -1.17   -1.79   -2.45   -3.15   -3.89   -4.61   -5.15   -5.32   -4.99   -4.12   -2.82   -1.22    0.65    2.91    5.84    9.56
+   325.0    0.00   -0.19   -0.61   -1.18   -1.80   -2.46   -3.15   -3.88   -4.58   -5.11   -5.29   -4.96   -4.10   -2.80   -1.20    0.67    2.96    5.91    9.64
+   330.0    0.00   -0.19   -0.62   -1.18   -1.81   -2.46   -3.15   -3.87   -4.57   -5.09   -5.27   -4.94   -4.10   -2.81   -1.21    0.66    2.95    5.92    9.67
+   335.0    0.00   -0.19   -0.62   -1.19   -1.82   -2.47   -3.16   -3.87   -4.56   -5.08   -5.26   -4.95   -4.11   -2.84   -1.25    0.61    2.89    5.86    9.63
+   340.0    0.00   -0.20   -0.63   -1.20   -1.83   -2.48   -3.17   -3.88   -4.57   -5.09   -5.27   -4.97   -4.15   -2.90   -1.33    0.52    2.78    5.73    9.52
+   345.0    0.00   -0.20   -0.63   -1.20   -1.84   -2.50   -3.18   -3.89   -4.58   -5.11   -5.30   -5.02   -4.22   -2.98   -1.43    0.39    2.62    5.55    9.34
+   350.0    0.00   -0.20   -0.63   -1.21   -1.85   -2.51   -3.20   -3.91   -4.61   -5.14   -5.35   -5.09   -4.31   -3.09   -1.56    0.24    2.44    5.33    9.11
+   355.0    0.00   -0.20   -0.63   -1.21   -1.86   -2.52   -3.22   -3.94   -4.64   -5.19   -5.42   -5.17   -4.41   -3.21   -1.70    0.07    2.24    5.08    8.84
+   360.0    0.00   -0.20   -0.64   -1.22   -1.87   -2.54   -3.24   -3.97   -4.68   -5.25   -5.50   -5.27   -4.53   -3.34   -1.84   -0.09    2.04    4.84    8.57
+   G02                                                      END OF FREQUENCY    
+   R01                                                      START OF FREQUENCY  
+      0.60      0.98    158.30                              NORTH / EAST / UP   
+   NOAZI    0.00    0.02    0.12    0.30    0.55    0.79    0.91    0.77    0.29   -0.46   -1.34   -2.15   -2.77   -3.10   -3.15   -2.87   -2.07   -0.41    2.40
+     0.0    0.00    0.01    0.07    0.21    0.44    0.63    0.67    0.44   -0.08   -0.82   -1.63   -2.31   -2.81   -3.12   -3.25   -3.12   -2.44   -0.83    1.90
+     5.0    0.00    0.01    0.07    0.21    0.42    0.61    0.64    0.39   -0.15   -0.90   -1.69   -2.38   -2.89   -3.22   -3.36   -3.24   -2.58   -1.00    1.64
+    10.0    0.00    0.01    0.08    0.22    0.42    0.60    0.61    0.36   -0.18   -0.95   -1.75   -2.47   -2.99   -3.32   -3.46   -3.33   -2.66   -1.12    1.42
+    15.0    0.00    0.01    0.07    0.22    0.42    0.59    0.60    0.35   -0.19   -0.97   -1.79   -2.54   -3.07   -3.41   -3.55   -3.38   -2.70   -1.18    1.26
+    20.0    0.00    0.01    0.07    0.22    0.42    0.59    0.61    0.35   -0.19   -0.97   -1.83   -2.60   -3.16   -3.50   -3.61   -3.40   -2.67   -1.17    1.17
+    25.0    0.00    0.01    0.08    0.22    0.42    0.59    0.60    0.36   -0.19   -0.97   -1.85   -2.65   -3.24   -3.58   -3.65   -3.39   -2.61   -1.11    1.18
+    30.0    0.00    0.01    0.08    0.23    0.43    0.60    0.62    0.38   -0.16   -0.96   -1.87   -2.68   -3.30   -3.63   -3.68   -3.35   -2.53   -0.99    1.28
+    35.0    0.00    0.01    0.08    0.23    0.43    0.61    0.63    0.40   -0.15   -0.95   -1.87   -2.71   -3.34   -3.67   -3.68   -3.30   -2.42   -0.85    1.46
+    40.0    0.00    0.01    0.08    0.23    0.43    0.61    0.64    0.42   -0.12   -0.93   -1.85   -2.72   -3.36   -3.70   -3.68   -3.25   -2.31   -0.69    1.70
+    45.0    0.00    0.01    0.09    0.24    0.45    0.62    0.66    0.43   -0.10   -0.90   -1.84   -2.72   -3.38   -3.71   -3.66   -3.19   -2.20   -0.53    1.96
+    50.0    0.00    0.01    0.09    0.25    0.45    0.63    0.66    0.46   -0.07   -0.88   -1.82   -2.70   -3.37   -3.70   -3.64   -3.15   -2.12   -0.38    2.22
+    55.0    0.00    0.01    0.09    0.25    0.46    0.63    0.68    0.47   -0.04   -0.85   -1.78   -2.67   -3.34   -3.68   -3.61   -3.11   -2.06   -0.27    2.46
+    60.0    0.00    0.01    0.09    0.26    0.46    0.65    0.70    0.49   -0.01   -0.80   -1.73   -2.62   -3.30   -3.64   -3.58   -3.07   -2.02   -0.20    2.63
+    65.0    0.00    0.01    0.09    0.26    0.47    0.66    0.72    0.52    0.02   -0.75   -1.68   -2.57   -3.23   -3.58   -3.54   -3.04   -2.00   -0.16    2.73
+    70.0    0.00    0.01    0.09    0.27    0.48    0.67    0.74    0.55    0.08   -0.70   -1.62   -2.50   -3.17   -3.52   -3.49   -3.02   -1.99   -0.17    2.75
+    75.0    0.00    0.01    0.11    0.27    0.49    0.70    0.77    0.60    0.12   -0.64   -1.55   -2.42   -3.09   -3.44   -3.42   -2.97   -1.99   -0.20    2.72
+    80.0    0.00    0.01    0.11    0.28    0.50    0.72    0.81    0.64    0.18   -0.58   -1.49   -2.36   -3.02   -3.36   -3.35   -2.94   -2.00   -0.26    2.61
+    85.0    0.00    0.01    0.11    0.28    0.52    0.75    0.84    0.69    0.23   -0.51   -1.41   -2.27   -2.93   -3.27   -3.26   -2.87   -1.98   -0.32    2.51
+    90.0    0.00    0.01    0.11    0.28    0.53    0.78    0.89    0.74    0.28   -0.46   -1.35   -2.20   -2.83   -3.15   -3.15   -2.80   -1.96   -0.35    2.40
+    95.0    0.00    0.01    0.11    0.29    0.55    0.80    0.93    0.79    0.33   -0.41   -1.29   -2.12   -2.73   -3.04   -3.03   -2.70   -1.91   -0.36    2.33
+   100.0    0.00    0.01    0.11    0.30    0.57    0.83    0.96    0.83    0.37   -0.37   -1.24   -2.05   -2.63   -2.91   -2.90   -2.60   -1.84   -0.33    2.35
+   105.0    0.00    0.01    0.11    0.31    0.59    0.85    1.00    0.87    0.41   -0.34   -1.20   -1.98   -2.53   -2.78   -2.76   -2.46   -1.75   -0.26    2.43
+   110.0    0.00    0.01    0.11    0.30    0.59    0.88    1.02    0.90    0.43   -0.30   -1.16   -1.92   -2.44   -2.67   -2.63   -2.35   -1.63   -0.14    2.58
+   115.0    0.00    0.02    0.11    0.31    0.60    0.89    1.05    0.93    0.46   -0.27   -1.13   -1.86   -2.34   -2.54   -2.50   -2.21   -1.51    0.01    2.82
+   120.0    0.00    0.01    0.11    0.31    0.61    0.91    1.07    0.96    0.48   -0.25   -1.09   -1.81   -2.27   -2.43   -2.39   -2.10   -1.39    0.19    3.08
+   125.0    0.00    0.01    0.10    0.30    0.61    0.92    1.10    0.99    0.51   -0.22   -1.06   -1.76   -2.19   -2.35   -2.28   -1.99   -1.27    0.36    3.37
+   130.0    0.00    0.01    0.10    0.30    0.61    0.93    1.11    1.01    0.55   -0.19   -1.02   -1.71   -2.13   -2.28   -2.21   -1.91   -1.16    0.51    3.61
+   135.0    0.00    0.01    0.10    0.30    0.60    0.94    1.13    1.03    0.59   -0.14   -0.97   -1.67   -2.09   -2.24   -2.16   -1.85   -1.09    0.61    3.80
+   140.0    0.00    0.01    0.09    0.29    0.60    0.93    1.15    1.07    0.64   -0.10   -0.93   -1.64   -2.08   -2.23   -2.15   -1.84   -1.06    0.66    3.87
+   145.0    0.00    0.02    0.10    0.28    0.59    0.93    1.16    1.10    0.68   -0.05   -0.89   -1.62   -2.08   -2.23   -2.17   -1.85   -1.07    0.66    3.86
+   150.0    0.00    0.01    0.09    0.27    0.58    0.93    1.17    1.14    0.72    0.01   -0.85   -1.60   -2.09   -2.28   -2.21   -1.91   -1.12    0.58    3.70
+   155.0    0.00    0.01    0.09    0.27    0.57    0.92    1.18    1.15    0.76    0.04   -0.82   -1.60   -2.12   -2.34   -2.30   -2.00   -1.23    0.43    3.46
+   160.0    0.00    0.01    0.09    0.26    0.55    0.91    1.16    1.16    0.78    0.07   -0.81   -1.61   -2.17   -2.42   -2.40   -2.11   -1.38    0.21    3.14
+   165.0    0.00    0.01    0.09    0.26    0.53    0.89    1.14    1.16    0.79    0.08   -0.81   -1.65   -2.24   -2.51   -2.52   -2.25   -1.56   -0.05    2.78
+   170.0    0.00    0.02    0.08    0.24    0.52    0.85    1.12    1.12    0.77    0.06   -0.84   -1.69   -2.30   -2.63   -2.65   -2.42   -1.77   -0.31    2.42
+   175.0    0.00    0.02    0.09    0.24    0.50    0.83    1.07    1.07    0.72    0.01   -0.88   -1.75   -2.38   -2.73   -2.79   -2.59   -1.98   -0.57    2.09
+   180.0    0.00    0.02    0.09    0.24    0.49    0.80    1.03    1.01    0.64   -0.05   -0.94   -1.81   -2.47   -2.83   -2.92   -2.76   -2.18   -0.81    1.85
+   185.0    0.00    0.02    0.10    0.24    0.48    0.77    0.98    0.93    0.57   -0.14   -1.03   -1.88   -2.54   -2.92   -3.04   -2.91   -2.37   -0.99    1.69
+   190.0    0.00    0.02    0.10    0.25    0.47    0.74    0.91    0.86    0.46   -0.24   -1.11   -1.97   -2.61   -3.01   -3.16   -3.05   -2.51   -1.13    1.64
+   195.0    0.00    0.03    0.11    0.25    0.48    0.71    0.86    0.79    0.38   -0.33   -1.20   -2.03   -2.68   -3.08   -3.25   -3.16   -2.62   -1.18    1.70
+   200.0    0.00    0.04    0.12    0.27    0.48    0.70    0.83    0.71    0.28   -0.43   -1.28   -2.10   -2.75   -3.15   -3.32   -3.25   -2.67   -1.17    1.83
+   205.0    0.00    0.04    0.13    0.28    0.49    0.69    0.80    0.65    0.21   -0.50   -1.35   -2.16   -2.80   -3.21   -3.40   -3.30   -2.68   -1.10    2.01
+   210.0    0.00    0.04    0.14    0.30    0.51    0.71    0.78    0.62    0.17   -0.54   -1.40   -2.21   -2.85   -3.26   -3.45   -3.33   -2.65   -0.97    2.22
+   215.0    0.00    0.05    0.14    0.32    0.53    0.73    0.79    0.61    0.14   -0.58   -1.43   -2.24   -2.88   -3.31   -3.50   -3.35   -2.59   -0.83    2.44
+   220.0    0.00    0.05    0.16    0.33    0.55    0.75    0.80    0.62    0.14   -0.59   -1.44   -2.26   -2.93   -3.35   -3.53   -3.35   -2.53   -0.68    2.60
+   225.0    0.00    0.05    0.17    0.35    0.59    0.79    0.84    0.66    0.18   -0.57   -1.43   -2.27   -2.95   -3.41   -3.57   -3.33   -2.46   -0.55    2.73
+   230.0    0.00    0.06    0.18    0.38    0.62    0.81    0.88    0.69    0.21   -0.55   -1.42   -2.27   -2.98   -3.45   -3.61   -3.34   -2.40   -0.46    2.78
+   235.0    0.00    0.06    0.19    0.40    0.64    0.86    0.91    0.73    0.24   -0.51   -1.39   -2.27   -2.99   -3.47   -3.64   -3.35   -2.37   -0.41    2.75
+   240.0    0.00    0.06    0.19    0.41    0.67    0.88    0.95    0.76    0.28   -0.47   -1.37   -2.25   -3.00   -3.50   -3.67   -3.38   -2.38   -0.42    2.68
+   245.0    0.00    0.06    0.20    0.43    0.69    0.91    0.98    0.81    0.31   -0.44   -1.34   -2.24   -3.00   -3.52   -3.70   -3.41   -2.43   -0.48    2.56
+   250.0    0.00    0.06    0.21    0.44    0.70    0.93    1.00    0.83    0.33   -0.42   -1.31   -2.23   -3.00   -3.53   -3.74   -3.47   -2.50   -0.57    2.41
+   255.0    0.00    0.07    0.21    0.44    0.71    0.94    1.01    0.82    0.34   -0.41   -1.30   -2.21   -2.99   -3.53   -3.76   -3.51   -2.59   -0.72    2.27
+   260.0    0.00    0.07    0.21    0.45    0.72    0.94    1.01    0.83    0.34   -0.40   -1.29   -2.18   -2.96   -3.52   -3.77   -3.56   -2.69   -0.86    2.12
+   265.0    0.00    0.07    0.21    0.44    0.71    0.94    1.01    0.83    0.34   -0.40   -1.29   -2.18   -2.93   -3.48   -3.74   -3.60   -2.78   -0.98    2.03
+   270.0    0.00    0.06    0.21    0.44    0.71    0.93    1.02    0.83    0.35   -0.40   -1.29   -2.16   -2.90   -3.44   -3.71   -3.60   -2.83   -1.09    1.97
+   275.0    0.00    0.06    0.20    0.42    0.69    0.93    1.01    0.83    0.35   -0.40   -1.27   -2.14   -2.86   -3.38   -3.66   -3.57   -2.85   -1.13    1.96
+   280.0    0.00    0.06    0.20    0.41    0.68    0.92    1.02    0.85    0.36   -0.38   -1.26   -2.11   -2.82   -3.31   -3.58   -3.49   -2.81   -1.13    1.99
+   285.0    0.00    0.06    0.19    0.40    0.67    0.93    1.03    0.88    0.39   -0.36   -1.23   -2.08   -2.77   -3.24   -3.47   -3.38   -2.72   -1.05    2.07
+   290.0    0.00    0.06    0.18    0.39    0.67    0.93    1.05    0.91    0.43   -0.32   -1.21   -2.05   -2.73   -3.15   -3.34   -3.23   -2.57   -0.93    2.18
+   295.0    0.00    0.04    0.17    0.38    0.66    0.94    1.08    0.95    0.48   -0.27   -1.17   -2.03   -2.68   -3.07   -3.22   -3.06   -2.37   -0.74    2.33
+   300.0    0.00    0.04    0.16    0.37    0.65    0.93    1.10    1.00    0.53   -0.23   -1.14   -1.99   -2.63   -2.98   -3.08   -2.87   -2.16   -0.54    2.48
+   305.0    0.00    0.04    0.15    0.35    0.64    0.94    1.13    1.03    0.59   -0.19   -1.11   -1.97   -2.59   -2.92   -2.94   -2.68   -1.94   -0.32    2.64
+   310.0    0.00    0.04    0.14    0.34    0.63    0.94    1.14    1.06    0.62   -0.16   -1.09   -1.95   -2.55   -2.85   -2.83   -2.52   -1.73   -0.12    2.79
+   315.0    0.00    0.03    0.14    0.32    0.62    0.93    1.14    1.07    0.63   -0.15   -1.08   -1.93   -2.53   -2.79   -2.75   -2.39   -1.57    0.05    2.91
+   320.0    0.00    0.03    0.12    0.31    0.60    0.92    1.13    1.06    0.62   -0.16   -1.08   -1.93   -2.51   -2.75   -2.69   -2.30   -1.47    0.18    3.00
+   325.0    0.00    0.03    0.12    0.29    0.57    0.90    1.10    1.02    0.57   -0.19   -1.12   -1.94   -2.50   -2.73   -2.66   -2.27   -1.42    0.24    3.06
+   330.0    0.00    0.02    0.10    0.29    0.56    0.86    1.06    0.95    0.50   -0.26   -1.16   -1.96   -2.51   -2.73   -2.68   -2.31   -1.45    0.23    3.06
+   335.0    0.00    0.02    0.10    0.27    0.53    0.83    0.99    0.88    0.41   -0.35   -1.22   -2.00   -2.52   -2.75   -2.71   -2.38   -1.55    0.15    2.99
+   340.0    0.00    0.02    0.09    0.24    0.51    0.78    0.93    0.80    0.31   -0.44   -1.29   -2.05   -2.55   -2.80   -2.80   -2.49   -1.69    0.01    2.87
+   345.0    0.00    0.02    0.09    0.24    0.49    0.73    0.86    0.69    0.20   -0.55   -1.39   -2.10   -2.60   -2.86   -2.89   -2.65   -1.87   -0.19    2.68
+   350.0    0.00    0.01    0.08    0.23    0.47    0.70    0.78    0.59    0.09   -0.65   -1.47   -2.16   -2.66   -2.93   -3.01   -2.82   -2.08   -0.40    2.45
+   355.0    0.00    0.01    0.08    0.22    0.45    0.66    0.72    0.52   -2.56   -0.75   -1.55   -2.24   -2.73   -3.02   -3.13   -2.98   -2.27   -0.62    2.19
+   360.0    0.00    0.01    0.07    0.21    0.44    0.63    0.67    0.44   -0.08   -0.82   -1.63   -2.31   -2.81   -3.12   -3.25   -3.12   -2.44   -0.83    1.90
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+      0.11      0.05    154.04                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.18   -0.65   -1.31   -2.05   -2.79   -3.58   -4.42   -5.29   -6.07   -6.53   -6.47   -5.75   -4.46   -2.81   -0.95    1.10    3.67    7.22
+     0.0    0.00   -0.18   -0.67   -1.36   -2.13   -2.92   -3.73   -4.57   -5.39   -6.10   -6.49   -6.36   -5.67   -4.52   -3.09   -1.52    0.34    2.88    6.60
+     5.0    0.00   -0.18   -0.67   -1.36   -2.17   -2.97   -3.79   -4.64   -5.46   -6.15   -6.52   -6.39   -5.73   -4.63   -3.24   -1.69    0.17    2.72    6.40
+    10.0    0.00   -0.18   -0.67   -1.38   -2.17   -3.01   -3.85   -4.70   -5.52   -6.18   -6.54   -6.42   -5.79   -4.71   -3.37   -1.82    0.06    2.60    6.21
+    15.0    0.00   -0.18   -0.67   -1.38   -2.18   -3.04   -3.89   -4.75   -5.55   -6.21   -6.56   -6.46   -5.85   -4.80   -3.46   -1.90   -0.01    2.53    6.04
+    20.0    0.00   -0.18   -0.67   -1.37   -2.19   -3.04   -3.91   -4.78   -5.59   -6.24   -6.60   -6.49   -5.89   -4.85   -3.50   -1.91   -1.63    2.52    5.95
+    25.0    0.00   -0.18   -0.67   -1.36   -2.18   -3.04   -3.91   -4.79   -5.61   -6.28   -6.63   -6.53   -5.93   -4.88   -3.49   -1.86    0.06    2.58    5.92
+    30.0    0.00   -0.19   -0.65   -1.36   -2.16   -3.02   -3.90   -4.78   -5.62   -6.32   -6.68   -6.59   -5.96   -4.88   -3.44   -1.78    0.20    2.69    5.98
+    35.0    0.00   -0.18   -0.65   -1.34   -2.13   -2.99   -3.86   -4.77   -5.63   -6.34   -6.74   -6.63   -5.98   -4.84   -3.36   -1.64    0.36    2.86    6.15
+    40.0    0.00   -0.18   -0.65   -1.33   -2.10   -2.94   -3.81   -4.73   -5.62   -6.36   -6.78   -6.67   -5.99   -4.79   -3.24   -1.47    0.56    3.07    6.40
+    45.0    0.00   -0.18   -0.65   -1.31   -2.06   -2.89   -3.75   -4.68   -5.60   -6.37   -6.80   -6.70   -5.98   -4.72   -3.11   -1.28    0.76    3.29    6.72
+    50.0    0.00   -0.18   -0.63   -1.29   -2.04   -2.83   -3.69   -4.62   -5.57   -6.37   -6.82   -6.71   -5.96   -4.66   -2.98   -1.11    0.96    3.54    7.10
+    55.0    0.00   -0.17   -0.64   -1.28   -2.01   -2.78   -3.63   -4.56   -5.51   -6.34   -6.82   -6.70   -5.93   -4.57   -2.86   -0.96    1.14    3.78    7.50
+    60.0    0.00   -0.18   -0.63   -1.26   -1.97   -2.74   -3.56   -4.48   -5.45   -6.30   -6.79   -6.68   -5.89   -4.51   -2.75   -0.84    1.29    3.98    7.87
+    65.0    0.00   -0.18   -0.64   -1.25   -1.96   -2.69   -3.51   -4.42   -5.38   -6.25   -6.74   -6.63   -5.85   -4.45   -2.69   -0.76    1.39    4.16    8.20
+    70.0    0.00   -0.18   -0.63   -1.25   -1.94   -2.67   -3.47   -4.37   -5.32   -6.17   -6.67   -6.59   -5.80   -4.41   -2.64   -0.71    1.46    4.28    8.45
+    75.0    0.00   -0.18   -0.63   -1.25   -1.94   -2.67   -3.44   -4.32   -5.25   -6.10   -6.60   -6.52   -5.76   -4.39   -2.64   -0.70    1.48    4.34    8.60
+    80.0    0.00   -0.17   -0.64   -1.26   -1.95   -2.66   -3.43   -4.28   -5.20   -6.02   -6.52   -6.46   -5.72   -4.38   -2.65   -0.72    1.48    4.36    8.63
+    85.0    0.00   -0.18   -0.65   -1.28   -1.96   -2.68   -3.43   -4.27   -5.16   -5.97   -6.46   -6.40   -5.68   -4.37   -2.67   -0.76    1.45    4.33    8.54
+    90.0    0.00   -0.18   -0.64   -1.29   -1.99   -2.70   -3.45   -4.27   -5.14   -5.92   -6.40   -6.34   -5.66   -4.38   -2.70   -0.80    1.39    4.26    8.34
+    95.0    0.00   -0.19   -0.66   -1.30   -2.02   -2.74   -3.49   -4.29   -5.14   -5.89   -6.36   -6.31   -5.64   -4.38   -2.73   -0.83    1.35    4.16    8.08
+   100.0    0.00   -0.19   -0.66   -1.32   -2.05   -2.78   -3.53   -4.32   -5.15   -5.89   -6.33   -6.29   -5.62   -4.38   -2.74   -0.84    1.31    4.05    7.77
+   105.0    0.00   -0.19   -0.67   -1.34   -2.07   -2.82   -3.57   -4.36   -5.17   -5.89   -6.33   -6.27   -5.60   -4.36   -2.72   -0.84    1.31    3.94    7.46
+   110.0    0.00   -0.19   -0.67   -1.35   -2.09   -2.84   -3.60   -4.39   -5.20   -5.92   -6.35   -6.28   -5.59   -4.35   -2.70   -0.81    1.30    3.86    7.16
+   115.0    0.00   -0.19   -0.69   -1.36   -2.10   -2.86   -3.62   -4.41   -5.21   -5.94   -6.36   -6.28   -5.59   -4.31   -2.65   -0.76    1.32    3.79    6.94
+   120.0    0.00   -0.20   -0.68   -1.36   -2.11   -2.86   -3.61   -4.41   -5.23   -5.96   -6.38   -6.30   -5.58   -4.27   -2.57   -0.68    1.37    3.76    6.77
+   125.0    0.00   -0.19   -0.68   -1.36   -2.10   -2.84   -3.60   -4.39   -5.21   -5.96   -6.41   -6.31   -5.57   -4.23   -2.51   -0.60    1.43    3.76    6.70
+   130.0    0.00   -0.19   -0.68   -1.35   -2.07   -2.81   -3.55   -4.35   -5.20   -5.96   -6.42   -6.32   -5.56   -4.18   -2.42   -0.52    1.49    3.79    6.70
+   135.0    0.00   -0.19   -0.68   -1.35   -2.06   -2.76   -3.49   -4.29   -5.16   -5.95   -6.42   -6.34   -5.55   -4.15   -2.37   -0.46    1.54    3.83    6.77
+   140.0    0.00   -0.19   -0.67   -1.33   -2.02   -2.71   -3.42   -4.22   -5.10   -5.92   -6.42   -6.35   -5.56   -4.13   -2.32   -0.41    1.57    3.87    6.87
+   145.0    0.00   -0.18   -0.66   -1.31   -1.99   -2.66   -3.35   -4.15   -5.03   -5.88   -6.43   -6.37   -5.57   -4.14   -2.31   -0.39    1.58    3.88    6.99
+   150.0    0.00   -0.19   -0.67   -1.29   -1.96   -2.60   -3.28   -4.07   -4.99   -5.86   -6.42   -6.39   -5.61   -4.16   -2.35   -0.42    1.56    3.89    7.09
+   155.0    0.00   -0.19   -0.66   -1.28   -1.93   -2.57   -3.24   -4.02   -4.94   -5.84   -6.43   -6.41   -5.65   -4.22   -2.40   -0.48    1.49    3.86    7.17
+   160.0    0.00   -0.18   -0.65   -1.27   -1.92   -2.54   -3.21   -4.01   -4.92   -5.84   -6.44   -6.45   -5.71   -4.29   -2.49   -0.59    1.39    3.80    7.19
+   165.0    0.00   -0.18   -0.65   -1.26   -1.90   -2.54   -3.20   -4.00   -4.94   -5.86   -6.47   -6.50   -5.78   -4.39   -2.62   -0.72    1.26    3.70    7.18
+   170.0    0.00   -0.18   -0.64   -1.26   -1.91   -2.55   -3.24   -4.04   -4.98   -5.89   -6.52   -6.55   -5.85   -4.50   -2.75   -0.89    1.10    3.57    7.11
+   175.0    0.00   -0.18   -0.64   -1.26   -1.92   -2.58   -3.30   -4.11   -5.06   -5.97   -6.58   -6.61   -5.94   -4.62   -2.92   -1.07    0.94    3.43    7.03
+   180.0    0.00   -0.18   -0.64   -1.26   -1.94   -2.63   -3.37   -4.20   -5.15   -6.04   -6.64   -6.66   -6.01   -4.73   -3.07   -1.25    0.76    3.30    6.93
+   185.0    0.00   -0.18   -0.63   -1.27   -1.96   -2.68   -3.45   -4.31   -5.25   -6.12   -6.70   -6.72   -6.09   -4.85   -3.22   -1.41    0.62    3.20    6.85
+   190.0    0.00   -0.17   -0.62   -1.27   -1.99   -2.73   -3.53   -4.41   -5.34   -6.19   -6.74   -6.76   -6.15   -4.95   -3.36   -1.55    0.51    3.13    6.79
+   195.0    0.00   -0.17   -0.62   -1.27   -2.02   -2.79   -3.61   -4.50   -5.43   -6.25   -6.78   -6.79   -6.19   -5.03   -3.46   -1.66    0.44    3.12    6.78
+   200.0    0.00   -0.16   -0.63   -1.28   -2.03   -2.84   -3.68   -4.58   -5.48   -6.30   -6.81   -6.82   -6.23   -5.08   -3.54   -1.71    0.43    3.15    6.84
+   205.0    0.00   -0.16   -0.62   -1.28   -2.05   -2.87   -3.72   -4.61   -5.51   -6.31   -6.80   -6.82   -6.25   -5.12   -3.57   -1.71    0.48    3.25    6.94
+   210.0    0.00   -0.16   -0.62   -1.28   -2.06   -2.88   -3.73   -4.63   -5.51   -6.30   -6.79   -6.81   -6.24   -5.13   -3.56   -1.67    0.59    3.39    7.08
+   215.0    0.00   -0.16   -0.61   -1.28   -2.05   -2.88   -3.73   -4.61   -5.48   -6.26   -6.76   -6.79   -6.24   -5.11   -3.51   -1.56    0.74    3.58    7.25
+   220.0    0.00   -0.16   -0.61   -1.28   -2.04   -2.86   -3.69   -4.56   -5.42   -6.20   -6.72   -6.76   -6.21   -5.07   -3.43   -1.43    0.92    3.79    7.45
+   225.0    0.00   -0.15   -0.61   -1.27   -2.03   -2.83   -3.65   -4.50   -5.37   -6.15   -6.68   -6.73   -6.18   -5.00   -3.32   -1.26    1.12    3.99    7.63
+   230.0    0.00   -0.15   -0.61   -1.26   -2.01   -2.79   -3.59   -4.44   -5.31   -6.10   -6.64   -6.70   -6.14   -4.92   -3.18   -1.08    1.33    4.18    7.79
+   235.0    0.00   -0.15   -0.60   -1.25   -1.99   -2.75   -3.54   -4.38   -5.25   -6.07   -6.61   -6.67   -6.09   -4.83   -3.04   -0.91    1.51    4.33    7.92
+   240.0    0.00   -0.15   -0.59   -1.25   -1.98   -2.72   -3.51   -4.33   -5.22   -6.05   -6.61   -6.65   -6.03   -4.73   -2.90   -0.75    1.65    4.44    8.00
+   245.0    0.00   -0.15   -0.60   -1.23   -1.96   -2.71   -3.48   -4.32   -5.20   -6.04   -6.61   -6.64   -5.98   -4.63   -2.77   -0.62    1.75    4.49    8.04
+   250.0    0.00   -0.15   -0.60   -1.23   -1.95   -2.70   -3.48   -4.32   -5.22   -6.06   -6.60   -6.62   -5.91   -4.53   -2.66   -0.53    1.79    4.48    8.04
+   255.0    0.00   -0.15   -0.58   -1.23   -1.95   -2.70   -3.48   -4.34   -5.25   -6.09   -6.62   -6.58   -5.85   -4.44   -2.57   -0.47    1.78    4.43    8.00
+   260.0    0.00   -0.14   -0.59   -1.23   -1.96   -2.70   -3.51   -4.38   -5.30   -6.12   -6.62   -6.55   -5.78   -4.35   -2.51   -0.47    1.73    4.35    7.95
+   265.0    0.00   -0.15   -0.59   -1.23   -1.96   -2.73   -3.54   -4.42   -5.34   -6.15   -6.62   -6.51   -5.69   -4.28   -2.46   -0.49    1.64    4.23    7.87
+   270.0    0.00   -0.15   -0.59   -1.23   -1.96   -2.74   -3.57   -4.46   -5.38   -6.16   -6.60   -6.44   -5.62   -4.21   -2.45   -0.54    1.53    4.13    7.82
+   275.0    0.00   -0.15   -0.58   -1.24   -1.97   -2.75   -3.59   -4.49   -5.40   -6.16   -6.56   -6.37   -5.54   -4.15   -2.44   -0.60    1.43    4.02    7.77
+   280.0    0.00   -0.15   -0.59   -1.24   -1.98   -2.77   -3.61   -4.50   -5.40   -6.13   -6.50   -6.29   -5.46   -4.11   -2.45   -0.66    1.33    3.94    7.73
+   285.0    0.00   -0.15   -0.60   -1.25   -1.98   -2.77   -3.60   -4.49   -5.36   -6.08   -6.43   -6.21   -5.39   -4.07   -2.46   -0.72    1.27    3.88    7.70
+   290.0    0.00   -0.15   -0.61   -1.24   -1.98   -2.76   -3.58   -4.45   -5.31   -6.01   -6.36   -6.13   -5.32   -4.03   -2.46   -0.74    1.23    3.87    7.69
+   295.0    0.00   -0.15   -0.60   -1.25   -1.97   -2.74   -3.55   -4.40   -5.24   -5.94   -6.27   -6.07   -5.28   -4.00   -2.45   -0.74    1.24    3.89    7.69
+   300.0    0.00   -0.16   -0.61   -1.24   -1.96   -2.72   -3.50   -4.33   -5.16   -5.86   -6.21   -6.02   -5.24   -3.99   -2.43   -0.72    1.28    3.93    7.68
+   305.0    0.00   -0.16   -0.61   -1.25   -1.96   -2.69   -3.44   -4.25   -5.08   -5.78   -6.16   -5.98   -5.23   -3.97   -2.41   -0.68    1.33    3.98    7.68
+   310.0    0.00   -0.16   -0.61   -1.25   -1.95   -2.67   -3.40   -4.19   -5.01   -5.73   -6.12   -5.98   -5.22   -3.96   -2.37   -0.62    1.40    4.02    7.69
+   315.0    0.00   -0.16   -0.62   -1.25   -1.94   -2.63   -3.35   -4.13   -4.96   -5.70   -6.11   -5.99   -5.24   -3.95   -2.34   -0.57    1.45    4.06    7.68
+   320.0    0.00   -0.16   -0.62   -1.26   -1.94   -2.62   -3.33   -4.10   -4.94   -5.69   -6.12   -6.01   -5.26   -3.95   -2.32   -0.53    1.48    4.06    7.65
+   325.0    0.00   -0.17   -0.62   -1.27   -1.95   -2.63   -3.32   -4.10   -4.94   -5.71   -6.17   -6.06   -5.30   -3.97   -2.32   -0.52    1.47    4.03    7.60
+   330.0    0.00   -0.17   -0.63   -1.27   -1.96   -2.63   -3.33   -4.12   -4.97   -5.75   -6.22   -6.11   -5.34   -4.01   -2.34   -0.55    1.41    3.95    7.54
+   335.0    0.00   -0.17   -0.64   -1.29   -1.98   -2.66   -3.37   -4.16   -5.02   -5.80   -6.27   -6.17   -5.39   -4.05   -2.40   -0.63    1.31    3.84    7.45
+   340.0    0.00   -0.18   -0.65   -1.30   -2.01   -2.70   -3.43   -4.23   -5.09   -5.87   -6.32   -6.21   -5.45   -4.12   -2.49   -0.75    1.16    3.68    7.33
+   345.0    0.00   -0.18   -0.65   -1.31   -2.04   -2.76   -3.50   -4.30   -5.17   -5.94   -6.37   -6.26   -5.50   -4.20   -2.61   -0.92    0.96    3.49    7.18
+   350.0    0.00   -0.18   -0.65   -1.33   -2.07   -2.81   -3.58   -4.39   -5.25   -5.99   -6.42   -6.30   -5.56   -4.30   -2.77   -1.11    0.76    3.28    7.01
+   355.0    0.00   -0.18   -0.66   -1.34   -2.10   -2.87   -3.65   -4.48   -5.32   -6.06   -6.47   -6.33   -5.62   -4.41   -2.93   -1.32    0.55    3.08    6.81
+   360.0    0.00   -0.18   -0.67   -1.36   -2.13   -2.92   -3.73   -4.57   -5.39   -6.10   -6.49   -6.36   -5.67   -4.52   -3.09   -1.52    0.34    2.88    6.60
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+LEIAR25.R4      SCIT                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               5    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     4                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+# Number of Calibrated Antennas:           5                COMMENT             
+# Number of Individual GPS-Calibrations:  16                COMMENT             
+# Number of Individual GLO-Calibrations:  15                COMMENT             
+# GLONASS PCV                                               COMMENT             
+#  derived from Delta PCV per 25.0 MHz                      COMMENT             
+#  for frequency channel number k=0                         COMMENT             
+   G01                                                      START OF FREQUENCY  
+      1.05     -0.54    164.15                              NORTH / EAST / UP   
+   NOAZI    0.00    0.19    0.76    1.64    2.70    3.78    4.65    5.11    5.05    4.45    3.43    2.17    0.87   -0.33   -1.36   -2.14   -2.57   -2.49   -1.75
+     0.0    0.00    0.24    0.81    1.66    2.67    3.69    4.55    5.05    5.04    4.49    3.49    2.25    0.97   -0.17   -1.12   -1.89   -2.44   -2.62   -2.07
+     5.0    0.00    0.25    0.83    1.68    2.68    3.70    4.53    5.00    4.96    4.40    3.40    2.15    0.87   -0.30   -1.28   -2.06   -2.61   -2.78   -2.25
+    10.0    0.00    0.25    0.84    1.70    2.70    3.70    4.51    4.95    4.89    4.31    3.31    2.07    0.77   -0.42   -1.42   -2.21   -2.75   -2.90   -2.38
+    15.0    0.00    0.26    0.86    1.72    2.72    3.71    4.50    4.91    4.83    4.24    3.24    1.99    0.69   -0.51   -1.54   -2.34   -2.87   -2.98   -2.45
+    20.0    0.00    0.27    0.87    1.74    2.74    3.72    4.49    4.88    4.77    4.17    3.17    1.93    0.63   -0.58   -1.62   -2.43   -2.94   -3.01   -2.46
+    25.0    0.00    0.27    0.88    1.76    2.77    3.74    4.49    4.85    4.73    4.12    3.12    1.89    0.60   -0.62   -1.67   -2.49   -2.97   -3.00   -2.41
+    30.0    0.00    0.28    0.90    1.78    2.79    3.76    4.49    4.83    4.69    4.07    3.07    1.86    0.58   -0.64   -1.69   -2.51   -2.97   -2.94   -2.31
+    35.0    0.00    0.28    0.91    1.80    2.81    3.78    4.50    4.82    4.65    4.03    3.04    1.84    0.58   -0.63   -1.68   -2.50   -2.94   -2.86   -2.18
+    40.0    0.00    0.28    0.92    1.82    2.84    3.80    4.51    4.81    4.63    4.00    3.01    1.83    0.59   -0.60   -1.65   -2.46   -2.88   -2.76   -2.02
+    45.0    0.00    0.29    0.93    1.83    2.86    3.82    4.53    4.81    4.62    3.97    2.99    1.82    0.61   -0.57   -1.61   -2.41   -2.82   -2.65   -1.86
+    50.0    0.00    0.29    0.94    1.85    2.88    3.85    4.54    4.82    4.61    3.96    2.98    1.82    0.62   -0.53   -1.57   -2.36   -2.75   -2.55   -1.71
+    55.0    0.00    0.29    0.94    1.86    2.90    3.87    4.57    4.84    4.62    3.95    2.96    1.81    0.63   -0.51   -1.53   -2.32   -2.70   -2.47   -1.59
+    60.0    0.00    0.29    0.94    1.87    2.92    3.89    4.59    4.86    4.63    3.95    2.96    1.81    0.63   -0.49   -1.50   -2.29   -2.66   -2.42   -1.50
+    65.0    0.00    0.29    0.95    1.88    2.93    3.92    4.62    4.89    4.65    3.96    2.95    1.80    0.62   -0.49   -1.50   -2.28   -2.65   -2.40   -1.46
+    70.0    0.00    0.29    0.95    1.88    2.94    3.94    4.65    4.92    4.67    3.97    2.95    1.79    0.61   -0.50   -1.51   -2.29   -2.66   -2.41   -1.45
+    75.0    0.00    0.29    0.94    1.88    2.95    3.96    4.68    4.95    4.70    3.99    2.96    1.79    0.60   -0.52   -1.53   -2.32   -2.70   -2.44   -1.47
+    80.0    0.00    0.29    0.94    1.88    2.96    3.97    4.71    4.99    4.74    4.02    2.98    1.79    0.59   -0.54   -1.56   -2.36   -2.76   -2.50   -1.51
+    85.0    0.00    0.28    0.93    1.88    2.96    3.99    4.73    5.02    4.78    4.06    3.01    1.81    0.60   -0.55   -1.59   -2.41   -2.82   -2.56   -1.55
+    90.0    0.00    0.28    0.93    1.87    2.96    4.00    4.76    5.06    4.83    4.11    3.05    1.84    0.61   -0.55   -1.61   -2.45   -2.87   -2.62   -1.59
+    95.0    0.00    0.27    0.92    1.86    2.96    4.01    4.79    5.10    4.88    4.16    3.11    1.89    0.65   -0.53   -1.61   -2.47   -2.91   -2.66   -1.60
+   100.0    0.00    0.27    0.91    1.86    2.96    4.02    4.81    5.14    4.93    4.22    3.17    1.95    0.71   -0.49   -1.58   -2.46   -2.92   -2.67   -1.59
+   105.0    0.00    0.26    0.90    1.84    2.96    4.03    4.83    5.18    4.98    4.28    3.24    2.02    0.78   -0.42   -1.52   -2.42   -2.89   -2.65   -1.54
+   110.0    0.00    0.25    0.89    1.83    2.95    4.04    4.85    5.21    5.03    4.35    3.31    2.11    0.87   -0.33   -1.43   -2.34   -2.82   -2.58   -1.46
+   115.0    0.00    0.24    0.87    1.82    2.94    4.04    4.87    5.25    5.08    4.41    3.39    2.20    0.97   -0.22   -1.32   -2.23   -2.71   -2.48   -1.36
+   120.0    0.00    0.24    0.86    1.80    2.94    4.05    4.89    5.29    5.13    4.48    3.47    2.29    1.08   -0.10   -1.19   -2.09   -2.57   -2.35   -1.24
+   125.0    0.00    0.23    0.84    1.79    2.93    4.05    4.91    5.32    5.18    4.54    3.55    2.38    1.18    0.02   -1.05   -1.93   -2.41   -2.20   -1.13
+   130.0    0.00    0.22    0.83    1.77    2.91    4.05    4.93    5.36    5.23    4.60    3.62    2.46    1.27    0.13   -0.91   -1.77   -2.24   -2.06   -1.04
+   135.0    0.00    0.21    0.81    1.75    2.90    4.04    4.94    5.39    5.28    4.66    3.68    2.52    1.35    0.22   -0.80   -1.63   -2.09   -1.93   -0.99
+   140.0    0.00    0.20    0.79    1.73    2.88    4.04    4.95    5.41    5.32    4.71    3.73    2.58    1.40    0.29   -0.71   -1.52   -1.98   -1.85   -0.99
+   145.0    0.00    0.19    0.77    1.71    2.86    4.02    4.95    5.43    5.35    4.75    3.77    2.61    1.43    0.32   -0.66   -1.45   -1.91   -1.82   -1.05
+   150.0    0.00    0.18    0.76    1.68    2.83    4.00    4.94    5.44    5.38    4.78    3.80    2.63    1.44    0.32   -0.66   -1.44   -1.90   -1.85   -1.18
+   155.0    0.00    0.17    0.74    1.65    2.80    3.97    4.92    5.44    5.39    4.81    3.82    2.63    1.42    0.28   -0.70   -1.49   -1.95   -1.95   -1.36
+   160.0    0.00    0.16    0.72    1.63    2.77    3.94    4.90    5.42    5.39    4.82    3.83    2.62    1.38    0.22   -0.79   -1.59   -2.07   -2.10   -1.58
+   165.0    0.00    0.16    0.70    1.60    2.73    3.89    4.86    5.40    5.38    4.82    3.83    2.60    1.32    0.13   -0.91   -1.73   -2.24   -2.31   -1.83
+   170.0    0.00    0.15    0.68    1.57    2.68    3.84    4.81    5.36    5.36    4.81    3.82    2.57    1.26    0.02   -1.06   -1.91   -2.44   -2.54   -2.09
+   175.0    0.00    0.14    0.66    1.53    2.64    3.79    4.75    5.31    5.33    4.79    3.80    2.53    1.19   -0.10   -1.22   -2.11   -2.66   -2.77   -2.32
+   180.0    0.00    0.13    0.65    1.51    2.59    3.73    4.69    5.25    5.28    4.76    3.77    2.49    1.11   -0.22   -1.38   -2.30   -2.88   -2.99   -2.51
+   185.0    0.00    0.13    0.63    1.48    2.55    3.67    4.62    5.19    5.23    4.72    3.73    2.44    1.04   -0.33   -1.52   -2.47   -3.06   -3.17   -2.65
+   190.0    0.00    0.12    0.62    1.45    2.51    3.62    4.56    5.13    5.18    4.67    3.69    2.39    0.96   -0.42   -1.64   -2.61   -3.20   -3.29   -2.71
+   195.0    0.00    0.11    0.61    1.43    2.47    3.57    4.50    5.07    5.12    4.62    3.64    2.34    0.90   -0.50   -1.73   -2.70   -3.29   -3.35   -2.70
+   200.0    0.00    0.11    0.60    1.41    2.44    3.53    4.45    5.01    5.06    4.56    3.58    2.28    0.84   -0.55   -1.78   -2.74   -3.31   -3.34   -2.61
+   205.0    0.00    0.11    0.59    1.40    2.42    3.49    4.41    4.96    5.01    4.50    3.52    2.22    0.79   -0.59   -1.80   -2.73   -3.27   -3.26   -2.47
+   210.0    0.00    0.10    0.58    1.39    2.41    3.47    4.38    4.92    4.96    4.45    3.46    2.16    0.75   -0.61   -1.78   -2.68   -3.18   -3.13   -2.29
+   215.0    0.00    0.10    0.58    1.38    2.40    3.46    4.35    4.89    4.92    4.39    3.40    2.11    0.71   -0.61   -1.75   -2.60   -3.07   -2.98   -2.10
+   220.0    0.00    0.10    0.58    1.38    2.40    3.45    4.35    4.87    4.88    4.34    3.34    2.05    0.68   -0.61   -1.70   -2.50   -2.93   -2.81   -1.91
+   225.0    0.00    0.10    0.58    1.39    2.40    3.46    4.35    4.86    4.86    4.30    3.29    2.00    0.65   -0.60   -1.65   -2.41   -2.81   -2.66   -1.75
+   230.0    0.00    0.10    0.58    1.39    2.41    3.47    4.36    4.86    4.84    4.27    3.24    1.96    0.62   -0.59   -1.60   -2.33   -2.71   -2.55   -1.63
+   235.0    0.00    0.10    0.59    1.40    2.43    3.49    4.38    4.87    4.83    4.24    3.21    1.92    0.60   -0.59   -1.57   -2.28   -2.64   -2.48   -1.58
+   240.0    0.00    0.10    0.60    1.42    2.45    3.52    4.40    4.89    4.83    4.23    3.18    1.89    0.58   -0.60   -1.56   -2.27   -2.62   -2.46   -1.58
+   245.0    0.00    0.11    0.60    1.43    2.47    3.55    4.43    4.91    4.84    4.22    3.17    1.88    0.57   -0.61   -1.58   -2.29   -2.65   -2.50   -1.65
+   250.0    0.00    0.11    0.61    1.44    2.49    3.58    4.46    4.94    4.86    4.23    3.17    1.87    0.55   -0.63   -1.61   -2.34   -2.72   -2.58   -1.76
+   255.0    0.00    0.11    0.62    1.46    2.52    3.60    4.50    4.97    4.90    4.26    3.18    1.87    0.55   -0.66   -1.66   -2.41   -2.81   -2.69   -1.89
+   260.0    0.00    0.12    0.63    1.47    2.54    3.63    4.53    5.01    4.94    4.29    3.21    1.89    0.54   -0.68   -1.71   -2.49   -2.91   -2.80   -2.04
+   265.0    0.00    0.12    0.64    1.49    2.56    3.66    4.57    5.06    4.98    4.34    3.25    1.92    0.55   -0.70   -1.76   -2.57   -3.00   -2.90   -2.17
+   270.0    0.00    0.13    0.64    1.50    2.57    3.69    4.60    5.10    5.04    4.40    3.31    1.96    0.57   -0.71   -1.80   -2.62   -3.07   -2.98   -2.27
+   275.0    0.00    0.13    0.65    1.51    2.59    3.71    4.64    5.15    5.11    4.48    3.38    2.02    0.60   -0.71   -1.81   -2.64   -3.09   -3.00   -2.31
+   280.0    0.00    0.14    0.66    1.52    2.60    3.73    4.67    5.21    5.18    4.56    3.46    2.08    0.65   -0.68   -1.79   -2.62   -3.06   -2.97   -2.30
+   285.0    0.00    0.14    0.67    1.53    2.61    3.74    4.70    5.26    5.25    4.64    3.54    2.16    0.71   -0.63   -1.74   -2.56   -2.98   -2.88   -2.22
+   290.0    0.00    0.15    0.67    1.53    2.62    3.76    4.73    5.31    5.32    4.73    3.63    2.24    0.79   -0.55   -1.65   -2.44   -2.85   -2.74   -2.08
+   295.0    0.00    0.15    0.68    1.54    2.62    3.77    4.75    5.35    5.38    4.81    3.72    2.33    0.88   -0.45   -1.52   -2.29   -2.67   -2.56   -1.90
+   300.0    0.00    0.16    0.69    1.54    2.62    3.77    4.77    5.38    5.44    4.88    3.80    2.42    0.98   -0.33   -1.37   -2.11   -2.47   -2.36   -1.68
+   305.0    0.00    0.16    0.70    1.55    2.62    3.77    4.78    5.41    5.48    4.94    3.88    2.50    1.08   -0.20   -1.21   -1.91   -2.26   -2.16   -1.46
+   310.0    0.00    0.17    0.70    1.55    2.62    3.77    4.79    5.43    5.51    4.99    3.93    2.58    1.18   -0.06   -1.04   -1.71   -2.06   -1.97   -1.26
+   315.0    0.00    0.18    0.71    1.56    2.62    3.77    4.78    5.43    5.53    5.01    3.98    2.64    1.27    0.06   -0.88   -1.53   -1.88   -1.81   -1.09
+   320.0    0.00    0.18    0.72    1.56    2.62    3.76    4.77    5.42    5.52    5.02    4.00    2.68    1.34    0.16   -0.74   -1.39   -1.75   -1.71   -0.97
+   325.0    0.00    0.19    0.73    1.57    2.62    3.75    4.75    5.40    5.50    5.00    3.99    2.70    1.38    0.24   -0.64   -1.28   -1.67   -1.67   -0.93
+   330.0    0.00    0.20    0.74    1.57    2.62    3.74    4.73    5.36    5.46    4.96    3.97    2.70    1.40    0.28   -0.59   -1.23   -1.65   -1.68   -0.95
+   335.0    0.00    0.20    0.75    1.58    2.62    3.73    4.70    5.32    5.41    4.91    3.92    2.67    1.39    0.29   -0.58   -1.24   -1.69   -1.76   -1.04
+   340.0    0.00    0.21    0.76    1.59    2.63    3.72    4.67    5.27    5.34    4.84    3.86    2.61    1.35    0.25   -0.62   -1.30   -1.78   -1.89   -1.19
+   345.0    0.00    0.22    0.77    1.61    2.63    3.71    4.64    5.21    5.27    4.76    3.78    2.54    1.28    0.18   -0.70   -1.40   -1.91   -2.06   -1.39
+   350.0    0.00    0.23    0.79    1.62    2.64    3.70    4.61    5.16    5.19    4.67    3.69    2.45    1.19    0.08   -0.82   -1.54   -2.07   -2.25   -1.62
+   355.0    0.00    0.23    0.80    1.64    2.65    3.70    4.58    5.10    5.11    4.58    3.59    2.35    1.08   -0.04   -0.97   -1.71   -2.26   -2.44   -1.85
+   360.0    0.00    0.24    0.81    1.66    2.67    3.69    4.55    5.05    5.04    4.49    3.49    2.25    0.97   -0.17   -1.12   -1.89   -2.44   -2.62   -2.07
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.22     -1.37    147.30                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.16   -0.61   -1.29   -2.12   -3.01   -3.88   -4.68   -5.34   -5.80   -5.99   -5.83   -5.22   -4.06   -2.27    0.21    3.41    7.22   11.37
+     0.0    0.00   -0.19   -0.68   -1.38   -2.22   -3.10   -3.96   -4.74   -5.37   -5.81   -5.97   -5.79   -5.20   -4.13   -2.48   -0.18    2.88    6.71   11.21
+     5.0    0.00   -0.20   -0.69   -1.40   -2.24   -3.14   -4.01   -4.80   -5.46   -5.91   -6.09   -5.93   -5.35   -4.29   -2.66   -0.39    2.62    6.39   10.82
+    10.0    0.00   -0.20   -0.69   -1.41   -2.27   -3.18   -4.06   -4.87   -5.54   -6.01   -6.21   -6.06   -5.49   -4.43   -2.81   -0.56    2.40    6.11   10.49
+    15.0    0.00   -0.20   -0.70   -1.43   -2.29   -3.21   -4.10   -4.92   -5.61   -6.10   -6.32   -6.18   -5.60   -4.53   -2.91   -0.68    2.24    5.90   10.23
+    20.0    0.00   -0.20   -0.71   -1.44   -2.31   -3.24   -4.14   -4.97   -5.67   -6.18   -6.41   -6.28   -5.69   -4.60   -2.97   -0.73    2.16    5.78   10.07
+    25.0    0.00   -0.20   -0.71   -1.45   -2.33   -3.26   -4.17   -5.00   -5.72   -6.24   -6.49   -6.35   -5.75   -4.64   -2.97   -0.71    2.18    5.76   10.02
+    30.0    0.00   -0.20   -0.71   -1.46   -2.34   -3.27   -4.18   -5.03   -5.75   -6.29   -6.54   -6.40   -5.79   -4.63   -2.92   -0.62    2.28    5.85   10.09
+    35.0    0.00   -0.20   -0.71   -1.46   -2.35   -3.28   -4.19   -5.04   -5.76   -6.31   -6.57   -6.43   -5.80   -4.60   -2.83   -0.48    2.47    6.05   10.27
+    40.0    0.00   -0.20   -0.71   -1.46   -2.35   -3.28   -4.19   -5.03   -5.76   -6.31   -6.57   -6.43   -5.78   -4.54   -2.71   -0.28    2.72    6.32   10.52
+    45.0    0.00   -0.20   -0.71   -1.46   -2.35   -3.28   -4.19   -5.02   -5.75   -6.29   -6.56   -6.41   -5.74   -4.46   -2.56   -0.06    3.00    6.64   10.83
+    50.0    0.00   -0.20   -0.71   -1.46   -2.35   -3.28   -4.18   -5.01   -5.72   -6.26   -6.52   -6.38   -5.69   -4.37   -2.41    0.16    3.30    6.98   11.15
+    55.0    0.00   -0.19   -0.70   -1.45   -2.34   -3.27   -4.17   -4.99   -5.70   -6.22   -6.48   -6.32   -5.62   -4.27   -2.26    0.38    3.59    7.30   11.45
+    60.0    0.00   -0.19   -0.70   -1.44   -2.33   -3.27   -4.16   -4.97   -5.67   -6.18   -6.42   -6.26   -5.54   -4.18   -2.13    0.57    3.84    7.59   11.71
+    65.0    0.00   -0.19   -0.69   -1.43   -2.32   -3.26   -4.15   -4.96   -5.64   -6.14   -6.36   -6.19   -5.46   -4.09   -2.01    0.72    4.04    7.81   11.90
+    70.0    0.00   -0.18   -0.68   -1.42   -2.31   -3.25   -4.14   -4.94   -5.61   -6.09   -6.30   -6.11   -5.39   -4.01   -1.93    0.83    4.18    7.97   12.00
+    75.0    0.00   -0.18   -0.67   -1.41   -2.30   -3.23   -4.13   -4.93   -5.58   -6.05   -6.24   -6.04   -5.32   -3.95   -1.87    0.90    4.26    8.05   12.02
+    80.0    0.00   -0.18   -0.66   -1.39   -2.28   -3.22   -4.11   -4.91   -5.55   -6.00   -6.18   -5.98   -5.26   -3.90   -1.84    0.92    4.28    8.06   11.96
+    85.0    0.00   -0.17   -0.65   -1.38   -2.26   -3.20   -4.10   -4.89   -5.52   -5.96   -6.13   -5.92   -5.21   -3.87   -1.83    0.91    4.27    8.03   11.85
+    90.0    0.00   -0.17   -0.64   -1.36   -2.24   -3.17   -4.07   -4.86   -5.49   -5.92   -6.08   -5.87   -5.17   -3.86   -1.84    0.89    4.24    7.97   11.70
+    95.0    0.00   -0.16   -0.63   -1.34   -2.21   -3.15   -4.04   -4.82   -5.45   -5.87   -6.03   -5.83   -5.14   -3.85   -1.86    0.86    4.20    7.91   11.56
+   100.0    0.00   -0.16   -0.61   -1.32   -2.19   -3.11   -4.00   -4.78   -5.40   -5.82   -5.98   -5.79   -5.12   -3.85   -1.88    0.83    4.17    7.87   11.45
+   105.0    0.00   -0.15   -0.60   -1.30   -2.16   -3.08   -3.96   -4.74   -5.35   -5.77   -5.93   -5.75   -5.10   -3.85   -1.89    0.81    4.16    7.85   11.39
+   110.0    0.00   -0.15   -0.59   -1.28   -2.13   -3.04   -3.92   -4.69   -5.30   -5.72   -5.88   -5.71   -5.08   -3.84   -1.89    0.82    4.17    7.88   11.41
+   115.0    0.00   -0.14   -0.58   -1.26   -2.11   -3.01   -3.87   -4.64   -5.25   -5.66   -5.83   -5.67   -5.04   -3.82   -1.87    0.84    4.21    7.94   11.49
+   120.0    0.00   -0.14   -0.57   -1.25   -2.08   -2.98   -3.84   -4.59   -5.20   -5.61   -5.78   -5.62   -5.00   -3.78   -1.84    0.87    4.26    8.03   11.65
+   125.0    0.00   -0.14   -0.57   -1.24   -2.06   -2.95   -3.80   -4.55   -5.15   -5.56   -5.73   -5.56   -4.95   -3.73   -1.79    0.92    4.32    8.13   11.85
+   130.0    0.00   -0.13   -0.56   -1.22   -2.05   -2.93   -3.78   -4.52   -5.12   -5.52   -5.68   -5.50   -4.88   -3.67   -1.74    0.96    4.37    8.23   12.08
+   135.0    0.00   -0.13   -0.55   -1.22   -2.04   -2.92   -3.76   -4.50   -5.09   -5.49   -5.63   -5.45   -4.81   -3.60   -1.69    0.99    4.39    8.30   12.29
+   140.0    0.00   -0.13   -0.55   -1.21   -2.03   -2.91   -3.76   -4.50   -5.08   -5.47   -5.59   -5.39   -4.75   -3.54   -1.65    1.00    4.39    8.33   12.47
+   145.0    0.00   -0.13   -0.55   -1.21   -2.03   -2.91   -3.76   -4.50   -5.08   -5.46   -5.57   -5.35   -4.70   -3.49   -1.62    0.99    4.34    8.30   12.57
+   150.0    0.00   -0.13   -0.55   -1.21   -2.03   -2.92   -3.77   -4.52   -5.10   -5.46   -5.56   -5.33   -4.66   -3.47   -1.63    0.93    4.24    8.20   12.57
+   155.0    0.00   -0.13   -0.55   -1.21   -2.04   -2.93   -3.78   -4.54   -5.12   -5.49   -5.58   -5.33   -4.66   -3.48   -1.67    0.84    4.10    8.04   12.47
+   160.0    0.00   -0.13   -0.55   -1.22   -2.05   -2.94   -3.80   -4.56   -5.15   -5.52   -5.61   -5.37   -4.70   -3.52   -1.75    0.72    3.92    7.82   12.27
+   165.0    0.00   -0.13   -0.55   -1.22   -2.05   -2.95   -3.82   -4.58   -5.18   -5.56   -5.67   -5.43   -4.77   -3.61   -1.86    0.56    3.71    7.56   11.98
+   170.0    0.00   -0.13   -0.55   -1.23   -2.06   -2.96   -3.83   -4.61   -5.22   -5.62   -5.74   -5.53   -4.89   -3.74   -2.01    0.38    3.48    7.27   11.63
+   175.0    0.00   -0.13   -0.56   -1.23   -2.07   -2.97   -3.84   -4.63   -5.26   -5.68   -5.84   -5.65   -5.03   -3.91   -2.19    0.18    3.25    6.98   11.25
+   180.0    0.00   -0.13   -0.56   -1.24   -2.07   -2.97   -3.85   -4.65   -5.30   -5.75   -5.94   -5.78   -5.20   -4.09   -2.38   -0.02    3.02    6.71   10.88
+   185.0    0.00   -0.13   -0.56   -1.24   -2.08   -2.98   -3.86   -4.66   -5.33   -5.82   -6.04   -5.93   -5.37   -4.28   -2.58   -0.21    2.83    6.48   10.57
+   190.0    0.00   -0.13   -0.57   -1.25   -2.08   -2.98   -3.86   -4.67   -5.36   -5.88   -6.15   -6.07   -5.54   -4.47   -2.77   -0.39    2.66    6.30   10.33
+   195.0    0.00   -0.13   -0.57   -1.25   -2.09   -2.98   -3.87   -4.69   -5.40   -5.94   -6.24   -6.19   -5.69   -4.64   -2.94   -0.54    2.54    6.20   10.20
+   200.0    0.00   -0.13   -0.57   -1.26   -2.09   -2.98   -3.87   -4.70   -5.42   -5.99   -6.31   -6.29   -5.81   -4.77   -3.07   -0.66    2.46    6.17   10.19
+   205.0    0.00   -0.13   -0.57   -1.26   -2.09   -2.99   -3.88   -4.71   -5.45   -6.02   -6.36   -6.35   -5.89   -4.86   -3.17   -0.74    2.43    6.20   10.28
+   210.0    0.00   -0.13   -0.58   -1.26   -2.09   -2.99   -3.88   -4.72   -5.47   -6.05   -6.38   -6.38   -5.93   -4.91   -3.22   -0.78    2.44    6.30   10.48
+   215.0    0.00   -0.13   -0.58   -1.26   -2.09   -2.99   -3.88   -4.73   -5.48   -6.05   -6.38   -6.37   -5.92   -4.91   -3.23   -0.78    2.49    6.45   10.75
+   220.0    0.00   -0.14   -0.58   -1.26   -2.08   -2.98   -3.89   -4.74   -5.48   -6.04   -6.35   -6.33   -5.87   -4.87   -3.20   -0.75    2.57    6.64   11.06
+   225.0    0.00   -0.14   -0.58   -1.25   -2.08   -2.98   -3.88   -4.73   -5.47   -6.02   -6.31   -6.26   -5.79   -4.80   -3.14   -0.69    2.67    6.84   11.37
+   230.0    0.00   -0.14   -0.58   -1.25   -2.07   -2.97   -3.87   -4.72   -5.44   -5.98   -6.24   -6.17   -5.69   -4.70   -3.07   -0.61    2.79    7.03   11.65
+   235.0    0.00   -0.14   -0.57   -1.24   -2.06   -2.96   -3.86   -4.70   -5.41   -5.92   -6.16   -6.07   -5.59   -4.61   -2.98   -0.51    2.91    7.20   11.86
+   240.0    0.00   -0.14   -0.57   -1.23   -2.05   -2.94   -3.83   -4.67   -5.37   -5.86   -6.08   -5.98   -5.49   -4.51   -2.89   -0.42    3.03    7.34   11.97
+   245.0    0.00   -0.14   -0.57   -1.23   -2.03   -2.91   -3.80   -4.63   -5.31   -5.79   -6.00   -5.89   -5.40   -4.43   -2.80   -0.32    3.13    7.43   11.99
+   250.0    0.00   -0.14   -0.57   -1.22   -2.01   -2.89   -3.76   -4.58   -5.26   -5.73   -5.93   -5.82   -5.33   -4.35   -2.72   -0.24    3.21    7.47   11.91
+   255.0    0.00   -0.14   -0.56   -1.21   -1.99   -2.86   -3.72   -4.53   -5.20   -5.67   -5.87   -5.77   -5.28   -4.30   -2.65   -0.16    3.28    7.47   11.75
+   260.0    0.00   -0.14   -0.56   -1.20   -1.97   -2.83   -3.68   -4.48   -5.14   -5.61   -5.82   -5.73   -5.24   -4.25   -2.60   -0.10    3.31    7.41   11.52
+   265.0    0.00   -0.14   -0.56   -1.19   -1.96   -2.80   -3.64   -4.43   -5.09   -5.57   -5.79   -5.69   -5.21   -4.21   -2.54   -0.04    3.33    7.33   11.27
+   270.0    0.00   -0.14   -0.56   -1.18   -1.94   -2.77   -3.61   -4.39   -5.05   -5.53   -5.76   -5.67   -5.18   -4.16   -2.48    0.01    3.33    7.23   11.02
+   275.0    0.00   -0.14   -0.55   -1.17   -1.92   -2.75   -3.58   -4.36   -5.03   -5.51   -5.74   -5.65   -5.14   -4.11   -2.41    0.06    3.32    7.12   10.82
+   280.0    0.00   -0.14   -0.55   -1.17   -1.91   -2.73   -3.56   -4.34   -5.01   -5.50   -5.72   -5.62   -5.09   -4.03   -2.33    0.12    3.32    7.03   10.68
+   285.0    0.00   -0.15   -0.55   -1.16   -1.91   -2.72   -3.55   -4.33   -5.00   -5.49   -5.71   -5.58   -5.02   -3.94   -2.23    0.19    3.33    6.97   10.63
+   290.0    0.00   -0.15   -0.56   -1.16   -1.91   -2.72   -3.55   -4.33   -5.01   -5.48   -5.69   -5.53   -4.94   -3.83   -2.11    0.28    3.35    6.96   10.68
+   295.0    0.00   -0.15   -0.56   -1.17   -1.91   -2.72   -3.56   -4.34   -5.01   -5.48   -5.66   -5.47   -4.84   -3.70   -1.98    0.38    3.40    6.99   10.83
+   300.0    0.00   -0.15   -0.56   -1.17   -1.92   -2.73   -3.57   -4.35   -5.02   -5.47   -5.63   -5.40   -4.73   -3.57   -1.85    0.49    3.48    7.08   11.07
+   305.0    0.00   -0.16   -0.57   -1.18   -1.93   -2.75   -3.58   -4.37   -5.03   -5.47   -5.59   -5.33   -4.63   -3.44   -1.71    0.61    3.58    7.21   11.36
+   310.0    0.00   -0.16   -0.58   -1.19   -1.94   -2.77   -3.60   -4.38   -5.03   -5.45   -5.56   -5.27   -4.53   -3.32   -1.59    0.72    3.69    7.37   11.69
+   315.0    0.00   -0.16   -0.58   -1.21   -1.96   -2.79   -3.62   -4.40   -5.04   -5.44   -5.53   -5.21   -4.46   -3.24   -1.50    0.81    3.80    7.55   12.01
+   320.0    0.00   -0.17   -0.59   -1.22   -1.98   -2.81   -3.65   -4.42   -5.04   -5.43   -5.50   -5.18   -4.42   -3.19   -1.45    0.88    3.90    7.70   12.29
+   325.0    0.00   -0.17   -0.60   -1.24   -2.01   -2.84   -3.67   -4.43   -5.05   -5.43   -5.49   -5.17   -4.41   -3.18   -1.44    0.91    3.96    7.83   12.50
+   330.0    0.00   -0.17   -0.61   -1.26   -2.03   -2.87   -3.70   -4.45   -5.06   -5.43   -5.50   -5.19   -4.44   -3.22   -1.48    0.89    3.98    7.89   12.61
+   335.0    0.00   -0.18   -0.62   -1.28   -2.06   -2.90   -3.73   -4.48   -5.08   -5.45   -5.53   -5.23   -4.51   -3.31   -1.57    0.81    3.93    7.88   12.62
+   340.0    0.00   -0.18   -0.63   -1.30   -2.09   -2.94   -3.77   -4.52   -5.11   -5.49   -5.58   -5.31   -4.61   -3.44   -1.70    0.68    3.82    7.78   12.51
+   345.0    0.00   -0.18   -0.65   -1.32   -2.12   -2.98   -3.81   -4.56   -5.16   -5.55   -5.65   -5.41   -4.74   -3.59   -1.88    0.50    3.65    7.60   12.28
+   350.0    0.00   -0.19   -0.66   -1.34   -2.15   -3.02   -3.86   -4.61   -5.22   -5.62   -5.74   -5.52   -4.89   -3.77   -2.07    0.29    3.42    7.35   11.98
+   355.0    0.00   -0.19   -0.67   -1.36   -2.18   -3.06   -3.91   -4.67   -5.29   -5.71   -5.85   -5.66   -5.05   -3.95   -2.28    0.06    3.16    7.04   11.61
+   360.0    0.00   -0.19   -0.68   -1.38   -2.22   -3.10   -3.96   -4.74   -5.37   -5.81   -5.97   -5.79   -5.20   -4.13   -2.48   -0.18    2.88    6.71   11.21
+   G02                                                      END OF FREQUENCY    
+   R01                                                      START OF FREQUENCY  
+      1.05     -0.54    164.15                              NORTH / EAST / UP   
+   NOAZI    0.00    0.06    0.28    0.62    1.03    1.45    1.73    1.74    1.42    0.77   -0.10   -1.07   -1.99   -2.76   -3.38   -3.80   -3.94   -3.68   -2.87
+     0.0    0.00    0.13    0.36    0.68    1.03    1.34    1.53    1.50    1.15    0.50   -0.37   -1.30   -2.17   -2.86   -3.36   -3.75   -4.02   -4.12   -3.78
+     5.0    0.00    0.14    0.38    0.70    1.05    1.37    1.53    1.47    1.08    0.40   -0.49   -1.45   -2.33   -3.04   -3.57   -3.95   -4.22   -4.26   -3.83
+    10.0    0.00    0.13    0.38    0.72    1.07    1.38    1.53    1.44    1.03    0.31   -0.60   -1.58   -2.47   -3.21   -3.75   -4.13   -4.37   -4.35   -3.82
+    15.0    0.00    0.14    0.39    0.73    1.09    1.40    1.54    1.42    0.98    0.25   -0.68   -1.68   -2.58   -3.33   -3.90   -4.29   -4.49   -4.38   -3.75
+    20.0    0.00    0.14    0.40    0.75    1.11    1.42    1.56    1.41    0.95    0.19   -0.74   -1.74   -2.66   -3.42   -3.99   -4.39   -4.56   -4.37   -3.65
+    25.0    0.00    0.14    0.40    0.76    1.14    1.45    1.58    1.42    0.93    0.18   -0.77   -1.77   -2.67   -3.45   -4.04   -4.45   -4.58   -4.33   -3.53
+    30.0    0.00    0.14    0.41    0.77    1.16    1.47    1.59    1.42    0.93    0.16   -0.79   -1.77   -2.67   -3.45   -4.05   -4.45   -4.56   -4.25   -3.38
+    35.0    0.00    0.14    0.41    0.79    1.18    1.50    1.62    1.44    0.93    0.16   -0.78   -1.74   -2.63   -3.39   -4.00   -4.41   -4.50   -4.16   -3.25
+    40.0    0.00    0.13    0.41    0.80    1.20    1.52    1.64    1.45    0.94    0.17   -0.75   -1.70   -2.57   -3.31   -3.91   -4.32   -4.41   -4.05   -3.12
+    45.0    0.00    0.14    0.42    0.80    1.22    1.56    1.68    1.48    0.97    0.20   -0.72   -1.65   -2.48   -3.22   -3.81   -4.22   -4.32   -3.93   -2.99
+    50.0    0.00    0.13    0.42    0.81    1.23    1.59    1.71    1.52    1.01    0.23   -0.68   -1.58   -2.40   -3.10   -3.70   -4.10   -4.20   -3.80   -2.87
+    55.0    0.00    0.13    0.41    0.81    1.25    1.62    1.75    1.58    1.06    0.27   -0.64   -1.54   -2.33   -3.01   -3.58   -3.99   -4.09   -3.70   -2.76
+    60.0    0.00    0.12    0.40    0.82    1.27    1.65    1.79    1.63    1.11    0.31   -0.59   -1.49   -2.26   -2.92   -3.48   -3.90   -3.99   -3.61   -2.66
+    65.0    0.00    0.12    0.41    0.82    1.28    1.69    1.86    1.69    1.17    0.38   -0.56   -1.44   -2.22   -2.86   -3.41   -3.81   -3.92   -3.53   -2.57
+    70.0    0.00    0.12    0.40    0.81    1.29    1.72    1.91    1.76    1.24    0.43   -0.51   -1.41   -2.19   -2.82   -3.36   -3.76   -3.86   -3.47   -2.48
+    75.0    0.00    0.11    0.38    0.81    1.30    1.74    1.96    1.82    1.31    0.49   -0.45   -1.37   -2.15   -2.80   -3.34   -3.73   -3.85   -3.43   -2.41
+    80.0    0.00    0.11    0.38    0.80    1.31    1.76    2.01    1.90    1.38    0.56   -0.39   -1.33   -2.12   -2.77   -3.32   -3.73   -3.86   -3.42   -2.34
+    85.0    0.00    0.10    0.37    0.80    1.31    1.79    2.04    1.95    1.46    0.65   -0.32   -1.25   -2.07   -2.74   -3.31   -3.74   -3.87   -3.42   -2.29
+    90.0    0.00    0.10    0.36    0.77    1.30    1.80    2.09    2.02    1.54    0.74   -0.22   -1.18   -2.01   -2.70   -3.30   -3.76   -3.89   -3.44   -2.27
+    95.0    0.00    0.09    0.35    0.76    1.30    1.81    2.12    2.07    1.63    0.84   -0.11   -1.07   -1.91   -2.65   -3.28   -3.76   -3.91   -3.46   -2.26
+   100.0    0.00    0.08    0.34    0.76    1.29    1.82    2.14    2.13    1.71    0.95    0.01   -0.94   -1.80   -2.56   -3.22   -3.74   -3.92   -3.48   -2.26
+   105.0    0.00    0.07    0.32    0.73    1.29    1.82    2.16    2.17    1.78    1.06    0.15   -0.81   -1.67   -2.44   -3.13   -3.67   -3.89   -3.47   -2.26
+   110.0    0.00    0.06    0.31    0.72    1.27    1.82    2.17    2.20    1.85    1.17    0.27   -0.64   -1.51   -2.31   -3.01   -3.58   -3.82   -3.43   -2.28
+   115.0    0.00    0.05    0.29    0.70    1.25    1.80    2.17    2.23    1.91    1.26    0.41   -0.49   -1.35   -2.14   -2.87   -3.46   -3.71   -3.37   -2.28
+   120.0    0.00    0.05    0.28    0.68    1.24    1.79    2.17    2.26    1.96    1.35    0.54   -0.35   -1.18   -1.98   -2.71   -3.30   -3.57   -3.27   -2.27
+   125.0    0.00    0.05    0.26    0.67    1.22    1.76    2.17    2.27    2.01    1.42    0.65   -0.21   -1.04   -1.83   -2.54   -3.12   -3.40   -3.15   -2.26
+   130.0    0.00    0.04    0.25    0.64    1.18    1.74    2.16    2.28    2.04    1.48    0.73   -0.10   -0.93   -1.70   -2.38   -2.94   -3.21   -3.01   -2.24
+   135.0    0.00    0.03    0.24    0.62    1.16    1.71    2.12    2.27    2.06    1.52    0.79   -0.04   -0.85   -1.60   -2.26   -2.78   -3.04   -2.87   -2.21
+   140.0    0.00    0.02    0.22    0.60    1.13    1.68    2.10    2.25    2.06    1.54    0.81   -0.01   -0.82   -1.55   -2.18   -2.66   -2.90   -2.76   -2.20
+   145.0    0.00    0.02    0.20    0.58    1.10    1.64    2.07    2.22    2.03    1.53    0.79   -0.03   -0.82   -1.55   -2.15   -2.59   -2.81   -2.69   -2.21
+   150.0    0.00    0.01    0.20    0.55    1.07    1.60    2.02    2.18    2.00    1.48    0.75   -0.08   -0.88   -1.59   -2.18   -2.60   -2.79   -2.69   -2.26
+   155.0    0.00   -0.17    0.18    0.52    1.02    1.55    1.95    2.12    1.93    1.43    0.68   -0.17   -0.98   -1.71   -2.27   -2.68   -2.85   -2.76   -2.35
+   160.0    0.00   -0.16    0.17    0.51    0.98    1.49    1.90    2.04    1.86    1.35    0.59   -0.27   -1.11   -1.84   -2.43   -2.82   -2.99   -2.89   -2.47
+   165.0    0.00   -0.16    0.16    0.48    0.94    1.43    1.82    1.97    1.78    1.26    0.49   -0.40   -1.27   -2.03   -2.62   -3.04   -3.22   -3.11   -2.64
+   170.0    0.00   -0.15    0.14    0.46    0.89    1.36    1.74    1.87    1.68    1.15    0.38   -0.53   -1.43   -2.22   -2.86   -3.30   -3.49   -3.37   -2.86
+   175.0    0.00   -0.01    0.13    0.42    0.85    1.30    1.66    1.77    1.58    1.05    0.26   -0.67   -1.60   -2.44   -3.11   -3.59   -3.80   -3.66   -3.06
+   180.0    0.00   -0.01    0.13    0.41    0.80    1.24    1.56    1.67    1.46    0.94    0.14   -0.81   -1.77   -2.65   -3.37   -3.88   -4.11   -3.96   -3.28
+   185.0    0.00   -0.01    0.12    0.40    0.77    1.17    1.48    1.58    1.36    0.83    0.03   -0.93   -1.92   -2.85   -3.60   -4.15   -4.40   -4.23   -3.48
+   190.0    0.00   -0.01    0.12    0.38    0.73    1.12    1.41    1.49    1.28    0.74   -0.07   -1.05   -2.07   -3.01   -3.81   -4.39   -4.64   -4.45   -3.62
+   195.0    0.00   -0.02    0.12    0.37    0.71    1.07    1.34    1.41    1.19    0.64   -0.17   -1.16   -2.19   -3.16   -3.97   -4.56   -4.82   -4.59   -3.71
+   200.0    0.00   -0.01    0.12    0.36    0.69    1.04    1.30    1.35    1.12    0.56   -0.26   -1.26   -2.31   -3.27   -4.09   -4.68   -4.92   -4.67   -3.73
+   205.0    0.00   -0.01    0.12    0.36    0.69    1.01    1.27    1.31    1.07    0.49   -0.34   -1.35   -2.40   -3.36   -4.17   -4.72   -4.93   -4.65   -3.69
+   210.0    0.00   -0.01    0.11    0.37    0.69    1.01    1.25    1.28    1.03    0.44   -0.41   -1.43   -2.47   -3.43   -4.18   -4.70   -4.87   -4.57   -3.60
+   215.0    0.00   -0.01    0.12    0.37    0.70    1.03    1.25    1.28    1.01    0.39   -0.48   -1.50   -2.54   -3.46   -4.18   -4.64   -4.77   -4.45   -3.47
+   220.0    0.00   -0.10    0.13    0.38    0.72    1.04    1.28    1.29    0.99    0.36   -0.53   -1.56   -2.58   -3.47   -4.15   -4.54   -4.63   -4.29   -3.32
+   225.0    0.00   -0.10    0.14    0.41    0.73    1.08    1.31    1.32    1.01    0.34   -0.57   -1.63   -2.62   -3.47   -4.08   -4.44   -4.51   -4.15   -3.19
+   230.0    0.00    0.01    0.15    0.42    0.76    1.11    1.36    1.35    1.02    0.35   -0.61   -1.65   -2.65   -3.45   -4.02   -4.35   -4.40   -4.04   -3.08
+   235.0    0.00    0.01    0.18    0.44    0.80    1.16    1.41    1.40    1.05    0.34   -0.62   -1.68   -2.65   -3.43   -3.96   -4.27   -4.32   -3.98   -3.02
+   240.0    0.00    0.01    0.19    0.47    0.84    1.22    1.47    1.47    1.09    0.36   -0.63   -1.69   -2.65   -3.40   -3.91   -4.24   -4.30   -3.97   -2.99
+   245.0    0.00    0.04    0.20    0.49    0.88    1.27    1.53    1.52    1.13    0.38   -0.60   -1.67   -2.62   -3.36   -3.89   -4.23   -4.33   -4.02   -3.03
+   250.0    0.00    0.04    0.22    0.52    0.92    1.33    1.59    1.58    1.18    0.42   -0.57   -1.64   -2.59   -3.32   -3.86   -4.24   -4.40   -4.12   -3.10
+   255.0    0.00    0.04    0.23    0.55    0.96    1.36    1.65    1.63    1.25    0.49   -0.52   -1.59   -2.53   -3.29   -3.86   -4.29   -4.50   -4.25   -3.17
+   260.0    0.00    0.05    0.24    0.56    0.98    1.40    1.69    1.69    1.31    0.55   -0.45   -1.51   -2.48   -3.24   -3.86   -4.35   -4.61   -4.36   -3.24
+   265.0    0.00    0.06    0.25    0.58    1.00    1.43    1.74    1.75    1.38    0.63   -0.36   -1.43   -2.40   -3.20   -3.87   -4.41   -4.69   -4.45   -3.29
+   270.0    0.00    0.07    0.26    0.59    1.01    1.46    1.76    1.80    1.46    0.72   -0.25   -1.33   -2.31   -3.16   -3.86   -4.44   -4.75   -4.49   -3.28
+   275.0    0.00    0.07    0.27    0.60    1.02    1.47    1.79    1.84    1.53    0.83   -0.14   -1.20   -2.22   -3.10   -3.84   -4.43   -4.74   -4.46   -3.21
+   280.0    0.00    0.08    0.27    0.60    1.03    1.48    1.81    1.89    1.61    0.93   -0.02   -1.09   -2.11   -3.03   -3.79   -4.38   -4.67   -4.34   -3.09
+   285.0    0.00    0.08    0.28    0.61    1.02    1.46    1.81    1.92    1.67    1.04    0.10   -0.97   -2.01   -2.95   -3.73   -4.30   -4.53   -4.17   -2.91
+   290.0    0.00    0.09    0.28    0.59    1.01    1.45    1.81    1.94    1.73    1.13    0.22   -0.84   -1.90   -2.85   -3.63   -4.16   -4.34   -3.92   -2.69
+   295.0    0.00    0.09    0.29    0.59    0.99    1.44    1.79    1.95    1.77    1.22    0.33   -0.72   -1.79   -2.74   -3.49   -3.98   -4.09   -3.64   -2.46
+   300.0    0.00    0.10    0.30    0.59    0.98    1.41    1.78    1.95    1.80    1.28    0.42   -0.61   -1.67   -2.62   -3.34   -3.78   -3.83   -3.37   -2.25
+   305.0    0.00    0.09    0.30    0.59    0.96    1.39    1.76    1.94    1.81    1.33    0.50   -0.53   -1.57   -2.50   -3.18   -3.56   -3.57   -3.12   -2.10
+   310.0    0.00    0.10    0.30    0.58    0.95    1.37    1.74    1.92    1.81    1.35    0.54   -0.45   -1.48   -2.36   -3.01   -3.35   -3.34   -2.92   -2.00
+   315.0    0.00    0.11    0.31    0.59    0.94    1.35    1.70    1.89    1.80    1.34    0.57   -0.41   -1.40   -2.26   -2.86   -3.16   -3.13   -2.77   -1.99
+   320.0    0.00    0.11    0.31    0.58    0.94    1.33    1.67    1.86    1.76    1.32    0.56   -0.39   -1.35   -2.17   -2.73   -3.02   -3.00   -2.72   -2.08
+   325.0    0.00    0.12    0.32    0.59    0.93    1.30    1.63    1.82    1.70    1.26    0.50   -0.42   -1.34   -2.11   -2.64   -2.91   -2.95   -2.75   -2.24
+   330.0    0.00    0.11    0.33    0.59    0.93    1.29    1.61    1.76    1.63    1.18    0.44   -0.47   -1.36   -2.10   -2.60   -2.88   -2.97   -2.85   -2.46
+   335.0    0.00    0.11    0.32    0.60    0.94    1.30    1.58    1.71    1.56    1.08    0.34   -0.55   -1.43   -2.12   -2.61   -2.91   -3.05   -3.03   -2.72
+   340.0    0.00    0.12    0.33    0.61    0.95    1.30    1.57    1.66    1.47    0.97    0.21   -0.68   -1.52   -2.21   -2.68   -3.00   -3.19   -3.25   -3.00
+   345.0    0.00    0.12    0.34    0.63    0.96    1.31    1.56    1.61    1.39    0.86    0.08   -0.82   -1.65   -2.33   -2.81   -3.13   -3.38   -3.50   -3.26
+   350.0    0.00    0.13    0.35    0.64    0.98    1.31    1.55    1.57    1.30    0.73   -0.07   -0.97   -1.82   -2.48   -2.97   -3.32   -3.58   -3.73   -3.49
+   355.0    0.00    0.12    0.36    0.66    1.00    1.33    1.54    1.53    1.22    0.61   -0.23   -1.15   -1.99   -2.67   -3.16   -3.53   -3.81   -3.94   -3.67
+   360.0    0.00    0.13    0.36    0.68    1.03    1.34    1.53    1.50    1.15    0.50   -0.37   -1.30   -2.17   -2.86   -3.36   -3.75   -4.02   -4.12   -3.78
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+      0.22     -1.37    147.30                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.12   -0.47   -1.01   -1.69   -2.47   -3.26   -4.05   -4.79   -5.40   -5.84   -5.99   -5.73   -4.88   -3.32   -0.92    2.33    6.25   10.46
+     0.0    0.00   -0.15   -0.52   -1.06   -1.75   -2.52   -3.35   -4.17   -4.93   -5.57   -5.97   -6.06   -5.74   -4.92   -3.47   -1.33    1.60    5.24    9.39
+     5.0    0.00   -0.16   -0.53   -1.08   -1.77   -2.56   -3.39   -4.23   -5.03   -5.67   -6.11   -6.23   -5.93   -5.11   -3.68   -1.56    1.30    4.84    8.91
+    10.0    0.00   -0.16   -0.53   -1.09   -1.80   -2.60   -3.43   -4.30   -5.10   -5.77   -6.24   -6.38   -6.10   -5.29   -3.87   -1.77    1.05    4.53    8.55
+    15.0    0.00   -0.16   -0.54   -1.11   -1.82   -2.63   -3.47   -4.34   -5.16   -5.86   -6.36   -6.53   -6.25   -5.44   -4.02   -1.93    0.86    4.32    8.32
+    20.0    0.00   -0.16   -0.55   -1.13   -1.85   -2.67   -3.51   -4.38   -5.21   -5.92   -6.44   -6.63   -6.37   -5.56   -4.14   -2.03    0.76    4.25    8.27
+    25.0    0.00   -0.16   -0.56   -1.15   -1.88   -2.69   -3.55   -4.41   -5.24   -5.97   -6.50   -6.70   -6.45   -5.65   -4.20   -2.06    0.77    4.30    8.39
+    30.0    0.00   -0.16   -0.56   -1.17   -1.90   -2.72   -3.58   -4.44   -5.26   -5.99   -6.52   -6.72   -6.49   -5.66   -4.20   -2.02    0.87    4.47    8.67
+    35.0    0.00   -0.16   -0.56   -1.17   -1.92   -2.74   -3.59   -4.45   -5.26   -5.99   -6.51   -6.72   -6.48   -5.65   -4.14   -1.91    1.07    4.77    9.09
+    40.0    0.00   -0.16   -0.56   -1.18   -1.94   -2.76   -3.61   -4.45   -5.25   -5.96   -6.47   -6.68   -6.43   -5.57   -4.03   -1.72    1.34    5.14    9.57
+    45.0    0.00   -0.16   -0.57   -1.19   -1.95   -2.78   -3.63   -4.45   -5.23   -5.91   -6.43   -6.61   -6.34   -5.45   -3.86   -1.50    1.65    5.56   10.11
+    50.0    0.00   -0.16   -0.57   -1.20   -1.97   -2.79   -3.64   -4.45   -5.20   -5.87   -6.35   -6.53   -6.23   -5.31   -3.68   -1.25    1.98    5.99   10.62
+    55.0    0.00   -0.15   -0.57   -1.19   -1.96   -2.80   -3.63   -4.44   -5.18   -5.82   -6.28   -6.42   -6.11   -5.15   -3.47   -0.98    2.32    6.38   11.07
+    60.0    0.00   -0.15   -0.57   -1.19   -1.96   -2.81   -3.64   -4.43   -5.16   -5.78   -6.21   -6.33   -5.97   -5.00   -3.27   -0.73    2.62    6.73   11.44
+    65.0    0.00   -0.15   -0.56   -1.19   -1.96   -2.80   -3.63   -4.42   -5.14   -5.75   -6.15   -6.25   -5.86   -4.85   -3.08   -0.52    2.87    6.99   11.69
+    70.0    0.00   -0.14   -0.55   -1.18   -1.95   -2.79   -3.62   -4.41   -5.12   -5.71   -6.10   -6.17   -5.77   -4.72   -2.94   -0.35    3.05    7.18   11.82
+    75.0    0.00   -0.14   -0.54   -1.17   -1.94   -2.77   -3.61   -4.40   -5.11   -5.70   -6.07   -6.11   -5.69   -4.63   -2.83   -0.22    3.17    7.26   11.84
+    80.0    0.00   -0.14   -0.53   -1.15   -1.92   -2.76   -3.59   -4.39   -5.09   -5.67   -6.04   -6.08   -5.64   -4.56   -2.76   -0.16    3.21    7.27   11.75
+    85.0    0.00   -0.13   -0.52   -1.14   -1.90   -2.74   -3.58   -4.37   -5.07   -5.65   -6.02   -6.05   -5.61   -4.53   -2.74   -0.16    3.21    7.21   11.60
+    90.0    0.00   -0.13   -0.51   -1.12   -1.87   -2.70   -3.54   -4.34   -5.05   -5.63   -5.99   -6.02   -5.59   -4.54   -2.75   -0.18    3.17    7.12   11.41
+    95.0    0.00   -0.12   -0.50   -1.10   -1.84   -2.67   -3.50   -4.29   -5.01   -5.58   -5.96   -6.01   -5.58   -4.55   -2.79   -0.22    3.10    7.03   11.21
+   100.0    0.00   -0.12   -0.48   -1.07   -1.81   -2.62   -3.46   -4.24   -4.95   -5.53   -5.91   -5.97   -5.58   -4.57   -2.84   -0.28    3.04    6.94   11.04
+   105.0    0.00   -0.11   -0.47   -1.05   -1.78   -2.59   -3.41   -4.20   -4.89   -5.47   -5.84   -5.92   -5.56   -4.59   -2.87   -0.34    3.00    6.89   10.91
+   110.0    0.00   -0.11   -0.46   -1.03   -1.75   -2.55   -3.36   -4.13   -4.82   -5.39   -5.76   -5.86   -5.53   -4.58   -2.90   -0.36    2.98    6.87   10.84
+   115.0    0.00   -0.10   -0.45   -1.00   -1.72   -2.51   -3.30   -4.07   -4.74   -5.29   -5.67   -5.78   -5.47   -4.56   -2.89   -0.35    3.00    6.90   10.82
+   120.0    0.00   -0.10   -0.44   -0.99   -1.69   -2.48   -3.27   -4.00   -4.66   -5.20   -5.57   -5.69   -5.40   -4.52   -2.87   -0.33    3.05    6.96   10.85
+   125.0    0.00   -0.10   -0.43   -0.98   -1.66   -2.44   -3.22   -3.94   -4.58   -5.10   -5.47   -5.58   -5.33   -4.46   -2.81   -0.26    3.13    7.05   10.91
+   130.0    0.00   -0.09   -0.42   -0.96   -1.65   -2.41   -3.18   -3.89   -4.52   -5.02   -5.38   -5.49   -5.23   -4.39   -2.75   -0.20    3.21    7.15   10.98
+   135.0    0.00   -0.09   -0.41   -0.95   -1.64   -2.40   -3.15   -3.85   -4.46   -4.96   -5.30   -5.42   -5.16   -4.32   -2.68   -0.13    3.29    7.22   11.02
+   140.0    0.00   -0.09   -0.40   -0.93   -1.62   -2.38   -3.14   -3.84   -4.43   -4.92   -5.25   -5.37   -5.11   -4.27   -2.63   -0.07    3.35    7.26   11.04
+   145.0    0.00   -0.09   -0.40   -0.93   -1.61   -2.37   -3.13   -3.82   -4.42   -4.92   -5.25   -5.36   -5.10   -4.24   -2.59   -0.03    3.37    7.25   11.00
+   150.0    0.00   -0.09   -0.40   -0.92   -1.60   -2.37   -3.13   -3.84   -4.44   -4.93   -5.27   -5.38   -5.11   -4.26   -2.60   -0.06    3.32    7.17   10.89
+   155.0    0.00   -0.09   -0.40   -0.92   -1.61   -2.37   -3.13   -3.86   -4.49   -5.00   -5.34   -5.45   -5.17   -4.31   -2.66   -0.12    3.22    7.02   10.73
+   160.0    0.00   -0.09   -0.40   -0.92   -1.60   -2.37   -3.15   -3.89   -4.54   -5.07   -5.44   -5.56   -5.28   -4.40   -2.77   -0.24    3.05    6.81   10.50
+   165.0    0.00   -0.09   -0.40   -0.92   -1.60   -2.38   -3.17   -3.92   -4.61   -5.17   -5.57   -5.70   -5.42   -4.54   -2.91   -0.43    2.83    6.55   10.24
+   170.0    0.00   -0.09   -0.40   -0.92   -1.60   -2.39   -3.19   -3.98   -4.68   -5.28   -5.70   -5.87   -5.60   -4.73   -3.10   -0.64    2.56    6.25    9.97
+   175.0    0.00   -0.09   -0.40   -0.92   -1.61   -2.39   -3.20   -4.01   -4.76   -5.39   -5.85   -6.03   -5.78   -4.93   -3.32   -0.90    2.27    5.93    9.70
+   180.0    0.00   -0.09   -0.40   -0.92   -1.60   -2.39   -3.22   -4.05   -4.83   -5.50   -5.99   -6.19   -5.97   -5.13   -3.55   -1.17    1.96    5.64    9.47
+   185.0    0.00   -0.09   -0.40   -0.92   -1.61   -2.40   -3.23   -4.07   -4.87   -5.58   -6.11   -6.34   -6.13   -5.32   -3.78   -1.42    1.69    5.38    9.30
+   190.0    0.00   -0.09   -0.41   -0.93   -1.61   -2.39   -3.23   -4.09   -4.91   -5.65   -6.21   -6.47   -6.28   -5.49   -3.98   -1.66    1.44    5.17    9.21
+   195.0    0.00   -0.09   -0.41   -0.93   -1.61   -2.39   -3.24   -4.10   -4.94   -5.70   -6.27   -6.54   -6.38   -5.63   -4.16   -1.86    1.26    5.05    9.21
+   200.0    0.00   -0.09   -0.42   -0.94   -1.61   -2.38   -3.23   -4.10   -4.94   -5.71   -6.30   -6.59   -6.44   -5.73   -4.28   -2.01    1.14    5.01    9.30
+   205.0    0.00   -0.09   -0.42   -0.94   -1.61   -2.39   -3.22   -4.08   -4.93   -5.70   -6.29   -6.59   -6.47   -5.77   -4.36   -2.09    1.09    5.05    9.46
+   210.0    0.00   -0.09   -0.43   -0.95   -1.61   -2.38   -3.21   -4.06   -4.92   -5.68   -6.25   -6.56   -6.46   -5.79   -4.38   -2.12    1.11    5.17    9.71
+   215.0    0.00   -0.09   -0.43   -0.95   -1.61   -2.37   -3.19   -4.05   -4.88   -5.63   -6.20   -6.51   -6.41   -5.75   -4.36   -2.08    1.19    5.35   10.01
+   220.0    0.00   -0.10   -0.44   -0.96   -1.60   -2.35   -3.18   -4.03   -4.85   -5.58   -6.14   -6.43   -6.33   -5.68   -4.30   -2.01    1.33    5.59   10.32
+   225.0    0.00   -0.11   -0.44   -0.96   -1.61   -2.35   -3.16   -3.99   -4.81   -5.53   -6.07   -6.34   -6.23   -5.59   -4.20   -1.89    1.49    5.84   10.63
+   230.0    0.00   -0.11   -0.45   -0.96   -1.60   -2.34   -3.13   -3.96   -4.75   -5.46   -5.99   -6.25   -6.13   -5.48   -4.10   -1.75    1.69    6.08   10.91
+   235.0    0.00   -0.11   -0.44   -0.95   -1.60   -2.33   -3.12   -3.93   -4.71   -5.40   -5.91   -6.16   -6.04   -5.38   -3.97   -1.59    1.87    6.30   11.12
+   240.0    0.00   -0.11   -0.44   -0.96   -1.59   -2.32   -3.09   -3.90   -4.67   -5.34   -5.84   -6.08   -5.94   -5.26   -3.84   -1.44    2.05    6.49   11.23
+   245.0    0.00   -0.12   -0.45   -0.97   -1.59   -2.30   -3.07   -3.86   -4.62   -5.29   -5.78   -6.01   -5.86   -5.17   -3.71   -1.30    2.20    6.61   11.28
+   250.0    0.00   -0.12   -0.46   -0.96   -1.58   -2.29   -3.04   -3.83   -4.58   -5.24   -5.73   -5.95   -5.78   -5.06   -3.60   -1.17    2.31    6.67   11.23
+   255.0    0.00   -0.12   -0.45   -0.96   -1.57   -2.27   -3.01   -3.79   -4.54   -5.21   -5.69   -5.91   -5.72   -4.98   -3.48   -1.06    2.40    6.68   11.12
+   260.0    0.00   -0.12   -0.46   -0.96   -1.57   -2.26   -3.00   -3.77   -4.51   -5.17   -5.65   -5.86   -5.66   -4.90   -3.39   -0.96    2.45    6.64   10.93
+   265.0    0.00   -0.12   -0.46   -0.95   -1.56   -2.25   -2.97   -3.74   -4.47   -5.14   -5.62   -5.82   -5.61   -4.83   -3.31   -0.88    2.48    6.57   10.73
+   270.0    0.00   -0.12   -0.46   -0.95   -1.56   -2.23   -2.96   -3.71   -4.45   -5.10   -5.58   -5.77   -5.55   -4.75   -3.22   -0.81    2.50    6.49   10.54
+   275.0    0.00   -0.12   -0.45   -0.95   -1.54   -2.23   -2.95   -3.69   -4.43   -5.08   -5.55   -5.73   -5.49   -4.68   -3.13   -0.75    2.51    6.41   10.39
+   280.0    0.00   -0.12   -0.45   -0.95   -1.54   -2.21   -2.93   -3.68   -4.41   -5.05   -5.51   -5.69   -5.42   -4.60   -3.05   -0.68    2.53    6.37   10.30
+   285.0    0.00   -0.13   -0.45   -0.95   -1.55   -2.21   -2.93   -3.67   -4.39   -5.02   -5.47   -5.62   -5.35   -4.51   -2.97   -0.61    2.57    6.36   10.29
+   290.0    0.00   -0.13   -0.46   -0.95   -1.55   -2.22   -2.93   -3.67   -4.38   -4.99   -5.43   -5.57   -5.29   -4.43   -2.88   -0.54    2.61    6.42   10.39
+   295.0    0.00   -0.13   -0.46   -0.96   -1.55   -2.22   -2.95   -3.67   -4.37   -4.97   -5.38   -5.50   -5.21   -4.36   -2.80   -0.46    2.69    6.51   10.57
+   300.0    0.00   -0.13   -0.46   -0.95   -1.56   -2.23   -2.96   -3.68   -4.36   -4.95   -5.34   -5.44   -5.13   -4.28   -2.73   -0.38    2.80    6.66   10.83
+   305.0    0.00   -0.14   -0.47   -0.95   -1.56   -2.25   -2.97   -3.69   -4.37   -4.93   -5.30   -5.38   -5.06   -4.21   -2.65   -0.30    2.90    6.83   11.13
+   310.0    0.00   -0.14   -0.47   -0.95   -1.56   -2.26   -2.99   -3.71   -4.37   -4.92   -5.27   -5.34   -5.00   -4.14   -2.59   -0.23    3.01    7.01   11.45
+   315.0    0.00   -0.13   -0.47   -0.97   -1.58   -2.28   -3.01   -3.74   -4.40   -4.92   -5.26   -5.29   -4.96   -4.10   -2.55   -0.18    3.09    7.17   11.72
+   320.0    0.00   -0.14   -0.47   -0.97   -1.59   -2.29   -3.04   -3.76   -4.41   -4.93   -5.24   -5.28   -4.94   -4.08   -2.54   -0.15    3.15    7.28   11.92
+   325.0    0.00   -0.14   -0.47   -0.98   -1.61   -2.32   -3.07   -3.80   -4.45   -4.96   -5.26   -5.29   -4.94   -4.08   -2.54   -0.16    3.16    7.32   12.02
+   330.0    0.00   -0.14   -0.48   -0.99   -1.62   -2.34   -3.10   -3.83   -4.49   -5.00   -5.30   -5.33   -4.97   -4.11   -2.58   -0.20    3.10    7.27   11.98
+   335.0    0.00   -0.14   -0.48   -1.00   -1.64   -2.36   -3.13   -3.88   -4.54   -5.05   -5.37   -5.38   -5.04   -4.18   -2.66   -0.29    2.98    7.11   11.80
+   340.0    0.00   -0.14   -0.49   -1.01   -1.66   -2.40   -3.17   -3.93   -4.60   -5.13   -5.45   -5.49   -5.13   -4.28   -2.76   -0.43    2.80    6.86   11.48
+   345.0    0.00   -0.14   -0.50   -1.03   -1.67   -2.43   -3.21   -3.99   -4.68   -5.23   -5.55   -5.60   -5.26   -4.41   -2.91   -0.62    2.55    6.52   11.03
+   350.0    0.00   -0.15   -0.51   -1.03   -1.69   -2.46   -3.26   -4.04   -4.76   -5.33   -5.68   -5.73   -5.41   -4.56   -3.08   -0.84    2.25    6.11   10.51
+   355.0    0.00   -0.15   -0.52   -1.05   -1.72   -2.49   -3.30   -4.10   -4.84   -5.45   -5.82   -5.90   -5.57   -4.74   -3.27   -1.07    1.93    5.67    9.94
+   360.0    0.00   -0.15   -0.52   -1.06   -1.75   -2.52   -3.35   -4.17   -4.93   -5.57   -5.97   -6.06   -5.74   -4.92   -3.47   -1.33    1.60    5.24    9.39
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+LEIAS05         NONE                                        TYPE / SERIAL NO    
+COPIED              Geo++ GmbH              14    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+COPIED FROM LEIAX1202GG     NONE                            COMMENT             
+ATTENTION! COPIED WITHOUT VERIFICATION BY CALIBRATION!      COMMENT             
+   G01                                                      START OF FREQUENCY  
+      1.64     -0.52     63.42                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.03   -0.10   -0.20   -0.31   -0.42   -0.52   -0.62   -0.72   -0.82   -0.90   -0.93   -0.88   -0.70   -0.37    0.07    0.57    1.03    1.36
+     0.0    0.00   -0.04   -0.12   -0.25   -0.40   -0.55   -0.71   -0.83   -0.90   -0.90   -0.84   -0.72   -0.57   -0.41   -0.25   -0.03    0.28    0.73    1.29
+     5.0    0.00   -0.04   -0.13   -0.25   -0.40   -0.56   -0.71   -0.84   -0.93   -0.94   -0.88   -0.75   -0.58   -0.39   -0.19    0.05    0.37    0.80    1.32
+    10.0    0.00   -0.04   -0.13   -0.25   -0.40   -0.55   -0.71   -0.85   -0.95   -0.98   -0.93   -0.80   -0.60   -0.36   -0.11    0.17    0.50    0.91    1.37
+    15.0    0.00   -0.04   -0.13   -0.25   -0.39   -0.55   -0.71   -0.86   -0.98   -1.03   -0.98   -0.84   -0.62   -0.33   -0.01    0.33    0.68    1.07    1.46
+    20.0    0.00   -0.04   -0.13   -0.25   -0.39   -0.54   -0.71   -0.87   -1.00   -1.07   -1.04   -0.90   -0.65   -0.30    0.09    0.49    0.89    1.27    1.59
+    25.0    0.00   -0.04   -0.13   -0.24   -0.38   -0.53   -0.70   -0.87   -1.01   -1.11   -1.10   -0.97   -0.69   -0.29    0.17    0.66    1.12    1.51    1.77
+    30.0    0.00   -0.04   -0.12   -0.24   -0.37   -0.52   -0.68   -0.86   -1.02   -1.14   -1.16   -1.04   -0.75   -0.31    0.23    0.81    1.34    1.76    1.99
+    35.0    0.00   -0.04   -0.12   -0.24   -0.36   -0.51   -0.67   -0.85   -1.03   -1.17   -1.22   -1.12   -0.83   -0.36    0.25    0.91    1.53    2.00    2.23
+    40.0    0.00   -0.04   -0.12   -0.23   -0.35   -0.49   -0.64   -0.83   -1.02   -1.20   -1.28   -1.21   -0.93   -0.44    0.22    0.97    1.67    2.21    2.47
+    45.0    0.00   -0.04   -0.12   -0.23   -0.34   -0.47   -0.62   -0.80   -1.01   -1.21   -1.33   -1.30   -1.05   -0.55    0.14    0.95    1.73    2.35    2.66
+    50.0    0.00   -0.04   -0.12   -0.22   -0.33   -0.45   -0.60   -0.78   -1.00   -1.22   -1.38   -1.39   -1.17   -0.70    0.01    0.86    1.71    2.40    2.78
+    55.0    0.00   -0.03   -0.11   -0.21   -0.32   -0.43   -0.57   -0.75   -0.98   -1.22   -1.41   -1.47   -1.30   -0.85   -0.15    0.71    1.60    2.35    2.79
+    60.0    0.00   -0.03   -0.11   -0.21   -0.31   -0.42   -0.55   -0.73   -0.96   -1.21   -1.44   -1.53   -1.41   -1.02   -0.35    0.51    1.41    2.19    2.69
+    65.0    0.00   -0.03   -0.11   -0.20   -0.30   -0.40   -0.53   -0.70   -0.93   -1.20   -1.45   -1.58   -1.51   -1.17   -0.56    0.26    1.15    1.93    2.47
+    70.0    0.00   -0.03   -0.10   -0.20   -0.29   -0.39   -0.51   -0.67   -0.90   -1.17   -1.44   -1.61   -1.59   -1.31   -0.76    0.00    0.84    1.60    2.15
+    75.0    0.00   -0.03   -0.10   -0.19   -0.28   -0.38   -0.49   -0.65   -0.87   -1.14   -1.42   -1.61   -1.64   -1.42   -0.94   -0.25    0.52    1.22    1.75
+    80.0    0.00   -0.03   -0.10   -0.19   -0.28   -0.37   -0.48   -0.63   -0.83   -1.10   -1.38   -1.59   -1.65   -1.48   -1.07   -0.47    0.21    0.84    1.32
+    85.0    0.00   -0.02   -0.09   -0.18   -0.27   -0.36   -0.46   -0.60   -0.79   -1.05   -1.32   -1.54   -1.63   -1.51   -1.16   -0.64   -0.05    0.49    0.90
+    90.0    0.00   -0.02   -0.09   -0.17   -0.26   -0.35   -0.45   -0.57   -0.75   -0.98   -1.25   -1.47   -1.57   -1.49   -1.20   -0.74   -0.23    0.22    0.54
+    95.0    0.00   -0.02   -0.08   -0.17   -0.26   -0.34   -0.43   -0.54   -0.70   -0.91   -1.16   -1.38   -1.49   -1.43   -1.17   -0.77   -0.32    0.05    0.29
+   100.0    0.00   -0.02   -0.08   -0.16   -0.25   -0.33   -0.41   -0.50   -0.64   -0.84   -1.06   -1.27   -1.38   -1.33   -1.09   -0.72   -0.32    0.00    0.17
+   105.0    0.00   -0.02   -0.08   -0.16   -0.24   -0.32   -0.39   -0.47   -0.59   -0.76   -0.96   -1.15   -1.26   -1.21   -0.97   -0.61   -0.22    0.07    0.19
+   110.0    0.00   -0.02   -0.07   -0.15   -0.23   -0.30   -0.36   -0.43   -0.52   -0.67   -0.86   -1.04   -1.13   -1.07   -0.82   -0.44   -0.04    0.25    0.35
+   115.0    0.00   -0.01   -0.07   -0.15   -0.23   -0.29   -0.34   -0.39   -0.47   -0.59   -0.76   -0.92   -1.00   -0.92   -0.65   -0.25    0.19    0.50    0.62
+   120.0    0.00   -0.01   -0.07   -0.14   -0.22   -0.28   -0.32   -0.35   -0.41   -0.52   -0.66   -0.81   -0.87   -0.78   -0.49   -0.04    0.44    0.81    0.95
+   125.0    0.00   -0.01   -0.06   -0.14   -0.21   -0.27   -0.30   -0.32   -0.36   -0.45   -0.58   -0.71   -0.76   -0.65   -0.33    0.15    0.69    1.12    1.32
+   130.0    0.00   -0.01   -0.06   -0.13   -0.20   -0.26   -0.28   -0.29   -0.32   -0.40   -0.51   -0.63   -0.67   -0.54   -0.20    0.32    0.91    1.40    1.66
+   135.0    0.00   -0.01   -0.06   -0.13   -0.20   -0.25   -0.27   -0.28   -0.30   -0.36   -0.46   -0.57   -0.59   -0.45   -0.10    0.44    1.06    1.61    1.95
+   140.0    0.00   -0.01   -0.06   -0.13   -0.20   -0.25   -0.27   -0.27   -0.29   -0.34   -0.43   -0.52   -0.54   -0.40   -0.04    0.51    1.15    1.74    2.13
+   145.0    0.00   -0.01   -0.06   -0.13   -0.20   -0.25   -0.27   -0.27   -0.29   -0.33   -0.42   -0.50   -0.51   -0.37   -0.02    0.52    1.17    1.77    2.21
+   150.0    0.00   -0.01   -0.06   -0.13   -0.20   -0.25   -0.28   -0.29   -0.30   -0.34   -0.42   -0.50   -0.50   -0.37   -0.04    0.48    1.10    1.71    2.18
+   155.0    0.00   -0.01   -0.06   -0.13   -0.20   -0.26   -0.29   -0.31   -0.32   -0.37   -0.44   -0.51   -0.52   -0.39   -0.08    0.40    0.98    1.57    2.04
+   160.0    0.00   -0.01   -0.06   -0.13   -0.21   -0.27   -0.31   -0.33   -0.36   -0.40   -0.47   -0.54   -0.54   -0.43   -0.15    0.28    0.82    1.36    1.83
+   165.0    0.00   -0.01   -0.06   -0.14   -0.22   -0.29   -0.33   -0.36   -0.40   -0.44   -0.51   -0.58   -0.58   -0.48   -0.24    0.14    0.63    1.13    1.59
+   170.0    0.00   -0.01   -0.06   -0.14   -0.23   -0.30   -0.36   -0.40   -0.43   -0.49   -0.56   -0.62   -0.63   -0.55   -0.33    0.01    0.44    0.89    1.33
+   175.0    0.00   -0.01   -0.07   -0.15   -0.24   -0.32   -0.38   -0.43   -0.47   -0.53   -0.61   -0.67   -0.69   -0.61   -0.42   -0.12    0.26    0.68    1.09
+   180.0    0.00   -0.01   -0.07   -0.16   -0.25   -0.34   -0.40   -0.46   -0.51   -0.58   -0.65   -0.72   -0.74   -0.67   -0.50   -0.23    0.12    0.50    0.90
+   185.0    0.00   -0.01   -0.07   -0.16   -0.26   -0.35   -0.42   -0.48   -0.54   -0.62   -0.70   -0.77   -0.79   -0.72   -0.56   -0.31    0.01    0.37    0.76
+   190.0    0.00   -0.01   -0.08   -0.17   -0.28   -0.37   -0.44   -0.51   -0.57   -0.65   -0.73   -0.80   -0.83   -0.76   -0.61   -0.36   -0.05    0.30    0.69
+   195.0    0.00   -0.02   -0.08   -0.18   -0.29   -0.38   -0.46   -0.53   -0.60   -0.68   -0.76   -0.84   -0.86   -0.79   -0.63   -0.39   -0.08    0.27    0.66
+   200.0    0.00   -0.02   -0.09   -0.19   -0.30   -0.40   -0.48   -0.55   -0.62   -0.70   -0.79   -0.86   -0.88   -0.80   -0.63   -0.38   -0.07    0.28    0.68
+   205.0    0.00   -0.02   -0.09   -0.20   -0.31   -0.41   -0.49   -0.56   -0.63   -0.72   -0.81   -0.88   -0.89   -0.81   -0.62   -0.36   -0.04    0.32    0.72
+   210.0    0.00   -0.02   -0.09   -0.20   -0.32   -0.43   -0.51   -0.58   -0.65   -0.73   -0.82   -0.89   -0.89   -0.80   -0.60   -0.32    0.01    0.37    0.78
+   215.0    0.00   -0.02   -0.10   -0.21   -0.33   -0.44   -0.52   -0.59   -0.66   -0.75   -0.84   -0.90   -0.89   -0.79   -0.58   -0.28    0.06    0.43    0.83
+   220.0    0.00   -0.02   -0.10   -0.22   -0.34   -0.45   -0.53   -0.60   -0.67   -0.76   -0.85   -0.91   -0.90   -0.78   -0.55   -0.24    0.11    0.48    0.88
+   225.0    0.00   -0.02   -0.10   -0.22   -0.34   -0.45   -0.54   -0.61   -0.68   -0.77   -0.86   -0.92   -0.90   -0.78   -0.54   -0.21    0.15    0.53    0.93
+   230.0    0.00   -0.02   -0.11   -0.22   -0.35   -0.46   -0.54   -0.62   -0.69   -0.79   -0.88   -0.94   -0.92   -0.79   -0.53   -0.19    0.19    0.58    0.97
+   235.0    0.00   -0.03   -0.11   -0.23   -0.35   -0.46   -0.55   -0.62   -0.70   -0.80   -0.90   -0.96   -0.94   -0.81   -0.54   -0.18    0.22    0.62    1.02
+   240.0    0.00   -0.03   -0.11   -0.23   -0.35   -0.46   -0.55   -0.62   -0.71   -0.81   -0.91   -0.99   -0.98   -0.84   -0.57   -0.19    0.25    0.67    1.08
+   245.0    0.00   -0.03   -0.11   -0.23   -0.35   -0.46   -0.55   -0.62   -0.71   -0.82   -0.93   -1.01   -1.01   -0.88   -0.60   -0.20    0.27    0.73    1.14
+   250.0    0.00   -0.03   -0.11   -0.23   -0.35   -0.46   -0.54   -0.62   -0.71   -0.82   -0.95   -1.04   -1.05   -0.93   -0.64   -0.22    0.29    0.78    1.22
+   255.0    0.00   -0.03   -0.11   -0.22   -0.34   -0.45   -0.54   -0.62   -0.71   -0.83   -0.96   -1.07   -1.09   -0.98   -0.68   -0.24    0.31    0.85    1.30
+   260.0    0.00   -0.03   -0.11   -0.22   -0.34   -0.45   -0.53   -0.61   -0.71   -0.83   -0.97   -1.08   -1.12   -1.01   -0.72   -0.25    0.33    0.91    1.38
+   265.0    0.00   -0.03   -0.11   -0.22   -0.34   -0.44   -0.53   -0.61   -0.71   -0.83   -0.97   -1.09   -1.13   -1.03   -0.73   -0.25    0.35    0.96    1.43
+   270.0    0.00   -0.03   -0.11   -0.22   -0.33   -0.44   -0.53   -0.61   -0.71   -0.83   -0.96   -1.08   -1.12   -1.02   -0.73   -0.24    0.38    1.00    1.46
+   275.0    0.00   -0.03   -0.11   -0.21   -0.33   -0.44   -0.53   -0.62   -0.71   -0.82   -0.95   -1.06   -1.09   -0.99   -0.70   -0.21    0.41    1.03    1.45
+   280.0    0.00   -0.03   -0.11   -0.21   -0.33   -0.44   -0.54   -0.63   -0.72   -0.82   -0.93   -1.02   -1.04   -0.94   -0.65   -0.17    0.44    1.03    1.40
+   285.0    0.00   -0.03   -0.11   -0.21   -0.33   -0.44   -0.55   -0.64   -0.73   -0.81   -0.90   -0.96   -0.97   -0.85   -0.57   -0.11    0.47    1.01    1.32
+   290.0    0.00   -0.03   -0.10   -0.21   -0.33   -0.45   -0.56   -0.66   -0.74   -0.81   -0.87   -0.90   -0.88   -0.75   -0.47   -0.04    0.50    0.98    1.20
+   295.0    0.00   -0.03   -0.10   -0.21   -0.33   -0.46   -0.58   -0.68   -0.75   -0.80   -0.84   -0.84   -0.78   -0.64   -0.37    0.04    0.52    0.94    1.07
+   300.0    0.00   -0.03   -0.10   -0.21   -0.34   -0.47   -0.59   -0.69   -0.77   -0.80   -0.80   -0.77   -0.69   -0.53   -0.27    0.11    0.54    0.89    0.94
+   305.0    0.00   -0.03   -0.11   -0.21   -0.34   -0.48   -0.61   -0.71   -0.78   -0.80   -0.77   -0.70   -0.60   -0.43   -0.18    0.17    0.55    0.85    0.84
+   310.0    0.00   -0.03   -0.11   -0.21   -0.35   -0.49   -0.62   -0.73   -0.79   -0.79   -0.74   -0.65   -0.52   -0.34   -0.10    0.21    0.55    0.81    0.77
+   315.0    0.00   -0.03   -0.11   -0.22   -0.35   -0.50   -0.64   -0.75   -0.80   -0.79   -0.72   -0.61   -0.46   -0.28   -0.06    0.23    0.54    0.78    0.74
+   320.0    0.00   -0.03   -0.11   -0.22   -0.36   -0.51   -0.65   -0.76   -0.81   -0.79   -0.71   -0.58   -0.42   -0.25   -0.04    0.22    0.51    0.75    0.76
+   325.0    0.00   -0.03   -0.11   -0.22   -0.36   -0.52   -0.66   -0.77   -0.81   -0.79   -0.70   -0.56   -0.41   -0.25   -0.06    0.19    0.48    0.74    0.81
+   330.0    0.00   -0.04   -0.11   -0.23   -0.37   -0.52   -0.67   -0.78   -0.82   -0.79   -0.70   -0.56   -0.41   -0.26   -0.09    0.13    0.43    0.73    0.90
+   335.0    0.00   -0.04   -0.11   -0.23   -0.38   -0.53   -0.68   -0.78   -0.83   -0.80   -0.70   -0.57   -0.43   -0.30   -0.14    0.07    0.37    0.72    0.99
+   340.0    0.00   -0.04   -0.12   -0.24   -0.38   -0.54   -0.68   -0.79   -0.83   -0.81   -0.72   -0.59   -0.46   -0.34   -0.20    0.01    0.31    0.71    1.09
+   345.0    0.00   -0.04   -0.12   -0.24   -0.39   -0.54   -0.69   -0.80   -0.84   -0.82   -0.74   -0.62   -0.49   -0.38   -0.24   -0.05    0.26    0.70    1.16
+   350.0    0.00   -0.04   -0.12   -0.24   -0.39   -0.55   -0.70   -0.81   -0.86   -0.84   -0.76   -0.65   -0.52   -0.40   -0.27   -0.08    0.24    0.69    1.22
+   355.0    0.00   -0.04   -0.12   -0.24   -0.39   -0.55   -0.70   -0.82   -0.88   -0.87   -0.80   -0.68   -0.55   -0.42   -0.28   -0.08    0.24    0.70    1.26
+   360.0    0.00   -0.04   -0.12   -0.25   -0.40   -0.55   -0.71   -0.83   -0.90   -0.90   -0.84   -0.72   -0.57   -0.41   -0.25   -0.03    0.28    0.73    1.29
+   G01                                                      END OF FREQUENCY    
+   R01                                                      START OF FREQUENCY  
+      1.64     -0.52     63.42                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.02   -0.07   -0.14   -0.22   -0.33   -0.45   -0.53   -0.62   -0.70   -0.77   -0.82   -0.84   -0.72   -0.46    0.00    0.57    1.12    1.43
+     0.0    0.00   -0.07   -0.18   -0.35   -0.54   -0.75   -1.00   -1.21   -1.39   -1.50   -1.54   -1.54   -1.47   -1.39   -1.26   -1.06   -0.77   -0.30    0.40
+     5.0    0.00   -0.07   -0.19   -0.34   -0.53   -0.75   -0.98   -1.19   -1.38   -1.48   -1.53   -1.50   -1.43   -1.31   -1.18   -0.98   -0.70   -0.25    0.47
+    10.0    0.00   -0.07   -0.18   -0.32   -0.52   -0.72   -0.94   -1.16   -1.34   -1.46   -1.51   -1.49   -1.39   -1.23   -1.06   -0.85   -0.58   -0.15    0.55
+    15.0    0.00   -0.07   -0.18   -0.32   -0.50   -0.70   -0.91   -1.12   -1.31   -1.43   -1.48   -1.45   -1.33   -1.15   -0.91   -0.66   -0.38    0.03    0.68
+    20.0    0.00   -0.07   -0.17   -0.31   -0.48   -0.67   -0.87   -1.08   -1.26   -1.40   -1.45   -1.42   -1.29   -1.05   -0.76   -0.45   -0.12    0.28    0.85
+    25.0    0.00   -0.06   -0.16   -0.29   -0.45   -0.63   -0.83   -1.03   -1.20   -1.35   -1.43   -1.41   -1.25   -0.97   -0.62   -0.21    0.20    0.60    1.07
+    30.0    0.00   -0.06   -0.15   -0.28   -0.42   -0.59   -0.78   -0.97   -1.15   -1.31   -1.40   -1.39   -1.23   -0.92   -0.47    0.03    0.52    0.95    1.33
+    35.0    0.00   -0.06   -0.14   -0.27   -0.40   -0.57   -0.74   -0.92   -1.10   -1.27   -1.38   -1.39   -1.22   -0.88   -0.36    0.25    0.84    1.32    1.65
+    40.0    0.00   -0.05   -0.13   -0.25   -0.38   -0.53   -0.68   -0.87   -1.05   -1.24   -1.38   -1.40   -1.24   -0.87   -0.29    0.43    1.13    1.68    1.98
+    45.0    0.00   -0.05   -0.12   -0.23   -0.35   -0.49   -0.64   -0.81   -1.01   -1.21   -1.36   -1.41   -1.27   -0.88   -0.26    0.54    1.34    1.98    2.29
+    50.0    0.00   -0.04   -0.12   -0.21   -0.33   -0.45   -0.61   -0.78   -0.97   -1.18   -1.36   -1.43   -1.31   -0.93   -0.29    0.57    1.47    2.19    2.55
+    55.0    0.00   -0.03   -0.10   -0.19   -0.30   -0.42   -0.56   -0.73   -0.93   -1.15   -1.34   -1.45   -1.35   -0.99   -0.34    0.54    1.49    2.30    2.72
+    60.0    0.00   -0.02   -0.09   -0.17   -0.27   -0.39   -0.52   -0.69   -0.89   -1.10   -1.32   -1.44   -1.39   -1.07   -0.45    0.45    1.42    2.29    2.79
+    65.0    0.00   -0.02   -0.08   -0.15   -0.24   -0.34   -0.48   -0.64   -0.83   -1.06   -1.29   -1.43   -1.41   -1.14   -0.56    0.28    1.27    2.15    2.74
+    70.0    0.00   -0.02   -0.06   -0.13   -0.20   -0.30   -0.42   -0.57   -0.77   -1.00   -1.24   -1.40   -1.42   -1.19   -0.69    0.10    1.03    1.92    2.56
+    75.0    0.00   -0.01   -0.05   -0.10   -0.16   -0.26   -0.36   -0.51   -0.70   -0.93   -1.16   -1.34   -1.41   -1.24   -0.80   -0.10    0.76    1.61    2.28
+    80.0    0.00   -0.01   -0.04   -0.08   -0.14   -0.21   -0.32   -0.45   -0.62   -0.84   -1.07   -1.27   -1.35   -1.24   -0.87   -0.27    0.50    1.29    1.94
+    85.0    0.00    0.01   -0.02   -0.05   -0.10   -0.17   -0.26   -0.38   -0.52   -0.74   -0.97   -1.17   -1.28   -1.20   -0.90   -0.40    0.26    0.96    1.57
+    90.0    0.00    0.01    0.09   -0.03   -0.07   -0.13   -0.19   -0.29   -0.44   -0.62   -0.85   -1.04   -1.17   -1.13   -0.90   -0.46    0.10    0.70    1.22
+    95.0    0.00    0.01    0.02   -0.01   -0.05   -0.08   -0.14   -0.22   -0.34   -0.51   -0.70   -0.90   -1.03   -1.03   -0.83   -0.46    0.03    0.52    0.96
+   100.0    0.00    0.02    0.03    0.01   -0.02   -0.04   -0.08   -0.14   -0.24   -0.38   -0.56   -0.75   -0.87   -0.87   -0.70   -0.37    0.05    0.47    0.82
+   105.0    0.00    0.02    0.03    0.02    0.02   -0.01   -0.03   -0.07   -0.14   -0.27   -0.42   -0.59   -0.71   -0.71   -0.53   -0.22    0.18    0.55    0.82
+   110.0    0.00    0.02    0.05    0.04    0.04    0.03    0.02    0.43   -0.05   -0.14   -0.29   -0.43   -0.53   -0.52   -0.33    0.44    0.41    0.76    0.97
+   115.0    0.00    0.04    0.05    0.05    0.05    0.05    0.05    0.05    0.02   -0.04   -0.14   -0.27   -0.36   -0.31   -0.11    0.25    0.69    1.06    1.27
+   120.0    0.00    0.04    0.06    0.07    0.07    0.07    0.08    0.10    0.10    0.05   -0.01   -0.12   -0.18   -0.13    0.11    0.51    1.01    1.45    1.66
+   125.0    0.00    0.04    0.07    0.07    0.08    0.08    0.10    0.14    0.16    0.15    0.10    0.02   -0.03    0.05    0.32    0.78    1.35    1.87    2.14
+   130.0    0.00    0.04    0.08    0.08    0.09    0.09    0.11    0.17    0.21    0.23    0.20    0.15    0.12    0.20    0.50    1.01    1.66    2.28    2.63
+   135.0    0.00    0.05    0.08    0.08    0.09    0.10    0.12    0.18    0.24    0.29    0.29    0.26    0.24    0.35    0.64    1.19    1.92    2.64    3.09
+   140.0    0.00    0.05    0.08    0.09    0.09    0.09    0.12    0.20    0.27    0.34    0.37    0.35    0.34    0.44    0.76    1.34    2.12    2.93    3.45
+   145.0    0.00    0.05    0.08    0.09    0.09    0.09    0.12    0.21    0.29    0.39    0.43    0.42    0.43    0.51    0.83    1.41    2.24    3.11    3.71
+   150.0    0.00    0.05    0.08    0.09    0.09    0.09    0.12    0.20    0.31    0.41    0.47    0.48    0.49    0.57    0.85    1.44    2.28    3.19    3.84
+   155.0    0.00    0.05    0.08    0.09    0.09    0.09    0.12    0.19    0.32    0.43    0.50    0.52    0.51    0.59    0.87    1.42    2.25    3.16    3.83
+   160.0    0.00    0.05    0.08    0.09    0.08    0.08    0.12    0.19    0.30    0.43    0.51    0.52    0.53    0.59    0.84    1.35    2.15    3.04    3.70
+   165.0    0.00    0.05    0.08    0.08    0.07    0.07    0.11    0.17    0.28    0.41    0.49    0.52    0.53    0.58    0.79    1.27    2.01    2.85    3.49
+   170.0    0.00    0.05    0.08    0.07    0.06    0.06    0.08    0.14    0.26    0.37    0.46    0.50    0.51    0.55    0.74    1.17    1.84    2.62    3.22
+   175.0    0.00    0.05    0.07    0.06    0.05    0.04    0.06    0.11    0.21    0.32    0.40    0.45    0.46    0.51    0.68    1.06    1.66    2.39    2.93
+   180.0    0.00    0.04    0.06    0.05    0.04    0.02    0.04    0.07    0.16    0.25    0.34    0.39    0.41    0.46    0.61    0.95    1.50    2.15    2.66
+   185.0    0.00    0.04    0.06    0.05    0.03    0.35    0.01    0.03    0.10    0.17    0.26    0.30    0.34    0.40    0.54    0.84    1.34    1.94    2.44
+   190.0    0.00    0.04    0.05    0.03    0.28   -0.03   -0.04   -0.03    0.03    0.09    0.17    0.22    0.25    0.32    0.45    0.75    1.20    1.78    2.27
+   195.0    0.00    0.03    0.04    0.02   -0.01   -0.05   -0.08   -0.08   -0.06    0.68    0.07    0.12    0.17    0.24    0.37    0.64    1.09    1.64    2.14
+   200.0    0.00    0.03    0.03    0.19   -0.03   -0.09   -0.13   -0.15   -0.13   -0.09   -0.04    0.02    0.07    0.15    0.28    0.56    0.99    1.55    2.06
+   205.0    0.00    0.02    0.02   -0.02   -0.07   -0.11   -0.17   -0.20   -0.19   -0.18   -0.13   -0.08   -0.04    0.03    0.19    0.46    0.91    1.48    2.01
+   210.0    0.00    0.02    0.02   -0.03   -0.09   -0.15   -0.21   -0.26   -0.27   -0.25   -0.22   -0.20   -0.16   -0.09    0.07    0.37    0.83    1.41    1.96
+   215.0    0.00    0.02    0.10   -0.05   -0.11   -0.18   -0.25   -0.30   -0.33   -0.34   -0.33   -0.30   -0.27   -0.22   -0.05    0.27    0.76    1.35    1.88
+   220.0    0.00    0.01   -0.01   -0.07   -0.14   -0.22   -0.29   -0.34   -0.38   -0.41   -0.41   -0.42   -0.42   -0.35   -0.18    0.16    0.68    1.29    1.78
+   225.0    0.00    0.01   -0.01   -0.08   -0.16   -0.24   -0.33   -0.39   -0.44   -0.47   -0.51   -0.54   -0.55   -0.50   -0.32    0.06    0.60    1.21    1.65
+   230.0    0.00    0.02   -0.04   -0.09   -0.18   -0.28   -0.35   -0.43   -0.48   -0.55   -0.59   -0.66   -0.70   -0.66   -0.46   -0.05    0.51    1.11    1.48
+   235.0    0.00   -0.01   -0.05   -0.12   -0.20   -0.30   -0.39   -0.46   -0.52   -0.60   -0.69   -0.78   -0.84   -0.81   -0.59   -0.17    0.42    1.00    1.28
+   240.0    0.00   -0.01   -0.06   -0.13   -0.22   -0.32   -0.41   -0.49   -0.57   -0.66   -0.77   -0.90   -0.99   -0.96   -0.73   -0.29    0.34    0.87    1.07
+   245.0    0.00   -0.02   -0.07   -0.16   -0.24   -0.35   -0.45   -0.52   -0.61   -0.72   -0.87   -1.01   -1.12   -1.09   -0.86   -0.39    0.23    0.75    0.84
+   250.0    0.00   -0.02   -0.08   -0.17   -0.26   -0.39   -0.48   -0.57   -0.67   -0.79   -0.95   -1.11   -1.23   -1.22   -0.97   -0.50    0.12    0.61    0.65
+   255.0    0.00   -0.03   -0.09   -0.18   -0.29   -0.41   -0.52   -0.62   -0.72   -0.86   -1.03   -1.22   -1.33   -1.32   -1.06   -0.59    0.01    0.49    0.47
+   260.0    0.00   -0.03   -0.10   -0.19   -0.31   -0.44   -0.55   -0.66   -0.78   -0.94   -1.11   -1.29   -1.42   -1.39   -1.16   -0.69   -0.10    0.36    0.33
+   265.0    0.00   -0.04   -0.11   -0.21   -0.33   -0.46   -0.59   -0.72   -0.85   -1.00   -1.17   -1.36   -1.47   -1.46   -1.21   -0.76   -0.20    0.24    0.21
+   270.0    0.00   -0.04   -0.12   -0.22   -0.35   -0.49   -0.64   -0.77   -0.91   -1.06   -1.23   -1.39   -1.49   -1.48   -1.25   -0.82   -0.29    0.13    0.12
+   275.0    0.00   -0.04   -0.12   -0.23   -0.37   -0.53   -0.68   -0.82   -0.97   -1.11   -1.27   -1.41   -1.50   -1.48   -1.27   -0.88   -0.37    0.04    0.05
+   280.0    0.00   -0.05   -0.13   -0.24   -0.39   -0.56   -0.72   -0.87   -1.02   -1.15   -1.29   -1.41   -1.49   -1.47   -1.29   -0.91   -0.44   -0.04   -0.01
+   285.0    0.00   -0.05   -0.14   -0.25   -0.42   -0.58   -0.76   -0.92   -1.06   -1.18   -1.29   -1.40   -1.47   -1.43   -1.27   -0.94   -0.49   -0.12   -0.06
+   290.0    0.00   -0.05   -0.14   -0.26   -0.43   -0.61   -0.79   -0.96   -1.10   -1.20   -1.30   -1.37   -1.42   -1.40   -1.25   -0.93   -0.51   -0.16   -0.13
+   295.0    0.00   -0.06   -0.14   -0.27   -0.44   -0.63   -0.82   -1.00   -1.12   -1.21   -1.29   -1.35   -1.39   -1.36   -1.22   -0.92   -0.52   -0.18   -0.20
+   300.0    0.00   -0.06   -0.15   -0.28   -0.46   -0.65   -0.85   -1.01   -1.14   -1.23   -1.27   -1.32   -1.36   -1.33   -1.19   -0.90   -0.51   -0.19   -0.25
+   305.0    0.00   -0.06   -0.16   -0.30   -0.47   -0.67   -0.88   -1.04   -1.16   -1.23   -1.27   -1.30   -1.33   -1.31   -1.18   -0.87   -0.49   -0.18   -0.30
+   310.0    0.00   -0.06   -0.17   -0.31   -0.49   -0.69   -0.89   -1.06   -1.17   -1.23   -1.26   -1.30   -1.32   -1.30   -1.15   -0.85   -0.46   -0.16   -0.31
+   315.0    0.00   -0.07   -0.17   -0.32   -0.50   -0.70   -0.92   -1.08   -1.19   -1.25   -1.27   -1.31   -1.32   -1.30   -1.16   -0.84   -0.44   -0.13   -0.32
+   320.0    0.00   -0.07   -0.17   -0.33   -0.51   -0.72   -0.93   -1.10   -1.21   -1.27   -1.31   -1.32   -1.34   -1.31   -1.17   -0.84   -0.43   -0.12   -0.29
+   325.0    0.00   -0.07   -0.18   -0.33   -0.51   -0.73   -0.95   -1.12   -1.24   -1.30   -1.34   -1.36   -1.38   -1.36   -1.20   -0.86   -0.43   -0.10   -0.23
+   330.0    0.00   -0.08   -0.18   -0.34   -0.53   -0.74   -0.97   -1.15   -1.27   -1.33   -1.37   -1.40   -1.41   -1.38   -1.23   -0.91   -0.46   -0.10   -0.14
+   335.0    0.00   -0.08   -0.18   -0.34   -0.54   -0.75   -0.99   -1.16   -1.31   -1.38   -1.41   -1.44   -1.45   -1.43   -1.27   -0.96   -0.52   -0.12   -0.05
+   340.0    0.00   -0.08   -0.19   -0.35   -0.54   -0.76   -0.99   -1.19   -1.33   -1.42   -1.46   -1.48   -1.49   -1.46   -1.31   -1.01   -0.59   -0.15    0.07
+   345.0    0.00   -0.08   -0.19   -0.35   -0.55   -0.76   -1.01   -1.21   -1.36   -1.45   -1.49   -1.51   -1.51   -1.46   -1.32   -1.07   -0.68   -0.20    0.16
+   350.0    0.00   -0.08   -0.18   -0.35   -0.54   -0.77   -1.02   -1.22   -1.38   -1.48   -1.53   -1.53   -1.51   -1.45   -1.33   -1.10   -0.73   -0.26    0.25
+   355.0    0.00   -0.08   -0.18   -0.34   -0.54   -0.76   -1.01   -1.22   -1.39   -1.50   -1.54   -1.54   -1.51   -1.44   -1.32   -1.11   -0.77   -0.30    0.32
+   360.0    0.00   -0.07   -0.18   -0.35   -0.54   -0.75   -1.00   -1.21   -1.39   -1.50   -1.54   -1.54   -1.47   -1.39   -1.26   -1.06   -0.77   -0.30    0.40
+   R01                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+LEIAS10         NONE                                        TYPE / SERIAL NO    
+COPIED              Geo++ GmbH              10    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     4                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+COPIED FROM LEIAX1203+GNSS  NONE                            COMMENT             
+ATTENTION! COPIED WITHOUT VERIFICATION BY CALIBRATION!      COMMENT             
+   G01                                                      START OF FREQUENCY  
+     -1.03      1.35     58.32                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.02   -0.08   -0.19   -0.34   -0.52   -0.69   -0.83   -0.92   -0.94   -0.91   -0.84   -0.74   -0.60   -0.38   -0.04    0.43    1.03    1.67
+     0.0    0.00   -0.07   -0.18   -0.32   -0.47   -0.64   -0.80   -0.93   -0.98   -0.91   -0.73   -0.46   -0.16    0.10    0.29    0.45    0.72    1.26    2.11
+     5.0    0.00   -0.07   -0.18   -0.31   -0.46   -0.63   -0.79   -0.91   -0.97   -0.92   -0.75   -0.48   -0.18    0.09    0.29    0.47    0.74    1.26    2.09
+    10.0    0.00   -0.07   -0.17   -0.30   -0.45   -0.61   -0.77   -0.90   -0.96   -0.93   -0.77   -0.52   -0.21    0.07    0.30    0.50    0.78    1.28    2.07
+    15.0    0.00   -0.06   -0.16   -0.29   -0.44   -0.60   -0.76   -0.89   -0.96   -0.94   -0.81   -0.57   -0.27    0.03    0.29    0.53    0.83    1.32    2.06
+    20.0    0.00   -0.06   -0.16   -0.28   -0.43   -0.58   -0.74   -0.87   -0.95   -0.95   -0.85   -0.64   -0.35   -0.03    0.27    0.55    0.89    1.36    2.05
+    25.0    0.00   -0.05   -0.15   -0.27   -0.41   -0.56   -0.72   -0.85   -0.94   -0.96   -0.89   -0.71   -0.44   -0.13    0.21    0.55    0.92    1.40    2.03
+    30.0    0.00   -0.05   -0.14   -0.26   -0.40   -0.54   -0.69   -0.82   -0.92   -0.96   -0.93   -0.79   -0.56   -0.25    0.11    0.50    0.92    1.41    2.00
+    35.0    0.00   -0.04   -0.13   -0.24   -0.38   -0.52   -0.66   -0.79   -0.90   -0.96   -0.96   -0.87   -0.68   -0.39   -0.02    0.40    0.87    1.37    1.94
+    40.0    0.00   -0.04   -0.12   -0.23   -0.36   -0.50   -0.64   -0.76   -0.87   -0.95   -0.99   -0.95   -0.81   -0.55   -0.19    0.26    0.75    1.27    1.83
+    45.0    0.00   -0.03   -0.11   -0.22   -0.35   -0.48   -0.62   -0.74   -0.84   -0.94   -1.01   -1.02   -0.93   -0.73   -0.38    0.07    0.58    1.11    1.67
+    50.0    0.00   -0.03   -0.10   -0.20   -0.33   -0.47   -0.59   -0.71   -0.82   -0.93   -1.02   -1.08   -1.05   -0.90   -0.59   -0.15    0.36    0.89    1.44
+    55.0    0.00   -0.02   -0.08   -0.19   -0.31   -0.45   -0.58   -0.69   -0.80   -0.91   -1.03   -1.12   -1.15   -1.05   -0.79   -0.39    0.10    0.61    1.17
+    60.0    0.00   -0.01   -0.07   -0.17   -0.30   -0.44   -0.57   -0.68   -0.79   -0.90   -1.03   -1.15   -1.22   -1.18   -0.98   -0.62   -0.17    0.31    0.85
+    65.0    0.00   -0.01   -0.06   -0.16   -0.28   -0.43   -0.56   -0.68   -0.78   -0.89   -1.02   -1.17   -1.27   -1.27   -1.12   -0.82   -0.43    0.00    0.51
+    70.0    0.00    0.00   -0.05   -0.14   -0.27   -0.42   -0.56   -0.67   -0.78   -0.88   -1.02   -1.17   -1.29   -1.33   -1.23   -0.98   -0.65   -0.28    0.18
+    75.0    0.00    0.00   -0.04   -0.13   -0.26   -0.41   -0.55   -0.68   -0.78   -0.88   -1.00   -1.15   -1.29   -1.35   -1.28   -1.08   -0.80   -0.50   -0.10
+    80.0    0.00    0.01   -0.03   -0.11   -0.24   -0.40   -0.55   -0.68   -0.78   -0.87   -0.99   -1.13   -1.26   -1.32   -1.27   -1.11   -0.88   -0.64   -0.31
+    85.0    0.00    0.02   -0.01   -0.10   -0.23   -0.39   -0.55   -0.68   -0.78   -0.87   -0.97   -1.09   -1.21   -1.27   -1.22   -1.07   -0.86   -0.67   -0.41
+    90.0    0.00    0.02    0.00   -0.08   -0.21   -0.37   -0.54   -0.67   -0.77   -0.85   -0.94   -1.05   -1.15   -1.19   -1.13   -0.96   -0.76   -0.59   -0.39
+    95.0    0.00    0.03    0.01   -0.07   -0.20   -0.36   -0.52   -0.66   -0.76   -0.83   -0.91   -1.00   -1.08   -1.10   -1.01   -0.81   -0.59   -0.41   -0.24
+   100.0    0.00    0.03    0.02   -0.05   -0.18   -0.34   -0.51   -0.64   -0.74   -0.81   -0.88   -0.95   -1.01   -1.00   -0.87   -0.64   -0.37   -0.15    0.02
+   105.0    0.00    0.04    0.03   -0.04   -0.16   -0.32   -0.48   -0.62   -0.71   -0.78   -0.84   -0.90   -0.94   -0.90   -0.74   -0.45   -0.12    0.17    0.37
+   110.0    0.00    0.04    0.03   -0.03   -0.15   -0.30   -0.46   -0.59   -0.68   -0.74   -0.79   -0.85   -0.88   -0.82   -0.62   -0.29    0.13    0.51    0.78
+   115.0    0.00    0.04    0.04   -0.02   -0.13   -0.28   -0.44   -0.56   -0.64   -0.70   -0.75   -0.79   -0.81   -0.75   -0.53   -0.15    0.34    0.83    1.21
+   120.0    0.00    0.05    0.05   -0.01   -0.12   -0.27   -0.41   -0.53   -0.61   -0.66   -0.70   -0.74   -0.76   -0.69   -0.47   -0.06    0.51    1.11    1.61
+   125.0    0.00    0.05    0.05    0.00   -0.11   -0.25   -0.40   -0.51   -0.58   -0.62   -0.65   -0.68   -0.70   -0.65   -0.44   -0.01    0.60    1.30    1.94
+   130.0    0.00    0.05    0.05    0.00   -0.10   -0.24   -0.38   -0.49   -0.56   -0.58   -0.60   -0.63   -0.65   -0.62   -0.43   -0.02    0.62    1.41    2.17
+   135.0    0.00    0.05    0.06    0.01   -0.10   -0.24   -0.38   -0.49   -0.54   -0.56   -0.56   -0.58   -0.61   -0.59   -0.44   -0.06    0.58    1.43    2.29
+   140.0    0.00    0.05    0.06    0.01   -0.10   -0.24   -0.38   -0.48   -0.54   -0.54   -0.53   -0.53   -0.56   -0.57   -0.46   -0.13    0.49    1.37    2.31
+   145.0    0.00    0.05    0.06    0.01   -0.10   -0.24   -0.38   -0.49   -0.54   -0.53   -0.51   -0.49   -0.52   -0.54   -0.48   -0.22    0.36    1.24    2.22
+   150.0    0.00    0.05    0.05    0.00   -0.10   -0.25   -0.39   -0.50   -0.55   -0.54   -0.49   -0.46   -0.48   -0.52   -0.50   -0.29    0.23    1.08    2.07
+   155.0    0.00    0.05    0.05    0.00   -0.11   -0.25   -0.40   -0.52   -0.56   -0.54   -0.49   -0.44   -0.44   -0.49   -0.50   -0.35    0.11    0.92    1.88
+   160.0    0.00    0.05    0.05   -0.01   -0.12   -0.26   -0.41   -0.53   -0.58   -0.56   -0.49   -0.43   -0.41   -0.46   -0.49   -0.38    0.03    0.78    1.69
+   165.0    0.00    0.04    0.04   -0.02   -0.13   -0.27   -0.43   -0.55   -0.60   -0.58   -0.50   -0.42   -0.39   -0.43   -0.47   -0.38   -0.01    0.69    1.54
+   170.0    0.00    0.04    0.03   -0.02   -0.14   -0.28   -0.44   -0.56   -0.62   -0.60   -0.52   -0.43   -0.38   -0.40   -0.42   -0.34    0.00    0.65    1.45
+   175.0    0.00    0.04    0.03   -0.03   -0.15   -0.29   -0.45   -0.57   -0.64   -0.62   -0.54   -0.45   -0.38   -0.37   -0.37   -0.28    0.05    0.68    1.42
+   180.0    0.00    0.03    0.02   -0.05   -0.16   -0.30   -0.46   -0.58   -0.65   -0.64   -0.57   -0.47   -0.38   -0.34   -0.32   -0.20    0.14    0.75    1.47
+   185.0    0.00    0.03    0.01   -0.06   -0.17   -0.31   -0.46   -0.59   -0.67   -0.67   -0.60   -0.49   -0.39   -0.32   -0.26   -0.11    0.25    0.87    1.58
+   190.0    0.00    0.02    0.00   -0.07   -0.18   -0.33   -0.48   -0.60   -0.68   -0.69   -0.62   -0.52   -0.41   -0.31   -0.21   -0.02    0.37    1.00    1.73
+   195.0    0.00    0.02   -0.01   -0.08   -0.20   -0.34   -0.49   -0.62   -0.70   -0.71   -0.65   -0.54   -0.42   -0.30   -0.17    0.06    0.47    1.12    1.89
+   200.0    0.00    0.01   -0.02   -0.10   -0.21   -0.36   -0.51   -0.63   -0.72   -0.73   -0.67   -0.57   -0.44   -0.30   -0.14    0.11    0.55    1.23    2.03
+   205.0    0.00    0.01   -0.03   -0.11   -0.23   -0.38   -0.53   -0.66   -0.74   -0.75   -0.70   -0.59   -0.46   -0.31   -0.13    0.14    0.60    1.29    2.13
+   210.0    0.00    0.00   -0.04   -0.13   -0.25   -0.40   -0.55   -0.68   -0.76   -0.77   -0.72   -0.62   -0.48   -0.33   -0.15    0.14    0.61    1.30    2.17
+   215.0    0.00    0.00   -0.05   -0.15   -0.28   -0.43   -0.58   -0.71   -0.79   -0.80   -0.74   -0.64   -0.51   -0.37   -0.18    0.11    0.57    1.26    2.14
+   220.0    0.00   -0.01   -0.06   -0.16   -0.30   -0.46   -0.61   -0.74   -0.82   -0.82   -0.77   -0.67   -0.56   -0.42   -0.24    0.05    0.51    1.19    2.05
+   225.0    0.00   -0.01   -0.07   -0.18   -0.32   -0.49   -0.65   -0.77   -0.85   -0.85   -0.80   -0.71   -0.61   -0.49   -0.31   -0.02    0.43    1.08    1.91
+   230.0    0.00   -0.02   -0.09   -0.20   -0.35   -0.51   -0.68   -0.81   -0.88   -0.88   -0.83   -0.76   -0.67   -0.57   -0.40   -0.12    0.34    0.97    1.74
+   235.0    0.00   -0.02   -0.10   -0.21   -0.37   -0.54   -0.71   -0.84   -0.90   -0.91   -0.87   -0.81   -0.76   -0.67   -0.51   -0.21    0.25    0.86    1.57
+   240.0    0.00   -0.03   -0.11   -0.23   -0.39   -0.57   -0.74   -0.87   -0.93   -0.94   -0.91   -0.88   -0.85   -0.78   -0.62   -0.31    0.17    0.77    1.42
+   245.0    0.00   -0.04   -0.12   -0.24   -0.41   -0.60   -0.77   -0.90   -0.96   -0.98   -0.96   -0.95   -0.95   -0.90   -0.74   -0.40    0.11    0.71    1.30
+   250.0    0.00   -0.04   -0.13   -0.26   -0.43   -0.63   -0.80   -0.93   -1.00   -1.01   -1.02   -1.03   -1.05   -1.02   -0.85   -0.48    0.07    0.69    1.23
+   255.0    0.00   -0.05   -0.14   -0.27   -0.45   -0.65   -0.83   -0.96   -1.03   -1.06   -1.07   -1.11   -1.15   -1.13   -0.94   -0.54    0.06    0.70    1.21
+   260.0    0.00   -0.05   -0.14   -0.29   -0.47   -0.67   -0.86   -1.00   -1.07   -1.10   -1.13   -1.18   -1.24   -1.22   -1.01   -0.56    0.08    0.75    1.24
+   265.0    0.00   -0.06   -0.15   -0.30   -0.49   -0.70   -0.89   -1.04   -1.12   -1.16   -1.19   -1.25   -1.30   -1.27   -1.05   -0.56    0.13    0.83    1.31
+   270.0    0.00   -0.06   -0.16   -0.31   -0.50   -0.72   -0.93   -1.08   -1.17   -1.21   -1.25   -1.30   -1.34   -1.29   -1.04   -0.53    0.20    0.93    1.40
+   275.0    0.00   -0.06   -0.17   -0.32   -0.52   -0.74   -0.96   -1.12   -1.22   -1.27   -1.29   -1.33   -1.35   -1.28   -1.00   -0.46    0.29    1.04    1.51
+   280.0    0.00   -0.07   -0.17   -0.33   -0.53   -0.76   -0.99   -1.17   -1.27   -1.32   -1.33   -1.34   -1.33   -1.22   -0.91   -0.36    0.39    1.14    1.62
+   285.0    0.00   -0.07   -0.18   -0.33   -0.54   -0.78   -1.02   -1.21   -1.32   -1.36   -1.36   -1.33   -1.27   -1.12   -0.79   -0.23    0.51    1.25    1.72
+   290.0    0.00   -0.07   -0.18   -0.34   -0.55   -0.79   -1.04   -1.24   -1.37   -1.40   -1.37   -1.30   -1.19   -0.99   -0.64   -0.08    0.63    1.34    1.80
+   295.0    0.00   -0.08   -0.19   -0.34   -0.55   -0.80   -1.06   -1.27   -1.40   -1.42   -1.36   -1.25   -1.08   -0.84   -0.47    0.07    0.75    1.42    1.86
+   300.0    0.00   -0.08   -0.19   -0.35   -0.56   -0.81   -1.07   -1.28   -1.41   -1.43   -1.34   -1.18   -0.96   -0.68   -0.30    0.22    0.86    1.49    1.91
+   305.0    0.00   -0.08   -0.19   -0.35   -0.56   -0.81   -1.07   -1.29   -1.41   -1.41   -1.30   -1.10   -0.84   -0.52   -0.13    0.37    0.95    1.54    1.95
+   310.0    0.00   -0.08   -0.20   -0.35   -0.56   -0.80   -1.06   -1.27   -1.39   -1.38   -1.25   -1.01   -0.71   -0.37    0.02    0.48    1.03    1.58    1.98
+   315.0    0.00   -0.08   -0.20   -0.35   -0.55   -0.79   -1.04   -1.25   -1.36   -1.34   -1.18   -0.92   -0.60   -0.24    0.14    0.57    1.07    1.60    2.01
+   320.0    0.00   -0.08   -0.20   -0.35   -0.54   -0.78   -1.01   -1.21   -1.31   -1.28   -1.11   -0.83   -0.49   -0.14    0.23    0.62    1.09    1.61    2.05
+   325.0    0.00   -0.08   -0.20   -0.35   -0.54   -0.76   -0.98   -1.17   -1.26   -1.21   -1.03   -0.74   -0.40   -0.06    0.28    0.64    1.07    1.59    2.08
+   330.0    0.00   -0.08   -0.20   -0.34   -0.53   -0.74   -0.95   -1.12   -1.20   -1.14   -0.95   -0.66   -0.33    0.00    0.31    0.63    1.03    1.56    2.11
+   335.0    0.00   -0.08   -0.20   -0.34   -0.52   -0.72   -0.92   -1.07   -1.14   -1.08   -0.88   -0.59   -0.27    0.04    0.31    0.59    0.97    1.51    2.14
+   340.0    0.00   -0.08   -0.19   -0.34   -0.51   -0.70   -0.89   -1.03   -1.09   -1.02   -0.82   -0.54   -0.22    0.07    0.31    0.55    0.90    1.45    2.15
+   345.0    0.00   -0.08   -0.19   -0.33   -0.50   -0.68   -0.86   -1.00   -1.04   -0.97   -0.78   -0.49   -0.19    0.08    0.29    0.50    0.83    1.39    2.16
+   350.0    0.00   -0.08   -0.19   -0.33   -0.49   -0.67   -0.84   -0.97   -1.01   -0.94   -0.75   -0.47   -0.16    0.09    0.28    0.46    0.77    1.33    2.15
+   355.0    0.00   -0.08   -0.19   -0.32   -0.48   -0.65   -0.82   -0.94   -0.99   -0.92   -0.73   -0.45   -0.15    0.10    0.28    0.44    0.73    1.28    2.13
+   360.0    0.00   -0.07   -0.18   -0.32   -0.47   -0.64   -0.80   -0.93   -0.98   -0.91   -0.73   -0.46   -0.16    0.10    0.29    0.45    0.72    1.26    2.11
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.20     -2.38     55.54                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.04   -0.15   -0.29   -0.43   -0.57   -0.69   -0.80   -0.87   -0.84   -0.66   -0.33    0.08    0.41    0.50    0.30   -0.02   -0.08    0.62
+     0.0    0.00    0.01   -0.03   -0.09   -0.12   -0.12   -0.13   -0.17   -0.26   -0.38   -0.42   -0.31   -0.01    0.40    0.76    0.90    0.82    0.78    1.42
+     5.0    0.00    0.01   -0.03   -0.08   -0.10   -0.10   -0.10   -0.15   -0.25   -0.38   -0.44   -0.33   -0.04    0.37    0.75    0.91    0.84    0.80    1.35
+    10.0    0.00    0.00   -0.03   -0.07   -0.09   -0.08   -0.08   -0.14   -0.25   -0.38   -0.45   -0.36   -0.08    0.33    0.71    0.89    0.83    0.77    1.25
+    15.0    0.00    0.00   -0.04   -0.07   -0.08   -0.07   -0.07   -0.13   -0.25   -0.39   -0.47   -0.38   -0.11    0.29    0.66    0.83    0.78    0.71    1.13
+    20.0    0.00    0.00   -0.04   -0.07   -0.08   -0.07   -0.07   -0.13   -0.25   -0.40   -0.48   -0.40   -0.14    0.25    0.60    0.77    0.71    0.63    1.01
+    25.0    0.00   -0.01   -0.04   -0.08   -0.08   -0.07   -0.08   -0.14   -0.27   -0.41   -0.48   -0.41   -0.15    0.22    0.55    0.70    0.64    0.56    0.92
+    30.0    0.00   -0.01   -0.05   -0.09   -0.09   -0.08   -0.09   -0.16   -0.29   -0.42   -0.49   -0.40   -0.15    0.20    0.51    0.64    0.57    0.50    0.87
+    35.0    0.00   -0.01   -0.06   -0.10   -0.11   -0.10   -0.12   -0.19   -0.31   -0.44   -0.49   -0.39   -0.13    0.21    0.49    0.59    0.51    0.46    0.86
+    40.0    0.00   -0.02   -0.07   -0.11   -0.13   -0.13   -0.16   -0.23   -0.35   -0.47   -0.49   -0.36   -0.09    0.24    0.49    0.56    0.47    0.45    0.90
+    45.0    0.00   -0.02   -0.08   -0.13   -0.15   -0.17   -0.21   -0.29   -0.41   -0.50   -0.50   -0.34   -0.04    0.28    0.51    0.54    0.44    0.46    0.99
+    50.0    0.00   -0.03   -0.09   -0.15   -0.19   -0.21   -0.26   -0.36   -0.47   -0.55   -0.51   -0.31    0.00    0.33    0.53    0.53    0.42    0.49    1.12
+    55.0    0.00   -0.04   -0.11   -0.17   -0.22   -0.27   -0.33   -0.43   -0.55   -0.60   -0.53   -0.29    0.05    0.38    0.55    0.52    0.40    0.52    1.26
+    60.0    0.00   -0.04   -0.12   -0.20   -0.26   -0.32   -0.41   -0.52   -0.63   -0.67   -0.56   -0.29    0.08    0.41    0.56    0.50    0.38    0.54    1.41
+    65.0    0.00   -0.05   -0.13   -0.23   -0.30   -0.38   -0.49   -0.61   -0.72   -0.75   -0.61   -0.30    0.09    0.43    0.55    0.46    0.33    0.55    1.54
+    70.0    0.00   -0.05   -0.15   -0.25   -0.35   -0.44   -0.57   -0.71   -0.82   -0.83   -0.67   -0.34    0.08    0.41    0.52    0.40    0.26    0.53    1.62
+    75.0    0.00   -0.06   -0.16   -0.28   -0.39   -0.50   -0.64   -0.80   -0.92   -0.93   -0.75   -0.39    0.04    0.38    0.46    0.31    0.17    0.48    1.65
+    80.0    0.00   -0.06   -0.18   -0.30   -0.43   -0.56   -0.72   -0.89   -1.02   -1.02   -0.83   -0.46   -0.01    0.31    0.38    0.20    0.05    0.39    1.61
+    85.0    0.00   -0.07   -0.19   -0.33   -0.46   -0.61   -0.79   -0.97   -1.11   -1.12   -0.92   -0.54   -0.09    0.23    0.28    0.08   -0.08    0.27    1.51
+    90.0    0.00   -0.07   -0.20   -0.35   -0.50   -0.66   -0.85   -1.04   -1.19   -1.21   -1.01   -0.63   -0.18    0.14    0.17   -0.05   -0.22    0.11    1.33
+    95.0    0.00   -0.08   -0.21   -0.37   -0.53   -0.70   -0.90   -1.11   -1.27   -1.29   -1.10   -0.71   -0.26    0.05    0.07   -0.17   -0.37   -0.06    1.11
+   100.0    0.00   -0.08   -0.22   -0.39   -0.55   -0.73   -0.94   -1.16   -1.34   -1.37   -1.18   -0.80   -0.35   -0.04   -0.02   -0.28   -0.50   -0.24    0.85
+   105.0    0.00   -0.09   -0.23   -0.40   -0.57   -0.76   -0.98   -1.21   -1.40   -1.44   -1.26   -0.87   -0.42   -0.10   -0.09   -0.36   -0.62   -0.41    0.58
+   110.0    0.00   -0.09   -0.24   -0.41   -0.59   -0.78   -1.01   -1.25   -1.45   -1.50   -1.32   -0.93   -0.47   -0.14   -0.13   -0.41   -0.70   -0.56    0.34
+   115.0    0.00   -0.09   -0.25   -0.42   -0.60   -0.80   -1.03   -1.29   -1.49   -1.55   -1.38   -0.98   -0.50   -0.16   -0.14   -0.43   -0.76   -0.68    0.13
+   120.0    0.00   -0.09   -0.25   -0.43   -0.61   -0.82   -1.05   -1.31   -1.53   -1.59   -1.41   -1.01   -0.51   -0.15   -0.11   -0.41   -0.77   -0.75   -0.01
+   125.0    0.00   -0.09   -0.25   -0.43   -0.62   -0.83   -1.07   -1.34   -1.56   -1.62   -1.44   -1.02   -0.50   -0.11   -0.06   -0.36   -0.75   -0.78   -0.07
+   130.0    0.00   -0.10   -0.25   -0.43   -0.62   -0.83   -1.08   -1.35   -1.58   -1.64   -1.45   -1.01   -0.47   -0.05    0.01   -0.29   -0.69   -0.75   -0.06
+   135.0    0.00   -0.10   -0.25   -0.43   -0.62   -0.83   -1.08   -1.36   -1.58   -1.64   -1.44   -0.99   -0.42    0.02    0.11   -0.19   -0.61   -0.68    0.03
+   140.0    0.00   -0.09   -0.25   -0.43   -0.62   -0.83   -1.08   -1.35   -1.58   -1.63   -1.42   -0.95   -0.36    0.10    0.21   -0.07   -0.49   -0.56    0.19
+   145.0    0.00   -0.09   -0.25   -0.42   -0.61   -0.82   -1.07   -1.33   -1.55   -1.60   -1.37   -0.89   -0.28    0.20    0.33    0.05   -0.36   -0.42    0.39
+   150.0    0.00   -0.09   -0.24   -0.42   -0.60   -0.80   -1.04   -1.30   -1.50   -1.54   -1.31   -0.81   -0.19    0.30    0.44    0.19   -0.22   -0.26    0.62
+   155.0    0.00   -0.09   -0.24   -0.41   -0.59   -0.78   -1.01   -1.25   -1.44   -1.46   -1.22   -0.72   -0.10    0.41    0.56    0.33   -0.07   -0.09    0.84
+   160.0    0.00   -0.09   -0.23   -0.40   -0.57   -0.76   -0.97   -1.19   -1.35   -1.35   -1.10   -0.61    0.01    0.52    0.69    0.47    0.09    0.07    1.04
+   165.0    0.00   -0.08   -0.22   -0.39   -0.55   -0.73   -0.92   -1.11   -1.25   -1.23   -0.97   -0.48    0.13    0.63    0.81    0.61    0.24    0.21    1.20
+   170.0    0.00   -0.08   -0.22   -0.37   -0.53   -0.69   -0.86   -1.02   -1.13   -1.09   -0.83   -0.34    0.25    0.75    0.93    0.74    0.38    0.34    1.31
+   175.0    0.00   -0.08   -0.21   -0.36   -0.52   -0.66   -0.80   -0.93   -1.00   -0.94   -0.67   -0.20    0.38    0.87    1.05    0.87    0.50    0.43    1.36
+   180.0    0.00   -0.07   -0.20   -0.35   -0.50   -0.63   -0.75   -0.84   -0.88   -0.79   -0.52   -0.06    0.50    0.98    1.17    0.99    0.61    0.50    1.37
+   185.0    0.00   -0.07   -0.20   -0.34   -0.49   -0.60   -0.70   -0.76   -0.77   -0.66   -0.38    0.08    0.62    1.08    1.27    1.09    0.70    0.54    1.34
+   190.0    0.00   -0.07   -0.19   -0.34   -0.47   -0.58   -0.66   -0.70   -0.67   -0.54   -0.25    0.19    0.72    1.17    1.35    1.18    0.77    0.55    1.28
+   195.0    0.00   -0.06   -0.18   -0.33   -0.47   -0.57   -0.64   -0.65   -0.60   -0.45   -0.16    0.28    0.79    1.23    1.41    1.23    0.81    0.55    1.20
+   200.0    0.00   -0.06   -0.18   -0.33   -0.47   -0.57   -0.63   -0.63   -0.57   -0.40   -0.10    0.33    0.84    1.26    1.44    1.26    0.83    0.54    1.13
+   205.0    0.00   -0.06   -0.17   -0.33   -0.47   -0.58   -0.64   -0.64   -0.56   -0.39   -0.08    0.35    0.84    1.27    1.44    1.26    0.82    0.51    1.07
+   210.0    0.00   -0.05   -0.17   -0.33   -0.48   -0.60   -0.67   -0.67   -0.59   -0.41   -0.10    0.33    0.82    1.23    1.41    1.23    0.79    0.48    1.03
+   215.0    0.00   -0.05   -0.17   -0.33   -0.50   -0.63   -0.71   -0.72   -0.65   -0.47   -0.16    0.27    0.76    1.17    1.34    1.17    0.74    0.45    0.99
+   220.0    0.00   -0.05   -0.17   -0.34   -0.52   -0.67   -0.77   -0.79   -0.73   -0.56   -0.25    0.18    0.67    1.08    1.25    1.08    0.67    0.41    0.97
+   225.0    0.00   -0.04   -0.16   -0.34   -0.54   -0.72   -0.84   -0.88   -0.83   -0.66   -0.36    0.08    0.57    0.97    1.13    0.97    0.59    0.37    0.93
+   230.0    0.00   -0.04   -0.16   -0.35   -0.56   -0.76   -0.91   -0.97   -0.94   -0.78   -0.47   -0.04    0.45    0.85    1.01    0.85    0.50    0.31    0.88
+   235.0    0.00   -0.04   -0.16   -0.36   -0.59   -0.81   -0.98   -1.07   -1.05   -0.90   -0.59   -0.15    0.34    0.73    0.88    0.73    0.39    0.23    0.78
+   240.0    0.00   -0.03   -0.16   -0.37   -0.61   -0.85   -1.05   -1.16   -1.15   -1.00   -0.69   -0.25    0.23    0.61    0.75    0.59    0.27    0.13    0.65
+   245.0    0.00   -0.03   -0.16   -0.37   -0.63   -0.89   -1.10   -1.23   -1.24   -1.09   -0.78   -0.34    0.14    0.51    0.63    0.46    0.14   -0.01    0.46
+   250.0    0.00   -0.03   -0.16   -0.38   -0.65   -0.92   -1.15   -1.29   -1.31   -1.16   -0.85   -0.40    0.08    0.43    0.52    0.33   -0.01   -0.17    0.21
+   255.0    0.00   -0.03   -0.16   -0.38   -0.66   -0.95   -1.19   -1.34   -1.35   -1.20   -0.88   -0.43    0.03    0.36    0.42    0.19   -0.18   -0.37   -0.07
+   260.0    0.00   -0.02   -0.16   -0.38   -0.67   -0.96   -1.20   -1.36   -1.37   -1.22   -0.89   -0.44    0.01    0.31    0.33    0.05   -0.36   -0.60   -0.39
+   265.0    0.00   -0.02   -0.15   -0.38   -0.67   -0.96   -1.21   -1.36   -1.37   -1.21   -0.88   -0.43    0.01    0.28    0.25   -0.09   -0.56   -0.85   -0.72
+   270.0    0.00   -0.02   -0.15   -0.38   -0.66   -0.95   -1.20   -1.34   -1.35   -1.19   -0.85   -0.41    0.01    0.24    0.16   -0.24   -0.76   -1.10   -1.04
+   275.0    0.00   -0.02   -0.15   -0.37   -0.65   -0.93   -1.17   -1.31   -1.31   -1.14   -0.81   -0.38    0.02    0.21    0.07   -0.39   -0.97   -1.36   -1.32
+   280.0    0.00   -0.01   -0.14   -0.36   -0.64   -0.91   -1.13   -1.26   -1.25   -1.09   -0.77   -0.35    0.02    0.18   -0.01   -0.53   -1.17   -1.59   -1.55
+   285.0    0.00   -0.01   -0.14   -0.35   -0.61   -0.87   -1.08   -1.19   -1.19   -1.02   -0.72   -0.32    0.02    0.14   -0.10   -0.67   -1.35   -1.77   -1.69
+   290.0    0.00   -0.01   -0.13   -0.34   -0.59   -0.83   -1.02   -1.12   -1.11   -0.96   -0.67   -0.30    0.01    0.09   -0.18   -0.79   -1.49   -1.91   -1.74
+   295.0    0.00   -0.01   -0.12   -0.32   -0.56   -0.78   -0.95   -1.04   -1.03   -0.89   -0.63   -0.29   -0.01    0.05   -0.24   -0.87   -1.58   -1.97   -1.70
+   300.0    0.00    0.00   -0.11   -0.30   -0.52   -0.72   -0.87   -0.95   -0.94   -0.82   -0.59   -0.29   -0.03    0.01   -0.29   -0.91   -1.61   -1.96   -1.55
+   305.0    0.00    0.00   -0.11   -0.28   -0.48   -0.66   -0.79   -0.86   -0.86   -0.76   -0.56   -0.29   -0.05   -0.01   -0.30   -0.90   -1.57   -1.86   -1.32
+   310.0    0.00    0.00   -0.10   -0.26   -0.45   -0.60   -0.71   -0.77   -0.77   -0.69   -0.53   -0.29   -0.07   -0.02   -0.28   -0.84   -1.46   -1.69   -1.02
+   315.0    0.00    0.00   -0.09   -0.24   -0.41   -0.54   -0.63   -0.68   -0.69   -0.64   -0.50   -0.29   -0.08   -0.01   -0.22   -0.72   -1.28   -1.45   -0.66
+   320.0    0.00    0.00   -0.08   -0.22   -0.37   -0.48   -0.56   -0.60   -0.61   -0.58   -0.48   -0.29   -0.08    0.03   -0.12   -0.55   -1.05   -1.16   -0.27
+   325.0    0.00    0.01   -0.07   -0.20   -0.33   -0.42   -0.48   -0.52   -0.54   -0.53   -0.45   -0.28   -0.07    0.08    0.01   -0.34   -0.77   -0.83    0.11
+   330.0    0.00    0.01   -0.07   -0.18   -0.29   -0.37   -0.41   -0.44   -0.47   -0.49   -0.43   -0.28   -0.05    0.15    0.15   -0.10   -0.46   -0.49    0.48
+   335.0    0.00    0.01   -0.06   -0.16   -0.26   -0.32   -0.35   -0.38   -0.42   -0.45   -0.42   -0.27   -0.02    0.22    0.30    0.14   -0.16   -0.16    0.81
+   340.0    0.00    0.01   -0.05   -0.14   -0.22   -0.27   -0.29   -0.32   -0.37   -0.42   -0.41   -0.27    0.00    0.29    0.45    0.37    0.13    0.14    1.07
+   345.0    0.00    0.01   -0.05   -0.13   -0.19   -0.23   -0.24   -0.27   -0.33   -0.40   -0.40   -0.27    0.01    0.35    0.58    0.57    0.38    0.39    1.27
+   350.0    0.00    0.01   -0.04   -0.11   -0.17   -0.19   -0.20   -0.23   -0.30   -0.39   -0.40   -0.27    0.02    0.39    0.67    0.73    0.59    0.58    1.39
+   355.0    0.00    0.01   -0.04   -0.10   -0.14   -0.15   -0.16   -0.19   -0.28   -0.38   -0.41   -0.29    0.01    0.41    0.73    0.84    0.73    0.71    1.44
+   360.0    0.00    0.01   -0.03   -0.09   -0.12   -0.12   -0.13   -0.17   -0.26   -0.38   -0.42   -0.31   -0.01    0.40    0.76    0.90    0.82    0.78    1.42
+   G02                                                      END OF FREQUENCY    
+   R01                                                      START OF FREQUENCY  
+     -1.03      1.35     58.32                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.02   -0.09   -0.22   -0.40   -0.62   -0.82   -0.98   -1.07   -1.07   -1.01   -0.91   -0.80   -0.69   -0.49   -0.16    0.34    1.05    1.87
+     0.0    0.00   -0.10   -0.27   -0.48   -0.73   -1.00   -1.26   -1.45   -1.53   -1.47   -1.29   -1.02   -0.72   -0.45   -0.24   -0.04    0.31    0.92    1.84
+     5.0    0.00   -0.10   -0.27   -0.47   -0.73   -0.99   -1.25   -1.44   -1.54   -1.50   -1.33   -1.06   -0.76   -0.49   -0.28   -0.06    0.29    0.91    1.85
+    10.0    0.00   -0.11   -0.27   -0.47   -0.72   -0.97   -1.24   -1.44   -1.54   -1.53   -1.37   -1.12   -0.82   -0.56   -0.33   -0.10    0.27    0.90    1.83
+    15.0    0.00   -0.10   -0.26   -0.46   -0.70   -0.96   -1.22   -1.42   -1.54   -1.54   -1.41   -1.18   -0.90   -0.63   -0.40   -0.15    0.23    0.87    1.78
+    20.0    0.00   -0.10   -0.26   -0.45   -0.69   -0.94   -1.20   -1.40   -1.52   -1.53   -1.43   -1.25   -0.99   -0.73   -0.50   -0.22    0.20    0.84    1.73
+    25.0    0.00   -0.09   -0.25   -0.44   -0.67   -0.91   -1.17   -1.37   -1.50   -1.53   -1.46   -1.31   -1.10   -0.87   -0.63   -0.31    0.12    0.79    1.65
+    30.0    0.00   -0.09   -0.25   -0.43   -0.66   -0.89   -1.14   -1.33   -1.46   -1.51   -1.49   -1.39   -1.23   -1.04   -0.79   -0.45    0.04    0.72    1.56
+    35.0    0.00   -0.09   -0.24   -0.41   -0.64   -0.87   -1.10   -1.29   -1.43   -1.50   -1.50   -1.45   -1.36   -1.21   -0.97   -0.61   -0.08    0.63    1.45
+    40.0    0.00   -0.09   -0.23   -0.40   -0.62   -0.85   -1.08   -1.26   -1.40   -1.48   -1.52   -1.52   -1.49   -1.38   -1.17   -0.78   -0.24    0.48    1.29
+    45.0    0.00   -0.08   -0.22   -0.40   -0.62   -0.84   -1.07   -1.24   -1.37   -1.46   -1.54   -1.59   -1.61   -1.56   -1.36   -0.97   -0.40    0.32    1.10
+    50.0    0.00   -0.08   -0.21   -0.38   -0.60   -0.83   -1.04   -1.22   -1.35   -1.45   -1.54   -1.64   -1.72   -1.71   -1.54   -1.15   -0.58    0.12    0.84
+    55.0    0.00   -0.07   -0.20   -0.37   -0.59   -0.82   -1.04   -1.20   -1.33   -1.43   -1.55   -1.68   -1.80   -1.83   -1.67   -1.31   -0.76   -0.11    0.56
+    60.0    0.00   -0.06   -0.19   -0.36   -0.58   -0.81   -1.03   -1.19   -1.32   -1.42   -1.55   -1.70   -1.85   -1.90   -1.79   -1.44   -0.92   -0.34    0.24
+    65.0    0.00   -0.06   -0.18   -0.35   -0.56   -0.80   -1.02   -1.19   -1.30   -1.40   -1.53   -1.70   -1.87   -1.94   -1.83   -1.52   -1.07   -0.57   -0.09
+    70.0    0.00   -0.05   -0.17   -0.33   -0.56   -0.79   -1.01   -1.17   -1.29   -1.38   -1.52   -1.69   -1.84   -1.93   -1.84   -1.55   -1.17   -0.78   -0.39
+    75.0    0.00   -0.05   -0.16   -0.32   -0.54   -0.77   -0.99   -1.16   -1.27   -1.36   -1.48   -1.65   -1.81   -1.87   -1.78   -1.54   -1.20   -0.93   -0.65
+    80.0    0.00   -0.04   -0.15   -0.30   -0.52   -0.75   -0.96   -1.13   -1.24   -1.33   -1.45   -1.60   -1.73   -1.78   -1.67   -1.46   -1.20   -1.01   -0.83
+    85.0    0.00   -0.03   -0.13   -0.28   -0.50   -0.72   -0.93   -1.09   -1.21   -1.30   -1.40   -1.53   -1.64   -1.66   -1.55   -1.34   -1.12   -1.01   -0.89
+    90.0    0.00   -0.03   -0.12   -0.26   -0.45   -0.68   -0.89   -1.04   -1.15   -1.23   -1.33   -1.45   -1.53   -1.52   -1.40   -1.17   -0.98   -0.91   -0.80
+    95.0    0.00   -0.02   -0.10   -0.24   -0.43   -0.64   -0.83   -0.99   -1.10   -1.18   -1.27   -1.36   -1.42   -1.39   -1.22   -0.99   -0.80   -0.72   -0.57
+   100.0    0.00   -0.02   -0.09   -0.21   -0.39   -0.58   -0.78   -0.92   -1.03   -1.12   -1.21   -1.28   -1.31   -1.24   -1.05   -0.80   -0.58   -0.45   -0.21
+   105.0    0.00   -0.04   -0.07   -0.19   -0.35   -0.53   -0.70   -0.85   -0.97   -1.06   -1.14   -1.20   -1.20   -1.10   -0.89   -0.61   -0.34   -0.12    0.25
+   110.0    0.00   -0.04   -0.07   -0.17   -0.32   -0.48   -0.65   -0.79   -0.89   -0.98   -1.06   -1.11   -1.10   -0.98   -0.75   -0.44   -0.10    0.25    0.80
+   115.0    0.00   -0.04   -0.05   -0.15   -0.28   -0.43   -0.60   -0.73   -0.83   -0.91   -0.98   -1.01   -0.99   -0.87   -0.63   -0.30    0.11    0.61    1.37
+   120.0    0.00    0.01   -0.02   -0.12   -0.25   -0.40   -0.54   -0.67   -0.77   -0.85   -0.90   -0.92   -0.89   -0.76   -0.53   -0.19    0.30    0.94    1.91
+   125.0    0.00    0.02   -0.02   -0.10   -0.22   -0.35   -0.50   -0.63   -0.72   -0.79   -0.83   -0.83   -0.79   -0.67   -0.46   -0.11    0.42    1.20    2.37
+   130.0    0.00    0.02   -0.01   -0.09   -0.19   -0.31   -0.45   -0.59   -0.69   -0.73   -0.75   -0.73   -0.67   -0.59   -0.40   -0.06    0.50    1.39    2.70
+   135.0    0.00    0.03    0.01   -0.05   -0.16   -0.29   -0.43   -0.56   -0.65   -0.69   -0.67   -0.63   -0.58   -0.49   -0.34   -0.04    0.53    1.49    2.90
+   140.0    0.00    0.03    0.02   -0.04   -0.14   -0.27   -0.42   -0.53   -0.63   -0.64   -0.60   -0.53   -0.47   -0.41   -0.31   -0.04    0.52    1.51    2.95
+   145.0    0.00    0.03    0.03   -0.03   -0.13   -0.26   -0.40   -0.53   -0.60   -0.59   -0.54   -0.44   -0.37   -0.33   -0.27   -0.06    0.47    1.45    2.87
+   150.0    0.00    0.04    0.03   -0.02   -0.11   -0.25   -0.39   -0.52   -0.58   -0.57   -0.47   -0.35   -0.28   -0.25   -0.22   -0.07    0.41    1.36    2.70
+   155.0    0.00    0.04    0.04   -0.01   -0.11   -0.24   -0.39   -0.52   -0.57   -0.53   -0.43   -0.29   -0.20   -0.17   -0.18   -0.07    0.35    1.25    2.48
+   160.0    0.00    0.05    0.05   -0.01   -0.10   -0.23   -0.38   -0.51   -0.56   -0.51   -0.38   -0.23   -0.12   -0.11   -0.13   -0.05    0.34    1.15    2.24
+   165.0    0.00    0.04    0.05    0.02   -0.10   -0.23   -0.38   -0.50   -0.55   -0.49   -0.35   -0.19   -0.07   -0.06   -0.08   -0.01    0.35    1.09    2.07
+   170.0    0.00    0.05    0.05    0.01   -0.09   -0.22   -0.37   -0.49   -0.53   -0.48   -0.34   -0.16   -0.04   -0.01   -0.01    0.06    0.40    1.09    1.97
+   175.0    0.00    0.05    0.06    0.01   -0.09   -0.20   -0.36   -0.47   -0.53   -0.47   -0.34   -0.16   -0.02    0.03    0.07    0.16    0.50    1.17    1.96
+   180.0    0.00    0.05    0.06    0.01   -0.07   -0.20   -0.35   -0.46   -0.51   -0.47   -0.35   -0.17   -0.01    0.09    0.14    0.27    0.64    1.29    2.07
+   185.0    0.00    0.05    0.06    0.01   -0.07   -0.19   -0.33   -0.45   -0.52   -0.48   -0.36   -0.18   -0.02    0.12    0.22    0.40    0.80    1.49    2.26
+   190.0    0.00    0.05    0.06    0.02   -0.06   -0.20   -0.34   -0.45   -0.51   -0.49   -0.36   -0.20   -0.03    0.15    0.30    0.54    1.00    1.70    2.53
+   195.0    0.00    0.05    0.06    0.03   -0.07   -0.19   -0.33   -0.45   -0.52   -0.50   -0.38   -0.21   -0.02    0.18    0.37    0.68    1.16    1.92    2.83
+   200.0    0.00    0.05    0.05    0.02   -0.07   -0.20   -0.34   -0.45   -0.52   -0.50   -0.38   -0.22   -0.01    0.21    0.46    0.79    1.33    2.12    3.09
+   205.0    0.00    0.05    0.06    0.02   -0.07   -0.20   -0.34   -0.46   -0.52   -0.49   -0.39   -0.21    0.46    0.23    0.51    0.87    1.44    2.28    3.32
+   210.0    0.00    0.04    0.06    0.01   -0.08   -0.21   -0.35   -0.47   -0.53   -0.49   -0.38   -0.21    0.02    0.25    0.53    0.93    1.51    2.36    3.46
+   215.0    0.00    0.05    0.06    0.15   -0.10   -0.23   -0.37   -0.49   -0.53   -0.49   -0.36   -0.18    0.03    0.26    0.53    0.93    1.52    2.38    3.49
+   220.0    0.00    0.04    0.05    0.16   -0.11   -0.25   -0.39   -0.50   -0.54   -0.48   -0.34   -0.16    0.02    0.24    0.49    0.87    1.47    2.33    3.43
+   225.0    0.00    0.04    0.05   -0.02   -0.13   -0.28   -0.43   -0.53   -0.55   -0.48   -0.34   -0.16    0.02    0.19    0.42    0.79    1.37    2.21    3.28
+   230.0    0.00    0.03    0.03   -0.03   -0.15   -0.30   -0.46   -0.55   -0.57   -0.49   -0.33   -0.18   -0.02    0.11    0.30    0.65    1.22    2.05    3.06
+   235.0    0.00    0.03    0.02   -0.04   -0.17   -0.33   -0.49   -0.60   -0.59   -0.51   -0.35   -0.19   -0.10    0.67    0.15    0.48    1.06    1.87    2.81
+   240.0    0.00    0.03    0.01   -0.06   -0.20   -0.37   -0.53   -0.64   -0.63   -0.54   -0.39   -0.26   -0.19   -0.14   -0.02    0.29    0.87    1.69    2.58
+   245.0    0.00    0.02    0.12   -0.08   -0.22   -0.41   -0.58   -0.69   -0.68   -0.60   -0.45   -0.34   -0.31   -0.32   -0.23    0.09    0.69    1.53    2.37
+   250.0    0.00    0.01   -0.01   -0.10   -0.25   -0.45   -0.63   -0.75   -0.76   -0.66   -0.54   -0.46   -0.47   -0.50   -0.42   -0.11    0.54    1.40    2.21
+   255.0    0.00    0.05   -0.03   -0.12   -0.28   -0.49   -0.69   -0.82   -0.84   -0.76   -0.64   -0.59   -0.62   -0.68   -0.62   -0.27    0.41    1.31    2.11
+   260.0    0.00    0.05   -0.03   -0.15   -0.32   -0.53   -0.75   -0.89   -0.93   -0.87   -0.77   -0.73   -0.78   -0.86   -0.78   -0.40    0.32    1.26    2.07
+   265.0    0.00   -0.01   -0.05   -0.17   -0.35   -0.58   -0.82   -0.99   -1.03   -0.99   -0.91   -0.89   -0.93   -0.99   -0.91   -0.50    0.28    1.26    2.06
+   270.0    0.00   -0.01   -0.06   -0.19   -0.38   -0.63   -0.89   -1.06   -1.14   -1.11   -1.05   -1.02   -1.06   -1.10   -0.98   -0.55    0.26    1.27    2.09
+   275.0    0.00   -0.02   -0.08   -0.21   -0.42   -0.68   -0.94   -1.14   -1.24   -1.24   -1.17   -1.15   -1.16   -1.17   -1.01   -0.55    0.29    1.31    2.13
+   280.0    0.00   -0.03   -0.10   -0.24   -0.46   -0.72   -1.00   -1.22   -1.32   -1.34   -1.29   -1.23   -1.22   -1.19   -0.98   -0.50    0.33    1.32    2.14
+   285.0    0.00   -0.03   -0.12   -0.26   -0.49   -0.76   -1.05   -1.28   -1.41   -1.42   -1.37   -1.30   -1.24   -1.15   -0.92   -0.41    0.38    1.35    2.13
+   290.0    0.00   -0.04   -0.13   -0.29   -0.52   -0.79   -1.09   -1.33   -1.47   -1.49   -1.42   -1.33   -1.23   -1.09   -0.81   -0.30    0.45    1.34    2.09
+   295.0    0.00   -0.05   -0.15   -0.31   -0.54   -0.83   -1.12   -1.37   -1.51   -1.53   -1.45   -1.32   -1.18   -0.99   -0.69   -0.21    0.51    1.32    2.01
+   300.0    0.00   -0.06   -0.16   -0.34   -0.58   -0.86   -1.14   -1.38   -1.52   -1.54   -1.45   -1.30   -1.10   -0.88   -0.57   -0.10    0.55    1.29    1.90
+   305.0    0.00   -0.06   -0.18   -0.36   -0.60   -0.88   -1.17   -1.40   -1.52   -1.52   -1.42   -1.24   -1.02   -0.76   -0.44    0.01    0.58    1.23    1.79
+   310.0    0.00   -0.07   -0.20   -0.38   -0.62   -0.91   -1.18   -1.39   -1.50   -1.49   -1.38   -1.18   -0.93   -0.66   -0.33    0.08    0.59    1.18    1.68
+   315.0    0.00   -0.07   -0.21   -0.40   -0.65   -0.92   -1.18   -1.39   -1.49   -1.46   -1.32   -1.11   -0.86   -0.57   -0.25    0.12    0.58    1.11    1.58
+   320.0    0.00   -0.08   -0.22   -0.41   -0.66   -0.94   -1.18   -1.37   -1.46   -1.42   -1.27   -1.05   -0.78   -0.50   -0.20    0.14    0.57    1.07    1.54
+   325.0    0.00   -0.08   -0.23   -0.44   -0.69   -0.95   -1.19   -1.37   -1.44   -1.38   -1.22   -1.00   -0.73   -0.46   -0.18    0.14    0.53    1.02    1.52
+   330.0    0.00   -0.09   -0.24   -0.45   -0.70   -0.96   -1.21   -1.36   -1.42   -1.35   -1.18   -0.95   -0.69   -0.43   -0.17    0.12    0.49    0.99    1.54
+   335.0    0.00   -0.09   -0.25   -0.46   -0.71   -0.99   -1.22   -1.37   -1.42   -1.36   -1.17   -0.93   -0.67   -0.42   -0.18    0.09    0.45    0.97    1.59
+   340.0    0.00   -0.10   -0.25   -0.47   -0.72   -0.99   -1.23   -1.38   -1.43   -1.36   -1.17   -0.92   -0.66   -0.41   -0.18    0.06    0.41    0.95    1.65
+   345.0    0.00   -0.10   -0.25   -0.47   -0.73   -1.00   -1.23   -1.40   -1.44   -1.37   -1.19   -0.93   -0.66   -0.41   -0.20    0.02    0.37    0.94    1.72
+   350.0    0.00   -0.10   -0.26   -0.48   -0.73   -1.01   -1.24   -1.42   -1.48   -1.41   -1.22   -0.96   -0.66   -0.42   -0.22   -0.01    0.34    0.94    1.78
+   355.0    0.00   -0.11   -0.26   -0.48   -0.74   -1.00   -1.26   -1.43   -1.50   -1.44   -1.25   -0.97   -0.68   -0.43   -0.23   -0.03    0.33    0.93    1.82
+   360.0    0.00   -0.10   -0.27   -0.48   -0.73   -1.00   -1.26   -1.45   -1.53   -1.47   -1.29   -1.02   -0.72   -0.45   -0.24   -0.04    0.31    0.92    1.84
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+     -0.20     -2.38     55.54                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.03   -0.11   -0.21   -0.32   -0.45   -0.57   -0.70   -0.77   -0.73   -0.52   -0.14    0.34    0.75    0.94    0.90    0.78    0.97    1.92
+     0.0    0.00    0.04    0.03   -0.01   -0.05   -0.10   -0.16   -0.23   -0.31   -0.39   -0.36   -0.18    0.17    0.66    1.16    1.56    1.79    2.02    2.63
+     5.0    0.00    0.05    0.04    0.02   -0.02   -0.07   -0.14   -0.23   -0.32   -0.39   -0.38   -0.20    0.14    0.60    1.09    1.47    1.72    2.00    2.62
+    10.0    0.00    0.04    0.06    0.05    0.01   -0.04   -0.12   -0.24   -0.34   -0.40   -0.38   -0.21    0.10    0.53    0.97    1.33    1.59    1.89    2.53
+    15.0    0.00    0.04    0.06    0.07    0.04   -0.02   -0.11   -0.23   -0.35   -0.42   -0.39   -0.22    0.08    0.47    0.85    1.15    1.40    1.71    2.39
+    20.0    0.00    0.05    0.08    0.08    0.06    0.07   -0.10   -0.23   -0.35   -0.42   -0.39   -0.22    0.07    0.42    0.74    0.99    1.19    1.51    2.21
+    25.0    0.00    0.05    0.09    0.09    0.07    0.01   -0.10   -0.24   -0.37   -0.43   -0.38   -0.21    0.08    0.39    0.66    0.85    1.01    1.32    2.05
+    30.0    0.00    0.06    0.09    0.09    0.09    0.02   -0.10   -0.25   -0.39   -0.43   -0.38   -0.19    0.09    0.38    0.61    0.75    0.87    1.17    1.92
+    35.0    0.00    0.06    0.09    0.10    0.07    0.01   -0.11   -0.26   -0.39   -0.45   -0.38   -0.18    0.12    0.40    0.61    0.72    0.80    1.09    1.85
+    40.0    0.00    0.05    0.08    0.10    0.07    0.13   -0.14   -0.29   -0.42   -0.48   -0.39   -0.15    0.15    0.45    0.65    0.74    0.82    1.11    1.85
+    45.0    0.00    0.05    0.07    0.08    0.05   -0.04   -0.17   -0.33   -0.48   -0.51   -0.41   -0.16    0.20    0.51    0.73    0.82    0.90    1.20    1.95
+    50.0    0.00    0.04    0.06    0.06    0.01   -0.07   -0.22   -0.40   -0.52   -0.56   -0.44   -0.16    0.21    0.57    0.82    0.93    1.04    1.37    2.12
+    55.0    0.00    0.03    0.04    0.04   -0.02   -0.14   -0.29   -0.45   -0.59   -0.61   -0.48   -0.16    0.23    0.62    0.90    1.06    1.19    1.56    2.35
+    60.0    0.00    0.03    0.03    0.20   -0.08   -0.19   -0.37   -0.54   -0.67   -0.68   -0.52   -0.20    0.23    0.65    0.96    1.15    1.34    1.75    2.61
+    65.0    0.00    0.02    0.02   -0.04   -0.13   -0.27   -0.45   -0.62   -0.75   -0.76   -0.59   -0.23    0.21    0.66    0.98    1.20    1.42    1.90    2.86
+    70.0    0.00    0.02    0.15   -0.07   -0.20   -0.34   -0.54   -0.72   -0.84   -0.83   -0.65   -0.29    0.18    0.62    0.96    1.18    1.43    1.99    3.06
+    75.0    0.00    0.01   -0.02   -0.12   -0.25   -0.42   -0.62   -0.81   -0.93   -0.92   -0.71   -0.34    0.13    0.58    0.89    1.09    1.35    1.97    3.18
+    80.0    0.00    0.01   -0.05   -0.15   -0.31   -0.50   -0.71   -0.90   -1.01   -0.98   -0.76   -0.39    0.09    0.49    0.78    0.94    1.18    1.86    3.19
+    85.0    0.00    0.07   -0.06   -0.19   -0.36   -0.56   -0.78   -0.96   -1.07   -1.03   -0.81   -0.42    0.03    0.41    0.63    0.74    0.96    1.65    3.09
+    90.0    0.00    0.07   -0.08   -0.22   -0.40   -0.62   -0.84   -1.01   -1.11   -1.07   -0.84   -0.45   -0.02    0.33    0.49    0.52    0.68    1.36    2.87
+    95.0    0.00   -0.01   -0.10   -0.25   -0.44   -0.65   -0.86   -1.05   -1.14   -1.09   -0.86   -0.47   -0.04    0.27    0.37    0.32    0.39    1.04    2.57
+   100.0    0.00   -0.01   -0.11   -0.27   -0.46   -0.66   -0.87   -1.06   -1.16   -1.11   -0.86   -0.48   -0.06    0.23    0.28    0.15    0.14    0.70    2.20
+   105.0    0.00   -0.03   -0.13   -0.29   -0.47   -0.67   -0.88   -1.05   -1.15   -1.10   -0.87   -0.47   -0.05    0.24    0.25    0.04   -0.06    0.41    1.83
+   110.0    0.00   -0.03   -0.14   -0.29   -0.48   -0.66   -0.86   -1.02   -1.13   -1.10   -0.86   -0.47   -0.03    0.27    0.27    0.03   -0.16    0.20    1.51
+   115.0    0.00   -0.04   -0.15   -0.30   -0.47   -0.64   -0.81   -0.99   -1.10   -1.08   -0.86   -0.46    0.01    0.34    0.36    0.10   -0.16    0.08    1.26
+   120.0    0.00   -0.04   -0.15   -0.30   -0.45   -0.61   -0.77   -0.93   -1.07   -1.07   -0.86   -0.44    0.06    0.43    0.51    0.25   -0.06    0.08    1.12
+   125.0    0.00   -0.05   -0.16   -0.30   -0.44   -0.57   -0.72   -0.90   -1.04   -1.05   -0.86   -0.43    0.11    0.55    0.68    0.46    0.13    0.18    1.12
+   130.0    0.00   -0.06   -0.16   -0.29   -0.41   -0.52   -0.67   -0.84   -1.01   -1.04   -0.86   -0.42    0.16    0.68    0.87    0.70    0.38    0.39    1.24
+   135.0    0.00   -0.06   -0.16   -0.28   -0.38   -0.48   -0.62   -0.80   -0.97   -1.03   -0.85   -0.41    0.22    0.79    1.07    0.95    0.66    0.65    1.47
+   140.0    0.00   -0.05   -0.16   -0.28   -0.36   -0.45   -0.58   -0.76   -0.95   -1.02   -0.85   -0.39    0.27    0.89    1.24    1.19    0.94    0.96    1.79
+   145.0    0.00   -0.06   -0.17   -0.26   -0.34   -0.42   -0.55   -0.73   -0.92   -1.01   -0.83   -0.37    0.32    0.99    1.39    1.39    1.19    1.25    2.15
+   150.0    0.00   -0.06   -0.16   -0.26   -0.32   -0.39   -0.51   -0.70   -0.89   -0.97   -0.81   -0.32    0.38    1.07    1.49    1.55    1.38    1.51    2.50
+   155.0    0.00   -0.07   -0.17   -0.25   -0.31   -0.37   -0.49   -0.67   -0.86   -0.94   -0.76   -0.27    0.43    1.14    1.58    1.65    1.53    1.71    2.79
+   160.0    0.00   -0.07   -0.16   -0.25   -0.30   -0.36   -0.48   -0.65   -0.81   -0.87   -0.68   -0.20    0.50    1.19    1.63    1.71    1.62    1.84    3.01
+   165.0    0.00   -0.07   -0.15   -0.24   -0.29   -0.36   -0.46   -0.62   -0.77   -0.80   -0.59   -0.10    0.57    1.23    1.66    1.74    1.65    1.88    3.12
+   170.0    0.00   -0.07   -0.16   -0.23   -0.29   -0.36   -0.46   -0.59   -0.71   -0.71   -0.49    0.34    0.65    1.29    1.67    1.74    1.65    1.89    3.12
+   175.0    0.00   -0.07   -0.16   -0.23   -0.31   -0.37   -0.45   -0.56   -0.65   -0.61   -0.37    0.11    0.74    1.34    1.69    1.74    1.62    1.82    3.02
+   180.0    0.00   -0.07   -0.16   -0.24   -0.31   -0.37   -0.46   -0.54   -0.59   -0.51   -0.26    0.22    0.82    1.39    1.72    1.74    1.60    1.74    2.86
+   185.0    0.00   -0.07   -0.16   -0.24   -0.33   -0.39   -0.46   -0.52   -0.53   -0.43   -0.15    0.32    0.90    1.43    1.75    1.75    1.57    1.64    2.64
+   190.0    0.00   -0.08   -0.17   -0.26   -0.33   -0.40   -0.47   -0.51   -0.49   -0.36   -0.06    0.40    0.97    1.48    1.77    1.76    1.56    1.54    2.41
+   195.0    0.00   -0.07   -0.17   -0.26   -0.36   -0.43   -0.49   -0.51   -0.46   -0.31   -0.01    0.46    1.00    1.50    1.79    1.77    1.55    1.46    2.19
+   200.0    0.00   -0.07   -0.17   -0.28   -0.38   -0.46   -0.52   -0.53   -0.47   -0.30    0.02    0.47    1.02    1.50    1.79    1.78    1.54    1.39    2.01
+   205.0    0.00   -0.08   -0.17   -0.29   -0.40   -0.49   -0.56   -0.57   -0.50   -0.32    0.08    0.45    0.98    1.48    1.76    1.75    1.51    1.33    1.89
+   210.0    0.00   -0.07   -0.18   -0.30   -0.42   -0.53   -0.62   -0.63   -0.57   -0.38   -0.06    0.40    0.92    1.41    1.70    1.70    1.46    1.28    1.82
+   215.0    0.00   -0.08   -0.18   -0.32   -0.46   -0.58   -0.67   -0.71   -0.66   -0.48   -0.15    0.31    0.83    1.32    1.60    1.61    1.37    1.22    1.78
+   220.0    0.00   -0.08   -0.19   -0.33   -0.48   -0.63   -0.76   -0.80   -0.77   -0.60   -0.28    0.19    0.72    1.20    1.48    1.46    1.24    1.15    1.80
+   225.0    0.00   -0.08   -0.19   -0.34   -0.51   -0.69   -0.83   -0.92   -0.90   -0.73   -0.42    0.06    0.60    1.07    1.31    1.29    1.08    1.06    1.81
+   230.0    0.00   -0.08   -0.19   -0.35   -0.54   -0.74   -0.92   -1.02   -1.04   -0.88   -0.55   -0.08    0.46    0.92    1.15    1.09    0.90    0.94    1.81
+   235.0    0.00   -0.08   -0.20   -0.37   -0.57   -0.79   -0.99   -1.14   -1.17   -1.03   -0.69   -0.19    0.35    0.79    0.98    0.89    0.70    0.80    1.77
+   240.0    0.00   -0.07   -0.20   -0.38   -0.59   -0.84   -1.07   -1.25   -1.29   -1.15   -0.81   -0.30    0.24    0.66    0.82    0.69    0.49    0.65    1.69
+   245.0    0.00   -0.07   -0.20   -0.38   -0.62   -0.88   -1.13   -1.33   -1.40   -1.27   -0.91   -0.39    0.16    0.57    0.68    0.51    0.29    0.48    1.56
+   250.0    0.00   -0.07   -0.21   -0.39   -0.64   -0.91   -1.18   -1.39   -1.49   -1.35   -0.99   -0.44    0.12    0.50    0.57    0.37    0.12    0.32    1.37
+   255.0    0.00   -0.08   -0.21   -0.40   -0.65   -0.93   -1.21   -1.44   -1.53   -1.40   -1.02   -0.47    0.09    0.46    0.50    0.25   -0.03    0.15    1.16
+   260.0    0.00   -0.07   -0.21   -0.40   -0.65   -0.93   -1.21   -1.46   -1.55   -1.42   -1.03   -0.47    0.09    0.45    0.46    0.16   -0.15   -0.01    0.91
+   265.0    0.00   -0.07   -0.21   -0.40   -0.65   -0.93   -1.22   -1.45   -1.53   -1.39   -1.01   -0.44    0.12    0.46    0.45    0.11   -0.24   -0.17    0.67
+   270.0    0.00   -0.07   -0.21   -0.40   -0.64   -0.91   -1.19   -1.41   -1.49   -1.36   -0.97   -0.41    0.14    0.48    0.43    0.06   -0.33   -0.30    0.43
+   275.0    0.00   -0.07   -0.21   -0.39   -0.63   -0.88   -1.14   -1.35   -1.42   -1.29   -0.91   -0.37    0.18    0.49    0.42    0.02   -0.40   -0.43    0.24
+   280.0    0.00   -0.06   -0.20   -0.38   -0.62   -0.85   -1.09   -1.27   -1.33   -1.20   -0.84   -0.31    0.21    0.51    0.42   -0.01   -0.49   -0.55    0.08
+   285.0    0.00   -0.05   -0.20   -0.38   -0.58   -0.80   -1.01   -1.17   -1.23   -1.10   -0.76   -0.26    0.23    0.51    0.39   -0.07   -0.57   -0.66   -0.02
+   290.0    0.00   -0.05   -0.19   -0.37   -0.56   -0.76   -0.94   -1.07   -1.12   -1.00   -0.68   -0.21    0.25    0.49    0.36   -0.13   -0.66   -0.75   -0.06
+   295.0    0.00   -0.05   -0.18   -0.35   -0.53   -0.70   -0.85   -0.97   -1.00   -0.89   -0.61   -0.17    0.25    0.48    0.33   -0.18   -0.73   -0.82   -0.06
+   300.0    0.00   -0.04   -0.16   -0.33   -0.50   -0.64   -0.76   -0.85   -0.87   -0.78   -0.53   -0.14    0.26    0.46    0.29   -0.21   -0.76   -0.86    0.03
+   305.0    0.00   -0.04   -0.16   -0.31   -0.46   -0.58   -0.68   -0.74   -0.76   -0.69   -0.46   -0.11    0.26    0.45    0.29   -0.21   -0.76   -0.82    0.15
+   310.0    0.00   -0.04   -0.14   -0.29   -0.43   -0.53   -0.59   -0.64   -0.66   -0.59   -0.40   -0.09    0.25    0.44    0.31   -0.16   -0.69   -0.73    0.32
+   315.0    0.00   -0.03   -0.13   -0.26   -0.40   -0.47   -0.52   -0.55   -0.56   -0.52   -0.35   -0.07    0.25    0.45    0.36   -0.06   -0.54   -0.57    0.55
+   320.0    0.00   -0.02   -0.11   -0.24   -0.36   -0.42   -0.46   -0.47   -0.48   -0.45   -0.33   -0.06    0.25    0.49    0.45    0.11   -0.33   -0.32    0.81
+   325.0    0.00   -0.01   -0.09   -0.21   -0.32   -0.37   -0.39   -0.41   -0.41   -0.40   -0.29   -0.05    0.26    0.54    0.58    0.32   -0.03   -0.01    1.10
+   330.0    0.00   -0.01   -0.08   -0.19   -0.28   -0.33   -0.34   -0.34   -0.36   -0.36   -0.28   -0.07    0.27    0.59    0.72    0.59    0.32    0.36    1.40
+   335.0    0.00   -0.01   -0.07   -0.16   -0.25   -0.29   -0.30   -0.31   -0.33   -0.34   -0.28   -0.07    0.27    0.64    0.87    0.86    0.68    0.75    1.71
+   340.0    0.00    0.01   -0.04   -0.13   -0.20   -0.25   -0.26   -0.28   -0.31   -0.33   -0.28   -0.09    0.26    0.69    1.01    1.12    1.04    1.13    1.99
+   345.0    0.00    0.02   -0.03   -0.10   -0.16   -0.21   -0.23   -0.26   -0.30   -0.34   -0.30   -0.12    0.25    0.72    1.12    1.34    1.36    1.48    2.25
+   350.0    0.00    0.02   -0.01   -0.07   -0.13   -0.18   -0.21   -0.24   -0.30   -0.35   -0.32   -0.13    0.23    0.72    1.19    1.49    1.61    1.76    2.45
+   355.0    0.00    0.03    0.04   -0.04   -0.09   -0.14   -0.18   -0.23   -0.30   -0.37   -0.34   -0.16    0.20    0.70    1.19    1.56    1.75    1.94    2.58
+   360.0    0.00    0.04    0.03   -0.01   -0.05   -0.10   -0.16   -0.23   -0.31   -0.39   -0.36   -0.18    0.17    0.66    1.16    1.56    1.79    2.02    2.63
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+LEIAT202+GP     NONE                                        TYPE / SERIAL NO    
+CONVERTED           TUM                      1    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+CONVERTED FROM igs_01.pcv                                   COMMENT             
+   G01                                                      START OF FREQUENCY  
+      5.38      1.53     31.05                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.23   -0.50   -0.23    0.18   -0.22   -1.36   -2.19   -1.97   -1.51   -1.46   -1.79   -1.63   -0.85    0.32    2.39    6.37
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      3.32     -5.79     34.15                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.33   -1.11   -1.88   -2.39   -2.78   -3.29   -4.07   -4.81   -5.21   -5.05   -4.16   -3.13   -2.33   -1.93   -1.31    0.25
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+LEIAT202-GP     NONE                                        TYPE / SERIAL NO    
+COPIED              Geo++ GmbH               2    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+COPIED FROM LEIAT302-GP     NONE                            COMMENT             
+ATTENTION! COPIED WITHOUT VERIFICATION BY CALIBRATION!      COMMENT             
+   G01                                                      START OF FREQUENCY  
+     -0.02     -0.35     40.39                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.10   -0.39   -0.80   -1.25   -1.61   -1.78   -1.71   -1.43   -1.03   -0.68   -0.49   -0.47   -0.51   -0.42   -0.06    0.55    1.16    1.37
+     0.0    0.00   -0.26   -0.60   -0.92   -1.12   -1.16   -1.03   -0.79   -0.48   -0.18    0.08    0.32    0.60    1.03    1.69    2.56    3.53    4.40    4.95
+     5.0    0.00   -0.26   -0.61   -0.93   -1.14   -1.18   -1.04   -0.77   -0.44   -0.13    0.12    0.32    0.55    0.91    1.50    2.32    3.27    4.12    4.66
+    10.0    0.00   -0.25   -0.61   -0.95   -1.17   -1.21   -1.06   -0.78   -0.43   -0.11    0.13    0.29    0.46    0.75    1.27    2.05    2.97    3.81    4.34
+    15.0    0.00   -0.25   -0.61   -0.96   -1.20   -1.25   -1.11   -0.82   -0.46   -0.13    0.10    0.23    0.34    0.56    1.01    1.74    2.64    3.49    4.00
+    20.0    0.00   -0.25   -0.61   -0.98   -1.24   -1.32   -1.19   -0.90   -0.53   -0.20    0.02    0.12    0.17    0.32    0.70    1.39    2.29    3.14    3.65
+    25.0    0.00   -0.24   -0.61   -0.99   -1.28   -1.39   -1.29   -1.01   -0.64   -0.31   -0.10   -0.04   -0.05    0.02    0.35    1.00    1.89    2.77    3.28
+    30.0    0.00   -0.23   -0.60   -1.01   -1.33   -1.48   -1.41   -1.15   -0.80   -0.47   -0.29   -0.26   -0.33   -0.33   -0.06    0.55    1.44    2.34    2.88
+    35.0    0.00   -0.23   -0.60   -1.02   -1.37   -1.57   -1.54   -1.32   -0.99   -0.68   -0.52   -0.54   -0.67   -0.73   -0.53    0.04    0.92    1.84    2.40
+    40.0    0.00   -0.22   -0.59   -1.03   -1.42   -1.66   -1.68   -1.50   -1.20   -0.93   -0.80   -0.87   -1.06   -1.19   -1.06   -0.54    0.32    1.25    1.84
+    45.0    0.00   -0.21   -0.58   -1.03   -1.46   -1.74   -1.82   -1.68   -1.43   -1.19   -1.11   -1.23   -1.48   -1.69   -1.63   -1.17   -0.36    0.55    1.16
+    50.0    0.00   -0.19   -0.57   -1.03   -1.49   -1.82   -1.95   -1.86   -1.65   -1.46   -1.42   -1.60   -1.92   -2.21   -2.23   -1.84   -1.09   -0.23    0.37
+    55.0    0.00   -0.18   -0.55   -1.03   -1.51   -1.88   -2.06   -2.02   -1.86   -1.71   -1.72   -1.96   -2.36   -2.72   -2.82   -2.53   -1.87   -1.09   -0.53
+    60.0    0.00   -0.17   -0.53   -1.02   -1.52   -1.93   -2.15   -2.15   -2.02   -1.92   -1.99   -2.29   -2.75   -3.19   -3.38   -3.19   -2.64   -1.97   -1.49
+    65.0    0.00   -0.16   -0.51   -1.00   -1.53   -1.96   -2.20   -2.24   -2.14   -2.08   -2.19   -2.55   -3.08   -3.60   -3.88   -3.78   -3.36   -2.83   -2.46
+    70.0    0.00   -0.14   -0.48   -0.98   -1.51   -1.97   -2.23   -2.28   -2.21   -2.16   -2.31   -2.72   -3.32   -3.90   -4.25   -4.25   -3.96   -3.60   -3.38
+    75.0    0.00   -0.13   -0.46   -0.95   -1.49   -1.96   -2.23   -2.28   -2.21   -2.18   -2.35   -2.79   -3.44   -4.07   -4.49   -4.57   -4.40   -4.20   -4.17
+    80.0    0.00   -0.11   -0.43   -0.92   -1.46   -1.93   -2.19   -2.24   -2.15   -2.11   -2.29   -2.75   -3.42   -4.09   -4.54   -4.69   -4.62   -4.58   -4.75
+    85.0    0.00   -0.09   -0.40   -0.88   -1.43   -1.89   -2.14   -2.16   -2.04   -1.97   -2.13   -2.59   -3.27   -3.94   -4.41   -4.58   -4.59   -4.70   -5.07
+    90.0    0.00   -0.08   -0.38   -0.85   -1.39   -1.84   -2.07   -2.06   -1.90   -1.78   -1.89   -2.32   -2.97   -3.63   -4.07   -4.25   -4.30   -4.52   -5.07
+    95.0    0.00   -0.06   -0.35   -0.81   -1.35   -1.79   -2.00   -1.94   -1.72   -1.54   -1.59   -1.95   -2.55   -3.16   -3.56   -3.69   -3.75   -4.04   -4.75
+   100.0    0.00   -0.05   -0.32   -0.78   -1.31   -1.74   -1.92   -1.82   -1.54   -1.27   -1.23   -1.52   -2.03   -2.56   -2.88   -2.95   -2.97   -3.29   -4.12
+   105.0    0.00   -0.03   -0.29   -0.75   -1.27   -1.69   -1.86   -1.71   -1.36   -1.00   -0.86   -1.03   -1.44   -1.86   -2.08   -2.06   -2.01   -2.31   -3.22
+   110.0    0.00   -0.02   -0.27   -0.71   -1.24   -1.66   -1.80   -1.62   -1.19   -0.74   -0.48   -0.53   -0.81   -1.11   -1.21   -1.07   -0.93   -1.18   -2.12
+   115.0    0.00   -0.01   -0.25   -0.69   -1.21   -1.63   -1.76   -1.55   -1.06   -0.51   -0.12   -0.04   -0.18   -0.35   -0.32   -0.06    0.20    0.03   -0.88
+   120.0    0.00    0.00   -0.22   -0.66   -1.19   -1.61   -1.74   -1.50   -0.95   -0.31    0.19    0.42    0.41    0.38    0.53    0.92    1.29    1.23    0.38
+   125.0    0.00    0.02   -0.21   -0.64   -1.17   -1.60   -1.73   -1.47   -0.87   -0.15    0.46    0.81    0.94    1.03    1.30    1.80    2.29    2.36    1.60
+   130.0    0.00    0.03   -0.19   -0.62   -1.16   -1.59   -1.73   -1.45   -0.83   -0.04    0.66    1.12    1.37    1.58    1.95    2.54    3.15    3.33    2.69
+   135.0    0.00    0.04   -0.17   -0.61   -1.15   -1.59   -1.73   -1.46   -0.81    0.02    0.80    1.35    1.70    1.99    2.44    3.11    3.81    4.11    3.59
+   140.0    0.00    0.04   -0.16   -0.60   -1.14   -1.59   -1.74   -1.46   -0.81    0.05    0.88    1.49    1.90    2.26    2.76    3.49    4.26    4.66    4.27
+   145.0    0.00    0.05   -0.15   -0.58   -1.13   -1.58   -1.74   -1.48   -0.82    0.05    0.89    1.55    2.00    2.38    2.92    3.67    4.49    4.99    4.71
+   150.0    0.00    0.05   -0.14   -0.57   -1.12   -1.58   -1.74   -1.49   -0.84    0.01    0.86    1.52    1.98    2.38    2.92    3.68    4.53    5.08    4.91
+   155.0    0.00    0.06   -0.14   -0.56   -1.11   -1.56   -1.73   -1.49   -0.87   -0.04    0.79    1.43    1.88    2.26    2.78    3.54    4.39    4.99    4.89
+   160.0    0.00    0.06   -0.13   -0.56   -1.10   -1.55   -1.72   -1.50   -0.91   -0.11    0.68    1.29    1.70    2.06    2.54    3.27    4.11    4.72    4.68
+   165.0    0.00    0.06   -0.13   -0.55   -1.08   -1.53   -1.71   -1.50   -0.94   -0.19    0.55    1.11    1.48    1.79    2.23    2.91    3.71    4.32    4.33
+   170.0    0.00    0.06   -0.13   -0.55   -1.07   -1.51   -1.69   -1.50   -0.98   -0.28    0.40    0.91    1.23    1.48    1.87    2.49    3.25    3.83    3.85
+   175.0    0.00    0.06   -0.13   -0.54   -1.06   -1.50   -1.68   -1.51   -1.02   -0.37    0.25    0.70    0.97    1.16    1.48    2.03    2.73    3.28    3.30
+   180.0    0.00    0.06   -0.13   -0.54   -1.05   -1.48   -1.67   -1.52   -1.07   -0.47    0.11    0.50    0.71    0.85    1.09    1.56    2.19    2.69    2.69
+   185.0    0.00    0.06   -0.14   -0.54   -1.05   -1.47   -1.67   -1.54   -1.12   -0.56   -0.03    0.31    0.47    0.55    0.72    1.10    1.64    2.09    2.06
+   190.0    0.00    0.05   -0.14   -0.55   -1.04   -1.47   -1.67   -1.56   -1.17   -0.65   -0.16    0.14    0.25    0.26    0.35    0.64    1.10    1.48    1.43
+   195.0    0.00    0.05   -0.15   -0.55   -1.05   -1.47   -1.68   -1.58   -1.23   -0.73   -0.28    0.00    0.06    0.00    0.00    0.20    0.57    0.90    0.82
+   200.0    0.00    0.04   -0.16   -0.56   -1.05   -1.47   -1.69   -1.62   -1.28   -0.81   -0.38   -0.14   -0.12   -0.24   -0.33   -0.23    0.06    0.34    0.24
+   205.0    0.00    0.03   -0.17   -0.57   -1.06   -1.48   -1.71   -1.65   -1.33   -0.88   -0.47   -0.25   -0.28   -0.47   -0.65   -0.65   -0.43   -0.18   -0.29
+   210.0    0.00    0.02   -0.19   -0.58   -1.07   -1.49   -1.73   -1.68   -1.38   -0.94   -0.54   -0.35   -0.43   -0.70   -0.97   -1.06   -0.89   -0.64   -0.74
+   215.0    0.00    0.01   -0.20   -0.60   -1.08   -1.51   -1.75   -1.72   -1.43   -1.00   -0.62   -0.45   -0.57   -0.92   -1.28   -1.44   -1.31   -1.04   -1.10
+   220.0    0.00    0.00   -0.22   -0.61   -1.09   -1.52   -1.77   -1.76   -1.48   -1.06   -0.69   -0.54   -0.72   -1.14   -1.59   -1.81   -1.69   -1.37   -1.35
+   225.0    0.00   -0.01   -0.23   -0.63   -1.11   -1.54   -1.80   -1.80   -1.53   -1.12   -0.76   -0.64   -0.87   -1.36   -1.88   -2.15   -2.01   -1.62   -1.50
+   230.0    0.00   -0.02   -0.25   -0.65   -1.13   -1.56   -1.83   -1.84   -1.59   -1.19   -0.84   -0.75   -1.02   -1.57   -2.16   -2.46   -2.28   -1.78   -1.53
+   235.0    0.00   -0.03   -0.27   -0.67   -1.15   -1.59   -1.87   -1.89   -1.66   -1.27   -0.93   -0.86   -1.16   -1.77   -2.40   -2.71   -2.48   -1.85   -1.46
+   240.0    0.00   -0.04   -0.29   -0.69   -1.17   -1.62   -1.91   -1.96   -1.74   -1.37   -1.04   -0.98   -1.31   -1.94   -2.61   -2.91   -2.61   -1.85   -1.30
+   245.0    0.00   -0.06   -0.31   -0.71   -1.19   -1.65   -1.96   -2.03   -1.84   -1.48   -1.15   -1.09   -1.43   -2.08   -2.76   -3.04   -2.67   -1.79   -1.08
+   250.0    0.00   -0.07   -0.33   -0.73   -1.22   -1.68   -2.02   -2.11   -1.94   -1.60   -1.27   -1.20   -1.53   -2.18   -2.84   -3.10   -2.67   -1.67   -0.83
+   255.0    0.00   -0.08   -0.35   -0.75   -1.24   -1.72   -2.08   -2.20   -2.06   -1.73   -1.39   -1.30   -1.59   -2.22   -2.86   -3.09   -2.60   -1.52   -0.57
+   260.0    0.00   -0.10   -0.37   -0.78   -1.27   -1.76   -2.14   -2.29   -2.18   -1.85   -1.50   -1.37   -1.62   -2.19   -2.80   -3.00   -2.47   -1.34   -0.33
+   265.0    0.00   -0.11   -0.39   -0.80   -1.29   -1.79   -2.20   -2.38   -2.28   -1.96   -1.59   -1.42   -1.60   -2.11   -2.66   -2.82   -2.29   -1.14   -0.11
+   270.0    0.00   -0.12   -0.41   -0.82   -1.32   -1.83   -2.24   -2.45   -2.38   -2.06   -1.66   -1.42   -1.53   -1.96   -2.44   -2.58   -2.04   -0.92    0.07
+   275.0    0.00   -0.14   -0.43   -0.84   -1.33   -1.85   -2.28   -2.50   -2.44   -2.12   -1.69   -1.39   -1.41   -1.75   -2.16   -2.26   -1.73   -0.67    0.23
+   280.0    0.00   -0.15   -0.45   -0.86   -1.35   -1.86   -2.30   -2.53   -2.47   -2.14   -1.68   -1.32   -1.25   -1.49   -1.82   -1.87   -1.36   -0.39    0.39
+   285.0    0.00   -0.16   -0.46   -0.87   -1.36   -1.86   -2.29   -2.52   -2.47   -2.12   -1.63   -1.21   -1.05   -1.19   -1.42   -1.42   -0.94   -0.06    0.57
+   290.0    0.00   -0.17   -0.48   -0.89   -1.36   -1.85   -2.26   -2.48   -2.42   -2.06   -1.54   -1.07   -0.83   -0.86   -0.99   -0.93   -0.45    0.33    0.80
+   295.0    0.00   -0.18   -0.50   -0.90   -1.35   -1.82   -2.21   -2.41   -2.33   -1.96   -1.42   -0.90   -0.59   -0.52   -0.54   -0.40    0.08    0.78    1.10
+   300.0    0.00   -0.19   -0.51   -0.90   -1.34   -1.78   -2.14   -2.31   -2.21   -1.83   -1.28   -0.73   -0.35   -0.18   -0.09    0.14    0.66    1.28    1.47
+   305.0    0.00   -0.20   -0.52   -0.91   -1.32   -1.72   -2.04   -2.18   -2.06   -1.67   -1.12   -0.55   -0.13    0.14    0.35    0.69    1.25    1.84    1.94
+   310.0    0.00   -0.21   -0.54   -0.91   -1.30   -1.66   -1.93   -2.03   -1.89   -1.50   -0.96   -0.39    0.08    0.43    0.76    1.22    1.84    2.42    2.47
+   315.0    0.00   -0.22   -0.55   -0.91   -1.27   -1.59   -1.81   -1.87   -1.71   -1.33   -0.80   -0.24    0.26    0.68    1.13    1.70    2.40    3.01    3.05
+   320.0    0.00   -0.23   -0.56   -0.91   -1.24   -1.52   -1.69   -1.71   -1.53   -1.15   -0.65   -0.11    0.40    0.89    1.44    2.13    2.91    3.56    3.64
+   325.0    0.00   -0.24   -0.56   -0.91   -1.21   -1.44   -1.57   -1.54   -1.35   -0.99   -0.52    0.00    0.51    1.05    1.69    2.48    3.34    4.04    4.19
+   330.0    0.00   -0.24   -0.57   -0.90   -1.18   -1.37   -1.45   -1.39   -1.18   -0.83   -0.40    0.08    0.59    1.16    1.87    2.74    3.68    4.43    4.67
+   335.0    0.00   -0.25   -0.58   -0.90   -1.16   -1.31   -1.34   -1.24   -1.02   -0.69   -0.30    0.15    0.64    1.23    1.98    2.91    3.90    4.71    5.04
+   340.0    0.00   -0.25   -0.58   -0.90   -1.14   -1.25   -1.24   -1.11   -0.88   -0.56   -0.20    0.20    0.67    1.26    2.03    2.99    4.01    4.86    5.27
+   345.0    0.00   -0.25   -0.59   -0.90   -1.12   -1.21   -1.16   -1.00   -0.75   -0.45   -0.12    0.24    0.67    1.24    2.02    2.98    4.02    4.89    5.37
+   350.0    0.00   -0.26   -0.60   -0.91   -1.12   -1.18   -1.10   -0.91   -0.64   -0.34   -0.04    0.28    0.66    1.20    1.95    2.90    3.93    4.81    5.34
+   355.0    0.00   -0.26   -0.60   -0.91   -1.12   -1.16   -1.06   -0.83   -0.55   -0.25    0.03    0.30    0.64    1.13    1.84    2.76    3.76    4.64    5.19
+   360.0    0.00   -0.26   -0.60   -0.92   -1.12   -1.16   -1.03   -0.79   -0.48   -0.18    0.08    0.32    0.60    1.03    1.69    2.56    3.53    4.40    4.95
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -1.94      1.40     40.71                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.04   -0.14   -0.28   -0.42   -0.55   -0.66   -0.74   -0.77   -0.69   -0.46   -0.09    0.32    0.60    0.57    0.23   -0.20   -0.23    0.68
+     0.0    0.00   -0.12   -0.28   -0.44   -0.56   -0.60   -0.56   -0.44   -0.24    0.05    0.43    0.90    1.36    1.69    1.76    1.55    1.24    1.19    1.80
+     5.0    0.00   -0.12   -0.29   -0.44   -0.55   -0.57   -0.52   -0.39   -0.20    0.07    0.45    0.90    1.34    1.63    1.66    1.39    1.04    0.96    1.56
+    10.0    0.00   -0.13   -0.29   -0.44   -0.54   -0.55   -0.49   -0.37   -0.19    0.08    0.44    0.89    1.33    1.60    1.57    1.23    0.81    0.69    1.27
+    15.0    0.00   -0.13   -0.30   -0.45   -0.53   -0.54   -0.48   -0.37   -0.20    0.05    0.42    0.88    1.32    1.58    1.50    1.08    0.57    0.40    0.97
+    20.0    0.00   -0.14   -0.30   -0.45   -0.53   -0.54   -0.49   -0.39   -0.24    0.00    0.38    0.85    1.32    1.57    1.45    0.96    0.36    0.13    0.69
+    25.0    0.00   -0.14   -0.31   -0.46   -0.54   -0.55   -0.51   -0.43   -0.30   -0.07    0.31    0.82    1.31    1.57    1.43    0.87    0.19   -0.10    0.47
+    30.0    0.00   -0.14   -0.31   -0.46   -0.55   -0.56   -0.53   -0.48   -0.37   -0.16    0.23    0.76    1.28    1.57    1.41    0.81    0.07   -0.27    0.32
+    35.0    0.00   -0.14   -0.32   -0.47   -0.56   -0.58   -0.57   -0.54   -0.46   -0.26    0.12    0.67    1.22    1.54    1.40    0.77   -0.01   -0.37    0.25
+    40.0    0.00   -0.14   -0.32   -0.48   -0.57   -0.61   -0.61   -0.60   -0.55   -0.37    0.00    0.55    1.12    1.47    1.35    0.74   -0.05   -0.41    0.26
+    45.0    0.00   -0.14   -0.33   -0.49   -0.59   -0.63   -0.66   -0.67   -0.64   -0.49   -0.15    0.39    0.98    1.35    1.27    0.69   -0.07   -0.41    0.33
+    50.0    0.00   -0.14   -0.33   -0.50   -0.61   -0.66   -0.70   -0.73   -0.73   -0.62   -0.31    0.20    0.77    1.17    1.13    0.61   -0.10   -0.40    0.41
+    55.0    0.00   -0.14   -0.33   -0.51   -0.63   -0.69   -0.74   -0.78   -0.81   -0.73   -0.48   -0.02    0.52    0.92    0.93    0.47   -0.18   -0.41    0.47
+    60.0    0.00   -0.14   -0.33   -0.51   -0.64   -0.72   -0.77   -0.83   -0.88   -0.85   -0.65   -0.26    0.23    0.62    0.66    0.27   -0.31   -0.49    0.46
+    65.0    0.00   -0.14   -0.33   -0.52   -0.66   -0.75   -0.80   -0.87   -0.94   -0.95   -0.82   -0.51   -0.08    0.27    0.32   -0.01   -0.53   -0.66    0.35
+    70.0    0.00   -0.13   -0.33   -0.53   -0.68   -0.77   -0.83   -0.90   -0.99   -1.04   -0.98   -0.76   -0.41   -0.11   -0.05   -0.36   -0.83   -0.93    0.12
+    75.0    0.00   -0.13   -0.32   -0.53   -0.69   -0.79   -0.86   -0.93   -1.03   -1.12   -1.13   -0.99   -0.73   -0.48   -0.45   -0.75   -1.21   -1.30   -0.23
+    80.0    0.00   -0.12   -0.32   -0.53   -0.70   -0.81   -0.88   -0.96   -1.07   -1.19   -1.25   -1.19   -1.01   -0.84   -0.85   -1.17   -1.65   -1.77   -0.68
+    85.0    0.00   -0.12   -0.31   -0.52   -0.70   -0.82   -0.90   -0.98   -1.10   -1.24   -1.35   -1.35   -1.25   -1.15   -1.22   -1.58   -2.10   -2.28   -1.21
+    90.0    0.00   -0.11   -0.29   -0.51   -0.69   -0.82   -0.91   -1.00   -1.12   -1.28   -1.41   -1.47   -1.43   -1.39   -1.52   -1.95   -2.55   -2.79   -1.76
+    95.0    0.00   -0.10   -0.28   -0.49   -0.68   -0.82   -0.91   -1.00   -1.13   -1.29   -1.44   -1.52   -1.53   -1.55   -1.75   -2.25   -2.93   -3.26   -2.29
+   100.0    0.00   -0.09   -0.26   -0.47   -0.66   -0.80   -0.90   -0.99   -1.12   -1.28   -1.43   -1.53   -1.56   -1.62   -1.88   -2.45   -3.21   -3.63   -2.72
+   105.0    0.00   -0.08   -0.24   -0.44   -0.63   -0.77   -0.87   -0.97   -1.09   -1.24   -1.38   -1.47   -1.51   -1.60   -1.90   -2.53   -3.36   -3.86   -3.01
+   110.0    0.00   -0.07   -0.22   -0.40   -0.58   -0.72   -0.83   -0.92   -1.03   -1.16   -1.28   -1.36   -1.39   -1.49   -1.82   -2.48   -3.37   -3.92   -3.13
+   115.0    0.00   -0.06   -0.19   -0.36   -0.53   -0.66   -0.76   -0.85   -0.95   -1.06   -1.15   -1.19   -1.21   -1.30   -1.63   -2.31   -3.22   -3.80   -3.05
+   120.0    0.00   -0.05   -0.16   -0.31   -0.46   -0.58   -0.67   -0.75   -0.83   -0.91   -0.97   -0.98   -0.97   -1.04   -1.36   -2.03   -2.92   -3.50   -2.79
+   125.0    0.00   -0.03   -0.13   -0.26   -0.39   -0.49   -0.56   -0.62   -0.68   -0.74   -0.76   -0.73   -0.68   -0.72   -1.01   -1.65   -2.50   -3.04   -2.35
+   130.0    0.00   -0.02   -0.10   -0.21   -0.31   -0.39   -0.43   -0.47   -0.51   -0.53   -0.52   -0.44   -0.35   -0.36   -0.61   -1.19   -1.98   -2.47   -1.78
+   135.0    0.00   -0.01   -0.07   -0.15   -0.23   -0.27   -0.29   -0.31   -0.32   -0.31   -0.25   -0.14   -0.01    0.03   -0.17   -0.69   -1.39   -1.81   -1.13
+   140.0    0.00    0.00   -0.04   -0.10   -0.14   -0.16   -0.15   -0.13   -0.11   -0.07    0.03    0.18    0.36    0.43    0.28   -0.17   -0.78   -1.12   -0.45
+   145.0    0.00    0.01   -0.01   -0.04   -0.06   -0.04    0.00    0.05    0.10    0.18    0.31    0.51    0.72    0.84    0.73    0.35   -0.18   -0.45    0.20
+   150.0    0.00    0.02    0.02    0.01    0.02    0.07    0.14    0.22    0.30    0.41    0.58    0.82    1.07    1.23    1.17    0.85    0.39    0.18    0.80
+   155.0    0.00    0.03    0.04    0.05    0.09    0.17    0.27    0.37    0.48    0.62    0.83    1.10    1.40    1.60    1.58    1.31    0.90    0.73    1.30
+   160.0    0.00    0.04    0.06    0.09    0.15    0.25    0.37    0.50    0.63    0.79    1.03    1.35    1.68    1.93    1.95    1.72    1.36    1.19    1.68
+   165.0    0.00    0.05    0.08    0.12    0.20    0.32    0.46    0.60    0.74    0.92    1.19    1.53    1.91    2.20    2.27    2.07    1.74    1.56    1.94
+   170.0    0.00    0.06    0.09    0.14    0.23    0.36    0.51    0.66    0.81    1.00    1.28    1.66    2.07    2.41    2.52    2.36    2.04    1.83    2.08
+   175.0    0.00    0.06    0.10    0.15    0.25    0.38    0.53    0.68    0.83    1.02    1.31    1.70    2.16    2.53    2.70    2.58    2.27    2.02    2.12
+   180.0    0.00    0.07    0.11    0.16    0.25    0.38    0.52    0.66    0.80    0.98    1.27    1.67    2.15    2.57    2.79    2.71    2.42    2.12    2.09
+   185.0    0.00    0.07    0.11    0.15    0.23    0.35    0.49    0.61    0.73    0.89    1.16    1.56    2.06    2.52    2.78    2.76    2.48    2.16    1.99
+   190.0    0.00    0.07    0.11    0.14    0.21    0.31    0.42    0.52    0.61    0.74    0.98    1.38    1.88    2.37    2.68    2.71    2.47    2.12    1.84
+   195.0    0.00    0.07    0.10    0.12    0.16    0.24    0.33    0.40    0.46    0.55    0.76    1.13    1.63    2.14    2.49    2.56    2.36    2.02    1.68
+   200.0    0.00    0.07    0.09    0.09    0.11    0.15    0.21    0.24    0.27    0.32    0.50    0.83    1.32    1.84    2.21    2.32    2.17    1.86    1.50
+   205.0    0.00    0.07    0.08    0.06    0.05    0.06    0.07    0.07    0.05    0.07    0.20    0.51    0.97    1.48    1.86    1.99    1.88    1.63    1.31
+   210.0    0.00    0.07    0.07    0.02   -0.02   -0.05   -0.08   -0.13   -0.18   -0.20   -0.10    0.18    0.61    1.08    1.45    1.59    1.51    1.33    1.13
+   215.0    0.00    0.07    0.05   -0.02   -0.10   -0.17   -0.25   -0.34   -0.43   -0.48   -0.40   -0.15    0.25    0.68    1.00    1.12    1.07    0.99    0.96
+   220.0    0.00    0.06    0.04   -0.06   -0.17   -0.29   -0.42   -0.55   -0.68   -0.75   -0.69   -0.46   -0.09    0.29    0.55    0.61    0.57    0.60    0.80
+   225.0    0.00    0.06    0.02   -0.10   -0.25   -0.42   -0.59   -0.77   -0.93   -1.02   -0.95   -0.72   -0.39   -0.07    0.10    0.10    0.05    0.19    0.67
+   230.0    0.00    0.05    0.00   -0.13   -0.32   -0.54   -0.76   -0.99   -1.18   -1.26   -1.19   -0.95   -0.63   -0.37   -0.30   -0.40   -0.48   -0.21    0.58
+   235.0    0.00    0.05   -0.01   -0.17   -0.39   -0.65   -0.93   -1.20   -1.41   -1.49   -1.39   -1.13   -0.81   -0.62   -0.65   -0.86   -0.97   -0.58    0.52
+   240.0    0.00    0.04   -0.03   -0.20   -0.45   -0.75   -1.08   -1.39   -1.62   -1.68   -1.55   -1.25   -0.94   -0.80   -0.93   -1.25   -1.40   -0.91    0.51
+   245.0    0.00    0.04   -0.04   -0.23   -0.50   -0.84   -1.21   -1.55   -1.80   -1.85   -1.67   -1.34   -1.02   -0.91   -1.14   -1.55   -1.74   -1.16    0.55
+   250.0    0.00    0.03   -0.06   -0.26   -0.55   -0.91   -1.32   -1.69   -1.95   -1.98   -1.76   -1.38   -1.04   -0.97   -1.26   -1.76   -1.99   -1.32    0.64
+   255.0    0.00    0.02   -0.07   -0.28   -0.58   -0.97   -1.40   -1.80   -2.06   -2.07   -1.82   -1.39   -1.03   -0.97   -1.31   -1.87   -2.13   -1.40    0.76
+   260.0    0.00    0.02   -0.08   -0.29   -0.60   -1.01   -1.46   -1.87   -2.13   -2.13   -1.84   -1.37   -0.98   -0.92   -1.29   -1.89   -2.16   -1.40    0.90
+   265.0    0.00    0.01   -0.09   -0.30   -0.62   -1.03   -1.49   -1.91   -2.17   -2.15   -1.83   -1.33   -0.91   -0.84   -1.21   -1.82   -2.10   -1.32    1.04
+   270.0    0.00    0.00   -0.10   -0.31   -0.63   -1.04   -1.50   -1.92   -2.17   -2.13   -1.79   -1.27   -0.82   -0.72   -1.08   -1.69   -1.97   -1.19    1.18
+   275.0    0.00    0.00   -0.11   -0.32   -0.63   -1.04   -1.49   -1.90   -2.14   -2.09   -1.72   -1.18   -0.71   -0.58   -0.91   -1.49   -1.78   -1.04    1.28
+   280.0    0.00   -0.01   -0.12   -0.33   -0.63   -1.02   -1.46   -1.85   -2.07   -2.01   -1.63   -1.07   -0.57   -0.41   -0.70   -1.25   -1.54   -0.87    1.35
+   285.0    0.00   -0.02   -0.13   -0.34   -0.63   -1.00   -1.42   -1.79   -1.99   -1.90   -1.51   -0.94   -0.42   -0.22   -0.47   -0.98   -1.29   -0.70    1.37
+   290.0    0.00   -0.02   -0.14   -0.34   -0.63   -0.98   -1.37   -1.71   -1.88   -1.78   -1.38   -0.79   -0.25   -0.01   -0.21   -0.70   -1.02   -0.54    1.36
+   295.0    0.00   -0.03   -0.15   -0.35   -0.62   -0.96   -1.32   -1.63   -1.77   -1.64   -1.22   -0.62   -0.05    0.22    0.07   -0.39   -0.75   -0.39    1.33
+   300.0    0.00   -0.04   -0.16   -0.36   -0.62   -0.94   -1.27   -1.54   -1.64   -1.48   -1.05   -0.43    0.16    0.47    0.36   -0.08   -0.48   -0.24    1.29
+   305.0    0.00   -0.05   -0.17   -0.37   -0.62   -0.92   -1.22   -1.45   -1.51   -1.32   -0.87   -0.23    0.38    0.72    0.65    0.23   -0.21   -0.09    1.26
+   310.0    0.00   -0.05   -0.18   -0.38   -0.62   -0.90   -1.17   -1.36   -1.38   -1.16   -0.68   -0.04    0.59    0.97    0.94    0.54    0.06    0.08    1.27
+   315.0    0.00   -0.06   -0.19   -0.39   -0.62   -0.88   -1.11   -1.26   -1.25   -1.00   -0.50    0.16    0.80    1.21    1.22    0.84    0.34    0.27    1.32
+   320.0    0.00   -0.07   -0.20   -0.40   -0.62   -0.86   -1.06   -1.17   -1.11   -0.84   -0.33    0.34    0.99    1.43    1.47    1.11    0.61    0.48    1.41
+   325.0    0.00   -0.08   -0.22   -0.41   -0.62   -0.83   -1.00   -1.07   -0.98   -0.68   -0.17    0.49    1.15    1.60    1.68    1.36    0.87    0.70    1.55
+   330.0    0.00   -0.08   -0.23   -0.41   -0.62   -0.81   -0.94   -0.97   -0.85   -0.54   -0.03    0.63    1.28    1.74    1.84    1.56    1.10    0.93    1.70
+   335.0    0.00   -0.09   -0.24   -0.42   -0.61   -0.78   -0.87   -0.87   -0.72   -0.40    0.10    0.73    1.36    1.82    1.95    1.71    1.29    1.13    1.86
+   340.0    0.00   -0.10   -0.25   -0.43   -0.61   -0.74   -0.80   -0.77   -0.60   -0.28    0.20    0.80    1.41    1.85    2.00    1.79    1.42    1.29    1.99
+   345.0    0.00   -0.10   -0.26   -0.43   -0.60   -0.71   -0.74   -0.67   -0.49   -0.17    0.29    0.85    1.42    1.85    1.99    1.82    1.49    1.39    2.06
+   350.0    0.00   -0.11   -0.26   -0.44   -0.58   -0.67   -0.67   -0.58   -0.39   -0.08    0.36    0.88    1.41    1.81    1.94    1.78    1.48    1.41    2.06
+   355.0    0.00   -0.11   -0.27   -0.44   -0.57   -0.63   -0.61   -0.50   -0.30    0.00    0.40    0.90    1.39    1.75    1.86    1.68    1.39    1.34    1.98
+   360.0    0.00   -0.12   -0.28   -0.44   -0.56   -0.60   -0.56   -0.44   -0.24    0.05    0.43    0.90    1.36    1.69    1.76    1.55    1.24    1.19    1.80
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+LEIAT302+GP     NONE                                        TYPE / SERIAL NO    
+CONVERTED           TUM                      1    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+CONVERTED FROM igs_01.pcv                                   COMMENT             
+   G01                                                      START OF FREQUENCY  
+      5.38      1.53     31.05                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.23   -0.50   -0.23    0.18   -0.22   -1.36   -2.19   -1.97   -1.51   -1.46   -1.79   -1.63   -0.85    0.32    2.39    6.37
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      3.32     -5.79     34.15                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.33   -1.11   -1.88   -2.39   -2.78   -3.29   -4.07   -4.81   -5.21   -5.05   -4.16   -3.13   -2.33   -1.93   -1.31    0.25
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+LEIAT302-GP     NONE                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               2    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+Number of Calibrated Antennas GPS:      002                 COMMENT             
+Number of Individual Calibrations GPS:  030                 COMMENT             
+   G01                                                      START OF FREQUENCY  
+     -0.02     -0.35     40.39                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.10   -0.39   -0.80   -1.25   -1.61   -1.78   -1.71   -1.43   -1.03   -0.68   -0.49   -0.47   -0.51   -0.42   -0.06    0.55    1.16    1.37
+     0.0    0.00   -0.26   -0.60   -0.92   -1.12   -1.16   -1.03   -0.79   -0.48   -0.18    0.08    0.32    0.60    1.03    1.69    2.56    3.53    4.40    4.95
+     5.0    0.00   -0.26   -0.61   -0.93   -1.14   -1.18   -1.04   -0.77   -0.44   -0.13    0.12    0.32    0.55    0.91    1.50    2.32    3.27    4.12    4.66
+    10.0    0.00   -0.25   -0.61   -0.95   -1.17   -1.21   -1.06   -0.78   -0.43   -0.11    0.13    0.29    0.46    0.75    1.27    2.05    2.97    3.81    4.34
+    15.0    0.00   -0.25   -0.61   -0.96   -1.20   -1.25   -1.11   -0.82   -0.46   -0.13    0.10    0.23    0.34    0.56    1.01    1.74    2.64    3.49    4.00
+    20.0    0.00   -0.25   -0.61   -0.98   -1.24   -1.32   -1.19   -0.90   -0.53   -0.20    0.02    0.12    0.17    0.32    0.70    1.39    2.29    3.14    3.65
+    25.0    0.00   -0.24   -0.61   -0.99   -1.28   -1.39   -1.29   -1.01   -0.64   -0.31   -0.10   -0.04   -0.05    0.02    0.35    1.00    1.89    2.77    3.28
+    30.0    0.00   -0.23   -0.60   -1.01   -1.33   -1.48   -1.41   -1.15   -0.80   -0.47   -0.29   -0.26   -0.33   -0.33   -0.06    0.55    1.44    2.34    2.88
+    35.0    0.00   -0.23   -0.60   -1.02   -1.37   -1.57   -1.54   -1.32   -0.99   -0.68   -0.52   -0.54   -0.67   -0.73   -0.53    0.04    0.92    1.84    2.40
+    40.0    0.00   -0.22   -0.59   -1.03   -1.42   -1.66   -1.68   -1.50   -1.20   -0.93   -0.80   -0.87   -1.06   -1.19   -1.06   -0.54    0.32    1.25    1.84
+    45.0    0.00   -0.21   -0.58   -1.03   -1.46   -1.74   -1.82   -1.68   -1.43   -1.19   -1.11   -1.23   -1.48   -1.69   -1.63   -1.17   -0.36    0.55    1.16
+    50.0    0.00   -0.19   -0.57   -1.03   -1.49   -1.82   -1.95   -1.86   -1.65   -1.46   -1.42   -1.60   -1.92   -2.21   -2.23   -1.84   -1.09   -0.23    0.37
+    55.0    0.00   -0.18   -0.55   -1.03   -1.51   -1.88   -2.06   -2.02   -1.86   -1.71   -1.72   -1.96   -2.36   -2.72   -2.82   -2.53   -1.87   -1.09   -0.53
+    60.0    0.00   -0.17   -0.53   -1.02   -1.52   -1.93   -2.15   -2.15   -2.02   -1.92   -1.99   -2.29   -2.75   -3.19   -3.38   -3.19   -2.64   -1.97   -1.49
+    65.0    0.00   -0.16   -0.51   -1.00   -1.53   -1.96   -2.20   -2.24   -2.14   -2.08   -2.19   -2.55   -3.08   -3.60   -3.88   -3.78   -3.36   -2.83   -2.46
+    70.0    0.00   -0.14   -0.48   -0.98   -1.51   -1.97   -2.23   -2.28   -2.21   -2.16   -2.31   -2.72   -3.32   -3.90   -4.25   -4.25   -3.96   -3.60   -3.38
+    75.0    0.00   -0.13   -0.46   -0.95   -1.49   -1.96   -2.23   -2.28   -2.21   -2.18   -2.35   -2.79   -3.44   -4.07   -4.49   -4.57   -4.40   -4.20   -4.17
+    80.0    0.00   -0.11   -0.43   -0.92   -1.46   -1.93   -2.19   -2.24   -2.15   -2.11   -2.29   -2.75   -3.42   -4.09   -4.54   -4.69   -4.62   -4.58   -4.75
+    85.0    0.00   -0.09   -0.40   -0.88   -1.43   -1.89   -2.14   -2.16   -2.04   -1.97   -2.13   -2.59   -3.27   -3.94   -4.41   -4.58   -4.59   -4.70   -5.07
+    90.0    0.00   -0.08   -0.38   -0.85   -1.39   -1.84   -2.07   -2.06   -1.90   -1.78   -1.89   -2.32   -2.97   -3.63   -4.07   -4.25   -4.30   -4.52   -5.07
+    95.0    0.00   -0.06   -0.35   -0.81   -1.35   -1.79   -2.00   -1.94   -1.72   -1.54   -1.59   -1.95   -2.55   -3.16   -3.56   -3.69   -3.75   -4.04   -4.75
+   100.0    0.00   -0.05   -0.32   -0.78   -1.31   -1.74   -1.92   -1.82   -1.54   -1.27   -1.23   -1.52   -2.03   -2.56   -2.88   -2.95   -2.97   -3.29   -4.12
+   105.0    0.00   -0.03   -0.29   -0.75   -1.27   -1.69   -1.86   -1.71   -1.36   -1.00   -0.86   -1.03   -1.44   -1.86   -2.08   -2.06   -2.01   -2.31   -3.22
+   110.0    0.00   -0.02   -0.27   -0.71   -1.24   -1.66   -1.80   -1.62   -1.19   -0.74   -0.48   -0.53   -0.81   -1.11   -1.21   -1.07   -0.93   -1.18   -2.12
+   115.0    0.00   -0.01   -0.25   -0.69   -1.21   -1.63   -1.76   -1.55   -1.06   -0.51   -0.12   -0.04   -0.18   -0.35   -0.32   -0.06    0.20    0.03   -0.88
+   120.0    0.00    0.00   -0.22   -0.66   -1.19   -1.61   -1.74   -1.50   -0.95   -0.31    0.19    0.42    0.41    0.38    0.53    0.92    1.29    1.23    0.38
+   125.0    0.00    0.02   -0.21   -0.64   -1.17   -1.60   -1.73   -1.47   -0.87   -0.15    0.46    0.81    0.94    1.03    1.30    1.80    2.29    2.36    1.60
+   130.0    0.00    0.03   -0.19   -0.62   -1.16   -1.59   -1.73   -1.45   -0.83   -0.04    0.66    1.12    1.37    1.58    1.95    2.54    3.15    3.33    2.69
+   135.0    0.00    0.04   -0.17   -0.61   -1.15   -1.59   -1.73   -1.46   -0.81    0.02    0.80    1.35    1.70    1.99    2.44    3.11    3.81    4.11    3.59
+   140.0    0.00    0.04   -0.16   -0.60   -1.14   -1.59   -1.74   -1.46   -0.81    0.05    0.88    1.49    1.90    2.26    2.76    3.49    4.26    4.66    4.27
+   145.0    0.00    0.05   -0.15   -0.58   -1.13   -1.58   -1.74   -1.48   -0.82    0.05    0.89    1.55    2.00    2.38    2.92    3.67    4.49    4.99    4.71
+   150.0    0.00    0.05   -0.14   -0.57   -1.12   -1.58   -1.74   -1.49   -0.84    0.01    0.86    1.52    1.98    2.38    2.92    3.68    4.53    5.08    4.91
+   155.0    0.00    0.06   -0.14   -0.56   -1.11   -1.56   -1.73   -1.49   -0.87   -0.04    0.79    1.43    1.88    2.26    2.78    3.54    4.39    4.99    4.89
+   160.0    0.00    0.06   -0.13   -0.56   -1.10   -1.55   -1.72   -1.50   -0.91   -0.11    0.68    1.29    1.70    2.06    2.54    3.27    4.11    4.72    4.68
+   165.0    0.00    0.06   -0.13   -0.55   -1.08   -1.53   -1.71   -1.50   -0.94   -0.19    0.55    1.11    1.48    1.79    2.23    2.91    3.71    4.32    4.33
+   170.0    0.00    0.06   -0.13   -0.55   -1.07   -1.51   -1.69   -1.50   -0.98   -0.28    0.40    0.91    1.23    1.48    1.87    2.49    3.25    3.83    3.85
+   175.0    0.00    0.06   -0.13   -0.54   -1.06   -1.50   -1.68   -1.51   -1.02   -0.37    0.25    0.70    0.97    1.16    1.48    2.03    2.73    3.28    3.30
+   180.0    0.00    0.06   -0.13   -0.54   -1.05   -1.48   -1.67   -1.52   -1.07   -0.47    0.11    0.50    0.71    0.85    1.09    1.56    2.19    2.69    2.69
+   185.0    0.00    0.06   -0.14   -0.54   -1.05   -1.47   -1.67   -1.54   -1.12   -0.56   -0.03    0.31    0.47    0.55    0.72    1.10    1.64    2.09    2.06
+   190.0    0.00    0.05   -0.14   -0.55   -1.04   -1.47   -1.67   -1.56   -1.17   -0.65   -0.16    0.14    0.25    0.26    0.35    0.64    1.10    1.48    1.43
+   195.0    0.00    0.05   -0.15   -0.55   -1.05   -1.47   -1.68   -1.58   -1.23   -0.73   -0.28    0.00    0.06    0.00    0.00    0.20    0.57    0.90    0.82
+   200.0    0.00    0.04   -0.16   -0.56   -1.05   -1.47   -1.69   -1.62   -1.28   -0.81   -0.38   -0.14   -0.12   -0.24   -0.33   -0.23    0.06    0.34    0.24
+   205.0    0.00    0.03   -0.17   -0.57   -1.06   -1.48   -1.71   -1.65   -1.33   -0.88   -0.47   -0.25   -0.28   -0.47   -0.65   -0.65   -0.43   -0.18   -0.29
+   210.0    0.00    0.02   -0.19   -0.58   -1.07   -1.49   -1.73   -1.68   -1.38   -0.94   -0.54   -0.35   -0.43   -0.70   -0.97   -1.06   -0.89   -0.64   -0.74
+   215.0    0.00    0.01   -0.20   -0.60   -1.08   -1.51   -1.75   -1.72   -1.43   -1.00   -0.62   -0.45   -0.57   -0.92   -1.28   -1.44   -1.31   -1.04   -1.10
+   220.0    0.00    0.00   -0.22   -0.61   -1.09   -1.52   -1.77   -1.76   -1.48   -1.06   -0.69   -0.54   -0.72   -1.14   -1.59   -1.81   -1.69   -1.37   -1.35
+   225.0    0.00   -0.01   -0.23   -0.63   -1.11   -1.54   -1.80   -1.80   -1.53   -1.12   -0.76   -0.64   -0.87   -1.36   -1.88   -2.15   -2.01   -1.62   -1.50
+   230.0    0.00   -0.02   -0.25   -0.65   -1.13   -1.56   -1.83   -1.84   -1.59   -1.19   -0.84   -0.75   -1.02   -1.57   -2.16   -2.46   -2.28   -1.78   -1.53
+   235.0    0.00   -0.03   -0.27   -0.67   -1.15   -1.59   -1.87   -1.89   -1.66   -1.27   -0.93   -0.86   -1.16   -1.77   -2.40   -2.71   -2.48   -1.85   -1.46
+   240.0    0.00   -0.04   -0.29   -0.69   -1.17   -1.62   -1.91   -1.96   -1.74   -1.37   -1.04   -0.98   -1.31   -1.94   -2.61   -2.91   -2.61   -1.85   -1.30
+   245.0    0.00   -0.06   -0.31   -0.71   -1.19   -1.65   -1.96   -2.03   -1.84   -1.48   -1.15   -1.09   -1.43   -2.08   -2.76   -3.04   -2.67   -1.79   -1.08
+   250.0    0.00   -0.07   -0.33   -0.73   -1.22   -1.68   -2.02   -2.11   -1.94   -1.60   -1.27   -1.20   -1.53   -2.18   -2.84   -3.10   -2.67   -1.67   -0.83
+   255.0    0.00   -0.08   -0.35   -0.75   -1.24   -1.72   -2.08   -2.20   -2.06   -1.73   -1.39   -1.30   -1.59   -2.22   -2.86   -3.09   -2.60   -1.52   -0.57
+   260.0    0.00   -0.10   -0.37   -0.78   -1.27   -1.76   -2.14   -2.29   -2.18   -1.85   -1.50   -1.37   -1.62   -2.19   -2.80   -3.00   -2.47   -1.34   -0.33
+   265.0    0.00   -0.11   -0.39   -0.80   -1.29   -1.79   -2.20   -2.38   -2.28   -1.96   -1.59   -1.42   -1.60   -2.11   -2.66   -2.82   -2.29   -1.14   -0.11
+   270.0    0.00   -0.12   -0.41   -0.82   -1.32   -1.83   -2.24   -2.45   -2.38   -2.06   -1.66   -1.42   -1.53   -1.96   -2.44   -2.58   -2.04   -0.92    0.07
+   275.0    0.00   -0.14   -0.43   -0.84   -1.33   -1.85   -2.28   -2.50   -2.44   -2.12   -1.69   -1.39   -1.41   -1.75   -2.16   -2.26   -1.73   -0.67    0.23
+   280.0    0.00   -0.15   -0.45   -0.86   -1.35   -1.86   -2.30   -2.53   -2.47   -2.14   -1.68   -1.32   -1.25   -1.49   -1.82   -1.87   -1.36   -0.39    0.39
+   285.0    0.00   -0.16   -0.46   -0.87   -1.36   -1.86   -2.29   -2.52   -2.47   -2.12   -1.63   -1.21   -1.05   -1.19   -1.42   -1.42   -0.94   -0.06    0.57
+   290.0    0.00   -0.17   -0.48   -0.89   -1.36   -1.85   -2.26   -2.48   -2.42   -2.06   -1.54   -1.07   -0.83   -0.86   -0.99   -0.93   -0.45    0.33    0.80
+   295.0    0.00   -0.18   -0.50   -0.90   -1.35   -1.82   -2.21   -2.41   -2.33   -1.96   -1.42   -0.90   -0.59   -0.52   -0.54   -0.40    0.08    0.78    1.10
+   300.0    0.00   -0.19   -0.51   -0.90   -1.34   -1.78   -2.14   -2.31   -2.21   -1.83   -1.28   -0.73   -0.35   -0.18   -0.09    0.14    0.66    1.28    1.47
+   305.0    0.00   -0.20   -0.52   -0.91   -1.32   -1.72   -2.04   -2.18   -2.06   -1.67   -1.12   -0.55   -0.13    0.14    0.35    0.69    1.25    1.84    1.94
+   310.0    0.00   -0.21   -0.54   -0.91   -1.30   -1.66   -1.93   -2.03   -1.89   -1.50   -0.96   -0.39    0.08    0.43    0.76    1.22    1.84    2.42    2.47
+   315.0    0.00   -0.22   -0.55   -0.91   -1.27   -1.59   -1.81   -1.87   -1.71   -1.33   -0.80   -0.24    0.26    0.68    1.13    1.70    2.40    3.01    3.05
+   320.0    0.00   -0.23   -0.56   -0.91   -1.24   -1.52   -1.69   -1.71   -1.53   -1.15   -0.65   -0.11    0.40    0.89    1.44    2.13    2.91    3.56    3.64
+   325.0    0.00   -0.24   -0.56   -0.91   -1.21   -1.44   -1.57   -1.54   -1.35   -0.99   -0.52    0.00    0.51    1.05    1.69    2.48    3.34    4.04    4.19
+   330.0    0.00   -0.24   -0.57   -0.90   -1.18   -1.37   -1.45   -1.39   -1.18   -0.83   -0.40    0.08    0.59    1.16    1.87    2.74    3.68    4.43    4.67
+   335.0    0.00   -0.25   -0.58   -0.90   -1.16   -1.31   -1.34   -1.24   -1.02   -0.69   -0.30    0.15    0.64    1.23    1.98    2.91    3.90    4.71    5.04
+   340.0    0.00   -0.25   -0.58   -0.90   -1.14   -1.25   -1.24   -1.11   -0.88   -0.56   -0.20    0.20    0.67    1.26    2.03    2.99    4.01    4.86    5.27
+   345.0    0.00   -0.25   -0.59   -0.90   -1.12   -1.21   -1.16   -1.00   -0.75   -0.45   -0.12    0.24    0.67    1.24    2.02    2.98    4.02    4.89    5.37
+   350.0    0.00   -0.26   -0.60   -0.91   -1.12   -1.18   -1.10   -0.91   -0.64   -0.34   -0.04    0.28    0.66    1.20    1.95    2.90    3.93    4.81    5.34
+   355.0    0.00   -0.26   -0.60   -0.91   -1.12   -1.16   -1.06   -0.83   -0.55   -0.25    0.03    0.30    0.64    1.13    1.84    2.76    3.76    4.64    5.19
+   360.0    0.00   -0.26   -0.60   -0.92   -1.12   -1.16   -1.03   -0.79   -0.48   -0.18    0.08    0.32    0.60    1.03    1.69    2.56    3.53    4.40    4.95
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -1.94      1.40     40.71                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.04   -0.14   -0.28   -0.42   -0.55   -0.66   -0.74   -0.77   -0.69   -0.46   -0.09    0.32    0.60    0.57    0.23   -0.20   -0.23    0.68
+     0.0    0.00   -0.12   -0.28   -0.44   -0.56   -0.60   -0.56   -0.44   -0.24    0.05    0.43    0.90    1.36    1.69    1.76    1.55    1.24    1.19    1.80
+     5.0    0.00   -0.12   -0.29   -0.44   -0.55   -0.57   -0.52   -0.39   -0.20    0.07    0.45    0.90    1.34    1.63    1.66    1.39    1.04    0.96    1.56
+    10.0    0.00   -0.13   -0.29   -0.44   -0.54   -0.55   -0.49   -0.37   -0.19    0.08    0.44    0.89    1.33    1.60    1.57    1.23    0.81    0.69    1.27
+    15.0    0.00   -0.13   -0.30   -0.45   -0.53   -0.54   -0.48   -0.37   -0.20    0.05    0.42    0.88    1.32    1.58    1.50    1.08    0.57    0.40    0.97
+    20.0    0.00   -0.14   -0.30   -0.45   -0.53   -0.54   -0.49   -0.39   -0.24    0.00    0.38    0.85    1.32    1.57    1.45    0.96    0.36    0.13    0.69
+    25.0    0.00   -0.14   -0.31   -0.46   -0.54   -0.55   -0.51   -0.43   -0.30   -0.07    0.31    0.82    1.31    1.57    1.43    0.87    0.19   -0.10    0.47
+    30.0    0.00   -0.14   -0.31   -0.46   -0.55   -0.56   -0.53   -0.48   -0.37   -0.16    0.23    0.76    1.28    1.57    1.41    0.81    0.07   -0.27    0.32
+    35.0    0.00   -0.14   -0.32   -0.47   -0.56   -0.58   -0.57   -0.54   -0.46   -0.26    0.12    0.67    1.22    1.54    1.40    0.77   -0.01   -0.37    0.25
+    40.0    0.00   -0.14   -0.32   -0.48   -0.57   -0.61   -0.61   -0.60   -0.55   -0.37    0.00    0.55    1.12    1.47    1.35    0.74   -0.05   -0.41    0.26
+    45.0    0.00   -0.14   -0.33   -0.49   -0.59   -0.63   -0.66   -0.67   -0.64   -0.49   -0.15    0.39    0.98    1.35    1.27    0.69   -0.07   -0.41    0.33
+    50.0    0.00   -0.14   -0.33   -0.50   -0.61   -0.66   -0.70   -0.73   -0.73   -0.62   -0.31    0.20    0.77    1.17    1.13    0.61   -0.10   -0.40    0.41
+    55.0    0.00   -0.14   -0.33   -0.51   -0.63   -0.69   -0.74   -0.78   -0.81   -0.73   -0.48   -0.02    0.52    0.92    0.93    0.47   -0.18   -0.41    0.47
+    60.0    0.00   -0.14   -0.33   -0.51   -0.64   -0.72   -0.77   -0.83   -0.88   -0.85   -0.65   -0.26    0.23    0.62    0.66    0.27   -0.31   -0.49    0.46
+    65.0    0.00   -0.14   -0.33   -0.52   -0.66   -0.75   -0.80   -0.87   -0.94   -0.95   -0.82   -0.51   -0.08    0.27    0.32   -0.01   -0.53   -0.66    0.35
+    70.0    0.00   -0.13   -0.33   -0.53   -0.68   -0.77   -0.83   -0.90   -0.99   -1.04   -0.98   -0.76   -0.41   -0.11   -0.05   -0.36   -0.83   -0.93    0.12
+    75.0    0.00   -0.13   -0.32   -0.53   -0.69   -0.79   -0.86   -0.93   -1.03   -1.12   -1.13   -0.99   -0.73   -0.48   -0.45   -0.75   -1.21   -1.30   -0.23
+    80.0    0.00   -0.12   -0.32   -0.53   -0.70   -0.81   -0.88   -0.96   -1.07   -1.19   -1.25   -1.19   -1.01   -0.84   -0.85   -1.17   -1.65   -1.77   -0.68
+    85.0    0.00   -0.12   -0.31   -0.52   -0.70   -0.82   -0.90   -0.98   -1.10   -1.24   -1.35   -1.35   -1.25   -1.15   -1.22   -1.58   -2.10   -2.28   -1.21
+    90.0    0.00   -0.11   -0.29   -0.51   -0.69   -0.82   -0.91   -1.00   -1.12   -1.28   -1.41   -1.47   -1.43   -1.39   -1.52   -1.95   -2.55   -2.79   -1.76
+    95.0    0.00   -0.10   -0.28   -0.49   -0.68   -0.82   -0.91   -1.00   -1.13   -1.29   -1.44   -1.52   -1.53   -1.55   -1.75   -2.25   -2.93   -3.26   -2.29
+   100.0    0.00   -0.09   -0.26   -0.47   -0.66   -0.80   -0.90   -0.99   -1.12   -1.28   -1.43   -1.53   -1.56   -1.62   -1.88   -2.45   -3.21   -3.63   -2.72
+   105.0    0.00   -0.08   -0.24   -0.44   -0.63   -0.77   -0.87   -0.97   -1.09   -1.24   -1.38   -1.47   -1.51   -1.60   -1.90   -2.53   -3.36   -3.86   -3.01
+   110.0    0.00   -0.07   -0.22   -0.40   -0.58   -0.72   -0.83   -0.92   -1.03   -1.16   -1.28   -1.36   -1.39   -1.49   -1.82   -2.48   -3.37   -3.92   -3.13
+   115.0    0.00   -0.06   -0.19   -0.36   -0.53   -0.66   -0.76   -0.85   -0.95   -1.06   -1.15   -1.19   -1.21   -1.30   -1.63   -2.31   -3.22   -3.80   -3.05
+   120.0    0.00   -0.05   -0.16   -0.31   -0.46   -0.58   -0.67   -0.75   -0.83   -0.91   -0.97   -0.98   -0.97   -1.04   -1.36   -2.03   -2.92   -3.50   -2.79
+   125.0    0.00   -0.03   -0.13   -0.26   -0.39   -0.49   -0.56   -0.62   -0.68   -0.74   -0.76   -0.73   -0.68   -0.72   -1.01   -1.65   -2.50   -3.04   -2.35
+   130.0    0.00   -0.02   -0.10   -0.21   -0.31   -0.39   -0.43   -0.47   -0.51   -0.53   -0.52   -0.44   -0.35   -0.36   -0.61   -1.19   -1.98   -2.47   -1.78
+   135.0    0.00   -0.01   -0.07   -0.15   -0.23   -0.27   -0.29   -0.31   -0.32   -0.31   -0.25   -0.14   -0.01    0.03   -0.17   -0.69   -1.39   -1.81   -1.13
+   140.0    0.00    0.00   -0.04   -0.10   -0.14   -0.16   -0.15   -0.13   -0.11   -0.07    0.03    0.18    0.36    0.43    0.28   -0.17   -0.78   -1.12   -0.45
+   145.0    0.00    0.01   -0.01   -0.04   -0.06   -0.04    0.00    0.05    0.10    0.18    0.31    0.51    0.72    0.84    0.73    0.35   -0.18   -0.45    0.20
+   150.0    0.00    0.02    0.02    0.01    0.02    0.07    0.14    0.22    0.30    0.41    0.58    0.82    1.07    1.23    1.17    0.85    0.39    0.18    0.80
+   155.0    0.00    0.03    0.04    0.05    0.09    0.17    0.27    0.37    0.48    0.62    0.83    1.10    1.40    1.60    1.58    1.31    0.90    0.73    1.30
+   160.0    0.00    0.04    0.06    0.09    0.15    0.25    0.37    0.50    0.63    0.79    1.03    1.35    1.68    1.93    1.95    1.72    1.36    1.19    1.68
+   165.0    0.00    0.05    0.08    0.12    0.20    0.32    0.46    0.60    0.74    0.92    1.19    1.53    1.91    2.20    2.27    2.07    1.74    1.56    1.94
+   170.0    0.00    0.06    0.09    0.14    0.23    0.36    0.51    0.66    0.81    1.00    1.28    1.66    2.07    2.41    2.52    2.36    2.04    1.83    2.08
+   175.0    0.00    0.06    0.10    0.15    0.25    0.38    0.53    0.68    0.83    1.02    1.31    1.70    2.16    2.53    2.70    2.58    2.27    2.02    2.12
+   180.0    0.00    0.07    0.11    0.16    0.25    0.38    0.52    0.66    0.80    0.98    1.27    1.67    2.15    2.57    2.79    2.71    2.42    2.12    2.09
+   185.0    0.00    0.07    0.11    0.15    0.23    0.35    0.49    0.61    0.73    0.89    1.16    1.56    2.06    2.52    2.78    2.76    2.48    2.16    1.99
+   190.0    0.00    0.07    0.11    0.14    0.21    0.31    0.42    0.52    0.61    0.74    0.98    1.38    1.88    2.37    2.68    2.71    2.47    2.12    1.84
+   195.0    0.00    0.07    0.10    0.12    0.16    0.24    0.33    0.40    0.46    0.55    0.76    1.13    1.63    2.14    2.49    2.56    2.36    2.02    1.68
+   200.0    0.00    0.07    0.09    0.09    0.11    0.15    0.21    0.24    0.27    0.32    0.50    0.83    1.32    1.84    2.21    2.32    2.17    1.86    1.50
+   205.0    0.00    0.07    0.08    0.06    0.05    0.06    0.07    0.07    0.05    0.07    0.20    0.51    0.97    1.48    1.86    1.99    1.88    1.63    1.31
+   210.0    0.00    0.07    0.07    0.02   -0.02   -0.05   -0.08   -0.13   -0.18   -0.20   -0.10    0.18    0.61    1.08    1.45    1.59    1.51    1.33    1.13
+   215.0    0.00    0.07    0.05   -0.02   -0.10   -0.17   -0.25   -0.34   -0.43   -0.48   -0.40   -0.15    0.25    0.68    1.00    1.12    1.07    0.99    0.96
+   220.0    0.00    0.06    0.04   -0.06   -0.17   -0.29   -0.42   -0.55   -0.68   -0.75   -0.69   -0.46   -0.09    0.29    0.55    0.61    0.57    0.60    0.80
+   225.0    0.00    0.06    0.02   -0.10   -0.25   -0.42   -0.59   -0.77   -0.93   -1.02   -0.95   -0.72   -0.39   -0.07    0.10    0.10    0.05    0.19    0.67
+   230.0    0.00    0.05    0.00   -0.13   -0.32   -0.54   -0.76   -0.99   -1.18   -1.26   -1.19   -0.95   -0.63   -0.37   -0.30   -0.40   -0.48   -0.21    0.58
+   235.0    0.00    0.05   -0.01   -0.17   -0.39   -0.65   -0.93   -1.20   -1.41   -1.49   -1.39   -1.13   -0.81   -0.62   -0.65   -0.86   -0.97   -0.58    0.52
+   240.0    0.00    0.04   -0.03   -0.20   -0.45   -0.75   -1.08   -1.39   -1.62   -1.68   -1.55   -1.25   -0.94   -0.80   -0.93   -1.25   -1.40   -0.91    0.51
+   245.0    0.00    0.04   -0.04   -0.23   -0.50   -0.84   -1.21   -1.55   -1.80   -1.85   -1.67   -1.34   -1.02   -0.91   -1.14   -1.55   -1.74   -1.16    0.55
+   250.0    0.00    0.03   -0.06   -0.26   -0.55   -0.91   -1.32   -1.69   -1.95   -1.98   -1.76   -1.38   -1.04   -0.97   -1.26   -1.76   -1.99   -1.32    0.64
+   255.0    0.00    0.02   -0.07   -0.28   -0.58   -0.97   -1.40   -1.80   -2.06   -2.07   -1.82   -1.39   -1.03   -0.97   -1.31   -1.87   -2.13   -1.40    0.76
+   260.0    0.00    0.02   -0.08   -0.29   -0.60   -1.01   -1.46   -1.87   -2.13   -2.13   -1.84   -1.37   -0.98   -0.92   -1.29   -1.89   -2.16   -1.40    0.90
+   265.0    0.00    0.01   -0.09   -0.30   -0.62   -1.03   -1.49   -1.91   -2.17   -2.15   -1.83   -1.33   -0.91   -0.84   -1.21   -1.82   -2.10   -1.32    1.04
+   270.0    0.00    0.00   -0.10   -0.31   -0.63   -1.04   -1.50   -1.92   -2.17   -2.13   -1.79   -1.27   -0.82   -0.72   -1.08   -1.69   -1.97   -1.19    1.18
+   275.0    0.00    0.00   -0.11   -0.32   -0.63   -1.04   -1.49   -1.90   -2.14   -2.09   -1.72   -1.18   -0.71   -0.58   -0.91   -1.49   -1.78   -1.04    1.28
+   280.0    0.00   -0.01   -0.12   -0.33   -0.63   -1.02   -1.46   -1.85   -2.07   -2.01   -1.63   -1.07   -0.57   -0.41   -0.70   -1.25   -1.54   -0.87    1.35
+   285.0    0.00   -0.02   -0.13   -0.34   -0.63   -1.00   -1.42   -1.79   -1.99   -1.90   -1.51   -0.94   -0.42   -0.22   -0.47   -0.98   -1.29   -0.70    1.37
+   290.0    0.00   -0.02   -0.14   -0.34   -0.63   -0.98   -1.37   -1.71   -1.88   -1.78   -1.38   -0.79   -0.25   -0.01   -0.21   -0.70   -1.02   -0.54    1.36
+   295.0    0.00   -0.03   -0.15   -0.35   -0.62   -0.96   -1.32   -1.63   -1.77   -1.64   -1.22   -0.62   -0.05    0.22    0.07   -0.39   -0.75   -0.39    1.33
+   300.0    0.00   -0.04   -0.16   -0.36   -0.62   -0.94   -1.27   -1.54   -1.64   -1.48   -1.05   -0.43    0.16    0.47    0.36   -0.08   -0.48   -0.24    1.29
+   305.0    0.00   -0.05   -0.17   -0.37   -0.62   -0.92   -1.22   -1.45   -1.51   -1.32   -0.87   -0.23    0.38    0.72    0.65    0.23   -0.21   -0.09    1.26
+   310.0    0.00   -0.05   -0.18   -0.38   -0.62   -0.90   -1.17   -1.36   -1.38   -1.16   -0.68   -0.04    0.59    0.97    0.94    0.54    0.06    0.08    1.27
+   315.0    0.00   -0.06   -0.19   -0.39   -0.62   -0.88   -1.11   -1.26   -1.25   -1.00   -0.50    0.16    0.80    1.21    1.22    0.84    0.34    0.27    1.32
+   320.0    0.00   -0.07   -0.20   -0.40   -0.62   -0.86   -1.06   -1.17   -1.11   -0.84   -0.33    0.34    0.99    1.43    1.47    1.11    0.61    0.48    1.41
+   325.0    0.00   -0.08   -0.22   -0.41   -0.62   -0.83   -1.00   -1.07   -0.98   -0.68   -0.17    0.49    1.15    1.60    1.68    1.36    0.87    0.70    1.55
+   330.0    0.00   -0.08   -0.23   -0.41   -0.62   -0.81   -0.94   -0.97   -0.85   -0.54   -0.03    0.63    1.28    1.74    1.84    1.56    1.10    0.93    1.70
+   335.0    0.00   -0.09   -0.24   -0.42   -0.61   -0.78   -0.87   -0.87   -0.72   -0.40    0.10    0.73    1.36    1.82    1.95    1.71    1.29    1.13    1.86
+   340.0    0.00   -0.10   -0.25   -0.43   -0.61   -0.74   -0.80   -0.77   -0.60   -0.28    0.20    0.80    1.41    1.85    2.00    1.79    1.42    1.29    1.99
+   345.0    0.00   -0.10   -0.26   -0.43   -0.60   -0.71   -0.74   -0.67   -0.49   -0.17    0.29    0.85    1.42    1.85    1.99    1.82    1.49    1.39    2.06
+   350.0    0.00   -0.11   -0.26   -0.44   -0.58   -0.67   -0.67   -0.58   -0.39   -0.08    0.36    0.88    1.41    1.81    1.94    1.78    1.48    1.41    2.06
+   355.0    0.00   -0.11   -0.27   -0.44   -0.57   -0.63   -0.61   -0.50   -0.30    0.00    0.40    0.90    1.39    1.75    1.86    1.68    1.39    1.34    1.98
+   360.0    0.00   -0.12   -0.28   -0.44   -0.56   -0.60   -0.56   -0.44   -0.24    0.05    0.43    0.90    1.36    1.69    1.76    1.55    1.24    1.19    1.80
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+LEIAT303        NONE                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               6    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+Number of Calibrated Antennas GPS:      006                 COMMENT             
+Number of Individual Calibrations GPS:  025                 COMMENT             
+   G01                                                      START OF FREQUENCY  
+     -0.43      0.76     60.75                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.19   -0.70   -1.42   -2.24   -3.05   -3.82   -4.54   -5.20   -5.70   -5.91   -5.66   -4.85   -3.48   -1.65    0.51    2.91    5.60    8.65
+     0.0    0.00   -0.11   -0.53   -1.17   -1.94   -2.78   -3.65   -4.54   -5.39   -6.09   -6.49   -6.42   -5.80   -4.66   -3.10   -1.22    0.96    3.50    6.44
+     5.0    0.00   -0.11   -0.54   -1.20   -1.99   -2.85   -3.74   -4.64   -5.52   -6.25   -6.68   -6.66   -6.08   -4.96   -3.40   -1.50    0.72    3.32    6.34
+    10.0    0.00   -0.12   -0.56   -1.23   -2.04   -2.92   -3.82   -4.74   -5.63   -6.39   -6.86   -6.86   -6.31   -5.21   -3.64   -1.71    0.56    3.22    6.31
+    15.0    0.00   -0.12   -0.57   -1.27   -2.10   -2.98   -3.90   -4.83   -5.73   -6.51   -7.00   -7.03   -6.49   -5.39   -3.80   -1.83    0.49    3.20    6.34
+    20.0    0.00   -0.13   -0.59   -1.30   -2.15   -3.05   -3.97   -4.90   -5.80   -6.59   -7.09   -7.14   -6.62   -5.50   -3.88   -1.87    0.49    3.24    6.42
+    25.0    0.00   -0.13   -0.61   -1.34   -2.20   -3.11   -4.02   -4.95   -5.85   -6.64   -7.15   -7.20   -6.67   -5.54   -3.88   -1.82    0.57    3.34    6.54
+    30.0    0.00   -0.14   -0.63   -1.38   -2.25   -3.16   -4.07   -4.98   -5.87   -6.65   -7.16   -7.21   -6.67   -5.51   -3.81   -1.71    0.72    3.50    6.71
+    35.0    0.00   -0.15   -0.65   -1.41   -2.29   -3.20   -4.10   -5.00   -5.86   -6.62   -7.11   -7.15   -6.59   -5.41   -3.67   -1.53    0.92    3.70    6.92
+    40.0    0.00   -0.15   -0.67   -1.44   -2.33   -3.24   -4.13   -5.00   -5.83   -6.56   -7.03   -7.05   -6.46   -5.24   -3.47   -1.30    1.17    3.94    7.16
+    45.0    0.00   -0.16   -0.69   -1.47   -2.36   -3.26   -4.14   -4.98   -5.78   -6.47   -6.91   -6.89   -6.28   -5.03   -3.22   -1.02    1.46    4.23    7.44
+    50.0    0.00   -0.17   -0.70   -1.49   -2.38   -3.28   -4.13   -4.94   -5.70   -6.36   -6.75   -6.70   -6.05   -4.76   -2.92   -0.70    1.79    4.55    7.76
+    55.0    0.00   -0.17   -0.71   -1.51   -2.40   -3.29   -4.12   -4.89   -5.61   -6.22   -6.57   -6.48   -5.79   -4.47   -2.59   -0.34    2.15    4.91    8.10
+    60.0    0.00   -0.18   -0.72   -1.52   -2.41   -3.28   -4.09   -4.83   -5.51   -6.07   -6.37   -6.24   -5.51   -4.15   -2.24    0.04    2.54    5.29    8.47
+    65.0    0.00   -0.18   -0.73   -1.53   -2.41   -3.27   -4.05   -4.76   -5.40   -5.91   -6.16   -5.98   -5.21   -3.81   -1.87    0.43    2.95    5.70    8.86
+    70.0    0.00   -0.19   -0.74   -1.53   -2.40   -3.25   -4.01   -4.69   -5.29   -5.75   -5.95   -5.72   -4.91   -3.47   -1.50    0.83    3.36    6.11    9.26
+    75.0    0.00   -0.19   -0.74   -1.52   -2.39   -3.22   -3.95   -4.60   -5.17   -5.59   -5.74   -5.46   -4.60   -3.13   -1.13    1.22    3.78    6.53    9.66
+    80.0    0.00   -0.19   -0.74   -1.52   -2.37   -3.18   -3.89   -4.52   -5.05   -5.43   -5.54   -5.22   -4.32   -2.81   -0.78    1.60    4.17    6.94   10.05
+    85.0    0.00   -0.20   -0.74   -1.50   -2.34   -3.13   -3.82   -4.42   -4.93   -5.28   -5.35   -4.98   -4.05   -2.51   -0.45    1.94    4.54    7.32   10.42
+    90.0    0.00   -0.20   -0.74   -1.49   -2.30   -3.07   -3.75   -4.33   -4.81   -5.13   -5.17   -4.77   -3.80   -2.23   -0.16    2.25    4.87    7.66   10.75
+    95.0    0.00   -0.20   -0.73   -1.47   -2.26   -3.02   -3.67   -4.24   -4.70   -5.00   -5.01   -4.58   -3.58   -2.00    0.09    2.51    5.14    7.94   11.02
+   100.0    0.00   -0.20   -0.73   -1.45   -2.23   -2.96   -3.60   -4.14   -4.59   -4.87   -4.87   -4.41   -3.40   -1.80    0.28    2.71    5.34    8.15   11.23
+   105.0    0.00   -0.20   -0.72   -1.43   -2.18   -2.90   -3.52   -4.06   -4.49   -4.77   -4.75   -4.28   -3.26   -1.66    0.42    2.84    5.47    8.28   11.34
+   110.0    0.00   -0.20   -0.71   -1.41   -2.15   -2.84   -3.45   -3.98   -4.41   -4.68   -4.65   -4.18   -3.15   -1.56    0.50    2.89    5.51    8.31   11.37
+   115.0    0.00   -0.21   -0.71   -1.39   -2.11   -2.79   -3.39   -3.92   -4.35   -4.61   -4.58   -4.11   -3.09   -1.52    0.52    2.88    5.46    8.25   11.29
+   120.0    0.00   -0.21   -0.70   -1.37   -2.08   -2.75   -3.35   -3.87   -4.30   -4.57   -4.55   -4.08   -3.08   -1.53    0.47    2.78    5.32    8.08   11.10
+   125.0    0.00   -0.21   -0.70   -1.36   -2.06   -2.72   -3.32   -3.84   -4.28   -4.56   -4.55   -4.10   -3.11   -1.59    0.36    2.62    5.11    7.82   10.80
+   130.0    0.00   -0.21   -0.70   -1.35   -2.05   -2.71   -3.30   -3.83   -4.29   -4.58   -4.58   -4.15   -3.18   -1.70    0.20    2.40    4.82    7.47   10.40
+   135.0    0.00   -0.21   -0.70   -1.35   -2.04   -2.70   -3.31   -3.85   -4.32   -4.63   -4.65   -4.24   -3.30   -1.86   -0.02    2.11    4.46    7.05    9.92
+   140.0    0.00   -0.21   -0.70   -1.35   -2.05   -2.72   -3.33   -3.89   -4.38   -4.71   -4.75   -4.37   -3.46   -2.07   -0.28    1.78    4.05    6.57    9.38
+   145.0    0.00   -0.21   -0.70   -1.36   -2.06   -2.74   -3.37   -3.96   -4.46   -4.82   -4.89   -4.53   -3.66   -2.31   -0.59    1.40    3.60    6.05    8.80
+   150.0    0.00   -0.22   -0.71   -1.37   -2.08   -2.78   -3.43   -4.04   -4.57   -4.95   -5.05   -4.72   -3.89   -2.59   -0.92    1.00    3.13    5.52    8.22
+   155.0    0.00   -0.22   -0.71   -1.38   -2.11   -2.83   -3.51   -4.14   -4.70   -5.10   -5.23   -4.93   -4.15   -2.89   -1.28    0.58    2.65    4.99    7.66
+   160.0    0.00   -0.22   -0.72   -1.40   -2.15   -2.89   -3.59   -4.25   -4.84   -5.27   -5.42   -5.16   -4.42   -3.22   -1.66    0.15    2.18    4.50    7.15
+   165.0    0.00   -0.23   -0.73   -1.43   -2.19   -2.95   -3.68   -4.37   -4.98   -5.45   -5.63   -5.41   -4.70   -3.54   -2.03   -0.26    1.74    4.05    6.72
+   170.0    0.00   -0.23   -0.74   -1.45   -2.24   -3.02   -3.78   -4.49   -5.14   -5.63   -5.85   -5.65   -4.99   -3.87   -2.39   -0.65    1.34    3.66    6.38
+   175.0    0.00   -0.23   -0.76   -1.48   -2.28   -3.09   -3.88   -4.62   -5.29   -5.81   -6.06   -5.90   -5.26   -4.18   -2.73   -1.01    1.00    3.36    6.14
+   180.0    0.00   -0.23   -0.77   -1.50   -2.33   -3.17   -3.97   -4.74   -5.44   -5.99   -6.26   -6.13   -5.52   -4.46   -3.03   -1.30    0.73    3.15    6.02
+   185.0    0.00   -0.24   -0.78   -1.53   -2.38   -3.23   -4.07   -4.86   -5.59   -6.16   -6.45   -6.34   -5.75   -4.70   -3.28   -1.54    0.53    3.03    5.99
+   190.0    0.00   -0.24   -0.79   -1.56   -2.42   -3.30   -4.16   -4.97   -5.72   -6.32   -6.63   -6.53   -5.95   -4.90   -3.46   -1.69    0.43    3.00    6.05
+   195.0    0.00   -0.24   -0.80   -1.58   -2.46   -3.36   -4.24   -5.08   -5.85   -6.46   -6.78   -6.69   -6.10   -5.04   -3.57   -1.76    0.42    3.05    6.19
+   200.0    0.00   -0.24   -0.81   -1.61   -2.50   -3.42   -4.31   -5.17   -5.96   -6.58   -6.91   -6.81   -6.21   -5.12   -3.61   -1.74    0.49    3.19    6.39
+   205.0    0.00   -0.25   -0.82   -1.63   -2.53   -3.46   -4.37   -5.25   -6.05   -6.68   -7.01   -6.90   -6.26   -5.13   -3.56   -1.64    0.65    3.39    6.62
+   210.0    0.00   -0.25   -0.83   -1.64   -2.56   -3.50   -4.43   -5.31   -6.12   -6.76   -7.08   -6.94   -6.26   -5.07   -3.45   -1.47    0.87    3.64    6.88
+   215.0    0.00   -0.25   -0.84   -1.66   -2.58   -3.54   -4.47   -5.36   -6.18   -6.81   -7.11   -6.94   -6.22   -4.96   -3.27   -1.23    1.16    3.94    7.15
+   220.0    0.00   -0.25   -0.84   -1.67   -2.60   -3.56   -4.50   -5.39   -6.20   -6.82   -7.10   -6.89   -6.12   -4.80   -3.04   -0.93    1.48    4.26    7.44
+   225.0    0.00   -0.24   -0.84   -1.67   -2.61   -3.57   -4.51   -5.40   -6.20   -6.81   -7.06   -6.81   -5.98   -4.60   -2.77   -0.61    1.84    4.61    7.74
+   230.0    0.00   -0.24   -0.84   -1.67   -2.61   -3.57   -4.50   -5.39   -6.17   -6.75   -6.97   -6.68   -5.80   -4.36   -2.47   -0.26    2.21    4.97    8.05
+   235.0    0.00   -0.24   -0.83   -1.67   -2.61   -3.56   -4.48   -5.35   -6.11   -6.66   -6.85   -6.53   -5.60   -4.11   -2.17    0.08    2.58    5.34    8.40
+   240.0    0.00   -0.23   -0.83   -1.66   -2.59   -3.54   -4.44   -5.29   -6.02   -6.54   -6.70   -6.34   -5.38   -3.86   -1.88    0.42    2.94    5.71    8.77
+   245.0    0.00   -0.23   -0.82   -1.64   -2.57   -3.50   -4.38   -5.20   -5.90   -6.39   -6.52   -6.13   -5.16   -3.60   -1.59    0.74    3.30    6.09    9.18
+   250.0    0.00   -0.22   -0.80   -1.62   -2.54   -3.45   -4.31   -5.09   -5.76   -6.21   -6.32   -5.92   -4.93   -3.36   -1.33    1.03    3.63    6.47    9.62
+   255.0    0.00   -0.22   -0.79   -1.60   -2.50   -3.39   -4.22   -4.97   -5.60   -6.02   -6.10   -5.70   -4.70   -3.14   -1.09    1.31    3.95    6.85   10.08
+   260.0    0.00   -0.21   -0.77   -1.57   -2.45   -3.32   -4.12   -4.83   -5.42   -5.82   -5.89   -5.48   -4.49   -2.93   -0.87    1.56    4.25    7.23   10.56
+   265.0    0.00   -0.20   -0.75   -1.53   -2.40   -3.24   -4.01   -4.69   -5.25   -5.62   -5.68   -5.27   -4.30   -2.73   -0.66    1.79    4.54    7.58   11.02
+   270.0    0.00   -0.19   -0.73   -1.50   -2.34   -3.16   -3.90   -4.54   -5.07   -5.42   -5.48   -5.08   -4.12   -2.56   -0.48    2.01    4.80    7.92   11.45
+   275.0    0.00   -0.18   -0.71   -1.45   -2.28   -3.07   -3.78   -4.39   -4.90   -5.25   -5.30   -4.91   -3.96   -2.40   -0.30    2.21    5.05    8.21   11.81
+   280.0    0.00   -0.17   -0.68   -1.41   -2.21   -2.98   -3.67   -4.26   -4.75   -5.09   -5.15   -4.77   -3.82   -2.26   -0.14    2.40    5.26    8.45   12.08
+   285.0    0.00   -0.17   -0.66   -1.37   -2.15   -2.89   -3.56   -4.13   -4.62   -4.96   -5.03   -4.66   -3.70   -2.13    0.01    2.56    5.43    8.61   12.24
+   290.0    0.00   -0.16   -0.64   -1.32   -2.08   -2.81   -3.46   -4.03   -4.52   -4.86   -4.94   -4.57   -3.61   -2.02    0.13    2.70    5.55    8.69   12.26
+   295.0    0.00   -0.15   -0.61   -1.28   -2.02   -2.73   -3.37   -3.94   -4.44   -4.79   -4.88   -4.51   -3.54   -1.93    0.23    2.79    5.61    8.68   12.15
+   300.0    0.00   -0.14   -0.59   -1.24   -1.97   -2.66   -3.30   -3.88   -4.38   -4.76   -4.85   -4.48   -3.50   -1.88    0.29    2.82    5.59    8.56   11.90
+   305.0    0.00   -0.13   -0.57   -1.20   -1.91   -2.61   -3.24   -3.83   -4.36   -4.75   -4.85   -4.48   -3.49   -1.86    0.30    2.79    5.48    8.34   11.52
+   310.0    0.00   -0.12   -0.55   -1.17   -1.87   -2.56   -3.21   -3.81   -4.36   -4.77   -4.89   -4.51   -3.52   -1.89    0.24    2.68    5.28    8.02   11.05
+   315.0    0.00   -0.12   -0.53   -1.14   -1.84   -2.53   -3.18   -3.81   -4.39   -4.82   -4.95   -4.58   -3.59   -1.97    0.12    2.49    4.99    7.61   10.49
+   320.0    0.00   -0.11   -0.52   -1.12   -1.81   -2.51   -3.18   -3.83   -4.44   -4.89   -5.03   -4.68   -3.70   -2.11   -0.07    2.22    4.62    7.13    9.89
+   325.0    0.00   -0.11   -0.51   -1.10   -1.79   -2.50   -3.20   -3.88   -4.51   -4.99   -5.15   -4.81   -3.85   -2.31   -0.34    1.87    4.18    6.60    9.28
+   330.0    0.00   -0.10   -0.50   -1.09   -1.79   -2.51   -3.23   -3.94   -4.60   -5.11   -5.29   -4.97   -4.05   -2.57   -0.67    1.46    3.69    6.06    8.68
+   335.0    0.00   -0.10   -0.49   -1.09   -1.79   -2.53   -3.27   -4.01   -4.71   -5.25   -5.46   -5.17   -4.29   -2.87   -1.05    1.00    3.17    5.51    8.12
+   340.0    0.00   -0.10   -0.49   -1.09   -1.81   -2.56   -3.33   -4.10   -4.83   -5.40   -5.64   -5.39   -4.57   -3.21   -1.46    0.51    2.65    4.99    7.63
+   345.0    0.00   -0.10   -0.50   -1.11   -1.83   -2.60   -3.40   -4.20   -4.97   -5.57   -5.85   -5.64   -4.87   -3.58   -1.90    0.03    2.14    4.51    7.21
+   350.0    0.00   -0.10   -0.50   -1.12   -1.86   -2.66   -3.48   -4.31   -5.11   -5.74   -6.06   -5.90   -5.19   -3.95   -2.33   -0.44    1.68    4.10    6.87
+   355.0    0.00   -0.10   -0.51   -1.14   -1.90   -2.72   -3.56   -4.42   -5.25   -5.92   -6.28   -6.16   -5.50   -4.32   -2.73   -0.86    1.28    3.76    6.62
+   360.0    0.00   -0.11   -0.53   -1.17   -1.94   -2.78   -3.65   -4.54   -5.39   -6.09   -6.49   -6.42   -5.80   -4.66   -3.10   -1.22    0.96    3.50    6.44
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.29      0.18     84.62                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.06   -0.24   -0.55   -1.00   -1.54   -2.11   -2.65   -3.08   -3.38   -3.52   -3.50   -3.28   -2.78   -1.85   -0.34    1.80    4.48    7.33
+     0.0    0.00   -0.06   -0.22   -0.50   -0.90   -1.42   -2.00   -2.55   -2.98   -3.25   -3.34   -3.25   -3.01   -2.56   -1.78   -0.49    1.49    4.17    7.32
+     5.0    0.00   -0.05   -0.21   -0.50   -0.91   -1.44   -2.02   -2.57   -3.01   -3.28   -3.38   -3.30   -3.08   -2.65   -1.88   -0.59    1.40    4.09    7.19
+    10.0    0.00   -0.05   -0.21   -0.50   -0.92   -1.45   -2.04   -2.60   -3.04   -3.32   -3.42   -3.36   -3.15   -2.73   -1.96   -0.66    1.35    4.03    7.06
+    15.0    0.00   -0.05   -0.21   -0.51   -0.94   -1.48   -2.07   -2.63   -3.08   -3.36   -3.48   -3.43   -3.23   -2.81   -2.03   -0.70    1.33    4.01    6.96
+    20.0    0.00   -0.05   -0.21   -0.51   -0.95   -1.50   -2.10   -2.66   -3.11   -3.41   -3.53   -3.50   -3.31   -2.88   -2.08   -0.71    1.35    4.03    6.88
+    25.0    0.00   -0.05   -0.22   -0.52   -0.97   -1.52   -2.13   -2.69   -3.15   -3.45   -3.59   -3.58   -3.39   -2.95   -2.12   -0.70    1.40    4.07    6.84
+    30.0    0.00   -0.05   -0.22   -0.53   -0.99   -1.55   -2.15   -2.72   -3.18   -3.49   -3.65   -3.65   -3.47   -3.02   -2.14   -0.67    1.48    4.15    6.83
+    35.0    0.00   -0.04   -0.22   -0.54   -1.00   -1.57   -2.17   -2.74   -3.20   -3.52   -3.70   -3.72   -3.55   -3.08   -2.16   -0.62    1.57    4.24    6.86
+    40.0    0.00   -0.04   -0.22   -0.55   -1.02   -1.59   -2.19   -2.75   -3.21   -3.55   -3.74   -3.78   -3.62   -3.13   -2.17   -0.58    1.65    4.34    6.92
+    45.0    0.00   -0.04   -0.22   -0.56   -1.03   -1.60   -2.20   -2.76   -3.22   -3.56   -3.77   -3.83   -3.67   -3.18   -2.18   -0.55    1.73    4.43    7.01
+    50.0    0.00   -0.04   -0.23   -0.56   -1.04   -1.61   -2.21   -2.76   -3.22   -3.57   -3.79   -3.87   -3.72   -3.22   -2.20   -0.54    1.77    4.51    7.12
+    55.0    0.00   -0.04   -0.23   -0.57   -1.05   -1.62   -2.21   -2.75   -3.21   -3.56   -3.79   -3.88   -3.75   -3.25   -2.22   -0.54    1.80    4.56    7.23
+    60.0    0.00   -0.04   -0.23   -0.57   -1.05   -1.62   -2.21   -2.75   -3.20   -3.54   -3.78   -3.88   -3.76   -3.26   -2.24   -0.55    1.79    4.59    7.34
+    65.0    0.00   -0.04   -0.23   -0.57   -1.06   -1.62   -2.20   -2.73   -3.18   -3.52   -3.76   -3.87   -3.75   -3.27   -2.26   -0.58    1.77    4.59    7.45
+    70.0    0.00   -0.04   -0.23   -0.57   -1.06   -1.62   -2.20   -2.72   -3.16   -3.50   -3.73   -3.83   -3.73   -3.26   -2.27   -0.61    1.73    4.59    7.55
+    75.0    0.00   -0.04   -0.23   -0.57   -1.06   -1.62   -2.19   -2.71   -3.14   -3.47   -3.69   -3.79   -3.68   -3.23   -2.27   -0.64    1.69    4.57    7.65
+    80.0    0.00   -0.04   -0.22   -0.57   -1.05   -1.61   -2.19   -2.70   -3.12   -3.43   -3.65   -3.74   -3.63   -3.19   -2.25   -0.64    1.67    4.56    7.73
+    85.0    0.00   -0.04   -0.22   -0.57   -1.05   -1.61   -2.18   -2.69   -3.10   -3.40   -3.60   -3.68   -3.57   -3.14   -2.21   -0.63    1.66    4.57    7.79
+    90.0    0.00   -0.04   -0.22   -0.56   -1.04   -1.60   -2.17   -2.68   -3.09   -3.38   -3.56   -3.62   -3.50   -3.07   -2.15   -0.59    1.69    4.59    7.85
+    95.0    0.00   -0.03   -0.22   -0.55   -1.03   -1.59   -2.16   -2.67   -3.07   -3.35   -3.52   -3.56   -3.43   -2.99   -2.07   -0.51    1.75    4.64    7.90
+   100.0    0.00   -0.03   -0.21   -0.55   -1.02   -1.58   -2.15   -2.66   -3.06   -3.33   -3.48   -3.51   -3.36   -2.90   -1.97   -0.42    1.84    4.70    7.93
+   105.0    0.00   -0.03   -0.21   -0.54   -1.01   -1.56   -2.14   -2.65   -3.04   -3.31   -3.45   -3.46   -3.29   -2.81   -1.87   -0.30    1.94    4.77    7.96
+   110.0    0.00   -0.03   -0.21   -0.53   -0.99   -1.55   -2.12   -2.63   -3.03   -3.29   -3.42   -3.42   -3.23   -2.73   -1.76   -0.18    2.06    4.85    7.96
+   115.0    0.00   -0.03   -0.20   -0.52   -0.98   -1.53   -2.10   -2.62   -3.01   -3.27   -3.40   -3.39   -3.18   -2.65   -1.66   -0.06    2.17    4.92    7.95
+   120.0    0.00   -0.03   -0.20   -0.51   -0.97   -1.51   -2.08   -2.60   -3.00   -3.26   -3.38   -3.36   -3.13   -2.58   -1.56    0.05    2.27    4.97    7.92
+   125.0    0.00   -0.03   -0.20   -0.51   -0.95   -1.50   -2.06   -2.58   -2.98   -3.24   -3.37   -3.34   -3.10   -2.53   -1.49    0.13    2.34    4.99    7.87
+   130.0    0.00   -0.03   -0.19   -0.50   -0.94   -1.48   -2.04   -2.55   -2.96   -3.23   -3.35   -3.32   -3.07   -2.49   -1.43    0.19    2.37    4.98    7.80
+   135.0    0.00   -0.03   -0.19   -0.49   -0.93   -1.46   -2.02   -2.53   -2.94   -3.21   -3.34   -3.31   -3.05   -2.46   -1.40    0.21    2.37    4.94    7.72
+   140.0    0.00   -0.03   -0.19   -0.49   -0.92   -1.45   -2.00   -2.51   -2.92   -3.20   -3.33   -3.30   -3.04   -2.45   -1.39    0.21    2.33    4.87    7.62
+   145.0    0.00   -0.03   -0.19   -0.48   -0.91   -1.43   -1.99   -2.50   -2.91   -3.19   -3.32   -3.29   -3.04   -2.44   -1.40    0.18    2.27    4.77    7.52
+   150.0    0.00   -0.03   -0.19   -0.48   -0.91   -1.42   -1.97   -2.48   -2.90   -3.18   -3.32   -3.29   -3.03   -2.45   -1.42    0.13    2.19    4.67    7.42
+   155.0    0.00   -0.04   -0.19   -0.48   -0.90   -1.42   -1.96   -2.47   -2.89   -3.18   -3.32   -3.29   -3.04   -2.46   -1.45    0.07    2.10    4.56    7.33
+   160.0    0.00   -0.04   -0.19   -0.48   -0.90   -1.41   -1.96   -2.47   -2.89   -3.18   -3.32   -3.30   -3.05   -2.48   -1.49    0.00    2.01    4.46    7.24
+   165.0    0.00   -0.04   -0.20   -0.49   -0.90   -1.41   -1.96   -2.47   -2.89   -3.19   -3.33   -3.31   -3.06   -2.50   -1.53   -0.06    1.92    4.37    7.16
+   170.0    0.00   -0.04   -0.20   -0.49   -0.91   -1.42   -1.97   -2.48   -2.91   -3.20   -3.34   -3.32   -3.07   -2.52   -1.57   -0.12    1.85    4.30    7.09
+   175.0    0.00   -0.04   -0.20   -0.49   -0.91   -1.42   -1.98   -2.50   -2.92   -3.22   -3.36   -3.33   -3.09   -2.55   -1.61   -0.17    1.79    4.24    7.02
+   180.0    0.00   -0.05   -0.21   -0.50   -0.92   -1.43   -1.99   -2.52   -2.95   -3.24   -3.39   -3.35   -3.11   -2.57   -1.65   -0.22    1.75    4.20    6.95
+   185.0    0.00   -0.05   -0.21   -0.51   -0.93   -1.45   -2.01   -2.54   -2.98   -3.28   -3.41   -3.37   -3.13   -2.60   -1.68   -0.27    1.71    4.17    6.89
+   190.0    0.00   -0.05   -0.22   -0.51   -0.93   -1.46   -2.03   -2.57   -3.01   -3.31   -3.44   -3.40   -3.15   -2.63   -1.72   -0.32    1.66    4.14    6.82
+   195.0    0.00   -0.06   -0.23   -0.52   -0.94   -1.47   -2.05   -2.60   -3.05   -3.35   -3.47   -3.42   -3.17   -2.66   -1.77   -0.37    1.62    4.10    6.74
+   200.0    0.00   -0.06   -0.23   -0.53   -0.95   -1.49   -2.07   -2.63   -3.09   -3.39   -3.50   -3.44   -3.19   -2.69   -1.82   -0.43    1.56    4.06    6.67
+   205.0    0.00   -0.06   -0.24   -0.54   -0.96   -1.50   -2.10   -2.66   -3.13   -3.42   -3.54   -3.47   -3.21   -2.72   -1.87   -0.49    1.50    4.01    6.60
+   210.0    0.00   -0.07   -0.24   -0.55   -0.97   -1.52   -2.12   -2.70   -3.16   -3.46   -3.57   -3.49   -3.23   -2.75   -1.92   -0.56    1.43    3.96    6.54
+   215.0    0.00   -0.07   -0.25   -0.55   -0.98   -1.53   -2.14   -2.72   -3.20   -3.50   -3.60   -3.51   -3.26   -2.79   -1.98   -0.64    1.36    3.91    6.50
+   220.0    0.00   -0.07   -0.26   -0.56   -0.99   -1.54   -2.15   -2.75   -3.23   -3.53   -3.62   -3.54   -3.29   -2.83   -2.04   -0.71    1.30    3.88    6.48
+   225.0    0.00   -0.08   -0.27   -0.57   -1.00   -1.55   -2.17   -2.77   -3.25   -3.55   -3.65   -3.56   -3.32   -2.87   -2.09   -0.77    1.25    3.86    6.50
+   230.0    0.00   -0.08   -0.27   -0.58   -1.01   -1.56   -2.18   -2.78   -3.27   -3.58   -3.67   -3.59   -3.35   -2.91   -2.14   -0.81    1.22    3.87    6.55
+   235.0    0.00   -0.08   -0.28   -0.59   -1.02   -1.57   -2.19   -2.79   -3.28   -3.59   -3.69   -3.62   -3.38   -2.95   -2.18   -0.84    1.22    3.91    6.64
+   240.0    0.00   -0.09   -0.29   -0.60   -1.03   -1.58   -2.19   -2.79   -3.28   -3.60   -3.71   -3.65   -3.42   -2.99   -2.21   -0.85    1.25    3.98    6.77
+   245.0    0.00   -0.09   -0.29   -0.61   -1.04   -1.59   -2.19   -2.79   -3.28   -3.60   -3.72   -3.67   -3.46   -3.03   -2.23   -0.84    1.30    4.08    6.92
+   250.0    0.00   -0.09   -0.30   -0.62   -1.05   -1.59   -2.19   -2.78   -3.27   -3.59   -3.73   -3.69   -3.49   -3.06   -2.23   -0.80    1.38    4.20    7.08
+   255.0    0.00   -0.09   -0.30   -0.62   -1.06   -1.60   -2.19   -2.77   -3.25   -3.58   -3.72   -3.71   -3.52   -3.08   -2.23   -0.75    1.48    4.34    7.25
+   260.0    0.00   -0.09   -0.31   -0.63   -1.07   -1.60   -2.19   -2.76   -3.23   -3.55   -3.72   -3.72   -3.54   -3.09   -2.21   -0.68    1.60    4.48    7.41
+   265.0    0.00   -0.10   -0.31   -0.64   -1.08   -1.61   -2.19   -2.74   -3.20   -3.53   -3.70   -3.71   -3.54   -3.09   -2.17   -0.60    1.71    4.61    7.55
+   270.0    0.00   -0.10   -0.31   -0.64   -1.09   -1.61   -2.18   -2.72   -3.18   -3.50   -3.67   -3.70   -3.53   -3.07   -2.12   -0.52    1.82    4.72    7.65
+   275.0    0.00   -0.10   -0.31   -0.65   -1.09   -1.62   -2.18   -2.71   -3.15   -3.46   -3.64   -3.67   -3.51   -3.03   -2.06   -0.42    1.93    4.81    7.73
+   280.0    0.00   -0.10   -0.31   -0.65   -1.09   -1.62   -2.17   -2.69   -3.12   -3.43   -3.60   -3.64   -3.47   -2.98   -1.99   -0.33    2.02    4.88    7.78
+   285.0    0.00   -0.10   -0.31   -0.65   -1.09   -1.62   -2.17   -2.68   -3.10   -3.39   -3.56   -3.59   -3.42   -2.91   -1.90   -0.23    2.10    4.92    7.79
+   290.0    0.00   -0.10   -0.31   -0.65   -1.09   -1.62   -2.16   -2.67   -3.08   -3.36   -3.52   -3.54   -3.35   -2.83   -1.80   -0.14    2.17    4.95    7.79
+   295.0    0.00   -0.09   -0.31   -0.64   -1.09   -1.61   -2.15   -2.65   -3.05   -3.33   -3.48   -3.48   -3.27   -2.73   -1.70   -0.05    2.23    4.95    7.78
+   300.0    0.00   -0.09   -0.30   -0.63   -1.08   -1.60   -2.14   -2.64   -3.04   -3.30   -3.43   -3.42   -3.19   -2.64   -1.60    0.04    2.27    4.95    7.76
+   305.0    0.00   -0.09   -0.30   -0.62   -1.06   -1.58   -2.13   -2.63   -3.02   -3.28   -3.40   -3.36   -3.11   -2.54   -1.50    0.11    2.31    4.94    7.75
+   310.0    0.00   -0.09   -0.29   -0.61   -1.05   -1.57   -2.11   -2.61   -3.00   -3.26   -3.36   -3.30   -3.03   -2.45   -1.42    0.17    2.33    4.92    7.75
+   315.0    0.00   -0.08   -0.28   -0.60   -1.03   -1.54   -2.09   -2.59   -2.99   -3.24   -3.33   -3.26   -2.97   -2.37   -1.35    0.21    2.33    4.90    7.75
+   320.0    0.00   -0.08   -0.27   -0.58   -1.01   -1.52   -2.07   -2.57   -2.97   -3.22   -3.31   -3.22   -2.91   -2.31   -1.30    0.23    2.31    4.87    7.76
+   325.0    0.00   -0.08   -0.26   -0.57   -0.98   -1.49   -2.04   -2.55   -2.96   -3.21   -3.29   -3.18   -2.87   -2.27   -1.28    0.22    2.27    4.83    7.77
+   330.0    0.00   -0.07   -0.25   -0.55   -0.96   -1.47   -2.02   -2.54   -2.95   -3.20   -3.27   -3.16   -2.85   -2.26   -1.29    0.18    2.20    4.77    7.77
+   335.0    0.00   -0.07   -0.25   -0.54   -0.94   -1.45   -2.00   -2.52   -2.94   -3.19   -3.27   -3.15   -2.84   -2.26   -1.33    0.10    2.11    4.70    7.75
+   340.0    0.00   -0.07   -0.24   -0.52   -0.93   -1.43   -1.99   -2.51   -2.94   -3.19   -3.26   -3.15   -2.85   -2.29   -1.39    0.01    2.00    4.61    7.71
+   345.0    0.00   -0.06   -0.23   -0.51   -0.91   -1.42   -1.98   -2.51   -2.94   -3.20   -3.27   -3.16   -2.87   -2.34   -1.47   -0.11    1.87    4.50    7.65
+   350.0    0.00   -0.06   -0.23   -0.50   -0.91   -1.41   -1.98   -2.52   -2.95   -3.21   -3.28   -3.18   -2.90   -2.41   -1.57   -0.24    1.74    4.39    7.56
+   355.0    0.00   -0.06   -0.22   -0.50   -0.90   -1.41   -1.98   -2.53   -2.96   -3.23   -3.31   -3.21   -2.95   -2.48   -1.68   -0.37    1.61    4.28    7.44
+   360.0    0.00   -0.06   -0.22   -0.50   -0.90   -1.42   -2.00   -2.55   -2.98   -3.25   -3.34   -3.25   -3.01   -2.56   -1.78   -0.49    1.49    4.17    7.32
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+LEIAT303        LEIC                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH              43    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+Number of Calibrated Antennas GPS:      043                 COMMENT             
+Number of Individual Calibrations GPS:  220                 COMMENT             
+   G01                                                      START OF FREQUENCY  
+     -0.47      0.55     61.64                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.18   -0.68   -1.39   -2.20   -2.99   -3.75   -4.45   -5.08   -5.55   -5.74   -5.49   -4.71   -3.38   -1.59    0.54    2.91    5.52    8.41
+     0.0    0.00   -0.14   -0.58   -1.23   -1.99   -2.79   -3.58   -4.38   -5.14   -5.75   -6.06   -5.90   -5.18   -3.90   -2.19   -0.18    2.08    4.64    7.62
+     5.0    0.00   -0.14   -0.59   -1.25   -2.03   -2.83   -3.64   -4.44   -5.21   -5.84   -6.17   -6.04   -5.34   -4.08   -2.37   -0.34    1.94    4.52    7.51
+    10.0    0.00   -0.14   -0.60   -1.28   -2.06   -2.87   -3.69   -4.50   -5.28   -5.92   -6.28   -6.17   -5.48   -4.23   -2.51   -0.47    1.84    4.44    7.44
+    15.0    0.00   -0.15   -0.61   -1.30   -2.09   -2.92   -3.74   -4.56   -5.34   -5.99   -6.36   -6.26   -5.60   -4.35   -2.63   -0.56    1.78    4.40    7.40
+    20.0    0.00   -0.15   -0.63   -1.32   -2.13   -2.96   -3.79   -4.60   -5.38   -6.04   -6.41   -6.33   -5.68   -4.43   -2.70   -0.61    1.75    4.40    7.39
+    25.0    0.00   -0.16   -0.64   -1.35   -2.16   -3.00   -3.83   -4.64   -5.41   -6.07   -6.44   -6.37   -5.72   -4.48   -2.73   -0.62    1.76    4.42    7.42
+    30.0    0.00   -0.16   -0.65   -1.37   -2.20   -3.04   -3.86   -4.66   -5.43   -6.07   -6.44   -6.37   -5.72   -4.47   -2.72   -0.59    1.80    4.47    7.47
+    35.0    0.00   -0.16   -0.66   -1.39   -2.22   -3.07   -3.89   -4.68   -5.43   -6.06   -6.41   -6.33   -5.68   -4.43   -2.67   -0.54    1.87    4.54    7.55
+    40.0    0.00   -0.17   -0.68   -1.41   -2.25   -3.09   -3.91   -4.69   -5.42   -6.02   -6.36   -6.26   -5.60   -4.35   -2.58   -0.45    1.96    4.63    7.64
+    45.0    0.00   -0.17   -0.69   -1.43   -2.27   -3.11   -3.92   -4.68   -5.39   -5.97   -6.29   -6.17   -5.49   -4.23   -2.46   -0.33    2.07    4.74    7.76
+    50.0    0.00   -0.18   -0.70   -1.44   -2.29   -3.13   -3.93   -4.67   -5.36   -5.91   -6.20   -6.06   -5.36   -4.08   -2.31   -0.18    2.21    4.87    7.88
+    55.0    0.00   -0.18   -0.70   -1.45   -2.30   -3.14   -3.92   -4.66   -5.32   -5.84   -6.10   -5.93   -5.21   -3.92   -2.14   -0.01    2.37    5.01    8.01
+    60.0    0.00   -0.18   -0.71   -1.46   -2.31   -3.14   -3.92   -4.63   -5.27   -5.77   -6.00   -5.79   -5.05   -3.74   -1.95    0.18    2.55    5.17    8.14
+    65.0    0.00   -0.19   -0.72   -1.47   -2.31   -3.14   -3.90   -4.60   -5.22   -5.69   -5.89   -5.66   -4.88   -3.55   -1.74    0.39    2.75    5.34    8.28
+    70.0    0.00   -0.19   -0.72   -1.47   -2.31   -3.13   -3.89   -4.57   -5.17   -5.62   -5.79   -5.52   -4.72   -3.36   -1.54    0.61    2.96    5.53    8.41
+    75.0    0.00   -0.19   -0.72   -1.47   -2.30   -3.12   -3.86   -4.53   -5.12   -5.54   -5.68   -5.40   -4.56   -3.18   -1.33    0.83    3.18    5.71    8.54
+    80.0    0.00   -0.19   -0.72   -1.47   -2.29   -3.10   -3.83   -4.49   -5.06   -5.47   -5.59   -5.27   -4.42   -3.01   -1.14    1.04    3.39    5.91    8.67
+    85.0    0.00   -0.20   -0.72   -1.46   -2.28   -3.08   -3.80   -4.45   -5.00   -5.39   -5.49   -5.16   -4.29   -2.85   -0.96    1.23    3.59    6.09    8.80
+    90.0    0.00   -0.20   -0.72   -1.45   -2.26   -3.05   -3.77   -4.40   -4.94   -5.32   -5.41   -5.06   -4.17   -2.72   -0.81    1.40    3.77    6.26    8.93
+    95.0    0.00   -0.20   -0.72   -1.44   -2.24   -3.02   -3.73   -4.35   -4.88   -5.25   -5.32   -4.97   -4.07   -2.61   -0.69    1.54    3.92    6.41    9.05
+   100.0    0.00   -0.20   -0.71   -1.43   -2.23   -2.99   -3.69   -4.30   -4.82   -5.18   -5.25   -4.88   -3.98   -2.52   -0.60    1.64    4.04    6.54    9.16
+   105.0    0.00   -0.20   -0.71   -1.42   -2.21   -2.96   -3.65   -4.26   -4.76   -5.11   -5.18   -4.81   -3.92   -2.46   -0.54    1.70    4.11    6.63    9.26
+   110.0    0.00   -0.20   -0.71   -1.41   -2.19   -2.94   -3.61   -4.21   -4.71   -5.05   -5.12   -4.76   -3.87   -2.43   -0.52    1.72    4.14    6.68    9.33
+   115.0    0.00   -0.20   -0.70   -1.40   -2.17   -2.91   -3.58   -4.17   -4.67   -5.01   -5.07   -4.72   -3.84   -2.41   -0.52    1.71    4.13    6.69    9.37
+   120.0    0.00   -0.20   -0.70   -1.40   -2.16   -2.89   -3.55   -4.14   -4.63   -4.97   -5.04   -4.69   -3.83   -2.42   -0.55    1.66    4.08    6.65    9.37
+   125.0    0.00   -0.20   -0.70   -1.39   -2.14   -2.87   -3.53   -4.12   -4.61   -4.95   -5.02   -4.69   -3.84   -2.46   -0.61    1.58    3.99    6.58    9.31
+   130.0    0.00   -0.20   -0.70   -1.38   -2.14   -2.86   -3.52   -4.11   -4.60   -4.95   -5.03   -4.70   -3.87   -2.50   -0.68    1.48    3.88    6.45    9.21
+   135.0    0.00   -0.20   -0.70   -1.38   -2.13   -2.86   -3.52   -4.11   -4.61   -4.96   -5.05   -4.74   -3.92   -2.57   -0.77    1.36    3.73    6.29    9.04
+   140.0    0.00   -0.20   -0.70   -1.38   -2.13   -2.86   -3.53   -4.13   -4.64   -5.00   -5.10   -4.79   -3.98   -2.66   -0.88    1.22    3.56    6.10    8.83
+   145.0    0.00   -0.20   -0.70   -1.38   -2.14   -2.87   -3.55   -4.15   -4.68   -5.05   -5.16   -4.87   -4.07   -2.76   -1.00    1.07    3.37    5.88    8.58
+   150.0    0.00   -0.21   -0.70   -1.39   -2.15   -2.89   -3.57   -4.19   -4.73   -5.12   -5.24   -4.96   -4.17   -2.87   -1.14    0.91    3.17    5.64    8.30
+   155.0    0.00   -0.21   -0.71   -1.40   -2.16   -2.91   -3.61   -4.24   -4.79   -5.20   -5.33   -5.06   -4.29   -3.00   -1.29    0.73    2.97    5.40    8.02
+   160.0    0.00   -0.21   -0.71   -1.41   -2.18   -2.94   -3.65   -4.30   -4.87   -5.29   -5.44   -5.18   -4.41   -3.14   -1.45    0.55    2.76    5.16    7.74
+   165.0    0.00   -0.21   -0.71   -1.42   -2.20   -2.97   -3.69   -4.36   -4.94   -5.38   -5.54   -5.30   -4.55   -3.30   -1.62    0.35    2.55    4.93    7.49
+   170.0    0.00   -0.21   -0.72   -1.43   -2.22   -3.01   -3.74   -4.42   -5.02   -5.47   -5.65   -5.43   -4.70   -3.46   -1.80    0.16    2.35    4.74    7.29
+   175.0    0.00   -0.21   -0.73   -1.44   -2.25   -3.04   -3.79   -4.49   -5.10   -5.57   -5.77   -5.55   -4.84   -3.62   -1.98   -0.02    2.18    4.58    7.14
+   180.0    0.00   -0.21   -0.73   -1.46   -2.27   -3.08   -3.84   -4.55   -5.18   -5.66   -5.87   -5.68   -4.99   -3.78   -2.15   -0.19    2.03    4.46    7.05
+   185.0    0.00   -0.21   -0.74   -1.47   -2.30   -3.12   -3.89   -4.62   -5.26   -5.75   -5.98   -5.80   -5.12   -3.93   -2.30   -0.33    1.92    4.39    7.03
+   190.0    0.00   -0.21   -0.74   -1.49   -2.32   -3.15   -3.94   -4.68   -5.33   -5.84   -6.08   -5.91   -5.24   -4.06   -2.43   -0.43    1.85    4.38    7.06
+   195.0    0.00   -0.21   -0.75   -1.50   -2.34   -3.19   -3.99   -4.74   -5.40   -5.92   -6.17   -6.01   -5.35   -4.16   -2.52   -0.50    1.83    4.41    7.14
+   200.0    0.00   -0.22   -0.75   -1.51   -2.37   -3.22   -4.03   -4.79   -5.47   -5.99   -6.25   -6.09   -5.42   -4.23   -2.57   -0.51    1.85    4.48    7.26
+   205.0    0.00   -0.22   -0.76   -1.52   -2.39   -3.25   -4.07   -4.84   -5.52   -6.06   -6.31   -6.15   -5.48   -4.26   -2.57   -0.48    1.92    4.59    7.40
+   210.0    0.00   -0.21   -0.76   -1.53   -2.40   -3.28   -4.11   -4.88   -5.57   -6.11   -6.36   -6.19   -5.49   -4.25   -2.53   -0.41    2.03    4.72    7.55
+   215.0    0.00   -0.21   -0.76   -1.54   -2.42   -3.30   -4.14   -4.92   -5.61   -6.15   -6.39   -6.20   -5.48   -4.21   -2.44   -0.29    2.17    4.87    7.71
+   220.0    0.00   -0.21   -0.76   -1.54   -2.43   -3.31   -4.16   -4.94   -5.64   -6.17   -6.40   -6.19   -5.43   -4.12   -2.32   -0.15    2.32    5.01    7.86
+   225.0    0.00   -0.21   -0.76   -1.55   -2.43   -3.32   -4.17   -4.96   -5.65   -6.17   -6.38   -6.15   -5.36   -4.01   -2.18    0.02    2.48    5.16    8.00
+   230.0    0.00   -0.21   -0.76   -1.54   -2.43   -3.32   -4.17   -4.95   -5.64   -6.15   -6.34   -6.08   -5.26   -3.88   -2.02    0.18    2.63    5.29    8.14
+   235.0    0.00   -0.21   -0.76   -1.54   -2.43   -3.32   -4.16   -4.94   -5.61   -6.11   -6.28   -5.99   -5.14   -3.73   -1.86    0.34    2.77    5.41    8.28
+   240.0    0.00   -0.20   -0.75   -1.53   -2.42   -3.30   -4.14   -4.91   -5.57   -6.04   -6.19   -5.88   -5.01   -3.59   -1.71    0.48    2.90    5.53    8.42
+   245.0    0.00   -0.20   -0.74   -1.52   -2.40   -3.28   -4.11   -4.86   -5.50   -5.96   -6.09   -5.76   -4.87   -3.44   -1.57    0.60    3.00    5.63    8.58
+   250.0    0.00   -0.20   -0.73   -1.51   -2.38   -3.25   -4.06   -4.80   -5.42   -5.86   -5.97   -5.63   -4.74   -3.32   -1.46    0.70    3.09    5.73    8.75
+   255.0    0.00   -0.19   -0.72   -1.49   -2.35   -3.21   -4.01   -4.72   -5.33   -5.74   -5.84   -5.50   -4.61   -3.20   -1.36    0.78    3.17    5.84    8.95
+   260.0    0.00   -0.19   -0.71   -1.47   -2.32   -3.16   -3.94   -4.64   -5.22   -5.62   -5.72   -5.37   -4.50   -3.11   -1.29    0.85    3.24    5.96    9.16
+   265.0    0.00   -0.18   -0.70   -1.44   -2.28   -3.11   -3.87   -4.55   -5.12   -5.50   -5.59   -5.26   -4.40   -3.03   -1.22    0.91    3.33    6.09    9.37
+   270.0    0.00   -0.18   -0.69   -1.42   -2.24   -3.06   -3.80   -4.46   -5.01   -5.39   -5.48   -5.16   -4.32   -2.97   -1.17    0.97    3.42    6.23    9.59
+   275.0    0.00   -0.17   -0.67   -1.39   -2.20   -3.00   -3.73   -4.37   -4.91   -5.29   -5.39   -5.08   -4.26   -2.92   -1.12    1.04    3.52    6.38    9.79
+   280.0    0.00   -0.17   -0.66   -1.36   -2.16   -2.94   -3.66   -4.29   -4.82   -5.20   -5.31   -5.01   -4.21   -2.88   -1.07    1.12    3.63    6.53    9.96
+   285.0    0.00   -0.16   -0.64   -1.34   -2.12   -2.89   -3.59   -4.21   -4.75   -5.13   -5.25   -4.96   -4.17   -2.83   -1.01    1.21    3.76    6.68   10.09
+   290.0    0.00   -0.15   -0.63   -1.31   -2.08   -2.83   -3.53   -4.15   -4.68   -5.07   -5.20   -4.93   -4.14   -2.79   -0.95    1.30    3.87    6.80   10.17
+   295.0    0.00   -0.15   -0.61   -1.28   -2.04   -2.78   -3.47   -4.09   -4.64   -5.04   -5.18   -4.91   -4.12   -2.75   -0.88    1.39    3.98    6.88   10.19
+   300.0    0.00   -0.14   -0.60   -1.26   -2.00   -2.74   -3.42   -4.05   -4.61   -5.02   -5.17   -4.90   -4.10   -2.72   -0.82    1.47    4.05    6.93   10.14
+   305.0    0.00   -0.14   -0.59   -1.23   -1.97   -2.70   -3.39   -4.02   -4.59   -5.02   -5.18   -4.91   -4.09   -2.69   -0.78    1.52    4.09    6.92   10.04
+   310.0    0.00   -0.14   -0.57   -1.21   -1.94   -2.67   -3.36   -4.01   -4.59   -5.03   -5.20   -4.92   -4.09   -2.67   -0.75    1.54    4.08    6.84    9.88
+   315.0    0.00   -0.13   -0.57   -1.20   -1.92   -2.65   -3.34   -4.00   -4.60   -5.06   -5.23   -4.95   -4.11   -2.68   -0.76    1.51    4.01    6.72    9.68
+   320.0    0.00   -0.13   -0.56   -1.19   -1.90   -2.63   -3.34   -4.01   -4.63   -5.10   -5.27   -4.99   -4.14   -2.71   -0.80    1.44    3.89    6.53    9.44
+   325.0    0.00   -0.13   -0.55   -1.18   -1.89   -2.62   -3.34   -4.03   -4.66   -5.15   -5.33   -5.05   -4.19   -2.77   -0.88    1.31    3.71    6.31    9.18
+   330.0    0.00   -0.13   -0.55   -1.17   -1.89   -2.63   -3.35   -4.06   -4.71   -5.21   -5.40   -5.12   -4.27   -2.86   -1.00    1.15    3.49    6.05    8.91
+   335.0    0.00   -0.13   -0.55   -1.17   -1.89   -2.64   -3.37   -4.10   -4.76   -5.28   -5.48   -5.22   -4.38   -2.98   -1.16    0.95    3.25    5.78    8.64
+   340.0    0.00   -0.13   -0.55   -1.18   -1.90   -2.65   -3.40   -4.14   -4.83   -5.36   -5.58   -5.33   -4.51   -3.14   -1.35    0.72    2.98    5.50    8.38
+   345.0    0.00   -0.13   -0.56   -1.19   -1.92   -2.68   -3.44   -4.19   -4.90   -5.45   -5.69   -5.46   -4.66   -3.31   -1.55    0.48    2.72    5.24    8.15
+   350.0    0.00   -0.13   -0.56   -1.20   -1.94   -2.71   -3.48   -4.25   -4.98   -5.55   -5.81   -5.60   -4.82   -3.51   -1.77    0.24    2.48    5.00    7.94
+   355.0    0.00   -0.13   -0.57   -1.21   -1.96   -2.75   -3.53   -4.32   -5.06   -5.65   -5.94   -5.75   -5.00   -3.70   -1.98    0.02    2.26    4.80    7.77
+   360.0    0.00   -0.14   -0.58   -1.23   -1.99   -2.79   -3.58   -4.38   -5.14   -5.75   -6.06   -5.90   -5.18   -3.90   -2.19   -0.18    2.08    4.64    7.62
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.07      0.15     86.06                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.06   -0.24   -0.55   -1.00   -1.55   -2.13   -2.65   -3.06   -3.32   -3.44   -3.43   -3.25   -2.77   -1.84   -0.29    1.91    4.57    7.23
+     0.0    0.00   -0.06   -0.24   -0.54   -0.98   -1.52   -2.10   -2.63   -3.02   -3.26   -3.35   -3.32   -3.15   -2.73   -1.88   -0.39    1.82    4.58    7.40
+     5.0    0.00   -0.06   -0.24   -0.54   -0.98   -1.53   -2.12   -2.65   -3.05   -3.29   -3.38   -3.36   -3.20   -2.79   -1.95   -0.46    1.76    4.52    7.31
+    10.0    0.00   -0.06   -0.24   -0.54   -0.99   -1.55   -2.14   -2.67   -3.08   -3.32   -3.42   -3.40   -3.25   -2.85   -2.00   -0.50    1.72    4.47    7.22
+    15.0    0.00   -0.06   -0.23   -0.54   -1.00   -1.56   -2.16   -2.70   -3.11   -3.35   -3.46   -3.44   -3.29   -2.89   -2.03   -0.52    1.71    4.45    7.14
+    20.0    0.00   -0.06   -0.23   -0.55   -1.00   -1.57   -2.17   -2.72   -3.13   -3.39   -3.50   -3.49   -3.34   -2.92   -2.05   -0.51    1.73    4.44    7.07
+    25.0    0.00   -0.06   -0.23   -0.55   -1.01   -1.58   -2.19   -2.74   -3.16   -3.42   -3.54   -3.53   -3.38   -2.95   -2.05   -0.49    1.76    4.45    7.03
+    30.0    0.00   -0.06   -0.23   -0.55   -1.02   -1.59   -2.20   -2.76   -3.19   -3.46   -3.58   -3.58   -3.41   -2.97   -2.04   -0.45    1.81    4.49    7.01
+    35.0    0.00   -0.06   -0.23   -0.55   -1.02   -1.60   -2.22   -2.78   -3.21   -3.49   -3.62   -3.62   -3.45   -2.99   -2.03   -0.41    1.86    4.53    7.03
+    40.0    0.00   -0.05   -0.23   -0.56   -1.02   -1.61   -2.22   -2.79   -3.23   -3.52   -3.66   -3.66   -3.49   -3.01   -2.02   -0.38    1.91    4.58    7.06
+    45.0    0.00   -0.05   -0.23   -0.56   -1.03   -1.61   -2.23   -2.80   -3.24   -3.54   -3.69   -3.70   -3.52   -3.03   -2.02   -0.36    1.95    4.62    7.11
+    50.0    0.00   -0.05   -0.23   -0.56   -1.03   -1.61   -2.23   -2.80   -3.25   -3.55   -3.71   -3.73   -3.55   -3.05   -2.03   -0.36    1.96    4.65    7.17
+    55.0    0.00   -0.05   -0.23   -0.56   -1.03   -1.61   -2.23   -2.79   -3.25   -3.56   -3.73   -3.75   -3.58   -3.07   -2.05   -0.37    1.95    4.66    7.22
+    60.0    0.00   -0.05   -0.23   -0.56   -1.03   -1.60   -2.22   -2.79   -3.24   -3.55   -3.73   -3.76   -3.59   -3.09   -2.07   -0.40    1.92    4.63    7.25
+    65.0    0.00   -0.05   -0.23   -0.55   -1.02   -1.60   -2.21   -2.77   -3.22   -3.54   -3.72   -3.75   -3.60   -3.10   -2.10   -0.44    1.87    4.59    7.26
+    70.0    0.00   -0.05   -0.23   -0.55   -1.02   -1.59   -2.19   -2.75   -3.20   -3.51   -3.69   -3.74   -3.58   -3.10   -2.12   -0.49    1.80    4.53    7.23
+    75.0    0.00   -0.05   -0.23   -0.55   -1.01   -1.58   -2.18   -2.73   -3.17   -3.48   -3.66   -3.70   -3.56   -3.09   -2.13   -0.52    1.74    4.45    7.19
+    80.0    0.00   -0.05   -0.22   -0.54   -1.00   -1.56   -2.16   -2.70   -3.14   -3.44   -3.61   -3.66   -3.51   -3.06   -2.12   -0.55    1.69    4.38    7.12
+    85.0    0.00   -0.05   -0.22   -0.54   -0.99   -1.55   -2.14   -2.68   -3.11   -3.40   -3.56   -3.60   -3.46   -3.01   -2.09   -0.55    1.66    4.32    7.05
+    90.0    0.00   -0.04   -0.22   -0.53   -0.99   -1.54   -2.12   -2.65   -3.07   -3.36   -3.51   -3.54   -3.39   -2.95   -2.04   -0.52    1.65    4.29    6.99
+    95.0    0.00   -0.04   -0.22   -0.53   -0.98   -1.52   -2.10   -2.62   -3.04   -3.31   -3.46   -3.48   -3.32   -2.88   -1.98   -0.47    1.69    4.30    6.96
+   100.0    0.00   -0.04   -0.21   -0.52   -0.97   -1.51   -2.08   -2.60   -3.01   -3.27   -3.41   -3.41   -3.25   -2.80   -1.89   -0.39    1.75    4.34    6.95
+   105.0    0.00   -0.04   -0.21   -0.52   -0.96   -1.49   -2.06   -2.58   -2.98   -3.24   -3.36   -3.36   -3.18   -2.72   -1.81   -0.30    1.84    4.41    6.98
+   110.0    0.00   -0.04   -0.21   -0.51   -0.95   -1.48   -2.04   -2.56   -2.96   -3.21   -3.33   -3.31   -3.12   -2.64   -1.72   -0.20    1.95    4.51    7.05
+   115.0    0.00   -0.04   -0.20   -0.50   -0.94   -1.47   -2.03   -2.54   -2.94   -3.19   -3.30   -3.27   -3.07   -2.58   -1.64   -0.10    2.06    4.63    7.15
+   120.0    0.00   -0.04   -0.20   -0.50   -0.93   -1.46   -2.02   -2.53   -2.92   -3.17   -3.28   -3.24   -3.03   -2.53   -1.57   -0.02    2.16    4.75    7.27
+   125.0    0.00   -0.04   -0.20   -0.49   -0.92   -1.45   -2.01   -2.51   -2.91   -3.16   -3.26   -3.22   -3.01   -2.50   -1.53    0.05    2.25    4.86    7.40
+   130.0    0.00   -0.04   -0.20   -0.49   -0.91   -1.44   -2.00   -2.51   -2.90   -3.15   -3.25   -3.22   -2.99   -2.48   -1.50    0.08    2.30    4.94    7.51
+   135.0    0.00   -0.04   -0.19   -0.49   -0.91   -1.43   -1.99   -2.50   -2.90   -3.15   -3.25   -3.21   -2.99   -2.48   -1.50    0.09    2.33    5.00    7.61
+   140.0    0.00   -0.04   -0.19   -0.48   -0.91   -1.43   -1.99   -2.50   -2.89   -3.14   -3.25   -3.22   -3.00   -2.49   -1.52    0.07    2.32    5.01    7.66
+   145.0    0.00   -0.04   -0.19   -0.48   -0.91   -1.43   -1.99   -2.50   -2.90   -3.15   -3.25   -3.22   -3.02   -2.52   -1.55    0.03    2.28    4.98    7.67
+   150.0    0.00   -0.04   -0.19   -0.48   -0.91   -1.43   -1.99   -2.50   -2.90   -3.15   -3.26   -3.23   -3.03   -2.54   -1.59   -0.02    2.21    4.92    7.64
+   155.0    0.00   -0.04   -0.19   -0.48   -0.91   -1.44   -2.00   -2.51   -2.91   -3.16   -3.27   -3.24   -3.05   -2.57   -1.64   -0.08    2.14    4.84    7.56
+   160.0    0.00   -0.04   -0.19   -0.49   -0.92   -1.45   -2.01   -2.52   -2.92   -3.16   -3.27   -3.25   -3.07   -2.60   -1.68   -0.14    2.05    4.73    7.45
+   165.0    0.00   -0.04   -0.20   -0.49   -0.92   -1.46   -2.02   -2.53   -2.93   -3.17   -3.28   -3.26   -3.08   -2.62   -1.71   -0.20    1.98    4.63    7.33
+   170.0    0.00   -0.04   -0.20   -0.50   -0.93   -1.47   -2.04   -2.55   -2.94   -3.19   -3.29   -3.28   -3.10   -2.64   -1.74   -0.24    1.91    4.53    7.19
+   175.0    0.00   -0.04   -0.20   -0.50   -0.94   -1.48   -2.05   -2.57   -2.96   -3.20   -3.31   -3.29   -3.11   -2.66   -1.77   -0.28    1.85    4.44    7.06
+   180.0    0.00   -0.04   -0.21   -0.51   -0.95   -1.49   -2.07   -2.58   -2.98   -3.22   -3.32   -3.30   -3.12   -2.67   -1.78   -0.30    1.81    4.37    6.94
+   185.0    0.00   -0.04   -0.21   -0.51   -0.96   -1.51   -2.09   -2.60   -2.99   -3.23   -3.34   -3.32   -3.14   -2.69   -1.80   -0.32    1.78    4.31    6.85
+   190.0    0.00   -0.05   -0.21   -0.52   -0.97   -1.52   -2.10   -2.62   -3.01   -3.25   -3.35   -3.33   -3.16   -2.71   -1.82   -0.34    1.76    4.27    6.78
+   195.0    0.00   -0.05   -0.22   -0.53   -0.98   -1.54   -2.12   -2.64   -3.03   -3.27   -3.37   -3.35   -3.18   -2.73   -1.84   -0.36    1.73    4.24    6.74
+   200.0    0.00   -0.05   -0.22   -0.54   -0.99   -1.55   -2.13   -2.65   -3.04   -3.28   -3.39   -3.37   -3.20   -2.76   -1.87   -0.39    1.71    4.22    6.72
+   205.0    0.00   -0.05   -0.23   -0.54   -1.00   -1.56   -2.14   -2.67   -3.06   -3.30   -3.40   -3.39   -3.23   -2.79   -1.91   -0.42    1.68    4.20    6.71
+   210.0    0.00   -0.05   -0.23   -0.55   -1.01   -1.57   -2.15   -2.68   -3.07   -3.31   -3.42   -3.41   -3.25   -2.83   -1.95   -0.47    1.64    4.17    6.71
+   215.0    0.00   -0.06   -0.24   -0.56   -1.02   -1.58   -2.16   -2.69   -3.08   -3.32   -3.44   -3.44   -3.28   -2.86   -1.99   -0.52    1.59    4.15    6.72
+   220.0    0.00   -0.06   -0.24   -0.56   -1.02   -1.59   -2.17   -2.70   -3.09   -3.34   -3.46   -3.46   -3.31   -2.90   -2.04   -0.57    1.55    4.12    6.73
+   225.0    0.00   -0.06   -0.25   -0.57   -1.03   -1.59   -2.18   -2.71   -3.10   -3.35   -3.48   -3.48   -3.34   -2.94   -2.08   -0.62    1.50    4.10    6.75
+   230.0    0.00   -0.06   -0.25   -0.58   -1.04   -1.60   -2.19   -2.71   -3.12   -3.37   -3.50   -3.51   -3.37   -2.97   -2.12   -0.65    1.47    4.09    6.78
+   235.0    0.00   -0.07   -0.25   -0.58   -1.04   -1.60   -2.19   -2.72   -3.13   -3.39   -3.52   -3.53   -3.40   -3.00   -2.15   -0.68    1.45    4.09    6.82
+   240.0    0.00   -0.07   -0.26   -0.59   -1.05   -1.61   -2.20   -2.73   -3.14   -3.41   -3.54   -3.56   -3.42   -3.02   -2.16   -0.69    1.46    4.11    6.87
+   245.0    0.00   -0.07   -0.26   -0.59   -1.05   -1.61   -2.20   -2.74   -3.15   -3.42   -3.56   -3.58   -3.45   -3.03   -2.17   -0.68    1.48    4.15    6.94
+   250.0    0.00   -0.07   -0.27   -0.60   -1.06   -1.62   -2.21   -2.74   -3.16   -3.44   -3.58   -3.60   -3.46   -3.04   -2.16   -0.66    1.52    4.22    7.03
+   255.0    0.00   -0.07   -0.27   -0.60   -1.06   -1.62   -2.21   -2.75   -3.17   -3.45   -3.60   -3.62   -3.47   -3.04   -2.14   -0.61    1.59    4.30    7.13
+   260.0    0.00   -0.07   -0.27   -0.60   -1.07   -1.62   -2.21   -2.75   -3.17   -3.46   -3.61   -3.63   -3.47   -3.03   -2.11   -0.56    1.66    4.40    7.24
+   265.0    0.00   -0.07   -0.27   -0.61   -1.07   -1.62   -2.21   -2.75   -3.17   -3.46   -3.61   -3.63   -3.47   -3.00   -2.07   -0.50    1.75    4.50    7.35
+   270.0    0.00   -0.08   -0.28   -0.61   -1.07   -1.62   -2.21   -2.74   -3.16   -3.45   -3.60   -3.62   -3.45   -2.97   -2.02   -0.43    1.84    4.60    7.45
+   275.0    0.00   -0.08   -0.28   -0.61   -1.07   -1.62   -2.20   -2.73   -3.15   -3.44   -3.58   -3.59   -3.42   -2.93   -1.96   -0.35    1.92    4.69    7.54
+   280.0    0.00   -0.08   -0.28   -0.61   -1.06   -1.61   -2.19   -2.72   -3.13   -3.41   -3.56   -3.56   -3.37   -2.88   -1.90   -0.28    2.00    4.77    7.60
+   285.0    0.00   -0.08   -0.28   -0.61   -1.06   -1.61   -2.18   -2.70   -3.11   -3.38   -3.52   -3.52   -3.32   -2.81   -1.83   -0.21    2.07    4.83    7.64
+   290.0    0.00   -0.08   -0.27   -0.60   -1.06   -1.60   -2.16   -2.68   -3.08   -3.35   -3.48   -3.46   -3.26   -2.74   -1.75   -0.13    2.14    4.88    7.66
+   295.0    0.00   -0.08   -0.27   -0.60   -1.05   -1.59   -2.15   -2.66   -3.06   -3.31   -3.43   -3.40   -3.19   -2.67   -1.67   -0.06    2.19    4.91    7.66
+   300.0    0.00   -0.08   -0.27   -0.59   -1.04   -1.57   -2.13   -2.64   -3.03   -3.28   -3.38   -3.35   -3.12   -2.59   -1.60    0.00    2.23    4.92    7.64
+   305.0    0.00   -0.08   -0.27   -0.59   -1.03   -1.56   -2.12   -2.62   -3.00   -3.24   -3.34   -3.29   -3.05   -2.52   -1.53    0.05    2.27    4.93    7.62
+   310.0    0.00   -0.07   -0.27   -0.58   -1.02   -1.55   -2.10   -2.60   -2.98   -3.21   -3.30   -3.24   -2.99   -2.46   -1.47    0.10    2.29    4.93    7.60
+   315.0    0.00   -0.07   -0.26   -0.58   -1.01   -1.54   -2.09   -2.58   -2.96   -3.19   -3.26   -3.20   -2.94   -2.41   -1.43    0.13    2.30    4.92    7.58
+   320.0    0.00   -0.07   -0.26   -0.57   -1.00   -1.53   -2.07   -2.57   -2.94   -3.17   -3.24   -3.17   -2.91   -2.38   -1.41    0.14    2.30    4.91    7.57
+   325.0    0.00   -0.07   -0.26   -0.56   -0.99   -1.52   -2.07   -2.56   -2.94   -3.16   -3.23   -3.15   -2.89   -2.36   -1.41    0.13    2.28    4.90    7.57
+   330.0    0.00   -0.07   -0.25   -0.56   -0.99   -1.51   -2.06   -2.56   -2.93   -3.16   -3.22   -3.15   -2.90   -2.38   -1.43    0.10    2.25    4.88    7.58
+   335.0    0.00   -0.07   -0.25   -0.55   -0.98   -1.51   -2.06   -2.56   -2.94   -3.16   -3.23   -3.16   -2.91   -2.41   -1.48    0.04    2.20    4.86    7.58
+   340.0    0.00   -0.07   -0.25   -0.55   -0.98   -1.50   -2.06   -2.57   -2.95   -3.17   -3.24   -3.18   -2.95   -2.46   -1.54   -0.03    2.14    4.82    7.58
+   345.0    0.00   -0.07   -0.24   -0.55   -0.98   -1.50   -2.07   -2.58   -2.96   -3.19   -3.26   -3.20   -2.99   -2.52   -1.62   -0.12    2.06    4.77    7.56
+   350.0    0.00   -0.07   -0.24   -0.54   -0.98   -1.51   -2.08   -2.59   -2.98   -3.21   -3.29   -3.24   -3.04   -2.59   -1.71   -0.21    1.98    4.71    7.53
+   355.0    0.00   -0.06   -0.24   -0.54   -0.98   -1.51   -2.09   -2.61   -3.00   -3.23   -3.32   -3.28   -3.09   -2.66   -1.80   -0.31    1.89    4.65    7.47
+   360.0    0.00   -0.06   -0.24   -0.54   -0.98   -1.52   -2.10   -2.63   -3.02   -3.26   -3.35   -3.32   -3.15   -2.73   -1.88   -0.39    1.82    4.58    7.40
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+LEIAT502        NONE                                        TYPE / SERIAL NO    
+FIELD               NGS                      2    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.88      1.63     43.65                              NORTH / EAST / UP   
+   NOAZI    0.00    1.27    2.00    2.27    2.08    1.78    1.44    1.11    0.93    0.89    1.04    1.51    2.07    2.55    3.22    3.99    4.77
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -1.48      1.21     57.75                              NORTH / EAST / UP   
+   NOAZI    0.00   -1.33   -2.01   -2.38   -2.39   -2.28   -2.29   -2.17   -2.21   -2.31   -2.45   -2.46   -2.43   -2.33   -2.43   -2.21   -1.85
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+LEIAT503        NONE                                        TYPE / SERIAL NO    
+FIELD               NGS                      4    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      1.58     -0.87     60.05                              NORTH / EAST / UP   
+   NOAZI    0.00    1.17    1.50    1.27    0.58   -0.42   -1.56   -2.49   -3.17   -3.41   -3.36   -2.89   -2.03   -0.85    0.72    2.69    5.17
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      1.72      0.21     86.25                              NORTH / EAST / UP   
+   NOAZI    0.00    0.47    0.59    0.42    0.11   -0.28   -0.89   -1.47   -2.01   -2.31   -2.55   -2.36   -1.83   -1.13   -0.33    0.59    1.85
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+LEIAT503        LEIC                                        TYPE / SERIAL NO    
+FIELD               NGS                      4    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      1.28     -0.47     60.55                              NORTH / EAST / UP   
+   NOAZI    0.00    0.77    1.00    0.77    0.08   -0.82   -1.76   -2.69   -3.27   -3.61   -3.56   -3.19   -2.33   -1.25    0.42    2.49    5.27
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      1.62     -0.39     83.25                              NORTH / EAST / UP   
+   NOAZI    0.00    0.07   -0.01   -0.18   -0.49   -0.78   -1.29   -1.67   -2.11   -2.41   -2.45   -2.26   -1.83   -1.13   -0.33    0.69    2.05
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+LEIAT504        NONE                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH              25    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+Number of Calibrated Antennas GPS:      025                 COMMENT             
+Number of Individual Calibrations GPS:  050                 COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.30      0.34     91.34                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.24   -0.94   -2.02   -3.35   -4.78   -6.14   -7.26   -8.02   -8.34   -8.20   -7.60   -6.51   -4.91   -2.67    0.33    4.19    8.86   14.00
+     0.0    0.00   -0.24   -0.95   -2.07   -3.44   -4.91   -6.29   -7.41   -8.13   -8.41   -8.22   -7.59   -6.50   -4.90   -2.67    0.36    4.26    8.94   13.93
+     5.0    0.00   -0.24   -0.96   -2.06   -3.44   -4.90   -6.28   -7.40   -8.14   -8.42   -8.23   -7.59   -6.49   -4.89   -2.66    0.34    4.23    8.89   13.92
+    10.0    0.00   -0.24   -0.96   -2.06   -3.43   -4.89   -6.27   -7.39   -8.14   -8.43   -8.24   -7.59   -6.49   -4.88   -2.66    0.33    4.18    8.85   13.92
+    15.0    0.00   -0.24   -0.96   -2.06   -3.42   -4.87   -6.25   -7.38   -8.14   -8.44   -8.26   -7.61   -6.49   -4.88   -2.66    0.31    4.15    8.81   13.93
+    20.0    0.00   -0.24   -0.95   -2.05   -3.40   -4.86   -6.23   -7.37   -8.14   -8.45   -8.28   -7.62   -6.50   -4.88   -2.66    0.31    4.13    8.79   13.95
+    25.0    0.00   -0.25   -0.95   -2.04   -3.39   -4.84   -6.21   -7.36   -8.14   -8.47   -8.30   -7.65   -6.51   -4.87   -2.65    0.31    4.13    8.79   13.98
+    30.0    0.00   -0.25   -0.95   -2.04   -3.38   -4.82   -6.19   -7.35   -8.14   -8.48   -8.32   -7.67   -6.52   -4.87   -2.63    0.34    4.16    8.82   14.04
+    35.0    0.00   -0.25   -0.95   -2.03   -3.36   -4.80   -6.17   -7.33   -8.13   -8.48   -8.33   -7.68   -6.53   -4.87   -2.61    0.37    4.20    8.87   14.10
+    40.0    0.00   -0.25   -0.95   -2.03   -3.35   -4.78   -6.15   -7.31   -8.12   -8.48   -8.34   -7.69   -6.54   -4.86   -2.58    0.42    4.26    8.94   14.18
+    45.0    0.00   -0.25   -0.95   -2.02   -3.34   -4.76   -6.13   -7.28   -8.10   -8.47   -8.34   -7.69   -6.53   -4.84   -2.55    0.47    4.33    9.02   14.27
+    50.0    0.00   -0.25   -0.95   -2.01   -3.33   -4.74   -6.10   -7.26   -8.07   -8.44   -8.32   -7.68   -6.52   -4.82   -2.51    0.52    4.39    9.09   14.37
+    55.0    0.00   -0.25   -0.95   -2.01   -3.32   -4.72   -6.08   -7.23   -8.04   -8.41   -8.29   -7.65   -6.50   -4.80   -2.48    0.56    4.45    9.16   14.45
+    60.0    0.00   -0.25   -0.95   -2.01   -3.31   -4.71   -6.05   -7.19   -8.00   -8.37   -8.25   -7.62   -6.47   -4.78   -2.46    0.59    4.49    9.22   14.53
+    65.0    0.00   -0.25   -0.95   -2.01   -3.30   -4.70   -6.03   -7.16   -7.96   -8.32   -8.20   -7.58   -6.44   -4.75   -2.44    0.60    4.50    9.25   14.58
+    70.0    0.00   -0.25   -0.95   -2.01   -3.30   -4.69   -6.02   -7.14   -7.92   -8.28   -8.15   -7.53   -6.40   -4.73   -2.44    0.60    4.50    9.25   14.60
+    75.0    0.00   -0.26   -0.95   -2.01   -3.30   -4.68   -6.00   -7.11   -7.89   -8.23   -8.11   -7.49   -6.37   -4.72   -2.44    0.58    4.48    9.22   14.58
+    80.0    0.00   -0.26   -0.95   -2.01   -3.30   -4.68   -5.99   -7.09   -7.86   -8.20   -8.07   -7.46   -6.35   -4.71   -2.46    0.55    4.43    9.17   14.52
+    85.0    0.00   -0.26   -0.96   -2.01   -3.30   -4.68   -5.99   -7.08   -7.84   -8.17   -8.04   -7.44   -6.34   -4.72   -2.48    0.51    4.38    9.09   14.43
+    90.0    0.00   -0.26   -0.96   -2.01   -3.31   -4.68   -5.99   -7.08   -7.83   -8.16   -8.03   -7.43   -6.35   -4.74   -2.51    0.47    4.31    9.01   14.30
+    95.0    0.00   -0.26   -0.96   -2.02   -3.31   -4.69   -6.00   -7.09   -7.84   -8.17   -8.04   -7.45   -6.37   -4.77   -2.55    0.42    4.25    8.91   14.16
+   100.0    0.00   -0.26   -0.96   -2.02   -3.32   -4.70   -6.01   -7.10   -7.85   -8.19   -8.06   -7.48   -6.41   -4.81   -2.59    0.38    4.19    8.82   14.02
+   105.0    0.00   -0.26   -0.97   -2.03   -3.33   -4.72   -6.03   -7.12   -7.88   -8.22   -8.10   -7.52   -6.45   -4.86   -2.64    0.33    4.14    8.75   13.89
+   110.0    0.00   -0.26   -0.97   -2.04   -3.34   -4.73   -6.05   -7.15   -7.91   -8.25   -8.14   -7.57   -6.51   -4.91   -2.68    0.29    4.10    8.70   13.79
+   115.0    0.00   -0.26   -0.97   -2.04   -3.35   -4.75   -6.07   -7.18   -7.94   -8.29   -8.19   -7.61   -6.56   -4.96   -2.73    0.26    4.08    8.67   13.74
+   120.0    0.00   -0.26   -0.97   -2.05   -3.36   -4.76   -6.09   -7.20   -7.97   -8.33   -8.23   -7.66   -6.61   -5.01   -2.77    0.23    4.07    8.67   13.73
+   125.0    0.00   -0.26   -0.98   -2.05   -3.37   -4.77   -6.11   -7.22   -8.00   -8.35   -8.26   -7.69   -6.64   -5.05   -2.81    0.21    4.07    8.70   13.77
+   130.0    0.00   -0.26   -0.98   -2.06   -3.37   -4.78   -6.12   -7.24   -8.02   -8.37   -8.28   -7.71   -6.67   -5.08   -2.83    0.19    4.08    8.74   13.86
+   135.0    0.00   -0.26   -0.98   -2.06   -3.38   -4.79   -6.14   -7.25   -8.03   -8.38   -8.28   -7.72   -6.68   -5.10   -2.85    0.18    4.09    8.80   13.98
+   140.0    0.00   -0.26   -0.98   -2.06   -3.39   -4.80   -6.14   -7.26   -8.03   -8.38   -8.27   -7.71   -6.68   -5.10   -2.87    0.17    4.11    8.87   14.10
+   145.0    0.00   -0.26   -0.98   -2.06   -3.39   -4.81   -6.15   -7.26   -8.03   -8.37   -8.26   -7.69   -6.66   -5.09   -2.87    0.18    4.13    8.93   14.22
+   150.0    0.00   -0.26   -0.98   -2.07   -3.39   -4.81   -6.15   -7.26   -8.02   -8.35   -8.24   -7.67   -6.64   -5.08   -2.86    0.18    4.15    8.98   14.31
+   155.0    0.00   -0.26   -0.98   -2.07   -3.39   -4.81   -6.15   -7.26   -8.01   -8.34   -8.22   -7.64   -6.61   -5.05   -2.84    0.19    4.16    9.00   14.35
+   160.0    0.00   -0.26   -0.98   -2.07   -3.39   -4.81   -6.15   -7.25   -8.00   -8.33   -8.20   -7.62   -6.58   -5.02   -2.81    0.21    4.17    9.00   14.33
+   165.0    0.00   -0.26   -0.98   -2.07   -3.39   -4.81   -6.15   -7.25   -8.00   -8.32   -8.19   -7.61   -6.56   -5.00   -2.79    0.23    4.17    8.96   14.27
+   170.0    0.00   -0.26   -0.98   -2.06   -3.39   -4.81   -6.15   -7.25   -8.00   -8.32   -8.19   -7.60   -6.55   -4.98   -2.76    0.24    4.15    8.91   14.15
+   175.0    0.00   -0.26   -0.98   -2.06   -3.39   -4.81   -6.15   -7.26   -8.01   -8.34   -8.20   -7.61   -6.55   -4.96   -2.74    0.25    4.13    8.83   13.99
+   180.0    0.00   -0.26   -0.97   -2.06   -3.39   -4.81   -6.16   -7.27   -8.02   -8.35   -8.22   -7.62   -6.55   -4.95   -2.73    0.26    4.10    8.74   13.83
+   185.0    0.00   -0.25   -0.97   -2.06   -3.39   -4.81   -6.16   -7.28   -8.04   -8.37   -8.25   -7.65   -6.56   -4.96   -2.73    0.25    4.06    8.65   13.67
+   190.0    0.00   -0.25   -0.97   -2.06   -3.39   -4.81   -6.16   -7.28   -8.05   -8.39   -8.27   -7.67   -6.58   -4.97   -2.73    0.23    4.02    8.57   13.55
+   195.0    0.00   -0.25   -0.96   -2.05   -3.39   -4.81   -6.17   -7.29   -8.06   -8.41   -8.29   -7.69   -6.60   -4.98   -2.75    0.21    3.98    8.51   13.48
+   200.0    0.00   -0.25   -0.96   -2.05   -3.38   -4.81   -6.16   -7.29   -8.07   -8.42   -8.30   -7.70   -6.61   -4.99   -2.76    0.19    3.95    8.48   13.47
+   205.0    0.00   -0.25   -0.95   -2.04   -3.38   -4.81   -6.16   -7.29   -8.07   -8.42   -8.30   -7.70   -6.62   -5.01   -2.78    0.17    3.94    8.49   13.54
+   210.0    0.00   -0.24   -0.95   -2.03   -3.37   -4.80   -6.15   -7.28   -8.05   -8.40   -8.28   -7.69   -6.62   -5.01   -2.80    0.16    3.94    8.54   13.67
+   215.0    0.00   -0.24   -0.94   -2.03   -3.36   -4.79   -6.14   -7.26   -8.03   -8.38   -8.26   -7.67   -6.60   -5.01   -2.80    0.16    3.98    8.63   13.85
+   220.0    0.00   -0.24   -0.94   -2.02   -3.35   -4.78   -6.12   -7.24   -8.00   -8.34   -8.22   -7.64   -6.58   -4.99   -2.79    0.18    4.04    8.75   14.06
+   225.0    0.00   -0.24   -0.93   -2.01   -3.34   -4.76   -6.10   -7.21   -7.97   -8.30   -8.18   -7.60   -6.55   -4.97   -2.76    0.23    4.12    8.90   14.27
+   230.0    0.00   -0.23   -0.93   -2.00   -3.33   -4.74   -6.08   -7.18   -7.93   -8.26   -8.14   -7.56   -6.51   -4.93   -2.71    0.30    4.23    9.04   14.46
+   235.0    0.00   -0.23   -0.92   -1.99   -3.31   -4.73   -6.06   -7.15   -7.90   -8.22   -8.10   -7.52   -6.47   -4.88   -2.65    0.39    4.34    9.19   14.60
+   240.0    0.00   -0.23   -0.91   -1.98   -3.30   -4.71   -6.04   -7.13   -7.87   -8.19   -8.07   -7.49   -6.43   -4.83   -2.57    0.49    4.46    9.31   14.68
+   245.0    0.00   -0.23   -0.91   -1.97   -3.29   -4.69   -6.02   -7.11   -7.85   -8.17   -8.05   -7.46   -6.39   -4.78   -2.50    0.59    4.57    9.39   14.69
+   250.0    0.00   -0.22   -0.90   -1.96   -3.28   -4.68   -6.01   -7.10   -7.84   -8.16   -8.04   -7.44   -6.36   -4.73   -2.42    0.68    4.66    9.43   14.63
+   255.0    0.00   -0.22   -0.90   -1.96   -3.27   -4.67   -6.00   -7.10   -7.84   -8.17   -8.04   -7.44   -6.34   -4.68   -2.36    0.75    4.71    9.42   14.50
+   260.0    0.00   -0.22   -0.90   -1.95   -3.26   -4.67   -6.00   -7.10   -7.85   -8.18   -8.05   -7.44   -6.33   -4.66   -2.31    0.80    4.73    9.36   14.33
+   265.0    0.00   -0.22   -0.89   -1.95   -3.26   -4.67   -6.01   -7.12   -7.87   -8.20   -8.07   -7.46   -6.33   -4.64   -2.30    0.80    4.70    9.26   14.13
+   270.0    0.00   -0.22   -0.89   -1.95   -3.26   -4.68   -6.02   -7.14   -7.90   -8.23   -8.10   -7.47   -6.34   -4.64   -2.30    0.77    4.62    9.12   13.93
+   275.0    0.00   -0.22   -0.89   -1.95   -3.27   -4.69   -6.04   -7.16   -7.93   -8.26   -8.12   -7.49   -6.35   -4.66   -2.34    0.71    4.51    8.97   13.74
+   280.0    0.00   -0.22   -0.89   -1.95   -3.28   -4.70   -6.06   -7.19   -7.96   -8.29   -8.15   -7.51   -6.38   -4.70   -2.40    0.61    4.38    8.81   13.59
+   285.0    0.00   -0.22   -0.89   -1.96   -3.29   -4.72   -6.09   -7.22   -7.99   -8.32   -8.17   -7.53   -6.40   -4.74   -2.47    0.50    4.23    8.66   13.48
+   290.0    0.00   -0.22   -0.90   -1.97   -3.30   -4.74   -6.11   -7.25   -8.02   -8.34   -8.18   -7.55   -6.43   -4.79   -2.56    0.38    4.09    8.53   13.42
+   295.0    0.00   -0.22   -0.90   -1.97   -3.32   -4.77   -6.14   -7.28   -8.05   -8.36   -8.20   -7.56   -6.46   -4.85   -2.65    0.26    3.97    8.44   13.40
+   300.0    0.00   -0.22   -0.90   -1.98   -3.33   -4.79   -6.17   -7.31   -8.07   -8.37   -8.21   -7.58   -6.49   -4.90   -2.73    0.17    3.88    8.39   13.43
+   305.0    0.00   -0.22   -0.91   -1.99   -3.35   -4.81   -6.20   -7.33   -8.08   -8.38   -8.21   -7.59   -6.51   -4.95   -2.80    0.10    3.83    8.39   13.50
+   310.0    0.00   -0.22   -0.91   -2.01   -3.37   -4.84   -6.22   -7.35   -8.10   -8.39   -8.22   -7.60   -6.54   -4.99   -2.84    0.06    3.82    8.43   13.58
+   315.0    0.00   -0.22   -0.92   -2.02   -3.39   -4.86   -6.24   -7.37   -8.11   -8.39   -8.22   -7.60   -6.55   -5.02   -2.87    0.05    3.85    8.50   13.67
+   320.0    0.00   -0.23   -0.92   -2.03   -3.40   -4.88   -6.26   -7.38   -8.12   -8.40   -8.22   -7.61   -6.57   -5.03   -2.88    0.07    3.91    8.59   13.75
+   325.0    0.00   -0.23   -0.93   -2.04   -3.42   -4.89   -6.28   -7.40   -8.12   -8.40   -8.22   -7.61   -6.57   -5.04   -2.86    0.12    3.99    8.69   13.83
+   330.0    0.00   -0.23   -0.94   -2.05   -3.43   -4.91   -6.29   -7.40   -8.13   -8.40   -8.22   -7.61   -6.57   -5.03   -2.83    0.17    4.08    8.79   13.88
+   335.0    0.00   -0.23   -0.94   -2.05   -3.44   -4.92   -6.30   -7.41   -8.13   -8.40   -8.22   -7.61   -6.57   -5.01   -2.80    0.23    4.17    8.88   13.92
+   340.0    0.00   -0.23   -0.94   -2.06   -3.44   -4.92   -6.30   -7.41   -8.13   -8.40   -8.22   -7.61   -6.56   -4.99   -2.76    0.29    4.24    8.94   13.94
+   345.0    0.00   -0.23   -0.95   -2.06   -3.45   -4.93   -6.31   -7.41   -8.13   -8.40   -8.22   -7.60   -6.54   -4.97   -2.73    0.33    4.28    8.98   13.95
+   350.0    0.00   -0.24   -0.95   -2.07   -3.45   -4.92   -6.30   -7.41   -8.13   -8.40   -8.22   -7.60   -6.53   -4.94   -2.70    0.36    4.30    8.99   13.95
+   355.0    0.00   -0.24   -0.95   -2.07   -3.45   -4.92   -6.30   -7.41   -8.13   -8.41   -8.22   -7.59   -6.51   -4.92   -2.68    0.36    4.29    8.97   13.94
+   360.0    0.00   -0.24   -0.95   -2.07   -3.44   -4.91   -6.29   -7.41   -8.13   -8.41   -8.22   -7.59   -6.50   -4.90   -2.67    0.36    4.26    8.94   13.93
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.30      0.13    117.71                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.14   -0.54   -1.16   -1.94   -2.80   -3.68   -4.50   -5.16   -5.56   -5.58   -5.18   -4.36   -3.16   -1.62    0.29    2.70    5.77    9.59
+     0.0    0.00   -0.13   -0.51   -1.12   -1.88   -2.75   -3.64   -4.48   -5.16   -5.56   -5.59   -5.21   -4.41   -3.26   -1.75    0.16    2.62    5.79    9.61
+     5.0    0.00   -0.13   -0.52   -1.12   -1.89   -2.75   -3.64   -4.47   -5.15   -5.55   -5.59   -5.21   -4.42   -3.27   -1.78    0.11    2.56    5.71    9.50
+    10.0    0.00   -0.13   -0.52   -1.13   -1.89   -2.75   -3.64   -4.47   -5.14   -5.55   -5.58   -5.21   -4.42   -3.28   -1.80    0.09    2.52    5.66    9.43
+    15.0    0.00   -0.13   -0.53   -1.13   -1.90   -2.75   -3.63   -4.46   -5.13   -5.54   -5.58   -5.21   -4.42   -3.27   -1.79    0.09    2.52    5.64    9.40
+    20.0    0.00   -0.13   -0.53   -1.14   -1.90   -2.76   -3.63   -4.45   -5.12   -5.53   -5.58   -5.21   -4.42   -3.26   -1.76    0.12    2.54    5.65    9.41
+    25.0    0.00   -0.14   -0.54   -1.15   -1.91   -2.76   -3.63   -4.44   -5.11   -5.52   -5.58   -5.21   -4.41   -3.24   -1.72    0.18    2.60    5.70    9.47
+    30.0    0.00   -0.14   -0.54   -1.15   -1.92   -2.76   -3.62   -4.43   -5.10   -5.51   -5.57   -5.20   -4.40   -3.20   -1.66    0.25    2.67    5.77    9.57
+    35.0    0.00   -0.14   -0.54   -1.16   -1.92   -2.76   -3.62   -4.42   -5.09   -5.51   -5.57   -5.20   -4.38   -3.17   -1.60    0.33    2.75    5.85    9.68
+    40.0    0.00   -0.14   -0.55   -1.17   -1.93   -2.77   -3.62   -4.42   -5.08   -5.50   -5.56   -5.19   -4.36   -3.13   -1.54    0.40    2.83    5.92    9.80
+    45.0    0.00   -0.14   -0.55   -1.17   -1.93   -2.77   -3.62   -4.41   -5.07   -5.49   -5.55   -5.17   -4.34   -3.09   -1.49    0.46    2.89    5.98    9.90
+    50.0    0.00   -0.14   -0.56   -1.18   -1.94   -2.77   -3.62   -4.41   -5.07   -5.48   -5.54   -5.16   -4.31   -3.05   -1.45    0.50    2.92    6.01    9.97
+    55.0    0.00   -0.15   -0.56   -1.18   -1.95   -2.78   -3.63   -4.42   -5.07   -5.48   -5.53   -5.14   -4.29   -3.03   -1.42    0.52    2.92    6.01   10.00
+    60.0    0.00   -0.15   -0.56   -1.19   -1.95   -2.79   -3.63   -4.42   -5.07   -5.47   -5.52   -5.12   -4.27   -3.02   -1.42    0.50    2.88    5.97    9.97
+    65.0    0.00   -0.15   -0.56   -1.19   -1.96   -2.80   -3.64   -4.43   -5.08   -5.47   -5.51   -5.11   -4.26   -3.01   -1.44    0.46    2.82    5.89    9.90
+    70.0    0.00   -0.15   -0.56   -1.19   -1.96   -2.80   -3.65   -4.44   -5.09   -5.48   -5.50   -5.10   -4.25   -3.02   -1.47    0.40    2.74    5.78    9.78
+    75.0    0.00   -0.15   -0.56   -1.19   -1.96   -2.81   -3.66   -4.46   -5.10   -5.48   -5.50   -5.10   -4.26   -3.04   -1.52    0.33    2.64    5.66    9.62
+    80.0    0.00   -0.15   -0.56   -1.19   -1.96   -2.81   -3.67   -4.47   -5.11   -5.49   -5.50   -5.10   -4.27   -3.07   -1.57    0.26    2.55    5.54    9.45
+    85.0    0.00   -0.15   -0.56   -1.19   -1.96   -2.81   -3.68   -4.48   -5.12   -5.50   -5.51   -5.11   -4.29   -3.11   -1.62    0.19    2.47    5.43    9.27
+    90.0    0.00   -0.15   -0.56   -1.19   -1.96   -2.81   -3.68   -4.49   -5.13   -5.51   -5.52   -5.12   -4.31   -3.14   -1.67    0.14    2.41    5.34    9.10
+    95.0    0.00   -0.15   -0.56   -1.18   -1.96   -2.81   -3.69   -4.50   -5.14   -5.52   -5.54   -5.14   -4.33   -3.17   -1.70    0.11    2.37    5.29    8.97
+   100.0    0.00   -0.15   -0.56   -1.18   -1.95   -2.81   -3.69   -4.50   -5.16   -5.54   -5.55   -5.16   -4.36   -3.20   -1.72    0.09    2.37    5.27    8.89
+   105.0    0.00   -0.15   -0.56   -1.18   -1.95   -2.81   -3.69   -4.51   -5.17   -5.55   -5.57   -5.18   -4.38   -3.22   -1.73    0.10    2.39    5.29    8.86
+   110.0    0.00   -0.15   -0.56   -1.18   -1.94   -2.81   -3.69   -4.51   -5.17   -5.56   -5.58   -5.19   -4.39   -3.22   -1.73    0.13    2.44    5.34    8.89
+   115.0    0.00   -0.15   -0.56   -1.17   -1.94   -2.80   -3.69   -4.52   -5.18   -5.57   -5.60   -5.20   -4.40   -3.22   -1.71    0.17    2.50    5.42    8.96
+   120.0    0.00   -0.15   -0.56   -1.17   -1.94   -2.80   -3.69   -4.52   -5.19   -5.58   -5.60   -5.20   -4.39   -3.20   -1.68    0.21    2.57    5.51    9.08
+   125.0    0.00   -0.15   -0.56   -1.17   -1.94   -2.80   -3.69   -4.53   -5.19   -5.58   -5.60   -5.20   -4.38   -3.18   -1.65    0.26    2.63    5.61    9.23
+   130.0    0.00   -0.15   -0.56   -1.17   -1.94   -2.81   -3.70   -4.53   -5.20   -5.59   -5.60   -5.19   -4.36   -3.16   -1.61    0.30    2.69    5.69    9.38
+   135.0    0.00   -0.15   -0.56   -1.17   -1.94   -2.81   -3.70   -4.53   -5.20   -5.58   -5.59   -5.18   -4.34   -3.13   -1.58    0.33    2.73    5.77    9.53
+   140.0    0.00   -0.15   -0.56   -1.17   -1.95   -2.81   -3.71   -4.53   -5.20   -5.58   -5.58   -5.16   -4.32   -3.11   -1.56    0.36    2.76    5.82    9.65
+   145.0    0.00   -0.15   -0.56   -1.18   -1.95   -2.82   -3.71   -4.54   -5.19   -5.57   -5.57   -5.15   -4.31   -3.09   -1.55    0.37    2.77    5.85    9.74
+   150.0    0.00   -0.15   -0.56   -1.18   -1.96   -2.83   -3.72   -4.54   -5.19   -5.57   -5.57   -5.14   -4.30   -3.09   -1.54    0.37    2.77    5.86    9.78
+   155.0    0.00   -0.15   -0.56   -1.19   -1.96   -2.83   -3.72   -4.54   -5.19   -5.56   -5.56   -5.14   -4.30   -3.09   -1.55    0.36    2.76    5.85    9.77
+   160.0    0.00   -0.15   -0.56   -1.19   -1.97   -2.84   -3.72   -4.54   -5.18   -5.56   -5.57   -5.15   -4.32   -3.11   -1.57    0.34    2.74    5.82    9.72
+   165.0    0.00   -0.15   -0.56   -1.19   -1.98   -2.84   -3.72   -4.54   -5.18   -5.56   -5.57   -5.17   -4.34   -3.14   -1.59    0.32    2.72    5.78    9.62
+   170.0    0.00   -0.15   -0.57   -1.20   -1.98   -2.85   -3.73   -4.53   -5.18   -5.56   -5.58   -5.19   -4.37   -3.17   -1.62    0.30    2.69    5.73    9.51
+   175.0    0.00   -0.15   -0.57   -1.20   -1.98   -2.85   -3.73   -4.53   -5.18   -5.57   -5.60   -5.22   -4.40   -3.20   -1.64    0.28    2.67    5.68    9.38
+   180.0    0.00   -0.15   -0.57   -1.20   -1.99   -2.85   -3.73   -4.53   -5.18   -5.58   -5.62   -5.24   -4.43   -3.23   -1.67    0.27    2.66    5.64    9.25
+   185.0    0.00   -0.15   -0.57   -1.20   -1.99   -2.85   -3.73   -4.54   -5.19   -5.59   -5.63   -5.26   -4.46   -3.25   -1.68    0.26    2.65    5.60    9.15
+   190.0    0.00   -0.15   -0.57   -1.20   -1.99   -2.85   -3.73   -4.54   -5.20   -5.60   -5.65   -5.27   -4.47   -3.26   -1.69    0.25    2.64    5.59    9.08
+   195.0    0.00   -0.15   -0.57   -1.20   -1.99   -2.85   -3.73   -4.54   -5.20   -5.61   -5.65   -5.28   -4.47   -3.25   -1.68    0.26    2.65    5.59    9.05
+   200.0    0.00   -0.15   -0.57   -1.20   -1.98   -2.85   -3.73   -4.55   -5.21   -5.61   -5.65   -5.27   -4.45   -3.23   -1.66    0.27    2.66    5.61    9.06
+   205.0    0.00   -0.15   -0.56   -1.20   -1.98   -2.85   -3.73   -4.55   -5.22   -5.61   -5.64   -5.24   -4.41   -3.19   -1.63    0.30    2.69    5.65    9.13
+   210.0    0.00   -0.15   -0.56   -1.19   -1.98   -2.85   -3.73   -4.56   -5.22   -5.61   -5.63   -5.21   -4.37   -3.14   -1.59    0.33    2.72    5.71    9.23
+   215.0    0.00   -0.15   -0.56   -1.19   -1.97   -2.84   -3.73   -4.56   -5.22   -5.61   -5.61   -5.17   -4.31   -3.09   -1.54    0.37    2.76    5.78    9.36
+   220.0    0.00   -0.15   -0.56   -1.19   -1.97   -2.84   -3.73   -4.56   -5.22   -5.60   -5.58   -5.13   -4.26   -3.03   -1.49    0.41    2.81    5.86    9.50
+   225.0    0.00   -0.14   -0.56   -1.18   -1.97   -2.84   -3.73   -4.56   -5.22   -5.59   -5.56   -5.09   -4.21   -2.98   -1.44    0.46    2.87    5.95    9.64
+   230.0    0.00   -0.14   -0.55   -1.18   -1.96   -2.84   -3.73   -4.56   -5.21   -5.57   -5.54   -5.06   -4.17   -2.93   -1.40    0.50    2.92    6.03    9.77
+   235.0    0.00   -0.14   -0.55   -1.18   -1.96   -2.83   -3.73   -4.56   -5.21   -5.56   -5.52   -5.03   -4.14   -2.91   -1.37    0.53    2.97    6.10    9.87
+   240.0    0.00   -0.14   -0.55   -1.18   -1.96   -2.83   -3.73   -4.55   -5.20   -5.55   -5.50   -5.02   -4.13   -2.90   -1.36    0.55    3.00    6.15    9.93
+   245.0    0.00   -0.14   -0.55   -1.17   -1.96   -2.83   -3.72   -4.55   -5.19   -5.54   -5.50   -5.02   -4.14   -2.91   -1.37    0.55    3.01    6.16    9.94
+   250.0    0.00   -0.14   -0.54   -1.17   -1.95   -2.83   -3.72   -4.54   -5.18   -5.53   -5.50   -5.04   -4.17   -2.94   -1.40    0.53    3.00    6.14    9.92
+   255.0    0.00   -0.14   -0.54   -1.17   -1.95   -2.83   -3.72   -4.54   -5.18   -5.53   -5.51   -5.06   -4.21   -2.99   -1.44    0.49    2.96    6.09    9.85
+   260.0    0.00   -0.13   -0.54   -1.16   -1.95   -2.83   -3.72   -4.53   -5.18   -5.53   -5.52   -5.10   -4.26   -3.06   -1.51    0.43    2.89    6.01    9.76
+   265.0    0.00   -0.13   -0.53   -1.16   -1.95   -2.83   -3.72   -4.53   -5.17   -5.54   -5.54   -5.13   -4.32   -3.12   -1.58    0.36    2.81    5.91    9.65
+   270.0    0.00   -0.13   -0.53   -1.16   -1.95   -2.83   -3.72   -4.53   -5.18   -5.55   -5.57   -5.17   -4.37   -3.19   -1.65    0.28    2.71    5.79    9.55
+   275.0    0.00   -0.13   -0.53   -1.15   -1.94   -2.82   -3.71   -4.53   -5.18   -5.56   -5.59   -5.21   -4.42   -3.25   -1.72    0.20    2.61    5.68    9.46
+   280.0    0.00   -0.13   -0.52   -1.15   -1.94   -2.82   -3.71   -4.53   -5.18   -5.57   -5.61   -5.24   -4.47   -3.30   -1.78    0.13    2.52    5.58    9.41
+   285.0    0.00   -0.13   -0.52   -1.15   -1.94   -2.82   -3.71   -4.53   -5.19   -5.58   -5.63   -5.27   -4.50   -3.34   -1.82    0.07    2.45    5.50    9.39
+   290.0    0.00   -0.12   -0.52   -1.14   -1.93   -2.81   -3.71   -4.53   -5.19   -5.59   -5.64   -5.29   -4.52   -3.36   -1.84    0.05    2.41    5.46    9.41
+   295.0    0.00   -0.12   -0.52   -1.14   -1.92   -2.80   -3.70   -4.53   -5.19   -5.59   -5.65   -5.30   -4.52   -3.36   -1.84    0.04    2.41    5.47    9.48
+   300.0    0.00   -0.12   -0.51   -1.13   -1.92   -2.80   -3.69   -4.52   -5.19   -5.60   -5.66   -5.30   -4.52   -3.35   -1.82    0.07    2.44    5.51    9.59
+   305.0    0.00   -0.12   -0.51   -1.13   -1.91   -2.79   -3.68   -4.51   -5.19   -5.60   -5.66   -5.30   -4.51   -3.32   -1.78    0.12    2.50    5.60    9.72
+   310.0    0.00   -0.12   -0.51   -1.12   -1.90   -2.78   -3.67   -4.51   -5.18   -5.60   -5.66   -5.29   -4.49   -3.29   -1.73    0.18    2.58    5.70    9.86
+   315.0    0.00   -0.12   -0.51   -1.12   -1.89   -2.77   -3.66   -4.50   -5.18   -5.60   -5.65   -5.28   -4.47   -3.25   -1.68    0.25    2.67    5.82    9.99
+   320.0    0.00   -0.12   -0.50   -1.11   -1.89   -2.76   -3.65   -4.49   -5.17   -5.59   -5.65   -5.27   -4.45   -3.22   -1.64    0.32    2.76    5.94   10.10
+   325.0    0.00   -0.12   -0.50   -1.11   -1.88   -2.75   -3.65   -4.49   -5.17   -5.59   -5.64   -5.26   -4.43   -3.20   -1.60    0.37    2.84    6.03   10.18
+   330.0    0.00   -0.12   -0.50   -1.11   -1.87   -2.74   -3.64   -4.48   -5.17   -5.59   -5.63   -5.25   -4.42   -3.18   -1.58    0.40    2.89    6.10   10.21
+   335.0    0.00   -0.12   -0.50   -1.10   -1.87   -2.74   -3.64   -4.48   -5.17   -5.58   -5.63   -5.24   -4.41   -3.18   -1.58    0.40    2.91    6.12   10.19
+   340.0    0.00   -0.12   -0.50   -1.11   -1.87   -2.74   -3.64   -4.48   -5.16   -5.58   -5.62   -5.23   -4.40   -3.18   -1.60    0.38    2.89    6.11   10.12
+   345.0    0.00   -0.12   -0.51   -1.11   -1.87   -2.74   -3.64   -4.48   -5.16   -5.57   -5.61   -5.22   -4.40   -3.19   -1.63    0.34    2.85    6.06   10.02
+   350.0    0.00   -0.12   -0.51   -1.11   -1.87   -2.74   -3.64   -4.48   -5.16   -5.57   -5.60   -5.21   -4.40   -3.21   -1.67    0.28    2.78    5.98    9.89
+   355.0    0.00   -0.13   -0.51   -1.11   -1.88   -2.74   -3.64   -4.48   -5.16   -5.56   -5.60   -5.21   -4.41   -3.24   -1.71    0.22    2.70    5.89    9.75
+   360.0    0.00   -0.13   -0.51   -1.12   -1.88   -2.75   -3.64   -4.48   -5.16   -5.56   -5.59   -5.21   -4.41   -3.26   -1.75    0.16    2.62    5.79    9.61
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+LEIAT504        LEIS                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH              97    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+Number of Calibrated Antennas GPS:      097                 COMMENT             
+Number of Individual Calibrations GPS:  288                 COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.60      0.09     88.47                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.29   -1.11   -2.36   -3.88   -5.49   -6.98   -8.19   -8.99   -9.28   -9.05   -8.29   -7.01   -5.19   -2.75    0.46    4.56    9.58   15.28
+     0.0    0.00   -0.29   -1.12   -2.41   -3.98   -5.64   -7.16   -8.37   -9.11   -9.33   -9.00   -8.18   -6.88   -5.07   -2.62    0.61    4.77    9.78   15.26
+     5.0    0.00   -0.29   -1.13   -2.41   -3.98   -5.63   -7.16   -8.37   -9.13   -9.35   -9.03   -8.20   -6.89   -5.07   -2.64    0.58    4.71    9.73   15.26
+    10.0    0.00   -0.29   -1.13   -2.41   -3.98   -5.63   -7.16   -8.38   -9.14   -9.37   -9.06   -8.22   -6.90   -5.08   -2.66    0.53    4.64    9.68   15.28
+    15.0    0.00   -0.29   -1.13   -2.41   -3.97   -5.62   -7.15   -8.38   -9.16   -9.40   -9.09   -8.25   -6.93   -5.10   -2.69    0.48    4.58    9.63   15.31
+    20.0    0.00   -0.30   -1.13   -2.41   -3.97   -5.61   -7.14   -8.38   -9.17   -9.43   -9.13   -8.30   -6.96   -5.13   -2.72    0.44    4.53    9.60   15.37
+    25.0    0.00   -0.30   -1.14   -2.41   -3.96   -5.60   -7.13   -8.38   -9.18   -9.46   -9.17   -8.34   -7.01   -5.17   -2.75    0.40    4.49    9.58   15.43
+    30.0    0.00   -0.30   -1.14   -2.41   -3.95   -5.59   -7.12   -8.37   -9.19   -9.48   -9.21   -8.39   -7.05   -5.20   -2.78    0.39    4.49    9.60   15.50
+    35.0    0.00   -0.30   -1.14   -2.41   -3.94   -5.57   -7.10   -8.36   -9.19   -9.50   -9.24   -8.43   -7.09   -5.24   -2.80    0.39    4.50    9.63   15.56
+    40.0    0.00   -0.30   -1.14   -2.40   -3.94   -5.56   -7.09   -8.34   -9.18   -9.51   -9.27   -8.47   -7.13   -5.26   -2.80    0.41    4.54    9.68   15.62
+    45.0    0.00   -0.31   -1.14   -2.40   -3.93   -5.54   -7.06   -8.32   -9.17   -9.50   -9.28   -8.49   -7.16   -5.28   -2.80    0.44    4.59    9.73   15.67
+    50.0    0.00   -0.31   -1.15   -2.40   -3.92   -5.53   -7.04   -8.29   -9.14   -9.48   -9.27   -8.49   -7.17   -5.28   -2.78    0.48    4.65    9.79   15.69
+    55.0    0.00   -0.31   -1.15   -2.40   -3.92   -5.51   -7.02   -8.26   -9.11   -9.45   -9.25   -8.48   -7.16   -5.27   -2.76    0.52    4.70    9.84   15.70
+    60.0    0.00   -0.31   -1.15   -2.40   -3.91   -5.50   -6.99   -8.23   -9.07   -9.42   -9.22   -8.46   -7.14   -5.25   -2.73    0.56    4.75    9.87   15.69
+    65.0    0.00   -0.31   -1.15   -2.40   -3.90   -5.49   -6.97   -8.19   -9.02   -9.37   -9.17   -8.42   -7.11   -5.23   -2.70    0.59    4.77    9.88   15.67
+    70.0    0.00   -0.31   -1.15   -2.40   -3.90   -5.48   -6.95   -8.16   -8.98   -9.32   -9.12   -8.38   -7.07   -5.20   -2.67    0.61    4.78    9.87   15.64
+    75.0    0.00   -0.31   -1.15   -2.40   -3.90   -5.47   -6.93   -8.13   -8.94   -9.27   -9.07   -8.33   -7.03   -5.17   -2.66    0.62    4.78    9.85   15.60
+    80.0    0.00   -0.32   -1.15   -2.40   -3.89   -5.46   -6.91   -8.11   -8.91   -9.23   -9.03   -8.29   -7.00   -5.14   -2.64    0.61    4.75    9.81   15.56
+    85.0    0.00   -0.32   -1.15   -2.40   -3.89   -5.45   -6.90   -8.08   -8.88   -9.20   -8.99   -8.25   -6.97   -5.12   -2.64    0.59    4.72    9.76   15.52
+    90.0    0.00   -0.32   -1.15   -2.40   -3.89   -5.45   -6.89   -8.07   -8.86   -9.18   -8.97   -8.23   -6.96   -5.12   -2.65    0.57    4.68    9.71   15.48
+    95.0    0.00   -0.32   -1.15   -2.40   -3.89   -5.44   -6.88   -8.06   -8.85   -9.17   -8.97   -8.23   -6.96   -5.13   -2.67    0.54    4.64    9.67   15.45
+   100.0    0.00   -0.32   -1.15   -2.40   -3.89   -5.44   -6.88   -8.06   -8.85   -9.17   -8.97   -8.24   -6.97   -5.14   -2.69    0.52    4.61    9.64   15.42
+   105.0    0.00   -0.32   -1.15   -2.40   -3.88   -5.44   -6.88   -8.06   -8.86   -9.18   -8.99   -8.26   -7.00   -5.17   -2.71    0.50    4.59    9.62   15.40
+   110.0    0.00   -0.32   -1.15   -2.40   -3.88   -5.44   -6.88   -8.07   -8.86   -9.19   -9.01   -8.29   -7.03   -5.20   -2.74    0.48    4.58    9.61   15.39
+   115.0    0.00   -0.31   -1.15   -2.39   -3.88   -5.44   -6.89   -8.07   -8.87   -9.21   -9.03   -8.32   -7.06   -5.24   -2.77    0.47    4.58    9.62   15.39
+   120.0    0.00   -0.31   -1.15   -2.39   -3.88   -5.44   -6.89   -8.08   -8.88   -9.22   -9.05   -8.34   -7.09   -5.26   -2.79    0.46    4.59    9.64   15.39
+   125.0    0.00   -0.31   -1.15   -2.39   -3.88   -5.44   -6.89   -8.08   -8.89   -9.23   -9.06   -8.36   -7.11   -5.29   -2.81    0.45    4.61    9.67   15.41
+   130.0    0.00   -0.31   -1.14   -2.39   -3.88   -5.44   -6.89   -8.08   -8.89   -9.23   -9.06   -8.36   -7.12   -5.30   -2.82    0.45    4.63    9.71   15.44
+   135.0    0.00   -0.31   -1.14   -2.38   -3.87   -5.43   -6.89   -8.08   -8.88   -9.22   -9.04   -8.35   -7.11   -5.30   -2.83    0.45    4.64    9.74   15.48
+   140.0    0.00   -0.31   -1.14   -2.38   -3.87   -5.43   -6.89   -8.07   -8.87   -9.20   -9.02   -8.32   -7.10   -5.30   -2.83    0.45    4.66    9.77   15.52
+   145.0    0.00   -0.31   -1.14   -2.37   -3.87   -5.43   -6.88   -8.07   -8.86   -9.18   -8.99   -8.29   -7.07   -5.28   -2.83    0.45    4.66    9.80   15.56
+   150.0    0.00   -0.30   -1.13   -2.37   -3.86   -5.43   -6.88   -8.06   -8.84   -9.15   -8.96   -8.26   -7.04   -5.27   -2.82    0.44    4.66    9.81   15.58
+   155.0    0.00   -0.30   -1.13   -2.37   -3.86   -5.42   -6.88   -8.05   -8.83   -9.13   -8.93   -8.22   -7.01   -5.25   -2.82    0.44    4.65    9.80   15.59
+   160.0    0.00   -0.30   -1.12   -2.36   -3.85   -5.42   -6.87   -8.05   -8.82   -9.12   -8.91   -8.20   -6.99   -5.23   -2.81    0.44    4.63    9.78   15.57
+   165.0    0.00   -0.30   -1.12   -2.36   -3.85   -5.42   -6.87   -8.05   -8.82   -9.12   -8.90   -8.19   -6.98   -5.21   -2.80    0.43    4.61    9.73   15.51
+   170.0    0.00   -0.29   -1.12   -2.35   -3.85   -5.41   -6.87   -8.05   -8.83   -9.12   -8.91   -8.20   -6.97   -5.21   -2.79    0.42    4.58    9.67   15.43
+   175.0    0.00   -0.29   -1.11   -2.35   -3.84   -5.41   -6.87   -8.06   -8.84   -9.14   -8.93   -8.21   -6.98   -5.21   -2.79    0.42    4.53    9.58   15.31
+   180.0    0.00   -0.29   -1.11   -2.34   -3.84   -5.41   -6.88   -8.07   -8.86   -9.17   -8.97   -8.24   -7.00   -5.21   -2.79    0.40    4.49    9.49   15.18
+   185.0    0.00   -0.29   -1.10   -2.34   -3.84   -5.41   -6.89   -8.09   -8.89   -9.21   -9.01   -8.28   -7.03   -5.22   -2.79    0.39    4.43    9.38   15.03
+   190.0    0.00   -0.28   -1.10   -2.34   -3.84   -5.42   -6.89   -8.10   -8.91   -9.24   -9.05   -8.32   -7.05   -5.23   -2.80    0.36    4.37    9.27   14.89
+   195.0    0.00   -0.28   -1.09   -2.33   -3.83   -5.42   -6.90   -8.12   -8.94   -9.27   -9.08   -8.35   -7.08   -5.25   -2.81    0.33    4.31    9.17   14.77
+   200.0    0.00   -0.28   -1.09   -2.33   -3.83   -5.42   -6.91   -8.13   -8.96   -9.30   -9.11   -8.37   -7.09   -5.26   -2.83    0.30    4.25    9.09   14.69
+   205.0    0.00   -0.28   -1.09   -2.33   -3.83   -5.42   -6.91   -8.14   -8.97   -9.31   -9.12   -8.38   -7.10   -5.27   -2.85    0.26    4.20    9.03   14.65
+   210.0    0.00   -0.27   -1.08   -2.32   -3.83   -5.42   -6.92   -8.14   -8.97   -9.31   -9.12   -8.38   -7.10   -5.28   -2.87    0.23    4.16    9.01   14.67
+   215.0    0.00   -0.27   -1.08   -2.32   -3.83   -5.42   -6.92   -8.14   -8.96   -9.30   -9.10   -8.36   -7.09   -5.28   -2.89    0.21    4.15    9.03   14.74
+   220.0    0.00   -0.27   -1.08   -2.32   -3.83   -5.42   -6.92   -8.13   -8.95   -9.28   -9.07   -8.33   -7.07   -5.28   -2.90    0.19    4.15    9.08   14.85
+   225.0    0.00   -0.27   -1.07   -2.31   -3.82   -5.42   -6.91   -8.12   -8.93   -9.25   -9.03   -8.30   -7.04   -5.27   -2.90    0.20    4.19    9.17   15.00
+   230.0    0.00   -0.26   -1.07   -2.31   -3.82   -5.42   -6.90   -8.11   -8.91   -9.21   -9.00   -8.26   -7.02   -5.26   -2.89    0.22    4.25    9.29   15.16
+   235.0    0.00   -0.26   -1.07   -2.30   -3.82   -5.41   -6.90   -8.10   -8.88   -9.18   -8.96   -8.23   -6.99   -5.24   -2.87    0.26    4.34    9.43   15.31
+   240.0    0.00   -0.26   -1.06   -2.30   -3.81   -5.41   -6.89   -8.08   -8.86   -9.15   -8.93   -8.20   -6.97   -5.22   -2.84    0.32    4.45    9.57   15.44
+   245.0    0.00   -0.26   -1.06   -2.30   -3.81   -5.40   -6.88   -8.07   -8.85   -9.14   -8.91   -8.18   -6.96   -5.20   -2.80    0.40    4.56    9.70   15.53
+   250.0    0.00   -0.26   -1.06   -2.29   -3.80   -5.40   -6.87   -8.06   -8.84   -9.13   -8.91   -8.18   -6.95   -5.17   -2.75    0.48    4.67    9.80   15.57
+   255.0    0.00   -0.26   -1.05   -2.29   -3.80   -5.39   -6.87   -8.06   -8.84   -9.13   -8.91   -8.18   -6.94   -5.15   -2.70    0.56    4.76    9.87   15.55
+   260.0    0.00   -0.26   -1.05   -2.29   -3.80   -5.39   -6.87   -8.07   -8.85   -9.15   -8.93   -8.19   -6.94   -5.12   -2.65    0.63    4.83    9.90   15.48
+   265.0    0.00   -0.25   -1.05   -2.29   -3.80   -5.39   -6.88   -8.08   -8.87   -9.17   -8.95   -8.21   -6.94   -5.10   -2.60    0.68    4.86    9.87   15.36
+   270.0    0.00   -0.25   -1.05   -2.29   -3.80   -5.40   -6.89   -8.10   -8.90   -9.20   -8.98   -8.22   -6.93   -5.08   -2.57    0.71    4.86    9.81   15.22
+   275.0    0.00   -0.25   -1.05   -2.29   -3.80   -5.41   -6.91   -8.12   -8.93   -9.23   -9.01   -8.24   -6.93   -5.06   -2.54    0.72    4.81    9.71   15.08
+   280.0    0.00   -0.25   -1.05   -2.29   -3.81   -5.42   -6.93   -8.15   -8.96   -9.27   -9.03   -8.25   -6.92   -5.04   -2.54    0.69    4.74    9.59   14.94
+   285.0    0.00   -0.26   -1.05   -2.30   -3.82   -5.44   -6.95   -8.18   -8.99   -9.29   -9.05   -8.25   -6.92   -5.03   -2.55    0.65    4.65    9.46   14.83
+   290.0    0.00   -0.26   -1.06   -2.30   -3.83   -5.45   -6.97   -8.21   -9.02   -9.32   -9.06   -8.25   -6.91   -5.03   -2.57    0.59    4.55    9.34   14.76
+   295.0    0.00   -0.26   -1.06   -2.31   -3.85   -5.48   -7.00   -8.24   -9.05   -9.33   -9.06   -8.24   -6.90   -5.03   -2.60    0.52    4.46    9.25   14.74
+   300.0    0.00   -0.26   -1.06   -2.32   -3.86   -5.50   -7.03   -8.26   -9.07   -9.34   -9.06   -8.23   -6.89   -5.04   -2.63    0.46    4.38    9.20   14.76
+   305.0    0.00   -0.26   -1.07   -2.33   -3.88   -5.52   -7.05   -8.29   -9.08   -9.34   -9.05   -8.22   -6.89   -5.06   -2.67    0.41    4.33    9.18   14.82
+   310.0    0.00   -0.26   -1.07   -2.34   -3.89   -5.54   -7.08   -8.31   -9.09   -9.34   -9.04   -8.21   -6.89   -5.07   -2.70    0.38    4.32    9.21   14.91
+   315.0    0.00   -0.26   -1.08   -2.35   -3.91   -5.56   -7.10   -8.32   -9.09   -9.34   -9.03   -8.20   -6.89   -5.09   -2.72    0.37    4.35    9.28   15.01
+   320.0    0.00   -0.27   -1.08   -2.36   -3.92   -5.58   -7.11   -8.33   -9.10   -9.33   -9.01   -8.19   -6.89   -5.10   -2.73    0.39    4.40    9.38   15.12
+   325.0    0.00   -0.27   -1.09   -2.37   -3.94   -5.60   -7.13   -8.34   -9.09   -9.32   -9.00   -8.19   -6.90   -5.11   -2.72    0.42    4.48    9.49   15.20
+   330.0    0.00   -0.27   -1.10   -2.38   -3.95   -5.61   -7.14   -8.35   -9.09   -9.31   -8.99   -8.18   -6.90   -5.11   -2.71    0.47    4.58    9.61   15.27
+   335.0    0.00   -0.27   -1.10   -2.38   -3.96   -5.62   -7.15   -8.35   -9.09   -9.30   -8.98   -8.18   -6.90   -5.11   -2.69    0.52    4.66    9.71   15.31
+   340.0    0.00   -0.28   -1.11   -2.39   -3.97   -5.63   -7.16   -8.35   -9.09   -9.30   -8.98   -8.17   -6.90   -5.10   -2.67    0.57    4.74    9.78   15.33
+   345.0    0.00   -0.28   -1.11   -2.40   -3.97   -5.64   -7.16   -8.36   -9.09   -9.30   -8.98   -8.17   -6.89   -5.09   -2.65    0.61    4.79    9.83   15.32
+   350.0    0.00   -0.28   -1.12   -2.40   -3.98   -5.64   -7.16   -8.36   -9.09   -9.30   -8.98   -8.17   -6.88   -5.08   -2.63    0.63    4.81    9.84   15.30
+   355.0    0.00   -0.28   -1.12   -2.41   -3.98   -5.64   -7.16   -8.36   -9.10   -9.31   -8.99   -8.17   -6.88   -5.07   -2.62    0.63    4.80    9.82   15.28
+   360.0    0.00   -0.29   -1.12   -2.41   -3.98   -5.64   -7.16   -8.37   -9.11   -9.33   -9.00   -8.18   -6.88   -5.07   -2.62    0.61    4.77    9.78   15.26
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.22      0.15    115.33                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.15   -0.58   -1.24   -2.06   -2.96   -3.89   -4.76   -5.48   -5.94   -6.01   -5.62   -4.76   -3.47   -1.80    0.26    2.85    6.18   10.37
+     0.0    0.00   -0.14   -0.56   -1.22   -2.03   -2.94   -3.87   -4.75   -5.48   -5.95   -6.04   -5.67   -4.83   -3.55   -1.88    0.20    2.79    6.10   10.18
+     5.0    0.00   -0.14   -0.56   -1.22   -2.03   -2.94   -3.87   -4.75   -5.48   -5.95   -6.05   -5.68   -4.84   -3.57   -1.91    0.15    2.74    6.03   10.12
+    10.0    0.00   -0.14   -0.57   -1.22   -2.04   -2.94   -3.87   -4.74   -5.48   -5.95   -6.05   -5.69   -4.86   -3.59   -1.94    0.11    2.69    6.00   10.10
+    15.0    0.00   -0.14   -0.57   -1.23   -2.04   -2.94   -3.87   -4.74   -5.48   -5.95   -6.05   -5.69   -4.86   -3.60   -1.95    0.09    2.68    6.00   10.13
+    20.0    0.00   -0.14   -0.57   -1.23   -2.04   -2.95   -3.87   -4.74   -5.48   -5.95   -6.05   -5.69   -4.86   -3.60   -1.96    0.09    2.69    6.03   10.20
+    25.0    0.00   -0.15   -0.58   -1.23   -2.05   -2.95   -3.87   -4.75   -5.48   -5.94   -6.04   -5.68   -4.85   -3.59   -1.95    0.10    2.72    6.09   10.30
+    30.0    0.00   -0.15   -0.58   -1.24   -2.06   -2.96   -3.88   -4.75   -5.47   -5.94   -6.03   -5.66   -4.83   -3.57   -1.93    0.13    2.76    6.17   10.42
+    35.0    0.00   -0.15   -0.58   -1.24   -2.06   -2.96   -3.88   -4.75   -5.47   -5.93   -6.01   -5.64   -4.81   -3.55   -1.90    0.17    2.82    6.26   10.54
+    40.0    0.00   -0.15   -0.59   -1.25   -2.07   -2.97   -3.89   -4.75   -5.47   -5.92   -6.00   -5.62   -4.79   -3.52   -1.87    0.21    2.88    6.34   10.65
+    45.0    0.00   -0.15   -0.59   -1.25   -2.07   -2.98   -3.90   -4.76   -5.47   -5.91   -5.98   -5.60   -4.76   -3.50   -1.84    0.25    2.94    6.41   10.72
+    50.0    0.00   -0.16   -0.59   -1.26   -2.08   -2.98   -3.90   -4.76   -5.46   -5.90   -5.97   -5.58   -4.74   -3.48   -1.81    0.29    2.98    6.46   10.75
+    55.0    0.00   -0.16   -0.60   -1.26   -2.08   -2.99   -3.90   -4.76   -5.46   -5.89   -5.95   -5.57   -4.72   -3.46   -1.79    0.31    3.01    6.47   10.73
+    60.0    0.00   -0.16   -0.60   -1.27   -2.09   -2.99   -3.90   -4.76   -5.46   -5.89   -5.94   -5.56   -4.71   -3.44   -1.78    0.32    3.01    6.45   10.67
+    65.0    0.00   -0.16   -0.60   -1.27   -2.09   -2.99   -3.90   -4.76   -5.45   -5.88   -5.94   -5.55   -4.71   -3.44   -1.78    0.32    2.99    6.40   10.58
+    70.0    0.00   -0.16   -0.61   -1.27   -2.09   -2.99   -3.90   -4.76   -5.45   -5.88   -5.94   -5.55   -4.71   -3.44   -1.78    0.30    2.95    6.32   10.45
+    75.0    0.00   -0.16   -0.61   -1.27   -2.09   -2.99   -3.90   -4.75   -5.45   -5.88   -5.94   -5.55   -4.71   -3.45   -1.80    0.27    2.89    6.22   10.32
+    80.0    0.00   -0.17   -0.61   -1.27   -2.09   -2.99   -3.90   -4.75   -5.45   -5.89   -5.95   -5.57   -4.72   -3.46   -1.81    0.24    2.82    6.12   10.20
+    85.0    0.00   -0.17   -0.61   -1.27   -2.09   -2.98   -3.90   -4.75   -5.46   -5.90   -5.96   -5.58   -4.73   -3.47   -1.83    0.20    2.76    6.03   10.09
+    90.0    0.00   -0.17   -0.61   -1.27   -2.09   -2.98   -3.89   -4.75   -5.47   -5.91   -5.98   -5.59   -4.75   -3.48   -1.85    0.16    2.70    5.95   10.02
+    95.0    0.00   -0.17   -0.61   -1.27   -2.09   -2.98   -3.89   -4.76   -5.47   -5.92   -5.99   -5.61   -4.76   -3.49   -1.87    0.14    2.65    5.89   10.00
+   100.0    0.00   -0.17   -0.61   -1.27   -2.08   -2.98   -3.89   -4.76   -5.48   -5.93   -6.01   -5.62   -4.76   -3.50   -1.87    0.12    2.63    5.87   10.01
+   105.0    0.00   -0.17   -0.61   -1.27   -2.08   -2.97   -3.89   -4.76   -5.48   -5.94   -6.01   -5.62   -4.77   -3.49   -1.87    0.12    2.62    5.88   10.07
+   110.0    0.00   -0.17   -0.62   -1.28   -2.08   -2.97   -3.89   -4.76   -5.49   -5.95   -6.02   -5.62   -4.76   -3.48   -1.86    0.13    2.64    5.92   10.17
+   115.0    0.00   -0.17   -0.62   -1.28   -2.08   -2.97   -3.89   -4.76   -5.49   -5.95   -6.02   -5.62   -4.75   -3.47   -1.84    0.16    2.68    5.99   10.28
+   120.0    0.00   -0.17   -0.62   -1.28   -2.08   -2.97   -3.89   -4.76   -5.49   -5.94   -6.01   -5.61   -4.74   -3.45   -1.81    0.20    2.74    6.07   10.40
+   125.0    0.00   -0.17   -0.62   -1.28   -2.08   -2.97   -3.89   -4.76   -5.48   -5.94   -6.00   -5.59   -4.72   -3.43   -1.78    0.25    2.81    6.16   10.51
+   130.0    0.00   -0.17   -0.62   -1.28   -2.08   -2.98   -3.89   -4.76   -5.48   -5.93   -5.98   -5.58   -4.70   -3.40   -1.75    0.29    2.87    6.24   10.60
+   135.0    0.00   -0.17   -0.62   -1.28   -2.09   -2.98   -3.89   -4.76   -5.47   -5.91   -5.97   -5.56   -4.68   -3.38   -1.72    0.33    2.93    6.31   10.65
+   140.0    0.00   -0.17   -0.62   -1.28   -2.09   -2.98   -3.89   -4.76   -5.47   -5.90   -5.95   -5.54   -4.66   -3.37   -1.70    0.36    2.97    6.36   10.66
+   145.0    0.00   -0.17   -0.62   -1.28   -2.09   -2.98   -3.90   -4.76   -5.46   -5.90   -5.94   -5.53   -4.66   -3.36   -1.69    0.38    2.99    6.37   10.64
+   150.0    0.00   -0.17   -0.62   -1.28   -2.09   -2.98   -3.90   -4.76   -5.46   -5.89   -5.94   -5.53   -4.66   -3.36   -1.70    0.38    2.99    6.36   10.57
+   155.0    0.00   -0.17   -0.61   -1.28   -2.09   -2.99   -3.90   -4.76   -5.46   -5.90   -5.94   -5.54   -4.66   -3.38   -1.71    0.35    2.96    6.31   10.48
+   160.0    0.00   -0.17   -0.61   -1.28   -2.09   -2.99   -3.90   -4.76   -5.47   -5.90   -5.95   -5.55   -4.68   -3.40   -1.74    0.32    2.92    6.24   10.36
+   165.0    0.00   -0.17   -0.61   -1.27   -2.09   -2.99   -3.91   -4.77   -5.48   -5.92   -5.97   -5.57   -4.71   -3.43   -1.78    0.27    2.85    6.16   10.24
+   170.0    0.00   -0.17   -0.61   -1.27   -2.09   -2.99   -3.91   -4.78   -5.49   -5.93   -5.99   -5.60   -4.74   -3.46   -1.82    0.21    2.78    6.07   10.13
+   175.0    0.00   -0.17   -0.61   -1.27   -2.09   -2.99   -3.91   -4.78   -5.50   -5.95   -6.02   -5.62   -4.77   -3.50   -1.87    0.16    2.71    5.98   10.04
+   180.0    0.00   -0.16   -0.60   -1.27   -2.08   -2.99   -3.91   -4.79   -5.52   -5.98   -6.04   -5.65   -4.80   -3.53   -1.91    0.11    2.65    5.92    9.97
+   185.0    0.00   -0.16   -0.60   -1.26   -2.08   -2.98   -3.91   -4.79   -5.53   -5.99   -6.07   -5.68   -4.83   -3.56   -1.94    0.07    2.61    5.88    9.95
+   190.0    0.00   -0.16   -0.60   -1.26   -2.07   -2.98   -3.91   -4.80   -5.54   -6.01   -6.09   -5.70   -4.84   -3.58   -1.95    0.05    2.59    5.87    9.96
+   195.0    0.00   -0.16   -0.60   -1.26   -2.07   -2.97   -3.91   -4.80   -5.54   -6.02   -6.10   -5.71   -4.85   -3.58   -1.95    0.06    2.60    5.89   10.01
+   200.0    0.00   -0.16   -0.59   -1.25   -2.07   -2.97   -3.91   -4.80   -5.54   -6.02   -6.10   -5.71   -4.85   -3.57   -1.93    0.09    2.64    5.95   10.09
+   205.0    0.00   -0.16   -0.59   -1.25   -2.06   -2.97   -3.90   -4.79   -5.54   -6.02   -6.10   -5.71   -4.84   -3.55   -1.90    0.13    2.71    6.03   10.20
+   210.0    0.00   -0.15   -0.59   -1.24   -2.06   -2.96   -3.90   -4.79   -5.53   -6.01   -6.09   -5.69   -4.81   -3.52   -1.85    0.20    2.79    6.13   10.32
+   215.0    0.00   -0.15   -0.58   -1.24   -2.05   -2.96   -3.89   -4.78   -5.53   -6.00   -6.07   -5.67   -4.79   -3.48   -1.80    0.27    2.88    6.25   10.44
+   220.0    0.00   -0.15   -0.58   -1.24   -2.05   -2.96   -3.89   -4.78   -5.52   -5.98   -6.05   -5.64   -4.75   -3.44   -1.74    0.35    2.98    6.35   10.55
+   225.0    0.00   -0.15   -0.58   -1.23   -2.05   -2.96   -3.89   -4.77   -5.51   -5.96   -6.03   -5.62   -4.72   -3.40   -1.69    0.42    3.06    6.44   10.63
+   230.0    0.00   -0.15   -0.58   -1.23   -2.05   -2.95   -3.89   -4.77   -5.50   -5.95   -6.01   -5.59   -4.70   -3.36   -1.65    0.47    3.12    6.51   10.68
+   235.0    0.00   -0.15   -0.57   -1.23   -2.05   -2.95   -3.89   -4.76   -5.49   -5.94   -5.99   -5.58   -4.68   -3.34   -1.62    0.50    3.16    6.54   10.69
+   240.0    0.00   -0.14   -0.57   -1.23   -2.05   -2.96   -3.89   -4.76   -5.49   -5.93   -5.98   -5.57   -4.67   -3.33   -1.61    0.51    3.16    6.52   10.66
+   245.0    0.00   -0.14   -0.57   -1.23   -2.04   -2.96   -3.89   -4.76   -5.48   -5.93   -5.98   -5.57   -4.67   -3.34   -1.62    0.50    3.13    6.47   10.59
+   250.0    0.00   -0.14   -0.57   -1.22   -2.04   -2.96   -3.89   -4.77   -5.48   -5.93   -5.98   -5.57   -4.68   -3.36   -1.65    0.46    3.07    6.39   10.49
+   255.0    0.00   -0.14   -0.56   -1.22   -2.04   -2.96   -3.89   -4.77   -5.49   -5.93   -5.99   -5.59   -4.70   -3.38   -1.69    0.40    2.99    6.28   10.36
+   260.0    0.00   -0.14   -0.56   -1.22   -2.04   -2.96   -3.89   -4.77   -5.49   -5.94   -6.00   -5.60   -4.73   -3.42   -1.73    0.33    2.89    6.15   10.23
+   265.0    0.00   -0.14   -0.56   -1.22   -2.04   -2.95   -3.89   -4.77   -5.49   -5.95   -6.02   -5.62   -4.75   -3.46   -1.79    0.26    2.79    6.03   10.11
+   270.0    0.00   -0.13   -0.56   -1.21   -2.04   -2.95   -3.89   -4.77   -5.50   -5.96   -6.03   -5.65   -4.78   -3.49   -1.83    0.19    2.70    5.91   10.01
+   275.0    0.00   -0.13   -0.56   -1.21   -2.04   -2.95   -3.89   -4.77   -5.50   -5.96   -6.04   -5.66   -4.81   -3.52   -1.87    0.13    2.63    5.83    9.94
+   280.0    0.00   -0.13   -0.55   -1.21   -2.03   -2.95   -3.88   -4.76   -5.50   -5.97   -6.05   -5.68   -4.82   -3.54   -1.90    0.10    2.58    5.77    9.92
+   285.0    0.00   -0.13   -0.55   -1.21   -2.03   -2.94   -3.88   -4.76   -5.50   -5.97   -6.06   -5.68   -4.83   -3.55   -1.91    0.08    2.56    5.76    9.94
+   290.0    0.00   -0.13   -0.55   -1.21   -2.03   -2.94   -3.88   -4.76   -5.49   -5.96   -6.06   -5.68   -4.83   -3.55   -1.91    0.09    2.58    5.79   10.01
+   295.0    0.00   -0.13   -0.55   -1.21   -2.03   -2.94   -3.87   -4.75   -5.49   -5.96   -6.05   -5.68   -4.82   -3.54   -1.89    0.12    2.62    5.86   10.11
+   300.0    0.00   -0.13   -0.55   -1.21   -2.03   -2.94   -3.87   -4.75   -5.49   -5.96   -6.04   -5.67   -4.81   -3.52   -1.86    0.17    2.69    5.96   10.25
+   305.0    0.00   -0.13   -0.55   -1.20   -2.03   -2.94   -3.87   -4.75   -5.48   -5.95   -6.03   -5.65   -4.79   -3.49   -1.82    0.23    2.78    6.08   10.39
+   310.0    0.00   -0.13   -0.55   -1.20   -2.03   -2.94   -3.87   -4.75   -5.48   -5.94   -6.02   -5.64   -4.77   -3.46   -1.78    0.29    2.87    6.21   10.53
+   315.0    0.00   -0.13   -0.55   -1.20   -2.03   -2.94   -3.88   -4.75   -5.48   -5.94   -6.01   -5.62   -4.75   -3.44   -1.74    0.35    2.96    6.32   10.66
+   320.0    0.00   -0.13   -0.55   -1.21   -2.03   -2.94   -3.88   -4.75   -5.48   -5.93   -6.00   -5.61   -4.74   -3.42   -1.71    0.40    3.03    6.42   10.74
+   325.0    0.00   -0.13   -0.55   -1.21   -2.03   -2.94   -3.88   -4.75   -5.48   -5.93   -6.00   -5.60   -4.73   -3.40   -1.69    0.43    3.08    6.48   10.79
+   330.0    0.00   -0.13   -0.55   -1.21   -2.03   -2.94   -3.88   -4.76   -5.48   -5.93   -6.00   -5.60   -4.72   -3.40   -1.68    0.45    3.11    6.50   10.78
+   335.0    0.00   -0.13   -0.55   -1.21   -2.03   -2.94   -3.88   -4.76   -5.48   -5.93   -6.00   -5.61   -4.73   -3.41   -1.69    0.44    3.10    6.49   10.73
+   340.0    0.00   -0.13   -0.55   -1.21   -2.03   -2.94   -3.88   -4.76   -5.48   -5.93   -6.00   -5.61   -4.74   -3.43   -1.72    0.41    3.07    6.44   10.64
+   345.0    0.00   -0.13   -0.55   -1.21   -2.03   -2.94   -3.88   -4.75   -5.48   -5.94   -6.01   -5.63   -4.76   -3.45   -1.75    0.37    3.01    6.37   10.52
+   350.0    0.00   -0.14   -0.56   -1.21   -2.03   -2.94   -3.87   -4.75   -5.48   -5.94   -6.02   -5.64   -4.78   -3.48   -1.79    0.31    2.94    6.28   10.40
+   355.0    0.00   -0.14   -0.56   -1.21   -2.03   -2.94   -3.87   -4.75   -5.48   -5.94   -6.03   -5.66   -4.81   -3.52   -1.83    0.25    2.87    6.18   10.28
+   360.0    0.00   -0.14   -0.56   -1.22   -2.03   -2.94   -3.87   -4.75   -5.48   -5.95   -6.04   -5.67   -4.83   -3.55   -1.88    0.20    2.79    6.10   10.18
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+LEIAT504        OLGA                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               1    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+Number of Calibrated Antennas GPS:      001                 COMMENT             
+Number of Individual Calibrations GPS:  002                 COMMENT             
+   G01                                                      START OF FREQUENCY  
+     -1.18     -0.81     82.88                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.28   -1.06   -2.25   -3.67   -5.16   -6.53   -7.63   -8.32   -8.47   -8.02   -6.96   -5.37   -3.33   -0.85    2.19    6.09   11.16   17.46
+     0.0    0.00   -0.23   -1.01   -2.23   -3.74   -5.33   -6.80   -7.96   -8.62   -8.64   -7.98   -6.70   -4.94   -2.89   -0.57    2.18    5.73   10.32   15.48
+     5.0    0.00   -0.23   -1.01   -2.23   -3.73   -5.32   -6.78   -7.92   -8.56   -8.56   -7.88   -6.59   -4.82   -2.76   -0.45    2.26    5.68   10.04   14.88
+    10.0    0.00   -0.23   -1.01   -2.23   -3.73   -5.31   -6.76   -7.89   -8.50   -8.49   -7.80   -6.49   -4.71   -2.62   -0.30    2.39    5.73    9.86   14.40
+    15.0    0.00   -0.23   -1.01   -2.23   -3.73   -5.31   -6.75   -7.86   -8.46   -8.43   -7.73   -6.43   -4.64   -2.52   -0.15    2.56    5.84    9.81   14.10
+    20.0    0.00   -0.24   -1.01   -2.23   -3.73   -5.31   -6.74   -7.84   -8.42   -8.40   -7.71   -6.42   -4.63   -2.49   -0.06    2.71    5.99    9.88   14.04
+    25.0    0.00   -0.24   -1.01   -2.23   -3.74   -5.31   -6.74   -7.82   -8.41   -8.39   -7.74   -6.47   -4.70   -2.54   -0.04    2.82    6.16   10.06   14.23
+    30.0    0.00   -0.24   -1.02   -2.24   -3.74   -5.31   -6.74   -7.82   -8.41   -8.42   -7.81   -6.60   -4.86   -2.68   -0.12    2.85    6.31   10.32   14.64
+    35.0    0.00   -0.24   -1.02   -2.24   -3.74   -5.31   -6.73   -7.82   -8.43   -8.48   -7.92   -6.78   -5.09   -2.91   -0.28    2.81    6.43   10.61   15.22
+    40.0    0.00   -0.25   -1.02   -2.24   -3.74   -5.31   -6.73   -7.82   -8.45   -8.55   -8.07   -7.01   -5.38   -3.21   -0.52    2.70    6.49   10.90   15.88
+    45.0    0.00   -0.25   -1.03   -2.25   -3.74   -5.30   -6.71   -7.81   -8.48   -8.63   -8.22   -7.24   -5.68   -3.52   -0.78    2.54    6.50   11.15   16.54
+    50.0    0.00   -0.25   -1.03   -2.25   -3.73   -5.28   -6.69   -7.80   -8.49   -8.70   -8.37   -7.46   -5.95   -3.81   -1.04    2.37    6.46   11.32   17.09
+    55.0    0.00   -0.26   -1.04   -2.24   -3.71   -5.25   -6.65   -7.77   -8.49   -8.74   -8.48   -7.63   -6.16   -4.04   -1.24    2.22    6.38   11.38   17.47
+    60.0    0.00   -0.26   -1.04   -2.24   -3.69   -5.21   -6.60   -7.72   -8.46   -8.76   -8.53   -7.73   -6.28   -4.16   -1.36    2.11    6.29   11.35   17.64
+    65.0    0.00   -0.27   -1.05   -2.23   -3.67   -5.17   -6.54   -7.66   -8.41   -8.73   -8.53   -7.74   -6.29   -4.16   -1.37    2.07    6.19   11.21   17.61
+    70.0    0.00   -0.27   -1.05   -2.23   -3.64   -5.11   -6.47   -7.58   -8.34   -8.66   -8.46   -7.66   -6.19   -4.05   -1.28    2.09    6.09   11.00   17.39
+    75.0    0.00   -0.27   -1.05   -2.22   -3.62   -5.06   -6.40   -7.49   -8.24   -8.56   -8.34   -7.50   -5.99   -3.84   -1.10    2.15    6.00   10.75   17.07
+    80.0    0.00   -0.28   -1.06   -2.21   -3.59   -5.01   -6.32   -7.40   -8.14   -8.43   -8.18   -7.29   -5.74   -3.57   -0.89    2.24    5.91   10.49   16.72
+    85.0    0.00   -0.28   -1.06   -2.21   -3.56   -4.96   -6.25   -7.32   -8.04   -8.31   -8.00   -7.05   -5.46   -3.29   -0.68    2.32    5.82   10.27   16.44
+    90.0    0.00   -0.29   -1.07   -2.21   -3.54   -4.92   -6.20   -7.25   -7.96   -8.19   -7.84   -6.83   -5.20   -3.05   -0.51    2.36    5.73   10.10   16.29
+    95.0    0.00   -0.29   -1.07   -2.20   -3.53   -4.89   -6.16   -7.21   -7.90   -8.10   -7.71   -6.66   -5.00   -2.88   -0.43    2.33    5.63   10.02   16.33
+   100.0    0.00   -0.30   -1.08   -2.21   -3.52   -4.88   -6.14   -7.19   -7.88   -8.06   -7.63   -6.56   -4.90   -2.82   -0.44    2.24    5.53   10.03   16.56
+   105.0    0.00   -0.30   -1.08   -2.21   -3.52   -4.88   -6.15   -7.20   -7.89   -8.07   -7.63   -6.54   -4.90   -2.87   -0.56    2.08    5.43   10.14   16.97
+   110.0    0.00   -0.30   -1.09   -2.22   -3.53   -4.89   -6.17   -7.23   -7.94   -8.13   -7.69   -6.61   -5.00   -3.02   -0.77    1.88    5.35   10.33   17.49
+   115.0    0.00   -0.31   -1.10   -2.22   -3.54   -4.91   -6.20   -7.29   -8.02   -8.23   -7.81   -6.75   -5.17   -3.24   -1.01    1.67    5.31   10.58   18.06
+   120.0    0.00   -0.31   -1.10   -2.23   -3.55   -4.93   -6.24   -7.36   -8.12   -8.35   -7.96   -6.94   -5.39   -3.49   -1.26    1.50    5.32   10.87   18.59
+   125.0    0.00   -0.31   -1.11   -2.24   -3.57   -4.95   -6.29   -7.43   -8.22   -8.49   -8.13   -7.13   -5.61   -3.72   -1.46    1.39    5.39   11.16   19.00
+   130.0    0.00   -0.32   -1.11   -2.25   -3.58   -4.98   -6.32   -7.48   -8.30   -8.60   -8.27   -7.30   -5.80   -3.89   -1.58    1.38    5.53   11.43   19.25
+   135.0    0.00   -0.32   -1.12   -2.26   -3.59   -4.99   -6.34   -7.52   -8.36   -8.68   -8.38   -7.42   -5.91   -3.97   -1.59    1.47    5.73   11.67   19.31
+   140.0    0.00   -0.32   -1.12   -2.26   -3.60   -5.00   -6.35   -7.53   -8.38   -8.71   -8.42   -7.46   -5.93   -3.94   -1.49    1.66    5.97   11.86   19.19
+   145.0    0.00   -0.32   -1.13   -2.26   -3.60   -4.99   -6.34   -7.51   -8.35   -8.69   -8.39   -7.42   -5.87   -3.83   -1.31    1.91    6.23   11.99   18.93
+   150.0    0.00   -0.32   -1.13   -2.26   -3.59   -4.97   -6.30   -7.45   -8.28   -8.60   -8.29   -7.31   -5.72   -3.64   -1.07    2.19    6.48   12.07   18.60
+   155.0    0.00   -0.32   -1.13   -2.26   -3.58   -4.95   -6.25   -7.38   -8.17   -8.46   -8.13   -7.13   -5.53   -3.42   -0.83    2.43    6.68   12.11   18.27
+   160.0    0.00   -0.32   -1.12   -2.26   -3.57   -4.92   -6.19   -7.28   -8.03   -8.29   -7.94   -6.93   -5.32   -3.22   -0.63    2.60    6.80   12.11   18.02
+   165.0    0.00   -0.32   -1.12   -2.25   -3.55   -4.89   -6.13   -7.18   -7.89   -8.11   -7.73   -6.72   -5.14   -3.07   -0.53    2.67    6.83   12.09   17.88
+   170.0    0.00   -0.32   -1.12   -2.24   -3.54   -4.86   -6.08   -7.09   -7.75   -7.94   -7.54   -6.54   -5.01   -3.02   -0.55    2.60    6.76   12.06   17.90
+   175.0    0.00   -0.32   -1.11   -2.24   -3.53   -4.84   -6.04   -7.02   -7.65   -7.80   -7.39   -6.42   -4.96   -3.07   -0.70    2.40    6.60   12.02   18.06
+   180.0    0.00   -0.32   -1.11   -2.23   -3.52   -4.83   -6.02   -6.98   -7.58   -7.71   -7.31   -6.38   -5.00   -3.22   -0.95    2.11    6.37   11.99   18.31
+   185.0    0.00   -0.32   -1.11   -2.23   -3.52   -4.83   -6.03   -6.98   -7.57   -7.69   -7.29   -6.41   -5.11   -3.44   -1.27    1.77    6.12   11.96   18.61
+   190.0    0.00   -0.31   -1.10   -2.22   -3.53   -4.86   -6.07   -7.03   -7.61   -7.73   -7.34   -6.50   -5.28   -3.71   -1.60    1.44    5.89   11.93   18.88
+   195.0    0.00   -0.31   -1.10   -2.22   -3.54   -4.89   -6.13   -7.11   -7.71   -7.83   -7.45   -6.64   -5.47   -3.95   -1.88    1.17    5.71   11.91   19.06
+   200.0    0.00   -0.31   -1.09   -2.23   -3.56   -4.94   -6.22   -7.23   -7.84   -7.97   -7.60   -6.80   -5.65   -4.15   -2.07    1.02    5.62   11.89   19.08
+   205.0    0.00   -0.31   -1.09   -2.23   -3.58   -5.00   -6.32   -7.37   -8.01   -8.15   -7.77   -6.95   -5.78   -4.24   -2.12    1.01    5.63   11.86   18.94
+   210.0    0.00   -0.30   -1.08   -2.23   -3.61   -5.06   -6.42   -7.52   -8.19   -8.33   -7.94   -7.07   -5.84   -4.22   -2.03    1.15    5.75   11.83   18.64
+   215.0    0.00   -0.30   -1.08   -2.24   -3.64   -5.13   -6.53   -7.67   -8.36   -8.51   -8.08   -7.15   -5.81   -4.08   -1.79    1.43    5.95   11.79   18.22
+   220.0    0.00   -0.30   -1.08   -2.24   -3.67   -5.19   -6.63   -7.80   -8.52   -8.65   -8.18   -7.16   -5.71   -3.85   -1.44    1.80    6.19   11.73   17.74
+   225.0    0.00   -0.29   -1.08   -2.25   -3.69   -5.24   -6.71   -7.91   -8.64   -8.75   -8.23   -7.12   -5.54   -3.55   -1.05    2.19    6.43   11.66   17.28
+   230.0    0.00   -0.29   -1.07   -2.26   -3.71   -5.28   -6.77   -7.99   -8.71   -8.81   -8.23   -7.04   -5.35   -3.24   -0.66    2.55    6.63   11.57   16.93
+   235.0    0.00   -0.29   -1.07   -2.26   -3.72   -5.30   -6.81   -8.02   -8.75   -8.82   -8.20   -6.94   -5.16   -2.96   -0.35    2.81    6.73   11.46   16.72
+   240.0    0.00   -0.28   -1.07   -2.26   -3.73   -5.32   -6.82   -8.03   -8.74   -8.79   -8.14   -6.83   -5.00   -2.76   -0.16    2.93    6.70   11.32   16.72
+   245.0    0.00   -0.28   -1.07   -2.26   -3.74   -5.32   -6.81   -8.00   -8.69   -8.73   -8.06   -6.74   -4.90   -2.67   -0.11    2.88    6.54   11.16   16.90
+   250.0    0.00   -0.28   -1.07   -2.27   -3.74   -5.30   -6.78   -7.94   -8.61   -8.65   -7.99   -6.68   -4.88   -2.70   -0.23    2.66    6.26   10.99   17.25
+   255.0    0.00   -0.27   -1.06   -2.27   -3.73   -5.29   -6.73   -7.87   -8.52   -8.56   -7.92   -6.67   -4.93   -2.84   -0.47    2.32    5.89   10.80   17.71
+   260.0    0.00   -0.27   -1.06   -2.27   -3.73   -5.26   -6.68   -7.79   -8.42   -8.47   -7.88   -6.70   -5.05   -3.06   -0.79    1.91    5.48   10.62   18.20
+   265.0    0.00   -0.27   -1.06   -2.27   -3.72   -5.24   -6.63   -7.71   -8.33   -8.40   -7.86   -6.76   -5.20   -3.32   -1.15    1.49    5.08   10.45   18.64
+   270.0    0.00   -0.27   -1.06   -2.27   -3.72   -5.22   -6.58   -7.63   -8.25   -8.34   -7.86   -6.84   -5.37   -3.57   -1.46    1.14    4.77   10.32   18.97
+   275.0    0.00   -0.26   -1.06   -2.27   -3.71   -5.20   -6.54   -7.58   -8.19   -8.31   -7.88   -6.93   -5.53   -3.77   -1.68    0.92    4.58   10.24   19.15
+   280.0    0.00   -0.26   -1.06   -2.27   -3.72   -5.19   -6.51   -7.54   -8.16   -8.30   -7.91   -7.01   -5.64   -3.88   -1.78    0.86    4.55   10.22   19.16
+   285.0    0.00   -0.26   -1.06   -2.27   -3.72   -5.19   -6.51   -7.53   -8.15   -8.31   -7.95   -7.06   -5.68   -3.89   -1.72    0.98    4.69   10.29   19.01
+   290.0    0.00   -0.26   -1.05   -2.27   -3.73   -5.20   -6.51   -7.53   -8.17   -8.34   -7.99   -7.09   -5.67   -3.80   -1.52    1.26    4.98   10.43   18.75
+   295.0    0.00   -0.25   -1.05   -2.28   -3.73   -5.21   -6.53   -7.56   -8.20   -8.38   -8.03   -7.10   -5.60   -3.62   -1.22    1.67    5.39   10.65   18.42
+   300.0    0.00   -0.25   -1.05   -2.28   -3.74   -5.23   -6.57   -7.61   -8.26   -8.44   -8.06   -7.08   -5.50   -3.39   -0.86    2.14    5.88   10.93   18.10
+   305.0    0.00   -0.25   -1.05   -2.28   -3.75   -5.26   -6.61   -7.67   -8.33   -8.50   -8.09   -7.05   -5.37   -3.15   -0.49    2.61    6.36   11.24   17.84
+   310.0    0.00   -0.25   -1.05   -2.28   -3.76   -5.29   -6.66   -7.74   -8.41   -8.57   -8.12   -7.02   -5.26   -2.94   -0.17    3.01    6.80   11.55   17.67
+   315.0    0.00   -0.24   -1.04   -2.28   -3.77   -5.31   -6.71   -7.81   -8.49   -8.64   -8.16   -6.99   -5.17   -2.78    0.05    3.30    7.13   11.83   17.60
+   320.0    0.00   -0.24   -1.04   -2.28   -3.78   -5.33   -6.75   -7.87   -8.57   -8.70   -8.19   -6.98   -5.12   -2.70    0.15    3.44    7.32   12.03   17.62
+   325.0    0.00   -0.24   -1.03   -2.27   -3.78   -5.35   -6.79   -7.93   -8.63   -8.76   -8.22   -6.98   -5.10   -2.69    0.14    3.43    7.36   12.14   17.67
+   330.0    0.00   -0.24   -1.03   -2.27   -3.78   -5.36   -6.82   -7.98   -8.69   -8.81   -8.25   -6.99   -5.12   -2.75    0.03    3.29    7.25   12.13   17.70
+   335.0    0.00   -0.24   -1.03   -2.26   -3.78   -5.37   -6.84   -8.01   -8.72   -8.84   -8.26   -7.00   -5.15   -2.84   -0.15    3.05    7.03   12.00   17.66
+   340.0    0.00   -0.23   -1.02   -2.26   -3.77   -5.37   -6.85   -8.03   -8.74   -8.84   -8.25   -6.99   -5.17   -2.94   -0.34    2.78    6.74   11.76   17.49
+   345.0    0.00   -0.23   -1.02   -2.25   -3.76   -5.36   -6.85   -8.03   -8.74   -8.82   -8.22   -6.96   -5.17   -3.01   -0.50    2.52    6.42   11.44   17.16
+   350.0    0.00   -0.23   -1.01   -2.24   -3.75   -5.35   -6.84   -8.02   -8.71   -8.78   -8.16   -6.90   -5.13   -3.02   -0.61    2.31    6.12   11.06   16.69
+   355.0    0.00   -0.23   -1.01   -2.24   -3.74   -5.34   -6.82   -7.99   -8.67   -8.72   -8.08   -6.81   -5.05   -2.98   -0.63    2.20    5.88   10.67   16.11
+   360.0    0.00   -0.23   -1.01   -2.23   -3.74   -5.33   -6.80   -7.96   -8.62   -8.64   -7.98   -6.70   -4.94   -2.89   -0.57    2.18    5.73   10.32   15.48
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.41      0.29    112.82                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.10   -0.39   -0.87   -1.49   -2.19   -2.90   -3.55   -4.06   -4.37   -4.38   -3.92   -2.82   -0.94    1.68    4.65    7.21    8.35    7.09
+     0.0    0.00   -0.07   -0.39   -0.91   -1.57   -2.28   -2.98   -3.60   -4.12   -4.47   -4.52   -4.07   -2.92   -0.87    2.04    5.47    8.63   10.40    9.59
+     5.0    0.00   -0.07   -0.39   -0.91   -1.56   -2.25   -2.93   -3.55   -4.09   -4.47   -4.54   -4.07   -2.86   -0.78    2.10    5.44    8.77   11.66   14.08
+    10.0    0.00   -0.07   -0.39   -0.91   -1.55   -2.22   -2.88   -3.50   -4.05   -4.46   -4.53   -4.04   -2.78   -0.68    2.11    5.31    8.74   12.70   18.31
+    15.0    0.00   -0.07   -0.38   -0.91   -1.54   -2.20   -2.84   -3.45   -4.01   -4.43   -4.50   -3.98   -2.68   -0.59    2.07    5.07    8.51   13.34   21.79
+    20.0    0.00   -0.07   -0.38   -0.91   -1.54   -2.19   -2.82   -3.43   -3.98   -4.39   -4.44   -3.88   -2.55   -0.51    2.00    4.74    8.07   13.48   24.10
+    25.0    0.00   -0.07   -0.38   -0.90   -1.54   -2.20   -2.82   -3.41   -3.95   -4.33   -4.35   -3.76   -2.43   -0.44    1.88    4.34    7.42   13.03   24.94
+    30.0    0.00   -0.06   -0.38   -0.90   -1.55   -2.21   -2.84   -3.42   -3.93   -4.28   -4.26   -3.64   -2.30   -0.40    1.74    3.90    6.63   12.02   24.16
+    35.0    0.00   -0.06   -0.38   -0.90   -1.56   -2.23   -2.87   -3.44   -3.92   -4.22   -4.15   -3.51   -2.21   -0.39    1.59    3.47    5.78   10.52   21.76
+    40.0    0.00   -0.06   -0.37   -0.90   -1.57   -2.26   -2.91   -3.47   -3.91   -4.16   -4.06   -3.41   -2.15   -0.42    1.44    3.11    4.95    8.68   17.93
+    45.0    0.00   -0.06   -0.37   -0.90   -1.58   -2.30   -2.96   -3.51   -3.92   -4.11   -3.98   -3.35   -2.15   -0.49    1.30    2.85    4.25    6.68   13.01
+    50.0    0.00   -0.07   -0.37   -0.89   -1.58   -2.33   -3.01   -3.55   -3.93   -4.08   -3.93   -3.34   -2.21   -0.60    1.20    2.74    3.76    4.73    7.42
+    55.0    0.00   -0.07   -0.36   -0.89   -1.59   -2.35   -3.05   -3.59   -3.94   -4.06   -3.91   -3.38   -2.33   -0.74    1.14    2.78    3.53    3.01    1.67
+    60.0    0.00   -0.07   -0.36   -0.88   -1.58   -2.36   -3.08   -3.62   -3.95   -4.06   -3.93   -3.47   -2.50   -0.92    1.11    2.98    3.61    1.69   -3.74
+    65.0    0.00   -0.07   -0.35   -0.86   -1.57   -2.36   -3.09   -3.64   -3.96   -4.07   -3.98   -3.59   -2.70   -1.10    1.13    3.31    3.97    0.88   -8.37
+    70.0    0.00   -0.07   -0.35   -0.85   -1.55   -2.34   -3.08   -3.64   -3.97   -4.10   -4.04   -3.73   -2.91   -1.28    1.18    3.74    4.56    0.63  -11.85
+    75.0    0.00   -0.07   -0.34   -0.83   -1.52   -2.31   -3.06   -3.63   -3.98   -4.13   -4.12   -3.88   -3.11   -1.43    1.24    4.19    5.32    0.91  -13.95
+    80.0    0.00   -0.08   -0.34   -0.82   -1.49   -2.27   -3.02   -3.62   -3.99   -4.17   -4.20   -4.00   -3.27   -1.56    1.31    4.63    6.14    1.66  -14.57
+    85.0    0.00   -0.08   -0.34   -0.80   -1.45   -2.22   -2.98   -3.59   -3.99   -4.21   -4.27   -4.10   -3.38   -1.63    1.38    4.99    6.92    2.77  -13.75
+    90.0    0.00   -0.08   -0.34   -0.79   -1.42   -2.17   -2.93   -3.56   -4.00   -4.24   -4.32   -4.15   -3.42   -1.66    1.42    5.23    7.58    4.10  -11.62
+    95.0    0.00   -0.09   -0.35   -0.78   -1.39   -2.12   -2.88   -3.53   -4.00   -4.28   -4.36   -4.16   -3.40   -1.64    1.43    5.32    8.05    5.52   -8.42
+   100.0    0.00   -0.09   -0.35   -0.78   -1.36   -2.08   -2.83   -3.51   -4.01   -4.30   -4.37   -4.13   -3.33   -1.58    1.41    5.27    8.30    6.91   -4.44
+   105.0    0.00   -0.10   -0.36   -0.78   -1.35   -2.04   -2.79   -3.48   -4.02   -4.33   -4.37   -4.07   -3.21   -1.49    1.36    5.08    8.33    8.19    0.02
+   110.0    0.00   -0.11   -0.38   -0.79   -1.35   -2.02   -2.76   -3.46   -4.02   -4.35   -4.37   -3.99   -3.08   -1.38    1.29    4.78    8.17    9.31    4.67
+   115.0    0.00   -0.12   -0.39   -0.81   -1.35   -2.01   -2.73   -3.44   -4.03   -4.36   -4.36   -3.92   -2.95   -1.28    1.20    4.43    7.88   10.24    9.25
+   120.0    0.00   -0.12   -0.41   -0.83   -1.37   -2.01   -2.72   -3.43   -4.03   -4.38   -4.36   -3.87   -2.83   -1.19    1.11    4.07    7.53   11.01   13.57
+   125.0    0.00   -0.13   -0.43   -0.86   -1.40   -2.02   -2.71   -3.42   -4.03   -4.40   -4.38   -3.85   -2.76   -1.12    1.03    3.74    7.18   11.65   17.47
+   130.0    0.00   -0.14   -0.45   -0.90   -1.43   -2.04   -2.71   -3.40   -4.02   -4.42   -4.41   -3.86   -2.73   -1.09    0.97    3.48    6.89   12.18   20.86
+   135.0    0.00   -0.15   -0.47   -0.93   -1.47   -2.07   -2.72   -3.39   -4.01   -4.43   -4.45   -3.90   -2.74   -1.07    0.93    3.30    6.69   12.64   23.68
+   140.0    0.00   -0.15   -0.50   -0.96   -1.51   -2.10   -2.72   -3.38   -4.00   -4.44   -4.49   -3.96   -2.77   -1.08    0.91    3.22    6.60   13.05   25.91
+   145.0    0.00   -0.16   -0.51   -1.00   -1.55   -2.12   -2.73   -3.37   -3.99   -4.45   -4.54   -4.02   -2.83   -1.09    0.92    3.21    6.61   13.39   27.56
+   150.0    0.00   -0.17   -0.53   -1.02   -1.58   -2.15   -2.74   -3.36   -3.97   -4.46   -4.57   -4.08   -2.88   -1.10    0.95    3.26    6.67   13.66   28.65
+   155.0    0.00   -0.17   -0.54   -1.05   -1.60   -2.17   -2.74   -3.35   -3.96   -4.45   -4.59   -4.11   -2.91   -1.10    1.00    3.33    6.75   13.83   29.18
+   160.0    0.00   -0.17   -0.55   -1.06   -1.62   -2.18   -2.75   -3.34   -3.95   -4.44   -4.58   -4.11   -2.90   -1.08    1.04    3.39    6.81   13.85   29.18
+   165.0    0.00   -0.18   -0.56   -1.06   -1.62   -2.18   -2.75   -3.34   -3.94   -4.43   -4.55   -4.07   -2.85   -1.04    1.08    3.42    6.81   13.72   28.69
+   170.0    0.00   -0.18   -0.56   -1.06   -1.61   -2.18   -2.75   -3.35   -3.94   -4.40   -4.50   -3.99   -2.77   -0.97    1.11    3.42    6.74   13.43   27.73
+   175.0    0.00   -0.18   -0.56   -1.05   -1.60   -2.16   -2.74   -3.35   -3.95   -4.38   -4.43   -3.88   -2.65   -0.89    1.13    3.37    6.60   12.98   26.34
+   180.0    0.00   -0.18   -0.55   -1.03   -1.57   -2.14   -2.73   -3.36   -3.96   -4.36   -4.35   -3.75   -2.52   -0.81    1.14    3.30    6.42   12.39   24.56
+   185.0    0.00   -0.18   -0.54   -1.01   -1.54   -2.11   -2.73   -3.37   -3.97   -4.34   -4.28   -3.63   -2.39   -0.73    1.14    3.24    6.23   11.73   22.44
+   190.0    0.00   -0.17   -0.53   -0.98   -1.50   -2.08   -2.72   -3.39   -3.99   -4.33   -4.22   -3.53   -2.29   -0.67    1.15    3.21    6.08   11.04   20.03
+   195.0    0.00   -0.17   -0.51   -0.96   -1.47   -2.05   -2.71   -3.40   -4.01   -4.33   -4.18   -3.46   -2.23   -0.64    1.17    3.24    6.02   10.36   17.42
+   200.0    0.00   -0.17   -0.50   -0.93   -1.43   -2.02   -2.70   -3.42   -4.03   -4.34   -4.17   -3.44   -2.22   -0.63    1.21    3.36    6.08    9.74   14.64
+   205.0    0.00   -0.16   -0.48   -0.90   -1.41   -2.01   -2.71   -3.44   -4.05   -4.35   -4.18   -3.46   -2.26   -0.66    1.28    3.58    6.27    9.21   11.78
+   210.0    0.00   -0.16   -0.47   -0.88   -1.39   -2.00   -2.72   -3.46   -4.08   -4.38   -4.22   -3.53   -2.35   -0.71    1.38    3.89    6.60    8.76    8.89
+   215.0    0.00   -0.15   -0.45   -0.87   -1.38   -2.01   -2.74   -3.49   -4.10   -4.41   -4.28   -3.64   -2.48   -0.77    1.52    4.29    7.02    8.39    6.05
+   220.0    0.00   -0.14   -0.44   -0.86   -1.39   -2.04   -2.78   -3.53   -4.13   -4.44   -4.35   -3.76   -2.62   -0.83    1.68    4.73    7.49    8.06    3.33
+   225.0    0.00   -0.14   -0.43   -0.85   -1.40   -2.07   -2.83   -3.57   -4.16   -4.48   -4.42   -3.89   -2.77   -0.88    1.87    5.20    7.96    7.75    0.81
+   230.0    0.00   -0.13   -0.43   -0.86   -1.43   -2.12   -2.88   -3.61   -4.19   -4.51   -4.48   -4.01   -2.90   -0.91    2.07    5.64    8.37    7.43   -1.42
+   235.0    0.00   -0.13   -0.42   -0.86   -1.46   -2.18   -2.95   -3.66   -4.22   -4.54   -4.54   -4.11   -2.99   -0.91    2.27    6.02    8.68    7.09   -3.27
+   240.0    0.00   -0.12   -0.41   -0.87   -1.50   -2.24   -3.01   -3.72   -4.25   -4.56   -4.58   -4.17   -3.05   -0.87    2.45    6.32    8.85    6.72   -4.64
+   245.0    0.00   -0.12   -0.41   -0.89   -1.53   -2.30   -3.08   -3.76   -4.27   -4.57   -4.61   -4.21   -3.06   -0.81    2.61    6.51    8.89    6.37   -5.45
+   250.0    0.00   -0.11   -0.41   -0.90   -1.57   -2.35   -3.13   -3.80   -4.30   -4.59   -4.62   -4.22   -3.04   -0.73    2.74    6.59    8.79    6.07   -5.63
+   255.0    0.00   -0.11   -0.41   -0.91   -1.59   -2.39   -3.17   -3.83   -4.31   -4.59   -4.63   -4.21   -3.00   -0.64    2.82    6.57    8.60    5.86   -5.16
+   260.0    0.00   -0.10   -0.40   -0.92   -1.61   -2.41   -3.19   -3.84   -4.32   -4.60   -4.63   -4.19   -2.94   -0.56    2.86    6.46    8.35    5.80   -4.05
+   265.0    0.00   -0.10   -0.40   -0.92   -1.62   -2.42   -3.19   -3.84   -4.31   -4.61   -4.63   -4.17   -2.89   -0.50    2.85    6.30    8.10    5.93   -2.40
+   270.0    0.00   -0.10   -0.40   -0.92   -1.62   -2.41   -3.17   -3.82   -4.30   -4.61   -4.64   -4.16   -2.85   -0.47    2.80    6.10    7.88    6.23   -0.34
+   275.0    0.00   -0.09   -0.40   -0.92   -1.61   -2.39   -3.14   -3.78   -4.28   -4.61   -4.65   -4.16   -2.84   -0.48    2.70    5.89    7.73    6.70    1.93
+   280.0    0.00   -0.09   -0.39   -0.91   -1.60   -2.36   -3.10   -3.74   -4.26   -4.61   -4.66   -4.18   -2.85   -0.52    2.58    5.69    7.65    7.28    4.18
+   285.0    0.00   -0.09   -0.39   -0.90   -1.58   -2.32   -3.05   -3.69   -4.23   -4.60   -4.68   -4.20   -2.89   -0.61    2.42    5.51    7.63    7.89    6.16
+   290.0    0.00   -0.08   -0.39   -0.90   -1.56   -2.29   -3.00   -3.65   -4.20   -4.59   -4.68   -4.22   -2.94   -0.71    2.26    5.35    7.67    8.44    7.63
+   295.0    0.00   -0.08   -0.38   -0.89   -1.54   -2.26   -2.96   -3.61   -4.17   -4.57   -4.68   -4.24   -3.00   -0.84    2.09    5.22    7.72    8.85    8.41
+   300.0    0.00   -0.08   -0.38   -0.88   -1.53   -2.24   -2.94   -3.59   -4.15   -4.55   -4.66   -4.24   -3.06   -0.96    1.92    5.10    7.77    9.04    8.38
+   305.0    0.00   -0.08   -0.38   -0.88   -1.52   -2.23   -2.93   -3.58   -4.13   -4.52   -4.63   -4.23   -3.10   -1.08    1.77    5.00    7.77    8.97    7.55
+   310.0    0.00   -0.07   -0.38   -0.88   -1.52   -2.23   -2.94   -3.59   -4.13   -4.49   -4.58   -4.20   -3.13   -1.17    1.64    4.92    7.74    8.65    6.00
+   315.0    0.00   -0.07   -0.38   -0.88   -1.53   -2.25   -2.96   -3.61   -4.13   -4.47   -4.53   -4.16   -3.13   -1.25    1.55    4.86    7.66    8.14    3.94
+   320.0    0.00   -0.07   -0.38   -0.88   -1.54   -2.27   -2.99   -3.64   -4.14   -4.44   -4.48   -4.11   -3.12   -1.29    1.49    4.83    7.56    7.52    1.69
+   325.0    0.00   -0.07   -0.38   -0.89   -1.55   -2.30   -3.03   -3.67   -4.15   -4.42   -4.43   -4.06   -3.10   -1.30    1.47    4.83    7.48    6.93   -0.42
+   330.0    0.00   -0.07   -0.38   -0.90   -1.57   -2.32   -3.06   -3.70   -4.17   -4.41   -4.40   -4.02   -3.07   -1.28    1.49    4.86    7.44    6.48   -2.02
+   335.0    0.00   -0.07   -0.38   -0.90   -1.58   -2.34   -3.08   -3.72   -4.18   -4.41   -4.38   -3.99   -3.04   -1.25    1.55    4.94    7.48    6.29   -2.78
+   340.0    0.00   -0.07   -0.38   -0.91   -1.59   -2.35   -3.09   -3.73   -4.19   -4.42   -4.39   -3.99   -3.02   -1.19    1.63    5.05    7.60    6.46   -2.47
+   345.0    0.00   -0.07   -0.38   -0.91   -1.59   -2.35   -3.09   -3.72   -4.19   -4.43   -4.41   -4.00   -3.00   -1.12    1.74    5.18    7.82    7.01   -0.97
+   350.0    0.00   -0.07   -0.38   -0.91   -1.59   -2.33   -3.06   -3.70   -4.17   -4.45   -4.44   -4.03   -2.98   -1.05    1.85    5.31    8.09    7.92    1.69
+   355.0    0.00   -0.07   -0.39   -0.91   -1.58   -2.31   -3.02   -3.65   -4.15   -4.46   -4.48   -4.06   -2.95   -0.96    1.96    5.42    8.38    9.09    5.32
+   360.0    0.00   -0.07   -0.39   -0.91   -1.57   -2.28   -2.98   -3.60   -4.12   -4.47   -4.52   -4.07   -2.92   -0.87    2.04    5.47    8.63   10.40    9.59
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+LEIAT504        SCIS                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               6    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+Number of Calibrated Antennas GPS:      006                 COMMENT             
+Number of Individual Calibrations GPS:  034                 COMMENT             
+   G01                                                      START OF FREQUENCY  
+     -0.18     -0.35     85.63                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.45   -1.71   -3.52   -5.56   -7.51   -9.15  -10.34  -11.00  -11.07  -10.50   -9.28   -7.46   -5.14   -2.40    0.84    4.88   10.16   17.01
+     0.0    0.00   -0.46   -1.71   -3.51   -5.56   -7.57   -9.30  -10.61  -11.36  -11.46  -10.86   -9.57   -7.71   -5.42   -2.76    0.43    4.59   10.22   17.57
+     5.0    0.00   -0.46   -1.72   -3.52   -5.57   -7.57   -9.30  -10.61  -11.37  -11.48  -10.88   -9.58   -7.70   -5.40   -2.76    0.38    4.47   10.08   17.51
+    10.0    0.00   -0.47   -1.73   -3.53   -5.57   -7.57   -9.30  -10.61  -11.38  -11.50  -10.90   -9.58   -7.68   -5.37   -2.74    0.36    4.37    9.93   17.40
+    15.0    0.00   -0.47   -1.74   -3.54   -5.58   -7.57   -9.29  -10.61  -11.39  -11.51  -10.91   -9.59   -7.67   -5.34   -2.70    0.36    4.30    9.79   17.27
+    20.0    0.00   -0.48   -1.75   -3.55   -5.58   -7.56   -9.28  -10.59  -11.38  -11.52  -10.92   -9.60   -7.66   -5.30   -2.65    0.39    4.28    9.69   17.13
+    25.0    0.00   -0.48   -1.75   -3.56   -5.59   -7.56   -9.26  -10.57  -11.35  -11.50  -10.92   -9.61   -7.66   -5.27   -2.59    0.46    4.32    9.64   17.00
+    30.0    0.00   -0.48   -1.76   -3.57   -5.59   -7.55   -9.24  -10.53  -11.31  -11.47  -10.91   -9.61   -7.66   -5.24   -2.52    0.57    4.41    9.67   16.89
+    35.0    0.00   -0.49   -1.77   -3.58   -5.60   -7.54   -9.21  -10.48  -11.26  -11.43  -10.89   -9.61   -7.66   -5.22   -2.44    0.70    4.57    9.75   16.83
+    40.0    0.00   -0.49   -1.78   -3.59   -5.60   -7.53   -9.18  -10.43  -11.19  -11.36  -10.85   -9.59   -7.66   -5.20   -2.36    0.86    4.76    9.90   16.81
+    45.0    0.00   -0.50   -1.79   -3.60   -5.61   -7.52   -9.15  -10.37  -11.11  -11.28  -10.79   -9.56   -7.65   -5.17   -2.28    1.02    4.97   10.09   16.85
+    50.0    0.00   -0.50   -1.79   -3.61   -5.62   -7.52   -9.12  -10.32  -11.03  -11.20  -10.71   -9.52   -7.62   -5.13   -2.20    1.17    5.19   10.30   16.93
+    55.0    0.00   -0.50   -1.80   -3.62   -5.62   -7.52   -9.10  -10.27  -10.96  -11.10  -10.62   -9.45   -7.57   -5.09   -2.12    1.31    5.38   10.50   17.06
+    60.0    0.00   -0.50   -1.80   -3.63   -5.63   -7.52   -9.09  -10.23  -10.89  -11.02  -10.53   -9.36   -7.50   -5.03   -2.05    1.42    5.54   10.68   17.21
+    65.0    0.00   -0.50   -1.81   -3.63   -5.64   -7.53   -9.08  -10.20  -10.83  -10.94  -10.44   -9.27   -7.42   -4.96   -1.98    1.50    5.65   10.82   17.38
+    70.0    0.00   -0.50   -1.81   -3.64   -5.65   -7.54   -9.08  -10.19  -10.80  -10.87  -10.35   -9.17   -7.33   -4.89   -1.93    1.54    5.70   10.91   17.53
+    75.0    0.00   -0.51   -1.81   -3.64   -5.66   -7.55   -9.09  -10.19  -10.78  -10.82  -10.27   -9.07   -7.23   -4.81   -1.89    1.54    5.69   10.95   17.66
+    80.0    0.00   -0.50   -1.81   -3.65   -5.67   -7.56   -9.11  -10.19  -10.77  -10.79  -10.21   -8.99   -7.15   -4.75   -1.87    1.52    5.65   10.93   17.75
+    85.0    0.00   -0.50   -1.81   -3.65   -5.67   -7.57   -9.12  -10.21  -10.77  -10.78  -10.17   -8.93   -7.08   -4.70   -1.86    1.48    5.57   10.87   17.79
+    90.0    0.00   -0.50   -1.81   -3.64   -5.67   -7.57   -9.13  -10.22  -10.79  -10.78  -10.16   -8.90   -7.05   -4.68   -1.88    1.42    5.48   10.78   17.78
+    95.0    0.00   -0.50   -1.80   -3.64   -5.67   -7.57   -9.14  -10.23  -10.80  -10.79  -10.16   -8.90   -7.04   -4.69   -1.91    1.35    5.38   10.68   17.71
+   100.0    0.00   -0.50   -1.80   -3.63   -5.66   -7.57   -9.13  -10.24  -10.81  -10.80  -10.18   -8.92   -7.07   -4.72   -1.96    1.28    5.29   10.57   17.59
+   105.0    0.00   -0.50   -1.79   -3.62   -5.65   -7.56   -9.13  -10.23  -10.81  -10.82  -10.21   -8.96   -7.12   -4.78   -2.02    1.21    5.21   10.47   17.44
+   110.0    0.00   -0.49   -1.79   -3.61   -5.63   -7.54   -9.11  -10.22  -10.81  -10.83  -10.24   -9.02   -7.20   -4.86   -2.10    1.15    5.15   10.38   17.28
+   115.0    0.00   -0.49   -1.78   -3.60   -5.62   -7.52   -9.09  -10.20  -10.79  -10.83  -10.27   -9.07   -7.28   -4.96   -2.19    1.08    5.10   10.31   17.11
+   120.0    0.00   -0.49   -1.77   -3.59   -5.61   -7.51   -9.07  -10.18  -10.77  -10.83  -10.29   -9.13   -7.36   -5.06   -2.28    1.01    5.06   10.25   16.96
+   125.0    0.00   -0.48   -1.76   -3.58   -5.59   -7.49   -9.05  -10.16  -10.75  -10.81  -10.29   -9.16   -7.43   -5.15   -2.37    0.94    5.01   10.20   16.83
+   130.0    0.00   -0.48   -1.76   -3.57   -5.58   -7.48   -9.04  -10.14  -10.74  -10.80  -10.29   -9.19   -7.48   -5.22   -2.46    0.86    4.95   10.15   16.74
+   135.0    0.00   -0.48   -1.75   -3.56   -5.58   -7.48   -9.04  -10.14  -10.73  -10.78  -10.28   -9.19   -7.51   -5.28   -2.54    0.78    4.88   10.09   16.69
+   140.0    0.00   -0.47   -1.74   -3.56   -5.57   -7.48   -9.04  -10.14  -10.73  -10.77  -10.27   -9.18   -7.52   -5.32   -2.60    0.69    4.79   10.03   16.67
+   145.0    0.00   -0.47   -1.74   -3.55   -5.58   -7.49   -9.06  -10.16  -10.74  -10.77  -10.25   -9.16   -7.51   -5.34   -2.66    0.60    4.69    9.96   16.67
+   150.0    0.00   -0.46   -1.73   -3.55   -5.58   -7.51   -9.09  -10.19  -10.77  -10.79  -10.25   -9.14   -7.49   -5.34   -2.70    0.52    4.58    9.87   16.67
+   155.0    0.00   -0.46   -1.73   -3.55   -5.59   -7.52   -9.12  -10.23  -10.80  -10.82  -10.26   -9.13   -7.47   -5.33   -2.73    0.45    4.48    9.78   16.66
+   160.0    0.00   -0.46   -1.72   -3.54   -5.59   -7.54   -9.15  -10.28  -10.85  -10.86  -10.28   -9.14   -7.47   -5.33   -2.75    0.39    4.39    9.69   16.61
+   165.0    0.00   -0.45   -1.72   -3.54   -5.60   -7.56   -9.19  -10.32  -10.91  -10.91  -10.32   -9.16   -7.47   -5.33   -2.76    0.35    4.31    9.59   16.53
+   170.0    0.00   -0.45   -1.71   -3.54   -5.61   -7.58   -9.22  -10.37  -10.96  -10.97  -10.38   -9.21   -7.50   -5.34   -2.76    0.33    4.26    9.49   16.40
+   175.0    0.00   -0.45   -1.71   -3.54   -5.61   -7.59   -9.24  -10.41  -11.02  -11.04  -10.46   -9.27   -7.54   -5.35   -2.76    0.33    4.22    9.40   16.23
+   180.0    0.00   -0.44   -1.71   -3.54   -5.61   -7.60   -9.26  -10.44  -11.07  -11.11  -10.53   -9.34   -7.60   -5.38   -2.76    0.34    4.21    9.31   16.03
+   185.0    0.00   -0.44   -1.70   -3.54   -5.62   -7.61   -9.27  -10.46  -11.11  -11.16  -10.60   -9.42   -7.66   -5.41   -2.75    0.36    4.21    9.24   15.82
+   190.0    0.00   -0.44   -1.70   -3.54   -5.61   -7.61   -9.28  -10.48  -11.14  -11.21  -10.67   -9.49   -7.71   -5.44   -2.75    0.39    4.23    9.19   15.63
+   195.0    0.00   -0.43   -1.70   -3.53   -5.61   -7.61   -9.28  -10.48  -11.16  -11.25  -10.71   -9.53   -7.75   -5.46   -2.75    0.41    4.24    9.16   15.48
+   200.0    0.00   -0.43   -1.69   -3.53   -5.61   -7.61   -9.28  -10.49  -11.16  -11.26  -10.73   -9.56   -7.77   -5.47   -2.74    0.43    4.27    9.16   15.40
+   205.0    0.00   -0.43   -1.69   -3.53   -5.61   -7.60   -9.28  -10.49  -11.16  -11.26  -10.73   -9.55   -7.76   -5.46   -2.73    0.44    4.29    9.19   15.42
+   210.0    0.00   -0.43   -1.68   -3.52   -5.60   -7.60   -9.27  -10.48  -11.15  -11.24  -10.70   -9.51   -7.72   -5.43   -2.72    0.45    4.33    9.27   15.54
+   215.0    0.00   -0.42   -1.68   -3.52   -5.60   -7.60   -9.27  -10.47  -11.13  -11.20  -10.64   -9.44   -7.66   -5.39   -2.70    0.47    4.38    9.40   15.77
+   220.0    0.00   -0.42   -1.68   -3.51   -5.59   -7.59   -9.26  -10.46  -11.10  -11.15  -10.57   -9.36   -7.58   -5.33   -2.67    0.49    4.45    9.58   16.10
+   225.0    0.00   -0.42   -1.67   -3.51   -5.58   -7.58   -9.25  -10.44  -11.07  -11.09  -10.49   -9.26   -7.49   -5.27   -2.63    0.53    4.54    9.81   16.52
+   230.0    0.00   -0.42   -1.67   -3.50   -5.57   -7.56   -9.23  -10.41  -11.02  -11.03  -10.40   -9.17   -7.40   -5.20   -2.58    0.59    4.68   10.08   16.98
+   235.0    0.00   -0.41   -1.66   -3.49   -5.56   -7.54   -9.20  -10.37  -10.97  -10.96  -10.32   -9.08   -7.33   -5.14   -2.53    0.68    4.84   10.38   17.46
+   240.0    0.00   -0.41   -1.65   -3.48   -5.54   -7.52   -9.16  -10.33  -10.92  -10.89  -10.25   -9.01   -7.27   -5.09   -2.46    0.79    5.03   10.70   17.91
+   245.0    0.00   -0.41   -1.65   -3.46   -5.52   -7.48   -9.12  -10.27  -10.86  -10.83  -10.19   -8.97   -7.23   -5.04   -2.39    0.92    5.24   11.00   18.30
+   250.0    0.00   -0.41   -1.64   -3.45   -5.49   -7.45   -9.07  -10.21  -10.80  -10.78  -10.16   -8.95   -7.21   -5.01   -2.31    1.05    5.45   11.26   18.59
+   255.0    0.00   -0.41   -1.64   -3.43   -5.46   -7.40   -9.02  -10.15  -10.74  -10.74  -10.14   -8.95   -7.21   -4.98   -2.24    1.20    5.64   11.46   18.75
+   260.0    0.00   -0.41   -1.63   -3.42   -5.44   -7.36   -8.96  -10.10  -10.69  -10.72  -10.14   -8.97   -7.23   -4.96   -2.16    1.32    5.79   11.58   18.79
+   265.0    0.00   -0.40   -1.63   -3.41   -5.41   -7.33   -8.92  -10.05  -10.66  -10.71  -10.16   -8.99   -7.24   -4.94   -2.09    1.43    5.89   11.60   18.69
+   270.0    0.00   -0.40   -1.62   -3.40   -5.39   -7.30   -8.88  -10.02  -10.65  -10.72  -10.18   -9.03   -7.26   -4.92   -2.03    1.51    5.92   11.52   18.48
+   275.0    0.00   -0.40   -1.62   -3.39   -5.38   -7.28   -8.86  -10.01  -10.66  -10.74  -10.22   -9.06   -7.27   -4.89   -1.98    1.54    5.88   11.36   18.17
+   280.0    0.00   -0.40   -1.62   -3.38   -5.37   -7.27   -8.86  -10.02  -10.68  -10.79  -10.27   -9.09   -7.27   -4.86   -1.94    1.54    5.78   11.12   17.81
+   285.0    0.00   -0.40   -1.62   -3.38   -5.36   -7.27   -8.88  -10.06  -10.73  -10.84  -10.31   -9.11   -7.25   -4.83   -1.92    1.50    5.63   10.83   17.42
+   290.0    0.00   -0.41   -1.62   -3.38   -5.37   -7.28   -8.91  -10.11  -10.80  -10.91  -10.36   -9.13   -7.24   -4.80   -1.91    1.43    5.44   10.52   17.06
+   295.0    0.00   -0.41   -1.62   -3.38   -5.38   -7.31   -8.95  -10.17  -10.88  -10.98  -10.41   -9.14   -7.22   -4.77   -1.92    1.33    5.24   10.23   16.74
+   300.0    0.00   -0.41   -1.62   -3.39   -5.39   -7.34   -9.00  -10.25  -10.96  -11.06  -10.46   -9.16   -7.21   -4.76   -1.96    1.23    5.05    9.99   16.49
+   305.0    0.00   -0.41   -1.63   -3.40   -5.41   -7.37   -9.06  -10.32  -11.04  -11.13  -10.51   -9.18   -7.21   -4.77   -2.01    1.12    4.90    9.81   16.34
+   310.0    0.00   -0.41   -1.63   -3.41   -5.43   -7.41   -9.12  -10.39  -11.12  -11.20  -10.56   -9.20   -7.23   -4.81   -2.07    1.02    4.78    9.72   16.28
+   315.0    0.00   -0.42   -1.64   -3.42   -5.45   -7.44   -9.17  -10.46  -11.19  -11.26  -10.60   -9.24   -7.27   -4.86   -2.15    0.94    4.72    9.71   16.32
+   320.0    0.00   -0.42   -1.64   -3.43   -5.47   -7.48   -9.21  -10.51  -11.24  -11.30  -10.64   -9.28   -7.32   -4.94   -2.23    0.87    4.70    9.77   16.43
+   325.0    0.00   -0.42   -1.65   -3.44   -5.49   -7.50   -9.25  -10.55  -11.28  -11.34  -10.68   -9.33   -7.39   -5.03   -2.33    0.81    4.72    9.89   16.61
+   330.0    0.00   -0.43   -1.66   -3.45   -5.51   -7.52   -9.27  -10.57  -11.30  -11.37  -10.72   -9.38   -7.46   -5.12   -2.42    0.76    4.76   10.04   16.82
+   335.0    0.00   -0.43   -1.67   -3.46   -5.52   -7.54   -9.29  -10.59  -11.32  -11.39  -10.75   -9.43   -7.54   -5.21   -2.51    0.71    4.80   10.18   17.04
+   340.0    0.00   -0.44   -1.68   -3.47   -5.53   -7.55   -9.29  -10.60  -11.33  -11.40  -10.77   -9.47   -7.60   -5.29   -2.59    0.66    4.82   10.30   17.24
+   345.0    0.00   -0.44   -1.68   -3.49   -5.54   -7.56   -9.30  -10.60  -11.33  -11.41  -10.80   -9.51   -7.65   -5.36   -2.66    0.61    4.81   10.37   17.41
+   350.0    0.00   -0.45   -1.69   -3.50   -5.55   -7.56   -9.30  -10.60  -11.34  -11.43  -10.82   -9.54   -7.69   -5.40   -2.71    0.55    4.77   10.38   17.52
+   355.0    0.00   -0.45   -1.70   -3.50   -5.56   -7.56   -9.30  -10.61  -11.35  -11.44  -10.84   -9.55   -7.71   -5.42   -2.75    0.49    4.69   10.33   17.58
+   360.0    0.00   -0.46   -1.71   -3.51   -5.56   -7.57   -9.30  -10.61  -11.36  -11.46  -10.86   -9.57   -7.71   -5.42   -2.76    0.43    4.59   10.22   17.57
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.19      0.14    115.35                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.21   -0.78   -1.59   -2.49   -3.39   -4.23   -5.01   -5.68   -6.13   -6.20   -5.72   -4.66   -3.11   -1.22    0.90    3.36    6.52   10.77
+     0.0    0.00   -0.18   -0.73   -1.53   -2.44   -3.36   -4.22   -5.03   -5.75   -6.26   -6.40   -5.98   -4.92   -3.31   -1.36    0.73    3.02    5.88    9.98
+     5.0    0.00   -0.18   -0.73   -1.52   -2.43   -3.34   -4.20   -5.01   -5.74   -6.27   -6.41   -6.00   -4.94   -3.33   -1.40    0.67    2.90    5.68    9.66
+    10.0    0.00   -0.18   -0.73   -1.52   -2.41   -3.31   -4.17   -4.99   -5.72   -6.26   -6.42   -6.00   -4.95   -3.34   -1.41    0.63    2.83    5.56    9.46
+    15.0    0.00   -0.18   -0.73   -1.51   -2.40   -3.29   -4.15   -4.96   -5.70   -6.25   -6.41   -6.00   -4.94   -3.34   -1.41    0.64    2.83    5.54    9.39
+    20.0    0.00   -0.18   -0.73   -1.51   -2.39   -3.27   -4.12   -4.93   -5.67   -6.22   -6.38   -5.98   -4.92   -3.32   -1.39    0.67    2.89    5.62    9.48
+    25.0    0.00   -0.19   -0.73   -1.51   -2.38   -3.25   -4.10   -4.90   -5.64   -6.18   -6.34   -5.94   -4.89   -3.29   -1.36    0.72    2.98    5.79    9.72
+    30.0    0.00   -0.19   -0.73   -1.51   -2.38   -3.24   -4.08   -4.88   -5.60   -6.14   -6.29   -5.88   -4.84   -3.26   -1.33    0.78    3.11    6.03   10.08
+    35.0    0.00   -0.19   -0.74   -1.51   -2.38   -3.24   -4.06   -4.85   -5.57   -6.09   -6.23   -5.82   -4.79   -3.22   -1.30    0.84    3.25    6.32   10.53
+    40.0    0.00   -0.19   -0.74   -1.52   -2.38   -3.24   -4.06   -4.84   -5.53   -6.03   -6.16   -5.74   -4.72   -3.18   -1.27    0.88    3.39    6.60   11.03
+    45.0    0.00   -0.20   -0.75   -1.53   -2.39   -3.25   -4.06   -4.83   -5.50   -5.98   -6.09   -5.67   -4.66   -3.14   -1.25    0.92    3.50    6.87   11.51
+    50.0    0.00   -0.20   -0.75   -1.54   -2.41   -3.27   -4.08   -4.83   -5.48   -5.93   -6.02   -5.59   -4.59   -3.10   -1.24    0.93    3.57    7.08   11.93
+    55.0    0.00   -0.20   -0.76   -1.55   -2.42   -3.29   -4.10   -4.84   -5.48   -5.90   -5.96   -5.52   -4.53   -3.06   -1.24    0.92    3.60    7.22   12.25
+    60.0    0.00   -0.21   -0.77   -1.56   -2.45   -3.31   -4.12   -4.86   -5.48   -5.88   -5.92   -5.47   -4.48   -3.04   -1.24    0.90    3.59    7.27   12.43
+    65.0    0.00   -0.21   -0.78   -1.58   -2.47   -3.34   -4.15   -4.89   -5.50   -5.88   -5.90   -5.43   -4.45   -3.01   -1.24    0.86    3.54    7.24   12.46
+    70.0    0.00   -0.21   -0.79   -1.59   -2.49   -3.37   -4.19   -4.92   -5.52   -5.89   -5.90   -5.42   -4.43   -3.00   -1.25    0.82    3.45    7.13   12.35
+    75.0    0.00   -0.21   -0.79   -1.61   -2.51   -3.40   -4.22   -4.95   -5.55   -5.92   -5.92   -5.43   -4.43   -3.00   -1.26    0.77    3.35    6.95   12.11
+    80.0    0.00   -0.22   -0.80   -1.62   -2.53   -3.42   -4.24   -4.98   -5.58   -5.95   -5.95   -5.45   -4.44   -3.01   -1.28    0.73    3.25    6.75   11.78
+    85.0    0.00   -0.22   -0.81   -1.63   -2.54   -3.44   -4.26   -5.01   -5.62   -5.99   -5.99   -5.49   -4.47   -3.03   -1.29    0.70    3.15    6.54   11.42
+    90.0    0.00   -0.22   -0.81   -1.64   -2.55   -3.45   -4.28   -5.02   -5.64   -6.03   -6.03   -5.54   -4.51   -3.05   -1.31    0.67    3.07    6.35   11.06
+    95.0    0.00   -0.22   -0.82   -1.64   -2.56   -3.45   -4.28   -5.03   -5.66   -6.06   -6.08   -5.58   -4.55   -3.08   -1.32    0.66    3.02    6.21   10.74
+   100.0    0.00   -0.23   -0.82   -1.65   -2.56   -3.46   -4.28   -5.03   -5.67   -6.08   -6.11   -5.62   -4.59   -3.11   -1.33    0.66    3.01    6.13   10.51
+   105.0    0.00   -0.23   -0.82   -1.65   -2.56   -3.45   -4.28   -5.03   -5.66   -6.08   -6.12   -5.65   -4.62   -3.13   -1.34    0.67    3.03    6.11   10.38
+   110.0    0.00   -0.23   -0.82   -1.65   -2.56   -3.45   -4.27   -5.02   -5.65   -6.07   -6.12   -5.66   -4.64   -3.15   -1.35    0.69    3.08    6.17   10.34
+   115.0    0.00   -0.23   -0.83   -1.65   -2.55   -3.44   -4.26   -5.00   -5.64   -6.06   -6.10   -5.64   -4.63   -3.15   -1.34    0.72    3.15    6.27   10.38
+   120.0    0.00   -0.23   -0.82   -1.65   -2.55   -3.43   -4.25   -4.99   -5.62   -6.03   -6.07   -5.61   -4.61   -3.14   -1.33    0.76    3.25    6.42   10.49
+   125.0    0.00   -0.23   -0.82   -1.64   -2.54   -3.42   -4.24   -4.98   -5.60   -6.00   -6.03   -5.57   -4.57   -3.12   -1.31    0.81    3.36    6.58   10.61
+   130.0    0.00   -0.23   -0.82   -1.64   -2.54   -3.42   -4.24   -4.98   -5.59   -5.97   -5.99   -5.51   -4.53   -3.08   -1.28    0.86    3.46    6.74   10.72
+   135.0    0.00   -0.23   -0.82   -1.63   -2.53   -3.41   -4.24   -4.98   -5.58   -5.95   -5.95   -5.46   -4.48   -3.05   -1.25    0.91    3.56    6.87   10.78
+   140.0    0.00   -0.23   -0.81   -1.63   -2.52   -3.41   -4.24   -4.99   -5.58   -5.94   -5.91   -5.42   -4.43   -3.01   -1.23    0.95    3.63    6.95   10.76
+   145.0    0.00   -0.23   -0.81   -1.62   -2.52   -3.41   -4.25   -5.00   -5.60   -5.94   -5.90   -5.39   -4.40   -2.99   -1.20    0.98    3.67    6.98   10.66
+   150.0    0.00   -0.23   -0.81   -1.61   -2.51   -3.41   -4.25   -5.01   -5.61   -5.95   -5.90   -5.38   -4.39   -2.98   -1.20    0.99    3.68    6.95   10.47
+   155.0    0.00   -0.23   -0.80   -1.60   -2.50   -3.40   -4.26   -5.03   -5.63   -5.98   -5.93   -5.40   -4.41   -2.99   -1.20    0.98    3.66    6.86   10.21
+   160.0    0.00   -0.23   -0.80   -1.60   -2.49   -3.40   -4.26   -5.04   -5.66   -6.01   -5.97   -5.45   -4.45   -3.02   -1.23    0.95    3.60    6.72    9.92
+   165.0    0.00   -0.22   -0.79   -1.59   -2.48   -3.39   -4.26   -5.05   -5.68   -6.05   -6.02   -5.51   -4.51   -3.08   -1.28    0.89    3.51    6.55    9.62
+   170.0    0.00   -0.22   -0.79   -1.58   -2.47   -3.38   -4.25   -5.05   -5.70   -6.10   -6.09   -5.59   -4.59   -3.15   -1.34    0.82    3.40    6.36    9.35
+   175.0    0.00   -0.22   -0.79   -1.57   -2.46   -3.36   -4.24   -5.05   -5.72   -6.14   -6.16   -5.68   -4.68   -3.23   -1.41    0.75    3.28    6.18    9.15
+   180.0    0.00   -0.22   -0.78   -1.57   -2.45   -3.35   -4.22   -5.04   -5.73   -6.18   -6.23   -5.77   -4.77   -3.31   -1.48    0.67    3.16    6.03    9.05
+   185.0    0.00   -0.22   -0.78   -1.56   -2.44   -3.34   -4.21   -5.03   -5.74   -6.21   -6.29   -5.84   -4.85   -3.37   -1.53    0.60    3.07    5.93    9.06
+   190.0    0.00   -0.22   -0.78   -1.56   -2.44   -3.32   -4.19   -5.02   -5.74   -6.24   -6.34   -5.90   -4.91   -3.42   -1.57    0.56    3.00    5.88    9.18
+   195.0    0.00   -0.22   -0.78   -1.56   -2.43   -3.32   -4.18   -5.01   -5.74   -6.25   -6.37   -5.95   -4.94   -3.43   -1.57    0.55    2.97    5.89    9.42
+   200.0    0.00   -0.22   -0.78   -1.56   -2.43   -3.31   -4.17   -5.00   -5.74   -6.26   -6.39   -5.96   -4.95   -3.42   -1.54    0.57    2.99    5.96    9.73
+   205.0    0.00   -0.21   -0.78   -1.56   -2.43   -3.31   -4.17   -5.00   -5.74   -6.26   -6.39   -5.96   -4.92   -3.37   -1.48    0.64    3.06    6.09   10.10
+   210.0    0.00   -0.21   -0.78   -1.56   -2.44   -3.32   -4.18   -5.00   -5.74   -6.26   -6.38   -5.94   -4.88   -3.30   -1.38    0.74    3.17    6.26   10.49
+   215.0    0.00   -0.21   -0.78   -1.56   -2.45   -3.33   -4.19   -5.00   -5.74   -6.25   -6.36   -5.90   -4.82   -3.21   -1.27    0.87    3.31    6.45   10.87
+   220.0    0.00   -0.21   -0.78   -1.57   -2.46   -3.34   -4.20   -5.01   -5.74   -6.24   -6.34   -5.86   -4.75   -3.11   -1.14    1.01    3.47    6.65   11.19
+   225.0    0.00   -0.21   -0.78   -1.57   -2.47   -3.36   -4.21   -5.02   -5.74   -6.23   -6.31   -5.81   -4.68   -3.01   -1.02    1.15    3.62    6.83   11.45
+   230.0    0.00   -0.21   -0.78   -1.58   -2.48   -3.37   -4.23   -5.03   -5.74   -6.21   -6.28   -5.77   -4.62   -2.93   -0.92    1.27    3.76    6.98   11.61
+   235.0    0.00   -0.21   -0.78   -1.58   -2.49   -3.39   -4.24   -5.04   -5.74   -6.20   -6.25   -5.73   -4.57   -2.88   -0.85    1.36    3.86    7.08   11.68
+   240.0    0.00   -0.21   -0.78   -1.59   -2.49   -3.40   -4.25   -5.05   -5.73   -6.19   -6.23   -5.70   -4.54   -2.85   -0.82    1.40    3.91    7.12   11.65
+   245.0    0.00   -0.21   -0.78   -1.59   -2.50   -3.40   -4.26   -5.05   -5.73   -6.17   -6.21   -5.68   -4.53   -2.85   -0.83    1.39    3.91    7.10   11.54
+   250.0    0.00   -0.20   -0.78   -1.59   -2.50   -3.41   -4.26   -5.05   -5.72   -6.16   -6.20   -5.67   -4.54   -2.88   -0.88    1.34    3.85    7.02   11.38
+   255.0    0.00   -0.20   -0.77   -1.59   -2.50   -3.41   -4.26   -5.05   -5.71   -6.15   -6.18   -5.67   -4.56   -2.93   -0.95    1.24    3.75    6.90   11.17
+   260.0    0.00   -0.20   -0.77   -1.59   -2.50   -3.41   -4.26   -5.04   -5.70   -6.14   -6.18   -5.68   -4.59   -2.99   -1.05    1.12    3.61    6.75   10.96
+   265.0    0.00   -0.20   -0.77   -1.58   -2.50   -3.40   -4.25   -5.03   -5.69   -6.13   -6.17   -5.68   -4.61   -3.04   -1.14    1.00    3.47    6.59   10.76
+   270.0    0.00   -0.20   -0.77   -1.58   -2.49   -3.40   -4.25   -5.03   -5.69   -6.13   -6.17   -5.69   -4.63   -3.09   -1.22    0.88    3.33    6.45   10.61
+   275.0    0.00   -0.20   -0.77   -1.58   -2.49   -3.39   -4.24   -5.02   -5.69   -6.13   -6.17   -5.69   -4.64   -3.12   -1.28    0.79    3.22    6.34   10.51
+   280.0    0.00   -0.20   -0.76   -1.57   -2.48   -3.39   -4.24   -5.02   -5.69   -6.13   -6.18   -5.69   -4.64   -3.13   -1.31    0.74    3.15    6.28   10.48
+   285.0    0.00   -0.19   -0.76   -1.57   -2.48   -3.38   -4.24   -5.03   -5.70   -6.14   -6.18   -5.69   -4.63   -3.11   -1.30    0.74    3.14    6.28   10.53
+   290.0    0.00   -0.19   -0.76   -1.57   -2.47   -3.38   -4.24   -5.03   -5.71   -6.15   -6.19   -5.69   -4.62   -3.08   -1.25    0.79    3.19    6.35   10.66
+   295.0    0.00   -0.19   -0.75   -1.56   -2.47   -3.38   -4.24   -5.04   -5.72   -6.16   -6.20   -5.69   -4.59   -3.03   -1.18    0.88    3.30    6.48   10.85
+   300.0    0.00   -0.19   -0.75   -1.56   -2.47   -3.39   -4.25   -5.05   -5.73   -6.18   -6.21   -5.69   -4.57   -2.98   -1.09    1.00    3.44    6.65   11.08
+   305.0    0.00   -0.19   -0.75   -1.56   -2.48   -3.39   -4.26   -5.06   -5.74   -6.19   -6.22   -5.69   -4.55   -2.93   -1.00    1.13    3.61    6.85   11.34
+   310.0    0.00   -0.19   -0.75   -1.56   -2.48   -3.40   -4.27   -5.07   -5.75   -6.20   -6.23   -5.69   -4.55   -2.89   -0.92    1.25    3.77    7.04   11.59
+   315.0    0.00   -0.19   -0.75   -1.56   -2.48   -3.40   -4.27   -5.08   -5.76   -6.20   -6.24   -5.70   -4.55   -2.87   -0.86    1.35    3.91    7.21   11.81
+   320.0    0.00   -0.18   -0.74   -1.56   -2.48   -3.41   -4.28   -5.08   -5.76   -6.21   -6.25   -5.72   -4.57   -2.87   -0.84    1.42    4.00    7.33   11.96
+   325.0    0.00   -0.18   -0.74   -1.56   -2.49   -3.41   -4.29   -5.08   -5.76   -6.21   -6.26   -5.75   -4.60   -2.90   -0.84    1.43    4.03    7.37   12.02
+   330.0    0.00   -0.18   -0.74   -1.56   -2.49   -3.42   -4.29   -5.08   -5.76   -6.22   -6.28   -5.77   -4.64   -2.94   -0.88    1.40    4.00    7.33   11.97
+   335.0    0.00   -0.18   -0.74   -1.55   -2.49   -3.42   -4.29   -5.08   -5.76   -6.22   -6.29   -5.81   -4.69   -3.00   -0.95    1.33    3.91    7.20   11.81
+   340.0    0.00   -0.18   -0.74   -1.55   -2.48   -3.41   -4.28   -5.08   -5.76   -6.23   -6.31   -5.84   -4.74   -3.07   -1.04    1.22    3.76    6.99   11.55
+   345.0    0.00   -0.18   -0.73   -1.55   -2.48   -3.40   -4.27   -5.07   -5.76   -6.24   -6.33   -5.88   -4.79   -3.14   -1.13    1.09    3.57    6.73   11.20
+   350.0    0.00   -0.18   -0.73   -1.54   -2.47   -3.39   -4.26   -5.06   -5.76   -6.25   -6.36   -5.92   -4.84   -3.21   -1.22    0.96    3.37    6.43   10.79
+   355.0    0.00   -0.18   -0.73   -1.54   -2.46   -3.38   -4.24   -5.05   -5.75   -6.26   -6.38   -5.95   -4.88   -3.27   -1.30    0.83    3.18    6.14   10.37
+   360.0    0.00   -0.18   -0.73   -1.53   -2.44   -3.36   -4.22   -5.03   -5.75   -6.26   -6.40   -5.98   -4.92   -3.31   -1.36    0.73    3.02    5.88    9.98
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+LEIAT504GG      NONE                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH              25    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     4                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+Number of Calibrated Antennas GPS:      025                 COMMENT             
+Number of Individual Calibrations GPS:  049                 COMMENT             
+Number of Calibrated Antennas GLO:      021                 COMMENT             
+Number of Individual Calibrations GLO:  041                 COMMENT             
+# GLONASS PCV                                               COMMENT             
+#  derived from Delta PCV per 25.0 MHz                      COMMENT             
+#  for frequency channel number k=0                         COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.62      1.16     89.56                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.24   -0.94   -2.02   -3.37   -4.84   -6.25   -7.45   -8.28   -8.66   -8.53   -7.88   -6.73   -5.03   -2.69    0.40    4.36    9.17   14.55
+     0.0    0.00   -0.23   -0.92   -2.01   -3.38   -4.87   -6.30   -7.49   -8.30   -8.62   -8.42   -7.71   -6.52   -4.82   -2.54    0.49    4.37    9.07   14.25
+     5.0    0.00   -0.23   -0.93   -2.02   -3.39   -4.88   -6.31   -7.50   -8.31   -8.64   -8.44   -7.73   -6.53   -4.83   -2.55    0.44    4.30    9.01   14.29
+    10.0    0.00   -0.24   -0.94   -2.03   -3.39   -4.88   -6.31   -7.51   -8.33   -8.66   -8.47   -7.75   -6.55   -4.85   -2.58    0.39    4.23    8.96   14.34
+    15.0    0.00   -0.24   -0.94   -2.04   -3.40   -4.89   -6.32   -7.53   -8.35   -8.69   -8.50   -7.79   -6.57   -4.87   -2.61    0.34    4.17    8.92   14.40
+    20.0    0.00   -0.24   -0.95   -2.04   -3.41   -4.89   -6.33   -7.54   -8.37   -8.72   -8.54   -7.83   -6.61   -4.91   -2.65    0.31    4.14    8.92   14.48
+    25.0    0.00   -0.25   -0.96   -2.05   -3.41   -4.90   -6.34   -7.55   -8.40   -8.76   -8.58   -7.87   -6.66   -4.94   -2.67    0.29    4.13    8.94   14.56
+    30.0    0.00   -0.25   -0.96   -2.06   -3.42   -4.91   -6.35   -7.57   -8.42   -8.79   -8.62   -7.92   -6.70   -4.98   -2.69    0.30    4.17    9.00   14.65
+    35.0    0.00   -0.26   -0.97   -2.06   -3.43   -4.91   -6.35   -7.58   -8.44   -8.82   -8.66   -7.96   -6.74   -5.01   -2.69    0.33    4.23    9.09   14.74
+    40.0    0.00   -0.26   -0.97   -2.07   -3.43   -4.92   -6.36   -7.59   -8.45   -8.84   -8.69   -8.00   -6.78   -5.03   -2.68    0.39    4.32    9.20   14.83
+    45.0    0.00   -0.26   -0.98   -2.08   -3.44   -4.93   -6.36   -7.59   -8.46   -8.85   -8.71   -8.02   -6.80   -5.04   -2.66    0.45    4.43    9.32   14.92
+    50.0    0.00   -0.27   -0.99   -2.08   -3.45   -4.93   -6.37   -7.59   -8.46   -8.85   -8.72   -8.04   -6.82   -5.04   -2.63    0.52    4.54    9.45   15.00
+    55.0    0.00   -0.27   -0.99   -2.09   -3.45   -4.93   -6.36   -7.58   -8.45   -8.84   -8.71   -8.04   -6.82   -5.03   -2.60    0.59    4.65    9.57   15.09
+    60.0    0.00   -0.27   -1.00   -2.10   -3.46   -4.93   -6.36   -7.57   -8.43   -8.82   -8.69   -8.02   -6.80   -5.01   -2.56    0.65    4.74    9.67   15.16
+    65.0    0.00   -0.28   -1.00   -2.10   -3.46   -4.93   -6.35   -7.56   -8.40   -8.79   -8.66   -8.00   -6.79   -4.99   -2.54    0.70    4.80    9.75   15.22
+    70.0    0.00   -0.28   -1.01   -2.11   -3.46   -4.93   -6.34   -7.54   -8.38   -8.76   -8.63   -7.97   -6.76   -4.98   -2.52    0.72    4.84    9.80   15.27
+    75.0    0.00   -0.28   -1.01   -2.11   -3.46   -4.92   -6.33   -7.52   -8.35   -8.72   -8.59   -7.94   -6.74   -4.96   -2.52    0.73    4.85    9.82   15.31
+    80.0    0.00   -0.28   -1.01   -2.11   -3.46   -4.92   -6.32   -7.50   -8.32   -8.69   -8.56   -7.91   -6.73   -4.96   -2.52    0.71    4.83    9.81   15.32
+    85.0    0.00   -0.29   -1.02   -2.12   -3.47   -4.92   -6.31   -7.48   -8.30   -8.67   -8.54   -7.89   -6.72   -4.96   -2.54    0.68    4.79    9.77   15.31
+    90.0    0.00   -0.29   -1.02   -2.12   -3.47   -4.92   -6.30   -7.47   -8.29   -8.66   -8.53   -7.89   -6.72   -4.97   -2.57    0.64    4.74    9.71   15.27
+    95.0    0.00   -0.29   -1.02   -2.12   -3.47   -4.92   -6.30   -7.47   -8.28   -8.65   -8.53   -7.89   -6.73   -4.99   -2.60    0.58    4.67    9.64   15.22
+   100.0    0.00   -0.29   -1.03   -2.13   -3.48   -4.92   -6.31   -7.47   -8.29   -8.66   -8.54   -7.90   -6.75   -5.02   -2.64    0.53    4.60    9.57   15.16
+   105.0    0.00   -0.29   -1.03   -2.13   -3.48   -4.93   -6.32   -7.48   -8.30   -8.67   -8.55   -7.93   -6.77   -5.05   -2.68    0.48    4.54    9.49   15.08
+   110.0    0.00   -0.29   -1.03   -2.13   -3.49   -4.94   -6.33   -7.50   -8.32   -8.69   -8.58   -7.95   -6.80   -5.09   -2.72    0.43    4.48    9.42   15.01
+   115.0    0.00   -0.29   -1.03   -2.14   -3.49   -4.95   -6.34   -7.51   -8.34   -8.71   -8.60   -7.97   -6.83   -5.12   -2.75    0.39    4.44    9.37   14.94
+   120.0    0.00   -0.29   -1.03   -2.14   -3.50   -4.96   -6.35   -7.53   -8.35   -8.73   -8.62   -7.99   -6.85   -5.14   -2.78    0.36    4.40    9.33   14.89
+   125.0    0.00   -0.29   -1.03   -2.14   -3.50   -4.96   -6.36   -7.54   -8.37   -8.74   -8.63   -8.00   -6.86   -5.16   -2.80    0.35    4.39    9.31   14.86
+   130.0    0.00   -0.29   -1.03   -2.14   -3.50   -4.97   -6.37   -7.55   -8.37   -8.75   -8.63   -8.00   -6.86   -5.16   -2.81    0.34    4.38    9.31   14.84
+   135.0    0.00   -0.29   -1.03   -2.14   -3.50   -4.97   -6.37   -7.55   -8.37   -8.74   -8.62   -7.99   -6.85   -5.16   -2.81    0.34    4.39    9.32   14.84
+   140.0    0.00   -0.29   -1.02   -2.13   -3.50   -4.96   -6.37   -7.55   -8.36   -8.73   -8.60   -7.97   -6.84   -5.15   -2.80    0.35    4.40    9.34   14.85
+   145.0    0.00   -0.28   -1.02   -2.13   -3.49   -4.96   -6.36   -7.53   -8.35   -8.71   -8.58   -7.95   -6.81   -5.13   -2.78    0.37    4.42    9.35   14.86
+   150.0    0.00   -0.28   -1.01   -2.12   -3.48   -4.94   -6.34   -7.52   -8.32   -8.68   -8.55   -7.92   -6.79   -5.10   -2.76    0.39    4.44    9.36   14.86
+   155.0    0.00   -0.28   -1.01   -2.11   -3.47   -4.93   -6.32   -7.49   -8.30   -8.66   -8.53   -7.90   -6.76   -5.07   -2.73    0.41    4.45    9.36   14.84
+   160.0    0.00   -0.28   -1.00   -2.10   -3.46   -4.91   -6.30   -7.47   -8.28   -8.64   -8.51   -7.88   -6.74   -5.05   -2.70    0.43    4.45    9.34   14.80
+   165.0    0.00   -0.27   -1.00   -2.09   -3.44   -4.89   -6.28   -7.45   -8.26   -8.62   -8.50   -7.87   -6.73   -5.03   -2.68    0.44    4.44    9.29   14.73
+   170.0    0.00   -0.27   -0.99   -2.08   -3.43   -4.87   -6.26   -7.43   -8.24   -8.62   -8.50   -7.87   -6.73   -5.02   -2.67    0.45    4.42    9.23   14.64
+   175.0    0.00   -0.26   -0.98   -2.07   -3.41   -4.86   -6.24   -7.41   -8.24   -8.62   -8.51   -7.88   -6.73   -5.01   -2.66    0.44    4.38    9.15   14.53
+   180.0    0.00   -0.26   -0.97   -2.06   -3.40   -4.84   -6.23   -7.40   -8.23   -8.63   -8.52   -7.90   -6.74   -5.01   -2.66    0.42    4.32    9.05   14.41
+   185.0    0.00   -0.26   -0.96   -2.05   -3.38   -4.83   -6.21   -7.40   -8.24   -8.64   -8.54   -7.92   -6.75   -5.02   -2.67    0.39    4.26    8.96   14.30
+   190.0    0.00   -0.25   -0.96   -2.04   -3.37   -4.81   -6.21   -7.39   -8.24   -8.65   -8.56   -7.94   -6.77   -5.04   -2.70    0.35    4.20    8.88   14.22
+   195.0    0.00   -0.25   -0.95   -2.03   -3.36   -4.80   -6.20   -7.39   -8.25   -8.67   -8.58   -7.95   -6.79   -5.06   -2.73    0.30    4.14    8.82   14.17
+   200.0    0.00   -0.24   -0.94   -2.01   -3.35   -4.80   -6.20   -7.39   -8.25   -8.67   -8.58   -7.96   -6.80   -5.09   -2.77    0.26    4.10    8.79   14.17
+   205.0    0.00   -0.24   -0.93   -2.00   -3.34   -4.79   -6.19   -7.39   -8.25   -8.67   -8.58   -7.96   -6.81   -5.11   -2.80    0.22    4.07    8.80   14.22
+   210.0    0.00   -0.23   -0.92   -1.99   -3.33   -4.78   -6.19   -7.39   -8.24   -8.66   -8.56   -7.95   -6.81   -5.13   -2.83    0.19    4.08    8.85   14.31
+   215.0    0.00   -0.23   -0.91   -1.98   -3.32   -4.77   -6.18   -7.38   -8.23   -8.64   -8.54   -7.93   -6.81   -5.14   -2.85    0.19    4.11    8.94   14.45
+   220.0    0.00   -0.22   -0.90   -1.97   -3.31   -4.77   -6.17   -7.37   -8.21   -8.61   -8.51   -7.91   -6.80   -5.14   -2.86    0.21    4.18    9.07   14.60
+   225.0    0.00   -0.22   -0.90   -1.96   -3.30   -4.76   -6.16   -7.35   -8.19   -8.58   -8.48   -7.88   -6.78   -5.14   -2.84    0.25    4.27    9.22   14.76
+   230.0    0.00   -0.21   -0.89   -1.95   -3.29   -4.74   -6.15   -7.34   -8.17   -8.55   -8.45   -7.85   -6.76   -5.12   -2.81    0.31    4.39    9.37   14.89
+   235.0    0.00   -0.21   -0.88   -1.94   -3.27   -4.73   -6.13   -7.32   -8.15   -8.53   -8.42   -7.83   -6.74   -5.10   -2.77    0.39    4.51    9.52   15.00
+   240.0    0.00   -0.21   -0.87   -1.93   -3.26   -4.72   -6.12   -7.30   -8.13   -8.51   -8.41   -7.82   -6.72   -5.07   -2.72    0.48    4.63    9.63   15.05
+   245.0    0.00   -0.20   -0.86   -1.92   -3.25   -4.70   -6.10   -7.29   -8.12   -8.50   -8.40   -7.81   -6.71   -5.03   -2.66    0.57    4.73    9.71   15.04
+   250.0    0.00   -0.20   -0.86   -1.91   -3.23   -4.69   -6.09   -7.28   -8.12   -8.51   -8.41   -7.81   -6.70   -5.00   -2.60    0.64    4.79    9.73   14.97
+   255.0    0.00   -0.20   -0.85   -1.90   -3.22   -4.68   -6.08   -7.28   -8.12   -8.52   -8.42   -7.82   -6.69   -4.97   -2.56    0.69    4.81    9.69   14.85
+   260.0    0.00   -0.19   -0.84   -1.89   -3.21   -4.67   -6.08   -7.28   -8.13   -8.54   -8.44   -7.83   -6.68   -4.95   -2.53    0.70    4.79    9.60   14.68
+   265.0    0.00   -0.19   -0.84   -1.88   -3.21   -4.66   -6.08   -7.29   -8.15   -8.56   -8.47   -7.85   -6.68   -4.94   -2.52    0.68    4.71    9.45   14.49
+   270.0    0.00   -0.19   -0.84   -1.88   -3.20   -4.66   -6.08   -7.30   -8.17   -8.58   -8.49   -7.86   -6.69   -4.94   -2.53    0.62    4.59    9.27   14.29
+   275.0    0.00   -0.19   -0.84   -1.88   -3.20   -4.66   -6.09   -7.32   -8.19   -8.61   -8.51   -7.87   -6.69   -4.95   -2.57    0.54    4.44    9.07   14.11
+   280.0    0.00   -0.19   -0.83   -1.88   -3.20   -4.67   -6.10   -7.33   -8.21   -8.63   -8.52   -7.88   -6.70   -4.97   -2.62    0.43    4.27    8.87   13.95
+   285.0    0.00   -0.19   -0.83   -1.88   -3.21   -4.68   -6.11   -7.35   -8.23   -8.64   -8.53   -7.88   -6.70   -4.99   -2.69    0.31    4.10    8.69   13.84
+   290.0    0.00   -0.19   -0.84   -1.88   -3.22   -4.69   -6.13   -7.37   -8.24   -8.65   -8.53   -7.88   -6.71   -5.02   -2.76    0.19    3.95    8.55   13.77
+   295.0    0.00   -0.19   -0.84   -1.89   -3.23   -4.70   -6.15   -7.38   -8.25   -8.65   -8.52   -7.87   -6.72   -5.06   -2.83    0.09    3.84    8.46   13.74
+   300.0    0.00   -0.19   -0.84   -1.90   -3.24   -4.72   -6.17   -7.40   -8.26   -8.64   -8.51   -7.86   -6.72   -5.09   -2.88    0.02    3.77    8.42   13.76
+   305.0    0.00   -0.19   -0.85   -1.90   -3.25   -4.74   -6.19   -7.41   -8.26   -8.63   -8.49   -7.84   -6.72   -5.11   -2.92   -0.02    3.76    8.44   13.80
+   310.0    0.00   -0.19   -0.85   -1.91   -3.27   -4.76   -6.20   -7.42   -8.26   -8.62   -8.47   -7.83   -6.72   -5.11   -2.93   -0.01    3.79    8.50   13.87
+   315.0    0.00   -0.19   -0.86   -1.92   -3.28   -4.78   -6.22   -7.43   -8.26   -8.61   -8.45   -7.81   -6.71   -5.11   -2.92    0.02    3.87    8.61   13.94
+   320.0    0.00   -0.20   -0.86   -1.94   -3.30   -4.79   -6.24   -7.44   -8.26   -8.60   -8.44   -7.80   -6.69   -5.09   -2.89    0.09    3.98    8.73   14.01
+   325.0    0.00   -0.20   -0.87   -1.95   -3.31   -4.81   -6.25   -7.45   -8.26   -8.59   -8.42   -7.78   -6.68   -5.06   -2.83    0.18    4.10    8.86   14.07
+   330.0    0.00   -0.20   -0.88   -1.96   -3.33   -4.82   -6.26   -7.46   -8.26   -8.58   -8.41   -7.77   -6.65   -5.03   -2.77    0.28    4.23    8.98   14.12
+   335.0    0.00   -0.21   -0.89   -1.97   -3.34   -4.84   -6.27   -7.46   -8.26   -8.58   -8.41   -7.75   -6.62   -4.98   -2.70    0.37    4.34    9.08   14.15
+   340.0    0.00   -0.21   -0.89   -1.98   -3.35   -4.85   -6.28   -7.47   -8.26   -8.58   -8.40   -7.73   -6.59   -4.93   -2.64    0.45    4.41    9.14   14.17
+   345.0    0.00   -0.21   -0.90   -1.99   -3.36   -4.86   -6.29   -7.47   -8.27   -8.59   -8.40   -7.72   -6.57   -4.89   -2.59    0.50    4.45    9.17   14.19
+   350.0    0.00   -0.22   -0.91   -2.00   -3.37   -4.86   -6.29   -7.48   -8.28   -8.59   -8.40   -7.71   -6.54   -4.86   -2.55    0.52    4.46    9.16   14.20
+   355.0    0.00   -0.22   -0.91   -2.01   -3.38   -4.87   -6.30   -7.49   -8.29   -8.60   -8.41   -7.71   -6.53   -4.83   -2.53    0.52    4.42    9.12   14.22
+   360.0    0.00   -0.23   -0.92   -2.01   -3.38   -4.87   -6.30   -7.49   -8.30   -8.62   -8.42   -7.71   -6.52   -4.82   -2.54    0.49    4.37    9.07   14.25
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.06     -0.36    119.58                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.14   -0.52   -1.10   -1.82   -2.63   -3.47   -4.28   -4.98   -5.43   -5.49   -5.10   -4.25   -3.04   -1.56    0.22    2.49    5.61    9.85
+     0.0    0.00   -0.13   -0.51   -1.09   -1.80   -2.60   -3.42   -4.24   -4.95   -5.43   -5.55   -5.22   -4.43   -3.26   -1.82   -0.09    2.11    5.13    9.35
+     5.0    0.00   -0.13   -0.51   -1.09   -1.80   -2.59   -3.41   -4.22   -4.93   -5.42   -5.55   -5.22   -4.44   -3.28   -1.83   -0.10    2.10    5.15    9.42
+    10.0    0.00   -0.13   -0.51   -1.09   -1.79   -2.58   -3.40   -4.20   -4.91   -5.40   -5.53   -5.21   -4.43   -3.27   -1.83   -0.09    2.13    5.22    9.57
+    15.0    0.00   -0.13   -0.51   -1.09   -1.79   -2.57   -3.39   -4.19   -4.89   -5.38   -5.51   -5.19   -4.42   -3.26   -1.80   -0.06    2.20    5.34    9.77
+    20.0    0.00   -0.13   -0.51   -1.08   -1.79   -2.57   -3.38   -4.17   -4.87   -5.35   -5.48   -5.16   -4.38   -3.22   -1.76    0.01    2.29    5.50   10.02
+    25.0    0.00   -0.13   -0.51   -1.08   -1.79   -2.57   -3.37   -4.16   -4.85   -5.32   -5.45   -5.12   -4.34   -3.17   -1.70    0.09    2.42    5.69   10.30
+    30.0    0.00   -0.13   -0.51   -1.09   -1.79   -2.57   -3.37   -4.15   -4.83   -5.29   -5.40   -5.07   -4.29   -3.11   -1.63    0.18    2.56    5.89   10.58
+    35.0    0.00   -0.13   -0.51   -1.09   -1.80   -2.57   -3.38   -4.15   -4.82   -5.27   -5.36   -5.02   -4.22   -3.04   -1.55    0.29    2.70    6.08   10.83
+    40.0    0.00   -0.13   -0.51   -1.09   -1.80   -2.59   -3.39   -4.15   -4.81   -5.24   -5.32   -4.96   -4.16   -2.97   -1.47    0.39    2.83    6.26   11.03
+    45.0    0.00   -0.13   -0.51   -1.10   -1.81   -2.60   -3.40   -4.17   -4.81   -5.22   -5.29   -4.91   -4.10   -2.91   -1.40    0.48    2.94    6.39   11.17
+    50.0    0.00   -0.13   -0.51   -1.10   -1.82   -2.62   -3.42   -4.18   -4.82   -5.21   -5.26   -4.87   -4.05   -2.85   -1.34    0.55    3.03    6.48   11.24
+    55.0    0.00   -0.13   -0.51   -1.11   -1.84   -2.64   -3.45   -4.20   -4.83   -5.21   -5.24   -4.85   -4.02   -2.81   -1.29    0.60    3.08    6.52   11.22
+    60.0    0.00   -0.13   -0.52   -1.11   -1.85   -2.65   -3.47   -4.23   -4.85   -5.22   -5.24   -4.84   -4.00   -2.79   -1.27    0.62    3.09    6.50   11.14
+    65.0    0.00   -0.13   -0.52   -1.12   -1.86   -2.67   -3.49   -4.26   -4.87   -5.24   -5.26   -4.84   -4.00   -2.79   -1.27    0.61    3.06    6.43   10.99
+    70.0    0.00   -0.13   -0.52   -1.12   -1.87   -2.69   -3.52   -4.28   -4.90   -5.27   -5.28   -4.87   -4.02   -2.81   -1.30    0.57    2.99    6.31   10.79
+    75.0    0.00   -0.13   -0.52   -1.12   -1.88   -2.70   -3.53   -4.31   -4.93   -5.31   -5.32   -4.90   -4.06   -2.85   -1.34    0.51    2.90    6.16   10.56
+    80.0    0.00   -0.13   -0.52   -1.13   -1.88   -2.71   -3.55   -4.33   -4.96   -5.34   -5.36   -4.95   -4.11   -2.90   -1.40    0.43    2.78    5.98   10.32
+    85.0    0.00   -0.13   -0.52   -1.13   -1.88   -2.72   -3.56   -4.35   -4.99   -5.38   -5.41   -5.01   -4.16   -2.96   -1.46    0.34    2.65    5.80   10.08
+    90.0    0.00   -0.13   -0.52   -1.13   -1.88   -2.72   -3.56   -4.36   -5.02   -5.42   -5.46   -5.06   -4.22   -3.02   -1.53    0.25    2.51    5.61    9.87
+    95.0    0.00   -0.13   -0.52   -1.13   -1.88   -2.71   -3.56   -4.37   -5.04   -5.46   -5.51   -5.11   -4.27   -3.07   -1.59    0.16    2.39    5.44    9.68
+   100.0    0.00   -0.13   -0.52   -1.13   -1.88   -2.71   -3.56   -4.37   -5.05   -5.48   -5.54   -5.15   -4.31   -3.11   -1.65    0.09    2.28    5.30    9.53
+   105.0    0.00   -0.13   -0.52   -1.12   -1.87   -2.70   -3.55   -4.37   -5.06   -5.50   -5.57   -5.18   -4.34   -3.14   -1.68    0.03    2.19    5.19    9.42
+   110.0    0.00   -0.13   -0.52   -1.12   -1.87   -2.69   -3.55   -4.37   -5.07   -5.52   -5.59   -5.20   -4.36   -3.15   -1.70    0.00    2.14    5.11    9.34
+   115.0    0.00   -0.13   -0.52   -1.12   -1.86   -2.69   -3.54   -4.36   -5.07   -5.53   -5.60   -5.21   -4.36   -3.15   -1.69   -0.01    2.11    5.07    9.30
+   120.0    0.00   -0.13   -0.52   -1.12   -1.86   -2.68   -3.53   -4.36   -5.07   -5.53   -5.60   -5.20   -4.34   -3.13   -1.68    0.00    2.11    5.06    9.27
+   125.0    0.00   -0.13   -0.52   -1.12   -1.85   -2.67   -3.53   -4.36   -5.07   -5.52   -5.59   -5.19   -4.32   -3.10   -1.65    0.03    2.14    5.08    9.26
+   130.0    0.00   -0.13   -0.52   -1.11   -1.85   -2.67   -3.52   -4.35   -5.06   -5.52   -5.58   -5.17   -4.29   -3.07   -1.61    0.07    2.18    5.11    9.25
+   135.0    0.00   -0.13   -0.52   -1.11   -1.85   -2.67   -3.52   -4.35   -5.06   -5.51   -5.56   -5.15   -4.27   -3.04   -1.58    0.11    2.23    5.16    9.24
+   140.0    0.00   -0.13   -0.52   -1.11   -1.85   -2.67   -3.52   -4.35   -5.06   -5.50   -5.55   -5.13   -4.25   -3.02   -1.55    0.15    2.28    5.19    9.23
+   145.0    0.00   -0.13   -0.52   -1.11   -1.85   -2.67   -3.53   -4.35   -5.05   -5.49   -5.54   -5.11   -4.23   -3.01   -1.54    0.17    2.31    5.22    9.20
+   150.0    0.00   -0.13   -0.52   -1.11   -1.85   -2.67   -3.53   -4.35   -5.05   -5.49   -5.53   -5.10   -4.23   -3.01   -1.55    0.17    2.32    5.23    9.16
+   155.0    0.00   -0.13   -0.52   -1.11   -1.85   -2.67   -3.53   -4.35   -5.05   -5.48   -5.52   -5.10   -4.24   -3.03   -1.57    0.14    2.30    5.22    9.12
+   160.0    0.00   -0.14   -0.52   -1.11   -1.85   -2.67   -3.53   -4.35   -5.05   -5.48   -5.52   -5.11   -4.25   -3.06   -1.61    0.10    2.27    5.18    9.07
+   165.0    0.00   -0.14   -0.52   -1.11   -1.84   -2.67   -3.52   -4.35   -5.05   -5.48   -5.53   -5.12   -4.28   -3.09   -1.66    0.04    2.21    5.14    9.03
+   170.0    0.00   -0.14   -0.52   -1.11   -1.84   -2.66   -3.52   -4.34   -5.04   -5.48   -5.53   -5.13   -4.30   -3.13   -1.72   -0.02    2.14    5.09    9.01
+   175.0    0.00   -0.14   -0.52   -1.11   -1.84   -2.65   -3.51   -4.34   -5.04   -5.48   -5.53   -5.14   -4.32   -3.17   -1.77   -0.08    2.08    5.04    9.02
+   180.0    0.00   -0.14   -0.52   -1.11   -1.83   -2.64   -3.50   -4.33   -5.03   -5.47   -5.54   -5.15   -4.34   -3.20   -1.80   -0.13    2.03    5.02    9.06
+   185.0    0.00   -0.14   -0.52   -1.11   -1.83   -2.64   -3.48   -4.31   -5.02   -5.47   -5.54   -5.16   -4.35   -3.21   -1.82   -0.15    2.02    5.03    9.15
+   190.0    0.00   -0.14   -0.52   -1.10   -1.82   -2.62   -3.47   -4.30   -5.01   -5.46   -5.54   -5.16   -4.34   -3.19   -1.80   -0.13    2.04    5.09    9.28
+   195.0    0.00   -0.14   -0.52   -1.10   -1.82   -2.61   -3.46   -4.29   -5.00   -5.46   -5.53   -5.14   -4.32   -3.16   -1.76   -0.08    2.11    5.19    9.45
+   200.0    0.00   -0.14   -0.52   -1.10   -1.81   -2.61   -3.45   -4.28   -4.99   -5.45   -5.52   -5.13   -4.29   -3.11   -1.68    0.02    2.23    5.34    9.66
+   205.0    0.00   -0.14   -0.53   -1.10   -1.81   -2.60   -3.44   -4.27   -4.98   -5.44   -5.50   -5.10   -4.24   -3.04   -1.58    0.15    2.39    5.53    9.90
+   210.0    0.00   -0.14   -0.53   -1.10   -1.80   -2.60   -3.43   -4.26   -4.97   -5.43   -5.49   -5.06   -4.18   -2.95   -1.46    0.30    2.58    5.75   10.14
+   215.0    0.00   -0.14   -0.53   -1.10   -1.80   -2.60   -3.43   -4.26   -4.97   -5.42   -5.47   -5.03   -4.13   -2.86   -1.34    0.46    2.78    5.98   10.38
+   220.0    0.00   -0.14   -0.53   -1.10   -1.81   -2.60   -3.44   -4.26   -4.97   -5.41   -5.44   -4.99   -4.07   -2.78   -1.22    0.62    2.97    6.20   10.58
+   225.0    0.00   -0.14   -0.53   -1.10   -1.81   -2.60   -3.44   -4.27   -4.97   -5.40   -5.43   -4.96   -4.01   -2.70   -1.12    0.76    3.14    6.38   10.74
+   230.0    0.00   -0.14   -0.53   -1.10   -1.81   -2.61   -3.45   -4.28   -4.97   -5.40   -5.41   -4.93   -3.97   -2.64   -1.04    0.86    3.27    6.52   10.83
+   235.0    0.00   -0.14   -0.53   -1.11   -1.82   -2.62   -3.47   -4.29   -4.98   -5.40   -5.40   -4.91   -3.94   -2.61   -1.00    0.92    3.34    6.59   10.86
+   240.0    0.00   -0.14   -0.53   -1.11   -1.82   -2.63   -3.48   -4.30   -4.99   -5.40   -5.39   -4.90   -3.93   -2.61   -1.00    0.92    3.35    6.59   10.80
+   245.0    0.00   -0.14   -0.53   -1.11   -1.83   -2.64   -3.49   -4.32   -5.00   -5.41   -5.40   -4.90   -3.94   -2.63   -1.04    0.87    3.29    6.51   10.68
+   250.0    0.00   -0.14   -0.53   -1.11   -1.83   -2.64   -3.50   -4.33   -5.02   -5.42   -5.41   -4.91   -3.97   -2.68   -1.11    0.77    3.17    6.37   10.50
+   255.0    0.00   -0.14   -0.53   -1.11   -1.83   -2.65   -3.51   -4.34   -5.03   -5.43   -5.42   -4.94   -4.01   -2.75   -1.21    0.64    3.01    6.18   10.27
+   260.0    0.00   -0.14   -0.53   -1.11   -1.83   -2.65   -3.51   -4.34   -5.04   -5.45   -5.45   -4.98   -4.07   -2.83   -1.33    0.48    2.82    5.97   10.03
+   265.0    0.00   -0.14   -0.53   -1.11   -1.83   -2.65   -3.51   -4.34   -5.04   -5.46   -5.47   -5.02   -4.14   -2.93   -1.46    0.32    2.62    5.74    9.80
+   270.0    0.00   -0.14   -0.53   -1.11   -1.83   -2.64   -3.50   -4.34   -5.05   -5.48   -5.51   -5.07   -4.21   -3.02   -1.58    0.17    2.44    5.54    9.60
+   275.0    0.00   -0.14   -0.53   -1.11   -1.82   -2.63   -3.49   -4.33   -5.05   -5.49   -5.54   -5.12   -4.28   -3.11   -1.68    0.04    2.29    5.37    9.44
+   280.0    0.00   -0.14   -0.53   -1.11   -1.82   -2.62   -3.48   -4.32   -5.05   -5.51   -5.57   -5.17   -4.34   -3.18   -1.77   -0.06    2.18    5.26    9.35
+   285.0    0.00   -0.14   -0.53   -1.10   -1.81   -2.61   -3.47   -4.31   -5.04   -5.51   -5.60   -5.21   -4.39   -3.23   -1.82   -0.11    2.12    5.20    9.32
+   290.0    0.00   -0.14   -0.53   -1.10   -1.81   -2.60   -3.45   -4.30   -5.03   -5.52   -5.62   -5.25   -4.43   -3.27   -1.85   -0.13    2.11    5.20    9.35
+   295.0    0.00   -0.14   -0.53   -1.10   -1.80   -2.60   -3.44   -4.29   -5.03   -5.52   -5.63   -5.27   -4.46   -3.29   -1.84   -0.11    2.15    5.25    9.44
+   300.0    0.00   -0.14   -0.53   -1.10   -1.80   -2.59   -3.43   -4.27   -5.02   -5.52   -5.64   -5.29   -4.47   -3.28   -1.82   -0.06    2.21    5.34    9.55
+   305.0    0.00   -0.14   -0.52   -1.10   -1.80   -2.59   -3.43   -4.26   -5.01   -5.51   -5.64   -5.29   -4.47   -3.27   -1.78    0.01    2.30    5.44    9.68
+   310.0    0.00   -0.14   -0.52   -1.10   -1.80   -2.58   -3.42   -4.26   -5.00   -5.51   -5.63   -5.28   -4.46   -3.25   -1.74    0.07    2.39    5.54    9.79
+   315.0    0.00   -0.14   -0.52   -1.10   -1.80   -2.59   -3.42   -4.26   -4.99   -5.50   -5.62   -5.27   -4.44   -3.22   -1.69    0.13    2.46    5.61    9.87
+   320.0    0.00   -0.14   -0.52   -1.10   -1.80   -2.59   -3.43   -4.25   -4.99   -5.49   -5.61   -5.26   -4.42   -3.19   -1.66    0.18    2.51    5.66    9.91
+   325.0    0.00   -0.14   -0.52   -1.10   -1.80   -2.59   -3.43   -4.26   -4.98   -5.48   -5.60   -5.24   -4.41   -3.17   -1.64    0.20    2.52    5.66    9.89
+   330.0    0.00   -0.14   -0.52   -1.10   -1.81   -2.60   -3.44   -4.26   -4.98   -5.47   -5.58   -5.23   -4.39   -3.16   -1.63    0.19    2.50    5.62    9.83
+   335.0    0.00   -0.14   -0.52   -1.10   -1.81   -2.60   -3.44   -4.26   -4.98   -5.46   -5.57   -5.22   -4.39   -3.16   -1.65    0.17    2.45    5.54    9.73
+   340.0    0.00   -0.14   -0.52   -1.10   -1.81   -2.61   -3.44   -4.26   -4.98   -5.46   -5.57   -5.21   -4.39   -3.18   -1.67    0.12    2.38    5.44    9.61
+   345.0    0.00   -0.13   -0.52   -1.10   -1.81   -2.61   -3.44   -4.26   -4.97   -5.45   -5.56   -5.21   -4.39   -3.20   -1.71    0.06    2.30    5.33    9.49
+   350.0    0.00   -0.13   -0.52   -1.10   -1.81   -2.61   -3.44   -4.26   -4.97   -5.45   -5.56   -5.21   -4.41   -3.22   -1.75    0.00    2.22    5.23    9.39
+   355.0    0.00   -0.13   -0.51   -1.09   -1.81   -2.60   -3.43   -4.25   -4.96   -5.44   -5.56   -5.22   -4.42   -3.24   -1.79   -0.05    2.15    5.16    9.34
+   360.0    0.00   -0.13   -0.51   -1.09   -1.80   -2.60   -3.42   -4.24   -4.95   -5.43   -5.55   -5.22   -4.43   -3.26   -1.82   -0.09    2.11    5.13    9.35
+   G02                                                      END OF FREQUENCY    
+   R01                                                      START OF FREQUENCY  
+      0.62      1.16     89.56                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.25   -0.98   -2.11   -3.52   -5.05   -6.54   -7.81   -8.72   -9.16   -9.07   -8.45   -7.31   -5.64   -3.32   -0.26    3.63    8.34   13.58
+     0.0    0.00   -0.25   -0.97   -2.11   -3.55   -5.11   -6.63   -7.90   -8.80   -9.20   -9.10   -8.49   -7.37   -5.70   -3.40   -0.33    3.55    8.13   13.00
+     5.0    0.00   -0.25   -0.98   -2.13   -3.57   -5.15   -6.66   -7.95   -8.84   -9.26   -9.15   -8.54   -7.42   -5.77   -3.47   -0.45    3.41    7.98   12.89
+    10.0    0.00   -0.26   -1.00   -2.15   -3.58   -5.16   -6.68   -7.98   -8.88   -9.31   -9.21   -8.59   -7.47   -5.83   -3.57   -0.57    3.26    7.85   12.84
+    15.0    0.00   -0.26   -1.00   -2.17   -3.60   -5.19   -6.71   -8.02   -8.92   -9.36   -9.27   -8.66   -7.53   -5.89   -3.64   -0.67    3.15    7.76   12.84
+    20.0    0.00   -0.27   -1.02   -2.17   -3.62   -5.19   -6.73   -8.04   -8.97   -9.41   -9.34   -8.72   -7.59   -5.95   -3.70   -0.73    3.08    7.72   12.90
+    25.0    0.00   -0.28   -1.03   -2.19   -3.62   -5.21   -6.74   -8.06   -9.02   -9.48   -9.40   -8.79   -7.66   -5.99   -3.73   -0.77    3.05    7.72   13.00
+    30.0    0.00   -0.28   -1.05   -2.21   -3.64   -5.22   -6.75   -8.08   -9.04   -9.52   -9.46   -8.86   -7.71   -6.02   -3.74   -0.75    3.07    7.78   13.14
+    35.0    0.00   -0.29   -1.06   -2.21   -3.65   -5.22   -6.74   -8.08   -9.06   -9.56   -9.52   -8.92   -7.75   -6.03   -3.71   -0.69    3.15    7.87   13.28
+    40.0    0.00   -0.29   -1.06   -2.22   -3.65   -5.22   -6.74   -8.08   -9.07   -9.59   -9.56   -8.96   -7.77   -6.02   -3.65   -0.60    3.26    7.98   13.44
+    45.0    0.00   -0.30   -1.08   -2.24   -3.66   -5.22   -6.73   -8.07   -9.07   -9.59   -9.58   -8.98   -7.77   -5.98   -3.57   -0.49    3.38    8.10   13.58
+    50.0    0.00   -0.31   -1.09   -2.24   -3.67   -5.22   -6.73   -8.05   -9.06   -9.59   -9.58   -8.98   -7.76   -5.92   -3.47   -0.36    3.51    8.22   13.69
+    55.0    0.00   -0.31   -1.09   -2.25   -3.67   -5.21   -6.71   -8.03   -9.02   -9.56   -9.56   -8.95   -7.71   -5.85   -3.38   -0.25    3.63    8.32   13.79
+    60.0    0.00   -0.31   -1.11   -2.27   -3.68   -5.21   -6.70   -8.01   -8.99   -9.52   -9.51   -8.89   -7.64   -5.76   -3.27   -0.15    3.72    8.39   13.86
+    65.0    0.00   -0.32   -1.11   -2.27   -3.68   -5.21   -6.69   -7.99   -8.94   -9.47   -9.45   -8.83   -7.58   -5.69   -3.20   -0.05    3.79    8.45   13.90
+    70.0    0.00   -0.32   -1.12   -2.28   -3.69   -5.21   -6.68   -7.95   -8.91   -9.42   -9.37   -8.75   -7.48   -5.62   -3.14   -0.01    3.82    8.47   13.92
+    75.0    0.00   -0.32   -1.12   -2.28   -3.69   -5.21   -6.67   -7.93   -8.87   -9.35   -9.29   -8.66   -7.41   -5.54   -3.09    0.01    3.83    8.48   13.94
+    80.0    0.00   -0.32   -1.12   -2.28   -3.69   -5.22   -6.67   -7.93   -8.83   -9.29   -9.22   -8.57   -7.34   -5.50   -3.07   -0.71    3.82    8.47   13.93
+    85.0    0.00   -0.33   -1.13   -2.29   -3.70   -5.22   -6.67   -7.91   -8.80   -9.24   -9.16   -8.50   -7.28   -5.47   -3.08   -0.02    3.79    8.46   13.92
+    90.0    0.00   -0.33   -1.12   -2.29   -3.71   -5.23   -6.67   -7.91   -8.79   -9.20   -9.10   -8.44   -7.24   -5.46   -3.10   -0.05    3.77    8.44   13.90
+    95.0    0.00   -0.33   -1.12   -2.28   -3.70   -5.23   -6.67   -7.91   -8.77   -9.17   -9.06   -8.40   -7.22   -5.47   -3.12   -0.09    3.76    8.45   13.88
+   100.0    0.00   -0.32   -1.13   -2.29   -3.71   -5.23   -6.68   -7.91   -8.77   -9.16   -9.04   -8.38   -7.21   -5.49   -3.16   -0.12    3.74    8.46   13.86
+   105.0    0.00   -0.32   -1.12   -2.28   -3.70   -5.23   -6.69   -7.91   -8.76   -9.15   -9.02   -8.39   -7.22   -5.51   -3.19   -0.14    3.75    8.49   13.84
+   110.0    0.00   -0.32   -1.10   -2.27   -3.70   -5.23   -6.68   -7.91   -8.77   -9.15   -9.03   -8.39   -7.23   -5.54   -3.22   -0.14    3.78    8.53   13.82
+   115.0    0.00   -0.32   -1.10   -2.27   -3.68   -5.22   -6.67   -7.90   -8.77   -9.15   -9.03   -8.38   -7.24   -5.56   -3.23   -0.14    3.81    8.57   13.80
+   120.0    0.00   -0.31   -1.09   -2.25   -3.67   -5.19   -6.66   -7.89   -8.75   -9.14   -9.02   -8.39   -7.25   -5.57   -3.23   -0.13    3.85    8.62   13.79
+   125.0    0.00   -0.31   -1.08   -2.24   -3.65   -5.17   -6.64   -7.87   -8.74   -9.13   -9.02   -8.39   -7.25   -5.56   -3.23   -0.10    3.90    8.67   13.81
+   130.0    0.00   -0.31   -1.07   -2.23   -3.63   -5.15   -6.61   -7.85   -8.72   -9.12   -9.01   -8.37   -7.24   -5.54   -3.20   -0.06    3.94    8.71   13.82
+   135.0    0.00   -0.30   -1.07   -2.20   -3.61   -5.12   -6.58   -7.83   -8.69   -9.09   -8.98   -8.35   -7.21   -5.52   -3.18   -0.03    3.98    8.76   13.85
+   140.0    0.00   -0.30   -1.05   -2.18   -3.59   -5.09   -6.55   -7.79   -8.66   -9.07   -8.95   -8.32   -7.18   -5.49   -3.15   -0.01    4.00    8.79   13.89
+   145.0    0.00   -0.29   -1.04   -2.17   -3.55   -5.07   -6.52   -7.75   -8.64   -9.04   -8.92   -8.29   -7.14   -5.45   -3.11    0.01    4.01    8.80   13.95
+   150.0    0.00   -0.29   -1.03   -2.15   -3.53   -5.04   -6.49   -7.73   -8.60   -9.00   -8.88   -8.25   -7.10   -5.41   -3.09    0.02    4.00    8.80   13.98
+   155.0    0.00   -0.28   -1.02   -2.13   -3.51   -5.02   -6.47   -7.70   -8.58   -8.98   -8.86   -8.22   -7.07   -5.38   -3.07    0.02    3.98    8.78   14.00
+   160.0    0.00   -0.28   -1.01   -2.12   -3.50   -5.00   -6.45   -7.69   -8.57   -8.96   -8.84   -8.20   -7.05   -5.37   -3.06   -0.43    3.95    8.73   14.00
+   165.0    0.00   -0.27   -1.00   -2.11   -3.48   -4.99   -6.44   -7.68   -8.56   -8.95   -8.83   -8.19   -7.05   -5.37   -3.07   -0.03    3.90    8.67   13.96
+   170.0    0.00   -0.27   -0.99   -2.10   -3.48   -4.98   -6.44   -7.69   -8.55   -8.96   -8.84   -8.20   -7.06   -5.39   -3.11   -0.06    3.85    8.60   13.91
+   175.0    0.00   -0.26   -0.98   -2.09   -3.47   -4.98   -6.44   -7.69   -8.57   -8.98   -8.87   -8.23   -7.09   -5.41   -3.14   -0.11    3.77    8.51   13.81
+   180.0    0.00   -0.25   -0.97   -2.08   -3.47   -4.98   -6.45   -7.70   -8.59   -9.01   -8.90   -8.28   -7.14   -5.46   -3.18   -0.18    3.68    8.39   13.68
+   185.0    0.00   -0.25   -0.96   -2.08   -3.47   -4.99   -6.45   -7.73   -8.62   -9.04   -8.94   -8.33   -7.19   -5.52   -3.24   -0.24    3.60    8.29   13.55
+   190.0    0.00   -0.24   -0.96   -2.07   -3.47   -4.98   -6.48   -7.74   -8.64   -9.08   -8.99   -8.38   -7.25   -5.58   -3.32   -0.32    3.52    8.19   13.42
+   195.0    0.00   -0.24   -0.95   -2.07   -3.47   -4.99   -6.49   -7.75   -8.66   -9.12   -9.04   -8.42   -7.30   -5.64   -3.38   -0.40    3.43    8.10   13.33
+   200.0    0.00   -0.23   -0.94   -2.05   -3.46   -5.00   -6.50   -7.76   -8.68   -9.13   -9.05   -8.46   -7.34   -5.71   -3.45   -0.46    3.37    8.04   13.29
+   205.0    0.00   -0.23   -0.93   -2.04   -3.46   -4.99   -6.49   -7.77   -8.69   -9.14   -9.07   -8.48   -7.37   -5.75   -3.50   -0.53    3.30    8.00   13.32
+   210.0    0.00   -0.22   -0.92   -2.04   -3.45   -4.99   -6.49   -7.77   -8.68   -9.14   -9.06   -8.48   -7.38   -5.77   -3.54   -0.59    3.27    8.02   13.40
+   215.0    0.00   -0.22   -0.91   -2.03   -3.44   -4.97   -6.48   -7.76   -8.67   -9.12   -9.05   -8.46   -7.38   -5.78   -3.57   -0.61    3.27    8.08   13.56
+   220.0    0.00   -0.21   -0.91   -2.02   -3.43   -4.97   -6.46   -7.74   -8.65   -9.09   -9.02   -8.44   -7.37   -5.77   -3.58   -0.60    3.31    8.18   13.75
+   225.0    0.00   -0.21   -0.91   -2.01   -3.42   -4.95   -6.44   -7.71   -8.63   -9.06   -8.99   -8.40   -7.33   -5.76   -3.55   -0.57    3.37    8.32   13.98
+   230.0    0.00   -0.20   -0.90   -2.00   -3.41   -4.93   -6.42   -7.69   -8.60   -9.03   -8.95   -8.36   -7.29   -5.72   -3.51   -0.52    3.47    8.47   14.20
+   235.0    0.00   -0.20   -0.89   -1.99   -3.38   -4.91   -6.40   -7.66   -8.56   -9.00   -8.92   -8.33   -7.26   -5.67   -3.45   -0.44    3.59    8.64   14.40
+   240.0    0.00   -0.20   -0.88   -1.98   -3.37   -4.90   -6.38   -7.64   -8.54   -8.98   -8.90   -8.31   -7.22   -5.62   -3.39   -0.34    3.71    8.78   14.54
+   245.0    0.00   -0.19   -0.87   -1.97   -3.36   -4.87   -6.36   -7.62   -8.52   -8.96   -8.88   -8.29   -7.20   -5.57   -3.32   -0.24    3.84    8.90   14.60
+   250.0    0.00   -0.19   -0.87   -1.96   -3.34   -4.86   -6.33   -7.61   -8.52   -8.96   -8.88   -8.28   -7.18   -5.53   -3.24   -0.14    3.93    8.96   14.57
+   255.0    0.00   -0.19   -0.86   -1.95   -3.33   -4.86   -6.34   -7.61   -8.51   -8.97   -8.89   -8.29   -7.17   -5.50   -3.19   -0.06    3.99    8.97   14.44
+   260.0    0.00   -0.18   -0.85   -1.94   -3.32   -4.85   -6.34   -7.61   -8.52   -8.98   -8.90   -8.30   -7.16   -5.48   -3.15   -0.01    4.02    8.92   14.22
+   265.0    0.00   -0.18   -0.85   -1.93   -3.33   -4.85   -6.35   -7.63   -8.54   -9.00   -8.93   -8.32   -7.17   -5.47   -3.13   -0.68    4.00    8.79   13.95
+   270.0    0.00   -0.18   -0.85   -1.93   -3.32   -4.85   -6.36   -7.64   -8.56   -9.01   -8.94   -8.33   -7.18   -5.48   -3.13   -0.02    3.93    8.63   13.65
+   275.0    0.00   -0.18   -0.85   -1.93   -3.33   -4.86   -6.37   -7.67   -8.58   -9.04   -8.96   -8.34   -7.19   -5.49   -3.15   -0.07    3.83    8.44   13.36
+   280.0    0.00   -0.18   -0.84   -1.94   -3.33   -4.88   -6.39   -7.68   -8.60   -9.06   -8.97   -8.35   -7.21   -5.51   -3.19   -0.14    3.71    8.25   13.09
+   285.0    0.00   -0.18   -0.84   -1.94   -3.34   -4.89   -6.41   -7.70   -8.62   -9.07   -8.98   -8.35   -7.21   -5.53   -3.24   -0.23    3.57    8.07   12.90
+   290.0    0.00   -0.18   -0.85   -1.94   -3.36   -4.90   -6.43   -7.72   -8.63   -9.06   -8.98   -8.36   -7.22   -5.56   -3.29   -0.32    3.45    7.94   12.79
+   295.0    0.00   -0.18   -0.85   -1.95   -3.37   -4.92   -6.45   -7.73   -8.64   -9.06   -8.97   -8.35   -7.23   -5.59   -3.35   -0.39    3.36    7.86   12.76
+   300.0    0.00   -0.18   -0.85   -1.96   -3.38   -4.93   -6.47   -7.75   -8.65   -9.05   -8.96   -8.34   -7.23   -5.61   -3.38   -0.44    3.31    7.84   12.82
+   305.0    0.00   -0.19   -0.86   -1.96   -3.38   -4.95   -6.48   -7.76   -8.65   -9.06   -8.95   -8.33   -7.23   -5.62   -3.40   -0.46    3.31    7.88   12.94
+   310.0    0.00   -0.19   -0.87   -1.97   -3.40   -4.96   -6.48   -7.76   -8.64   -9.05   -8.94   -8.33   -7.24   -5.62   -3.40   -0.44    3.36    7.97   13.10
+   315.0    0.00   -0.19   -0.88   -1.98   -3.41   -4.98   -6.50   -7.76   -8.64   -9.05   -8.93   -8.32   -7.24   -5.62   -3.38   -0.39    3.44    8.10   13.28
+   320.0    0.00   -0.20   -0.88   -2.00   -3.43   -4.98   -6.51   -7.77   -8.64   -9.05   -8.94   -8.33   -7.23   -5.61   -3.36   -0.32    3.57    8.24   13.44
+   325.0    0.00   -0.20   -0.89   -2.01   -3.44   -5.00   -6.51   -7.77   -8.64   -9.04   -8.93   -8.34   -7.24   -5.59   -3.31   -0.25    3.67    8.38   13.55
+   330.0    0.00   -0.20   -0.90   -2.02   -3.46   -5.01   -6.52   -7.78   -8.65   -9.05   -8.94   -8.35   -7.25   -5.59   -3.27   -0.17    3.78    8.49   13.61
+   335.0    0.00   -0.21   -0.92   -2.03   -3.47   -5.03   -6.53   -7.79   -8.66   -9.06   -8.96   -8.37   -7.26   -5.59   -3.23   -0.11    3.86    8.56   13.60
+   340.0    0.00   -0.22   -0.92   -2.05   -3.48   -5.04   -6.55   -7.81   -8.67   -9.08   -8.98   -8.38   -7.26   -5.58   -3.22   -0.08    3.89    8.56   13.53
+   345.0    0.00   -0.22   -0.93   -2.06   -3.50   -5.06   -6.57   -7.82   -8.70   -9.11   -9.01   -8.40   -7.28   -5.59   -3.24   -0.08    3.87    8.51   13.42
+   350.0    0.00   -0.23   -0.95   -2.09   -3.52   -5.07   -6.58   -7.85   -8.73   -9.13   -9.03   -8.42   -7.31   -5.61   -3.26   -0.14    3.80    8.42   13.28
+   355.0    0.00   -0.23   -0.95   -2.11   -3.54   -5.10   -6.61   -7.88   -8.77   -9.16   -9.07   -8.45   -7.34   -5.65   -3.32   -0.22    3.69    8.28   13.12
+   360.0    0.00   -0.25   -0.97   -2.11   -3.55   -5.11   -6.63   -7.90   -8.80   -9.20   -9.10   -8.49   -7.37   -5.70   -3.40   -0.33    3.55    8.13   13.00
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+     -0.06     -0.36    119.58                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.15   -0.55   -1.17   -1.94   -2.82   -3.76   -4.73   -5.62   -6.28   -6.54   -6.32   -5.60   -4.50   -3.16   -1.61    0.35    3.13    7.11
+     0.0    0.00   -0.14   -0.54   -1.13   -1.88   -2.75   -3.71   -4.73   -5.69   -6.42   -6.77   -6.61   -5.93   -4.89   -3.66   -2.28   -0.55    2.06    6.22
+     5.0    0.00   -0.15   -0.55   -1.14   -1.89   -2.75   -3.71   -4.72   -5.68   -6.43   -6.79   -6.63   -5.97   -4.94   -3.71   -2.34   -0.62    2.01    6.17
+    10.0    0.00   -0.15   -0.55   -1.16   -1.89   -2.76   -3.72   -4.72   -5.67   -6.42   -6.78   -6.63   -5.98   -4.96   -3.74   -2.36   -0.60    2.04    6.21
+    15.0    0.00   -0.15   -0.56   -1.16   -1.91   -2.77   -3.72   -4.72   -5.66   -6.40   -6.77   -6.63   -5.99   -4.97   -3.72   -2.32   -0.52    2.16    6.33
+    20.0    0.00   -0.16   -0.57   -1.17   -1.92   -2.78   -3.73   -4.71   -5.65   -6.38   -6.74   -6.60   -5.96   -4.93   -3.67   -2.23   -0.39    2.35    6.55
+    25.0    0.00   -0.16   -0.57   -1.18   -1.94   -2.81   -3.74   -4.71   -5.64   -6.36   -6.71   -6.56   -5.92   -4.87   -3.59   -2.10   -0.19    2.60    6.83
+    30.0    0.00   -0.16   -0.58   -1.20   -1.95   -2.82   -3.75   -4.72   -5.62   -6.33   -6.66   -6.51   -5.86   -4.79   -3.48   -1.95    0.03    2.87    7.14
+    35.0    0.00   -0.17   -0.58   -1.22   -1.98   -2.83   -3.77   -4.72   -5.61   -6.31   -6.62   -6.46   -5.77   -4.69   -3.35   -1.77    0.25    3.14    7.44
+    40.0    0.00   -0.17   -0.59   -1.22   -1.99   -2.86   -3.79   -4.72   -5.61   -6.29   -6.58   -6.39   -5.69   -4.59   -3.22   -1.60    0.45    3.40    7.71
+    45.0    0.00   -0.17   -0.60   -1.24   -2.01   -2.88   -3.80   -4.74   -5.61   -6.27   -6.56   -6.33   -5.62   -4.50   -3.10   -1.46    0.62    3.59    7.93
+    50.0    0.00   -0.17   -0.61   -1.25   -2.03   -2.91   -3.82   -4.75   -5.61   -6.26   -6.53   -6.29   -5.55   -4.41   -3.00   -1.34    0.75    3.72    8.07
+    55.0    0.00   -0.17   -0.61   -1.27   -2.06   -2.93   -3.85   -4.77   -5.62   -6.25   -6.51   -6.27   -5.51   -4.35   -2.93   -1.27    0.81    3.77    8.11
+    60.0    0.00   -0.17   -0.62   -1.27   -2.08   -2.94   -3.87   -4.79   -5.64   -6.26   -6.50   -6.25   -5.49   -4.32   -2.90   -1.25    0.81    3.75    8.06
+    65.0    0.00   -0.17   -0.62   -1.29   -2.09   -2.96   -3.89   -4.81   -5.64   -6.27   -6.52   -6.25   -5.49   -4.32   -2.90   -1.28    0.74    3.64    7.91
+    70.0    0.00   -0.17   -0.63   -1.30   -2.11   -2.98   -3.92   -4.83   -5.67   -6.29   -6.53   -6.28   -5.51   -4.35   -2.96   -1.36    0.63    3.47    7.71
+    75.0    0.00   -0.17   -0.63   -1.30   -2.12   -3.00   -3.92   -4.85   -5.69   -6.31   -6.56   -6.30   -5.55   -4.40   -3.03   -1.46    0.48    3.27    7.45
+    80.0    0.00   -0.17   -0.63   -1.31   -2.12   -3.01   -3.95   -4.87   -5.70   -6.33   -6.57   -6.33   -5.60   -4.47   -3.11   -1.59    0.31    3.04    7.18
+    85.0    0.00   -0.17   -0.62   -1.31   -2.12   -3.03   -3.96   -4.89   -5.72   -6.34   -6.60   -6.37   -5.64   -4.54   -3.20   -1.71    0.15    2.84    6.91
+    90.0    0.00   -0.17   -0.62   -1.31   -2.12   -3.03   -3.96   -4.89   -5.74   -6.36   -6.62   -6.39   -5.68   -4.60   -3.29   -1.83   -2.51    2.65    6.68
+    95.0    0.00   -0.17   -0.62   -1.30   -2.12   -3.02   -3.96   -4.90   -5.75   -6.37   -6.63   -6.41   -5.71   -4.65   -3.36   -1.92   -0.11    2.51    6.49
+   100.0    0.00   -0.17   -0.62   -1.29   -2.12   -3.02   -3.96   -4.89   -5.73   -6.36   -6.62   -6.41   -5.72   -4.67   -3.41   -1.96   -0.16    2.44    6.37
+   105.0    0.00   -0.16   -0.61   -1.27   -2.10   -3.00   -3.95   -4.89   -5.73   -6.35   -6.61   -6.39   -5.72   -4.69   -3.42   -1.98   -0.18    2.42    6.30
+   110.0    0.00   -0.16   -0.60   -1.26   -2.08   -2.98   -3.93   -4.87   -5.72   -6.34   -6.58   -6.38   -5.71   -4.67   -3.41   -1.96   -0.13    2.46    6.29
+   115.0    0.00   -0.16   -0.59   -1.25   -2.06   -2.97   -3.91   -4.85   -5.69   -6.31   -6.56   -6.35   -5.68   -4.64   -3.36   -1.89   -0.05    2.56    6.33
+   120.0    0.00   -0.15   -0.58   -1.24   -2.04   -2.94   -3.88   -4.82   -5.67   -6.29   -6.53   -6.32   -5.64   -4.60   -3.31   -1.81    0.07    2.68    6.39
+   125.0    0.00   -0.14   -0.57   -1.22   -2.01   -2.91   -3.85   -4.79   -5.64   -6.25   -6.50   -6.29   -5.61   -4.55   -3.25   -1.71    0.20    2.83    6.48
+   130.0    0.00   -0.14   -0.56   -1.19   -1.98   -2.88   -3.81   -4.75   -5.60   -6.23   -6.48   -6.27   -5.57   -4.51   -3.18   -1.61    0.34    2.97    6.56
+   135.0    0.00   -0.14   -0.55   -1.18   -1.96   -2.85   -3.78   -4.73   -5.58   -6.21   -6.46   -6.25   -5.56   -4.48   -3.13   -1.52    0.46    3.09    6.61
+   140.0    0.00   -0.14   -0.54   -1.15   -1.94   -2.82   -3.75   -4.70   -5.57   -6.20   -6.46   -6.25   -5.55   -4.46   -3.08   -1.45    0.54    3.17    6.66
+   145.0    0.00   -0.13   -0.53   -1.14   -1.92   -2.79   -3.74   -4.68   -5.55   -6.19   -6.47   -6.25   -5.55   -4.46   -3.07   -1.43    0.58    3.21    6.67
+   150.0    0.00   -0.13   -0.52   -1.12   -1.89   -2.77   -3.71   -4.67   -5.54   -6.20   -6.48   -6.26   -5.57   -4.47   -3.08   -1.43    0.58    3.21    6.64
+   155.0    0.00   -0.12   -0.51   -1.11   -1.88   -2.75   -3.70   -4.66   -5.55   -6.21   -6.49   -6.28   -5.59   -4.49   -3.12   -1.49    0.52    3.15    6.60
+   160.0    0.00   -0.13   -0.51   -1.10   -1.86   -2.74   -3.69   -4.66   -5.56   -6.23   -6.51   -6.32   -5.62   -4.53   -3.16   -1.56    0.44    3.06    6.55
+   165.0    0.00   -0.13   -0.51   -1.10   -1.85   -2.74   -3.68   -4.67   -5.58   -6.25   -6.54   -6.33   -5.65   -4.57   -3.23   -1.65    0.32    2.95    6.48
+   170.0    0.00   -0.13   -0.50   -1.10   -1.85   -2.73   -3.70   -4.68   -5.58   -6.26   -6.55   -6.34   -5.66   -4.60   -3.30   -1.74    0.20    2.85    6.44
+   175.0    0.00   -0.13   -0.50   -1.09   -1.85   -2.73   -3.70   -4.69   -5.61   -6.27   -6.55   -6.35   -5.67   -4.63   -3.35   -1.83    0.09    2.75    6.44
+   180.0    0.00   -0.13   -0.50   -1.10   -1.84   -2.73   -3.71   -4.71   -5.61   -6.27   -6.56   -6.34   -5.66   -4.65   -3.38   -1.90    0.01    2.70    6.46
+   185.0    0.00   -0.13   -0.50   -1.10   -1.86   -2.75   -3.72   -4.71   -5.62   -6.27   -6.54   -6.32   -5.65   -4.64   -3.40   -1.92   -0.01    2.70    6.55
+   190.0    0.00   -0.12   -0.50   -1.09   -1.86   -2.75   -3.72   -4.71   -5.61   -6.25   -6.52   -6.30   -5.61   -4.60   -3.37   -1.90    0.01    2.78    6.69
+   195.0    0.00   -0.12   -0.50   -1.10   -1.87   -2.75   -3.72   -4.72   -5.60   -6.25   -6.49   -6.25   -5.57   -4.56   -3.32   -1.85    0.10    2.90    6.87
+   200.0    0.00   -0.12   -0.50   -1.10   -1.87   -2.76   -3.73   -4.71   -5.59   -6.22   -6.45   -6.22   -5.53   -4.49   -3.23   -1.73    0.24    3.09    7.11
+   205.0    0.00   -0.12   -0.51   -1.11   -1.88   -2.76   -3.72   -4.70   -5.56   -6.18   -6.41   -6.17   -5.46   -4.42   -3.13   -1.58    0.44    3.32    7.40
+   210.0    0.00   -0.12   -0.52   -1.11   -1.87   -2.76   -3.71   -4.67   -5.54   -6.16   -6.38   -6.11   -5.39   -4.32   -2.99   -1.41    0.66    3.59    7.68
+   215.0    0.00   -0.12   -0.52   -1.11   -1.88   -2.76   -3.70   -4.66   -5.51   -6.13   -6.35   -6.08   -5.34   -4.23   -2.86   -1.24    0.88    3.85    7.98
+   220.0    0.00   -0.12   -0.52   -1.12   -1.89   -2.75   -3.70   -4.64   -5.49   -6.10   -6.31   -6.04   -5.28   -4.14   -2.74   -1.07    1.09    4.10    8.25
+   225.0    0.00   -0.13   -0.52   -1.12   -1.89   -2.75   -3.68   -4.63   -5.48   -6.08   -6.30   -6.01   -5.22   -4.06   -2.63   -0.93    1.26    4.28    8.47
+   230.0    0.00   -0.13   -0.52   -1.13   -1.88   -2.75   -3.68   -4.63   -5.46   -6.08   -6.29   -5.98   -5.18   -3.99   -2.54   -0.83    1.37    4.42    8.63
+   235.0    0.00   -0.13   -0.52   -1.14   -1.89   -2.75   -3.68   -4.62   -5.47   -6.08   -6.28   -5.98   -5.15   -3.95   -2.49   -0.77    1.41    4.46    8.72
+   240.0    0.00   -0.13   -0.53   -1.14   -1.89   -2.76   -3.69   -4.62   -5.48   -6.09   -6.29   -5.97   -5.14   -3.93   -2.47   -0.77    1.38    4.42    8.70
+   245.0    0.00   -0.13   -0.53   -1.15   -1.90   -2.77   -3.70   -4.64   -5.50   -6.12   -6.31   -5.98   -5.14   -3.93   -2.50   -0.83    1.29    4.29    8.62
+   250.0    0.00   -0.13   -0.53   -1.15   -1.90   -2.77   -3.71   -4.66   -5.54   -6.15   -6.34   -5.99   -5.15   -3.96   -2.55   -0.94    1.12    4.11    8.45
+   255.0    0.00   -0.13   -0.54   -1.15   -1.91   -2.78   -3.72   -4.69   -5.56   -6.17   -6.36   -6.02   -5.19   -4.02   -2.64   -1.08    0.93    3.87    8.21
+   260.0    0.00   -0.13   -0.54   -1.15   -1.91   -2.79   -3.73   -4.70   -5.58   -6.21   -6.40   -6.06   -5.23   -4.08   -2.75   -1.25    0.72    3.62    7.94
+   265.0    0.00   -0.13   -0.54   -1.15   -1.92   -2.80   -3.75   -4.72   -5.61   -6.23   -6.43   -6.10   -5.30   -4.17   -2.88   -1.41    0.50    3.37    7.66
+   270.0    0.00   -0.13   -0.54   -1.16   -1.93   -2.80   -3.76   -4.74   -5.63   -6.26   -6.47   -6.15   -5.37   -4.26   -3.00   -1.56    0.32    3.16    7.39
+   275.0    0.00   -0.13   -0.54   -1.16   -1.92   -2.80   -3.76   -4.75   -5.65   -6.28   -6.50   -6.20   -5.44   -4.37   -3.12   -1.69    0.19    2.99    7.16
+   280.0    0.00   -0.13   -0.54   -1.16   -1.93   -2.80   -3.77   -4.75   -5.65   -6.30   -6.53   -6.25   -5.52   -4.45   -3.21   -1.78    0.10    2.90    6.99
+   285.0    0.00   -0.13   -0.54   -1.16   -1.93   -2.80   -3.77   -4.75   -5.65   -6.30   -6.56   -6.30   -5.58   -4.53   -3.28   -1.82    0.09    2.87    6.88
+   290.0    0.00   -0.13   -0.54   -1.16   -1.93   -2.80   -3.76   -4.75   -5.65   -6.31   -6.58   -6.35   -5.64   -4.59   -3.32   -1.82    0.13    2.91    6.84
+   295.0    0.00   -0.14   -0.54   -1.16   -1.92   -2.81   -3.76   -4.75   -5.65   -6.31   -6.59   -6.37   -5.70   -4.64   -3.33   -1.79    0.21    3.01    6.89
+   300.0    0.00   -0.14   -0.54   -1.16   -1.92   -2.80   -3.75   -4.73   -5.64   -6.31   -6.60   -6.41   -5.72   -4.66   -3.32   -1.72    0.32    3.15    6.97
+   305.0    0.00   -0.14   -0.53   -1.15   -1.92   -2.80   -3.75   -4.72   -5.64   -6.31   -6.61   -6.42   -5.74   -4.66   -3.29   -1.64    0.45    3.28    7.09
+   310.0    0.00   -0.14   -0.53   -1.15   -1.91   -2.78   -3.73   -4.72   -5.63   -6.32   -6.62   -6.43   -5.75   -4.66   -3.26   -1.58    0.55    3.40    7.21
+   315.0    0.00   -0.14   -0.53   -1.14   -1.90   -2.77   -3.72   -4.72   -5.62   -6.32   -6.62   -6.44   -5.74   -4.63   -3.21   -1.52    0.61    3.46    7.31
+   320.0    0.00   -0.14   -0.53   -1.14   -1.90   -2.77   -3.72   -4.70   -5.63   -6.33   -6.63   -6.44   -5.74   -4.61   -3.18   -1.49    0.63    3.48    7.36
+   325.0    0.00   -0.14   -0.53   -1.14   -1.89   -2.75   -3.72   -4.71   -5.63   -6.33   -6.65   -6.45   -5.74   -4.60   -3.18   -1.50    0.58    3.42    7.35
+   330.0    0.00   -0.15   -0.53   -1.14   -1.88   -2.75   -3.72   -4.71   -5.64   -6.35   -6.65   -6.47   -5.74   -4.60   -3.19   -1.56    0.48    3.29    7.28
+   335.0    0.00   -0.15   -0.53   -1.13   -1.88   -2.75   -3.71   -4.71   -5.65   -6.36   -6.67   -6.48   -5.75   -4.62   -3.24   -1.64    0.32    3.10    7.14
+   340.0    0.00   -0.15   -0.53   -1.13   -1.88   -2.75   -3.70   -4.72   -5.66   -6.38   -6.70   -6.49   -5.77   -4.66   -3.30   -1.77    0.14    2.87    6.95
+   345.0    0.00   -0.14   -0.54   -1.13   -1.88   -2.75   -3.70   -4.72   -5.67   -6.39   -6.72   -6.52   -5.80   -4.71   -3.39   -1.91   -0.06    2.62    6.74
+   350.0    0.00   -0.14   -0.54   -1.14   -1.88   -2.75   -3.71   -4.72   -5.68   -6.41   -6.74   -6.55   -5.85   -4.77   -3.49   -2.05   -0.26    2.39    6.53
+   355.0    0.00   -0.14   -0.53   -1.13   -1.88   -2.74   -3.70   -4.72   -5.68   -6.42   -6.77   -6.58   -5.89   -4.83   -3.58   -2.18   -0.43    2.19    6.34
+   360.0    0.00   -0.14   -0.54   -1.13   -1.88   -2.75   -3.71   -4.73   -5.69   -6.42   -6.77   -6.61   -5.93   -4.89   -3.66   -2.28   -0.55    2.06    6.22
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+LEIAT504GG      LEIS                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH              78    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     4                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+Number of Calibrated Antennas GPS:      078                 COMMENT             
+Number of Individual Calibrations GPS:  156                 COMMENT             
+Number of Calibrated Antennas GLO:      108                 COMMENT             
+Number of Individual Calibrations GLO:  216                 COMMENT             
+# GLONASS PCV                                               COMMENT             
+#  derived from Delta PCV per 25.0 MHz                      COMMENT             
+#  for frequency channel number k=0                         COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.40      1.17     87.06                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.30   -1.16   -2.46   -4.04   -5.69   -7.22   -8.46   -9.28   -9.59   -9.36   -8.58   -7.27   -5.40   -2.89    0.41    4.63    9.79   15.67
+     0.0    0.00   -0.26   -1.11   -2.42   -4.03   -5.72   -7.29   -8.54   -9.34   -9.60   -9.32   -8.50   -7.17   -5.30   -2.80    0.49    4.71    9.81   15.44
+     5.0    0.00   -0.27   -1.12   -2.43   -4.04   -5.73   -7.30   -8.56   -9.36   -9.63   -9.33   -8.51   -7.16   -5.29   -2.80    0.46    4.64    9.74   15.44
+    10.0    0.00   -0.28   -1.13   -2.44   -4.05   -5.74   -7.31   -8.58   -9.38   -9.65   -9.36   -8.52   -7.16   -5.28   -2.81    0.42    4.57    9.68   15.46
+    15.0    0.00   -0.28   -1.14   -2.45   -4.06   -5.75   -7.33   -8.60   -9.41   -9.69   -9.39   -8.54   -7.17   -5.28   -2.82    0.39    4.52    9.63   15.50
+    20.0    0.00   -0.29   -1.15   -2.46   -4.07   -5.76   -7.34   -8.61   -9.44   -9.72   -9.42   -8.57   -7.18   -5.29   -2.82    0.37    4.48    9.61   15.56
+    25.0    0.00   -0.29   -1.16   -2.47   -4.08   -5.77   -7.35   -8.63   -9.46   -9.76   -9.47   -8.60   -7.21   -5.30   -2.83    0.37    4.48    9.62   15.63
+    30.0    0.00   -0.30   -1.17   -2.48   -4.08   -5.77   -7.35   -8.64   -9.48   -9.79   -9.51   -8.65   -7.25   -5.32   -2.83    0.38    4.50    9.65   15.71
+    35.0    0.00   -0.31   -1.17   -2.49   -4.09   -5.77   -7.35   -8.64   -9.50   -9.81   -9.55   -8.69   -7.28   -5.34   -2.82    0.41    4.55    9.71   15.79
+    40.0    0.00   -0.31   -1.18   -2.50   -4.09   -5.77   -7.35   -8.64   -9.50   -9.83   -9.58   -8.73   -7.32   -5.36   -2.81    0.46    4.62    9.79   15.87
+    45.0    0.00   -0.32   -1.19   -2.51   -4.10   -5.77   -7.34   -8.62   -9.49   -9.83   -9.59   -8.76   -7.35   -5.38   -2.79    0.51    4.70    9.88   15.94
+    50.0    0.00   -0.32   -1.20   -2.52   -4.10   -5.77   -7.32   -8.60   -9.47   -9.82   -9.59   -8.78   -7.38   -5.39   -2.78    0.57    4.78    9.97   16.00
+    55.0    0.00   -0.33   -1.21   -2.53   -4.11   -5.77   -7.31   -8.58   -9.44   -9.79   -9.58   -8.78   -7.39   -5.39   -2.76    0.61    4.86   10.05   16.06
+    60.0    0.00   -0.34   -1.22   -2.54   -4.12   -5.76   -7.29   -8.55   -9.40   -9.76   -9.55   -8.76   -7.38   -5.39   -2.75    0.65    4.92   10.12   16.11
+    65.0    0.00   -0.34   -1.23   -2.55   -4.12   -5.76   -7.28   -8.52   -9.36   -9.71   -9.51   -8.73   -7.37   -5.38   -2.73    0.68    4.97   10.18   16.15
+    70.0    0.00   -0.35   -1.24   -2.56   -4.13   -5.76   -7.27   -8.50   -9.32   -9.66   -9.46   -8.69   -7.34   -5.37   -2.73    0.69    4.99   10.21   16.19
+    75.0    0.00   -0.35   -1.25   -2.57   -4.14   -5.77   -7.26   -8.48   -9.29   -9.61   -9.41   -8.65   -7.31   -5.35   -2.72    0.69    5.00   10.23   16.23
+    80.0    0.00   -0.36   -1.26   -2.58   -4.15   -5.77   -7.26   -8.46   -9.26   -9.57   -9.37   -8.61   -7.28   -5.34   -2.72    0.68    4.99   10.23   16.25
+    85.0    0.00   -0.36   -1.27   -2.59   -4.16   -5.78   -7.27   -8.46   -9.24   -9.54   -9.33   -8.57   -7.25   -5.33   -2.73    0.66    4.97   10.23   16.26
+    90.0    0.00   -0.36   -1.27   -2.60   -4.18   -5.80   -7.28   -8.46   -9.23   -9.53   -9.30   -8.55   -7.24   -5.33   -2.75    0.64    4.94   10.21   16.27
+    95.0    0.00   -0.37   -1.28   -2.61   -4.19   -5.81   -7.29   -8.47   -9.24   -9.52   -9.29   -8.54   -7.23   -5.34   -2.77    0.61    4.91   10.19   16.25
+   100.0    0.00   -0.37   -1.29   -2.62   -4.20   -5.83   -7.31   -8.48   -9.25   -9.53   -9.30   -8.54   -7.24   -5.35   -2.79    0.58    4.88   10.16   16.23
+   105.0    0.00   -0.37   -1.29   -2.63   -4.22   -5.84   -7.33   -8.50   -9.27   -9.55   -9.31   -8.56   -7.26   -5.38   -2.82    0.55    4.85   10.13   16.19
+   110.0    0.00   -0.38   -1.30   -2.64   -4.23   -5.86   -7.34   -8.53   -9.29   -9.57   -9.34   -8.58   -7.29   -5.41   -2.85    0.51    4.82   10.10   16.14
+   115.0    0.00   -0.38   -1.30   -2.65   -4.24   -5.87   -7.36   -8.55   -9.31   -9.60   -9.37   -8.61   -7.32   -5.45   -2.89    0.48    4.79   10.06   16.08
+   120.0    0.00   -0.38   -1.30   -2.65   -4.24   -5.88   -7.37   -8.56   -9.33   -9.62   -9.39   -8.64   -7.35   -5.48   -2.93    0.44    4.76   10.02   16.02
+   125.0    0.00   -0.38   -1.30   -2.65   -4.24   -5.88   -7.38   -8.57   -9.35   -9.64   -9.41   -8.66   -7.38   -5.51   -2.96    0.41    4.72    9.99   15.97
+   130.0    0.00   -0.38   -1.30   -2.65   -4.24   -5.89   -7.38   -8.58   -9.36   -9.65   -9.42   -8.68   -7.40   -5.53   -2.99    0.37    4.68    9.95   15.93
+   135.0    0.00   -0.38   -1.30   -2.65   -4.24   -5.88   -7.38   -8.58   -9.35   -9.64   -9.42   -8.68   -7.40   -5.54   -3.01    0.34    4.64    9.91   15.90
+   140.0    0.00   -0.38   -1.30   -2.64   -4.23   -5.87   -7.37   -8.57   -9.35   -9.63   -9.41   -8.66   -7.39   -5.55   -3.03    0.31    4.60    9.87   15.88
+   145.0    0.00   -0.37   -1.30   -2.64   -4.23   -5.86   -7.36   -8.55   -9.33   -9.62   -9.39   -8.64   -7.37   -5.53   -3.03    0.29    4.57    9.84   15.86
+   150.0    0.00   -0.37   -1.29   -2.63   -4.21   -5.85   -7.34   -8.54   -9.31   -9.60   -9.37   -8.62   -7.35   -5.51   -3.02    0.28    4.55    9.81   15.85
+   155.0    0.00   -0.37   -1.28   -2.62   -4.20   -5.83   -7.32   -8.52   -9.29   -9.58   -9.35   -8.59   -7.32   -5.49   -3.00    0.29    4.53    9.78   15.83
+   160.0    0.00   -0.36   -1.28   -2.61   -4.19   -5.81   -7.30   -8.49   -9.27   -9.56   -9.33   -8.57   -7.30   -5.46   -2.98    0.30    4.53    9.76   15.80
+   165.0    0.00   -0.36   -1.27   -2.60   -4.17   -5.79   -7.28   -8.48   -9.25   -9.55   -9.32   -8.56   -7.28   -5.43   -2.95    0.32    4.53    9.73   15.75
+   170.0    0.00   -0.36   -1.26   -2.59   -4.15   -5.78   -7.26   -8.46   -9.24   -9.54   -9.31   -8.56   -7.27   -5.41   -2.92    0.35    4.53    9.71   15.68
+   175.0    0.00   -0.35   -1.25   -2.57   -4.14   -5.76   -7.24   -8.44   -9.23   -9.54   -9.32   -8.56   -7.26   -5.40   -2.89    0.37    4.54    9.67   15.60
+   180.0    0.00   -0.34   -1.24   -2.56   -4.12   -5.74   -7.23   -8.43   -9.23   -9.54   -9.33   -8.58   -7.27   -5.39   -2.88    0.39    4.54    9.64   15.50
+   185.0    0.00   -0.34   -1.23   -2.54   -4.11   -5.72   -7.21   -8.42   -9.23   -9.55   -9.35   -8.59   -7.28   -5.40   -2.87    0.40    4.54    9.59   15.41
+   190.0    0.00   -0.33   -1.22   -2.53   -4.09   -5.71   -7.20   -8.42   -9.23   -9.56   -9.36   -8.61   -7.30   -5.41   -2.87    0.40    4.52    9.55   15.32
+   195.0    0.00   -0.33   -1.21   -2.51   -4.08   -5.70   -7.19   -8.41   -9.23   -9.56   -9.37   -8.63   -7.32   -5.42   -2.89    0.38    4.50    9.51   15.26
+   200.0    0.00   -0.32   -1.19   -2.50   -4.06   -5.68   -7.18   -8.40   -9.22   -9.56   -9.37   -8.63   -7.33   -5.44   -2.92    0.35    4.47    9.49   15.24
+   205.0    0.00   -0.31   -1.18   -2.48   -4.04   -5.67   -7.17   -8.39   -9.22   -9.56   -9.37   -8.63   -7.33   -5.46   -2.94    0.31    4.44    9.48   15.26
+   210.0    0.00   -0.30   -1.17   -2.47   -4.03   -5.65   -7.16   -8.38   -9.21   -9.54   -9.35   -8.62   -7.33   -5.47   -2.98    0.28    4.41    9.49   15.32
+   215.0    0.00   -0.30   -1.15   -2.45   -4.01   -5.64   -7.15   -8.37   -9.19   -9.52   -9.33   -8.60   -7.32   -5.48   -3.00    0.25    4.40    9.53   15.43
+   220.0    0.00   -0.29   -1.14   -2.43   -3.99   -5.62   -7.13   -8.36   -9.17   -9.50   -9.30   -8.57   -7.31   -5.48   -3.02    0.23    4.42    9.60   15.57
+   225.0    0.00   -0.28   -1.13   -2.41   -3.97   -5.60   -7.11   -8.34   -9.15   -9.48   -9.28   -8.55   -7.29   -5.48   -3.03    0.23    4.45    9.69   15.72
+   230.0    0.00   -0.28   -1.11   -2.40   -3.95   -5.58   -7.09   -8.32   -9.13   -9.45   -9.25   -8.52   -7.27   -5.47   -3.02    0.25    4.51    9.80   15.87
+   235.0    0.00   -0.27   -1.10   -2.38   -3.93   -5.56   -7.07   -8.30   -9.11   -9.43   -9.23   -8.51   -7.26   -5.46   -3.00    0.29    4.58    9.91   16.00
+   240.0    0.00   -0.26   -1.09   -2.36   -3.91   -5.54   -7.05   -8.28   -9.10   -9.42   -9.22   -8.50   -7.25   -5.45   -2.97    0.35    4.67   10.02   16.08
+   245.0    0.00   -0.26   -1.07   -2.34   -3.89   -5.52   -7.03   -8.27   -9.09   -9.42   -9.22   -8.50   -7.25   -5.43   -2.93    0.41    4.76   10.10   16.12
+   250.0    0.00   -0.25   -1.06   -2.32   -3.87   -5.49   -7.02   -8.26   -9.08   -9.42   -9.23   -8.51   -7.25   -5.42   -2.90    0.47    4.83   10.15   16.09
+   255.0    0.00   -0.24   -1.05   -2.31   -3.85   -5.48   -7.00   -8.25   -9.09   -9.43   -9.25   -8.52   -7.26   -5.41   -2.86    0.52    4.88   10.16   16.00
+   260.0    0.00   -0.24   -1.04   -2.29   -3.83   -5.46   -6.99   -8.25   -9.10   -9.45   -9.27   -8.54   -7.27   -5.40   -2.84    0.56    4.90   10.12   15.87
+   265.0    0.00   -0.24   -1.03   -2.28   -3.82   -5.45   -6.99   -8.25   -9.11   -9.47   -9.29   -8.56   -7.28   -5.40   -2.83    0.56    4.87   10.04   15.70
+   270.0    0.00   -0.23   -1.03   -2.27   -3.81   -5.45   -6.99   -8.26   -9.13   -9.49   -9.31   -8.58   -7.28   -5.40   -2.83    0.54    4.81    9.92   15.51
+   275.0    0.00   -0.23   -1.02   -2.27   -3.81   -5.45   -7.00   -8.28   -9.15   -9.51   -9.33   -8.59   -7.29   -5.40   -2.85    0.49    4.71    9.77   15.32
+   280.0    0.00   -0.23   -1.02   -2.27   -3.81   -5.46   -7.02   -8.30   -9.17   -9.54   -9.34   -8.59   -7.28   -5.40   -2.87    0.42    4.60    9.61   15.16
+   285.0    0.00   -0.22   -1.01   -2.26   -3.82   -5.47   -7.04   -8.33   -9.20   -9.55   -9.35   -8.58   -7.28   -5.41   -2.91    0.34    4.47    9.46   15.04
+   290.0    0.00   -0.22   -1.01   -2.27   -3.82   -5.49   -7.06   -8.36   -9.22   -9.57   -9.35   -8.57   -7.26   -5.41   -2.95    0.26    4.35    9.33   14.97
+   295.0    0.00   -0.22   -1.01   -2.27   -3.84   -5.51   -7.09   -8.39   -9.25   -9.58   -9.34   -8.56   -7.25   -5.42   -2.98    0.19    4.25    9.24   14.95
+   300.0    0.00   -0.22   -1.02   -2.28   -3.85   -5.53   -7.12   -8.41   -9.27   -9.58   -9.34   -8.54   -7.24   -5.42   -3.01    0.13    4.18    9.20   14.98
+   305.0    0.00   -0.22   -1.02   -2.29   -3.87   -5.56   -7.14   -8.44   -9.28   -9.59   -9.33   -8.53   -7.23   -5.42   -3.03    0.11    4.16    9.21   15.05
+   310.0    0.00   -0.22   -1.02   -2.30   -3.88   -5.58   -7.17   -8.46   -9.29   -9.59   -9.32   -8.52   -7.22   -5.42   -3.03    0.11    4.19    9.27   15.14
+   315.0    0.00   -0.23   -1.03   -2.31   -3.90   -5.60   -7.19   -8.47   -9.30   -9.59   -9.32   -8.51   -7.22   -5.42   -3.02    0.14    4.25    9.36   15.24
+   320.0    0.00   -0.23   -1.04   -2.32   -3.92   -5.62   -7.21   -8.48   -9.31   -9.59   -9.31   -8.51   -7.22   -5.41   -3.00    0.20    4.35    9.48   15.34
+   325.0    0.00   -0.23   -1.04   -2.33   -3.93   -5.64   -7.22   -8.49   -9.31   -9.58   -9.31   -8.51   -7.22   -5.41   -2.97    0.27    4.46    9.61   15.42
+   330.0    0.00   -0.24   -1.05   -2.35   -3.95   -5.65   -7.23   -8.50   -9.31   -9.58   -9.31   -8.52   -7.22   -5.40   -2.93    0.34    4.57    9.73   15.48
+   335.0    0.00   -0.24   -1.06   -2.36   -3.97   -5.66   -7.24   -8.50   -9.30   -9.58   -9.31   -8.52   -7.22   -5.38   -2.89    0.42    4.67    9.82   15.50
+   340.0    0.00   -0.24   -1.07   -2.37   -3.98   -5.68   -7.25   -8.50   -9.30   -9.58   -9.31   -8.52   -7.22   -5.37   -2.86    0.47    4.74    9.89   15.51
+   345.0    0.00   -0.25   -1.08   -2.38   -3.99   -5.69   -7.26   -8.51   -9.31   -9.58   -9.31   -8.51   -7.21   -5.35   -2.83    0.51    4.78    9.92   15.50
+   350.0    0.00   -0.25   -1.09   -2.40   -4.00   -5.70   -7.27   -8.51   -9.31   -9.58   -9.31   -8.51   -7.20   -5.33   -2.81    0.53    4.79    9.91   15.47
+   355.0    0.00   -0.26   -1.10   -2.41   -4.02   -5.71   -7.28   -8.52   -9.32   -9.59   -9.31   -8.51   -7.18   -5.32   -2.80    0.52    4.76    9.87   15.45
+   360.0    0.00   -0.26   -1.11   -2.42   -4.03   -5.72   -7.29   -8.54   -9.34   -9.60   -9.32   -8.50   -7.17   -5.30   -2.80    0.49    4.71    9.81   15.44
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.14     -0.32    117.54                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.15   -0.57   -1.21   -1.99   -2.85   -3.74   -4.62   -5.37   -5.88   -5.99   -5.59   -4.69   -3.37   -1.72    0.25    2.69    5.93   10.23
+     0.0    0.00   -0.15   -0.57   -1.18   -1.93   -2.76   -3.64   -4.51   -5.28   -5.81   -5.95   -5.58   -4.71   -3.42   -1.81    0.12    2.53    5.73    9.94
+     5.0    0.00   -0.15   -0.57   -1.18   -1.93   -2.76   -3.64   -4.51   -5.27   -5.80   -5.93   -5.57   -4.71   -3.43   -1.83    0.09    2.52    5.75    9.98
+    10.0    0.00   -0.16   -0.57   -1.18   -1.93   -2.76   -3.64   -4.50   -5.26   -5.78   -5.91   -5.55   -4.70   -3.43   -1.84    0.10    2.56    5.82   10.08
+    15.0    0.00   -0.16   -0.57   -1.19   -1.93   -2.76   -3.64   -4.50   -5.25   -5.76   -5.89   -5.53   -4.68   -3.42   -1.82    0.13    2.62    5.93   10.24
+    20.0    0.00   -0.16   -0.57   -1.19   -1.94   -2.77   -3.64   -4.50   -5.24   -5.74   -5.86   -5.50   -4.66   -3.39   -1.79    0.19    2.71    6.08   10.45
+    25.0    0.00   -0.16   -0.57   -1.19   -1.94   -2.78   -3.64   -4.49   -5.23   -5.73   -5.84   -5.47   -4.62   -3.35   -1.73    0.26    2.83    6.24   10.68
+    30.0    0.00   -0.16   -0.58   -1.20   -1.95   -2.78   -3.65   -4.49   -5.22   -5.71   -5.81   -5.44   -4.58   -3.30   -1.67    0.35    2.94    6.41   10.92
+    35.0    0.00   -0.16   -0.58   -1.20   -1.96   -2.79   -3.66   -4.50   -5.22   -5.70   -5.79   -5.40   -4.53   -3.24   -1.59    0.44    3.05    6.55   11.13
+    40.0    0.00   -0.16   -0.58   -1.21   -1.97   -2.80   -3.67   -4.50   -5.22   -5.69   -5.77   -5.37   -4.49   -3.18   -1.53    0.52    3.14    6.67   11.30
+    45.0    0.00   -0.16   -0.59   -1.22   -1.98   -2.82   -3.68   -4.51   -5.23   -5.69   -5.76   -5.35   -4.45   -3.14   -1.47    0.57    3.20    6.73   11.40
+    50.0    0.00   -0.16   -0.59   -1.22   -1.99   -2.83   -3.70   -4.53   -5.24   -5.69   -5.76   -5.34   -4.43   -3.11   -1.44    0.60    3.22    6.74   11.42
+    55.0    0.00   -0.16   -0.59   -1.23   -2.00   -2.85   -3.72   -4.55   -5.26   -5.71   -5.77   -5.34   -4.43   -3.10   -1.43    0.60    3.19    6.69   11.36
+    60.0    0.00   -0.16   -0.60   -1.24   -2.02   -2.87   -3.74   -4.57   -5.28   -5.73   -5.79   -5.37   -4.45   -3.12   -1.46    0.56    3.12    6.58   11.22
+    65.0    0.00   -0.16   -0.60   -1.25   -2.03   -2.88   -3.76   -4.60   -5.31   -5.77   -5.83   -5.40   -4.49   -3.16   -1.51    0.49    3.01    6.42   11.01
+    70.0    0.00   -0.16   -0.60   -1.25   -2.04   -2.90   -3.78   -4.63   -5.35   -5.81   -5.88   -5.46   -4.54   -3.22   -1.58    0.38    2.87    6.22   10.74
+    75.0    0.00   -0.17   -0.61   -1.26   -2.05   -2.92   -3.81   -4.66   -5.38   -5.85   -5.93   -5.52   -4.61   -3.30   -1.68    0.26    2.71    5.99   10.44
+    80.0    0.00   -0.17   -0.61   -1.27   -2.06   -2.93   -3.83   -4.69   -5.42   -5.90   -5.98   -5.58   -4.69   -3.39   -1.78    0.14    2.53    5.76   10.14
+    85.0    0.00   -0.17   -0.61   -1.27   -2.07   -2.95   -3.85   -4.71   -5.45   -5.94   -6.04   -5.65   -4.76   -3.47   -1.88    0.01    2.37    5.54    9.85
+    90.0    0.00   -0.17   -0.61   -1.28   -2.08   -2.96   -3.86   -4.73   -5.48   -5.98   -6.08   -5.70   -4.83   -3.55   -1.97   -0.11    2.22    5.34    9.61
+    95.0    0.00   -0.17   -0.61   -1.28   -2.08   -2.96   -3.87   -4.75   -5.50   -6.01   -6.12   -5.75   -4.88   -3.61   -2.04   -0.20    2.10    5.19    9.42
+   100.0    0.00   -0.17   -0.61   -1.28   -2.09   -2.97   -3.88   -4.76   -5.52   -6.03   -6.15   -5.78   -4.91   -3.65   -2.09   -0.26    2.01    5.08    9.29
+   105.0    0.00   -0.16   -0.61   -1.28   -2.09   -2.97   -3.88   -4.76   -5.53   -6.04   -6.16   -5.79   -4.92   -3.66   -2.11   -0.29    1.97    5.03    9.24
+   110.0    0.00   -0.16   -0.61   -1.28   -2.09   -2.97   -3.88   -4.76   -5.53   -6.04   -6.16   -5.78   -4.92   -3.65   -2.10   -0.28    1.98    5.03    9.25
+   115.0    0.00   -0.16   -0.61   -1.28   -2.08   -2.97   -3.88   -4.76   -5.52   -6.03   -6.15   -5.77   -4.89   -3.62   -2.06   -0.24    2.02    5.09    9.32
+   120.0    0.00   -0.16   -0.61   -1.27   -2.08   -2.96   -3.87   -4.75   -5.51   -6.02   -6.13   -5.74   -4.86   -3.57   -2.00   -0.17    2.10    5.18    9.43
+   125.0    0.00   -0.16   -0.61   -1.27   -2.07   -2.95   -3.86   -4.74   -5.50   -6.00   -6.11   -5.71   -4.82   -3.52   -1.93   -0.09    2.20    5.30    9.56
+   130.0    0.00   -0.16   -0.60   -1.26   -2.07   -2.95   -3.85   -4.73   -5.48   -5.98   -6.08   -5.68   -4.77   -3.46   -1.86    0.01    2.32    5.43    9.70
+   135.0    0.00   -0.16   -0.60   -1.26   -2.06   -2.94   -3.84   -4.71   -5.46   -5.96   -6.06   -5.65   -4.74   -3.41   -1.79    0.10    2.43    5.56    9.82
+   140.0    0.00   -0.15   -0.59   -1.25   -2.05   -2.93   -3.83   -4.70   -5.45   -5.94   -6.04   -5.63   -4.71   -3.37   -1.73    0.18    2.54    5.67    9.91
+   145.0    0.00   -0.15   -0.59   -1.25   -2.05   -2.92   -3.82   -4.69   -5.43   -5.93   -6.02   -5.61   -4.69   -3.35   -1.69    0.24    2.62    5.76    9.96
+   150.0    0.00   -0.15   -0.59   -1.24   -2.04   -2.91   -3.81   -4.68   -5.42   -5.92   -6.01   -5.61   -4.69   -3.34   -1.68    0.28    2.68    5.82    9.97
+   155.0    0.00   -0.15   -0.58   -1.23   -2.03   -2.90   -3.80   -4.67   -5.41   -5.90   -6.00   -5.60   -4.69   -3.35   -1.68    0.29    2.70    5.84    9.94
+   160.0    0.00   -0.15   -0.58   -1.23   -2.02   -2.90   -3.79   -4.66   -5.40   -5.89   -6.00   -5.60   -4.70   -3.36   -1.69    0.28    2.70    5.83    9.88
+   165.0    0.00   -0.14   -0.57   -1.22   -2.01   -2.89   -3.79   -4.65   -5.39   -5.88   -5.99   -5.60   -4.71   -3.39   -1.72    0.26    2.68    5.80    9.80
+   170.0    0.00   -0.14   -0.57   -1.21   -2.01   -2.88   -3.78   -4.64   -5.38   -5.87   -5.98   -5.60   -4.72   -3.41   -1.75    0.22    2.64    5.75    9.73
+   175.0    0.00   -0.14   -0.56   -1.20   -2.00   -2.87   -3.77   -4.63   -5.37   -5.86   -5.97   -5.59   -4.72   -3.42   -1.78    0.19    2.61    5.72    9.68
+   180.0    0.00   -0.14   -0.56   -1.20   -1.99   -2.86   -3.76   -4.62   -5.35   -5.84   -5.95   -5.58   -4.72   -3.43   -1.79    0.17    2.58    5.69    9.67
+   185.0    0.00   -0.14   -0.55   -1.19   -1.98   -2.85   -3.74   -4.60   -5.34   -5.83   -5.93   -5.56   -4.70   -3.41   -1.79    0.16    2.58    5.70    9.71
+   190.0    0.00   -0.14   -0.55   -1.18   -1.96   -2.83   -3.73   -4.59   -5.32   -5.81   -5.91   -5.53   -4.67   -3.38   -1.76    0.18    2.60    5.74    9.80
+   195.0    0.00   -0.13   -0.54   -1.17   -1.95   -2.82   -3.72   -4.58   -5.31   -5.79   -5.89   -5.50   -4.63   -3.34   -1.72    0.23    2.66    5.83    9.95
+   200.0    0.00   -0.13   -0.54   -1.17   -1.94   -2.81   -3.70   -4.56   -5.30   -5.78   -5.87   -5.47   -4.59   -3.28   -1.65    0.31    2.75    5.95   10.14
+   205.0    0.00   -0.13   -0.54   -1.16   -1.94   -2.80   -3.69   -4.55   -5.29   -5.77   -5.85   -5.44   -4.54   -3.22   -1.57    0.41    2.86    6.10   10.37
+   210.0    0.00   -0.13   -0.54   -1.16   -1.93   -2.79   -3.68   -4.55   -5.28   -5.76   -5.84   -5.42   -4.50   -3.15   -1.47    0.52    2.99    6.27   10.61
+   215.0    0.00   -0.13   -0.53   -1.16   -1.92   -2.78   -3.68   -4.54   -5.28   -5.76   -5.84   -5.40   -4.46   -3.08   -1.39    0.63    3.12    6.43   10.83
+   220.0    0.00   -0.13   -0.53   -1.15   -1.92   -2.78   -3.68   -4.55   -5.29   -5.77   -5.84   -5.40   -4.43   -3.03   -1.31    0.73    3.24    6.57   11.02
+   225.0    0.00   -0.13   -0.54   -1.16   -1.92   -2.78   -3.68   -4.56   -5.31   -5.79   -5.85   -5.40   -4.41   -2.99   -1.25    0.80    3.33    6.67   11.16
+   230.0    0.00   -0.13   -0.54   -1.16   -1.93   -2.79   -3.69   -4.57   -5.33   -5.81   -5.87   -5.41   -4.41   -2.98   -1.22    0.84    3.37    6.72   11.22
+   235.0    0.00   -0.13   -0.54   -1.16   -1.94   -2.80   -3.71   -4.59   -5.35   -5.84   -5.90   -5.43   -4.42   -2.98   -1.22    0.83    3.36    6.70   11.19
+   240.0    0.00   -0.13   -0.54   -1.17   -1.95   -2.82   -3.73   -4.62   -5.38   -5.87   -5.93   -5.46   -4.45   -3.01   -1.26    0.78    3.29    6.61   11.09
+   245.0    0.00   -0.13   -0.55   -1.18   -1.96   -2.83   -3.75   -4.64   -5.41   -5.90   -5.96   -5.49   -4.50   -3.07   -1.33    0.69    3.17    6.46   10.91
+   250.0    0.00   -0.14   -0.55   -1.19   -1.97   -2.85   -3.77   -4.67   -5.44   -5.93   -5.99   -5.54   -4.55   -3.15   -1.43    0.56    3.01    6.27   10.67
+   255.0    0.00   -0.14   -0.56   -1.20   -1.99   -2.87   -3.80   -4.69   -5.46   -5.96   -6.03   -5.58   -4.62   -3.24   -1.56    0.40    2.82    6.04   10.40
+   260.0    0.00   -0.14   -0.56   -1.21   -2.00   -2.89   -3.82   -4.72   -5.49   -5.98   -6.06   -5.63   -4.69   -3.34   -1.69    0.23    2.61    5.80   10.12
+   265.0    0.00   -0.14   -0.57   -1.21   -2.01   -2.91   -3.83   -4.73   -5.50   -6.01   -6.10   -5.68   -4.76   -3.44   -1.83    0.06    2.42    5.58    9.87
+   270.0    0.00   -0.14   -0.57   -1.22   -2.02   -2.92   -3.84   -4.74   -5.52   -6.02   -6.13   -5.73   -4.83   -3.54   -1.95   -0.08    2.25    5.39    9.65
+   275.0    0.00   -0.14   -0.57   -1.23   -2.03   -2.92   -3.85   -4.75   -5.52   -6.04   -6.15   -5.77   -4.90   -3.63   -2.06   -0.20    2.13    5.26    9.50
+   280.0    0.00   -0.15   -0.58   -1.23   -2.04   -2.92   -3.85   -4.75   -5.52   -6.05   -6.18   -5.81   -4.96   -3.70   -2.13   -0.27    2.06    5.19    9.43
+   285.0    0.00   -0.15   -0.58   -1.23   -2.04   -2.92   -3.84   -4.74   -5.52   -6.05   -6.19   -5.85   -5.00   -3.74   -2.17   -0.30    2.04    5.19    9.44
+   290.0    0.00   -0.15   -0.58   -1.23   -2.03   -2.91   -3.83   -4.72   -5.51   -6.05   -6.21   -5.87   -5.03   -3.77   -2.18   -0.28    2.08    5.25    9.51
+   295.0    0.00   -0.15   -0.58   -1.23   -2.03   -2.90   -3.81   -4.70   -5.49   -6.05   -6.21   -5.89   -5.05   -3.77   -2.15   -0.23    2.17    5.36    9.65
+   300.0    0.00   -0.15   -0.58   -1.23   -2.02   -2.88   -3.79   -4.68   -5.47   -6.04   -6.21   -5.89   -5.04   -3.74   -2.10   -0.14    2.29    5.51    9.82
+   305.0    0.00   -0.15   -0.58   -1.23   -2.01   -2.87   -3.76   -4.66   -5.45   -6.02   -6.21   -5.88   -5.02   -3.70   -2.03   -0.03    2.43    5.67   10.00
+   310.0    0.00   -0.15   -0.58   -1.22   -2.00   -2.85   -3.74   -4.63   -5.43   -6.01   -6.19   -5.86   -4.99   -3.64   -1.94    0.08    2.57    5.83   10.18
+   315.0    0.00   -0.15   -0.58   -1.22   -1.99   -2.83   -3.72   -4.61   -5.41   -5.99   -6.17   -5.84   -4.95   -3.58   -1.86    0.19    2.68    5.95   10.32
+   320.0    0.00   -0.15   -0.58   -1.21   -1.97   -2.81   -3.70   -4.59   -5.39   -5.97   -6.15   -5.80   -4.90   -3.52   -1.78    0.27    2.77    6.04   10.41
+   325.0    0.00   -0.15   -0.58   -1.20   -1.96   -2.80   -3.68   -4.57   -5.37   -5.95   -6.12   -5.77   -4.85   -3.46   -1.72    0.33    2.82    6.09   10.44
+   330.0    0.00   -0.15   -0.58   -1.20   -1.95   -2.79   -3.67   -4.55   -5.36   -5.93   -6.09   -5.73   -4.81   -3.41   -1.68    0.36    2.83    6.08   10.42
+   335.0    0.00   -0.15   -0.57   -1.19   -1.94   -2.78   -3.66   -4.54   -5.34   -5.90   -6.06   -5.69   -4.77   -3.38   -1.66    0.35    2.81    6.04   10.35
+   340.0    0.00   -0.15   -0.57   -1.19   -1.94   -2.77   -3.65   -4.53   -5.33   -5.88   -6.04   -5.66   -4.74   -3.37   -1.67    0.32    2.76    5.97   10.25
+   345.0    0.00   -0.15   -0.57   -1.19   -1.93   -2.76   -3.64   -4.53   -5.32   -5.87   -6.01   -5.63   -4.72   -3.37   -1.70    0.27    2.69    5.88   10.13
+   350.0    0.00   -0.15   -0.57   -1.18   -1.93   -2.76   -3.64   -4.52   -5.31   -5.85   -5.99   -5.61   -4.71   -3.38   -1.73    0.21    2.62    5.81   10.03
+   355.0    0.00   -0.15   -0.57   -1.18   -1.93   -2.76   -3.64   -4.52   -5.30   -5.83   -5.97   -5.59   -4.71   -3.40   -1.77    0.16    2.56    5.75    9.96
+   360.0    0.00   -0.15   -0.57   -1.18   -1.93   -2.76   -3.64   -4.51   -5.28   -5.81   -5.95   -5.58   -4.71   -3.42   -1.81    0.12    2.53    5.73    9.94
+   G02                                                      END OF FREQUENCY    
+   R01                                                      START OF FREQUENCY  
+      0.40      1.17     87.06                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.31   -1.18   -2.49   -4.08   -5.74   -7.28   -8.53   -9.39   -9.74   -9.55   -8.79   -7.49   -5.62   -3.12    0.15    4.36    9.55   15.54
+     0.0    0.00   -0.30   -1.18   -2.53   -4.16   -5.86   -7.45   -8.72   -9.56   -9.87   -9.63   -8.85   -7.56   -5.74   -3.28   -0.03    4.18    9.36   15.20
+     5.0    0.00   -0.31   -1.21   -2.55   -4.19   -5.90   -7.49   -8.78   -9.63   -9.95   -9.70   -8.94   -7.63   -5.80   -3.35   -0.14    4.03    9.21   15.10
+    10.0    0.00   -0.33   -1.23   -2.58   -4.21   -5.93   -7.53   -8.84   -9.69  -10.02   -9.80   -9.02   -7.70   -5.86   -3.44   -0.24    3.90    9.06   15.02
+    15.0    0.00   -0.33   -1.25   -2.60   -4.24   -5.96   -7.57   -8.89   -9.76  -10.12   -9.89   -9.10   -7.79   -5.94   -3.51   -0.33    3.79    8.95   14.98
+    20.0    0.00   -0.34   -1.27   -2.62   -4.27   -5.99   -7.61   -8.93   -9.83  -10.19   -9.97   -9.20   -7.87   -6.02   -3.57   -0.41    3.69    8.88   14.98
+    25.0    0.00   -0.35   -1.28   -2.64   -4.29   -6.03   -7.64   -8.97   -9.87  -10.27  -10.08   -9.29   -7.96   -6.09   -3.64   -0.45    3.66    8.84   14.99
+    30.0    0.00   -0.36   -1.30   -2.66   -4.30   -6.04   -7.66   -9.00   -9.92  -10.32  -10.15   -9.38   -8.05   -6.15   -3.68   -0.47    3.66    8.85   15.04
+    35.0    0.00   -0.37   -1.31   -2.68   -4.33   -6.05   -7.67   -9.02   -9.96  -10.36  -10.21   -9.44   -8.11   -6.20   -3.69   -0.45    3.70    8.91   15.11
+    40.0    0.00   -0.38   -1.32   -2.70   -4.35   -6.07   -7.69   -9.03   -9.97  -10.39  -10.25   -9.50   -8.16   -6.23   -3.69   -0.40    3.78    8.99   15.18
+    45.0    0.00   -0.39   -1.34   -2.72   -4.37   -6.08   -7.69   -9.02   -9.96  -10.39  -10.26   -9.53   -8.18   -6.25   -3.65   -0.33    3.89    9.10   15.25
+    50.0    0.00   -0.39   -1.35   -2.74   -4.38   -6.09   -7.68   -9.00   -9.94  -10.37  -10.24   -9.52   -8.19   -6.23   -3.62   -0.24    4.00    9.23   15.32
+    55.0    0.00   -0.40   -1.36   -2.75   -4.40   -6.10   -7.68   -8.98   -9.91  -10.33  -10.21   -9.49   -8.17   -6.19   -3.55   -0.16    4.14    9.35   15.39
+    60.0    0.00   -0.41   -1.38   -2.77   -4.41   -6.10   -7.66   -8.96   -9.86  -10.28  -10.15   -9.43   -8.11   -6.13   -3.48   -0.05    4.25    9.47   15.45
+    65.0    0.00   -0.41   -1.39   -2.78   -4.42   -6.10   -7.65   -8.92   -9.81  -10.21  -10.07   -9.36   -8.04   -6.07   -3.40    0.04    4.36    9.57   15.51
+    70.0    0.00   -0.42   -1.40   -2.79   -4.43   -6.10   -7.64   -8.90   -9.76  -10.14   -9.99   -9.27   -7.96   -6.00   -3.34    0.13    4.45    9.66   15.58
+    75.0    0.00   -0.42   -1.41   -2.80   -4.44   -6.11   -7.63   -8.87   -9.70  -10.06   -9.90   -9.18   -7.86   -5.90   -3.25    0.19    4.52    9.74   15.66
+    80.0    0.00   -0.43   -1.41   -2.81   -4.45   -6.11   -7.62   -8.83   -9.65   -9.98   -9.82   -9.09   -7.78   -5.83   -3.19    0.24    4.58    9.79   15.73
+    85.0    0.00   -0.43   -1.42   -2.81   -4.45   -6.11   -7.62   -8.81   -9.60   -9.92   -9.73   -9.00   -7.70   -5.77   -3.13    0.29    4.62    9.86   15.80
+    90.0    0.00   -0.42   -1.42   -2.82   -4.46   -6.11   -7.60   -8.79   -9.56   -9.87   -9.66   -8.93   -7.63   -5.71   -3.10    0.32    4.64    9.89   15.89
+    95.0    0.00   -0.43   -1.42   -2.82   -4.46   -6.10   -7.59   -8.77   -9.53   -9.82   -9.61   -8.88   -7.57   -5.67   -3.07    0.34    4.65    9.92   15.95
+   100.0    0.00   -0.43   -1.42   -2.81   -4.44   -6.10   -7.58   -8.74   -9.51   -9.79   -9.58   -8.83   -7.54   -5.63   -3.05    0.35    4.67    9.95   16.02
+   105.0    0.00   -0.42   -1.41   -2.81   -4.44   -6.07   -7.56   -8.71   -9.47   -9.76   -9.54   -8.80   -7.52   -5.61   -3.03    0.36    4.67    9.96   16.06
+   110.0    0.00   -0.43   -1.42   -2.81   -4.43   -6.07   -7.53   -8.70   -9.45   -9.74   -9.53   -8.78   -7.49   -5.60   -3.02    0.35    4.66    9.96   16.09
+   115.0    0.00   -0.42   -1.40   -2.80   -4.42   -6.05   -7.52   -8.69   -9.43   -9.73   -9.52   -8.77   -7.48   -5.60   -3.02    0.35    4.65    9.94   16.08
+   120.0    0.00   -0.42   -1.39   -2.78   -4.39   -6.03   -7.49   -8.66   -9.42   -9.72   -9.51   -8.77   -7.47   -5.58   -3.02    0.35    4.64    9.91   16.06
+   125.0    0.00   -0.41   -1.37   -2.77   -4.37   -6.00   -7.47   -8.63   -9.40   -9.70   -9.48   -8.75   -7.45   -5.56   -2.99    0.36    4.62    9.88   16.02
+   130.0    0.00   -0.41   -1.36   -2.75   -4.35   -5.98   -7.43   -8.61   -9.38   -9.68   -9.47   -8.73   -7.43   -5.53   -2.98    0.35    4.59    9.84   15.97
+   135.0    0.00   -0.40   -1.35   -2.72   -4.31   -5.94   -7.41   -8.58   -9.35   -9.65   -9.45   -8.71   -7.40   -5.50   -2.96    0.35    4.57    9.79   15.92
+   140.0    0.00   -0.40   -1.34   -2.69   -4.28   -5.90   -7.38   -8.56   -9.34   -9.63   -9.42   -8.67   -7.36   -5.48   -2.93    0.35    4.54    9.74   15.88
+   145.0    0.00   -0.38   -1.32   -2.67   -4.26   -5.87   -7.35   -8.52   -9.31   -9.61   -9.39   -8.63   -7.32   -5.42   -2.91    0.35    4.52    9.70   15.83
+   150.0    0.00   -0.37   -1.30   -2.65   -4.22   -5.85   -7.32   -8.51   -9.28   -9.59   -9.37   -8.60   -7.29   -5.39   -2.88    0.35    4.51    9.66   15.80
+   155.0    0.00   -0.37   -1.28   -2.62   -4.19   -5.81   -7.28   -8.48   -9.26   -9.57   -9.35   -8.57   -7.26   -5.37   -2.86    0.36    4.49    9.63   15.76
+   160.0    0.00   -0.35   -1.27   -2.59   -4.17   -5.78   -7.26   -8.45   -9.24   -9.55   -9.33   -8.56   -7.24   -5.35   -2.86    0.36    4.48    9.61   15.73
+   165.0    0.00   -0.34   -1.25   -2.57   -4.13   -5.74   -7.23   -8.43   -9.22   -9.54   -9.33   -8.56   -7.24   -5.34   -2.85    0.36    4.47    9.58   15.69
+   170.0    0.00   -0.34   -1.22   -2.54   -4.10   -5.72   -7.20   -8.41   -9.21   -9.54   -9.33   -8.57   -7.25   -5.36   -2.87    0.35    4.44    9.56   15.63
+   175.0    0.00   -0.32   -1.20   -2.51   -4.07   -5.69   -7.18   -8.39   -9.21   -9.55   -9.35   -8.59   -7.27   -5.39   -2.89    0.33    4.42    9.52   15.56
+   180.0    0.00   -0.31   -1.18   -2.49   -4.03   -5.65   -7.16   -8.38   -9.21   -9.55   -9.37   -8.62   -7.31   -5.43   -2.93    0.29    4.39    9.48   15.47
+   185.0    0.00   -0.30   -1.17   -2.45   -4.01   -5.62   -7.12   -8.37   -9.21   -9.57   -9.40   -8.65   -7.35   -5.49   -2.98    0.25    4.35    9.42   15.38
+   190.0    0.00   -0.29   -1.15   -2.43   -3.98   -5.60   -7.11   -8.37   -9.22   -9.58   -9.42   -8.70   -7.41   -5.54   -3.03    0.20    4.30    9.36   15.28
+   195.0    0.00   -0.29   -1.12   -2.40   -3.96   -5.58   -7.09   -8.36   -9.22   -9.59   -9.44   -8.74   -7.45   -5.58   -3.09    0.14    4.23    9.29   15.19
+   200.0    0.00   -0.27   -1.09   -2.38   -3.93   -5.56   -7.08   -8.35   -9.21   -9.60   -9.46   -8.75   -7.48   -5.63   -3.15    0.07    4.17    9.23   15.11
+   205.0    0.00   -0.26   -1.08   -2.35   -3.90   -5.54   -7.07   -8.34   -9.21   -9.60   -9.47   -8.76   -7.50   -5.67   -3.20   -0.31    4.11    9.19   15.08
+   210.0    0.00   -0.25   -1.06   -2.34   -3.89   -5.51   -7.05   -8.33   -9.21   -9.59   -9.45   -8.76   -7.50   -5.68   -3.25   -0.04    4.07    9.17   15.09
+   215.0    0.00   -0.24   -1.04   -2.31   -3.86   -5.50   -7.04   -8.31   -9.19   -9.57   -9.43   -8.74   -7.49   -5.69   -3.27   -0.07    4.05    9.19   15.15
+   220.0    0.00   -0.23   -1.03   -2.29   -3.84   -5.48   -7.02   -8.30   -9.17   -9.55   -9.40   -8.70   -7.47   -5.68   -3.28   -0.08    4.08    9.26   15.26
+   225.0    0.00   -0.22   -1.01   -2.27   -3.82   -5.46   -7.00   -8.28   -9.14   -9.52   -9.37   -8.67   -7.44   -5.66   -3.26   -0.06    4.12    9.36   15.41
+   230.0    0.00   -0.22   -0.99   -2.25   -3.79   -5.43   -6.97   -8.26   -9.12   -9.49   -9.32   -8.63   -7.40   -5.63   -3.22   -0.01    4.21    9.49   15.59
+   235.0    0.00   -0.21   -0.98   -2.24   -3.78   -5.41   -6.95   -8.23   -9.09   -9.46   -9.29   -8.60   -7.37   -5.60   -3.18    0.07    4.31    9.64   15.79
+   240.0    0.00   -0.20   -0.98   -2.22   -3.76   -5.39   -6.93   -8.21   -9.07   -9.43   -9.26   -8.56   -7.34   -5.56   -3.12    0.16    4.45    9.82   15.95
+   245.0    0.00   -0.20   -0.96   -2.20   -3.74   -5.38   -6.91   -8.18   -9.05   -9.42   -9.24   -8.54   -7.30   -5.50   -3.04    0.26    4.59    9.96   16.10
+   250.0    0.00   -0.19   -0.95   -2.18   -3.72   -5.35   -6.90   -8.17   -9.03   -9.40   -9.24   -8.53   -7.28   -5.46   -2.97    0.35    4.70   10.08   16.19
+   255.0    0.00   -0.18   -0.94   -2.18   -3.71   -5.34   -6.87   -8.15   -9.03   -9.40   -9.24   -8.52   -7.27   -5.43   -2.90    0.45    4.79   10.16   16.20
+   260.0    0.00   -0.19   -0.94   -2.16   -3.69   -5.32   -6.86   -8.14   -9.03   -9.41   -9.25   -8.52   -7.26   -5.39   -2.85    0.52    4.86   10.17   16.17
+   265.0    0.00   -0.19   -0.93   -2.16   -3.69   -5.31   -6.86   -8.14   -9.04   -9.42   -9.26   -8.53   -7.25   -5.37   -2.82    0.55    4.87   10.14   16.06
+   270.0    0.00   -0.18   -0.94   -2.16   -3.68   -5.32   -6.86   -8.15   -9.04   -9.44   -9.27   -8.55   -7.24   -5.35   -2.79    0.56    4.84   10.05   15.91
+   275.0    0.00   -0.18   -0.93   -2.16   -3.69   -5.32   -6.87   -8.17   -9.06   -9.46   -9.30   -8.56   -7.24   -5.34   -2.79    0.54    4.76    9.91   15.72
+   280.0    0.00   -0.19   -0.95   -2.17   -3.70   -5.34   -6.89   -8.19   -9.10   -9.50   -9.31   -8.56   -7.23   -5.31   -2.78    0.49    4.66    9.75   15.54
+   285.0    0.00   -0.18   -0.95   -2.17   -3.71   -5.35   -6.92   -8.22   -9.13   -9.51   -9.33   -8.56   -7.23   -5.32   -2.80    0.44    4.54    9.59   15.38
+   290.0    0.00   -0.19   -0.95   -2.20   -3.72   -5.38   -6.94   -8.25   -9.15   -9.54   -9.35   -8.56   -7.22   -5.32   -2.83    0.37    4.44    9.44   15.27
+   295.0    0.00   -0.19   -0.96   -2.21   -3.75   -5.40   -6.98   -8.29   -9.19   -9.56   -9.35   -8.56   -7.22   -5.33   -2.86    0.30    4.34    9.34   15.19
+   300.0    0.00   -0.20   -0.98   -2.23   -3.78   -5.43   -7.01   -8.31   -9.22   -9.57   -9.36   -8.56   -7.22   -5.35   -2.90    0.24    4.25    9.27   15.17
+   305.0    0.00   -0.20   -0.99   -2.25   -3.81   -5.47   -7.04   -8.35   -9.23   -9.59   -9.36   -8.56   -7.23   -5.37   -2.93    0.21    4.22    9.26   15.21
+   310.0    0.00   -0.20   -1.00   -2.27   -3.83   -5.51   -7.08   -8.39   -9.25   -9.59   -9.35   -8.56   -7.23   -5.39   -2.96    0.18    4.23    9.31   15.28
+   315.0    0.00   -0.22   -1.02   -2.29   -3.86   -5.54   -7.12   -8.40   -9.26   -9.60   -9.36   -8.56   -7.25   -5.41   -2.98    0.18    4.27    9.39   15.37
+   320.0    0.00   -0.22   -1.04   -2.31   -3.90   -5.58   -7.15   -8.43   -9.28   -9.60   -9.36   -8.57   -7.26   -5.43   -3.00    0.20    4.34    9.49   15.47
+   325.0    0.00   -0.23   -1.04   -2.33   -3.92   -5.61   -7.18   -8.45   -9.29   -9.60   -9.36   -8.58   -7.28   -5.46   -3.01    0.22    4.41    9.60   15.55
+   330.0    0.00   -0.25   -1.06   -2.37   -3.96   -5.64   -7.21   -8.48   -9.31   -9.61   -9.37   -8.61   -7.32   -5.50   -3.03    0.23    4.46    9.70   15.61
+   335.0    0.00   -0.25   -1.08   -2.39   -4.00   -5.67   -7.24   -8.50   -9.32   -9.63   -9.40   -8.63   -7.35   -5.52   -3.04    0.25    4.51    9.75   15.62
+   340.0    0.00   -0.26   -1.10   -2.41   -4.02   -5.72   -7.28   -8.53   -9.35   -9.65   -9.42   -8.66   -7.38   -5.55   -3.07    0.24    4.52    9.76   15.58
+   345.0    0.00   -0.27   -1.12   -2.44   -4.05   -5.75   -7.32   -8.57   -9.40   -9.70   -9.46   -8.68   -7.41   -5.58   -3.11    0.20    4.48    9.73   15.52
+   350.0    0.00   -0.28   -1.14   -2.47   -4.09   -5.80   -7.37   -8.62   -9.44   -9.74   -9.50   -8.73   -7.46   -5.63   -3.15    0.15    4.42    9.64   15.42
+   355.0    0.00   -0.29   -1.16   -2.51   -4.13   -5.83   -7.41   -8.67   -9.49   -9.80   -9.55   -8.80   -7.50   -5.68   -3.21    0.06    4.31    9.52   15.31
+   360.0    0.00   -0.30   -1.18   -2.53   -4.16   -5.86   -7.45   -8.72   -9.56   -9.87   -9.63   -8.85   -7.56   -5.74   -3.28   -0.03    4.18    9.36   15.20
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+      0.14     -0.32    117.54                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.15   -0.58   -1.22   -2.03   -2.93   -3.89   -4.88   -5.77   -6.43   -6.68   -6.40   -5.58   -4.32   -2.74   -0.87    1.41    4.44    8.49
+     0.0    0.00   -0.16   -0.60   -1.23   -2.00   -2.88   -3.82   -4.80   -5.70   -6.39   -6.69   -6.44   -5.65   -4.42   -2.91   -1.14    1.03    3.99    8.12
+     5.0    0.00   -0.16   -0.60   -1.23   -2.01   -2.88   -3.82   -4.80   -5.70   -6.39   -6.67   -6.44   -5.66   -4.44   -2.92   -1.16    1.03    4.02    8.18
+    10.0    0.00   -0.17   -0.60   -1.23   -2.01   -2.88   -3.82   -4.79   -5.69   -6.37   -6.66   -6.42   -5.65   -4.44   -2.93   -1.14    1.10    4.12    8.30
+    15.0    0.00   -0.17   -0.60   -1.24   -2.01   -2.89   -3.83   -4.79   -5.68   -6.36   -6.64   -6.41   -5.64   -4.44   -2.92   -1.10    1.18    4.27    8.48
+    20.0    0.00   -0.17   -0.60   -1.24   -2.02   -2.90   -3.84   -4.81   -5.69   -6.34   -6.62   -6.38   -5.63   -4.42   -2.89   -1.03    1.30    4.46    8.72
+    25.0    0.00   -0.17   -0.60   -1.24   -2.03   -2.91   -3.85   -4.81   -5.69   -6.34   -6.61   -6.36   -5.61   -4.40   -2.84   -0.96    1.45    4.66    8.98
+    30.0    0.00   -0.17   -0.61   -1.25   -2.04   -2.92   -3.87   -4.82   -5.69   -6.34   -6.58   -6.35   -5.57   -4.37   -2.80   -0.87    1.57    4.86    9.24
+    35.0    0.00   -0.17   -0.61   -1.25   -2.05   -2.94   -3.90   -4.85   -5.71   -6.33   -6.57   -6.31   -5.54   -4.32   -2.74   -0.80    1.69    5.03    9.46
+    40.0    0.00   -0.17   -0.60   -1.26   -2.07   -2.95   -3.92   -4.86   -5.72   -6.34   -6.56   -6.29   -5.51   -4.28   -2.70   -0.73    1.78    5.16    9.64
+    45.0    0.00   -0.17   -0.61   -1.27   -2.08   -2.98   -3.94   -4.89   -5.75   -6.35   -6.56   -6.28   -5.48   -4.26   -2.66   -0.70    1.82    5.21    9.72
+    50.0    0.00   -0.17   -0.61   -1.26   -2.09   -2.99   -3.96   -4.92   -5.76   -6.36   -6.57   -6.27   -5.47   -4.24   -2.65   -0.70    1.82    5.21    9.72
+    55.0    0.00   -0.17   -0.61   -1.27   -2.09   -3.01   -3.98   -4.94   -5.79   -6.39   -6.58   -6.27   -5.47   -4.23   -2.64   -0.71    1.77    5.13    9.63
+    60.0    0.00   -0.17   -0.61   -1.28   -2.11   -3.03   -4.00   -4.96   -5.82   -6.41   -6.60   -6.30   -5.48   -4.25   -2.68   -0.76    1.68    4.99    9.46
+    65.0    0.00   -0.17   -0.61   -1.29   -2.11   -3.03   -4.02   -4.99   -5.84   -6.45   -6.64   -6.33   -5.51   -4.28   -2.72   -0.83    1.55    4.81    9.21
+    70.0    0.00   -0.17   -0.61   -1.28   -2.11   -3.05   -4.03   -5.01   -5.87   -6.48   -6.68   -6.38   -5.56   -4.32   -2.78   -0.94    1.41    4.58    8.91
+    75.0    0.00   -0.17   -0.62   -1.29   -2.12   -3.05   -4.05   -5.03   -5.89   -6.51   -6.72   -6.43   -5.61   -4.38   -2.86   -1.04    1.25    4.33    8.59
+    80.0    0.00   -0.17   -0.62   -1.29   -2.12   -3.06   -4.05   -5.04   -5.91   -6.55   -6.76   -6.47   -5.67   -4.44   -2.93   -1.13    1.08    4.10    8.26
+    85.0    0.00   -0.17   -0.62   -1.28   -2.12   -3.06   -4.06   -5.04   -5.93   -6.57   -6.81   -6.53   -5.72   -4.50   -2.99   -1.23    0.94    3.88    7.96
+    90.0    0.00   -0.17   -0.61   -1.29   -2.12   -3.06   -4.05   -5.05   -5.94   -6.59   -6.83   -6.55   -5.76   -4.55   -3.04   -1.32    0.82    3.70    7.72
+    95.0    0.00   -0.17   -0.61   -1.29   -2.12   -3.05   -4.05   -5.04   -5.94   -6.61   -6.85   -6.59   -5.79   -4.58   -3.08   -1.36    0.74    3.57    7.52
+   100.0    0.00   -0.17   -0.61   -1.29   -2.13   -3.05   -4.05   -5.05   -5.95   -6.60   -6.86   -6.60   -5.80   -4.59   -3.10   -1.39    0.69    3.49    7.39
+   105.0    0.00   -0.16   -0.61   -1.29   -2.12   -3.05   -4.04   -5.03   -5.94   -6.60   -6.85   -6.58   -5.78   -4.57   -3.08   -1.37    0.69    3.46    7.34
+   110.0    0.00   -0.16   -0.61   -1.29   -2.12   -3.04   -4.03   -5.02   -5.93   -6.58   -6.84   -6.55   -5.76   -4.53   -3.03   -1.33    0.74    3.49    7.35
+   115.0    0.00   -0.16   -0.60   -1.28   -2.11   -3.04   -4.03   -5.02   -5.91   -6.56   -6.81   -6.53   -5.71   -4.47   -2.97   -1.26    0.81    3.57    7.41
+   120.0    0.00   -0.15   -0.60   -1.27   -2.11   -3.03   -4.02   -5.01   -5.90   -6.54   -6.77   -6.48   -5.65   -4.40   -2.88   -1.16    0.92    3.68    7.52
+   125.0    0.00   -0.15   -0.60   -1.27   -2.10   -3.02   -4.01   -5.00   -5.88   -6.52   -6.74   -6.43   -5.59   -4.33   -2.78   -1.05    1.03    3.81    7.63
+   130.0    0.00   -0.15   -0.59   -1.26   -2.10   -3.03   -4.00   -4.99   -5.86   -6.49   -6.71   -6.39   -5.52   -4.25   -2.69   -0.93    1.16    3.94    7.76
+   135.0    0.00   -0.15   -0.59   -1.26   -2.09   -3.02   -3.99   -4.97   -5.84   -6.47   -6.68   -6.34   -5.48   -4.18   -2.61   -0.83    1.29    4.07    7.88
+   140.0    0.00   -0.14   -0.58   -1.25   -2.08   -3.00   -3.98   -4.96   -5.83   -6.45   -6.66   -6.32   -5.44   -4.12   -2.53   -0.73    1.40    4.18    7.97
+   145.0    0.00   -0.14   -0.58   -1.25   -2.08   -2.99   -3.97   -4.95   -5.81   -6.44   -6.64   -6.29   -5.41   -4.09   -2.48   -0.67    1.48    4.27    8.04
+   150.0    0.00   -0.14   -0.58   -1.24   -2.06   -2.98   -3.96   -4.94   -5.80   -6.44   -6.63   -6.30   -5.41   -4.08   -2.47   -0.63    1.54    4.33    8.07
+   155.0    0.00   -0.14   -0.57   -1.23   -2.05   -2.97   -3.94   -4.92   -5.79   -6.42   -6.63   -6.30   -5.42   -4.10   -2.47   -0.62    1.55    4.36    8.08
+   160.0    0.00   -0.14   -0.57   -1.23   -2.04   -2.96   -3.92   -4.90   -5.78   -6.41   -6.64   -6.31   -5.44   -4.12   -2.49   -0.65    1.54    4.35    8.05
+   165.0    0.00   -0.13   -0.56   -1.22   -2.02   -2.95   -3.92   -4.89   -5.77   -6.40   -6.64   -6.33   -5.48   -4.17   -2.54   -0.68    1.52    4.34    8.02
+   170.0    0.00   -0.13   -0.56   -1.21   -2.02   -2.93   -3.91   -4.87   -5.76   -6.39   -6.64   -6.34   -5.51   -4.21   -2.60   -0.74    1.47    4.29    7.99
+   175.0    0.00   -0.13   -0.55   -1.19   -2.01   -2.91   -3.89   -4.86   -5.74   -6.38   -6.63   -6.35   -5.53   -4.25   -2.66   -0.80    1.43    4.27    7.97
+   180.0    0.00   -0.13   -0.55   -1.19   -2.00   -2.90   -3.87   -4.84   -5.71   -6.36   -6.62   -6.35   -5.55   -4.30   -2.70   -0.84    1.39    4.25    7.98
+   185.0    0.00   -0.13   -0.54   -1.18   -1.99   -2.89   -3.85   -4.81   -5.70   -6.35   -6.60   -6.35   -5.56   -4.31   -2.73   -0.87    1.38    4.27    8.02
+   190.0    0.00   -0.13   -0.54   -1.17   -1.97   -2.87   -3.84   -4.80   -5.67   -6.33   -6.58   -6.32   -5.55   -4.31   -2.74   -0.88    1.40    4.32    8.11
+   195.0    0.00   -0.12   -0.53   -1.16   -1.96   -2.86   -3.83   -4.79   -5.66   -6.30   -6.56   -6.30   -5.53   -4.30   -2.72   -0.84    1.46    4.42    8.24
+   200.0    0.00   -0.12   -0.53   -1.16   -1.95   -2.85   -3.81   -4.77   -5.65   -6.28   -6.53   -6.27   -5.50   -4.26   -2.68   -0.78    1.55    4.54    8.39
+   205.0    0.00   -0.12   -0.53   -1.16   -1.95   -2.85   -3.80   -4.76   -5.63   -6.26   -6.50   -6.23   -5.45   -4.21   -2.62   -0.69    1.67    4.70    8.58
+   210.0    0.00   -0.12   -0.53   -1.16   -1.94   -2.84   -3.80   -4.76   -5.61   -6.24   -6.48   -6.21   -5.41   -4.15   -2.52   -0.58    1.81    4.87    8.78
+   215.0    0.00   -0.12   -0.52   -1.16   -1.93   -2.83   -3.80   -4.75   -5.61   -6.23   -6.47   -6.18   -5.37   -4.09   -2.45   -0.47    1.94    5.04    8.98
+   220.0    0.00   -0.12   -0.52   -1.14   -1.93   -2.84   -3.80   -4.76   -5.62   -6.24   -6.47   -6.17   -5.34   -4.03   -2.37   -0.37    2.07    5.18    9.14
+   225.0    0.00   -0.12   -0.53   -1.15   -1.93   -2.83   -3.80   -4.77   -5.64   -6.26   -6.47   -6.17   -5.32   -3.99   -2.30   -0.29    2.16    5.28    9.28
+   230.0    0.00   -0.12   -0.53   -1.15   -1.94   -2.84   -3.81   -4.78   -5.66   -6.28   -6.49   -6.18   -5.31   -3.97   -2.27   -0.25    2.19    5.32    9.35
+   235.0    0.00   -0.12   -0.53   -1.15   -1.95   -2.85   -3.83   -4.80   -5.68   -6.31   -6.53   -6.20   -5.32   -3.97   -2.27   -0.26    2.18    5.30    9.35
+   240.0    0.00   -0.12   -0.53   -1.16   -1.96   -2.86   -3.84   -4.83   -5.72   -6.35   -6.56   -6.23   -5.35   -3.99   -2.30   -0.32    2.09    5.20    9.29
+   245.0    0.00   -0.12   -0.54   -1.17   -1.96   -2.87   -3.85   -4.85   -5.75   -6.39   -6.61   -6.27   -5.39   -4.04   -2.36   -0.41    1.96    5.04    9.17
+   250.0    0.00   -0.13   -0.54   -1.18   -1.96   -2.88   -3.87   -4.88   -5.79   -6.43   -6.65   -6.33   -5.44   -4.11   -2.46   -0.55    1.77    4.83    8.98
+   255.0    0.00   -0.13   -0.55   -1.18   -1.98   -2.89   -3.90   -4.90   -5.81   -6.48   -6.70   -6.38   -5.51   -4.20   -2.58   -0.72    1.56    4.59    8.77
+   260.0    0.00   -0.13   -0.55   -1.19   -1.99   -2.90   -3.91   -4.93   -5.84   -6.50   -6.74   -6.44   -5.58   -4.29   -2.71   -0.90    1.33    4.34    8.54
+   265.0    0.00   -0.13   -0.56   -1.19   -2.00   -2.92   -3.92   -4.93   -5.86   -6.54   -6.79   -6.49   -5.65   -4.38   -2.85   -1.07    1.13    4.12    8.34
+   270.0    0.00   -0.13   -0.56   -1.20   -2.01   -2.93   -3.92   -4.94   -5.88   -6.55   -6.82   -6.54   -5.71   -4.47   -2.95   -1.20    0.95    3.93    8.16
+   275.0    0.00   -0.14   -0.56   -1.21   -2.02   -2.93   -3.93   -4.95   -5.88   -6.58   -6.84   -6.58   -5.78   -4.56   -3.05   -1.31    0.84    3.81    8.02
+   280.0    0.00   -0.15   -0.57   -1.22   -2.03   -2.93   -3.93   -4.96   -5.88   -6.58   -6.87   -6.61   -5.84   -4.62   -3.12   -1.37    0.79    3.75    7.96
+   285.0    0.00   -0.15   -0.57   -1.22   -2.03   -2.94   -3.93   -4.95   -5.88   -6.58   -6.87   -6.64   -5.87   -4.65   -3.14   -1.38    0.79    3.78    7.97
+   290.0    0.00   -0.15   -0.57   -1.22   -2.02   -2.94   -3.93   -4.93   -5.87   -6.57   -6.89   -6.66   -5.89   -4.68   -3.14   -1.35    0.86    3.86    8.02
+   295.0    0.00   -0.15   -0.58   -1.22   -2.04   -2.94   -3.91   -4.91   -5.85   -6.57   -6.87   -6.67   -5.90   -4.68   -3.11   -1.28    0.98    4.00    8.15
+   300.0    0.00   -0.15   -0.58   -1.23   -2.03   -2.93   -3.91   -4.90   -5.83   -6.56   -6.87   -6.66   -5.89   -4.65   -3.06   -1.19    1.12    4.16    8.29
+   305.0    0.00   -0.15   -0.59   -1.24   -2.03   -2.93   -3.89   -4.89   -5.81   -6.54   -6.87   -6.65   -5.87   -4.61   -2.99   -1.07    1.27    4.34    8.45
+   310.0    0.00   -0.16   -0.59   -1.23   -2.04   -2.92   -3.88   -4.87   -5.80   -6.53   -6.84   -6.63   -5.85   -4.56   -2.92   -0.97    1.41    4.49    8.60
+   315.0    0.00   -0.16   -0.59   -1.24   -2.03   -2.91   -3.87   -4.86   -5.79   -6.51   -6.83   -6.61   -5.82   -4.51   -2.85   -0.87    1.50    4.60    8.70
+   320.0    0.00   -0.16   -0.59   -1.24   -2.02   -2.91   -3.86   -4.85   -5.77   -6.49   -6.81   -6.58   -5.78   -4.47   -2.79   -0.82    1.56    4.65    8.76
+   325.0    0.00   -0.16   -0.59   -1.23   -2.02   -2.90   -3.85   -4.83   -5.76   -6.48   -6.79   -6.56   -5.73   -4.42   -2.75   -0.79    1.58    4.65    8.75
+   330.0    0.00   -0.16   -0.60   -1.24   -2.02   -2.90   -3.85   -4.82   -5.76   -6.47   -6.77   -6.53   -5.71   -4.38   -2.73   -0.79    1.53    4.59    8.71
+   335.0    0.00   -0.16   -0.59   -1.23   -2.01   -2.89   -3.84   -4.82   -5.74   -6.44   -6.75   -6.50   -5.68   -4.37   -2.73   -0.83    1.46    4.49    8.60
+   340.0    0.00   -0.16   -0.59   -1.23   -2.01   -2.89   -3.83   -4.81   -5.74   -6.44   -6.74   -6.48   -5.65   -4.36   -2.75   -0.89    1.35    4.36    8.47
+   345.0    0.00   -0.16   -0.60   -1.23   -2.00   -2.88   -3.82   -4.82   -5.73   -6.44   -6.72   -6.46   -5.64   -4.37   -2.79   -0.97    1.25    4.21    8.33
+   350.0    0.00   -0.16   -0.60   -1.23   -2.00   -2.88   -3.82   -4.81   -5.73   -6.42   -6.71   -6.46   -5.64   -4.38   -2.83   -1.04    1.14    4.10    8.21
+   355.0    0.00   -0.16   -0.60   -1.23   -2.00   -2.88   -3.82   -4.80   -5.72   -6.41   -6.70   -6.44   -5.64   -4.40   -2.87   -1.10    1.07    4.01    8.13
+   360.0    0.00   -0.16   -0.60   -1.23   -2.00   -2.88   -3.82   -4.80   -5.70   -6.39   -6.69   -6.44   -5.65   -4.42   -2.91   -1.14    1.03    3.99    8.12
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+LEIAT504GG      SCIS                                        TYPE / SERIAL NO    
+FIELD               NGS                      2    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      1.48      1.33     87.35                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.23   -1.10   -2.33   -3.92   -5.52   -7.06   -8.39   -9.27   -9.61   -9.26   -8.49   -7.13   -5.25   -2.68    0.39    4.17
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.18      0.11    117.55                              NORTH / EAST / UP   
+   NOAZI    0.00    0.07   -0.31   -0.98   -1.69   -2.48   -3.49   -4.27   -4.91   -5.31   -5.35   -4.96   -4.13   -2.83   -1.23    0.59    2.85
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+LEIAT504GG      SCIT                                        TYPE / SERIAL NO    
+FIELD               NGS                      2    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      1.68      2.63     88.45                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.83   -1.80   -3.13   -4.62   -6.12   -7.56   -8.69   -9.47   -9.71   -9.46   -8.79   -7.63   -5.95   -3.68   -0.81    2.87
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.02      0.91    117.45                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.13   -0.41   -0.98   -1.59   -2.38   -3.19   -4.07   -4.71   -5.21   -5.25   -4.96   -4.03   -2.73   -1.03    1.09    3.85
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+LEIATX1230      NONE                                        TYPE / SERIAL NO    
+FIELD               NGS                      3    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.98      2.13     92.45                              NORTH / EAST / UP   
+   NOAZI    0.00    0.37    0.60    0.77    0.78    0.58    0.34    0.01   -0.27   -0.51   -0.76   -0.99   -1.13   -1.35   -1.48   -1.31   -0.83
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.02     -1.09     97.25                              NORTH / EAST / UP   
+   NOAZI    0.00   -1.73   -2.51   -2.78   -2.69   -2.48   -2.19   -2.07   -2.11   -2.41   -2.75   -3.16   -3.63   -4.23   -4.83   -5.41   -5.65
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+LEIATX1230+GNSS NONE                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH              10    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     4                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+Number of Calibrated Antennas GPS:      010                 COMMENT             
+Number of Individual Calibrations GPS:  020                 COMMENT             
+Number of Calibrated Antennas GLO:      010                 COMMENT             
+Number of Individual Calibrations GLO:  020                 COMMENT             
+# GLONASS PCV                                               COMMENT             
+#  derived from Delta PCV per 25.0 MHz                      COMMENT             
+#  for frequency channel number k=0                         COMMENT             
+   G01                                                      START OF FREQUENCY  
+     -1.28      1.28     87.18                              NORTH / EAST / UP   
+   NOAZI    0.00    0.04    0.11    0.13    0.01   -0.27   -0.65   -1.02   -1.23   -1.22   -1.03   -0.76   -0.52   -0.39   -0.28   -0.05    0.46    1.30    2.35
+     0.0    0.00    0.08    0.21    0.27    0.15   -0.19   -0.67   -1.13   -1.39   -1.33   -0.99   -0.50   -0.09    0.09    0.03   -0.11   -0.05    0.47    1.60
+     5.0    0.00    0.08    0.21    0.27    0.16   -0.17   -0.65   -1.11   -1.37   -1.32   -0.98   -0.50   -0.08    0.12    0.08   -0.05    0.00    0.47    1.49
+    10.0    0.00    0.08    0.21    0.27    0.16   -0.16   -0.63   -1.09   -1.35   -1.31   -0.98   -0.51   -0.09    0.13    0.12    0.04    0.10    0.52    1.41
+    15.0    0.00    0.08    0.20    0.27    0.17   -0.15   -0.61   -1.06   -1.32   -1.29   -0.99   -0.54   -0.12    0.11    0.16    0.13    0.22    0.62    1.38
+    20.0    0.00    0.07    0.20    0.27    0.17   -0.13   -0.58   -1.02   -1.29   -1.28   -1.00   -0.58   -0.18    0.08    0.17    0.21    0.36    0.75    1.41
+    25.0    0.00    0.07    0.19    0.26    0.17   -0.12   -0.55   -0.98   -1.24   -1.25   -1.00   -0.62   -0.25    0.01    0.15    0.26    0.48    0.90    1.47
+    30.0    0.00    0.07    0.19    0.25    0.16   -0.11   -0.53   -0.93   -1.19   -1.21   -1.01   -0.67   -0.34   -0.09    0.09    0.28    0.59    1.05    1.57
+    35.0    0.00    0.07    0.18    0.24    0.16   -0.11   -0.50   -0.89   -1.14   -1.17   -1.00   -0.72   -0.43   -0.21   -0.01    0.25    0.65    1.18    1.69
+    40.0    0.00    0.06    0.17    0.23    0.14   -0.11   -0.48   -0.85   -1.08   -1.12   -0.98   -0.75   -0.53   -0.34   -0.13    0.18    0.67    1.28    1.80
+    45.0    0.00    0.06    0.16    0.21    0.13   -0.12   -0.47   -0.81   -1.03   -1.07   -0.95   -0.77   -0.60   -0.46   -0.27    0.08    0.64    1.33    1.91
+    50.0    0.00    0.05    0.15    0.19    0.10   -0.14   -0.47   -0.79   -0.98   -1.01   -0.91   -0.77   -0.66   -0.57   -0.40   -0.05    0.56    1.33    1.98
+    55.0    0.00    0.05    0.13    0.17    0.08   -0.16   -0.48   -0.78   -0.95   -0.97   -0.87   -0.75   -0.68   -0.64   -0.52   -0.18    0.46    1.28    2.02
+    60.0    0.00    0.04    0.12    0.15    0.05   -0.19   -0.50   -0.78   -0.93   -0.93   -0.83   -0.72   -0.68   -0.68   -0.61   -0.30    0.34    1.21    2.03
+    65.0    0.00    0.04    0.11    0.12    0.01   -0.23   -0.53   -0.80   -0.93   -0.91   -0.79   -0.67   -0.64   -0.68   -0.65   -0.38    0.23    1.12    2.01
+    70.0    0.00    0.04    0.10    0.10   -0.02   -0.27   -0.57   -0.83   -0.95   -0.90   -0.76   -0.62   -0.59   -0.63   -0.64   -0.43    0.14    1.04    2.00
+    75.0    0.00    0.03    0.08    0.08   -0.05   -0.31   -0.62   -0.88   -0.99   -0.92   -0.74   -0.57   -0.51   -0.56   -0.59   -0.42    0.11    0.99    1.99
+    80.0    0.00    0.03    0.07    0.06   -0.08   -0.35   -0.67   -0.93   -1.04   -0.95   -0.74   -0.54   -0.44   -0.46   -0.50   -0.36    0.13    0.99    2.03
+    85.0    0.00    0.02    0.06    0.04   -0.11   -0.39   -0.72   -0.99   -1.10   -1.00   -0.77   -0.52   -0.38   -0.36   -0.38   -0.25    0.20    1.05    2.11
+    90.0    0.00    0.02    0.05    0.02   -0.13   -0.42   -0.77   -1.06   -1.17   -1.07   -0.81   -0.53   -0.33   -0.27   -0.26   -0.12    0.33    1.17    2.25
+    95.0    0.00    0.02    0.05    0.01   -0.15   -0.45   -0.81   -1.11   -1.24   -1.14   -0.88   -0.56   -0.32   -0.20   -0.14    0.03    0.49    1.34    2.45
+   100.0    0.00    0.02    0.04    0.01   -0.16   -0.47   -0.85   -1.17   -1.31   -1.23   -0.96   -0.62   -0.33   -0.16   -0.05    0.17    0.67    1.54    2.68
+   105.0    0.00    0.01    0.04    0.00   -0.17   -0.49   -0.87   -1.21   -1.38   -1.31   -1.05   -0.70   -0.38   -0.16    0.01    0.28    0.83    1.74    2.92
+   110.0    0.00    0.01    0.04    0.00   -0.17   -0.49   -0.89   -1.24   -1.43   -1.39   -1.15   -0.80   -0.46   -0.20    0.02    0.35    0.96    1.92    3.15
+   115.0    0.00    0.01    0.04    0.01   -0.17   -0.49   -0.90   -1.27   -1.48   -1.46   -1.24   -0.90   -0.56   -0.28   -0.02    0.36    1.03    2.05    3.33
+   120.0    0.00    0.01    0.04    0.01   -0.16   -0.48   -0.90   -1.28   -1.51   -1.52   -1.31   -0.99   -0.66   -0.38   -0.10    0.32    1.03    2.11    3.44
+   125.0    0.00    0.01    0.05    0.02   -0.14   -0.47   -0.89   -1.28   -1.53   -1.56   -1.37   -1.07   -0.76   -0.49   -0.21    0.21    0.96    2.08    3.45
+   130.0    0.00    0.01    0.05    0.03   -0.13   -0.45   -0.87   -1.28   -1.54   -1.58   -1.41   -1.13   -0.84   -0.60   -0.35    0.07    0.82    1.96    3.36
+   135.0    0.00    0.01    0.06    0.04   -0.11   -0.43   -0.86   -1.26   -1.53   -1.57   -1.42   -1.16   -0.90   -0.70   -0.49   -0.10    0.63    1.77    3.18
+   140.0    0.00    0.01    0.06    0.05   -0.09   -0.41   -0.83   -1.24   -1.51   -1.55   -1.41   -1.16   -0.93   -0.77   -0.61   -0.28    0.41    1.53    2.93
+   145.0    0.00    0.01    0.07    0.07   -0.07   -0.39   -0.81   -1.21   -1.47   -1.51   -1.37   -1.13   -0.94   -0.82   -0.72   -0.45    0.19    1.26    2.63
+   150.0    0.00    0.01    0.07    0.08   -0.06   -0.36   -0.78   -1.18   -1.43   -1.46   -1.31   -1.08   -0.91   -0.83   -0.79   -0.58   -0.01    1.01    2.32
+   155.0    0.00    0.01    0.08    0.09   -0.04   -0.34   -0.75   -1.14   -1.38   -1.39   -1.23   -1.01   -0.85   -0.81   -0.82   -0.67   -0.16    0.80    2.05
+   160.0    0.00    0.02    0.08    0.10   -0.02   -0.32   -0.72   -1.10   -1.32   -1.32   -1.15   -0.92   -0.77   -0.76   -0.80   -0.70   -0.24    0.65    1.84
+   165.0    0.00    0.02    0.09    0.11   -0.01   -0.30   -0.69   -1.06   -1.26   -1.24   -1.05   -0.82   -0.68   -0.69   -0.75   -0.67   -0.25    0.59    1.71
+   170.0    0.00    0.02    0.09    0.12    0.00   -0.28   -0.66   -1.01   -1.20   -1.17   -0.96   -0.72   -0.58   -0.59   -0.66   -0.59   -0.19    0.62    1.69
+   175.0    0.00    0.02    0.09    0.12    0.01   -0.26   -0.63   -0.97   -1.14   -1.09   -0.88   -0.63   -0.48   -0.48   -0.54   -0.46   -0.06    0.74    1.77
+   180.0    0.00    0.02    0.09    0.13    0.02   -0.25   -0.61   -0.93   -1.09   -1.02   -0.79   -0.54   -0.39   -0.37   -0.41   -0.31    0.11    0.91    1.92
+   185.0    0.00    0.02    0.10    0.13    0.02   -0.24   -0.59   -0.90   -1.04   -0.96   -0.72   -0.46   -0.30   -0.27   -0.28   -0.15    0.31    1.13    2.14
+   190.0    0.00    0.02    0.10    0.13    0.02   -0.23   -0.58   -0.87   -1.00   -0.91   -0.66   -0.39   -0.21   -0.17   -0.16    0.01    0.51    1.35    2.37
+   195.0    0.00    0.02    0.09    0.13    0.02   -0.23   -0.57   -0.85   -0.96   -0.86   -0.60   -0.32   -0.14   -0.09   -0.05    0.15    0.68    1.56    2.60
+   200.0    0.00    0.02    0.09    0.12    0.02   -0.23   -0.56   -0.84   -0.94   -0.82   -0.56   -0.27   -0.09   -0.02    0.02    0.24    0.81    1.72    2.78
+   205.0    0.00    0.02    0.09    0.12    0.01   -0.24   -0.56   -0.83   -0.92   -0.79   -0.52   -0.23   -0.05    0.01    0.06    0.30    0.88    1.82    2.91
+   210.0    0.00    0.02    0.09    0.11    0.01   -0.24   -0.56   -0.82   -0.90   -0.77   -0.49   -0.20   -0.03    0.03    0.07    0.30    0.89    1.85    2.96
+   215.0    0.00    0.02    0.09    0.11    0.00   -0.25   -0.56   -0.82   -0.89   -0.76   -0.48   -0.19   -0.03    0.01    0.03    0.25    0.84    1.82    2.95
+   220.0    0.00    0.02    0.08    0.10    0.00   -0.25   -0.56   -0.81   -0.89   -0.75   -0.47   -0.20   -0.05   -0.05   -0.05    0.16    0.75    1.73    2.88
+   225.0    0.00    0.02    0.08    0.10   -0.01   -0.25   -0.56   -0.81   -0.88   -0.75   -0.48   -0.23   -0.11   -0.13   -0.16    0.03    0.62    1.61    2.77
+   230.0    0.00    0.02    0.08    0.10   -0.01   -0.25   -0.56   -0.80   -0.88   -0.75   -0.51   -0.28   -0.19   -0.25   -0.30   -0.12    0.47    1.48    2.66
+   235.0    0.00    0.02    0.08    0.09   -0.01   -0.25   -0.55   -0.80   -0.88   -0.77   -0.55   -0.36   -0.30   -0.38   -0.46   -0.28    0.32    1.36    2.55
+   240.0    0.00    0.02    0.08    0.09   -0.01   -0.24   -0.54   -0.79   -0.89   -0.80   -0.61   -0.45   -0.43   -0.54   -0.62   -0.44    0.19    1.27    2.48
+   245.0    0.00    0.02    0.08    0.10    0.00   -0.23   -0.53   -0.79   -0.90   -0.84   -0.69   -0.57   -0.58   -0.70   -0.77   -0.57    0.09    1.21    2.46
+   250.0    0.00    0.02    0.08    0.10    0.00   -0.23   -0.52   -0.79   -0.92   -0.90   -0.78   -0.70   -0.72   -0.85   -0.91   -0.67    0.04    1.19    2.48
+   255.0    0.00    0.03    0.08    0.10    0.01   -0.22   -0.52   -0.80   -0.96   -0.97   -0.89   -0.83   -0.86   -0.97   -1.01   -0.73    0.02    1.22    2.55
+   260.0    0.00    0.03    0.09    0.11    0.02   -0.21   -0.52   -0.81   -1.00   -1.05   -1.00   -0.96   -0.99   -1.07   -1.06   -0.74    0.05    1.28    2.65
+   265.0    0.00    0.03    0.09    0.11    0.02   -0.20   -0.52   -0.84   -1.06   -1.14   -1.12   -1.08   -1.09   -1.12   -1.06   -0.70    0.12    1.37    2.76
+   270.0    0.00    0.03    0.10    0.12    0.03   -0.20   -0.54   -0.88   -1.13   -1.24   -1.23   -1.18   -1.15   -1.13   -1.01   -0.61    0.22    1.47    2.87
+   275.0    0.00    0.04    0.10    0.13    0.04   -0.20   -0.56   -0.92   -1.21   -1.34   -1.34   -1.26   -1.17   -1.09   -0.91   -0.48    0.35    1.57    2.96
+   280.0    0.00    0.04    0.11    0.13    0.04   -0.21   -0.58   -0.98   -1.29   -1.44   -1.43   -1.31   -1.16   -1.00   -0.77   -0.31    0.49    1.67    3.02
+   285.0    0.00    0.04    0.11    0.14    0.05   -0.22   -0.61   -1.03   -1.37   -1.53   -1.50   -1.33   -1.11   -0.88   -0.59   -0.13    0.63    1.74    3.04
+   290.0    0.00    0.04    0.12    0.15    0.05   -0.23   -0.64   -1.09   -1.44   -1.60   -1.55   -1.33   -1.04   -0.73   -0.41    0.05    0.76    1.79    3.03
+   295.0    0.00    0.05    0.13    0.16    0.05   -0.24   -0.67   -1.14   -1.51   -1.66   -1.58   -1.30   -0.94   -0.58   -0.22    0.21    0.86    1.81    2.99
+   300.0    0.00    0.05    0.13    0.17    0.05   -0.25   -0.70   -1.19   -1.56   -1.70   -1.58   -1.25   -0.84   -0.43   -0.06    0.35    0.93    1.80    2.92
+   305.0    0.00    0.05    0.14    0.17    0.06   -0.25   -0.72   -1.22   -1.59   -1.72   -1.56   -1.19   -0.73   -0.29    0.08    0.45    0.97    1.77    2.84
+   310.0    0.00    0.06    0.15    0.18    0.06   -0.26   -0.74   -1.24   -1.61   -1.71   -1.53   -1.12   -0.63   -0.18    0.17    0.50    0.96    1.71    2.76
+   315.0    0.00    0.06    0.16    0.19    0.07   -0.26   -0.75   -1.25   -1.61   -1.69   -1.47   -1.04   -0.53   -0.10    0.21    0.49    0.91    1.62    2.68
+   320.0    0.00    0.06    0.16    0.20    0.07   -0.26   -0.75   -1.25   -1.60   -1.65   -1.41   -0.96   -0.46   -0.05    0.22    0.44    0.81    1.51    2.59
+   325.0    0.00    0.07    0.17    0.21    0.08   -0.26   -0.75   -1.24   -1.57   -1.61   -1.34   -0.88   -0.39   -0.02    0.19    0.36    0.69    1.38    2.50
+   330.0    0.00    0.07    0.18    0.22    0.09   -0.25   -0.74   -1.23   -1.54   -1.55   -1.27   -0.80   -0.33   -0.01    0.14    0.25    0.54    1.23    2.41
+   335.0    0.00    0.07    0.18    0.23    0.10   -0.24   -0.73   -1.21   -1.51   -1.50   -1.20   -0.73   -0.28    0.00    0.09    0.13    0.38    1.07    2.30
+   340.0    0.00    0.07    0.19    0.24    0.11   -0.23   -0.72   -1.20   -1.48   -1.45   -1.13   -0.66   -0.23    0.00    0.03    0.02    0.22    0.91    2.17
+   345.0    0.00    0.08    0.20    0.25    0.12   -0.22   -0.71   -1.18   -1.45   -1.41   -1.08   -0.60   -0.19    0.01    0.00   -0.07    0.09    0.76    2.03
+   350.0    0.00    0.08    0.20    0.26    0.13   -0.21   -0.70   -1.16   -1.43   -1.38   -1.04   -0.56   -0.15    0.03   -0.02   -0.12    0.00    0.63    1.88
+   355.0    0.00    0.08    0.20    0.26    0.14   -0.20   -0.68   -1.15   -1.41   -1.35   -1.00   -0.52   -0.12    0.06    0.00   -0.13   -0.05    0.53    1.73
+   360.0    0.00    0.08    0.21    0.27    0.15   -0.19   -0.67   -1.13   -1.39   -1.33   -0.99   -0.50   -0.09    0.09    0.03   -0.11   -0.05    0.47    1.60
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.19     -1.23     84.72                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.02   -0.08   -0.14   -0.21   -0.29   -0.43   -0.65   -0.91   -1.11   -1.12   -0.85   -0.32    0.28    0.69    0.71    0.36   -0.02    0.10
+     0.0    0.00   -0.10   -0.21   -0.32   -0.41   -0.48   -0.56   -0.65   -0.71   -0.70   -0.54   -0.21    0.25    0.71    0.97    0.87    0.43    0.00    0.28
+     5.0    0.00   -0.10   -0.21   -0.32   -0.41   -0.49   -0.57   -0.66   -0.72   -0.71   -0.55   -0.21    0.26    0.73    0.98    0.87    0.42   -0.04    0.17
+    10.0    0.00   -0.10   -0.21   -0.32   -0.41   -0.49   -0.58   -0.67   -0.74   -0.73   -0.57   -0.22    0.26    0.74    1.00    0.89    0.42   -0.08    0.05
+    15.0    0.00   -0.10   -0.21   -0.32   -0.41   -0.50   -0.59   -0.69   -0.77   -0.76   -0.60   -0.25    0.25    0.75    1.02    0.91    0.43   -0.11   -0.08
+    20.0    0.00   -0.10   -0.21   -0.32   -0.42   -0.50   -0.60   -0.71   -0.80   -0.82   -0.66   -0.30    0.22    0.74    1.04    0.93    0.44   -0.14   -0.20
+    25.0    0.00   -0.10   -0.21   -0.32   -0.42   -0.51   -0.61   -0.74   -0.85   -0.88   -0.74   -0.38    0.16    0.71    1.04    0.95    0.46   -0.15   -0.31
+    30.0    0.00   -0.10   -0.21   -0.32   -0.42   -0.51   -0.62   -0.77   -0.91   -0.97   -0.84   -0.48    0.08    0.66    1.01    0.95    0.47   -0.16   -0.39
+    35.0    0.00   -0.09   -0.21   -0.32   -0.42   -0.51   -0.64   -0.80   -0.97   -1.06   -0.96   -0.61   -0.04    0.57    0.96    0.93    0.47   -0.16   -0.45
+    40.0    0.00   -0.09   -0.21   -0.32   -0.42   -0.52   -0.65   -0.84   -1.04   -1.17   -1.10   -0.76   -0.18    0.45    0.87    0.88    0.44   -0.17   -0.49
+    45.0    0.00   -0.09   -0.20   -0.32   -0.42   -0.52   -0.67   -0.87   -1.11   -1.28   -1.24   -0.92   -0.34    0.30    0.75    0.79    0.39   -0.19   -0.52
+    50.0    0.00   -0.08   -0.20   -0.31   -0.41   -0.52   -0.68   -0.91   -1.17   -1.38   -1.38   -1.08   -0.51    0.14    0.60    0.66    0.30   -0.24   -0.55
+    55.0    0.00   -0.08   -0.19   -0.30   -0.41   -0.52   -0.68   -0.93   -1.23   -1.47   -1.51   -1.24   -0.68   -0.03    0.44    0.51    0.18   -0.32   -0.59
+    60.0    0.00   -0.07   -0.18   -0.30   -0.40   -0.51   -0.68   -0.95   -1.28   -1.55   -1.62   -1.37   -0.84   -0.20    0.26    0.34    0.02   -0.43   -0.63
+    65.0    0.00   -0.07   -0.17   -0.28   -0.39   -0.50   -0.68   -0.95   -1.30   -1.61   -1.70   -1.48   -0.97   -0.35    0.10    0.16   -0.15   -0.56   -0.69
+    70.0    0.00   -0.06   -0.16   -0.27   -0.37   -0.48   -0.66   -0.95   -1.31   -1.64   -1.76   -1.56   -1.07   -0.47   -0.04   -0.01   -0.33   -0.71   -0.75
+    75.0    0.00   -0.05   -0.15   -0.25   -0.35   -0.46   -0.64   -0.93   -1.30   -1.64   -1.78   -1.60   -1.12   -0.54   -0.15   -0.14   -0.49   -0.85   -0.82
+    80.0    0.00   -0.04   -0.13   -0.23   -0.32   -0.43   -0.60   -0.89   -1.27   -1.62   -1.76   -1.59   -1.13   -0.57   -0.21   -0.24   -0.61   -0.97   -0.87
+    85.0    0.00   -0.04   -0.12   -0.21   -0.29   -0.39   -0.56   -0.84   -1.22   -1.57   -1.72   -1.56   -1.10   -0.56   -0.22   -0.28   -0.69   -1.05   -0.89
+    90.0    0.00   -0.03   -0.10   -0.19   -0.26   -0.35   -0.51   -0.79   -1.16   -1.51   -1.66   -1.49   -1.03   -0.49   -0.17   -0.26   -0.70   -1.08   -0.87
+    95.0    0.00   -0.02   -0.08   -0.16   -0.22   -0.30   -0.45   -0.73   -1.09   -1.43   -1.57   -1.39   -0.93   -0.38   -0.07   -0.18   -0.65   -1.05   -0.80
+   100.0    0.00   -0.01   -0.06   -0.13   -0.18   -0.25   -0.40   -0.66   -1.02   -1.34   -1.47   -1.28   -0.80   -0.25    0.08   -0.04   -0.53   -0.95   -0.67
+   105.0    0.00    0.00   -0.04   -0.10   -0.14   -0.20   -0.34   -0.60   -0.94   -1.26   -1.38   -1.17   -0.67   -0.09    0.26    0.14   -0.36   -0.80   -0.49
+   110.0    0.00    0.01   -0.02   -0.07   -0.10   -0.16   -0.29   -0.53   -0.87   -1.18   -1.28   -1.05   -0.52    0.08    0.45    0.35   -0.16   -0.60   -0.26
+   115.0    0.00    0.02    0.00   -0.03   -0.06   -0.11   -0.24   -0.48   -0.81   -1.10   -1.19   -0.94   -0.39    0.25    0.64    0.56    0.07   -0.37   -0.01
+   120.0    0.00    0.03    0.02    0.00   -0.02   -0.07   -0.19   -0.44   -0.76   -1.04   -1.11   -0.84   -0.27    0.39    0.82    0.77    0.30   -0.14    0.24
+   125.0    0.00    0.04    0.04    0.03    0.01   -0.03   -0.16   -0.40   -0.72   -0.99   -1.04   -0.76   -0.17    0.52    0.97    0.95    0.50    0.08    0.47
+   130.0    0.00    0.05    0.06    0.06    0.05    0.00   -0.13   -0.37   -0.69   -0.95   -0.99   -0.69   -0.08    0.61    1.09    1.09    0.67    0.26    0.67
+   135.0    0.00    0.05    0.08    0.09    0.08    0.03   -0.11   -0.35   -0.66   -0.91   -0.94   -0.63   -0.03    0.68    1.17    1.19    0.79    0.40    0.81
+   140.0    0.00    0.06    0.10    0.11    0.11    0.05   -0.09   -0.34   -0.65   -0.89   -0.91   -0.60    0.01    0.71    1.20    1.25    0.87    0.49    0.89
+   145.0    0.00    0.07    0.11    0.13    0.13    0.07   -0.08   -0.33   -0.63   -0.87   -0.88   -0.57    0.02    0.71    1.20    1.26    0.91    0.53    0.91
+   150.0    0.00    0.07    0.12    0.15    0.15    0.09   -0.07   -0.32   -0.62   -0.85   -0.86   -0.56    0.02    0.69    1.17    1.24    0.91    0.54    0.86
+   155.0    0.00    0.08    0.13    0.17    0.16    0.10   -0.06   -0.32   -0.62   -0.84   -0.84   -0.55    0.00    0.65    1.12    1.21    0.89    0.52    0.77
+   160.0    0.00    0.08    0.14    0.18    0.17    0.10   -0.06   -0.32   -0.61   -0.82   -0.83   -0.56   -0.03    0.60    1.06    1.16    0.87    0.49    0.65
+   165.0    0.00    0.08    0.15    0.18    0.18    0.10   -0.06   -0.32   -0.60   -0.82   -0.83   -0.57   -0.06    0.54    1.00    1.12    0.85    0.46    0.53
+   170.0    0.00    0.09    0.15    0.19    0.18    0.10   -0.07   -0.32   -0.60   -0.81   -0.83   -0.59   -0.10    0.48    0.94    1.08    0.84    0.44    0.41
+   175.0    0.00    0.09    0.15    0.18    0.17    0.09   -0.08   -0.32   -0.60   -0.81   -0.84   -0.61   -0.15    0.42    0.89    1.05    0.84    0.44    0.31
+   180.0    0.00    0.09    0.15    0.18    0.16    0.08   -0.09   -0.33   -0.61   -0.82   -0.85   -0.64   -0.19    0.37    0.84    1.03    0.86    0.46    0.25
+   185.0    0.00    0.08    0.14    0.17    0.15    0.06   -0.10   -0.35   -0.62   -0.83   -0.87   -0.67   -0.23    0.32    0.80    1.01    0.87    0.48    0.22
+   190.0    0.00    0.08    0.13    0.15    0.13    0.04   -0.13   -0.37   -0.64   -0.85   -0.89   -0.70   -0.27    0.28    0.76    0.99    0.87    0.50    0.21
+   195.0    0.00    0.08    0.12    0.13    0.10    0.01   -0.15   -0.39   -0.66   -0.87   -0.92   -0.73   -0.31    0.23    0.72    0.96    0.86    0.51    0.22
+   200.0    0.00    0.07    0.11    0.11    0.07   -0.02   -0.19   -0.42   -0.69   -0.90   -0.95   -0.77   -0.35    0.19    0.67    0.90    0.82    0.49    0.23
+   205.0    0.00    0.07    0.09    0.09    0.04   -0.06   -0.22   -0.46   -0.72   -0.94   -0.99   -0.80   -0.39    0.14    0.60    0.83    0.74    0.45    0.23
+   210.0    0.00    0.06    0.08    0.06    0.01   -0.10   -0.26   -0.50   -0.76   -0.98   -1.03   -0.84   -0.43    0.08    0.53    0.72    0.63    0.36    0.21
+   215.0    0.00    0.05    0.06    0.03   -0.03   -0.13   -0.30   -0.54   -0.81   -1.02   -1.07   -0.89   -0.48    0.02    0.43    0.60    0.48    0.25    0.17
+   220.0    0.00    0.04    0.04    0.00   -0.07   -0.17   -0.34   -0.58   -0.85   -1.07   -1.12   -0.94   -0.54   -0.05    0.33    0.46    0.32    0.11    0.10
+   225.0    0.00    0.04    0.02   -0.03   -0.10   -0.21   -0.38   -0.62   -0.89   -1.11   -1.17   -1.00   -0.60   -0.13    0.22    0.32    0.16   -0.04    0.01
+   230.0    0.00    0.03    0.00   -0.06   -0.13   -0.24   -0.41   -0.65   -0.93   -1.16   -1.23   -1.06   -0.67   -0.21    0.12    0.18    0.00   -0.19   -0.09
+   235.0    0.00    0.02   -0.02   -0.08   -0.16   -0.27   -0.44   -0.68   -0.97   -1.22   -1.30   -1.13   -0.75   -0.29    0.02    0.06   -0.14   -0.32   -0.19
+   240.0    0.00    0.01   -0.03   -0.11   -0.19   -0.30   -0.46   -0.71   -1.01   -1.27   -1.36   -1.20   -0.82   -0.37   -0.05   -0.03   -0.24   -0.42   -0.28
+   245.0    0.00    0.00   -0.05   -0.13   -0.22   -0.32   -0.48   -0.73   -1.04   -1.32   -1.43   -1.28   -0.89   -0.43   -0.11   -0.08   -0.29   -0.48   -0.34
+   250.0    0.00   -0.01   -0.07   -0.15   -0.24   -0.34   -0.50   -0.75   -1.08   -1.37   -1.49   -1.34   -0.95   -0.46   -0.13   -0.09   -0.31   -0.51   -0.38
+   255.0    0.00   -0.02   -0.09   -0.17   -0.25   -0.35   -0.51   -0.77   -1.10   -1.41   -1.55   -1.40   -0.99   -0.48   -0.11   -0.06   -0.28   -0.49   -0.38
+   260.0    0.00   -0.02   -0.10   -0.19   -0.27   -0.36   -0.52   -0.78   -1.13   -1.45   -1.59   -1.43   -1.00   -0.46   -0.06    0.00   -0.22   -0.45   -0.36
+   265.0    0.00   -0.03   -0.11   -0.20   -0.28   -0.37   -0.52   -0.79   -1.14   -1.47   -1.62   -1.45   -0.99   -0.41    0.02    0.10   -0.13   -0.39   -0.31
+   270.0    0.00   -0.04   -0.13   -0.22   -0.29   -0.37   -0.53   -0.79   -1.15   -1.49   -1.62   -1.44   -0.94   -0.33    0.13    0.22   -0.03   -0.32   -0.25
+   275.0    0.00   -0.05   -0.14   -0.23   -0.30   -0.38   -0.53   -0.80   -1.16   -1.49   -1.61   -1.39   -0.86   -0.21    0.26    0.35    0.06   -0.26   -0.19
+   280.0    0.00   -0.05   -0.15   -0.24   -0.31   -0.38   -0.53   -0.79   -1.15   -1.47   -1.57   -1.33   -0.76   -0.08    0.41    0.48    0.16   -0.21   -0.12
+   285.0    0.00   -0.06   -0.16   -0.25   -0.31   -0.39   -0.53   -0.79   -1.13   -1.43   -1.51   -1.23   -0.63    0.08    0.57    0.61    0.23   -0.18   -0.07
+   290.0    0.00   -0.07   -0.16   -0.25   -0.32   -0.39   -0.53   -0.78   -1.11   -1.39   -1.43   -1.12   -0.49    0.23    0.72    0.72    0.29   -0.16   -0.03
+   295.0    0.00   -0.07   -0.17   -0.26   -0.32   -0.39   -0.53   -0.77   -1.08   -1.33   -1.34   -0.99   -0.34    0.39    0.86    0.82    0.34   -0.16    0.01
+   300.0    0.00   -0.08   -0.18   -0.27   -0.33   -0.40   -0.53   -0.75   -1.04   -1.26   -1.24   -0.86   -0.20    0.53    0.98    0.90    0.37   -0.16    0.03
+   305.0    0.00   -0.08   -0.18   -0.27   -0.34   -0.40   -0.53   -0.74   -1.00   -1.18   -1.13   -0.74   -0.07    0.65    1.07    0.97    0.39   -0.17    0.06
+   310.0    0.00   -0.08   -0.19   -0.28   -0.34   -0.41   -0.52   -0.72   -0.95   -1.11   -1.03   -0.63    0.04    0.74    1.14    1.01    0.41   -0.16    0.10
+   315.0    0.00   -0.09   -0.19   -0.28   -0.35   -0.41   -0.52   -0.70   -0.91   -1.03   -0.93   -0.53    0.13    0.80    1.18    1.03    0.43   -0.15    0.15
+   320.0    0.00   -0.09   -0.20   -0.29   -0.36   -0.42   -0.52   -0.68   -0.86   -0.96   -0.85   -0.44    0.19    0.84    1.19    1.04    0.44   -0.12    0.20
+   325.0    0.00   -0.09   -0.20   -0.29   -0.36   -0.43   -0.52   -0.67   -0.82   -0.90   -0.77   -0.38    0.23    0.84    1.18    1.03    0.46   -0.08    0.27
+   330.0    0.00   -0.10   -0.20   -0.30   -0.37   -0.44   -0.53   -0.65   -0.79   -0.84   -0.71   -0.33    0.24    0.83    1.15    1.01    0.47   -0.04    0.33
+   335.0    0.00   -0.10   -0.21   -0.30   -0.38   -0.45   -0.53   -0.64   -0.76   -0.80   -0.66   -0.30    0.25    0.80    1.11    0.99    0.48    0.01    0.39
+   340.0    0.00   -0.10   -0.21   -0.30   -0.38   -0.45   -0.54   -0.64   -0.74   -0.76   -0.62   -0.27    0.24    0.77    1.07    0.96    0.48    0.04    0.43
+   345.0    0.00   -0.10   -0.21   -0.31   -0.39   -0.46   -0.54   -0.63   -0.72   -0.73   -0.59   -0.25    0.24    0.74    1.03    0.93    0.47    0.06    0.44
+   350.0    0.00   -0.10   -0.21   -0.31   -0.40   -0.47   -0.55   -0.63   -0.71   -0.71   -0.57   -0.24    0.24    0.72    0.99    0.90    0.46    0.05    0.42
+   355.0    0.00   -0.10   -0.21   -0.31   -0.40   -0.48   -0.55   -0.64   -0.70   -0.70   -0.55   -0.22    0.24    0.71    0.98    0.88    0.45    0.04    0.37
+   360.0    0.00   -0.10   -0.21   -0.32   -0.41   -0.48   -0.56   -0.65   -0.71   -0.70   -0.54   -0.21    0.25    0.71    0.97    0.87    0.43    0.00    0.28
+   G02                                                      END OF FREQUENCY    
+   R01                                                      START OF FREQUENCY  
+     -1.28      1.28     87.18                              NORTH / EAST / UP   
+   NOAZI    0.00    0.03    0.08    0.08   -0.06   -0.38   -0.80   -1.22   -1.52   -1.58   -1.43   -1.16   -0.85   -0.62   -0.45   -0.21    0.24    1.02    2.14
+     0.0    0.00    0.03    0.09    0.08   -0.08   -0.45   -0.95   -1.46   -1.82   -1.89   -1.67   -1.24   -0.80   -0.53   -0.52   -0.73   -0.87   -0.59    0.50
+     5.0    0.00    0.03    0.08    0.07   -0.08   -0.44   -0.93   -1.44   -1.80   -1.88   -1.68   -1.27   -0.83   -0.55   -0.54   -0.73   -0.89   -0.67    0.31
+    10.0    0.00    0.03    0.08    0.07   -0.10   -0.43   -0.92   -1.42   -1.79   -1.88   -1.69   -1.31   -0.88   -0.59   -0.55   -0.70   -0.85   -0.68    0.18
+    15.0    0.00    0.03    0.06    0.06   -0.09   -0.43   -0.90   -1.40   -1.76   -1.87   -1.71   -1.36   -0.94   -0.66   -0.56   -0.66   -0.77   -0.61    0.13
+    20.0    0.00    0.01    0.06    0.06   -0.09   -0.41   -0.88   -1.36   -1.74   -1.86   -1.73   -1.41   -1.02   -0.72   -0.58   -0.62   -0.66   -0.49    0.18
+    25.0    0.00    0.01    0.05    0.05   -0.10   -0.41   -0.86   -1.33   -1.70   -1.85   -1.74   -1.46   -1.10   -0.80   -0.64   -0.59   -0.55   -0.32    0.30
+    30.0    0.00    0.01    0.05    0.04   -0.11   -0.41   -0.85   -1.30   -1.66   -1.82   -1.75   -1.51   -1.20   -0.91   -0.71   -0.58   -0.44   -0.14    0.49
+    35.0    0.00    0.01    0.04    0.03   -0.11   -0.41   -0.83   -1.27   -1.63   -1.79   -1.74   -1.56   -1.28   -1.03   -0.82   -0.62   -0.37    0.03    0.70
+    40.0    0.00   -0.06    0.03    0.03   -0.13   -0.42   -0.83   -1.25   -1.59   -1.75   -1.72   -1.58   -1.37   -1.16   -0.94   -0.68   -0.33    0.18    0.91
+    45.0    0.00   -0.06    0.03    0.01   -0.14   -0.44   -0.83   -1.25   -1.56   -1.71   -1.69   -1.58   -1.42   -1.26   -1.07   -0.77   -0.34    0.29    1.10
+    50.0    0.00   -0.01    0.02   -0.19   -0.16   -0.46   -0.85   -1.25   -1.53   -1.67   -1.65   -1.57   -1.46   -1.35   -1.18   -0.89   -0.40    0.33    1.23
+    55.0    0.00   -0.05    0.01   -0.02   -0.18   -0.48   -0.87   -1.26   -1.52   -1.64   -1.61   -1.53   -1.46   -1.39   -1.27   -1.00   -0.46    0.31    1.29
+    60.0    0.00   -0.01   -0.12   -0.03   -0.19   -0.51   -0.90   -1.28   -1.53   -1.61   -1.57   -1.49   -1.42   -1.40   -1.34   -1.10   -0.56    0.27    1.30
+    65.0    0.00   -0.01   -0.11   -0.05   -0.22   -0.55   -0.93   -1.31   -1.54   -1.60   -1.53   -1.41   -1.36   -1.37   -1.35   -1.16   -0.65    0.20    1.26
+    70.0    0.00   -0.01   -0.10   -0.06   -0.24   -0.58   -0.97   -1.35   -1.58   -1.60   -1.50   -1.35   -1.29   -1.30   -1.32   -1.17   -0.71    0.14    1.21
+    75.0    0.00   -0.01   -0.02   -0.07   -0.26   -0.61   -1.02   -1.40   -1.63   -1.63   -1.48   -1.29   -1.19   -1.20   -1.24   -1.14   -0.71    0.11    1.18
+    80.0    0.00   -0.01   -0.02   -0.07   -0.27   -0.63   -1.06   -1.45   -1.68   -1.67   -1.48   -1.25   -1.10   -1.08   -1.13   -1.05   -0.66    0.14    1.21
+    85.0    0.00   -0.02   -0.01   -0.08   -0.29   -0.66   -1.10   -1.50   -1.74   -1.72   -1.51   -1.23   -1.03   -0.97   -0.99   -0.91   -0.54    0.25    1.31
+    90.0    0.00   -0.02   -0.02   -0.09   -0.29   -0.66   -1.13   -1.56   -1.80   -1.79   -1.55   -1.24   -0.98   -0.87   -0.84   -0.75   -0.36    0.44    1.52
+    95.0    0.00   -0.01   -0.01   -0.09   -0.30   -0.67   -1.15   -1.60   -1.86   -1.85   -1.62   -1.27   -0.96   -0.78   -0.70   -0.57   -0.15    0.69    1.81
+   100.0    0.00   -0.01   -0.02   -0.08   -0.29   -0.67   -1.17   -1.64   -1.92   -1.93   -1.70   -1.33   -0.97   -0.73   -0.60   -0.39    0.10    0.99    2.17
+   105.0    0.00   -0.02   -0.01   -0.07   -0.29   -0.68   -1.17   -1.66   -1.96   -2.00   -1.78   -1.40   -1.02   -0.72   -0.52   -0.24    0.32    1.29    2.56
+   110.0    0.00   -0.02   -0.01   -0.07   -0.28   -0.66   -1.17   -1.65   -1.99   -2.06   -1.87   -1.50   -1.09   -0.76   -0.49   -0.14    0.52    1.58    2.95
+   115.0    0.00   -0.01   -0.04   -0.05   -0.27   -0.65   -1.16   -1.66   -2.01   -2.11   -1.94   -1.58   -1.18   -0.82   -0.51   -0.09    0.66    1.82    3.28
+   120.0    0.00   -0.01   -0.04   -0.05   -0.26   -0.63   -1.13   -1.64   -2.01   -2.14   -1.98   -1.65   -1.27   -0.90   -0.56   -0.07    0.73    1.97    3.53
+   125.0    0.00   -0.01    0.01   -0.04   -0.23   -0.61   -1.10   -1.61   -2.00   -2.14   -2.01   -1.71   -1.33   -0.98   -0.62   -0.13    0.73    2.03    3.64
+   130.0    0.00   -0.01    0.01   -0.03   -0.22   -0.58   -1.07   -1.59   -1.98   -2.12   -2.02   -1.73   -1.37   -1.05   -0.71   -0.21    0.66    1.98    3.62
+   135.0    0.00   -0.01    0.02   -0.02   -0.20   -0.56   -1.05   -1.54   -1.92   -2.07   -1.97   -1.71   -1.39   -1.09   -0.79   -0.30    0.53    1.84    3.47
+   140.0    0.00   -0.01    0.02   -0.01   -0.19   -0.54   -1.00   -1.50   -1.86   -2.00   -1.91   -1.66   -1.36   -1.09   -0.82   -0.40    0.39    1.65    3.22
+   145.0    0.00   -0.01    0.04    0.01   -0.17   -0.51   -0.97   -1.44   -1.79   -1.91   -1.82   -1.57   -1.30   -1.06   -0.85   -0.47    0.24    1.41    2.91
+   150.0    0.00   -0.01    0.04    0.02   -0.16   -0.48   -0.93   -1.38   -1.72   -1.81   -1.70   -1.45   -1.20   -0.99   -0.81   -0.51    0.13    1.19    2.58
+   155.0    0.00    0.01    0.05    0.03   -0.14   -0.46   -0.89   -1.32   -1.62   -1.70   -1.57   -1.32   -1.06   -0.87   -0.73   -0.49    0.06    1.02    2.28
+   160.0    0.00    0.02    0.05    0.04   -0.11   -0.43   -0.85   -1.26   -1.53   -1.59   -1.44   -1.16   -0.90   -0.73   -0.62   -0.41    0.06    0.92    2.07
+   165.0    0.00    0.02    0.07    0.06   -0.10   -0.40   -0.80   -1.20   -1.44   -1.46   -1.29   -1.01   -0.73   -0.57   -0.46   -0.29    0.13    0.91    1.97
+   170.0    0.00    0.03    0.07    0.07   -0.07   -0.37   -0.75   -1.12   -1.35   -1.36   -1.15   -0.85   -0.57   -0.39   -0.29   -0.12    0.27    0.99    1.99
+   175.0    0.00    0.03    0.08    0.08   -0.04   -0.32   -0.69   -1.06   -1.26   -1.24   -1.04   -0.72   -0.42   -0.21   -0.09    0.08    0.47    1.18    2.13
+   180.0    0.00    0.03    0.09    0.11   -0.02   -0.29   -0.65   -0.98   -1.18   -1.14   -0.91   -0.58   -0.27   -0.05    0.10    0.30    0.69    1.40    2.37
+   185.0    0.00    0.04    0.11    0.12   -0.02   -0.25   -0.60   -0.92   -1.09   -1.05   -0.81   -0.47   -0.14    0.09    0.27    0.49    0.93    1.67    2.68
+   190.0    0.00    0.04    0.11    0.13    0.02   -0.22   -0.56   -0.86   -1.02   -0.97   -0.71   -0.37   -0.02    0.22    0.41    0.67    1.15    1.93    3.01
+   195.0    0.00    0.04    0.11    0.15    0.04   -0.19   -0.52   -0.81   -0.95   -0.89   -0.63   -0.27    0.07    0.32    0.53    0.81    1.32    2.17    3.31
+   200.0    0.00    0.05    0.12    0.16    0.07   -0.16   -0.47   -0.78   -0.91   -0.83   -0.56   -0.20    0.14    0.39    0.59    0.88    1.44    2.34    3.56
+   205.0    0.00    0.05    0.13    0.17    0.08   -0.14   -0.45   -0.73   -0.87   -0.77   -0.50   -0.13    0.19    0.42    0.61    0.91    1.48    2.44    3.73
+   210.0    0.00    0.05    0.14    0.18    0.11   -0.12   -0.43   -0.71   -0.83   -0.74   -0.45   -0.08    0.23    0.44    0.60    0.86    1.43    2.43    3.80
+   215.0    0.00    0.06    0.15    0.20    0.12   -0.11   -0.42   -0.69   -0.80   -0.71   -0.42   -0.05    0.25    0.42    0.53    0.76    1.34    2.37    3.79
+   220.0    0.00    0.06    0.15    0.20    0.13   -0.10   -0.41   -0.68   -0.80   -0.69   -0.38   -0.04    0.23    0.35    0.42    0.63    1.19    2.24    3.71
+   225.0    0.00    0.06    0.17    0.21    0.13   -0.09   -0.41   -0.68   -0.79   -0.69   -0.38   -0.06    0.18    0.26    0.28    0.44    1.00    2.08    3.57
+   230.0    0.00    0.06    0.17    0.22    0.14   -0.09   -0.41   -0.68   -0.81   -0.69   -0.41   -0.10    0.11    0.13    0.10    0.24    0.80    1.91    3.43
+   235.0    0.00    0.07    0.18    0.22    0.14   -0.10   -0.41   -0.70   -0.82   -0.72   -0.45   -0.18   -0.01   -0.02   -0.09    0.04    0.61    1.74    3.28
+   240.0    0.00    0.07    0.18    0.22    0.14   -0.09   -0.42   -0.72   -0.85   -0.76   -0.52   -0.27   -0.15   -0.20   -0.28   -0.16    0.43    1.61    3.16
+   245.0    0.00    0.07    0.18    0.23    0.14   -0.10   -0.43   -0.74   -0.88   -0.82   -0.62   -0.41   -0.32   -0.39   -0.47   -0.33    0.29    1.51    3.10
+   250.0    0.00    0.07    0.18    0.23    0.14   -0.11   -0.45   -0.76   -0.93   -0.90   -0.74   -0.57   -0.50   -0.57   -0.65   -0.47    0.21    1.45    3.05
+   255.0    0.00    0.08    0.18    0.22    0.14   -0.11   -0.47   -0.79   -0.99   -1.00   -0.87   -0.73   -0.69   -0.75   -0.80   -0.56    0.15    1.43    3.04
+   260.0    0.00    0.07    0.18    0.23    0.14   -0.12   -0.48   -0.82   -1.05   -1.10   -1.02   -0.92   -0.87   -0.90   -0.89   -0.61    0.15    1.44    3.04
+   265.0    0.00    0.07    0.18    0.22    0.13   -0.13   -0.50   -0.87   -1.13   -1.23   -1.18   -1.09   -1.04   -1.01   -0.94   -0.60    0.18    1.47    3.04
+   270.0    0.00    0.07    0.17    0.22    0.12   -0.15   -0.53   -0.92   -1.22   -1.36   -1.34   -1.25   -1.16   -1.09   -0.95   -0.55    0.25    1.50    3.01
+   275.0    0.00    0.08    0.17    0.22    0.11   -0.16   -0.56   -0.97   -1.32   -1.48   -1.49   -1.40   -1.26   -1.12   -0.89   -0.45    0.35    1.53    2.95
+   280.0    0.00    0.07    0.17    0.20    0.10   -0.18   -0.59   -1.04   -1.41   -1.60   -1.62   -1.50   -1.32   -1.09   -0.79   -0.31    0.46    1.55    2.86
+   285.0    0.00    0.07    0.16    0.19    0.09   -0.20   -0.63   -1.09   -1.50   -1.72   -1.73   -1.59   -1.33   -1.03   -0.65   -0.15    0.57    1.55    2.74
+   290.0    0.00    0.06    0.16    0.19    0.07   -0.23   -0.67   -1.16   -1.58   -1.81   -1.83   -1.64   -1.32   -0.92   -0.50    0.02    0.66    1.53    2.60
+   295.0    0.00    0.07    0.16    0.18    0.06   -0.25   -0.71   -1.23   -1.66   -1.89   -1.90   -1.66   -1.27   -0.81   -0.33    0.16    0.74    1.50    2.46
+   300.0    0.00    0.06    0.15    0.17    0.04   -0.28   -0.75   -1.29   -1.73   -1.97   -1.93   -1.64   -1.20   -0.69   -0.19    0.29    0.79    1.45    2.32
+   305.0    0.00    0.06    0.14    0.16    0.03   -0.30   -0.79   -1.34   -1.78   -2.02   -1.94   -1.63   -1.12   -0.57   -0.06    0.38    0.81    1.38    2.20
+   310.0    0.00    0.06    0.14    0.15    0.01   -0.33   -0.84   -1.38   -1.83   -2.03   -1.94   -1.58   -1.04   -0.47    0.03    0.41    0.78    1.30    2.11
+   315.0    0.00    0.06    0.14    0.14   -0.07   -0.36   -0.87   -1.42   -1.85   -2.04   -1.92   -1.53   -0.97   -0.40    0.06    0.39    0.71    1.18    2.04
+   320.0    0.00    0.05    0.13    0.13   -0.04   -0.38   -0.90   -1.44   -1.88   -2.03   -1.89   -1.47   -0.91   -0.36    0.05    0.32    0.58    1.04    1.96
+   325.0    0.00    0.06    0.12    0.11   -0.05   -0.41   -0.92   -1.46   -1.88   -2.02   -1.85   -1.41   -0.86   -0.34    0.01    0.21    0.41    0.88    1.89
+   330.0    0.00    0.05    0.12    0.11   -0.06   -0.42   -0.93   -1.47   -1.88   -2.00   -1.81   -1.35   -0.81   -0.35   -0.07    0.06    0.21    0.69    1.79
+   335.0    0.00    0.05    0.11    0.10   -0.07   -0.43   -0.95   -1.49   -1.87   -1.98   -1.76   -1.31   -0.79   -0.37   -0.17   -0.11   -0.01    0.47    1.65
+   340.0    0.00    0.04    0.10    0.10   -0.07   -0.44   -0.95   -1.49   -1.86   -1.95   -1.73   -1.28   -0.77   -0.40   -0.28   -0.29   -0.25    0.23    1.47
+   345.0    0.00    0.05    0.10    0.09   -0.08   -0.44   -0.97   -1.49   -1.85   -1.93   -1.70   -1.25   -0.76   -0.45   -0.36   -0.45   -0.46   -0.01    1.24
+   350.0    0.00    0.04    0.09    0.09   -0.08   -0.44   -0.97   -1.48   -1.84   -1.92   -1.68   -1.24   -0.77   -0.48   -0.45   -0.58   -0.64   -0.23    1.00
+   355.0    0.00    0.04    0.08    0.08   -0.08   -0.44   -0.95   -1.47   -1.84   -1.90   -1.66   -1.23   -0.78   -0.50   -0.49   -0.67   -0.78   -0.44    0.73
+   360.0    0.00    0.03    0.09    0.08   -0.08   -0.45   -0.95   -1.46   -1.82   -1.89   -1.67   -1.24   -0.80   -0.53   -0.52   -0.73   -0.87   -0.59    0.50
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+      0.19     -1.23     84.72                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.01   -0.04   -0.04   -0.02    0.02    0.00   -0.11   -0.30   -0.51   -0.58   -0.41    0.02    0.56    0.96    1.03    0.74    0.38    0.42
+     0.0    0.00   -0.13   -0.26   -0.36   -0.40   -0.34   -0.25   -0.18   -0.14   -0.12   -0.05    0.13    0.42    0.75    0.94    0.85    0.45    0.07    0.36
+     5.0    0.00   -0.14   -0.28   -0.38   -0.40   -0.36   -0.28   -0.22   -0.19   -0.17   -0.10    0.08    0.39    0.73    0.91    0.80    0.38   -0.03    0.22
+    10.0    0.00   -0.14   -0.28   -0.39   -0.42   -0.38   -0.32   -0.27   -0.25   -0.24   -0.18    0.03    0.36    0.71    0.90    0.78    0.34   -0.10    0.11
+    15.0    0.00   -0.14   -0.29   -0.39   -0.42   -0.40   -0.35   -0.32   -0.33   -0.33   -0.27   -0.05    0.31    0.70    0.91    0.78    0.33   -0.14    0.02
+    20.0    0.00   -0.15   -0.29   -0.40   -0.44   -0.41   -0.37   -0.37   -0.41   -0.45   -0.39   -0.15    0.24    0.67    0.92    0.80    0.34   -0.15   -0.04
+    25.0    0.00   -0.15   -0.30   -0.40   -0.44   -0.42   -0.40   -0.43   -0.50   -0.56   -0.52   -0.28    0.16    0.64    0.93    0.84    0.39   -0.11   -0.05
+    30.0    0.00   -0.15   -0.30   -0.39   -0.43   -0.42   -0.42   -0.48   -0.59   -0.70   -0.66   -0.41    0.06    0.59    0.92    0.88    0.46   -0.04    0.39
+    35.0    0.00   -0.15   -0.30   -0.39   -0.43   -0.41   -0.44   -0.52   -0.68   -0.81   -0.81   -0.56   -0.06    0.50    0.89    0.90    0.52    0.06    0.07
+    40.0    0.00   -0.15   -0.29   -0.39   -0.42   -0.42   -0.44   -0.56   -0.75   -0.93   -0.95   -0.71   -0.19    0.41    0.84    0.90    0.57    0.15    0.16
+    45.0    0.00   -0.15   -0.28   -0.38   -0.41   -0.40   -0.45   -0.58   -0.81   -1.03   -1.07   -0.85   -0.33    0.29    0.76    0.88    0.61    0.24    0.23
+    50.0    0.00   -0.14   -0.27   -0.36   -0.38   -0.39   -0.44   -0.60   -0.85   -1.10   -1.18   -0.97   -0.47    0.16    0.65    0.81    0.60    0.29    0.28
+    55.0    0.00   -0.14   -0.26   -0.34   -0.37   -0.37   -0.42   -0.59   -0.87   -1.15   -1.26   -1.08   -0.58    0.04    0.54    0.72    0.56    0.29    0.28
+    60.0    0.00   -0.13   -0.25   -0.33   -0.34   -0.33   -0.39   -0.58   -0.88   -1.17   -1.31   -1.14   -0.69   -0.08    0.41    0.60    0.45    0.23    0.25
+    65.0    0.00   -0.12   -0.23   -0.29   -0.32   -0.31   -0.37   -0.55   -0.87   -1.18   -1.32   -1.18   -0.75   -0.17    0.30    0.45    0.33    0.14    0.16
+    70.0    0.00   -0.11   -0.22   -0.28   -0.27   -0.27   -0.33   -0.53   -0.84   -1.16   -1.32   -1.19   -0.78   -0.23    0.20    0.32    0.18    0.71    0.06
+    75.0    0.00   -0.10   -0.20   -0.24   -0.24   -0.23   -0.29   -0.49   -0.80   -1.12   -1.29   -1.17   -0.77   -0.25    0.13    0.22    0.04   -0.14   -0.05
+    80.0    0.00   -0.09   -0.17   -0.22   -0.20   -0.19   -0.24   -0.43   -0.75   -1.07   -1.22   -1.10   -0.72   -0.24    0.10    0.14   -0.07   -0.26   -0.14
+    85.0    0.00   -0.08   -0.16   -0.19   -0.16   -0.14   -0.19   -0.37   -0.68   -0.99   -1.15   -1.03   -0.65   -0.19    0.10    0.10   -0.15   -0.34   -0.18
+    90.0    0.00   -0.07   -0.14   -0.15   -0.12   -0.09   -0.13   -0.31   -0.62   -0.92   -1.06   -0.93   -0.55   -0.11    0.17    0.13   -0.16   -0.36   -0.16
+    95.0    0.00   -0.06   -0.11   -0.12   -0.07   -0.04   -0.07   -0.25   -0.54   -0.83   -0.97   -0.82   -0.44    0.01    0.27    0.21   -0.10   -0.31   -0.05
+   100.0    0.00   -0.05   -0.08   -0.09   -0.03    0.02   -0.01   -0.17   -0.47   -0.74   -0.87   -0.72   -0.32    0.13    0.41    0.35    0.04   -0.17    0.14
+   105.0    0.00   -0.04   -0.06   -0.05    0.01    0.08    0.06   -0.11   -0.38   -0.66   -0.78   -0.63   -0.21    0.28    0.58    0.53    0.22    0.02    0.39
+   110.0    0.00   -0.03   -0.03   -0.02    0.06    0.13    0.11   -0.03   -0.31   -0.59   -0.70   -0.53   -0.09    0.42    0.76    0.74    0.44    0.26    0.67
+   115.0    0.00   -0.01   -0.01    0.02    0.10    0.18    0.17    0.03   -0.24   -0.50   -0.62   -0.44    0.01    0.56    0.93    0.96    0.70    0.53    0.97
+   120.0    0.00   -0.03    0.01    0.06    0.14    0.22    0.23    0.08   -0.18   -0.44   -0.55   -0.36    0.10    0.68    1.10    1.17    0.94    0.77    1.23
+   125.0    0.00    0.02    0.03    0.09    0.17    0.26    0.27    0.14   -0.12   -0.39   -0.49   -0.30    0.18    0.78    1.24    1.35    1.16    0.99    1.41
+   130.0    0.00    0.03    0.05    0.12    0.21    0.30    0.30    0.18   -0.08   -0.34   -0.45   -0.25    0.24    0.86    1.36    1.50    1.33    1.13    1.53
+   135.0    0.00    0.04    0.08    0.15    0.24    0.33    0.33    0.21   -0.03   -0.29   -0.40   -0.20    0.29    0.93    1.45    1.61    1.43    1.21    1.54
+   140.0    0.00    0.05    0.10    0.17    0.27    0.34    0.35    0.23   -0.02   -0.26   -0.36   -0.17    0.33    0.97    1.49    1.68    1.48    1.21    1.46
+   145.0    0.00    0.06    0.12    0.19    0.28    0.36    0.36    0.24    0.63   -0.24   -0.33   -0.14    0.35    0.99    1.52    1.69    1.48    1.15    1.31
+   150.0    0.00    0.06    0.13    0.21    0.30    0.38    0.37    0.25    0.01   -0.22   -0.31   -0.12    0.37    0.99    1.52    1.68    1.45    1.05    1.08
+   155.0    0.00    0.08    0.14    0.23    0.31    0.39    0.37    0.24    0.01   -0.22   -0.30   -0.10    0.36    0.98    1.49    1.65    1.38    0.92    0.84
+   160.0    0.00    0.09    0.16    0.25    0.32    0.39    0.37    0.23    0.01   -0.21   -0.29   -0.11    0.35    0.95    1.45    1.60    1.31    0.79    0.60
+   165.0    0.00    0.09    0.18    0.25    0.34    0.39    0.37    0.22    0.01   -0.22   -0.30   -0.12    0.32    0.91    1.40    1.55    1.25    0.69    0.40
+   170.0    0.00    0.10    0.19    0.27    0.35    0.39    0.36    0.22    0.60   -0.22   -0.31   -0.15    0.29    0.86    1.34    1.50    1.20    0.62    0.26
+   175.0    0.00    0.11    0.19    0.28    0.35    0.39    0.36    0.23    0.60   -0.23   -0.32   -0.18    0.23    0.80    1.29    1.45    1.17    0.59    0.18
+   180.0    0.00    0.12    0.20    0.28    0.35    0.40    0.36    0.23   -0.01   -0.24   -0.34   -0.21    0.19    0.74    1.23    1.41    1.16    0.59    0.18
+   185.0    0.00    0.11    0.21    0.29    0.36    0.40    0.37    0.22    0.62   -0.24   -0.36   -0.25    0.13    0.67    1.17    1.37    1.16    0.62    0.23
+   190.0    0.00    0.12    0.21    0.29    0.37    0.40    0.37    0.23    0.64   -0.25   -0.38   -0.29    0.08    0.61    1.11    1.33    1.13    0.65    0.30
+   195.0    0.00    0.12    0.21    0.28    0.36    0.40    0.37    0.24    0.66   -0.25   -0.40   -0.32    0.03    0.55    1.04    1.28    1.11    0.68    0.39
+   200.0    0.00    0.12    0.21    0.29    0.35    0.40    0.36    0.24   -0.01   -0.26   -0.42   -0.35   -0.02    0.49    0.98    1.19    1.06    0.67    0.45
+   205.0    0.00    0.13    0.21    0.29    0.35    0.38    0.36    0.22   -0.01   -0.28   -0.44   -0.37   -0.05    0.44    0.89    1.11    0.97    0.63    0.49
+   210.0    0.00    0.12    0.21    0.27    0.34    0.37    0.35    0.21   -0.02   -0.29   -0.45   -0.38   -0.08    0.39    0.82    0.99    0.85    0.54    0.47
+   215.0    0.00    0.12    0.20    0.27    0.32    0.36    0.33    0.19   -0.05   -0.31   -0.47   -0.40   -0.10    0.35    0.73    0.87    0.70    0.43    0.43
+   220.0    0.00    0.11    0.19    0.25    0.30    0.34    0.30    0.16   -0.08   -0.33   -0.48   -0.42   -0.12    0.30    0.65    0.75    0.55    0.29    0.33
+   225.0    0.00    0.11    0.18    0.23    0.28    0.31    0.27    0.12   -0.10   -0.35   -0.50   -0.44   -0.14    0.26    0.57    0.63    0.40    0.14    0.22
+   230.0    0.00    0.11    0.17    0.22    0.27    0.28    0.24    0.09   -0.14   -0.39   -0.53   -0.46   -0.17    0.22    0.50    0.52    0.27    0.01    0.09
+   235.0    0.00    0.10    0.16    0.21    0.24    0.26    0.21    0.06   -0.18   -0.43   -0.57   -0.50   -0.21    0.18    0.44    0.44    0.17   -0.09   -0.01
+   240.0    0.00    0.10    0.15    0.18    0.22    0.23    0.18    0.03   -0.22   -0.48   -0.61   -0.53   -0.24    0.13    0.40    0.38    0.12   -0.14   -0.10
+   245.0    0.00    0.09    0.14    0.17    0.19    0.20    0.15    0.73   -0.25   -0.51   -0.66   -0.58   -0.29    0.10    0.37    0.38    0.13   -0.13   -0.13
+   250.0    0.00    0.08    0.12    0.15    0.17    0.18    0.13   -0.03   -0.29   -0.55   -0.70   -0.62   -0.32    0.08    0.37    0.40    0.18   -0.09   -0.14
+   255.0    0.00    0.07    0.11    0.13    0.16    0.17    0.11   -0.05   -0.30   -0.58   -0.74   -0.67   -0.36    0.06    0.41    0.47    0.26    0.49   -0.10
+   260.0    0.00    0.07    0.09    0.11    0.13    0.15    0.10   -0.06   -0.33   -0.60   -0.77   -0.69   -0.37    0.08    0.46    0.56    0.38    0.11   -0.05
+   265.0    0.00    0.06    0.08    0.10    0.12    0.13    0.09   -0.07   -0.33   -0.62   -0.80   -0.72   -0.38    0.11    0.54    0.68    0.53    0.22    0.01
+   270.0    0.00    0.05    0.06    0.07    0.10    0.12    0.07   -0.07   -0.34   -0.64   -0.80   -0.72   -0.35    0.18    0.64    0.82    0.66    0.33    0.07
+   275.0    0.00    0.03    0.04    0.05    0.08    0.11    0.07   -0.09   -0.35   -0.64   -0.80   -0.69   -0.29    0.28    0.76    0.95    0.77    0.40    0.10
+   280.0    0.00    0.03    0.03    0.03    0.06    0.09    0.06   -0.08   -0.35   -0.63   -0.78   -0.66   -0.22    0.38    0.90    1.08    0.87    0.43    0.12
+   285.0    0.00    0.01    0.16    0.01    0.04    0.07    0.04   -0.10   -0.34   -0.61   -0.74   -0.59   -0.11    0.52    1.05    1.21    0.93    0.43    0.12
+   290.0    0.00    0.07   -0.01   -0.01    0.01    0.05    0.03   -0.10   -0.34   -0.60   -0.70   -0.51    0.49    0.66    1.19    1.31    0.97    0.41    0.10
+   295.0    0.00    0.07   -0.03   -0.04   -0.01    0.03    0.01   -0.11   -0.34   -0.57   -0.65   -0.42    0.12    0.80    1.32    1.40    0.99    0.36    0.08
+   300.0    0.00   -0.02   -0.05   -0.06   -0.04    0.40   -0.01   -0.12   -0.33   -0.54   -0.58   -0.32    0.24    0.93    1.44    1.47    0.98    0.30    0.07
+   305.0    0.00   -0.03   -0.07   -0.09   -0.08   -0.03   -0.04   -0.14   -0.32   -0.50   -0.50   -0.22    0.35    1.04    1.52    1.51    0.96    0.25    0.07
+   310.0    0.00   -0.04   -0.09   -0.12   -0.10   -0.06   -0.06   -0.15   -0.30   -0.45   -0.43   -0.14    0.44    1.12    1.57    1.53    0.95    0.23    0.12
+   315.0    0.00   -0.05   -0.11   -0.15   -0.14   -0.09   -0.08   -0.14   -0.28   -0.40   -0.36   -0.06    0.52    1.17    1.59    1.52    0.94    0.22    0.20
+   320.0    0.00   -0.06   -0.14   -0.18   -0.18   -0.13   -0.10   -0.14   -0.24   -0.34   -0.29    0.02    0.56    1.19    1.58    1.50    0.92    0.24    0.29
+   325.0    0.00   -0.07   -0.16   -0.20   -0.20   -0.16   -0.12   -0.14   -0.21   -0.28   -0.22    0.07    0.58    1.16    1.53    1.44    0.90    0.27    0.40
+   330.0    0.00   -0.09   -0.17   -0.23   -0.23   -0.19   -0.14   -0.13   -0.18   -0.22   -0.16    0.11    0.57    1.12    1.45    1.38    0.87    0.31    0.50
+   335.0    0.00   -0.10   -0.20   -0.26   -0.27   -0.22   -0.15   -0.12   -0.15   -0.17   -0.11    0.13    0.57    1.04    1.36    1.30    0.83    0.33    0.59
+   340.0    0.00   -0.11   -0.21   -0.28   -0.29   -0.24   -0.17   -0.12   -0.12   -0.13   -0.06    0.16    0.53    0.98    1.26    1.20    0.77    0.33    0.64
+   345.0    0.00   -0.11   -0.22   -0.31   -0.32   -0.27   -0.19   -0.11   -0.10   -0.10   -0.04    0.16    0.50    0.90    1.16    1.10    0.70    0.31    0.62
+   350.0    0.00   -0.11   -0.24   -0.32   -0.35   -0.29   -0.21   -0.13   -0.10   -0.08   -0.03    0.16    0.48    0.84    1.06    1.00    0.62    0.24    0.57
+   355.0    0.00   -0.12   -0.25   -0.34   -0.37   -0.32   -0.23   -0.15   -0.10   -0.09   -0.03    0.16    0.45    0.78    1.00    0.92    0.54    0.17    0.49
+   360.0    0.00   -0.13   -0.26   -0.36   -0.40   -0.34   -0.25   -0.18   -0.14   -0.12   -0.05    0.13    0.42    0.75    0.94    0.85    0.45    0.07    0.36
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+LEIATX1230GG    NONE                                        TYPE / SERIAL NO    
+FIELD               NGS                      3    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.98      2.13     92.45                              NORTH / EAST / UP   
+   NOAZI    0.00    0.37    0.60    0.77    0.78    0.58    0.34    0.01   -0.27   -0.51   -0.76   -0.99   -1.13   -1.35   -1.48   -1.31   -0.83
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.02     -1.09     97.25                              NORTH / EAST / UP   
+   NOAZI    0.00   -1.73   -2.51   -2.78   -2.69   -2.48   -2.19   -2.07   -2.11   -2.41   -2.75   -3.16   -3.63   -4.23   -4.83   -5.41   -5.65
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+LEIAX1202       NONE                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH              13    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+Number of Calibrated Antennas GPS:      013                 COMMENT             
+Number of Individual Calibrations GPS:  026                 COMMENT             
+   G01                                                      START OF FREQUENCY  
+      1.41     -0.14     64.27                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.03   -0.10   -0.19   -0.28   -0.36   -0.43   -0.51   -0.62   -0.75   -0.89   -0.98   -0.95   -0.77   -0.41    0.06    0.55    0.95    1.17
+     0.0    0.00   -0.04   -0.13   -0.25   -0.37   -0.48   -0.57   -0.66   -0.74   -0.81   -0.86   -0.85   -0.76   -0.58   -0.27    0.14    0.61    1.05    1.32
+     5.0    0.00   -0.04   -0.13   -0.25   -0.37   -0.48   -0.58   -0.67   -0.76   -0.84   -0.89   -0.88   -0.78   -0.57   -0.24    0.18    0.66    1.08    1.31
+    10.0    0.00   -0.04   -0.13   -0.25   -0.37   -0.48   -0.58   -0.68   -0.78   -0.87   -0.92   -0.91   -0.80   -0.56   -0.21    0.24    0.72    1.13    1.33
+    15.0    0.00   -0.04   -0.13   -0.24   -0.36   -0.48   -0.59   -0.70   -0.80   -0.90   -0.95   -0.94   -0.82   -0.56   -0.18    0.29    0.78    1.19    1.37
+    20.0    0.00   -0.04   -0.13   -0.24   -0.36   -0.48   -0.59   -0.70   -0.82   -0.92   -0.99   -0.98   -0.85   -0.57   -0.16    0.34    0.86    1.27    1.45
+    25.0    0.00   -0.04   -0.12   -0.24   -0.36   -0.47   -0.59   -0.71   -0.83   -0.95   -1.03   -1.02   -0.89   -0.60   -0.16    0.38    0.93    1.36    1.55
+    30.0    0.00   -0.04   -0.12   -0.23   -0.35   -0.47   -0.58   -0.70   -0.84   -0.97   -1.06   -1.07   -0.94   -0.64   -0.17    0.41    0.99    1.45    1.66
+    35.0    0.00   -0.04   -0.12   -0.23   -0.35   -0.46   -0.57   -0.70   -0.83   -0.98   -1.09   -1.13   -1.01   -0.70   -0.21    0.41    1.04    1.54    1.77
+    40.0    0.00   -0.03   -0.12   -0.22   -0.34   -0.45   -0.56   -0.68   -0.82   -0.98   -1.12   -1.18   -1.09   -0.79   -0.27    0.39    1.07    1.60    1.86
+    45.0    0.00   -0.03   -0.11   -0.22   -0.33   -0.44   -0.54   -0.66   -0.81   -0.98   -1.15   -1.24   -1.17   -0.88   -0.35    0.34    1.05    1.62    1.91
+    50.0    0.00   -0.03   -0.11   -0.21   -0.32   -0.42   -0.52   -0.63   -0.78   -0.97   -1.17   -1.29   -1.25   -0.98   -0.45    0.26    1.00    1.60    1.91
+    55.0    0.00   -0.03   -0.11   -0.21   -0.31   -0.40   -0.49   -0.60   -0.75   -0.96   -1.18   -1.33   -1.33   -1.08   -0.56    0.15    0.91    1.52    1.84
+    60.0    0.00   -0.03   -0.10   -0.20   -0.30   -0.38   -0.46   -0.57   -0.72   -0.94   -1.18   -1.36   -1.39   -1.17   -0.67    0.03    0.78    1.39    1.70
+    65.0    0.00   -0.03   -0.10   -0.19   -0.29   -0.36   -0.44   -0.53   -0.69   -0.91   -1.16   -1.37   -1.43   -1.24   -0.78   -0.10    0.62    1.21    1.51
+    70.0    0.00   -0.03   -0.10   -0.19   -0.28   -0.35   -0.41   -0.50   -0.65   -0.87   -1.14   -1.37   -1.45   -1.30   -0.87   -0.24    0.45    0.99    1.27
+    75.0    0.00   -0.03   -0.09   -0.18   -0.26   -0.33   -0.39   -0.47   -0.61   -0.84   -1.11   -1.35   -1.45   -1.33   -0.94   -0.36    0.27    0.77    1.02
+    80.0    0.00   -0.02   -0.09   -0.18   -0.25   -0.31   -0.37   -0.44   -0.58   -0.79   -1.06   -1.31   -1.43   -1.33   -0.99   -0.46    0.11    0.56    0.77
+    85.0    0.00   -0.02   -0.09   -0.17   -0.25   -0.30   -0.35   -0.41   -0.54   -0.75   -1.01   -1.26   -1.39   -1.31   -1.01   -0.53   -0.02    0.38    0.56
+    90.0    0.00   -0.02   -0.08   -0.17   -0.24   -0.29   -0.33   -0.39   -0.51   -0.71   -0.96   -1.20   -1.33   -1.27   -1.00   -0.56   -0.10    0.26    0.41
+    95.0    0.00   -0.02   -0.08   -0.16   -0.23   -0.28   -0.31   -0.36   -0.47   -0.66   -0.90   -1.13   -1.25   -1.20   -0.95   -0.55   -0.12    0.21    0.33
+   100.0    0.00   -0.02   -0.08   -0.16   -0.23   -0.27   -0.30   -0.34   -0.44   -0.62   -0.84   -1.05   -1.17   -1.12   -0.88   -0.49   -0.07    0.24    0.34
+   105.0    0.00   -0.02   -0.08   -0.15   -0.22   -0.26   -0.29   -0.33   -0.41   -0.57   -0.78   -0.98   -1.09   -1.03   -0.78   -0.39    0.03    0.34    0.44
+   110.0    0.00   -0.02   -0.08   -0.15   -0.22   -0.26   -0.28   -0.31   -0.39   -0.53   -0.72   -0.91   -1.00   -0.93   -0.67   -0.26    0.18    0.51    0.61
+   115.0    0.00   -0.02   -0.08   -0.15   -0.22   -0.26   -0.27   -0.30   -0.37   -0.50   -0.67   -0.84   -0.92   -0.83   -0.54   -0.11    0.36    0.72    0.84
+   120.0    0.00   -0.02   -0.08   -0.15   -0.22   -0.25   -0.27   -0.29   -0.35   -0.47   -0.63   -0.78   -0.84   -0.73   -0.42    0.04    0.55    0.96    1.09
+   125.0    0.00   -0.02   -0.08   -0.15   -0.22   -0.26   -0.27   -0.28   -0.33   -0.44   -0.60   -0.73   -0.77   -0.64   -0.31    0.19    0.74    1.18    1.34
+   130.0    0.00   -0.02   -0.08   -0.15   -0.22   -0.26   -0.27   -0.28   -0.33   -0.43   -0.57   -0.70   -0.72   -0.57   -0.21    0.32    0.90    1.38    1.57
+   135.0    0.00   -0.02   -0.08   -0.16   -0.22   -0.26   -0.28   -0.29   -0.33   -0.43   -0.56   -0.67   -0.68   -0.52   -0.14    0.41    1.02    1.52    1.74
+   140.0    0.00   -0.02   -0.08   -0.16   -0.23   -0.27   -0.29   -0.30   -0.34   -0.43   -0.56   -0.66   -0.66   -0.49   -0.10    0.46    1.08    1.60    1.86
+   145.0    0.00   -0.02   -0.08   -0.16   -0.24   -0.28   -0.30   -0.31   -0.36   -0.45   -0.57   -0.67   -0.66   -0.48   -0.09    0.46    1.08    1.61    1.90
+   150.0    0.00   -0.02   -0.08   -0.17   -0.24   -0.29   -0.31   -0.33   -0.38   -0.47   -0.59   -0.69   -0.68   -0.50   -0.12    0.43    1.03    1.55    1.86
+   155.0    0.00   -0.02   -0.08   -0.17   -0.25   -0.30   -0.33   -0.35   -0.41   -0.50   -0.63   -0.73   -0.72   -0.54   -0.17    0.35    0.93    1.44    1.77
+   160.0    0.00   -0.02   -0.08   -0.17   -0.26   -0.31   -0.35   -0.38   -0.44   -0.54   -0.67   -0.77   -0.77   -0.60   -0.24    0.25    0.80    1.28    1.62
+   165.0    0.00   -0.02   -0.09   -0.18   -0.26   -0.33   -0.37   -0.40   -0.47   -0.58   -0.72   -0.83   -0.83   -0.67   -0.33    0.14    0.65    1.11    1.45
+   170.0    0.00   -0.02   -0.09   -0.18   -0.27   -0.34   -0.38   -0.43   -0.51   -0.63   -0.77   -0.89   -0.90   -0.75   -0.42    0.03    0.51    0.93    1.27
+   175.0    0.00   -0.02   -0.09   -0.18   -0.28   -0.35   -0.40   -0.45   -0.54   -0.67   -0.82   -0.95   -0.97   -0.82   -0.51   -0.08    0.38    0.77    1.09
+   180.0    0.00   -0.02   -0.09   -0.19   -0.28   -0.36   -0.41   -0.47   -0.56   -0.70   -0.87   -1.00   -1.03   -0.89   -0.58   -0.16    0.28    0.65    0.94
+   185.0    0.00   -0.02   -0.09   -0.19   -0.29   -0.36   -0.42   -0.49   -0.59   -0.73   -0.91   -1.05   -1.08   -0.94   -0.63   -0.21    0.21    0.56    0.82
+   190.0    0.00   -0.02   -0.09   -0.19   -0.29   -0.37   -0.43   -0.50   -0.60   -0.75   -0.93   -1.07   -1.10   -0.97   -0.66   -0.24    0.18    0.51    0.74
+   195.0    0.00   -0.02   -0.09   -0.19   -0.29   -0.37   -0.44   -0.51   -0.61   -0.76   -0.94   -1.08   -1.12   -0.97   -0.66   -0.24    0.19    0.51    0.70
+   200.0    0.00   -0.02   -0.09   -0.19   -0.29   -0.37   -0.44   -0.51   -0.61   -0.77   -0.94   -1.08   -1.11   -0.96   -0.64   -0.21    0.22    0.53    0.70
+   205.0    0.00   -0.02   -0.09   -0.19   -0.29   -0.37   -0.44   -0.51   -0.61   -0.76   -0.93   -1.06   -1.08   -0.93   -0.61   -0.17    0.27    0.58    0.73
+   210.0    0.00   -0.02   -0.09   -0.19   -0.29   -0.37   -0.44   -0.51   -0.61   -0.75   -0.91   -1.03   -1.05   -0.89   -0.56   -0.11    0.33    0.65    0.78
+   215.0    0.00   -0.02   -0.09   -0.18   -0.28   -0.36   -0.43   -0.50   -0.60   -0.73   -0.89   -1.00   -1.01   -0.85   -0.52   -0.06    0.39    0.72    0.85
+   220.0    0.00   -0.02   -0.09   -0.18   -0.27   -0.35   -0.42   -0.49   -0.59   -0.72   -0.86   -0.97   -0.97   -0.81   -0.48   -0.02    0.44    0.79    0.92
+   225.0    0.00   -0.02   -0.09   -0.17   -0.26   -0.34   -0.41   -0.48   -0.58   -0.71   -0.85   -0.95   -0.95   -0.79   -0.45    0.00    0.48    0.84    0.99
+   230.0    0.00   -0.02   -0.08   -0.17   -0.25   -0.33   -0.39   -0.47   -0.57   -0.70   -0.84   -0.94   -0.94   -0.78   -0.44    0.02    0.50    0.89    1.05
+   235.0    0.00   -0.02   -0.08   -0.16   -0.24   -0.31   -0.38   -0.45   -0.56   -0.70   -0.84   -0.95   -0.94   -0.78   -0.45    0.01    0.51    0.92    1.11
+   240.0    0.00   -0.02   -0.08   -0.16   -0.23   -0.30   -0.36   -0.44   -0.56   -0.70   -0.86   -0.97   -0.97   -0.81   -0.47    0.00    0.51    0.93    1.15
+   245.0    0.00   -0.02   -0.08   -0.15   -0.22   -0.28   -0.35   -0.43   -0.56   -0.72   -0.88   -1.00   -1.00   -0.84   -0.50   -0.03    0.49    0.93    1.16
+   250.0    0.00   -0.02   -0.08   -0.15   -0.21   -0.27   -0.33   -0.43   -0.56   -0.74   -0.92   -1.04   -1.04   -0.88   -0.53   -0.05    0.48    0.92    1.16
+   255.0    0.00   -0.02   -0.08   -0.14   -0.21   -0.26   -0.33   -0.43   -0.57   -0.76   -0.95   -1.08   -1.09   -0.91   -0.56   -0.07    0.45    0.89    1.14
+   260.0    0.00   -0.02   -0.08   -0.14   -0.20   -0.26   -0.32   -0.43   -0.59   -0.79   -0.99   -1.12   -1.12   -0.94   -0.57   -0.08    0.43    0.86    1.09
+   265.0    0.00   -0.02   -0.08   -0.14   -0.20   -0.26   -0.33   -0.44   -0.61   -0.82   -1.02   -1.15   -1.13   -0.94   -0.57   -0.08    0.42    0.82    1.03
+   270.0    0.00   -0.02   -0.08   -0.15   -0.21   -0.26   -0.34   -0.46   -0.63   -0.84   -1.04   -1.16   -1.13   -0.92   -0.54   -0.07    0.40    0.77    0.95
+   275.0    0.00   -0.03   -0.08   -0.15   -0.21   -0.28   -0.36   -0.48   -0.65   -0.86   -1.05   -1.15   -1.10   -0.87   -0.50   -0.04    0.39    0.71    0.87
+   280.0    0.00   -0.03   -0.09   -0.16   -0.22   -0.29   -0.38   -0.50   -0.68   -0.87   -1.04   -1.12   -1.04   -0.81   -0.44   -0.01    0.38    0.66    0.79
+   285.0    0.00   -0.03   -0.09   -0.16   -0.24   -0.31   -0.41   -0.53   -0.70   -0.88   -1.02   -1.07   -0.97   -0.72   -0.36    0.03    0.37    0.61    0.73
+   290.0    0.00   -0.03   -0.09   -0.17   -0.25   -0.34   -0.44   -0.56   -0.72   -0.88   -0.99   -1.01   -0.88   -0.63   -0.29    0.07    0.37    0.57    0.69
+   295.0    0.00   -0.03   -0.10   -0.18   -0.27   -0.36   -0.47   -0.59   -0.74   -0.87   -0.95   -0.94   -0.79   -0.54   -0.22    0.10    0.37    0.55    0.67
+   300.0    0.00   -0.03   -0.10   -0.19   -0.29   -0.39   -0.50   -0.62   -0.75   -0.86   -0.91   -0.86   -0.70   -0.45   -0.15    0.13    0.37    0.54    0.69
+   305.0    0.00   -0.03   -0.11   -0.20   -0.31   -0.41   -0.52   -0.64   -0.75   -0.84   -0.86   -0.80   -0.63   -0.39   -0.11    0.15    0.37    0.56    0.74
+   310.0    0.00   -0.03   -0.11   -0.21   -0.32   -0.43   -0.54   -0.65   -0.75   -0.82   -0.82   -0.74   -0.57   -0.34   -0.09    0.16    0.38    0.59    0.82
+   315.0    0.00   -0.04   -0.12   -0.22   -0.34   -0.45   -0.56   -0.66   -0.75   -0.80   -0.79   -0.70   -0.54   -0.33   -0.09    0.15    0.39    0.64    0.92
+   320.0    0.00   -0.04   -0.12   -0.23   -0.35   -0.46   -0.57   -0.67   -0.74   -0.78   -0.76   -0.67   -0.53   -0.33   -0.11    0.14    0.40    0.70    1.03
+   325.0    0.00   -0.04   -0.12   -0.24   -0.36   -0.47   -0.58   -0.67   -0.73   -0.76   -0.74   -0.67   -0.54   -0.36   -0.14    0.12    0.42    0.77    1.13
+   330.0    0.00   -0.04   -0.13   -0.24   -0.36   -0.48   -0.58   -0.66   -0.72   -0.75   -0.74   -0.68   -0.56   -0.40   -0.18    0.10    0.44    0.84    1.23
+   335.0    0.00   -0.04   -0.13   -0.24   -0.37   -0.48   -0.58   -0.65   -0.71   -0.74   -0.74   -0.70   -0.60   -0.45   -0.22    0.08    0.46    0.90    1.30
+   340.0    0.00   -0.04   -0.13   -0.25   -0.37   -0.48   -0.57   -0.65   -0.71   -0.75   -0.75   -0.72   -0.64   -0.49   -0.26    0.07    0.49    0.95    1.35
+   345.0    0.00   -0.04   -0.13   -0.25   -0.37   -0.48   -0.57   -0.65   -0.71   -0.75   -0.77   -0.75   -0.68   -0.53   -0.29    0.07    0.51    0.99    1.36
+   350.0    0.00   -0.04   -0.13   -0.25   -0.37   -0.48   -0.57   -0.65   -0.71   -0.77   -0.80   -0.79   -0.72   -0.56   -0.30    0.08    0.54    1.01    1.36
+   355.0    0.00   -0.04   -0.13   -0.25   -0.37   -0.48   -0.57   -0.65   -0.73   -0.79   -0.83   -0.82   -0.74   -0.57   -0.29    0.10    0.57    1.03    1.34
+   360.0    0.00   -0.04   -0.13   -0.25   -0.37   -0.48   -0.57   -0.66   -0.74   -0.81   -0.86   -0.85   -0.76   -0.58   -0.27    0.14    0.61    1.05    1.32
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.31      0.04     62.86                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.01   -0.05   -0.14   -0.27   -0.44   -0.60   -0.69   -0.69   -0.57   -0.41   -0.25   -0.17   -0.16   -0.18   -0.12    0.10    0.52    1.06
+     0.0    0.00   -0.06   -0.14   -0.24   -0.34   -0.44   -0.50   -0.51   -0.46   -0.36   -0.25   -0.16   -0.13   -0.15   -0.14   -0.01    0.32    0.82    1.24
+     5.0    0.00   -0.06   -0.14   -0.25   -0.36   -0.46   -0.53   -0.53   -0.48   -0.38   -0.27   -0.18   -0.15   -0.17   -0.18   -0.07    0.21    0.66    1.08
+    10.0    0.00   -0.06   -0.15   -0.26   -0.38   -0.49   -0.56   -0.57   -0.51   -0.41   -0.29   -0.20   -0.17   -0.19   -0.21   -0.14    0.09    0.50    0.94
+    15.0    0.00   -0.06   -0.15   -0.27   -0.40   -0.52   -0.60   -0.61   -0.56   -0.45   -0.32   -0.22   -0.19   -0.21   -0.25   -0.21   -0.03    0.35    0.83
+    20.0    0.00   -0.06   -0.15   -0.28   -0.42   -0.55   -0.64   -0.66   -0.61   -0.49   -0.35   -0.25   -0.21   -0.23   -0.29   -0.29   -0.14    0.21    0.75
+    25.0    0.00   -0.06   -0.16   -0.28   -0.44   -0.58   -0.69   -0.72   -0.67   -0.54   -0.39   -0.28   -0.23   -0.26   -0.33   -0.36   -0.26    0.08    0.70
+    30.0    0.00   -0.06   -0.16   -0.29   -0.45   -0.61   -0.73   -0.78   -0.73   -0.60   -0.44   -0.31   -0.25   -0.28   -0.37   -0.44   -0.36   -0.02    0.66
+    35.0    0.00   -0.06   -0.15   -0.29   -0.46   -0.64   -0.77   -0.83   -0.79   -0.65   -0.48   -0.34   -0.28   -0.31   -0.41   -0.50   -0.45   -0.11    0.64
+    40.0    0.00   -0.06   -0.15   -0.29   -0.46   -0.65   -0.81   -0.88   -0.84   -0.71   -0.53   -0.37   -0.30   -0.34   -0.45   -0.55   -0.51   -0.18    0.62
+    45.0    0.00   -0.05   -0.14   -0.28   -0.46   -0.66   -0.83   -0.92   -0.89   -0.76   -0.57   -0.41   -0.33   -0.37   -0.48   -0.59   -0.56   -0.23    0.59
+    50.0    0.00   -0.05   -0.14   -0.27   -0.45   -0.66   -0.84   -0.94   -0.92   -0.80   -0.61   -0.44   -0.36   -0.39   -0.50   -0.61   -0.58   -0.26    0.55
+    55.0    0.00   -0.05   -0.13   -0.26   -0.44   -0.65   -0.84   -0.95   -0.95   -0.82   -0.64   -0.47   -0.38   -0.41   -0.52   -0.62   -0.59   -0.27    0.51
+    60.0    0.00   -0.04   -0.12   -0.24   -0.42   -0.63   -0.83   -0.95   -0.95   -0.84   -0.66   -0.49   -0.40   -0.43   -0.52   -0.61   -0.57   -0.26    0.46
+    65.0    0.00   -0.04   -0.11   -0.22   -0.40   -0.61   -0.81   -0.94   -0.95   -0.84   -0.66   -0.50   -0.41   -0.43   -0.52   -0.59   -0.53   -0.24    0.41
+    70.0    0.00   -0.04   -0.10   -0.20   -0.37   -0.58   -0.79   -0.92   -0.93   -0.83   -0.66   -0.50   -0.41   -0.43   -0.51   -0.56   -0.48   -0.20    0.38
+    75.0    0.00   -0.03   -0.09   -0.18   -0.34   -0.55   -0.75   -0.89   -0.91   -0.81   -0.64   -0.48   -0.40   -0.42   -0.48   -0.51   -0.42   -0.14    0.36
+    80.0    0.00   -0.03   -0.07   -0.16   -0.32   -0.52   -0.72   -0.86   -0.88   -0.78   -0.61   -0.45   -0.37   -0.39   -0.45   -0.46   -0.35   -0.07    0.37
+    85.0    0.00   -0.02   -0.06   -0.15   -0.29   -0.49   -0.69   -0.82   -0.84   -0.74   -0.57   -0.41   -0.33   -0.35   -0.41   -0.41   -0.28    0.01    0.41
+    90.0    0.00   -0.02   -0.05   -0.13   -0.27   -0.46   -0.66   -0.79   -0.80   -0.70   -0.52   -0.35   -0.27   -0.29   -0.35   -0.34   -0.20    0.10    0.47
+    95.0    0.00   -0.02   -0.05   -0.12   -0.25   -0.44   -0.63   -0.76   -0.77   -0.65   -0.46   -0.29   -0.21   -0.23   -0.29   -0.27   -0.11    0.20    0.57
+   100.0    0.00   -0.01   -0.04   -0.11   -0.24   -0.42   -0.61   -0.73   -0.73   -0.60   -0.40   -0.22   -0.13   -0.15   -0.21   -0.20   -0.02    0.30    0.68
+   105.0    0.00   -0.01   -0.03   -0.10   -0.22   -0.40   -0.59   -0.70   -0.69   -0.56   -0.34   -0.15   -0.06   -0.07   -0.13   -0.11    0.07    0.41    0.80
+   110.0    0.00    0.00   -0.03   -0.09   -0.22   -0.40   -0.58   -0.68   -0.66   -0.51   -0.28   -0.08    0.02    0.01   -0.04   -0.02    0.16    0.52    0.93
+   115.0    0.00    0.00   -0.02   -0.09   -0.21   -0.39   -0.57   -0.66   -0.63   -0.47   -0.23   -0.01    0.10    0.10    0.05    0.07    0.26    0.62    1.04
+   120.0    0.00    0.00   -0.02   -0.09   -0.21   -0.39   -0.56   -0.65   -0.61   -0.43   -0.18    0.05    0.17    0.18    0.14    0.16    0.35    0.71    1.15
+   125.0    0.00    0.00   -0.02   -0.09   -0.22   -0.39   -0.55   -0.64   -0.58   -0.40   -0.14    0.10    0.23    0.25    0.22    0.25    0.43    0.80    1.23
+   130.0    0.00    0.01   -0.01   -0.09   -0.22   -0.39   -0.55   -0.62   -0.56   -0.37   -0.11    0.13    0.28    0.31    0.29    0.32    0.51    0.87    1.30
+   135.0    0.00    0.01   -0.01   -0.09   -0.22   -0.39   -0.55   -0.61   -0.54   -0.35   -0.08    0.16    0.32    0.36    0.35    0.38    0.57    0.92    1.35
+   140.0    0.00    0.01   -0.01   -0.09   -0.23   -0.40   -0.54   -0.60   -0.53   -0.33   -0.07    0.18    0.34    0.39    0.38    0.42    0.61    0.96    1.39
+   145.0    0.00    0.01   -0.01   -0.09   -0.23   -0.40   -0.54   -0.59   -0.52   -0.32   -0.06    0.18    0.34    0.40    0.40    0.44    0.62    0.98    1.42
+   150.0    0.00    0.01   -0.01   -0.09   -0.23   -0.40   -0.53   -0.58   -0.51   -0.32   -0.06    0.18    0.34    0.39    0.39    0.43    0.62    0.98    1.44
+   155.0    0.00    0.02   -0.01   -0.09   -0.23   -0.40   -0.53   -0.58   -0.51   -0.32   -0.07    0.16    0.32    0.36    0.36    0.39    0.59    0.97    1.44
+   160.0    0.00    0.02   -0.01   -0.09   -0.23   -0.39   -0.53   -0.58   -0.51   -0.33   -0.08    0.14    0.28    0.32    0.30    0.33    0.53    0.94    1.44
+   165.0    0.00    0.02   -0.01   -0.09   -0.23   -0.39   -0.52   -0.58   -0.51   -0.34   -0.10    0.11    0.24    0.26    0.23    0.25    0.46    0.89    1.42
+   170.0    0.00    0.02   -0.01   -0.09   -0.23   -0.39   -0.52   -0.58   -0.52   -0.36   -0.13    0.08    0.19    0.20    0.14    0.15    0.37    0.83    1.39
+   175.0    0.00    0.02    0.00   -0.09   -0.22   -0.38   -0.52   -0.58   -0.54   -0.38   -0.16    0.04    0.14    0.12    0.05    0.04    0.27    0.75    1.32
+   180.0    0.00    0.02    0.00   -0.08   -0.21   -0.38   -0.52   -0.59   -0.55   -0.41   -0.20   -0.01    0.08    0.04   -0.05   -0.07    0.16    0.66    1.23
+   185.0    0.00    0.02    0.00   -0.08   -0.21   -0.37   -0.52   -0.60   -0.58   -0.44   -0.24   -0.06    0.02   -0.04   -0.15   -0.18    0.05    0.56    1.12
+   190.0    0.00    0.03    0.01   -0.07   -0.20   -0.37   -0.52   -0.62   -0.60   -0.47   -0.28   -0.11   -0.05   -0.11   -0.24   -0.28   -0.05    0.45    0.98
+   195.0    0.00    0.03    0.01   -0.06   -0.19   -0.36   -0.53   -0.63   -0.63   -0.51   -0.33   -0.17   -0.11   -0.19   -0.33   -0.37   -0.15    0.34    0.82
+   200.0    0.00    0.03    0.01   -0.06   -0.19   -0.36   -0.54   -0.65   -0.66   -0.56   -0.38   -0.23   -0.18   -0.26   -0.40   -0.45   -0.24    0.22    0.65
+   205.0    0.00    0.03    0.01   -0.05   -0.18   -0.36   -0.54   -0.67   -0.70   -0.61   -0.44   -0.29   -0.24   -0.32   -0.46   -0.51   -0.32    0.11    0.50
+   210.0    0.00    0.03    0.02   -0.05   -0.18   -0.36   -0.56   -0.70   -0.74   -0.66   -0.50   -0.35   -0.30   -0.38   -0.52   -0.57   -0.39    0.01    0.37
+   215.0    0.00    0.03    0.02   -0.05   -0.18   -0.37   -0.57   -0.72   -0.78   -0.71   -0.56   -0.41   -0.36   -0.43   -0.56   -0.61   -0.45   -0.08    0.27
+   220.0    0.00    0.03    0.02   -0.04   -0.18   -0.37   -0.58   -0.75   -0.82   -0.76   -0.62   -0.47   -0.41   -0.47   -0.58   -0.64   -0.50   -0.15    0.22
+   225.0    0.00    0.03    0.02   -0.04   -0.18   -0.38   -0.60   -0.78   -0.85   -0.81   -0.67   -0.53   -0.46   -0.50   -0.60   -0.65   -0.53   -0.19    0.22
+   230.0    0.00    0.03    0.02   -0.04   -0.18   -0.38   -0.61   -0.80   -0.89   -0.85   -0.72   -0.58   -0.50   -0.52   -0.61   -0.65   -0.54   -0.21    0.26
+   235.0    0.00    0.03    0.02   -0.04   -0.18   -0.39   -0.62   -0.82   -0.91   -0.88   -0.76   -0.62   -0.53   -0.53   -0.60   -0.64   -0.53   -0.20    0.35
+   240.0    0.00    0.02    0.02   -0.04   -0.19   -0.40   -0.63   -0.83   -0.93   -0.91   -0.79   -0.65   -0.55   -0.54   -0.58   -0.61   -0.50   -0.17    0.48
+   245.0    0.00    0.02    0.02   -0.05   -0.19   -0.40   -0.64   -0.84   -0.94   -0.92   -0.80   -0.66   -0.56   -0.53   -0.55   -0.56   -0.45   -0.11    0.62
+   250.0    0.00    0.02    0.01   -0.05   -0.20   -0.41   -0.64   -0.84   -0.93   -0.92   -0.81   -0.67   -0.56   -0.51   -0.51   -0.49   -0.38   -0.02    0.77
+   255.0    0.00    0.02    0.01   -0.06   -0.20   -0.41   -0.64   -0.83   -0.92   -0.90   -0.79   -0.66   -0.54   -0.48   -0.45   -0.41   -0.28    0.08    0.91
+   260.0    0.00    0.02    0.01   -0.06   -0.21   -0.41   -0.63   -0.81   -0.89   -0.87   -0.77   -0.64   -0.52   -0.44   -0.38   -0.31   -0.16    0.20    1.04
+   265.0    0.00    0.01    0.00   -0.07   -0.21   -0.41   -0.62   -0.79   -0.86   -0.83   -0.73   -0.60   -0.48   -0.39   -0.31   -0.20   -0.03    0.33    1.15
+   270.0    0.00    0.01    0.00   -0.08   -0.21   -0.41   -0.61   -0.76   -0.82   -0.78   -0.68   -0.55   -0.44   -0.33   -0.22   -0.09    0.11    0.47    1.23
+   275.0    0.00    0.01   -0.01   -0.08   -0.22   -0.41   -0.59   -0.73   -0.77   -0.72   -0.62   -0.50   -0.38   -0.27   -0.14    0.03    0.26    0.61    1.30
+   280.0    0.00    0.00   -0.02   -0.09   -0.22   -0.40   -0.58   -0.69   -0.72   -0.66   -0.55   -0.44   -0.33   -0.21   -0.06    0.14    0.40    0.75    1.36
+   285.0    0.00    0.00   -0.02   -0.10   -0.23   -0.40   -0.56   -0.66   -0.68   -0.60   -0.49   -0.37   -0.26   -0.15    0.01    0.24    0.53    0.88    1.41
+   290.0    0.00    0.00   -0.03   -0.10   -0.23   -0.40   -0.55   -0.64   -0.63   -0.55   -0.43   -0.31   -0.20   -0.09    0.07    0.31    0.64    1.01    1.48
+   295.0    0.00   -0.01   -0.04   -0.11   -0.24   -0.40   -0.54   -0.61   -0.60   -0.50   -0.37   -0.24   -0.15   -0.05    0.11    0.37    0.73    1.13    1.55
+   300.0    0.00   -0.01   -0.05   -0.12   -0.24   -0.39   -0.53   -0.59   -0.57   -0.46   -0.32   -0.19   -0.10   -0.01    0.14    0.41    0.79    1.23    1.64
+   305.0    0.00   -0.02   -0.05   -0.13   -0.25   -0.39   -0.52   -0.58   -0.54   -0.43   -0.27   -0.14   -0.05    0.02    0.15    0.42    0.83    1.32    1.74
+   310.0    0.00   -0.02   -0.06   -0.14   -0.25   -0.39   -0.51   -0.57   -0.53   -0.40   -0.24   -0.11   -0.02    0.04    0.15    0.41    0.85    1.40    1.84
+   315.0    0.00   -0.03   -0.07   -0.14   -0.26   -0.39   -0.51   -0.56   -0.51   -0.38   -0.22   -0.08    0.00    0.04    0.14    0.39    0.85    1.45    1.93
+   320.0    0.00   -0.03   -0.08   -0.15   -0.26   -0.39   -0.50   -0.55   -0.50   -0.37   -0.20   -0.06    0.01    0.04    0.11    0.35    0.84    1.48    1.99
+   325.0    0.00   -0.03   -0.09   -0.16   -0.27   -0.39   -0.49   -0.54   -0.49   -0.36   -0.20   -0.06    0.01    0.02    0.08    0.31    0.80    1.48    2.03
+   330.0    0.00   -0.04   -0.09   -0.17   -0.27   -0.39   -0.49   -0.53   -0.48   -0.35   -0.19   -0.06    0.00    0.00    0.05    0.27    0.76    1.46    2.03
+   335.0    0.00   -0.04   -0.10   -0.18   -0.28   -0.39   -0.48   -0.51   -0.47   -0.35   -0.20   -0.07   -0.02   -0.02    0.01    0.22    0.71    1.41    1.98
+   340.0    0.00   -0.05   -0.11   -0.19   -0.29   -0.39   -0.47   -0.50   -0.46   -0.34   -0.20   -0.09   -0.04   -0.05   -0.02    0.18    0.65    1.33    1.88
+   345.0    0.00   -0.05   -0.12   -0.20   -0.30   -0.40   -0.47   -0.50   -0.45   -0.34   -0.21   -0.10   -0.06   -0.08   -0.05    0.13    0.58    1.23    1.75
+   350.0    0.00   -0.05   -0.12   -0.21   -0.31   -0.40   -0.47   -0.49   -0.45   -0.34   -0.22   -0.12   -0.09   -0.10   -0.08    0.09    0.50    1.11    1.59
+   355.0    0.00   -0.05   -0.13   -0.22   -0.32   -0.42   -0.48   -0.50   -0.45   -0.35   -0.23   -0.14   -0.11   -0.13   -0.11    0.04    0.41    0.97    1.42
+   360.0    0.00   -0.06   -0.14   -0.24   -0.34   -0.44   -0.50   -0.51   -0.46   -0.36   -0.25   -0.16   -0.13   -0.15   -0.14   -0.01    0.32    0.82    1.24
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+LEIAX1202GG     NONE                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH              14    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     4                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+Number of Calibrated Antennas GPS:      014                 COMMENT             
+Number of Individual Calibrations GPS:  028                 COMMENT             
+Number of Calibrated Antennas GLO:      014                 COMMENT             
+Number of Individual Calibrations GLO:  028                 COMMENT             
+# GLONASS PCV                                               COMMENT             
+#  derived from Delta PCV per 25.0 MHz                      COMMENT             
+#  for frequency channel number k=0                         COMMENT             
+   G01                                                      START OF FREQUENCY  
+      1.64     -0.52     63.42                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.03   -0.10   -0.20   -0.31   -0.42   -0.52   -0.62   -0.72   -0.82   -0.90   -0.93   -0.88   -0.70   -0.37    0.07    0.57    1.03    1.36
+     0.0    0.00   -0.04   -0.12   -0.25   -0.40   -0.55   -0.71   -0.83   -0.90   -0.90   -0.84   -0.72   -0.57   -0.41   -0.25   -0.03    0.28    0.73    1.29
+     5.0    0.00   -0.04   -0.13   -0.25   -0.40   -0.56   -0.71   -0.84   -0.93   -0.94   -0.88   -0.75   -0.58   -0.39   -0.19    0.05    0.37    0.80    1.32
+    10.0    0.00   -0.04   -0.13   -0.25   -0.40   -0.55   -0.71   -0.85   -0.95   -0.98   -0.93   -0.80   -0.60   -0.36   -0.11    0.17    0.50    0.91    1.37
+    15.0    0.00   -0.04   -0.13   -0.25   -0.39   -0.55   -0.71   -0.86   -0.98   -1.03   -0.98   -0.84   -0.62   -0.33   -0.01    0.33    0.68    1.07    1.46
+    20.0    0.00   -0.04   -0.13   -0.25   -0.39   -0.54   -0.71   -0.87   -1.00   -1.07   -1.04   -0.90   -0.65   -0.30    0.09    0.49    0.89    1.27    1.59
+    25.0    0.00   -0.04   -0.13   -0.24   -0.38   -0.53   -0.70   -0.87   -1.01   -1.11   -1.10   -0.97   -0.69   -0.29    0.17    0.66    1.12    1.51    1.77
+    30.0    0.00   -0.04   -0.12   -0.24   -0.37   -0.52   -0.68   -0.86   -1.02   -1.14   -1.16   -1.04   -0.75   -0.31    0.23    0.81    1.34    1.76    1.99
+    35.0    0.00   -0.04   -0.12   -0.24   -0.36   -0.51   -0.67   -0.85   -1.03   -1.17   -1.22   -1.12   -0.83   -0.36    0.25    0.91    1.53    2.00    2.23
+    40.0    0.00   -0.04   -0.12   -0.23   -0.35   -0.49   -0.64   -0.83   -1.02   -1.20   -1.28   -1.21   -0.93   -0.44    0.22    0.97    1.67    2.21    2.47
+    45.0    0.00   -0.04   -0.12   -0.23   -0.34   -0.47   -0.62   -0.80   -1.01   -1.21   -1.33   -1.30   -1.05   -0.55    0.14    0.95    1.73    2.35    2.66
+    50.0    0.00   -0.04   -0.12   -0.22   -0.33   -0.45   -0.60   -0.78   -1.00   -1.22   -1.38   -1.39   -1.17   -0.70    0.01    0.86    1.71    2.40    2.78
+    55.0    0.00   -0.03   -0.11   -0.21   -0.32   -0.43   -0.57   -0.75   -0.98   -1.22   -1.41   -1.47   -1.30   -0.85   -0.15    0.71    1.60    2.35    2.79
+    60.0    0.00   -0.03   -0.11   -0.21   -0.31   -0.42   -0.55   -0.73   -0.96   -1.21   -1.44   -1.53   -1.41   -1.02   -0.35    0.51    1.41    2.19    2.69
+    65.0    0.00   -0.03   -0.11   -0.20   -0.30   -0.40   -0.53   -0.70   -0.93   -1.20   -1.45   -1.58   -1.51   -1.17   -0.56    0.26    1.15    1.93    2.47
+    70.0    0.00   -0.03   -0.10   -0.20   -0.29   -0.39   -0.51   -0.67   -0.90   -1.17   -1.44   -1.61   -1.59   -1.31   -0.76    0.00    0.84    1.60    2.15
+    75.0    0.00   -0.03   -0.10   -0.19   -0.28   -0.38   -0.49   -0.65   -0.87   -1.14   -1.42   -1.61   -1.64   -1.42   -0.94   -0.25    0.52    1.22    1.75
+    80.0    0.00   -0.03   -0.10   -0.19   -0.28   -0.37   -0.48   -0.63   -0.83   -1.10   -1.38   -1.59   -1.65   -1.48   -1.07   -0.47    0.21    0.84    1.32
+    85.0    0.00   -0.02   -0.09   -0.18   -0.27   -0.36   -0.46   -0.60   -0.79   -1.05   -1.32   -1.54   -1.63   -1.51   -1.16   -0.64   -0.05    0.49    0.90
+    90.0    0.00   -0.02   -0.09   -0.17   -0.26   -0.35   -0.45   -0.57   -0.75   -0.98   -1.25   -1.47   -1.57   -1.49   -1.20   -0.74   -0.23    0.22    0.54
+    95.0    0.00   -0.02   -0.08   -0.17   -0.26   -0.34   -0.43   -0.54   -0.70   -0.91   -1.16   -1.38   -1.49   -1.43   -1.17   -0.77   -0.32    0.05    0.29
+   100.0    0.00   -0.02   -0.08   -0.16   -0.25   -0.33   -0.41   -0.50   -0.64   -0.84   -1.06   -1.27   -1.38   -1.33   -1.09   -0.72   -0.32    0.00    0.17
+   105.0    0.00   -0.02   -0.08   -0.16   -0.24   -0.32   -0.39   -0.47   -0.59   -0.76   -0.96   -1.15   -1.26   -1.21   -0.97   -0.61   -0.22    0.07    0.19
+   110.0    0.00   -0.02   -0.07   -0.15   -0.23   -0.30   -0.36   -0.43   -0.52   -0.67   -0.86   -1.04   -1.13   -1.07   -0.82   -0.44   -0.04    0.25    0.35
+   115.0    0.00   -0.01   -0.07   -0.15   -0.23   -0.29   -0.34   -0.39   -0.47   -0.59   -0.76   -0.92   -1.00   -0.92   -0.65   -0.25    0.19    0.50    0.62
+   120.0    0.00   -0.01   -0.07   -0.14   -0.22   -0.28   -0.32   -0.35   -0.41   -0.52   -0.66   -0.81   -0.87   -0.78   -0.49   -0.04    0.44    0.81    0.95
+   125.0    0.00   -0.01   -0.06   -0.14   -0.21   -0.27   -0.30   -0.32   -0.36   -0.45   -0.58   -0.71   -0.76   -0.65   -0.33    0.15    0.69    1.12    1.32
+   130.0    0.00   -0.01   -0.06   -0.13   -0.20   -0.26   -0.28   -0.29   -0.32   -0.40   -0.51   -0.63   -0.67   -0.54   -0.20    0.32    0.91    1.40    1.66
+   135.0    0.00   -0.01   -0.06   -0.13   -0.20   -0.25   -0.27   -0.28   -0.30   -0.36   -0.46   -0.57   -0.59   -0.45   -0.10    0.44    1.06    1.61    1.95
+   140.0    0.00   -0.01   -0.06   -0.13   -0.20   -0.25   -0.27   -0.27   -0.29   -0.34   -0.43   -0.52   -0.54   -0.40   -0.04    0.51    1.15    1.74    2.13
+   145.0    0.00   -0.01   -0.06   -0.13   -0.20   -0.25   -0.27   -0.27   -0.29   -0.33   -0.42   -0.50   -0.51   -0.37   -0.02    0.52    1.17    1.77    2.21
+   150.0    0.00   -0.01   -0.06   -0.13   -0.20   -0.25   -0.28   -0.29   -0.30   -0.34   -0.42   -0.50   -0.50   -0.37   -0.04    0.48    1.10    1.71    2.18
+   155.0    0.00   -0.01   -0.06   -0.13   -0.20   -0.26   -0.29   -0.31   -0.32   -0.37   -0.44   -0.51   -0.52   -0.39   -0.08    0.40    0.98    1.57    2.04
+   160.0    0.00   -0.01   -0.06   -0.13   -0.21   -0.27   -0.31   -0.33   -0.36   -0.40   -0.47   -0.54   -0.54   -0.43   -0.15    0.28    0.82    1.36    1.83
+   165.0    0.00   -0.01   -0.06   -0.14   -0.22   -0.29   -0.33   -0.36   -0.40   -0.44   -0.51   -0.58   -0.58   -0.48   -0.24    0.14    0.63    1.13    1.59
+   170.0    0.00   -0.01   -0.06   -0.14   -0.23   -0.30   -0.36   -0.40   -0.43   -0.49   -0.56   -0.62   -0.63   -0.55   -0.33    0.01    0.44    0.89    1.33
+   175.0    0.00   -0.01   -0.07   -0.15   -0.24   -0.32   -0.38   -0.43   -0.47   -0.53   -0.61   -0.67   -0.69   -0.61   -0.42   -0.12    0.26    0.68    1.09
+   180.0    0.00   -0.01   -0.07   -0.16   -0.25   -0.34   -0.40   -0.46   -0.51   -0.58   -0.65   -0.72   -0.74   -0.67   -0.50   -0.23    0.12    0.50    0.90
+   185.0    0.00   -0.01   -0.07   -0.16   -0.26   -0.35   -0.42   -0.48   -0.54   -0.62   -0.70   -0.77   -0.79   -0.72   -0.56   -0.31    0.01    0.37    0.76
+   190.0    0.00   -0.01   -0.08   -0.17   -0.28   -0.37   -0.44   -0.51   -0.57   -0.65   -0.73   -0.80   -0.83   -0.76   -0.61   -0.36   -0.05    0.30    0.69
+   195.0    0.00   -0.02   -0.08   -0.18   -0.29   -0.38   -0.46   -0.53   -0.60   -0.68   -0.76   -0.84   -0.86   -0.79   -0.63   -0.39   -0.08    0.27    0.66
+   200.0    0.00   -0.02   -0.09   -0.19   -0.30   -0.40   -0.48   -0.55   -0.62   -0.70   -0.79   -0.86   -0.88   -0.80   -0.63   -0.38   -0.07    0.28    0.68
+   205.0    0.00   -0.02   -0.09   -0.20   -0.31   -0.41   -0.49   -0.56   -0.63   -0.72   -0.81   -0.88   -0.89   -0.81   -0.62   -0.36   -0.04    0.32    0.72
+   210.0    0.00   -0.02   -0.09   -0.20   -0.32   -0.43   -0.51   -0.58   -0.65   -0.73   -0.82   -0.89   -0.89   -0.80   -0.60   -0.32    0.01    0.37    0.78
+   215.0    0.00   -0.02   -0.10   -0.21   -0.33   -0.44   -0.52   -0.59   -0.66   -0.75   -0.84   -0.90   -0.89   -0.79   -0.58   -0.28    0.06    0.43    0.83
+   220.0    0.00   -0.02   -0.10   -0.22   -0.34   -0.45   -0.53   -0.60   -0.67   -0.76   -0.85   -0.91   -0.90   -0.78   -0.55   -0.24    0.11    0.48    0.88
+   225.0    0.00   -0.02   -0.10   -0.22   -0.34   -0.45   -0.54   -0.61   -0.68   -0.77   -0.86   -0.92   -0.90   -0.78   -0.54   -0.21    0.15    0.53    0.93
+   230.0    0.00   -0.02   -0.11   -0.22   -0.35   -0.46   -0.54   -0.62   -0.69   -0.79   -0.88   -0.94   -0.92   -0.79   -0.53   -0.19    0.19    0.58    0.97
+   235.0    0.00   -0.03   -0.11   -0.23   -0.35   -0.46   -0.55   -0.62   -0.70   -0.80   -0.90   -0.96   -0.94   -0.81   -0.54   -0.18    0.22    0.62    1.02
+   240.0    0.00   -0.03   -0.11   -0.23   -0.35   -0.46   -0.55   -0.62   -0.71   -0.81   -0.91   -0.99   -0.98   -0.84   -0.57   -0.19    0.25    0.67    1.08
+   245.0    0.00   -0.03   -0.11   -0.23   -0.35   -0.46   -0.55   -0.62   -0.71   -0.82   -0.93   -1.01   -1.01   -0.88   -0.60   -0.20    0.27    0.73    1.14
+   250.0    0.00   -0.03   -0.11   -0.23   -0.35   -0.46   -0.54   -0.62   -0.71   -0.82   -0.95   -1.04   -1.05   -0.93   -0.64   -0.22    0.29    0.78    1.22
+   255.0    0.00   -0.03   -0.11   -0.22   -0.34   -0.45   -0.54   -0.62   -0.71   -0.83   -0.96   -1.07   -1.09   -0.98   -0.68   -0.24    0.31    0.85    1.30
+   260.0    0.00   -0.03   -0.11   -0.22   -0.34   -0.45   -0.53   -0.61   -0.71   -0.83   -0.97   -1.08   -1.12   -1.01   -0.72   -0.25    0.33    0.91    1.38
+   265.0    0.00   -0.03   -0.11   -0.22   -0.34   -0.44   -0.53   -0.61   -0.71   -0.83   -0.97   -1.09   -1.13   -1.03   -0.73   -0.25    0.35    0.96    1.43
+   270.0    0.00   -0.03   -0.11   -0.22   -0.33   -0.44   -0.53   -0.61   -0.71   -0.83   -0.96   -1.08   -1.12   -1.02   -0.73   -0.24    0.38    1.00    1.46
+   275.0    0.00   -0.03   -0.11   -0.21   -0.33   -0.44   -0.53   -0.62   -0.71   -0.82   -0.95   -1.06   -1.09   -0.99   -0.70   -0.21    0.41    1.03    1.45
+   280.0    0.00   -0.03   -0.11   -0.21   -0.33   -0.44   -0.54   -0.63   -0.72   -0.82   -0.93   -1.02   -1.04   -0.94   -0.65   -0.17    0.44    1.03    1.40
+   285.0    0.00   -0.03   -0.11   -0.21   -0.33   -0.44   -0.55   -0.64   -0.73   -0.81   -0.90   -0.96   -0.97   -0.85   -0.57   -0.11    0.47    1.01    1.32
+   290.0    0.00   -0.03   -0.10   -0.21   -0.33   -0.45   -0.56   -0.66   -0.74   -0.81   -0.87   -0.90   -0.88   -0.75   -0.47   -0.04    0.50    0.98    1.20
+   295.0    0.00   -0.03   -0.10   -0.21   -0.33   -0.46   -0.58   -0.68   -0.75   -0.80   -0.84   -0.84   -0.78   -0.64   -0.37    0.04    0.52    0.94    1.07
+   300.0    0.00   -0.03   -0.10   -0.21   -0.34   -0.47   -0.59   -0.69   -0.77   -0.80   -0.80   -0.77   -0.69   -0.53   -0.27    0.11    0.54    0.89    0.94
+   305.0    0.00   -0.03   -0.11   -0.21   -0.34   -0.48   -0.61   -0.71   -0.78   -0.80   -0.77   -0.70   -0.60   -0.43   -0.18    0.17    0.55    0.85    0.84
+   310.0    0.00   -0.03   -0.11   -0.21   -0.35   -0.49   -0.62   -0.73   -0.79   -0.79   -0.74   -0.65   -0.52   -0.34   -0.10    0.21    0.55    0.81    0.77
+   315.0    0.00   -0.03   -0.11   -0.22   -0.35   -0.50   -0.64   -0.75   -0.80   -0.79   -0.72   -0.61   -0.46   -0.28   -0.06    0.23    0.54    0.78    0.74
+   320.0    0.00   -0.03   -0.11   -0.22   -0.36   -0.51   -0.65   -0.76   -0.81   -0.79   -0.71   -0.58   -0.42   -0.25   -0.04    0.22    0.51    0.75    0.76
+   325.0    0.00   -0.03   -0.11   -0.22   -0.36   -0.52   -0.66   -0.77   -0.81   -0.79   -0.70   -0.56   -0.41   -0.25   -0.06    0.19    0.48    0.74    0.81
+   330.0    0.00   -0.04   -0.11   -0.23   -0.37   -0.52   -0.67   -0.78   -0.82   -0.79   -0.70   -0.56   -0.41   -0.26   -0.09    0.13    0.43    0.73    0.90
+   335.0    0.00   -0.04   -0.11   -0.23   -0.38   -0.53   -0.68   -0.78   -0.83   -0.80   -0.70   -0.57   -0.43   -0.30   -0.14    0.07    0.37    0.72    0.99
+   340.0    0.00   -0.04   -0.12   -0.24   -0.38   -0.54   -0.68   -0.79   -0.83   -0.81   -0.72   -0.59   -0.46   -0.34   -0.20    0.01    0.31    0.71    1.09
+   345.0    0.00   -0.04   -0.12   -0.24   -0.39   -0.54   -0.69   -0.80   -0.84   -0.82   -0.74   -0.62   -0.49   -0.38   -0.24   -0.05    0.26    0.70    1.16
+   350.0    0.00   -0.04   -0.12   -0.24   -0.39   -0.55   -0.70   -0.81   -0.86   -0.84   -0.76   -0.65   -0.52   -0.40   -0.27   -0.08    0.24    0.69    1.22
+   355.0    0.00   -0.04   -0.12   -0.24   -0.39   -0.55   -0.70   -0.82   -0.88   -0.87   -0.80   -0.68   -0.55   -0.42   -0.28   -0.08    0.24    0.70    1.26
+   360.0    0.00   -0.04   -0.12   -0.25   -0.40   -0.55   -0.71   -0.83   -0.90   -0.90   -0.84   -0.72   -0.57   -0.41   -0.25   -0.03    0.28    0.73    1.29
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -1.20      0.23     62.13                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.01   -0.06   -0.15   -0.30   -0.49   -0.69   -0.83   -0.86   -0.73   -0.47   -0.14    0.12    0.24    0.18    0.02   -0.03    0.28    1.17
+     0.0    0.00    0.00   -0.01   -0.04   -0.10   -0.19   -0.31   -0.45   -0.56   -0.62   -0.60   -0.51   -0.39   -0.30   -0.28   -0.30   -0.25    0.10    1.04
+     5.0    0.00    0.00   -0.02   -0.05   -0.11   -0.20   -0.32   -0.47   -0.59   -0.66   -0.65   -0.56   -0.45   -0.36   -0.35   -0.37   -0.34   -0.04    0.80
+    10.0    0.00    0.00   -0.02   -0.06   -0.12   -0.21   -0.34   -0.49   -0.62   -0.69   -0.69   -0.61   -0.50   -0.43   -0.42   -0.46   -0.45   -0.19    0.54
+    15.0    0.00   -0.01   -0.03   -0.06   -0.13   -0.23   -0.37   -0.52   -0.65   -0.72   -0.71   -0.64   -0.54   -0.49   -0.50   -0.57   -0.57   -0.35    0.28
+    20.0    0.00   -0.01   -0.03   -0.07   -0.14   -0.25   -0.40   -0.55   -0.67   -0.74   -0.72   -0.64   -0.56   -0.53   -0.58   -0.68   -0.70   -0.51    0.04
+    25.0    0.00   -0.01   -0.04   -0.08   -0.16   -0.28   -0.43   -0.58   -0.70   -0.75   -0.72   -0.63   -0.56   -0.56   -0.65   -0.78   -0.82   -0.65   -0.16
+    30.0    0.00   -0.01   -0.04   -0.09   -0.18   -0.31   -0.46   -0.62   -0.73   -0.76   -0.70   -0.60   -0.53   -0.56   -0.69   -0.86   -0.93   -0.75   -0.30
+    35.0    0.00   -0.01   -0.05   -0.10   -0.20   -0.33   -0.50   -0.66   -0.76   -0.76   -0.68   -0.55   -0.48   -0.52   -0.69   -0.91   -1.00   -0.82   -0.37
+    40.0    0.00   -0.02   -0.05   -0.11   -0.21   -0.36   -0.54   -0.70   -0.79   -0.77   -0.65   -0.49   -0.40   -0.46   -0.66   -0.91   -1.02   -0.83   -0.34
+    45.0    0.00   -0.02   -0.06   -0.12   -0.23   -0.39   -0.57   -0.73   -0.81   -0.77   -0.61   -0.42   -0.31   -0.36   -0.59   -0.86   -0.98   -0.76   -0.22
+    50.0    0.00   -0.02   -0.06   -0.13   -0.24   -0.41   -0.60   -0.76   -0.83   -0.76   -0.57   -0.34   -0.20   -0.24   -0.47   -0.77   -0.89   -0.64   -0.01
+    55.0    0.00   -0.02   -0.06   -0.13   -0.25   -0.42   -0.62   -0.78   -0.84   -0.75   -0.53   -0.26   -0.08   -0.10   -0.33   -0.63   -0.74   -0.45    0.27
+    60.0    0.00   -0.02   -0.07   -0.14   -0.26   -0.44   -0.63   -0.80   -0.85   -0.74   -0.49   -0.18    0.03    0.05   -0.16   -0.45   -0.55   -0.21    0.60
+    65.0    0.00   -0.02   -0.07   -0.14   -0.27   -0.44   -0.64   -0.80   -0.84   -0.72   -0.45   -0.11    0.14    0.19    0.01   -0.25   -0.32    0.06    0.96
+    70.0    0.00   -0.03   -0.07   -0.15   -0.27   -0.44   -0.64   -0.79   -0.83   -0.70   -0.41   -0.05    0.24    0.33    0.19   -0.05   -0.09    0.34    1.32
+    75.0    0.00   -0.03   -0.07   -0.15   -0.27   -0.44   -0.63   -0.78   -0.81   -0.67   -0.37    0.01    0.33    0.45    0.34    0.14    0.13    0.60    1.64
+    80.0    0.00   -0.03   -0.08   -0.16   -0.28   -0.44   -0.62   -0.76   -0.79   -0.64   -0.33    0.06    0.39    0.54    0.47    0.31    0.32    0.82    1.90
+    85.0    0.00   -0.03   -0.08   -0.16   -0.28   -0.44   -0.62   -0.75   -0.76   -0.61   -0.29    0.10    0.44    0.61    0.57    0.43    0.47    0.98    2.08
+    90.0    0.00   -0.03   -0.08   -0.16   -0.29   -0.45   -0.62   -0.74   -0.74   -0.58   -0.26    0.13    0.48    0.66    0.63    0.51    0.56    1.07    2.17
+    95.0    0.00   -0.03   -0.08   -0.17   -0.30   -0.46   -0.62   -0.74   -0.73   -0.56   -0.24    0.16    0.51    0.68    0.66    0.55    0.60    1.09    2.17
+   100.0    0.00   -0.03   -0.09   -0.18   -0.31   -0.47   -0.64   -0.74   -0.73   -0.55   -0.22    0.18    0.52    0.69    0.67    0.56    0.59    1.06    2.10
+   105.0    0.00   -0.03   -0.09   -0.18   -0.32   -0.49   -0.66   -0.76   -0.73   -0.54   -0.20    0.20    0.53    0.70    0.66    0.54    0.55    0.98    1.97
+   110.0    0.00   -0.03   -0.09   -0.19   -0.34   -0.52   -0.69   -0.79   -0.76   -0.55   -0.20    0.20    0.54    0.69    0.64    0.50    0.49    0.88    1.81
+   115.0    0.00   -0.03   -0.10   -0.20   -0.36   -0.55   -0.73   -0.83   -0.79   -0.57   -0.21    0.21    0.54    0.69    0.63    0.47    0.43    0.77    1.65
+   120.0    0.00   -0.03   -0.10   -0.21   -0.38   -0.58   -0.77   -0.88   -0.83   -0.60   -0.22    0.20    0.54    0.68    0.62    0.45    0.38    0.67    1.50
+   125.0    0.00   -0.03   -0.10   -0.22   -0.40   -0.61   -0.81   -0.92   -0.87   -0.63   -0.25    0.18    0.53    0.68    0.62    0.44    0.35    0.61    1.38
+   130.0    0.00   -0.03   -0.10   -0.23   -0.42   -0.64   -0.85   -0.97   -0.92   -0.68   -0.28    0.16    0.52    0.68    0.63    0.45    0.35    0.58    1.32
+   135.0    0.00   -0.03   -0.11   -0.24   -0.43   -0.67   -0.89   -1.01   -0.97   -0.72   -0.32    0.13    0.50    0.68    0.65    0.48    0.37    0.57    1.30
+   140.0    0.00   -0.03   -0.11   -0.24   -0.44   -0.69   -0.92   -1.05   -1.01   -0.77   -0.37    0.09    0.48    0.68    0.67    0.51    0.41    0.60    1.33
+   145.0    0.00   -0.03   -0.11   -0.25   -0.45   -0.70   -0.94   -1.08   -1.05   -0.82   -0.42    0.05    0.45    0.68    0.68    0.54    0.44    0.63    1.39
+   150.0    0.00   -0.03   -0.11   -0.25   -0.46   -0.71   -0.96   -1.10   -1.08   -0.86   -0.47    0.00    0.41    0.66    0.69    0.56    0.46    0.66    1.47
+   155.0    0.00   -0.03   -0.11   -0.25   -0.46   -0.72   -0.97   -1.12   -1.11   -0.90   -0.52   -0.05    0.37    0.63    0.67    0.55    0.44    0.66    1.55
+   160.0    0.00   -0.03   -0.11   -0.25   -0.46   -0.72   -0.97   -1.13   -1.13   -0.94   -0.57   -0.11    0.32    0.59    0.63    0.51    0.39    0.63    1.60
+   165.0    0.00   -0.03   -0.11   -0.25   -0.46   -0.72   -0.97   -1.14   -1.15   -0.97   -0.61   -0.16    0.27    0.54    0.57    0.43    0.31    0.55    1.62
+   170.0    0.00   -0.03   -0.10   -0.25   -0.46   -0.72   -0.97   -1.15   -1.17   -1.00   -0.65   -0.21    0.21    0.47    0.49    0.32    0.18    0.44    1.61
+   175.0    0.00   -0.03   -0.10   -0.24   -0.46   -0.72   -0.97   -1.16   -1.19   -1.03   -0.70   -0.26    0.15    0.39    0.39    0.19    0.03    0.31    1.55
+   180.0    0.00   -0.03   -0.10   -0.24   -0.45   -0.72   -0.98   -1.17   -1.21   -1.06   -0.73   -0.31    0.09    0.31    0.28    0.05   -0.13    0.15    1.45
+   185.0    0.00   -0.02   -0.10   -0.24   -0.45   -0.72   -0.98   -1.18   -1.23   -1.09   -0.77   -0.36    0.02    0.23    0.17   -0.08   -0.29    0.00    1.33
+   190.0    0.00   -0.02   -0.09   -0.23   -0.45   -0.72   -0.99   -1.19   -1.25   -1.12   -0.81   -0.41   -0.04    0.14    0.07   -0.20   -0.42   -0.13    1.20
+   195.0    0.00   -0.02   -0.09   -0.23   -0.45   -0.72   -0.99   -1.20   -1.27   -1.15   -0.85   -0.46   -0.11    0.06   -0.02   -0.30   -0.51   -0.22    1.06
+   200.0    0.00   -0.02   -0.09   -0.23   -0.45   -0.72   -1.00   -1.21   -1.29   -1.18   -0.89   -0.52   -0.18   -0.01   -0.09   -0.35   -0.55   -0.27    0.94
+   205.0    0.00   -0.02   -0.08   -0.22   -0.44   -0.72   -1.00   -1.22   -1.30   -1.20   -0.93   -0.57   -0.24   -0.07   -0.14   -0.37   -0.53   -0.26    0.85
+   210.0    0.00   -0.02   -0.08   -0.22   -0.44   -0.72   -1.00   -1.23   -1.32   -1.23   -0.97   -0.62   -0.29   -0.12   -0.16   -0.35   -0.47   -0.21    0.79
+   215.0    0.00   -0.01   -0.08   -0.22   -0.44   -0.71   -1.00   -1.23   -1.32   -1.24   -1.00   -0.65   -0.33   -0.14   -0.15   -0.29   -0.37   -0.12    0.75
+   220.0    0.00   -0.01   -0.07   -0.21   -0.43   -0.71   -1.00   -1.23   -1.33   -1.25   -1.01   -0.68   -0.35   -0.15   -0.11   -0.20   -0.25    0.00    0.75
+   225.0    0.00   -0.01   -0.07   -0.21   -0.42   -0.70   -0.99   -1.22   -1.32   -1.25   -1.02   -0.68   -0.35   -0.12   -0.05   -0.11   -0.12    0.12    0.78
+   230.0    0.00   -0.01   -0.07   -0.20   -0.42   -0.70   -0.99   -1.22   -1.32   -1.25   -1.01   -0.67   -0.32   -0.07    0.02    0.00    0.00    0.23    0.82
+   235.0    0.00   -0.01   -0.06   -0.19   -0.41   -0.69   -0.97   -1.20   -1.30   -1.23   -0.98   -0.62   -0.26    0.01    0.11    0.10    0.10    0.32    0.87
+   240.0    0.00    0.00   -0.06   -0.19   -0.40   -0.68   -0.96   -1.19   -1.28   -1.20   -0.93   -0.56   -0.17    0.11    0.22    0.19    0.18    0.38    0.93
+   245.0    0.00    0.00   -0.06   -0.18   -0.39   -0.66   -0.95   -1.17   -1.26   -1.16   -0.87   -0.46   -0.06    0.23    0.32    0.26    0.22    0.41    0.99
+   250.0    0.00    0.00   -0.05   -0.17   -0.38   -0.65   -0.93   -1.15   -1.23   -1.11   -0.79   -0.35    0.07    0.36    0.43    0.32    0.23    0.42    1.04
+   255.0    0.00    0.00   -0.05   -0.17   -0.37   -0.64   -0.91   -1.13   -1.19   -1.04   -0.70   -0.23    0.22    0.49    0.52    0.36    0.23    0.40    1.10
+   260.0    0.00    0.00   -0.04   -0.16   -0.36   -0.62   -0.89   -1.10   -1.14   -0.97   -0.60   -0.10    0.36    0.62    0.61    0.39    0.21    0.38    1.16
+   265.0    0.00    0.00   -0.04   -0.15   -0.35   -0.60   -0.87   -1.06   -1.08   -0.89   -0.49    0.03    0.49    0.73    0.68    0.41    0.19    0.37    1.23
+   270.0    0.00    0.00   -0.04   -0.14   -0.33   -0.58   -0.83   -1.01   -1.02   -0.80   -0.38    0.15    0.60    0.82    0.72    0.41    0.17    0.37    1.30
+   275.0    0.00    0.01   -0.03   -0.14   -0.32   -0.56   -0.80   -0.96   -0.94   -0.71   -0.27    0.25    0.69    0.87    0.74    0.41    0.17    0.40    1.37
+   280.0    0.00    0.01   -0.03   -0.13   -0.30   -0.53   -0.75   -0.89   -0.86   -0.61   -0.18    0.33    0.74    0.89    0.74    0.40    0.18    0.44    1.45
+   285.0    0.00    0.01   -0.03   -0.12   -0.28   -0.50   -0.70   -0.82   -0.78   -0.52   -0.09    0.39    0.76    0.87    0.70    0.38    0.20    0.51    1.54
+   290.0    0.00    0.01   -0.02   -0.11   -0.26   -0.46   -0.65   -0.75   -0.69   -0.43   -0.02    0.42    0.74    0.82    0.64    0.35    0.23    0.59    1.62
+   295.0    0.00    0.01   -0.02   -0.10   -0.24   -0.43   -0.60   -0.68   -0.61   -0.35    0.03    0.42    0.69    0.73    0.56    0.31    0.25    0.67    1.70
+   300.0    0.00    0.01   -0.02   -0.09   -0.22   -0.39   -0.55   -0.61   -0.53   -0.29    0.06    0.40    0.62    0.63    0.46    0.26    0.27    0.75    1.78
+   305.0    0.00    0.01   -0.01   -0.08   -0.21   -0.36   -0.49   -0.55   -0.46   -0.24    0.07    0.37    0.53    0.52    0.35    0.20    0.28    0.81    1.84
+   310.0    0.00    0.01   -0.01   -0.08   -0.19   -0.33   -0.45   -0.49   -0.41   -0.21    0.06    0.31    0.44    0.40    0.24    0.13    0.27    0.84    1.88
+   315.0    0.00    0.01   -0.01   -0.07   -0.17   -0.30   -0.41   -0.45   -0.38   -0.20    0.04    0.24    0.34    0.28    0.15    0.07    0.25    0.85    1.91
+   320.0    0.00    0.01   -0.01   -0.06   -0.15   -0.27   -0.37   -0.42   -0.36   -0.21   -0.01    0.17    0.24    0.18    0.06    0.01    0.21    0.83    1.92
+   325.0    0.00    0.01   -0.01   -0.05   -0.14   -0.24   -0.35   -0.39   -0.36   -0.24   -0.07    0.08    0.14    0.09   -0.01   -0.05    0.17    0.79    1.91
+   330.0    0.00    0.01   -0.01   -0.05   -0.12   -0.22   -0.32   -0.38   -0.37   -0.28   -0.14   -0.01    0.06    0.02   -0.06   -0.09    0.11    0.72    1.88
+   335.0    0.00    0.01   -0.01   -0.04   -0.11   -0.21   -0.31   -0.38   -0.39   -0.33   -0.21   -0.09   -0.03   -0.04   -0.10   -0.12    0.06    0.64    1.82
+   340.0    0.00    0.01   -0.01   -0.04   -0.10   -0.20   -0.30   -0.39   -0.42   -0.39   -0.30   -0.18   -0.10   -0.09   -0.13   -0.15    0.01    0.56    1.73
+   345.0    0.00    0.00   -0.01   -0.04   -0.10   -0.19   -0.30   -0.40   -0.46   -0.45   -0.38   -0.27   -0.18   -0.14   -0.16   -0.18   -0.05    0.46    1.61
+   350.0    0.00    0.00   -0.01   -0.04   -0.10   -0.18   -0.30   -0.41   -0.50   -0.51   -0.46   -0.36   -0.25   -0.19   -0.19   -0.21   -0.11    0.35    1.45
+   355.0    0.00    0.00   -0.01   -0.04   -0.10   -0.18   -0.30   -0.43   -0.53   -0.57   -0.53   -0.44   -0.32   -0.24   -0.23   -0.25   -0.17    0.23    1.26
+   360.0    0.00    0.00   -0.01   -0.04   -0.10   -0.19   -0.31   -0.45   -0.56   -0.62   -0.60   -0.51   -0.39   -0.30   -0.28   -0.30   -0.25    0.10    1.04
+   G02                                                      END OF FREQUENCY    
+   R01                                                      START OF FREQUENCY  
+      1.64     -0.52     63.42                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.02   -0.07   -0.14   -0.22   -0.33   -0.45   -0.53   -0.62   -0.70   -0.77   -0.82   -0.84   -0.72   -0.46    0.00    0.57    1.12    1.43
+     0.0    0.00   -0.07   -0.18   -0.35   -0.54   -0.75   -1.00   -1.21   -1.39   -1.50   -1.54   -1.54   -1.47   -1.39   -1.26   -1.06   -0.77   -0.30    0.40
+     5.0    0.00   -0.07   -0.19   -0.34   -0.53   -0.75   -0.98   -1.19   -1.38   -1.48   -1.53   -1.50   -1.43   -1.31   -1.18   -0.98   -0.70   -0.25    0.47
+    10.0    0.00   -0.07   -0.18   -0.32   -0.52   -0.72   -0.94   -1.16   -1.34   -1.46   -1.51   -1.49   -1.39   -1.23   -1.06   -0.85   -0.58   -0.15    0.55
+    15.0    0.00   -0.07   -0.18   -0.32   -0.50   -0.70   -0.91   -1.12   -1.31   -1.43   -1.48   -1.45   -1.33   -1.15   -0.91   -0.66   -0.38    0.03    0.68
+    20.0    0.00   -0.07   -0.17   -0.31   -0.48   -0.67   -0.87   -1.08   -1.26   -1.40   -1.45   -1.42   -1.29   -1.05   -0.76   -0.45   -0.12    0.28    0.85
+    25.0    0.00   -0.06   -0.16   -0.29   -0.45   -0.63   -0.83   -1.03   -1.20   -1.35   -1.43   -1.41   -1.25   -0.97   -0.62   -0.21    0.20    0.60    1.07
+    30.0    0.00   -0.06   -0.15   -0.28   -0.42   -0.59   -0.78   -0.97   -1.15   -1.31   -1.40   -1.39   -1.23   -0.92   -0.47    0.03    0.52    0.95    1.33
+    35.0    0.00   -0.06   -0.14   -0.27   -0.40   -0.57   -0.74   -0.92   -1.10   -1.27   -1.38   -1.39   -1.22   -0.88   -0.36    0.25    0.84    1.32    1.65
+    40.0    0.00   -0.05   -0.13   -0.25   -0.38   -0.53   -0.68   -0.87   -1.05   -1.24   -1.38   -1.40   -1.24   -0.87   -0.29    0.43    1.13    1.68    1.98
+    45.0    0.00   -0.05   -0.12   -0.23   -0.35   -0.49   -0.64   -0.81   -1.01   -1.21   -1.36   -1.41   -1.27   -0.88   -0.26    0.54    1.34    1.98    2.29
+    50.0    0.00   -0.04   -0.12   -0.21   -0.33   -0.45   -0.61   -0.78   -0.97   -1.18   -1.36   -1.43   -1.31   -0.93   -0.29    0.57    1.47    2.19    2.55
+    55.0    0.00   -0.03   -0.10   -0.19   -0.30   -0.42   -0.56   -0.73   -0.93   -1.15   -1.34   -1.45   -1.35   -0.99   -0.34    0.54    1.49    2.30    2.72
+    60.0    0.00   -0.02   -0.09   -0.17   -0.27   -0.39   -0.52   -0.69   -0.89   -1.10   -1.32   -1.44   -1.39   -1.07   -0.45    0.45    1.42    2.29    2.79
+    65.0    0.00   -0.02   -0.08   -0.15   -0.24   -0.34   -0.48   -0.64   -0.83   -1.06   -1.29   -1.43   -1.41   -1.14   -0.56    0.28    1.27    2.15    2.74
+    70.0    0.00   -0.02   -0.06   -0.13   -0.20   -0.30   -0.42   -0.57   -0.77   -1.00   -1.24   -1.40   -1.42   -1.19   -0.69    0.10    1.03    1.92    2.56
+    75.0    0.00   -0.01   -0.05   -0.10   -0.16   -0.26   -0.36   -0.51   -0.70   -0.93   -1.16   -1.34   -1.41   -1.24   -0.80   -0.10    0.76    1.61    2.28
+    80.0    0.00   -0.01   -0.04   -0.08   -0.14   -0.21   -0.32   -0.45   -0.62   -0.84   -1.07   -1.27   -1.35   -1.24   -0.87   -0.27    0.50    1.29    1.94
+    85.0    0.00    0.01   -0.02   -0.05   -0.10   -0.17   -0.26   -0.38   -0.52   -0.74   -0.97   -1.17   -1.28   -1.20   -0.90   -0.40    0.26    0.96    1.57
+    90.0    0.00    0.01    0.09   -0.03   -0.07   -0.13   -0.19   -0.29   -0.44   -0.62   -0.85   -1.04   -1.17   -1.13   -0.90   -0.46    0.10    0.70    1.22
+    95.0    0.00    0.01    0.02   -0.01   -0.05   -0.08   -0.14   -0.22   -0.34   -0.51   -0.70   -0.90   -1.03   -1.03   -0.83   -0.46    0.03    0.52    0.96
+   100.0    0.00    0.02    0.03    0.01   -0.02   -0.04   -0.08   -0.14   -0.24   -0.38   -0.56   -0.75   -0.87   -0.87   -0.70   -0.37    0.05    0.47    0.82
+   105.0    0.00    0.02    0.03    0.02    0.02   -0.01   -0.03   -0.07   -0.14   -0.27   -0.42   -0.59   -0.71   -0.71   -0.53   -0.22    0.18    0.55    0.82
+   110.0    0.00    0.02    0.05    0.04    0.04    0.03    0.02    0.43   -0.05   -0.14   -0.29   -0.43   -0.53   -0.52   -0.33    0.44    0.41    0.76    0.97
+   115.0    0.00    0.04    0.05    0.05    0.05    0.05    0.05    0.05    0.02   -0.04   -0.14   -0.27   -0.36   -0.31   -0.11    0.25    0.69    1.06    1.27
+   120.0    0.00    0.04    0.06    0.07    0.07    0.07    0.08    0.10    0.10    0.05   -0.01   -0.12   -0.18   -0.13    0.11    0.51    1.01    1.45    1.66
+   125.0    0.00    0.04    0.07    0.07    0.08    0.08    0.10    0.14    0.16    0.15    0.10    0.02   -0.03    0.05    0.32    0.78    1.35    1.87    2.14
+   130.0    0.00    0.04    0.08    0.08    0.09    0.09    0.11    0.17    0.21    0.23    0.20    0.15    0.12    0.20    0.50    1.01    1.66    2.28    2.63
+   135.0    0.00    0.05    0.08    0.08    0.09    0.10    0.12    0.18    0.24    0.29    0.29    0.26    0.24    0.35    0.64    1.19    1.92    2.64    3.09
+   140.0    0.00    0.05    0.08    0.09    0.09    0.09    0.12    0.20    0.27    0.34    0.37    0.35    0.34    0.44    0.76    1.34    2.12    2.93    3.45
+   145.0    0.00    0.05    0.08    0.09    0.09    0.09    0.12    0.21    0.29    0.39    0.43    0.42    0.43    0.51    0.83    1.41    2.24    3.11    3.71
+   150.0    0.00    0.05    0.08    0.09    0.09    0.09    0.12    0.20    0.31    0.41    0.47    0.48    0.49    0.57    0.85    1.44    2.28    3.19    3.84
+   155.0    0.00    0.05    0.08    0.09    0.09    0.09    0.12    0.19    0.32    0.43    0.50    0.52    0.51    0.59    0.87    1.42    2.25    3.16    3.83
+   160.0    0.00    0.05    0.08    0.09    0.08    0.08    0.12    0.19    0.30    0.43    0.51    0.52    0.53    0.59    0.84    1.35    2.15    3.04    3.70
+   165.0    0.00    0.05    0.08    0.08    0.07    0.07    0.11    0.17    0.28    0.41    0.49    0.52    0.53    0.58    0.79    1.27    2.01    2.85    3.49
+   170.0    0.00    0.05    0.08    0.07    0.06    0.06    0.08    0.14    0.26    0.37    0.46    0.50    0.51    0.55    0.74    1.17    1.84    2.62    3.22
+   175.0    0.00    0.05    0.07    0.06    0.05    0.04    0.06    0.11    0.21    0.32    0.40    0.45    0.46    0.51    0.68    1.06    1.66    2.39    2.93
+   180.0    0.00    0.04    0.06    0.05    0.04    0.02    0.04    0.07    0.16    0.25    0.34    0.39    0.41    0.46    0.61    0.95    1.50    2.15    2.66
+   185.0    0.00    0.04    0.06    0.05    0.03    0.35    0.01    0.03    0.10    0.17    0.26    0.30    0.34    0.40    0.54    0.84    1.34    1.94    2.44
+   190.0    0.00    0.04    0.05    0.03    0.28   -0.03   -0.04   -0.03    0.03    0.09    0.17    0.22    0.25    0.32    0.45    0.75    1.20    1.78    2.27
+   195.0    0.00    0.03    0.04    0.02   -0.01   -0.05   -0.08   -0.08   -0.06    0.68    0.07    0.12    0.17    0.24    0.37    0.64    1.09    1.64    2.14
+   200.0    0.00    0.03    0.03    0.19   -0.03   -0.09   -0.13   -0.15   -0.13   -0.09   -0.04    0.02    0.07    0.15    0.28    0.56    0.99    1.55    2.06
+   205.0    0.00    0.02    0.02   -0.02   -0.07   -0.11   -0.17   -0.20   -0.19   -0.18   -0.13   -0.08   -0.04    0.03    0.19    0.46    0.91    1.48    2.01
+   210.0    0.00    0.02    0.02   -0.03   -0.09   -0.15   -0.21   -0.26   -0.27   -0.25   -0.22   -0.20   -0.16   -0.09    0.07    0.37    0.83    1.41    1.96
+   215.0    0.00    0.02    0.10   -0.05   -0.11   -0.18   -0.25   -0.30   -0.33   -0.34   -0.33   -0.30   -0.27   -0.22   -0.05    0.27    0.76    1.35    1.88
+   220.0    0.00    0.01   -0.01   -0.07   -0.14   -0.22   -0.29   -0.34   -0.38   -0.41   -0.41   -0.42   -0.42   -0.35   -0.18    0.16    0.68    1.29    1.78
+   225.0    0.00    0.01   -0.01   -0.08   -0.16   -0.24   -0.33   -0.39   -0.44   -0.47   -0.51   -0.54   -0.55   -0.50   -0.32    0.06    0.60    1.21    1.65
+   230.0    0.00    0.02   -0.04   -0.09   -0.18   -0.28   -0.35   -0.43   -0.48   -0.55   -0.59   -0.66   -0.70   -0.66   -0.46   -0.05    0.51    1.11    1.48
+   235.0    0.00   -0.01   -0.05   -0.12   -0.20   -0.30   -0.39   -0.46   -0.52   -0.60   -0.69   -0.78   -0.84   -0.81   -0.59   -0.17    0.42    1.00    1.28
+   240.0    0.00   -0.01   -0.06   -0.13   -0.22   -0.32   -0.41   -0.49   -0.57   -0.66   -0.77   -0.90   -0.99   -0.96   -0.73   -0.29    0.34    0.87    1.07
+   245.0    0.00   -0.02   -0.07   -0.16   -0.24   -0.35   -0.45   -0.52   -0.61   -0.72   -0.87   -1.01   -1.12   -1.09   -0.86   -0.39    0.23    0.75    0.84
+   250.0    0.00   -0.02   -0.08   -0.17   -0.26   -0.39   -0.48   -0.57   -0.67   -0.79   -0.95   -1.11   -1.23   -1.22   -0.97   -0.50    0.12    0.61    0.65
+   255.0    0.00   -0.03   -0.09   -0.18   -0.29   -0.41   -0.52   -0.62   -0.72   -0.86   -1.03   -1.22   -1.33   -1.32   -1.06   -0.59    0.01    0.49    0.47
+   260.0    0.00   -0.03   -0.10   -0.19   -0.31   -0.44   -0.55   -0.66   -0.78   -0.94   -1.11   -1.29   -1.42   -1.39   -1.16   -0.69   -0.10    0.36    0.33
+   265.0    0.00   -0.04   -0.11   -0.21   -0.33   -0.46   -0.59   -0.72   -0.85   -1.00   -1.17   -1.36   -1.47   -1.46   -1.21   -0.76   -0.20    0.24    0.21
+   270.0    0.00   -0.04   -0.12   -0.22   -0.35   -0.49   -0.64   -0.77   -0.91   -1.06   -1.23   -1.39   -1.49   -1.48   -1.25   -0.82   -0.29    0.13    0.12
+   275.0    0.00   -0.04   -0.12   -0.23   -0.37   -0.53   -0.68   -0.82   -0.97   -1.11   -1.27   -1.41   -1.50   -1.48   -1.27   -0.88   -0.37    0.04    0.05
+   280.0    0.00   -0.05   -0.13   -0.24   -0.39   -0.56   -0.72   -0.87   -1.02   -1.15   -1.29   -1.41   -1.49   -1.47   -1.29   -0.91   -0.44   -0.04   -0.01
+   285.0    0.00   -0.05   -0.14   -0.25   -0.42   -0.58   -0.76   -0.92   -1.06   -1.18   -1.29   -1.40   -1.47   -1.43   -1.27   -0.94   -0.49   -0.12   -0.06
+   290.0    0.00   -0.05   -0.14   -0.26   -0.43   -0.61   -0.79   -0.96   -1.10   -1.20   -1.30   -1.37   -1.42   -1.40   -1.25   -0.93   -0.51   -0.16   -0.13
+   295.0    0.00   -0.06   -0.14   -0.27   -0.44   -0.63   -0.82   -1.00   -1.12   -1.21   -1.29   -1.35   -1.39   -1.36   -1.22   -0.92   -0.52   -0.18   -0.20
+   300.0    0.00   -0.06   -0.15   -0.28   -0.46   -0.65   -0.85   -1.01   -1.14   -1.23   -1.27   -1.32   -1.36   -1.33   -1.19   -0.90   -0.51   -0.19   -0.25
+   305.0    0.00   -0.06   -0.16   -0.30   -0.47   -0.67   -0.88   -1.04   -1.16   -1.23   -1.27   -1.30   -1.33   -1.31   -1.18   -0.87   -0.49   -0.18   -0.30
+   310.0    0.00   -0.06   -0.17   -0.31   -0.49   -0.69   -0.89   -1.06   -1.17   -1.23   -1.26   -1.30   -1.32   -1.30   -1.15   -0.85   -0.46   -0.16   -0.31
+   315.0    0.00   -0.07   -0.17   -0.32   -0.50   -0.70   -0.92   -1.08   -1.19   -1.25   -1.27   -1.31   -1.32   -1.30   -1.16   -0.84   -0.44   -0.13   -0.32
+   320.0    0.00   -0.07   -0.17   -0.33   -0.51   -0.72   -0.93   -1.10   -1.21   -1.27   -1.31   -1.32   -1.34   -1.31   -1.17   -0.84   -0.43   -0.12   -0.29
+   325.0    0.00   -0.07   -0.18   -0.33   -0.51   -0.73   -0.95   -1.12   -1.24   -1.30   -1.34   -1.36   -1.38   -1.36   -1.20   -0.86   -0.43   -0.10   -0.23
+   330.0    0.00   -0.08   -0.18   -0.34   -0.53   -0.74   -0.97   -1.15   -1.27   -1.33   -1.37   -1.40   -1.41   -1.38   -1.23   -0.91   -0.46   -0.10   -0.14
+   335.0    0.00   -0.08   -0.18   -0.34   -0.54   -0.75   -0.99   -1.16   -1.31   -1.38   -1.41   -1.44   -1.45   -1.43   -1.27   -0.96   -0.52   -0.12   -0.05
+   340.0    0.00   -0.08   -0.19   -0.35   -0.54   -0.76   -0.99   -1.19   -1.33   -1.42   -1.46   -1.48   -1.49   -1.46   -1.31   -1.01   -0.59   -0.15    0.07
+   345.0    0.00   -0.08   -0.19   -0.35   -0.55   -0.76   -1.01   -1.21   -1.36   -1.45   -1.49   -1.51   -1.51   -1.46   -1.32   -1.07   -0.68   -0.20    0.16
+   350.0    0.00   -0.08   -0.18   -0.35   -0.54   -0.77   -1.02   -1.22   -1.38   -1.48   -1.53   -1.53   -1.51   -1.45   -1.33   -1.10   -0.73   -0.26    0.25
+   355.0    0.00   -0.08   -0.18   -0.34   -0.54   -0.76   -1.01   -1.22   -1.39   -1.50   -1.54   -1.54   -1.51   -1.44   -1.32   -1.11   -0.77   -0.30    0.32
+   360.0    0.00   -0.07   -0.18   -0.35   -0.54   -0.75   -1.00   -1.21   -1.39   -1.50   -1.54   -1.54   -1.47   -1.39   -1.26   -1.06   -0.77   -0.30    0.40
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+     -1.20      0.23     62.13                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.01   -0.05   -0.15   -0.32   -0.57   -0.85   -1.09   -1.21   -1.15   -0.92   -0.58   -0.29   -0.14   -0.20   -0.38   -0.43   -0.05    1.04
+     0.0    0.00    0.04    0.09    0.11    0.08   -0.01   -0.15   -0.32   -0.47   -0.56   -0.54   -0.41   -0.22   -0.05    0.04    0.07    0.13    0.51    1.63
+     5.0    0.00    0.04    0.08    0.09    0.07   -0.02   -0.15   -0.34   -0.49   -0.59   -0.58   -0.46   -0.29   -0.13   -0.06   -0.07   -0.05    0.30    1.37
+    10.0    0.00    0.04    0.07    0.08    0.05   -0.03   -0.16   -0.34   -0.51   -0.61   -0.62   -0.51   -0.35   -0.22   -0.18   -0.22   -0.23    0.08    1.10
+    15.0    0.00    0.03    0.06    0.07    0.04   -0.04   -0.18   -0.36   -0.52   -0.62   -0.62   -0.54   -0.39   -0.30   -0.29   -0.39   -0.41   -0.13    0.82
+    20.0    0.00    0.03    0.05    0.06    0.03   -0.05   -0.20   -0.37   -0.52   -0.62   -0.62   -0.53   -0.42   -0.36   -0.40   -0.53   -0.58   -0.33    0.55
+    25.0    0.00    0.03    0.04    0.05    0.01   -0.07   -0.22   -0.37   -0.53   -0.62   -0.61   -0.52   -0.43   -0.40   -0.48   -0.64   -0.72   -0.49    0.31
+    30.0    0.00    0.02    0.03    0.03   -0.01   -0.10   -0.24   -0.41   -0.55   -0.62   -0.59   -0.49   -0.40   -0.40   -0.52   -0.71   -0.81   -0.60    0.11
+    35.0    0.00    0.02    0.02    0.01   -0.04   -0.12   -0.27   -0.45   -0.58   -0.62   -0.58   -0.45   -0.35   -0.35   -0.50   -0.73   -0.85   -0.66   -0.02
+    40.0    0.00    0.02    0.01   -0.01   -0.06   -0.16   -0.32   -0.49   -0.62   -0.64   -0.56   -0.40   -0.27   -0.28   -0.45   -0.69   -0.83   -0.65   -0.05
+    45.0    0.00    0.02   -0.01   -0.02   -0.08   -0.21   -0.37   -0.55   -0.67   -0.67   -0.55   -0.35   -0.19   -0.18   -0.35   -0.60   -0.74   -0.55    0.02
+    50.0    0.00    0.02   -0.02   -0.04   -0.11   -0.24   -0.42   -0.61   -0.73   -0.71   -0.55   -0.30   -0.10   -0.05   -0.21   -0.47   -0.61   -0.41    0.20
+    55.0    0.00   -0.01   -0.02   -0.06   -0.13   -0.28   -0.48   -0.67   -0.78   -0.75   -0.55   -0.25    0.08    0.08   -0.05   -0.31   -0.43   -0.19    0.48
+    60.0    0.00   -0.01   -0.04   -0.07   -0.16   -0.32   -0.53   -0.73   -0.85   -0.79   -0.56   -0.21    0.09    0.22    0.11   -0.13   -0.23    0.07    0.84
+    65.0    0.00   -0.01   -0.05   -0.09   -0.20   -0.36   -0.57   -0.79   -0.89   -0.82   -0.56   -0.18    0.17    0.33    0.25    0.04   -0.02    0.35    1.24
+    70.0    0.00   -0.03   -0.06   -0.11   -0.22   -0.39   -0.62   -0.83   -0.93   -0.85   -0.56   -0.15    0.23    0.43    0.37    0.19    0.17    0.62    1.66
+    75.0    0.00   -0.03   -0.06   -0.13   -0.24   -0.43   -0.65   -0.86   -0.96   -0.87   -0.57   -0.14    0.27    0.49    0.45    0.29    0.31    0.85    2.03
+    80.0    0.00   -0.04   -0.08   -0.16   -0.28   -0.45   -0.69   -0.89   -0.98   -0.88   -0.57   -0.12    0.28    0.50    0.49    0.36    0.41    1.02    2.33
+    85.0    0.00   -0.04   -0.09   -0.17   -0.30   -0.49   -0.72   -0.93   -1.00   -0.89   -0.56   -0.13    0.27    0.50    0.49    0.36    0.45    1.11    2.51
+    90.0    0.00   -0.04   -0.10   -0.19   -0.34   -0.54   -0.77   -0.96   -1.02   -0.90   -0.58   -0.15    0.24    0.46    0.44    0.31    0.41    1.09    2.57
+    95.0    0.00   -0.04   -0.11   -0.21   -0.37   -0.59   -0.81   -1.00   -1.06   -0.92   -0.60   -0.17    0.21    0.39    0.36    0.23    0.31    0.99    2.49
+   100.0    0.00   -0.04   -0.13   -0.24   -0.41   -0.63   -0.88   -1.06   -1.11   -0.97   -0.64   -0.22    0.14    0.32    0.27    0.11    0.16    0.81    2.29
+   105.0    0.00   -0.05   -0.13   -0.25   -0.45   -0.69   -0.95   -1.14   -1.18   -1.03   -0.69   -0.26    0.08    0.24    0.16   -0.02   -0.02    0.58    1.99
+   110.0    0.00   -0.05   -0.14   -0.28   -0.49   -0.76   -1.03   -1.23   -1.28   -1.12   -0.77   -0.34    0.01    0.15    0.04   -0.17   -0.21    0.31    1.64
+   115.0    0.00   -0.06   -0.16   -0.30   -0.53   -0.82   -1.12   -1.35   -1.39   -1.23   -0.87   -0.42   -0.07    0.06   -0.05   -0.31   -0.40    0.03    1.27
+   120.0    0.00   -0.06   -0.16   -0.32   -0.57   -0.89   -1.22   -1.47   -1.52   -1.35   -0.97   -0.52   -0.16   -0.03   -0.15   -0.43   -0.58   -0.22    0.92
+   125.0    0.00   -0.06   -0.17   -0.35   -0.61   -0.96   -1.31   -1.58   -1.65   -1.48   -1.10   -0.64   -0.26   -0.11   -0.25   -0.54   -0.72   -0.43    0.61
+   130.0    0.00   -0.07   -0.17   -0.36   -0.65   -1.02   -1.40   -1.70   -1.78   -1.62   -1.23   -0.75   -0.36   -0.20   -0.33   -0.63   -0.84   -0.59    0.40
+   135.0    0.00   -0.07   -0.18   -0.38   -0.67   -1.07   -1.48   -1.79   -1.90   -1.74   -1.35   -0.86   -0.46   -0.30   -0.41   -0.71   -0.93   -0.71    0.25
+   140.0    0.00   -0.07   -0.18   -0.38   -0.70   -1.11   -1.55   -1.87   -2.00   -1.86   -1.47   -0.98   -0.57   -0.39   -0.49   -0.79   -1.00   -0.78    0.19
+   145.0    0.00   -0.07   -0.19   -0.40   -0.71   -1.13   -1.58   -1.93   -2.08   -1.95   -1.58   -1.08   -0.67   -0.48   -0.59   -0.87   -1.06   -0.82    0.18
+   150.0    0.00   -0.07   -0.19   -0.40   -0.72   -1.14   -1.61   -1.97   -2.13   -2.02   -1.66   -1.18   -0.77   -0.58   -0.68   -0.95   -1.13   -0.86    0.21
+   155.0    0.00   -0.07   -0.19   -0.40   -0.72   -1.15   -1.62   -1.99   -2.16   -2.06   -1.73   -1.26   -0.87   -0.69   -0.79   -1.05   -1.23   -0.92    0.25
+   160.0    0.00   -0.07   -0.19   -0.39   -0.72   -1.14   -1.60   -1.98   -2.17   -2.10   -1.78   -1.35   -0.95   -0.79   -0.89   -1.17   -1.35   -1.00    0.25
+   165.0    0.00   -0.07   -0.19   -0.39   -0.71   -1.13   -1.58   -1.97   -2.16   -2.10   -1.81   -1.40   -1.03   -0.87   -1.01   -1.31   -1.49   -1.13    0.22
+   170.0    0.00   -0.07   -0.18   -0.39   -0.70   -1.12   -1.56   -1.95   -2.15   -2.10   -1.83   -1.44   -1.09   -0.96   -1.11   -1.45   -1.65   -1.29    0.15
+   175.0    0.00   -0.07   -0.17   -0.37   -0.70   -1.10   -1.54   -1.93   -2.14   -2.10   -1.86   -1.47   -1.15   -1.04   -1.22   -1.59   -1.83   -1.46    0.04
+   180.0    0.00   -0.07   -0.17   -0.37   -0.68   -1.09   -1.52   -1.91   -2.13   -2.11   -1.86   -1.50   -1.18   -1.10   -1.32   -1.72   -2.01   -1.66   -0.11
+   185.0    0.00   -0.06   -0.17   -0.37   -0.67   -1.07   -1.51   -1.90   -2.13   -2.11   -1.88   -1.53   -1.23   -1.15   -1.39   -1.83   -2.16   -1.83   -0.26
+   190.0    0.00   -0.06   -0.16   -0.36   -0.66   -1.07   -1.51   -1.90   -2.13   -2.13   -1.90   -1.56   -1.26   -1.20   -1.45   -1.91   -2.27   -1.96   -0.39
+   195.0    0.00   -0.06   -0.16   -0.36   -0.66   -1.07   -1.50   -1.89   -2.13   -2.14   -1.92   -1.59   -1.29   -1.24   -1.48   -1.96   -2.32   -2.02   -0.49
+   200.0    0.00   -0.05   -0.16   -0.36   -0.66   -1.06   -1.50   -1.89   -2.14   -2.16   -1.95   -1.62   -1.34   -1.26   -1.50   -1.95   -2.30   -2.01   -0.52
+   205.0    0.00   -0.05   -0.15   -0.35   -0.65   -1.06   -1.50   -1.90   -2.14   -2.16   -1.97   -1.65   -1.37   -1.28   -1.49   -1.91   -2.21   -1.91   -0.48
+   210.0    0.00   -0.05   -0.15   -0.35   -0.65   -1.06   -1.49   -1.89   -2.14   -2.17   -1.99   -1.68   -1.39   -1.29   -1.46   -1.81   -2.05   -1.73   -0.37
+   215.0    0.00   -0.04   -0.15   -0.34   -0.65   -1.04   -1.48   -1.87   -2.11   -2.15   -1.99   -1.68   -1.40   -1.27   -1.39   -1.67   -1.83   -1.49   -0.22
+   220.0    0.00   -0.03   -0.13   -0.33   -0.64   -1.03   -1.46   -1.85   -2.09   -2.13   -1.96   -1.67   -1.38   -1.24   -1.29   -1.48   -1.57   -1.18   -0.02
+   225.0    0.00   -0.03   -0.13   -0.32   -0.62   -1.02   -1.44   -1.81   -2.04   -2.07   -1.93   -1.63   -1.34   -1.17   -1.16   -1.28   -1.28   -0.87    0.20
+   230.0    0.00   -0.03   -0.12   -0.30   -0.61   -1.00   -1.42   -1.77   -2.00   -2.02   -1.86   -1.58   -1.26   -1.06   -1.00   -1.04   -0.99   -0.57    0.40
+   235.0    0.00   -0.02   -0.10   -0.29   -0.59   -0.97   -1.37   -1.72   -1.93   -1.94   -1.77   -1.47   -1.14   -0.90   -0.81   -0.79   -0.70   -0.29    0.58
+   240.0    0.00   -0.01   -0.10   -0.28   -0.56   -0.94   -1.33   -1.66   -1.85   -1.86   -1.66   -1.34   -0.99   -0.71   -0.57   -0.54   -0.43   -0.05    0.72
+   245.0    0.00   -0.01   -0.09   -0.25   -0.54   -0.90   -1.28   -1.60   -1.78   -1.76   -1.54   -1.17   -0.79   -0.48   -0.33   -0.29   -0.20    0.13    0.83
+   250.0    0.00   -0.01   -0.07   -0.23   -0.51   -0.86   -1.23   -1.55   -1.71   -1.66   -1.40   -0.99   -0.56   -0.23   -0.06   -0.05   -0.01    0.27    0.89
+   255.0    0.00    0.00   -0.06   -0.21   -0.47   -0.82   -1.18   -1.49   -1.63   -1.55   -1.25   -0.80   -0.31    0.03    0.19    0.16    0.15    0.35    0.95
+   260.0    0.00    0.01   -0.04   -0.19   -0.44   -0.77   -1.13   -1.43   -1.55   -1.44   -1.10   -0.59   -0.07    0.30    0.43    0.35    0.26    0.42    1.01
+   265.0    0.00    0.01   -0.03   -0.16   -0.40   -0.72   -1.08   -1.36   -1.46   -1.33   -0.94   -0.38    0.17    0.55    0.65    0.51    0.35    0.47    1.10
+   270.0    0.00    0.01   -0.02   -0.13   -0.35   -0.67   -1.00   -1.27   -1.37   -1.20   -0.78   -0.19    0.38    0.76    0.82    0.62    0.41    0.52    1.22
+   275.0    0.00    0.02    0.03   -0.11   -0.31   -0.61   -0.94   -1.20   -1.26   -1.08   -0.62   -0.01    0.56    0.91    0.94    0.70    0.47    0.60    1.38
+   280.0    0.00    0.03    0.01   -0.08   -0.26   -0.54   -0.85   -1.09   -1.14   -0.93   -0.47    0.13    0.70    1.02    1.01    0.75    0.51    0.69    1.58
+   285.0    0.00    0.04    0.02   -0.05   -0.21   -0.48   -0.75   -0.97   -1.02   -0.79   -0.33    0.26    0.78    1.06    1.02    0.75    0.55    0.82    1.83
+   290.0    0.00    0.04    0.05   -0.02   -0.16   -0.40   -0.66   -0.85   -0.87   -0.64   -0.20    0.35    0.82    1.05    0.97    0.73    0.60    0.97    2.09
+   295.0    0.00    0.05    0.05    0.01   -0.11   -0.33   -0.56   -0.72   -0.73   -0.50   -0.09    0.41    0.81    0.98    0.89    0.68    0.63    1.11    2.36
+   300.0    0.00    0.05    0.06    0.04   -0.07   -0.26   -0.47   -0.60   -0.58   -0.37    0.01    0.43    0.77    0.89    0.78    0.61    0.67    1.27    2.60
+   305.0    0.00    0.05    0.08    0.06   -0.04   -0.19   -0.36   -0.48   -0.45   -0.25    0.07    0.44    0.69    0.77    0.66    0.55    0.70    1.41    2.80
+   310.0    0.00    0.05    0.09    0.07    0.19   -0.14   -0.28   -0.37   -0.34   -0.17    0.11    0.41    0.62    0.64    0.54    0.48    0.73    1.51    2.94
+   315.0    0.00    0.05    0.09    0.09    0.03   -0.09   -0.21   -0.30   -0.26   -0.11    0.14    0.37    0.52    0.52    0.45    0.45    0.74    1.57    3.02
+   320.0    0.00    0.05    0.09    0.11    0.06   -0.04   -0.15   -0.24   -0.21   -0.08    0.11    0.31    0.42    0.42    0.37    0.41    0.75    1.60    3.03
+   325.0    0.00    0.06    0.10    0.12    0.07    0.24   -0.12   -0.19   -0.19   -0.09    0.06    0.23    0.32    0.33    0.31    0.38    0.75    1.58    2.98
+   330.0    0.00    0.06    0.10    0.12    0.09    0.02   -0.09   -0.17   -0.19   -0.13    0.14    0.14    0.24    0.27    0.29    0.38    0.72    1.50    2.87
+   335.0    0.00    0.06    0.10    0.13    0.10    0.02   -0.09   -0.18   -0.23   -0.19   -0.08    0.05    0.15    0.22    0.27    0.37    0.69    1.40    2.72
+   340.0    0.00    0.06    0.10    0.13    0.11    0.02   -0.09   -0.21   -0.27   -0.27   -0.19   -0.05    0.08    0.18    0.25    0.36    0.63    1.27    2.54
+   345.0    0.00    0.05    0.10    0.12    0.10    0.02   -0.11   -0.24   -0.33   -0.35   -0.28   -0.15    0.18    0.14    0.23    0.32    0.53    1.11    2.34
+   350.0    0.00    0.05    0.09    0.11    0.09    0.02   -0.12   -0.26   -0.40   -0.43   -0.38   -0.25   -0.07    0.09    0.19    0.26    0.42    0.92    2.11
+   355.0    0.00    0.05    0.09    0.11    0.08    0.01   -0.13   -0.30   -0.43   -0.50   -0.46   -0.34   -0.14    0.02    0.13    0.18    0.29    0.72    1.88
+   360.0    0.00    0.04    0.09    0.11    0.08   -0.01   -0.15   -0.32   -0.47   -0.56   -0.54   -0.41   -0.22   -0.05    0.04    0.07    0.13    0.51    1.63
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+LEIAX1203+GNSS  NONE                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH              10    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     4                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+Number of Calibrated Antennas GPS:      010                 COMMENT             
+Number of Individual Calibrations GPS:  020                 COMMENT             
+Number of Calibrated Antennas GLO:      010                 COMMENT             
+Number of Individual Calibrations GLO:  022                 COMMENT             
+# GLONASS PCV                                               COMMENT             
+#  derived from Delta PCV per 25.0 MHz                      COMMENT             
+#  for frequency channel number k=0                         COMMENT             
+   G01                                                      START OF FREQUENCY  
+     -1.03      1.35     58.32                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.02   -0.08   -0.19   -0.34   -0.52   -0.69   -0.83   -0.92   -0.94   -0.91   -0.84   -0.74   -0.60   -0.38   -0.04    0.43    1.03    1.67
+     0.0    0.00   -0.07   -0.18   -0.32   -0.47   -0.64   -0.80   -0.93   -0.98   -0.91   -0.73   -0.46   -0.16    0.10    0.29    0.45    0.72    1.26    2.11
+     5.0    0.00   -0.07   -0.18   -0.31   -0.46   -0.63   -0.79   -0.91   -0.97   -0.92   -0.75   -0.48   -0.18    0.09    0.29    0.47    0.74    1.26    2.09
+    10.0    0.00   -0.07   -0.17   -0.30   -0.45   -0.61   -0.77   -0.90   -0.96   -0.93   -0.77   -0.52   -0.21    0.07    0.30    0.50    0.78    1.28    2.07
+    15.0    0.00   -0.06   -0.16   -0.29   -0.44   -0.60   -0.76   -0.89   -0.96   -0.94   -0.81   -0.57   -0.27    0.03    0.29    0.53    0.83    1.32    2.06
+    20.0    0.00   -0.06   -0.16   -0.28   -0.43   -0.58   -0.74   -0.87   -0.95   -0.95   -0.85   -0.64   -0.35   -0.03    0.27    0.55    0.89    1.36    2.05
+    25.0    0.00   -0.05   -0.15   -0.27   -0.41   -0.56   -0.72   -0.85   -0.94   -0.96   -0.89   -0.71   -0.44   -0.13    0.21    0.55    0.92    1.40    2.03
+    30.0    0.00   -0.05   -0.14   -0.26   -0.40   -0.54   -0.69   -0.82   -0.92   -0.96   -0.93   -0.79   -0.56   -0.25    0.11    0.50    0.92    1.41    2.00
+    35.0    0.00   -0.04   -0.13   -0.24   -0.38   -0.52   -0.66   -0.79   -0.90   -0.96   -0.96   -0.87   -0.68   -0.39   -0.02    0.40    0.87    1.37    1.94
+    40.0    0.00   -0.04   -0.12   -0.23   -0.36   -0.50   -0.64   -0.76   -0.87   -0.95   -0.99   -0.95   -0.81   -0.55   -0.19    0.26    0.75    1.27    1.83
+    45.0    0.00   -0.03   -0.11   -0.22   -0.35   -0.48   -0.62   -0.74   -0.84   -0.94   -1.01   -1.02   -0.93   -0.73   -0.38    0.07    0.58    1.11    1.67
+    50.0    0.00   -0.03   -0.10   -0.20   -0.33   -0.47   -0.59   -0.71   -0.82   -0.93   -1.02   -1.08   -1.05   -0.90   -0.59   -0.15    0.36    0.89    1.44
+    55.0    0.00   -0.02   -0.08   -0.19   -0.31   -0.45   -0.58   -0.69   -0.80   -0.91   -1.03   -1.12   -1.15   -1.05   -0.79   -0.39    0.10    0.61    1.17
+    60.0    0.00   -0.01   -0.07   -0.17   -0.30   -0.44   -0.57   -0.68   -0.79   -0.90   -1.03   -1.15   -1.22   -1.18   -0.98   -0.62   -0.17    0.31    0.85
+    65.0    0.00   -0.01   -0.06   -0.16   -0.28   -0.43   -0.56   -0.68   -0.78   -0.89   -1.02   -1.17   -1.27   -1.27   -1.12   -0.82   -0.43    0.00    0.51
+    70.0    0.00    0.00   -0.05   -0.14   -0.27   -0.42   -0.56   -0.67   -0.78   -0.88   -1.02   -1.17   -1.29   -1.33   -1.23   -0.98   -0.65   -0.28    0.18
+    75.0    0.00    0.00   -0.04   -0.13   -0.26   -0.41   -0.55   -0.68   -0.78   -0.88   -1.00   -1.15   -1.29   -1.35   -1.28   -1.08   -0.80   -0.50   -0.10
+    80.0    0.00    0.01   -0.03   -0.11   -0.24   -0.40   -0.55   -0.68   -0.78   -0.87   -0.99   -1.13   -1.26   -1.32   -1.27   -1.11   -0.88   -0.64   -0.31
+    85.0    0.00    0.02   -0.01   -0.10   -0.23   -0.39   -0.55   -0.68   -0.78   -0.87   -0.97   -1.09   -1.21   -1.27   -1.22   -1.07   -0.86   -0.67   -0.41
+    90.0    0.00    0.02    0.00   -0.08   -0.21   -0.37   -0.54   -0.67   -0.77   -0.85   -0.94   -1.05   -1.15   -1.19   -1.13   -0.96   -0.76   -0.59   -0.39
+    95.0    0.00    0.03    0.01   -0.07   -0.20   -0.36   -0.52   -0.66   -0.76   -0.83   -0.91   -1.00   -1.08   -1.10   -1.01   -0.81   -0.59   -0.41   -0.24
+   100.0    0.00    0.03    0.02   -0.05   -0.18   -0.34   -0.51   -0.64   -0.74   -0.81   -0.88   -0.95   -1.01   -1.00   -0.87   -0.64   -0.37   -0.15    0.02
+   105.0    0.00    0.04    0.03   -0.04   -0.16   -0.32   -0.48   -0.62   -0.71   -0.78   -0.84   -0.90   -0.94   -0.90   -0.74   -0.45   -0.12    0.17    0.37
+   110.0    0.00    0.04    0.03   -0.03   -0.15   -0.30   -0.46   -0.59   -0.68   -0.74   -0.79   -0.85   -0.88   -0.82   -0.62   -0.29    0.13    0.51    0.78
+   115.0    0.00    0.04    0.04   -0.02   -0.13   -0.28   -0.44   -0.56   -0.64   -0.70   -0.75   -0.79   -0.81   -0.75   -0.53   -0.15    0.34    0.83    1.21
+   120.0    0.00    0.05    0.05   -0.01   -0.12   -0.27   -0.41   -0.53   -0.61   -0.66   -0.70   -0.74   -0.76   -0.69   -0.47   -0.06    0.51    1.11    1.61
+   125.0    0.00    0.05    0.05    0.00   -0.11   -0.25   -0.40   -0.51   -0.58   -0.62   -0.65   -0.68   -0.70   -0.65   -0.44   -0.01    0.60    1.30    1.94
+   130.0    0.00    0.05    0.05    0.00   -0.10   -0.24   -0.38   -0.49   -0.56   -0.58   -0.60   -0.63   -0.65   -0.62   -0.43   -0.02    0.62    1.41    2.17
+   135.0    0.00    0.05    0.06    0.01   -0.10   -0.24   -0.38   -0.49   -0.54   -0.56   -0.56   -0.58   -0.61   -0.59   -0.44   -0.06    0.58    1.43    2.29
+   140.0    0.00    0.05    0.06    0.01   -0.10   -0.24   -0.38   -0.48   -0.54   -0.54   -0.53   -0.53   -0.56   -0.57   -0.46   -0.13    0.49    1.37    2.31
+   145.0    0.00    0.05    0.06    0.01   -0.10   -0.24   -0.38   -0.49   -0.54   -0.53   -0.51   -0.49   -0.52   -0.54   -0.48   -0.22    0.36    1.24    2.22
+   150.0    0.00    0.05    0.05    0.00   -0.10   -0.25   -0.39   -0.50   -0.55   -0.54   -0.49   -0.46   -0.48   -0.52   -0.50   -0.29    0.23    1.08    2.07
+   155.0    0.00    0.05    0.05    0.00   -0.11   -0.25   -0.40   -0.52   -0.56   -0.54   -0.49   -0.44   -0.44   -0.49   -0.50   -0.35    0.11    0.92    1.88
+   160.0    0.00    0.05    0.05   -0.01   -0.12   -0.26   -0.41   -0.53   -0.58   -0.56   -0.49   -0.43   -0.41   -0.46   -0.49   -0.38    0.03    0.78    1.69
+   165.0    0.00    0.04    0.04   -0.02   -0.13   -0.27   -0.43   -0.55   -0.60   -0.58   -0.50   -0.42   -0.39   -0.43   -0.47   -0.38   -0.01    0.69    1.54
+   170.0    0.00    0.04    0.03   -0.02   -0.14   -0.28   -0.44   -0.56   -0.62   -0.60   -0.52   -0.43   -0.38   -0.40   -0.42   -0.34    0.00    0.65    1.45
+   175.0    0.00    0.04    0.03   -0.03   -0.15   -0.29   -0.45   -0.57   -0.64   -0.62   -0.54   -0.45   -0.38   -0.37   -0.37   -0.28    0.05    0.68    1.42
+   180.0    0.00    0.03    0.02   -0.05   -0.16   -0.30   -0.46   -0.58   -0.65   -0.64   -0.57   -0.47   -0.38   -0.34   -0.32   -0.20    0.14    0.75    1.47
+   185.0    0.00    0.03    0.01   -0.06   -0.17   -0.31   -0.46   -0.59   -0.67   -0.67   -0.60   -0.49   -0.39   -0.32   -0.26   -0.11    0.25    0.87    1.58
+   190.0    0.00    0.02    0.00   -0.07   -0.18   -0.33   -0.48   -0.60   -0.68   -0.69   -0.62   -0.52   -0.41   -0.31   -0.21   -0.02    0.37    1.00    1.73
+   195.0    0.00    0.02   -0.01   -0.08   -0.20   -0.34   -0.49   -0.62   -0.70   -0.71   -0.65   -0.54   -0.42   -0.30   -0.17    0.06    0.47    1.12    1.89
+   200.0    0.00    0.01   -0.02   -0.10   -0.21   -0.36   -0.51   -0.63   -0.72   -0.73   -0.67   -0.57   -0.44   -0.30   -0.14    0.11    0.55    1.23    2.03
+   205.0    0.00    0.01   -0.03   -0.11   -0.23   -0.38   -0.53   -0.66   -0.74   -0.75   -0.70   -0.59   -0.46   -0.31   -0.13    0.14    0.60    1.29    2.13
+   210.0    0.00    0.00   -0.04   -0.13   -0.25   -0.40   -0.55   -0.68   -0.76   -0.77   -0.72   -0.62   -0.48   -0.33   -0.15    0.14    0.61    1.30    2.17
+   215.0    0.00    0.00   -0.05   -0.15   -0.28   -0.43   -0.58   -0.71   -0.79   -0.80   -0.74   -0.64   -0.51   -0.37   -0.18    0.11    0.57    1.26    2.14
+   220.0    0.00   -0.01   -0.06   -0.16   -0.30   -0.46   -0.61   -0.74   -0.82   -0.82   -0.77   -0.67   -0.56   -0.42   -0.24    0.05    0.51    1.19    2.05
+   225.0    0.00   -0.01   -0.07   -0.18   -0.32   -0.49   -0.65   -0.77   -0.85   -0.85   -0.80   -0.71   -0.61   -0.49   -0.31   -0.02    0.43    1.08    1.91
+   230.0    0.00   -0.02   -0.09   -0.20   -0.35   -0.51   -0.68   -0.81   -0.88   -0.88   -0.83   -0.76   -0.67   -0.57   -0.40   -0.12    0.34    0.97    1.74
+   235.0    0.00   -0.02   -0.10   -0.21   -0.37   -0.54   -0.71   -0.84   -0.90   -0.91   -0.87   -0.81   -0.76   -0.67   -0.51   -0.21    0.25    0.86    1.57
+   240.0    0.00   -0.03   -0.11   -0.23   -0.39   -0.57   -0.74   -0.87   -0.93   -0.94   -0.91   -0.88   -0.85   -0.78   -0.62   -0.31    0.17    0.77    1.42
+   245.0    0.00   -0.04   -0.12   -0.24   -0.41   -0.60   -0.77   -0.90   -0.96   -0.98   -0.96   -0.95   -0.95   -0.90   -0.74   -0.40    0.11    0.71    1.30
+   250.0    0.00   -0.04   -0.13   -0.26   -0.43   -0.63   -0.80   -0.93   -1.00   -1.01   -1.02   -1.03   -1.05   -1.02   -0.85   -0.48    0.07    0.69    1.23
+   255.0    0.00   -0.05   -0.14   -0.27   -0.45   -0.65   -0.83   -0.96   -1.03   -1.06   -1.07   -1.11   -1.15   -1.13   -0.94   -0.54    0.06    0.70    1.21
+   260.0    0.00   -0.05   -0.14   -0.29   -0.47   -0.67   -0.86   -1.00   -1.07   -1.10   -1.13   -1.18   -1.24   -1.22   -1.01   -0.56    0.08    0.75    1.24
+   265.0    0.00   -0.06   -0.15   -0.30   -0.49   -0.70   -0.89   -1.04   -1.12   -1.16   -1.19   -1.25   -1.30   -1.27   -1.05   -0.56    0.13    0.83    1.31
+   270.0    0.00   -0.06   -0.16   -0.31   -0.50   -0.72   -0.93   -1.08   -1.17   -1.21   -1.25   -1.30   -1.34   -1.29   -1.04   -0.53    0.20    0.93    1.40
+   275.0    0.00   -0.06   -0.17   -0.32   -0.52   -0.74   -0.96   -1.12   -1.22   -1.27   -1.29   -1.33   -1.35   -1.28   -1.00   -0.46    0.29    1.04    1.51
+   280.0    0.00   -0.07   -0.17   -0.33   -0.53   -0.76   -0.99   -1.17   -1.27   -1.32   -1.33   -1.34   -1.33   -1.22   -0.91   -0.36    0.39    1.14    1.62
+   285.0    0.00   -0.07   -0.18   -0.33   -0.54   -0.78   -1.02   -1.21   -1.32   -1.36   -1.36   -1.33   -1.27   -1.12   -0.79   -0.23    0.51    1.25    1.72
+   290.0    0.00   -0.07   -0.18   -0.34   -0.55   -0.79   -1.04   -1.24   -1.37   -1.40   -1.37   -1.30   -1.19   -0.99   -0.64   -0.08    0.63    1.34    1.80
+   295.0    0.00   -0.08   -0.19   -0.34   -0.55   -0.80   -1.06   -1.27   -1.40   -1.42   -1.36   -1.25   -1.08   -0.84   -0.47    0.07    0.75    1.42    1.86
+   300.0    0.00   -0.08   -0.19   -0.35   -0.56   -0.81   -1.07   -1.28   -1.41   -1.43   -1.34   -1.18   -0.96   -0.68   -0.30    0.22    0.86    1.49    1.91
+   305.0    0.00   -0.08   -0.19   -0.35   -0.56   -0.81   -1.07   -1.29   -1.41   -1.41   -1.30   -1.10   -0.84   -0.52   -0.13    0.37    0.95    1.54    1.95
+   310.0    0.00   -0.08   -0.20   -0.35   -0.56   -0.80   -1.06   -1.27   -1.39   -1.38   -1.25   -1.01   -0.71   -0.37    0.02    0.48    1.03    1.58    1.98
+   315.0    0.00   -0.08   -0.20   -0.35   -0.55   -0.79   -1.04   -1.25   -1.36   -1.34   -1.18   -0.92   -0.60   -0.24    0.14    0.57    1.07    1.60    2.01
+   320.0    0.00   -0.08   -0.20   -0.35   -0.54   -0.78   -1.01   -1.21   -1.31   -1.28   -1.11   -0.83   -0.49   -0.14    0.23    0.62    1.09    1.61    2.05
+   325.0    0.00   -0.08   -0.20   -0.35   -0.54   -0.76   -0.98   -1.17   -1.26   -1.21   -1.03   -0.74   -0.40   -0.06    0.28    0.64    1.07    1.59    2.08
+   330.0    0.00   -0.08   -0.20   -0.34   -0.53   -0.74   -0.95   -1.12   -1.20   -1.14   -0.95   -0.66   -0.33    0.00    0.31    0.63    1.03    1.56    2.11
+   335.0    0.00   -0.08   -0.20   -0.34   -0.52   -0.72   -0.92   -1.07   -1.14   -1.08   -0.88   -0.59   -0.27    0.04    0.31    0.59    0.97    1.51    2.14
+   340.0    0.00   -0.08   -0.19   -0.34   -0.51   -0.70   -0.89   -1.03   -1.09   -1.02   -0.82   -0.54   -0.22    0.07    0.31    0.55    0.90    1.45    2.15
+   345.0    0.00   -0.08   -0.19   -0.33   -0.50   -0.68   -0.86   -1.00   -1.04   -0.97   -0.78   -0.49   -0.19    0.08    0.29    0.50    0.83    1.39    2.16
+   350.0    0.00   -0.08   -0.19   -0.33   -0.49   -0.67   -0.84   -0.97   -1.01   -0.94   -0.75   -0.47   -0.16    0.09    0.28    0.46    0.77    1.33    2.15
+   355.0    0.00   -0.08   -0.19   -0.32   -0.48   -0.65   -0.82   -0.94   -0.99   -0.92   -0.73   -0.45   -0.15    0.10    0.28    0.44    0.73    1.28    2.13
+   360.0    0.00   -0.07   -0.18   -0.32   -0.47   -0.64   -0.80   -0.93   -0.98   -0.91   -0.73   -0.46   -0.16    0.10    0.29    0.45    0.72    1.26    2.11
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.20     -2.38     55.54                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.04   -0.15   -0.29   -0.43   -0.57   -0.69   -0.80   -0.87   -0.84   -0.66   -0.33    0.08    0.41    0.50    0.30   -0.02   -0.08    0.62
+     0.0    0.00    0.01   -0.03   -0.09   -0.12   -0.12   -0.13   -0.17   -0.26   -0.38   -0.42   -0.31   -0.01    0.40    0.76    0.90    0.82    0.78    1.42
+     5.0    0.00    0.01   -0.03   -0.08   -0.10   -0.10   -0.10   -0.15   -0.25   -0.38   -0.44   -0.33   -0.04    0.37    0.75    0.91    0.84    0.80    1.35
+    10.0    0.00    0.00   -0.03   -0.07   -0.09   -0.08   -0.08   -0.14   -0.25   -0.38   -0.45   -0.36   -0.08    0.33    0.71    0.89    0.83    0.77    1.25
+    15.0    0.00    0.00   -0.04   -0.07   -0.08   -0.07   -0.07   -0.13   -0.25   -0.39   -0.47   -0.38   -0.11    0.29    0.66    0.83    0.78    0.71    1.13
+    20.0    0.00    0.00   -0.04   -0.07   -0.08   -0.07   -0.07   -0.13   -0.25   -0.40   -0.48   -0.40   -0.14    0.25    0.60    0.77    0.71    0.63    1.01
+    25.0    0.00   -0.01   -0.04   -0.08   -0.08   -0.07   -0.08   -0.14   -0.27   -0.41   -0.48   -0.41   -0.15    0.22    0.55    0.70    0.64    0.56    0.92
+    30.0    0.00   -0.01   -0.05   -0.09   -0.09   -0.08   -0.09   -0.16   -0.29   -0.42   -0.49   -0.40   -0.15    0.20    0.51    0.64    0.57    0.50    0.87
+    35.0    0.00   -0.01   -0.06   -0.10   -0.11   -0.10   -0.12   -0.19   -0.31   -0.44   -0.49   -0.39   -0.13    0.21    0.49    0.59    0.51    0.46    0.86
+    40.0    0.00   -0.02   -0.07   -0.11   -0.13   -0.13   -0.16   -0.23   -0.35   -0.47   -0.49   -0.36   -0.09    0.24    0.49    0.56    0.47    0.45    0.90
+    45.0    0.00   -0.02   -0.08   -0.13   -0.15   -0.17   -0.21   -0.29   -0.41   -0.50   -0.50   -0.34   -0.04    0.28    0.51    0.54    0.44    0.46    0.99
+    50.0    0.00   -0.03   -0.09   -0.15   -0.19   -0.21   -0.26   -0.36   -0.47   -0.55   -0.51   -0.31    0.00    0.33    0.53    0.53    0.42    0.49    1.12
+    55.0    0.00   -0.04   -0.11   -0.17   -0.22   -0.27   -0.33   -0.43   -0.55   -0.60   -0.53   -0.29    0.05    0.38    0.55    0.52    0.40    0.52    1.26
+    60.0    0.00   -0.04   -0.12   -0.20   -0.26   -0.32   -0.41   -0.52   -0.63   -0.67   -0.56   -0.29    0.08    0.41    0.56    0.50    0.38    0.54    1.41
+    65.0    0.00   -0.05   -0.13   -0.23   -0.30   -0.38   -0.49   -0.61   -0.72   -0.75   -0.61   -0.30    0.09    0.43    0.55    0.46    0.33    0.55    1.54
+    70.0    0.00   -0.05   -0.15   -0.25   -0.35   -0.44   -0.57   -0.71   -0.82   -0.83   -0.67   -0.34    0.08    0.41    0.52    0.40    0.26    0.53    1.62
+    75.0    0.00   -0.06   -0.16   -0.28   -0.39   -0.50   -0.64   -0.80   -0.92   -0.93   -0.75   -0.39    0.04    0.38    0.46    0.31    0.17    0.48    1.65
+    80.0    0.00   -0.06   -0.18   -0.30   -0.43   -0.56   -0.72   -0.89   -1.02   -1.02   -0.83   -0.46   -0.01    0.31    0.38    0.20    0.05    0.39    1.61
+    85.0    0.00   -0.07   -0.19   -0.33   -0.46   -0.61   -0.79   -0.97   -1.11   -1.12   -0.92   -0.54   -0.09    0.23    0.28    0.08   -0.08    0.27    1.51
+    90.0    0.00   -0.07   -0.20   -0.35   -0.50   -0.66   -0.85   -1.04   -1.19   -1.21   -1.01   -0.63   -0.18    0.14    0.17   -0.05   -0.22    0.11    1.33
+    95.0    0.00   -0.08   -0.21   -0.37   -0.53   -0.70   -0.90   -1.11   -1.27   -1.29   -1.10   -0.71   -0.26    0.05    0.07   -0.17   -0.37   -0.06    1.11
+   100.0    0.00   -0.08   -0.22   -0.39   -0.55   -0.73   -0.94   -1.16   -1.34   -1.37   -1.18   -0.80   -0.35   -0.04   -0.02   -0.28   -0.50   -0.24    0.85
+   105.0    0.00   -0.09   -0.23   -0.40   -0.57   -0.76   -0.98   -1.21   -1.40   -1.44   -1.26   -0.87   -0.42   -0.10   -0.09   -0.36   -0.62   -0.41    0.58
+   110.0    0.00   -0.09   -0.24   -0.41   -0.59   -0.78   -1.01   -1.25   -1.45   -1.50   -1.32   -0.93   -0.47   -0.14   -0.13   -0.41   -0.70   -0.56    0.34
+   115.0    0.00   -0.09   -0.25   -0.42   -0.60   -0.80   -1.03   -1.29   -1.49   -1.55   -1.38   -0.98   -0.50   -0.16   -0.14   -0.43   -0.76   -0.68    0.13
+   120.0    0.00   -0.09   -0.25   -0.43   -0.61   -0.82   -1.05   -1.31   -1.53   -1.59   -1.41   -1.01   -0.51   -0.15   -0.11   -0.41   -0.77   -0.75   -0.01
+   125.0    0.00   -0.09   -0.25   -0.43   -0.62   -0.83   -1.07   -1.34   -1.56   -1.62   -1.44   -1.02   -0.50   -0.11   -0.06   -0.36   -0.75   -0.78   -0.07
+   130.0    0.00   -0.10   -0.25   -0.43   -0.62   -0.83   -1.08   -1.35   -1.58   -1.64   -1.45   -1.01   -0.47   -0.05    0.01   -0.29   -0.69   -0.75   -0.06
+   135.0    0.00   -0.10   -0.25   -0.43   -0.62   -0.83   -1.08   -1.36   -1.58   -1.64   -1.44   -0.99   -0.42    0.02    0.11   -0.19   -0.61   -0.68    0.03
+   140.0    0.00   -0.09   -0.25   -0.43   -0.62   -0.83   -1.08   -1.35   -1.58   -1.63   -1.42   -0.95   -0.36    0.10    0.21   -0.07   -0.49   -0.56    0.19
+   145.0    0.00   -0.09   -0.25   -0.42   -0.61   -0.82   -1.07   -1.33   -1.55   -1.60   -1.37   -0.89   -0.28    0.20    0.33    0.05   -0.36   -0.42    0.39
+   150.0    0.00   -0.09   -0.24   -0.42   -0.60   -0.80   -1.04   -1.30   -1.50   -1.54   -1.31   -0.81   -0.19    0.30    0.44    0.19   -0.22   -0.26    0.62
+   155.0    0.00   -0.09   -0.24   -0.41   -0.59   -0.78   -1.01   -1.25   -1.44   -1.46   -1.22   -0.72   -0.10    0.41    0.56    0.33   -0.07   -0.09    0.84
+   160.0    0.00   -0.09   -0.23   -0.40   -0.57   -0.76   -0.97   -1.19   -1.35   -1.35   -1.10   -0.61    0.01    0.52    0.69    0.47    0.09    0.07    1.04
+   165.0    0.00   -0.08   -0.22   -0.39   -0.55   -0.73   -0.92   -1.11   -1.25   -1.23   -0.97   -0.48    0.13    0.63    0.81    0.61    0.24    0.21    1.20
+   170.0    0.00   -0.08   -0.22   -0.37   -0.53   -0.69   -0.86   -1.02   -1.13   -1.09   -0.83   -0.34    0.25    0.75    0.93    0.74    0.38    0.34    1.31
+   175.0    0.00   -0.08   -0.21   -0.36   -0.52   -0.66   -0.80   -0.93   -1.00   -0.94   -0.67   -0.20    0.38    0.87    1.05    0.87    0.50    0.43    1.36
+   180.0    0.00   -0.07   -0.20   -0.35   -0.50   -0.63   -0.75   -0.84   -0.88   -0.79   -0.52   -0.06    0.50    0.98    1.17    0.99    0.61    0.50    1.37
+   185.0    0.00   -0.07   -0.20   -0.34   -0.49   -0.60   -0.70   -0.76   -0.77   -0.66   -0.38    0.08    0.62    1.08    1.27    1.09    0.70    0.54    1.34
+   190.0    0.00   -0.07   -0.19   -0.34   -0.47   -0.58   -0.66   -0.70   -0.67   -0.54   -0.25    0.19    0.72    1.17    1.35    1.18    0.77    0.55    1.28
+   195.0    0.00   -0.06   -0.18   -0.33   -0.47   -0.57   -0.64   -0.65   -0.60   -0.45   -0.16    0.28    0.79    1.23    1.41    1.23    0.81    0.55    1.20
+   200.0    0.00   -0.06   -0.18   -0.33   -0.47   -0.57   -0.63   -0.63   -0.57   -0.40   -0.10    0.33    0.84    1.26    1.44    1.26    0.83    0.54    1.13
+   205.0    0.00   -0.06   -0.17   -0.33   -0.47   -0.58   -0.64   -0.64   -0.56   -0.39   -0.08    0.35    0.84    1.27    1.44    1.26    0.82    0.51    1.07
+   210.0    0.00   -0.05   -0.17   -0.33   -0.48   -0.60   -0.67   -0.67   -0.59   -0.41   -0.10    0.33    0.82    1.23    1.41    1.23    0.79    0.48    1.03
+   215.0    0.00   -0.05   -0.17   -0.33   -0.50   -0.63   -0.71   -0.72   -0.65   -0.47   -0.16    0.27    0.76    1.17    1.34    1.17    0.74    0.45    0.99
+   220.0    0.00   -0.05   -0.17   -0.34   -0.52   -0.67   -0.77   -0.79   -0.73   -0.56   -0.25    0.18    0.67    1.08    1.25    1.08    0.67    0.41    0.97
+   225.0    0.00   -0.04   -0.16   -0.34   -0.54   -0.72   -0.84   -0.88   -0.83   -0.66   -0.36    0.08    0.57    0.97    1.13    0.97    0.59    0.37    0.93
+   230.0    0.00   -0.04   -0.16   -0.35   -0.56   -0.76   -0.91   -0.97   -0.94   -0.78   -0.47   -0.04    0.45    0.85    1.01    0.85    0.50    0.31    0.88
+   235.0    0.00   -0.04   -0.16   -0.36   -0.59   -0.81   -0.98   -1.07   -1.05   -0.90   -0.59   -0.15    0.34    0.73    0.88    0.73    0.39    0.23    0.78
+   240.0    0.00   -0.03   -0.16   -0.37   -0.61   -0.85   -1.05   -1.16   -1.15   -1.00   -0.69   -0.25    0.23    0.61    0.75    0.59    0.27    0.13    0.65
+   245.0    0.00   -0.03   -0.16   -0.37   -0.63   -0.89   -1.10   -1.23   -1.24   -1.09   -0.78   -0.34    0.14    0.51    0.63    0.46    0.14   -0.01    0.46
+   250.0    0.00   -0.03   -0.16   -0.38   -0.65   -0.92   -1.15   -1.29   -1.31   -1.16   -0.85   -0.40    0.08    0.43    0.52    0.33   -0.01   -0.17    0.21
+   255.0    0.00   -0.03   -0.16   -0.38   -0.66   -0.95   -1.19   -1.34   -1.35   -1.20   -0.88   -0.43    0.03    0.36    0.42    0.19   -0.18   -0.37   -0.07
+   260.0    0.00   -0.02   -0.16   -0.38   -0.67   -0.96   -1.20   -1.36   -1.37   -1.22   -0.89   -0.44    0.01    0.31    0.33    0.05   -0.36   -0.60   -0.39
+   265.0    0.00   -0.02   -0.15   -0.38   -0.67   -0.96   -1.21   -1.36   -1.37   -1.21   -0.88   -0.43    0.01    0.28    0.25   -0.09   -0.56   -0.85   -0.72
+   270.0    0.00   -0.02   -0.15   -0.38   -0.66   -0.95   -1.20   -1.34   -1.35   -1.19   -0.85   -0.41    0.01    0.24    0.16   -0.24   -0.76   -1.10   -1.04
+   275.0    0.00   -0.02   -0.15   -0.37   -0.65   -0.93   -1.17   -1.31   -1.31   -1.14   -0.81   -0.38    0.02    0.21    0.07   -0.39   -0.97   -1.36   -1.32
+   280.0    0.00   -0.01   -0.14   -0.36   -0.64   -0.91   -1.13   -1.26   -1.25   -1.09   -0.77   -0.35    0.02    0.18   -0.01   -0.53   -1.17   -1.59   -1.55
+   285.0    0.00   -0.01   -0.14   -0.35   -0.61   -0.87   -1.08   -1.19   -1.19   -1.02   -0.72   -0.32    0.02    0.14   -0.10   -0.67   -1.35   -1.77   -1.69
+   290.0    0.00   -0.01   -0.13   -0.34   -0.59   -0.83   -1.02   -1.12   -1.11   -0.96   -0.67   -0.30    0.01    0.09   -0.18   -0.79   -1.49   -1.91   -1.74
+   295.0    0.00   -0.01   -0.12   -0.32   -0.56   -0.78   -0.95   -1.04   -1.03   -0.89   -0.63   -0.29   -0.01    0.05   -0.24   -0.87   -1.58   -1.97   -1.70
+   300.0    0.00    0.00   -0.11   -0.30   -0.52   -0.72   -0.87   -0.95   -0.94   -0.82   -0.59   -0.29   -0.03    0.01   -0.29   -0.91   -1.61   -1.96   -1.55
+   305.0    0.00    0.00   -0.11   -0.28   -0.48   -0.66   -0.79   -0.86   -0.86   -0.76   -0.56   -0.29   -0.05   -0.01   -0.30   -0.90   -1.57   -1.86   -1.32
+   310.0    0.00    0.00   -0.10   -0.26   -0.45   -0.60   -0.71   -0.77   -0.77   -0.69   -0.53   -0.29   -0.07   -0.02   -0.28   -0.84   -1.46   -1.69   -1.02
+   315.0    0.00    0.00   -0.09   -0.24   -0.41   -0.54   -0.63   -0.68   -0.69   -0.64   -0.50   -0.29   -0.08   -0.01   -0.22   -0.72   -1.28   -1.45   -0.66
+   320.0    0.00    0.00   -0.08   -0.22   -0.37   -0.48   -0.56   -0.60   -0.61   -0.58   -0.48   -0.29   -0.08    0.03   -0.12   -0.55   -1.05   -1.16   -0.27
+   325.0    0.00    0.01   -0.07   -0.20   -0.33   -0.42   -0.48   -0.52   -0.54   -0.53   -0.45   -0.28   -0.07    0.08    0.01   -0.34   -0.77   -0.83    0.11
+   330.0    0.00    0.01   -0.07   -0.18   -0.29   -0.37   -0.41   -0.44   -0.47   -0.49   -0.43   -0.28   -0.05    0.15    0.15   -0.10   -0.46   -0.49    0.48
+   335.0    0.00    0.01   -0.06   -0.16   -0.26   -0.32   -0.35   -0.38   -0.42   -0.45   -0.42   -0.27   -0.02    0.22    0.30    0.14   -0.16   -0.16    0.81
+   340.0    0.00    0.01   -0.05   -0.14   -0.22   -0.27   -0.29   -0.32   -0.37   -0.42   -0.41   -0.27    0.00    0.29    0.45    0.37    0.13    0.14    1.07
+   345.0    0.00    0.01   -0.05   -0.13   -0.19   -0.23   -0.24   -0.27   -0.33   -0.40   -0.40   -0.27    0.01    0.35    0.58    0.57    0.38    0.39    1.27
+   350.0    0.00    0.01   -0.04   -0.11   -0.17   -0.19   -0.20   -0.23   -0.30   -0.39   -0.40   -0.27    0.02    0.39    0.67    0.73    0.59    0.58    1.39
+   355.0    0.00    0.01   -0.04   -0.10   -0.14   -0.15   -0.16   -0.19   -0.28   -0.38   -0.41   -0.29    0.01    0.41    0.73    0.84    0.73    0.71    1.44
+   360.0    0.00    0.01   -0.03   -0.09   -0.12   -0.12   -0.13   -0.17   -0.26   -0.38   -0.42   -0.31   -0.01    0.40    0.76    0.90    0.82    0.78    1.42
+   G02                                                      END OF FREQUENCY    
+   R01                                                      START OF FREQUENCY  
+     -1.03      1.35     58.32                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.02   -0.09   -0.22   -0.40   -0.62   -0.82   -0.98   -1.07   -1.07   -1.01   -0.91   -0.80   -0.69   -0.49   -0.16    0.34    1.05    1.87
+     0.0    0.00   -0.10   -0.27   -0.48   -0.73   -1.00   -1.26   -1.45   -1.53   -1.47   -1.29   -1.02   -0.72   -0.45   -0.24   -0.04    0.31    0.92    1.84
+     5.0    0.00   -0.10   -0.27   -0.47   -0.73   -0.99   -1.25   -1.44   -1.54   -1.50   -1.33   -1.06   -0.76   -0.49   -0.28   -0.06    0.29    0.91    1.85
+    10.0    0.00   -0.11   -0.27   -0.47   -0.72   -0.97   -1.24   -1.44   -1.54   -1.53   -1.37   -1.12   -0.82   -0.56   -0.33   -0.10    0.27    0.90    1.83
+    15.0    0.00   -0.10   -0.26   -0.46   -0.70   -0.96   -1.22   -1.42   -1.54   -1.54   -1.41   -1.18   -0.90   -0.63   -0.40   -0.15    0.23    0.87    1.78
+    20.0    0.00   -0.10   -0.26   -0.45   -0.69   -0.94   -1.20   -1.40   -1.52   -1.53   -1.43   -1.25   -0.99   -0.73   -0.50   -0.22    0.20    0.84    1.73
+    25.0    0.00   -0.09   -0.25   -0.44   -0.67   -0.91   -1.17   -1.37   -1.50   -1.53   -1.46   -1.31   -1.10   -0.87   -0.63   -0.31    0.12    0.79    1.65
+    30.0    0.00   -0.09   -0.25   -0.43   -0.66   -0.89   -1.14   -1.33   -1.46   -1.51   -1.49   -1.39   -1.23   -1.04   -0.79   -0.45    0.04    0.72    1.56
+    35.0    0.00   -0.09   -0.24   -0.41   -0.64   -0.87   -1.10   -1.29   -1.43   -1.50   -1.50   -1.45   -1.36   -1.21   -0.97   -0.61   -0.08    0.63    1.45
+    40.0    0.00   -0.09   -0.23   -0.40   -0.62   -0.85   -1.08   -1.26   -1.40   -1.48   -1.52   -1.52   -1.49   -1.38   -1.17   -0.78   -0.24    0.48    1.29
+    45.0    0.00   -0.08   -0.22   -0.40   -0.62   -0.84   -1.07   -1.24   -1.37   -1.46   -1.54   -1.59   -1.61   -1.56   -1.36   -0.97   -0.40    0.32    1.10
+    50.0    0.00   -0.08   -0.21   -0.38   -0.60   -0.83   -1.04   -1.22   -1.35   -1.45   -1.54   -1.64   -1.72   -1.71   -1.54   -1.15   -0.58    0.12    0.84
+    55.0    0.00   -0.07   -0.20   -0.37   -0.59   -0.82   -1.04   -1.20   -1.33   -1.43   -1.55   -1.68   -1.80   -1.83   -1.67   -1.31   -0.76   -0.11    0.56
+    60.0    0.00   -0.06   -0.19   -0.36   -0.58   -0.81   -1.03   -1.19   -1.32   -1.42   -1.55   -1.70   -1.85   -1.90   -1.79   -1.44   -0.92   -0.34    0.24
+    65.0    0.00   -0.06   -0.18   -0.35   -0.56   -0.80   -1.02   -1.19   -1.30   -1.40   -1.53   -1.70   -1.87   -1.94   -1.83   -1.52   -1.07   -0.57   -0.09
+    70.0    0.00   -0.05   -0.17   -0.33   -0.56   -0.79   -1.01   -1.17   -1.29   -1.38   -1.52   -1.69   -1.84   -1.93   -1.84   -1.55   -1.17   -0.78   -0.39
+    75.0    0.00   -0.05   -0.16   -0.32   -0.54   -0.77   -0.99   -1.16   -1.27   -1.36   -1.48   -1.65   -1.81   -1.87   -1.78   -1.54   -1.20   -0.93   -0.65
+    80.0    0.00   -0.04   -0.15   -0.30   -0.52   -0.75   -0.96   -1.13   -1.24   -1.33   -1.45   -1.60   -1.73   -1.78   -1.67   -1.46   -1.20   -1.01   -0.83
+    85.0    0.00   -0.03   -0.13   -0.28   -0.50   -0.72   -0.93   -1.09   -1.21   -1.30   -1.40   -1.53   -1.64   -1.66   -1.55   -1.34   -1.12   -1.01   -0.89
+    90.0    0.00   -0.03   -0.12   -0.26   -0.45   -0.68   -0.89   -1.04   -1.15   -1.23   -1.33   -1.45   -1.53   -1.52   -1.40   -1.17   -0.98   -0.91   -0.80
+    95.0    0.00   -0.02   -0.10   -0.24   -0.43   -0.64   -0.83   -0.99   -1.10   -1.18   -1.27   -1.36   -1.42   -1.39   -1.22   -0.99   -0.80   -0.72   -0.57
+   100.0    0.00   -0.02   -0.09   -0.21   -0.39   -0.58   -0.78   -0.92   -1.03   -1.12   -1.21   -1.28   -1.31   -1.24   -1.05   -0.80   -0.58   -0.45   -0.21
+   105.0    0.00   -0.04   -0.07   -0.19   -0.35   -0.53   -0.70   -0.85   -0.97   -1.06   -1.14   -1.20   -1.20   -1.10   -0.89   -0.61   -0.34   -0.12    0.25
+   110.0    0.00   -0.04   -0.07   -0.17   -0.32   -0.48   -0.65   -0.79   -0.89   -0.98   -1.06   -1.11   -1.10   -0.98   -0.75   -0.44   -0.10    0.25    0.80
+   115.0    0.00   -0.04   -0.05   -0.15   -0.28   -0.43   -0.60   -0.73   -0.83   -0.91   -0.98   -1.01   -0.99   -0.87   -0.63   -0.30    0.11    0.61    1.37
+   120.0    0.00    0.01   -0.02   -0.12   -0.25   -0.40   -0.54   -0.67   -0.77   -0.85   -0.90   -0.92   -0.89   -0.76   -0.53   -0.19    0.30    0.94    1.91
+   125.0    0.00    0.02   -0.02   -0.10   -0.22   -0.35   -0.50   -0.63   -0.72   -0.79   -0.83   -0.83   -0.79   -0.67   -0.46   -0.11    0.42    1.20    2.37
+   130.0    0.00    0.02   -0.01   -0.09   -0.19   -0.31   -0.45   -0.59   -0.69   -0.73   -0.75   -0.73   -0.67   -0.59   -0.40   -0.06    0.50    1.39    2.70
+   135.0    0.00    0.03    0.01   -0.05   -0.16   -0.29   -0.43   -0.56   -0.65   -0.69   -0.67   -0.63   -0.58   -0.49   -0.34   -0.04    0.53    1.49    2.90
+   140.0    0.00    0.03    0.02   -0.04   -0.14   -0.27   -0.42   -0.53   -0.63   -0.64   -0.60   -0.53   -0.47   -0.41   -0.31   -0.04    0.52    1.51    2.95
+   145.0    0.00    0.03    0.03   -0.03   -0.13   -0.26   -0.40   -0.53   -0.60   -0.59   -0.54   -0.44   -0.37   -0.33   -0.27   -0.06    0.47    1.45    2.87
+   150.0    0.00    0.04    0.03   -0.02   -0.11   -0.25   -0.39   -0.52   -0.58   -0.57   -0.47   -0.35   -0.28   -0.25   -0.22   -0.07    0.41    1.36    2.70
+   155.0    0.00    0.04    0.04   -0.01   -0.11   -0.24   -0.39   -0.52   -0.57   -0.53   -0.43   -0.29   -0.20   -0.17   -0.18   -0.07    0.35    1.25    2.48
+   160.0    0.00    0.05    0.05   -0.01   -0.10   -0.23   -0.38   -0.51   -0.56   -0.51   -0.38   -0.23   -0.12   -0.11   -0.13   -0.05    0.34    1.15    2.24
+   165.0    0.00    0.04    0.05    0.02   -0.10   -0.23   -0.38   -0.50   -0.55   -0.49   -0.35   -0.19   -0.07   -0.06   -0.08   -0.01    0.35    1.09    2.07
+   170.0    0.00    0.05    0.05    0.01   -0.09   -0.22   -0.37   -0.49   -0.53   -0.48   -0.34   -0.16   -0.04   -0.01   -0.01    0.06    0.40    1.09    1.97
+   175.0    0.00    0.05    0.06    0.01   -0.09   -0.20   -0.36   -0.47   -0.53   -0.47   -0.34   -0.16   -0.02    0.03    0.07    0.16    0.50    1.17    1.96
+   180.0    0.00    0.05    0.06    0.01   -0.07   -0.20   -0.35   -0.46   -0.51   -0.47   -0.35   -0.17   -0.01    0.09    0.14    0.27    0.64    1.29    2.07
+   185.0    0.00    0.05    0.06    0.01   -0.07   -0.19   -0.33   -0.45   -0.52   -0.48   -0.36   -0.18   -0.02    0.12    0.22    0.40    0.80    1.49    2.26
+   190.0    0.00    0.05    0.06    0.02   -0.06   -0.20   -0.34   -0.45   -0.51   -0.49   -0.36   -0.20   -0.03    0.15    0.30    0.54    1.00    1.70    2.53
+   195.0    0.00    0.05    0.06    0.03   -0.07   -0.19   -0.33   -0.45   -0.52   -0.50   -0.38   -0.21   -0.02    0.18    0.37    0.68    1.16    1.92    2.83
+   200.0    0.00    0.05    0.05    0.02   -0.07   -0.20   -0.34   -0.45   -0.52   -0.50   -0.38   -0.22   -0.01    0.21    0.46    0.79    1.33    2.12    3.09
+   205.0    0.00    0.05    0.06    0.02   -0.07   -0.20   -0.34   -0.46   -0.52   -0.49   -0.39   -0.21    0.46    0.23    0.51    0.87    1.44    2.28    3.32
+   210.0    0.00    0.04    0.06    0.01   -0.08   -0.21   -0.35   -0.47   -0.53   -0.49   -0.38   -0.21    0.02    0.25    0.53    0.93    1.51    2.36    3.46
+   215.0    0.00    0.05    0.06    0.15   -0.10   -0.23   -0.37   -0.49   -0.53   -0.49   -0.36   -0.18    0.03    0.26    0.53    0.93    1.52    2.38    3.49
+   220.0    0.00    0.04    0.05    0.16   -0.11   -0.25   -0.39   -0.50   -0.54   -0.48   -0.34   -0.16    0.02    0.24    0.49    0.87    1.47    2.33    3.43
+   225.0    0.00    0.04    0.05   -0.02   -0.13   -0.28   -0.43   -0.53   -0.55   -0.48   -0.34   -0.16    0.02    0.19    0.42    0.79    1.37    2.21    3.28
+   230.0    0.00    0.03    0.03   -0.03   -0.15   -0.30   -0.46   -0.55   -0.57   -0.49   -0.33   -0.18   -0.02    0.11    0.30    0.65    1.22    2.05    3.06
+   235.0    0.00    0.03    0.02   -0.04   -0.17   -0.33   -0.49   -0.60   -0.59   -0.51   -0.35   -0.19   -0.10    0.67    0.15    0.48    1.06    1.87    2.81
+   240.0    0.00    0.03    0.01   -0.06   -0.20   -0.37   -0.53   -0.64   -0.63   -0.54   -0.39   -0.26   -0.19   -0.14   -0.02    0.29    0.87    1.69    2.58
+   245.0    0.00    0.02    0.12   -0.08   -0.22   -0.41   -0.58   -0.69   -0.68   -0.60   -0.45   -0.34   -0.31   -0.32   -0.23    0.09    0.69    1.53    2.37
+   250.0    0.00    0.01   -0.01   -0.10   -0.25   -0.45   -0.63   -0.75   -0.76   -0.66   -0.54   -0.46   -0.47   -0.50   -0.42   -0.11    0.54    1.40    2.21
+   255.0    0.00    0.05   -0.03   -0.12   -0.28   -0.49   -0.69   -0.82   -0.84   -0.76   -0.64   -0.59   -0.62   -0.68   -0.62   -0.27    0.41    1.31    2.11
+   260.0    0.00    0.05   -0.03   -0.15   -0.32   -0.53   -0.75   -0.89   -0.93   -0.87   -0.77   -0.73   -0.78   -0.86   -0.78   -0.40    0.32    1.26    2.07
+   265.0    0.00   -0.01   -0.05   -0.17   -0.35   -0.58   -0.82   -0.99   -1.03   -0.99   -0.91   -0.89   -0.93   -0.99   -0.91   -0.50    0.28    1.26    2.06
+   270.0    0.00   -0.01   -0.06   -0.19   -0.38   -0.63   -0.89   -1.06   -1.14   -1.11   -1.05   -1.02   -1.06   -1.10   -0.98   -0.55    0.26    1.27    2.09
+   275.0    0.00   -0.02   -0.08   -0.21   -0.42   -0.68   -0.94   -1.14   -1.24   -1.24   -1.17   -1.15   -1.16   -1.17   -1.01   -0.55    0.29    1.31    2.13
+   280.0    0.00   -0.03   -0.10   -0.24   -0.46   -0.72   -1.00   -1.22   -1.32   -1.34   -1.29   -1.23   -1.22   -1.19   -0.98   -0.50    0.33    1.32    2.14
+   285.0    0.00   -0.03   -0.12   -0.26   -0.49   -0.76   -1.05   -1.28   -1.41   -1.42   -1.37   -1.30   -1.24   -1.15   -0.92   -0.41    0.38    1.35    2.13
+   290.0    0.00   -0.04   -0.13   -0.29   -0.52   -0.79   -1.09   -1.33   -1.47   -1.49   -1.42   -1.33   -1.23   -1.09   -0.81   -0.30    0.45    1.34    2.09
+   295.0    0.00   -0.05   -0.15   -0.31   -0.54   -0.83   -1.12   -1.37   -1.51   -1.53   -1.45   -1.32   -1.18   -0.99   -0.69   -0.21    0.51    1.32    2.01
+   300.0    0.00   -0.06   -0.16   -0.34   -0.58   -0.86   -1.14   -1.38   -1.52   -1.54   -1.45   -1.30   -1.10   -0.88   -0.57   -0.10    0.55    1.29    1.90
+   305.0    0.00   -0.06   -0.18   -0.36   -0.60   -0.88   -1.17   -1.40   -1.52   -1.52   -1.42   -1.24   -1.02   -0.76   -0.44    0.01    0.58    1.23    1.79
+   310.0    0.00   -0.07   -0.20   -0.38   -0.62   -0.91   -1.18   -1.39   -1.50   -1.49   -1.38   -1.18   -0.93   -0.66   -0.33    0.08    0.59    1.18    1.68
+   315.0    0.00   -0.07   -0.21   -0.40   -0.65   -0.92   -1.18   -1.39   -1.49   -1.46   -1.32   -1.11   -0.86   -0.57   -0.25    0.12    0.58    1.11    1.58
+   320.0    0.00   -0.08   -0.22   -0.41   -0.66   -0.94   -1.18   -1.37   -1.46   -1.42   -1.27   -1.05   -0.78   -0.50   -0.20    0.14    0.57    1.07    1.54
+   325.0    0.00   -0.08   -0.23   -0.44   -0.69   -0.95   -1.19   -1.37   -1.44   -1.38   -1.22   -1.00   -0.73   -0.46   -0.18    0.14    0.53    1.02    1.52
+   330.0    0.00   -0.09   -0.24   -0.45   -0.70   -0.96   -1.21   -1.36   -1.42   -1.35   -1.18   -0.95   -0.69   -0.43   -0.17    0.12    0.49    0.99    1.54
+   335.0    0.00   -0.09   -0.25   -0.46   -0.71   -0.99   -1.22   -1.37   -1.42   -1.36   -1.17   -0.93   -0.67   -0.42   -0.18    0.09    0.45    0.97    1.59
+   340.0    0.00   -0.10   -0.25   -0.47   -0.72   -0.99   -1.23   -1.38   -1.43   -1.36   -1.17   -0.92   -0.66   -0.41   -0.18    0.06    0.41    0.95    1.65
+   345.0    0.00   -0.10   -0.25   -0.47   -0.73   -1.00   -1.23   -1.40   -1.44   -1.37   -1.19   -0.93   -0.66   -0.41   -0.20    0.02    0.37    0.94    1.72
+   350.0    0.00   -0.10   -0.26   -0.48   -0.73   -1.01   -1.24   -1.42   -1.48   -1.41   -1.22   -0.96   -0.66   -0.42   -0.22   -0.01    0.34    0.94    1.78
+   355.0    0.00   -0.11   -0.26   -0.48   -0.74   -1.00   -1.26   -1.43   -1.50   -1.44   -1.25   -0.97   -0.68   -0.43   -0.23   -0.03    0.33    0.93    1.82
+   360.0    0.00   -0.10   -0.27   -0.48   -0.73   -1.00   -1.26   -1.45   -1.53   -1.47   -1.29   -1.02   -0.72   -0.45   -0.24   -0.04    0.31    0.92    1.84
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+     -0.20     -2.38     55.54                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.03   -0.11   -0.21   -0.32   -0.45   -0.57   -0.70   -0.77   -0.73   -0.52   -0.14    0.34    0.75    0.94    0.90    0.78    0.97    1.92
+     0.0    0.00    0.04    0.03   -0.01   -0.05   -0.10   -0.16   -0.23   -0.31   -0.39   -0.36   -0.18    0.17    0.66    1.16    1.56    1.79    2.02    2.63
+     5.0    0.00    0.05    0.04    0.02   -0.02   -0.07   -0.14   -0.23   -0.32   -0.39   -0.38   -0.20    0.14    0.60    1.09    1.47    1.72    2.00    2.62
+    10.0    0.00    0.04    0.06    0.05    0.01   -0.04   -0.12   -0.24   -0.34   -0.40   -0.38   -0.21    0.10    0.53    0.97    1.33    1.59    1.89    2.53
+    15.0    0.00    0.04    0.06    0.07    0.04   -0.02   -0.11   -0.23   -0.35   -0.42   -0.39   -0.22    0.08    0.47    0.85    1.15    1.40    1.71    2.39
+    20.0    0.00    0.05    0.08    0.08    0.06    0.07   -0.10   -0.23   -0.35   -0.42   -0.39   -0.22    0.07    0.42    0.74    0.99    1.19    1.51    2.21
+    25.0    0.00    0.05    0.09    0.09    0.07    0.01   -0.10   -0.24   -0.37   -0.43   -0.38   -0.21    0.08    0.39    0.66    0.85    1.01    1.32    2.05
+    30.0    0.00    0.06    0.09    0.09    0.09    0.02   -0.10   -0.25   -0.39   -0.43   -0.38   -0.19    0.09    0.38    0.61    0.75    0.87    1.17    1.92
+    35.0    0.00    0.06    0.09    0.10    0.07    0.01   -0.11   -0.26   -0.39   -0.45   -0.38   -0.18    0.12    0.40    0.61    0.72    0.80    1.09    1.85
+    40.0    0.00    0.05    0.08    0.10    0.07    0.13   -0.14   -0.29   -0.42   -0.48   -0.39   -0.15    0.15    0.45    0.65    0.74    0.82    1.11    1.85
+    45.0    0.00    0.05    0.07    0.08    0.05   -0.04   -0.17   -0.33   -0.48   -0.51   -0.41   -0.16    0.20    0.51    0.73    0.82    0.90    1.20    1.95
+    50.0    0.00    0.04    0.06    0.06    0.01   -0.07   -0.22   -0.40   -0.52   -0.56   -0.44   -0.16    0.21    0.57    0.82    0.93    1.04    1.37    2.12
+    55.0    0.00    0.03    0.04    0.04   -0.02   -0.14   -0.29   -0.45   -0.59   -0.61   -0.48   -0.16    0.23    0.62    0.90    1.06    1.19    1.56    2.35
+    60.0    0.00    0.03    0.03    0.20   -0.08   -0.19   -0.37   -0.54   -0.67   -0.68   -0.52   -0.20    0.23    0.65    0.96    1.15    1.34    1.75    2.61
+    65.0    0.00    0.02    0.02   -0.04   -0.13   -0.27   -0.45   -0.62   -0.75   -0.76   -0.59   -0.23    0.21    0.66    0.98    1.20    1.42    1.90    2.86
+    70.0    0.00    0.02    0.15   -0.07   -0.20   -0.34   -0.54   -0.72   -0.84   -0.83   -0.65   -0.29    0.18    0.62    0.96    1.18    1.43    1.99    3.06
+    75.0    0.00    0.01   -0.02   -0.12   -0.25   -0.42   -0.62   -0.81   -0.93   -0.92   -0.71   -0.34    0.13    0.58    0.89    1.09    1.35    1.97    3.18
+    80.0    0.00    0.01   -0.05   -0.15   -0.31   -0.50   -0.71   -0.90   -1.01   -0.98   -0.76   -0.39    0.09    0.49    0.78    0.94    1.18    1.86    3.19
+    85.0    0.00    0.07   -0.06   -0.19   -0.36   -0.56   -0.78   -0.96   -1.07   -1.03   -0.81   -0.42    0.03    0.41    0.63    0.74    0.96    1.65    3.09
+    90.0    0.00    0.07   -0.08   -0.22   -0.40   -0.62   -0.84   -1.01   -1.11   -1.07   -0.84   -0.45   -0.02    0.33    0.49    0.52    0.68    1.36    2.87
+    95.0    0.00   -0.01   -0.10   -0.25   -0.44   -0.65   -0.86   -1.05   -1.14   -1.09   -0.86   -0.47   -0.04    0.27    0.37    0.32    0.39    1.04    2.57
+   100.0    0.00   -0.01   -0.11   -0.27   -0.46   -0.66   -0.87   -1.06   -1.16   -1.11   -0.86   -0.48   -0.06    0.23    0.28    0.15    0.14    0.70    2.20
+   105.0    0.00   -0.03   -0.13   -0.29   -0.47   -0.67   -0.88   -1.05   -1.15   -1.10   -0.87   -0.47   -0.05    0.24    0.25    0.04   -0.06    0.41    1.83
+   110.0    0.00   -0.03   -0.14   -0.29   -0.48   -0.66   -0.86   -1.02   -1.13   -1.10   -0.86   -0.47   -0.03    0.27    0.27    0.03   -0.16    0.20    1.51
+   115.0    0.00   -0.04   -0.15   -0.30   -0.47   -0.64   -0.81   -0.99   -1.10   -1.08   -0.86   -0.46    0.01    0.34    0.36    0.10   -0.16    0.08    1.26
+   120.0    0.00   -0.04   -0.15   -0.30   -0.45   -0.61   -0.77   -0.93   -1.07   -1.07   -0.86   -0.44    0.06    0.43    0.51    0.25   -0.06    0.08    1.12
+   125.0    0.00   -0.05   -0.16   -0.30   -0.44   -0.57   -0.72   -0.90   -1.04   -1.05   -0.86   -0.43    0.11    0.55    0.68    0.46    0.13    0.18    1.12
+   130.0    0.00   -0.06   -0.16   -0.29   -0.41   -0.52   -0.67   -0.84   -1.01   -1.04   -0.86   -0.42    0.16    0.68    0.87    0.70    0.38    0.39    1.24
+   135.0    0.00   -0.06   -0.16   -0.28   -0.38   -0.48   -0.62   -0.80   -0.97   -1.03   -0.85   -0.41    0.22    0.79    1.07    0.95    0.66    0.65    1.47
+   140.0    0.00   -0.05   -0.16   -0.28   -0.36   -0.45   -0.58   -0.76   -0.95   -1.02   -0.85   -0.39    0.27    0.89    1.24    1.19    0.94    0.96    1.79
+   145.0    0.00   -0.06   -0.17   -0.26   -0.34   -0.42   -0.55   -0.73   -0.92   -1.01   -0.83   -0.37    0.32    0.99    1.39    1.39    1.19    1.25    2.15
+   150.0    0.00   -0.06   -0.16   -0.26   -0.32   -0.39   -0.51   -0.70   -0.89   -0.97   -0.81   -0.32    0.38    1.07    1.49    1.55    1.38    1.51    2.50
+   155.0    0.00   -0.07   -0.17   -0.25   -0.31   -0.37   -0.49   -0.67   -0.86   -0.94   -0.76   -0.27    0.43    1.14    1.58    1.65    1.53    1.71    2.79
+   160.0    0.00   -0.07   -0.16   -0.25   -0.30   -0.36   -0.48   -0.65   -0.81   -0.87   -0.68   -0.20    0.50    1.19    1.63    1.71    1.62    1.84    3.01
+   165.0    0.00   -0.07   -0.15   -0.24   -0.29   -0.36   -0.46   -0.62   -0.77   -0.80   -0.59   -0.10    0.57    1.23    1.66    1.74    1.65    1.88    3.12
+   170.0    0.00   -0.07   -0.16   -0.23   -0.29   -0.36   -0.46   -0.59   -0.71   -0.71   -0.49    0.34    0.65    1.29    1.67    1.74    1.65    1.89    3.12
+   175.0    0.00   -0.07   -0.16   -0.23   -0.31   -0.37   -0.45   -0.56   -0.65   -0.61   -0.37    0.11    0.74    1.34    1.69    1.74    1.62    1.82    3.02
+   180.0    0.00   -0.07   -0.16   -0.24   -0.31   -0.37   -0.46   -0.54   -0.59   -0.51   -0.26    0.22    0.82    1.39    1.72    1.74    1.60    1.74    2.86
+   185.0    0.00   -0.07   -0.16   -0.24   -0.33   -0.39   -0.46   -0.52   -0.53   -0.43   -0.15    0.32    0.90    1.43    1.75    1.75    1.57    1.64    2.64
+   190.0    0.00   -0.08   -0.17   -0.26   -0.33   -0.40   -0.47   -0.51   -0.49   -0.36   -0.06    0.40    0.97    1.48    1.77    1.76    1.56    1.54    2.41
+   195.0    0.00   -0.07   -0.17   -0.26   -0.36   -0.43   -0.49   -0.51   -0.46   -0.31   -0.01    0.46    1.00    1.50    1.79    1.77    1.55    1.46    2.19
+   200.0    0.00   -0.07   -0.17   -0.28   -0.38   -0.46   -0.52   -0.53   -0.47   -0.30    0.02    0.47    1.02    1.50    1.79    1.78    1.54    1.39    2.01
+   205.0    0.00   -0.08   -0.17   -0.29   -0.40   -0.49   -0.56   -0.57   -0.50   -0.32    0.08    0.45    0.98    1.48    1.76    1.75    1.51    1.33    1.89
+   210.0    0.00   -0.07   -0.18   -0.30   -0.42   -0.53   -0.62   -0.63   -0.57   -0.38   -0.06    0.40    0.92    1.41    1.70    1.70    1.46    1.28    1.82
+   215.0    0.00   -0.08   -0.18   -0.32   -0.46   -0.58   -0.67   -0.71   -0.66   -0.48   -0.15    0.31    0.83    1.32    1.60    1.61    1.37    1.22    1.78
+   220.0    0.00   -0.08   -0.19   -0.33   -0.48   -0.63   -0.76   -0.80   -0.77   -0.60   -0.28    0.19    0.72    1.20    1.48    1.46    1.24    1.15    1.80
+   225.0    0.00   -0.08   -0.19   -0.34   -0.51   -0.69   -0.83   -0.92   -0.90   -0.73   -0.42    0.06    0.60    1.07    1.31    1.29    1.08    1.06    1.81
+   230.0    0.00   -0.08   -0.19   -0.35   -0.54   -0.74   -0.92   -1.02   -1.04   -0.88   -0.55   -0.08    0.46    0.92    1.15    1.09    0.90    0.94    1.81
+   235.0    0.00   -0.08   -0.20   -0.37   -0.57   -0.79   -0.99   -1.14   -1.17   -1.03   -0.69   -0.19    0.35    0.79    0.98    0.89    0.70    0.80    1.77
+   240.0    0.00   -0.07   -0.20   -0.38   -0.59   -0.84   -1.07   -1.25   -1.29   -1.15   -0.81   -0.30    0.24    0.66    0.82    0.69    0.49    0.65    1.69
+   245.0    0.00   -0.07   -0.20   -0.38   -0.62   -0.88   -1.13   -1.33   -1.40   -1.27   -0.91   -0.39    0.16    0.57    0.68    0.51    0.29    0.48    1.56
+   250.0    0.00   -0.07   -0.21   -0.39   -0.64   -0.91   -1.18   -1.39   -1.49   -1.35   -0.99   -0.44    0.12    0.50    0.57    0.37    0.12    0.32    1.37
+   255.0    0.00   -0.08   -0.21   -0.40   -0.65   -0.93   -1.21   -1.44   -1.53   -1.40   -1.02   -0.47    0.09    0.46    0.50    0.25   -0.03    0.15    1.16
+   260.0    0.00   -0.07   -0.21   -0.40   -0.65   -0.93   -1.21   -1.46   -1.55   -1.42   -1.03   -0.47    0.09    0.45    0.46    0.16   -0.15   -0.01    0.91
+   265.0    0.00   -0.07   -0.21   -0.40   -0.65   -0.93   -1.22   -1.45   -1.53   -1.39   -1.01   -0.44    0.12    0.46    0.45    0.11   -0.24   -0.17    0.67
+   270.0    0.00   -0.07   -0.21   -0.40   -0.64   -0.91   -1.19   -1.41   -1.49   -1.36   -0.97   -0.41    0.14    0.48    0.43    0.06   -0.33   -0.30    0.43
+   275.0    0.00   -0.07   -0.21   -0.39   -0.63   -0.88   -1.14   -1.35   -1.42   -1.29   -0.91   -0.37    0.18    0.49    0.42    0.02   -0.40   -0.43    0.24
+   280.0    0.00   -0.06   -0.20   -0.38   -0.62   -0.85   -1.09   -1.27   -1.33   -1.20   -0.84   -0.31    0.21    0.51    0.42   -0.01   -0.49   -0.55    0.08
+   285.0    0.00   -0.05   -0.20   -0.38   -0.58   -0.80   -1.01   -1.17   -1.23   -1.10   -0.76   -0.26    0.23    0.51    0.39   -0.07   -0.57   -0.66   -0.02
+   290.0    0.00   -0.05   -0.19   -0.37   -0.56   -0.76   -0.94   -1.07   -1.12   -1.00   -0.68   -0.21    0.25    0.49    0.36   -0.13   -0.66   -0.75   -0.06
+   295.0    0.00   -0.05   -0.18   -0.35   -0.53   -0.70   -0.85   -0.97   -1.00   -0.89   -0.61   -0.17    0.25    0.48    0.33   -0.18   -0.73   -0.82   -0.06
+   300.0    0.00   -0.04   -0.16   -0.33   -0.50   -0.64   -0.76   -0.85   -0.87   -0.78   -0.53   -0.14    0.26    0.46    0.29   -0.21   -0.76   -0.86    0.03
+   305.0    0.00   -0.04   -0.16   -0.31   -0.46   -0.58   -0.68   -0.74   -0.76   -0.69   -0.46   -0.11    0.26    0.45    0.29   -0.21   -0.76   -0.82    0.15
+   310.0    0.00   -0.04   -0.14   -0.29   -0.43   -0.53   -0.59   -0.64   -0.66   -0.59   -0.40   -0.09    0.25    0.44    0.31   -0.16   -0.69   -0.73    0.32
+   315.0    0.00   -0.03   -0.13   -0.26   -0.40   -0.47   -0.52   -0.55   -0.56   -0.52   -0.35   -0.07    0.25    0.45    0.36   -0.06   -0.54   -0.57    0.55
+   320.0    0.00   -0.02   -0.11   -0.24   -0.36   -0.42   -0.46   -0.47   -0.48   -0.45   -0.33   -0.06    0.25    0.49    0.45    0.11   -0.33   -0.32    0.81
+   325.0    0.00   -0.01   -0.09   -0.21   -0.32   -0.37   -0.39   -0.41   -0.41   -0.40   -0.29   -0.05    0.26    0.54    0.58    0.32   -0.03   -0.01    1.10
+   330.0    0.00   -0.01   -0.08   -0.19   -0.28   -0.33   -0.34   -0.34   -0.36   -0.36   -0.28   -0.07    0.27    0.59    0.72    0.59    0.32    0.36    1.40
+   335.0    0.00   -0.01   -0.07   -0.16   -0.25   -0.29   -0.30   -0.31   -0.33   -0.34   -0.28   -0.07    0.27    0.64    0.87    0.86    0.68    0.75    1.71
+   340.0    0.00    0.01   -0.04   -0.13   -0.20   -0.25   -0.26   -0.28   -0.31   -0.33   -0.28   -0.09    0.26    0.69    1.01    1.12    1.04    1.13    1.99
+   345.0    0.00    0.02   -0.03   -0.10   -0.16   -0.21   -0.23   -0.26   -0.30   -0.34   -0.30   -0.12    0.25    0.72    1.12    1.34    1.36    1.48    2.25
+   350.0    0.00    0.02   -0.01   -0.07   -0.13   -0.18   -0.21   -0.24   -0.30   -0.35   -0.32   -0.13    0.23    0.72    1.19    1.49    1.61    1.76    2.45
+   355.0    0.00    0.03    0.04   -0.04   -0.09   -0.14   -0.18   -0.23   -0.30   -0.37   -0.34   -0.16    0.20    0.70    1.19    1.56    1.75    1.94    2.58
+   360.0    0.00    0.04    0.03   -0.01   -0.05   -0.10   -0.16   -0.23   -0.31   -0.39   -0.36   -0.18    0.17    0.66    1.16    1.56    1.79    2.02    2.63
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+LEIGG02PLUS     NONE                                        TYPE / SERIAL NO    
+COPIED              Geo++ GmbH              10    18-MAY-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     4                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+COPIED FROM LEIATX1230+GNSS NONE                            COMMENT             
+ATTENTION! COPIED WITHOUT VERIFICATION BY CALIBRATION!      COMMENT             
+   G01                                                      START OF FREQUENCY  
+     -1.28      1.28     87.18                              NORTH / EAST / UP   
+   NOAZI    0.00    0.04    0.11    0.13    0.01   -0.27   -0.65   -1.02   -1.23   -1.22   -1.03   -0.76   -0.52   -0.39   -0.28   -0.05    0.46    1.30    2.35
+     0.0    0.00    0.08    0.21    0.27    0.15   -0.19   -0.67   -1.13   -1.39   -1.33   -0.99   -0.50   -0.09    0.09    0.03   -0.11   -0.05    0.47    1.60
+     5.0    0.00    0.08    0.21    0.27    0.16   -0.17   -0.65   -1.11   -1.37   -1.32   -0.98   -0.50   -0.08    0.12    0.08   -0.05    0.00    0.47    1.49
+    10.0    0.00    0.08    0.21    0.27    0.16   -0.16   -0.63   -1.09   -1.35   -1.31   -0.98   -0.51   -0.09    0.13    0.12    0.04    0.10    0.52    1.41
+    15.0    0.00    0.08    0.20    0.27    0.17   -0.15   -0.61   -1.06   -1.32   -1.29   -0.99   -0.54   -0.12    0.11    0.16    0.13    0.22    0.62    1.38
+    20.0    0.00    0.07    0.20    0.27    0.17   -0.13   -0.58   -1.02   -1.29   -1.28   -1.00   -0.58   -0.18    0.08    0.17    0.21    0.36    0.75    1.41
+    25.0    0.00    0.07    0.19    0.26    0.17   -0.12   -0.55   -0.98   -1.24   -1.25   -1.00   -0.62   -0.25    0.01    0.15    0.26    0.48    0.90    1.47
+    30.0    0.00    0.07    0.19    0.25    0.16   -0.11   -0.53   -0.93   -1.19   -1.21   -1.01   -0.67   -0.34   -0.09    0.09    0.28    0.59    1.05    1.57
+    35.0    0.00    0.07    0.18    0.24    0.16   -0.11   -0.50   -0.89   -1.14   -1.17   -1.00   -0.72   -0.43   -0.21   -0.01    0.25    0.65    1.18    1.69
+    40.0    0.00    0.06    0.17    0.23    0.14   -0.11   -0.48   -0.85   -1.08   -1.12   -0.98   -0.75   -0.53   -0.34   -0.13    0.18    0.67    1.28    1.80
+    45.0    0.00    0.06    0.16    0.21    0.13   -0.12   -0.47   -0.81   -1.03   -1.07   -0.95   -0.77   -0.60   -0.46   -0.27    0.08    0.64    1.33    1.91
+    50.0    0.00    0.05    0.15    0.19    0.10   -0.14   -0.47   -0.79   -0.98   -1.01   -0.91   -0.77   -0.66   -0.57   -0.40   -0.05    0.56    1.33    1.98
+    55.0    0.00    0.05    0.13    0.17    0.08   -0.16   -0.48   -0.78   -0.95   -0.97   -0.87   -0.75   -0.68   -0.64   -0.52   -0.18    0.46    1.28    2.02
+    60.0    0.00    0.04    0.12    0.15    0.05   -0.19   -0.50   -0.78   -0.93   -0.93   -0.83   -0.72   -0.68   -0.68   -0.61   -0.30    0.34    1.21    2.03
+    65.0    0.00    0.04    0.11    0.12    0.01   -0.23   -0.53   -0.80   -0.93   -0.91   -0.79   -0.67   -0.64   -0.68   -0.65   -0.38    0.23    1.12    2.01
+    70.0    0.00    0.04    0.10    0.10   -0.02   -0.27   -0.57   -0.83   -0.95   -0.90   -0.76   -0.62   -0.59   -0.63   -0.64   -0.43    0.14    1.04    2.00
+    75.0    0.00    0.03    0.08    0.08   -0.05   -0.31   -0.62   -0.88   -0.99   -0.92   -0.74   -0.57   -0.51   -0.56   -0.59   -0.42    0.11    0.99    1.99
+    80.0    0.00    0.03    0.07    0.06   -0.08   -0.35   -0.67   -0.93   -1.04   -0.95   -0.74   -0.54   -0.44   -0.46   -0.50   -0.36    0.13    0.99    2.03
+    85.0    0.00    0.02    0.06    0.04   -0.11   -0.39   -0.72   -0.99   -1.10   -1.00   -0.77   -0.52   -0.38   -0.36   -0.38   -0.25    0.20    1.05    2.11
+    90.0    0.00    0.02    0.05    0.02   -0.13   -0.42   -0.77   -1.06   -1.17   -1.07   -0.81   -0.53   -0.33   -0.27   -0.26   -0.12    0.33    1.17    2.25
+    95.0    0.00    0.02    0.05    0.01   -0.15   -0.45   -0.81   -1.11   -1.24   -1.14   -0.88   -0.56   -0.32   -0.20   -0.14    0.03    0.49    1.34    2.45
+   100.0    0.00    0.02    0.04    0.01   -0.16   -0.47   -0.85   -1.17   -1.31   -1.23   -0.96   -0.62   -0.33   -0.16   -0.05    0.17    0.67    1.54    2.68
+   105.0    0.00    0.01    0.04    0.00   -0.17   -0.49   -0.87   -1.21   -1.38   -1.31   -1.05   -0.70   -0.38   -0.16    0.01    0.28    0.83    1.74    2.92
+   110.0    0.00    0.01    0.04    0.00   -0.17   -0.49   -0.89   -1.24   -1.43   -1.39   -1.15   -0.80   -0.46   -0.20    0.02    0.35    0.96    1.92    3.15
+   115.0    0.00    0.01    0.04    0.01   -0.17   -0.49   -0.90   -1.27   -1.48   -1.46   -1.24   -0.90   -0.56   -0.28   -0.02    0.36    1.03    2.05    3.33
+   120.0    0.00    0.01    0.04    0.01   -0.16   -0.48   -0.90   -1.28   -1.51   -1.52   -1.31   -0.99   -0.66   -0.38   -0.10    0.32    1.03    2.11    3.44
+   125.0    0.00    0.01    0.05    0.02   -0.14   -0.47   -0.89   -1.28   -1.53   -1.56   -1.37   -1.07   -0.76   -0.49   -0.21    0.21    0.96    2.08    3.45
+   130.0    0.00    0.01    0.05    0.03   -0.13   -0.45   -0.87   -1.28   -1.54   -1.58   -1.41   -1.13   -0.84   -0.60   -0.35    0.07    0.82    1.96    3.36
+   135.0    0.00    0.01    0.06    0.04   -0.11   -0.43   -0.86   -1.26   -1.53   -1.57   -1.42   -1.16   -0.90   -0.70   -0.49   -0.10    0.63    1.77    3.18
+   140.0    0.00    0.01    0.06    0.05   -0.09   -0.41   -0.83   -1.24   -1.51   -1.55   -1.41   -1.16   -0.93   -0.77   -0.61   -0.28    0.41    1.53    2.93
+   145.0    0.00    0.01    0.07    0.07   -0.07   -0.39   -0.81   -1.21   -1.47   -1.51   -1.37   -1.13   -0.94   -0.82   -0.72   -0.45    0.19    1.26    2.63
+   150.0    0.00    0.01    0.07    0.08   -0.06   -0.36   -0.78   -1.18   -1.43   -1.46   -1.31   -1.08   -0.91   -0.83   -0.79   -0.58   -0.01    1.01    2.32
+   155.0    0.00    0.01    0.08    0.09   -0.04   -0.34   -0.75   -1.14   -1.38   -1.39   -1.23   -1.01   -0.85   -0.81   -0.82   -0.67   -0.16    0.80    2.05
+   160.0    0.00    0.02    0.08    0.10   -0.02   -0.32   -0.72   -1.10   -1.32   -1.32   -1.15   -0.92   -0.77   -0.76   -0.80   -0.70   -0.24    0.65    1.84
+   165.0    0.00    0.02    0.09    0.11   -0.01   -0.30   -0.69   -1.06   -1.26   -1.24   -1.05   -0.82   -0.68   -0.69   -0.75   -0.67   -0.25    0.59    1.71
+   170.0    0.00    0.02    0.09    0.12    0.00   -0.28   -0.66   -1.01   -1.20   -1.17   -0.96   -0.72   -0.58   -0.59   -0.66   -0.59   -0.19    0.62    1.69
+   175.0    0.00    0.02    0.09    0.12    0.01   -0.26   -0.63   -0.97   -1.14   -1.09   -0.88   -0.63   -0.48   -0.48   -0.54   -0.46   -0.06    0.74    1.77
+   180.0    0.00    0.02    0.09    0.13    0.02   -0.25   -0.61   -0.93   -1.09   -1.02   -0.79   -0.54   -0.39   -0.37   -0.41   -0.31    0.11    0.91    1.92
+   185.0    0.00    0.02    0.10    0.13    0.02   -0.24   -0.59   -0.90   -1.04   -0.96   -0.72   -0.46   -0.30   -0.27   -0.28   -0.15    0.31    1.13    2.14
+   190.0    0.00    0.02    0.10    0.13    0.02   -0.23   -0.58   -0.87   -1.00   -0.91   -0.66   -0.39   -0.21   -0.17   -0.16    0.01    0.51    1.35    2.37
+   195.0    0.00    0.02    0.09    0.13    0.02   -0.23   -0.57   -0.85   -0.96   -0.86   -0.60   -0.32   -0.14   -0.09   -0.05    0.15    0.68    1.56    2.60
+   200.0    0.00    0.02    0.09    0.12    0.02   -0.23   -0.56   -0.84   -0.94   -0.82   -0.56   -0.27   -0.09   -0.02    0.02    0.24    0.81    1.72    2.78
+   205.0    0.00    0.02    0.09    0.12    0.01   -0.24   -0.56   -0.83   -0.92   -0.79   -0.52   -0.23   -0.05    0.01    0.06    0.30    0.88    1.82    2.91
+   210.0    0.00    0.02    0.09    0.11    0.01   -0.24   -0.56   -0.82   -0.90   -0.77   -0.49   -0.20   -0.03    0.03    0.07    0.30    0.89    1.85    2.96
+   215.0    0.00    0.02    0.09    0.11    0.00   -0.25   -0.56   -0.82   -0.89   -0.76   -0.48   -0.19   -0.03    0.01    0.03    0.25    0.84    1.82    2.95
+   220.0    0.00    0.02    0.08    0.10    0.00   -0.25   -0.56   -0.81   -0.89   -0.75   -0.47   -0.20   -0.05   -0.05   -0.05    0.16    0.75    1.73    2.88
+   225.0    0.00    0.02    0.08    0.10   -0.01   -0.25   -0.56   -0.81   -0.88   -0.75   -0.48   -0.23   -0.11   -0.13   -0.16    0.03    0.62    1.61    2.77
+   230.0    0.00    0.02    0.08    0.10   -0.01   -0.25   -0.56   -0.80   -0.88   -0.75   -0.51   -0.28   -0.19   -0.25   -0.30   -0.12    0.47    1.48    2.66
+   235.0    0.00    0.02    0.08    0.09   -0.01   -0.25   -0.55   -0.80   -0.88   -0.77   -0.55   -0.36   -0.30   -0.38   -0.46   -0.28    0.32    1.36    2.55
+   240.0    0.00    0.02    0.08    0.09   -0.01   -0.24   -0.54   -0.79   -0.89   -0.80   -0.61   -0.45   -0.43   -0.54   -0.62   -0.44    0.19    1.27    2.48
+   245.0    0.00    0.02    0.08    0.10    0.00   -0.23   -0.53   -0.79   -0.90   -0.84   -0.69   -0.57   -0.58   -0.70   -0.77   -0.57    0.09    1.21    2.46
+   250.0    0.00    0.02    0.08    0.10    0.00   -0.23   -0.52   -0.79   -0.92   -0.90   -0.78   -0.70   -0.72   -0.85   -0.91   -0.67    0.04    1.19    2.48
+   255.0    0.00    0.03    0.08    0.10    0.01   -0.22   -0.52   -0.80   -0.96   -0.97   -0.89   -0.83   -0.86   -0.97   -1.01   -0.73    0.02    1.22    2.55
+   260.0    0.00    0.03    0.09    0.11    0.02   -0.21   -0.52   -0.81   -1.00   -1.05   -1.00   -0.96   -0.99   -1.07   -1.06   -0.74    0.05    1.28    2.65
+   265.0    0.00    0.03    0.09    0.11    0.02   -0.20   -0.52   -0.84   -1.06   -1.14   -1.12   -1.08   -1.09   -1.12   -1.06   -0.70    0.12    1.37    2.76
+   270.0    0.00    0.03    0.10    0.12    0.03   -0.20   -0.54   -0.88   -1.13   -1.24   -1.23   -1.18   -1.15   -1.13   -1.01   -0.61    0.22    1.47    2.87
+   275.0    0.00    0.04    0.10    0.13    0.04   -0.20   -0.56   -0.92   -1.21   -1.34   -1.34   -1.26   -1.17   -1.09   -0.91   -0.48    0.35    1.57    2.96
+   280.0    0.00    0.04    0.11    0.13    0.04   -0.21   -0.58   -0.98   -1.29   -1.44   -1.43   -1.31   -1.16   -1.00   -0.77   -0.31    0.49    1.67    3.02
+   285.0    0.00    0.04    0.11    0.14    0.05   -0.22   -0.61   -1.03   -1.37   -1.53   -1.50   -1.33   -1.11   -0.88   -0.59   -0.13    0.63    1.74    3.04
+   290.0    0.00    0.04    0.12    0.15    0.05   -0.23   -0.64   -1.09   -1.44   -1.60   -1.55   -1.33   -1.04   -0.73   -0.41    0.05    0.76    1.79    3.03
+   295.0    0.00    0.05    0.13    0.16    0.05   -0.24   -0.67   -1.14   -1.51   -1.66   -1.58   -1.30   -0.94   -0.58   -0.22    0.21    0.86    1.81    2.99
+   300.0    0.00    0.05    0.13    0.17    0.05   -0.25   -0.70   -1.19   -1.56   -1.70   -1.58   -1.25   -0.84   -0.43   -0.06    0.35    0.93    1.80    2.92
+   305.0    0.00    0.05    0.14    0.17    0.06   -0.25   -0.72   -1.22   -1.59   -1.72   -1.56   -1.19   -0.73   -0.29    0.08    0.45    0.97    1.77    2.84
+   310.0    0.00    0.06    0.15    0.18    0.06   -0.26   -0.74   -1.24   -1.61   -1.71   -1.53   -1.12   -0.63   -0.18    0.17    0.50    0.96    1.71    2.76
+   315.0    0.00    0.06    0.16    0.19    0.07   -0.26   -0.75   -1.25   -1.61   -1.69   -1.47   -1.04   -0.53   -0.10    0.21    0.49    0.91    1.62    2.68
+   320.0    0.00    0.06    0.16    0.20    0.07   -0.26   -0.75   -1.25   -1.60   -1.65   -1.41   -0.96   -0.46   -0.05    0.22    0.44    0.81    1.51    2.59
+   325.0    0.00    0.07    0.17    0.21    0.08   -0.26   -0.75   -1.24   -1.57   -1.61   -1.34   -0.88   -0.39   -0.02    0.19    0.36    0.69    1.38    2.50
+   330.0    0.00    0.07    0.18    0.22    0.09   -0.25   -0.74   -1.23   -1.54   -1.55   -1.27   -0.80   -0.33   -0.01    0.14    0.25    0.54    1.23    2.41
+   335.0    0.00    0.07    0.18    0.23    0.10   -0.24   -0.73   -1.21   -1.51   -1.50   -1.20   -0.73   -0.28    0.00    0.09    0.13    0.38    1.07    2.30
+   340.0    0.00    0.07    0.19    0.24    0.11   -0.23   -0.72   -1.20   -1.48   -1.45   -1.13   -0.66   -0.23    0.00    0.03    0.02    0.22    0.91    2.17
+   345.0    0.00    0.08    0.20    0.25    0.12   -0.22   -0.71   -1.18   -1.45   -1.41   -1.08   -0.60   -0.19    0.01    0.00   -0.07    0.09    0.76    2.03
+   350.0    0.00    0.08    0.20    0.26    0.13   -0.21   -0.70   -1.16   -1.43   -1.38   -1.04   -0.56   -0.15    0.03   -0.02   -0.12    0.00    0.63    1.88
+   355.0    0.00    0.08    0.20    0.26    0.14   -0.20   -0.68   -1.15   -1.41   -1.35   -1.00   -0.52   -0.12    0.06    0.00   -0.13   -0.05    0.53    1.73
+   360.0    0.00    0.08    0.21    0.27    0.15   -0.19   -0.67   -1.13   -1.39   -1.33   -0.99   -0.50   -0.09    0.09    0.03   -0.11   -0.05    0.47    1.60
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.19     -1.23     84.72                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.02   -0.08   -0.14   -0.21   -0.29   -0.43   -0.65   -0.91   -1.11   -1.12   -0.85   -0.32    0.28    0.69    0.71    0.36   -0.02    0.10
+     0.0    0.00   -0.10   -0.21   -0.32   -0.41   -0.48   -0.56   -0.65   -0.71   -0.70   -0.54   -0.21    0.25    0.71    0.97    0.87    0.43    0.00    0.28
+     5.0    0.00   -0.10   -0.21   -0.32   -0.41   -0.49   -0.57   -0.66   -0.72   -0.71   -0.55   -0.21    0.26    0.73    0.98    0.87    0.42   -0.04    0.17
+    10.0    0.00   -0.10   -0.21   -0.32   -0.41   -0.49   -0.58   -0.67   -0.74   -0.73   -0.57   -0.22    0.26    0.74    1.00    0.89    0.42   -0.08    0.05
+    15.0    0.00   -0.10   -0.21   -0.32   -0.41   -0.50   -0.59   -0.69   -0.77   -0.76   -0.60   -0.25    0.25    0.75    1.02    0.91    0.43   -0.11   -0.08
+    20.0    0.00   -0.10   -0.21   -0.32   -0.42   -0.50   -0.60   -0.71   -0.80   -0.82   -0.66   -0.30    0.22    0.74    1.04    0.93    0.44   -0.14   -0.20
+    25.0    0.00   -0.10   -0.21   -0.32   -0.42   -0.51   -0.61   -0.74   -0.85   -0.88   -0.74   -0.38    0.16    0.71    1.04    0.95    0.46   -0.15   -0.31
+    30.0    0.00   -0.10   -0.21   -0.32   -0.42   -0.51   -0.62   -0.77   -0.91   -0.97   -0.84   -0.48    0.08    0.66    1.01    0.95    0.47   -0.16   -0.39
+    35.0    0.00   -0.09   -0.21   -0.32   -0.42   -0.51   -0.64   -0.80   -0.97   -1.06   -0.96   -0.61   -0.04    0.57    0.96    0.93    0.47   -0.16   -0.45
+    40.0    0.00   -0.09   -0.21   -0.32   -0.42   -0.52   -0.65   -0.84   -1.04   -1.17   -1.10   -0.76   -0.18    0.45    0.87    0.88    0.44   -0.17   -0.49
+    45.0    0.00   -0.09   -0.20   -0.32   -0.42   -0.52   -0.67   -0.87   -1.11   -1.28   -1.24   -0.92   -0.34    0.30    0.75    0.79    0.39   -0.19   -0.52
+    50.0    0.00   -0.08   -0.20   -0.31   -0.41   -0.52   -0.68   -0.91   -1.17   -1.38   -1.38   -1.08   -0.51    0.14    0.60    0.66    0.30   -0.24   -0.55
+    55.0    0.00   -0.08   -0.19   -0.30   -0.41   -0.52   -0.68   -0.93   -1.23   -1.47   -1.51   -1.24   -0.68   -0.03    0.44    0.51    0.18   -0.32   -0.59
+    60.0    0.00   -0.07   -0.18   -0.30   -0.40   -0.51   -0.68   -0.95   -1.28   -1.55   -1.62   -1.37   -0.84   -0.20    0.26    0.34    0.02   -0.43   -0.63
+    65.0    0.00   -0.07   -0.17   -0.28   -0.39   -0.50   -0.68   -0.95   -1.30   -1.61   -1.70   -1.48   -0.97   -0.35    0.10    0.16   -0.15   -0.56   -0.69
+    70.0    0.00   -0.06   -0.16   -0.27   -0.37   -0.48   -0.66   -0.95   -1.31   -1.64   -1.76   -1.56   -1.07   -0.47   -0.04   -0.01   -0.33   -0.71   -0.75
+    75.0    0.00   -0.05   -0.15   -0.25   -0.35   -0.46   -0.64   -0.93   -1.30   -1.64   -1.78   -1.60   -1.12   -0.54   -0.15   -0.14   -0.49   -0.85   -0.82
+    80.0    0.00   -0.04   -0.13   -0.23   -0.32   -0.43   -0.60   -0.89   -1.27   -1.62   -1.76   -1.59   -1.13   -0.57   -0.21   -0.24   -0.61   -0.97   -0.87
+    85.0    0.00   -0.04   -0.12   -0.21   -0.29   -0.39   -0.56   -0.84   -1.22   -1.57   -1.72   -1.56   -1.10   -0.56   -0.22   -0.28   -0.69   -1.05   -0.89
+    90.0    0.00   -0.03   -0.10   -0.19   -0.26   -0.35   -0.51   -0.79   -1.16   -1.51   -1.66   -1.49   -1.03   -0.49   -0.17   -0.26   -0.70   -1.08   -0.87
+    95.0    0.00   -0.02   -0.08   -0.16   -0.22   -0.30   -0.45   -0.73   -1.09   -1.43   -1.57   -1.39   -0.93   -0.38   -0.07   -0.18   -0.65   -1.05   -0.80
+   100.0    0.00   -0.01   -0.06   -0.13   -0.18   -0.25   -0.40   -0.66   -1.02   -1.34   -1.47   -1.28   -0.80   -0.25    0.08   -0.04   -0.53   -0.95   -0.67
+   105.0    0.00    0.00   -0.04   -0.10   -0.14   -0.20   -0.34   -0.60   -0.94   -1.26   -1.38   -1.17   -0.67   -0.09    0.26    0.14   -0.36   -0.80   -0.49
+   110.0    0.00    0.01   -0.02   -0.07   -0.10   -0.16   -0.29   -0.53   -0.87   -1.18   -1.28   -1.05   -0.52    0.08    0.45    0.35   -0.16   -0.60   -0.26
+   115.0    0.00    0.02    0.00   -0.03   -0.06   -0.11   -0.24   -0.48   -0.81   -1.10   -1.19   -0.94   -0.39    0.25    0.64    0.56    0.07   -0.37   -0.01
+   120.0    0.00    0.03    0.02    0.00   -0.02   -0.07   -0.19   -0.44   -0.76   -1.04   -1.11   -0.84   -0.27    0.39    0.82    0.77    0.30   -0.14    0.24
+   125.0    0.00    0.04    0.04    0.03    0.01   -0.03   -0.16   -0.40   -0.72   -0.99   -1.04   -0.76   -0.17    0.52    0.97    0.95    0.50    0.08    0.47
+   130.0    0.00    0.05    0.06    0.06    0.05    0.00   -0.13   -0.37   -0.69   -0.95   -0.99   -0.69   -0.08    0.61    1.09    1.09    0.67    0.26    0.67
+   135.0    0.00    0.05    0.08    0.09    0.08    0.03   -0.11   -0.35   -0.66   -0.91   -0.94   -0.63   -0.03    0.68    1.17    1.19    0.79    0.40    0.81
+   140.0    0.00    0.06    0.10    0.11    0.11    0.05   -0.09   -0.34   -0.65   -0.89   -0.91   -0.60    0.01    0.71    1.20    1.25    0.87    0.49    0.89
+   145.0    0.00    0.07    0.11    0.13    0.13    0.07   -0.08   -0.33   -0.63   -0.87   -0.88   -0.57    0.02    0.71    1.20    1.26    0.91    0.53    0.91
+   150.0    0.00    0.07    0.12    0.15    0.15    0.09   -0.07   -0.32   -0.62   -0.85   -0.86   -0.56    0.02    0.69    1.17    1.24    0.91    0.54    0.86
+   155.0    0.00    0.08    0.13    0.17    0.16    0.10   -0.06   -0.32   -0.62   -0.84   -0.84   -0.55    0.00    0.65    1.12    1.21    0.89    0.52    0.77
+   160.0    0.00    0.08    0.14    0.18    0.17    0.10   -0.06   -0.32   -0.61   -0.82   -0.83   -0.56   -0.03    0.60    1.06    1.16    0.87    0.49    0.65
+   165.0    0.00    0.08    0.15    0.18    0.18    0.10   -0.06   -0.32   -0.60   -0.82   -0.83   -0.57   -0.06    0.54    1.00    1.12    0.85    0.46    0.53
+   170.0    0.00    0.09    0.15    0.19    0.18    0.10   -0.07   -0.32   -0.60   -0.81   -0.83   -0.59   -0.10    0.48    0.94    1.08    0.84    0.44    0.41
+   175.0    0.00    0.09    0.15    0.18    0.17    0.09   -0.08   -0.32   -0.60   -0.81   -0.84   -0.61   -0.15    0.42    0.89    1.05    0.84    0.44    0.31
+   180.0    0.00    0.09    0.15    0.18    0.16    0.08   -0.09   -0.33   -0.61   -0.82   -0.85   -0.64   -0.19    0.37    0.84    1.03    0.86    0.46    0.25
+   185.0    0.00    0.08    0.14    0.17    0.15    0.06   -0.10   -0.35   -0.62   -0.83   -0.87   -0.67   -0.23    0.32    0.80    1.01    0.87    0.48    0.22
+   190.0    0.00    0.08    0.13    0.15    0.13    0.04   -0.13   -0.37   -0.64   -0.85   -0.89   -0.70   -0.27    0.28    0.76    0.99    0.87    0.50    0.21
+   195.0    0.00    0.08    0.12    0.13    0.10    0.01   -0.15   -0.39   -0.66   -0.87   -0.92   -0.73   -0.31    0.23    0.72    0.96    0.86    0.51    0.22
+   200.0    0.00    0.07    0.11    0.11    0.07   -0.02   -0.19   -0.42   -0.69   -0.90   -0.95   -0.77   -0.35    0.19    0.67    0.90    0.82    0.49    0.23
+   205.0    0.00    0.07    0.09    0.09    0.04   -0.06   -0.22   -0.46   -0.72   -0.94   -0.99   -0.80   -0.39    0.14    0.60    0.83    0.74    0.45    0.23
+   210.0    0.00    0.06    0.08    0.06    0.01   -0.10   -0.26   -0.50   -0.76   -0.98   -1.03   -0.84   -0.43    0.08    0.53    0.72    0.63    0.36    0.21
+   215.0    0.00    0.05    0.06    0.03   -0.03   -0.13   -0.30   -0.54   -0.81   -1.02   -1.07   -0.89   -0.48    0.02    0.43    0.60    0.48    0.25    0.17
+   220.0    0.00    0.04    0.04    0.00   -0.07   -0.17   -0.34   -0.58   -0.85   -1.07   -1.12   -0.94   -0.54   -0.05    0.33    0.46    0.32    0.11    0.10
+   225.0    0.00    0.04    0.02   -0.03   -0.10   -0.21   -0.38   -0.62   -0.89   -1.11   -1.17   -1.00   -0.60   -0.13    0.22    0.32    0.16   -0.04    0.01
+   230.0    0.00    0.03    0.00   -0.06   -0.13   -0.24   -0.41   -0.65   -0.93   -1.16   -1.23   -1.06   -0.67   -0.21    0.12    0.18    0.00   -0.19   -0.09
+   235.0    0.00    0.02   -0.02   -0.08   -0.16   -0.27   -0.44   -0.68   -0.97   -1.22   -1.30   -1.13   -0.75   -0.29    0.02    0.06   -0.14   -0.32   -0.19
+   240.0    0.00    0.01   -0.03   -0.11   -0.19   -0.30   -0.46   -0.71   -1.01   -1.27   -1.36   -1.20   -0.82   -0.37   -0.05   -0.03   -0.24   -0.42   -0.28
+   245.0    0.00    0.00   -0.05   -0.13   -0.22   -0.32   -0.48   -0.73   -1.04   -1.32   -1.43   -1.28   -0.89   -0.43   -0.11   -0.08   -0.29   -0.48   -0.34
+   250.0    0.00   -0.01   -0.07   -0.15   -0.24   -0.34   -0.50   -0.75   -1.08   -1.37   -1.49   -1.34   -0.95   -0.46   -0.13   -0.09   -0.31   -0.51   -0.38
+   255.0    0.00   -0.02   -0.09   -0.17   -0.25   -0.35   -0.51   -0.77   -1.10   -1.41   -1.55   -1.40   -0.99   -0.48   -0.11   -0.06   -0.28   -0.49   -0.38
+   260.0    0.00   -0.02   -0.10   -0.19   -0.27   -0.36   -0.52   -0.78   -1.13   -1.45   -1.59   -1.43   -1.00   -0.46   -0.06    0.00   -0.22   -0.45   -0.36
+   265.0    0.00   -0.03   -0.11   -0.20   -0.28   -0.37   -0.52   -0.79   -1.14   -1.47   -1.62   -1.45   -0.99   -0.41    0.02    0.10   -0.13   -0.39   -0.31
+   270.0    0.00   -0.04   -0.13   -0.22   -0.29   -0.37   -0.53   -0.79   -1.15   -1.49   -1.62   -1.44   -0.94   -0.33    0.13    0.22   -0.03   -0.32   -0.25
+   275.0    0.00   -0.05   -0.14   -0.23   -0.30   -0.38   -0.53   -0.80   -1.16   -1.49   -1.61   -1.39   -0.86   -0.21    0.26    0.35    0.06   -0.26   -0.19
+   280.0    0.00   -0.05   -0.15   -0.24   -0.31   -0.38   -0.53   -0.79   -1.15   -1.47   -1.57   -1.33   -0.76   -0.08    0.41    0.48    0.16   -0.21   -0.12
+   285.0    0.00   -0.06   -0.16   -0.25   -0.31   -0.39   -0.53   -0.79   -1.13   -1.43   -1.51   -1.23   -0.63    0.08    0.57    0.61    0.23   -0.18   -0.07
+   290.0    0.00   -0.07   -0.16   -0.25   -0.32   -0.39   -0.53   -0.78   -1.11   -1.39   -1.43   -1.12   -0.49    0.23    0.72    0.72    0.29   -0.16   -0.03
+   295.0    0.00   -0.07   -0.17   -0.26   -0.32   -0.39   -0.53   -0.77   -1.08   -1.33   -1.34   -0.99   -0.34    0.39    0.86    0.82    0.34   -0.16    0.01
+   300.0    0.00   -0.08   -0.18   -0.27   -0.33   -0.40   -0.53   -0.75   -1.04   -1.26   -1.24   -0.86   -0.20    0.53    0.98    0.90    0.37   -0.16    0.03
+   305.0    0.00   -0.08   -0.18   -0.27   -0.34   -0.40   -0.53   -0.74   -1.00   -1.18   -1.13   -0.74   -0.07    0.65    1.07    0.97    0.39   -0.17    0.06
+   310.0    0.00   -0.08   -0.19   -0.28   -0.34   -0.41   -0.52   -0.72   -0.95   -1.11   -1.03   -0.63    0.04    0.74    1.14    1.01    0.41   -0.16    0.10
+   315.0    0.00   -0.09   -0.19   -0.28   -0.35   -0.41   -0.52   -0.70   -0.91   -1.03   -0.93   -0.53    0.13    0.80    1.18    1.03    0.43   -0.15    0.15
+   320.0    0.00   -0.09   -0.20   -0.29   -0.36   -0.42   -0.52   -0.68   -0.86   -0.96   -0.85   -0.44    0.19    0.84    1.19    1.04    0.44   -0.12    0.20
+   325.0    0.00   -0.09   -0.20   -0.29   -0.36   -0.43   -0.52   -0.67   -0.82   -0.90   -0.77   -0.38    0.23    0.84    1.18    1.03    0.46   -0.08    0.27
+   330.0    0.00   -0.10   -0.20   -0.30   -0.37   -0.44   -0.53   -0.65   -0.79   -0.84   -0.71   -0.33    0.24    0.83    1.15    1.01    0.47   -0.04    0.33
+   335.0    0.00   -0.10   -0.21   -0.30   -0.38   -0.45   -0.53   -0.64   -0.76   -0.80   -0.66   -0.30    0.25    0.80    1.11    0.99    0.48    0.01    0.39
+   340.0    0.00   -0.10   -0.21   -0.30   -0.38   -0.45   -0.54   -0.64   -0.74   -0.76   -0.62   -0.27    0.24    0.77    1.07    0.96    0.48    0.04    0.43
+   345.0    0.00   -0.10   -0.21   -0.31   -0.39   -0.46   -0.54   -0.63   -0.72   -0.73   -0.59   -0.25    0.24    0.74    1.03    0.93    0.47    0.06    0.44
+   350.0    0.00   -0.10   -0.21   -0.31   -0.40   -0.47   -0.55   -0.63   -0.71   -0.71   -0.57   -0.24    0.24    0.72    0.99    0.90    0.46    0.05    0.42
+   355.0    0.00   -0.10   -0.21   -0.31   -0.40   -0.48   -0.55   -0.64   -0.70   -0.70   -0.55   -0.22    0.24    0.71    0.98    0.88    0.45    0.04    0.37
+   360.0    0.00   -0.10   -0.21   -0.32   -0.41   -0.48   -0.56   -0.65   -0.71   -0.70   -0.54   -0.21    0.25    0.71    0.97    0.87    0.43    0.00    0.28
+   G02                                                      END OF FREQUENCY    
+   R01                                                      START OF FREQUENCY  
+     -1.28      1.28     87.18                              NORTH / EAST / UP   
+   NOAZI    0.00    0.03    0.08    0.08   -0.06   -0.38   -0.80   -1.22   -1.52   -1.58   -1.43   -1.16   -0.85   -0.62   -0.45   -0.21    0.24    1.02    2.14
+     0.0    0.00    0.03    0.09    0.08   -0.08   -0.45   -0.95   -1.46   -1.82   -1.89   -1.67   -1.24   -0.80   -0.53   -0.52   -0.73   -0.87   -0.59    0.50
+     5.0    0.00    0.03    0.08    0.07   -0.08   -0.44   -0.93   -1.44   -1.80   -1.88   -1.68   -1.27   -0.83   -0.55   -0.54   -0.73   -0.89   -0.67    0.31
+    10.0    0.00    0.03    0.08    0.07   -0.10   -0.43   -0.92   -1.42   -1.79   -1.88   -1.69   -1.31   -0.88   -0.59   -0.55   -0.70   -0.85   -0.68    0.18
+    15.0    0.00    0.03    0.06    0.06   -0.09   -0.43   -0.90   -1.40   -1.76   -1.87   -1.71   -1.36   -0.94   -0.66   -0.56   -0.66   -0.77   -0.61    0.13
+    20.0    0.00    0.01    0.06    0.06   -0.09   -0.41   -0.88   -1.36   -1.74   -1.86   -1.73   -1.41   -1.02   -0.72   -0.58   -0.62   -0.66   -0.49    0.18
+    25.0    0.00    0.01    0.05    0.05   -0.10   -0.41   -0.86   -1.33   -1.70   -1.85   -1.74   -1.46   -1.10   -0.80   -0.64   -0.59   -0.55   -0.32    0.30
+    30.0    0.00    0.01    0.05    0.04   -0.11   -0.41   -0.85   -1.30   -1.66   -1.82   -1.75   -1.51   -1.20   -0.91   -0.71   -0.58   -0.44   -0.14    0.49
+    35.0    0.00    0.01    0.04    0.03   -0.11   -0.41   -0.83   -1.27   -1.63   -1.79   -1.74   -1.56   -1.28   -1.03   -0.82   -0.62   -0.37    0.03    0.70
+    40.0    0.00   -0.06    0.03    0.03   -0.13   -0.42   -0.83   -1.25   -1.59   -1.75   -1.72   -1.58   -1.37   -1.16   -0.94   -0.68   -0.33    0.18    0.91
+    45.0    0.00   -0.06    0.03    0.01   -0.14   -0.44   -0.83   -1.25   -1.56   -1.71   -1.69   -1.58   -1.42   -1.26   -1.07   -0.77   -0.34    0.29    1.10
+    50.0    0.00   -0.01    0.02   -0.19   -0.16   -0.46   -0.85   -1.25   -1.53   -1.67   -1.65   -1.57   -1.46   -1.35   -1.18   -0.89   -0.40    0.33    1.23
+    55.0    0.00   -0.05    0.01   -0.02   -0.18   -0.48   -0.87   -1.26   -1.52   -1.64   -1.61   -1.53   -1.46   -1.39   -1.27   -1.00   -0.46    0.31    1.29
+    60.0    0.00   -0.01   -0.12   -0.03   -0.19   -0.51   -0.90   -1.28   -1.53   -1.61   -1.57   -1.49   -1.42   -1.40   -1.34   -1.10   -0.56    0.27    1.30
+    65.0    0.00   -0.01   -0.11   -0.05   -0.22   -0.55   -0.93   -1.31   -1.54   -1.60   -1.53   -1.41   -1.36   -1.37   -1.35   -1.16   -0.65    0.20    1.26
+    70.0    0.00   -0.01   -0.10   -0.06   -0.24   -0.58   -0.97   -1.35   -1.58   -1.60   -1.50   -1.35   -1.29   -1.30   -1.32   -1.17   -0.71    0.14    1.21
+    75.0    0.00   -0.01   -0.02   -0.07   -0.26   -0.61   -1.02   -1.40   -1.63   -1.63   -1.48   -1.29   -1.19   -1.20   -1.24   -1.14   -0.71    0.11    1.18
+    80.0    0.00   -0.01   -0.02   -0.07   -0.27   -0.63   -1.06   -1.45   -1.68   -1.67   -1.48   -1.25   -1.10   -1.08   -1.13   -1.05   -0.66    0.14    1.21
+    85.0    0.00   -0.02   -0.01   -0.08   -0.29   -0.66   -1.10   -1.50   -1.74   -1.72   -1.51   -1.23   -1.03   -0.97   -0.99   -0.91   -0.54    0.25    1.31
+    90.0    0.00   -0.02   -0.02   -0.09   -0.29   -0.66   -1.13   -1.56   -1.80   -1.79   -1.55   -1.24   -0.98   -0.87   -0.84   -0.75   -0.36    0.44    1.52
+    95.0    0.00   -0.01   -0.01   -0.09   -0.30   -0.67   -1.15   -1.60   -1.86   -1.85   -1.62   -1.27   -0.96   -0.78   -0.70   -0.57   -0.15    0.69    1.81
+   100.0    0.00   -0.01   -0.02   -0.08   -0.29   -0.67   -1.17   -1.64   -1.92   -1.93   -1.70   -1.33   -0.97   -0.73   -0.60   -0.39    0.10    0.99    2.17
+   105.0    0.00   -0.02   -0.01   -0.07   -0.29   -0.68   -1.17   -1.66   -1.96   -2.00   -1.78   -1.40   -1.02   -0.72   -0.52   -0.24    0.32    1.29    2.56
+   110.0    0.00   -0.02   -0.01   -0.07   -0.28   -0.66   -1.17   -1.65   -1.99   -2.06   -1.87   -1.50   -1.09   -0.76   -0.49   -0.14    0.52    1.58    2.95
+   115.0    0.00   -0.01   -0.04   -0.05   -0.27   -0.65   -1.16   -1.66   -2.01   -2.11   -1.94   -1.58   -1.18   -0.82   -0.51   -0.09    0.66    1.82    3.28
+   120.0    0.00   -0.01   -0.04   -0.05   -0.26   -0.63   -1.13   -1.64   -2.01   -2.14   -1.98   -1.65   -1.27   -0.90   -0.56   -0.07    0.73    1.97    3.53
+   125.0    0.00   -0.01    0.01   -0.04   -0.23   -0.61   -1.10   -1.61   -2.00   -2.14   -2.01   -1.71   -1.33   -0.98   -0.62   -0.13    0.73    2.03    3.64
+   130.0    0.00   -0.01    0.01   -0.03   -0.22   -0.58   -1.07   -1.59   -1.98   -2.12   -2.02   -1.73   -1.37   -1.05   -0.71   -0.21    0.66    1.98    3.62
+   135.0    0.00   -0.01    0.02   -0.02   -0.20   -0.56   -1.05   -1.54   -1.92   -2.07   -1.97   -1.71   -1.39   -1.09   -0.79   -0.30    0.53    1.84    3.47
+   140.0    0.00   -0.01    0.02   -0.01   -0.19   -0.54   -1.00   -1.50   -1.86   -2.00   -1.91   -1.66   -1.36   -1.09   -0.82   -0.40    0.39    1.65    3.22
+   145.0    0.00   -0.01    0.04    0.01   -0.17   -0.51   -0.97   -1.44   -1.79   -1.91   -1.82   -1.57   -1.30   -1.06   -0.85   -0.47    0.24    1.41    2.91
+   150.0    0.00   -0.01    0.04    0.02   -0.16   -0.48   -0.93   -1.38   -1.72   -1.81   -1.70   -1.45   -1.20   -0.99   -0.81   -0.51    0.13    1.19    2.58
+   155.0    0.00    0.01    0.05    0.03   -0.14   -0.46   -0.89   -1.32   -1.62   -1.70   -1.57   -1.32   -1.06   -0.87   -0.73   -0.49    0.06    1.02    2.28
+   160.0    0.00    0.02    0.05    0.04   -0.11   -0.43   -0.85   -1.26   -1.53   -1.59   -1.44   -1.16   -0.90   -0.73   -0.62   -0.41    0.06    0.92    2.07
+   165.0    0.00    0.02    0.07    0.06   -0.10   -0.40   -0.80   -1.20   -1.44   -1.46   -1.29   -1.01   -0.73   -0.57   -0.46   -0.29    0.13    0.91    1.97
+   170.0    0.00    0.03    0.07    0.07   -0.07   -0.37   -0.75   -1.12   -1.35   -1.36   -1.15   -0.85   -0.57   -0.39   -0.29   -0.12    0.27    0.99    1.99
+   175.0    0.00    0.03    0.08    0.08   -0.04   -0.32   -0.69   -1.06   -1.26   -1.24   -1.04   -0.72   -0.42   -0.21   -0.09    0.08    0.47    1.18    2.13
+   180.0    0.00    0.03    0.09    0.11   -0.02   -0.29   -0.65   -0.98   -1.18   -1.14   -0.91   -0.58   -0.27   -0.05    0.10    0.30    0.69    1.40    2.37
+   185.0    0.00    0.04    0.11    0.12   -0.02   -0.25   -0.60   -0.92   -1.09   -1.05   -0.81   -0.47   -0.14    0.09    0.27    0.49    0.93    1.67    2.68
+   190.0    0.00    0.04    0.11    0.13    0.02   -0.22   -0.56   -0.86   -1.02   -0.97   -0.71   -0.37   -0.02    0.22    0.41    0.67    1.15    1.93    3.01
+   195.0    0.00    0.04    0.11    0.15    0.04   -0.19   -0.52   -0.81   -0.95   -0.89   -0.63   -0.27    0.07    0.32    0.53    0.81    1.32    2.17    3.31
+   200.0    0.00    0.05    0.12    0.16    0.07   -0.16   -0.47   -0.78   -0.91   -0.83   -0.56   -0.20    0.14    0.39    0.59    0.88    1.44    2.34    3.56
+   205.0    0.00    0.05    0.13    0.17    0.08   -0.14   -0.45   -0.73   -0.87   -0.77   -0.50   -0.13    0.19    0.42    0.61    0.91    1.48    2.44    3.73
+   210.0    0.00    0.05    0.14    0.18    0.11   -0.12   -0.43   -0.71   -0.83   -0.74   -0.45   -0.08    0.23    0.44    0.60    0.86    1.43    2.43    3.80
+   215.0    0.00    0.06    0.15    0.20    0.12   -0.11   -0.42   -0.69   -0.80   -0.71   -0.42   -0.05    0.25    0.42    0.53    0.76    1.34    2.37    3.79
+   220.0    0.00    0.06    0.15    0.20    0.13   -0.10   -0.41   -0.68   -0.80   -0.69   -0.38   -0.04    0.23    0.35    0.42    0.63    1.19    2.24    3.71
+   225.0    0.00    0.06    0.17    0.21    0.13   -0.09   -0.41   -0.68   -0.79   -0.69   -0.38   -0.06    0.18    0.26    0.28    0.44    1.00    2.08    3.57
+   230.0    0.00    0.06    0.17    0.22    0.14   -0.09   -0.41   -0.68   -0.81   -0.69   -0.41   -0.10    0.11    0.13    0.10    0.24    0.80    1.91    3.43
+   235.0    0.00    0.07    0.18    0.22    0.14   -0.10   -0.41   -0.70   -0.82   -0.72   -0.45   -0.18   -0.01   -0.02   -0.09    0.04    0.61    1.74    3.28
+   240.0    0.00    0.07    0.18    0.22    0.14   -0.09   -0.42   -0.72   -0.85   -0.76   -0.52   -0.27   -0.15   -0.20   -0.28   -0.16    0.43    1.61    3.16
+   245.0    0.00    0.07    0.18    0.23    0.14   -0.10   -0.43   -0.74   -0.88   -0.82   -0.62   -0.41   -0.32   -0.39   -0.47   -0.33    0.29    1.51    3.10
+   250.0    0.00    0.07    0.18    0.23    0.14   -0.11   -0.45   -0.76   -0.93   -0.90   -0.74   -0.57   -0.50   -0.57   -0.65   -0.47    0.21    1.45    3.05
+   255.0    0.00    0.08    0.18    0.22    0.14   -0.11   -0.47   -0.79   -0.99   -1.00   -0.87   -0.73   -0.69   -0.75   -0.80   -0.56    0.15    1.43    3.04
+   260.0    0.00    0.07    0.18    0.23    0.14   -0.12   -0.48   -0.82   -1.05   -1.10   -1.02   -0.92   -0.87   -0.90   -0.89   -0.61    0.15    1.44    3.04
+   265.0    0.00    0.07    0.18    0.22    0.13   -0.13   -0.50   -0.87   -1.13   -1.23   -1.18   -1.09   -1.04   -1.01   -0.94   -0.60    0.18    1.47    3.04
+   270.0    0.00    0.07    0.17    0.22    0.12   -0.15   -0.53   -0.92   -1.22   -1.36   -1.34   -1.25   -1.16   -1.09   -0.95   -0.55    0.25    1.50    3.01
+   275.0    0.00    0.08    0.17    0.22    0.11   -0.16   -0.56   -0.97   -1.32   -1.48   -1.49   -1.40   -1.26   -1.12   -0.89   -0.45    0.35    1.53    2.95
+   280.0    0.00    0.07    0.17    0.20    0.10   -0.18   -0.59   -1.04   -1.41   -1.60   -1.62   -1.50   -1.32   -1.09   -0.79   -0.31    0.46    1.55    2.86
+   285.0    0.00    0.07    0.16    0.19    0.09   -0.20   -0.63   -1.09   -1.50   -1.72   -1.73   -1.59   -1.33   -1.03   -0.65   -0.15    0.57    1.55    2.74
+   290.0    0.00    0.06    0.16    0.19    0.07   -0.23   -0.67   -1.16   -1.58   -1.81   -1.83   -1.64   -1.32   -0.92   -0.50    0.02    0.66    1.53    2.60
+   295.0    0.00    0.07    0.16    0.18    0.06   -0.25   -0.71   -1.23   -1.66   -1.89   -1.90   -1.66   -1.27   -0.81   -0.33    0.16    0.74    1.50    2.46
+   300.0    0.00    0.06    0.15    0.17    0.04   -0.28   -0.75   -1.29   -1.73   -1.97   -1.93   -1.64   -1.20   -0.69   -0.19    0.29    0.79    1.45    2.32
+   305.0    0.00    0.06    0.14    0.16    0.03   -0.30   -0.79   -1.34   -1.78   -2.02   -1.94   -1.63   -1.12   -0.57   -0.06    0.38    0.81    1.38    2.20
+   310.0    0.00    0.06    0.14    0.15    0.01   -0.33   -0.84   -1.38   -1.83   -2.03   -1.94   -1.58   -1.04   -0.47    0.03    0.41    0.78    1.30    2.11
+   315.0    0.00    0.06    0.14    0.14   -0.07   -0.36   -0.87   -1.42   -1.85   -2.04   -1.92   -1.53   -0.97   -0.40    0.06    0.39    0.71    1.18    2.04
+   320.0    0.00    0.05    0.13    0.13   -0.04   -0.38   -0.90   -1.44   -1.88   -2.03   -1.89   -1.47   -0.91   -0.36    0.05    0.32    0.58    1.04    1.96
+   325.0    0.00    0.06    0.12    0.11   -0.05   -0.41   -0.92   -1.46   -1.88   -2.02   -1.85   -1.41   -0.86   -0.34    0.01    0.21    0.41    0.88    1.89
+   330.0    0.00    0.05    0.12    0.11   -0.06   -0.42   -0.93   -1.47   -1.88   -2.00   -1.81   -1.35   -0.81   -0.35   -0.07    0.06    0.21    0.69    1.79
+   335.0    0.00    0.05    0.11    0.10   -0.07   -0.43   -0.95   -1.49   -1.87   -1.98   -1.76   -1.31   -0.79   -0.37   -0.17   -0.11   -0.01    0.47    1.65
+   340.0    0.00    0.04    0.10    0.10   -0.07   -0.44   -0.95   -1.49   -1.86   -1.95   -1.73   -1.28   -0.77   -0.40   -0.28   -0.29   -0.25    0.23    1.47
+   345.0    0.00    0.05    0.10    0.09   -0.08   -0.44   -0.97   -1.49   -1.85   -1.93   -1.70   -1.25   -0.76   -0.45   -0.36   -0.45   -0.46   -0.01    1.24
+   350.0    0.00    0.04    0.09    0.09   -0.08   -0.44   -0.97   -1.48   -1.84   -1.92   -1.68   -1.24   -0.77   -0.48   -0.45   -0.58   -0.64   -0.23    1.00
+   355.0    0.00    0.04    0.08    0.08   -0.08   -0.44   -0.95   -1.47   -1.84   -1.90   -1.66   -1.23   -0.78   -0.50   -0.49   -0.67   -0.78   -0.44    0.73
+   360.0    0.00    0.03    0.09    0.08   -0.08   -0.45   -0.95   -1.46   -1.82   -1.89   -1.67   -1.24   -0.80   -0.53   -0.52   -0.73   -0.87   -0.59    0.50
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+      0.19     -1.23     84.72                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.01   -0.04   -0.04   -0.02    0.02    0.00   -0.11   -0.30   -0.51   -0.58   -0.41    0.02    0.56    0.96    1.03    0.74    0.38    0.42
+     0.0    0.00   -0.13   -0.26   -0.36   -0.40   -0.34   -0.25   -0.18   -0.14   -0.12   -0.05    0.13    0.42    0.75    0.94    0.85    0.45    0.07    0.36
+     5.0    0.00   -0.14   -0.28   -0.38   -0.40   -0.36   -0.28   -0.22   -0.19   -0.17   -0.10    0.08    0.39    0.73    0.91    0.80    0.38   -0.03    0.22
+    10.0    0.00   -0.14   -0.28   -0.39   -0.42   -0.38   -0.32   -0.27   -0.25   -0.24   -0.18    0.03    0.36    0.71    0.90    0.78    0.34   -0.10    0.11
+    15.0    0.00   -0.14   -0.29   -0.39   -0.42   -0.40   -0.35   -0.32   -0.33   -0.33   -0.27   -0.05    0.31    0.70    0.91    0.78    0.33   -0.14    0.02
+    20.0    0.00   -0.15   -0.29   -0.40   -0.44   -0.41   -0.37   -0.37   -0.41   -0.45   -0.39   -0.15    0.24    0.67    0.92    0.80    0.34   -0.15   -0.04
+    25.0    0.00   -0.15   -0.30   -0.40   -0.44   -0.42   -0.40   -0.43   -0.50   -0.56   -0.52   -0.28    0.16    0.64    0.93    0.84    0.39   -0.11   -0.05
+    30.0    0.00   -0.15   -0.30   -0.39   -0.43   -0.42   -0.42   -0.48   -0.59   -0.70   -0.66   -0.41    0.06    0.59    0.92    0.88    0.46   -0.04    0.39
+    35.0    0.00   -0.15   -0.30   -0.39   -0.43   -0.41   -0.44   -0.52   -0.68   -0.81   -0.81   -0.56   -0.06    0.50    0.89    0.90    0.52    0.06    0.07
+    40.0    0.00   -0.15   -0.29   -0.39   -0.42   -0.42   -0.44   -0.56   -0.75   -0.93   -0.95   -0.71   -0.19    0.41    0.84    0.90    0.57    0.15    0.16
+    45.0    0.00   -0.15   -0.28   -0.38   -0.41   -0.40   -0.45   -0.58   -0.81   -1.03   -1.07   -0.85   -0.33    0.29    0.76    0.88    0.61    0.24    0.23
+    50.0    0.00   -0.14   -0.27   -0.36   -0.38   -0.39   -0.44   -0.60   -0.85   -1.10   -1.18   -0.97   -0.47    0.16    0.65    0.81    0.60    0.29    0.28
+    55.0    0.00   -0.14   -0.26   -0.34   -0.37   -0.37   -0.42   -0.59   -0.87   -1.15   -1.26   -1.08   -0.58    0.04    0.54    0.72    0.56    0.29    0.28
+    60.0    0.00   -0.13   -0.25   -0.33   -0.34   -0.33   -0.39   -0.58   -0.88   -1.17   -1.31   -1.14   -0.69   -0.08    0.41    0.60    0.45    0.23    0.25
+    65.0    0.00   -0.12   -0.23   -0.29   -0.32   -0.31   -0.37   -0.55   -0.87   -1.18   -1.32   -1.18   -0.75   -0.17    0.30    0.45    0.33    0.14    0.16
+    70.0    0.00   -0.11   -0.22   -0.28   -0.27   -0.27   -0.33   -0.53   -0.84   -1.16   -1.32   -1.19   -0.78   -0.23    0.20    0.32    0.18    0.71    0.06
+    75.0    0.00   -0.10   -0.20   -0.24   -0.24   -0.23   -0.29   -0.49   -0.80   -1.12   -1.29   -1.17   -0.77   -0.25    0.13    0.22    0.04   -0.14   -0.05
+    80.0    0.00   -0.09   -0.17   -0.22   -0.20   -0.19   -0.24   -0.43   -0.75   -1.07   -1.22   -1.10   -0.72   -0.24    0.10    0.14   -0.07   -0.26   -0.14
+    85.0    0.00   -0.08   -0.16   -0.19   -0.16   -0.14   -0.19   -0.37   -0.68   -0.99   -1.15   -1.03   -0.65   -0.19    0.10    0.10   -0.15   -0.34   -0.18
+    90.0    0.00   -0.07   -0.14   -0.15   -0.12   -0.09   -0.13   -0.31   -0.62   -0.92   -1.06   -0.93   -0.55   -0.11    0.17    0.13   -0.16   -0.36   -0.16
+    95.0    0.00   -0.06   -0.11   -0.12   -0.07   -0.04   -0.07   -0.25   -0.54   -0.83   -0.97   -0.82   -0.44    0.01    0.27    0.21   -0.10   -0.31   -0.05
+   100.0    0.00   -0.05   -0.08   -0.09   -0.03    0.02   -0.01   -0.17   -0.47   -0.74   -0.87   -0.72   -0.32    0.13    0.41    0.35    0.04   -0.17    0.14
+   105.0    0.00   -0.04   -0.06   -0.05    0.01    0.08    0.06   -0.11   -0.38   -0.66   -0.78   -0.63   -0.21    0.28    0.58    0.53    0.22    0.02    0.39
+   110.0    0.00   -0.03   -0.03   -0.02    0.06    0.13    0.11   -0.03   -0.31   -0.59   -0.70   -0.53   -0.09    0.42    0.76    0.74    0.44    0.26    0.67
+   115.0    0.00   -0.01   -0.01    0.02    0.10    0.18    0.17    0.03   -0.24   -0.50   -0.62   -0.44    0.01    0.56    0.93    0.96    0.70    0.53    0.97
+   120.0    0.00   -0.03    0.01    0.06    0.14    0.22    0.23    0.08   -0.18   -0.44   -0.55   -0.36    0.10    0.68    1.10    1.17    0.94    0.77    1.23
+   125.0    0.00    0.02    0.03    0.09    0.17    0.26    0.27    0.14   -0.12   -0.39   -0.49   -0.30    0.18    0.78    1.24    1.35    1.16    0.99    1.41
+   130.0    0.00    0.03    0.05    0.12    0.21    0.30    0.30    0.18   -0.08   -0.34   -0.45   -0.25    0.24    0.86    1.36    1.50    1.33    1.13    1.53
+   135.0    0.00    0.04    0.08    0.15    0.24    0.33    0.33    0.21   -0.03   -0.29   -0.40   -0.20    0.29    0.93    1.45    1.61    1.43    1.21    1.54
+   140.0    0.00    0.05    0.10    0.17    0.27    0.34    0.35    0.23   -0.02   -0.26   -0.36   -0.17    0.33    0.97    1.49    1.68    1.48    1.21    1.46
+   145.0    0.00    0.06    0.12    0.19    0.28    0.36    0.36    0.24    0.63   -0.24   -0.33   -0.14    0.35    0.99    1.52    1.69    1.48    1.15    1.31
+   150.0    0.00    0.06    0.13    0.21    0.30    0.38    0.37    0.25    0.01   -0.22   -0.31   -0.12    0.37    0.99    1.52    1.68    1.45    1.05    1.08
+   155.0    0.00    0.08    0.14    0.23    0.31    0.39    0.37    0.24    0.01   -0.22   -0.30   -0.10    0.36    0.98    1.49    1.65    1.38    0.92    0.84
+   160.0    0.00    0.09    0.16    0.25    0.32    0.39    0.37    0.23    0.01   -0.21   -0.29   -0.11    0.35    0.95    1.45    1.60    1.31    0.79    0.60
+   165.0    0.00    0.09    0.18    0.25    0.34    0.39    0.37    0.22    0.01   -0.22   -0.30   -0.12    0.32    0.91    1.40    1.55    1.25    0.69    0.40
+   170.0    0.00    0.10    0.19    0.27    0.35    0.39    0.36    0.22    0.60   -0.22   -0.31   -0.15    0.29    0.86    1.34    1.50    1.20    0.62    0.26
+   175.0    0.00    0.11    0.19    0.28    0.35    0.39    0.36    0.23    0.60   -0.23   -0.32   -0.18    0.23    0.80    1.29    1.45    1.17    0.59    0.18
+   180.0    0.00    0.12    0.20    0.28    0.35    0.40    0.36    0.23   -0.01   -0.24   -0.34   -0.21    0.19    0.74    1.23    1.41    1.16    0.59    0.18
+   185.0    0.00    0.11    0.21    0.29    0.36    0.40    0.37    0.22    0.62   -0.24   -0.36   -0.25    0.13    0.67    1.17    1.37    1.16    0.62    0.23
+   190.0    0.00    0.12    0.21    0.29    0.37    0.40    0.37    0.23    0.64   -0.25   -0.38   -0.29    0.08    0.61    1.11    1.33    1.13    0.65    0.30
+   195.0    0.00    0.12    0.21    0.28    0.36    0.40    0.37    0.24    0.66   -0.25   -0.40   -0.32    0.03    0.55    1.04    1.28    1.11    0.68    0.39
+   200.0    0.00    0.12    0.21    0.29    0.35    0.40    0.36    0.24   -0.01   -0.26   -0.42   -0.35   -0.02    0.49    0.98    1.19    1.06    0.67    0.45
+   205.0    0.00    0.13    0.21    0.29    0.35    0.38    0.36    0.22   -0.01   -0.28   -0.44   -0.37   -0.05    0.44    0.89    1.11    0.97    0.63    0.49
+   210.0    0.00    0.12    0.21    0.27    0.34    0.37    0.35    0.21   -0.02   -0.29   -0.45   -0.38   -0.08    0.39    0.82    0.99    0.85    0.54    0.47
+   215.0    0.00    0.12    0.20    0.27    0.32    0.36    0.33    0.19   -0.05   -0.31   -0.47   -0.40   -0.10    0.35    0.73    0.87    0.70    0.43    0.43
+   220.0    0.00    0.11    0.19    0.25    0.30    0.34    0.30    0.16   -0.08   -0.33   -0.48   -0.42   -0.12    0.30    0.65    0.75    0.55    0.29    0.33
+   225.0    0.00    0.11    0.18    0.23    0.28    0.31    0.27    0.12   -0.10   -0.35   -0.50   -0.44   -0.14    0.26    0.57    0.63    0.40    0.14    0.22
+   230.0    0.00    0.11    0.17    0.22    0.27    0.28    0.24    0.09   -0.14   -0.39   -0.53   -0.46   -0.17    0.22    0.50    0.52    0.27    0.01    0.09
+   235.0    0.00    0.10    0.16    0.21    0.24    0.26    0.21    0.06   -0.18   -0.43   -0.57   -0.50   -0.21    0.18    0.44    0.44    0.17   -0.09   -0.01
+   240.0    0.00    0.10    0.15    0.18    0.22    0.23    0.18    0.03   -0.22   -0.48   -0.61   -0.53   -0.24    0.13    0.40    0.38    0.12   -0.14   -0.10
+   245.0    0.00    0.09    0.14    0.17    0.19    0.20    0.15    0.73   -0.25   -0.51   -0.66   -0.58   -0.29    0.10    0.37    0.38    0.13   -0.13   -0.13
+   250.0    0.00    0.08    0.12    0.15    0.17    0.18    0.13   -0.03   -0.29   -0.55   -0.70   -0.62   -0.32    0.08    0.37    0.40    0.18   -0.09   -0.14
+   255.0    0.00    0.07    0.11    0.13    0.16    0.17    0.11   -0.05   -0.30   -0.58   -0.74   -0.67   -0.36    0.06    0.41    0.47    0.26    0.49   -0.10
+   260.0    0.00    0.07    0.09    0.11    0.13    0.15    0.10   -0.06   -0.33   -0.60   -0.77   -0.69   -0.37    0.08    0.46    0.56    0.38    0.11   -0.05
+   265.0    0.00    0.06    0.08    0.10    0.12    0.13    0.09   -0.07   -0.33   -0.62   -0.80   -0.72   -0.38    0.11    0.54    0.68    0.53    0.22    0.01
+   270.0    0.00    0.05    0.06    0.07    0.10    0.12    0.07   -0.07   -0.34   -0.64   -0.80   -0.72   -0.35    0.18    0.64    0.82    0.66    0.33    0.07
+   275.0    0.00    0.03    0.04    0.05    0.08    0.11    0.07   -0.09   -0.35   -0.64   -0.80   -0.69   -0.29    0.28    0.76    0.95    0.77    0.40    0.10
+   280.0    0.00    0.03    0.03    0.03    0.06    0.09    0.06   -0.08   -0.35   -0.63   -0.78   -0.66   -0.22    0.38    0.90    1.08    0.87    0.43    0.12
+   285.0    0.00    0.01    0.16    0.01    0.04    0.07    0.04   -0.10   -0.34   -0.61   -0.74   -0.59   -0.11    0.52    1.05    1.21    0.93    0.43    0.12
+   290.0    0.00    0.07   -0.01   -0.01    0.01    0.05    0.03   -0.10   -0.34   -0.60   -0.70   -0.51    0.49    0.66    1.19    1.31    0.97    0.41    0.10
+   295.0    0.00    0.07   -0.03   -0.04   -0.01    0.03    0.01   -0.11   -0.34   -0.57   -0.65   -0.42    0.12    0.80    1.32    1.40    0.99    0.36    0.08
+   300.0    0.00   -0.02   -0.05   -0.06   -0.04    0.40   -0.01   -0.12   -0.33   -0.54   -0.58   -0.32    0.24    0.93    1.44    1.47    0.98    0.30    0.07
+   305.0    0.00   -0.03   -0.07   -0.09   -0.08   -0.03   -0.04   -0.14   -0.32   -0.50   -0.50   -0.22    0.35    1.04    1.52    1.51    0.96    0.25    0.07
+   310.0    0.00   -0.04   -0.09   -0.12   -0.10   -0.06   -0.06   -0.15   -0.30   -0.45   -0.43   -0.14    0.44    1.12    1.57    1.53    0.95    0.23    0.12
+   315.0    0.00   -0.05   -0.11   -0.15   -0.14   -0.09   -0.08   -0.14   -0.28   -0.40   -0.36   -0.06    0.52    1.17    1.59    1.52    0.94    0.22    0.20
+   320.0    0.00   -0.06   -0.14   -0.18   -0.18   -0.13   -0.10   -0.14   -0.24   -0.34   -0.29    0.02    0.56    1.19    1.58    1.50    0.92    0.24    0.29
+   325.0    0.00   -0.07   -0.16   -0.20   -0.20   -0.16   -0.12   -0.14   -0.21   -0.28   -0.22    0.07    0.58    1.16    1.53    1.44    0.90    0.27    0.40
+   330.0    0.00   -0.09   -0.17   -0.23   -0.23   -0.19   -0.14   -0.13   -0.18   -0.22   -0.16    0.11    0.57    1.12    1.45    1.38    0.87    0.31    0.50
+   335.0    0.00   -0.10   -0.20   -0.26   -0.27   -0.22   -0.15   -0.12   -0.15   -0.17   -0.11    0.13    0.57    1.04    1.36    1.30    0.83    0.33    0.59
+   340.0    0.00   -0.11   -0.21   -0.28   -0.29   -0.24   -0.17   -0.12   -0.12   -0.13   -0.06    0.16    0.53    0.98    1.26    1.20    0.77    0.33    0.64
+   345.0    0.00   -0.11   -0.22   -0.31   -0.32   -0.27   -0.19   -0.11   -0.10   -0.10   -0.04    0.16    0.50    0.90    1.16    1.10    0.70    0.31    0.62
+   350.0    0.00   -0.11   -0.24   -0.32   -0.35   -0.29   -0.21   -0.13   -0.10   -0.08   -0.03    0.16    0.48    0.84    1.06    1.00    0.62    0.24    0.57
+   355.0    0.00   -0.12   -0.25   -0.34   -0.37   -0.32   -0.23   -0.15   -0.10   -0.09   -0.03    0.16    0.45    0.78    1.00    0.92    0.54    0.17    0.49
+   360.0    0.00   -0.13   -0.26   -0.36   -0.40   -0.34   -0.25   -0.18   -0.14   -0.12   -0.05    0.13    0.42    0.75    0.94    0.85    0.45    0.07    0.36
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+LEIGS08         NONE                                        TYPE / SERIAL NO    
+COPIED              Geo++ GmbH              10    18-MAY-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     4                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+COPIED FROM LEIATX1230+GNSS NONE                            COMMENT             
+ATTENTION! COPIED WITHOUT VERIFICATION BY CALIBRATION!      COMMENT             
+   G01                                                      START OF FREQUENCY  
+     -1.28      1.28     87.18                              NORTH / EAST / UP   
+   NOAZI    0.00    0.04    0.11    0.13    0.01   -0.27   -0.65   -1.02   -1.23   -1.22   -1.03   -0.76   -0.52   -0.39   -0.28   -0.05    0.46    1.30    2.35
+     0.0    0.00    0.08    0.21    0.27    0.15   -0.19   -0.67   -1.13   -1.39   -1.33   -0.99   -0.50   -0.09    0.09    0.03   -0.11   -0.05    0.47    1.60
+     5.0    0.00    0.08    0.21    0.27    0.16   -0.17   -0.65   -1.11   -1.37   -1.32   -0.98   -0.50   -0.08    0.12    0.08   -0.05    0.00    0.47    1.49
+    10.0    0.00    0.08    0.21    0.27    0.16   -0.16   -0.63   -1.09   -1.35   -1.31   -0.98   -0.51   -0.09    0.13    0.12    0.04    0.10    0.52    1.41
+    15.0    0.00    0.08    0.20    0.27    0.17   -0.15   -0.61   -1.06   -1.32   -1.29   -0.99   -0.54   -0.12    0.11    0.16    0.13    0.22    0.62    1.38
+    20.0    0.00    0.07    0.20    0.27    0.17   -0.13   -0.58   -1.02   -1.29   -1.28   -1.00   -0.58   -0.18    0.08    0.17    0.21    0.36    0.75    1.41
+    25.0    0.00    0.07    0.19    0.26    0.17   -0.12   -0.55   -0.98   -1.24   -1.25   -1.00   -0.62   -0.25    0.01    0.15    0.26    0.48    0.90    1.47
+    30.0    0.00    0.07    0.19    0.25    0.16   -0.11   -0.53   -0.93   -1.19   -1.21   -1.01   -0.67   -0.34   -0.09    0.09    0.28    0.59    1.05    1.57
+    35.0    0.00    0.07    0.18    0.24    0.16   -0.11   -0.50   -0.89   -1.14   -1.17   -1.00   -0.72   -0.43   -0.21   -0.01    0.25    0.65    1.18    1.69
+    40.0    0.00    0.06    0.17    0.23    0.14   -0.11   -0.48   -0.85   -1.08   -1.12   -0.98   -0.75   -0.53   -0.34   -0.13    0.18    0.67    1.28    1.80
+    45.0    0.00    0.06    0.16    0.21    0.13   -0.12   -0.47   -0.81   -1.03   -1.07   -0.95   -0.77   -0.60   -0.46   -0.27    0.08    0.64    1.33    1.91
+    50.0    0.00    0.05    0.15    0.19    0.10   -0.14   -0.47   -0.79   -0.98   -1.01   -0.91   -0.77   -0.66   -0.57   -0.40   -0.05    0.56    1.33    1.98
+    55.0    0.00    0.05    0.13    0.17    0.08   -0.16   -0.48   -0.78   -0.95   -0.97   -0.87   -0.75   -0.68   -0.64   -0.52   -0.18    0.46    1.28    2.02
+    60.0    0.00    0.04    0.12    0.15    0.05   -0.19   -0.50   -0.78   -0.93   -0.93   -0.83   -0.72   -0.68   -0.68   -0.61   -0.30    0.34    1.21    2.03
+    65.0    0.00    0.04    0.11    0.12    0.01   -0.23   -0.53   -0.80   -0.93   -0.91   -0.79   -0.67   -0.64   -0.68   -0.65   -0.38    0.23    1.12    2.01
+    70.0    0.00    0.04    0.10    0.10   -0.02   -0.27   -0.57   -0.83   -0.95   -0.90   -0.76   -0.62   -0.59   -0.63   -0.64   -0.43    0.14    1.04    2.00
+    75.0    0.00    0.03    0.08    0.08   -0.05   -0.31   -0.62   -0.88   -0.99   -0.92   -0.74   -0.57   -0.51   -0.56   -0.59   -0.42    0.11    0.99    1.99
+    80.0    0.00    0.03    0.07    0.06   -0.08   -0.35   -0.67   -0.93   -1.04   -0.95   -0.74   -0.54   -0.44   -0.46   -0.50   -0.36    0.13    0.99    2.03
+    85.0    0.00    0.02    0.06    0.04   -0.11   -0.39   -0.72   -0.99   -1.10   -1.00   -0.77   -0.52   -0.38   -0.36   -0.38   -0.25    0.20    1.05    2.11
+    90.0    0.00    0.02    0.05    0.02   -0.13   -0.42   -0.77   -1.06   -1.17   -1.07   -0.81   -0.53   -0.33   -0.27   -0.26   -0.12    0.33    1.17    2.25
+    95.0    0.00    0.02    0.05    0.01   -0.15   -0.45   -0.81   -1.11   -1.24   -1.14   -0.88   -0.56   -0.32   -0.20   -0.14    0.03    0.49    1.34    2.45
+   100.0    0.00    0.02    0.04    0.01   -0.16   -0.47   -0.85   -1.17   -1.31   -1.23   -0.96   -0.62   -0.33   -0.16   -0.05    0.17    0.67    1.54    2.68
+   105.0    0.00    0.01    0.04    0.00   -0.17   -0.49   -0.87   -1.21   -1.38   -1.31   -1.05   -0.70   -0.38   -0.16    0.01    0.28    0.83    1.74    2.92
+   110.0    0.00    0.01    0.04    0.00   -0.17   -0.49   -0.89   -1.24   -1.43   -1.39   -1.15   -0.80   -0.46   -0.20    0.02    0.35    0.96    1.92    3.15
+   115.0    0.00    0.01    0.04    0.01   -0.17   -0.49   -0.90   -1.27   -1.48   -1.46   -1.24   -0.90   -0.56   -0.28   -0.02    0.36    1.03    2.05    3.33
+   120.0    0.00    0.01    0.04    0.01   -0.16   -0.48   -0.90   -1.28   -1.51   -1.52   -1.31   -0.99   -0.66   -0.38   -0.10    0.32    1.03    2.11    3.44
+   125.0    0.00    0.01    0.05    0.02   -0.14   -0.47   -0.89   -1.28   -1.53   -1.56   -1.37   -1.07   -0.76   -0.49   -0.21    0.21    0.96    2.08    3.45
+   130.0    0.00    0.01    0.05    0.03   -0.13   -0.45   -0.87   -1.28   -1.54   -1.58   -1.41   -1.13   -0.84   -0.60   -0.35    0.07    0.82    1.96    3.36
+   135.0    0.00    0.01    0.06    0.04   -0.11   -0.43   -0.86   -1.26   -1.53   -1.57   -1.42   -1.16   -0.90   -0.70   -0.49   -0.10    0.63    1.77    3.18
+   140.0    0.00    0.01    0.06    0.05   -0.09   -0.41   -0.83   -1.24   -1.51   -1.55   -1.41   -1.16   -0.93   -0.77   -0.61   -0.28    0.41    1.53    2.93
+   145.0    0.00    0.01    0.07    0.07   -0.07   -0.39   -0.81   -1.21   -1.47   -1.51   -1.37   -1.13   -0.94   -0.82   -0.72   -0.45    0.19    1.26    2.63
+   150.0    0.00    0.01    0.07    0.08   -0.06   -0.36   -0.78   -1.18   -1.43   -1.46   -1.31   -1.08   -0.91   -0.83   -0.79   -0.58   -0.01    1.01    2.32
+   155.0    0.00    0.01    0.08    0.09   -0.04   -0.34   -0.75   -1.14   -1.38   -1.39   -1.23   -1.01   -0.85   -0.81   -0.82   -0.67   -0.16    0.80    2.05
+   160.0    0.00    0.02    0.08    0.10   -0.02   -0.32   -0.72   -1.10   -1.32   -1.32   -1.15   -0.92   -0.77   -0.76   -0.80   -0.70   -0.24    0.65    1.84
+   165.0    0.00    0.02    0.09    0.11   -0.01   -0.30   -0.69   -1.06   -1.26   -1.24   -1.05   -0.82   -0.68   -0.69   -0.75   -0.67   -0.25    0.59    1.71
+   170.0    0.00    0.02    0.09    0.12    0.00   -0.28   -0.66   -1.01   -1.20   -1.17   -0.96   -0.72   -0.58   -0.59   -0.66   -0.59   -0.19    0.62    1.69
+   175.0    0.00    0.02    0.09    0.12    0.01   -0.26   -0.63   -0.97   -1.14   -1.09   -0.88   -0.63   -0.48   -0.48   -0.54   -0.46   -0.06    0.74    1.77
+   180.0    0.00    0.02    0.09    0.13    0.02   -0.25   -0.61   -0.93   -1.09   -1.02   -0.79   -0.54   -0.39   -0.37   -0.41   -0.31    0.11    0.91    1.92
+   185.0    0.00    0.02    0.10    0.13    0.02   -0.24   -0.59   -0.90   -1.04   -0.96   -0.72   -0.46   -0.30   -0.27   -0.28   -0.15    0.31    1.13    2.14
+   190.0    0.00    0.02    0.10    0.13    0.02   -0.23   -0.58   -0.87   -1.00   -0.91   -0.66   -0.39   -0.21   -0.17   -0.16    0.01    0.51    1.35    2.37
+   195.0    0.00    0.02    0.09    0.13    0.02   -0.23   -0.57   -0.85   -0.96   -0.86   -0.60   -0.32   -0.14   -0.09   -0.05    0.15    0.68    1.56    2.60
+   200.0    0.00    0.02    0.09    0.12    0.02   -0.23   -0.56   -0.84   -0.94   -0.82   -0.56   -0.27   -0.09   -0.02    0.02    0.24    0.81    1.72    2.78
+   205.0    0.00    0.02    0.09    0.12    0.01   -0.24   -0.56   -0.83   -0.92   -0.79   -0.52   -0.23   -0.05    0.01    0.06    0.30    0.88    1.82    2.91
+   210.0    0.00    0.02    0.09    0.11    0.01   -0.24   -0.56   -0.82   -0.90   -0.77   -0.49   -0.20   -0.03    0.03    0.07    0.30    0.89    1.85    2.96
+   215.0    0.00    0.02    0.09    0.11    0.00   -0.25   -0.56   -0.82   -0.89   -0.76   -0.48   -0.19   -0.03    0.01    0.03    0.25    0.84    1.82    2.95
+   220.0    0.00    0.02    0.08    0.10    0.00   -0.25   -0.56   -0.81   -0.89   -0.75   -0.47   -0.20   -0.05   -0.05   -0.05    0.16    0.75    1.73    2.88
+   225.0    0.00    0.02    0.08    0.10   -0.01   -0.25   -0.56   -0.81   -0.88   -0.75   -0.48   -0.23   -0.11   -0.13   -0.16    0.03    0.62    1.61    2.77
+   230.0    0.00    0.02    0.08    0.10   -0.01   -0.25   -0.56   -0.80   -0.88   -0.75   -0.51   -0.28   -0.19   -0.25   -0.30   -0.12    0.47    1.48    2.66
+   235.0    0.00    0.02    0.08    0.09   -0.01   -0.25   -0.55   -0.80   -0.88   -0.77   -0.55   -0.36   -0.30   -0.38   -0.46   -0.28    0.32    1.36    2.55
+   240.0    0.00    0.02    0.08    0.09   -0.01   -0.24   -0.54   -0.79   -0.89   -0.80   -0.61   -0.45   -0.43   -0.54   -0.62   -0.44    0.19    1.27    2.48
+   245.0    0.00    0.02    0.08    0.10    0.00   -0.23   -0.53   -0.79   -0.90   -0.84   -0.69   -0.57   -0.58   -0.70   -0.77   -0.57    0.09    1.21    2.46
+   250.0    0.00    0.02    0.08    0.10    0.00   -0.23   -0.52   -0.79   -0.92   -0.90   -0.78   -0.70   -0.72   -0.85   -0.91   -0.67    0.04    1.19    2.48
+   255.0    0.00    0.03    0.08    0.10    0.01   -0.22   -0.52   -0.80   -0.96   -0.97   -0.89   -0.83   -0.86   -0.97   -1.01   -0.73    0.02    1.22    2.55
+   260.0    0.00    0.03    0.09    0.11    0.02   -0.21   -0.52   -0.81   -1.00   -1.05   -1.00   -0.96   -0.99   -1.07   -1.06   -0.74    0.05    1.28    2.65
+   265.0    0.00    0.03    0.09    0.11    0.02   -0.20   -0.52   -0.84   -1.06   -1.14   -1.12   -1.08   -1.09   -1.12   -1.06   -0.70    0.12    1.37    2.76
+   270.0    0.00    0.03    0.10    0.12    0.03   -0.20   -0.54   -0.88   -1.13   -1.24   -1.23   -1.18   -1.15   -1.13   -1.01   -0.61    0.22    1.47    2.87
+   275.0    0.00    0.04    0.10    0.13    0.04   -0.20   -0.56   -0.92   -1.21   -1.34   -1.34   -1.26   -1.17   -1.09   -0.91   -0.48    0.35    1.57    2.96
+   280.0    0.00    0.04    0.11    0.13    0.04   -0.21   -0.58   -0.98   -1.29   -1.44   -1.43   -1.31   -1.16   -1.00   -0.77   -0.31    0.49    1.67    3.02
+   285.0    0.00    0.04    0.11    0.14    0.05   -0.22   -0.61   -1.03   -1.37   -1.53   -1.50   -1.33   -1.11   -0.88   -0.59   -0.13    0.63    1.74    3.04
+   290.0    0.00    0.04    0.12    0.15    0.05   -0.23   -0.64   -1.09   -1.44   -1.60   -1.55   -1.33   -1.04   -0.73   -0.41    0.05    0.76    1.79    3.03
+   295.0    0.00    0.05    0.13    0.16    0.05   -0.24   -0.67   -1.14   -1.51   -1.66   -1.58   -1.30   -0.94   -0.58   -0.22    0.21    0.86    1.81    2.99
+   300.0    0.00    0.05    0.13    0.17    0.05   -0.25   -0.70   -1.19   -1.56   -1.70   -1.58   -1.25   -0.84   -0.43   -0.06    0.35    0.93    1.80    2.92
+   305.0    0.00    0.05    0.14    0.17    0.06   -0.25   -0.72   -1.22   -1.59   -1.72   -1.56   -1.19   -0.73   -0.29    0.08    0.45    0.97    1.77    2.84
+   310.0    0.00    0.06    0.15    0.18    0.06   -0.26   -0.74   -1.24   -1.61   -1.71   -1.53   -1.12   -0.63   -0.18    0.17    0.50    0.96    1.71    2.76
+   315.0    0.00    0.06    0.16    0.19    0.07   -0.26   -0.75   -1.25   -1.61   -1.69   -1.47   -1.04   -0.53   -0.10    0.21    0.49    0.91    1.62    2.68
+   320.0    0.00    0.06    0.16    0.20    0.07   -0.26   -0.75   -1.25   -1.60   -1.65   -1.41   -0.96   -0.46   -0.05    0.22    0.44    0.81    1.51    2.59
+   325.0    0.00    0.07    0.17    0.21    0.08   -0.26   -0.75   -1.24   -1.57   -1.61   -1.34   -0.88   -0.39   -0.02    0.19    0.36    0.69    1.38    2.50
+   330.0    0.00    0.07    0.18    0.22    0.09   -0.25   -0.74   -1.23   -1.54   -1.55   -1.27   -0.80   -0.33   -0.01    0.14    0.25    0.54    1.23    2.41
+   335.0    0.00    0.07    0.18    0.23    0.10   -0.24   -0.73   -1.21   -1.51   -1.50   -1.20   -0.73   -0.28    0.00    0.09    0.13    0.38    1.07    2.30
+   340.0    0.00    0.07    0.19    0.24    0.11   -0.23   -0.72   -1.20   -1.48   -1.45   -1.13   -0.66   -0.23    0.00    0.03    0.02    0.22    0.91    2.17
+   345.0    0.00    0.08    0.20    0.25    0.12   -0.22   -0.71   -1.18   -1.45   -1.41   -1.08   -0.60   -0.19    0.01    0.00   -0.07    0.09    0.76    2.03
+   350.0    0.00    0.08    0.20    0.26    0.13   -0.21   -0.70   -1.16   -1.43   -1.38   -1.04   -0.56   -0.15    0.03   -0.02   -0.12    0.00    0.63    1.88
+   355.0    0.00    0.08    0.20    0.26    0.14   -0.20   -0.68   -1.15   -1.41   -1.35   -1.00   -0.52   -0.12    0.06    0.00   -0.13   -0.05    0.53    1.73
+   360.0    0.00    0.08    0.21    0.27    0.15   -0.19   -0.67   -1.13   -1.39   -1.33   -0.99   -0.50   -0.09    0.09    0.03   -0.11   -0.05    0.47    1.60
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.19     -1.23     84.72                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.02   -0.08   -0.14   -0.21   -0.29   -0.43   -0.65   -0.91   -1.11   -1.12   -0.85   -0.32    0.28    0.69    0.71    0.36   -0.02    0.10
+     0.0    0.00   -0.10   -0.21   -0.32   -0.41   -0.48   -0.56   -0.65   -0.71   -0.70   -0.54   -0.21    0.25    0.71    0.97    0.87    0.43    0.00    0.28
+     5.0    0.00   -0.10   -0.21   -0.32   -0.41   -0.49   -0.57   -0.66   -0.72   -0.71   -0.55   -0.21    0.26    0.73    0.98    0.87    0.42   -0.04    0.17
+    10.0    0.00   -0.10   -0.21   -0.32   -0.41   -0.49   -0.58   -0.67   -0.74   -0.73   -0.57   -0.22    0.26    0.74    1.00    0.89    0.42   -0.08    0.05
+    15.0    0.00   -0.10   -0.21   -0.32   -0.41   -0.50   -0.59   -0.69   -0.77   -0.76   -0.60   -0.25    0.25    0.75    1.02    0.91    0.43   -0.11   -0.08
+    20.0    0.00   -0.10   -0.21   -0.32   -0.42   -0.50   -0.60   -0.71   -0.80   -0.82   -0.66   -0.30    0.22    0.74    1.04    0.93    0.44   -0.14   -0.20
+    25.0    0.00   -0.10   -0.21   -0.32   -0.42   -0.51   -0.61   -0.74   -0.85   -0.88   -0.74   -0.38    0.16    0.71    1.04    0.95    0.46   -0.15   -0.31
+    30.0    0.00   -0.10   -0.21   -0.32   -0.42   -0.51   -0.62   -0.77   -0.91   -0.97   -0.84   -0.48    0.08    0.66    1.01    0.95    0.47   -0.16   -0.39
+    35.0    0.00   -0.09   -0.21   -0.32   -0.42   -0.51   -0.64   -0.80   -0.97   -1.06   -0.96   -0.61   -0.04    0.57    0.96    0.93    0.47   -0.16   -0.45
+    40.0    0.00   -0.09   -0.21   -0.32   -0.42   -0.52   -0.65   -0.84   -1.04   -1.17   -1.10   -0.76   -0.18    0.45    0.87    0.88    0.44   -0.17   -0.49
+    45.0    0.00   -0.09   -0.20   -0.32   -0.42   -0.52   -0.67   -0.87   -1.11   -1.28   -1.24   -0.92   -0.34    0.30    0.75    0.79    0.39   -0.19   -0.52
+    50.0    0.00   -0.08   -0.20   -0.31   -0.41   -0.52   -0.68   -0.91   -1.17   -1.38   -1.38   -1.08   -0.51    0.14    0.60    0.66    0.30   -0.24   -0.55
+    55.0    0.00   -0.08   -0.19   -0.30   -0.41   -0.52   -0.68   -0.93   -1.23   -1.47   -1.51   -1.24   -0.68   -0.03    0.44    0.51    0.18   -0.32   -0.59
+    60.0    0.00   -0.07   -0.18   -0.30   -0.40   -0.51   -0.68   -0.95   -1.28   -1.55   -1.62   -1.37   -0.84   -0.20    0.26    0.34    0.02   -0.43   -0.63
+    65.0    0.00   -0.07   -0.17   -0.28   -0.39   -0.50   -0.68   -0.95   -1.30   -1.61   -1.70   -1.48   -0.97   -0.35    0.10    0.16   -0.15   -0.56   -0.69
+    70.0    0.00   -0.06   -0.16   -0.27   -0.37   -0.48   -0.66   -0.95   -1.31   -1.64   -1.76   -1.56   -1.07   -0.47   -0.04   -0.01   -0.33   -0.71   -0.75
+    75.0    0.00   -0.05   -0.15   -0.25   -0.35   -0.46   -0.64   -0.93   -1.30   -1.64   -1.78   -1.60   -1.12   -0.54   -0.15   -0.14   -0.49   -0.85   -0.82
+    80.0    0.00   -0.04   -0.13   -0.23   -0.32   -0.43   -0.60   -0.89   -1.27   -1.62   -1.76   -1.59   -1.13   -0.57   -0.21   -0.24   -0.61   -0.97   -0.87
+    85.0    0.00   -0.04   -0.12   -0.21   -0.29   -0.39   -0.56   -0.84   -1.22   -1.57   -1.72   -1.56   -1.10   -0.56   -0.22   -0.28   -0.69   -1.05   -0.89
+    90.0    0.00   -0.03   -0.10   -0.19   -0.26   -0.35   -0.51   -0.79   -1.16   -1.51   -1.66   -1.49   -1.03   -0.49   -0.17   -0.26   -0.70   -1.08   -0.87
+    95.0    0.00   -0.02   -0.08   -0.16   -0.22   -0.30   -0.45   -0.73   -1.09   -1.43   -1.57   -1.39   -0.93   -0.38   -0.07   -0.18   -0.65   -1.05   -0.80
+   100.0    0.00   -0.01   -0.06   -0.13   -0.18   -0.25   -0.40   -0.66   -1.02   -1.34   -1.47   -1.28   -0.80   -0.25    0.08   -0.04   -0.53   -0.95   -0.67
+   105.0    0.00    0.00   -0.04   -0.10   -0.14   -0.20   -0.34   -0.60   -0.94   -1.26   -1.38   -1.17   -0.67   -0.09    0.26    0.14   -0.36   -0.80   -0.49
+   110.0    0.00    0.01   -0.02   -0.07   -0.10   -0.16   -0.29   -0.53   -0.87   -1.18   -1.28   -1.05   -0.52    0.08    0.45    0.35   -0.16   -0.60   -0.26
+   115.0    0.00    0.02    0.00   -0.03   -0.06   -0.11   -0.24   -0.48   -0.81   -1.10   -1.19   -0.94   -0.39    0.25    0.64    0.56    0.07   -0.37   -0.01
+   120.0    0.00    0.03    0.02    0.00   -0.02   -0.07   -0.19   -0.44   -0.76   -1.04   -1.11   -0.84   -0.27    0.39    0.82    0.77    0.30   -0.14    0.24
+   125.0    0.00    0.04    0.04    0.03    0.01   -0.03   -0.16   -0.40   -0.72   -0.99   -1.04   -0.76   -0.17    0.52    0.97    0.95    0.50    0.08    0.47
+   130.0    0.00    0.05    0.06    0.06    0.05    0.00   -0.13   -0.37   -0.69   -0.95   -0.99   -0.69   -0.08    0.61    1.09    1.09    0.67    0.26    0.67
+   135.0    0.00    0.05    0.08    0.09    0.08    0.03   -0.11   -0.35   -0.66   -0.91   -0.94   -0.63   -0.03    0.68    1.17    1.19    0.79    0.40    0.81
+   140.0    0.00    0.06    0.10    0.11    0.11    0.05   -0.09   -0.34   -0.65   -0.89   -0.91   -0.60    0.01    0.71    1.20    1.25    0.87    0.49    0.89
+   145.0    0.00    0.07    0.11    0.13    0.13    0.07   -0.08   -0.33   -0.63   -0.87   -0.88   -0.57    0.02    0.71    1.20    1.26    0.91    0.53    0.91
+   150.0    0.00    0.07    0.12    0.15    0.15    0.09   -0.07   -0.32   -0.62   -0.85   -0.86   -0.56    0.02    0.69    1.17    1.24    0.91    0.54    0.86
+   155.0    0.00    0.08    0.13    0.17    0.16    0.10   -0.06   -0.32   -0.62   -0.84   -0.84   -0.55    0.00    0.65    1.12    1.21    0.89    0.52    0.77
+   160.0    0.00    0.08    0.14    0.18    0.17    0.10   -0.06   -0.32   -0.61   -0.82   -0.83   -0.56   -0.03    0.60    1.06    1.16    0.87    0.49    0.65
+   165.0    0.00    0.08    0.15    0.18    0.18    0.10   -0.06   -0.32   -0.60   -0.82   -0.83   -0.57   -0.06    0.54    1.00    1.12    0.85    0.46    0.53
+   170.0    0.00    0.09    0.15    0.19    0.18    0.10   -0.07   -0.32   -0.60   -0.81   -0.83   -0.59   -0.10    0.48    0.94    1.08    0.84    0.44    0.41
+   175.0    0.00    0.09    0.15    0.18    0.17    0.09   -0.08   -0.32   -0.60   -0.81   -0.84   -0.61   -0.15    0.42    0.89    1.05    0.84    0.44    0.31
+   180.0    0.00    0.09    0.15    0.18    0.16    0.08   -0.09   -0.33   -0.61   -0.82   -0.85   -0.64   -0.19    0.37    0.84    1.03    0.86    0.46    0.25
+   185.0    0.00    0.08    0.14    0.17    0.15    0.06   -0.10   -0.35   -0.62   -0.83   -0.87   -0.67   -0.23    0.32    0.80    1.01    0.87    0.48    0.22
+   190.0    0.00    0.08    0.13    0.15    0.13    0.04   -0.13   -0.37   -0.64   -0.85   -0.89   -0.70   -0.27    0.28    0.76    0.99    0.87    0.50    0.21
+   195.0    0.00    0.08    0.12    0.13    0.10    0.01   -0.15   -0.39   -0.66   -0.87   -0.92   -0.73   -0.31    0.23    0.72    0.96    0.86    0.51    0.22
+   200.0    0.00    0.07    0.11    0.11    0.07   -0.02   -0.19   -0.42   -0.69   -0.90   -0.95   -0.77   -0.35    0.19    0.67    0.90    0.82    0.49    0.23
+   205.0    0.00    0.07    0.09    0.09    0.04   -0.06   -0.22   -0.46   -0.72   -0.94   -0.99   -0.80   -0.39    0.14    0.60    0.83    0.74    0.45    0.23
+   210.0    0.00    0.06    0.08    0.06    0.01   -0.10   -0.26   -0.50   -0.76   -0.98   -1.03   -0.84   -0.43    0.08    0.53    0.72    0.63    0.36    0.21
+   215.0    0.00    0.05    0.06    0.03   -0.03   -0.13   -0.30   -0.54   -0.81   -1.02   -1.07   -0.89   -0.48    0.02    0.43    0.60    0.48    0.25    0.17
+   220.0    0.00    0.04    0.04    0.00   -0.07   -0.17   -0.34   -0.58   -0.85   -1.07   -1.12   -0.94   -0.54   -0.05    0.33    0.46    0.32    0.11    0.10
+   225.0    0.00    0.04    0.02   -0.03   -0.10   -0.21   -0.38   -0.62   -0.89   -1.11   -1.17   -1.00   -0.60   -0.13    0.22    0.32    0.16   -0.04    0.01
+   230.0    0.00    0.03    0.00   -0.06   -0.13   -0.24   -0.41   -0.65   -0.93   -1.16   -1.23   -1.06   -0.67   -0.21    0.12    0.18    0.00   -0.19   -0.09
+   235.0    0.00    0.02   -0.02   -0.08   -0.16   -0.27   -0.44   -0.68   -0.97   -1.22   -1.30   -1.13   -0.75   -0.29    0.02    0.06   -0.14   -0.32   -0.19
+   240.0    0.00    0.01   -0.03   -0.11   -0.19   -0.30   -0.46   -0.71   -1.01   -1.27   -1.36   -1.20   -0.82   -0.37   -0.05   -0.03   -0.24   -0.42   -0.28
+   245.0    0.00    0.00   -0.05   -0.13   -0.22   -0.32   -0.48   -0.73   -1.04   -1.32   -1.43   -1.28   -0.89   -0.43   -0.11   -0.08   -0.29   -0.48   -0.34
+   250.0    0.00   -0.01   -0.07   -0.15   -0.24   -0.34   -0.50   -0.75   -1.08   -1.37   -1.49   -1.34   -0.95   -0.46   -0.13   -0.09   -0.31   -0.51   -0.38
+   255.0    0.00   -0.02   -0.09   -0.17   -0.25   -0.35   -0.51   -0.77   -1.10   -1.41   -1.55   -1.40   -0.99   -0.48   -0.11   -0.06   -0.28   -0.49   -0.38
+   260.0    0.00   -0.02   -0.10   -0.19   -0.27   -0.36   -0.52   -0.78   -1.13   -1.45   -1.59   -1.43   -1.00   -0.46   -0.06    0.00   -0.22   -0.45   -0.36
+   265.0    0.00   -0.03   -0.11   -0.20   -0.28   -0.37   -0.52   -0.79   -1.14   -1.47   -1.62   -1.45   -0.99   -0.41    0.02    0.10   -0.13   -0.39   -0.31
+   270.0    0.00   -0.04   -0.13   -0.22   -0.29   -0.37   -0.53   -0.79   -1.15   -1.49   -1.62   -1.44   -0.94   -0.33    0.13    0.22   -0.03   -0.32   -0.25
+   275.0    0.00   -0.05   -0.14   -0.23   -0.30   -0.38   -0.53   -0.80   -1.16   -1.49   -1.61   -1.39   -0.86   -0.21    0.26    0.35    0.06   -0.26   -0.19
+   280.0    0.00   -0.05   -0.15   -0.24   -0.31   -0.38   -0.53   -0.79   -1.15   -1.47   -1.57   -1.33   -0.76   -0.08    0.41    0.48    0.16   -0.21   -0.12
+   285.0    0.00   -0.06   -0.16   -0.25   -0.31   -0.39   -0.53   -0.79   -1.13   -1.43   -1.51   -1.23   -0.63    0.08    0.57    0.61    0.23   -0.18   -0.07
+   290.0    0.00   -0.07   -0.16   -0.25   -0.32   -0.39   -0.53   -0.78   -1.11   -1.39   -1.43   -1.12   -0.49    0.23    0.72    0.72    0.29   -0.16   -0.03
+   295.0    0.00   -0.07   -0.17   -0.26   -0.32   -0.39   -0.53   -0.77   -1.08   -1.33   -1.34   -0.99   -0.34    0.39    0.86    0.82    0.34   -0.16    0.01
+   300.0    0.00   -0.08   -0.18   -0.27   -0.33   -0.40   -0.53   -0.75   -1.04   -1.26   -1.24   -0.86   -0.20    0.53    0.98    0.90    0.37   -0.16    0.03
+   305.0    0.00   -0.08   -0.18   -0.27   -0.34   -0.40   -0.53   -0.74   -1.00   -1.18   -1.13   -0.74   -0.07    0.65    1.07    0.97    0.39   -0.17    0.06
+   310.0    0.00   -0.08   -0.19   -0.28   -0.34   -0.41   -0.52   -0.72   -0.95   -1.11   -1.03   -0.63    0.04    0.74    1.14    1.01    0.41   -0.16    0.10
+   315.0    0.00   -0.09   -0.19   -0.28   -0.35   -0.41   -0.52   -0.70   -0.91   -1.03   -0.93   -0.53    0.13    0.80    1.18    1.03    0.43   -0.15    0.15
+   320.0    0.00   -0.09   -0.20   -0.29   -0.36   -0.42   -0.52   -0.68   -0.86   -0.96   -0.85   -0.44    0.19    0.84    1.19    1.04    0.44   -0.12    0.20
+   325.0    0.00   -0.09   -0.20   -0.29   -0.36   -0.43   -0.52   -0.67   -0.82   -0.90   -0.77   -0.38    0.23    0.84    1.18    1.03    0.46   -0.08    0.27
+   330.0    0.00   -0.10   -0.20   -0.30   -0.37   -0.44   -0.53   -0.65   -0.79   -0.84   -0.71   -0.33    0.24    0.83    1.15    1.01    0.47   -0.04    0.33
+   335.0    0.00   -0.10   -0.21   -0.30   -0.38   -0.45   -0.53   -0.64   -0.76   -0.80   -0.66   -0.30    0.25    0.80    1.11    0.99    0.48    0.01    0.39
+   340.0    0.00   -0.10   -0.21   -0.30   -0.38   -0.45   -0.54   -0.64   -0.74   -0.76   -0.62   -0.27    0.24    0.77    1.07    0.96    0.48    0.04    0.43
+   345.0    0.00   -0.10   -0.21   -0.31   -0.39   -0.46   -0.54   -0.63   -0.72   -0.73   -0.59   -0.25    0.24    0.74    1.03    0.93    0.47    0.06    0.44
+   350.0    0.00   -0.10   -0.21   -0.31   -0.40   -0.47   -0.55   -0.63   -0.71   -0.71   -0.57   -0.24    0.24    0.72    0.99    0.90    0.46    0.05    0.42
+   355.0    0.00   -0.10   -0.21   -0.31   -0.40   -0.48   -0.55   -0.64   -0.70   -0.70   -0.55   -0.22    0.24    0.71    0.98    0.88    0.45    0.04    0.37
+   360.0    0.00   -0.10   -0.21   -0.32   -0.41   -0.48   -0.56   -0.65   -0.71   -0.70   -0.54   -0.21    0.25    0.71    0.97    0.87    0.43    0.00    0.28
+   G02                                                      END OF FREQUENCY    
+   R01                                                      START OF FREQUENCY  
+     -1.28      1.28     87.18                              NORTH / EAST / UP   
+   NOAZI    0.00    0.03    0.08    0.08   -0.06   -0.38   -0.80   -1.22   -1.52   -1.58   -1.43   -1.16   -0.85   -0.62   -0.45   -0.21    0.24    1.02    2.14
+     0.0    0.00    0.03    0.09    0.08   -0.08   -0.45   -0.95   -1.46   -1.82   -1.89   -1.67   -1.24   -0.80   -0.53   -0.52   -0.73   -0.87   -0.59    0.50
+     5.0    0.00    0.03    0.08    0.07   -0.08   -0.44   -0.93   -1.44   -1.80   -1.88   -1.68   -1.27   -0.83   -0.55   -0.54   -0.73   -0.89   -0.67    0.31
+    10.0    0.00    0.03    0.08    0.07   -0.10   -0.43   -0.92   -1.42   -1.79   -1.88   -1.69   -1.31   -0.88   -0.59   -0.55   -0.70   -0.85   -0.68    0.18
+    15.0    0.00    0.03    0.06    0.06   -0.09   -0.43   -0.90   -1.40   -1.76   -1.87   -1.71   -1.36   -0.94   -0.66   -0.56   -0.66   -0.77   -0.61    0.13
+    20.0    0.00    0.01    0.06    0.06   -0.09   -0.41   -0.88   -1.36   -1.74   -1.86   -1.73   -1.41   -1.02   -0.72   -0.58   -0.62   -0.66   -0.49    0.18
+    25.0    0.00    0.01    0.05    0.05   -0.10   -0.41   -0.86   -1.33   -1.70   -1.85   -1.74   -1.46   -1.10   -0.80   -0.64   -0.59   -0.55   -0.32    0.30
+    30.0    0.00    0.01    0.05    0.04   -0.11   -0.41   -0.85   -1.30   -1.66   -1.82   -1.75   -1.51   -1.20   -0.91   -0.71   -0.58   -0.44   -0.14    0.49
+    35.0    0.00    0.01    0.04    0.03   -0.11   -0.41   -0.83   -1.27   -1.63   -1.79   -1.74   -1.56   -1.28   -1.03   -0.82   -0.62   -0.37    0.03    0.70
+    40.0    0.00   -0.06    0.03    0.03   -0.13   -0.42   -0.83   -1.25   -1.59   -1.75   -1.72   -1.58   -1.37   -1.16   -0.94   -0.68   -0.33    0.18    0.91
+    45.0    0.00   -0.06    0.03    0.01   -0.14   -0.44   -0.83   -1.25   -1.56   -1.71   -1.69   -1.58   -1.42   -1.26   -1.07   -0.77   -0.34    0.29    1.10
+    50.0    0.00   -0.01    0.02   -0.19   -0.16   -0.46   -0.85   -1.25   -1.53   -1.67   -1.65   -1.57   -1.46   -1.35   -1.18   -0.89   -0.40    0.33    1.23
+    55.0    0.00   -0.05    0.01   -0.02   -0.18   -0.48   -0.87   -1.26   -1.52   -1.64   -1.61   -1.53   -1.46   -1.39   -1.27   -1.00   -0.46    0.31    1.29
+    60.0    0.00   -0.01   -0.12   -0.03   -0.19   -0.51   -0.90   -1.28   -1.53   -1.61   -1.57   -1.49   -1.42   -1.40   -1.34   -1.10   -0.56    0.27    1.30
+    65.0    0.00   -0.01   -0.11   -0.05   -0.22   -0.55   -0.93   -1.31   -1.54   -1.60   -1.53   -1.41   -1.36   -1.37   -1.35   -1.16   -0.65    0.20    1.26
+    70.0    0.00   -0.01   -0.10   -0.06   -0.24   -0.58   -0.97   -1.35   -1.58   -1.60   -1.50   -1.35   -1.29   -1.30   -1.32   -1.17   -0.71    0.14    1.21
+    75.0    0.00   -0.01   -0.02   -0.07   -0.26   -0.61   -1.02   -1.40   -1.63   -1.63   -1.48   -1.29   -1.19   -1.20   -1.24   -1.14   -0.71    0.11    1.18
+    80.0    0.00   -0.01   -0.02   -0.07   -0.27   -0.63   -1.06   -1.45   -1.68   -1.67   -1.48   -1.25   -1.10   -1.08   -1.13   -1.05   -0.66    0.14    1.21
+    85.0    0.00   -0.02   -0.01   -0.08   -0.29   -0.66   -1.10   -1.50   -1.74   -1.72   -1.51   -1.23   -1.03   -0.97   -0.99   -0.91   -0.54    0.25    1.31
+    90.0    0.00   -0.02   -0.02   -0.09   -0.29   -0.66   -1.13   -1.56   -1.80   -1.79   -1.55   -1.24   -0.98   -0.87   -0.84   -0.75   -0.36    0.44    1.52
+    95.0    0.00   -0.01   -0.01   -0.09   -0.30   -0.67   -1.15   -1.60   -1.86   -1.85   -1.62   -1.27   -0.96   -0.78   -0.70   -0.57   -0.15    0.69    1.81
+   100.0    0.00   -0.01   -0.02   -0.08   -0.29   -0.67   -1.17   -1.64   -1.92   -1.93   -1.70   -1.33   -0.97   -0.73   -0.60   -0.39    0.10    0.99    2.17
+   105.0    0.00   -0.02   -0.01   -0.07   -0.29   -0.68   -1.17   -1.66   -1.96   -2.00   -1.78   -1.40   -1.02   -0.72   -0.52   -0.24    0.32    1.29    2.56
+   110.0    0.00   -0.02   -0.01   -0.07   -0.28   -0.66   -1.17   -1.65   -1.99   -2.06   -1.87   -1.50   -1.09   -0.76   -0.49   -0.14    0.52    1.58    2.95
+   115.0    0.00   -0.01   -0.04   -0.05   -0.27   -0.65   -1.16   -1.66   -2.01   -2.11   -1.94   -1.58   -1.18   -0.82   -0.51   -0.09    0.66    1.82    3.28
+   120.0    0.00   -0.01   -0.04   -0.05   -0.26   -0.63   -1.13   -1.64   -2.01   -2.14   -1.98   -1.65   -1.27   -0.90   -0.56   -0.07    0.73    1.97    3.53
+   125.0    0.00   -0.01    0.01   -0.04   -0.23   -0.61   -1.10   -1.61   -2.00   -2.14   -2.01   -1.71   -1.33   -0.98   -0.62   -0.13    0.73    2.03    3.64
+   130.0    0.00   -0.01    0.01   -0.03   -0.22   -0.58   -1.07   -1.59   -1.98   -2.12   -2.02   -1.73   -1.37   -1.05   -0.71   -0.21    0.66    1.98    3.62
+   135.0    0.00   -0.01    0.02   -0.02   -0.20   -0.56   -1.05   -1.54   -1.92   -2.07   -1.97   -1.71   -1.39   -1.09   -0.79   -0.30    0.53    1.84    3.47
+   140.0    0.00   -0.01    0.02   -0.01   -0.19   -0.54   -1.00   -1.50   -1.86   -2.00   -1.91   -1.66   -1.36   -1.09   -0.82   -0.40    0.39    1.65    3.22
+   145.0    0.00   -0.01    0.04    0.01   -0.17   -0.51   -0.97   -1.44   -1.79   -1.91   -1.82   -1.57   -1.30   -1.06   -0.85   -0.47    0.24    1.41    2.91
+   150.0    0.00   -0.01    0.04    0.02   -0.16   -0.48   -0.93   -1.38   -1.72   -1.81   -1.70   -1.45   -1.20   -0.99   -0.81   -0.51    0.13    1.19    2.58
+   155.0    0.00    0.01    0.05    0.03   -0.14   -0.46   -0.89   -1.32   -1.62   -1.70   -1.57   -1.32   -1.06   -0.87   -0.73   -0.49    0.06    1.02    2.28
+   160.0    0.00    0.02    0.05    0.04   -0.11   -0.43   -0.85   -1.26   -1.53   -1.59   -1.44   -1.16   -0.90   -0.73   -0.62   -0.41    0.06    0.92    2.07
+   165.0    0.00    0.02    0.07    0.06   -0.10   -0.40   -0.80   -1.20   -1.44   -1.46   -1.29   -1.01   -0.73   -0.57   -0.46   -0.29    0.13    0.91    1.97
+   170.0    0.00    0.03    0.07    0.07   -0.07   -0.37   -0.75   -1.12   -1.35   -1.36   -1.15   -0.85   -0.57   -0.39   -0.29   -0.12    0.27    0.99    1.99
+   175.0    0.00    0.03    0.08    0.08   -0.04   -0.32   -0.69   -1.06   -1.26   -1.24   -1.04   -0.72   -0.42   -0.21   -0.09    0.08    0.47    1.18    2.13
+   180.0    0.00    0.03    0.09    0.11   -0.02   -0.29   -0.65   -0.98   -1.18   -1.14   -0.91   -0.58   -0.27   -0.05    0.10    0.30    0.69    1.40    2.37
+   185.0    0.00    0.04    0.11    0.12   -0.02   -0.25   -0.60   -0.92   -1.09   -1.05   -0.81   -0.47   -0.14    0.09    0.27    0.49    0.93    1.67    2.68
+   190.0    0.00    0.04    0.11    0.13    0.02   -0.22   -0.56   -0.86   -1.02   -0.97   -0.71   -0.37   -0.02    0.22    0.41    0.67    1.15    1.93    3.01
+   195.0    0.00    0.04    0.11    0.15    0.04   -0.19   -0.52   -0.81   -0.95   -0.89   -0.63   -0.27    0.07    0.32    0.53    0.81    1.32    2.17    3.31
+   200.0    0.00    0.05    0.12    0.16    0.07   -0.16   -0.47   -0.78   -0.91   -0.83   -0.56   -0.20    0.14    0.39    0.59    0.88    1.44    2.34    3.56
+   205.0    0.00    0.05    0.13    0.17    0.08   -0.14   -0.45   -0.73   -0.87   -0.77   -0.50   -0.13    0.19    0.42    0.61    0.91    1.48    2.44    3.73
+   210.0    0.00    0.05    0.14    0.18    0.11   -0.12   -0.43   -0.71   -0.83   -0.74   -0.45   -0.08    0.23    0.44    0.60    0.86    1.43    2.43    3.80
+   215.0    0.00    0.06    0.15    0.20    0.12   -0.11   -0.42   -0.69   -0.80   -0.71   -0.42   -0.05    0.25    0.42    0.53    0.76    1.34    2.37    3.79
+   220.0    0.00    0.06    0.15    0.20    0.13   -0.10   -0.41   -0.68   -0.80   -0.69   -0.38   -0.04    0.23    0.35    0.42    0.63    1.19    2.24    3.71
+   225.0    0.00    0.06    0.17    0.21    0.13   -0.09   -0.41   -0.68   -0.79   -0.69   -0.38   -0.06    0.18    0.26    0.28    0.44    1.00    2.08    3.57
+   230.0    0.00    0.06    0.17    0.22    0.14   -0.09   -0.41   -0.68   -0.81   -0.69   -0.41   -0.10    0.11    0.13    0.10    0.24    0.80    1.91    3.43
+   235.0    0.00    0.07    0.18    0.22    0.14   -0.10   -0.41   -0.70   -0.82   -0.72   -0.45   -0.18   -0.01   -0.02   -0.09    0.04    0.61    1.74    3.28
+   240.0    0.00    0.07    0.18    0.22    0.14   -0.09   -0.42   -0.72   -0.85   -0.76   -0.52   -0.27   -0.15   -0.20   -0.28   -0.16    0.43    1.61    3.16
+   245.0    0.00    0.07    0.18    0.23    0.14   -0.10   -0.43   -0.74   -0.88   -0.82   -0.62   -0.41   -0.32   -0.39   -0.47   -0.33    0.29    1.51    3.10
+   250.0    0.00    0.07    0.18    0.23    0.14   -0.11   -0.45   -0.76   -0.93   -0.90   -0.74   -0.57   -0.50   -0.57   -0.65   -0.47    0.21    1.45    3.05
+   255.0    0.00    0.08    0.18    0.22    0.14   -0.11   -0.47   -0.79   -0.99   -1.00   -0.87   -0.73   -0.69   -0.75   -0.80   -0.56    0.15    1.43    3.04
+   260.0    0.00    0.07    0.18    0.23    0.14   -0.12   -0.48   -0.82   -1.05   -1.10   -1.02   -0.92   -0.87   -0.90   -0.89   -0.61    0.15    1.44    3.04
+   265.0    0.00    0.07    0.18    0.22    0.13   -0.13   -0.50   -0.87   -1.13   -1.23   -1.18   -1.09   -1.04   -1.01   -0.94   -0.60    0.18    1.47    3.04
+   270.0    0.00    0.07    0.17    0.22    0.12   -0.15   -0.53   -0.92   -1.22   -1.36   -1.34   -1.25   -1.16   -1.09   -0.95   -0.55    0.25    1.50    3.01
+   275.0    0.00    0.08    0.17    0.22    0.11   -0.16   -0.56   -0.97   -1.32   -1.48   -1.49   -1.40   -1.26   -1.12   -0.89   -0.45    0.35    1.53    2.95
+   280.0    0.00    0.07    0.17    0.20    0.10   -0.18   -0.59   -1.04   -1.41   -1.60   -1.62   -1.50   -1.32   -1.09   -0.79   -0.31    0.46    1.55    2.86
+   285.0    0.00    0.07    0.16    0.19    0.09   -0.20   -0.63   -1.09   -1.50   -1.72   -1.73   -1.59   -1.33   -1.03   -0.65   -0.15    0.57    1.55    2.74
+   290.0    0.00    0.06    0.16    0.19    0.07   -0.23   -0.67   -1.16   -1.58   -1.81   -1.83   -1.64   -1.32   -0.92   -0.50    0.02    0.66    1.53    2.60
+   295.0    0.00    0.07    0.16    0.18    0.06   -0.25   -0.71   -1.23   -1.66   -1.89   -1.90   -1.66   -1.27   -0.81   -0.33    0.16    0.74    1.50    2.46
+   300.0    0.00    0.06    0.15    0.17    0.04   -0.28   -0.75   -1.29   -1.73   -1.97   -1.93   -1.64   -1.20   -0.69   -0.19    0.29    0.79    1.45    2.32
+   305.0    0.00    0.06    0.14    0.16    0.03   -0.30   -0.79   -1.34   -1.78   -2.02   -1.94   -1.63   -1.12   -0.57   -0.06    0.38    0.81    1.38    2.20
+   310.0    0.00    0.06    0.14    0.15    0.01   -0.33   -0.84   -1.38   -1.83   -2.03   -1.94   -1.58   -1.04   -0.47    0.03    0.41    0.78    1.30    2.11
+   315.0    0.00    0.06    0.14    0.14   -0.07   -0.36   -0.87   -1.42   -1.85   -2.04   -1.92   -1.53   -0.97   -0.40    0.06    0.39    0.71    1.18    2.04
+   320.0    0.00    0.05    0.13    0.13   -0.04   -0.38   -0.90   -1.44   -1.88   -2.03   -1.89   -1.47   -0.91   -0.36    0.05    0.32    0.58    1.04    1.96
+   325.0    0.00    0.06    0.12    0.11   -0.05   -0.41   -0.92   -1.46   -1.88   -2.02   -1.85   -1.41   -0.86   -0.34    0.01    0.21    0.41    0.88    1.89
+   330.0    0.00    0.05    0.12    0.11   -0.06   -0.42   -0.93   -1.47   -1.88   -2.00   -1.81   -1.35   -0.81   -0.35   -0.07    0.06    0.21    0.69    1.79
+   335.0    0.00    0.05    0.11    0.10   -0.07   -0.43   -0.95   -1.49   -1.87   -1.98   -1.76   -1.31   -0.79   -0.37   -0.17   -0.11   -0.01    0.47    1.65
+   340.0    0.00    0.04    0.10    0.10   -0.07   -0.44   -0.95   -1.49   -1.86   -1.95   -1.73   -1.28   -0.77   -0.40   -0.28   -0.29   -0.25    0.23    1.47
+   345.0    0.00    0.05    0.10    0.09   -0.08   -0.44   -0.97   -1.49   -1.85   -1.93   -1.70   -1.25   -0.76   -0.45   -0.36   -0.45   -0.46   -0.01    1.24
+   350.0    0.00    0.04    0.09    0.09   -0.08   -0.44   -0.97   -1.48   -1.84   -1.92   -1.68   -1.24   -0.77   -0.48   -0.45   -0.58   -0.64   -0.23    1.00
+   355.0    0.00    0.04    0.08    0.08   -0.08   -0.44   -0.95   -1.47   -1.84   -1.90   -1.66   -1.23   -0.78   -0.50   -0.49   -0.67   -0.78   -0.44    0.73
+   360.0    0.00    0.03    0.09    0.08   -0.08   -0.45   -0.95   -1.46   -1.82   -1.89   -1.67   -1.24   -0.80   -0.53   -0.52   -0.73   -0.87   -0.59    0.50
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+      0.19     -1.23     84.72                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.01   -0.04   -0.04   -0.02    0.02    0.00   -0.11   -0.30   -0.51   -0.58   -0.41    0.02    0.56    0.96    1.03    0.74    0.38    0.42
+     0.0    0.00   -0.13   -0.26   -0.36   -0.40   -0.34   -0.25   -0.18   -0.14   -0.12   -0.05    0.13    0.42    0.75    0.94    0.85    0.45    0.07    0.36
+     5.0    0.00   -0.14   -0.28   -0.38   -0.40   -0.36   -0.28   -0.22   -0.19   -0.17   -0.10    0.08    0.39    0.73    0.91    0.80    0.38   -0.03    0.22
+    10.0    0.00   -0.14   -0.28   -0.39   -0.42   -0.38   -0.32   -0.27   -0.25   -0.24   -0.18    0.03    0.36    0.71    0.90    0.78    0.34   -0.10    0.11
+    15.0    0.00   -0.14   -0.29   -0.39   -0.42   -0.40   -0.35   -0.32   -0.33   -0.33   -0.27   -0.05    0.31    0.70    0.91    0.78    0.33   -0.14    0.02
+    20.0    0.00   -0.15   -0.29   -0.40   -0.44   -0.41   -0.37   -0.37   -0.41   -0.45   -0.39   -0.15    0.24    0.67    0.92    0.80    0.34   -0.15   -0.04
+    25.0    0.00   -0.15   -0.30   -0.40   -0.44   -0.42   -0.40   -0.43   -0.50   -0.56   -0.52   -0.28    0.16    0.64    0.93    0.84    0.39   -0.11   -0.05
+    30.0    0.00   -0.15   -0.30   -0.39   -0.43   -0.42   -0.42   -0.48   -0.59   -0.70   -0.66   -0.41    0.06    0.59    0.92    0.88    0.46   -0.04    0.39
+    35.0    0.00   -0.15   -0.30   -0.39   -0.43   -0.41   -0.44   -0.52   -0.68   -0.81   -0.81   -0.56   -0.06    0.50    0.89    0.90    0.52    0.06    0.07
+    40.0    0.00   -0.15   -0.29   -0.39   -0.42   -0.42   -0.44   -0.56   -0.75   -0.93   -0.95   -0.71   -0.19    0.41    0.84    0.90    0.57    0.15    0.16
+    45.0    0.00   -0.15   -0.28   -0.38   -0.41   -0.40   -0.45   -0.58   -0.81   -1.03   -1.07   -0.85   -0.33    0.29    0.76    0.88    0.61    0.24    0.23
+    50.0    0.00   -0.14   -0.27   -0.36   -0.38   -0.39   -0.44   -0.60   -0.85   -1.10   -1.18   -0.97   -0.47    0.16    0.65    0.81    0.60    0.29    0.28
+    55.0    0.00   -0.14   -0.26   -0.34   -0.37   -0.37   -0.42   -0.59   -0.87   -1.15   -1.26   -1.08   -0.58    0.04    0.54    0.72    0.56    0.29    0.28
+    60.0    0.00   -0.13   -0.25   -0.33   -0.34   -0.33   -0.39   -0.58   -0.88   -1.17   -1.31   -1.14   -0.69   -0.08    0.41    0.60    0.45    0.23    0.25
+    65.0    0.00   -0.12   -0.23   -0.29   -0.32   -0.31   -0.37   -0.55   -0.87   -1.18   -1.32   -1.18   -0.75   -0.17    0.30    0.45    0.33    0.14    0.16
+    70.0    0.00   -0.11   -0.22   -0.28   -0.27   -0.27   -0.33   -0.53   -0.84   -1.16   -1.32   -1.19   -0.78   -0.23    0.20    0.32    0.18    0.71    0.06
+    75.0    0.00   -0.10   -0.20   -0.24   -0.24   -0.23   -0.29   -0.49   -0.80   -1.12   -1.29   -1.17   -0.77   -0.25    0.13    0.22    0.04   -0.14   -0.05
+    80.0    0.00   -0.09   -0.17   -0.22   -0.20   -0.19   -0.24   -0.43   -0.75   -1.07   -1.22   -1.10   -0.72   -0.24    0.10    0.14   -0.07   -0.26   -0.14
+    85.0    0.00   -0.08   -0.16   -0.19   -0.16   -0.14   -0.19   -0.37   -0.68   -0.99   -1.15   -1.03   -0.65   -0.19    0.10    0.10   -0.15   -0.34   -0.18
+    90.0    0.00   -0.07   -0.14   -0.15   -0.12   -0.09   -0.13   -0.31   -0.62   -0.92   -1.06   -0.93   -0.55   -0.11    0.17    0.13   -0.16   -0.36   -0.16
+    95.0    0.00   -0.06   -0.11   -0.12   -0.07   -0.04   -0.07   -0.25   -0.54   -0.83   -0.97   -0.82   -0.44    0.01    0.27    0.21   -0.10   -0.31   -0.05
+   100.0    0.00   -0.05   -0.08   -0.09   -0.03    0.02   -0.01   -0.17   -0.47   -0.74   -0.87   -0.72   -0.32    0.13    0.41    0.35    0.04   -0.17    0.14
+   105.0    0.00   -0.04   -0.06   -0.05    0.01    0.08    0.06   -0.11   -0.38   -0.66   -0.78   -0.63   -0.21    0.28    0.58    0.53    0.22    0.02    0.39
+   110.0    0.00   -0.03   -0.03   -0.02    0.06    0.13    0.11   -0.03   -0.31   -0.59   -0.70   -0.53   -0.09    0.42    0.76    0.74    0.44    0.26    0.67
+   115.0    0.00   -0.01   -0.01    0.02    0.10    0.18    0.17    0.03   -0.24   -0.50   -0.62   -0.44    0.01    0.56    0.93    0.96    0.70    0.53    0.97
+   120.0    0.00   -0.03    0.01    0.06    0.14    0.22    0.23    0.08   -0.18   -0.44   -0.55   -0.36    0.10    0.68    1.10    1.17    0.94    0.77    1.23
+   125.0    0.00    0.02    0.03    0.09    0.17    0.26    0.27    0.14   -0.12   -0.39   -0.49   -0.30    0.18    0.78    1.24    1.35    1.16    0.99    1.41
+   130.0    0.00    0.03    0.05    0.12    0.21    0.30    0.30    0.18   -0.08   -0.34   -0.45   -0.25    0.24    0.86    1.36    1.50    1.33    1.13    1.53
+   135.0    0.00    0.04    0.08    0.15    0.24    0.33    0.33    0.21   -0.03   -0.29   -0.40   -0.20    0.29    0.93    1.45    1.61    1.43    1.21    1.54
+   140.0    0.00    0.05    0.10    0.17    0.27    0.34    0.35    0.23   -0.02   -0.26   -0.36   -0.17    0.33    0.97    1.49    1.68    1.48    1.21    1.46
+   145.0    0.00    0.06    0.12    0.19    0.28    0.36    0.36    0.24    0.63   -0.24   -0.33   -0.14    0.35    0.99    1.52    1.69    1.48    1.15    1.31
+   150.0    0.00    0.06    0.13    0.21    0.30    0.38    0.37    0.25    0.01   -0.22   -0.31   -0.12    0.37    0.99    1.52    1.68    1.45    1.05    1.08
+   155.0    0.00    0.08    0.14    0.23    0.31    0.39    0.37    0.24    0.01   -0.22   -0.30   -0.10    0.36    0.98    1.49    1.65    1.38    0.92    0.84
+   160.0    0.00    0.09    0.16    0.25    0.32    0.39    0.37    0.23    0.01   -0.21   -0.29   -0.11    0.35    0.95    1.45    1.60    1.31    0.79    0.60
+   165.0    0.00    0.09    0.18    0.25    0.34    0.39    0.37    0.22    0.01   -0.22   -0.30   -0.12    0.32    0.91    1.40    1.55    1.25    0.69    0.40
+   170.0    0.00    0.10    0.19    0.27    0.35    0.39    0.36    0.22    0.60   -0.22   -0.31   -0.15    0.29    0.86    1.34    1.50    1.20    0.62    0.26
+   175.0    0.00    0.11    0.19    0.28    0.35    0.39    0.36    0.23    0.60   -0.23   -0.32   -0.18    0.23    0.80    1.29    1.45    1.17    0.59    0.18
+   180.0    0.00    0.12    0.20    0.28    0.35    0.40    0.36    0.23   -0.01   -0.24   -0.34   -0.21    0.19    0.74    1.23    1.41    1.16    0.59    0.18
+   185.0    0.00    0.11    0.21    0.29    0.36    0.40    0.37    0.22    0.62   -0.24   -0.36   -0.25    0.13    0.67    1.17    1.37    1.16    0.62    0.23
+   190.0    0.00    0.12    0.21    0.29    0.37    0.40    0.37    0.23    0.64   -0.25   -0.38   -0.29    0.08    0.61    1.11    1.33    1.13    0.65    0.30
+   195.0    0.00    0.12    0.21    0.28    0.36    0.40    0.37    0.24    0.66   -0.25   -0.40   -0.32    0.03    0.55    1.04    1.28    1.11    0.68    0.39
+   200.0    0.00    0.12    0.21    0.29    0.35    0.40    0.36    0.24   -0.01   -0.26   -0.42   -0.35   -0.02    0.49    0.98    1.19    1.06    0.67    0.45
+   205.0    0.00    0.13    0.21    0.29    0.35    0.38    0.36    0.22   -0.01   -0.28   -0.44   -0.37   -0.05    0.44    0.89    1.11    0.97    0.63    0.49
+   210.0    0.00    0.12    0.21    0.27    0.34    0.37    0.35    0.21   -0.02   -0.29   -0.45   -0.38   -0.08    0.39    0.82    0.99    0.85    0.54    0.47
+   215.0    0.00    0.12    0.20    0.27    0.32    0.36    0.33    0.19   -0.05   -0.31   -0.47   -0.40   -0.10    0.35    0.73    0.87    0.70    0.43    0.43
+   220.0    0.00    0.11    0.19    0.25    0.30    0.34    0.30    0.16   -0.08   -0.33   -0.48   -0.42   -0.12    0.30    0.65    0.75    0.55    0.29    0.33
+   225.0    0.00    0.11    0.18    0.23    0.28    0.31    0.27    0.12   -0.10   -0.35   -0.50   -0.44   -0.14    0.26    0.57    0.63    0.40    0.14    0.22
+   230.0    0.00    0.11    0.17    0.22    0.27    0.28    0.24    0.09   -0.14   -0.39   -0.53   -0.46   -0.17    0.22    0.50    0.52    0.27    0.01    0.09
+   235.0    0.00    0.10    0.16    0.21    0.24    0.26    0.21    0.06   -0.18   -0.43   -0.57   -0.50   -0.21    0.18    0.44    0.44    0.17   -0.09   -0.01
+   240.0    0.00    0.10    0.15    0.18    0.22    0.23    0.18    0.03   -0.22   -0.48   -0.61   -0.53   -0.24    0.13    0.40    0.38    0.12   -0.14   -0.10
+   245.0    0.00    0.09    0.14    0.17    0.19    0.20    0.15    0.73   -0.25   -0.51   -0.66   -0.58   -0.29    0.10    0.37    0.38    0.13   -0.13   -0.13
+   250.0    0.00    0.08    0.12    0.15    0.17    0.18    0.13   -0.03   -0.29   -0.55   -0.70   -0.62   -0.32    0.08    0.37    0.40    0.18   -0.09   -0.14
+   255.0    0.00    0.07    0.11    0.13    0.16    0.17    0.11   -0.05   -0.30   -0.58   -0.74   -0.67   -0.36    0.06    0.41    0.47    0.26    0.49   -0.10
+   260.0    0.00    0.07    0.09    0.11    0.13    0.15    0.10   -0.06   -0.33   -0.60   -0.77   -0.69   -0.37    0.08    0.46    0.56    0.38    0.11   -0.05
+   265.0    0.00    0.06    0.08    0.10    0.12    0.13    0.09   -0.07   -0.33   -0.62   -0.80   -0.72   -0.38    0.11    0.54    0.68    0.53    0.22    0.01
+   270.0    0.00    0.05    0.06    0.07    0.10    0.12    0.07   -0.07   -0.34   -0.64   -0.80   -0.72   -0.35    0.18    0.64    0.82    0.66    0.33    0.07
+   275.0    0.00    0.03    0.04    0.05    0.08    0.11    0.07   -0.09   -0.35   -0.64   -0.80   -0.69   -0.29    0.28    0.76    0.95    0.77    0.40    0.10
+   280.0    0.00    0.03    0.03    0.03    0.06    0.09    0.06   -0.08   -0.35   -0.63   -0.78   -0.66   -0.22    0.38    0.90    1.08    0.87    0.43    0.12
+   285.0    0.00    0.01    0.16    0.01    0.04    0.07    0.04   -0.10   -0.34   -0.61   -0.74   -0.59   -0.11    0.52    1.05    1.21    0.93    0.43    0.12
+   290.0    0.00    0.07   -0.01   -0.01    0.01    0.05    0.03   -0.10   -0.34   -0.60   -0.70   -0.51    0.49    0.66    1.19    1.31    0.97    0.41    0.10
+   295.0    0.00    0.07   -0.03   -0.04   -0.01    0.03    0.01   -0.11   -0.34   -0.57   -0.65   -0.42    0.12    0.80    1.32    1.40    0.99    0.36    0.08
+   300.0    0.00   -0.02   -0.05   -0.06   -0.04    0.40   -0.01   -0.12   -0.33   -0.54   -0.58   -0.32    0.24    0.93    1.44    1.47    0.98    0.30    0.07
+   305.0    0.00   -0.03   -0.07   -0.09   -0.08   -0.03   -0.04   -0.14   -0.32   -0.50   -0.50   -0.22    0.35    1.04    1.52    1.51    0.96    0.25    0.07
+   310.0    0.00   -0.04   -0.09   -0.12   -0.10   -0.06   -0.06   -0.15   -0.30   -0.45   -0.43   -0.14    0.44    1.12    1.57    1.53    0.95    0.23    0.12
+   315.0    0.00   -0.05   -0.11   -0.15   -0.14   -0.09   -0.08   -0.14   -0.28   -0.40   -0.36   -0.06    0.52    1.17    1.59    1.52    0.94    0.22    0.20
+   320.0    0.00   -0.06   -0.14   -0.18   -0.18   -0.13   -0.10   -0.14   -0.24   -0.34   -0.29    0.02    0.56    1.19    1.58    1.50    0.92    0.24    0.29
+   325.0    0.00   -0.07   -0.16   -0.20   -0.20   -0.16   -0.12   -0.14   -0.21   -0.28   -0.22    0.07    0.58    1.16    1.53    1.44    0.90    0.27    0.40
+   330.0    0.00   -0.09   -0.17   -0.23   -0.23   -0.19   -0.14   -0.13   -0.18   -0.22   -0.16    0.11    0.57    1.12    1.45    1.38    0.87    0.31    0.50
+   335.0    0.00   -0.10   -0.20   -0.26   -0.27   -0.22   -0.15   -0.12   -0.15   -0.17   -0.11    0.13    0.57    1.04    1.36    1.30    0.83    0.33    0.59
+   340.0    0.00   -0.11   -0.21   -0.28   -0.29   -0.24   -0.17   -0.12   -0.12   -0.13   -0.06    0.16    0.53    0.98    1.26    1.20    0.77    0.33    0.64
+   345.0    0.00   -0.11   -0.22   -0.31   -0.32   -0.27   -0.19   -0.11   -0.10   -0.10   -0.04    0.16    0.50    0.90    1.16    1.10    0.70    0.31    0.62
+   350.0    0.00   -0.11   -0.24   -0.32   -0.35   -0.29   -0.21   -0.13   -0.10   -0.08   -0.03    0.16    0.48    0.84    1.06    1.00    0.62    0.24    0.57
+   355.0    0.00   -0.12   -0.25   -0.34   -0.37   -0.32   -0.23   -0.15   -0.10   -0.09   -0.03    0.16    0.45    0.78    1.00    0.92    0.54    0.17    0.49
+   360.0    0.00   -0.13   -0.26   -0.36   -0.40   -0.34   -0.25   -0.18   -0.14   -0.12   -0.05    0.13    0.42    0.75    0.94    0.85    0.45    0.07    0.36
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+LEIGS09         NONE                                        TYPE / SERIAL NO    
+COPIED              Geo++ GmbH              10    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     4                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+COPIED FROM LEIATX1230+GNSS NONE                            COMMENT             
+ATTENTION! COPIED WITHOUT VERIFICATION BY CALIBRATION!      COMMENT             
+   G01                                                      START OF FREQUENCY  
+     -1.28      1.28     87.18                              NORTH / EAST / UP   
+   NOAZI    0.00    0.04    0.11    0.13    0.01   -0.27   -0.65   -1.02   -1.23   -1.22   -1.03   -0.76   -0.52   -0.39   -0.28   -0.05    0.46    1.30    2.35
+     0.0    0.00    0.08    0.21    0.27    0.15   -0.19   -0.67   -1.13   -1.39   -1.33   -0.99   -0.50   -0.09    0.09    0.03   -0.11   -0.05    0.47    1.60
+     5.0    0.00    0.08    0.21    0.27    0.16   -0.17   -0.65   -1.11   -1.37   -1.32   -0.98   -0.50   -0.08    0.12    0.08   -0.05    0.00    0.47    1.49
+    10.0    0.00    0.08    0.21    0.27    0.16   -0.16   -0.63   -1.09   -1.35   -1.31   -0.98   -0.51   -0.09    0.13    0.12    0.04    0.10    0.52    1.41
+    15.0    0.00    0.08    0.20    0.27    0.17   -0.15   -0.61   -1.06   -1.32   -1.29   -0.99   -0.54   -0.12    0.11    0.16    0.13    0.22    0.62    1.38
+    20.0    0.00    0.07    0.20    0.27    0.17   -0.13   -0.58   -1.02   -1.29   -1.28   -1.00   -0.58   -0.18    0.08    0.17    0.21    0.36    0.75    1.41
+    25.0    0.00    0.07    0.19    0.26    0.17   -0.12   -0.55   -0.98   -1.24   -1.25   -1.00   -0.62   -0.25    0.01    0.15    0.26    0.48    0.90    1.47
+    30.0    0.00    0.07    0.19    0.25    0.16   -0.11   -0.53   -0.93   -1.19   -1.21   -1.01   -0.67   -0.34   -0.09    0.09    0.28    0.59    1.05    1.57
+    35.0    0.00    0.07    0.18    0.24    0.16   -0.11   -0.50   -0.89   -1.14   -1.17   -1.00   -0.72   -0.43   -0.21   -0.01    0.25    0.65    1.18    1.69
+    40.0    0.00    0.06    0.17    0.23    0.14   -0.11   -0.48   -0.85   -1.08   -1.12   -0.98   -0.75   -0.53   -0.34   -0.13    0.18    0.67    1.28    1.80
+    45.0    0.00    0.06    0.16    0.21    0.13   -0.12   -0.47   -0.81   -1.03   -1.07   -0.95   -0.77   -0.60   -0.46   -0.27    0.08    0.64    1.33    1.91
+    50.0    0.00    0.05    0.15    0.19    0.10   -0.14   -0.47   -0.79   -0.98   -1.01   -0.91   -0.77   -0.66   -0.57   -0.40   -0.05    0.56    1.33    1.98
+    55.0    0.00    0.05    0.13    0.17    0.08   -0.16   -0.48   -0.78   -0.95   -0.97   -0.87   -0.75   -0.68   -0.64   -0.52   -0.18    0.46    1.28    2.02
+    60.0    0.00    0.04    0.12    0.15    0.05   -0.19   -0.50   -0.78   -0.93   -0.93   -0.83   -0.72   -0.68   -0.68   -0.61   -0.30    0.34    1.21    2.03
+    65.0    0.00    0.04    0.11    0.12    0.01   -0.23   -0.53   -0.80   -0.93   -0.91   -0.79   -0.67   -0.64   -0.68   -0.65   -0.38    0.23    1.12    2.01
+    70.0    0.00    0.04    0.10    0.10   -0.02   -0.27   -0.57   -0.83   -0.95   -0.90   -0.76   -0.62   -0.59   -0.63   -0.64   -0.43    0.14    1.04    2.00
+    75.0    0.00    0.03    0.08    0.08   -0.05   -0.31   -0.62   -0.88   -0.99   -0.92   -0.74   -0.57   -0.51   -0.56   -0.59   -0.42    0.11    0.99    1.99
+    80.0    0.00    0.03    0.07    0.06   -0.08   -0.35   -0.67   -0.93   -1.04   -0.95   -0.74   -0.54   -0.44   -0.46   -0.50   -0.36    0.13    0.99    2.03
+    85.0    0.00    0.02    0.06    0.04   -0.11   -0.39   -0.72   -0.99   -1.10   -1.00   -0.77   -0.52   -0.38   -0.36   -0.38   -0.25    0.20    1.05    2.11
+    90.0    0.00    0.02    0.05    0.02   -0.13   -0.42   -0.77   -1.06   -1.17   -1.07   -0.81   -0.53   -0.33   -0.27   -0.26   -0.12    0.33    1.17    2.25
+    95.0    0.00    0.02    0.05    0.01   -0.15   -0.45   -0.81   -1.11   -1.24   -1.14   -0.88   -0.56   -0.32   -0.20   -0.14    0.03    0.49    1.34    2.45
+   100.0    0.00    0.02    0.04    0.01   -0.16   -0.47   -0.85   -1.17   -1.31   -1.23   -0.96   -0.62   -0.33   -0.16   -0.05    0.17    0.67    1.54    2.68
+   105.0    0.00    0.01    0.04    0.00   -0.17   -0.49   -0.87   -1.21   -1.38   -1.31   -1.05   -0.70   -0.38   -0.16    0.01    0.28    0.83    1.74    2.92
+   110.0    0.00    0.01    0.04    0.00   -0.17   -0.49   -0.89   -1.24   -1.43   -1.39   -1.15   -0.80   -0.46   -0.20    0.02    0.35    0.96    1.92    3.15
+   115.0    0.00    0.01    0.04    0.01   -0.17   -0.49   -0.90   -1.27   -1.48   -1.46   -1.24   -0.90   -0.56   -0.28   -0.02    0.36    1.03    2.05    3.33
+   120.0    0.00    0.01    0.04    0.01   -0.16   -0.48   -0.90   -1.28   -1.51   -1.52   -1.31   -0.99   -0.66   -0.38   -0.10    0.32    1.03    2.11    3.44
+   125.0    0.00    0.01    0.05    0.02   -0.14   -0.47   -0.89   -1.28   -1.53   -1.56   -1.37   -1.07   -0.76   -0.49   -0.21    0.21    0.96    2.08    3.45
+   130.0    0.00    0.01    0.05    0.03   -0.13   -0.45   -0.87   -1.28   -1.54   -1.58   -1.41   -1.13   -0.84   -0.60   -0.35    0.07    0.82    1.96    3.36
+   135.0    0.00    0.01    0.06    0.04   -0.11   -0.43   -0.86   -1.26   -1.53   -1.57   -1.42   -1.16   -0.90   -0.70   -0.49   -0.10    0.63    1.77    3.18
+   140.0    0.00    0.01    0.06    0.05   -0.09   -0.41   -0.83   -1.24   -1.51   -1.55   -1.41   -1.16   -0.93   -0.77   -0.61   -0.28    0.41    1.53    2.93
+   145.0    0.00    0.01    0.07    0.07   -0.07   -0.39   -0.81   -1.21   -1.47   -1.51   -1.37   -1.13   -0.94   -0.82   -0.72   -0.45    0.19    1.26    2.63
+   150.0    0.00    0.01    0.07    0.08   -0.06   -0.36   -0.78   -1.18   -1.43   -1.46   -1.31   -1.08   -0.91   -0.83   -0.79   -0.58   -0.01    1.01    2.32
+   155.0    0.00    0.01    0.08    0.09   -0.04   -0.34   -0.75   -1.14   -1.38   -1.39   -1.23   -1.01   -0.85   -0.81   -0.82   -0.67   -0.16    0.80    2.05
+   160.0    0.00    0.02    0.08    0.10   -0.02   -0.32   -0.72   -1.10   -1.32   -1.32   -1.15   -0.92   -0.77   -0.76   -0.80   -0.70   -0.24    0.65    1.84
+   165.0    0.00    0.02    0.09    0.11   -0.01   -0.30   -0.69   -1.06   -1.26   -1.24   -1.05   -0.82   -0.68   -0.69   -0.75   -0.67   -0.25    0.59    1.71
+   170.0    0.00    0.02    0.09    0.12    0.00   -0.28   -0.66   -1.01   -1.20   -1.17   -0.96   -0.72   -0.58   -0.59   -0.66   -0.59   -0.19    0.62    1.69
+   175.0    0.00    0.02    0.09    0.12    0.01   -0.26   -0.63   -0.97   -1.14   -1.09   -0.88   -0.63   -0.48   -0.48   -0.54   -0.46   -0.06    0.74    1.77
+   180.0    0.00    0.02    0.09    0.13    0.02   -0.25   -0.61   -0.93   -1.09   -1.02   -0.79   -0.54   -0.39   -0.37   -0.41   -0.31    0.11    0.91    1.92
+   185.0    0.00    0.02    0.10    0.13    0.02   -0.24   -0.59   -0.90   -1.04   -0.96   -0.72   -0.46   -0.30   -0.27   -0.28   -0.15    0.31    1.13    2.14
+   190.0    0.00    0.02    0.10    0.13    0.02   -0.23   -0.58   -0.87   -1.00   -0.91   -0.66   -0.39   -0.21   -0.17   -0.16    0.01    0.51    1.35    2.37
+   195.0    0.00    0.02    0.09    0.13    0.02   -0.23   -0.57   -0.85   -0.96   -0.86   -0.60   -0.32   -0.14   -0.09   -0.05    0.15    0.68    1.56    2.60
+   200.0    0.00    0.02    0.09    0.12    0.02   -0.23   -0.56   -0.84   -0.94   -0.82   -0.56   -0.27   -0.09   -0.02    0.02    0.24    0.81    1.72    2.78
+   205.0    0.00    0.02    0.09    0.12    0.01   -0.24   -0.56   -0.83   -0.92   -0.79   -0.52   -0.23   -0.05    0.01    0.06    0.30    0.88    1.82    2.91
+   210.0    0.00    0.02    0.09    0.11    0.01   -0.24   -0.56   -0.82   -0.90   -0.77   -0.49   -0.20   -0.03    0.03    0.07    0.30    0.89    1.85    2.96
+   215.0    0.00    0.02    0.09    0.11    0.00   -0.25   -0.56   -0.82   -0.89   -0.76   -0.48   -0.19   -0.03    0.01    0.03    0.25    0.84    1.82    2.95
+   220.0    0.00    0.02    0.08    0.10    0.00   -0.25   -0.56   -0.81   -0.89   -0.75   -0.47   -0.20   -0.05   -0.05   -0.05    0.16    0.75    1.73    2.88
+   225.0    0.00    0.02    0.08    0.10   -0.01   -0.25   -0.56   -0.81   -0.88   -0.75   -0.48   -0.23   -0.11   -0.13   -0.16    0.03    0.62    1.61    2.77
+   230.0    0.00    0.02    0.08    0.10   -0.01   -0.25   -0.56   -0.80   -0.88   -0.75   -0.51   -0.28   -0.19   -0.25   -0.30   -0.12    0.47    1.48    2.66
+   235.0    0.00    0.02    0.08    0.09   -0.01   -0.25   -0.55   -0.80   -0.88   -0.77   -0.55   -0.36   -0.30   -0.38   -0.46   -0.28    0.32    1.36    2.55
+   240.0    0.00    0.02    0.08    0.09   -0.01   -0.24   -0.54   -0.79   -0.89   -0.80   -0.61   -0.45   -0.43   -0.54   -0.62   -0.44    0.19    1.27    2.48
+   245.0    0.00    0.02    0.08    0.10    0.00   -0.23   -0.53   -0.79   -0.90   -0.84   -0.69   -0.57   -0.58   -0.70   -0.77   -0.57    0.09    1.21    2.46
+   250.0    0.00    0.02    0.08    0.10    0.00   -0.23   -0.52   -0.79   -0.92   -0.90   -0.78   -0.70   -0.72   -0.85   -0.91   -0.67    0.04    1.19    2.48
+   255.0    0.00    0.03    0.08    0.10    0.01   -0.22   -0.52   -0.80   -0.96   -0.97   -0.89   -0.83   -0.86   -0.97   -1.01   -0.73    0.02    1.22    2.55
+   260.0    0.00    0.03    0.09    0.11    0.02   -0.21   -0.52   -0.81   -1.00   -1.05   -1.00   -0.96   -0.99   -1.07   -1.06   -0.74    0.05    1.28    2.65
+   265.0    0.00    0.03    0.09    0.11    0.02   -0.20   -0.52   -0.84   -1.06   -1.14   -1.12   -1.08   -1.09   -1.12   -1.06   -0.70    0.12    1.37    2.76
+   270.0    0.00    0.03    0.10    0.12    0.03   -0.20   -0.54   -0.88   -1.13   -1.24   -1.23   -1.18   -1.15   -1.13   -1.01   -0.61    0.22    1.47    2.87
+   275.0    0.00    0.04    0.10    0.13    0.04   -0.20   -0.56   -0.92   -1.21   -1.34   -1.34   -1.26   -1.17   -1.09   -0.91   -0.48    0.35    1.57    2.96
+   280.0    0.00    0.04    0.11    0.13    0.04   -0.21   -0.58   -0.98   -1.29   -1.44   -1.43   -1.31   -1.16   -1.00   -0.77   -0.31    0.49    1.67    3.02
+   285.0    0.00    0.04    0.11    0.14    0.05   -0.22   -0.61   -1.03   -1.37   -1.53   -1.50   -1.33   -1.11   -0.88   -0.59   -0.13    0.63    1.74    3.04
+   290.0    0.00    0.04    0.12    0.15    0.05   -0.23   -0.64   -1.09   -1.44   -1.60   -1.55   -1.33   -1.04   -0.73   -0.41    0.05    0.76    1.79    3.03
+   295.0    0.00    0.05    0.13    0.16    0.05   -0.24   -0.67   -1.14   -1.51   -1.66   -1.58   -1.30   -0.94   -0.58   -0.22    0.21    0.86    1.81    2.99
+   300.0    0.00    0.05    0.13    0.17    0.05   -0.25   -0.70   -1.19   -1.56   -1.70   -1.58   -1.25   -0.84   -0.43   -0.06    0.35    0.93    1.80    2.92
+   305.0    0.00    0.05    0.14    0.17    0.06   -0.25   -0.72   -1.22   -1.59   -1.72   -1.56   -1.19   -0.73   -0.29    0.08    0.45    0.97    1.77    2.84
+   310.0    0.00    0.06    0.15    0.18    0.06   -0.26   -0.74   -1.24   -1.61   -1.71   -1.53   -1.12   -0.63   -0.18    0.17    0.50    0.96    1.71    2.76
+   315.0    0.00    0.06    0.16    0.19    0.07   -0.26   -0.75   -1.25   -1.61   -1.69   -1.47   -1.04   -0.53   -0.10    0.21    0.49    0.91    1.62    2.68
+   320.0    0.00    0.06    0.16    0.20    0.07   -0.26   -0.75   -1.25   -1.60   -1.65   -1.41   -0.96   -0.46   -0.05    0.22    0.44    0.81    1.51    2.59
+   325.0    0.00    0.07    0.17    0.21    0.08   -0.26   -0.75   -1.24   -1.57   -1.61   -1.34   -0.88   -0.39   -0.02    0.19    0.36    0.69    1.38    2.50
+   330.0    0.00    0.07    0.18    0.22    0.09   -0.25   -0.74   -1.23   -1.54   -1.55   -1.27   -0.80   -0.33   -0.01    0.14    0.25    0.54    1.23    2.41
+   335.0    0.00    0.07    0.18    0.23    0.10   -0.24   -0.73   -1.21   -1.51   -1.50   -1.20   -0.73   -0.28    0.00    0.09    0.13    0.38    1.07    2.30
+   340.0    0.00    0.07    0.19    0.24    0.11   -0.23   -0.72   -1.20   -1.48   -1.45   -1.13   -0.66   -0.23    0.00    0.03    0.02    0.22    0.91    2.17
+   345.0    0.00    0.08    0.20    0.25    0.12   -0.22   -0.71   -1.18   -1.45   -1.41   -1.08   -0.60   -0.19    0.01    0.00   -0.07    0.09    0.76    2.03
+   350.0    0.00    0.08    0.20    0.26    0.13   -0.21   -0.70   -1.16   -1.43   -1.38   -1.04   -0.56   -0.15    0.03   -0.02   -0.12    0.00    0.63    1.88
+   355.0    0.00    0.08    0.20    0.26    0.14   -0.20   -0.68   -1.15   -1.41   -1.35   -1.00   -0.52   -0.12    0.06    0.00   -0.13   -0.05    0.53    1.73
+   360.0    0.00    0.08    0.21    0.27    0.15   -0.19   -0.67   -1.13   -1.39   -1.33   -0.99   -0.50   -0.09    0.09    0.03   -0.11   -0.05    0.47    1.60
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.19     -1.23     84.72                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.02   -0.08   -0.14   -0.21   -0.29   -0.43   -0.65   -0.91   -1.11   -1.12   -0.85   -0.32    0.28    0.69    0.71    0.36   -0.02    0.10
+     0.0    0.00   -0.10   -0.21   -0.32   -0.41   -0.48   -0.56   -0.65   -0.71   -0.70   -0.54   -0.21    0.25    0.71    0.97    0.87    0.43    0.00    0.28
+     5.0    0.00   -0.10   -0.21   -0.32   -0.41   -0.49   -0.57   -0.66   -0.72   -0.71   -0.55   -0.21    0.26    0.73    0.98    0.87    0.42   -0.04    0.17
+    10.0    0.00   -0.10   -0.21   -0.32   -0.41   -0.49   -0.58   -0.67   -0.74   -0.73   -0.57   -0.22    0.26    0.74    1.00    0.89    0.42   -0.08    0.05
+    15.0    0.00   -0.10   -0.21   -0.32   -0.41   -0.50   -0.59   -0.69   -0.77   -0.76   -0.60   -0.25    0.25    0.75    1.02    0.91    0.43   -0.11   -0.08
+    20.0    0.00   -0.10   -0.21   -0.32   -0.42   -0.50   -0.60   -0.71   -0.80   -0.82   -0.66   -0.30    0.22    0.74    1.04    0.93    0.44   -0.14   -0.20
+    25.0    0.00   -0.10   -0.21   -0.32   -0.42   -0.51   -0.61   -0.74   -0.85   -0.88   -0.74   -0.38    0.16    0.71    1.04    0.95    0.46   -0.15   -0.31
+    30.0    0.00   -0.10   -0.21   -0.32   -0.42   -0.51   -0.62   -0.77   -0.91   -0.97   -0.84   -0.48    0.08    0.66    1.01    0.95    0.47   -0.16   -0.39
+    35.0    0.00   -0.09   -0.21   -0.32   -0.42   -0.51   -0.64   -0.80   -0.97   -1.06   -0.96   -0.61   -0.04    0.57    0.96    0.93    0.47   -0.16   -0.45
+    40.0    0.00   -0.09   -0.21   -0.32   -0.42   -0.52   -0.65   -0.84   -1.04   -1.17   -1.10   -0.76   -0.18    0.45    0.87    0.88    0.44   -0.17   -0.49
+    45.0    0.00   -0.09   -0.20   -0.32   -0.42   -0.52   -0.67   -0.87   -1.11   -1.28   -1.24   -0.92   -0.34    0.30    0.75    0.79    0.39   -0.19   -0.52
+    50.0    0.00   -0.08   -0.20   -0.31   -0.41   -0.52   -0.68   -0.91   -1.17   -1.38   -1.38   -1.08   -0.51    0.14    0.60    0.66    0.30   -0.24   -0.55
+    55.0    0.00   -0.08   -0.19   -0.30   -0.41   -0.52   -0.68   -0.93   -1.23   -1.47   -1.51   -1.24   -0.68   -0.03    0.44    0.51    0.18   -0.32   -0.59
+    60.0    0.00   -0.07   -0.18   -0.30   -0.40   -0.51   -0.68   -0.95   -1.28   -1.55   -1.62   -1.37   -0.84   -0.20    0.26    0.34    0.02   -0.43   -0.63
+    65.0    0.00   -0.07   -0.17   -0.28   -0.39   -0.50   -0.68   -0.95   -1.30   -1.61   -1.70   -1.48   -0.97   -0.35    0.10    0.16   -0.15   -0.56   -0.69
+    70.0    0.00   -0.06   -0.16   -0.27   -0.37   -0.48   -0.66   -0.95   -1.31   -1.64   -1.76   -1.56   -1.07   -0.47   -0.04   -0.01   -0.33   -0.71   -0.75
+    75.0    0.00   -0.05   -0.15   -0.25   -0.35   -0.46   -0.64   -0.93   -1.30   -1.64   -1.78   -1.60   -1.12   -0.54   -0.15   -0.14   -0.49   -0.85   -0.82
+    80.0    0.00   -0.04   -0.13   -0.23   -0.32   -0.43   -0.60   -0.89   -1.27   -1.62   -1.76   -1.59   -1.13   -0.57   -0.21   -0.24   -0.61   -0.97   -0.87
+    85.0    0.00   -0.04   -0.12   -0.21   -0.29   -0.39   -0.56   -0.84   -1.22   -1.57   -1.72   -1.56   -1.10   -0.56   -0.22   -0.28   -0.69   -1.05   -0.89
+    90.0    0.00   -0.03   -0.10   -0.19   -0.26   -0.35   -0.51   -0.79   -1.16   -1.51   -1.66   -1.49   -1.03   -0.49   -0.17   -0.26   -0.70   -1.08   -0.87
+    95.0    0.00   -0.02   -0.08   -0.16   -0.22   -0.30   -0.45   -0.73   -1.09   -1.43   -1.57   -1.39   -0.93   -0.38   -0.07   -0.18   -0.65   -1.05   -0.80
+   100.0    0.00   -0.01   -0.06   -0.13   -0.18   -0.25   -0.40   -0.66   -1.02   -1.34   -1.47   -1.28   -0.80   -0.25    0.08   -0.04   -0.53   -0.95   -0.67
+   105.0    0.00    0.00   -0.04   -0.10   -0.14   -0.20   -0.34   -0.60   -0.94   -1.26   -1.38   -1.17   -0.67   -0.09    0.26    0.14   -0.36   -0.80   -0.49
+   110.0    0.00    0.01   -0.02   -0.07   -0.10   -0.16   -0.29   -0.53   -0.87   -1.18   -1.28   -1.05   -0.52    0.08    0.45    0.35   -0.16   -0.60   -0.26
+   115.0    0.00    0.02    0.00   -0.03   -0.06   -0.11   -0.24   -0.48   -0.81   -1.10   -1.19   -0.94   -0.39    0.25    0.64    0.56    0.07   -0.37   -0.01
+   120.0    0.00    0.03    0.02    0.00   -0.02   -0.07   -0.19   -0.44   -0.76   -1.04   -1.11   -0.84   -0.27    0.39    0.82    0.77    0.30   -0.14    0.24
+   125.0    0.00    0.04    0.04    0.03    0.01   -0.03   -0.16   -0.40   -0.72   -0.99   -1.04   -0.76   -0.17    0.52    0.97    0.95    0.50    0.08    0.47
+   130.0    0.00    0.05    0.06    0.06    0.05    0.00   -0.13   -0.37   -0.69   -0.95   -0.99   -0.69   -0.08    0.61    1.09    1.09    0.67    0.26    0.67
+   135.0    0.00    0.05    0.08    0.09    0.08    0.03   -0.11   -0.35   -0.66   -0.91   -0.94   -0.63   -0.03    0.68    1.17    1.19    0.79    0.40    0.81
+   140.0    0.00    0.06    0.10    0.11    0.11    0.05   -0.09   -0.34   -0.65   -0.89   -0.91   -0.60    0.01    0.71    1.20    1.25    0.87    0.49    0.89
+   145.0    0.00    0.07    0.11    0.13    0.13    0.07   -0.08   -0.33   -0.63   -0.87   -0.88   -0.57    0.02    0.71    1.20    1.26    0.91    0.53    0.91
+   150.0    0.00    0.07    0.12    0.15    0.15    0.09   -0.07   -0.32   -0.62   -0.85   -0.86   -0.56    0.02    0.69    1.17    1.24    0.91    0.54    0.86
+   155.0    0.00    0.08    0.13    0.17    0.16    0.10   -0.06   -0.32   -0.62   -0.84   -0.84   -0.55    0.00    0.65    1.12    1.21    0.89    0.52    0.77
+   160.0    0.00    0.08    0.14    0.18    0.17    0.10   -0.06   -0.32   -0.61   -0.82   -0.83   -0.56   -0.03    0.60    1.06    1.16    0.87    0.49    0.65
+   165.0    0.00    0.08    0.15    0.18    0.18    0.10   -0.06   -0.32   -0.60   -0.82   -0.83   -0.57   -0.06    0.54    1.00    1.12    0.85    0.46    0.53
+   170.0    0.00    0.09    0.15    0.19    0.18    0.10   -0.07   -0.32   -0.60   -0.81   -0.83   -0.59   -0.10    0.48    0.94    1.08    0.84    0.44    0.41
+   175.0    0.00    0.09    0.15    0.18    0.17    0.09   -0.08   -0.32   -0.60   -0.81   -0.84   -0.61   -0.15    0.42    0.89    1.05    0.84    0.44    0.31
+   180.0    0.00    0.09    0.15    0.18    0.16    0.08   -0.09   -0.33   -0.61   -0.82   -0.85   -0.64   -0.19    0.37    0.84    1.03    0.86    0.46    0.25
+   185.0    0.00    0.08    0.14    0.17    0.15    0.06   -0.10   -0.35   -0.62   -0.83   -0.87   -0.67   -0.23    0.32    0.80    1.01    0.87    0.48    0.22
+   190.0    0.00    0.08    0.13    0.15    0.13    0.04   -0.13   -0.37   -0.64   -0.85   -0.89   -0.70   -0.27    0.28    0.76    0.99    0.87    0.50    0.21
+   195.0    0.00    0.08    0.12    0.13    0.10    0.01   -0.15   -0.39   -0.66   -0.87   -0.92   -0.73   -0.31    0.23    0.72    0.96    0.86    0.51    0.22
+   200.0    0.00    0.07    0.11    0.11    0.07   -0.02   -0.19   -0.42   -0.69   -0.90   -0.95   -0.77   -0.35    0.19    0.67    0.90    0.82    0.49    0.23
+   205.0    0.00    0.07    0.09    0.09    0.04   -0.06   -0.22   -0.46   -0.72   -0.94   -0.99   -0.80   -0.39    0.14    0.60    0.83    0.74    0.45    0.23
+   210.0    0.00    0.06    0.08    0.06    0.01   -0.10   -0.26   -0.50   -0.76   -0.98   -1.03   -0.84   -0.43    0.08    0.53    0.72    0.63    0.36    0.21
+   215.0    0.00    0.05    0.06    0.03   -0.03   -0.13   -0.30   -0.54   -0.81   -1.02   -1.07   -0.89   -0.48    0.02    0.43    0.60    0.48    0.25    0.17
+   220.0    0.00    0.04    0.04    0.00   -0.07   -0.17   -0.34   -0.58   -0.85   -1.07   -1.12   -0.94   -0.54   -0.05    0.33    0.46    0.32    0.11    0.10
+   225.0    0.00    0.04    0.02   -0.03   -0.10   -0.21   -0.38   -0.62   -0.89   -1.11   -1.17   -1.00   -0.60   -0.13    0.22    0.32    0.16   -0.04    0.01
+   230.0    0.00    0.03    0.00   -0.06   -0.13   -0.24   -0.41   -0.65   -0.93   -1.16   -1.23   -1.06   -0.67   -0.21    0.12    0.18    0.00   -0.19   -0.09
+   235.0    0.00    0.02   -0.02   -0.08   -0.16   -0.27   -0.44   -0.68   -0.97   -1.22   -1.30   -1.13   -0.75   -0.29    0.02    0.06   -0.14   -0.32   -0.19
+   240.0    0.00    0.01   -0.03   -0.11   -0.19   -0.30   -0.46   -0.71   -1.01   -1.27   -1.36   -1.20   -0.82   -0.37   -0.05   -0.03   -0.24   -0.42   -0.28
+   245.0    0.00    0.00   -0.05   -0.13   -0.22   -0.32   -0.48   -0.73   -1.04   -1.32   -1.43   -1.28   -0.89   -0.43   -0.11   -0.08   -0.29   -0.48   -0.34
+   250.0    0.00   -0.01   -0.07   -0.15   -0.24   -0.34   -0.50   -0.75   -1.08   -1.37   -1.49   -1.34   -0.95   -0.46   -0.13   -0.09   -0.31   -0.51   -0.38
+   255.0    0.00   -0.02   -0.09   -0.17   -0.25   -0.35   -0.51   -0.77   -1.10   -1.41   -1.55   -1.40   -0.99   -0.48   -0.11   -0.06   -0.28   -0.49   -0.38
+   260.0    0.00   -0.02   -0.10   -0.19   -0.27   -0.36   -0.52   -0.78   -1.13   -1.45   -1.59   -1.43   -1.00   -0.46   -0.06    0.00   -0.22   -0.45   -0.36
+   265.0    0.00   -0.03   -0.11   -0.20   -0.28   -0.37   -0.52   -0.79   -1.14   -1.47   -1.62   -1.45   -0.99   -0.41    0.02    0.10   -0.13   -0.39   -0.31
+   270.0    0.00   -0.04   -0.13   -0.22   -0.29   -0.37   -0.53   -0.79   -1.15   -1.49   -1.62   -1.44   -0.94   -0.33    0.13    0.22   -0.03   -0.32   -0.25
+   275.0    0.00   -0.05   -0.14   -0.23   -0.30   -0.38   -0.53   -0.80   -1.16   -1.49   -1.61   -1.39   -0.86   -0.21    0.26    0.35    0.06   -0.26   -0.19
+   280.0    0.00   -0.05   -0.15   -0.24   -0.31   -0.38   -0.53   -0.79   -1.15   -1.47   -1.57   -1.33   -0.76   -0.08    0.41    0.48    0.16   -0.21   -0.12
+   285.0    0.00   -0.06   -0.16   -0.25   -0.31   -0.39   -0.53   -0.79   -1.13   -1.43   -1.51   -1.23   -0.63    0.08    0.57    0.61    0.23   -0.18   -0.07
+   290.0    0.00   -0.07   -0.16   -0.25   -0.32   -0.39   -0.53   -0.78   -1.11   -1.39   -1.43   -1.12   -0.49    0.23    0.72    0.72    0.29   -0.16   -0.03
+   295.0    0.00   -0.07   -0.17   -0.26   -0.32   -0.39   -0.53   -0.77   -1.08   -1.33   -1.34   -0.99   -0.34    0.39    0.86    0.82    0.34   -0.16    0.01
+   300.0    0.00   -0.08   -0.18   -0.27   -0.33   -0.40   -0.53   -0.75   -1.04   -1.26   -1.24   -0.86   -0.20    0.53    0.98    0.90    0.37   -0.16    0.03
+   305.0    0.00   -0.08   -0.18   -0.27   -0.34   -0.40   -0.53   -0.74   -1.00   -1.18   -1.13   -0.74   -0.07    0.65    1.07    0.97    0.39   -0.17    0.06
+   310.0    0.00   -0.08   -0.19   -0.28   -0.34   -0.41   -0.52   -0.72   -0.95   -1.11   -1.03   -0.63    0.04    0.74    1.14    1.01    0.41   -0.16    0.10
+   315.0    0.00   -0.09   -0.19   -0.28   -0.35   -0.41   -0.52   -0.70   -0.91   -1.03   -0.93   -0.53    0.13    0.80    1.18    1.03    0.43   -0.15    0.15
+   320.0    0.00   -0.09   -0.20   -0.29   -0.36   -0.42   -0.52   -0.68   -0.86   -0.96   -0.85   -0.44    0.19    0.84    1.19    1.04    0.44   -0.12    0.20
+   325.0    0.00   -0.09   -0.20   -0.29   -0.36   -0.43   -0.52   -0.67   -0.82   -0.90   -0.77   -0.38    0.23    0.84    1.18    1.03    0.46   -0.08    0.27
+   330.0    0.00   -0.10   -0.20   -0.30   -0.37   -0.44   -0.53   -0.65   -0.79   -0.84   -0.71   -0.33    0.24    0.83    1.15    1.01    0.47   -0.04    0.33
+   335.0    0.00   -0.10   -0.21   -0.30   -0.38   -0.45   -0.53   -0.64   -0.76   -0.80   -0.66   -0.30    0.25    0.80    1.11    0.99    0.48    0.01    0.39
+   340.0    0.00   -0.10   -0.21   -0.30   -0.38   -0.45   -0.54   -0.64   -0.74   -0.76   -0.62   -0.27    0.24    0.77    1.07    0.96    0.48    0.04    0.43
+   345.0    0.00   -0.10   -0.21   -0.31   -0.39   -0.46   -0.54   -0.63   -0.72   -0.73   -0.59   -0.25    0.24    0.74    1.03    0.93    0.47    0.06    0.44
+   350.0    0.00   -0.10   -0.21   -0.31   -0.40   -0.47   -0.55   -0.63   -0.71   -0.71   -0.57   -0.24    0.24    0.72    0.99    0.90    0.46    0.05    0.42
+   355.0    0.00   -0.10   -0.21   -0.31   -0.40   -0.48   -0.55   -0.64   -0.70   -0.70   -0.55   -0.22    0.24    0.71    0.98    0.88    0.45    0.04    0.37
+   360.0    0.00   -0.10   -0.21   -0.32   -0.41   -0.48   -0.56   -0.65   -0.71   -0.70   -0.54   -0.21    0.25    0.71    0.97    0.87    0.43    0.00    0.28
+   G02                                                      END OF FREQUENCY    
+   R01                                                      START OF FREQUENCY  
+     -1.28      1.28     87.18                              NORTH / EAST / UP   
+   NOAZI    0.00    0.03    0.08    0.08   -0.06   -0.38   -0.80   -1.22   -1.52   -1.58   -1.43   -1.16   -0.85   -0.62   -0.45   -0.21    0.24    1.02    2.14
+     0.0    0.00    0.03    0.09    0.08   -0.08   -0.45   -0.95   -1.46   -1.82   -1.89   -1.67   -1.24   -0.80   -0.53   -0.52   -0.73   -0.87   -0.59    0.50
+     5.0    0.00    0.03    0.08    0.07   -0.08   -0.44   -0.93   -1.44   -1.80   -1.88   -1.68   -1.27   -0.83   -0.55   -0.54   -0.73   -0.89   -0.67    0.31
+    10.0    0.00    0.03    0.08    0.07   -0.10   -0.43   -0.92   -1.42   -1.79   -1.88   -1.69   -1.31   -0.88   -0.59   -0.55   -0.70   -0.85   -0.68    0.18
+    15.0    0.00    0.03    0.06    0.06   -0.09   -0.43   -0.90   -1.40   -1.76   -1.87   -1.71   -1.36   -0.94   -0.66   -0.56   -0.66   -0.77   -0.61    0.13
+    20.0    0.00    0.01    0.06    0.06   -0.09   -0.41   -0.88   -1.36   -1.74   -1.86   -1.73   -1.41   -1.02   -0.72   -0.58   -0.62   -0.66   -0.49    0.18
+    25.0    0.00    0.01    0.05    0.05   -0.10   -0.41   -0.86   -1.33   -1.70   -1.85   -1.74   -1.46   -1.10   -0.80   -0.64   -0.59   -0.55   -0.32    0.30
+    30.0    0.00    0.01    0.05    0.04   -0.11   -0.41   -0.85   -1.30   -1.66   -1.82   -1.75   -1.51   -1.20   -0.91   -0.71   -0.58   -0.44   -0.14    0.49
+    35.0    0.00    0.01    0.04    0.03   -0.11   -0.41   -0.83   -1.27   -1.63   -1.79   -1.74   -1.56   -1.28   -1.03   -0.82   -0.62   -0.37    0.03    0.70
+    40.0    0.00   -0.06    0.03    0.03   -0.13   -0.42   -0.83   -1.25   -1.59   -1.75   -1.72   -1.58   -1.37   -1.16   -0.94   -0.68   -0.33    0.18    0.91
+    45.0    0.00   -0.06    0.03    0.01   -0.14   -0.44   -0.83   -1.25   -1.56   -1.71   -1.69   -1.58   -1.42   -1.26   -1.07   -0.77   -0.34    0.29    1.10
+    50.0    0.00   -0.01    0.02   -0.19   -0.16   -0.46   -0.85   -1.25   -1.53   -1.67   -1.65   -1.57   -1.46   -1.35   -1.18   -0.89   -0.40    0.33    1.23
+    55.0    0.00   -0.05    0.01   -0.02   -0.18   -0.48   -0.87   -1.26   -1.52   -1.64   -1.61   -1.53   -1.46   -1.39   -1.27   -1.00   -0.46    0.31    1.29
+    60.0    0.00   -0.01   -0.12   -0.03   -0.19   -0.51   -0.90   -1.28   -1.53   -1.61   -1.57   -1.49   -1.42   -1.40   -1.34   -1.10   -0.56    0.27    1.30
+    65.0    0.00   -0.01   -0.11   -0.05   -0.22   -0.55   -0.93   -1.31   -1.54   -1.60   -1.53   -1.41   -1.36   -1.37   -1.35   -1.16   -0.65    0.20    1.26
+    70.0    0.00   -0.01   -0.10   -0.06   -0.24   -0.58   -0.97   -1.35   -1.58   -1.60   -1.50   -1.35   -1.29   -1.30   -1.32   -1.17   -0.71    0.14    1.21
+    75.0    0.00   -0.01   -0.02   -0.07   -0.26   -0.61   -1.02   -1.40   -1.63   -1.63   -1.48   -1.29   -1.19   -1.20   -1.24   -1.14   -0.71    0.11    1.18
+    80.0    0.00   -0.01   -0.02   -0.07   -0.27   -0.63   -1.06   -1.45   -1.68   -1.67   -1.48   -1.25   -1.10   -1.08   -1.13   -1.05   -0.66    0.14    1.21
+    85.0    0.00   -0.02   -0.01   -0.08   -0.29   -0.66   -1.10   -1.50   -1.74   -1.72   -1.51   -1.23   -1.03   -0.97   -0.99   -0.91   -0.54    0.25    1.31
+    90.0    0.00   -0.02   -0.02   -0.09   -0.29   -0.66   -1.13   -1.56   -1.80   -1.79   -1.55   -1.24   -0.98   -0.87   -0.84   -0.75   -0.36    0.44    1.52
+    95.0    0.00   -0.01   -0.01   -0.09   -0.30   -0.67   -1.15   -1.60   -1.86   -1.85   -1.62   -1.27   -0.96   -0.78   -0.70   -0.57   -0.15    0.69    1.81
+   100.0    0.00   -0.01   -0.02   -0.08   -0.29   -0.67   -1.17   -1.64   -1.92   -1.93   -1.70   -1.33   -0.97   -0.73   -0.60   -0.39    0.10    0.99    2.17
+   105.0    0.00   -0.02   -0.01   -0.07   -0.29   -0.68   -1.17   -1.66   -1.96   -2.00   -1.78   -1.40   -1.02   -0.72   -0.52   -0.24    0.32    1.29    2.56
+   110.0    0.00   -0.02   -0.01   -0.07   -0.28   -0.66   -1.17   -1.65   -1.99   -2.06   -1.87   -1.50   -1.09   -0.76   -0.49   -0.14    0.52    1.58    2.95
+   115.0    0.00   -0.01   -0.04   -0.05   -0.27   -0.65   -1.16   -1.66   -2.01   -2.11   -1.94   -1.58   -1.18   -0.82   -0.51   -0.09    0.66    1.82    3.28
+   120.0    0.00   -0.01   -0.04   -0.05   -0.26   -0.63   -1.13   -1.64   -2.01   -2.14   -1.98   -1.65   -1.27   -0.90   -0.56   -0.07    0.73    1.97    3.53
+   125.0    0.00   -0.01    0.01   -0.04   -0.23   -0.61   -1.10   -1.61   -2.00   -2.14   -2.01   -1.71   -1.33   -0.98   -0.62   -0.13    0.73    2.03    3.64
+   130.0    0.00   -0.01    0.01   -0.03   -0.22   -0.58   -1.07   -1.59   -1.98   -2.12   -2.02   -1.73   -1.37   -1.05   -0.71   -0.21    0.66    1.98    3.62
+   135.0    0.00   -0.01    0.02   -0.02   -0.20   -0.56   -1.05   -1.54   -1.92   -2.07   -1.97   -1.71   -1.39   -1.09   -0.79   -0.30    0.53    1.84    3.47
+   140.0    0.00   -0.01    0.02   -0.01   -0.19   -0.54   -1.00   -1.50   -1.86   -2.00   -1.91   -1.66   -1.36   -1.09   -0.82   -0.40    0.39    1.65    3.22
+   145.0    0.00   -0.01    0.04    0.01   -0.17   -0.51   -0.97   -1.44   -1.79   -1.91   -1.82   -1.57   -1.30   -1.06   -0.85   -0.47    0.24    1.41    2.91
+   150.0    0.00   -0.01    0.04    0.02   -0.16   -0.48   -0.93   -1.38   -1.72   -1.81   -1.70   -1.45   -1.20   -0.99   -0.81   -0.51    0.13    1.19    2.58
+   155.0    0.00    0.01    0.05    0.03   -0.14   -0.46   -0.89   -1.32   -1.62   -1.70   -1.57   -1.32   -1.06   -0.87   -0.73   -0.49    0.06    1.02    2.28
+   160.0    0.00    0.02    0.05    0.04   -0.11   -0.43   -0.85   -1.26   -1.53   -1.59   -1.44   -1.16   -0.90   -0.73   -0.62   -0.41    0.06    0.92    2.07
+   165.0    0.00    0.02    0.07    0.06   -0.10   -0.40   -0.80   -1.20   -1.44   -1.46   -1.29   -1.01   -0.73   -0.57   -0.46   -0.29    0.13    0.91    1.97
+   170.0    0.00    0.03    0.07    0.07   -0.07   -0.37   -0.75   -1.12   -1.35   -1.36   -1.15   -0.85   -0.57   -0.39   -0.29   -0.12    0.27    0.99    1.99
+   175.0    0.00    0.03    0.08    0.08   -0.04   -0.32   -0.69   -1.06   -1.26   -1.24   -1.04   -0.72   -0.42   -0.21   -0.09    0.08    0.47    1.18    2.13
+   180.0    0.00    0.03    0.09    0.11   -0.02   -0.29   -0.65   -0.98   -1.18   -1.14   -0.91   -0.58   -0.27   -0.05    0.10    0.30    0.69    1.40    2.37
+   185.0    0.00    0.04    0.11    0.12   -0.02   -0.25   -0.60   -0.92   -1.09   -1.05   -0.81   -0.47   -0.14    0.09    0.27    0.49    0.93    1.67    2.68
+   190.0    0.00    0.04    0.11    0.13    0.02   -0.22   -0.56   -0.86   -1.02   -0.97   -0.71   -0.37   -0.02    0.22    0.41    0.67    1.15    1.93    3.01
+   195.0    0.00    0.04    0.11    0.15    0.04   -0.19   -0.52   -0.81   -0.95   -0.89   -0.63   -0.27    0.07    0.32    0.53    0.81    1.32    2.17    3.31
+   200.0    0.00    0.05    0.12    0.16    0.07   -0.16   -0.47   -0.78   -0.91   -0.83   -0.56   -0.20    0.14    0.39    0.59    0.88    1.44    2.34    3.56
+   205.0    0.00    0.05    0.13    0.17    0.08   -0.14   -0.45   -0.73   -0.87   -0.77   -0.50   -0.13    0.19    0.42    0.61    0.91    1.48    2.44    3.73
+   210.0    0.00    0.05    0.14    0.18    0.11   -0.12   -0.43   -0.71   -0.83   -0.74   -0.45   -0.08    0.23    0.44    0.60    0.86    1.43    2.43    3.80
+   215.0    0.00    0.06    0.15    0.20    0.12   -0.11   -0.42   -0.69   -0.80   -0.71   -0.42   -0.05    0.25    0.42    0.53    0.76    1.34    2.37    3.79
+   220.0    0.00    0.06    0.15    0.20    0.13   -0.10   -0.41   -0.68   -0.80   -0.69   -0.38   -0.04    0.23    0.35    0.42    0.63    1.19    2.24    3.71
+   225.0    0.00    0.06    0.17    0.21    0.13   -0.09   -0.41   -0.68   -0.79   -0.69   -0.38   -0.06    0.18    0.26    0.28    0.44    1.00    2.08    3.57
+   230.0    0.00    0.06    0.17    0.22    0.14   -0.09   -0.41   -0.68   -0.81   -0.69   -0.41   -0.10    0.11    0.13    0.10    0.24    0.80    1.91    3.43
+   235.0    0.00    0.07    0.18    0.22    0.14   -0.10   -0.41   -0.70   -0.82   -0.72   -0.45   -0.18   -0.01   -0.02   -0.09    0.04    0.61    1.74    3.28
+   240.0    0.00    0.07    0.18    0.22    0.14   -0.09   -0.42   -0.72   -0.85   -0.76   -0.52   -0.27   -0.15   -0.20   -0.28   -0.16    0.43    1.61    3.16
+   245.0    0.00    0.07    0.18    0.23    0.14   -0.10   -0.43   -0.74   -0.88   -0.82   -0.62   -0.41   -0.32   -0.39   -0.47   -0.33    0.29    1.51    3.10
+   250.0    0.00    0.07    0.18    0.23    0.14   -0.11   -0.45   -0.76   -0.93   -0.90   -0.74   -0.57   -0.50   -0.57   -0.65   -0.47    0.21    1.45    3.05
+   255.0    0.00    0.08    0.18    0.22    0.14   -0.11   -0.47   -0.79   -0.99   -1.00   -0.87   -0.73   -0.69   -0.75   -0.80   -0.56    0.15    1.43    3.04
+   260.0    0.00    0.07    0.18    0.23    0.14   -0.12   -0.48   -0.82   -1.05   -1.10   -1.02   -0.92   -0.87   -0.90   -0.89   -0.61    0.15    1.44    3.04
+   265.0    0.00    0.07    0.18    0.22    0.13   -0.13   -0.50   -0.87   -1.13   -1.23   -1.18   -1.09   -1.04   -1.01   -0.94   -0.60    0.18    1.47    3.04
+   270.0    0.00    0.07    0.17    0.22    0.12   -0.15   -0.53   -0.92   -1.22   -1.36   -1.34   -1.25   -1.16   -1.09   -0.95   -0.55    0.25    1.50    3.01
+   275.0    0.00    0.08    0.17    0.22    0.11   -0.16   -0.56   -0.97   -1.32   -1.48   -1.49   -1.40   -1.26   -1.12   -0.89   -0.45    0.35    1.53    2.95
+   280.0    0.00    0.07    0.17    0.20    0.10   -0.18   -0.59   -1.04   -1.41   -1.60   -1.62   -1.50   -1.32   -1.09   -0.79   -0.31    0.46    1.55    2.86
+   285.0    0.00    0.07    0.16    0.19    0.09   -0.20   -0.63   -1.09   -1.50   -1.72   -1.73   -1.59   -1.33   -1.03   -0.65   -0.15    0.57    1.55    2.74
+   290.0    0.00    0.06    0.16    0.19    0.07   -0.23   -0.67   -1.16   -1.58   -1.81   -1.83   -1.64   -1.32   -0.92   -0.50    0.02    0.66    1.53    2.60
+   295.0    0.00    0.07    0.16    0.18    0.06   -0.25   -0.71   -1.23   -1.66   -1.89   -1.90   -1.66   -1.27   -0.81   -0.33    0.16    0.74    1.50    2.46
+   300.0    0.00    0.06    0.15    0.17    0.04   -0.28   -0.75   -1.29   -1.73   -1.97   -1.93   -1.64   -1.20   -0.69   -0.19    0.29    0.79    1.45    2.32
+   305.0    0.00    0.06    0.14    0.16    0.03   -0.30   -0.79   -1.34   -1.78   -2.02   -1.94   -1.63   -1.12   -0.57   -0.06    0.38    0.81    1.38    2.20
+   310.0    0.00    0.06    0.14    0.15    0.01   -0.33   -0.84   -1.38   -1.83   -2.03   -1.94   -1.58   -1.04   -0.47    0.03    0.41    0.78    1.30    2.11
+   315.0    0.00    0.06    0.14    0.14   -0.07   -0.36   -0.87   -1.42   -1.85   -2.04   -1.92   -1.53   -0.97   -0.40    0.06    0.39    0.71    1.18    2.04
+   320.0    0.00    0.05    0.13    0.13   -0.04   -0.38   -0.90   -1.44   -1.88   -2.03   -1.89   -1.47   -0.91   -0.36    0.05    0.32    0.58    1.04    1.96
+   325.0    0.00    0.06    0.12    0.11   -0.05   -0.41   -0.92   -1.46   -1.88   -2.02   -1.85   -1.41   -0.86   -0.34    0.01    0.21    0.41    0.88    1.89
+   330.0    0.00    0.05    0.12    0.11   -0.06   -0.42   -0.93   -1.47   -1.88   -2.00   -1.81   -1.35   -0.81   -0.35   -0.07    0.06    0.21    0.69    1.79
+   335.0    0.00    0.05    0.11    0.10   -0.07   -0.43   -0.95   -1.49   -1.87   -1.98   -1.76   -1.31   -0.79   -0.37   -0.17   -0.11   -0.01    0.47    1.65
+   340.0    0.00    0.04    0.10    0.10   -0.07   -0.44   -0.95   -1.49   -1.86   -1.95   -1.73   -1.28   -0.77   -0.40   -0.28   -0.29   -0.25    0.23    1.47
+   345.0    0.00    0.05    0.10    0.09   -0.08   -0.44   -0.97   -1.49   -1.85   -1.93   -1.70   -1.25   -0.76   -0.45   -0.36   -0.45   -0.46   -0.01    1.24
+   350.0    0.00    0.04    0.09    0.09   -0.08   -0.44   -0.97   -1.48   -1.84   -1.92   -1.68   -1.24   -0.77   -0.48   -0.45   -0.58   -0.64   -0.23    1.00
+   355.0    0.00    0.04    0.08    0.08   -0.08   -0.44   -0.95   -1.47   -1.84   -1.90   -1.66   -1.23   -0.78   -0.50   -0.49   -0.67   -0.78   -0.44    0.73
+   360.0    0.00    0.03    0.09    0.08   -0.08   -0.45   -0.95   -1.46   -1.82   -1.89   -1.67   -1.24   -0.80   -0.53   -0.52   -0.73   -0.87   -0.59    0.50
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+      0.19     -1.23     84.72                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.01   -0.04   -0.04   -0.02    0.02    0.00   -0.11   -0.30   -0.51   -0.58   -0.41    0.02    0.56    0.96    1.03    0.74    0.38    0.42
+     0.0    0.00   -0.13   -0.26   -0.36   -0.40   -0.34   -0.25   -0.18   -0.14   -0.12   -0.05    0.13    0.42    0.75    0.94    0.85    0.45    0.07    0.36
+     5.0    0.00   -0.14   -0.28   -0.38   -0.40   -0.36   -0.28   -0.22   -0.19   -0.17   -0.10    0.08    0.39    0.73    0.91    0.80    0.38   -0.03    0.22
+    10.0    0.00   -0.14   -0.28   -0.39   -0.42   -0.38   -0.32   -0.27   -0.25   -0.24   -0.18    0.03    0.36    0.71    0.90    0.78    0.34   -0.10    0.11
+    15.0    0.00   -0.14   -0.29   -0.39   -0.42   -0.40   -0.35   -0.32   -0.33   -0.33   -0.27   -0.05    0.31    0.70    0.91    0.78    0.33   -0.14    0.02
+    20.0    0.00   -0.15   -0.29   -0.40   -0.44   -0.41   -0.37   -0.37   -0.41   -0.45   -0.39   -0.15    0.24    0.67    0.92    0.80    0.34   -0.15   -0.04
+    25.0    0.00   -0.15   -0.30   -0.40   -0.44   -0.42   -0.40   -0.43   -0.50   -0.56   -0.52   -0.28    0.16    0.64    0.93    0.84    0.39   -0.11   -0.05
+    30.0    0.00   -0.15   -0.30   -0.39   -0.43   -0.42   -0.42   -0.48   -0.59   -0.70   -0.66   -0.41    0.06    0.59    0.92    0.88    0.46   -0.04    0.39
+    35.0    0.00   -0.15   -0.30   -0.39   -0.43   -0.41   -0.44   -0.52   -0.68   -0.81   -0.81   -0.56   -0.06    0.50    0.89    0.90    0.52    0.06    0.07
+    40.0    0.00   -0.15   -0.29   -0.39   -0.42   -0.42   -0.44   -0.56   -0.75   -0.93   -0.95   -0.71   -0.19    0.41    0.84    0.90    0.57    0.15    0.16
+    45.0    0.00   -0.15   -0.28   -0.38   -0.41   -0.40   -0.45   -0.58   -0.81   -1.03   -1.07   -0.85   -0.33    0.29    0.76    0.88    0.61    0.24    0.23
+    50.0    0.00   -0.14   -0.27   -0.36   -0.38   -0.39   -0.44   -0.60   -0.85   -1.10   -1.18   -0.97   -0.47    0.16    0.65    0.81    0.60    0.29    0.28
+    55.0    0.00   -0.14   -0.26   -0.34   -0.37   -0.37   -0.42   -0.59   -0.87   -1.15   -1.26   -1.08   -0.58    0.04    0.54    0.72    0.56    0.29    0.28
+    60.0    0.00   -0.13   -0.25   -0.33   -0.34   -0.33   -0.39   -0.58   -0.88   -1.17   -1.31   -1.14   -0.69   -0.08    0.41    0.60    0.45    0.23    0.25
+    65.0    0.00   -0.12   -0.23   -0.29   -0.32   -0.31   -0.37   -0.55   -0.87   -1.18   -1.32   -1.18   -0.75   -0.17    0.30    0.45    0.33    0.14    0.16
+    70.0    0.00   -0.11   -0.22   -0.28   -0.27   -0.27   -0.33   -0.53   -0.84   -1.16   -1.32   -1.19   -0.78   -0.23    0.20    0.32    0.18    0.71    0.06
+    75.0    0.00   -0.10   -0.20   -0.24   -0.24   -0.23   -0.29   -0.49   -0.80   -1.12   -1.29   -1.17   -0.77   -0.25    0.13    0.22    0.04   -0.14   -0.05
+    80.0    0.00   -0.09   -0.17   -0.22   -0.20   -0.19   -0.24   -0.43   -0.75   -1.07   -1.22   -1.10   -0.72   -0.24    0.10    0.14   -0.07   -0.26   -0.14
+    85.0    0.00   -0.08   -0.16   -0.19   -0.16   -0.14   -0.19   -0.37   -0.68   -0.99   -1.15   -1.03   -0.65   -0.19    0.10    0.10   -0.15   -0.34   -0.18
+    90.0    0.00   -0.07   -0.14   -0.15   -0.12   -0.09   -0.13   -0.31   -0.62   -0.92   -1.06   -0.93   -0.55   -0.11    0.17    0.13   -0.16   -0.36   -0.16
+    95.0    0.00   -0.06   -0.11   -0.12   -0.07   -0.04   -0.07   -0.25   -0.54   -0.83   -0.97   -0.82   -0.44    0.01    0.27    0.21   -0.10   -0.31   -0.05
+   100.0    0.00   -0.05   -0.08   -0.09   -0.03    0.02   -0.01   -0.17   -0.47   -0.74   -0.87   -0.72   -0.32    0.13    0.41    0.35    0.04   -0.17    0.14
+   105.0    0.00   -0.04   -0.06   -0.05    0.01    0.08    0.06   -0.11   -0.38   -0.66   -0.78   -0.63   -0.21    0.28    0.58    0.53    0.22    0.02    0.39
+   110.0    0.00   -0.03   -0.03   -0.02    0.06    0.13    0.11   -0.03   -0.31   -0.59   -0.70   -0.53   -0.09    0.42    0.76    0.74    0.44    0.26    0.67
+   115.0    0.00   -0.01   -0.01    0.02    0.10    0.18    0.17    0.03   -0.24   -0.50   -0.62   -0.44    0.01    0.56    0.93    0.96    0.70    0.53    0.97
+   120.0    0.00   -0.03    0.01    0.06    0.14    0.22    0.23    0.08   -0.18   -0.44   -0.55   -0.36    0.10    0.68    1.10    1.17    0.94    0.77    1.23
+   125.0    0.00    0.02    0.03    0.09    0.17    0.26    0.27    0.14   -0.12   -0.39   -0.49   -0.30    0.18    0.78    1.24    1.35    1.16    0.99    1.41
+   130.0    0.00    0.03    0.05    0.12    0.21    0.30    0.30    0.18   -0.08   -0.34   -0.45   -0.25    0.24    0.86    1.36    1.50    1.33    1.13    1.53
+   135.0    0.00    0.04    0.08    0.15    0.24    0.33    0.33    0.21   -0.03   -0.29   -0.40   -0.20    0.29    0.93    1.45    1.61    1.43    1.21    1.54
+   140.0    0.00    0.05    0.10    0.17    0.27    0.34    0.35    0.23   -0.02   -0.26   -0.36   -0.17    0.33    0.97    1.49    1.68    1.48    1.21    1.46
+   145.0    0.00    0.06    0.12    0.19    0.28    0.36    0.36    0.24    0.63   -0.24   -0.33   -0.14    0.35    0.99    1.52    1.69    1.48    1.15    1.31
+   150.0    0.00    0.06    0.13    0.21    0.30    0.38    0.37    0.25    0.01   -0.22   -0.31   -0.12    0.37    0.99    1.52    1.68    1.45    1.05    1.08
+   155.0    0.00    0.08    0.14    0.23    0.31    0.39    0.37    0.24    0.01   -0.22   -0.30   -0.10    0.36    0.98    1.49    1.65    1.38    0.92    0.84
+   160.0    0.00    0.09    0.16    0.25    0.32    0.39    0.37    0.23    0.01   -0.21   -0.29   -0.11    0.35    0.95    1.45    1.60    1.31    0.79    0.60
+   165.0    0.00    0.09    0.18    0.25    0.34    0.39    0.37    0.22    0.01   -0.22   -0.30   -0.12    0.32    0.91    1.40    1.55    1.25    0.69    0.40
+   170.0    0.00    0.10    0.19    0.27    0.35    0.39    0.36    0.22    0.60   -0.22   -0.31   -0.15    0.29    0.86    1.34    1.50    1.20    0.62    0.26
+   175.0    0.00    0.11    0.19    0.28    0.35    0.39    0.36    0.23    0.60   -0.23   -0.32   -0.18    0.23    0.80    1.29    1.45    1.17    0.59    0.18
+   180.0    0.00    0.12    0.20    0.28    0.35    0.40    0.36    0.23   -0.01   -0.24   -0.34   -0.21    0.19    0.74    1.23    1.41    1.16    0.59    0.18
+   185.0    0.00    0.11    0.21    0.29    0.36    0.40    0.37    0.22    0.62   -0.24   -0.36   -0.25    0.13    0.67    1.17    1.37    1.16    0.62    0.23
+   190.0    0.00    0.12    0.21    0.29    0.37    0.40    0.37    0.23    0.64   -0.25   -0.38   -0.29    0.08    0.61    1.11    1.33    1.13    0.65    0.30
+   195.0    0.00    0.12    0.21    0.28    0.36    0.40    0.37    0.24    0.66   -0.25   -0.40   -0.32    0.03    0.55    1.04    1.28    1.11    0.68    0.39
+   200.0    0.00    0.12    0.21    0.29    0.35    0.40    0.36    0.24   -0.01   -0.26   -0.42   -0.35   -0.02    0.49    0.98    1.19    1.06    0.67    0.45
+   205.0    0.00    0.13    0.21    0.29    0.35    0.38    0.36    0.22   -0.01   -0.28   -0.44   -0.37   -0.05    0.44    0.89    1.11    0.97    0.63    0.49
+   210.0    0.00    0.12    0.21    0.27    0.34    0.37    0.35    0.21   -0.02   -0.29   -0.45   -0.38   -0.08    0.39    0.82    0.99    0.85    0.54    0.47
+   215.0    0.00    0.12    0.20    0.27    0.32    0.36    0.33    0.19   -0.05   -0.31   -0.47   -0.40   -0.10    0.35    0.73    0.87    0.70    0.43    0.43
+   220.0    0.00    0.11    0.19    0.25    0.30    0.34    0.30    0.16   -0.08   -0.33   -0.48   -0.42   -0.12    0.30    0.65    0.75    0.55    0.29    0.33
+   225.0    0.00    0.11    0.18    0.23    0.28    0.31    0.27    0.12   -0.10   -0.35   -0.50   -0.44   -0.14    0.26    0.57    0.63    0.40    0.14    0.22
+   230.0    0.00    0.11    0.17    0.22    0.27    0.28    0.24    0.09   -0.14   -0.39   -0.53   -0.46   -0.17    0.22    0.50    0.52    0.27    0.01    0.09
+   235.0    0.00    0.10    0.16    0.21    0.24    0.26    0.21    0.06   -0.18   -0.43   -0.57   -0.50   -0.21    0.18    0.44    0.44    0.17   -0.09   -0.01
+   240.0    0.00    0.10    0.15    0.18    0.22    0.23    0.18    0.03   -0.22   -0.48   -0.61   -0.53   -0.24    0.13    0.40    0.38    0.12   -0.14   -0.10
+   245.0    0.00    0.09    0.14    0.17    0.19    0.20    0.15    0.73   -0.25   -0.51   -0.66   -0.58   -0.29    0.10    0.37    0.38    0.13   -0.13   -0.13
+   250.0    0.00    0.08    0.12    0.15    0.17    0.18    0.13   -0.03   -0.29   -0.55   -0.70   -0.62   -0.32    0.08    0.37    0.40    0.18   -0.09   -0.14
+   255.0    0.00    0.07    0.11    0.13    0.16    0.17    0.11   -0.05   -0.30   -0.58   -0.74   -0.67   -0.36    0.06    0.41    0.47    0.26    0.49   -0.10
+   260.0    0.00    0.07    0.09    0.11    0.13    0.15    0.10   -0.06   -0.33   -0.60   -0.77   -0.69   -0.37    0.08    0.46    0.56    0.38    0.11   -0.05
+   265.0    0.00    0.06    0.08    0.10    0.12    0.13    0.09   -0.07   -0.33   -0.62   -0.80   -0.72   -0.38    0.11    0.54    0.68    0.53    0.22    0.01
+   270.0    0.00    0.05    0.06    0.07    0.10    0.12    0.07   -0.07   -0.34   -0.64   -0.80   -0.72   -0.35    0.18    0.64    0.82    0.66    0.33    0.07
+   275.0    0.00    0.03    0.04    0.05    0.08    0.11    0.07   -0.09   -0.35   -0.64   -0.80   -0.69   -0.29    0.28    0.76    0.95    0.77    0.40    0.10
+   280.0    0.00    0.03    0.03    0.03    0.06    0.09    0.06   -0.08   -0.35   -0.63   -0.78   -0.66   -0.22    0.38    0.90    1.08    0.87    0.43    0.12
+   285.0    0.00    0.01    0.16    0.01    0.04    0.07    0.04   -0.10   -0.34   -0.61   -0.74   -0.59   -0.11    0.52    1.05    1.21    0.93    0.43    0.12
+   290.0    0.00    0.07   -0.01   -0.01    0.01    0.05    0.03   -0.10   -0.34   -0.60   -0.70   -0.51    0.49    0.66    1.19    1.31    0.97    0.41    0.10
+   295.0    0.00    0.07   -0.03   -0.04   -0.01    0.03    0.01   -0.11   -0.34   -0.57   -0.65   -0.42    0.12    0.80    1.32    1.40    0.99    0.36    0.08
+   300.0    0.00   -0.02   -0.05   -0.06   -0.04    0.40   -0.01   -0.12   -0.33   -0.54   -0.58   -0.32    0.24    0.93    1.44    1.47    0.98    0.30    0.07
+   305.0    0.00   -0.03   -0.07   -0.09   -0.08   -0.03   -0.04   -0.14   -0.32   -0.50   -0.50   -0.22    0.35    1.04    1.52    1.51    0.96    0.25    0.07
+   310.0    0.00   -0.04   -0.09   -0.12   -0.10   -0.06   -0.06   -0.15   -0.30   -0.45   -0.43   -0.14    0.44    1.12    1.57    1.53    0.95    0.23    0.12
+   315.0    0.00   -0.05   -0.11   -0.15   -0.14   -0.09   -0.08   -0.14   -0.28   -0.40   -0.36   -0.06    0.52    1.17    1.59    1.52    0.94    0.22    0.20
+   320.0    0.00   -0.06   -0.14   -0.18   -0.18   -0.13   -0.10   -0.14   -0.24   -0.34   -0.29    0.02    0.56    1.19    1.58    1.50    0.92    0.24    0.29
+   325.0    0.00   -0.07   -0.16   -0.20   -0.20   -0.16   -0.12   -0.14   -0.21   -0.28   -0.22    0.07    0.58    1.16    1.53    1.44    0.90    0.27    0.40
+   330.0    0.00   -0.09   -0.17   -0.23   -0.23   -0.19   -0.14   -0.13   -0.18   -0.22   -0.16    0.11    0.57    1.12    1.45    1.38    0.87    0.31    0.50
+   335.0    0.00   -0.10   -0.20   -0.26   -0.27   -0.22   -0.15   -0.12   -0.15   -0.17   -0.11    0.13    0.57    1.04    1.36    1.30    0.83    0.33    0.59
+   340.0    0.00   -0.11   -0.21   -0.28   -0.29   -0.24   -0.17   -0.12   -0.12   -0.13   -0.06    0.16    0.53    0.98    1.26    1.20    0.77    0.33    0.64
+   345.0    0.00   -0.11   -0.22   -0.31   -0.32   -0.27   -0.19   -0.11   -0.10   -0.10   -0.04    0.16    0.50    0.90    1.16    1.10    0.70    0.31    0.62
+   350.0    0.00   -0.11   -0.24   -0.32   -0.35   -0.29   -0.21   -0.13   -0.10   -0.08   -0.03    0.16    0.48    0.84    1.06    1.00    0.62    0.24    0.57
+   355.0    0.00   -0.12   -0.25   -0.34   -0.37   -0.32   -0.23   -0.15   -0.10   -0.09   -0.03    0.16    0.45    0.78    1.00    0.92    0.54    0.17    0.49
+   360.0    0.00   -0.13   -0.26   -0.36   -0.40   -0.34   -0.25   -0.18   -0.14   -0.12   -0.05    0.13    0.42    0.75    0.94    0.85    0.45    0.07    0.36
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+LEIGS12         NONE                                        TYPE / SERIAL NO    
+COPIED              Geo++ GmbH              10    18-MAY-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     4                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+COPIED FROM LEIATX1230+GNSS NONE                            COMMENT             
+ATTENTION! COPIED WITHOUT VERIFICATION BY CALIBRATION!      COMMENT             
+   G01                                                      START OF FREQUENCY  
+     -1.28      1.28     87.18                              NORTH / EAST / UP   
+   NOAZI    0.00    0.04    0.11    0.13    0.01   -0.27   -0.65   -1.02   -1.23   -1.22   -1.03   -0.76   -0.52   -0.39   -0.28   -0.05    0.46    1.30    2.35
+     0.0    0.00    0.08    0.21    0.27    0.15   -0.19   -0.67   -1.13   -1.39   -1.33   -0.99   -0.50   -0.09    0.09    0.03   -0.11   -0.05    0.47    1.60
+     5.0    0.00    0.08    0.21    0.27    0.16   -0.17   -0.65   -1.11   -1.37   -1.32   -0.98   -0.50   -0.08    0.12    0.08   -0.05    0.00    0.47    1.49
+    10.0    0.00    0.08    0.21    0.27    0.16   -0.16   -0.63   -1.09   -1.35   -1.31   -0.98   -0.51   -0.09    0.13    0.12    0.04    0.10    0.52    1.41
+    15.0    0.00    0.08    0.20    0.27    0.17   -0.15   -0.61   -1.06   -1.32   -1.29   -0.99   -0.54   -0.12    0.11    0.16    0.13    0.22    0.62    1.38
+    20.0    0.00    0.07    0.20    0.27    0.17   -0.13   -0.58   -1.02   -1.29   -1.28   -1.00   -0.58   -0.18    0.08    0.17    0.21    0.36    0.75    1.41
+    25.0    0.00    0.07    0.19    0.26    0.17   -0.12   -0.55   -0.98   -1.24   -1.25   -1.00   -0.62   -0.25    0.01    0.15    0.26    0.48    0.90    1.47
+    30.0    0.00    0.07    0.19    0.25    0.16   -0.11   -0.53   -0.93   -1.19   -1.21   -1.01   -0.67   -0.34   -0.09    0.09    0.28    0.59    1.05    1.57
+    35.0    0.00    0.07    0.18    0.24    0.16   -0.11   -0.50   -0.89   -1.14   -1.17   -1.00   -0.72   -0.43   -0.21   -0.01    0.25    0.65    1.18    1.69
+    40.0    0.00    0.06    0.17    0.23    0.14   -0.11   -0.48   -0.85   -1.08   -1.12   -0.98   -0.75   -0.53   -0.34   -0.13    0.18    0.67    1.28    1.80
+    45.0    0.00    0.06    0.16    0.21    0.13   -0.12   -0.47   -0.81   -1.03   -1.07   -0.95   -0.77   -0.60   -0.46   -0.27    0.08    0.64    1.33    1.91
+    50.0    0.00    0.05    0.15    0.19    0.10   -0.14   -0.47   -0.79   -0.98   -1.01   -0.91   -0.77   -0.66   -0.57   -0.40   -0.05    0.56    1.33    1.98
+    55.0    0.00    0.05    0.13    0.17    0.08   -0.16   -0.48   -0.78   -0.95   -0.97   -0.87   -0.75   -0.68   -0.64   -0.52   -0.18    0.46    1.28    2.02
+    60.0    0.00    0.04    0.12    0.15    0.05   -0.19   -0.50   -0.78   -0.93   -0.93   -0.83   -0.72   -0.68   -0.68   -0.61   -0.30    0.34    1.21    2.03
+    65.0    0.00    0.04    0.11    0.12    0.01   -0.23   -0.53   -0.80   -0.93   -0.91   -0.79   -0.67   -0.64   -0.68   -0.65   -0.38    0.23    1.12    2.01
+    70.0    0.00    0.04    0.10    0.10   -0.02   -0.27   -0.57   -0.83   -0.95   -0.90   -0.76   -0.62   -0.59   -0.63   -0.64   -0.43    0.14    1.04    2.00
+    75.0    0.00    0.03    0.08    0.08   -0.05   -0.31   -0.62   -0.88   -0.99   -0.92   -0.74   -0.57   -0.51   -0.56   -0.59   -0.42    0.11    0.99    1.99
+    80.0    0.00    0.03    0.07    0.06   -0.08   -0.35   -0.67   -0.93   -1.04   -0.95   -0.74   -0.54   -0.44   -0.46   -0.50   -0.36    0.13    0.99    2.03
+    85.0    0.00    0.02    0.06    0.04   -0.11   -0.39   -0.72   -0.99   -1.10   -1.00   -0.77   -0.52   -0.38   -0.36   -0.38   -0.25    0.20    1.05    2.11
+    90.0    0.00    0.02    0.05    0.02   -0.13   -0.42   -0.77   -1.06   -1.17   -1.07   -0.81   -0.53   -0.33   -0.27   -0.26   -0.12    0.33    1.17    2.25
+    95.0    0.00    0.02    0.05    0.01   -0.15   -0.45   -0.81   -1.11   -1.24   -1.14   -0.88   -0.56   -0.32   -0.20   -0.14    0.03    0.49    1.34    2.45
+   100.0    0.00    0.02    0.04    0.01   -0.16   -0.47   -0.85   -1.17   -1.31   -1.23   -0.96   -0.62   -0.33   -0.16   -0.05    0.17    0.67    1.54    2.68
+   105.0    0.00    0.01    0.04    0.00   -0.17   -0.49   -0.87   -1.21   -1.38   -1.31   -1.05   -0.70   -0.38   -0.16    0.01    0.28    0.83    1.74    2.92
+   110.0    0.00    0.01    0.04    0.00   -0.17   -0.49   -0.89   -1.24   -1.43   -1.39   -1.15   -0.80   -0.46   -0.20    0.02    0.35    0.96    1.92    3.15
+   115.0    0.00    0.01    0.04    0.01   -0.17   -0.49   -0.90   -1.27   -1.48   -1.46   -1.24   -0.90   -0.56   -0.28   -0.02    0.36    1.03    2.05    3.33
+   120.0    0.00    0.01    0.04    0.01   -0.16   -0.48   -0.90   -1.28   -1.51   -1.52   -1.31   -0.99   -0.66   -0.38   -0.10    0.32    1.03    2.11    3.44
+   125.0    0.00    0.01    0.05    0.02   -0.14   -0.47   -0.89   -1.28   -1.53   -1.56   -1.37   -1.07   -0.76   -0.49   -0.21    0.21    0.96    2.08    3.45
+   130.0    0.00    0.01    0.05    0.03   -0.13   -0.45   -0.87   -1.28   -1.54   -1.58   -1.41   -1.13   -0.84   -0.60   -0.35    0.07    0.82    1.96    3.36
+   135.0    0.00    0.01    0.06    0.04   -0.11   -0.43   -0.86   -1.26   -1.53   -1.57   -1.42   -1.16   -0.90   -0.70   -0.49   -0.10    0.63    1.77    3.18
+   140.0    0.00    0.01    0.06    0.05   -0.09   -0.41   -0.83   -1.24   -1.51   -1.55   -1.41   -1.16   -0.93   -0.77   -0.61   -0.28    0.41    1.53    2.93
+   145.0    0.00    0.01    0.07    0.07   -0.07   -0.39   -0.81   -1.21   -1.47   -1.51   -1.37   -1.13   -0.94   -0.82   -0.72   -0.45    0.19    1.26    2.63
+   150.0    0.00    0.01    0.07    0.08   -0.06   -0.36   -0.78   -1.18   -1.43   -1.46   -1.31   -1.08   -0.91   -0.83   -0.79   -0.58   -0.01    1.01    2.32
+   155.0    0.00    0.01    0.08    0.09   -0.04   -0.34   -0.75   -1.14   -1.38   -1.39   -1.23   -1.01   -0.85   -0.81   -0.82   -0.67   -0.16    0.80    2.05
+   160.0    0.00    0.02    0.08    0.10   -0.02   -0.32   -0.72   -1.10   -1.32   -1.32   -1.15   -0.92   -0.77   -0.76   -0.80   -0.70   -0.24    0.65    1.84
+   165.0    0.00    0.02    0.09    0.11   -0.01   -0.30   -0.69   -1.06   -1.26   -1.24   -1.05   -0.82   -0.68   -0.69   -0.75   -0.67   -0.25    0.59    1.71
+   170.0    0.00    0.02    0.09    0.12    0.00   -0.28   -0.66   -1.01   -1.20   -1.17   -0.96   -0.72   -0.58   -0.59   -0.66   -0.59   -0.19    0.62    1.69
+   175.0    0.00    0.02    0.09    0.12    0.01   -0.26   -0.63   -0.97   -1.14   -1.09   -0.88   -0.63   -0.48   -0.48   -0.54   -0.46   -0.06    0.74    1.77
+   180.0    0.00    0.02    0.09    0.13    0.02   -0.25   -0.61   -0.93   -1.09   -1.02   -0.79   -0.54   -0.39   -0.37   -0.41   -0.31    0.11    0.91    1.92
+   185.0    0.00    0.02    0.10    0.13    0.02   -0.24   -0.59   -0.90   -1.04   -0.96   -0.72   -0.46   -0.30   -0.27   -0.28   -0.15    0.31    1.13    2.14
+   190.0    0.00    0.02    0.10    0.13    0.02   -0.23   -0.58   -0.87   -1.00   -0.91   -0.66   -0.39   -0.21   -0.17   -0.16    0.01    0.51    1.35    2.37
+   195.0    0.00    0.02    0.09    0.13    0.02   -0.23   -0.57   -0.85   -0.96   -0.86   -0.60   -0.32   -0.14   -0.09   -0.05    0.15    0.68    1.56    2.60
+   200.0    0.00    0.02    0.09    0.12    0.02   -0.23   -0.56   -0.84   -0.94   -0.82   -0.56   -0.27   -0.09   -0.02    0.02    0.24    0.81    1.72    2.78
+   205.0    0.00    0.02    0.09    0.12    0.01   -0.24   -0.56   -0.83   -0.92   -0.79   -0.52   -0.23   -0.05    0.01    0.06    0.30    0.88    1.82    2.91
+   210.0    0.00    0.02    0.09    0.11    0.01   -0.24   -0.56   -0.82   -0.90   -0.77   -0.49   -0.20   -0.03    0.03    0.07    0.30    0.89    1.85    2.96
+   215.0    0.00    0.02    0.09    0.11    0.00   -0.25   -0.56   -0.82   -0.89   -0.76   -0.48   -0.19   -0.03    0.01    0.03    0.25    0.84    1.82    2.95
+   220.0    0.00    0.02    0.08    0.10    0.00   -0.25   -0.56   -0.81   -0.89   -0.75   -0.47   -0.20   -0.05   -0.05   -0.05    0.16    0.75    1.73    2.88
+   225.0    0.00    0.02    0.08    0.10   -0.01   -0.25   -0.56   -0.81   -0.88   -0.75   -0.48   -0.23   -0.11   -0.13   -0.16    0.03    0.62    1.61    2.77
+   230.0    0.00    0.02    0.08    0.10   -0.01   -0.25   -0.56   -0.80   -0.88   -0.75   -0.51   -0.28   -0.19   -0.25   -0.30   -0.12    0.47    1.48    2.66
+   235.0    0.00    0.02    0.08    0.09   -0.01   -0.25   -0.55   -0.80   -0.88   -0.77   -0.55   -0.36   -0.30   -0.38   -0.46   -0.28    0.32    1.36    2.55
+   240.0    0.00    0.02    0.08    0.09   -0.01   -0.24   -0.54   -0.79   -0.89   -0.80   -0.61   -0.45   -0.43   -0.54   -0.62   -0.44    0.19    1.27    2.48
+   245.0    0.00    0.02    0.08    0.10    0.00   -0.23   -0.53   -0.79   -0.90   -0.84   -0.69   -0.57   -0.58   -0.70   -0.77   -0.57    0.09    1.21    2.46
+   250.0    0.00    0.02    0.08    0.10    0.00   -0.23   -0.52   -0.79   -0.92   -0.90   -0.78   -0.70   -0.72   -0.85   -0.91   -0.67    0.04    1.19    2.48
+   255.0    0.00    0.03    0.08    0.10    0.01   -0.22   -0.52   -0.80   -0.96   -0.97   -0.89   -0.83   -0.86   -0.97   -1.01   -0.73    0.02    1.22    2.55
+   260.0    0.00    0.03    0.09    0.11    0.02   -0.21   -0.52   -0.81   -1.00   -1.05   -1.00   -0.96   -0.99   -1.07   -1.06   -0.74    0.05    1.28    2.65
+   265.0    0.00    0.03    0.09    0.11    0.02   -0.20   -0.52   -0.84   -1.06   -1.14   -1.12   -1.08   -1.09   -1.12   -1.06   -0.70    0.12    1.37    2.76
+   270.0    0.00    0.03    0.10    0.12    0.03   -0.20   -0.54   -0.88   -1.13   -1.24   -1.23   -1.18   -1.15   -1.13   -1.01   -0.61    0.22    1.47    2.87
+   275.0    0.00    0.04    0.10    0.13    0.04   -0.20   -0.56   -0.92   -1.21   -1.34   -1.34   -1.26   -1.17   -1.09   -0.91   -0.48    0.35    1.57    2.96
+   280.0    0.00    0.04    0.11    0.13    0.04   -0.21   -0.58   -0.98   -1.29   -1.44   -1.43   -1.31   -1.16   -1.00   -0.77   -0.31    0.49    1.67    3.02
+   285.0    0.00    0.04    0.11    0.14    0.05   -0.22   -0.61   -1.03   -1.37   -1.53   -1.50   -1.33   -1.11   -0.88   -0.59   -0.13    0.63    1.74    3.04
+   290.0    0.00    0.04    0.12    0.15    0.05   -0.23   -0.64   -1.09   -1.44   -1.60   -1.55   -1.33   -1.04   -0.73   -0.41    0.05    0.76    1.79    3.03
+   295.0    0.00    0.05    0.13    0.16    0.05   -0.24   -0.67   -1.14   -1.51   -1.66   -1.58   -1.30   -0.94   -0.58   -0.22    0.21    0.86    1.81    2.99
+   300.0    0.00    0.05    0.13    0.17    0.05   -0.25   -0.70   -1.19   -1.56   -1.70   -1.58   -1.25   -0.84   -0.43   -0.06    0.35    0.93    1.80    2.92
+   305.0    0.00    0.05    0.14    0.17    0.06   -0.25   -0.72   -1.22   -1.59   -1.72   -1.56   -1.19   -0.73   -0.29    0.08    0.45    0.97    1.77    2.84
+   310.0    0.00    0.06    0.15    0.18    0.06   -0.26   -0.74   -1.24   -1.61   -1.71   -1.53   -1.12   -0.63   -0.18    0.17    0.50    0.96    1.71    2.76
+   315.0    0.00    0.06    0.16    0.19    0.07   -0.26   -0.75   -1.25   -1.61   -1.69   -1.47   -1.04   -0.53   -0.10    0.21    0.49    0.91    1.62    2.68
+   320.0    0.00    0.06    0.16    0.20    0.07   -0.26   -0.75   -1.25   -1.60   -1.65   -1.41   -0.96   -0.46   -0.05    0.22    0.44    0.81    1.51    2.59
+   325.0    0.00    0.07    0.17    0.21    0.08   -0.26   -0.75   -1.24   -1.57   -1.61   -1.34   -0.88   -0.39   -0.02    0.19    0.36    0.69    1.38    2.50
+   330.0    0.00    0.07    0.18    0.22    0.09   -0.25   -0.74   -1.23   -1.54   -1.55   -1.27   -0.80   -0.33   -0.01    0.14    0.25    0.54    1.23    2.41
+   335.0    0.00    0.07    0.18    0.23    0.10   -0.24   -0.73   -1.21   -1.51   -1.50   -1.20   -0.73   -0.28    0.00    0.09    0.13    0.38    1.07    2.30
+   340.0    0.00    0.07    0.19    0.24    0.11   -0.23   -0.72   -1.20   -1.48   -1.45   -1.13   -0.66   -0.23    0.00    0.03    0.02    0.22    0.91    2.17
+   345.0    0.00    0.08    0.20    0.25    0.12   -0.22   -0.71   -1.18   -1.45   -1.41   -1.08   -0.60   -0.19    0.01    0.00   -0.07    0.09    0.76    2.03
+   350.0    0.00    0.08    0.20    0.26    0.13   -0.21   -0.70   -1.16   -1.43   -1.38   -1.04   -0.56   -0.15    0.03   -0.02   -0.12    0.00    0.63    1.88
+   355.0    0.00    0.08    0.20    0.26    0.14   -0.20   -0.68   -1.15   -1.41   -1.35   -1.00   -0.52   -0.12    0.06    0.00   -0.13   -0.05    0.53    1.73
+   360.0    0.00    0.08    0.21    0.27    0.15   -0.19   -0.67   -1.13   -1.39   -1.33   -0.99   -0.50   -0.09    0.09    0.03   -0.11   -0.05    0.47    1.60
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.19     -1.23     84.72                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.02   -0.08   -0.14   -0.21   -0.29   -0.43   -0.65   -0.91   -1.11   -1.12   -0.85   -0.32    0.28    0.69    0.71    0.36   -0.02    0.10
+     0.0    0.00   -0.10   -0.21   -0.32   -0.41   -0.48   -0.56   -0.65   -0.71   -0.70   -0.54   -0.21    0.25    0.71    0.97    0.87    0.43    0.00    0.28
+     5.0    0.00   -0.10   -0.21   -0.32   -0.41   -0.49   -0.57   -0.66   -0.72   -0.71   -0.55   -0.21    0.26    0.73    0.98    0.87    0.42   -0.04    0.17
+    10.0    0.00   -0.10   -0.21   -0.32   -0.41   -0.49   -0.58   -0.67   -0.74   -0.73   -0.57   -0.22    0.26    0.74    1.00    0.89    0.42   -0.08    0.05
+    15.0    0.00   -0.10   -0.21   -0.32   -0.41   -0.50   -0.59   -0.69   -0.77   -0.76   -0.60   -0.25    0.25    0.75    1.02    0.91    0.43   -0.11   -0.08
+    20.0    0.00   -0.10   -0.21   -0.32   -0.42   -0.50   -0.60   -0.71   -0.80   -0.82   -0.66   -0.30    0.22    0.74    1.04    0.93    0.44   -0.14   -0.20
+    25.0    0.00   -0.10   -0.21   -0.32   -0.42   -0.51   -0.61   -0.74   -0.85   -0.88   -0.74   -0.38    0.16    0.71    1.04    0.95    0.46   -0.15   -0.31
+    30.0    0.00   -0.10   -0.21   -0.32   -0.42   -0.51   -0.62   -0.77   -0.91   -0.97   -0.84   -0.48    0.08    0.66    1.01    0.95    0.47   -0.16   -0.39
+    35.0    0.00   -0.09   -0.21   -0.32   -0.42   -0.51   -0.64   -0.80   -0.97   -1.06   -0.96   -0.61   -0.04    0.57    0.96    0.93    0.47   -0.16   -0.45
+    40.0    0.00   -0.09   -0.21   -0.32   -0.42   -0.52   -0.65   -0.84   -1.04   -1.17   -1.10   -0.76   -0.18    0.45    0.87    0.88    0.44   -0.17   -0.49
+    45.0    0.00   -0.09   -0.20   -0.32   -0.42   -0.52   -0.67   -0.87   -1.11   -1.28   -1.24   -0.92   -0.34    0.30    0.75    0.79    0.39   -0.19   -0.52
+    50.0    0.00   -0.08   -0.20   -0.31   -0.41   -0.52   -0.68   -0.91   -1.17   -1.38   -1.38   -1.08   -0.51    0.14    0.60    0.66    0.30   -0.24   -0.55
+    55.0    0.00   -0.08   -0.19   -0.30   -0.41   -0.52   -0.68   -0.93   -1.23   -1.47   -1.51   -1.24   -0.68   -0.03    0.44    0.51    0.18   -0.32   -0.59
+    60.0    0.00   -0.07   -0.18   -0.30   -0.40   -0.51   -0.68   -0.95   -1.28   -1.55   -1.62   -1.37   -0.84   -0.20    0.26    0.34    0.02   -0.43   -0.63
+    65.0    0.00   -0.07   -0.17   -0.28   -0.39   -0.50   -0.68   -0.95   -1.30   -1.61   -1.70   -1.48   -0.97   -0.35    0.10    0.16   -0.15   -0.56   -0.69
+    70.0    0.00   -0.06   -0.16   -0.27   -0.37   -0.48   -0.66   -0.95   -1.31   -1.64   -1.76   -1.56   -1.07   -0.47   -0.04   -0.01   -0.33   -0.71   -0.75
+    75.0    0.00   -0.05   -0.15   -0.25   -0.35   -0.46   -0.64   -0.93   -1.30   -1.64   -1.78   -1.60   -1.12   -0.54   -0.15   -0.14   -0.49   -0.85   -0.82
+    80.0    0.00   -0.04   -0.13   -0.23   -0.32   -0.43   -0.60   -0.89   -1.27   -1.62   -1.76   -1.59   -1.13   -0.57   -0.21   -0.24   -0.61   -0.97   -0.87
+    85.0    0.00   -0.04   -0.12   -0.21   -0.29   -0.39   -0.56   -0.84   -1.22   -1.57   -1.72   -1.56   -1.10   -0.56   -0.22   -0.28   -0.69   -1.05   -0.89
+    90.0    0.00   -0.03   -0.10   -0.19   -0.26   -0.35   -0.51   -0.79   -1.16   -1.51   -1.66   -1.49   -1.03   -0.49   -0.17   -0.26   -0.70   -1.08   -0.87
+    95.0    0.00   -0.02   -0.08   -0.16   -0.22   -0.30   -0.45   -0.73   -1.09   -1.43   -1.57   -1.39   -0.93   -0.38   -0.07   -0.18   -0.65   -1.05   -0.80
+   100.0    0.00   -0.01   -0.06   -0.13   -0.18   -0.25   -0.40   -0.66   -1.02   -1.34   -1.47   -1.28   -0.80   -0.25    0.08   -0.04   -0.53   -0.95   -0.67
+   105.0    0.00    0.00   -0.04   -0.10   -0.14   -0.20   -0.34   -0.60   -0.94   -1.26   -1.38   -1.17   -0.67   -0.09    0.26    0.14   -0.36   -0.80   -0.49
+   110.0    0.00    0.01   -0.02   -0.07   -0.10   -0.16   -0.29   -0.53   -0.87   -1.18   -1.28   -1.05   -0.52    0.08    0.45    0.35   -0.16   -0.60   -0.26
+   115.0    0.00    0.02    0.00   -0.03   -0.06   -0.11   -0.24   -0.48   -0.81   -1.10   -1.19   -0.94   -0.39    0.25    0.64    0.56    0.07   -0.37   -0.01
+   120.0    0.00    0.03    0.02    0.00   -0.02   -0.07   -0.19   -0.44   -0.76   -1.04   -1.11   -0.84   -0.27    0.39    0.82    0.77    0.30   -0.14    0.24
+   125.0    0.00    0.04    0.04    0.03    0.01   -0.03   -0.16   -0.40   -0.72   -0.99   -1.04   -0.76   -0.17    0.52    0.97    0.95    0.50    0.08    0.47
+   130.0    0.00    0.05    0.06    0.06    0.05    0.00   -0.13   -0.37   -0.69   -0.95   -0.99   -0.69   -0.08    0.61    1.09    1.09    0.67    0.26    0.67
+   135.0    0.00    0.05    0.08    0.09    0.08    0.03   -0.11   -0.35   -0.66   -0.91   -0.94   -0.63   -0.03    0.68    1.17    1.19    0.79    0.40    0.81
+   140.0    0.00    0.06    0.10    0.11    0.11    0.05   -0.09   -0.34   -0.65   -0.89   -0.91   -0.60    0.01    0.71    1.20    1.25    0.87    0.49    0.89
+   145.0    0.00    0.07    0.11    0.13    0.13    0.07   -0.08   -0.33   -0.63   -0.87   -0.88   -0.57    0.02    0.71    1.20    1.26    0.91    0.53    0.91
+   150.0    0.00    0.07    0.12    0.15    0.15    0.09   -0.07   -0.32   -0.62   -0.85   -0.86   -0.56    0.02    0.69    1.17    1.24    0.91    0.54    0.86
+   155.0    0.00    0.08    0.13    0.17    0.16    0.10   -0.06   -0.32   -0.62   -0.84   -0.84   -0.55    0.00    0.65    1.12    1.21    0.89    0.52    0.77
+   160.0    0.00    0.08    0.14    0.18    0.17    0.10   -0.06   -0.32   -0.61   -0.82   -0.83   -0.56   -0.03    0.60    1.06    1.16    0.87    0.49    0.65
+   165.0    0.00    0.08    0.15    0.18    0.18    0.10   -0.06   -0.32   -0.60   -0.82   -0.83   -0.57   -0.06    0.54    1.00    1.12    0.85    0.46    0.53
+   170.0    0.00    0.09    0.15    0.19    0.18    0.10   -0.07   -0.32   -0.60   -0.81   -0.83   -0.59   -0.10    0.48    0.94    1.08    0.84    0.44    0.41
+   175.0    0.00    0.09    0.15    0.18    0.17    0.09   -0.08   -0.32   -0.60   -0.81   -0.84   -0.61   -0.15    0.42    0.89    1.05    0.84    0.44    0.31
+   180.0    0.00    0.09    0.15    0.18    0.16    0.08   -0.09   -0.33   -0.61   -0.82   -0.85   -0.64   -0.19    0.37    0.84    1.03    0.86    0.46    0.25
+   185.0    0.00    0.08    0.14    0.17    0.15    0.06   -0.10   -0.35   -0.62   -0.83   -0.87   -0.67   -0.23    0.32    0.80    1.01    0.87    0.48    0.22
+   190.0    0.00    0.08    0.13    0.15    0.13    0.04   -0.13   -0.37   -0.64   -0.85   -0.89   -0.70   -0.27    0.28    0.76    0.99    0.87    0.50    0.21
+   195.0    0.00    0.08    0.12    0.13    0.10    0.01   -0.15   -0.39   -0.66   -0.87   -0.92   -0.73   -0.31    0.23    0.72    0.96    0.86    0.51    0.22
+   200.0    0.00    0.07    0.11    0.11    0.07   -0.02   -0.19   -0.42   -0.69   -0.90   -0.95   -0.77   -0.35    0.19    0.67    0.90    0.82    0.49    0.23
+   205.0    0.00    0.07    0.09    0.09    0.04   -0.06   -0.22   -0.46   -0.72   -0.94   -0.99   -0.80   -0.39    0.14    0.60    0.83    0.74    0.45    0.23
+   210.0    0.00    0.06    0.08    0.06    0.01   -0.10   -0.26   -0.50   -0.76   -0.98   -1.03   -0.84   -0.43    0.08    0.53    0.72    0.63    0.36    0.21
+   215.0    0.00    0.05    0.06    0.03   -0.03   -0.13   -0.30   -0.54   -0.81   -1.02   -1.07   -0.89   -0.48    0.02    0.43    0.60    0.48    0.25    0.17
+   220.0    0.00    0.04    0.04    0.00   -0.07   -0.17   -0.34   -0.58   -0.85   -1.07   -1.12   -0.94   -0.54   -0.05    0.33    0.46    0.32    0.11    0.10
+   225.0    0.00    0.04    0.02   -0.03   -0.10   -0.21   -0.38   -0.62   -0.89   -1.11   -1.17   -1.00   -0.60   -0.13    0.22    0.32    0.16   -0.04    0.01
+   230.0    0.00    0.03    0.00   -0.06   -0.13   -0.24   -0.41   -0.65   -0.93   -1.16   -1.23   -1.06   -0.67   -0.21    0.12    0.18    0.00   -0.19   -0.09
+   235.0    0.00    0.02   -0.02   -0.08   -0.16   -0.27   -0.44   -0.68   -0.97   -1.22   -1.30   -1.13   -0.75   -0.29    0.02    0.06   -0.14   -0.32   -0.19
+   240.0    0.00    0.01   -0.03   -0.11   -0.19   -0.30   -0.46   -0.71   -1.01   -1.27   -1.36   -1.20   -0.82   -0.37   -0.05   -0.03   -0.24   -0.42   -0.28
+   245.0    0.00    0.00   -0.05   -0.13   -0.22   -0.32   -0.48   -0.73   -1.04   -1.32   -1.43   -1.28   -0.89   -0.43   -0.11   -0.08   -0.29   -0.48   -0.34
+   250.0    0.00   -0.01   -0.07   -0.15   -0.24   -0.34   -0.50   -0.75   -1.08   -1.37   -1.49   -1.34   -0.95   -0.46   -0.13   -0.09   -0.31   -0.51   -0.38
+   255.0    0.00   -0.02   -0.09   -0.17   -0.25   -0.35   -0.51   -0.77   -1.10   -1.41   -1.55   -1.40   -0.99   -0.48   -0.11   -0.06   -0.28   -0.49   -0.38
+   260.0    0.00   -0.02   -0.10   -0.19   -0.27   -0.36   -0.52   -0.78   -1.13   -1.45   -1.59   -1.43   -1.00   -0.46   -0.06    0.00   -0.22   -0.45   -0.36
+   265.0    0.00   -0.03   -0.11   -0.20   -0.28   -0.37   -0.52   -0.79   -1.14   -1.47   -1.62   -1.45   -0.99   -0.41    0.02    0.10   -0.13   -0.39   -0.31
+   270.0    0.00   -0.04   -0.13   -0.22   -0.29   -0.37   -0.53   -0.79   -1.15   -1.49   -1.62   -1.44   -0.94   -0.33    0.13    0.22   -0.03   -0.32   -0.25
+   275.0    0.00   -0.05   -0.14   -0.23   -0.30   -0.38   -0.53   -0.80   -1.16   -1.49   -1.61   -1.39   -0.86   -0.21    0.26    0.35    0.06   -0.26   -0.19
+   280.0    0.00   -0.05   -0.15   -0.24   -0.31   -0.38   -0.53   -0.79   -1.15   -1.47   -1.57   -1.33   -0.76   -0.08    0.41    0.48    0.16   -0.21   -0.12
+   285.0    0.00   -0.06   -0.16   -0.25   -0.31   -0.39   -0.53   -0.79   -1.13   -1.43   -1.51   -1.23   -0.63    0.08    0.57    0.61    0.23   -0.18   -0.07
+   290.0    0.00   -0.07   -0.16   -0.25   -0.32   -0.39   -0.53   -0.78   -1.11   -1.39   -1.43   -1.12   -0.49    0.23    0.72    0.72    0.29   -0.16   -0.03
+   295.0    0.00   -0.07   -0.17   -0.26   -0.32   -0.39   -0.53   -0.77   -1.08   -1.33   -1.34   -0.99   -0.34    0.39    0.86    0.82    0.34   -0.16    0.01
+   300.0    0.00   -0.08   -0.18   -0.27   -0.33   -0.40   -0.53   -0.75   -1.04   -1.26   -1.24   -0.86   -0.20    0.53    0.98    0.90    0.37   -0.16    0.03
+   305.0    0.00   -0.08   -0.18   -0.27   -0.34   -0.40   -0.53   -0.74   -1.00   -1.18   -1.13   -0.74   -0.07    0.65    1.07    0.97    0.39   -0.17    0.06
+   310.0    0.00   -0.08   -0.19   -0.28   -0.34   -0.41   -0.52   -0.72   -0.95   -1.11   -1.03   -0.63    0.04    0.74    1.14    1.01    0.41   -0.16    0.10
+   315.0    0.00   -0.09   -0.19   -0.28   -0.35   -0.41   -0.52   -0.70   -0.91   -1.03   -0.93   -0.53    0.13    0.80    1.18    1.03    0.43   -0.15    0.15
+   320.0    0.00   -0.09   -0.20   -0.29   -0.36   -0.42   -0.52   -0.68   -0.86   -0.96   -0.85   -0.44    0.19    0.84    1.19    1.04    0.44   -0.12    0.20
+   325.0    0.00   -0.09   -0.20   -0.29   -0.36   -0.43   -0.52   -0.67   -0.82   -0.90   -0.77   -0.38    0.23    0.84    1.18    1.03    0.46   -0.08    0.27
+   330.0    0.00   -0.10   -0.20   -0.30   -0.37   -0.44   -0.53   -0.65   -0.79   -0.84   -0.71   -0.33    0.24    0.83    1.15    1.01    0.47   -0.04    0.33
+   335.0    0.00   -0.10   -0.21   -0.30   -0.38   -0.45   -0.53   -0.64   -0.76   -0.80   -0.66   -0.30    0.25    0.80    1.11    0.99    0.48    0.01    0.39
+   340.0    0.00   -0.10   -0.21   -0.30   -0.38   -0.45   -0.54   -0.64   -0.74   -0.76   -0.62   -0.27    0.24    0.77    1.07    0.96    0.48    0.04    0.43
+   345.0    0.00   -0.10   -0.21   -0.31   -0.39   -0.46   -0.54   -0.63   -0.72   -0.73   -0.59   -0.25    0.24    0.74    1.03    0.93    0.47    0.06    0.44
+   350.0    0.00   -0.10   -0.21   -0.31   -0.40   -0.47   -0.55   -0.63   -0.71   -0.71   -0.57   -0.24    0.24    0.72    0.99    0.90    0.46    0.05    0.42
+   355.0    0.00   -0.10   -0.21   -0.31   -0.40   -0.48   -0.55   -0.64   -0.70   -0.70   -0.55   -0.22    0.24    0.71    0.98    0.88    0.45    0.04    0.37
+   360.0    0.00   -0.10   -0.21   -0.32   -0.41   -0.48   -0.56   -0.65   -0.71   -0.70   -0.54   -0.21    0.25    0.71    0.97    0.87    0.43    0.00    0.28
+   G02                                                      END OF FREQUENCY    
+   R01                                                      START OF FREQUENCY  
+     -1.28      1.28     87.18                              NORTH / EAST / UP   
+   NOAZI    0.00    0.03    0.08    0.08   -0.06   -0.38   -0.80   -1.22   -1.52   -1.58   -1.43   -1.16   -0.85   -0.62   -0.45   -0.21    0.24    1.02    2.14
+     0.0    0.00    0.03    0.09    0.08   -0.08   -0.45   -0.95   -1.46   -1.82   -1.89   -1.67   -1.24   -0.80   -0.53   -0.52   -0.73   -0.87   -0.59    0.50
+     5.0    0.00    0.03    0.08    0.07   -0.08   -0.44   -0.93   -1.44   -1.80   -1.88   -1.68   -1.27   -0.83   -0.55   -0.54   -0.73   -0.89   -0.67    0.31
+    10.0    0.00    0.03    0.08    0.07   -0.10   -0.43   -0.92   -1.42   -1.79   -1.88   -1.69   -1.31   -0.88   -0.59   -0.55   -0.70   -0.85   -0.68    0.18
+    15.0    0.00    0.03    0.06    0.06   -0.09   -0.43   -0.90   -1.40   -1.76   -1.87   -1.71   -1.36   -0.94   -0.66   -0.56   -0.66   -0.77   -0.61    0.13
+    20.0    0.00    0.01    0.06    0.06   -0.09   -0.41   -0.88   -1.36   -1.74   -1.86   -1.73   -1.41   -1.02   -0.72   -0.58   -0.62   -0.66   -0.49    0.18
+    25.0    0.00    0.01    0.05    0.05   -0.10   -0.41   -0.86   -1.33   -1.70   -1.85   -1.74   -1.46   -1.10   -0.80   -0.64   -0.59   -0.55   -0.32    0.30
+    30.0    0.00    0.01    0.05    0.04   -0.11   -0.41   -0.85   -1.30   -1.66   -1.82   -1.75   -1.51   -1.20   -0.91   -0.71   -0.58   -0.44   -0.14    0.49
+    35.0    0.00    0.01    0.04    0.03   -0.11   -0.41   -0.83   -1.27   -1.63   -1.79   -1.74   -1.56   -1.28   -1.03   -0.82   -0.62   -0.37    0.03    0.70
+    40.0    0.00   -0.06    0.03    0.03   -0.13   -0.42   -0.83   -1.25   -1.59   -1.75   -1.72   -1.58   -1.37   -1.16   -0.94   -0.68   -0.33    0.18    0.91
+    45.0    0.00   -0.06    0.03    0.01   -0.14   -0.44   -0.83   -1.25   -1.56   -1.71   -1.69   -1.58   -1.42   -1.26   -1.07   -0.77   -0.34    0.29    1.10
+    50.0    0.00   -0.01    0.02   -0.19   -0.16   -0.46   -0.85   -1.25   -1.53   -1.67   -1.65   -1.57   -1.46   -1.35   -1.18   -0.89   -0.40    0.33    1.23
+    55.0    0.00   -0.05    0.01   -0.02   -0.18   -0.48   -0.87   -1.26   -1.52   -1.64   -1.61   -1.53   -1.46   -1.39   -1.27   -1.00   -0.46    0.31    1.29
+    60.0    0.00   -0.01   -0.12   -0.03   -0.19   -0.51   -0.90   -1.28   -1.53   -1.61   -1.57   -1.49   -1.42   -1.40   -1.34   -1.10   -0.56    0.27    1.30
+    65.0    0.00   -0.01   -0.11   -0.05   -0.22   -0.55   -0.93   -1.31   -1.54   -1.60   -1.53   -1.41   -1.36   -1.37   -1.35   -1.16   -0.65    0.20    1.26
+    70.0    0.00   -0.01   -0.10   -0.06   -0.24   -0.58   -0.97   -1.35   -1.58   -1.60   -1.50   -1.35   -1.29   -1.30   -1.32   -1.17   -0.71    0.14    1.21
+    75.0    0.00   -0.01   -0.02   -0.07   -0.26   -0.61   -1.02   -1.40   -1.63   -1.63   -1.48   -1.29   -1.19   -1.20   -1.24   -1.14   -0.71    0.11    1.18
+    80.0    0.00   -0.01   -0.02   -0.07   -0.27   -0.63   -1.06   -1.45   -1.68   -1.67   -1.48   -1.25   -1.10   -1.08   -1.13   -1.05   -0.66    0.14    1.21
+    85.0    0.00   -0.02   -0.01   -0.08   -0.29   -0.66   -1.10   -1.50   -1.74   -1.72   -1.51   -1.23   -1.03   -0.97   -0.99   -0.91   -0.54    0.25    1.31
+    90.0    0.00   -0.02   -0.02   -0.09   -0.29   -0.66   -1.13   -1.56   -1.80   -1.79   -1.55   -1.24   -0.98   -0.87   -0.84   -0.75   -0.36    0.44    1.52
+    95.0    0.00   -0.01   -0.01   -0.09   -0.30   -0.67   -1.15   -1.60   -1.86   -1.85   -1.62   -1.27   -0.96   -0.78   -0.70   -0.57   -0.15    0.69    1.81
+   100.0    0.00   -0.01   -0.02   -0.08   -0.29   -0.67   -1.17   -1.64   -1.92   -1.93   -1.70   -1.33   -0.97   -0.73   -0.60   -0.39    0.10    0.99    2.17
+   105.0    0.00   -0.02   -0.01   -0.07   -0.29   -0.68   -1.17   -1.66   -1.96   -2.00   -1.78   -1.40   -1.02   -0.72   -0.52   -0.24    0.32    1.29    2.56
+   110.0    0.00   -0.02   -0.01   -0.07   -0.28   -0.66   -1.17   -1.65   -1.99   -2.06   -1.87   -1.50   -1.09   -0.76   -0.49   -0.14    0.52    1.58    2.95
+   115.0    0.00   -0.01   -0.04   -0.05   -0.27   -0.65   -1.16   -1.66   -2.01   -2.11   -1.94   -1.58   -1.18   -0.82   -0.51   -0.09    0.66    1.82    3.28
+   120.0    0.00   -0.01   -0.04   -0.05   -0.26   -0.63   -1.13   -1.64   -2.01   -2.14   -1.98   -1.65   -1.27   -0.90   -0.56   -0.07    0.73    1.97    3.53
+   125.0    0.00   -0.01    0.01   -0.04   -0.23   -0.61   -1.10   -1.61   -2.00   -2.14   -2.01   -1.71   -1.33   -0.98   -0.62   -0.13    0.73    2.03    3.64
+   130.0    0.00   -0.01    0.01   -0.03   -0.22   -0.58   -1.07   -1.59   -1.98   -2.12   -2.02   -1.73   -1.37   -1.05   -0.71   -0.21    0.66    1.98    3.62
+   135.0    0.00   -0.01    0.02   -0.02   -0.20   -0.56   -1.05   -1.54   -1.92   -2.07   -1.97   -1.71   -1.39   -1.09   -0.79   -0.30    0.53    1.84    3.47
+   140.0    0.00   -0.01    0.02   -0.01   -0.19   -0.54   -1.00   -1.50   -1.86   -2.00   -1.91   -1.66   -1.36   -1.09   -0.82   -0.40    0.39    1.65    3.22
+   145.0    0.00   -0.01    0.04    0.01   -0.17   -0.51   -0.97   -1.44   -1.79   -1.91   -1.82   -1.57   -1.30   -1.06   -0.85   -0.47    0.24    1.41    2.91
+   150.0    0.00   -0.01    0.04    0.02   -0.16   -0.48   -0.93   -1.38   -1.72   -1.81   -1.70   -1.45   -1.20   -0.99   -0.81   -0.51    0.13    1.19    2.58
+   155.0    0.00    0.01    0.05    0.03   -0.14   -0.46   -0.89   -1.32   -1.62   -1.70   -1.57   -1.32   -1.06   -0.87   -0.73   -0.49    0.06    1.02    2.28
+   160.0    0.00    0.02    0.05    0.04   -0.11   -0.43   -0.85   -1.26   -1.53   -1.59   -1.44   -1.16   -0.90   -0.73   -0.62   -0.41    0.06    0.92    2.07
+   165.0    0.00    0.02    0.07    0.06   -0.10   -0.40   -0.80   -1.20   -1.44   -1.46   -1.29   -1.01   -0.73   -0.57   -0.46   -0.29    0.13    0.91    1.97
+   170.0    0.00    0.03    0.07    0.07   -0.07   -0.37   -0.75   -1.12   -1.35   -1.36   -1.15   -0.85   -0.57   -0.39   -0.29   -0.12    0.27    0.99    1.99
+   175.0    0.00    0.03    0.08    0.08   -0.04   -0.32   -0.69   -1.06   -1.26   -1.24   -1.04   -0.72   -0.42   -0.21   -0.09    0.08    0.47    1.18    2.13
+   180.0    0.00    0.03    0.09    0.11   -0.02   -0.29   -0.65   -0.98   -1.18   -1.14   -0.91   -0.58   -0.27   -0.05    0.10    0.30    0.69    1.40    2.37
+   185.0    0.00    0.04    0.11    0.12   -0.02   -0.25   -0.60   -0.92   -1.09   -1.05   -0.81   -0.47   -0.14    0.09    0.27    0.49    0.93    1.67    2.68
+   190.0    0.00    0.04    0.11    0.13    0.02   -0.22   -0.56   -0.86   -1.02   -0.97   -0.71   -0.37   -0.02    0.22    0.41    0.67    1.15    1.93    3.01
+   195.0    0.00    0.04    0.11    0.15    0.04   -0.19   -0.52   -0.81   -0.95   -0.89   -0.63   -0.27    0.07    0.32    0.53    0.81    1.32    2.17    3.31
+   200.0    0.00    0.05    0.12    0.16    0.07   -0.16   -0.47   -0.78   -0.91   -0.83   -0.56   -0.20    0.14    0.39    0.59    0.88    1.44    2.34    3.56
+   205.0    0.00    0.05    0.13    0.17    0.08   -0.14   -0.45   -0.73   -0.87   -0.77   -0.50   -0.13    0.19    0.42    0.61    0.91    1.48    2.44    3.73
+   210.0    0.00    0.05    0.14    0.18    0.11   -0.12   -0.43   -0.71   -0.83   -0.74   -0.45   -0.08    0.23    0.44    0.60    0.86    1.43    2.43    3.80
+   215.0    0.00    0.06    0.15    0.20    0.12   -0.11   -0.42   -0.69   -0.80   -0.71   -0.42   -0.05    0.25    0.42    0.53    0.76    1.34    2.37    3.79
+   220.0    0.00    0.06    0.15    0.20    0.13   -0.10   -0.41   -0.68   -0.80   -0.69   -0.38   -0.04    0.23    0.35    0.42    0.63    1.19    2.24    3.71
+   225.0    0.00    0.06    0.17    0.21    0.13   -0.09   -0.41   -0.68   -0.79   -0.69   -0.38   -0.06    0.18    0.26    0.28    0.44    1.00    2.08    3.57
+   230.0    0.00    0.06    0.17    0.22    0.14   -0.09   -0.41   -0.68   -0.81   -0.69   -0.41   -0.10    0.11    0.13    0.10    0.24    0.80    1.91    3.43
+   235.0    0.00    0.07    0.18    0.22    0.14   -0.10   -0.41   -0.70   -0.82   -0.72   -0.45   -0.18   -0.01   -0.02   -0.09    0.04    0.61    1.74    3.28
+   240.0    0.00    0.07    0.18    0.22    0.14   -0.09   -0.42   -0.72   -0.85   -0.76   -0.52   -0.27   -0.15   -0.20   -0.28   -0.16    0.43    1.61    3.16
+   245.0    0.00    0.07    0.18    0.23    0.14   -0.10   -0.43   -0.74   -0.88   -0.82   -0.62   -0.41   -0.32   -0.39   -0.47   -0.33    0.29    1.51    3.10
+   250.0    0.00    0.07    0.18    0.23    0.14   -0.11   -0.45   -0.76   -0.93   -0.90   -0.74   -0.57   -0.50   -0.57   -0.65   -0.47    0.21    1.45    3.05
+   255.0    0.00    0.08    0.18    0.22    0.14   -0.11   -0.47   -0.79   -0.99   -1.00   -0.87   -0.73   -0.69   -0.75   -0.80   -0.56    0.15    1.43    3.04
+   260.0    0.00    0.07    0.18    0.23    0.14   -0.12   -0.48   -0.82   -1.05   -1.10   -1.02   -0.92   -0.87   -0.90   -0.89   -0.61    0.15    1.44    3.04
+   265.0    0.00    0.07    0.18    0.22    0.13   -0.13   -0.50   -0.87   -1.13   -1.23   -1.18   -1.09   -1.04   -1.01   -0.94   -0.60    0.18    1.47    3.04
+   270.0    0.00    0.07    0.17    0.22    0.12   -0.15   -0.53   -0.92   -1.22   -1.36   -1.34   -1.25   -1.16   -1.09   -0.95   -0.55    0.25    1.50    3.01
+   275.0    0.00    0.08    0.17    0.22    0.11   -0.16   -0.56   -0.97   -1.32   -1.48   -1.49   -1.40   -1.26   -1.12   -0.89   -0.45    0.35    1.53    2.95
+   280.0    0.00    0.07    0.17    0.20    0.10   -0.18   -0.59   -1.04   -1.41   -1.60   -1.62   -1.50   -1.32   -1.09   -0.79   -0.31    0.46    1.55    2.86
+   285.0    0.00    0.07    0.16    0.19    0.09   -0.20   -0.63   -1.09   -1.50   -1.72   -1.73   -1.59   -1.33   -1.03   -0.65   -0.15    0.57    1.55    2.74
+   290.0    0.00    0.06    0.16    0.19    0.07   -0.23   -0.67   -1.16   -1.58   -1.81   -1.83   -1.64   -1.32   -0.92   -0.50    0.02    0.66    1.53    2.60
+   295.0    0.00    0.07    0.16    0.18    0.06   -0.25   -0.71   -1.23   -1.66   -1.89   -1.90   -1.66   -1.27   -0.81   -0.33    0.16    0.74    1.50    2.46
+   300.0    0.00    0.06    0.15    0.17    0.04   -0.28   -0.75   -1.29   -1.73   -1.97   -1.93   -1.64   -1.20   -0.69   -0.19    0.29    0.79    1.45    2.32
+   305.0    0.00    0.06    0.14    0.16    0.03   -0.30   -0.79   -1.34   -1.78   -2.02   -1.94   -1.63   -1.12   -0.57   -0.06    0.38    0.81    1.38    2.20
+   310.0    0.00    0.06    0.14    0.15    0.01   -0.33   -0.84   -1.38   -1.83   -2.03   -1.94   -1.58   -1.04   -0.47    0.03    0.41    0.78    1.30    2.11
+   315.0    0.00    0.06    0.14    0.14   -0.07   -0.36   -0.87   -1.42   -1.85   -2.04   -1.92   -1.53   -0.97   -0.40    0.06    0.39    0.71    1.18    2.04
+   320.0    0.00    0.05    0.13    0.13   -0.04   -0.38   -0.90   -1.44   -1.88   -2.03   -1.89   -1.47   -0.91   -0.36    0.05    0.32    0.58    1.04    1.96
+   325.0    0.00    0.06    0.12    0.11   -0.05   -0.41   -0.92   -1.46   -1.88   -2.02   -1.85   -1.41   -0.86   -0.34    0.01    0.21    0.41    0.88    1.89
+   330.0    0.00    0.05    0.12    0.11   -0.06   -0.42   -0.93   -1.47   -1.88   -2.00   -1.81   -1.35   -0.81   -0.35   -0.07    0.06    0.21    0.69    1.79
+   335.0    0.00    0.05    0.11    0.10   -0.07   -0.43   -0.95   -1.49   -1.87   -1.98   -1.76   -1.31   -0.79   -0.37   -0.17   -0.11   -0.01    0.47    1.65
+   340.0    0.00    0.04    0.10    0.10   -0.07   -0.44   -0.95   -1.49   -1.86   -1.95   -1.73   -1.28   -0.77   -0.40   -0.28   -0.29   -0.25    0.23    1.47
+   345.0    0.00    0.05    0.10    0.09   -0.08   -0.44   -0.97   -1.49   -1.85   -1.93   -1.70   -1.25   -0.76   -0.45   -0.36   -0.45   -0.46   -0.01    1.24
+   350.0    0.00    0.04    0.09    0.09   -0.08   -0.44   -0.97   -1.48   -1.84   -1.92   -1.68   -1.24   -0.77   -0.48   -0.45   -0.58   -0.64   -0.23    1.00
+   355.0    0.00    0.04    0.08    0.08   -0.08   -0.44   -0.95   -1.47   -1.84   -1.90   -1.66   -1.23   -0.78   -0.50   -0.49   -0.67   -0.78   -0.44    0.73
+   360.0    0.00    0.03    0.09    0.08   -0.08   -0.45   -0.95   -1.46   -1.82   -1.89   -1.67   -1.24   -0.80   -0.53   -0.52   -0.73   -0.87   -0.59    0.50
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+      0.19     -1.23     84.72                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.01   -0.04   -0.04   -0.02    0.02    0.00   -0.11   -0.30   -0.51   -0.58   -0.41    0.02    0.56    0.96    1.03    0.74    0.38    0.42
+     0.0    0.00   -0.13   -0.26   -0.36   -0.40   -0.34   -0.25   -0.18   -0.14   -0.12   -0.05    0.13    0.42    0.75    0.94    0.85    0.45    0.07    0.36
+     5.0    0.00   -0.14   -0.28   -0.38   -0.40   -0.36   -0.28   -0.22   -0.19   -0.17   -0.10    0.08    0.39    0.73    0.91    0.80    0.38   -0.03    0.22
+    10.0    0.00   -0.14   -0.28   -0.39   -0.42   -0.38   -0.32   -0.27   -0.25   -0.24   -0.18    0.03    0.36    0.71    0.90    0.78    0.34   -0.10    0.11
+    15.0    0.00   -0.14   -0.29   -0.39   -0.42   -0.40   -0.35   -0.32   -0.33   -0.33   -0.27   -0.05    0.31    0.70    0.91    0.78    0.33   -0.14    0.02
+    20.0    0.00   -0.15   -0.29   -0.40   -0.44   -0.41   -0.37   -0.37   -0.41   -0.45   -0.39   -0.15    0.24    0.67    0.92    0.80    0.34   -0.15   -0.04
+    25.0    0.00   -0.15   -0.30   -0.40   -0.44   -0.42   -0.40   -0.43   -0.50   -0.56   -0.52   -0.28    0.16    0.64    0.93    0.84    0.39   -0.11   -0.05
+    30.0    0.00   -0.15   -0.30   -0.39   -0.43   -0.42   -0.42   -0.48   -0.59   -0.70   -0.66   -0.41    0.06    0.59    0.92    0.88    0.46   -0.04    0.39
+    35.0    0.00   -0.15   -0.30   -0.39   -0.43   -0.41   -0.44   -0.52   -0.68   -0.81   -0.81   -0.56   -0.06    0.50    0.89    0.90    0.52    0.06    0.07
+    40.0    0.00   -0.15   -0.29   -0.39   -0.42   -0.42   -0.44   -0.56   -0.75   -0.93   -0.95   -0.71   -0.19    0.41    0.84    0.90    0.57    0.15    0.16
+    45.0    0.00   -0.15   -0.28   -0.38   -0.41   -0.40   -0.45   -0.58   -0.81   -1.03   -1.07   -0.85   -0.33    0.29    0.76    0.88    0.61    0.24    0.23
+    50.0    0.00   -0.14   -0.27   -0.36   -0.38   -0.39   -0.44   -0.60   -0.85   -1.10   -1.18   -0.97   -0.47    0.16    0.65    0.81    0.60    0.29    0.28
+    55.0    0.00   -0.14   -0.26   -0.34   -0.37   -0.37   -0.42   -0.59   -0.87   -1.15   -1.26   -1.08   -0.58    0.04    0.54    0.72    0.56    0.29    0.28
+    60.0    0.00   -0.13   -0.25   -0.33   -0.34   -0.33   -0.39   -0.58   -0.88   -1.17   -1.31   -1.14   -0.69   -0.08    0.41    0.60    0.45    0.23    0.25
+    65.0    0.00   -0.12   -0.23   -0.29   -0.32   -0.31   -0.37   -0.55   -0.87   -1.18   -1.32   -1.18   -0.75   -0.17    0.30    0.45    0.33    0.14    0.16
+    70.0    0.00   -0.11   -0.22   -0.28   -0.27   -0.27   -0.33   -0.53   -0.84   -1.16   -1.32   -1.19   -0.78   -0.23    0.20    0.32    0.18    0.71    0.06
+    75.0    0.00   -0.10   -0.20   -0.24   -0.24   -0.23   -0.29   -0.49   -0.80   -1.12   -1.29   -1.17   -0.77   -0.25    0.13    0.22    0.04   -0.14   -0.05
+    80.0    0.00   -0.09   -0.17   -0.22   -0.20   -0.19   -0.24   -0.43   -0.75   -1.07   -1.22   -1.10   -0.72   -0.24    0.10    0.14   -0.07   -0.26   -0.14
+    85.0    0.00   -0.08   -0.16   -0.19   -0.16   -0.14   -0.19   -0.37   -0.68   -0.99   -1.15   -1.03   -0.65   -0.19    0.10    0.10   -0.15   -0.34   -0.18
+    90.0    0.00   -0.07   -0.14   -0.15   -0.12   -0.09   -0.13   -0.31   -0.62   -0.92   -1.06   -0.93   -0.55   -0.11    0.17    0.13   -0.16   -0.36   -0.16
+    95.0    0.00   -0.06   -0.11   -0.12   -0.07   -0.04   -0.07   -0.25   -0.54   -0.83   -0.97   -0.82   -0.44    0.01    0.27    0.21   -0.10   -0.31   -0.05
+   100.0    0.00   -0.05   -0.08   -0.09   -0.03    0.02   -0.01   -0.17   -0.47   -0.74   -0.87   -0.72   -0.32    0.13    0.41    0.35    0.04   -0.17    0.14
+   105.0    0.00   -0.04   -0.06   -0.05    0.01    0.08    0.06   -0.11   -0.38   -0.66   -0.78   -0.63   -0.21    0.28    0.58    0.53    0.22    0.02    0.39
+   110.0    0.00   -0.03   -0.03   -0.02    0.06    0.13    0.11   -0.03   -0.31   -0.59   -0.70   -0.53   -0.09    0.42    0.76    0.74    0.44    0.26    0.67
+   115.0    0.00   -0.01   -0.01    0.02    0.10    0.18    0.17    0.03   -0.24   -0.50   -0.62   -0.44    0.01    0.56    0.93    0.96    0.70    0.53    0.97
+   120.0    0.00   -0.03    0.01    0.06    0.14    0.22    0.23    0.08   -0.18   -0.44   -0.55   -0.36    0.10    0.68    1.10    1.17    0.94    0.77    1.23
+   125.0    0.00    0.02    0.03    0.09    0.17    0.26    0.27    0.14   -0.12   -0.39   -0.49   -0.30    0.18    0.78    1.24    1.35    1.16    0.99    1.41
+   130.0    0.00    0.03    0.05    0.12    0.21    0.30    0.30    0.18   -0.08   -0.34   -0.45   -0.25    0.24    0.86    1.36    1.50    1.33    1.13    1.53
+   135.0    0.00    0.04    0.08    0.15    0.24    0.33    0.33    0.21   -0.03   -0.29   -0.40   -0.20    0.29    0.93    1.45    1.61    1.43    1.21    1.54
+   140.0    0.00    0.05    0.10    0.17    0.27    0.34    0.35    0.23   -0.02   -0.26   -0.36   -0.17    0.33    0.97    1.49    1.68    1.48    1.21    1.46
+   145.0    0.00    0.06    0.12    0.19    0.28    0.36    0.36    0.24    0.63   -0.24   -0.33   -0.14    0.35    0.99    1.52    1.69    1.48    1.15    1.31
+   150.0    0.00    0.06    0.13    0.21    0.30    0.38    0.37    0.25    0.01   -0.22   -0.31   -0.12    0.37    0.99    1.52    1.68    1.45    1.05    1.08
+   155.0    0.00    0.08    0.14    0.23    0.31    0.39    0.37    0.24    0.01   -0.22   -0.30   -0.10    0.36    0.98    1.49    1.65    1.38    0.92    0.84
+   160.0    0.00    0.09    0.16    0.25    0.32    0.39    0.37    0.23    0.01   -0.21   -0.29   -0.11    0.35    0.95    1.45    1.60    1.31    0.79    0.60
+   165.0    0.00    0.09    0.18    0.25    0.34    0.39    0.37    0.22    0.01   -0.22   -0.30   -0.12    0.32    0.91    1.40    1.55    1.25    0.69    0.40
+   170.0    0.00    0.10    0.19    0.27    0.35    0.39    0.36    0.22    0.60   -0.22   -0.31   -0.15    0.29    0.86    1.34    1.50    1.20    0.62    0.26
+   175.0    0.00    0.11    0.19    0.28    0.35    0.39    0.36    0.23    0.60   -0.23   -0.32   -0.18    0.23    0.80    1.29    1.45    1.17    0.59    0.18
+   180.0    0.00    0.12    0.20    0.28    0.35    0.40    0.36    0.23   -0.01   -0.24   -0.34   -0.21    0.19    0.74    1.23    1.41    1.16    0.59    0.18
+   185.0    0.00    0.11    0.21    0.29    0.36    0.40    0.37    0.22    0.62   -0.24   -0.36   -0.25    0.13    0.67    1.17    1.37    1.16    0.62    0.23
+   190.0    0.00    0.12    0.21    0.29    0.37    0.40    0.37    0.23    0.64   -0.25   -0.38   -0.29    0.08    0.61    1.11    1.33    1.13    0.65    0.30
+   195.0    0.00    0.12    0.21    0.28    0.36    0.40    0.37    0.24    0.66   -0.25   -0.40   -0.32    0.03    0.55    1.04    1.28    1.11    0.68    0.39
+   200.0    0.00    0.12    0.21    0.29    0.35    0.40    0.36    0.24   -0.01   -0.26   -0.42   -0.35   -0.02    0.49    0.98    1.19    1.06    0.67    0.45
+   205.0    0.00    0.13    0.21    0.29    0.35    0.38    0.36    0.22   -0.01   -0.28   -0.44   -0.37   -0.05    0.44    0.89    1.11    0.97    0.63    0.49
+   210.0    0.00    0.12    0.21    0.27    0.34    0.37    0.35    0.21   -0.02   -0.29   -0.45   -0.38   -0.08    0.39    0.82    0.99    0.85    0.54    0.47
+   215.0    0.00    0.12    0.20    0.27    0.32    0.36    0.33    0.19   -0.05   -0.31   -0.47   -0.40   -0.10    0.35    0.73    0.87    0.70    0.43    0.43
+   220.0    0.00    0.11    0.19    0.25    0.30    0.34    0.30    0.16   -0.08   -0.33   -0.48   -0.42   -0.12    0.30    0.65    0.75    0.55    0.29    0.33
+   225.0    0.00    0.11    0.18    0.23    0.28    0.31    0.27    0.12   -0.10   -0.35   -0.50   -0.44   -0.14    0.26    0.57    0.63    0.40    0.14    0.22
+   230.0    0.00    0.11    0.17    0.22    0.27    0.28    0.24    0.09   -0.14   -0.39   -0.53   -0.46   -0.17    0.22    0.50    0.52    0.27    0.01    0.09
+   235.0    0.00    0.10    0.16    0.21    0.24    0.26    0.21    0.06   -0.18   -0.43   -0.57   -0.50   -0.21    0.18    0.44    0.44    0.17   -0.09   -0.01
+   240.0    0.00    0.10    0.15    0.18    0.22    0.23    0.18    0.03   -0.22   -0.48   -0.61   -0.53   -0.24    0.13    0.40    0.38    0.12   -0.14   -0.10
+   245.0    0.00    0.09    0.14    0.17    0.19    0.20    0.15    0.73   -0.25   -0.51   -0.66   -0.58   -0.29    0.10    0.37    0.38    0.13   -0.13   -0.13
+   250.0    0.00    0.08    0.12    0.15    0.17    0.18    0.13   -0.03   -0.29   -0.55   -0.70   -0.62   -0.32    0.08    0.37    0.40    0.18   -0.09   -0.14
+   255.0    0.00    0.07    0.11    0.13    0.16    0.17    0.11   -0.05   -0.30   -0.58   -0.74   -0.67   -0.36    0.06    0.41    0.47    0.26    0.49   -0.10
+   260.0    0.00    0.07    0.09    0.11    0.13    0.15    0.10   -0.06   -0.33   -0.60   -0.77   -0.69   -0.37    0.08    0.46    0.56    0.38    0.11   -0.05
+   265.0    0.00    0.06    0.08    0.10    0.12    0.13    0.09   -0.07   -0.33   -0.62   -0.80   -0.72   -0.38    0.11    0.54    0.68    0.53    0.22    0.01
+   270.0    0.00    0.05    0.06    0.07    0.10    0.12    0.07   -0.07   -0.34   -0.64   -0.80   -0.72   -0.35    0.18    0.64    0.82    0.66    0.33    0.07
+   275.0    0.00    0.03    0.04    0.05    0.08    0.11    0.07   -0.09   -0.35   -0.64   -0.80   -0.69   -0.29    0.28    0.76    0.95    0.77    0.40    0.10
+   280.0    0.00    0.03    0.03    0.03    0.06    0.09    0.06   -0.08   -0.35   -0.63   -0.78   -0.66   -0.22    0.38    0.90    1.08    0.87    0.43    0.12
+   285.0    0.00    0.01    0.16    0.01    0.04    0.07    0.04   -0.10   -0.34   -0.61   -0.74   -0.59   -0.11    0.52    1.05    1.21    0.93    0.43    0.12
+   290.0    0.00    0.07   -0.01   -0.01    0.01    0.05    0.03   -0.10   -0.34   -0.60   -0.70   -0.51    0.49    0.66    1.19    1.31    0.97    0.41    0.10
+   295.0    0.00    0.07   -0.03   -0.04   -0.01    0.03    0.01   -0.11   -0.34   -0.57   -0.65   -0.42    0.12    0.80    1.32    1.40    0.99    0.36    0.08
+   300.0    0.00   -0.02   -0.05   -0.06   -0.04    0.40   -0.01   -0.12   -0.33   -0.54   -0.58   -0.32    0.24    0.93    1.44    1.47    0.98    0.30    0.07
+   305.0    0.00   -0.03   -0.07   -0.09   -0.08   -0.03   -0.04   -0.14   -0.32   -0.50   -0.50   -0.22    0.35    1.04    1.52    1.51    0.96    0.25    0.07
+   310.0    0.00   -0.04   -0.09   -0.12   -0.10   -0.06   -0.06   -0.15   -0.30   -0.45   -0.43   -0.14    0.44    1.12    1.57    1.53    0.95    0.23    0.12
+   315.0    0.00   -0.05   -0.11   -0.15   -0.14   -0.09   -0.08   -0.14   -0.28   -0.40   -0.36   -0.06    0.52    1.17    1.59    1.52    0.94    0.22    0.20
+   320.0    0.00   -0.06   -0.14   -0.18   -0.18   -0.13   -0.10   -0.14   -0.24   -0.34   -0.29    0.02    0.56    1.19    1.58    1.50    0.92    0.24    0.29
+   325.0    0.00   -0.07   -0.16   -0.20   -0.20   -0.16   -0.12   -0.14   -0.21   -0.28   -0.22    0.07    0.58    1.16    1.53    1.44    0.90    0.27    0.40
+   330.0    0.00   -0.09   -0.17   -0.23   -0.23   -0.19   -0.14   -0.13   -0.18   -0.22   -0.16    0.11    0.57    1.12    1.45    1.38    0.87    0.31    0.50
+   335.0    0.00   -0.10   -0.20   -0.26   -0.27   -0.22   -0.15   -0.12   -0.15   -0.17   -0.11    0.13    0.57    1.04    1.36    1.30    0.83    0.33    0.59
+   340.0    0.00   -0.11   -0.21   -0.28   -0.29   -0.24   -0.17   -0.12   -0.12   -0.13   -0.06    0.16    0.53    0.98    1.26    1.20    0.77    0.33    0.64
+   345.0    0.00   -0.11   -0.22   -0.31   -0.32   -0.27   -0.19   -0.11   -0.10   -0.10   -0.04    0.16    0.50    0.90    1.16    1.10    0.70    0.31    0.62
+   350.0    0.00   -0.11   -0.24   -0.32   -0.35   -0.29   -0.21   -0.13   -0.10   -0.08   -0.03    0.16    0.48    0.84    1.06    1.00    0.62    0.24    0.57
+   355.0    0.00   -0.12   -0.25   -0.34   -0.37   -0.32   -0.23   -0.15   -0.10   -0.09   -0.03    0.16    0.45    0.78    1.00    0.92    0.54    0.17    0.49
+   360.0    0.00   -0.13   -0.26   -0.36   -0.40   -0.34   -0.25   -0.18   -0.14   -0.12   -0.05    0.13    0.42    0.75    0.94    0.85    0.45    0.07    0.36
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+LEIGS15         NONE                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               5    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+Number of Calibrated Antennas GPS:      005                 COMMENT             
+Number of Individual Calibrations GPS:  010                 COMMENT             
+   G01                                                      START OF FREQUENCY  
+     -0.81     -0.49    202.05                              NORTH / EAST / UP   
+   NOAZI    0.00    0.04    0.11    0.14    0.05   -0.18   -0.50   -0.81   -1.03   -1.10   -1.08   -1.02   -0.97   -0.92   -0.73   -0.27    0.52    1.52    2.40
+     0.0    0.00    0.00    0.12    0.27    0.31    0.15   -0.19   -0.57   -0.80   -0.77   -0.52   -0.24   -0.12   -0.21   -0.24    0.23    1.54    3.43    4.64
+     5.0    0.00   -0.01    0.10    0.24    0.29    0.13   -0.20   -0.58   -0.81   -0.79   -0.54   -0.26   -0.16   -0.27   -0.34    0.06    1.32    3.23    4.67
+    10.0    0.00   -0.02    0.08    0.22    0.25    0.10   -0.23   -0.60   -0.84   -0.83   -0.59   -0.32   -0.22   -0.34   -0.46   -0.14    1.02    2.90    4.55
+    15.0    0.00   -0.02    0.06    0.19    0.22    0.07   -0.25   -0.63   -0.88   -0.89   -0.67   -0.41   -0.30   -0.42   -0.58   -0.35    0.68    2.50    4.30
+    20.0    0.00   -0.03    0.04    0.15    0.19    0.04   -0.28   -0.67   -0.94   -0.97   -0.78   -0.52   -0.41   -0.52   -0.69   -0.54    0.34    2.04    3.93
+    25.0    0.00   -0.04    0.02    0.12    0.15    0.00   -0.32   -0.70   -0.99   -1.06   -0.90   -0.66   -0.53   -0.62   -0.80   -0.71    0.04    1.57    3.47
+    30.0    0.00   -0.05    0.00    0.09    0.11   -0.04   -0.35   -0.74   -1.05   -1.14   -1.02   -0.81   -0.68   -0.73   -0.88   -0.83   -0.21    1.15    2.95
+    35.0    0.00   -0.06   -0.02    0.06    0.07   -0.08   -0.38   -0.77   -1.09   -1.22   -1.15   -0.96   -0.83   -0.85   -0.96   -0.90   -0.37    0.80    2.44
+    40.0    0.00   -0.06   -0.04    0.02    0.03   -0.12   -0.42   -0.80   -1.13   -1.29   -1.25   -1.11   -0.98   -0.96   -1.01   -0.93   -0.45    0.56    1.97
+    45.0    0.00   -0.07   -0.06   -0.01   -0.02   -0.16   -0.45   -0.82   -1.15   -1.34   -1.34   -1.24   -1.13   -1.08   -1.06   -0.92   -0.46    0.42    1.59
+    50.0    0.00   -0.07   -0.07   -0.04   -0.06   -0.21   -0.49   -0.85   -1.17   -1.37   -1.41   -1.35   -1.26   -1.20   -1.11   -0.89   -0.40    0.38    1.31
+    55.0    0.00   -0.08   -0.09   -0.07   -0.11   -0.26   -0.54   -0.88   -1.18   -1.38   -1.45   -1.43   -1.37   -1.30   -1.17   -0.86   -0.32    0.42    1.16
+    60.0    0.00   -0.08   -0.10   -0.10   -0.15   -0.31   -0.59   -0.91   -1.19   -1.38   -1.46   -1.48   -1.46   -1.40   -1.23   -0.85   -0.23    0.51    1.12
+    65.0    0.00   -0.08   -0.11   -0.12   -0.20   -0.37   -0.64   -0.95   -1.21   -1.38   -1.46   -1.50   -1.52   -1.49   -1.30   -0.86   -0.17    0.61    1.17
+    70.0    0.00   -0.08   -0.11   -0.14   -0.24   -0.43   -0.71   -1.00   -1.23   -1.37   -1.44   -1.50   -1.55   -1.56   -1.38   -0.91   -0.15    0.70    1.28
+    75.0    0.00   -0.08   -0.12   -0.16   -0.28   -0.49   -0.78   -1.06   -1.27   -1.37   -1.42   -1.47   -1.56   -1.60   -1.46   -0.99   -0.19    0.74    1.40
+    80.0    0.00   -0.08   -0.12   -0.17   -0.31   -0.55   -0.85   -1.13   -1.31   -1.39   -1.40   -1.44   -1.54   -1.62   -1.53   -1.09   -0.27    0.72    1.50
+    85.0    0.00   -0.07   -0.11   -0.18   -0.33   -0.60   -0.92   -1.20   -1.37   -1.41   -1.38   -1.39   -1.49   -1.61   -1.57   -1.18   -0.39    0.65    1.55
+    90.0    0.00   -0.07   -0.11   -0.18   -0.35   -0.64   -0.98   -1.27   -1.42   -1.43   -1.37   -1.35   -1.44   -1.57   -1.58   -1.26   -0.51    0.53    1.53
+    95.0    0.00   -0.06   -0.10   -0.17   -0.36   -0.66   -1.02   -1.32   -1.48   -1.47   -1.37   -1.31   -1.37   -1.50   -1.54   -1.29   -0.62    0.38    1.45
+   100.0    0.00   -0.05   -0.08   -0.16   -0.35   -0.67   -1.04   -1.36   -1.52   -1.50   -1.38   -1.28   -1.30   -1.40   -1.45   -1.25   -0.67    0.25    1.32
+   105.0    0.00   -0.05   -0.07   -0.14   -0.33   -0.66   -1.05   -1.37   -1.54   -1.52   -1.38   -1.25   -1.22   -1.28   -1.31   -1.15   -0.66    0.15    1.16
+   110.0    0.00   -0.04   -0.05   -0.11   -0.31   -0.64   -1.03   -1.36   -1.53   -1.52   -1.38   -1.22   -1.14   -1.14   -1.13   -0.97   -0.56    0.13    1.02
+   115.0    0.00   -0.03   -0.03   -0.09   -0.27   -0.59   -0.98   -1.32   -1.50   -1.50   -1.37   -1.19   -1.06   -0.98   -0.90   -0.72   -0.36    0.18    0.92
+   120.0    0.00   -0.02    0.00   -0.05   -0.23   -0.54   -0.92   -1.25   -1.45   -1.46   -1.34   -1.16   -0.98   -0.83   -0.66   -0.42   -0.09    0.34    0.91
+   125.0    0.00   -0.01    0.02   -0.02   -0.18   -0.48   -0.84   -1.17   -1.36   -1.40   -1.30   -1.12   -0.91   -0.68   -0.41   -0.10    0.23    0.57    0.99
+   130.0    0.00    0.01    0.04    0.02   -0.14   -0.42   -0.76   -1.07   -1.26   -1.31   -1.23   -1.06   -0.83   -0.54   -0.18    0.22    0.59    0.88    1.18
+   135.0    0.00    0.02    0.06    0.05   -0.09   -0.35   -0.68   -0.96   -1.15   -1.20   -1.15   -1.00   -0.76   -0.42    0.03    0.52    0.95    1.23    1.45
+   140.0    0.00    0.03    0.09    0.08   -0.05   -0.30   -0.60   -0.86   -1.03   -1.09   -1.05   -0.92   -0.69   -0.32    0.19    0.77    1.27    1.59    1.80
+   145.0    0.00    0.04    0.11    0.11   -0.01   -0.25   -0.53   -0.77   -0.92   -0.97   -0.94   -0.84   -0.62   -0.24    0.31    0.95    1.53    1.92    2.18
+   150.0    0.00    0.05    0.13    0.14    0.02   -0.21   -0.47   -0.69   -0.82   -0.86   -0.83   -0.75   -0.56   -0.19    0.37    1.07    1.72    2.20    2.55
+   155.0    0.00    0.06    0.15    0.16    0.05   -0.18   -0.43   -0.63   -0.73   -0.75   -0.73   -0.67   -0.50   -0.17    0.39    1.11    1.83    2.40    2.87
+   160.0    0.00    0.07    0.16    0.18    0.06   -0.16   -0.40   -0.58   -0.66   -0.67   -0.64   -0.59   -0.46   -0.16    0.37    1.09    1.85    2.52    3.12
+   165.0    0.00    0.08    0.18    0.19    0.08   -0.15   -0.38   -0.55   -0.61   -0.60   -0.56   -0.53   -0.43   -0.17    0.32    1.02    1.80    2.54    3.26
+   170.0    0.00    0.09    0.19    0.21    0.09   -0.14   -0.38   -0.53   -0.58   -0.55   -0.51   -0.48   -0.41   -0.20    0.25    0.91    1.69    2.48    3.30
+   175.0    0.00    0.09    0.20    0.22    0.09   -0.14   -0.37   -0.52   -0.56   -0.52   -0.47   -0.45   -0.40   -0.23    0.16    0.78    1.55    2.36    3.23
+   180.0    0.00    0.10    0.21    0.22    0.09   -0.14   -0.37   -0.52   -0.55   -0.50   -0.45   -0.43   -0.41   -0.28    0.06    0.64    1.37    2.18    3.07
+   185.0    0.00    0.11    0.22    0.23    0.10   -0.14   -0.37   -0.52   -0.54   -0.49   -0.45   -0.44   -0.44   -0.34   -0.04    0.49    1.19    1.97    2.84
+   190.0    0.00    0.11    0.22    0.23    0.10   -0.13   -0.37   -0.51   -0.54   -0.50   -0.46   -0.46   -0.48   -0.41   -0.15    0.34    1.00    1.75    2.58
+   195.0    0.00    0.11    0.23    0.23    0.10   -0.13   -0.36   -0.51   -0.54   -0.51   -0.48   -0.50   -0.54   -0.50   -0.26    0.19    0.82    1.53    2.30
+   200.0    0.00    0.12    0.23    0.24    0.10   -0.13   -0.36   -0.51   -0.55   -0.53   -0.52   -0.56   -0.62   -0.60   -0.39    0.04    0.64    1.32    2.04
+   205.0    0.00    0.12    0.23    0.24    0.10   -0.13   -0.36   -0.51   -0.56   -0.56   -0.56   -0.63   -0.71   -0.72   -0.54   -0.12    0.47    1.13    1.81
+   210.0    0.00    0.12    0.23    0.23    0.10   -0.13   -0.36   -0.52   -0.58   -0.59   -0.62   -0.71   -0.82   -0.85   -0.69   -0.29    0.30    0.96    1.60
+   215.0    0.00    0.12    0.23    0.23    0.10   -0.13   -0.37   -0.54   -0.62   -0.64   -0.69   -0.80   -0.95   -1.01   -0.87   -0.47    0.14    0.82    1.44
+   220.0    0.00    0.12    0.23    0.23    0.09   -0.14   -0.39   -0.57   -0.66   -0.70   -0.77   -0.91   -1.08   -1.17   -1.05   -0.65   -0.01    0.70    1.30
+   225.0    0.00    0.13    0.23    0.22    0.08   -0.16   -0.41   -0.61   -0.72   -0.78   -0.87   -1.03   -1.23   -1.35   -1.23   -0.81   -0.13    0.61    1.19
+   230.0    0.00    0.12    0.22    0.22    0.07   -0.18   -0.45   -0.66   -0.78   -0.86   -0.97   -1.16   -1.39   -1.52   -1.41   -0.96   -0.23    0.56    1.10
+   235.0    0.00    0.12    0.22    0.21    0.06   -0.20   -0.48   -0.71   -0.86   -0.96   -1.09   -1.30   -1.54   -1.69   -1.57   -1.07   -0.28    0.54    1.03
+   240.0    0.00    0.12    0.22    0.21    0.05   -0.22   -0.52   -0.77   -0.93   -1.06   -1.21   -1.44   -1.70   -1.84   -1.69   -1.14   -0.29    0.56    0.98
+   245.0    0.00    0.12    0.22    0.20    0.05   -0.23   -0.55   -0.82   -1.01   -1.15   -1.33   -1.57   -1.84   -1.97   -1.78   -1.16   -0.24    0.62    0.95
+   250.0    0.00    0.12    0.21    0.20    0.04   -0.24   -0.58   -0.87   -1.08   -1.25   -1.44   -1.70   -1.96   -2.07   -1.82   -1.13   -0.15    0.71    0.95
+   255.0    0.00    0.12    0.21    0.20    0.05   -0.25   -0.59   -0.91   -1.14   -1.33   -1.54   -1.81   -2.06   -2.13   -1.82   -1.06   -0.03    0.84    0.99
+   260.0    0.00    0.12    0.21    0.21    0.05   -0.24   -0.60   -0.93   -1.19   -1.41   -1.63   -1.89   -2.12   -2.15   -1.78   -0.96    0.12    0.98    1.07
+   265.0    0.00    0.11    0.21    0.22    0.07   -0.23   -0.60   -0.95   -1.23   -1.46   -1.69   -1.94   -2.14   -2.12   -1.70   -0.83    0.27    1.13    1.20
+   270.0    0.00    0.11    0.21    0.23    0.08   -0.21   -0.58   -0.95   -1.26   -1.50   -1.73   -1.96   -2.12   -2.06   -1.60   -0.71    0.40    1.26    1.36
+   275.0    0.00    0.11    0.22    0.24    0.11   -0.18   -0.56   -0.95   -1.27   -1.53   -1.75   -1.95   -2.07   -1.96   -1.48   -0.59    0.51    1.37    1.55
+   280.0    0.00    0.11    0.22    0.25    0.14   -0.14   -0.53   -0.93   -1.28   -1.54   -1.74   -1.90   -1.97   -1.83   -1.35   -0.49    0.57    1.45    1.76
+   285.0    0.00    0.10    0.22    0.27    0.17   -0.11   -0.50   -0.92   -1.28   -1.54   -1.71   -1.82   -1.84   -1.67   -1.22   -0.42    0.58    1.49    1.96
+   290.0    0.00    0.10    0.22    0.28    0.20   -0.07   -0.47   -0.90   -1.27   -1.52   -1.66   -1.71   -1.68   -1.50   -1.09   -0.37    0.57    1.49    2.14
+   295.0    0.00    0.09    0.22    0.30    0.23   -0.03   -0.43   -0.89   -1.27   -1.50   -1.59   -1.58   -1.50   -1.32   -0.96   -0.34    0.52    1.48    2.29
+   300.0    0.00    0.09    0.23    0.32    0.26    0.01   -0.40   -0.87   -1.25   -1.47   -1.51   -1.44   -1.31   -1.14   -0.84   -0.32    0.48    1.47    2.42
+   305.0    0.00    0.09    0.23    0.33    0.29    0.04   -0.38   -0.85   -1.24   -1.43   -1.43   -1.29   -1.13   -0.96   -0.73   -0.29    0.46    1.47    2.51
+   310.0    0.00    0.08    0.23    0.34    0.32    0.08   -0.35   -0.83   -1.22   -1.39   -1.33   -1.14   -0.94   -0.79   -0.62   -0.24    0.48    1.53    2.60
+   315.0    0.00    0.07    0.22    0.35    0.34    0.10   -0.32   -0.81   -1.19   -1.33   -1.23   -1.00   -0.77   -0.64   -0.51   -0.17    0.55    1.64    2.69
+   320.0    0.00    0.07    0.22    0.36    0.35    0.13   -0.30   -0.78   -1.15   -1.26   -1.13   -0.86   -0.62   -0.50   -0.40   -0.08    0.69    1.82    2.79
+   325.0    0.00    0.06    0.21    0.36    0.37    0.15   -0.27   -0.75   -1.10   -1.19   -1.02   -0.72   -0.49   -0.39   -0.30    0.04    0.87    2.07    2.94
+   330.0    0.00    0.05    0.21    0.36    0.37    0.17   -0.25   -0.72   -1.05   -1.11   -0.91   -0.60   -0.37   -0.29   -0.22    0.16    1.09    2.37    3.14
+   335.0    0.00    0.05    0.20    0.35    0.38    0.18   -0.22   -0.68   -0.99   -1.03   -0.81   -0.49   -0.28   -0.22   -0.15    0.28    1.31    2.69    3.39
+   340.0    0.00    0.04    0.18    0.34    0.37    0.18   -0.20   -0.64   -0.93   -0.94   -0.71   -0.40   -0.21   -0.18   -0.11    0.37    1.51    3.00    3.68
+   345.0    0.00    0.03    0.17    0.33    0.37    0.19   -0.19   -0.61   -0.88   -0.87   -0.63   -0.33   -0.16   -0.15   -0.09    0.42    1.65    3.26    3.98
+   350.0    0.00    0.02    0.16    0.31    0.35    0.18   -0.18   -0.58   -0.84   -0.82   -0.57   -0.27   -0.12   -0.15   -0.11    0.42    1.72    3.44    4.27
+   355.0    0.00    0.01    0.14    0.29    0.33    0.17   -0.18   -0.57   -0.81   -0.78   -0.53   -0.24   -0.11   -0.17   -0.16    0.36    1.68    3.50    4.50
+   360.0    0.00    0.00    0.12    0.27    0.31    0.15   -0.19   -0.57   -0.80   -0.77   -0.52   -0.24   -0.12   -0.21   -0.24    0.23    1.54    3.43    4.64
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.76      2.14    200.73                              NORTH / EAST / UP   
+   NOAZI    0.00    0.07    0.23    0.33    0.25   -0.06   -0.48   -0.84   -0.99   -0.88   -0.64   -0.44   -0.41   -0.50   -0.52   -0.20    0.52    1.40    1.84
+     0.0    0.00   -0.03    0.09    0.27    0.37    0.27   -0.02   -0.38   -0.63   -0.65   -0.44   -0.14    0.07    0.10   -0.01   -0.04    0.21    0.70    0.91
+     5.0    0.00   -0.03    0.09    0.27    0.36    0.26   -0.03   -0.39   -0.65   -0.70   -0.53   -0.27   -0.10   -0.10   -0.23   -0.28   -0.05    0.43    0.71
+    10.0    0.00   -0.02    0.10    0.27    0.36    0.25   -0.04   -0.40   -0.68   -0.75   -0.62   -0.42   -0.29   -0.34   -0.48   -0.53   -0.30    0.18    0.49
+    15.0    0.00   -0.02    0.10    0.27    0.35    0.23   -0.06   -0.42   -0.70   -0.80   -0.71   -0.57   -0.51   -0.59   -0.75   -0.79   -0.54   -0.06    0.27
+    20.0    0.00   -0.01    0.11    0.27    0.33    0.21   -0.09   -0.45   -0.73   -0.84   -0.80   -0.71   -0.72   -0.85   -1.01   -1.03   -0.75   -0.27    0.05
+    25.0    0.00    0.00    0.12    0.27    0.32    0.18   -0.12   -0.48   -0.76   -0.88   -0.87   -0.84   -0.91   -1.09   -1.26   -1.24   -0.93   -0.43   -0.15
+    30.0    0.00    0.01    0.13    0.27    0.31    0.15   -0.16   -0.52   -0.78   -0.90   -0.92   -0.95   -1.08   -1.31   -1.49   -1.43   -1.05   -0.54   -0.31
+    35.0    0.00    0.02    0.14    0.28    0.29    0.12   -0.21   -0.56   -0.81   -0.92   -0.95   -1.02   -1.22   -1.49   -1.67   -1.57   -1.14   -0.60   -0.43
+    40.0    0.00    0.03    0.16    0.29    0.28    0.09   -0.25   -0.60   -0.83   -0.92   -0.95   -1.06   -1.30   -1.62   -1.82   -1.67   -1.18   -0.61   -0.48
+    45.0    0.00    0.04    0.18    0.30    0.28    0.06   -0.30   -0.64   -0.86   -0.92   -0.94   -1.06   -1.34   -1.70   -1.91   -1.74   -1.18   -0.56   -0.47
+    50.0    0.00    0.05    0.20    0.32    0.28    0.03   -0.34   -0.69   -0.88   -0.91   -0.91   -1.02   -1.33   -1.73   -1.95   -1.76   -1.15   -0.48   -0.39
+    55.0    0.00    0.06    0.22    0.34    0.28    0.01   -0.38   -0.73   -0.91   -0.90   -0.86   -0.96   -1.28   -1.70   -1.95   -1.75   -1.09   -0.36   -0.25
+    60.0    0.00    0.08    0.24    0.36    0.29    0.00   -0.41   -0.77   -0.93   -0.89   -0.80   -0.87   -1.18   -1.63   -1.90   -1.71   -1.02   -0.23   -0.06
+    65.0    0.00    0.09    0.27    0.39    0.31    0.00   -0.44   -0.81   -0.96   -0.88   -0.74   -0.77   -1.06   -1.52   -1.82   -1.64   -0.93   -0.09    0.16
+    70.0    0.00    0.10    0.29    0.42    0.34    0.01   -0.45   -0.84   -0.98   -0.87   -0.68   -0.65   -0.92   -1.38   -1.70   -1.55   -0.84    0.05    0.39
+    75.0    0.00    0.12    0.32    0.46    0.37    0.03   -0.46   -0.86   -1.00   -0.86   -0.62   -0.54   -0.76   -1.21   -1.55   -1.44   -0.74    0.18    0.62
+    80.0    0.00    0.13    0.35    0.50    0.41    0.06   -0.45   -0.87   -1.01   -0.85   -0.57   -0.42   -0.59   -1.02   -1.38   -1.30   -0.63    0.31    0.83
+    85.0    0.00    0.14    0.38    0.54    0.45    0.09   -0.43   -0.86   -1.01   -0.84   -0.51   -0.31   -0.42   -0.81   -1.18   -1.14   -0.50    0.45    1.03
+    90.0    0.00    0.16    0.40    0.57    0.50    0.13   -0.40   -0.85   -1.01   -0.82   -0.46   -0.20   -0.25   -0.60   -0.96   -0.94   -0.35    0.59    1.21
+    95.0    0.00    0.17    0.43    0.61    0.54    0.18   -0.36   -0.82   -0.99   -0.80   -0.40   -0.09   -0.08   -0.37   -0.71   -0.71   -0.16    0.74    1.38
+   100.0    0.00    0.18    0.45    0.65    0.59    0.22   -0.32   -0.79   -0.96   -0.76   -0.34    0.02    0.09   -0.14   -0.45   -0.46    0.06    0.93    1.56
+   105.0    0.00    0.19    0.47    0.68    0.63    0.27   -0.27   -0.75   -0.92   -0.72   -0.28    0.12    0.26    0.09   -0.18   -0.18    0.31    1.14    1.74
+   110.0    0.00    0.20    0.49    0.70    0.66    0.31   -0.23   -0.70   -0.88   -0.68   -0.22    0.22    0.41    0.31    0.10    0.12    0.59    1.39    1.95
+   115.0    0.00    0.21    0.51    0.72    0.68    0.34   -0.19   -0.66   -0.83   -0.63   -0.17    0.31    0.55    0.52    0.37    0.42    0.90    1.67    2.19
+   120.0    0.00    0.21    0.52    0.74    0.70    0.36   -0.16   -0.62   -0.79   -0.59   -0.12    0.38    0.67    0.70    0.61    0.71    1.20    1.96    2.47
+   125.0    0.00    0.22    0.53    0.74    0.71    0.37   -0.13   -0.58   -0.75   -0.55   -0.08    0.43    0.76    0.84    0.82    0.97    1.49    2.25    2.76
+   130.0    0.00    0.22    0.53    0.74    0.71    0.38   -0.12   -0.56   -0.73   -0.53   -0.06    0.46    0.82    0.94    0.98    1.19    1.73    2.52    3.06
+   135.0    0.00    0.22    0.53    0.74    0.70    0.37   -0.12   -0.55   -0.71   -0.52   -0.06    0.45    0.82    0.99    1.08    1.34    1.93    2.75    3.36
+   140.0    0.00    0.22    0.53    0.73    0.68    0.35   -0.13   -0.56   -0.72   -0.53   -0.09    0.41    0.79    0.98    1.11    1.41    2.04    2.92    3.62
+   145.0    0.00    0.22    0.52    0.71    0.65    0.32   -0.16   -0.57   -0.73   -0.56   -0.15    0.33    0.70    0.90    1.06    1.40    2.07    3.01    3.83
+   150.0    0.00    0.22    0.51    0.69    0.62    0.29   -0.19   -0.60   -0.77   -0.62   -0.23    0.22    0.56    0.76    0.94    1.30    2.01    3.02    3.96
+   155.0    0.00    0.22    0.50    0.66    0.58    0.25   -0.22   -0.64   -0.81   -0.69   -0.34    0.07    0.39    0.58    0.75    1.13    1.86    2.93    4.01
+   160.0    0.00    0.21    0.48    0.63    0.55    0.21   -0.27   -0.68   -0.87   -0.78   -0.47   -0.10    0.18    0.34    0.51    0.89    1.63    2.75    3.96
+   165.0    0.00    0.21    0.46    0.60    0.50    0.16   -0.32   -0.74   -0.94   -0.87   -0.61   -0.29   -0.05    0.08    0.23    0.59    1.34    2.50    3.83
+   170.0    0.00    0.20    0.44    0.57    0.46    0.11   -0.37   -0.80   -1.02   -0.98   -0.75   -0.48   -0.28   -0.19   -0.07    0.27    1.01    2.19    3.62
+   175.0    0.00    0.19    0.42    0.54    0.41    0.05   -0.43   -0.86   -1.10   -1.08   -0.89   -0.66   -0.51   -0.45   -0.37   -0.07    0.66    1.85    3.34
+   180.0    0.00    0.18    0.40    0.50    0.37    0.00   -0.50   -0.94   -1.18   -1.19   -1.02   -0.83   -0.72   -0.70   -0.66   -0.39    0.31    1.50    3.03
+   185.0    0.00    0.17    0.38    0.46    0.31   -0.07   -0.57   -1.02   -1.27   -1.28   -1.14   -0.97   -0.89   -0.92   -0.92   -0.68    0.00    1.18    2.70
+   190.0    0.00    0.16    0.36    0.43    0.26   -0.13   -0.65   -1.10   -1.36   -1.37   -1.23   -1.08   -1.04   -1.10   -1.14   -0.93   -0.27    0.89    2.38
+   195.0    0.00    0.15    0.33    0.39    0.21   -0.20   -0.73   -1.19   -1.44   -1.45   -1.31   -1.16   -1.14   -1.24   -1.31   -1.13   -0.48    0.66    2.09
+   200.0    0.00    0.14    0.31    0.35    0.15   -0.28   -0.82   -1.28   -1.53   -1.52   -1.36   -1.21   -1.20   -1.33   -1.43   -1.26   -0.62    0.50    1.84
+   205.0    0.00    0.13    0.28    0.31    0.09   -0.35   -0.91   -1.37   -1.61   -1.57   -1.39   -1.23   -1.23   -1.39   -1.51   -1.34   -0.68    0.41    1.65
+   210.0    0.00    0.12    0.26    0.27    0.04   -0.43   -1.00   -1.46   -1.67   -1.61   -1.39   -1.22   -1.24   -1.41   -1.54   -1.35   -0.68    0.40    1.50
+   215.0    0.00    0.11    0.24    0.23   -0.02   -0.50   -1.08   -1.54   -1.73   -1.63   -1.38   -1.20   -1.21   -1.40   -1.53   -1.32   -0.60    0.46    1.42
+   220.0    0.00    0.10    0.21    0.20   -0.07   -0.57   -1.16   -1.61   -1.77   -1.63   -1.35   -1.15   -1.18   -1.37   -1.49   -1.24   -0.47    0.58    1.39
+   225.0    0.00    0.08    0.19    0.16   -0.12   -0.63   -1.22   -1.66   -1.79   -1.62   -1.31   -1.10   -1.13   -1.33   -1.43   -1.12   -0.30    0.76    1.40
+   230.0    0.00    0.07    0.17    0.13   -0.16   -0.68   -1.26   -1.69   -1.79   -1.58   -1.25   -1.04   -1.08   -1.28   -1.35   -0.98   -0.08    0.97    1.46
+   235.0    0.00    0.06    0.15    0.11   -0.19   -0.71   -1.29   -1.69   -1.76   -1.53   -1.18   -0.97   -1.03   -1.23   -1.26   -0.81    0.15    1.20    1.56
+   240.0    0.00    0.05    0.13    0.09   -0.21   -0.73   -1.29   -1.67   -1.71   -1.46   -1.10   -0.90   -0.97   -1.17   -1.16   -0.63    0.40    1.46    1.69
+   245.0    0.00    0.04    0.12    0.07   -0.22   -0.73   -1.27   -1.62   -1.64   -1.37   -1.02   -0.84   -0.92   -1.11   -1.05   -0.45    0.65    1.72    1.86
+   250.0    0.00    0.03    0.11    0.06   -0.22   -0.71   -1.23   -1.55   -1.55   -1.27   -0.93   -0.77   -0.87   -1.04   -0.94   -0.26    0.90    1.97    2.05
+   255.0    0.00    0.02    0.09    0.05   -0.21   -0.67   -1.17   -1.46   -1.44   -1.16   -0.84   -0.70   -0.82   -0.98   -0.82   -0.08    1.14    2.22    2.26
+   260.0    0.00    0.01    0.08    0.05   -0.19   -0.63   -1.09   -1.36   -1.32   -1.05   -0.75   -0.64   -0.77   -0.91   -0.71    0.09    1.35    2.44    2.48
+   265.0    0.00    0.01    0.08    0.06   -0.17   -0.57   -1.00   -1.25   -1.21   -0.95   -0.67   -0.58   -0.71   -0.84   -0.60    0.24    1.54    2.64    2.70
+   270.0    0.00    0.00    0.07    0.07   -0.13   -0.51   -0.90   -1.13   -1.09   -0.85   -0.60   -0.53   -0.66   -0.76   -0.49    0.38    1.69    2.82    2.92
+   275.0    0.00   -0.01    0.07    0.08   -0.09   -0.43   -0.80   -1.02   -0.98   -0.76   -0.54   -0.48   -0.60   -0.68   -0.38    0.50    1.82    2.95    3.10
+   280.0    0.00   -0.01    0.06    0.09   -0.05   -0.36   -0.71   -0.91   -0.89   -0.69   -0.49   -0.43   -0.54   -0.60   -0.28    0.61    1.91    3.05    3.25
+   285.0    0.00   -0.02    0.06    0.11   -0.01   -0.29   -0.61   -0.82   -0.81   -0.63   -0.44   -0.39   -0.48   -0.52   -0.19    0.69    1.97    3.10    3.35
+   290.0    0.00   -0.03    0.06    0.12    0.03   -0.22   -0.53   -0.74   -0.75   -0.59   -0.41   -0.35   -0.41   -0.43   -0.10    0.75    2.00    3.12    3.39
+   295.0    0.00   -0.03    0.06    0.14    0.08   -0.15   -0.45   -0.67   -0.70   -0.56   -0.39   -0.31   -0.34   -0.33   -0.02    0.80    1.99    3.09    3.36
+   300.0    0.00   -0.03    0.06    0.16    0.12   -0.09   -0.38   -0.61   -0.66   -0.55   -0.37   -0.26   -0.27   -0.24    0.07    0.83    1.97    3.03    3.27
+   305.0    0.00   -0.04    0.07    0.17    0.16   -0.03   -0.32   -0.56   -0.64   -0.54   -0.35   -0.22   -0.18   -0.14    0.15    0.85    1.93    2.93    3.13
+   310.0    0.00   -0.04    0.07    0.19    0.19    0.02   -0.27   -0.52   -0.62   -0.53   -0.33   -0.16   -0.09   -0.03    0.22    0.87    1.86    2.81    2.94
+   315.0    0.00   -0.04    0.07    0.21    0.23    0.06   -0.22   -0.49   -0.61   -0.52   -0.31   -0.11    0.01    0.08    0.30    0.87    1.79    2.67    2.72
+   320.0    0.00   -0.04    0.07    0.22    0.26    0.11   -0.18   -0.46   -0.60   -0.52   -0.29   -0.05    0.10    0.19    0.37    0.86    1.69    2.50    2.49
+   325.0    0.00   -0.04    0.07    0.23    0.28    0.14   -0.14   -0.44   -0.59   -0.52   -0.27    0.01    0.19    0.29    0.43    0.84    1.58    2.33    2.25
+   330.0    0.00   -0.05    0.08    0.24    0.31    0.18   -0.11   -0.42   -0.58   -0.52   -0.26    0.06    0.27    0.37    0.47    0.81    1.45    2.14    2.03
+   335.0    0.00   -0.04    0.08    0.25    0.33    0.21   -0.08   -0.40   -0.58   -0.52   -0.25    0.09    0.33    0.43    0.49    0.74    1.30    1.93    1.82
+   340.0    0.00   -0.04    0.08    0.26    0.34    0.23   -0.06   -0.39   -0.58   -0.53   -0.25    0.10    0.36    0.45    0.48    0.65    1.13    1.71    1.63
+   345.0    0.00   -0.04    0.08    0.27    0.36    0.25   -0.04   -0.38   -0.58   -0.55   -0.27    0.09    0.35    0.44    0.42    0.53    0.93    1.48    1.45
+   350.0    0.00   -0.04    0.08    0.27    0.36    0.26   -0.03   -0.37   -0.59   -0.57   -0.31    0.04    0.30    0.37    0.32    0.37    0.71    1.23    1.28
+   355.0    0.00   -0.04    0.09    0.27    0.37    0.27   -0.02   -0.37   -0.61   -0.61   -0.37   -0.04    0.21    0.26    0.18    0.18    0.47    0.97    1.10
+   360.0    0.00   -0.03    0.09    0.27    0.37    0.27   -0.02   -0.38   -0.63   -0.65   -0.44   -0.14    0.07    0.10   -0.01   -0.04    0.21    0.70    0.91
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+LEIMNA950GG     NONE                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               5    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     4                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+Number of Calibrated Antennas GPS:      005                 COMMENT             
+Number of Individual Calibrations GPS:  010                 COMMENT             
+Number of Calibrated Antennas GLO:      005                 COMMENT             
+Number of Individual Calibrations GLO:  010                 COMMENT             
+# GLONASS PCV                                               COMMENT             
+#  derived from Delta PCV per 25.0 MHz                      COMMENT             
+#  for frequency channel number k=0                         COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.54      0.15     91.05                              NORTH / EAST / UP   
+   NOAZI    0.00    0.04    0.11    0.14    0.03   -0.27   -0.73   -1.24   -1.67   -1.88   -1.83   -1.57   -1.18   -0.77   -0.38    0.06    0.69    1.67    3.07
+     0.0    0.00    0.17    0.40    0.57    0.56    0.30   -0.17   -0.76   -1.29   -1.60   -1.60   -1.31   -0.86   -0.46   -0.28   -0.39   -0.59   -0.39    1.06
+     5.0    0.00    0.16    0.37    0.53    0.52    0.27   -0.19   -0.76   -1.27   -1.58   -1.58   -1.30   -0.86   -0.44   -0.24   -0.31   -0.51   -0.35    1.00
+    10.0    0.00    0.15    0.34    0.49    0.47    0.23   -0.21   -0.76   -1.25   -1.56   -1.58   -1.32   -0.89   -0.45   -0.19   -0.20   -0.36   -0.23    0.98
+    15.0    0.00    0.13    0.31    0.44    0.42    0.19   -0.23   -0.75   -1.23   -1.53   -1.57   -1.35   -0.93   -0.48   -0.17   -0.09   -0.17   -0.05    1.02
+    20.0    0.00    0.12    0.28    0.40    0.37    0.14   -0.26   -0.75   -1.21   -1.50   -1.56   -1.37   -0.99   -0.53   -0.15    0.02    0.04    0.20    1.13
+    25.0    0.00    0.10    0.24    0.34    0.31    0.09   -0.29   -0.75   -1.18   -1.47   -1.55   -1.39   -1.04   -0.58   -0.17    0.11    0.25    0.47    1.29
+    30.0    0.00    0.08    0.21    0.29    0.24    0.02   -0.34   -0.77   -1.16   -1.44   -1.52   -1.39   -1.07   -0.64   -0.20    0.17    0.43    0.75    1.52
+    35.0    0.00    0.06    0.17    0.23    0.17   -0.05   -0.40   -0.80   -1.16   -1.40   -1.47   -1.36   -1.08   -0.68   -0.24    0.19    0.57    1.01    1.80
+    40.0    0.00    0.05    0.13    0.17    0.09   -0.14   -0.47   -0.85   -1.18   -1.38   -1.42   -1.31   -1.06   -0.71   -0.29    0.17    0.66    1.25    2.12
+    45.0    0.00    0.03    0.09    0.11    0.01   -0.23   -0.57   -0.93   -1.22   -1.37   -1.37   -1.24   -1.01   -0.70   -0.33    0.13    0.70    1.45    2.44
+    50.0    0.00    0.01    0.05    0.04   -0.08   -0.34   -0.68   -1.03   -1.29   -1.39   -1.33   -1.16   -0.93   -0.66   -0.35    0.08    0.71    1.61    2.76
+    55.0    0.00   -0.01    0.01   -0.02   -0.16   -0.45   -0.81   -1.16   -1.39   -1.43   -1.31   -1.07   -0.82   -0.59   -0.34    0.04    0.70    1.72    3.06
+    60.0    0.00   -0.03   -0.02   -0.07   -0.25   -0.56   -0.95   -1.31   -1.51   -1.51   -1.31   -1.00   -0.71   -0.49   -0.30    0.02    0.68    1.82    3.31
+    65.0    0.00   -0.04   -0.06   -0.13   -0.33   -0.67   -1.09   -1.47   -1.67   -1.62   -1.34   -0.95   -0.60   -0.37   -0.23    0.04    0.69    1.90    3.52
+    70.0    0.00   -0.06   -0.09   -0.18   -0.40   -0.77   -1.22   -1.63   -1.84   -1.76   -1.41   -0.94   -0.51   -0.25   -0.12    0.10    0.73    1.98    3.69
+    75.0    0.00   -0.07   -0.12   -0.22   -0.46   -0.86   -1.35   -1.79   -2.01   -1.91   -1.52   -0.96   -0.46   -0.15   -0.01    0.19    0.81    2.07    3.82
+    80.0    0.00   -0.09   -0.15   -0.26   -0.52   -0.94   -1.46   -1.93   -2.18   -2.09   -1.65   -1.03   -0.44   -0.07    0.11    0.32    0.93    2.18    3.92
+    85.0    0.00   -0.10   -0.17   -0.30   -0.56   -1.00   -1.55   -2.06   -2.34   -2.26   -1.81   -1.14   -0.48   -0.03    0.21    0.46    1.07    2.32    4.00
+    90.0    0.00   -0.11   -0.19   -0.32   -0.59   -1.04   -1.61   -2.15   -2.48   -2.42   -1.98   -1.29   -0.57   -0.03    0.28    0.59    1.23    2.46    4.08
+    95.0    0.00   -0.12   -0.21   -0.34   -0.61   -1.07   -1.65   -2.22   -2.58   -2.57   -2.16   -1.45   -0.70   -0.09    0.31    0.69    1.37    2.60    4.16
+   100.0    0.00   -0.13   -0.22   -0.36   -0.63   -1.08   -1.67   -2.27   -2.66   -2.70   -2.32   -1.63   -0.86   -0.20    0.29    0.75    1.49    2.73    4.25
+   105.0    0.00   -0.13   -0.23   -0.37   -0.63   -1.08   -1.67   -2.28   -2.71   -2.79   -2.46   -1.81   -1.04   -0.34    0.22    0.76    1.56    2.82    4.34
+   110.0    0.00   -0.14   -0.24   -0.37   -0.63   -1.07   -1.66   -2.28   -2.73   -2.86   -2.58   -1.97   -1.21   -0.50    0.10    0.71    1.58    2.88    4.41
+   115.0    0.00   -0.14   -0.24   -0.37   -0.63   -1.06   -1.65   -2.26   -2.73   -2.89   -2.66   -2.10   -1.38   -0.67   -0.04    0.62    1.53    2.87    4.47
+   120.0    0.00   -0.14   -0.24   -0.37   -0.62   -1.05   -1.62   -2.24   -2.72   -2.90   -2.71   -2.20   -1.52   -0.83   -0.19    0.49    1.44    2.82    4.49
+   125.0    0.00   -0.15   -0.24   -0.37   -0.61   -1.03   -1.60   -2.21   -2.69   -2.88   -2.72   -2.25   -1.61   -0.96   -0.34    0.35    1.31    2.72    4.47
+   130.0    0.00   -0.15   -0.24   -0.36   -0.60   -1.02   -1.58   -2.18   -2.65   -2.85   -2.71   -2.27   -1.67   -1.05   -0.45    0.21    1.17    2.58    4.40
+   135.0    0.00   -0.14   -0.23   -0.35   -0.59   -1.00   -1.56   -2.15   -2.61   -2.80   -2.66   -2.24   -1.68   -1.09   -0.53    0.11    1.03    2.43    4.27
+   140.0    0.00   -0.14   -0.23   -0.34   -0.58   -0.99   -1.54   -2.12   -2.57   -2.74   -2.60   -2.19   -1.64   -1.09   -0.56    0.04    0.92    2.27    4.11
+   145.0    0.00   -0.14   -0.22   -0.33   -0.56   -0.97   -1.52   -2.09   -2.51   -2.67   -2.52   -2.11   -1.58   -1.04   -0.54    0.03    0.86    2.14    3.92
+   150.0    0.00   -0.13   -0.20   -0.31   -0.54   -0.95   -1.49   -2.04   -2.45   -2.59   -2.42   -2.01   -1.49   -0.97   -0.48    0.06    0.85    2.05    3.72
+   155.0    0.00   -0.12   -0.19   -0.28   -0.51   -0.92   -1.45   -1.99   -2.38   -2.50   -2.32   -1.90   -1.38   -0.87   -0.39    0.14    0.89    2.00    3.54
+   160.0    0.00   -0.11   -0.17   -0.26   -0.48   -0.87   -1.40   -1.92   -2.30   -2.40   -2.21   -1.79   -1.27   -0.76   -0.28    0.25    0.97    2.00    3.38
+   165.0    0.00   -0.11   -0.15   -0.23   -0.44   -0.82   -1.33   -1.84   -2.20   -2.29   -2.10   -1.68   -1.17   -0.66   -0.17    0.36    1.07    2.03    3.28
+   170.0    0.00   -0.10   -0.13   -0.19   -0.39   -0.76   -1.25   -1.75   -2.09   -2.18   -1.99   -1.58   -1.08   -0.58   -0.08    0.47    1.18    2.10    3.22
+   175.0    0.00   -0.08   -0.10   -0.15   -0.33   -0.68   -1.16   -1.64   -1.98   -2.06   -1.88   -1.49   -1.01   -0.52   -0.02    0.54    1.27    2.18    3.23
+   180.0    0.00   -0.07   -0.08   -0.11   -0.27   -0.61   -1.07   -1.53   -1.86   -1.94   -1.77   -1.41   -0.95   -0.49    0.00    0.57    1.32    2.25    3.27
+   185.0    0.00   -0.06   -0.05   -0.07   -0.21   -0.53   -0.97   -1.42   -1.74   -1.83   -1.67   -1.33   -0.91   -0.48   -0.02    0.56    1.33    2.31    3.35
+   190.0    0.00   -0.05   -0.03   -0.03   -0.15   -0.45   -0.87   -1.31   -1.63   -1.73   -1.59   -1.27   -0.89   -0.50   -0.07    0.49    1.29    2.33    3.44
+   195.0    0.00   -0.03    0.00    0.01   -0.09   -0.37   -0.78   -1.22   -1.54   -1.64   -1.51   -1.22   -0.88   -0.53   -0.15    0.39    1.21    2.31    3.52
+   200.0    0.00   -0.02    0.03    0.05   -0.04   -0.30   -0.71   -1.14   -1.46   -1.57   -1.46   -1.19   -0.88   -0.58   -0.25    0.26    1.09    2.26    3.59
+   205.0    0.00   -0.01    0.05    0.09    0.01   -0.24   -0.64   -1.08   -1.40   -1.52   -1.42   -1.17   -0.89   -0.63   -0.36    0.11    0.94    2.18    3.63
+   210.0    0.00    0.01    0.08    0.13    0.05   -0.20   -0.59   -1.03   -1.37   -1.49   -1.40   -1.16   -0.90   -0.69   -0.46   -0.03    0.80    2.09    3.64
+   215.0    0.00    0.02    0.10    0.16    0.09   -0.16   -0.56   -1.00   -1.34   -1.48   -1.39   -1.17   -0.93   -0.75   -0.55   -0.16    0.66    1.99    3.63
+   220.0    0.00    0.03    0.12    0.19    0.12   -0.13   -0.53   -0.98   -1.33   -1.47   -1.40   -1.18   -0.96   -0.80   -0.63   -0.26    0.55    1.91    3.61
+   225.0    0.00    0.05    0.15    0.21    0.15   -0.10   -0.51   -0.97   -1.33   -1.48   -1.41   -1.22   -1.01   -0.86   -0.70   -0.34    0.48    1.86    3.60
+   230.0    0.00    0.06    0.17    0.24    0.17   -0.08   -0.50   -0.96   -1.32   -1.49   -1.44   -1.26   -1.06   -0.91   -0.76   -0.39    0.43    1.84    3.61
+   235.0    0.00    0.07    0.19    0.26    0.19   -0.07   -0.48   -0.95   -1.32   -1.50   -1.47   -1.31   -1.12   -0.97   -0.81   -0.42    0.42    1.85    3.66
+   240.0    0.00    0.09    0.21    0.28    0.21   -0.05   -0.47   -0.93   -1.32   -1.51   -1.51   -1.36   -1.19   -1.04   -0.85   -0.44    0.44    1.90    3.75
+   245.0    0.00    0.10    0.23    0.30    0.23   -0.03   -0.45   -0.92   -1.31   -1.52   -1.54   -1.43   -1.26   -1.11   -0.89   -0.44    0.48    1.98    3.89
+   250.0    0.00    0.11    0.25    0.32    0.25   -0.01   -0.43   -0.90   -1.30   -1.53   -1.58   -1.49   -1.34   -1.18   -0.93   -0.44    0.52    2.07    4.05
+   255.0    0.00    0.13    0.27    0.34    0.27    0.01   -0.40   -0.87   -1.29   -1.55   -1.63   -1.57   -1.43   -1.25   -0.97   -0.43    0.57    2.17    4.23
+   260.0    0.00    0.14    0.29    0.37    0.30    0.04   -0.37   -0.85   -1.28   -1.57   -1.68   -1.65   -1.51   -1.31   -1.00   -0.42    0.62    2.26    4.41
+   265.0    0.00    0.15    0.31    0.39    0.33    0.07   -0.34   -0.83   -1.28   -1.60   -1.74   -1.73   -1.59   -1.37   -1.02   -0.40    0.67    2.34    4.54
+   270.0    0.00    0.16    0.33    0.42    0.36    0.10   -0.31   -0.81   -1.29   -1.64   -1.82   -1.81   -1.67   -1.41   -1.02   -0.37    0.72    2.39    4.63
+   275.0    0.00    0.17    0.35    0.45    0.39    0.14   -0.28   -0.80   -1.31   -1.69   -1.90   -1.90   -1.74   -1.44   -1.00   -0.31    0.77    2.42    4.64
+   280.0    0.00    0.18    0.36    0.47    0.43    0.18   -0.26   -0.80   -1.33   -1.75   -1.98   -1.99   -1.80   -1.45   -0.95   -0.24    0.83    2.42    4.56
+   285.0    0.00    0.19    0.38    0.50    0.46    0.21   -0.23   -0.79   -1.36   -1.82   -2.07   -2.08   -1.85   -1.44   -0.89   -0.15    0.89    2.39    4.41
+   290.0    0.00    0.20    0.40    0.53    0.50    0.25   -0.20   -0.79   -1.40   -1.89   -2.16   -2.15   -1.88   -1.42   -0.80   -0.05    0.95    2.33    4.18
+   295.0    0.00    0.20    0.42    0.56    0.53    0.29   -0.18   -0.79   -1.43   -1.95   -2.23   -2.21   -1.90   -1.38   -0.71    0.06    1.00    2.24    3.89
+   300.0    0.00    0.21    0.43    0.59    0.57    0.32   -0.16   -0.79   -1.45   -1.99   -2.28   -2.25   -1.90   -1.32   -0.62    0.15    1.02    2.13    3.57
+   305.0    0.00    0.21    0.45    0.61    0.60    0.35   -0.14   -0.79   -1.47   -2.02   -2.31   -2.25   -1.88   -1.26   -0.54    0.22    1.02    1.98    3.23
+   310.0    0.00    0.22    0.46    0.63    0.63    0.38   -0.12   -0.78   -1.48   -2.03   -2.31   -2.23   -1.83   -1.20   -0.47    0.25    0.97    1.80    2.90
+   315.0    0.00    0.22    0.47    0.65    0.65    0.40   -0.10   -0.78   -1.47   -2.02   -2.28   -2.18   -1.76   -1.12   -0.42    0.24    0.87    1.59    2.59
+   320.0    0.00    0.22    0.47    0.66    0.66    0.41   -0.09   -0.77   -1.45   -1.98   -2.22   -2.10   -1.66   -1.04   -0.39    0.19    0.72    1.35    2.31
+   325.0    0.00    0.22    0.48    0.67    0.67    0.42   -0.09   -0.76   -1.43   -1.94   -2.14   -1.99   -1.55   -0.96   -0.38    0.10    0.53    1.08    2.08
+   330.0    0.00    0.22    0.48    0.67    0.68    0.42   -0.09   -0.75   -1.41   -1.88   -2.04   -1.86   -1.43   -0.88   -0.38   -0.01    0.30    0.80    1.87
+   335.0    0.00    0.21    0.47    0.67    0.67    0.42   -0.09   -0.75   -1.38   -1.81   -1.94   -1.73   -1.30   -0.79   -0.38   -0.14    0.05    0.50    1.69
+   340.0    0.00    0.21    0.46    0.66    0.66    0.40   -0.10   -0.75   -1.35   -1.75   -1.84   -1.61   -1.17   -0.71   -0.39   -0.26   -0.18    0.23    1.54
+   345.0    0.00    0.20    0.45    0.64    0.64    0.39   -0.12   -0.75   -1.33   -1.70   -1.75   -1.49   -1.05   -0.63   -0.38   -0.35   -0.38   -0.02    1.40
+   350.0    0.00    0.19    0.44    0.62    0.62    0.36   -0.13   -0.75   -1.32   -1.66   -1.68   -1.40   -0.96   -0.55   -0.36   -0.41   -0.52   -0.21    1.27
+   355.0    0.00    0.18    0.42    0.60    0.59    0.33   -0.15   -0.76   -1.30   -1.62   -1.63   -1.34   -0.90   -0.50   -0.32   -0.42   -0.60   -0.34    1.15
+   360.0    0.00    0.17    0.40    0.57    0.56    0.30   -0.17   -0.76   -1.29   -1.60   -1.60   -1.31   -0.86   -0.46   -0.28   -0.39   -0.59   -0.39    1.06
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.76      0.50     90.43                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.04   -0.14   -0.26   -0.38   -0.51   -0.68   -0.91   -1.17   -1.36   -1.32   -0.95   -0.31    0.40    0.87    0.86    0.38   -0.20   -0.20
+     0.0    0.00   -0.17   -0.42   -0.70   -0.96   -1.16   -1.29   -1.37   -1.41   -1.35   -1.13   -0.68   -0.02    0.67    1.10    1.05    0.51   -0.05    0.37
+     5.0    0.00   -0.16   -0.39   -0.67   -0.93   -1.13   -1.27   -1.36   -1.42   -1.39   -1.20   -0.75   -0.08    0.65    1.12    1.07    0.50   -0.08    0.34
+    10.0    0.00   -0.14   -0.37   -0.64   -0.90   -1.09   -1.23   -1.35   -1.43   -1.44   -1.28   -0.84   -0.14    0.63    1.15    1.12    0.53   -0.11    0.29
+    15.0    0.00   -0.12   -0.34   -0.60   -0.85   -1.05   -1.20   -1.33   -1.44   -1.50   -1.36   -0.93   -0.21    0.61    1.18    1.18    0.58   -0.11    0.22
+    20.0    0.00   -0.10   -0.31   -0.56   -0.81   -1.00   -1.16   -1.30   -1.46   -1.55   -1.45   -1.03   -0.29    0.58    1.21    1.25    0.64   -0.10    0.14
+    25.0    0.00   -0.08   -0.27   -0.52   -0.76   -0.95   -1.11   -1.28   -1.47   -1.60   -1.54   -1.13   -0.37    0.54    1.23    1.31    0.71   -0.08    0.07
+    30.0    0.00   -0.06   -0.24   -0.47   -0.70   -0.90   -1.07   -1.25   -1.47   -1.65   -1.62   -1.23   -0.46    0.48    1.22    1.34    0.76   -0.05    0.01
+    35.0    0.00   -0.04   -0.20   -0.42   -0.65   -0.84   -1.02   -1.23   -1.48   -1.68   -1.68   -1.32   -0.56    0.41    1.17    1.33    0.78   -0.02   -0.02
+    40.0    0.00   -0.02   -0.16   -0.37   -0.59   -0.78   -0.97   -1.20   -1.47   -1.71   -1.74   -1.40   -0.65    0.31    1.09    1.28    0.77    0.00   -0.04
+    45.0    0.00    0.00   -0.12   -0.32   -0.53   -0.72   -0.92   -1.17   -1.47   -1.73   -1.78   -1.46   -0.74    0.20    0.97    1.18    0.72    0.00   -0.04
+    50.0    0.00    0.02   -0.08   -0.26   -0.46   -0.66   -0.87   -1.14   -1.45   -1.73   -1.81   -1.51   -0.82    0.08    0.82    1.04    0.63   -0.02   -0.05
+    55.0    0.00    0.04   -0.04   -0.20   -0.40   -0.60   -0.82   -1.10   -1.43   -1.73   -1.82   -1.55   -0.89   -0.04    0.66    0.87    0.50   -0.08   -0.07
+    60.0    0.00    0.06    0.00   -0.14   -0.32   -0.53   -0.76   -1.06   -1.40   -1.71   -1.81   -1.56   -0.95   -0.15    0.49    0.67    0.33   -0.18   -0.14
+    65.0    0.00    0.08    0.05   -0.08   -0.25   -0.45   -0.69   -1.00   -1.36   -1.67   -1.79   -1.56   -0.99   -0.25    0.33    0.47    0.14   -0.32   -0.24
+    70.0    0.00    0.10    0.09   -0.01   -0.17   -0.36   -0.61   -0.93   -1.31   -1.63   -1.75   -1.54   -1.00   -0.32    0.19    0.28   -0.07   -0.51   -0.41
+    75.0    0.00    0.12    0.13    0.05   -0.09   -0.27   -0.52   -0.85   -1.24   -1.57   -1.70   -1.50   -1.00   -0.37    0.08    0.11   -0.28   -0.72   -0.62
+    80.0    0.00    0.14    0.17    0.11    0.00   -0.17   -0.42   -0.76   -1.15   -1.49   -1.63   -1.45   -0.97   -0.38    0.01   -0.03   -0.47   -0.95   -0.87
+    85.0    0.00    0.15    0.21    0.18    0.08   -0.07   -0.31   -0.65   -1.05   -1.40   -1.55   -1.37   -0.91   -0.36   -0.03   -0.14   -0.65   -1.18   -1.14
+    90.0    0.00    0.17    0.24    0.24    0.17    0.03   -0.20   -0.53   -0.94   -1.30   -1.45   -1.28   -0.83   -0.31   -0.02   -0.20   -0.79   -1.40   -1.41
+    95.0    0.00    0.18    0.27    0.29    0.25    0.14   -0.08   -0.41   -0.82   -1.18   -1.34   -1.17   -0.73   -0.23    0.02   -0.22   -0.89   -1.58   -1.66
+   100.0    0.00    0.19    0.30    0.34    0.33    0.24    0.04   -0.29   -0.69   -1.06   -1.21   -1.05   -0.61   -0.12    0.09   -0.21   -0.96   -1.73   -1.85
+   105.0    0.00    0.20    0.33    0.39    0.40    0.33    0.15   -0.16   -0.57   -0.93   -1.08   -0.92   -0.48    0.00    0.19   -0.16   -0.98   -1.83   -1.98
+   110.0    0.00    0.21    0.35    0.43    0.46    0.41    0.25   -0.05   -0.44   -0.80   -0.94   -0.77   -0.33    0.14    0.30   -0.09   -0.96   -1.86   -2.03
+   115.0    0.00    0.22    0.36    0.46    0.50    0.48    0.33    0.05   -0.33   -0.67   -0.80   -0.63   -0.19    0.28    0.42    0.01   -0.91   -1.84   -2.02
+   120.0    0.00    0.22    0.37    0.48    0.54    0.53    0.40    0.13   -0.23   -0.55   -0.67   -0.48   -0.04    0.41    0.55    0.11   -0.82   -1.77   -1.93
+   125.0    0.00    0.22    0.38    0.49    0.56    0.56    0.44    0.19   -0.15   -0.44   -0.54   -0.34    0.10    0.54    0.67    0.23   -0.70   -1.66   -1.81
+   130.0    0.00    0.22    0.38    0.50    0.57    0.57    0.46    0.23   -0.09   -0.36   -0.44   -0.22    0.22    0.67    0.79    0.36   -0.56   -1.51   -1.66
+   135.0    0.00    0.21    0.37    0.49    0.56    0.57    0.47    0.24   -0.05   -0.30   -0.35   -0.12    0.33    0.77    0.90    0.49   -0.41   -1.34   -1.51
+   140.0    0.00    0.21    0.36    0.48    0.55    0.55    0.45    0.24   -0.04   -0.26   -0.29   -0.04    0.41    0.86    1.00    0.61   -0.25   -1.17   -1.38
+   145.0    0.00    0.20    0.35    0.45    0.52    0.52    0.42    0.21   -0.05   -0.25   -0.25    0.00    0.46    0.92    1.08    0.73   -0.10   -1.01   -1.28
+   150.0    0.00    0.19    0.33    0.43    0.48    0.48    0.38    0.18   -0.07   -0.26   -0.25    0.02    0.49    0.96    1.15    0.84    0.05   -0.87   -1.23
+   155.0    0.00    0.18    0.30    0.39    0.44    0.43    0.32    0.12   -0.12   -0.30   -0.28    0.00    0.48    0.97    1.20    0.93    0.18   -0.75   -1.21
+   160.0    0.00    0.16    0.28    0.35    0.39    0.38    0.27    0.06   -0.18   -0.35   -0.33   -0.04    0.45    0.96    1.22    1.00    0.28   -0.65   -1.22
+   165.0    0.00    0.15    0.24    0.31    0.34    0.32    0.21    0.00   -0.25   -0.43   -0.41   -0.12    0.39    0.92    1.21    1.04    0.35   -0.59   -1.25
+   170.0    0.00    0.13    0.21    0.26    0.29    0.26    0.15   -0.07   -0.33   -0.52   -0.50   -0.21    0.30    0.86    1.18    1.04    0.39   -0.55   -1.27
+   175.0    0.00    0.11    0.17    0.21    0.23    0.20    0.08   -0.14   -0.41   -0.62   -0.61   -0.33    0.20    0.77    1.12    1.00    0.38   -0.53   -1.27
+   180.0    0.00    0.09    0.13    0.16    0.17    0.14    0.02   -0.21   -0.50   -0.72   -0.73   -0.45    0.08    0.67    1.03    0.93    0.34   -0.54   -1.24
+   185.0    0.00    0.07    0.09    0.10    0.11    0.07   -0.05   -0.29   -0.59   -0.83   -0.86   -0.58   -0.05    0.54    0.91    0.83    0.27   -0.55   -1.17
+   190.0    0.00    0.05    0.05    0.04    0.04    0.01   -0.12   -0.37   -0.68   -0.94   -0.98   -0.71   -0.18    0.41    0.78    0.70    0.17   -0.56   -1.05
+   195.0    0.00    0.03    0.00   -0.02   -0.03   -0.06   -0.19   -0.45   -0.78   -1.05   -1.10   -0.83   -0.30    0.28    0.63    0.55    0.05   -0.58   -0.91
+   200.0    0.00    0.00   -0.04   -0.08   -0.10   -0.14   -0.28   -0.54   -0.88   -1.16   -1.22   -0.95   -0.43    0.15    0.48    0.39   -0.06   -0.58   -0.75
+   205.0    0.00   -0.02   -0.09   -0.14   -0.18   -0.22   -0.36   -0.63   -0.98   -1.27   -1.32   -1.06   -0.54    0.02    0.34    0.25   -0.16   -0.58   -0.58
+   210.0    0.00   -0.04   -0.13   -0.21   -0.25   -0.31   -0.46   -0.73   -1.08   -1.37   -1.42   -1.16   -0.64   -0.09    0.21    0.12   -0.25   -0.55   -0.42
+   215.0    0.00   -0.06   -0.18   -0.27   -0.33   -0.40   -0.56   -0.83   -1.19   -1.47   -1.51   -1.24   -0.72   -0.19    0.10    0.03   -0.29   -0.51   -0.27
+   220.0    0.00   -0.09   -0.22   -0.34   -0.42   -0.50   -0.66   -0.94   -1.29   -1.56   -1.59   -1.31   -0.79   -0.26    0.03   -0.03   -0.30   -0.44   -0.14
+   225.0    0.00   -0.11   -0.26   -0.40   -0.50   -0.59   -0.76   -1.04   -1.38   -1.64   -1.67   -1.37   -0.85   -0.31   -0.01   -0.04   -0.27   -0.35   -0.03
+   230.0    0.00   -0.13   -0.30   -0.46   -0.57   -0.69   -0.86   -1.14   -1.47   -1.72   -1.73   -1.42   -0.88   -0.34   -0.01   -0.01   -0.19   -0.23    0.07
+   235.0    0.00   -0.15   -0.34   -0.52   -0.65   -0.77   -0.96   -1.24   -1.56   -1.79   -1.78   -1.46   -0.90   -0.33    0.02    0.06   -0.08   -0.10    0.16
+   240.0    0.00   -0.17   -0.38   -0.57   -0.72   -0.86   -1.05   -1.32   -1.63   -1.85   -1.82   -1.48   -0.90   -0.30    0.09    0.17    0.06    0.05    0.25
+   245.0    0.00   -0.18   -0.41   -0.62   -0.78   -0.93   -1.12   -1.39   -1.69   -1.89   -1.85   -1.49   -0.88   -0.25    0.18    0.31    0.23    0.20    0.37
+   250.0    0.00   -0.20   -0.44   -0.66   -0.83   -0.99   -1.18   -1.45   -1.74   -1.93   -1.87   -1.48   -0.85   -0.17    0.31    0.47    0.40    0.36    0.49
+   255.0    0.00   -0.21   -0.46   -0.69   -0.87   -1.03   -1.23   -1.50   -1.78   -1.96   -1.88   -1.47   -0.79   -0.07    0.46    0.65    0.58    0.52    0.64
+   260.0    0.00   -0.23   -0.49   -0.72   -0.91   -1.07   -1.27   -1.53   -1.80   -1.97   -1.88   -1.44   -0.72    0.06    0.63    0.83    0.75    0.66    0.80
+   265.0    0.00   -0.24   -0.51   -0.75   -0.93   -1.10   -1.29   -1.54   -1.81   -1.97   -1.86   -1.39   -0.63    0.20    0.81    1.02    0.91    0.78    0.95
+   270.0    0.00   -0.25   -0.52   -0.76   -0.95   -1.11   -1.30   -1.55   -1.81   -1.97   -1.84   -1.34   -0.53    0.35    0.99    1.21    1.05    0.87    1.09
+   275.0    0.00   -0.26   -0.53   -0.78   -0.96   -1.12   -1.30   -1.54   -1.81   -1.95   -1.81   -1.28   -0.43    0.50    1.18    1.38    1.17    0.93    1.19
+   280.0    0.00   -0.26   -0.54   -0.79   -0.97   -1.12   -1.29   -1.53   -1.79   -1.93   -1.77   -1.21   -0.32    0.66    1.36    1.55    1.27    0.95    1.24
+   285.0    0.00   -0.27   -0.55   -0.79   -0.97   -1.11   -1.28   -1.51   -1.76   -1.89   -1.72   -1.14   -0.21    0.81    1.53    1.69    1.35    0.95    1.24
+   290.0    0.00   -0.27   -0.55   -0.80   -0.97   -1.11   -1.27   -1.49   -1.73   -1.85   -1.66   -1.06   -0.10    0.94    1.67    1.81    1.40    0.92    1.18
+   295.0    0.00   -0.27   -0.55   -0.80   -0.97   -1.11   -1.26   -1.47   -1.69   -1.80   -1.60   -0.98   -0.01    1.05    1.79    1.91    1.43    0.86    1.07
+   300.0    0.00   -0.27   -0.55   -0.80   -0.97   -1.11   -1.25   -1.45   -1.66   -1.74   -1.53   -0.90    0.07    1.13    1.87    1.97    1.45    0.79    0.92
+   305.0    0.00   -0.27   -0.55   -0.80   -0.98   -1.11   -1.25   -1.43   -1.62   -1.68   -1.46   -0.83    0.14    1.19    1.91    2.00    1.43    0.71    0.74
+   310.0    0.00   -0.27   -0.55   -0.80   -0.98   -1.12   -1.25   -1.41   -1.58   -1.62   -1.38   -0.76    0.19    1.21    1.91    1.98    1.40    0.62    0.57
+   315.0    0.00   -0.26   -0.54   -0.80   -0.99   -1.13   -1.26   -1.40   -1.54   -1.55   -1.31   -0.70    0.22    1.20    1.87    1.93    1.34    0.54    0.41
+   320.0    0.00   -0.26   -0.54   -0.79   -0.99   -1.14   -1.27   -1.39   -1.50   -1.49   -1.23   -0.64    0.23    1.16    1.80    1.84    1.26    0.46    0.29
+   325.0    0.00   -0.25   -0.53   -0.79   -1.00   -1.16   -1.28   -1.39   -1.47   -1.43   -1.17   -0.60    0.23    1.10    1.70    1.73    1.16    0.38    0.22
+   330.0    0.00   -0.24   -0.52   -0.79   -1.01   -1.17   -1.29   -1.39   -1.44   -1.38   -1.11   -0.57    0.22    1.03    1.58    1.59    1.04    0.30    0.19
+   335.0    0.00   -0.23   -0.51   -0.78   -1.01   -1.18   -1.30   -1.39   -1.42   -1.34   -1.07   -0.54    0.19    0.95    1.46    1.45    0.92    0.24    0.20
+   340.0    0.00   -0.22   -0.49   -0.77   -1.01   -1.19   -1.31   -1.39   -1.40   -1.32   -1.04   -0.54    0.16    0.88    1.34    1.32    0.80    0.17    0.24
+   345.0    0.00   -0.21   -0.48   -0.76   -1.01   -1.20   -1.32   -1.39   -1.40   -1.30   -1.04   -0.55    0.12    0.80    1.24    1.20    0.69    0.11    0.29
+   350.0    0.00   -0.20   -0.46   -0.74   -1.00   -1.19   -1.32   -1.39   -1.40   -1.31   -1.05   -0.57    0.08    0.75    1.16    1.11    0.60    0.05    0.34
+   355.0    0.00   -0.19   -0.44   -0.72   -0.98   -1.18   -1.31   -1.38   -1.40   -1.32   -1.08   -0.62    0.03    0.70    1.12    1.06    0.54    0.00    0.37
+   360.0    0.00   -0.17   -0.42   -0.70   -0.96   -1.16   -1.29   -1.37   -1.41   -1.35   -1.13   -0.68   -0.02    0.67    1.10    1.05    0.51   -0.05    0.37
+   G02                                                      END OF FREQUENCY    
+   R01                                                      START OF FREQUENCY  
+      0.54      0.15     91.05                              NORTH / EAST / UP   
+   NOAZI    0.00    0.01    0.00   -0.06   -0.24   -0.56   -1.02   -1.54   -2.02   -2.34   -2.40   -2.25   -1.91   -1.50   -1.11   -0.72   -0.18    0.77    2.36
+     0.0    0.00    0.03    0.06    0.03   -0.12   -0.45   -0.96   -1.59   -2.23   -2.75   -3.00   -2.96   -2.66   -2.30   -2.10   -2.26   -2.68   -2.90   -1.93
+     5.0    0.00    0.02    0.04   -0.53   -0.15   -0.47   -0.97   -1.58   -2.22   -2.73   -2.97   -2.92   -2.59   -2.18   -1.95   -2.07   -2.49   -2.71   -1.76
+    10.0    0.00    0.01    0.01   -0.02   -0.18   -0.49   -0.98   -1.58   -2.20   -2.71   -2.95   -2.87   -2.53   -2.09   -1.80   -1.86   -2.22   -2.42   -1.51
+    15.0    0.00   -0.13   -0.01   -0.06   -0.21   -0.51   -0.98   -1.57   -2.19   -2.68   -2.91   -2.84   -2.47   -2.00   -1.67   -1.66   -1.92   -2.05   -1.14
+    20.0    0.00   -0.01   -0.03   -0.08   -0.24   -0.54   -0.99   -1.57   -2.17   -2.63   -2.86   -2.77   -2.41   -1.93   -1.55   -1.47   -1.61   -1.61   -0.67
+    25.0    0.00   -0.02   -0.05   -0.12   -0.27   -0.57   -1.01   -1.56   -2.13   -2.58   -2.78   -2.70   -2.35   -1.86   -1.47   -1.29   -1.29   -1.12   -0.13
+    30.0    0.00   -0.04   -0.07   -0.15   -0.31   -0.61   -1.04   -1.57   -2.08   -2.50   -2.69   -2.59   -2.25   -1.80   -1.39   -1.14   -0.99   -0.64    0.46
+    35.0    0.00   -0.05   -0.09   -0.17   -0.35   -0.65   -1.07   -1.57   -2.05   -2.42   -2.57   -2.47   -2.15   -1.73   -1.34   -1.01   -0.72   -0.17    1.06
+    40.0    0.00   -0.05   -0.11   -0.20   -0.39   -0.69   -1.10   -1.57   -2.02   -2.34   -2.44   -2.33   -2.03   -1.66   -1.28   -0.91   -0.48    0.27    1.65
+    45.0    0.00   -0.06   -0.13   -0.23   -0.43   -0.73   -1.13   -1.59   -2.00   -2.25   -2.31   -2.18   -1.89   -1.54   -1.20   -0.82   -0.27    0.66    2.17
+    50.0    0.00   -0.06   -0.15   -0.27   -0.47   -0.79   -1.18   -1.61   -1.98   -2.19   -2.19   -2.01   -1.73   -1.41   -1.10   -0.72   -0.09    0.99    2.63
+    55.0    0.00   -0.08   -0.17   -0.30   -0.50   -0.83   -1.24   -1.66   -2.00   -2.14   -2.10   -1.86   -1.55   -1.26   -0.98   -0.61    0.06    1.24    3.00
+    60.0    0.00   -0.09   -0.17   -0.30   -0.54   -0.88   -1.29   -1.71   -2.02   -2.14   -2.02   -1.73   -1.39   -1.09   -0.82   -0.48    0.19    1.45    3.25
+    65.0    0.00   -0.09   -0.19   -0.33   -0.57   -0.93   -1.36   -1.79   -2.08   -2.16   -1.99   -1.63   -1.23   -0.89   -0.64   -0.33    0.33    1.58    3.41
+    70.0    0.00   -0.10   -0.20   -0.35   -0.59   -0.96   -1.41   -1.86   -2.17   -2.23   -1.99   -1.58   -1.08   -0.70   -0.44   -0.16    0.45    1.68    3.52
+    75.0    0.00   -0.10   -0.21   -0.35   -0.61   -0.99   -1.47   -1.95   -2.27   -2.31   -2.06   -1.56   -0.99   -0.53   -0.25    0.01    0.58    1.75    3.60
+    80.0    0.00   -0.11   -0.21   -0.36   -0.63   -1.01   -1.52   -2.03   -2.38   -2.45   -2.15   -1.58   -0.92   -0.40   -0.06    0.18    0.69    1.81    3.64
+    85.0    0.00   -0.11   -0.21   -0.36   -0.62   -1.03   -1.57   -2.11   -2.50   -2.58   -2.28   -1.65   -0.92   -0.31    0.08    0.34    0.79    1.87    3.72
+    90.0    0.00   -0.11   -0.21   -0.36   -0.62   -1.04   -1.60   -2.17   -2.62   -2.72   -2.42   -1.77   -0.95   -0.25    0.18    0.46    0.90    1.95    3.84
+    95.0    0.00   -0.11   -0.21   -0.35   -0.61   -1.04   -1.62   -2.23   -2.71   -2.86   -2.57   -1.89   -1.04   -0.27    0.22    0.53    0.98    2.05    4.01
+   100.0    0.00   -0.11   -0.20   -0.35   -0.60   -1.03   -1.62   -2.28   -2.79   -2.99   -2.71   -2.03   -1.16   -0.34    0.22    0.56    1.05    2.18    4.23
+   105.0    0.00   -0.10   -0.20   -0.34   -0.58   -1.02   -1.61   -2.29   -2.84   -3.07   -2.83   -2.18   -1.30   -0.46    0.16    0.56    1.10    2.31    4.50
+   110.0    0.00   -0.11   -0.20   -0.32   -0.57   -0.98   -1.60   -2.28   -2.86   -3.13   -2.93   -2.30   -1.43   -0.59    0.04    0.51    1.14    2.45    4.76
+   115.0    0.00   -0.10   -0.18   -0.30   -0.54   -0.96   -1.58   -2.26   -2.85   -3.13   -2.98   -2.40   -1.57   -0.73   -0.09    0.44    1.17    2.59    5.03
+   120.0    0.00   -0.09   -0.17   -0.28   -0.52   -0.94   -1.53   -2.22   -2.82   -3.11   -2.99   -2.46   -1.68   -0.88   -0.22    0.36    1.20    2.73    5.24
+   125.0    0.00   -0.10   -0.15   -0.27   -0.49   -0.90   -1.49   -2.17   -2.75   -3.05   -2.95   -2.47   -1.75   -0.99   -0.34    0.30    1.22    2.85    5.41
+   130.0    0.00   -0.09   -0.15   -0.25   -0.47   -0.88   -1.45   -2.11   -2.66   -2.97   -2.89   -2.45   -1.78   -1.07   -0.42    0.25    1.26    2.92    5.48
+   135.0    0.00   -0.08   -0.13   -0.24   -0.46   -0.85   -1.40   -2.03   -2.58   -2.85   -2.79   -2.38   -1.77   -1.09   -0.46    0.25    1.29    2.98    5.46
+   140.0    0.00   -0.08   -0.13   -0.22   -0.44   -0.82   -1.36   -1.96   -2.47   -2.74   -2.67   -2.29   -1.70   -1.08   -0.45    0.26    1.32    2.99    5.36
+   145.0    0.00   -0.08   -0.12   -0.21   -0.42   -0.80   -1.32   -1.90   -2.37   -2.61   -2.54   -2.17   -1.62   -1.02   -0.40    0.33    1.38    2.98    5.21
+   150.0    0.00   -0.07   -0.10   -0.20   -0.40   -0.77   -1.28   -1.82   -2.27   -2.48   -2.40   -2.04   -1.52   -0.94   -0.33    0.39    1.42    2.95    5.01
+   155.0    0.00   -0.06   -0.09   -0.17   -0.38   -0.74   -1.23   -1.75   -2.17   -2.36   -2.27   -1.90   -1.39   -0.83   -0.23    0.48    1.47    2.90    4.81
+   160.0    0.00   -0.05   -0.08   -0.16   -0.36   -0.70   -1.18   -1.68   -2.08   -2.24   -2.14   -1.78   -1.28   -0.73   -0.13    0.56    1.51    2.85    4.60
+   165.0    0.00   -0.05   -0.08   -0.16   -0.34   -0.67   -1.13   -1.60   -1.98   -2.13   -2.03   -1.67   -1.18   -0.64   -0.05    0.62    1.53    2.78    4.46
+   170.0    0.00   -0.04   -0.06   -0.13   -0.32   -0.64   -1.07   -1.53   -1.88   -2.03   -1.93   -1.59   -1.11   -0.58   -0.01    0.65    1.52    2.72    4.34
+   175.0    0.00   -0.02   -0.04   -0.11   -0.29   -0.58   -1.00   -1.44   -1.79   -1.93   -1.84   -1.52   -1.07   -0.55    0.01    0.64    1.48    2.66    4.29
+   180.0    0.00   -0.02   -0.03   -0.09   -0.25   -0.56   -0.94   -1.36   -1.69   -1.83   -1.77   -1.48   -1.05   -0.56   -0.02    0.59    1.42    2.59    4.26
+   185.0    0.00   -0.01   -0.01   -0.07   -0.22   -0.51   -0.88   -1.28   -1.60   -1.76   -1.70   -1.45   -1.06   -0.60   -0.09    0.51    1.32    2.52    4.26
+   190.0    0.00    0.05   -0.01   -0.05   -0.19   -0.46   -0.82   -1.19   -1.51   -1.69   -1.65   -1.44   -1.09   -0.67   -0.20    0.38    1.20    2.44    4.27
+   195.0    0.00    0.01    0.01   -0.03   -0.16   -0.42   -0.76   -1.12   -1.44   -1.61   -1.61   -1.43   -1.14   -0.76   -0.32    0.25    1.07    2.33    4.24
+   200.0    0.00    0.02    0.03   -0.01   -0.15   -0.39   -0.72   -1.07   -1.36   -1.55   -1.58   -1.43   -1.19   -0.86   -0.46    0.09    0.93    2.23    4.20
+   205.0    0.00    0.02    0.04   -0.09   -0.13   -0.36   -0.67   -1.03   -1.31   -1.50   -1.54   -1.44   -1.24   -0.96   -0.60   -0.07    0.76    2.09    4.11
+   210.0    0.00    0.04    0.06    0.02   -0.11   -0.35   -0.64   -0.99   -1.27   -1.46   -1.52   -1.44   -1.27   -1.05   -0.74   -0.23    0.61    1.96    3.97
+   215.0    0.00    0.04    0.07    0.03   -0.10   -0.33   -0.63   -0.97   -1.24   -1.44   -1.49   -1.45   -1.32   -1.14   -0.86   -0.38    0.45    1.81    3.81
+   220.0    0.00    0.05    0.08    0.05   -0.09   -0.32   -0.64   -0.96   -1.23   -1.42   -1.49   -1.44   -1.34   -1.20   -0.97   -0.53    0.29    1.65    3.63
+   225.0    0.00    0.06    0.10    0.06   -0.07   -0.31   -0.64   -0.97   -1.24   -1.42   -1.47   -1.45   -1.38   -1.27   -1.07   -0.67    0.15    1.51    3.46
+   230.0    0.00    0.07    0.11    0.08   -0.06   -0.31   -0.65   -0.98   -1.26   -1.44   -1.49   -1.47   -1.41   -1.32   -1.17   -0.79   -0.01    1.37    3.32
+   235.0    0.00    0.07    0.12    0.09   -0.07   -0.33   -0.66   -1.01   -1.29   -1.47   -1.52   -1.50   -1.45   -1.40   -1.27   -0.91   -0.13    1.25    3.23
+   240.0    0.00    0.08    0.14    0.10   -0.05   -0.32   -0.67   -1.03   -1.33   -1.51   -1.57   -1.55   -1.51   -1.47   -1.36   -1.04   -0.25    1.16    3.21
+   245.0    0.00    0.09    0.14    0.11   -0.04   -0.32   -0.68   -1.07   -1.38   -1.57   -1.65   -1.63   -1.58   -1.55   -1.44   -1.13   -0.35    1.10    3.23
+   250.0    0.00    0.09    0.15    0.13   -0.03   -0.31   -0.70   -1.10   -1.44   -1.65   -1.74   -1.72   -1.68   -1.64   -1.54   -1.23   -0.44    1.06    3.28
+   255.0    0.00    0.11    0.16    0.14   -0.01   -0.30   -0.70   -1.11   -1.50   -1.75   -1.86   -1.86   -1.80   -1.74   -1.63   -1.30   -0.49    1.05    3.37
+   260.0    0.00    0.11    0.17    0.16    0.01   -0.28   -0.69   -1.15   -1.57   -1.86   -2.00   -2.02   -1.95   -1.85   -1.71   -1.36   -0.53    1.05    3.46
+   265.0    0.00    0.11    0.19    0.17    0.03   -0.27   -0.69   -1.18   -1.64   -1.98   -2.17   -2.20   -2.11   -1.98   -1.79   -1.39   -0.53    1.06    3.50
+   270.0    0.00    0.12    0.20    0.19    0.05   -0.25   -0.68   -1.20   -1.72   -2.12   -2.35   -2.38   -2.30   -2.10   -1.85   -1.40   -0.51    1.06    3.49
+   275.0    0.00    0.12    0.20    0.21    0.07   -0.23   -0.68   -1.24   -1.80   -2.25   -2.54   -2.59   -2.47   -2.23   -1.89   -1.37   -0.50    1.05    3.40
+   280.0    0.00    0.12    0.20    0.21    0.09   -0.21   -0.70   -1.28   -1.88   -2.39   -2.72   -2.81   -2.66   -2.34   -1.92   -1.35   -0.46    1.01    3.20
+   285.0    0.00    0.12    0.21    0.22    0.09   -0.22   -0.70   -1.31   -1.96   -2.53   -2.90   -3.00   -2.83   -2.45   -1.95   -1.32   -0.44    0.92    2.92
+   290.0    0.00    0.13    0.21    0.22    0.10   -0.21   -0.71   -1.35   -2.05   -2.67   -3.07   -3.18   -2.99   -2.56   -1.97   -1.30   -0.44    0.79    2.55
+   295.0    0.00    0.11    0.22    0.23    0.09   -0.21   -0.73   -1.40   -2.12   -2.78   -3.21   -3.33   -3.11   -2.63   -2.00   -1.30   -0.49    0.59    2.11
+   300.0    0.00    0.11    0.21    0.23    0.10   -0.22   -0.76   -1.44   -2.18   -2.86   -3.32   -3.45   -3.22   -2.70   -2.04   -1.34   -0.60    0.34    1.63
+   305.0    0.00    0.11    0.22    0.23    0.09   -0.25   -0.78   -1.48   -2.25   -2.92   -3.39   -3.52   -3.29   -2.77   -2.10   -1.42   -0.74    0.04    1.14
+   310.0    0.00    0.11    0.20    0.22    0.08   -0.26   -0.81   -1.51   -2.29   -2.97   -3.44   -3.56   -3.33   -2.83   -2.17   -1.54   -0.95   -0.32    0.64
+   315.0    0.00    0.10    0.20    0.20    0.07   -0.28   -0.83   -1.55   -2.31   -2.99   -3.44   -3.56   -3.34   -2.85   -2.25   -1.70   -1.21   -0.70    0.14
+   320.0    0.00    0.10    0.18    0.19    0.03   -0.31   -0.86   -1.57   -2.31   -2.98   -3.42   -3.54   -3.32   -2.86   -2.33   -1.87   -1.51   -1.11   -0.32
+   325.0    0.00    0.09    0.18    0.18    0.02   -0.33   -0.89   -1.59   -2.31   -2.96   -3.37   -3.48   -3.27   -2.86   -2.41   -2.06   -1.82   -1.52   -0.72
+   330.0    0.00    0.09    0.17    0.16   -0.68   -0.36   -0.91   -1.59   -2.31   -2.92   -3.31   -3.39   -3.21   -2.84   -2.46   -2.23   -2.12   -1.91   -1.08
+   335.0    0.00    0.07    0.15    0.15   -0.02   -0.37   -0.92   -1.60   -2.29   -2.87   -3.24   -3.30   -3.12   -2.79   -2.50   -2.38   -2.41   -2.29   -1.39
+   340.0    0.00    0.07    0.13    0.12   -0.04   -0.40   -0.93   -1.60   -2.27   -2.83   -3.18   -3.23   -3.02   -2.72   -2.50   -2.48   -2.63   -2.58   -1.63
+   345.0    0.00    0.06    0.11    0.10   -0.06   -0.41   -0.95   -1.60   -2.25   -2.81   -3.11   -3.14   -2.92   -2.63   -2.44   -2.51   -2.77   -2.82   -1.82
+   350.0    0.00    0.05    0.10    0.08   -0.08   -0.43   -0.94   -1.59   -2.24   -2.78   -3.06   -3.06   -2.83   -2.52   -2.36   -2.48   -2.83   -2.94   -1.94
+   355.0    0.00    0.04    0.08    0.06   -0.11   -0.45   -0.95   -1.59   -2.24   -2.76   -3.03   -3.01   -2.75   -2.41   -2.23   -2.40   -2.80   -2.98   -1.99
+   360.0    0.00    0.03    0.06    0.03   -0.12   -0.45   -0.96   -1.59   -2.23   -2.75   -3.00   -2.96   -2.66   -2.30   -2.10   -2.26   -2.68   -2.90   -1.93
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+      0.76      0.50     90.43                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.07   -0.23   -0.41   -0.55   -0.65   -0.78   -1.01   -1.34   -1.69   -1.84   -1.59   -0.96   -0.14    0.47    0.48   -0.22   -1.29   -1.95
+     0.0    0.00   -0.10   -0.32   -0.61   -0.90   -1.12   -1.25   -1.34   -1.42   -1.42   -1.28   -0.86   -0.17    0.63    1.17    1.12    0.37   -0.65   -0.80
+     5.0    0.00   -0.08   -0.29   -0.57   -0.86   -1.07   -1.23   -1.33   -1.44   -1.49   -1.36   -0.94   -0.22    0.62    1.19    1.12    0.32   -0.68   -0.73
+    10.0    0.00   -0.06   -0.26   -0.54   -0.82   -1.02   -1.18   -1.33   -1.46   -1.55   -1.46   -1.03   -0.27    0.62    1.22    1.15    0.32   -0.72   -0.70
+    15.0    0.00   -0.04   -0.23   -0.50   -0.77   -0.98   -1.15   -1.31   -1.48   -1.63   -1.54   -1.11   -0.31    0.62    1.27    1.19    0.34   -0.73   -0.70
+    20.0    0.00   -0.02   -0.20   -0.46   -0.72   -0.93   -1.10   -1.28   -1.50   -1.68   -1.64   -1.21   -0.38    0.62    1.31    1.26    0.38   -0.73   -0.74
+    25.0    0.00    0.08   -0.16   -0.42   -0.67   -0.87   -1.04   -1.24   -1.51   -1.73   -1.74   -1.31   -0.45    0.59    1.35    1.33    0.44   -0.74   -0.81
+    30.0    0.00    0.02   -0.14   -0.37   -0.61   -0.80   -0.97   -1.19   -1.49   -1.78   -1.83   -1.43   -0.56    0.53    1.36    1.38    0.50   -0.73   -0.93
+    35.0    0.00    0.04   -0.10   -0.33   -0.56   -0.73   -0.89   -1.13   -1.47   -1.80   -1.90   -1.55   -0.69    0.45    1.32    1.40    0.54   -0.73   -1.08
+    40.0    0.00    0.05   -0.07   -0.28   -0.49   -0.65   -0.81   -1.05   -1.42   -1.81   -1.98   -1.67   -0.83    0.32    1.24    1.39    0.55   -0.75   -1.26
+    45.0    0.00    0.07   -0.04   -0.24   -0.43   -0.57   -0.71   -0.96   -1.37   -1.80   -2.03   -1.79   -0.99    0.16    1.12    1.32    0.53   -0.81   -1.48
+    50.0    0.00    0.09   -0.01   -0.19   -0.36   -0.48   -0.61   -0.87   -1.29   -1.78   -2.08   -1.90   -1.14   -0.02    0.97    1.21    0.45   -0.91   -1.74
+    55.0    0.00    0.11    0.03   -0.13   -0.29   -0.39   -0.51   -0.77   -1.22   -1.75   -2.11   -2.00   -1.29   -0.19    0.79    1.06    0.32   -1.07   -2.03
+    60.0    0.00    0.12    0.06   -0.08   -0.21   -0.30   -0.41   -0.68   -1.14   -1.71   -2.12   -2.06   -1.41   -0.35    0.61    0.86    0.12   -1.31   -2.37
+    65.0    0.00    0.13    0.10   -0.04   -0.14   -0.21   -0.31   -0.57   -1.05   -1.65   -2.11   -2.10   -1.50   -0.49    0.43    0.64   -0.13   -1.59   -2.74
+    70.0    0.00    0.15    0.13    0.03   -0.07   -0.12   -0.21   -0.47   -0.98   -1.59   -2.07   -2.10   -1.54   -0.58    0.26    0.41   -0.43   -1.95   -3.15
+    75.0    0.00    0.16    0.16    0.08    0.01   -0.03   -0.12   -0.39   -0.90   -1.53   -2.02   -2.06   -1.54   -0.64    0.12    0.18   -0.74   -2.32   -3.56
+    80.0    0.00    0.18    0.19    0.12    0.08    0.06   -0.03   -0.30   -0.81   -1.45   -1.94   -1.99   -1.50   -0.66    0.02   -0.02   -1.04   -2.69   -3.96
+    85.0    0.00    0.18    0.22    0.19    0.15    0.14    0.05   -0.22   -0.73   -1.36   -1.85   -1.90   -1.43   -0.63   -0.05   -0.21   -1.33   -3.04   -4.34
+    90.0    0.00    0.19    0.24    0.23    0.22    0.21    0.13   -0.14   -0.66   -1.29   -1.75   -1.79   -1.32   -0.59   -0.08   -0.34   -1.56   -3.34   -4.66
+    95.0    0.00    0.20    0.26    0.27    0.29    0.29    0.21   -0.07   -0.58   -1.19   -1.64   -1.66   -1.21   -0.52   -0.08   -0.42   -1.71   -3.54   -4.92
+   100.0    0.00    0.20    0.29    0.31    0.34    0.37    0.28    0.29   -0.51   -1.10   -1.53   -1.54   -1.10   -0.44   -0.06   -0.46   -1.79   -3.65   -5.07
+   105.0    0.00    0.21    0.31    0.35    0.40    0.43    0.35    0.07   -0.44   -1.01   -1.42   -1.44   -1.00   -0.37   -0.02   -0.44   -1.79   -3.66   -5.14
+   110.0    0.00    0.21    0.31    0.38    0.45    0.48    0.41    0.13   -0.36   -0.93   -1.32   -1.32   -0.90   -0.29    0.03   -0.39   -1.70   -3.56   -5.09
+   115.0    0.00    0.21    0.32    0.40    0.48    0.53    0.46    0.18   -0.29   -0.85   -1.23   -1.24   -0.84   -0.24    0.07   -0.31   -1.57   -3.38   -4.97
+   120.0    0.00    0.21    0.32    0.41    0.50    0.56    0.50    0.23   -0.24   -0.78   -1.15   -1.16   -0.78   -0.22    0.12   -0.22   -1.39   -3.14   -4.76
+   125.0    0.00    0.20    0.32    0.42    0.52    0.57    0.51    0.25   -0.21   -0.72   -1.08   -1.09   -0.73   -0.19    0.15   -0.12   -1.19   -2.87   -4.53
+   130.0    0.00    0.19    0.31    0.42    0.51    0.57    0.50    0.25   -0.19   -0.68   -1.04   -1.04   -0.70   -0.16    0.19   -0.04   -1.02   -2.60   -4.27
+   135.0    0.00    0.17    0.29    0.39    0.49    0.56    0.49    0.23   -0.20   -0.68   -1.01   -1.01   -0.67   -0.16    0.20    0.03   -0.87   -2.36   -4.01
+   140.0    0.00    0.17    0.26    0.37    0.47    0.51    0.44    0.19   -0.23   -0.69   -0.99   -0.98   -0.65   -0.14    0.21    0.06   -0.77   -2.19   -3.77
+   145.0    0.00    0.15    0.25    0.32    0.42    0.46    0.38    0.12   -0.29   -0.72   -0.99   -0.98   -0.64   -0.14    0.20    0.06   -0.73   -2.08   -3.58
+   150.0    0.00    0.13    0.21    0.29    0.35    0.39    0.31    0.05   -0.35   -0.78   -1.02   -0.97   -0.63   -0.14    0.18    0.03   -0.75   -2.05   -3.45
+   155.0    0.00    0.11    0.17    0.23    0.29    0.31    0.20   -0.06   -0.45   -0.85   -1.07   -1.00   -0.64   -0.16    0.15   -0.04   -0.82   -2.07   -3.34
+   160.0    0.00    0.08    0.13    0.17    0.21    0.23    0.11   -0.18   -0.56   -0.95   -1.15   -1.05   -0.67   -0.20    0.08   -0.13   -0.93   -2.14   -3.28
+   165.0    0.00    0.06    0.07    0.10    0.13    0.12   -0.21   -0.28   -0.68   -1.06   -1.25   -1.14   -0.74   -0.26   -0.01   -0.25   -1.07   -2.25   -3.25
+   170.0    0.00    0.03    0.03    0.02    0.04    0.02   -0.11   -0.40   -0.80   -1.18   -1.36   -1.23   -0.83   -0.35   -0.12   -0.39   -1.21   -2.35   -3.21
+   175.0    0.00    0.01   -0.04   -0.06   -0.06   -0.09   -0.22   -0.52   -0.92   -1.32   -1.50   -1.38   -0.96   -0.49   -0.25   -0.53   -1.36   -2.43   -3.17
+   180.0    0.00   -0.02   -0.09   -0.14   -0.16   -0.20   -0.33   -0.62   -1.04   -1.45   -1.66   -1.55   -1.13   -0.65   -0.41   -0.68   -1.48   -2.50   -3.10
+   185.0    0.00   -0.05   -0.15   -0.23   -0.27   -0.31   -0.43   -0.72   -1.15   -1.58   -1.82   -1.73   -1.33   -0.84   -0.58   -0.82   -1.58   -2.52   -3.00
+   190.0    0.00   -0.08   -0.21   -0.32   -0.37   -0.41   -0.53   -0.83   -1.25   -1.71   -1.97   -1.92   -1.54   -1.05   -0.76   -0.96   -1.65   -2.50   -2.87
+   195.0    0.00   -0.10   -0.27   -0.41   -0.48   -0.51   -0.62   -0.91   -1.35   -1.82   -2.13   -2.10   -1.74   -1.24   -0.94   -1.08   -1.70   -2.44   -2.71
+   200.0    0.00   -0.13   -0.33   -0.50   -0.58   -0.62   -0.73   -1.00   -1.45   -1.94   -2.27   -2.27   -1.93   -1.43   -1.10   -1.19   -1.72   -2.36   -2.55
+   205.0    0.00   -0.16   -0.39   -0.58   -0.69   -0.72   -0.82   -1.09   -1.54   -2.04   -2.39   -2.41   -2.08   -1.58   -1.22   -1.27   -1.72   -2.27   -2.38
+   210.0    0.00   -0.18   -0.45   -0.67   -0.78   -0.83   -0.92   -1.18   -1.62   -2.13   -2.48   -2.51   -2.19   -1.68   -1.31   -1.33   -1.72   -2.17   -2.22
+   215.0    0.00   -0.21   -0.50   -0.74   -0.87   -0.93   -1.03   -1.27   -1.71   -2.21   -2.55   -2.57   -2.24   -1.74   -1.36   -1.34   -1.68   -2.08   -2.05
+   220.0    0.00   -0.24   -0.55   -0.83   -0.97   -1.04   -1.12   -1.37   -1.80   -2.27   -2.60   -2.59   -2.24   -1.72   -1.34   -1.33   -1.64   -1.98   -1.91
+   225.0    0.00   -0.26   -0.59   -0.89   -1.06   -1.12   -1.22   -1.46   -1.87   -2.32   -2.63   -2.58   -2.20   -1.66   -1.28   -1.25   -1.57   -1.88   -1.77
+   230.0    0.00   -0.28   -0.63   -0.95   -1.13   -1.22   -1.31   -1.54   -1.94   -2.38   -2.64   -2.54   -2.10   -1.55   -1.14   -1.14   -1.47   -1.76   -1.63
+   235.0    0.00   -0.29   -0.66   -1.00   -1.19   -1.29   -1.39   -1.63   -2.01   -2.41   -2.63   -2.48   -1.99   -1.38   -0.97   -0.99   -1.33   -1.63   -1.49
+   240.0    0.00   -0.31   -0.70   -1.04   -1.25   -1.36   -1.47   -1.70   -2.06   -2.44   -2.61   -2.41   -1.85   -1.19   -0.76   -0.77   -1.15   -1.47   -1.33
+   245.0    0.00   -0.31   -0.72   -1.08   -1.30   -1.41   -1.52   -1.75   -2.11   -2.46   -2.59   -2.33   -1.70   -0.99   -0.53   -0.52   -0.91   -1.27   -1.12
+   250.0    0.00   -0.33   -0.74   -1.10   -1.32   -1.44   -1.56   -1.79   -2.14   -2.47   -2.57   -2.25   -1.57   -0.78   -0.25   -0.23   -0.63   -1.02   -0.92
+   255.0    0.00   -0.34   -0.75   -1.11   -1.34   -1.46   -1.58   -1.82   -2.16   -2.48   -2.55   -2.19   -1.44   -0.57    0.03    0.10   -0.31   -0.74   -0.66
+   260.0    0.00   -0.35   -0.76   -1.12   -1.35   -1.47   -1.59   -1.83   -2.17   -2.48   -2.53   -2.12   -1.31   -0.36    0.32    0.43    0.04   -0.43   -0.40
+   265.0    0.00   -0.34   -0.76   -1.13   -1.34   -1.48   -1.59   -1.82   -2.16   -2.46   -2.49   -2.06   -1.19   -0.16    0.60    0.78    0.40   -0.11   -0.15
+   270.0    0.00   -0.35   -0.76   -1.11   -1.34   -1.46   -1.59   -1.81   -2.14   -2.44   -2.45   -2.00   -1.07    0.03    0.87    1.13    0.76    0.19    0.08
+   275.0    0.00   -0.35   -0.74   -1.10   -1.32   -1.45   -1.57   -1.79   -2.13   -2.41   -2.41   -1.92   -0.96    0.21    1.14    1.44    1.08    0.46    0.26
+   280.0    0.00   -0.33   -0.73   -1.08   -1.31   -1.44   -1.55   -1.77   -2.09   -2.36   -2.34   -1.82   -0.83    0.40    1.38    1.73    1.37    0.67    0.38
+   285.0    0.00   -0.34   -0.72   -1.06   -1.29   -1.41   -1.54   -1.75   -2.05   -2.29   -2.24   -1.71   -0.69    0.57    1.60    1.98    1.60    0.82    0.42
+   290.0    0.00   -0.32   -0.70   -1.04   -1.26   -1.40   -1.53   -1.73   -1.99   -2.21   -2.13   -1.58   -0.53    0.74    1.79    2.17    1.76    0.91    0.38
+   295.0    0.00   -0.31   -0.68   -1.01   -1.25   -1.40   -1.52   -1.71   -1.94   -2.12   -2.01   -1.43   -0.38    0.90    1.94    2.31    1.85    0.90    0.26
+   300.0    0.00   -0.30   -0.65   -0.99   -1.23   -1.38   -1.51   -1.68   -1.89   -2.01   -1.87   -1.27   -0.22    1.03    2.05    2.39    1.88    0.83    0.08
+   305.0    0.00   -0.28   -0.63   -0.96   -1.22   -1.37   -1.50   -1.65   -1.83   -1.91   -1.72   -1.12   -0.08    1.15    2.11    2.41    1.83    0.71   -0.16
+   310.0    0.00   -0.28   -0.61   -0.93   -1.19   -1.36   -1.49   -1.62   -1.76   -1.80   -1.58   -0.97    0.04    1.21    2.12    2.36    1.75    0.55   -0.40
+   315.0    0.00   -0.25   -0.58   -0.91   -1.17   -1.35   -1.48   -1.59   -1.69   -1.68   -1.45   -0.83    0.14    1.24    2.09    2.28    1.62    0.38   -0.65
+   320.0    0.00   -0.25   -0.55   -0.87   -1.14   -1.34   -1.47   -1.55   -1.62   -1.59   -1.32   -0.72    0.19    1.23    2.01    2.15    1.46    0.20   -0.86
+   325.0    0.00   -0.23   -0.52   -0.84   -1.12   -1.32   -1.45   -1.52   -1.56   -1.49   -1.23   -0.65    0.21    1.17    1.91    2.00    1.29    0.02   -1.02
+   330.0    0.00   -0.20   -0.50   -0.82   -1.10   -1.30   -1.42   -1.49   -1.50   -1.42   -1.15   -0.61    0.21    1.10    1.77    1.83    1.11   -0.14   -1.12
+   335.0    0.00   -0.19   -0.47   -0.78   -1.07   -1.28   -1.40   -1.45   -1.45   -1.36   -1.11   -0.60    0.15    1.00    1.63    1.66    0.94   -0.26   -1.15
+   340.0    0.00   -0.17   -0.43   -0.75   -1.03   -1.25   -1.36   -1.42   -1.41   -1.33   -1.09   -0.62    0.09    0.90    1.48    1.50    0.79   -0.37   -1.14
+   345.0    0.00   -0.15   -0.41   -0.72   -1.01   -1.22   -1.34   -1.39   -1.39   -1.32   -1.11   -0.67    0.02    0.79    1.36    1.35    0.64   -0.46   -1.08
+   350.0    0.00   -0.13   -0.38   -0.68   -0.97   -1.18   -1.31   -1.38   -1.39   -1.35   -1.15   -0.72   -0.05    0.72    1.26    1.24    0.52   -0.54   -0.98
+   355.0    0.00   -0.12   -0.34   -0.65   -0.94   -1.15   -1.28   -1.35   -1.39   -1.37   -1.21   -0.79   -0.12    0.66    1.20    1.16    0.43   -0.60   -0.89
+   360.0    0.00   -0.10   -0.32   -0.61   -0.90   -1.12   -1.25   -1.34   -1.42   -1.42   -1.28   -0.86   -0.17    0.63    1.17    1.12    0.37   -0.65   -0.80
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+LEISR299_INT    NONE                                        TYPE / SERIAL NO    
+FIELD               NGS                      2    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      3.58      1.03    110.25                              NORTH / EAST / UP   
+   NOAZI    0.00    0.17    0.30    0.17   -0.12   -0.42   -0.66   -0.79   -0.77   -0.61   -0.26    0.21    0.57    0.75    1.02    0.79    0.57
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      2.32     -1.69    114.35                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.13   -0.31   -0.58   -0.79   -1.18   -1.59   -1.97   -2.41   -2.71   -2.85   -2.66   -2.23   -1.53   -0.73    0.39    1.95
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+LEISR399_INT    NONE                                        TYPE / SERIAL NO    
+FIELD               NGS                      3    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      3.18      1.23     92.45                              NORTH / EAST / UP   
+   NOAZI    0.00    1.97    3.10    3.67    3.78    3.48    3.04    2.61    2.23    1.99    2.14    2.41    2.87    3.55    4.52    5.79    7.47
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.12     -2.79    102.05                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.43   -0.41    0.02    0.41    0.82    1.21    1.33    1.39    1.29    1.15    1.14    1.07    0.97    0.97    1.09    1.55
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+LEISR399_INTA   NONE                                        TYPE / SERIAL NO    
+FIELD               NGS                      2    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      3.58      1.03    110.25                              NORTH / EAST / UP   
+   NOAZI    0.00    0.17    0.30    0.17   -0.12   -0.42   -0.66   -0.79   -0.77   -0.61   -0.26    0.21    0.57    0.75    1.02    0.79    0.57
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      2.32     -1.69    114.35                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.13   -0.31   -0.58   -0.79   -1.18   -1.59   -1.97   -2.41   -2.71   -2.85   -2.66   -2.23   -1.53   -0.73    0.39    1.95
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+MAC4647942      NONE                                        TYPE / SERIAL NO    
+CONVERTED           TUM                      1    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+CONVERTED FROM igs_01.pcv                                   COMMENT             
+   G01                                                      START OF FREQUENCY  
+      2.78     -8.57    144.95                              NORTH / EAST / UP   
+   NOAZI    0.00   -3.93   -4.20   -2.23    0.68    3.88    6.34    7.91    8.03    6.59    3.54   -0.79   -6.13  -11.95  -17.38  -21.31  -22.53
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      4.22      1.41     83.65                              NORTH / EAST / UP   
+   NOAZI    0.00   -3.13   -3.41   -1.98    0.31    2.82    4.91    6.43    7.09    6.99    6.35    5.44    4.77    4.77    6.27   10.09   17.55
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+MAC4647942      MMAC                                        TYPE / SERIAL NO    
+FIELD               NGS                      1    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+     -0.82      2.43    121.45                              NORTH / EAST / UP   
+   NOAZI    0.00   -4.53   -4.90   -2.73    0.78    4.78    8.34   11.01   12.43   12.39   11.04    8.31    4.77    0.85   -2.38   -3.91   -2.53
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.42      2.71     93.55                              NORTH / EAST / UP   
+   NOAZI    0.00   -3.53   -4.21   -3.08   -1.09    1.12    3.01    4.23    4.49    3.99    2.75    1.24   -0.23   -1.23   -0.83    1.59    7.45
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+MPL_WAAS_2224NW NONE                                        TYPE / SERIAL NO    
+FIELD               NGS                      1    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.18     -4.67    449.15                              NORTH / EAST / UP   
+   NOAZI    0.00    0.17    0.40    0.77    1.08    1.38    1.74    2.21    2.73    3.19    3.64    3.91    3.77    3.05    1.82   -0.01   -2.63
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.58     -4.49    458.85                              NORTH / EAST / UP   
+   NOAZI    0.00   -2.73   -3.71   -3.38   -2.39   -1.08    0.21    1.33    1.89    2.09    1.95    1.44    0.67   -0.13   -0.83   -1.01   -0.25
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+MPL_WAAS_2225NW NONE                                        TYPE / SERIAL NO    
+FIELD               NGS                      2    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.78     -3.87    444.45                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.53   -0.80   -0.83   -0.82   -0.72   -0.66   -0.59   -0.67   -0.71   -0.86   -1.19   -1.73   -2.55   -3.68   -4.81   -5.93
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.88     -0.99    457.05                              NORTH / EAST / UP   
+   NOAZI    0.00   -2.53   -3.31   -2.88   -1.79   -0.58    0.51    1.23    1.49    1.09    0.35   -0.86   -2.23   -3.73   -5.03   -5.71   -5.15
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+MPLL1/L2_SURV   NONE                                        TYPE / SERIAL NO    
+CONVERTED           TUM                      1    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+CONVERTED FROM igs_01.pcv                                   COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.58     -0.37     61.45                              NORTH / EAST / UP   
+   NOAZI    0.00    0.17   -0.50   -1.03   -1.12   -1.52   -2.46   -3.49   -3.97   -4.41   -5.06   -5.19   -4.43   -2.85   -1.38    1.59    7.07
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.08     -0.59     85.55                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.03   -0.41   -1.08   -1.79   -1.98   -2.09   -2.47   -3.31   -4.01   -4.35   -4.16   -3.43   -2.13   -0.63   -0.11   -1.35
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+NAVAN2004T      NONE                                        TYPE / SERIAL NO    
+FIELD               NGS                      3    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+     -0.92     -0.97     40.55                              NORTH / EAST / UP   
+   NOAZI    0.00    1.77    2.80    3.37    3.38    3.18    2.74    2.31    2.03    1.99    2.14    2.41    2.87    3.35    4.02    4.89    5.87
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -3.38     -1.89     63.25                              NORTH / EAST / UP   
+   NOAZI    0.00   -1.33   -2.01   -2.08   -1.89   -1.48   -0.89   -0.47   -0.21    0.09    0.15    0.24    0.07   -0.33   -1.03   -2.11   -3.35
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+NAVAN2008T      NONE                                        TYPE / SERIAL NO    
+FIELD               NGS                      3    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      1.38      0.13     11.45                              NORTH / EAST / UP   
+   NOAZI    0.00    1.17    1.70    1.97    1.68    1.18    0.64    0.11   -0.27   -0.51   -0.36   -0.09    0.47    1.35    2.32    3.79    5.57
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.22     -0.99     26.15                              NORTH / EAST / UP   
+   NOAZI    0.00    0.67    1.09    1.12    0.91    0.42   -0.29   -1.07   -1.91   -2.51   -2.85   -2.66   -2.03   -0.73    1.17    3.89    7.55
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+NAX3G+C         NONE                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               8    27-APR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     4                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+# Number of Calibrated Antennas:           8                COMMENT             
+# Number of Individual GPS-Calibrations:  25                COMMENT             
+# Number of Individual GLO-Calibrations:  43                COMMENT             
+# GLONASS PCV                                               COMMENT             
+#  derived from Delta PCV per 25.0 MHz                      COMMENT             
+#  for frequency channel number k=0                         COMMENT             
+   G01                                                      START OF FREQUENCY  
+     -0.52     -0.71     60.52                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.04   -0.14   -0.25   -0.31   -0.27   -0.13    0.06    0.20    0.19   -0.01   -0.36   -0.69   -0.82   -0.59   -0.02    0.63    0.92    0.35
+     0.0    0.00   -0.04   -0.16   -0.30   -0.45   -0.54   -0.56   -0.52   -0.48   -0.50   -0.65   -0.89   -1.12   -1.18   -0.91   -0.32    0.37    0.69    0.03
+     5.0    0.00   -0.04   -0.15   -0.29   -0.43   -0.52   -0.53   -0.50   -0.47   -0.51   -0.65   -0.89   -1.10   -1.13   -0.84   -0.22    0.49    0.83    0.19
+    10.0    0.00   -0.04   -0.14   -0.28   -0.41   -0.49   -0.51   -0.48   -0.46   -0.50   -0.65   -0.88   -1.08   -1.08   -0.76   -0.12    0.62    0.99    0.38
+    15.0    0.00   -0.04   -0.14   -0.27   -0.39   -0.46   -0.47   -0.45   -0.43   -0.49   -0.65   -0.88   -1.06   -1.04   -0.69   -0.02    0.75    1.15    0.59
+    20.0    0.00   -0.03   -0.13   -0.26   -0.37   -0.43   -0.43   -0.41   -0.40   -0.47   -0.64   -0.87   -1.05   -1.01   -0.64    0.05    0.85    1.29    0.79
+    25.0    0.00   -0.03   -0.12   -0.24   -0.34   -0.39   -0.39   -0.36   -0.36   -0.45   -0.63   -0.87   -1.05   -1.01   -0.62    0.09    0.92    1.40    0.96
+    30.0    0.00   -0.03   -0.12   -0.23   -0.32   -0.36   -0.34   -0.31   -0.31   -0.41   -0.61   -0.87   -1.06   -1.02   -0.63    0.10    0.94    1.46    1.07
+    35.0    0.00   -0.02   -0.11   -0.22   -0.30   -0.32   -0.29   -0.25   -0.25   -0.36   -0.58   -0.86   -1.07   -1.04   -0.66    0.07    0.93    1.47    1.12
+    40.0    0.00   -0.02   -0.11   -0.21   -0.28   -0.29   -0.24   -0.19   -0.19   -0.30   -0.54   -0.84   -1.08   -1.07   -0.70    0.02    0.88    1.43    1.12
+    45.0    0.00   -0.02   -0.10   -0.20   -0.26   -0.25   -0.19   -0.12   -0.12   -0.23   -0.49   -0.81   -1.07   -1.10   -0.75   -0.04    0.81    1.37    1.08
+    50.0    0.00   -0.02   -0.10   -0.19   -0.24   -0.22   -0.14   -0.06   -0.04   -0.16   -0.42   -0.77   -1.06   -1.11   -0.79   -0.10    0.74    1.29    1.01
+    55.0    0.00   -0.02   -0.09   -0.18   -0.22   -0.19   -0.10    0.01    0.04   -0.07   -0.34   -0.70   -1.02   -1.10   -0.80   -0.14    0.68    1.22    0.93
+    60.0    0.00   -0.01   -0.09   -0.17   -0.21   -0.17   -0.05    0.07    0.12    0.03   -0.24   -0.62   -0.95   -1.05   -0.79   -0.14    0.65    1.17    0.88
+    65.0    0.00   -0.01   -0.09   -0.17   -0.20   -0.14   -0.01    0.13    0.21    0.13   -0.14   -0.51   -0.86   -0.98   -0.73   -0.11    0.67    1.17    0.87
+    70.0    0.00   -0.01   -0.08   -0.16   -0.19   -0.12    0.03    0.20    0.29    0.23   -0.02   -0.39   -0.74   -0.88   -0.64   -0.03    0.73    1.21    0.91
+    75.0    0.00   -0.01   -0.08   -0.16   -0.18   -0.10    0.07    0.25    0.37    0.33    0.10   -0.26   -0.61   -0.75   -0.51    0.09    0.84    1.31    1.00
+    80.0    0.00   -0.01   -0.08   -0.15   -0.16   -0.08    0.10    0.31    0.45    0.44    0.23   -0.13   -0.47   -0.60   -0.36    0.25    0.99    1.46    1.14
+    85.0    0.00   -0.01   -0.07   -0.15   -0.15   -0.06    0.14    0.37    0.53    0.54    0.35    0.01   -0.32   -0.44   -0.19    0.42    1.17    1.63    1.31
+    90.0    0.00    0.00   -0.07   -0.14   -0.14   -0.04    0.17    0.42    0.61    0.64    0.46    0.13   -0.19   -0.29   -0.03    0.60    1.35    1.80    1.48
+    95.0    0.00    0.00   -0.07   -0.13   -0.13   -0.02    0.21    0.47    0.68    0.73    0.56    0.25   -0.06   -0.16    0.12    0.75    1.51    1.95    1.61
+   100.0    0.00    0.00   -0.07   -0.13   -0.12    0.00    0.24    0.52    0.75    0.80    0.65    0.34    0.03   -0.06    0.23    0.87    1.62    2.04    1.67
+   105.0    0.00    0.00   -0.06   -0.12   -0.11    0.02    0.27    0.57    0.80    0.87    0.72    0.41    0.10    0.01    0.29    0.93    1.67    2.06    1.65
+   110.0    0.00    0.00   -0.06   -0.11   -0.10    0.04    0.30    0.60    0.85    0.92    0.77    0.45    0.14    0.03    0.30    0.93    1.64    1.98    1.51
+   115.0    0.00    0.00   -0.06   -0.11   -0.08    0.06    0.32    0.63    0.89    0.96    0.80    0.47    0.14    0.01    0.25    0.85    1.52    1.80    1.25
+   120.0    0.00    0.00   -0.05   -0.10   -0.08    0.07    0.34    0.66    0.91    0.98    0.82    0.47    0.10   -0.06    0.15    0.70    1.31    1.53    0.88
+   125.0    0.00    0.00   -0.05   -0.10   -0.07    0.08    0.35    0.67    0.92    0.99    0.81    0.44    0.04   -0.17   -0.01    0.48    1.03    1.17    0.42
+   130.0    0.00    0.00   -0.05   -0.09   -0.06    0.09    0.36    0.68    0.93    0.99    0.79    0.39   -0.05   -0.31   -0.22    0.21    0.70    0.76   -0.10
+   135.0    0.00    0.00   -0.05   -0.09   -0.06    0.10    0.36    0.68    0.92    0.97    0.76    0.33   -0.16   -0.48   -0.45   -0.09    0.33    0.32   -0.64
+   140.0    0.00    0.00   -0.05   -0.09   -0.05    0.10    0.36    0.67    0.91    0.95    0.72    0.25   -0.29   -0.66   -0.70   -0.40   -0.04   -0.11   -1.15
+   145.0    0.00    0.00   -0.05   -0.09   -0.05    0.10    0.36    0.66    0.90    0.92    0.67    0.17   -0.41   -0.85   -0.95   -0.71   -0.39   -0.51   -1.59
+   150.0    0.00   -0.01   -0.05   -0.09   -0.06    0.09    0.35    0.65    0.88    0.89    0.62    0.09   -0.54   -1.03   -1.18   -0.99   -0.71   -0.84   -1.95
+   155.0    0.00   -0.01   -0.06   -0.09   -0.06    0.09    0.34    0.64    0.86    0.87    0.58    0.01   -0.66   -1.19   -1.39   -1.23   -0.96   -1.08   -2.18
+   160.0    0.00   -0.01   -0.06   -0.10   -0.07    0.08    0.34    0.63    0.85    0.84    0.53   -0.06   -0.76   -1.34   -1.57   -1.42   -1.14   -1.23   -2.29
+   165.0    0.00   -0.01   -0.07   -0.11   -0.07    0.07    0.33    0.63    0.84    0.83    0.50   -0.11   -0.85   -1.45   -1.70   -1.55   -1.25   -1.29   -2.28
+   170.0    0.00   -0.02   -0.07   -0.11   -0.08    0.07    0.32    0.62    0.83    0.81    0.47   -0.16   -0.91   -1.53   -1.79   -1.63   -1.29   -1.27   -2.17
+   175.0    0.00   -0.02   -0.08   -0.12   -0.09    0.06    0.32    0.62    0.83    0.80    0.45   -0.19   -0.96   -1.59   -1.84   -1.65   -1.27   -1.18   -1.98
+   180.0    0.00   -0.02   -0.09   -0.14   -0.11    0.05    0.31    0.62    0.83    0.80    0.44   -0.22   -0.99   -1.61   -1.84   -1.63   -1.20   -1.04   -1.73
+   185.0    0.00   -0.03   -0.10   -0.15   -0.12    0.03    0.30    0.61    0.83    0.79    0.43   -0.23   -1.00   -1.61   -1.82   -1.58   -1.11   -0.88   -1.47
+   190.0    0.00   -0.03   -0.11   -0.16   -0.14    0.02    0.29    0.61    0.82    0.79    0.42   -0.24   -0.99   -1.58   -1.77   -1.50   -1.00   -0.72   -1.22
+   195.0    0.00   -0.04   -0.12   -0.18   -0.16    0.00    0.27    0.59    0.81    0.77    0.41   -0.24   -0.98   -1.55   -1.71   -1.41   -0.88   -0.57   -1.00
+   200.0    0.00   -0.04   -0.13   -0.20   -0.18   -0.03    0.25    0.57    0.79    0.76    0.40   -0.24   -0.96   -1.50   -1.63   -1.31   -0.76   -0.43   -0.82
+   205.0    0.00   -0.05   -0.14   -0.22   -0.21   -0.06    0.22    0.54    0.76    0.73    0.38   -0.24   -0.94   -1.45   -1.55   -1.21   -0.65   -0.31   -0.67
+   210.0    0.00   -0.05   -0.15   -0.24   -0.24   -0.09    0.18    0.50    0.72    0.69    0.35   -0.25   -0.92   -1.39   -1.46   -1.11   -0.55   -0.21   -0.56
+   215.0    0.00   -0.05   -0.16   -0.26   -0.26   -0.13    0.14    0.46    0.67    0.65    0.31   -0.27   -0.91   -1.34   -1.38   -1.00   -0.44   -0.11   -0.48
+   220.0    0.00   -0.06   -0.17   -0.28   -0.30   -0.17    0.09    0.40    0.62    0.59    0.27   -0.29   -0.89   -1.29   -1.29   -0.88   -0.31    0.00   -0.39
+   225.0    0.00   -0.06   -0.19   -0.30   -0.33   -0.21    0.04    0.34    0.55    0.53    0.23   -0.31   -0.88   -1.23   -1.19   -0.75   -0.17    0.13   -0.30
+   230.0    0.00   -0.07   -0.20   -0.32   -0.36   -0.25   -0.01    0.28    0.48    0.47    0.18   -0.33   -0.86   -1.17   -1.08   -0.60    0.01    0.30   -0.17
+   235.0    0.00   -0.07   -0.21   -0.34   -0.39   -0.30   -0.07    0.21    0.41    0.40    0.13   -0.35   -0.84   -1.09   -0.95   -0.42    0.21    0.51    0.01
+   240.0    0.00   -0.07   -0.21   -0.36   -0.42   -0.34   -0.12    0.15    0.34    0.34    0.08   -0.36   -0.80   -1.00   -0.79   -0.21    0.46    0.77    0.23
+   245.0    0.00   -0.08   -0.22   -0.37   -0.44   -0.38   -0.18    0.08    0.27    0.28    0.04   -0.36   -0.75   -0.89   -0.62    0.02    0.74    1.06    0.50
+   250.0    0.00   -0.08   -0.23   -0.38   -0.46   -0.41   -0.23    0.02    0.21    0.22    0.01   -0.35   -0.68   -0.75   -0.41    0.29    1.05    1.39    0.82
+   255.0    0.00   -0.08   -0.23   -0.39   -0.48   -0.45   -0.28   -0.04    0.14    0.17   -0.01   -0.33   -0.60   -0.60   -0.19    0.57    1.38    1.74    1.16
+   260.0    0.00   -0.08   -0.24   -0.40   -0.50   -0.48   -0.32   -0.10    0.08    0.12   -0.03   -0.29   -0.49   -0.43    0.05    0.86    1.70    2.08    1.51
+   265.0    0.00   -0.08   -0.24   -0.41   -0.52   -0.50   -0.36   -0.15    0.03    0.08   -0.04   -0.25   -0.39   -0.25    0.28    1.14    2.01    2.41    1.86
+   270.0    0.00   -0.09   -0.24   -0.41   -0.53   -0.52   -0.40   -0.20   -0.03    0.04   -0.04   -0.20   -0.28   -0.08    0.51    1.40    2.28    2.70    2.18
+   275.0    0.00   -0.09   -0.24   -0.42   -0.53   -0.54   -0.43   -0.25   -0.08    0.00   -0.05   -0.16   -0.17    0.08    0.70    1.61    2.50    2.93    2.45
+   280.0    0.00   -0.08   -0.24   -0.42   -0.54   -0.56   -0.46   -0.29   -0.12   -0.04   -0.06   -0.12   -0.09    0.21    0.86    1.77    2.66    3.09    2.66
+   285.0    0.00   -0.08   -0.24   -0.41   -0.54   -0.57   -0.49   -0.33   -0.17   -0.08   -0.07   -0.10   -0.03    0.30    0.95    1.86    2.73    3.17    2.79
+   290.0    0.00   -0.08   -0.24   -0.41   -0.54   -0.58   -0.51   -0.37   -0.21   -0.11   -0.09   -0.10    0.00    0.33    0.98    1.87    2.73    3.16    2.84
+   295.0    0.00   -0.08   -0.23   -0.41   -0.54   -0.59   -0.53   -0.40   -0.25   -0.15   -0.12   -0.12   -0.02    0.31    0.95    1.81    2.64    3.07    2.80
+   300.0    0.00   -0.08   -0.23   -0.40   -0.54   -0.60   -0.55   -0.43   -0.29   -0.19   -0.16   -0.16   -0.07    0.24    0.84    1.66    2.47    2.90    2.67
+   305.0    0.00   -0.08   -0.22   -0.40   -0.54   -0.60   -0.57   -0.45   -0.32   -0.23   -0.21   -0.22   -0.16    0.11    0.67    1.45    2.24    2.67    2.45
+   310.0    0.00   -0.08   -0.22   -0.39   -0.54   -0.60   -0.58   -0.48   -0.35   -0.27   -0.27   -0.31   -0.28   -0.06    0.45    1.19    1.95    2.38    2.17
+   315.0    0.00   -0.07   -0.21   -0.38   -0.53   -0.61   -0.59   -0.49   -0.38   -0.31   -0.33   -0.40   -0.42   -0.25    0.20    0.90    1.64    2.06    1.84
+   320.0    0.00   -0.07   -0.21   -0.38   -0.53   -0.61   -0.59   -0.51   -0.40   -0.35   -0.39   -0.50   -0.57   -0.46   -0.07    0.60    1.32    1.72    1.47
+   325.0    0.00   -0.07   -0.20   -0.37   -0.52   -0.60   -0.60   -0.52   -0.42   -0.38   -0.44   -0.59   -0.72   -0.67   -0.32    0.31    1.01    1.40    1.10
+   330.0    0.00   -0.06   -0.20   -0.36   -0.51   -0.60   -0.60   -0.52   -0.43   -0.41   -0.49   -0.68   -0.85   -0.85   -0.55    0.05    0.73    1.11    0.74
+   335.0    0.00   -0.06   -0.19   -0.35   -0.51   -0.60   -0.60   -0.53   -0.45   -0.43   -0.54   -0.75   -0.96   -1.01   -0.74   -0.16    0.51    0.87    0.43
+   340.0    0.00   -0.06   -0.18   -0.35   -0.50   -0.59   -0.60   -0.53   -0.46   -0.45   -0.57   -0.81   -1.05   -1.12   -0.88   -0.32    0.35    0.69    0.18
+   345.0    0.00   -0.05   -0.18   -0.34   -0.49   -0.58   -0.59   -0.54   -0.47   -0.47   -0.60   -0.85   -1.10   -1.19   -0.96   -0.40    0.26    0.58    0.01
+   350.0    0.00   -0.05   -0.17   -0.33   -0.48   -0.57   -0.59   -0.53   -0.48   -0.49   -0.62   -0.87   -1.13   -1.22   -0.99   -0.43    0.24    0.55   -0.07
+   355.0    0.00   -0.05   -0.16   -0.32   -0.46   -0.56   -0.57   -0.53   -0.48   -0.50   -0.64   -0.89   -1.13   -1.21   -0.97   -0.40    0.28    0.59   -0.06
+   360.0    0.00   -0.04   -0.16   -0.30   -0.45   -0.54   -0.56   -0.52   -0.48   -0.50   -0.65   -0.89   -1.12   -1.18   -0.91   -0.32    0.37    0.69    0.03
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.62      0.47     57.04                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.05   -0.19   -0.40   -0.69   -1.04   -1.45   -1.83   -2.06   -1.94   -1.37   -0.40    0.68    1.43    1.45    0.70   -0.29   -0.46    1.44
+     0.0    0.00   -0.10   -0.28   -0.50   -0.78   -1.08   -1.40   -1.66   -1.74   -1.52   -0.91    0.02    1.02    1.69    1.71    1.04    0.08   -0.26    1.07
+     5.0    0.00   -0.10   -0.26   -0.49   -0.76   -1.06   -1.38   -1.64   -1.72   -1.48   -0.85    0.10    1.11    1.80    1.83    1.18    0.28   -0.02    1.32
+    10.0    0.00   -0.09   -0.25   -0.47   -0.74   -1.05   -1.37   -1.63   -1.71   -1.45   -0.80    0.17    1.20    1.90    1.95    1.31    0.44    0.19    1.53
+    15.0    0.00   -0.08   -0.24   -0.45   -0.72   -1.03   -1.36   -1.63   -1.70   -1.44   -0.77    0.23    1.28    2.00    2.05    1.43    0.58    0.36    1.69
+    20.0    0.00   -0.07   -0.22   -0.44   -0.70   -1.02   -1.35   -1.63   -1.71   -1.45   -0.77    0.25    1.33    2.07    2.14    1.52    0.68    0.47    1.80
+    25.0    0.00   -0.07   -0.21   -0.42   -0.69   -1.00   -1.34   -1.63   -1.72   -1.47   -0.79    0.25    1.35    2.11    2.20    1.59    0.75    0.54    1.85
+    30.0    0.00   -0.06   -0.20   -0.40   -0.67   -0.98   -1.33   -1.63   -1.75   -1.52   -0.84    0.20    1.33    2.12    2.22    1.62    0.78    0.56    1.87
+    35.0    0.00   -0.05   -0.18   -0.38   -0.65   -0.96   -1.32   -1.64   -1.78   -1.58   -0.93    0.11    1.26    2.07    2.20    1.62    0.77    0.55    1.85
+    40.0    0.00   -0.04   -0.17   -0.37   -0.62   -0.94   -1.31   -1.65   -1.82   -1.66   -1.04   -0.01    1.14    1.98    2.13    1.56    0.72    0.50    1.83
+    45.0    0.00   -0.03   -0.15   -0.35   -0.60   -0.92   -1.29   -1.66   -1.87   -1.75   -1.17   -0.17    0.98    1.83    2.01    1.45    0.62    0.43    1.80
+    50.0    0.00   -0.02   -0.14   -0.33   -0.58   -0.89   -1.28   -1.67   -1.92   -1.85   -1.32   -0.35    0.78    1.64    1.83    1.29    0.48    0.33    1.79
+    55.0    0.00   -0.02   -0.13   -0.31   -0.55   -0.87   -1.27   -1.68   -1.97   -1.95   -1.47   -0.55    0.56    1.41    1.60    1.07    0.30    0.21    1.79
+    60.0    0.00   -0.01   -0.11   -0.29   -0.53   -0.85   -1.25   -1.69   -2.02   -2.05   -1.62   -0.74    0.33    1.16    1.34    0.82    0.08    0.07    1.80
+    65.0    0.00    0.00   -0.10   -0.27   -0.51   -0.83   -1.24   -1.70   -2.06   -2.13   -1.75   -0.92    0.11    0.90    1.06    0.53   -0.17   -0.08    1.83
+    70.0    0.00    0.01   -0.08   -0.25   -0.48   -0.81   -1.23   -1.70   -2.09   -2.20   -1.85   -1.07   -0.09    0.65    0.77    0.24   -0.44   -0.24    1.85
+    75.0    0.00    0.02   -0.07   -0.22   -0.46   -0.79   -1.22   -1.70   -2.11   -2.24   -1.93   -1.18   -0.26    0.43    0.51   -0.05   -0.70   -0.41    1.87
+    80.0    0.00    0.02   -0.05   -0.20   -0.44   -0.76   -1.20   -1.70   -2.11   -2.26   -1.97   -1.26   -0.37    0.26    0.28   -0.30   -0.94   -0.58    1.86
+    85.0    0.00    0.03   -0.04   -0.18   -0.41   -0.74   -1.18   -1.68   -2.10   -2.25   -1.97   -1.28   -0.44    0.14    0.11   -0.52   -1.15   -0.73    1.84
+    90.0    0.00    0.04   -0.02   -0.16   -0.39   -0.71   -1.15   -1.65   -2.07   -2.21   -1.94   -1.27   -0.46    0.07   -0.01   -0.67   -1.31   -0.87    1.79
+    95.0    0.00    0.04   -0.01   -0.14   -0.36   -0.69   -1.12   -1.62   -2.03   -2.16   -1.88   -1.22   -0.43    0.07   -0.05   -0.75   -1.42   -0.97    1.72
+   100.0    0.00    0.05    0.01   -0.12   -0.33   -0.66   -1.09   -1.57   -1.97   -2.09   -1.80   -1.14   -0.36    0.11   -0.03   -0.76   -1.47   -1.04    1.64
+   105.0    0.00    0.06    0.02   -0.10   -0.31   -0.62   -1.05   -1.53   -1.91   -2.02   -1.72   -1.04   -0.27    0.21    0.04   -0.71   -1.45   -1.08    1.57
+   110.0    0.00    0.06    0.03   -0.08   -0.28   -0.59   -1.01   -1.48   -1.85   -1.94   -1.63   -0.94   -0.15    0.33    0.17   -0.60   -1.38   -1.07    1.51
+   115.0    0.00    0.06    0.04   -0.07   -0.26   -0.56   -0.97   -1.43   -1.79   -1.88   -1.54   -0.84   -0.03    0.47    0.32   -0.45   -1.27   -1.04    1.47
+   120.0    0.00    0.07    0.05   -0.05   -0.23   -0.53   -0.93   -1.39   -1.75   -1.82   -1.47   -0.75    0.09    0.62    0.50   -0.27   -1.13   -0.97    1.46
+   125.0    0.00    0.07    0.05   -0.04   -0.22   -0.50   -0.91   -1.35   -1.71   -1.77   -1.41   -0.67    0.20    0.77    0.68   -0.09   -0.97   -0.87    1.50
+   130.0    0.00    0.07    0.06   -0.03   -0.20   -0.49   -0.88   -1.33   -1.68   -1.74   -1.37   -0.60    0.30    0.91    0.85    0.10   -0.81   -0.76    1.56
+   135.0    0.00    0.07    0.06   -0.02   -0.19   -0.48   -0.87   -1.32   -1.67   -1.72   -1.34   -0.55    0.38    1.04    1.01    0.28   -0.65   -0.64    1.66
+   140.0    0.00    0.07    0.06   -0.02   -0.19   -0.47   -0.87   -1.32   -1.67   -1.72   -1.32   -0.51    0.46    1.15    1.16    0.44   -0.50   -0.52    1.78
+   145.0    0.00    0.07    0.06   -0.02   -0.20   -0.48   -0.88   -1.33   -1.67   -1.72   -1.31   -0.48    0.52    1.24    1.29    0.58   -0.35   -0.39    1.91
+   150.0    0.00    0.06    0.05   -0.03   -0.21   -0.49   -0.89   -1.34   -1.69   -1.72   -1.30   -0.45    0.58    1.33    1.40    0.72   -0.22   -0.26    2.04
+   155.0    0.00    0.06    0.05   -0.04   -0.22   -0.52   -0.92   -1.37   -1.70   -1.73   -1.29   -0.42    0.63    1.41    1.50    0.84   -0.08   -0.12    2.17
+   160.0    0.00    0.06    0.04   -0.06   -0.25   -0.55   -0.95   -1.40   -1.72   -1.73   -1.28   -0.39    0.68    1.48    1.60    0.96    0.06    0.01    2.28
+   165.0    0.00    0.05    0.02   -0.08   -0.28   -0.58   -0.99   -1.43   -1.74   -1.74   -1.26   -0.36    0.73    1.55    1.70    1.08    0.20    0.15    2.38
+   170.0    0.00    0.04    0.01   -0.11   -0.31   -0.62   -1.03   -1.46   -1.76   -1.74   -1.25   -0.32    0.78    1.61    1.79    1.20    0.34    0.29    2.45
+   175.0    0.00    0.04   -0.01   -0.13   -0.35   -0.67   -1.07   -1.50   -1.78   -1.74   -1.23   -0.29    0.82    1.67    1.87    1.32    0.48    0.42    2.50
+   180.0    0.00    0.03   -0.03   -0.16   -0.39   -0.71   -1.12   -1.53   -1.80   -1.74   -1.22   -0.27    0.86    1.72    1.94    1.42    0.60    0.53    2.52
+   185.0    0.00    0.02   -0.05   -0.20   -0.43   -0.76   -1.17   -1.57   -1.83   -1.75   -1.21   -0.25    0.88    1.76    2.00    1.49    0.69    0.61    2.52
+   190.0    0.00    0.01   -0.07   -0.23   -0.48   -0.81   -1.22   -1.62   -1.86   -1.77   -1.22   -0.24    0.90    1.79    2.03    1.54    0.74    0.64    2.49
+   195.0    0.00    0.00   -0.09   -0.27   -0.52   -0.87   -1.28   -1.67   -1.91   -1.80   -1.24   -0.25    0.90    1.80    2.04    1.54    0.74    0.62    2.42
+   200.0    0.00   -0.01   -0.12   -0.30   -0.57   -0.92   -1.34   -1.73   -1.96   -1.85   -1.27   -0.27    0.90    1.80    2.03    1.51    0.67    0.53    2.32
+   205.0    0.00   -0.03   -0.14   -0.34   -0.62   -0.98   -1.40   -1.79   -2.03   -1.91   -1.32   -0.30    0.89    1.79    1.99    1.42    0.54    0.37    2.17
+   210.0    0.00   -0.04   -0.17   -0.38   -0.67   -1.04   -1.46   -1.87   -2.10   -1.98   -1.37   -0.33    0.87    1.76    1.94    1.30    0.35    0.15    1.98
+   215.0    0.00   -0.05   -0.19   -0.42   -0.72   -1.10   -1.53   -1.94   -2.18   -2.05   -1.43   -0.36    0.85    1.74    1.87    1.16    0.12   -0.12    1.75
+   220.0    0.00   -0.06   -0.22   -0.46   -0.77   -1.16   -1.61   -2.02   -2.26   -2.13   -1.49   -0.40    0.84    1.72    1.80    1.00   -0.13   -0.43    1.48
+   225.0    0.00   -0.07   -0.24   -0.49   -0.82   -1.22   -1.68   -2.10   -2.35   -2.21   -1.55   -0.43    0.83    1.71    1.74    0.85   -0.39   -0.74    1.20
+   230.0    0.00   -0.08   -0.26   -0.53   -0.87   -1.28   -1.75   -2.18   -2.43   -2.28   -1.59   -0.44    0.83    1.70    1.69    0.71   -0.62   -1.04    0.92
+   235.0    0.00   -0.09   -0.29   -0.57   -0.92   -1.34   -1.82   -2.26   -2.50   -2.34   -1.63   -0.45    0.85    1.71    1.66    0.61   -0.81   -1.29    0.65
+   240.0    0.00   -0.10   -0.31   -0.60   -0.97   -1.40   -1.88   -2.32   -2.56   -2.38   -1.65   -0.45    0.87    1.73    1.65    0.54   -0.94   -1.48    0.42
+   245.0    0.00   -0.11   -0.33   -0.64   -1.01   -1.46   -1.94   -2.38   -2.60   -2.41   -1.66   -0.44    0.89    1.76    1.66    0.53   -1.00   -1.59    0.25
+   250.0    0.00   -0.12   -0.35   -0.67   -1.06   -1.50   -1.99   -2.42   -2.64   -2.42   -1.66   -0.42    0.92    1.79    1.69    0.55   -0.99   -1.62    0.15
+   255.0    0.00   -0.13   -0.37   -0.70   -1.09   -1.55   -2.03   -2.46   -2.66   -2.42   -1.64   -0.39    0.95    1.82    1.72    0.59   -0.93   -1.57    0.13
+   260.0    0.00   -0.14   -0.38   -0.72   -1.13   -1.59   -2.07   -2.48   -2.66   -2.41   -1.62   -0.37    0.97    1.84    1.76    0.66   -0.83   -1.45    0.19
+   265.0    0.00   -0.14   -0.40   -0.74   -1.15   -1.62   -2.10   -2.49   -2.65   -2.39   -1.58   -0.34    0.98    1.85    1.78    0.73   -0.71   -1.30    0.31
+   270.0    0.00   -0.15   -0.41   -0.76   -1.18   -1.64   -2.11   -2.50   -2.64   -2.36   -1.55   -0.32    0.99    1.84    1.79    0.78   -0.59   -1.14    0.47
+   275.0    0.00   -0.15   -0.42   -0.77   -1.19   -1.66   -2.12   -2.49   -2.62   -2.32   -1.52   -0.30    0.98    1.81    1.77    0.81   -0.50   -0.98    0.64
+   280.0    0.00   -0.16   -0.42   -0.78   -1.20   -1.66   -2.12   -2.47   -2.58   -2.28   -1.48   -0.29    0.96    1.77    1.73    0.80   -0.45   -0.87    0.81
+   285.0    0.00   -0.16   -0.43   -0.78   -1.20   -1.66   -2.10   -2.45   -2.55   -2.24   -1.45   -0.28    0.94    1.72    1.67    0.76   -0.45   -0.82    0.94
+   290.0    0.00   -0.16   -0.43   -0.78   -1.19   -1.64   -2.08   -2.42   -2.51   -2.20   -1.43   -0.28    0.90    1.66    1.59    0.68   -0.50   -0.83    1.01
+   295.0    0.00   -0.16   -0.43   -0.77   -1.18   -1.62   -2.05   -2.38   -2.46   -2.16   -1.40   -0.29    0.86    1.59    1.50    0.58   -0.59   -0.90    1.01
+   300.0    0.00   -0.16   -0.42   -0.76   -1.16   -1.59   -2.01   -2.33   -2.41   -2.12   -1.38   -0.30    0.82    1.52    1.41    0.48   -0.72   -1.02    0.94
+   305.0    0.00   -0.16   -0.42   -0.75   -1.13   -1.55   -1.96   -2.27   -2.36   -2.08   -1.37   -0.31    0.79    1.46    1.33    0.37   -0.85   -1.17    0.81
+   310.0    0.00   -0.16   -0.41   -0.73   -1.10   -1.50   -1.90   -2.20   -2.30   -2.04   -1.35   -0.32    0.75    1.40    1.26    0.28   -0.97   -1.34    0.64
+   315.0    0.00   -0.16   -0.40   -0.71   -1.06   -1.45   -1.83   -2.14   -2.24   -1.99   -1.33   -0.32    0.72    1.36    1.21    0.22   -1.06   -1.48    0.45
+   320.0    0.00   -0.15   -0.39   -0.68   -1.03   -1.40   -1.77   -2.06   -2.17   -1.94   -1.30   -0.33    0.70    1.33    1.19    0.20   -1.11   -1.58    0.28
+   325.0    0.00   -0.15   -0.37   -0.66   -0.99   -1.34   -1.70   -1.99   -2.10   -1.89   -1.28   -0.32    0.69    1.32    1.18    0.21   -1.10   -1.62    0.14
+   330.0    0.00   -0.14   -0.36   -0.63   -0.95   -1.29   -1.64   -1.92   -2.04   -1.84   -1.24   -0.31    0.69    1.32    1.21    0.26   -1.03   -1.58    0.07
+   335.0    0.00   -0.14   -0.35   -0.61   -0.91   -1.24   -1.58   -1.86   -1.97   -1.78   -1.20   -0.29    0.70    1.34    1.25    0.35   -0.91   -1.48    0.08
+   340.0    0.00   -0.13   -0.33   -0.59   -0.88   -1.20   -1.52   -1.80   -1.91   -1.73   -1.15   -0.25    0.73    1.38    1.32    0.46   -0.75   -1.30    0.17
+   345.0    0.00   -0.13   -0.32   -0.56   -0.85   -1.16   -1.48   -1.75   -1.86   -1.67   -1.10   -0.20    0.78    1.43    1.40    0.60   -0.56   -1.08    0.33
+   350.0    0.00   -0.12   -0.31   -0.54   -0.82   -1.13   -1.44   -1.71   -1.81   -1.61   -1.04   -0.13    0.84    1.51    1.50    0.74   -0.34   -0.81    0.55
+   355.0    0.00   -0.11   -0.29   -0.52   -0.80   -1.10   -1.42   -1.68   -1.77   -1.56   -0.97   -0.06    0.92    1.59    1.60    0.89   -0.12   -0.54    0.81
+   360.0    0.00   -0.10   -0.28   -0.50   -0.78   -1.08   -1.40   -1.66   -1.74   -1.52   -0.91    0.02    1.02    1.69    1.71    1.04    0.08   -0.26    1.07
+   G02                                                      END OF FREQUENCY    
+   R01                                                      START OF FREQUENCY  
+     -0.52     -0.71     60.52                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.03   -0.12   -0.23   -0.31   -0.31   -0.22   -0.03    0.18    0.28    0.19   -0.09   -0.43   -0.65   -0.54   -0.03    0.66    1.08    0.62
+     0.0    0.00   -0.04   -0.15   -0.26   -0.38   -0.43   -0.43   -0.36   -0.27   -0.20   -0.25   -0.36   -0.49   -0.53   -0.34    0.12    0.69    1.04    0.75
+     5.0    0.00   -0.03   -0.13   -0.24   -0.34   -0.40   -0.38   -0.31   -0.21   -0.17   -0.19   -0.31   -0.43   -0.43   -0.20    0.29    0.88    1.28    1.01
+    10.0    0.00   -0.03   -0.11   -0.23   -0.31   -0.35   -0.34   -0.26   -0.17   -0.11   -0.14   -0.24   -0.36   -0.34   -0.07    0.46    1.12    1.55    1.30
+    15.0    0.00   -0.03   -0.11   -0.21   -0.28   -0.31   -0.28   -0.21   -0.10   -0.05   -0.09   -0.19   -0.28   -0.24    0.05    0.64    1.36    1.84    1.61
+    20.0    0.00   -0.01   -0.09   -0.19   -0.25   -0.27   -0.22   -0.13   -0.04    0.01   -0.02   -0.13   -0.23   -0.17    0.16    0.78    1.56    2.11    1.91
+    25.0    0.00   -0.01   -0.07   -0.15   -0.21   -0.22   -0.17   -0.06    0.03    0.07    0.04   -0.08   -0.19   -0.13    0.23    0.90    1.75    2.35    2.15
+    30.0    0.00    0.03   -0.06   -0.12   -0.17   -0.17   -0.10    0.01    0.12    0.15    0.10   -0.04   -0.16   -0.11    0.26    0.98    1.86    2.51    2.31
+    35.0    0.00    0.01   -0.04   -0.10   -0.14   -0.12   -0.03    0.09    0.21    0.24    0.16    0.01   -0.13   -0.09    0.28    1.01    1.93    2.60    2.40
+    40.0    0.00    0.01   -0.02   -0.08   -0.11   -0.08    0.04    0.16    0.28    0.33    0.24    0.06   -0.11   -0.09    0.26    1.00    1.93    2.61    2.41
+    45.0    0.00    0.02    0.10   -0.06   -0.07   -0.02    0.10    0.24    0.37    0.41    0.32    0.11   -0.07   -0.10    0.24    0.96    1.88    2.56    2.33
+    50.0    0.00    0.02    0.10   -0.03   -0.04    0.02    0.16    0.31    0.45    0.50    0.40    0.19   -0.04   -0.09    0.21    0.91    1.81    2.47    2.22
+    55.0    0.00    0.03    0.02   -0.01   -0.01    0.07    0.20    0.38    0.54    0.59    0.49    0.27    0.02   -0.06    0.21    0.87    1.74    2.36    2.07
+    60.0    0.00    0.04    0.03    0.01    0.02    0.10    0.25    0.44    0.61    0.69    0.60    0.36    0.10    1.05    0.22    0.86    1.67    2.25    1.94
+    65.0    0.00    0.04    0.04    0.02    0.04    0.13    0.29    0.49    0.69    0.78    0.69    0.48    0.20    0.08    0.28    0.87    1.66    2.19    1.85
+    70.0    0.00    0.05    0.06    0.04    0.05    0.16    0.32    0.55    0.75    0.87    0.81    0.60    0.33    0.18    0.37    0.93    1.68    2.17    1.83
+    75.0    0.00    0.05    0.06    0.05    0.08    0.17    0.35    0.58    0.82    0.95    0.92    0.73    0.46    0.31    0.49    1.03    1.75    2.23    1.88
+    80.0    0.00    0.05    0.07    0.07    0.10    0.19    0.37    0.62    0.86    1.04    1.03    0.84    0.59    0.45    0.62    1.16    1.88    2.36    2.02
+    85.0    0.00    0.05    0.08    0.07    0.11    0.20    0.38    0.65    0.92    1.11    1.13    0.97    0.72    0.58    0.76    1.30    2.05    2.54    2.21
+    90.0    0.00    0.07    0.09    0.08    0.12    0.20    0.39    0.68    0.97    1.18    1.21    1.05    0.81    0.69    0.88    1.46    2.23    2.75    2.44
+    95.0    0.00    0.07    0.09    0.09    0.11    0.20    0.41    0.69    1.01    1.24    1.28    1.13    0.90    0.76    0.98    1.58    2.40    2.95    2.63
+   100.0    0.00    0.07    0.09    0.09    0.11    0.20    0.41    0.71    1.05    1.28    1.33    1.18    0.92    0.80    1.03    1.67    2.51    3.09    2.77
+   105.0    0.00    0.07    0.09    0.09    0.11    0.20    0.42    0.73    1.06    1.31    1.36    1.20    0.93    0.79    1.01    1.67    2.57    3.16    2.81
+   110.0    0.00    0.06    0.09    0.09    0.11    0.20    0.42    0.73    1.07    1.32    1.37    1.17    0.88    0.71    0.93    1.62    2.52    3.11    2.69
+   115.0    0.00    0.06    0.09    0.08    0.11    0.20    0.42    0.73    1.08    1.32    1.33    1.12    0.79    0.59    0.78    1.46    2.37    2.92    2.41
+   120.0    0.00    0.06    0.09    0.08    0.09    0.19    0.40    0.72    1.07    1.30    1.30    1.04    0.66    0.42    0.58    1.22    2.09    2.60    1.98
+   125.0    0.00    0.06    0.08    0.07    0.09    0.18    0.39    0.71    1.05    1.27    1.24    0.94    0.51    0.20    0.31    0.91    1.72    2.15    1.39
+   130.0    0.00    0.05    0.07    0.07    0.08    0.16    0.38    0.70    1.03    1.22    1.16    0.82    0.33   -0.03   -0.01    0.52    1.27    1.60    0.70
+   135.0    0.00    0.05    0.06    0.05    0.06    0.15    0.36    0.68    0.98    1.16    1.07    0.69    0.14   -0.30   -0.33    0.10    0.77    0.99   -0.04
+   140.0    0.00    0.04    0.05    0.03    0.05    0.13    0.34    0.65    0.95    1.11    0.98    0.55   -0.07   -0.55   -0.68   -0.33    0.24    0.37   -0.78
+   145.0    0.00    0.04    0.04    0.02    0.02    0.11    0.32    0.62    0.91    1.04    0.88    0.40   -0.25   -0.82   -1.01   -0.75   -0.27   -0.23   -1.43
+   150.0    0.00    0.02    0.02    0.09   -0.01    0.08    0.29    0.59    0.87    0.98    0.79    0.27   -0.43   -1.05   -1.32   -1.14   -0.75   -0.77   -1.99
+   155.0    0.00    0.02    0.06   -0.03   -0.04    0.06    0.25    0.55    0.82    0.91    0.71    0.15   -0.60   -1.26   -1.60   -1.49   -1.15   -1.19   -2.38
+   160.0    0.00    0.01   -0.02   -0.06   -0.07    0.03    0.23    0.51    0.79    0.85    0.62    0.04   -0.74   -1.46   -1.84   -1.77   -1.47   -1.50   -2.61
+   165.0    0.00    0.01   -0.04   -0.09   -0.10   -0.02    0.19    0.49    0.74    0.81    0.54   -0.05   -0.86   -1.61   -2.02   -1.99   -1.70   -1.68   -2.66
+   170.0    0.00   -0.01   -0.06   -0.12   -0.13   -0.05    0.15    0.45    0.69    0.75    0.48   -0.14   -0.96   -1.72   -2.16   -2.14   -1.83   -1.75   -2.57
+   175.0    0.00   -0.01   -0.08   -0.15   -0.18   -0.09    0.12    0.41    0.66    0.70    0.42   -0.20   -1.05   -1.82   -2.27   -2.22   -1.90   -1.72   -2.37
+   180.0    0.00   -0.02   -0.10   -0.19   -0.23   -0.13    0.08    0.38    0.62    0.66    0.38   -0.27   -1.11   -1.89   -2.31   -2.27   -1.89   -1.62   -2.09
+   185.0    0.00   -0.04   -0.12   -0.22   -0.26   -0.18    0.02    0.32    0.59    0.62    0.32   -0.32   -1.16   -1.93   -2.34   -2.27   -1.85   -1.50   -1.81
+   190.0    0.00   -0.04   -0.15   -0.26   -0.31   -0.24   -0.02    0.28    0.53    0.58    0.28   -0.37   -1.19   -1.94   -2.34   -2.24   -1.79   -1.37   -1.55
+   195.0    0.00   -0.06   -0.17   -0.29   -0.35   -0.28   -0.08    0.23    0.48    0.53    0.24   -0.40   -1.21   -1.95   -2.33   -2.20   -1.71   -1.24   -1.34
+   200.0    0.00   -0.06   -0.18   -0.33   -0.39   -0.34   -0.13    0.18    0.43    0.48    0.20   -0.43   -1.24   -1.96   -2.30   -2.14   -1.62   -1.14   -1.21
+   205.0    0.00   -0.07   -0.20   -0.36   -0.44   -0.39   -0.18    0.11    0.38    0.42    0.15   -0.46   -1.25   -1.94   -2.26   -2.08   -1.54   -1.06   -1.15
+   210.0    0.00   -0.08   -0.22   -0.39   -0.48   -0.44   -0.25    0.05    0.32    0.37    0.09   -0.49   -1.26   -1.92   -2.20   -2.01   -1.47   -1.02   -1.16
+   215.0    0.00   -0.08   -0.23   -0.41   -0.52   -0.49   -0.30   -0.46    0.26    0.31    0.04   -0.54   -1.27   -1.89   -2.16   -1.92   -1.40   -0.97   -1.20
+   220.0    0.00   -0.09   -0.26   -0.44   -0.56   -0.53   -0.36   -0.07    0.19    0.24   -0.01   -0.57   -1.27   -1.86   -2.08   -1.83   -1.29   -0.91   -1.24
+   225.0    0.00   -0.10   -0.28   -0.46   -0.59   -0.57   -0.41   -0.13    0.12    0.18   -0.05   -0.60   -1.27   -1.83   -2.00   -1.71   -1.17   -0.82   -1.26
+   230.0    0.00   -0.11   -0.29   -0.48   -0.60   -0.60   -0.45   -0.19    0.05    0.12   -0.11   -0.62   -1.26   -1.78   -1.90   -1.56   -0.99   -0.67   -1.19
+   235.0    0.00   -0.11   -0.30   -0.49   -0.63   -0.64   -0.50   -0.25   -0.02    0.06   -0.16   -0.65   -1.24   -1.70   -1.77   -1.38   -0.78   -0.46   -1.03
+   240.0    0.00   -0.11   -0.30   -0.51   -0.65   -0.67   -0.53   -0.30   -0.07   -0.34   -0.20   -0.65   -1.20   -1.61   -1.61   -1.17   -0.51   -0.17   -0.78
+   245.0    0.00   -0.12   -0.31   -0.51   -0.66   -0.70   -0.58   -0.37   -0.14   -0.06   -0.24   -0.65   -1.15   -1.50   -1.44   -0.92   -0.20    0.19   -0.41
+   250.0    0.00   -0.12   -0.30   -0.51   -0.67   -0.72   -0.62   -0.42   -0.20   -0.12   -0.27   -0.64   -1.08   -1.36   -1.22   -0.63    0.16    0.60    0.03
+   255.0    0.00   -0.12   -0.30   -0.51   -0.67   -0.75   -0.66   -0.48   -0.27   -0.17   -0.29   -0.62   -0.99   -1.20   -0.99   -0.33    0.53    1.05    0.54
+   260.0    0.00   -0.12   -0.31   -0.51   -0.68   -0.77   -0.70   -0.54   -0.33   -0.22   -0.31   -0.57   -0.88   -1.01   -0.74   -0.01    0.91    1.51    1.06
+   265.0    0.00   -0.12   -0.30   -0.52   -0.69   -0.78   -0.73   -0.59   -0.38   -0.27   -0.32   -0.52   -0.76   -0.82   -0.49    0.30    1.29    1.95    1.59
+   270.0    0.00   -0.13   -0.30   -0.51   -0.69   -0.79   -0.77   -0.64   -0.46   -0.31   -0.31   -0.46   -0.64   -0.63   -0.22    0.60    1.63    2.35    2.07
+   275.0    0.00   -0.13   -0.29   -0.51   -0.68   -0.80   -0.79   -0.69   -0.51   -0.35   -0.31   -0.39   -0.50   -0.44   -0.70    0.87    1.93    2.69    2.47
+   280.0    0.00   -0.11   -0.29   -0.49   -0.68   -0.80   -0.82   -0.72   -0.53   -0.38   -0.30   -0.33   -0.39   -0.27    0.21    1.09    2.16    2.94    2.78
+   285.0    0.00   -0.11   -0.28   -0.47   -0.67   -0.80   -0.84   -0.74   -0.57   -0.40   -0.29   -0.28   -0.29   -0.13    0.37    1.25    2.32    3.10    2.97
+   290.0    0.00   -0.11   -0.28   -0.47   -0.66   -0.80   -0.84   -0.77   -0.60   -0.41   -0.28   -0.25   -0.20   -0.03    0.47    1.35    2.40    3.15    3.05
+   295.0    0.00   -0.11   -0.27   -0.46   -0.65   -0.79   -0.84   -0.78   -0.61   -0.43   -0.28   -0.22   -0.17    0.02    0.52    1.37    2.38    3.11    3.01
+   300.0    0.00   -0.11   -0.26   -0.44   -0.64   -0.78   -0.84   -0.78   -0.62   -0.42   -0.28   -0.21   -0.16    0.03    0.51    1.32    2.29    2.99    2.86
+   305.0    0.00   -0.11   -0.25   -0.44   -0.63   -0.76   -0.83   -0.76   -0.61   -0.42   -0.28   -0.22   -0.18   -0.02    0.44    1.21    2.13    2.78    2.63
+   310.0    0.00   -0.10   -0.25   -0.42   -0.60   -0.74   -0.80   -0.75   -0.59   -0.42   -0.30   -0.26   -0.24   -0.10    0.31    1.03    1.91    2.51    2.33
+   315.0    0.00   -0.09   -0.23   -0.40   -0.58   -0.72   -0.77   -0.71   -0.57   -0.42   -0.31   -0.29   -0.30   -0.21    0.16    0.84    1.65    2.20    2.00
+   320.0    0.00   -0.09   -0.23   -0.39   -0.56   -0.70   -0.73   -0.68   -0.54   -0.40   -0.33   -0.34   -0.39   -0.33   -0.02    0.61    1.37    1.87    1.64
+   325.0    0.00   -0.09   -0.21   -0.38   -0.54   -0.65   -0.70   -0.64   -0.52   -0.39   -0.33   -0.39   -0.48   -0.47   -0.18    0.38    1.10    1.55    1.29
+   330.0    0.00   -0.08   -0.21   -0.36   -0.51   -0.62   -0.65   -0.59   -0.47   -0.37   -0.34   -0.42   -0.55   -0.57   -0.34    0.19    0.84    1.26    0.97
+   335.0    0.00   -0.07   -0.20   -0.34   -0.50   -0.60   -0.61   -0.55   -0.44   -0.34   -0.35   -0.45   -0.60   -0.66   -0.46    0.03    0.64    1.02    0.73
+   340.0    0.00   -0.07   -0.18   -0.34   -0.47   -0.56   -0.58   -0.51   -0.41   -0.32   -0.34   -0.47   -0.64   -0.71   -0.54   -0.09    0.49    0.85    0.54
+   345.0    0.00   -0.06   -0.18   -0.32   -0.45   -0.53   -0.54   -0.48   -0.37   -0.30   -0.32   -0.47   -0.63   -0.71   -0.56   -0.12    0.43    0.76    0.46
+   350.0    0.00   -0.06   -0.17   -0.30   -0.43   -0.50   -0.50   -0.43   -0.34   -0.28   -0.30   -0.43   -0.61   -0.69   -0.52   -0.10    0.44    0.76    0.46
+   355.0    0.00   -0.05   -0.15   -0.29   -0.40   -0.47   -0.46   -0.40   -0.30   -0.24   -0.28   -0.41   -0.56   -0.61   -0.45   -0.02    0.52    0.86    0.57
+   360.0    0.00   -0.04   -0.15   -0.26   -0.38   -0.43   -0.43   -0.36   -0.27   -0.20   -0.25   -0.36   -0.49   -0.53   -0.34    0.12    0.69    1.04    0.75
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+      0.62      0.47     57.04                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.08   -0.30   -0.58   -0.91   -1.24   -1.60   -1.98   -2.28   -2.32   -1.96   -1.16   -0.14    0.68    0.85    0.21   -0.83   -1.24    0.30
+     0.0    0.00   -0.20   -0.49   -0.76   -1.02   -1.26   -1.55   -1.90   -2.17   -2.22   -1.82   -0.96    0.16    1.03    1.17    0.38   -0.96   -1.73   -0.48
+     5.0    0.00   -0.20   -0.47   -0.75   -1.00   -1.25   -1.56   -1.90   -2.20   -2.23   -1.82   -0.94    0.18    1.07    1.23    0.46   -0.82   -1.57   -0.30
+    10.0    0.00   -0.19   -0.45   -0.73   -0.99   -1.26   -1.57   -1.92   -2.22   -2.23   -1.81   -0.92    0.21    1.10    1.28    0.54   -0.69   -1.38   -0.12
+    15.0    0.00   -0.17   -0.43   -0.70   -0.98   -1.25   -1.58   -1.95   -2.22   -2.23   -1.79   -0.90    0.23    1.12    1.30    0.61   -0.57   -1.19    0.05
+    20.0    0.00   -0.15   -0.40   -0.69   -0.96   -1.26   -1.59   -1.95   -2.23   -2.22   -1.79   -0.88    0.23    1.12    1.31    0.64   -0.46   -1.02    0.19
+    25.0    0.00   -0.14   -0.39   -0.67   -0.96   -1.26   -1.59   -1.95   -2.21   -2.21   -1.77   -0.88    0.22    1.09    1.29    0.66   -0.38   -0.89    0.28
+    30.0    0.00   -0.13   -0.36   -0.64   -0.94   -1.24   -1.59   -1.94   -2.21   -2.20   -1.76   -0.90    0.17    1.03    1.23    0.65   -0.32   -0.79    0.35
+    35.0    0.00   -0.11   -0.33   -0.62   -0.93   -1.23   -1.58   -1.93   -2.18   -2.19   -1.78   -0.94    0.10    0.93    1.13    0.60   -0.31   -0.72    0.37
+    40.0    0.00   -0.09   -0.32   -0.61   -0.90   -1.22   -1.57   -1.91   -2.17   -2.19   -1.81   -1.00   -1.14    0.80    1.01    0.51   -0.35   -0.71    0.37
+    45.0    0.00   -0.07   -0.28   -0.58   -0.88   -1.20   -1.55   -1.90   -2.17   -2.21   -1.85   -1.10   -0.14    0.64    0.85    0.37   -0.43   -0.74    0.34
+    50.0    0.00   -0.06   -0.27   -0.54   -0.85   -1.17   -1.53   -1.89   -2.18   -2.24   -1.93   -1.22   -0.30    0.46    0.65    0.20   -0.56   -0.81    0.30
+    55.0    0.00   -0.05   -0.24   -0.52   -0.81   -1.14   -1.51   -1.88   -2.19   -2.29   -2.02   -1.36   -0.48    0.25    0.44   -1.07   -0.72   -0.92    0.26
+    60.0    0.00   -0.03   -0.21   -0.48   -0.79   -1.11   -1.48   -1.88   -2.23   -2.36   -2.13   -1.50   -0.66    0.05    0.22   -0.23   -0.92   -1.06    0.22
+    65.0    0.00   -0.01   -0.18   -0.45   -0.75   -1.09   -1.46   -1.88   -2.26   -2.43   -2.24   -1.64   -0.82   -0.15    0.01   -0.45   -1.13   -1.22    0.20
+    70.0    0.00   -0.01   -0.15   -0.40   -0.70   -1.05   -1.44   -1.89   -2.30   -2.51   -2.34   -1.77   -0.97   -0.31   -0.19   -0.66   -1.37   -1.39    0.17
+    75.0    0.00    0.02   -0.13   -0.36   -0.67   -1.02   -1.43   -1.90   -2.34   -2.58   -2.44   -1.87   -1.08   -0.45   -0.34   -0.86   -1.58   -1.57    0.17
+    80.0    0.00    0.03   -0.09   -0.32   -0.62   -0.97   -1.41   -1.91   -2.37   -2.64   -2.50   -1.94   -1.15   -0.52   -0.45   -1.01   -1.76   -1.74    0.15
+    85.0    0.00    0.04   -0.07   -0.28   -0.57   -0.93   -1.38   -1.90   -2.39   -2.66   -2.54   -1.96   -1.18   -0.55   -0.51   -1.12   -1.92   -1.87    0.15
+    90.0    0.00    0.06   -0.03   -0.24   -0.53   -0.89   -1.34   -1.88   -2.38   -2.65   -2.53   -1.95   -1.15   -0.54   -0.53   -1.19   -2.03   -2.00    0.15
+    95.0    0.00    0.07   -0.01   -0.21   -0.49   -0.85   -1.30   -1.86   -2.36   -2.63   -2.48   -1.90   -1.09   -0.47   -0.48   -1.20   -2.10   -2.08    0.14
+   100.0    0.00    0.09    0.02   -0.17   -0.44   -0.81   -1.27   -1.80   -2.31   -2.57   -2.41   -1.81   -0.98   -0.38   -0.40   -1.16   -2.12   -2.13    0.12
+   105.0    0.00    0.10    0.04   -0.14   -0.41   -0.75   -1.22   -1.75   -2.24   -2.49   -2.32   -1.68   -0.85   -0.24   -0.30   -1.09   -2.08   -2.14    0.12
+   110.0    0.00    0.11    0.06   -0.11   -0.37   -0.72   -1.16   -1.69   -2.16   -2.38   -2.20   -1.55   -0.71   -0.10   -0.15   -0.97   -2.00   -2.10    0.13
+   115.0    0.00    0.11    0.08   -0.09   -0.34   -0.68   -1.12   -1.62   -2.07   -2.28   -2.06   -1.41   -0.56    0.05   -0.01   -0.83   -1.88   -2.03    0.15
+   120.0    0.00    0.13    0.09   -0.06   -0.30   -0.65   -1.07   -1.56   -1.99   -2.17   -1.94   -1.28   -0.43    0.19    0.15   -0.66   -1.73   -1.92    0.20
+   125.0    0.00    0.13    0.09   -0.05   -0.29   -0.62   -1.04   -1.50   -1.92   -2.07   -1.82   -1.16   -0.30    0.33    0.30   -0.49   -1.55   -1.76    0.30
+   130.0    0.00    0.14    0.11   -0.04   -0.28   -0.61   -1.01   -1.46   -1.85   -1.99   -1.74   -1.06   -0.19    0.45    0.45   -0.30   -1.35   -1.58    0.41
+   135.0    0.00    0.14    0.11   -0.03   -0.27   -0.61   -1.00   -1.44   -1.81   -1.93   -1.66   -0.99   -0.12    0.56    0.58   -0.12   -1.14   -1.38    0.57
+   140.0    0.00    0.14    0.11   -0.03   -0.28   -0.60   -1.00   -1.43   -1.79   -1.90   -1.62   -0.94   -0.05    0.65    0.73    0.06   -0.93   -1.18    0.75
+   145.0    0.00    0.14    0.11   -0.04   -0.30   -0.62   -1.02   -1.44   -1.78   -1.90   -1.60   -0.91   -0.52    0.72    0.86    0.23   -0.71   -0.95    0.95
+   150.0    0.00    0.13    0.10   -0.05   -0.31   -0.64   -1.04   -1.46   -1.80   -1.90   -1.61   -0.90    0.04    0.80    0.97    0.42   -0.51   -0.73    1.14
+   155.0    0.00    0.13    0.10   -0.07   -0.33   -0.67   -1.07   -1.50   -1.83   -1.93   -1.62   -0.90    0.06    0.87    1.09    0.58   -0.30   -0.52    1.35
+   160.0    0.00    0.13    0.08   -0.09   -0.37   -0.71   -1.11   -1.53   -1.86   -1.95   -1.65   -0.91    0.08    0.93    1.20    0.73   -0.11   -0.34    1.51
+   165.0    0.00    0.11    0.06   -0.11   -0.40   -0.74   -1.15   -1.58   -1.90   -2.00   -1.67   -0.92    0.10    0.98    1.31    0.87    0.05   -0.17    1.67
+   170.0    0.00    0.10    0.05   -0.15   -0.43   -0.78   -1.19   -1.61   -1.94   -2.03   -1.71   -0.92    0.12    1.02    1.39    0.99    0.19   -0.03    1.77
+   175.0    0.00    0.10    0.03   -0.17   -0.47   -0.82   -1.23   -1.65   -1.98   -2.06   -1.72   -0.94    0.12    1.06    1.45    1.09    0.30    0.07    1.84
+   180.0    0.00    0.08    0.03   -0.20   -0.50   -0.86   -1.27   -1.68   -2.01   -2.09   -1.75   -0.95    0.12    1.08    1.49    1.15    0.36    0.13    1.85
+   185.0    0.00    0.06   -0.03   -0.24   -0.54   -0.90   -1.30   -1.72   -2.04   -2.11   -1.76   -0.96    0.11    1.08    1.51    1.16    0.38    0.15    1.82
+   190.0    0.00    0.05   -0.06   -0.27   -0.58   -0.94   -1.34   -1.75   -2.07   -2.13   -1.79   -0.98    0.10    1.07    1.48    1.14    0.36    0.11    1.75
+   195.0    0.00    0.04   -0.08   -0.31   -0.62   -0.98   -1.38   -1.78   -2.09   -2.15   -1.81   -1.01    0.07    1.03    1.43    1.08    0.30    0.04    1.64
+   200.0    0.00    0.02   -0.12   -0.35   -0.67   -1.02   -1.41   -1.81   -2.12   -2.19   -1.84   -1.04    0.04    0.98    1.36    0.99    0.18   -0.09    1.50
+   205.0    0.00   -0.01   -0.15   -0.40   -0.71   -1.06   -1.46   -1.85   -2.17   -2.23   -1.87   -1.07   -0.89    0.93    1.27    0.86    0.04   -0.25    1.31
+   210.0    0.00   -0.03   -0.19   -0.45   -0.77   -1.11   -1.50   -1.91   -2.21   -2.27   -1.91   -1.10   -0.04    0.86    1.18    0.72   -0.14   -0.44    1.10
+   215.0    0.00   -0.04   -0.22   -0.50   -0.82   -1.17   -1.56   -1.95   -2.27   -2.31   -1.95   -1.13   -0.08    0.82    1.09    0.59   -0.32   -0.65    0.86
+   220.0    0.00   -0.06   -0.26   -0.55   -0.87   -1.23   -1.63   -2.02   -2.33   -2.37   -1.99   -1.17   -0.09    0.78    1.02    0.46   -0.51   -0.88    0.60
+   225.0    0.00   -0.08   -0.30   -0.60   -0.94   -1.30   -1.69   -2.09   -2.40   -2.44   -2.04   -1.19   -0.11    0.76    0.97    0.35   -0.68   -1.10    0.33
+   230.0    0.00   -0.10   -0.33   -0.66   -1.00   -1.37   -1.77   -2.17   -2.47   -2.49   -2.07   -1.20   -0.10    0.76    0.94    0.26   -0.83   -1.31    0.07
+   235.0    0.00   -0.12   -0.38   -0.72   -1.07   -1.44   -1.85   -2.25   -2.54   -2.55   -2.10   -1.20   -0.08    0.78    0.94    0.21   -0.96   -1.50   -0.19
+   240.0    0.00   -0.14   -0.42   -0.77   -1.15   -1.53   -1.92   -2.31   -2.60   -2.59   -2.12   -1.20   -0.05    0.82    0.96    0.18   -1.04   -1.66   -0.42
+   245.0    0.00   -0.15   -0.46   -0.83   -1.21   -1.61   -2.00   -2.39   -2.65   -2.63   -2.14   -1.18   -0.02    0.87    1.00    0.20   -1.09   -1.77   -0.60
+   250.0    0.00   -0.17   -0.49   -0.88   -1.28   -1.67   -2.07   -2.44   -2.71   -2.65   -2.15   -1.16    0.02    0.93    1.06    0.23   -1.09   -1.85   -0.75
+   255.0    0.00   -0.20   -0.53   -0.94   -1.34   -1.74   -2.13   -2.50   -2.74   -2.67   -2.14   -1.14    0.06    0.98    1.11    0.27   -1.08   -1.87   -0.83
+   260.0    0.00   -0.21   -0.56   -0.98   -1.40   -1.80   -2.19   -2.54   -2.76   -2.67   -2.14   -1.12    0.09    1.02    1.16    0.33   -1.04   -1.85   -0.84
+   265.0    0.00   -0.22   -0.59   -1.02   -1.44   -1.86   -2.24   -2.57   -2.77   -2.68   -2.11   -1.10    0.11    1.06    1.20    0.38   -0.98   -1.81   -0.79
+   270.0    0.00   -0.24   -0.62   -1.05   -1.50   -1.89   -2.26   -2.60   -2.78   -2.67   -2.10   -1.09    0.13    1.06    1.22    0.41   -0.93   -1.74   -0.69
+   275.0    0.00   -0.25   -0.64   -1.09   -1.52   -1.92   -2.29   -2.60   -2.77   -2.64   -2.09   -1.07    0.13    1.04    1.21    0.43   -0.88   -1.65   -0.57
+   280.0    0.00   -0.26   -0.66   -1.11   -1.55   -1.94   -2.30   -2.59   -2.74   -2.62   -2.06   -1.07    0.11    1.02    1.19    0.43   -0.85   -1.58   -0.40
+   285.0    0.00   -0.27   -0.67   -1.12   -1.55   -1.95   -2.28   -2.57   -2.72   -2.59   -2.04   -1.07    0.09    0.99    1.15    0.41   -0.84   -1.52   -0.24
+   290.0    0.00   -0.27   -0.68   -1.13   -1.55   -1.93   -2.26   -2.54   -2.68   -2.55   -2.02   -1.07    0.07    0.95    1.10    0.36   -0.85   -1.48   -0.12
+   295.0    0.00   -0.28   -0.69   -1.12   -1.54   -1.91   -2.23   -2.49   -2.63   -2.51   -1.99   -1.07    0.04    0.91    1.04    0.31   -0.88   -1.47   -0.02
+   300.0    0.00   -0.29   -0.68   -1.11   -1.52   -1.87   -2.17   -2.43   -2.57   -2.46   -1.96   -1.07    0.02    0.86    0.99    0.26   -0.94   -1.51    0.02
+   305.0    0.00   -0.29   -0.68   -1.10   -1.48   -1.81   -2.11   -2.37   -2.51   -2.41   -1.94   -1.06    0.01    0.83    0.95    0.19   -1.00   -1.57   -0.81
+   310.0    0.00   -0.29   -0.67   -1.08   -1.45   -1.75   -2.04   -2.28   -2.45   -2.36   -1.91   -1.05   -0.75    0.80    0.91    0.14   -1.08   -1.66   -0.07
+   315.0    0.00   -0.29   -0.66   -1.06   -1.39   -1.69   -1.96   -2.21   -2.38   -2.31   -1.87   -1.03   -0.01    0.79    0.88    0.09   -1.16   -1.77   -0.19
+   320.0    0.00   -0.28   -0.65   -1.02   -1.35   -1.62   -1.88   -2.13   -2.31   -2.26   -1.84   -1.03   -0.70    0.79    0.87    0.07   -1.23   -1.88   -0.34
+   325.0    0.00   -0.28   -0.63   -0.98   -1.29   -1.55   -1.80   -2.05   -2.25   -2.23   -1.83   -1.01    0.01    0.80    0.87    0.06   -1.28   -1.99   -0.50
+   330.0    0.00   -0.27   -0.61   -0.95   -1.24   -1.48   -1.73   -1.99   -2.20   -2.20   -1.81   -1.00    0.02    0.80    0.89    0.05   -1.30   -2.07   -0.64
+   335.0    0.00   -0.27   -0.59   -0.91   -1.18   -1.42   -1.67   -1.94   -2.16   -2.18   -1.80   -1.00    0.03    0.83    0.92    0.08   -1.31   -2.13   -0.75
+   340.0    0.00   -0.25   -0.57   -0.88   -1.14   -1.37   -1.61   -1.90   -2.15   -2.18   -1.80   -0.99    0.05    0.86    0.96    0.11   -1.29   -2.13   -0.81
+   345.0    0.00   -0.25   -0.56   -0.85   -1.10   -1.32   -1.58   -1.88   -2.14   -2.18   -1.81   -0.99    0.07    0.90    1.01    0.17   -1.24   -2.10   -0.81
+   350.0    0.00   -0.24   -0.54   -0.81   -1.06   -1.29   -1.55   -1.87   -2.14   -2.18   -1.82   -0.98    0.09    0.95    1.07    0.22   -1.16   -2.02   -0.75
+   355.0    0.00   -0.22   -0.51   -0.78   -1.04   -1.27   -1.55   -1.88   -2.16   -2.20   -1.82   -0.97    0.12    0.99    1.11    0.30   -1.06   -1.90   -0.63
+   360.0    0.00   -0.20   -0.49   -0.76   -1.02   -1.26   -1.55   -1.90   -2.17   -2.22   -1.82   -0.96    0.16    1.03    1.17    0.38   -0.96   -1.73   -0.48
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+NOV_WAAS_600    NONE                                        TYPE / SERIAL NO    
+FIELD               NGS                      2    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+     -1.62     -0.17    374.85                              NORTH / EAST / UP   
+   NOAZI    0.00    0.37    0.60    0.67    0.78    0.58    0.34    0.21    0.13    0.09    0.14    0.31    0.57    1.05    1.52    2.59    3.97
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -3.08     -3.89    389.85                              NORTH / EAST / UP   
+   NOAZI    0.00    1.17    1.59    1.62    1.21    0.72   -0.09   -0.77   -1.41   -1.91   -2.05   -1.76   -1.03    0.17    1.57    3.09    5.05
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+NOV501          NONE                                        TYPE / SERIAL NO    
+FIELD               NGS                      3    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     1                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+     -0.22      1.63     37.65                              NORTH / EAST / UP   
+   NOAZI    0.00    3.97    6.30    7.17    7.08    6.38    5.44    4.51    3.83    3.49    3.64    4.01    4.67    5.55    6.22    6.79    6.97
+   G01                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+NOV501+CR       NONE                                        TYPE / SERIAL NO    
+FIELD               NGS                      3    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     1                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+     -0.42      1.73     78.85                              NORTH / EAST / UP   
+   NOAZI    0.00    0.17    0.20    0.07   -0.32   -0.82   -1.46   -2.09   -2.47   -2.81   -2.86   -2.59   -2.23   -1.45   -0.28    1.49    4.07
+   G01                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+NOV502          NONE                                        TYPE / SERIAL NO    
+FIELD               NGS                      3    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+     -0.52     -1.67     41.85                              NORTH / EAST / UP   
+   NOAZI    0.00   -2.33   -3.30   -3.53   -3.22   -2.72   -2.16   -1.79   -1.37   -1.31   -1.26   -1.29   -1.33   -1.15   -0.48    1.19    4.37
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.32     -2.29     59.35                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.83   -1.61   -2.48   -3.19   -3.78   -4.19   -4.47   -4.51   -4.31   -3.95   -3.46   -2.83   -2.43   -2.43   -3.11   -4.45
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+NOV502+CR       NONE                                        TYPE / SERIAL NO    
+FIELD               NGS                      3    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+     -0.72     -2.77     29.25                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.23   -0.60   -1.03   -1.72   -2.62   -3.56   -4.39   -5.07   -5.51   -5.56   -5.09   -4.13   -2.35    0.32    4.09    9.57
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.62     -1.29     68.05                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.23   -0.71   -1.28   -1.89   -2.48   -3.19   -3.77   -4.31   -4.61   -4.65   -4.26   -3.43   -2.33   -0.93    0.79    2.95
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+NOV503+CR       NONE                                        TYPE / SERIAL NO    
+FIELD               NGS                      2    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      2.88     -1.77     68.35                              NORTH / EAST / UP   
+   NOAZI    0.00    0.07   -0.10   -0.43   -0.92   -1.62   -2.26   -2.89   -3.37   -3.61   -3.46   -3.19   -2.53   -1.55    0.02    2.29    5.47
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.18     -0.29     84.65                              NORTH / EAST / UP   
+   NOAZI    0.00   -1.63   -2.81   -3.58   -4.39   -5.08   -5.69   -6.37   -6.91   -7.41   -7.55   -7.36   -6.53   -5.23   -3.13   -0.31    3.75
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+NOV503+CR       SPKE                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH              11    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+Geo++ designation: NOV503+CR       NOKE                     COMMENT             
+Number of Calibrated Antennas GPS:      011                 COMMENT             
+Number of Individual Calibrations GPS:  070                 COMMENT             
+   G01                                                      START OF FREQUENCY  
+      1.44     -2.00     72.73                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.09   -0.33   -0.73   -1.23   -1.80   -2.38   -2.95   -3.46   -3.91   -4.25   -4.44   -4.37   -3.88   -2.79   -0.91    1.85    5.36    9.25
+     0.0    0.00   -0.09   -0.32   -0.69   -1.16   -1.68   -2.22   -2.74   -3.20   -3.61   -3.93   -4.12   -4.05   -3.56   -2.43   -0.47    2.38    5.97    9.86
+     5.0    0.00   -0.08   -0.31   -0.68   -1.15   -1.67   -2.21   -2.72   -3.18   -3.58   -3.90   -4.09   -4.03   -3.54   -2.41   -0.44    2.43    6.05    9.96
+    10.0    0.00   -0.08   -0.31   -0.67   -1.14   -1.67   -2.20   -2.71   -3.16   -3.56   -3.88   -4.07   -4.02   -3.53   -2.40   -0.42    2.47    6.11   10.05
+    15.0    0.00   -0.07   -0.30   -0.67   -1.14   -1.67   -2.20   -2.71   -3.16   -3.56   -3.88   -4.07   -4.02   -3.53   -2.40   -0.42    2.48    6.14   10.11
+    20.0    0.00   -0.07   -0.30   -0.67   -1.14   -1.68   -2.22   -2.72   -3.18   -3.57   -3.89   -4.08   -4.02   -3.54   -2.41   -0.43    2.47    6.14   10.15
+    25.0    0.00   -0.07   -0.29   -0.67   -1.15   -1.69   -2.24   -2.75   -3.21   -3.60   -3.91   -4.10   -4.04   -3.56   -2.43   -0.46    2.44    6.12   10.16
+    30.0    0.00   -0.06   -0.29   -0.67   -1.16   -1.71   -2.26   -2.78   -3.25   -3.64   -3.96   -4.14   -4.08   -3.59   -2.46   -0.50    2.39    6.07   10.13
+    35.0    0.00   -0.06   -0.29   -0.67   -1.17   -1.73   -2.30   -2.83   -3.30   -3.70   -4.01   -4.19   -4.12   -3.63   -2.51   -0.55    2.31    5.99   10.08
+    40.0    0.00   -0.06   -0.29   -0.68   -1.18   -1.75   -2.33   -2.88   -3.36   -3.77   -4.08   -4.25   -4.18   -3.68   -2.56   -0.62    2.23    5.89   10.00
+    45.0    0.00   -0.06   -0.29   -0.68   -1.20   -1.78   -2.37   -2.93   -3.43   -3.84   -4.16   -4.33   -4.25   -3.75   -2.63   -0.70    2.13    5.77    9.90
+    50.0    0.00   -0.06   -0.29   -0.69   -1.21   -1.81   -2.41   -2.99   -3.50   -3.92   -4.25   -4.41   -4.33   -3.82   -2.70   -0.79    2.02    5.65    9.79
+    55.0    0.00   -0.05   -0.29   -0.70   -1.23   -1.83   -2.45   -3.04   -3.56   -4.00   -4.33   -4.50   -4.41   -3.91   -2.79   -0.88    1.91    5.53    9.67
+    60.0    0.00   -0.05   -0.29   -0.70   -1.24   -1.86   -2.49   -3.09   -3.62   -4.08   -4.42   -4.60   -4.51   -4.00   -2.88   -0.98    1.81    5.41    9.55
+    65.0    0.00   -0.05   -0.29   -0.71   -1.25   -1.88   -2.52   -3.13   -3.68   -4.14   -4.50   -4.69   -4.60   -4.10   -2.98   -1.07    1.70    5.30    9.44
+    70.0    0.00   -0.05   -0.29   -0.71   -1.26   -1.89   -2.54   -3.16   -3.72   -4.20   -4.57   -4.77   -4.69   -4.19   -3.07   -1.16    1.61    5.19    9.33
+    75.0    0.00   -0.05   -0.29   -0.72   -1.27   -1.91   -2.56   -3.19   -3.76   -4.25   -4.63   -4.84   -4.77   -4.27   -3.15   -1.25    1.52    5.10    9.22
+    80.0    0.00   -0.05   -0.29   -0.72   -1.28   -1.91   -2.57   -3.20   -3.78   -4.28   -4.67   -4.89   -4.84   -4.34   -3.23   -1.32    1.45    5.02    9.12
+    85.0    0.00   -0.05   -0.29   -0.72   -1.28   -1.92   -2.58   -3.21   -3.79   -4.30   -4.70   -4.93   -4.88   -4.40   -3.28   -1.38    1.39    4.95    9.04
+    90.0    0.00   -0.05   -0.29   -0.72   -1.28   -1.92   -2.58   -3.22   -3.80   -4.30   -4.71   -4.94   -4.91   -4.43   -3.32   -1.42    1.35    4.90    8.95
+    95.0    0.00   -0.05   -0.29   -0.71   -1.28   -1.92   -2.58   -3.21   -3.79   -4.30   -4.70   -4.94   -4.90   -4.43   -3.33   -1.44    1.31    4.85    8.88
+   100.0    0.00   -0.05   -0.29   -0.71   -1.27   -1.91   -2.57   -3.20   -3.78   -4.28   -4.67   -4.91   -4.88   -4.41   -3.32   -1.44    1.30    4.82    8.81
+   105.0    0.00   -0.04   -0.29   -0.70   -1.26   -1.90   -2.56   -3.19   -3.76   -4.25   -4.64   -4.87   -4.83   -4.37   -3.29   -1.43    1.30    4.79    8.75
+   110.0    0.00   -0.04   -0.28   -0.70   -1.25   -1.88   -2.54   -3.16   -3.73   -4.21   -4.59   -4.81   -4.77   -4.31   -3.24   -1.40    1.31    4.78    8.70
+   115.0    0.00   -0.04   -0.28   -0.69   -1.23   -1.86   -2.51   -3.14   -3.69   -4.16   -4.53   -4.74   -4.70   -4.24   -3.18   -1.35    1.34    4.79    8.67
+   120.0    0.00   -0.04   -0.27   -0.68   -1.22   -1.84   -2.49   -3.10   -3.65   -4.11   -4.47   -4.67   -4.61   -4.16   -3.11   -1.29    1.38    4.81    8.66
+   125.0    0.00   -0.04   -0.27   -0.67   -1.20   -1.81   -2.45   -3.06   -3.60   -4.06   -4.40   -4.59   -4.53   -4.07   -3.03   -1.22    1.43    4.85    8.67
+   130.0    0.00   -0.04   -0.27   -0.65   -1.18   -1.78   -2.41   -3.01   -3.55   -4.00   -4.34   -4.52   -4.45   -3.99   -2.95   -1.15    1.49    4.89    8.70
+   135.0    0.00   -0.04   -0.26   -0.64   -1.15   -1.75   -2.37   -2.96   -3.50   -3.94   -4.27   -4.44   -4.38   -3.92   -2.88   -1.08    1.56    4.95    8.74
+   140.0    0.00   -0.04   -0.26   -0.63   -1.13   -1.71   -2.32   -2.91   -3.44   -3.87   -4.20   -4.38   -4.31   -3.85   -2.81   -1.02    1.63    5.02    8.80
+   145.0    0.00   -0.04   -0.25   -0.62   -1.10   -1.67   -2.27   -2.85   -3.37   -3.81   -4.14   -4.31   -4.24   -3.79   -2.75   -0.95    1.69    5.09    8.86
+   150.0    0.00   -0.05   -0.25   -0.61   -1.08   -1.64   -2.22   -2.79   -3.31   -3.75   -4.08   -4.25   -4.19   -3.73   -2.70   -0.90    1.75    5.15    8.93
+   155.0    0.00   -0.05   -0.25   -0.60   -1.06   -1.60   -2.17   -2.73   -3.25   -3.68   -4.02   -4.20   -4.14   -3.68   -2.65   -0.85    1.80    5.21    9.00
+   160.0    0.00   -0.05   -0.25   -0.59   -1.04   -1.57   -2.13   -2.68   -3.19   -3.62   -3.96   -4.14   -4.09   -3.64   -2.61   -0.82    1.84    5.25    9.05
+   165.0    0.00   -0.05   -0.25   -0.58   -1.02   -1.54   -2.08   -2.63   -3.13   -3.56   -3.90   -4.09   -4.04   -3.60   -2.58   -0.79    1.86    5.28    9.09
+   170.0    0.00   -0.06   -0.25   -0.58   -1.01   -1.51   -2.05   -2.58   -3.08   -3.51   -3.85   -4.04   -4.00   -3.56   -2.55   -0.77    1.88    5.29    9.12
+   175.0    0.00   -0.06   -0.26   -0.58   -1.00   -1.49   -2.02   -2.54   -3.04   -3.47   -3.81   -4.00   -3.96   -3.53   -2.53   -0.75    1.88    5.30    9.14
+   180.0    0.00   -0.06   -0.26   -0.58   -1.00   -1.48   -2.00   -2.52   -3.00   -3.43   -3.77   -3.96   -3.93   -3.51   -2.51   -0.75    1.88    5.29    9.14
+   185.0    0.00   -0.07   -0.27   -0.59   -1.00   -1.48   -1.99   -2.50   -2.98   -3.40   -3.74   -3.94   -3.90   -3.49   -2.50   -0.74    1.87    5.28    9.13
+   190.0    0.00   -0.07   -0.28   -0.60   -1.01   -1.48   -1.98   -2.49   -2.96   -3.38   -3.72   -3.92   -3.89   -3.48   -2.49   -0.74    1.87    5.27    9.12
+   195.0    0.00   -0.08   -0.29   -0.61   -1.02   -1.49   -1.99   -2.49   -2.96   -3.38   -3.72   -3.92   -3.89   -3.48   -2.49   -0.75    1.86    5.26    9.11
+   200.0    0.00   -0.08   -0.30   -0.63   -1.04   -1.51   -2.01   -2.50   -2.97   -3.39   -3.73   -3.93   -3.90   -3.49   -2.50   -0.75    1.86    5.26    9.10
+   205.0    0.00   -0.09   -0.31   -0.65   -1.06   -1.53   -2.03   -2.52   -2.99   -3.41   -3.76   -3.96   -3.94   -3.52   -2.52   -0.76    1.86    5.27    9.09
+   210.0    0.00   -0.09   -0.32   -0.67   -1.09   -1.56   -2.06   -2.56   -3.03   -3.45   -3.80   -4.01   -3.98   -3.56   -2.55   -0.77    1.87    5.28    9.09
+   215.0    0.00   -0.10   -0.34   -0.69   -1.12   -1.60   -2.10   -2.60   -3.08   -3.51   -3.86   -4.07   -4.04   -3.61   -2.59   -0.79    1.88    5.30    9.09
+   220.0    0.00   -0.10   -0.35   -0.71   -1.15   -1.64   -2.15   -2.66   -3.14   -3.57   -3.93   -4.14   -4.11   -3.67   -2.63   -0.80    1.89    5.31    9.09
+   225.0    0.00   -0.11   -0.37   -0.74   -1.19   -1.69   -2.20   -2.72   -3.21   -3.65   -4.01   -4.22   -4.19   -3.74   -2.67   -0.82    1.89    5.33    9.09
+   230.0    0.00   -0.12   -0.38   -0.76   -1.22   -1.73   -2.26   -2.79   -3.28   -3.73   -4.09   -4.31   -4.27   -3.80   -2.72   -0.84    1.89    5.33    9.07
+   235.0    0.00   -0.12   -0.39   -0.79   -1.26   -1.78   -2.33   -2.86   -3.36   -3.82   -4.18   -4.39   -4.34   -3.86   -2.76   -0.87    1.88    5.33    9.05
+   240.0    0.00   -0.13   -0.41   -0.81   -1.30   -1.83   -2.39   -2.93   -3.45   -3.91   -4.27   -4.47   -4.41   -3.92   -2.80   -0.90    1.86    5.31    9.02
+   245.0    0.00   -0.13   -0.42   -0.83   -1.33   -1.88   -2.45   -3.01   -3.53   -3.99   -4.35   -4.55   -4.47   -3.97   -2.84   -0.93    1.83    5.28    8.98
+   250.0    0.00   -0.13   -0.43   -0.85   -1.36   -1.93   -2.51   -3.08   -3.61   -4.07   -4.43   -4.62   -4.53   -4.01   -2.88   -0.96    1.79    5.24    8.92
+   255.0    0.00   -0.14   -0.44   -0.87   -1.39   -1.97   -2.57   -3.15   -3.68   -4.14   -4.49   -4.67   -4.57   -4.05   -2.91   -1.00    1.75    5.19    8.87
+   260.0    0.00   -0.14   -0.45   -0.89   -1.42   -2.01   -2.61   -3.20   -3.75   -4.21   -4.55   -4.72   -4.61   -4.08   -2.95   -1.04    1.70    5.14    8.82
+   265.0    0.00   -0.14   -0.45   -0.90   -1.44   -2.04   -2.65   -3.25   -3.80   -4.26   -4.59   -4.75   -4.64   -4.11   -2.98   -1.08    1.66    5.09    8.78
+   270.0    0.00   -0.14   -0.46   -0.91   -1.45   -2.06   -2.68   -3.29   -3.83   -4.29   -4.62   -4.77   -4.66   -4.13   -3.01   -1.12    1.61    5.05    8.75
+   275.0    0.00   -0.15   -0.46   -0.91   -1.46   -2.07   -2.70   -3.31   -3.86   -4.31   -4.64   -4.79   -4.67   -4.15   -3.03   -1.15    1.58    5.02    8.74
+   280.0    0.00   -0.15   -0.46   -0.91   -1.47   -2.08   -2.71   -3.32   -3.87   -4.32   -4.65   -4.80   -4.68   -4.17   -3.06   -1.18    1.55    5.00    8.75
+   285.0    0.00   -0.15   -0.46   -0.91   -1.46   -2.08   -2.71   -3.32   -3.87   -4.32   -4.64   -4.80   -4.69   -4.18   -3.08   -1.20    1.53    5.00    8.78
+   290.0    0.00   -0.14   -0.46   -0.90   -1.46   -2.07   -2.70   -3.31   -3.85   -4.30   -4.63   -4.79   -4.69   -4.18   -3.09   -1.21    1.53    5.01    8.81
+   295.0    0.00   -0.14   -0.45   -0.90   -1.44   -2.05   -2.68   -3.29   -3.83   -4.28   -4.61   -4.77   -4.68   -4.18   -3.09   -1.21    1.54    5.04    8.86
+   300.0    0.00   -0.14   -0.44   -0.88   -1.43   -2.03   -2.66   -3.26   -3.80   -4.25   -4.58   -4.75   -4.66   -4.17   -3.08   -1.20    1.56    5.07    8.92
+   305.0    0.00   -0.14   -0.44   -0.87   -1.41   -2.01   -2.63   -3.22   -3.76   -4.21   -4.54   -4.71   -4.63   -4.15   -3.06   -1.18    1.59    5.12    8.98
+   310.0    0.00   -0.13   -0.43   -0.85   -1.39   -1.98   -2.59   -3.18   -3.71   -4.16   -4.50   -4.67   -4.60   -4.11   -3.02   -1.14    1.63    5.16    9.04
+   315.0    0.00   -0.13   -0.42   -0.84   -1.36   -1.95   -2.56   -3.14   -3.67   -4.11   -4.45   -4.63   -4.55   -4.07   -2.98   -1.09    1.69    5.22    9.10
+   320.0    0.00   -0.12   -0.40   -0.82   -1.33   -1.92   -2.52   -3.09   -3.62   -4.06   -4.39   -4.57   -4.50   -4.01   -2.92   -1.03    1.75    5.28    9.16
+   325.0    0.00   -0.12   -0.39   -0.80   -1.31   -1.88   -2.47   -3.05   -3.56   -4.00   -4.33   -4.51   -4.43   -3.95   -2.85   -0.95    1.82    5.35    9.22
+   330.0    0.00   -0.11   -0.38   -0.78   -1.28   -1.85   -2.43   -3.00   -3.51   -3.94   -4.27   -4.45   -4.37   -3.88   -2.78   -0.88    1.90    5.42    9.29
+   335.0    0.00   -0.11   -0.37   -0.76   -1.26   -1.81   -2.39   -2.95   -3.45   -3.88   -4.21   -4.38   -4.30   -3.81   -2.70   -0.80    1.98    5.50    9.37
+   340.0    0.00   -0.10   -0.36   -0.74   -1.23   -1.78   -2.35   -2.90   -3.39   -3.82   -4.14   -4.32   -4.24   -3.74   -2.63   -0.72    2.07    5.59    9.45
+   345.0    0.00   -0.10   -0.35   -0.73   -1.21   -1.75   -2.31   -2.85   -3.34   -3.76   -4.08   -4.26   -4.18   -3.69   -2.57   -0.64    2.15    5.69    9.54
+   350.0    0.00   -0.10   -0.34   -0.71   -1.19   -1.72   -2.28   -2.81   -3.29   -3.70   -4.02   -4.20   -4.13   -3.63   -2.51   -0.58    2.24    5.79    9.65
+   355.0    0.00   -0.09   -0.33   -0.70   -1.17   -1.70   -2.25   -2.77   -3.24   -3.65   -3.97   -4.15   -4.09   -3.59   -2.47   -0.52    2.32    5.88    9.75
+   360.0    0.00   -0.09   -0.32   -0.69   -1.16   -1.68   -2.22   -2.74   -3.20   -3.61   -3.93   -4.12   -4.05   -3.56   -2.43   -0.47    2.38    5.97    9.86
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -1.51     -1.27     87.47                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.19   -0.71   -1.44   -2.25   -3.05   -3.83   -4.57   -5.24   -5.71   -5.83   -5.44   -4.52   -3.18   -1.58    0.22    2.44    5.54   10.06
+     0.0    0.00   -0.26   -0.80   -1.50   -2.23   -2.94   -3.62   -4.29   -4.90   -5.33   -5.41   -5.00   -4.08   -2.80   -1.28    0.47    2.69    5.84   10.27
+     5.0    0.00   -0.27   -0.83   -1.55   -2.29   -3.00   -3.68   -4.35   -4.96   -5.39   -5.47   -5.05   -4.12   -2.81   -1.28    0.47    2.68    5.82   10.25
+    10.0    0.00   -0.28   -0.86   -1.59   -2.34   -3.06   -3.75   -4.41   -5.03   -5.46   -5.54   -5.11   -4.17   -2.85   -1.30    0.45    2.65    5.79   10.23
+    15.0    0.00   -0.30   -0.89   -1.63   -2.40   -3.13   -3.82   -4.49   -5.11   -5.54   -5.61   -5.18   -4.23   -2.90   -1.35    0.40    2.59    5.72   10.20
+    20.0    0.00   -0.31   -0.92   -1.68   -2.46   -3.20   -3.90   -4.57   -5.19   -5.62   -5.68   -5.25   -4.29   -2.96   -1.41    0.32    2.50    5.63   10.14
+    25.0    0.00   -0.32   -0.94   -1.72   -2.52   -3.28   -3.98   -4.66   -5.27   -5.70   -5.75   -5.31   -4.35   -3.02   -1.48    0.23    2.38    5.50   10.05
+    30.0    0.00   -0.33   -0.97   -1.76   -2.58   -3.35   -4.07   -4.75   -5.36   -5.77   -5.82   -5.36   -4.40   -3.08   -1.57    0.11    2.24    5.34    9.93
+    35.0    0.00   -0.34   -0.99   -1.80   -2.64   -3.43   -4.16   -4.84   -5.44   -5.84   -5.87   -5.40   -4.44   -3.13   -1.64    0.00    2.08    5.17    9.77
+    40.0    0.00   -0.35   -1.01   -1.84   -2.70   -3.51   -4.24   -4.93   -5.52   -5.90   -5.91   -5.43   -4.47   -3.17   -1.71   -0.11    1.93    4.99    9.60
+    45.0    0.00   -0.35   -1.02   -1.87   -2.75   -3.58   -4.33   -5.01   -5.59   -5.96   -5.95   -5.45   -4.49   -3.20   -1.77   -0.20    1.80    4.82    9.42
+    50.0    0.00   -0.36   -1.04   -1.90   -2.80   -3.64   -4.40   -5.09   -5.66   -6.00   -5.97   -5.46   -4.49   -3.21   -1.80   -0.26    1.70    4.67    9.26
+    55.0    0.00   -0.36   -1.05   -1.92   -2.84   -3.70   -4.47   -5.15   -5.71   -6.04   -5.99   -5.47   -4.49   -3.21   -1.80   -0.29    1.64    4.58    9.13
+    60.0    0.00   -0.36   -1.06   -1.94   -2.87   -3.74   -4.52   -5.20   -5.75   -6.06   -6.00   -5.47   -4.48   -3.19   -1.78   -0.27    1.64    4.53    9.04
+    65.0    0.00   -0.36   -1.06   -1.95   -2.89   -3.77   -4.56   -5.24   -5.78   -6.08   -6.01   -5.46   -4.47   -3.17   -1.74   -0.22    1.68    4.54    9.02
+    70.0    0.00   -0.36   -1.06   -1.96   -2.90   -3.79   -4.58   -5.26   -5.79   -6.09   -6.01   -5.46   -4.45   -3.13   -1.68   -0.13    1.77    4.60    9.05
+    75.0    0.00   -0.36   -1.05   -1.95   -2.90   -3.79   -4.58   -5.26   -5.79   -6.08   -6.00   -5.45   -4.43   -3.08   -1.60   -0.02    1.89    4.71    9.15
+    80.0    0.00   -0.35   -1.04   -1.94   -2.89   -3.78   -4.57   -5.24   -5.77   -6.06   -5.98   -5.43   -4.40   -3.03   -1.51    0.10    2.02    4.84    9.28
+    85.0    0.00   -0.35   -1.03   -1.92   -2.87   -3.75   -4.53   -5.20   -5.73   -6.03   -5.96   -5.41   -4.37   -2.97   -1.41    0.23    2.16    4.97    9.44
+    90.0    0.00   -0.34   -1.02   -1.90   -2.83   -3.71   -4.48   -5.15   -5.68   -5.98   -5.92   -5.38   -4.33   -2.92   -1.33    0.34    2.29    5.10    9.60
+    95.0    0.00   -0.33   -1.00   -1.87   -2.79   -3.66   -4.42   -5.08   -5.61   -5.92   -5.88   -5.34   -4.30   -2.86   -1.25    0.43    2.38    5.19    9.75
+   100.0    0.00   -0.32   -0.97   -1.83   -2.74   -3.60   -4.35   -5.00   -5.53   -5.86   -5.82   -5.30   -4.25   -2.81   -1.19    0.50    2.44    5.24    9.86
+   105.0    0.00   -0.31   -0.95   -1.79   -2.69   -3.53   -4.27   -4.92   -5.45   -5.78   -5.76   -5.25   -4.21   -2.77   -1.15    0.53    2.45    5.25    9.92
+   110.0    0.00   -0.30   -0.92   -1.75   -2.63   -3.46   -4.19   -4.83   -5.36   -5.70   -5.70   -5.20   -4.18   -2.74   -1.13    0.53    2.43    5.21    9.93
+   115.0    0.00   -0.28   -0.89   -1.71   -2.57   -3.38   -4.10   -4.74   -5.28   -5.63   -5.64   -5.16   -4.15   -2.73   -1.13    0.50    2.37    5.14    9.89
+   120.0    0.00   -0.27   -0.86   -1.66   -2.51   -3.31   -4.02   -4.65   -5.20   -5.56   -5.59   -5.12   -4.13   -2.73   -1.15    0.46    2.29    5.04    9.80
+   125.0    0.00   -0.25   -0.83   -1.61   -2.45   -3.24   -3.94   -4.57   -5.12   -5.50   -5.54   -5.10   -4.12   -2.74   -1.19    0.39    2.21    4.94    9.68
+   130.0    0.00   -0.24   -0.80   -1.57   -2.39   -3.17   -3.87   -4.51   -5.06   -5.45   -5.51   -5.09   -4.13   -2.78   -1.24    0.32    2.13    4.84    9.55
+   135.0    0.00   -0.22   -0.77   -1.52   -2.34   -3.11   -3.81   -4.45   -5.01   -5.41   -5.49   -5.09   -4.16   -2.82   -1.31    0.26    2.06    4.77    9.42
+   140.0    0.00   -0.21   -0.74   -1.48   -2.28   -3.05   -3.75   -4.40   -4.97   -5.39   -5.49   -5.11   -4.20   -2.88   -1.37    0.20    2.02    4.73    9.31
+   145.0    0.00   -0.19   -0.71   -1.44   -2.24   -3.00   -3.71   -4.36   -4.95   -5.38   -5.50   -5.13   -4.25   -2.94   -1.44    0.15    2.00    4.73    9.22
+   150.0    0.00   -0.18   -0.68   -1.40   -2.19   -2.96   -3.67   -4.33   -4.93   -5.38   -5.51   -5.17   -4.30   -3.01   -1.49    0.12    2.01    4.76    9.17
+   155.0    0.00   -0.17   -0.66   -1.36   -2.15   -2.92   -3.63   -4.31   -4.92   -5.38   -5.53   -5.21   -4.35   -3.07   -1.54    0.11    2.05    4.82    9.16
+   160.0    0.00   -0.15   -0.63   -1.33   -2.11   -2.88   -3.60   -4.29   -4.92   -5.39   -5.56   -5.25   -4.41   -3.12   -1.58    0.10    2.10    4.91    9.19
+   165.0    0.00   -0.14   -0.61   -1.30   -2.08   -2.85   -3.58   -4.28   -4.92   -5.41   -5.58   -5.28   -4.45   -3.17   -1.61    0.12    2.17    5.01    9.24
+   170.0    0.00   -0.13   -0.58   -1.27   -2.04   -2.82   -3.56   -4.26   -4.92   -5.42   -5.61   -5.31   -4.48   -3.20   -1.62    0.14    2.24    5.12    9.31
+   175.0    0.00   -0.11   -0.56   -1.24   -2.02   -2.79   -3.54   -4.26   -4.92   -5.44   -5.63   -5.34   -4.51   -3.22   -1.63    0.17    2.31    5.23    9.40
+   180.0    0.00   -0.10   -0.55   -1.22   -1.99   -2.77   -3.52   -4.25   -4.93   -5.45   -5.65   -5.36   -4.53   -3.22   -1.62    0.20    2.39    5.34    9.50
+   185.0    0.00   -0.09   -0.53   -1.20   -1.97   -2.75   -3.51   -4.25   -4.94   -5.47   -5.68   -5.39   -4.54   -3.23   -1.60    0.24    2.46    5.44    9.61
+   190.0    0.00   -0.08   -0.51   -1.18   -1.95   -2.74   -3.50   -4.25   -4.96   -5.50   -5.71   -5.41   -4.56   -3.22   -1.58    0.29    2.53    5.53    9.72
+   195.0    0.00   -0.08   -0.50   -1.17   -1.94   -2.73   -3.50   -4.26   -4.98   -5.53   -5.74   -5.44   -4.57   -3.22   -1.55    0.34    2.60    5.63    9.82
+   200.0    0.00   -0.07   -0.49   -1.15   -1.93   -2.72   -3.51   -4.28   -5.01   -5.57   -5.79   -5.48   -4.60   -3.22   -1.53    0.39    2.67    5.72    9.94
+   205.0    0.00   -0.06   -0.48   -1.15   -1.92   -2.72   -3.52   -4.30   -5.04   -5.62   -5.84   -5.53   -4.63   -3.23   -1.50    0.44    2.75    5.81   10.05
+   210.0    0.00   -0.06   -0.47   -1.14   -1.92   -2.73   -3.53   -4.33   -5.09   -5.68   -5.90   -5.59   -4.67   -3.24   -1.48    0.49    2.83    5.91   10.16
+   215.0    0.00   -0.05   -0.47   -1.14   -1.92   -2.74   -3.56   -4.37   -5.14   -5.74   -5.97   -5.65   -4.72   -3.26   -1.47    0.54    2.90    6.00   10.26
+   220.0    0.00   -0.05   -0.46   -1.14   -1.93   -2.76   -3.59   -4.41   -5.20   -5.81   -6.04   -5.72   -4.77   -3.29   -1.47    0.58    2.97    6.08   10.36
+   225.0    0.00   -0.05   -0.46   -1.14   -1.94   -2.78   -3.62   -4.46   -5.26   -5.88   -6.11   -5.79   -4.83   -3.33   -1.48    0.60    3.02    6.15   10.43
+   230.0    0.00   -0.04   -0.46   -1.14   -1.95   -2.80   -3.66   -4.51   -5.32   -5.94   -6.18   -5.85   -4.88   -3.37   -1.50    0.60    3.05    6.20   10.49
+   235.0    0.00   -0.04   -0.46   -1.14   -1.96   -2.82   -3.69   -4.56   -5.38   -6.00   -6.24   -5.90   -4.93   -3.41   -1.53    0.59    3.05    6.23   10.52
+   240.0    0.00   -0.04   -0.46   -1.14   -1.97   -2.84   -3.72   -4.61   -5.43   -6.05   -6.28   -5.94   -4.97   -3.45   -1.57    0.55    3.03    6.22   10.53
+   245.0    0.00   -0.04   -0.46   -1.15   -1.98   -2.86   -3.75   -4.64   -5.47   -6.09   -6.32   -5.97   -5.00   -3.49   -1.63    0.50    2.99    6.19   10.51
+   250.0    0.00   -0.05   -0.47   -1.15   -1.98   -2.87   -3.77   -4.67   -5.50   -6.12   -6.34   -5.99   -5.03   -3.54   -1.69    0.43    2.92    6.14   10.48
+   255.0    0.00   -0.05   -0.47   -1.15   -1.99   -2.88   -3.79   -4.69   -5.52   -6.13   -6.35   -6.00   -5.04   -3.57   -1.75    0.35    2.84    6.08   10.44
+   260.0    0.00   -0.05   -0.47   -1.16   -1.99   -2.88   -3.79   -4.69   -5.52   -6.13   -6.34   -6.00   -5.06   -3.61   -1.82    0.26    2.75    6.01   10.40
+   265.0    0.00   -0.06   -0.48   -1.16   -1.98   -2.87   -3.78   -4.68   -5.51   -6.12   -6.33   -5.99   -5.07   -3.65   -1.89    0.17    2.66    5.94   10.38
+   270.0    0.00   -0.06   -0.48   -1.16   -1.98   -2.86   -3.76   -4.66   -5.49   -6.10   -6.31   -5.98   -5.07   -3.69   -1.95    0.08    2.58    5.89   10.37
+   275.0    0.00   -0.07   -0.49   -1.16   -1.97   -2.84   -3.73   -4.63   -5.45   -6.06   -6.28   -5.96   -5.08   -3.72   -2.01    0.01    2.52    5.87   10.40
+   280.0    0.00   -0.07   -0.49   -1.16   -1.96   -2.81   -3.70   -4.59   -5.41   -6.02   -6.24   -5.94   -5.08   -3.75   -2.06   -0.05    2.48    5.87   10.46
+   285.0    0.00   -0.08   -0.50   -1.16   -1.95   -2.79   -3.66   -4.54   -5.35   -5.97   -6.20   -5.92   -5.08   -3.77   -2.10   -0.09    2.45    5.89   10.55
+   290.0    0.00   -0.09   -0.51   -1.17   -1.94   -2.76   -3.62   -4.48   -5.30   -5.91   -6.15   -5.88   -5.06   -3.77   -2.12   -0.12    2.45    5.94   10.66
+   295.0    0.00   -0.10   -0.52   -1.17   -1.93   -2.74   -3.57   -4.43   -5.23   -5.85   -6.09   -5.83   -5.03   -3.76   -2.13   -0.13    2.45    5.99   10.77
+   300.0    0.00   -0.11   -0.53   -1.18   -1.92   -2.71   -3.53   -4.37   -5.17   -5.78   -6.03   -5.77   -4.99   -3.74   -2.12   -0.13    2.47    6.04   10.87
+   305.0    0.00   -0.12   -0.55   -1.19   -1.92   -2.70   -3.50   -4.32   -5.10   -5.70   -5.95   -5.70   -4.92   -3.69   -2.09   -0.11    2.49    6.08   10.95
+   310.0    0.00   -0.13   -0.56   -1.20   -1.93   -2.68   -3.47   -4.27   -5.03   -5.62   -5.86   -5.61   -4.84   -3.62   -2.04   -0.08    2.51    6.11   10.99
+   315.0    0.00   -0.14   -0.58   -1.22   -1.93   -2.68   -3.44   -4.23   -4.97   -5.55   -5.77   -5.51   -4.74   -3.53   -1.98   -0.04    2.53    6.12   11.00
+   320.0    0.00   -0.15   -0.60   -1.24   -1.95   -2.68   -3.43   -4.19   -4.92   -5.47   -5.68   -5.40   -4.63   -3.43   -1.90    0.01    2.54    6.10   10.96
+   325.0    0.00   -0.16   -0.62   -1.26   -1.97   -2.69   -3.42   -4.17   -4.87   -5.40   -5.58   -5.29   -4.51   -3.31   -1.80    0.06    2.55    6.07   10.88
+   330.0    0.00   -0.18   -0.64   -1.29   -1.99   -2.70   -3.42   -4.15   -4.83   -5.34   -5.50   -5.19   -4.39   -3.20   -1.70    0.12    2.56    6.02   10.78
+   335.0    0.00   -0.19   -0.67   -1.32   -2.02   -2.73   -3.44   -4.15   -4.81   -5.29   -5.43   -5.10   -4.28   -3.08   -1.60    0.19    2.57    5.97   10.67
+   340.0    0.00   -0.20   -0.69   -1.35   -2.05   -2.76   -3.46   -4.15   -4.80   -5.26   -5.38   -5.03   -4.19   -2.98   -1.51    0.26    2.59    5.93   10.55
+   345.0    0.00   -0.22   -0.72   -1.38   -2.09   -2.79   -3.48   -4.17   -4.80   -5.25   -5.35   -4.98   -4.13   -2.90   -1.42    0.33    2.62    5.89   10.45
+   350.0    0.00   -0.23   -0.75   -1.42   -2.14   -2.84   -3.52   -4.20   -4.82   -5.26   -5.35   -4.96   -4.08   -2.84   -1.35    0.39    2.65    5.87   10.37
+   355.0    0.00   -0.24   -0.78   -1.46   -2.18   -2.88   -3.57   -4.24   -4.85   -5.29   -5.37   -4.97   -4.07   -2.80   -1.30    0.44    2.67    5.85   10.31
+   360.0    0.00   -0.26   -0.80   -1.50   -2.23   -2.94   -3.62   -4.29   -4.90   -5.33   -5.41   -5.00   -4.08   -2.80   -1.28    0.47    2.69    5.84   10.27
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+NOV531          NONE                                        TYPE / SERIAL NO    
+FIELD               NGS                      3    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     1                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      1.58     -1.57     47.15                              NORTH / EAST / UP   
+   NOAZI    0.00   -1.63   -2.30   -2.33   -2.12   -1.72   -1.46   -1.29   -1.27   -1.41   -1.56   -1.89   -2.23   -2.35   -2.08   -1.01    1.37
+   G01                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+NOV531+CR       NONE                                        TYPE / SERIAL NO    
+FIELD               NGS                      3    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     1                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      2.08     -2.17     33.55                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.43   -0.90   -1.53   -2.32   -3.22   -4.16   -4.99   -5.67   -6.01   -5.96   -5.59   -4.63   -3.25   -0.98    2.29    6.77
+   G01                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+NOV600          NONE                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               3    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+Number of Calibrated Antennas GPS:      003                 COMMENT             
+Number of Individual Calibrations GPS:  023                 COMMENT             
+   G01                                                      START OF FREQUENCY  
+     -1.88      1.01     73.54                              NORTH / EAST / UP   
+   NOAZI    0.00    0.00   -0.03   -0.12   -0.31   -0.58   -0.89   -1.15   -1.32   -1.41   -1.47   -1.54   -1.58   -1.48   -1.07   -0.24    0.94    2.11    2.77
+     0.0    0.00   -0.01   -0.02   -0.08   -0.23   -0.49   -0.84   -1.21   -1.54   -1.79   -1.95   -2.02   -1.99   -1.82   -1.47   -0.93   -0.24    0.41    0.78
+     5.0    0.00   -0.01   -0.02   -0.08   -0.23   -0.50   -0.83   -1.19   -1.52   -1.77   -1.93   -2.01   -1.98   -1.81   -1.44   -0.88   -0.21    0.39    0.68
+    10.0    0.00   -0.01   -0.02   -0.09   -0.24   -0.50   -0.83   -1.17   -1.48   -1.73   -1.90   -1.99   -1.96   -1.78   -1.38   -0.78   -0.09    0.46    0.65
+    15.0    0.00   -0.01   -0.02   -0.09   -0.25   -0.51   -0.82   -1.15   -1.44   -1.67   -1.85   -1.95   -1.94   -1.73   -1.28   -0.61    0.12    0.65    0.73
+    20.0    0.00   -0.01   -0.03   -0.10   -0.27   -0.52   -0.82   -1.12   -1.38   -1.61   -1.79   -1.91   -1.90   -1.67   -1.16   -0.40    0.41    0.95    0.94
+    25.0    0.00    0.00   -0.03   -0.11   -0.28   -0.53   -0.81   -1.08   -1.32   -1.53   -1.71   -1.85   -1.85   -1.61   -1.02   -0.15    0.77    1.36    1.29
+    30.0    0.00    0.00   -0.03   -0.12   -0.29   -0.53   -0.80   -1.05   -1.25   -1.44   -1.63   -1.78   -1.80   -1.53   -0.88    0.11    1.17    1.86    1.78
+    35.0    0.00    0.00   -0.03   -0.13   -0.31   -0.54   -0.79   -1.01   -1.19   -1.35   -1.54   -1.71   -1.74   -1.47   -0.75    0.37    1.59    2.42    2.38
+    40.0    0.00    0.00   -0.04   -0.14   -0.32   -0.56   -0.79   -0.98   -1.12   -1.26   -1.44   -1.62   -1.68   -1.40   -0.63    0.60    1.99    3.00    3.08
+    45.0    0.00    0.00   -0.04   -0.15   -0.33   -0.57   -0.79   -0.95   -1.06   -1.18   -1.34   -1.54   -1.62   -1.35   -0.54    0.79    2.35    3.55    3.82
+    50.0    0.00    0.00   -0.04   -0.15   -0.34   -0.58   -0.79   -0.93   -1.01   -1.10   -1.26   -1.46   -1.56   -1.31   -0.49    0.92    2.63    4.05    4.54
+    55.0    0.00    0.00   -0.04   -0.16   -0.35   -0.59   -0.79   -0.92   -0.98   -1.04   -1.18   -1.38   -1.51   -1.29   -0.48    0.98    2.81    4.44    5.21
+    60.0    0.00    0.00   -0.04   -0.16   -0.36   -0.60   -0.81   -0.92   -0.96   -1.00   -1.11   -1.32   -1.46   -1.29   -0.51    0.96    2.88    4.71    5.75
+    65.0    0.00    0.00   -0.04   -0.16   -0.36   -0.61   -0.82   -0.93   -0.96   -0.97   -1.07   -1.26   -1.43   -1.30   -0.58    0.86    2.84    4.82    6.13
+    70.0    0.00    0.00   -0.04   -0.16   -0.37   -0.62   -0.83   -0.95   -0.96   -0.96   -1.03   -1.22   -1.41   -1.33   -0.68    0.71    2.69    4.78    6.31
+    75.0    0.00    0.00   -0.03   -0.15   -0.36   -0.63   -0.85   -0.97   -0.98   -0.96   -1.02   -1.19   -1.40   -1.37   -0.81    0.49    2.44    4.59    6.28
+    80.0    0.00    0.01   -0.03   -0.15   -0.36   -0.63   -0.86   -1.00   -1.01   -0.98   -1.02   -1.18   -1.40   -1.43   -0.96    0.24    2.12    4.27    6.04
+    85.0    0.00    0.01   -0.02   -0.14   -0.35   -0.63   -0.88   -1.02   -1.04   -1.00   -1.02   -1.17   -1.41   -1.49   -1.12   -0.04    1.74    3.84    5.62
+    90.0    0.00    0.01   -0.02   -0.13   -0.35   -0.62   -0.88   -1.04   -1.07   -1.03   -1.03   -1.18   -1.42   -1.56   -1.28   -0.32    1.34    3.35    5.04
+    95.0    0.00    0.01   -0.01   -0.12   -0.33   -0.62   -0.89   -1.06   -1.09   -1.05   -1.05   -1.18   -1.44   -1.62   -1.43   -0.58    0.94    2.81    4.37
+   100.0    0.00    0.01   -0.01   -0.11   -0.32   -0.61   -0.89   -1.07   -1.11   -1.07   -1.06   -1.19   -1.46   -1.68   -1.56   -0.83    0.57    2.29    3.66
+   105.0    0.00    0.01    0.00   -0.10   -0.31   -0.60   -0.88   -1.07   -1.12   -1.08   -1.07   -1.20   -1.48   -1.73   -1.67   -1.03    0.24    1.81    2.96
+   110.0    0.00    0.02    0.00   -0.10   -0.30   -0.59   -0.87   -1.07   -1.12   -1.08   -1.07   -1.21   -1.49   -1.77   -1.76   -1.19   -0.02    1.40    2.33
+   115.0    0.00    0.02    0.00   -0.09   -0.29   -0.57   -0.86   -1.06   -1.12   -1.09   -1.08   -1.21   -1.50   -1.79   -1.81   -1.29   -0.20    1.10    1.82
+   120.0    0.00    0.02    0.01   -0.08   -0.28   -0.56   -0.85   -1.05   -1.12   -1.08   -1.08   -1.21   -1.50   -1.80   -1.84   -1.34   -0.30    0.91    1.45
+   125.0    0.00    0.02    0.01   -0.08   -0.28   -0.56   -0.85   -1.05   -1.11   -1.08   -1.08   -1.21   -1.50   -1.80   -1.83   -1.34   -0.32    0.83    1.25
+   130.0    0.00    0.02    0.01   -0.08   -0.27   -0.55   -0.84   -1.05   -1.11   -1.09   -1.08   -1.21   -1.49   -1.77   -1.79   -1.29   -0.26    0.87    1.22
+   135.0    0.00    0.02    0.01   -0.08   -0.27   -0.56   -0.85   -1.05   -1.12   -1.10   -1.09   -1.21   -1.48   -1.74   -1.72   -1.19   -0.14    1.00    1.33
+   140.0    0.00    0.02    0.01   -0.08   -0.27   -0.56   -0.85   -1.06   -1.13   -1.11   -1.11   -1.22   -1.46   -1.69   -1.64   -1.06    0.03    1.21    1.57
+   145.0    0.00    0.02    0.01   -0.08   -0.28   -0.57   -0.86   -1.08   -1.16   -1.14   -1.13   -1.23   -1.45   -1.64   -1.54   -0.92    0.23    1.47    1.89
+   150.0    0.00    0.02    0.01   -0.08   -0.29   -0.58   -0.88   -1.10   -1.19   -1.18   -1.17   -1.25   -1.44   -1.59   -1.44   -0.77    0.44    1.74    2.26
+   155.0    0.00    0.02    0.01   -0.09   -0.29   -0.59   -0.90   -1.13   -1.23   -1.22   -1.21   -1.28   -1.44   -1.55   -1.35   -0.63    0.63    2.00    2.64
+   160.0    0.00    0.02    0.00   -0.09   -0.30   -0.60   -0.92   -1.16   -1.27   -1.27   -1.26   -1.31   -1.45   -1.52   -1.28   -0.51    0.79    2.23    2.99
+   165.0    0.00    0.01    0.00   -0.10   -0.31   -0.62   -0.94   -1.19   -1.31   -1.32   -1.31   -1.35   -1.46   -1.50   -1.23   -0.44    0.90    2.40    3.28
+   170.0    0.00    0.01    0.00   -0.10   -0.32   -0.63   -0.96   -1.22   -1.36   -1.38   -1.36   -1.40   -1.48   -1.50   -1.21   -0.40    0.95    2.49    3.49
+   175.0    0.00    0.01   -0.01   -0.11   -0.33   -0.64   -0.98   -1.25   -1.40   -1.43   -1.41   -1.44   -1.51   -1.52   -1.22   -0.42    0.93    2.52    3.62
+   180.0    0.00    0.01   -0.01   -0.11   -0.33   -0.65   -1.00   -1.28   -1.44   -1.48   -1.46   -1.48   -1.55   -1.55   -1.27   -0.48    0.87    2.47    3.67
+   185.0    0.00    0.01   -0.01   -0.11   -0.33   -0.66   -1.01   -1.31   -1.47   -1.52   -1.51   -1.52   -1.59   -1.60   -1.33   -0.57    0.75    2.37    3.65
+   190.0    0.00    0.01   -0.01   -0.11   -0.33   -0.66   -1.02   -1.33   -1.50   -1.55   -1.54   -1.56   -1.63   -1.65   -1.41   -0.68    0.61    2.23    3.57
+   195.0    0.00    0.01   -0.02   -0.12   -0.33   -0.66   -1.03   -1.34   -1.53   -1.58   -1.58   -1.59   -1.67   -1.70   -1.49   -0.80    0.46    2.08    3.47
+   200.0    0.00    0.00   -0.02   -0.12   -0.33   -0.66   -1.03   -1.35   -1.55   -1.61   -1.60   -1.62   -1.70   -1.75   -1.57   -0.91    0.33    1.94    3.37
+   205.0    0.00    0.00   -0.02   -0.11   -0.33   -0.65   -1.03   -1.36   -1.56   -1.63   -1.62   -1.64   -1.72   -1.78   -1.61   -0.98    0.24    1.84    3.29
+   210.0    0.00    0.00   -0.02   -0.11   -0.32   -0.64   -1.02   -1.36   -1.57   -1.64   -1.63   -1.65   -1.72   -1.78   -1.62   -1.00    0.20    1.79    3.24
+   215.0    0.00    0.00   -0.02   -0.11   -0.31   -0.63   -1.01   -1.35   -1.57   -1.64   -1.64   -1.65   -1.72   -1.76   -1.59   -0.95    0.24    1.81    3.25
+   220.0    0.00    0.00   -0.02   -0.11   -0.31   -0.62   -1.00   -1.34   -1.56   -1.64   -1.64   -1.64   -1.69   -1.71   -1.50   -0.85    0.35    1.90    3.31
+   225.0    0.00    0.00   -0.02   -0.11   -0.30   -0.61   -0.98   -1.32   -1.55   -1.63   -1.63   -1.63   -1.65   -1.63   -1.38   -0.68    0.53    2.06    3.41
+   230.0    0.00   -0.01   -0.03   -0.11   -0.29   -0.59   -0.96   -1.30   -1.53   -1.62   -1.62   -1.60   -1.59   -1.52   -1.21   -0.46    0.77    2.27    3.56
+   235.0    0.00   -0.01   -0.03   -0.11   -0.29   -0.58   -0.94   -1.27   -1.50   -1.60   -1.60   -1.57   -1.53   -1.40   -1.01   -0.20    1.04    2.50    3.72
+   240.0    0.00   -0.01   -0.03   -0.11   -0.28   -0.57   -0.92   -1.24   -1.47   -1.57   -1.57   -1.52   -1.45   -1.26   -0.80    0.07    1.33    2.74    3.88
+   245.0    0.00   -0.01   -0.03   -0.11   -0.28   -0.55   -0.89   -1.21   -1.43   -1.53   -1.53   -1.48   -1.37   -1.12   -0.59    0.33    1.60    2.96    4.01
+   250.0    0.00   -0.01   -0.03   -0.11   -0.27   -0.54   -0.87   -1.18   -1.40   -1.49   -1.49   -1.43   -1.29   -0.99   -0.40    0.57    1.84    3.14    4.10
+   255.0    0.00   -0.01   -0.04   -0.11   -0.27   -0.53   -0.85   -1.15   -1.36   -1.45   -1.45   -1.38   -1.22   -0.88   -0.24    0.76    2.02    3.25    4.12
+   260.0    0.00   -0.01   -0.04   -0.11   -0.27   -0.53   -0.84   -1.12   -1.33   -1.42   -1.42   -1.34   -1.16   -0.78   -0.11    0.90    2.13    3.29    4.06
+   265.0    0.00   -0.01   -0.04   -0.11   -0.28   -0.53   -0.83   -1.10   -1.30   -1.39   -1.39   -1.30   -1.11   -0.72   -0.03    0.98    2.17    3.26    3.93
+   270.0    0.00   -0.02   -0.04   -0.12   -0.28   -0.53   -0.82   -1.09   -1.28   -1.36   -1.36   -1.28   -1.09   -0.69    0.00    1.00    2.15    3.16    3.73
+   275.0    0.00   -0.02   -0.04   -0.12   -0.28   -0.53   -0.82   -1.09   -1.27   -1.35   -1.35   -1.27   -1.08   -0.69   -0.01    0.97    2.07    3.00    3.48
+   280.0    0.00   -0.02   -0.04   -0.12   -0.29   -0.54   -0.83   -1.09   -1.27   -1.35   -1.35   -1.28   -1.10   -0.72   -0.05    0.89    1.94    2.80    3.18
+   285.0    0.00   -0.02   -0.05   -0.13   -0.29   -0.55   -0.84   -1.10   -1.28   -1.36   -1.37   -1.31   -1.13   -0.77   -0.13    0.78    1.79    2.59    2.87
+   290.0    0.00   -0.02   -0.05   -0.13   -0.30   -0.55   -0.85   -1.11   -1.29   -1.38   -1.40   -1.34   -1.19   -0.84   -0.22    0.66    1.64    2.38    2.56
+   295.0    0.00   -0.02   -0.04   -0.13   -0.30   -0.56   -0.86   -1.13   -1.32   -1.41   -1.44   -1.40   -1.26   -0.93   -0.33    0.53    1.48    2.19    2.28
+   300.0    0.00   -0.02   -0.04   -0.12   -0.30   -0.56   -0.86   -1.14   -1.34   -1.45   -1.49   -1.46   -1.33   -1.03   -0.45    0.40    1.34    2.03    2.05
+   305.0    0.00   -0.02   -0.04   -0.12   -0.29   -0.56   -0.87   -1.16   -1.37   -1.50   -1.54   -1.53   -1.42   -1.13   -0.57    0.27    1.21    1.89    1.86
+   310.0    0.00   -0.01   -0.04   -0.12   -0.29   -0.56   -0.87   -1.18   -1.41   -1.54   -1.60   -1.60   -1.51   -1.23   -0.68    0.15    1.09    1.78    1.73
+   315.0    0.00   -0.01   -0.04   -0.11   -0.28   -0.55   -0.88   -1.19   -1.44   -1.59   -1.67   -1.68   -1.59   -1.33   -0.79    0.03    0.98    1.69    1.65
+   320.0    0.00   -0.01   -0.03   -0.10   -0.27   -0.54   -0.87   -1.20   -1.46   -1.64   -1.72   -1.75   -1.67   -1.42   -0.90   -0.10    0.86    1.60    1.59
+   325.0    0.00   -0.01   -0.03   -0.10   -0.26   -0.53   -0.87   -1.21   -1.49   -1.68   -1.78   -1.81   -1.74   -1.51   -1.01   -0.23    0.72    1.49    1.56
+   330.0    0.00   -0.01   -0.03   -0.09   -0.25   -0.52   -0.86   -1.22   -1.51   -1.71   -1.83   -1.87   -1.81   -1.59   -1.12   -0.36    0.58    1.37    1.52
+   335.0    0.00   -0.01   -0.02   -0.08   -0.24   -0.51   -0.86   -1.22   -1.53   -1.75   -1.87   -1.91   -1.86   -1.66   -1.22   -0.50    0.41    1.22    1.46
+   340.0    0.00   -0.01   -0.02   -0.08   -0.23   -0.50   -0.85   -1.22   -1.54   -1.77   -1.91   -1.95   -1.91   -1.72   -1.31   -0.63    0.24    1.04    1.37
+   345.0    0.00   -0.01   -0.02   -0.08   -0.23   -0.50   -0.85   -1.22   -1.55   -1.79   -1.93   -1.98   -1.94   -1.77   -1.38   -0.75    0.06    0.85    1.24
+   350.0    0.00   -0.01   -0.02   -0.07   -0.23   -0.49   -0.84   -1.22   -1.56   -1.80   -1.95   -2.00   -1.97   -1.80   -1.44   -0.85   -0.08    0.67    1.09
+   355.0    0.00   -0.01   -0.02   -0.07   -0.23   -0.49   -0.84   -1.22   -1.55   -1.80   -1.95   -2.02   -1.98   -1.82   -1.47   -0.91   -0.19    0.51    0.93
+   360.0    0.00   -0.01   -0.02   -0.08   -0.23   -0.49   -0.84   -1.21   -1.54   -1.79   -1.95   -2.02   -1.99   -1.82   -1.47   -0.93   -0.24    0.41    0.78
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.49      1.07     77.29                              NORTH / EAST / UP   
+   NOAZI    0.00    0.01    0.02   -0.05   -0.25   -0.59   -0.95   -1.22   -1.30   -1.18   -0.98   -0.82   -0.80   -0.83   -0.73   -0.26    0.67    1.85    2.79
+     0.0    0.00   -0.10   -0.22   -0.42   -0.71   -1.05   -1.34   -1.47   -1.41   -1.22   -1.02   -0.93   -0.95   -1.02   -0.96   -0.66   -0.10    0.55    1.03
+     5.0    0.00   -0.08   -0.19   -0.38   -0.66   -0.98   -1.25   -1.38   -1.32   -1.14   -0.95   -0.87   -0.90   -0.95   -0.87   -0.54    0.01    0.59    0.90
+    10.0    0.00   -0.07   -0.16   -0.33   -0.60   -0.91   -1.17   -1.29   -1.24   -1.07   -0.89   -0.81   -0.84   -0.87   -0.75   -0.37    0.19    0.70    0.81
+    15.0    0.00   -0.05   -0.12   -0.28   -0.54   -0.84   -1.10   -1.22   -1.17   -1.01   -0.84   -0.76   -0.78   -0.78   -0.60   -0.17    0.44    0.90    0.78
+    20.0    0.00   -0.03   -0.09   -0.23   -0.47   -0.78   -1.04   -1.17   -1.13   -0.96   -0.80   -0.71   -0.71   -0.67   -0.44    0.07    0.75    1.19    0.87
+    25.0    0.00   -0.01   -0.05   -0.17   -0.41   -0.72   -1.00   -1.14   -1.10   -0.94   -0.76   -0.66   -0.63   -0.56   -0.27    0.33    1.09    1.57    1.09
+    30.0    0.00    0.01   -0.01   -0.12   -0.36   -0.67   -0.96   -1.12   -1.09   -0.92   -0.72   -0.60   -0.55   -0.44   -0.10    0.59    1.46    2.01    1.47
+    35.0    0.00    0.02    0.03   -0.07   -0.30   -0.63   -0.94   -1.12   -1.10   -0.92   -0.70   -0.54   -0.46   -0.33    0.05    0.82    1.81    2.50    2.00
+    40.0    0.00    0.04    0.07   -0.02   -0.25   -0.59   -0.92   -1.13   -1.12   -0.93   -0.67   -0.48   -0.38   -0.23    0.17    1.00    2.13    3.00    2.68
+    45.0    0.00    0.06    0.10    0.04   -0.19   -0.55   -0.92   -1.15   -1.15   -0.94   -0.66   -0.43   -0.31   -0.16    0.25    1.12    2.38    3.49    3.45
+    50.0    0.00    0.08    0.14    0.09   -0.14   -0.51   -0.91   -1.17   -1.18   -0.97   -0.65   -0.39   -0.26   -0.12    0.27    1.17    2.55    3.92    4.27
+    55.0    0.00    0.10    0.18    0.14   -0.09   -0.48   -0.90   -1.19   -1.22   -1.00   -0.66   -0.37   -0.23   -0.12    0.23    1.13    2.61    4.25    5.05
+    60.0    0.00    0.12    0.21    0.19   -0.03   -0.43   -0.88   -1.20   -1.25   -1.03   -0.67   -0.37   -0.24   -0.17    0.13    1.01    2.57    4.46    5.74
+    65.0    0.00    0.13    0.25    0.24    0.02   -0.39   -0.86   -1.20   -1.27   -1.06   -0.70   -0.40   -0.28   -0.26   -0.02    0.81    2.42    4.52    6.25
+    70.0    0.00    0.15    0.28    0.28    0.07   -0.34   -0.82   -1.18   -1.28   -1.08   -0.73   -0.44   -0.35   -0.38   -0.22    0.55    2.17    4.43    6.54
+    75.0    0.00    0.16    0.31    0.32    0.13   -0.28   -0.77   -1.16   -1.27   -1.10   -0.77   -0.51   -0.45   -0.54   -0.44    0.25    1.84    4.18    6.58
+    80.0    0.00    0.17    0.33    0.36    0.18   -0.22   -0.72   -1.11   -1.25   -1.11   -0.81   -0.59   -0.57   -0.71   -0.69   -0.07    1.45    3.79    6.35
+    85.0    0.00    0.18    0.36    0.40    0.23   -0.17   -0.66   -1.06   -1.22   -1.11   -0.85   -0.67   -0.70   -0.89   -0.93   -0.40    1.02    3.29    5.89
+    90.0    0.00    0.19    0.38    0.43    0.27   -0.11   -0.59   -1.00   -1.18   -1.10   -0.89   -0.75   -0.82   -1.06   -1.16   -0.72    0.58    2.72    5.24
+    95.0    0.00    0.20    0.39    0.46    0.31   -0.06   -0.53   -0.93   -1.12   -1.07   -0.91   -0.82   -0.94   -1.21   -1.37   -1.01    0.16    2.12    4.46
+   100.0    0.00    0.21    0.40    0.48    0.34   -0.01   -0.47   -0.87   -1.06   -1.04   -0.91   -0.87   -1.03   -1.34   -1.54   -1.25   -0.21    1.54    3.62
+   105.0    0.00    0.21    0.41    0.49    0.37    0.03   -0.42   -0.80   -1.01   -1.00   -0.91   -0.90   -1.10   -1.45   -1.68   -1.45   -0.53    1.02    2.80
+   110.0    0.00    0.22    0.42    0.50    0.38    0.06   -0.37   -0.75   -0.95   -0.96   -0.89   -0.92   -1.15   -1.52   -1.77   -1.59   -0.77    0.58    2.07
+   115.0    0.00    0.22    0.42    0.51    0.39    0.08   -0.34   -0.71   -0.90   -0.92   -0.87   -0.92   -1.18   -1.57   -1.84   -1.68   -0.93    0.27    1.48
+   120.0    0.00    0.22    0.42    0.51    0.39    0.08   -0.32   -0.68   -0.87   -0.88   -0.84   -0.91   -1.19   -1.59   -1.86   -1.72   -1.01    0.08    1.06
+   125.0    0.00    0.22    0.42    0.50    0.39    0.08   -0.32   -0.66   -0.84   -0.85   -0.81   -0.89   -1.18   -1.59   -1.86   -1.71   -1.01    0.02    0.83
+   130.0    0.00    0.21    0.41    0.49    0.38    0.07   -0.32   -0.66   -0.83   -0.84   -0.80   -0.88   -1.17   -1.57   -1.83   -1.66   -0.94    0.08    0.76
+   135.0    0.00    0.21    0.40    0.48    0.36    0.06   -0.33   -0.67   -0.84   -0.84   -0.79   -0.87   -1.15   -1.54   -1.78   -1.57   -0.81    0.23    0.84
+   140.0    0.00    0.20    0.39    0.46    0.35    0.04   -0.35   -0.69   -0.85   -0.85   -0.80   -0.87   -1.13   -1.51   -1.72   -1.46   -0.64    0.44    1.02
+   145.0    0.00    0.20    0.37    0.44    0.33    0.03   -0.37   -0.71   -0.88   -0.88   -0.82   -0.88   -1.12   -1.46   -1.64   -1.33   -0.45    0.69    1.26
+   150.0    0.00    0.19    0.36    0.42    0.31    0.01   -0.39   -0.74   -0.92   -0.92   -0.86   -0.89   -1.11   -1.41   -1.55   -1.19   -0.25    0.93    1.52
+   155.0    0.00    0.18    0.34    0.40    0.29   -0.01   -0.41   -0.76   -0.96   -0.97   -0.90   -0.91   -1.09   -1.36   -1.45   -1.06   -0.08    1.16    1.77
+   160.0    0.00    0.17    0.32    0.38    0.27   -0.02   -0.43   -0.79   -1.00   -1.02   -0.94   -0.93   -1.07   -1.30   -1.36   -0.94    0.07    1.34    1.99
+   165.0    0.00    0.15    0.30    0.36    0.25   -0.04   -0.44   -0.81   -1.03   -1.06   -0.98   -0.95   -1.05   -1.24   -1.27   -0.84    0.17    1.46    2.16
+   170.0    0.00    0.14    0.28    0.34    0.23   -0.05   -0.45   -0.83   -1.06   -1.10   -1.01   -0.95   -1.02   -1.17   -1.19   -0.78    0.22    1.52    2.30
+   175.0    0.00    0.13    0.26    0.31    0.21   -0.07   -0.47   -0.85   -1.09   -1.13   -1.03   -0.94   -0.98   -1.11   -1.13   -0.74    0.22    1.53    2.40
+   180.0    0.00    0.12    0.23    0.28    0.19   -0.09   -0.48   -0.86   -1.10   -1.14   -1.03   -0.92   -0.93   -1.05   -1.09   -0.74    0.18    1.50    2.49
+   185.0    0.00    0.10    0.21    0.25    0.16   -0.11   -0.50   -0.87   -1.11   -1.14   -1.02   -0.89   -0.88   -1.00   -1.06   -0.77    0.11    1.44    2.58
+   190.0    0.00    0.09    0.18    0.22    0.13   -0.14   -0.52   -0.89   -1.12   -1.13   -1.00   -0.85   -0.83   -0.95   -1.05   -0.81    0.02    1.37    2.67
+   195.0    0.00    0.07    0.15    0.19    0.09   -0.17   -0.55   -0.91   -1.12   -1.12   -0.96   -0.80   -0.78   -0.91   -1.04   -0.85   -0.07    1.31    2.79
+   200.0    0.00    0.05    0.13    0.15    0.04   -0.22   -0.58   -0.93   -1.12   -1.10   -0.93   -0.75   -0.73   -0.88   -1.04   -0.89   -0.13    1.28    2.93
+   205.0    0.00    0.04    0.10    0.11    0.00   -0.27   -0.62   -0.95   -1.13   -1.09   -0.89   -0.71   -0.68   -0.84   -1.02   -0.89   -0.16    1.28    3.08
+   210.0    0.00    0.02    0.07    0.06   -0.06   -0.32   -0.67   -0.99   -1.14   -1.07   -0.86   -0.67   -0.64   -0.80   -0.98   -0.86   -0.12    1.34    3.25
+   215.0    0.00    0.01    0.03    0.02   -0.11   -0.38   -0.73   -1.03   -1.15   -1.07   -0.84   -0.64   -0.60   -0.75   -0.90   -0.76   -0.02    1.45    3.41
+   220.0    0.00   -0.01    0.00   -0.03   -0.17   -0.45   -0.79   -1.07   -1.18   -1.07   -0.83   -0.62   -0.56   -0.68   -0.79   -0.61    0.15    1.60    3.57
+   225.0    0.00   -0.03   -0.03   -0.07   -0.23   -0.51   -0.85   -1.12   -1.20   -1.08   -0.83   -0.60   -0.52   -0.59   -0.64   -0.41    0.38    1.80    3.71
+   230.0    0.00   -0.04   -0.06   -0.12   -0.29   -0.58   -0.92   -1.17   -1.24   -1.09   -0.83   -0.59   -0.47   -0.49   -0.46   -0.15    0.66    2.03    3.83
+   235.0    0.00   -0.06   -0.09   -0.16   -0.35   -0.64   -0.98   -1.22   -1.27   -1.11   -0.84   -0.57   -0.42   -0.36   -0.25    0.14    0.97    2.27    3.93
+   240.0    0.00   -0.07   -0.12   -0.20   -0.40   -0.71   -1.04   -1.27   -1.31   -1.14   -0.84   -0.56   -0.36   -0.23   -0.03    0.44    1.28    2.51    4.02
+   245.0    0.00   -0.09   -0.14   -0.24   -0.45   -0.76   -1.09   -1.32   -1.34   -1.16   -0.85   -0.54   -0.30   -0.10    0.19    0.72    1.58    2.73    4.09
+   250.0    0.00   -0.10   -0.17   -0.28   -0.50   -0.81   -1.14   -1.36   -1.37   -1.18   -0.86   -0.53   -0.25    0.01    0.38    0.97    1.84    2.93    4.15
+   255.0    0.00   -0.11   -0.19   -0.32   -0.54   -0.86   -1.19   -1.40   -1.40   -1.19   -0.86   -0.51   -0.20    0.10    0.52    1.16    2.04    3.08    4.20
+   260.0    0.00   -0.12   -0.22   -0.35   -0.58   -0.90   -1.23   -1.43   -1.42   -1.21   -0.87   -0.51   -0.18    0.16    0.61    1.29    2.18    3.19    4.22
+   265.0    0.00   -0.13   -0.24   -0.38   -0.62   -0.94   -1.26   -1.46   -1.45   -1.23   -0.88   -0.52   -0.18    0.17    0.64    1.33    2.23    3.23    4.22
+   270.0    0.00   -0.14   -0.26   -0.41   -0.66   -0.98   -1.30   -1.49   -1.47   -1.25   -0.90   -0.54   -0.21    0.13    0.60    1.30    2.22    3.22    4.18
+   275.0    0.00   -0.15   -0.28   -0.44   -0.69   -1.02   -1.34   -1.52   -1.50   -1.27   -0.93   -0.58   -0.28    0.04    0.49    1.19    2.14    3.16    4.09
+   280.0    0.00   -0.16   -0.29   -0.46   -0.72   -1.05   -1.37   -1.56   -1.53   -1.31   -0.98   -0.65   -0.38   -0.10    0.33    1.04    2.00    3.05    3.95
+   285.0    0.00   -0.17   -0.31   -0.48   -0.75   -1.09   -1.41   -1.60   -1.57   -1.35   -1.03   -0.74   -0.51   -0.27    0.13    0.84    1.83    2.90    3.75
+   290.0    0.00   -0.17   -0.32   -0.51   -0.78   -1.13   -1.45   -1.64   -1.62   -1.40   -1.10   -0.84   -0.65   -0.46   -0.09    0.62    1.64    2.72    3.50
+   295.0    0.00   -0.18   -0.33   -0.53   -0.81   -1.16   -1.50   -1.69   -1.66   -1.46   -1.18   -0.95   -0.80   -0.66   -0.31    0.39    1.43    2.53    3.21
+   300.0    0.00   -0.18   -0.34   -0.54   -0.84   -1.20   -1.54   -1.73   -1.72   -1.52   -1.25   -1.05   -0.95   -0.84   -0.52    0.18    1.24    2.32    2.90
+   305.0    0.00   -0.18   -0.35   -0.56   -0.86   -1.24   -1.58   -1.78   -1.77   -1.57   -1.33   -1.15   -1.08   -1.01   -0.71   -0.01    1.05    2.11    2.59
+   310.0    0.00   -0.18   -0.35   -0.57   -0.89   -1.27   -1.62   -1.82   -1.81   -1.62   -1.39   -1.23   -1.19   -1.14   -0.86   -0.17    0.88    1.91    2.30
+   315.0    0.00   -0.18   -0.35   -0.58   -0.90   -1.30   -1.65   -1.86   -1.84   -1.66   -1.43   -1.29   -1.27   -1.24   -0.98   -0.31    0.71    1.71    2.05
+   320.0    0.00   -0.18   -0.35   -0.58   -0.92   -1.32   -1.68   -1.88   -1.87   -1.68   -1.45   -1.32   -1.31   -1.30   -1.06   -0.43    0.56    1.53    1.84
+   325.0    0.00   -0.17   -0.34   -0.58   -0.92   -1.32   -1.69   -1.89   -1.87   -1.68   -1.45   -1.32   -1.32   -1.32   -1.12   -0.52    0.42    1.35    1.69
+   330.0    0.00   -0.16   -0.34   -0.58   -0.92   -1.32   -1.68   -1.87   -1.85   -1.66   -1.43   -1.30   -1.30   -1.32   -1.14   -0.60    0.28    1.18    1.58
+   335.0    0.00   -0.16   -0.33   -0.56   -0.91   -1.31   -1.66   -1.84   -1.81   -1.62   -1.38   -1.25   -1.26   -1.29   -1.15   -0.67    0.15    1.03    1.50
+   340.0    0.00   -0.15   -0.31   -0.55   -0.88   -1.28   -1.62   -1.79   -1.76   -1.55   -1.32   -1.19   -1.20   -1.25   -1.14   -0.72    0.03    0.88    1.44
+   345.0    0.00   -0.14   -0.29   -0.52   -0.85   -1.24   -1.56   -1.73   -1.68   -1.48   -1.25   -1.13   -1.14   -1.20   -1.12   -0.75   -0.07    0.75    1.36
+   350.0    0.00   -0.13   -0.27   -0.49   -0.81   -1.18   -1.50   -1.65   -1.60   -1.40   -1.17   -1.06   -1.07   -1.14   -1.09   -0.76   -0.13    0.64    1.27
+   355.0    0.00   -0.11   -0.25   -0.46   -0.77   -1.12   -1.42   -1.56   -1.50   -1.31   -1.10   -0.99   -1.01   -1.08   -1.03   -0.73   -0.14    0.57    1.16
+   360.0    0.00   -0.10   -0.22   -0.42   -0.71   -1.05   -1.34   -1.47   -1.41   -1.22   -1.02   -0.93   -0.95   -1.02   -0.96   -0.66   -0.10    0.55    1.03
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+NOV702          NONE                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               2    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+Number of Calibrated Antennas GPS:      002                 COMMENT             
+Number of Individual Calibrations GPS:  012                 COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.61      1.99     65.64                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.02   -0.07   -0.15   -0.24   -0.34   -0.43   -0.51   -0.56   -0.61   -0.65   -0.69   -0.69   -0.62   -0.44   -0.13    0.28    0.70    1.02
+     0.0    0.00    0.01   -0.03   -0.12   -0.27   -0.45   -0.60   -0.67   -0.63   -0.52   -0.43   -0.46   -0.64   -0.91   -1.13   -1.10   -0.74   -0.13    0.39
+     5.0    0.00    0.01   -0.03   -0.12   -0.27   -0.46   -0.62   -0.71   -0.69   -0.60   -0.51   -0.52   -0.69   -0.95   -1.18   -1.19   -0.88   -0.30    0.28
+    10.0    0.00    0.00   -0.03   -0.12   -0.27   -0.46   -0.63   -0.74   -0.75   -0.68   -0.59   -0.58   -0.71   -0.94   -1.17   -1.22   -0.97   -0.44    0.18
+    15.0    0.00    0.00   -0.03   -0.12   -0.27   -0.46   -0.64   -0.77   -0.80   -0.75   -0.67   -0.63   -0.71   -0.90   -1.11   -1.19   -1.01   -0.54    0.08
+    20.0    0.00    0.00   -0.03   -0.12   -0.26   -0.45   -0.64   -0.79   -0.85   -0.82   -0.74   -0.68   -0.70   -0.83   -1.01   -1.10   -0.98   -0.59    0.01
+    25.0    0.00    0.00   -0.04   -0.12   -0.26   -0.44   -0.63   -0.80   -0.88   -0.88   -0.80   -0.72   -0.69   -0.76   -0.88   -0.97   -0.90   -0.58   -0.04
+    30.0    0.00    0.00   -0.04   -0.12   -0.25   -0.43   -0.62   -0.79   -0.90   -0.92   -0.86   -0.76   -0.69   -0.68   -0.75   -0.81   -0.77   -0.51   -0.04
+    35.0    0.00    0.00   -0.04   -0.12   -0.25   -0.41   -0.60   -0.78   -0.91   -0.96   -0.91   -0.81   -0.70   -0.63   -0.63   -0.65   -0.60   -0.39    0.01
+    40.0    0.00    0.00   -0.05   -0.13   -0.25   -0.40   -0.58   -0.77   -0.91   -0.98   -0.96   -0.87   -0.73   -0.61   -0.53   -0.49   -0.42   -0.23    0.11
+    45.0    0.00   -0.01   -0.05   -0.13   -0.24   -0.39   -0.56   -0.74   -0.90   -1.00   -1.01   -0.93   -0.78   -0.62   -0.47   -0.36   -0.24   -0.05    0.24
+    50.0    0.00   -0.01   -0.06   -0.14   -0.24   -0.38   -0.54   -0.72   -0.89   -1.01   -1.06   -1.00   -0.86   -0.66   -0.46   -0.26   -0.08    0.12    0.39
+    55.0    0.00   -0.01   -0.06   -0.14   -0.25   -0.37   -0.53   -0.70   -0.88   -1.02   -1.10   -1.08   -0.95   -0.74   -0.49   -0.23    0.02    0.27    0.53
+    60.0    0.00   -0.01   -0.07   -0.15   -0.25   -0.37   -0.52   -0.69   -0.87   -1.03   -1.14   -1.15   -1.05   -0.84   -0.55   -0.24    0.07    0.36    0.63
+    65.0    0.00   -0.01   -0.07   -0.15   -0.26   -0.37   -0.51   -0.67   -0.86   -1.04   -1.17   -1.22   -1.15   -0.95   -0.65   -0.30    0.05    0.39    0.69
+    70.0    0.00   -0.02   -0.07   -0.16   -0.26   -0.38   -0.51   -0.66   -0.84   -1.03   -1.19   -1.28   -1.24   -1.06   -0.77   -0.41   -0.03    0.34    0.67
+    75.0    0.00   -0.02   -0.08   -0.17   -0.27   -0.38   -0.50   -0.65   -0.83   -1.02   -1.20   -1.31   -1.30   -1.15   -0.88   -0.52   -0.14    0.22    0.58
+    80.0    0.00   -0.02   -0.08   -0.17   -0.27   -0.38   -0.50   -0.64   -0.81   -1.00   -1.19   -1.31   -1.33   -1.21   -0.96   -0.63   -0.28    0.07    0.43
+    85.0    0.00   -0.02   -0.08   -0.17   -0.27   -0.37   -0.48   -0.61   -0.78   -0.96   -1.15   -1.28   -1.32   -1.22   -1.00   -0.71   -0.39   -0.08    0.26
+    90.0    0.00   -0.02   -0.08   -0.17   -0.27   -0.37   -0.47   -0.58   -0.73   -0.91   -1.09   -1.22   -1.26   -1.17   -0.98   -0.72   -0.46   -0.21    0.09
+    95.0    0.00   -0.02   -0.08   -0.17   -0.26   -0.35   -0.44   -0.54   -0.67   -0.83   -1.00   -1.13   -1.16   -1.07   -0.89   -0.65   -0.44   -0.26   -0.02
+   100.0    0.00   -0.02   -0.08   -0.16   -0.25   -0.33   -0.40   -0.48   -0.60   -0.74   -0.89   -1.00   -1.02   -0.92   -0.72   -0.50   -0.32   -0.20   -0.03
+   105.0    0.00   -0.02   -0.08   -0.15   -0.23   -0.30   -0.35   -0.42   -0.51   -0.63   -0.76   -0.85   -0.84   -0.72   -0.49   -0.25   -0.08   -0.01    0.08
+   110.0    0.00   -0.02   -0.07   -0.14   -0.21   -0.26   -0.30   -0.34   -0.41   -0.51   -0.62   -0.68   -0.64   -0.48   -0.21    0.07    0.26    0.32    0.34
+   115.0    0.00   -0.02   -0.07   -0.13   -0.18   -0.22   -0.24   -0.27   -0.31   -0.39   -0.47   -0.51   -0.43   -0.22    0.11    0.46    0.69    0.76    0.74
+   120.0    0.00   -0.02   -0.06   -0.11   -0.16   -0.18   -0.19   -0.19   -0.22   -0.27   -0.33   -0.34   -0.23    0.04    0.43    0.86    1.18    1.28    1.26
+   125.0    0.00   -0.02   -0.06   -0.10   -0.13   -0.15   -0.14   -0.13   -0.13   -0.16   -0.20   -0.18   -0.05    0.27    0.74    1.25    1.67    1.85    1.84
+   130.0    0.00   -0.02   -0.05   -0.09   -0.11   -0.11   -0.10   -0.07   -0.06   -0.07   -0.09   -0.06    0.11    0.46    0.99    1.59    2.11    2.39    2.43
+   135.0    0.00   -0.02   -0.05   -0.08   -0.09   -0.09   -0.06   -0.03   -0.01    0.00   -0.01    0.04    0.21    0.58    1.16    1.84    2.47    2.85    2.96
+   140.0    0.00   -0.02   -0.04   -0.07   -0.08   -0.07   -0.04   -0.01    0.02    0.04    0.04    0.09    0.27    0.64    1.24    1.98    2.69    3.18    3.36
+   145.0    0.00   -0.02   -0.04   -0.06   -0.07   -0.06   -0.04    0.00    0.03    0.05    0.06    0.10    0.26    0.62    1.21    1.97    2.75    3.33    3.58
+   150.0    0.00   -0.02   -0.04   -0.05   -0.06   -0.06   -0.04   -0.01    0.02    0.03    0.04    0.07    0.20    0.52    1.07    1.83    2.64    3.28    3.58
+   155.0    0.00   -0.02   -0.04   -0.05   -0.06   -0.07   -0.06   -0.04   -0.02   -0.01   -0.01   -0.01    0.08    0.34    0.84    1.57    2.37    3.03    3.36
+   160.0    0.00   -0.02   -0.04   -0.05   -0.07   -0.09   -0.09   -0.08   -0.07   -0.07   -0.09   -0.12   -0.08    0.11    0.54    1.19    1.95    2.60    2.92
+   165.0    0.00   -0.02   -0.04   -0.06   -0.08   -0.11   -0.12   -0.13   -0.13   -0.14   -0.19   -0.25   -0.28   -0.16    0.17    0.74    1.43    2.03    2.31
+   170.0    0.00   -0.02   -0.04   -0.07   -0.10   -0.13   -0.16   -0.18   -0.20   -0.23   -0.30   -0.41   -0.49   -0.45   -0.22    0.25    0.85    1.38    1.59
+   175.0    0.00   -0.02   -0.05   -0.08   -0.12   -0.16   -0.20   -0.24   -0.27   -0.32   -0.42   -0.56   -0.70   -0.74   -0.60   -0.24    0.26    0.69    0.83
+   180.0    0.00   -0.02   -0.05   -0.09   -0.14   -0.19   -0.25   -0.29   -0.34   -0.41   -0.54   -0.72   -0.90   -1.01   -0.95   -0.69   -0.30    0.04    0.09
+   185.0    0.00   -0.02   -0.06   -0.10   -0.16   -0.23   -0.29   -0.35   -0.41   -0.50   -0.64   -0.85   -1.08   -1.24   -1.25   -1.08   -0.78   -0.53   -0.55
+   190.0    0.00   -0.03   -0.06   -0.12   -0.19   -0.26   -0.34   -0.40   -0.47   -0.57   -0.74   -0.97   -1.22   -1.42   -1.48   -1.38   -1.16   -0.98   -1.04
+   195.0    0.00   -0.03   -0.07   -0.14   -0.21   -0.30   -0.38   -0.45   -0.53   -0.64   -0.81   -1.05   -1.32   -1.54   -1.64   -1.59   -1.43   -1.30   -1.36
+   200.0    0.00   -0.03   -0.08   -0.15   -0.24   -0.33   -0.42   -0.49   -0.58   -0.70   -0.87   -1.11   -1.38   -1.61   -1.73   -1.71   -1.59   -1.47   -1.51
+   205.0    0.00   -0.03   -0.09   -0.17   -0.26   -0.36   -0.46   -0.54   -0.62   -0.74   -0.91   -1.14   -1.40   -1.63   -1.76   -1.75   -1.64   -1.50   -1.49
+   210.0    0.00   -0.03   -0.09   -0.18   -0.29   -0.39   -0.49   -0.57   -0.66   -0.77   -0.93   -1.15   -1.39   -1.60   -1.73   -1.73   -1.60   -1.43   -1.33
+   215.0    0.00   -0.03   -0.10   -0.20   -0.31   -0.42   -0.52   -0.60   -0.68   -0.79   -0.94   -1.13   -1.35   -1.55   -1.67   -1.66   -1.50   -1.27   -1.07
+   220.0    0.00   -0.03   -0.11   -0.21   -0.33   -0.44   -0.54   -0.62   -0.70   -0.79   -0.93   -1.11   -1.31   -1.49   -1.59   -1.55   -1.36   -1.05   -0.75
+   225.0    0.00   -0.03   -0.11   -0.22   -0.34   -0.45   -0.55   -0.63   -0.70   -0.79   -0.91   -1.08   -1.26   -1.43   -1.51   -1.43   -1.19   -0.80   -0.40
+   230.0    0.00   -0.03   -0.11   -0.22   -0.34   -0.46   -0.55   -0.63   -0.70   -0.78   -0.89   -1.05   -1.22   -1.37   -1.42   -1.31   -1.00   -0.53   -0.06
+   235.0    0.00   -0.03   -0.11   -0.22   -0.35   -0.46   -0.55   -0.62   -0.68   -0.76   -0.87   -1.02   -1.19   -1.32   -1.35   -1.18   -0.80   -0.26    0.26
+   240.0    0.00   -0.03   -0.11   -0.22   -0.34   -0.45   -0.53   -0.60   -0.66   -0.74   -0.85   -1.01   -1.17   -1.29   -1.27   -1.05   -0.60    0.01    0.56
+   245.0    0.00   -0.03   -0.11   -0.22   -0.33   -0.43   -0.51   -0.57   -0.63   -0.72   -0.84   -1.00   -1.16   -1.26   -1.20   -0.92   -0.38    0.29    0.84
+   250.0    0.00   -0.03   -0.11   -0.21   -0.32   -0.41   -0.49   -0.54   -0.61   -0.70   -0.83   -1.00   -1.15   -1.23   -1.12   -0.76   -0.15    0.57    1.12
+   255.0    0.00   -0.03   -0.10   -0.20   -0.30   -0.39   -0.46   -0.51   -0.58   -0.68   -0.82   -0.99   -1.14   -1.18   -1.02   -0.59    0.09    0.87    1.40
+   260.0    0.00   -0.03   -0.10   -0.19   -0.29   -0.37   -0.43   -0.48   -0.56   -0.66   -0.81   -0.98   -1.11   -1.12   -0.90   -0.39    0.36    1.17    1.69
+   265.0    0.00   -0.03   -0.09   -0.18   -0.27   -0.34   -0.40   -0.46   -0.54   -0.66   -0.81   -0.96   -1.07   -1.02   -0.74   -0.17    0.63    1.47    2.00
+   270.0    0.00   -0.02   -0.09   -0.17   -0.25   -0.32   -0.39   -0.45   -0.54   -0.65   -0.79   -0.93   -0.99   -0.89   -0.55    0.07    0.91    1.77    2.32
+   275.0    0.00   -0.02   -0.08   -0.16   -0.23   -0.31   -0.37   -0.45   -0.54   -0.65   -0.77   -0.87   -0.88   -0.73   -0.34    0.32    1.17    2.04    2.62
+   280.0    0.00   -0.02   -0.07   -0.14   -0.22   -0.30   -0.37   -0.45   -0.54   -0.64   -0.74   -0.79   -0.75   -0.54   -0.11    0.56    1.41    2.27    2.88
+   285.0    0.00   -0.02   -0.07   -0.13   -0.21   -0.29   -0.38   -0.47   -0.55   -0.64   -0.70   -0.70   -0.59   -0.34    0.12    0.79    1.61    2.44    3.09
+   290.0    0.00   -0.01   -0.06   -0.13   -0.21   -0.30   -0.39   -0.48   -0.57   -0.63   -0.64   -0.58   -0.43   -0.13    0.33    0.97    1.75    2.55    3.21
+   295.0    0.00   -0.01   -0.05   -0.12   -0.20   -0.30   -0.41   -0.50   -0.58   -0.60   -0.57   -0.46   -0.26    0.06    0.52    1.11    1.83    2.57    3.24
+   300.0    0.00   -0.01   -0.05   -0.11   -0.20   -0.31   -0.43   -0.52   -0.58   -0.57   -0.50   -0.34   -0.11    0.22    0.65    1.19    1.83    2.52    3.17
+   305.0    0.00   -0.01   -0.04   -0.11   -0.21   -0.33   -0.44   -0.54   -0.57   -0.54   -0.42   -0.23    0.02    0.33    0.72    1.20    1.77    2.39    3.00
+   310.0    0.00    0.00   -0.04   -0.11   -0.21   -0.34   -0.46   -0.55   -0.56   -0.49   -0.34   -0.13    0.11    0.39    0.73    1.14    1.65    2.20    2.75
+   315.0    0.00    0.00   -0.03   -0.11   -0.22   -0.35   -0.48   -0.55   -0.54   -0.44   -0.27   -0.06    0.16    0.39    0.66    1.02    1.47    1.98    2.45
+   320.0    0.00    0.00   -0.03   -0.11   -0.22   -0.37   -0.49   -0.55   -0.52   -0.40   -0.21   -0.02    0.16    0.32    0.53    0.83    1.25    1.72    2.11
+   325.0    0.00    0.00   -0.03   -0.11   -0.23   -0.38   -0.50   -0.55   -0.50   -0.36   -0.17   -0.01    0.11    0.20    0.34    0.60    1.00    1.45    1.78
+   330.0    0.00    0.00   -0.03   -0.11   -0.24   -0.39   -0.51   -0.55   -0.48   -0.33   -0.15   -0.02    0.03    0.04    0.11    0.33    0.73    1.19    1.47
+   335.0    0.00    0.00   -0.03   -0.11   -0.25   -0.40   -0.52   -0.55   -0.47   -0.31   -0.15   -0.07   -0.08   -0.15   -0.15    0.05    0.46    0.94    1.20
+   340.0    0.00    0.01   -0.03   -0.11   -0.25   -0.41   -0.54   -0.56   -0.48   -0.32   -0.18   -0.13   -0.21   -0.35   -0.41   -0.24    0.18    0.70    0.97
+   345.0    0.00    0.01   -0.02   -0.11   -0.26   -0.42   -0.55   -0.58   -0.49   -0.34   -0.22   -0.21   -0.34   -0.54   -0.65   -0.51   -0.08    0.47    0.78
+   350.0    0.00    0.01   -0.03   -0.12   -0.26   -0.43   -0.57   -0.60   -0.53   -0.39   -0.28   -0.29   -0.46   -0.70   -0.86   -0.75   -0.33    0.26    0.63
+   355.0    0.00    0.01   -0.03   -0.12   -0.27   -0.44   -0.59   -0.63   -0.57   -0.45   -0.35   -0.38   -0.56   -0.83   -1.02   -0.96   -0.55    0.06    0.50
+   360.0    0.00    0.01   -0.03   -0.12   -0.27   -0.45   -0.60   -0.67   -0.63   -0.52   -0.43   -0.46   -0.64   -0.91   -1.13   -1.10   -0.74   -0.13    0.39
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.58      0.77     64.20                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.04   -0.15   -0.32   -0.52   -0.73   -0.91   -1.06   -1.14   -1.12   -1.00   -0.78   -0.53   -0.30   -0.14   -0.04    0.14    0.60    1.55
+     0.0    0.00    0.01   -0.08   -0.24   -0.44   -0.64   -0.83   -0.99   -1.12   -1.20   -1.17   -1.02   -0.77   -0.45   -0.15    0.10    0.37    0.83    1.67
+     5.0    0.00    0.00   -0.08   -0.24   -0.42   -0.62   -0.81   -1.00   -1.16   -1.26   -1.24   -1.08   -0.78   -0.42   -0.10    0.13    0.35    0.77    1.63
+    10.0    0.00    0.00   -0.08   -0.23   -0.40   -0.59   -0.79   -1.00   -1.19   -1.31   -1.30   -1.12   -0.79   -0.39   -0.06    0.16    0.36    0.76    1.67
+    15.0    0.00    0.00   -0.08   -0.22   -0.39   -0.57   -0.78   -1.00   -1.21   -1.35   -1.35   -1.15   -0.80   -0.38   -0.04    0.18    0.37    0.80    1.77
+    20.0    0.00    0.00   -0.08   -0.22   -0.38   -0.56   -0.77   -1.00   -1.22   -1.38   -1.37   -1.17   -0.81   -0.39   -0.04    0.19    0.40    0.87    1.93
+    25.0    0.00    0.00   -0.09   -0.21   -0.37   -0.55   -0.76   -1.00   -1.23   -1.38   -1.38   -1.18   -0.82   -0.41   -0.06    0.17    0.42    0.97    2.11
+    30.0    0.00   -0.01   -0.09   -0.22   -0.37   -0.55   -0.75   -0.99   -1.22   -1.37   -1.36   -1.17   -0.83   -0.44   -0.11    0.13    0.43    1.06    2.30
+    35.0    0.00   -0.01   -0.09   -0.22   -0.37   -0.55   -0.76   -0.99   -1.20   -1.34   -1.33   -1.14   -0.83   -0.48   -0.18    0.07    0.42    1.13    2.45
+    40.0    0.00   -0.01   -0.10   -0.22   -0.38   -0.56   -0.76   -0.98   -1.18   -1.29   -1.28   -1.11   -0.83   -0.53   -0.26   -0.01    0.38    1.16    2.56
+    45.0    0.00   -0.02   -0.10   -0.23   -0.39   -0.57   -0.77   -0.97   -1.15   -1.24   -1.22   -1.06   -0.83   -0.58   -0.35   -0.12    0.29    1.13    2.58
+    50.0    0.00   -0.02   -0.11   -0.24   -0.40   -0.58   -0.78   -0.96   -1.12   -1.19   -1.15   -1.02   -0.82   -0.63   -0.45   -0.24    0.17    1.03    2.53
+    55.0    0.00   -0.03   -0.12   -0.25   -0.42   -0.60   -0.78   -0.96   -1.08   -1.13   -1.09   -0.97   -0.82   -0.67   -0.55   -0.38    0.01    0.86    2.38
+    60.0    0.00   -0.03   -0.12   -0.26   -0.43   -0.61   -0.79   -0.94   -1.05   -1.08   -1.04   -0.93   -0.81   -0.71   -0.65   -0.54   -0.20    0.62    2.15
+    65.0    0.00   -0.03   -0.13   -0.27   -0.44   -0.62   -0.79   -0.93   -1.02   -1.04   -0.99   -0.90   -0.80   -0.75   -0.74   -0.69   -0.42    0.33    1.86
+    70.0    0.00   -0.04   -0.14   -0.28   -0.45   -0.63   -0.79   -0.91   -0.98   -0.99   -0.95   -0.87   -0.79   -0.77   -0.81   -0.84   -0.67    0.00    1.52
+    75.0    0.00   -0.04   -0.15   -0.29   -0.46   -0.63   -0.77   -0.88   -0.95   -0.95   -0.91   -0.84   -0.78   -0.79   -0.87   -0.97   -0.90   -0.34    1.16
+    80.0    0.00   -0.05   -0.15   -0.30   -0.46   -0.62   -0.75   -0.85   -0.91   -0.91   -0.87   -0.81   -0.76   -0.78   -0.90   -1.07   -1.12   -0.67    0.81
+    85.0    0.00   -0.05   -0.16   -0.31   -0.46   -0.61   -0.73   -0.81   -0.86   -0.87   -0.83   -0.78   -0.73   -0.76   -0.90   -1.14   -1.29   -0.96    0.48
+    90.0    0.00   -0.05   -0.17   -0.31   -0.46   -0.59   -0.70   -0.77   -0.81   -0.82   -0.79   -0.73   -0.68   -0.71   -0.87   -1.16   -1.41   -1.19    0.19
+    95.0    0.00   -0.06   -0.17   -0.31   -0.46   -0.58   -0.66   -0.72   -0.76   -0.76   -0.74   -0.68   -0.62   -0.63   -0.80   -1.13   -1.46   -1.33   -0.04
+   100.0    0.00   -0.06   -0.18   -0.32   -0.45   -0.56   -0.63   -0.68   -0.70   -0.71   -0.67   -0.60   -0.53   -0.53   -0.69   -1.04   -1.43   -1.39   -0.20
+   105.0    0.00   -0.07   -0.18   -0.32   -0.45   -0.54   -0.60   -0.64   -0.65   -0.65   -0.60   -0.52   -0.42   -0.39   -0.54   -0.90   -1.31   -1.36   -0.30
+   110.0    0.00   -0.07   -0.19   -0.32   -0.44   -0.53   -0.58   -0.61   -0.61   -0.59   -0.53   -0.42   -0.29   -0.24   -0.36   -0.70   -1.13   -1.24   -0.33
+   115.0    0.00   -0.07   -0.19   -0.33   -0.44   -0.53   -0.57   -0.59   -0.58   -0.54   -0.45   -0.31   -0.15   -0.06   -0.15   -0.46   -0.88   -1.03   -0.30
+   120.0    0.00   -0.08   -0.20   -0.33   -0.45   -0.53   -0.57   -0.59   -0.57   -0.51   -0.39   -0.20   -0.01    0.12    0.07   -0.20   -0.58   -0.77   -0.22
+   125.0    0.00   -0.08   -0.20   -0.33   -0.45   -0.54   -0.59   -0.60   -0.58   -0.49   -0.33   -0.11    0.13    0.30    0.30    0.08   -0.26   -0.46   -0.08
+   130.0    0.00   -0.08   -0.21   -0.34   -0.46   -0.55   -0.61   -0.63   -0.60   -0.49   -0.30   -0.03    0.26    0.47    0.51    0.34    0.06   -0.13    0.09
+   135.0    0.00   -0.08   -0.21   -0.35   -0.47   -0.57   -0.65   -0.68   -0.64   -0.52   -0.29    0.02    0.35    0.60    0.69    0.58    0.36    0.19    0.29
+   140.0    0.00   -0.09   -0.21   -0.35   -0.49   -0.60   -0.69   -0.73   -0.70   -0.56   -0.30    0.05    0.42    0.70    0.82    0.77    0.61    0.49    0.51
+   145.0    0.00   -0.09   -0.22   -0.36   -0.50   -0.62   -0.73   -0.79   -0.77   -0.62   -0.34    0.04    0.44    0.76    0.91    0.89    0.79    0.73    0.73
+   150.0    0.00   -0.09   -0.22   -0.37   -0.51   -0.65   -0.77   -0.85   -0.84   -0.70   -0.41    0.00    0.42    0.76    0.94    0.95    0.90    0.91    0.95
+   155.0    0.00   -0.09   -0.23   -0.38   -0.53   -0.68   -0.81   -0.91   -0.91   -0.78   -0.49   -0.08    0.37    0.72    0.91    0.94    0.93    1.01    1.14
+   160.0    0.00   -0.09   -0.23   -0.39   -0.54   -0.70   -0.84   -0.96   -0.99   -0.87   -0.59   -0.17    0.28    0.63    0.82    0.86    0.88    1.04    1.31
+   165.0    0.00   -0.09   -0.24   -0.40   -0.56   -0.72   -0.87   -1.00   -1.05   -0.96   -0.70   -0.29    0.16    0.51    0.70    0.73    0.76    0.98    1.42
+   170.0    0.00   -0.09   -0.24   -0.40   -0.57   -0.74   -0.90   -1.04   -1.11   -1.04   -0.80   -0.42    0.02    0.37    0.54    0.55    0.59    0.87    1.49
+   175.0    0.00   -0.09   -0.24   -0.41   -0.58   -0.75   -0.92   -1.07   -1.16   -1.12   -0.91   -0.55   -0.13    0.21    0.36    0.36    0.38    0.70    1.50
+   180.0    0.00   -0.09   -0.25   -0.42   -0.60   -0.77   -0.95   -1.10   -1.21   -1.19   -1.01   -0.67   -0.27    0.05    0.19    0.16    0.15    0.50    1.45
+   185.0    0.00   -0.09   -0.25   -0.43   -0.62   -0.79   -0.97   -1.13   -1.25   -1.25   -1.10   -0.79   -0.41   -0.10    0.02   -0.03   -0.06    0.29    1.37
+   190.0    0.00   -0.09   -0.25   -0.44   -0.64   -0.82   -1.00   -1.17   -1.29   -1.31   -1.17   -0.89   -0.53   -0.23   -0.12   -0.20   -0.25    0.09    1.25
+   195.0    0.00   -0.09   -0.25   -0.45   -0.66   -0.85   -1.03   -1.20   -1.33   -1.36   -1.24   -0.97   -0.63   -0.34   -0.24   -0.32   -0.40   -0.07    1.11
+   200.0    0.00   -0.09   -0.25   -0.46   -0.68   -0.88   -1.08   -1.25   -1.37   -1.40   -1.29   -1.04   -0.71   -0.43   -0.32   -0.40   -0.49   -0.18    0.99
+   205.0    0.00   -0.09   -0.25   -0.47   -0.70   -0.92   -1.12   -1.29   -1.41   -1.44   -1.33   -1.09   -0.77   -0.49   -0.38   -0.44   -0.52   -0.23    0.88
+   210.0    0.00   -0.08   -0.25   -0.48   -0.72   -0.96   -1.17   -1.34   -1.46   -1.48   -1.36   -1.13   -0.81   -0.54   -0.41   -0.44   -0.49   -0.21    0.82
+   215.0    0.00   -0.08   -0.25   -0.48   -0.74   -1.00   -1.22   -1.40   -1.50   -1.50   -1.38   -1.15   -0.84   -0.57   -0.42   -0.41   -0.41   -0.13    0.81
+   220.0    0.00   -0.08   -0.24   -0.48   -0.76   -1.03   -1.27   -1.44   -1.54   -1.53   -1.39   -1.15   -0.86   -0.59   -0.41   -0.35   -0.29    0.00    0.85
+   225.0    0.00   -0.07   -0.24   -0.48   -0.76   -1.05   -1.31   -1.49   -1.57   -1.54   -1.39   -1.15   -0.86   -0.59   -0.40   -0.28   -0.15    0.18    0.94
+   230.0    0.00   -0.07   -0.23   -0.47   -0.77   -1.07   -1.33   -1.52   -1.59   -1.54   -1.38   -1.13   -0.85   -0.58   -0.37   -0.20    0.01    0.38    1.08
+   235.0    0.00   -0.06   -0.22   -0.46   -0.76   -1.07   -1.35   -1.53   -1.60   -1.53   -1.36   -1.11   -0.83   -0.57   -0.34   -0.12    0.16    0.59    1.25
+   240.0    0.00   -0.06   -0.21   -0.45   -0.75   -1.06   -1.34   -1.53   -1.59   -1.52   -1.33   -1.07   -0.79   -0.54   -0.30   -0.04    0.30    0.79    1.43
+   245.0    0.00   -0.05   -0.19   -0.43   -0.72   -1.04   -1.33   -1.52   -1.58   -1.49   -1.29   -1.02   -0.75   -0.49   -0.25    0.03    0.42    0.96    1.61
+   250.0    0.00   -0.04   -0.18   -0.40   -0.70   -1.01   -1.30   -1.49   -1.55   -1.46   -1.25   -0.97   -0.69   -0.44   -0.20    0.09    0.51    1.09    1.77
+   255.0    0.00   -0.04   -0.17   -0.38   -0.66   -0.97   -1.26   -1.45   -1.51   -1.42   -1.20   -0.91   -0.62   -0.37   -0.14    0.15    0.58    1.19    1.91
+   260.0    0.00   -0.03   -0.15   -0.36   -0.63   -0.93   -1.21   -1.41   -1.48   -1.38   -1.16   -0.86   -0.55   -0.29   -0.07    0.20    0.62    1.24    2.01
+   265.0    0.00   -0.03   -0.14   -0.33   -0.59   -0.89   -1.16   -1.37   -1.44   -1.35   -1.11   -0.80   -0.48   -0.21    0.01    0.25    0.64    1.27    2.09
+   270.0    0.00   -0.02   -0.13   -0.31   -0.56   -0.84   -1.12   -1.32   -1.40   -1.31   -1.07   -0.74   -0.41   -0.13    0.08    0.30    0.66    1.27    2.15
+   275.0    0.00   -0.02   -0.11   -0.29   -0.53   -0.80   -1.07   -1.28   -1.36   -1.28   -1.04   -0.70   -0.35   -0.06    0.14    0.34    0.67    1.27    2.20
+   280.0    0.00   -0.01   -0.10   -0.27   -0.50   -0.77   -1.04   -1.25   -1.33   -1.25   -1.01   -0.66   -0.30   -0.01    0.19    0.37    0.67    1.28    2.26
+   285.0    0.00   -0.01   -0.09   -0.26   -0.49   -0.75   -1.01   -1.22   -1.30   -1.22   -0.98   -0.64   -0.27    0.02    0.22    0.38    0.68    1.30    2.33
+   290.0    0.00    0.00   -0.09   -0.25   -0.47   -0.74   -0.99   -1.19   -1.27   -1.20   -0.96   -0.62   -0.26    0.03    0.22    0.39    0.70    1.34    2.41
+   295.0    0.00    0.00   -0.08   -0.25   -0.47   -0.73   -0.98   -1.17   -1.25   -1.17   -0.94   -0.61   -0.27    0.00    0.20    0.38    0.72    1.40    2.51
+   300.0    0.00    0.00   -0.08   -0.24   -0.47   -0.73   -0.98   -1.15   -1.22   -1.14   -0.92   -0.62   -0.30   -0.05    0.14    0.36    0.74    1.48    2.63
+   305.0    0.00    0.00   -0.08   -0.25   -0.48   -0.74   -0.97   -1.14   -1.19   -1.10   -0.90   -0.63   -0.35   -0.12    0.07    0.32    0.76    1.55    2.73
+   310.0    0.00    0.01   -0.08   -0.25   -0.49   -0.75   -0.97   -1.12   -1.16   -1.07   -0.88   -0.64   -0.41   -0.21   -0.02    0.27    0.77    1.63    2.82
+   315.0    0.00    0.01   -0.08   -0.26   -0.50   -0.75   -0.97   -1.10   -1.12   -1.03   -0.86   -0.66   -0.47   -0.30   -0.11    0.21    0.77    1.68    2.88
+   320.0    0.00    0.01   -0.08   -0.26   -0.51   -0.76   -0.97   -1.08   -1.09   -1.00   -0.85   -0.69   -0.53   -0.39   -0.20    0.15    0.76    1.69    2.88
+   325.0    0.00    0.01   -0.08   -0.27   -0.51   -0.76   -0.96   -1.06   -1.06   -0.98   -0.85   -0.71   -0.59   -0.47   -0.27    0.10    0.73    1.67    2.82
+   330.0    0.00    0.01   -0.08   -0.27   -0.52   -0.76   -0.95   -1.04   -1.04   -0.96   -0.85   -0.74   -0.64   -0.52   -0.32    0.05    0.69    1.60    2.71
+   335.0    0.00    0.01   -0.08   -0.27   -0.51   -0.75   -0.93   -1.03   -1.03   -0.97   -0.87   -0.78   -0.68   -0.56   -0.35    0.02    0.63    1.50    2.55
+   340.0    0.00    0.01   -0.08   -0.27   -0.51   -0.74   -0.92   -1.01   -1.03   -0.99   -0.91   -0.82   -0.71   -0.57   -0.34    0.01    0.57    1.36    2.35
+   345.0    0.00    0.01   -0.08   -0.27   -0.50   -0.72   -0.90   -1.00   -1.04   -1.02   -0.96   -0.86   -0.73   -0.55   -0.32    0.01    0.50    1.21    2.14
+   350.0    0.00    0.01   -0.08   -0.26   -0.48   -0.70   -0.87   -1.00   -1.06   -1.07   -1.02   -0.92   -0.75   -0.53   -0.27    0.03    0.44    1.06    1.94
+   355.0    0.00    0.01   -0.08   -0.25   -0.46   -0.67   -0.85   -0.99   -1.09   -1.13   -1.10   -0.97   -0.76   -0.49   -0.21    0.06    0.40    0.93    1.77
+   360.0    0.00    0.01   -0.08   -0.24   -0.44   -0.64   -0.83   -0.99   -1.12   -1.20   -1.17   -1.02   -0.77   -0.45   -0.15    0.10    0.37    0.83    1.67
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+NOV702GG        NONE                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               2    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     4                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+Number of Calibrated Antennas GPS:      002                 COMMENT             
+Number of Individual Calibrations GPS:  004                 COMMENT             
+Number of Calibrated Antennas GLO:      002                 COMMENT             
+Number of Individual Calibrations GLO:  004                 COMMENT             
+# GLONASS PCV                                               COMMENT             
+#  derived from Delta PCV per 25.0 MHz                      COMMENT             
+#  for frequency channel number k=0                         COMMENT             
+   G01                                                      START OF FREQUENCY  
+      1.35      0.30     66.76                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.01   -0.05   -0.12   -0.22   -0.33   -0.45   -0.58   -0.71   -0.82   -0.93   -1.00   -1.00   -0.88   -0.58   -0.11    0.49    1.11    1.59
+     0.0    0.00    0.00   -0.05   -0.15   -0.29   -0.43   -0.54   -0.61   -0.65   -0.68   -0.73   -0.78   -0.80   -0.72   -0.51   -0.19    0.22    0.72    1.48
+     5.0    0.00    0.00   -0.04   -0.14   -0.29   -0.43   -0.55   -0.62   -0.66   -0.70   -0.76   -0.82   -0.85   -0.78   -0.58   -0.27    0.12    0.61    1.38
+    10.0    0.00    0.00   -0.04   -0.14   -0.29   -0.43   -0.55   -0.63   -0.67   -0.72   -0.79   -0.86   -0.89   -0.82   -0.62   -0.31    0.07    0.56    1.31
+    15.0    0.00    0.00   -0.04   -0.14   -0.29   -0.43   -0.55   -0.63   -0.69   -0.75   -0.82   -0.90   -0.93   -0.86   -0.64   -0.32    0.08    0.55    1.28
+    20.0    0.00    0.00   -0.04   -0.14   -0.28   -0.43   -0.56   -0.64   -0.71   -0.78   -0.87   -0.95   -0.98   -0.89   -0.65   -0.29    0.13    0.61    1.29
+    25.0    0.00    0.00   -0.04   -0.14   -0.28   -0.43   -0.56   -0.65   -0.73   -0.81   -0.91   -1.01   -1.03   -0.92   -0.65   -0.25    0.22    0.72    1.37
+    30.0    0.00    0.00   -0.04   -0.14   -0.28   -0.43   -0.55   -0.65   -0.74   -0.85   -0.97   -1.07   -1.09   -0.97   -0.65   -0.19    0.34    0.88    1.49
+    35.0    0.00    0.00   -0.04   -0.14   -0.28   -0.42   -0.55   -0.66   -0.76   -0.88   -1.02   -1.14   -1.17   -1.03   -0.68   -0.15    0.45    1.05    1.66
+    40.0    0.00    0.01   -0.04   -0.14   -0.27   -0.42   -0.55   -0.66   -0.77   -0.91   -1.07   -1.22   -1.26   -1.11   -0.73   -0.14    0.55    1.23    1.84
+    45.0    0.00    0.01   -0.04   -0.14   -0.27   -0.41   -0.54   -0.66   -0.78   -0.94   -1.13   -1.29   -1.36   -1.22   -0.82   -0.18    0.60    1.37    2.01
+    50.0    0.00    0.01   -0.04   -0.13   -0.26   -0.40   -0.53   -0.66   -0.79   -0.96   -1.17   -1.37   -1.46   -1.35   -0.95   -0.27    0.60    1.46    2.14
+    55.0    0.00    0.01   -0.04   -0.13   -0.26   -0.40   -0.52   -0.65   -0.79   -0.98   -1.21   -1.44   -1.57   -1.50   -1.12   -0.41    0.52    1.47    2.20
+    60.0    0.00    0.01   -0.04   -0.13   -0.25   -0.39   -0.52   -0.64   -0.79   -0.98   -1.23   -1.49   -1.67   -1.65   -1.31   -0.61    0.37    1.40    2.17
+    65.0    0.00    0.01   -0.04   -0.13   -0.25   -0.38   -0.51   -0.63   -0.78   -0.98   -1.24   -1.53   -1.76   -1.80   -1.51   -0.84    0.16    1.24    2.05
+    70.0    0.00    0.01   -0.04   -0.12   -0.24   -0.37   -0.49   -0.62   -0.76   -0.96   -1.23   -1.55   -1.83   -1.93   -1.71   -1.08   -0.10    1.00    1.82
+    75.0    0.00    0.01   -0.03   -0.12   -0.23   -0.36   -0.48   -0.60   -0.74   -0.93   -1.21   -1.54   -1.86   -2.02   -1.87   -1.31   -0.36    0.73    1.52
+    80.0    0.00    0.01   -0.03   -0.11   -0.22   -0.34   -0.46   -0.58   -0.71   -0.90   -1.17   -1.51   -1.86   -2.07   -1.99   -1.49   -0.61    0.44    1.18
+    85.0    0.00    0.01   -0.03   -0.10   -0.21   -0.33   -0.44   -0.55   -0.68   -0.85   -1.11   -1.45   -1.81   -2.06   -2.04   -1.61   -0.80    0.17    0.84
+    90.0    0.00    0.01   -0.03   -0.10   -0.20   -0.31   -0.42   -0.52   -0.63   -0.79   -1.03   -1.36   -1.72   -1.99   -2.01   -1.64   -0.91   -0.02    0.54
+    95.0    0.00    0.01   -0.02   -0.09   -0.18   -0.28   -0.39   -0.49   -0.59   -0.73   -0.95   -1.25   -1.59   -1.86   -1.89   -1.58   -0.92   -0.13    0.34
+   100.0    0.00    0.01   -0.02   -0.08   -0.16   -0.26   -0.36   -0.45   -0.54   -0.66   -0.85   -1.12   -1.42   -1.66   -1.70   -1.41   -0.82   -0.11    0.25
+   105.0    0.00    0.01   -0.02   -0.07   -0.14   -0.23   -0.32   -0.40   -0.48   -0.59   -0.74   -0.97   -1.22   -1.42   -1.43   -1.16   -0.61    0.03    0.31
+   110.0    0.00    0.01   -0.01   -0.05   -0.12   -0.20   -0.28   -0.35   -0.42   -0.51   -0.63   -0.81   -1.01   -1.15   -1.12   -0.83   -0.30    0.28    0.51
+   115.0    0.00    0.01   -0.01   -0.04   -0.09   -0.16   -0.23   -0.30   -0.37   -0.43   -0.53   -0.65   -0.78   -0.86   -0.78   -0.46    0.07    0.63    0.85
+   120.0    0.00    0.00   -0.01   -0.03   -0.07   -0.12   -0.19   -0.25   -0.31   -0.36   -0.42   -0.50   -0.57   -0.58   -0.43   -0.08    0.47    1.04    1.27
+   125.0    0.00    0.00    0.00   -0.02   -0.05   -0.09   -0.14   -0.20   -0.25   -0.29   -0.33   -0.36   -0.38   -0.32   -0.12    0.29    0.87    1.47    1.75
+   130.0    0.00    0.00    0.00   -0.01   -0.02   -0.06   -0.10   -0.16   -0.20   -0.24   -0.25   -0.25   -0.22   -0.10    0.16    0.61    1.24    1.87    2.21
+   135.0    0.00    0.00    0.00    0.00    0.00   -0.03   -0.07   -0.12   -0.17   -0.19   -0.20   -0.17   -0.10    0.06    0.36    0.86    1.53    2.21    2.62
+   140.0    0.00    0.00    0.00    0.01    0.01    0.00   -0.04   -0.09   -0.14   -0.17   -0.17   -0.13   -0.04    0.15    0.49    1.02    1.73    2.46    2.92
+   145.0    0.00    0.00    0.00    0.01    0.02    0.01   -0.02   -0.07   -0.13   -0.16   -0.16   -0.12   -0.02    0.18    0.54    1.09    1.82    2.58    3.09
+   150.0    0.00    0.00    0.00    0.02    0.03    0.02   -0.01   -0.07   -0.14   -0.18   -0.19   -0.15   -0.05    0.15    0.51    1.07    1.81    2.58    3.10
+   155.0    0.00    0.00    0.00    0.02    0.03    0.02   -0.02   -0.08   -0.16   -0.22   -0.24   -0.22   -0.13    0.06    0.41    0.97    1.70    2.46    2.95
+   160.0    0.00   -0.01    0.00    0.01    0.03    0.02   -0.03   -0.11   -0.20   -0.28   -0.32   -0.31   -0.24   -0.07    0.27    0.80    1.51    2.24    2.68
+   165.0    0.00   -0.01   -0.01    0.01    0.02    0.00   -0.06   -0.16   -0.26   -0.36   -0.42   -0.43   -0.38   -0.22    0.09    0.59    1.26    1.94    2.30
+   170.0    0.00   -0.01   -0.01    0.00    0.00   -0.03   -0.10   -0.21   -0.34   -0.45   -0.53   -0.56   -0.53   -0.40   -0.11    0.36    0.99    1.60    1.88
+   175.0    0.00   -0.01   -0.02   -0.02   -0.02   -0.06   -0.15   -0.28   -0.42   -0.56   -0.66   -0.70   -0.68   -0.57   -0.31    0.13    0.70    1.25    1.44
+   180.0    0.00   -0.02   -0.03   -0.03   -0.04   -0.09   -0.20   -0.35   -0.52   -0.67   -0.78   -0.84   -0.83   -0.73   -0.49   -0.09    0.43    0.91    1.03
+   185.0    0.00   -0.02   -0.04   -0.05   -0.07   -0.13   -0.25   -0.42   -0.61   -0.78   -0.90   -0.96   -0.96   -0.87   -0.65   -0.29    0.20    0.62    0.70
+   190.0    0.00   -0.02   -0.04   -0.06   -0.10   -0.18   -0.31   -0.50   -0.70   -0.88   -1.01   -1.08   -1.08   -0.99   -0.79   -0.45    0.00    0.40    0.46
+   195.0    0.00   -0.03   -0.05   -0.08   -0.13   -0.22   -0.37   -0.56   -0.78   -0.97   -1.10   -1.17   -1.17   -1.09   -0.90   -0.57   -0.15    0.24    0.32
+   200.0    0.00   -0.03   -0.06   -0.10   -0.15   -0.25   -0.42   -0.62   -0.85   -1.05   -1.19   -1.26   -1.25   -1.17   -0.98   -0.67   -0.25    0.15    0.29
+   205.0    0.00   -0.03   -0.07   -0.11   -0.18   -0.29   -0.46   -0.67   -0.90   -1.11   -1.25   -1.32   -1.32   -1.23   -1.04   -0.73   -0.31    0.12    0.35
+   210.0    0.00   -0.03   -0.08   -0.13   -0.20   -0.32   -0.49   -0.71   -0.95   -1.16   -1.30   -1.38   -1.37   -1.28   -1.09   -0.76   -0.32    0.15    0.47
+   215.0    0.00   -0.04   -0.09   -0.14   -0.22   -0.34   -0.52   -0.74   -0.98   -1.19   -1.35   -1.43   -1.42   -1.33   -1.12   -0.78   -0.31    0.22    0.64
+   220.0    0.00   -0.04   -0.09   -0.16   -0.24   -0.37   -0.54   -0.76   -1.00   -1.21   -1.38   -1.47   -1.47   -1.37   -1.14   -0.77   -0.26    0.32    0.83
+   225.0    0.00   -0.04   -0.10   -0.17   -0.26   -0.38   -0.55   -0.77   -1.01   -1.23   -1.41   -1.51   -1.51   -1.40   -1.16   -0.75   -0.20    0.44    1.03
+   230.0    0.00   -0.04   -0.10   -0.18   -0.27   -0.40   -0.56   -0.77   -1.01   -1.24   -1.43   -1.54   -1.56   -1.44   -1.16   -0.71   -0.11    0.57    1.21
+   235.0    0.00   -0.04   -0.11   -0.19   -0.28   -0.41   -0.57   -0.78   -1.01   -1.24   -1.45   -1.58   -1.59   -1.46   -1.16   -0.66   -0.01    0.71    1.37
+   240.0    0.00   -0.04   -0.11   -0.19   -0.29   -0.42   -0.58   -0.78   -1.01   -1.25   -1.46   -1.60   -1.62   -1.48   -1.14   -0.59    0.10    0.85    1.50
+   245.0    0.00   -0.04   -0.11   -0.20   -0.30   -0.43   -0.58   -0.78   -1.01   -1.25   -1.47   -1.62   -1.64   -1.48   -1.10   -0.51    0.23    0.99    1.60
+   250.0    0.00   -0.04   -0.12   -0.20   -0.31   -0.44   -0.59   -0.79   -1.01   -1.25   -1.47   -1.62   -1.63   -1.45   -1.04   -0.41    0.36    1.11    1.69
+   255.0    0.00   -0.04   -0.12   -0.21   -0.32   -0.45   -0.60   -0.79   -1.01   -1.25   -1.46   -1.60   -1.60   -1.40   -0.96   -0.30    0.48    1.23    1.75
+   260.0    0.00   -0.04   -0.12   -0.21   -0.32   -0.46   -0.62   -0.80   -1.02   -1.24   -1.44   -1.56   -1.54   -1.32   -0.85   -0.17    0.61    1.34    1.81
+   265.0    0.00   -0.04   -0.11   -0.21   -0.33   -0.47   -0.63   -0.81   -1.02   -1.22   -1.40   -1.50   -1.46   -1.20   -0.72   -0.04    0.73    1.42    1.84
+   270.0    0.00   -0.04   -0.11   -0.21   -0.34   -0.48   -0.64   -0.82   -1.01   -1.20   -1.35   -1.42   -1.34   -1.07   -0.58    0.09    0.84    1.49    1.87
+   275.0    0.00   -0.04   -0.11   -0.21   -0.34   -0.49   -0.66   -0.83   -1.01   -1.17   -1.28   -1.31   -1.20   -0.91   -0.42    0.23    0.93    1.54    1.88
+   280.0    0.00   -0.04   -0.11   -0.21   -0.34   -0.50   -0.67   -0.84   -0.99   -1.12   -1.20   -1.19   -1.05   -0.74   -0.26    0.36    1.02    1.57    1.89
+   285.0    0.00   -0.04   -0.10   -0.21   -0.34   -0.50   -0.67   -0.83   -0.97   -1.08   -1.12   -1.07   -0.90   -0.57   -0.10    0.48    1.08    1.59    1.87
+   290.0    0.00   -0.03   -0.10   -0.20   -0.34   -0.50   -0.67   -0.83   -0.95   -1.02   -1.03   -0.94   -0.74   -0.41    0.05    0.59    1.14    1.59    1.85
+   295.0    0.00   -0.03   -0.09   -0.20   -0.34   -0.50   -0.67   -0.81   -0.92   -0.96   -0.94   -0.82   -0.60   -0.26    0.18    0.69    1.18    1.58    1.83
+   300.0    0.00   -0.03   -0.09   -0.19   -0.33   -0.50   -0.66   -0.79   -0.88   -0.90   -0.86   -0.72   -0.48   -0.14    0.29    0.77    1.21    1.57    1.80
+   305.0    0.00   -0.03   -0.09   -0.19   -0.33   -0.49   -0.65   -0.77   -0.84   -0.85   -0.78   -0.64   -0.39   -0.05    0.37    0.82    1.23    1.56    1.77
+   310.0    0.00   -0.02   -0.08   -0.18   -0.32   -0.48   -0.63   -0.74   -0.80   -0.80   -0.73   -0.58   -0.33    0.00    0.41    0.85    1.24    1.54    1.75
+   315.0    0.00   -0.02   -0.08   -0.18   -0.31   -0.47   -0.61   -0.71   -0.76   -0.75   -0.68   -0.54   -0.31    0.02    0.42    0.84    1.23    1.52    1.75
+   320.0    0.00   -0.02   -0.07   -0.17   -0.31   -0.46   -0.59   -0.69   -0.73   -0.72   -0.65   -0.53   -0.31    0.00    0.39    0.81    1.20    1.50    1.75
+   325.0    0.00   -0.01   -0.07   -0.16   -0.30   -0.45   -0.58   -0.66   -0.70   -0.69   -0.64   -0.53   -0.35   -0.06    0.32    0.74    1.14    1.47    1.76
+   330.0    0.00   -0.01   -0.06   -0.16   -0.30   -0.44   -0.56   -0.64   -0.67   -0.67   -0.63   -0.55   -0.40   -0.14    0.23    0.65    1.06    1.42    1.77
+   335.0    0.00   -0.01   -0.06   -0.16   -0.29   -0.43   -0.55   -0.62   -0.65   -0.66   -0.64   -0.59   -0.47   -0.24    0.11    0.52    0.95    1.34    1.78
+   340.0    0.00   -0.01   -0.05   -0.15   -0.29   -0.43   -0.54   -0.61   -0.64   -0.65   -0.65   -0.63   -0.54   -0.34   -0.03    0.38    0.81    1.24    1.76
+   345.0    0.00   -0.01   -0.05   -0.15   -0.29   -0.43   -0.54   -0.61   -0.64   -0.65   -0.66   -0.67   -0.61   -0.45   -0.16    0.22    0.66    1.12    1.72
+   350.0    0.00    0.00   -0.05   -0.15   -0.29   -0.43   -0.54   -0.60   -0.63   -0.65   -0.68   -0.71   -0.68   -0.56   -0.30    0.07    0.50    0.98    1.65
+   355.0    0.00    0.00   -0.05   -0.15   -0.29   -0.43   -0.54   -0.61   -0.64   -0.66   -0.70   -0.75   -0.75   -0.65   -0.41   -0.07    0.35    0.84    1.57
+   360.0    0.00    0.00   -0.05   -0.15   -0.29   -0.43   -0.54   -0.61   -0.65   -0.68   -0.73   -0.78   -0.80   -0.72   -0.51   -0.19    0.22    0.72    1.48
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.00      0.13     66.08                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.04   -0.15   -0.31   -0.47   -0.62   -0.71   -0.75   -0.73   -0.67   -0.58   -0.47   -0.35   -0.24   -0.12    0.02    0.20    0.47    0.86
+     0.0    0.00   -0.09   -0.24   -0.44   -0.64   -0.77   -0.78   -0.67   -0.50   -0.36   -0.28   -0.29   -0.33   -0.33   -0.24   -0.06    0.17    0.47    1.02
+     5.0    0.00   -0.09   -0.24   -0.45   -0.66   -0.79   -0.81   -0.71   -0.53   -0.36   -0.26   -0.26   -0.32   -0.37   -0.33   -0.18    0.05    0.36    0.85
+    10.0    0.00   -0.09   -0.25   -0.46   -0.67   -0.81   -0.84   -0.74   -0.56   -0.37   -0.25   -0.24   -0.31   -0.39   -0.40   -0.28   -0.05    0.27    0.69
+    15.0    0.00   -0.09   -0.25   -0.47   -0.68   -0.84   -0.87   -0.78   -0.58   -0.38   -0.24   -0.22   -0.30   -0.41   -0.45   -0.35   -0.12    0.21    0.55
+    20.0    0.00   -0.10   -0.26   -0.47   -0.70   -0.86   -0.90   -0.81   -0.61   -0.39   -0.24   -0.20   -0.28   -0.41   -0.47   -0.39   -0.15    0.17    0.43
+    25.0    0.00   -0.10   -0.26   -0.48   -0.71   -0.88   -0.93   -0.84   -0.64   -0.41   -0.24   -0.19   -0.27   -0.40   -0.47   -0.38   -0.14    0.18    0.36
+    30.0    0.00   -0.10   -0.27   -0.49   -0.73   -0.90   -0.96   -0.88   -0.68   -0.44   -0.26   -0.19   -0.25   -0.37   -0.43   -0.34   -0.08    0.23    0.34
+    35.0    0.00   -0.10   -0.27   -0.50   -0.74   -0.93   -1.00   -0.92   -0.72   -0.48   -0.28   -0.20   -0.24   -0.33   -0.37   -0.26    0.01    0.31    0.36
+    40.0    0.00   -0.10   -0.28   -0.52   -0.76   -0.95   -1.03   -0.96   -0.77   -0.53   -0.32   -0.22   -0.23   -0.29   -0.30   -0.16    0.13    0.42    0.43
+    45.0    0.00   -0.10   -0.29   -0.53   -0.78   -0.98   -1.06   -1.00   -0.82   -0.58   -0.37   -0.26   -0.24   -0.26   -0.22   -0.05    0.26    0.55    0.54
+    50.0    0.00   -0.10   -0.29   -0.54   -0.80   -1.00   -1.09   -1.04   -0.87   -0.64   -0.44   -0.31   -0.26   -0.24   -0.16    0.05    0.38    0.68    0.67
+    55.0    0.00   -0.10   -0.30   -0.55   -0.82   -1.03   -1.13   -1.08   -0.92   -0.71   -0.51   -0.37   -0.29   -0.23   -0.11    0.13    0.48    0.79    0.80
+    60.0    0.00   -0.10   -0.30   -0.56   -0.83   -1.05   -1.16   -1.13   -0.98   -0.77   -0.58   -0.44   -0.35   -0.26   -0.10    0.18    0.54    0.86    0.91
+    65.0    0.00   -0.10   -0.30   -0.57   -0.85   -1.07   -1.18   -1.16   -1.03   -0.84   -0.66   -0.52   -0.41   -0.30   -0.11    0.18    0.55    0.88    0.98
+    70.0    0.00   -0.10   -0.30   -0.57   -0.86   -1.09   -1.21   -1.19   -1.07   -0.90   -0.73   -0.60   -0.49   -0.37   -0.17    0.13    0.50    0.84    0.99
+    75.0    0.00   -0.10   -0.30   -0.57   -0.86   -1.09   -1.22   -1.22   -1.11   -0.96   -0.80   -0.68   -0.57   -0.44   -0.24    0.05    0.40    0.74    0.93
+    80.0    0.00   -0.10   -0.30   -0.57   -0.86   -1.09   -1.22   -1.23   -1.14   -1.00   -0.86   -0.75   -0.65   -0.52   -0.33   -0.07    0.26    0.58    0.81
+    85.0    0.00   -0.10   -0.29   -0.56   -0.85   -1.08   -1.22   -1.24   -1.16   -1.04   -0.91   -0.80   -0.70   -0.59   -0.43   -0.20    0.08    0.38    0.62
+    90.0    0.00   -0.09   -0.28   -0.55   -0.83   -1.06   -1.20   -1.23   -1.16   -1.05   -0.93   -0.83   -0.73   -0.64   -0.50   -0.32   -0.10    0.15    0.39
+    95.0    0.00   -0.09   -0.27   -0.53   -0.80   -1.03   -1.17   -1.21   -1.15   -1.05   -0.93   -0.83   -0.73   -0.65   -0.55   -0.43   -0.27   -0.08    0.14
+   100.0    0.00   -0.08   -0.26   -0.50   -0.76   -0.98   -1.12   -1.17   -1.13   -1.03   -0.91   -0.79   -0.70   -0.62   -0.55   -0.49   -0.41   -0.28   -0.10
+   105.0    0.00   -0.08   -0.24   -0.47   -0.71   -0.92   -1.06   -1.12   -1.09   -0.99   -0.87   -0.73   -0.62   -0.54   -0.51   -0.50   -0.49   -0.42   -0.29
+   110.0    0.00   -0.07   -0.23   -0.44   -0.66   -0.86   -0.99   -1.05   -1.03   -0.94   -0.80   -0.65   -0.51   -0.43   -0.41   -0.45   -0.50   -0.50   -0.43
+   115.0    0.00   -0.06   -0.21   -0.40   -0.60   -0.78   -0.91   -0.97   -0.96   -0.87   -0.72   -0.54   -0.38   -0.28   -0.27   -0.35   -0.44   -0.49   -0.47
+   120.0    0.00   -0.05   -0.18   -0.36   -0.53   -0.69   -0.82   -0.89   -0.88   -0.80   -0.63   -0.43   -0.23   -0.11   -0.10   -0.19   -0.32   -0.40   -0.42
+   125.0    0.00   -0.05   -0.16   -0.31   -0.47   -0.61   -0.72   -0.79   -0.80   -0.72   -0.54   -0.31   -0.08    0.07    0.09    0.00   -0.13   -0.22   -0.28
+   130.0    0.00   -0.04   -0.14   -0.27   -0.40   -0.52   -0.62   -0.70   -0.71   -0.64   -0.45   -0.19    0.07    0.24    0.29    0.21    0.09    0.01   -0.05
+   135.0    0.00   -0.03   -0.12   -0.22   -0.33   -0.43   -0.53   -0.61   -0.63   -0.56   -0.37   -0.10    0.19    0.39    0.46    0.41    0.33    0.28    0.24
+   140.0    0.00   -0.02   -0.09   -0.18   -0.27   -0.36   -0.45   -0.53   -0.56   -0.50   -0.31   -0.02    0.28    0.51    0.61    0.60    0.56    0.57    0.56
+   145.0    0.00   -0.01   -0.07   -0.14   -0.21   -0.29   -0.37   -0.46   -0.50   -0.45   -0.26    0.03    0.34    0.59    0.72    0.74    0.76    0.83    0.88
+   150.0    0.00   -0.01   -0.05   -0.11   -0.17   -0.23   -0.31   -0.41   -0.46   -0.41   -0.24    0.05    0.37    0.63    0.77    0.84    0.90    1.04    1.18
+   155.0    0.00    0.00   -0.04   -0.08   -0.13   -0.19   -0.27   -0.37   -0.43   -0.40   -0.23    0.05    0.36    0.63    0.78    0.87    0.98    1.19    1.42
+   160.0    0.00    0.01   -0.02   -0.06   -0.09   -0.15   -0.24   -0.35   -0.42   -0.40   -0.24    0.03    0.33    0.59    0.75    0.85    1.00    1.26    1.59
+   165.0    0.00    0.01   -0.01   -0.04   -0.07   -0.14   -0.23   -0.35   -0.43   -0.42   -0.27   -0.01    0.28    0.52    0.68    0.78    0.94    1.25    1.67
+   170.0    0.00    0.02    0.00   -0.02   -0.06   -0.13   -0.24   -0.36   -0.45   -0.45   -0.31   -0.07    0.21    0.44    0.58    0.67    0.83    1.16    1.67
+   175.0    0.00    0.02    0.01   -0.01   -0.05   -0.13   -0.25   -0.39   -0.48   -0.48   -0.36   -0.13    0.14    0.35    0.46    0.53    0.67    1.01    1.60
+   180.0    0.00    0.03    0.02    0.00   -0.05   -0.14   -0.27   -0.41   -0.52   -0.53   -0.41   -0.19    0.06    0.25    0.34    0.38    0.48    0.81    1.46
+   185.0    0.00    0.03    0.03    0.00   -0.05   -0.15   -0.29   -0.45   -0.56   -0.57   -0.46   -0.26   -0.02    0.15    0.22    0.22    0.29    0.59    1.29
+   190.0    0.00    0.03    0.03    0.00   -0.06   -0.17   -0.32   -0.48   -0.60   -0.62   -0.52   -0.32   -0.10    0.05    0.10    0.08    0.10    0.37    1.09
+   195.0    0.00    0.04    0.03    0.00   -0.07   -0.18   -0.34   -0.50   -0.63   -0.66   -0.57   -0.39   -0.19   -0.04    0.00   -0.05   -0.07    0.17    0.89
+   200.0    0.00    0.04    0.03    0.00   -0.07   -0.19   -0.35   -0.52   -0.66   -0.70   -0.63   -0.47   -0.27   -0.13   -0.10   -0.16   -0.20   -0.01    0.70
+   205.0    0.00    0.04    0.03    0.00   -0.08   -0.20   -0.36   -0.54   -0.68   -0.74   -0.69   -0.55   -0.37   -0.23   -0.19   -0.25   -0.30   -0.13    0.53
+   210.0    0.00    0.04    0.03   -0.01   -0.09   -0.21   -0.37   -0.55   -0.70   -0.78   -0.75   -0.63   -0.46   -0.33   -0.28   -0.32   -0.37   -0.22    0.40
+   215.0    0.00    0.04    0.03   -0.01   -0.09   -0.21   -0.37   -0.55   -0.72   -0.82   -0.81   -0.72   -0.56   -0.42   -0.36   -0.37   -0.40   -0.26    0.29
+   220.0    0.00    0.04    0.02   -0.02   -0.10   -0.22   -0.38   -0.56   -0.74   -0.85   -0.88   -0.81   -0.67   -0.52   -0.43   -0.41   -0.40   -0.26    0.22
+   225.0    0.00    0.03    0.02   -0.03   -0.11   -0.23   -0.39   -0.57   -0.76   -0.89   -0.94   -0.89   -0.76   -0.61   -0.49   -0.43   -0.38   -0.24    0.17
+   230.0    0.00    0.03    0.01   -0.04   -0.12   -0.24   -0.40   -0.59   -0.78   -0.93   -1.00   -0.97   -0.85   -0.69   -0.55   -0.45   -0.35   -0.19    0.14
+   235.0    0.00    0.03    0.00   -0.06   -0.14   -0.26   -0.42   -0.61   -0.81   -0.97   -1.05   -1.03   -0.91   -0.75   -0.59   -0.45   -0.31   -0.13    0.14
+   240.0    0.00    0.02   -0.01   -0.07   -0.16   -0.29   -0.45   -0.64   -0.85   -1.01   -1.09   -1.06   -0.95   -0.79   -0.62   -0.45   -0.27   -0.06    0.16
+   245.0    0.00    0.02   -0.02   -0.09   -0.19   -0.32   -0.48   -0.68   -0.88   -1.03   -1.11   -1.08   -0.96   -0.80   -0.62   -0.43   -0.22    0.02    0.20
+   250.0    0.00    0.02   -0.03   -0.11   -0.22   -0.36   -0.52   -0.72   -0.91   -1.05   -1.10   -1.06   -0.94   -0.78   -0.60   -0.41   -0.17    0.10    0.27
+   255.0    0.00    0.01   -0.04   -0.14   -0.25   -0.40   -0.57   -0.76   -0.93   -1.05   -1.08   -1.02   -0.89   -0.73   -0.56   -0.37   -0.12    0.18    0.36
+   260.0    0.00    0.00   -0.06   -0.16   -0.29   -0.44   -0.61   -0.79   -0.94   -1.04   -1.04   -0.95   -0.81   -0.66   -0.50   -0.32   -0.06    0.26    0.48
+   265.0    0.00    0.00   -0.07   -0.19   -0.33   -0.48   -0.65   -0.81   -0.94   -1.00   -0.97   -0.86   -0.71   -0.57   -0.43   -0.26    0.00    0.36    0.62
+   270.0    0.00   -0.01   -0.09   -0.21   -0.36   -0.52   -0.68   -0.83   -0.93   -0.95   -0.89   -0.76   -0.61   -0.47   -0.34   -0.19    0.07    0.45    0.79
+   275.0    0.00   -0.01   -0.10   -0.24   -0.40   -0.56   -0.71   -0.83   -0.89   -0.89   -0.80   -0.66   -0.50   -0.37   -0.26   -0.11    0.15    0.55    0.97
+   280.0    0.00   -0.02   -0.12   -0.26   -0.43   -0.58   -0.72   -0.81   -0.85   -0.81   -0.71   -0.56   -0.40   -0.27   -0.17   -0.03    0.23    0.66    1.16
+   285.0    0.00   -0.02   -0.13   -0.28   -0.45   -0.61   -0.72   -0.78   -0.79   -0.73   -0.61   -0.47   -0.32   -0.20   -0.09    0.05    0.31    0.76    1.35
+   290.0    0.00   -0.03   -0.14   -0.31   -0.48   -0.62   -0.71   -0.74   -0.72   -0.64   -0.53   -0.40   -0.26   -0.14   -0.02    0.14    0.40    0.86    1.53
+   295.0    0.00   -0.03   -0.15   -0.32   -0.50   -0.63   -0.70   -0.70   -0.65   -0.56   -0.46   -0.34   -0.22   -0.09    0.04    0.22    0.49    0.95    1.68
+   300.0    0.00   -0.04   -0.17   -0.34   -0.51   -0.63   -0.68   -0.65   -0.58   -0.49   -0.40   -0.31   -0.21   -0.07    0.09    0.29    0.57    1.03    1.81
+   305.0    0.00   -0.05   -0.18   -0.36   -0.53   -0.63   -0.65   -0.60   -0.51   -0.43   -0.36   -0.30   -0.21   -0.06    0.13    0.36    0.64    1.08    1.90
+   310.0    0.00   -0.05   -0.19   -0.37   -0.54   -0.63   -0.63   -0.56   -0.46   -0.38   -0.34   -0.30   -0.22   -0.07    0.16    0.42    0.70    1.12    1.96
+   315.0    0.00   -0.05   -0.19   -0.38   -0.55   -0.63   -0.62   -0.53   -0.42   -0.35   -0.32   -0.31   -0.25   -0.08    0.18    0.46    0.75    1.14    1.98
+   320.0    0.00   -0.06   -0.20   -0.39   -0.55   -0.64   -0.61   -0.50   -0.39   -0.32   -0.32   -0.33   -0.27   -0.10    0.18    0.49    0.77    1.14    1.97
+   325.0    0.00   -0.06   -0.21   -0.40   -0.56   -0.64   -0.61   -0.50   -0.38   -0.32   -0.32   -0.35   -0.30   -0.12    0.18    0.50    0.78    1.11    1.92
+   330.0    0.00   -0.07   -0.21   -0.41   -0.57   -0.65   -0.61   -0.50   -0.38   -0.32   -0.33   -0.36   -0.32   -0.14    0.16    0.49    0.75    1.06    1.85
+   335.0    0.00   -0.07   -0.22   -0.41   -0.58   -0.66   -0.63   -0.51   -0.39   -0.32   -0.33   -0.37   -0.34   -0.16    0.13    0.45    0.71    1.00    1.76
+   340.0    0.00   -0.07   -0.22   -0.42   -0.59   -0.68   -0.65   -0.54   -0.40   -0.33   -0.33   -0.37   -0.34   -0.19    0.08    0.38    0.63    0.91    1.64
+   345.0    0.00   -0.08   -0.23   -0.43   -0.61   -0.70   -0.68   -0.57   -0.43   -0.34   -0.33   -0.36   -0.35   -0.22    0.02    0.29    0.54    0.81    1.51
+   350.0    0.00   -0.08   -0.23   -0.43   -0.62   -0.72   -0.71   -0.60   -0.45   -0.34   -0.32   -0.34   -0.34   -0.26   -0.06    0.19    0.42    0.70    1.36
+   355.0    0.00   -0.08   -0.24   -0.44   -0.63   -0.74   -0.74   -0.63   -0.48   -0.35   -0.30   -0.32   -0.34   -0.29   -0.15    0.06    0.30    0.59    1.19
+   360.0    0.00   -0.09   -0.24   -0.44   -0.64   -0.77   -0.78   -0.67   -0.50   -0.36   -0.28   -0.29   -0.33   -0.33   -0.24   -0.06    0.17    0.47    1.02
+   G02                                                      END OF FREQUENCY    
+   R01                                                      START OF FREQUENCY  
+      1.35      0.30     66.76                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.02   -0.09   -0.19   -0.28   -0.36   -0.43   -0.53   -0.70   -0.92   -1.17   -1.38   -1.45   -1.28   -0.87   -0.30    0.26    0.59    0.51
+     0.0    0.00    0.04   -0.04   -0.24   -0.51   -0.76   -0.93   -1.05   -1.18   -1.40   -1.74   -2.12   -2.37   -2.35   -2.00   -1.49   -1.05   -0.84   -0.67
+     5.0    0.00    0.04   -0.03   -0.23   -0.49   -0.74   -0.92   -1.05   -1.17   -1.37   -1.68   -2.02   -2.26   -2.25   -1.95   -1.50   -1.09   -0.88   -0.68
+    10.0    0.00    0.04   -0.03   -0.21   -0.48   -0.73   -0.91   -1.04   -1.16   -1.34   -1.61   -1.90   -2.10   -2.10   -1.83   -1.42   -1.05   -0.83   -0.67
+    15.0    0.00    0.03   -0.03   -0.21   -0.47   -0.71   -0.90   -1.03   -1.16   -1.31   -1.53   -1.78   -1.94   -1.91   -1.65   -1.26   -0.89   -0.72   -0.61
+    20.0    0.00    0.03   -0.04   -0.21   -0.45   -0.69   -0.89   -1.02   -1.15   -1.29   -1.48   -1.66   -1.77   -1.70   -1.43   -1.01   -0.67   -0.50   -0.51
+    25.0    0.00    0.02   -0.04   -0.21   -0.44   -0.67   -0.87   -1.00   -1.12   -1.25   -1.40   -1.55   -1.60   -1.48   -1.17   -0.75   -0.36   -0.22   -0.31
+    30.0    0.00    0.02   -0.05   -0.21   -0.43   -0.65   -0.83   -0.97   -1.08   -1.21   -1.35   -1.45   -1.46   -1.30   -0.93   -0.45   -0.03    0.13   -0.07
+    35.0    0.00    0.01   -0.05   -0.21   -0.42   -0.62   -0.79   -0.94   -1.05   -1.17   -1.29   -1.38   -1.36   -1.16   -0.73   -0.19    0.28    0.48    0.22
+    40.0    0.00    0.01   -0.06   -0.21   -0.40   -0.59   -0.75   -0.87   -0.98   -1.10   -1.23   -1.33   -1.29   -1.06   -0.59    0.01    0.57    0.83    0.54
+    45.0    0.00    0.01   -0.07   -0.21   -0.39   -0.56   -0.70   -0.81   -0.91   -1.05   -1.18   -1.29   -1.27   -1.03   -0.54    0.13    0.78    1.11    0.86
+    50.0    0.00   -0.01   -0.08   -0.20   -0.37   -0.52   -0.64   -0.75   -0.83   -0.96   -1.13   -1.27   -1.28   -1.06   -0.57    0.16    0.91    1.34    1.13
+    55.0    0.00   -0.01   -0.09   -0.22   -0.36   -0.50   -0.57   -0.65   -0.74   -0.88   -1.08   -1.26   -1.31   -1.15   -0.66    0.10    0.92    1.46    1.32
+    60.0    0.00   -0.01   -0.09   -0.22   -0.34   -0.45   -0.52   -0.57   -0.65   -0.79   -1.02   -1.25   -1.37   -1.26   -0.81   -0.05    0.85    1.49    1.42
+    65.0    0.00   -0.02   -0.10   -0.22   -0.32   -0.41   -0.45   -0.47   -0.55   -0.70   -0.94   -1.23   -1.43   -1.39   -0.98   -0.22    0.70    1.41    1.41
+    70.0    0.00   -0.02   -0.11   -0.22   -0.30   -0.36   -0.37   -0.39   -0.43   -0.60   -0.87   -1.21   -1.47   -1.49   -1.16   -0.43    0.50    1.24    1.30
+    75.0    0.00   -0.03   -0.12   -0.22   -0.28   -0.32   -0.30   -0.29   -0.34   -0.48   -0.78   -1.16   -1.48   -1.56   -1.29   -0.61    0.30    1.05    1.12
+    80.0    0.00   -0.04   -0.12   -0.21   -0.25   -0.25   -0.23   -0.20   -0.23   -0.39   -0.70   -1.10   -1.45   -1.58   -1.36   -0.74    0.11    0.84    0.90
+    85.0    0.00   -0.04   -0.13   -0.19   -0.22   -0.20   -0.14   -0.10   -0.14   -0.30   -0.60   -1.00   -1.37   -1.54   -1.36   -0.80   -0.01    0.66    0.70
+    90.0    0.00   -0.05   -0.14   -0.19   -0.19   -0.15   -0.07   -0.01   -0.03   -0.19   -0.50   -0.89   -1.25   -1.43   -1.29   -0.78   -0.06    0.55    0.55
+    95.0    0.00   -0.05   -0.13   -0.18   -0.15   -0.08    0.39    0.06    0.04   -0.11   -0.41   -0.76   -1.09   -1.25   -1.11   -0.68   -0.03    0.52    0.51
+   100.0    0.00   -0.06   -0.14   -0.15   -0.11   -0.02    0.09    0.15    0.11   -0.04   -0.31   -0.63   -0.91   -1.02   -0.90   -0.49    0.09    0.59    0.59
+   105.0    0.00   -0.06   -0.14   -0.13   -0.07    0.05    0.17    0.23    0.18    0.03   -0.21   -0.49   -0.70   -0.77   -0.62   -0.25    0.28    0.76    0.81
+   110.0    0.00   -0.08   -0.13   -0.11   -0.02    0.11    0.24    0.29    0.24    0.07   -0.13   -0.34   -0.50   -0.51   -0.34    0.03    0.53    1.01    1.15
+   115.0    0.00   -0.08   -0.14   -0.09    0.03    0.18    0.31    0.35    0.27    0.12   -0.07   -0.21   -0.29   -0.24   -0.06    0.32    0.81    1.32    1.58
+   120.0    0.00   -0.10   -0.14   -0.08    0.06    0.24    0.36    0.40    0.31    0.15   -0.01   -0.11   -0.11   -0.01    0.22    0.58    1.09    1.67    2.06
+   125.0    0.00   -0.10   -0.13   -0.07    0.09    0.28    0.42    0.44    0.33    0.18    0.03   -0.02    0.03    0.19    0.44    0.83    1.36    2.00    2.53
+   130.0    0.00   -0.10   -0.14   -0.06    0.12    0.32    0.46    0.46    0.35    0.17    0.06    0.05    0.14    0.35    0.64    1.02    1.60    2.28    2.90
+   135.0    0.00   -0.10   -0.14   -0.05    0.14    0.34    0.48    0.48    0.34    0.18    0.07    0.07    0.22    0.45    0.76    1.19    1.79    2.52    3.16
+   140.0    0.00   -0.11   -0.15   -0.05    0.14    0.36    0.49    0.47    0.34    0.16    0.05    0.08    0.24    0.50    0.84    1.30    1.92    2.67    3.25
+   145.0    0.00   -0.11   -0.15   -0.06    0.13    0.35    0.48    0.47    0.32    0.14    0.04    0.07    0.24    0.51    0.88    1.36    2.00    2.73    3.18
+   150.0    0.00   -0.11   -0.16   -0.07    0.12    0.33    0.46    0.44    0.29    0.11    0.19    0.03    0.21    0.49    0.87    1.39    2.04    2.70    2.93
+   155.0    0.00   -0.11   -0.16   -0.09    0.09    0.30    0.42    0.40    0.24    0.06   -0.05   -0.03    0.14    0.42    0.84    1.38    2.03    2.59    2.54
+   160.0    0.00   -0.12   -0.16   -0.11    0.06    0.25    0.36    0.34    0.19    0.01   -0.11   -0.10    0.05    0.33    0.78    1.34    1.99    2.42    2.05
+   165.0    0.00   -0.12   -0.18   -0.13    0.02    0.18    0.28    0.25    0.13   -0.05   -0.18   -0.19   -0.06    0.24    0.69    1.27    1.89    2.21    1.53
+   170.0    0.00   -0.11   -0.18   -0.15   -0.03    0.11    0.20    0.17    0.04   -0.12   -0.25   -0.28   -0.18    0.10    0.57    1.18    1.78    1.96    1.05
+   175.0    0.00   -0.11   -0.19   -0.19   -0.08    0.04    0.11    0.08   -0.04   -0.21   -0.35   -0.39   -0.31   -0.04    0.42    1.04    1.61    1.72    0.63
+   180.0    0.00   -0.12   -0.20   -0.21   -0.14   -0.04    0.01   -0.02   -0.14   -0.30   -0.44   -0.51   -0.45   -0.19    0.26    0.88    1.43    1.47    0.33
+   185.0    0.00   -0.11   -0.21   -0.23   -0.19   -0.12   -0.08   -0.11   -0.23   -0.39   -0.54   -0.62   -0.59   -0.36    0.08    0.68    1.22    1.26    0.17
+   190.0    0.00   -0.11   -0.20   -0.25   -0.24   -0.20   -0.17   -0.21   -0.33   -0.49   -0.65   -0.75   -0.73   -0.52   -0.12    0.45    0.99    1.08    0.15
+   195.0    0.00   -0.10   -0.20   -0.26   -0.28   -0.26   -0.25   -0.29   -0.42   -0.58   -0.74   -0.86   -0.87   -0.71   -0.33    0.23    0.75    0.92    0.23
+   200.0    0.00   -0.09   -0.20   -0.28   -0.30   -0.30   -0.32   -0.38   -0.51   -0.68   -0.86   -0.99   -1.03   -0.88   -0.53   -0.02    0.52    0.79    0.43
+   205.0    0.00   -0.09   -0.20   -0.27   -0.32   -0.34   -0.37   -0.45   -0.58   -0.77   -0.96   -1.12   -1.17   -1.05   -0.73   -0.24    0.30    0.68    0.66
+   210.0    0.00   -0.08   -0.19   -0.28   -0.33   -0.36   -0.42   -0.50   -0.65   -0.86   -1.07   -1.24   -1.31   -1.21   -0.92   -0.44    0.12    0.61    0.88
+   215.0    0.00   -0.08   -0.19   -0.27   -0.33   -0.37   -0.43   -0.55   -0.71   -0.93   -1.18   -1.37   -1.44   -1.36   -1.07   -0.60   -0.02    0.56    1.08
+   220.0    0.00   -0.07   -0.16   -0.26   -0.31   -0.38   -0.44   -0.58   -0.77   -1.01   -1.27   -1.49   -1.58   -1.49   -1.18   -0.71   -0.11    0.53    1.20
+   225.0    0.00   -0.06   -0.15   -0.24   -0.31   -0.37   -0.44   -0.59   -0.81   -1.08   -1.38   -1.61   -1.69   -1.59   -1.28   -0.77   -0.16    0.53    1.24
+   230.0    0.00   -0.05   -0.13   -0.22   -0.29   -0.36   -0.44   -0.60   -0.84   -1.14   -1.46   -1.71   -1.82   -1.70   -1.34   -0.80   -0.15    0.52    1.18
+   235.0    0.00   -0.04   -0.12   -0.20   -0.27   -0.35   -0.44   -0.62   -0.87   -1.20   -1.56   -1.82   -1.91   -1.77   -1.38   -0.80   -0.12    0.52    1.05
+   240.0    0.00   -0.03   -0.11   -0.18   -0.25   -0.33   -0.44   -0.63   -0.91   -1.26   -1.63   -1.91   -2.00   -1.85   -1.42   -0.77   -0.07    0.52    0.84
+   245.0    0.00   -0.03   -0.09   -0.17   -0.24   -0.32   -0.44   -0.65   -0.95   -1.31   -1.70   -2.00   -2.11   -1.93   -1.45   -0.77   -0.03    0.50    0.59
+   250.0    0.00   -0.02   -0.08   -0.15   -0.24   -0.33   -0.46   -0.68   -0.99   -1.37   -1.77   -2.08   -2.18   -1.99   -1.50   -0.76   -0.01    0.45    0.32
+   255.0    0.00   -0.01   -0.07   -0.15   -0.23   -0.35   -0.49   -0.73   -1.04   -1.43   -1.83   -2.14   -2.26   -2.07   -1.54   -0.80   -0.04    0.37    0.05
+   260.0    0.00    0.04   -0.06   -0.14   -0.23   -0.37   -0.56   -0.79   -1.11   -1.50   -1.89   -2.20   -2.32   -2.13   -1.62   -0.85   -0.11    0.27   -0.20
+   265.0    0.00    0.04   -0.04   -0.14   -0.27   -0.42   -0.61   -0.85   -1.18   -1.55   -1.93   -2.24   -2.36   -2.18   -1.68   -0.94   -0.22    0.10   -0.44
+   270.0    0.00    0.01   -0.04   -0.14   -0.30   -0.47   -0.68   -0.94   -1.24   -1.61   -1.98   -2.28   -2.39   -2.23   -1.75   -1.05   -0.35   -0.07   -0.64
+   275.0    0.00    0.01   -0.04   -0.15   -0.32   -0.53   -0.77   -1.02   -1.33   -1.67   -2.01   -2.30   -2.40   -2.25   -1.80   -1.14   -0.51   -0.26   -0.82
+   280.0    0.00    0.02   -0.02   -0.16   -0.35   -0.60   -0.84   -1.11   -1.39   -1.72   -2.04   -2.31   -2.41   -2.25   -1.82   -1.21   -0.65   -0.45   -0.96
+   285.0    0.00    0.02   -0.03   -0.18   -0.39   -0.65   -0.91   -1.18   -1.46   -1.77   -2.08   -2.31   -2.40   -2.23   -1.82   -1.25   -0.77   -0.62   -1.11
+   290.0    0.00    0.03   -0.03   -0.19   -0.44   -0.70   -0.98   -1.26   -1.51   -1.81   -2.09   -2.31   -2.38   -2.20   -1.78   -1.25   -0.83   -0.77   -1.22
+   295.0    0.00    0.03   -0.02   -0.21   -0.47   -0.76   -1.04   -1.30   -1.56   -1.83   -2.11   -2.31   -2.34   -2.13   -1.70   -1.18   -0.84   -0.87   -1.31
+   300.0    0.00    0.04   -0.03   -0.21   -0.50   -0.81   -1.09   -1.33   -1.57   -1.84   -2.13   -2.31   -2.32   -2.06   -1.59   -1.07   -0.79   -0.91   -1.38
+   305.0    0.00    0.04   -0.04   -0.23   -0.53   -0.84   -1.12   -1.34   -1.57   -1.85   -2.12   -2.32   -2.30   -2.00   -1.47   -0.94   -0.69   -0.90   -1.42
+   310.0    0.00    0.05   -0.03   -0.24   -0.54   -0.86   -1.12   -1.34   -1.57   -1.83   -2.12   -2.32   -2.29   -1.96   -1.37   -0.80   -0.57   -0.84   -1.42
+   315.0    0.00    0.05   -0.04   -0.25   -0.55   -0.87   -1.12   -1.32   -1.53   -1.80   -2.10   -2.34   -2.31   -1.93   -1.28   -0.67   -0.43   -0.77   -1.38
+   320.0    0.00    0.04   -0.03   -0.26   -0.58   -0.87   -1.10   -1.29   -1.48   -1.77   -2.10   -2.35   -2.33   -1.94   -1.25   -0.58   -0.32   -0.66   -1.30
+   325.0    0.00    0.05   -0.04   -0.26   -0.57   -0.86   -1.09   -1.24   -1.44   -1.72   -2.08   -2.36   -2.37   -1.97   -1.26   -0.56   -0.25   -0.57   -1.20
+   330.0    0.00    0.05   -0.03   -0.27   -0.58   -0.85   -1.05   -1.20   -1.38   -1.67   -2.04   -2.37   -2.42   -2.05   -1.33   -0.58   -0.24   -0.52   -1.07
+   335.0    0.00    0.05   -0.04   -0.27   -0.57   -0.83   -1.03   -1.15   -1.33   -1.63   -2.02   -2.38   -2.47   -2.14   -1.44   -0.70   -0.29   -0.50   -0.93
+   340.0    0.00    0.05   -0.03   -0.26   -0.56   -0.82   -1.00   -1.12   -1.28   -1.56   -1.98   -2.36   -2.51   -2.23   -1.59   -0.85   -0.42   -0.52   -0.83
+   345.0    0.00    0.04   -0.03   -0.26   -0.55   -0.80   -0.98   -1.10   -1.25   -1.52   -1.93   -2.33   -2.51   -2.32   -1.74   -1.05   -0.58   -0.59   -0.75
+   350.0    0.00    0.05   -0.03   -0.25   -0.53   -0.79   -0.97   -1.07   -1.20   -1.47   -1.87   -2.28   -2.51   -2.38   -1.88   -1.23   -0.77   -0.68   -0.70
+   355.0    0.00    0.05   -0.03   -0.25   -0.52   -0.77   -0.94   -1.06   -1.19   -1.43   -1.81   -2.22   -2.46   -2.39   -1.97   -1.39   -0.93   -0.78   -0.67
+   360.0    0.00    0.04   -0.04   -0.24   -0.51   -0.76   -0.93   -1.05   -1.18   -1.40   -1.74   -2.12   -2.37   -2.35   -2.00   -1.49   -1.05   -0.84   -0.67
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+      0.00      0.13     66.08                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.04   -0.14   -0.27   -0.38   -0.47   -0.53   -0.56   -0.58   -0.59   -0.57   -0.54   -0.48   -0.46   -0.47   -0.46   -0.31    0.25    1.49
+     0.0    0.00   -0.06   -0.17   -0.33   -0.46   -0.50   -0.43   -0.25   -0.04    0.10    0.16    0.09   -0.07   -0.28   -0.46   -0.52   -0.27    0.56    2.43
+     5.0    0.00   -0.07   -0.19   -0.35   -0.49   -0.54   -0.49   -0.34   -0.13    0.04    0.14    0.12   -0.03   -0.27   -0.52   -0.64   -0.43    0.44    2.36
+    10.0    0.00   -0.07   -0.21   -0.38   -0.52   -0.59   -0.56   -0.42   -0.23   -0.03    0.11    0.14    0.02   -0.22   -0.51   -0.68   -0.50    0.39    2.31
+    15.0    0.00   -0.08   -0.22   -0.40   -0.55   -0.66   -0.64   -0.53   -0.32   -0.11    0.08    0.16    0.09   -0.14   -0.44   -0.63   -0.47    0.40    2.26
+    20.0    0.00   -0.09   -0.25   -0.43   -0.61   -0.72   -0.73   -0.63   -0.43   -0.18    0.04    0.18    0.17   -0.02   -0.30   -0.52   -0.37    0.44    2.20
+    25.0    0.00   -0.10   -0.26   -0.46   -0.65   -0.78   -0.82   -0.73   -0.54   -0.28   -0.01    0.19    0.24    0.11   -0.14   -0.33   -0.23    0.52    2.13
+    30.0    0.00   -0.11   -0.28   -0.49   -0.71   -0.86   -0.91   -0.84   -0.66   -0.37   -0.08    0.19    0.30    0.24    0.05   -0.14   -0.06    0.60    2.03
+    35.0    0.00   -0.11   -0.29   -0.53   -0.75   -0.94   -1.01   -0.96   -0.76   -0.47   -0.14    0.16    0.34    0.35    0.21    0.04    0.09    0.64    1.90
+    40.0    0.00   -0.12   -0.32   -0.57   -0.81   -1.01   -1.10   -1.06   -0.87   -0.57   -0.22    0.12    0.34    0.42    0.32    0.18    0.20    0.64    1.73
+    45.0    0.00   -0.12   -0.34   -0.60   -0.87   -1.08   -1.18   -1.14   -0.96   -0.65   -0.30    0.05    0.30    0.41    0.37    0.24    0.24    0.59    1.55
+    50.0    0.00   -0.13   -0.35   -0.64   -0.92   -1.14   -1.24   -1.21   -1.02   -0.73   -0.39   -0.05    0.22    0.35    0.33    0.22    0.20    0.50    1.33
+    55.0    0.00   -0.14   -0.37   -0.66   -0.96   -1.19   -1.31   -1.26   -1.07   -0.80   -0.47   -0.16    0.09    0.22    0.21    0.12    0.10    0.35    1.12
+    60.0    0.00   -0.14   -0.38   -0.69   -0.99   -1.23   -1.34   -1.29   -1.11   -0.83   -0.54   -0.28   -0.09    0.01    0.02   -0.04   -0.06    0.17    0.90
+    65.0    0.00   -0.14   -0.39   -0.70   -1.02   -1.25   -1.34   -1.29   -1.10   -0.86   -0.62   -0.42   -0.28   -0.22   -0.21   -0.25   -0.24   -0.01    0.69
+    70.0    0.00   -0.14   -0.40   -0.71   -1.03   -1.25   -1.34   -1.26   -1.08   -0.87   -0.69   -0.57   -0.50   -0.49   -0.49   -0.50   -0.44   -0.18    0.52
+    75.0    0.00   -0.15   -0.40   -0.70   -1.01   -1.23   -1.30   -1.23   -1.05   -0.88   -0.75   -0.71   -0.72   -0.73   -0.73   -0.71   -0.61   -0.31    0.39
+    80.0    0.00   -0.15   -0.40   -0.70   -1.00   -1.19   -1.25   -1.16   -1.01   -0.87   -0.81   -0.85   -0.91   -0.96   -0.96   -0.89   -0.73   -0.39    0.32
+    85.0    0.00   -0.15   -0.39   -0.69   -0.97   -1.15   -1.19   -1.11   -0.97   -0.87   -0.87   -0.95   -1.06   -1.13   -1.12   -1.00   -0.80   -0.41    0.30
+    90.0    0.00   -0.15   -0.38   -0.66   -0.92   -1.08   -1.11   -1.04   -0.92   -0.86   -0.90   -1.03   -1.16   -1.24   -1.20   -1.05   -0.80   -0.39    0.34
+    95.0    0.00   -0.15   -0.36   -0.63   -0.86   -1.01   -1.04   -0.97   -0.89   -0.86   -0.93   -1.07   -1.21   -1.27   -1.21   -1.03   -0.76   -0.33    0.43
+   100.0    0.00   -0.14   -0.35   -0.58   -0.80   -0.92   -0.95   -0.91   -0.86   -0.86   -0.95   -1.07   -1.19   -1.22   -1.13   -0.95   -0.67   -0.24    0.55
+   105.0    0.00   -0.14   -0.32   -0.54   -0.72   -0.83   -0.86   -0.86   -0.84   -0.86   -0.95   -1.05   -1.11   -1.10   -1.00   -0.82   -0.57   -0.12    0.70
+   110.0    0.00   -0.13   -0.31   -0.50   -0.65   -0.75   -0.78   -0.80   -0.82   -0.87   -0.93   -0.99   -0.99   -0.93   -0.82   -0.68   -0.46   -0.01    0.85
+   115.0    0.00   -0.12   -0.29   -0.44   -0.57   -0.65   -0.70   -0.75   -0.81   -0.86   -0.90   -0.89   -0.84   -0.74   -0.63   -0.53   -0.35    0.08    1.00
+   120.0    0.00   -0.11   -0.25   -0.40   -0.49   -0.56   -0.63   -0.70   -0.78   -0.86   -0.86   -0.80   -0.66   -0.53   -0.45   -0.40   -0.28    0.15    1.12
+   125.0    0.00   -0.11   -0.23   -0.35   -0.43   -0.48   -0.54   -0.64   -0.76   -0.84   -0.81   -0.69   -0.51   -0.35   -0.29   -0.29   -0.22    0.21    1.21
+   130.0    0.00   -0.10   -0.21   -0.31   -0.36   -0.39   -0.47   -0.59   -0.72   -0.80   -0.75   -0.59   -0.36   -0.20   -0.16   -0.22   -0.18    0.25    1.26
+   135.0    0.00   -0.09   -0.19   -0.26   -0.29   -0.32   -0.40   -0.53   -0.67   -0.75   -0.69   -0.51   -0.27   -0.10   -0.09   -0.19   -0.16    0.27    1.27
+   140.0    0.00   -0.08   -0.16   -0.22   -0.24   -0.26   -0.33   -0.47   -0.61   -0.70   -0.64   -0.45   -0.21   -0.06   -0.07   -0.17   -0.13    0.31    1.25
+   145.0    0.00   -0.07   -0.15   -0.19   -0.20   -0.22   -0.27   -0.41   -0.56   -0.65   -0.59   -0.41   -0.20   -0.07   -0.08   -0.17   -0.11    0.34    1.22
+   150.0    0.00   -0.07   -0.13   -0.18   -0.18   -0.18   -0.23   -0.37   -0.51   -0.59   -0.57   -0.42   -0.24   -0.13   -0.15   -0.19   -0.09    0.38    1.18
+   155.0    0.00   -0.06   -0.13   -0.15   -0.16   -0.17   -0.21   -0.33   -0.47   -0.57   -0.56   -0.45   -0.32   -0.22   -0.24   -0.23   -0.07    0.42    1.15
+   160.0    0.00   -0.04   -0.11   -0.15   -0.15   -0.15   -0.20   -0.31   -0.45   -0.55   -0.57   -0.51   -0.41   -0.34   -0.32   -0.28   -0.04    0.47    1.13
+   165.0    0.00   -0.04   -0.10   -0.14   -0.15   -0.18   -0.22   -0.33   -0.46   -0.57   -0.62   -0.58   -0.52   -0.48   -0.44   -0.34   -0.05    0.49    1.14
+   170.0    0.00   -0.03   -0.10   -0.14   -0.16   -0.20   -0.25   -0.36   -0.49   -0.61   -0.67   -0.68   -0.65   -0.61   -0.55   -0.41   -0.08    0.48    1.18
+   175.0    0.00   -0.02   -0.09   -0.14   -0.18   -0.23   -0.30   -0.42   -0.54   -0.66   -0.76   -0.79   -0.76   -0.72   -0.67   -0.52   -0.17    0.44    1.23
+   180.0    0.00   -0.01   -0.07   -0.13   -0.20   -0.27   -0.36   -0.47   -0.62   -0.75   -0.84   -0.88   -0.87   -0.85   -0.79   -0.64   -0.31    0.32    1.30
+   185.0    0.00   -0.01   -0.06   -0.13   -0.20   -0.30   -0.41   -0.55   -0.70   -0.83   -0.93   -0.98   -0.97   -0.95   -0.91   -0.81   -0.51    0.16    1.37
+   190.0    0.00   -0.03   -0.05   -0.13   -0.21   -0.33   -0.46   -0.62   -0.78   -0.93   -1.03   -1.06   -1.05   -1.05   -1.04   -0.99   -0.75   -0.06    1.41
+   195.0    0.00    0.02   -0.04   -0.11   -0.22   -0.33   -0.49   -0.66   -0.85   -1.01   -1.11   -1.14   -1.13   -1.12   -1.16   -1.19   -1.03   -0.31    1.42
+   200.0    0.00    0.03   -0.02   -0.10   -0.20   -0.33   -0.49   -0.69   -0.90   -1.08   -1.18   -1.21   -1.19   -1.20   -1.28   -1.39   -1.30   -0.59    1.37
+   205.0    0.00    0.03   -0.01   -0.07   -0.17   -0.30   -0.47   -0.69   -0.92   -1.12   -1.24   -1.28   -1.26   -1.28   -1.40   -1.57   -1.57   -0.84    1.27
+   210.0    0.00    0.04    0.02   -0.05   -0.13   -0.25   -0.43   -0.66   -0.91   -1.14   -1.28   -1.32   -1.31   -1.35   -1.49   -1.73   -1.78   -1.08    1.11
+   215.0    0.00    0.05    0.04    0.01   -0.08   -0.19   -0.36   -0.59   -0.88   -1.14   -1.30   -1.36   -1.35   -1.38   -1.56   -1.82   -1.91   -1.26    0.89
+   220.0    0.00    0.05    0.05    0.03   -0.02   -0.11   -0.28   -0.52   -0.82   -1.10   -1.31   -1.39   -1.40   -1.43   -1.59   -1.85   -1.95   -1.36    0.63
+   225.0    0.00    0.05    0.07    0.07    0.04   -0.03   -0.18   -0.42   -0.75   -1.06   -1.29   -1.40   -1.42   -1.43   -1.57   -1.81   -1.90   -1.40    0.36
+   230.0    0.00    0.06    0.09    0.11    0.11    0.06   -0.08   -0.33   -0.66   -1.00   -1.26   -1.40   -1.42   -1.43   -1.52   -1.71   -1.77   -1.35    0.09
+   235.0    0.00    0.07    0.10    0.13    0.16    0.13    0.01   -0.24   -0.59   -0.95   -1.23   -1.38   -1.39   -1.38   -1.43   -1.55   -1.58   -1.23   -0.14
+   240.0    0.00    0.07    0.12    0.17    0.21    0.19    0.07   -0.18   -0.54   -0.91   -1.19   -1.32   -1.33   -1.30   -1.30   -1.36   -1.34   -1.05   -0.31
+   245.0    0.00    0.08    0.13    0.18    0.23    0.22    0.12   -0.14   -0.49   -0.85   -1.13   -1.26   -1.25   -1.19   -1.15   -1.14   -1.09   -0.84   -0.40
+   250.0    0.00    0.09    0.13    0.20    0.24    0.24    0.13   -0.12   -0.47   -0.81   -1.06   -1.16   -1.13   -1.05   -0.99   -0.95   -0.85   -0.61   -0.37
+   255.0    0.00    0.08    0.14    0.19    0.24    0.23    0.11   -0.14   -0.47   -0.78   -0.98   -1.04   -0.99   -0.89   -0.82   -0.77   -0.64   -0.39   -0.25
+   260.0    0.00    0.07    0.13    0.19    0.23    0.20    0.07   -0.17   -0.47   -0.75   -0.89   -0.90   -0.81   -0.73   -0.67   -0.61   -0.46   -0.19   -0.03
+   265.0    0.00    0.08    0.13    0.16    0.19    0.15    0.01   -0.21   -0.48   -0.70   -0.79   -0.74   -0.63   -0.56   -0.53   -0.50   -0.34    0.02    0.28
+   270.0    0.00    0.07    0.12    0.15    0.15    0.09   -0.05   -0.28   -0.50   -0.66   -0.68   -0.58   -0.46   -0.38   -0.39   -0.40   -0.24    0.20    0.67
+   275.0    0.00    0.08    0.11    0.11    0.09    0.01   -0.13   -0.32   -0.50   -0.60   -0.56   -0.42   -0.28   -0.23   -0.28   -0.32   -0.15    0.37    1.11
+   280.0    0.00    0.07    0.09    0.09    0.03   -0.04   -0.19   -0.35   -0.48   -0.52   -0.45   -0.28   -0.12   -0.08   -0.17   -0.24   -0.06    0.56    1.56
+   285.0    0.00    0.07    0.08    0.05   -0.02   -0.12   -0.23   -0.35   -0.44   -0.44   -0.32   -0.14    0.01    0.04   -0.06   -0.14    0.04    0.75    2.01
+   290.0    0.00    0.06    0.06    0.31   -0.08   -0.17   -0.27   -0.34   -0.38   -0.32   -0.20   -0.03    0.11    0.13    0.05   -0.01    0.18    0.95    2.43
+   295.0    0.00    0.06    0.04   -0.03   -0.13   -0.22   -0.29   -0.32   -0.30   -0.21   -0.09    0.06    0.18    0.23    0.17    0.15    0.36    1.16    2.78
+   300.0    0.00    0.05    0.01   -0.07   -0.17   -0.25   -0.29   -0.27   -0.20   -0.11    0.40    0.12    0.22    0.28    0.29    0.32    0.58    1.38    3.06
+   305.0    0.00    0.04    0.18   -0.11   -0.22   -0.28   -0.27   -0.20   -0.10    0.43    0.08    0.16    0.24    0.32    0.40    0.51    0.80    1.57    3.26
+   310.0    0.00    0.03   -0.03   -0.13   -0.25   -0.29   -0.25   -0.14    0.46    0.09    0.14    0.17    0.24    0.34    0.50    0.70    1.02    1.75    3.38
+   315.0    0.00    0.03   -0.04   -0.17   -0.28   -0.31   -0.23   -0.08    0.08    0.17    0.19    0.17    0.20    0.34    0.57    0.84    1.21    1.88    3.42
+   320.0    0.00    0.01   -0.05   -0.19   -0.29   -0.32   -0.21   -0.02    0.15    0.24    0.21    0.16    0.16    0.31    0.59    0.94    1.31    1.94    3.39
+   325.0    0.00    0.01   -0.08   -0.22   -0.32   -0.32   -0.21    0.50    0.19    0.27    0.22    0.13    0.11    0.26    0.58    0.95    1.34    1.92    3.30
+   330.0    0.00    0.07   -0.08   -0.23   -0.33   -0.33   -0.19    0.02    0.21    0.28    0.22    0.10    0.06    0.19    0.50    0.88    1.27    1.83    3.17
+   335.0    0.00   -0.01   -0.10   -0.25   -0.35   -0.34   -0.21    0.02    0.21    0.29    0.22    0.08    0.01    0.11    0.37    0.73    1.10    1.67    3.03
+   340.0    0.00   -0.01   -0.12   -0.27   -0.37   -0.37   -0.23   -0.02    0.20    0.27    0.21    0.06   -0.03    0.01    0.21    0.50    0.85    1.45    2.88
+   345.0    0.00   -0.03   -0.13   -0.28   -0.40   -0.39   -0.27   -0.05    0.14    0.24    0.19    0.05   -0.07   -0.09    0.02    0.23    0.56    1.21    2.74
+   350.0    0.00   -0.04   -0.14   -0.29   -0.41   -0.42   -0.31   -0.11    0.09    0.21    0.18    0.06   -0.08   -0.18   -0.17   -0.05    0.24    0.96    2.62
+   355.0    0.00   -0.04   -0.17   -0.31   -0.43   -0.45   -0.36   -0.17    0.03    0.16    0.17    0.07   -0.09   -0.24   -0.33   -0.32   -0.04    0.74    2.51
+   360.0    0.00   -0.06   -0.17   -0.33   -0.46   -0.50   -0.43   -0.25   -0.04    0.10    0.16    0.09   -0.07   -0.28   -0.46   -0.52   -0.27    0.56    2.43
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+NOV750.R4       NONE                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               5    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     4                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+# Number of Calibrated Antennas:           5                COMMENT             
+# Number of Individual GPS-Calibrations:  13                COMMENT             
+# Number of Individual GLO-Calibrations:  13                COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.26     -0.16    161.30                              NORTH / EAST / UP   
+   NOAZI    0.00    0.21    0.79    1.61    2.47    3.15    3.48    3.33    2.72    1.77    0.66   -0.41   -1.30   -1.91   -2.15   -1.91   -0.99    0.84    3.66
+     0.0    0.00    0.19    0.78    1.62    2.51    3.18    3.46    3.24    2.57    1.60    0.52   -0.49   -1.33   -1.94   -2.26   -2.13   -1.31    0.41    3.07
+     5.0    0.00    0.19    0.77    1.62    2.50    3.17    3.45    3.22    2.54    1.56    0.47   -0.55   -1.40   -2.02   -2.35   -2.24   -1.44    0.28    2.99
+    10.0    0.00    0.19    0.77    1.61    2.49    3.16    3.43    3.21    2.52    1.53    0.42   -0.61   -1.47   -2.10   -2.43   -2.32   -1.53    0.21    2.98
+    15.0    0.00    0.19    0.77    1.60    2.48    3.15    3.42    3.20    2.51    1.50    0.39   -0.66   -1.52   -2.15   -2.48   -2.37   -1.56    0.21    3.03
+    20.0    0.00    0.18    0.76    1.59    2.47    3.14    3.42    3.19    2.50    1.50    0.37   -0.69   -1.56   -2.19   -2.51   -2.38   -1.54    0.27    3.15
+    25.0    0.00    0.18    0.76    1.59    2.46    3.13    3.41    3.19    2.51    1.50    0.37   -0.70   -1.59   -2.21   -2.51   -2.34   -1.46    0.39    3.32
+    30.0    0.00    0.18    0.75    1.58    2.44    3.12    3.41    3.20    2.53    1.52    0.38   -0.70   -1.59   -2.21   -2.48   -2.27   -1.33    0.57    3.53
+    35.0    0.00    0.18    0.75    1.57    2.43    3.11    3.41    3.22    2.55    1.55    0.41   -0.67   -1.57   -2.18   -2.42   -2.16   -1.17    0.78    3.76
+    40.0    0.00    0.18    0.75    1.56    2.42    3.10    3.41    3.23    2.59    1.60    0.46   -0.63   -1.53   -2.13   -2.34   -2.04   -0.99    0.99    3.97
+    45.0    0.00    0.18    0.74    1.55    2.41    3.09    3.41    3.25    2.63    1.65    0.52   -0.57   -1.47   -2.06   -2.25   -1.91   -0.82    1.19    4.16
+    50.0    0.00    0.18    0.74    1.54    2.40    3.09    3.42    3.28    2.67    1.71    0.58   -0.50   -1.40   -1.98   -2.16   -1.78   -0.67    1.36    4.29
+    55.0    0.00    0.19    0.74    1.54    2.39    3.08    3.42    3.30    2.70    1.76    0.65   -0.43   -1.32   -1.90   -2.07   -1.68   -0.56    1.46    4.37
+    60.0    0.00    0.19    0.74    1.53    2.38    3.08    3.43    3.31    2.74    1.81    0.71   -0.36   -1.25   -1.83   -1.99   -1.61   -0.50    1.50    4.38
+    65.0    0.00    0.19    0.74    1.53    2.38    3.08    3.43    3.33    2.77    1.85    0.76   -0.30   -1.18   -1.76   -1.94   -1.57   -0.49    1.48    4.33
+    70.0    0.00    0.19    0.74    1.53    2.38    3.08    3.44    3.34    2.79    1.88    0.80   -0.26   -1.13   -1.71   -1.91   -1.57   -0.53    1.40    4.24
+    75.0    0.00    0.19    0.74    1.53    2.38    3.08    3.44    3.35    2.80    1.90    0.82   -0.23   -1.10   -1.69   -1.90   -1.61   -0.61    1.28    4.11
+    80.0    0.00    0.20    0.75    1.54    2.39    3.09    3.45    3.36    2.80    1.90    0.82   -0.23   -1.10   -1.69   -1.92   -1.66   -0.72    1.14    3.97
+    85.0    0.00    0.20    0.75    1.54    2.39    3.09    3.45    3.36    2.80    1.88    0.80   -0.25   -1.12   -1.71   -1.96   -1.73   -0.83    1.00    3.85
+    90.0    0.00    0.20    0.76    1.55    2.40    3.10    3.46    3.36    2.79    1.86    0.77   -0.29   -1.16   -1.76   -2.01   -1.81   -0.93    0.88    3.75
+    95.0    0.00    0.21    0.77    1.56    2.41    3.11    3.46    3.35    2.77    1.83    0.73   -0.34   -1.21   -1.81   -2.07   -1.87   -1.01    0.80    3.70
+   100.0    0.00    0.21    0.77    1.57    2.42    3.12    3.47    3.35    2.76    1.81    0.69   -0.39   -1.27   -1.87   -2.13   -1.93   -1.06    0.77    3.70
+   105.0    0.00    0.21    0.78    1.58    2.43    3.13    3.47    3.35    2.75    1.78    0.65   -0.44   -1.33   -1.93   -2.17   -1.95   -1.06    0.78    3.75
+   110.0    0.00    0.22    0.79    1.59    2.45    3.14    3.48    3.35    2.74    1.77    0.62   -0.48   -1.37   -1.97   -2.20   -1.96   -1.04    0.84    3.84
+   115.0    0.00    0.22    0.80    1.61    2.46    3.15    3.48    3.35    2.74    1.77    0.62   -0.49   -1.40   -1.99   -2.21   -1.94   -0.98    0.94    3.97
+   120.0    0.00    0.23    0.81    1.62    2.47    3.16    3.49    3.36    2.75    1.78    0.63   -0.49   -1.40   -2.00   -2.20   -1.91   -0.90    1.05    4.09
+   125.0    0.00    0.23    0.82    1.63    2.48    3.16    3.50    3.37    2.77    1.80    0.66   -0.46   -1.37   -1.97   -2.18   -1.86   -0.82    1.16    4.21
+   130.0    0.00    0.23    0.83    1.64    2.49    3.17    3.50    3.37    2.79    1.84    0.71   -0.40   -1.32   -1.93   -2.13   -1.81   -0.75    1.25    4.29
+   135.0    0.00    0.24    0.84    1.65    2.50    3.18    3.50    3.38    2.81    1.88    0.76   -0.34   -1.26   -1.88   -2.09   -1.76   -0.70    1.31    4.33
+   140.0    0.00    0.24    0.84    1.66    2.51    3.18    3.51    3.39    2.83    1.92    0.82   -0.27   -1.19   -1.82   -2.04   -1.72   -0.67    1.31    4.30
+   145.0    0.00    0.24    0.85    1.67    2.52    3.19    3.51    3.40    2.85    1.96    0.88   -0.20   -1.12   -1.76   -2.00   -1.70   -0.68    1.26    4.20
+   150.0    0.00    0.25    0.86    1.68    2.53    3.19    3.52    3.40    2.86    1.98    0.91   -0.16   -1.07   -1.71   -1.97   -1.70   -0.73    1.16    4.03
+   155.0    0.00    0.25    0.86    1.69    2.54    3.20    3.52    3.40    2.86    1.99    0.93   -0.13   -1.05   -1.69   -1.96   -1.73   -0.81    1.01    3.81
+   160.0    0.00    0.25    0.87    1.70    2.54    3.20    3.52    3.40    2.85    1.97    0.92   -0.14   -1.05   -1.69   -1.97   -1.77   -0.91    0.82    3.55
+   165.0    0.00    0.25    0.87    1.70    2.55    3.21    3.52    3.39    2.83    1.94    0.88   -0.18   -1.08   -1.72   -2.01   -1.83   -1.03    0.62    3.27
+   170.0    0.00    0.25    0.87    1.71    2.55    3.21    3.52    3.38    2.80    1.89    0.82   -0.25   -1.14   -1.77   -2.06   -1.91   -1.16    0.41    3.00
+   175.0    0.00    0.25    0.87    1.71    2.56    3.22    3.51    3.36    2.77    1.83    0.74   -0.34   -1.23   -1.84   -2.12   -1.99   -1.29    0.21    2.75
+   180.0    0.00    0.25    0.87    1.71    2.56    3.22    3.51    3.34    2.73    1.77    0.65   -0.44   -1.32   -1.92   -2.19   -2.06   -1.40    0.04    2.55
+   185.0    0.00    0.25    0.87    1.71    2.56    3.22    3.50    3.33    2.69    1.70    0.56   -0.54   -1.42   -2.00   -2.26   -2.13   -1.49   -0.08    2.42
+   190.0    0.00    0.25    0.87    1.70    2.55    3.21    3.50    3.31    2.65    1.65    0.48   -0.62   -1.51   -2.08   -2.32   -2.19   -1.56   -0.15    2.37
+   195.0    0.00    0.25    0.86    1.69    2.55    3.21    3.49    3.30    2.63    1.61    0.43   -0.69   -1.57   -2.14   -2.37   -2.23   -1.59   -0.16    2.41
+   200.0    0.00    0.24    0.85    1.69    2.54    3.20    3.49    3.29    2.62    1.59    0.40   -0.72   -1.60   -2.17   -2.40   -2.25   -1.59   -0.12    2.52
+   205.0    0.00    0.24    0.85    1.67    2.53    3.19    3.48    3.29    2.62    1.59    0.40   -0.72   -1.61   -2.18   -2.41   -2.25   -1.55   -0.02    2.70
+   210.0    0.00    0.24    0.84    1.66    2.51    3.18    3.47    3.29    2.63    1.62    0.44   -0.68   -1.58   -2.16   -2.40   -2.22   -1.49    0.12    2.94
+   215.0    0.00    0.23    0.83    1.65    2.50    3.17    3.47    3.30    2.66    1.66    0.50   -0.62   -1.53   -2.13   -2.37   -2.18   -1.39    0.30    3.22
+   220.0    0.00    0.23    0.82    1.63    2.48    3.15    3.47    3.32    2.70    1.73    0.58   -0.54   -1.46   -2.08   -2.33   -2.13   -1.28    0.50    3.50
+   225.0    0.00    0.23    0.81    1.62    2.46    3.14    3.47    3.34    2.75    1.80    0.66   -0.45   -1.38   -2.02   -2.29   -2.07   -1.16    0.71    3.78
+   230.0    0.00    0.22    0.80    1.60    2.45    3.13    3.47    3.36    2.79    1.87    0.75   -0.36   -1.31   -1.96   -2.24   -2.00   -1.04    0.91    4.02
+   235.0    0.00    0.22    0.79    1.59    2.44    3.13    3.48    3.39    2.84    1.93    0.82   -0.29   -1.24   -1.92   -2.20   -1.94   -0.92    1.09    4.21
+   240.0    0.00    0.21    0.78    1.58    2.43    3.12    3.49    3.41    2.88    1.98    0.88   -0.24   -1.20   -1.88   -2.16   -1.88   -0.82    1.23    4.35
+   245.0    0.00    0.21    0.77    1.57    2.42    3.12    3.49    3.43    2.90    2.01    0.91   -0.21   -1.18   -1.87   -2.14   -1.84   -0.75    1.33    4.41
+   250.0    0.00    0.21    0.77    1.56    2.41    3.12    3.50    3.44    2.92    2.02    0.92   -0.21   -1.18   -1.87   -2.13   -1.81   -0.70    1.38    4.41
+   255.0    0.00    0.20    0.76    1.56    2.41    3.12    3.51    3.45    2.92    2.02    0.90   -0.23   -1.20   -1.88   -2.14   -1.80   -0.69    1.38    4.35
+   260.0    0.00    0.20    0.76    1.55    2.41    3.13    3.51    3.45    2.91    1.99    0.87   -0.26   -1.23   -1.90   -2.15   -1.81   -0.70    1.34    4.24
+   265.0    0.00    0.20    0.75    1.55    2.42    3.14    3.52    3.44    2.89    1.96    0.82   -0.31   -1.27   -1.93   -2.17   -1.84   -0.75    1.25    4.11
+   270.0    0.00    0.20    0.75    1.55    2.42    3.14    3.52    3.44    2.87    1.92    0.77   -0.36   -1.31   -1.95   -2.18   -1.87   -0.82    1.14    3.97
+   275.0    0.00    0.19    0.75    1.56    2.43    3.15    3.53    3.42    2.84    1.87    0.72   -0.40   -1.33   -1.96   -2.20   -1.90   -0.89    1.03    3.83
+   280.0    0.00    0.19    0.75    1.56    2.44    3.16    3.53    3.41    2.81    1.83    0.68   -0.43   -1.34   -1.96   -2.20   -1.93   -0.96    0.92    3.73
+   285.0    0.00    0.19    0.75    1.57    2.45    3.17    3.53    3.40    2.78    1.80    0.66   -0.44   -1.33   -1.94   -2.19   -1.95   -1.02    0.83    3.66
+   290.0    0.00    0.19    0.75    1.57    2.46    3.18    3.53    3.39    2.76    1.78    0.64   -0.43   -1.31   -1.90   -2.16   -1.96   -1.06    0.78    3.63
+   295.0    0.00    0.19    0.76    1.58    2.47    3.18    3.53    3.38    2.74    1.76    0.65   -0.41   -1.27   -1.86   -2.12   -1.94   -1.07    0.76    3.64
+   300.0    0.00    0.19    0.76    1.59    2.48    3.19    3.53    3.37    2.74    1.76    0.66   -0.37   -1.21   -1.80   -2.07   -1.90   -1.04    0.79    3.69
+   305.0    0.00    0.19    0.76    1.59    2.49    3.20    3.53    3.37    2.73    1.77    0.69   -0.33   -1.16   -1.74   -2.01   -1.85   -0.99    0.85    3.76
+   310.0    0.00    0.19    0.76    1.60    2.49    3.20    3.53    3.36    2.73    1.78    0.71   -0.29   -1.10   -1.68   -1.96   -1.79   -0.92    0.93    3.84
+   315.0    0.00    0.19    0.77    1.61    2.50    3.21    3.53    3.36    2.73    1.79    0.74   -0.25   -1.05   -1.63   -1.90   -1.73   -0.84    1.02    3.90
+   320.0    0.00    0.19    0.77    1.61    2.51    3.21    3.53    3.36    2.73    1.80    0.76   -0.22   -1.02   -1.59   -1.86   -1.67   -0.77    1.09    3.94
+   325.0    0.00    0.19    0.77    1.62    2.51    3.21    3.52    3.35    2.73    1.81    0.77   -0.20   -1.00   -1.57   -1.84   -1.63   -0.71    1.14    3.94
+   330.0    0.00    0.19    0.78    1.62    2.52    3.22    3.52    3.34    2.72    1.80    0.77   -0.20   -1.01   -1.58   -1.83   -1.62   -0.69    1.15    3.90
+   335.0    0.00    0.19    0.78    1.63    2.52    3.21    3.52    3.33    2.71    1.79    0.75   -0.22   -1.03   -1.60   -1.86   -1.64   -0.71    1.11    3.81
+   340.0    0.00    0.19    0.78    1.63    2.52    3.21    3.51    3.32    2.69    1.76    0.72   -0.25   -1.06   -1.64   -1.90   -1.69   -0.78    1.02    3.67
+   345.0    0.00    0.19    0.78    1.63    2.52    3.21    3.50    3.30    2.66    1.73    0.68   -0.30   -1.12   -1.70   -1.97   -1.77   -0.88    0.89    3.52
+   350.0    0.00    0.19    0.78    1.63    2.52    3.20    3.49    3.28    2.63    1.69    0.63   -0.36   -1.18   -1.78   -2.06   -1.88   -1.02    0.73    3.35
+   355.0    0.00    0.19    0.78    1.63    2.51    3.19    3.47    3.26    2.60    1.64    0.58   -0.42   -1.26   -1.86   -2.16   -2.00   -1.17    0.56    3.19
+   360.0    0.00    0.19    0.78    1.62    2.51    3.18    3.46    3.24    2.57    1.60    0.52   -0.49   -1.33   -1.94   -2.26   -2.13   -1.31    0.41    3.07
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.22     -0.51    158.30                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.14   -0.51   -1.03   -1.60   -2.19   -2.80   -3.46   -4.15   -4.75   -5.07   -4.93   -4.23   -3.04   -1.50    0.27    2.33    4.98    8.59
+     0.0    0.00   -0.11   -0.46   -0.96   -1.54   -2.14   -2.76   -3.39   -4.02   -4.54   -4.81   -4.68   -4.09   -3.06   -1.68   -0.01    2.03    4.67    8.19
+     5.0    0.00   -0.11   -0.46   -0.97   -1.56   -2.17   -2.79   -3.44   -4.08   -4.61   -4.89   -4.78   -4.21   -3.21   -1.87   -0.24    1.77    4.42    7.98
+    10.0    0.00   -0.12   -0.47   -0.98   -1.57   -2.19   -2.83   -3.49   -4.15   -4.70   -4.99   -4.89   -4.32   -3.34   -2.04   -0.45    1.53    4.18    7.79
+    15.0    0.00   -0.12   -0.47   -0.99   -1.59   -2.22   -2.87   -3.55   -4.22   -4.79   -5.09   -4.99   -4.43   -3.46   -2.17   -0.62    1.34    3.98    7.63
+    20.0    0.00   -0.12   -0.48   -1.00   -1.60   -2.24   -2.90   -3.60   -4.29   -4.88   -5.19   -5.09   -4.52   -3.54   -2.26   -0.72    1.20    3.84    7.53
+    25.0    0.00   -0.12   -0.49   -1.01   -1.62   -2.26   -2.93   -3.65   -4.36   -4.96   -5.28   -5.17   -4.58   -3.58   -2.29   -0.77    1.15    3.78    7.50
+    30.0    0.00   -0.13   -0.49   -1.02   -1.63   -2.28   -2.96   -3.69   -4.42   -5.04   -5.36   -5.24   -4.62   -3.59   -2.28   -0.74    1.16    3.80    7.54
+    35.0    0.00   -0.13   -0.50   -1.03   -1.64   -2.29   -2.98   -3.72   -4.47   -5.10   -5.42   -5.28   -4.64   -3.56   -2.22   -0.66    1.26    3.90    7.67
+    40.0    0.00   -0.13   -0.51   -1.04   -1.65   -2.30   -2.99   -3.74   -4.50   -5.14   -5.46   -5.31   -4.62   -3.51   -2.12   -0.53    1.41    4.08    7.87
+    45.0    0.00   -0.13   -0.51   -1.05   -1.66   -2.31   -3.00   -3.76   -4.52   -5.16   -5.48   -5.30   -4.59   -3.43   -1.99   -0.37    1.61    4.32    8.13
+    50.0    0.00   -0.14   -0.52   -1.06   -1.67   -2.31   -3.00   -3.76   -4.52   -5.16   -5.47   -5.28   -4.54   -3.34   -1.86   -0.19    1.84    4.59    8.43
+    55.0    0.00   -0.14   -0.52   -1.06   -1.67   -2.31   -3.00   -3.74   -4.51   -5.14   -5.44   -5.24   -4.47   -3.25   -1.74   -0.02    2.07    4.87    8.74
+    60.0    0.00   -0.14   -0.53   -1.07   -1.68   -2.31   -2.99   -3.72   -4.47   -5.10   -5.39   -5.18   -4.41   -3.17   -1.63    0.14    2.28    5.14    9.04
+    65.0    0.00   -0.14   -0.53   -1.07   -1.68   -2.31   -2.97   -3.69   -4.43   -5.04   -5.33   -5.12   -4.35   -3.11   -1.55    0.26    2.45    5.38    9.30
+    70.0    0.00   -0.15   -0.54   -1.08   -1.68   -2.30   -2.95   -3.66   -4.38   -4.98   -5.26   -5.06   -4.30   -3.06   -1.50    0.34    2.58    5.55    9.49
+    75.0    0.00   -0.15   -0.54   -1.08   -1.68   -2.29   -2.93   -3.62   -4.32   -4.91   -5.19   -5.00   -4.25   -3.03   -1.47    0.38    2.65    5.65    9.60
+    80.0    0.00   -0.15   -0.54   -1.08   -1.68   -2.28   -2.91   -3.58   -4.27   -4.84   -5.13   -4.94   -4.22   -3.02   -1.47    0.38    2.67    5.68    9.61
+    85.0    0.00   -0.15   -0.54   -1.08   -1.67   -2.27   -2.88   -3.54   -4.21   -4.79   -5.07   -4.90   -4.19   -3.02   -1.48    0.36    2.64    5.64    9.54
+    90.0    0.00   -0.15   -0.55   -1.08   -1.67   -2.26   -2.86   -3.51   -4.17   -4.74   -5.02   -4.86   -4.17   -3.01   -1.50    0.32    2.58    5.55    9.40
+    95.0    0.00   -0.15   -0.55   -1.08   -1.66   -2.25   -2.84   -3.48   -4.14   -4.70   -4.98   -4.83   -4.15   -3.01   -1.51    0.29    2.51    5.42    9.21
+   100.0    0.00   -0.15   -0.55   -1.08   -1.66   -2.23   -2.83   -3.46   -4.11   -4.67   -4.95   -4.80   -4.13   -2.99   -1.50    0.27    2.44    5.28    8.99
+   105.0    0.00   -0.15   -0.55   -1.07   -1.65   -2.22   -2.81   -3.44   -4.09   -4.64   -4.93   -4.78   -4.10   -2.96   -1.47    0.28    2.40    5.15    8.79
+   110.0    0.00   -0.16   -0.54   -1.07   -1.64   -2.21   -2.79   -3.42   -4.07   -4.63   -4.91   -4.75   -4.06   -2.90   -1.41    0.32    2.38    5.05    8.62
+   115.0    0.00   -0.16   -0.54   -1.06   -1.63   -2.20   -2.78   -3.40   -4.05   -4.61   -4.89   -4.72   -4.01   -2.83   -1.32    0.40    2.42    5.01    8.51
+   120.0    0.00   -0.16   -0.54   -1.06   -1.62   -2.18   -2.76   -3.39   -4.04   -4.59   -4.87   -4.69   -3.96   -2.75   -1.22    0.51    2.49    5.02    8.47
+   125.0    0.00   -0.16   -0.54   -1.05   -1.61   -2.17   -2.74   -3.37   -4.02   -4.57   -4.85   -4.65   -3.90   -2.66   -1.10    0.64    2.60    5.08    8.50
+   130.0    0.00   -0.16   -0.54   -1.05   -1.60   -2.16   -2.73   -3.35   -3.99   -4.55   -4.82   -4.61   -3.84   -2.57   -0.97    0.79    2.74    5.19    8.59
+   135.0    0.00   -0.15   -0.53   -1.04   -1.59   -2.14   -2.71   -3.33   -3.97   -4.52   -4.79   -4.57   -3.78   -2.49   -0.86    0.93    2.90    5.34    8.73
+   140.0    0.00   -0.15   -0.53   -1.04   -1.58   -2.13   -2.70   -3.31   -3.95   -4.49   -4.76   -4.54   -3.74   -2.43   -0.77    1.05    3.04    5.49    8.88
+   145.0    0.00   -0.15   -0.53   -1.03   -1.58   -2.12   -2.68   -3.29   -3.92   -4.47   -4.74   -4.52   -3.72   -2.40   -0.72    1.13    3.16    5.62    9.03
+   150.0    0.00   -0.15   -0.53   -1.03   -1.57   -2.12   -2.67   -3.28   -3.91   -4.45   -4.72   -4.52   -3.73   -2.40   -0.71    1.17    3.23    5.72    9.14
+   155.0    0.00   -0.15   -0.53   -1.03   -1.57   -2.12   -2.67   -3.27   -3.90   -4.45   -4.73   -4.53   -3.76   -2.44   -0.74    1.16    3.24    5.76    9.19
+   160.0    0.00   -0.15   -0.53   -1.03   -1.57   -2.12   -2.68   -3.28   -3.91   -4.46   -4.75   -4.57   -3.82   -2.52   -0.83    1.08    3.19    5.73    9.16
+   165.0    0.00   -0.15   -0.52   -1.03   -1.57   -2.12   -2.68   -3.29   -3.92   -4.49   -4.79   -4.64   -3.91   -2.63   -0.96    0.96    3.08    5.64    9.07
+   170.0    0.00   -0.15   -0.52   -1.03   -1.58   -2.13   -2.70   -3.31   -3.96   -4.53   -4.85   -4.73   -4.03   -2.78   -1.12    0.78    2.92    5.49    8.91
+   175.0    0.00   -0.15   -0.52   -1.03   -1.58   -2.14   -2.72   -3.34   -4.00   -4.59   -4.93   -4.83   -4.16   -2.94   -1.31    0.58    2.71    5.28    8.71
+   180.0    0.00   -0.15   -0.52   -1.03   -1.59   -2.15   -2.74   -3.38   -4.05   -4.66   -5.03   -4.95   -4.31   -3.12   -1.51    0.35    2.47    5.05    8.48
+   185.0    0.00   -0.15   -0.52   -1.03   -1.60   -2.17   -2.76   -3.42   -4.11   -4.74   -5.13   -5.07   -4.46   -3.29   -1.72    0.13    2.24    4.82    8.26
+   190.0    0.00   -0.15   -0.52   -1.04   -1.60   -2.18   -2.79   -3.45   -4.17   -4.82   -5.23   -5.20   -4.60   -3.46   -1.90   -0.08    2.02    4.61    8.07
+   195.0    0.00   -0.15   -0.53   -1.04   -1.60   -2.19   -2.80   -3.48   -4.22   -4.90   -5.33   -5.31   -4.73   -3.60   -2.06   -0.25    1.84    4.45    7.93
+   200.0    0.00   -0.15   -0.53   -1.04   -1.61   -2.19   -2.82   -3.51   -4.26   -4.96   -5.41   -5.41   -4.83   -3.71   -2.18   -0.38    1.72    4.35    7.87
+   205.0    0.00   -0.15   -0.53   -1.04   -1.61   -2.20   -2.82   -3.53   -4.29   -5.01   -5.48   -5.49   -4.91   -3.79   -2.26   -0.46    1.65    4.32    7.88
+   210.0    0.00   -0.15   -0.53   -1.04   -1.61   -2.20   -2.82   -3.54   -4.31   -5.05   -5.52   -5.54   -4.96   -3.83   -2.29   -0.48    1.65    4.35    7.97
+   215.0    0.00   -0.15   -0.53   -1.04   -1.61   -2.19   -2.82   -3.54   -4.32   -5.06   -5.55   -5.56   -4.98   -3.84   -2.28   -0.44    1.71    4.45    8.11
+   220.0    0.00   -0.15   -0.53   -1.04   -1.61   -2.19   -2.82   -3.53   -4.32   -5.07   -5.56   -5.56   -4.97   -3.80   -2.22   -0.36    1.82    4.60    8.29
+   225.0    0.00   -0.15   -0.53   -1.04   -1.61   -2.19   -2.81   -3.52   -4.31   -5.06   -5.54   -5.54   -4.93   -3.74   -2.14   -0.25    1.97    4.77    8.50
+   230.0    0.00   -0.14   -0.52   -1.04   -1.61   -2.18   -2.80   -3.51   -4.30   -5.04   -5.51   -5.50   -4.86   -3.65   -2.02   -0.11    2.13    4.95    8.69
+   235.0    0.00   -0.14   -0.52   -1.04   -1.61   -2.18   -2.80   -3.50   -4.28   -5.01   -5.47   -5.44   -4.78   -3.55   -1.90    0.03    2.28    5.12    8.85
+   240.0    0.00   -0.14   -0.52   -1.04   -1.61   -2.18   -2.79   -3.49   -4.26   -4.98   -5.42   -5.37   -4.69   -3.44   -1.77    0.16    2.41    5.25    8.97
+   245.0    0.00   -0.14   -0.52   -1.04   -1.61   -2.18   -2.79   -3.49   -4.25   -4.95   -5.37   -5.29   -4.59   -3.32   -1.65    0.28    2.51    5.33    9.04
+   250.0    0.00   -0.14   -0.52   -1.04   -1.61   -2.18   -2.79   -3.48   -4.23   -4.92   -5.32   -5.22   -4.50   -3.22   -1.55    0.36    2.57    5.36    9.05
+   255.0    0.00   -0.14   -0.52   -1.04   -1.61   -2.19   -2.80   -3.48   -4.22   -4.89   -5.27   -5.14   -4.40   -3.12   -1.47    0.41    2.58    5.33    9.01
+   260.0    0.00   -0.13   -0.51   -1.03   -1.61   -2.19   -2.80   -3.48   -4.21   -4.86   -5.22   -5.07   -4.32   -3.04   -1.41    0.43    2.55    5.26    8.93
+   265.0    0.00   -0.13   -0.51   -1.03   -1.60   -2.18   -2.80   -3.47   -4.19   -4.83   -5.17   -5.00   -4.25   -2.98   -1.37    0.42    2.49    5.15    8.83
+   270.0    0.00   -0.13   -0.50   -1.02   -1.60   -2.18   -2.79   -3.47   -4.18   -4.80   -5.12   -4.94   -4.18   -2.92   -1.35    0.40    2.41    5.03    8.72
+   275.0    0.00   -0.13   -0.50   -1.02   -1.59   -2.17   -2.78   -3.45   -4.15   -4.76   -5.07   -4.88   -4.12   -2.88   -1.34    0.36    2.32    4.91    8.61
+   280.0    0.00   -0.13   -0.49   -1.01   -1.58   -2.16   -2.77   -3.43   -4.13   -4.72   -5.02   -4.83   -4.07   -2.84   -1.33    0.33    2.25    4.81    8.54
+   285.0    0.00   -0.12   -0.49   -1.00   -1.56   -2.14   -2.75   -3.40   -4.09   -4.68   -4.97   -4.78   -4.03   -2.81   -1.31    0.32    2.20    4.74    8.49
+   290.0    0.00   -0.12   -0.48   -0.99   -1.55   -2.12   -2.72   -3.37   -4.05   -4.63   -4.92   -4.73   -3.98   -2.77   -1.29    0.33    2.19    4.71    8.48
+   295.0    0.00   -0.12   -0.47   -0.98   -1.53   -2.10   -2.69   -3.34   -4.01   -4.58   -4.87   -4.68   -3.93   -2.72   -1.24    0.37    2.22    4.74    8.50
+   300.0    0.00   -0.12   -0.47   -0.97   -1.52   -2.08   -2.66   -3.30   -3.97   -4.54   -4.82   -4.62   -3.88   -2.67   -1.19    0.44    2.30    4.80    8.55
+   305.0    0.00   -0.11   -0.46   -0.96   -1.50   -2.06   -2.64   -3.27   -3.92   -4.49   -4.77   -4.57   -3.83   -2.61   -1.11    0.53    2.41    4.91    8.63
+   310.0    0.00   -0.11   -0.46   -0.95   -1.49   -2.04   -2.61   -3.24   -3.89   -4.44   -4.72   -4.53   -3.78   -2.56   -1.04    0.64    2.54    5.04    8.72
+   315.0    0.00   -0.11   -0.45   -0.94   -1.48   -2.03   -2.60   -3.21   -3.85   -4.40   -4.68   -4.48   -3.73   -2.50   -0.96    0.75    2.68    5.18    8.81
+   320.0    0.00   -0.11   -0.45   -0.93   -1.47   -2.02   -2.59   -3.20   -3.83   -4.37   -4.64   -4.44   -3.70   -2.46   -0.90    0.84    2.81    5.32    8.88
+   325.0    0.00   -0.11   -0.45   -0.93   -1.47   -2.02   -2.59   -3.19   -3.82   -4.35   -4.61   -4.42   -3.67   -2.44   -0.87    0.90    2.90    5.42    8.94
+   330.0    0.00   -0.11   -0.45   -0.93   -1.47   -2.02   -2.59   -3.20   -3.82   -4.34   -4.59   -4.40   -3.67   -2.44   -0.87    0.92    2.95    5.49    8.95
+   335.0    0.00   -0.11   -0.45   -0.93   -1.48   -2.03   -2.61   -3.21   -3.82   -4.34   -4.59   -4.40   -3.68   -2.47   -0.91    0.89    2.94    5.50    8.93
+   340.0    0.00   -0.11   -0.45   -0.93   -1.48   -2.05   -2.63   -3.23   -3.84   -4.35   -4.60   -4.42   -3.72   -2.54   -1.00    0.80    2.87    5.44    8.86
+   345.0    0.00   -0.11   -0.45   -0.94   -1.49   -2.07   -2.65   -3.26   -3.87   -4.38   -4.63   -4.46   -3.78   -2.64   -1.13    0.65    2.73    5.32    8.74
+   350.0    0.00   -0.11   -0.45   -0.94   -1.51   -2.09   -2.68   -3.30   -3.91   -4.42   -4.67   -4.52   -3.87   -2.76   -1.29    0.46    2.53    5.15    8.58
+   355.0    0.00   -0.11   -0.45   -0.95   -1.52   -2.11   -2.72   -3.34   -3.96   -4.47   -4.73   -4.59   -3.97   -2.90   -1.48    0.23    2.29    4.92    8.40
+   360.0    0.00   -0.11   -0.46   -0.96   -1.54   -2.14   -2.76   -3.39   -4.02   -4.54   -4.81   -4.68   -4.09   -3.06   -1.68   -0.01    2.03    4.67    8.19
+   G02                                                      END OF FREQUENCY    
+   R01                                                      START OF FREQUENCY  
+      0.26     -0.16    161.30                              NORTH / EAST / UP   
+   NOAZI    0.00    0.17    0.65    1.39    2.24    3.00    3.51    3.56    3.12    2.26    1.15    0.04   -0.91   -1.56   -1.86   -1.75   -1.03    0.56    3.28
+     0.0    0.00    0.17    0.66    1.40    2.24    2.98    3.43    3.41    2.90    1.99    0.89   -0.16   -1.01   -1.59   -1.92   -1.96   -1.57   -0.42    1.87
+     5.0    0.00    0.17    0.64    1.39    2.21    2.94    3.38    3.35    2.83    1.92    0.82   -0.25   -1.11   -1.71   -2.05   -2.11   -1.72   -0.57    1.72
+    10.0    0.00    0.16    0.64    1.37    2.18    2.90    3.32    3.31    2.78    1.86    0.74   -0.33   -1.21   -1.83   -2.17   -2.22   -1.82   -0.63    1.71
+    15.0    0.00    0.16    0.63    1.34    2.16    2.87    3.29    3.26    2.74    1.81    0.69   -0.40   -1.30   -1.92   -2.26   -2.30   -1.84   -0.60    1.81
+    20.0    0.00    0.15    0.62    1.32    2.14    2.85    3.27    3.23    2.71    1.79    0.66   -0.46   -1.36   -1.99   -2.32   -2.32   -1.81   -0.47    2.02
+    25.0    0.00    0.15    0.62    1.32    2.13    2.84    3.26    3.23    2.71    1.78    0.64   -0.49   -1.42   -2.04   -2.35   -2.30   -1.70   -0.29    2.31
+    30.0    0.00    0.15    0.60    1.31    2.11    2.83    3.27    3.24    2.73    1.80    0.64   -0.51   -1.44   -2.07   -2.35   -2.25   -1.56   -0.04    2.66
+    35.0    0.00    0.14    0.60    1.30    2.11    2.83    3.28    3.28    2.76    1.83    0.65   -0.50   -1.45   -2.08   -2.33   -2.16   -1.39    0.24    3.02
+    40.0    0.00    0.14    0.60    1.29    2.11    2.84    3.30    3.32    2.82    1.88    0.69   -0.48   -1.44   -2.07   -2.29   -2.06   -1.20    0.50    3.35
+    45.0    0.00    0.14    0.59    1.29    2.11    2.86    3.34    3.37    2.89    1.95    0.75   -0.43   -1.42   -2.04   -2.24   -1.96   -1.04    0.74    3.64
+    50.0    0.00    0.14    0.59    1.28    2.11    2.88    3.38    3.43    2.95    2.02    0.82   -0.37   -1.36   -1.98   -2.18   -1.87   -0.90    0.95    3.84
+    55.0    0.00    0.15    0.59    1.28    2.11    2.89    3.40    3.48    3.01    2.10    0.91   -0.29   -1.29   -1.92   -2.11   -1.79   -0.80    1.07    3.98
+    60.0    0.00    0.15    0.59    1.29    2.11    2.91    3.44    3.51    3.08    2.17    1.00   -0.20   -1.21   -1.85   -2.05   -1.74   -0.74    1.12    4.01
+    65.0    0.00    0.14    0.58    1.29    2.11    2.92    3.45    3.55    3.13    2.24    1.08   -0.11   -1.12   -1.77   -2.00   -1.70   -0.75    1.11    3.98
+    70.0    0.00    0.14    0.58    1.29    2.12    2.92    3.47    3.57    3.18    2.32    1.16   -0.02   -1.01   -1.69   -1.95   -1.70   -0.77    1.04    3.90
+    75.0    0.00    0.14    0.58    1.29    2.11    2.92    3.47    3.59    3.21    2.37    1.25    0.08   -0.92   -1.62   -1.92   -1.72   -0.84    0.94    3.79
+    80.0    0.00    0.15    0.59    1.28    2.12    2.92    3.47    3.60    3.23    2.41    1.31    0.15   -0.84   -1.55   -1.89   -1.75   -0.92    0.83    3.68
+    85.0    0.00    0.15    0.59    1.28    2.11    2.91    3.46    3.60    3.25    2.43    1.35    0.22   -0.78   -1.50   -1.87   -1.77   -1.00    0.73    3.61
+    90.0    0.00    0.15    0.60    1.29    2.12    2.91    3.47    3.60    3.25    2.46    1.39    0.26   -0.72   -1.47   -1.86   -1.81   -1.06    0.68    3.56
+    95.0    0.00    0.16    0.60    1.29    2.12    2.92    3.46    3.59    3.25    2.47    1.41    0.30   -0.69   -1.44   -1.86   -1.82   -1.08    0.65    3.58
+   100.0    0.00    0.15    0.60    1.30    2.13    2.92    3.47    3.61    3.26    2.48    1.43    0.32   -0.66   -1.42   -1.85   -1.81   -1.07    0.70    3.66
+   105.0    0.00    0.15    0.61    1.31    2.14    2.94    3.47    3.62    3.27    2.49    1.45    0.34   -0.65   -1.41   -1.82   -1.77   -1.02    0.77    3.78
+   110.0    0.00    0.16    0.62    1.32    2.17    2.96    3.50    3.64    3.29    2.51    1.46    0.35   -0.64   -1.39   -1.79   -1.72   -0.93    0.89    3.94
+   115.0    0.00    0.16    0.63    1.34    2.18    2.98    3.52    3.67    3.31    2.55    1.48    0.36   -0.63   -1.35   -1.73   -1.63   -0.81    1.05    4.13
+   120.0    0.00    0.17    0.64    1.36    2.20    3.01    3.56    3.71    3.36    2.57    1.50    0.38   -0.60   -1.32   -1.67   -1.53   -0.67    1.21    4.29
+   125.0    0.00    0.17    0.65    1.37    2.24    3.04    3.61    3.75    3.40    2.61    1.53    0.41   -0.56   -1.26   -1.58   -1.41   -0.53    1.35    4.44
+   130.0    0.00    0.17    0.66    1.40    2.26    3.07    3.64    3.78    3.44    2.65    1.57    0.45   -0.51   -1.20   -1.49   -1.31   -0.41    1.46    4.53
+   135.0    0.00    0.18    0.67    1.42    2.29    3.12    3.67    3.83    3.48    2.68    1.60    0.49   -0.46   -1.13   -1.40   -1.21   -0.33    1.52    4.56
+   140.0    0.00    0.18    0.67    1.43    2.31    3.14    3.71    3.85    3.50    2.70    1.63    0.53   -0.40   -1.04   -1.32   -1.14   -0.29    1.50    4.50
+   145.0    0.00    0.18    0.69    1.45    2.33    3.16    3.72    3.87    3.51    2.71    1.66    0.57   -0.35   -0.98   -1.26   -1.09   -0.31    1.42    4.36
+   150.0    0.00    0.19    0.70    1.46    2.35    3.17    3.74    3.86    3.50    2.70    1.64    0.57   -0.33   -0.93   -1.23   -1.10   -0.38    1.27    4.13
+   155.0    0.00    0.19    0.70    1.47    2.36    3.18    3.73    3.85    3.47    2.67    1.62    0.56   -0.33   -0.94   -1.24   -1.17   -0.52    1.04    3.83
+   160.0    0.00    0.19    0.71    1.48    2.36    3.17    3.71    3.81    3.41    2.61    1.57    0.52   -0.36   -0.97   -1.29   -1.27   -0.70    0.77    3.48
+   165.0    0.00    0.19    0.71    1.48    2.36    3.17    3.69    3.77    3.35    2.52    1.49    0.44   -0.43   -1.05   -1.40   -1.42   -0.90    0.47    3.09
+   170.0    0.00    0.19    0.71    1.49    2.35    3.15    3.66    3.71    3.28    2.43    1.38    0.33   -0.53   -1.16   -1.54   -1.59   -1.14    0.17    2.70
+   175.0    0.00    0.19    0.71    1.48    2.35    3.12    3.61    3.65    3.20    2.33    1.27    0.20   -0.69   -1.32   -1.71   -1.79   -1.39   -0.13    2.35
+   180.0    0.00    0.19    0.71    1.48    2.34    3.10    3.57    3.58    3.11    2.24    1.14    0.06   -0.84   -1.48   -1.88   -1.97   -1.59   -0.39    2.03
+   185.0    0.00    0.19    0.71    1.47    2.32    3.08    3.52    3.53    3.04    2.13    1.02   -0.09   -1.01   -1.66   -2.07   -2.15   -1.78   -0.58    1.80
+   190.0    0.00    0.19    0.71    1.46    2.29    3.04    3.49    3.48    2.97    2.05    0.91   -0.22   -1.16   -1.82   -2.22   -2.31   -1.91   -0.69    1.69
+   195.0    0.00    0.20    0.70    1.43    2.28    3.02    3.46    3.45    2.93    1.99    0.83   -0.32   -1.27   -1.96   -2.35   -2.41   -1.98   -0.73    1.69
+   200.0    0.00    0.19    0.69    1.43    2.26    3.00    3.44    3.42    2.90    1.95    0.78   -0.38   -1.34   -2.04   -2.43   -2.46   -1.99   -0.68    1.79
+   205.0    0.00    0.19    0.69    1.41    2.24    2.98    3.42    3.41    2.89    1.94    0.76   -0.41   -1.40   -2.08   -2.46   -2.46   -1.93   -0.56    2.00
+   210.0    0.00    0.19    0.68    1.40    2.22    2.96    3.40    3.40    2.89    1.96    0.79   -0.38   -1.38   -2.07   -2.44   -2.41   -1.84   -0.37    2.31
+   215.0    0.00    0.18    0.67    1.39    2.21    2.95    3.40    3.41    2.92    1.99    0.84   -0.33   -1.33   -2.02   -2.38   -2.33   -1.69   -0.14    2.68
+   220.0    0.00    0.18    0.66    1.37    2.19    2.93    3.40    3.43    2.96    2.06    0.91   -0.25   -1.25   -1.94   -2.29   -2.22   -1.52    0.12    3.06
+   225.0    0.00    0.19    0.66    1.36    2.17    2.92    3.40    3.45    3.01    2.13    0.99   -0.15   -1.14   -1.84   -2.18   -2.10   -1.36    0.37    3.46
+   230.0    0.00    0.18    0.65    1.36    2.17    2.92    3.41    3.47    3.03    2.20    1.08   -0.05   -1.03   -1.73   -2.08   -1.98   -1.21    0.60    3.80
+   235.0    0.00    0.18    0.65    1.35    2.16    2.92    3.42    3.50    3.08    2.26    1.16    0.04   -0.93   -1.64   -1.99   -1.88   -1.07    0.78    4.05
+   240.0    0.00    0.17    0.64    1.35    2.16    2.92    3.43    3.52    3.14    2.31    1.23    0.10   -0.87   -1.56   -1.92   -1.81   -0.98    0.91    4.23
+   245.0    0.00    0.18    0.64    1.35    2.15    2.92    3.44    3.55    3.16    2.34    1.27    0.15   -0.83   -1.54   -1.88   -1.78   -0.94    0.97    4.28
+   250.0    0.00    0.18    0.64    1.34    2.15    2.93    3.45    3.56    3.19    2.36    1.29    0.16   -0.82   -1.54   -1.90   -1.77   -0.93    0.97    4.23
+   255.0    0.00    0.17    0.64    1.35    2.17    2.93    3.47    3.58    3.20    2.38    1.28    0.15   -0.84   -1.56   -1.93   -1.80   -0.97    0.91    4.08
+   260.0    0.00    0.18    0.64    1.35    2.18    2.95    3.48    3.59    3.20    2.37    1.27    0.12   -0.88   -1.61   -1.98   -1.85   -1.02    0.82    3.87
+   265.0    0.00    0.18    0.64    1.36    2.20    2.97    3.50    3.60    3.21    2.36    1.25    0.08   -0.93   -1.67   -2.04   -1.91   -1.09    0.70    3.62
+   270.0    0.00    0.18    0.64    1.36    2.21    2.98    3.51    3.62    3.21    2.36    1.22    0.04   -0.98   -1.72   -2.08   -1.97   -1.16    0.58    3.37
+   275.0    0.00    0.17    0.65    1.38    2.23    3.01    3.54    3.62    3.21    2.34    1.20    0.01   -1.01   -1.75   -2.11   -1.99   -1.20    0.49    3.16
+   280.0    0.00    0.17    0.66    1.39    2.25    3.03    3.56    3.64    3.21    2.33    1.19    0.01   -1.01   -1.75   -2.10   -1.98   -1.20    0.43    3.03
+   285.0    0.00    0.18    0.66    1.41    2.27    3.06    3.58    3.66    3.22    2.33    1.19    0.02   -0.99   -1.71   -2.06   -1.94   -1.18    0.43    2.97
+   290.0    0.00    0.18    0.66    1.42    2.29    3.09    3.62    3.68    3.23    2.34    1.20    0.05   -0.94   -1.62   -1.97   -1.86   -1.11    0.47    2.99
+   295.0    0.00    0.18    0.69    1.43    2.31    3.12    3.64    3.70    3.24    2.36    1.23    0.10   -0.86   -1.53   -1.85   -1.75   -1.02    0.57    3.10
+   300.0    0.00    0.18    0.69    1.45    2.34    3.14    3.66    3.72    3.26    2.38    1.27    0.17   -0.75   -1.41   -1.71   -1.60   -0.88    0.70    3.25
+   305.0    0.00    0.18    0.69    1.45    2.35    3.17    3.68    3.74    3.27    2.40    1.32    0.23   -0.66   -1.27   -1.56   -1.46   -0.73    0.85    3.44
+   310.0    0.00    0.18    0.69    1.47    2.36    3.18    3.70    3.75    3.29    2.42    1.34    0.29   -0.56   -1.15   -1.43   -1.31   -0.60    0.98    3.63
+   315.0    0.00    0.18    0.70    1.48    2.37    3.20    3.71    3.76    3.29    2.43    1.37    0.33   -0.48   -1.05   -1.29   -1.19   -0.49    1.09    3.75
+   320.0    0.00    0.18    0.70    1.47    2.38    3.20    3.72    3.76    3.29    2.43    1.38    0.36   -0.44   -0.96   -1.21   -1.10   -0.43    1.13    3.81
+   325.0    0.00    0.18    0.70    1.48    2.38    3.20    3.71    3.75    3.28    2.43    1.38    0.37   -0.42   -0.93   -1.17   -1.06   -0.40    1.11    3.78
+   330.0    0.00    0.18    0.69    1.47    2.38    3.20    3.70    3.73    3.26    2.40    1.34    0.35   -0.44   -0.95   -1.17   -1.08   -0.46    1.01    3.64
+   335.0    0.00    0.18    0.69    1.47    2.37    3.17    3.68    3.70    3.23    2.36    1.29    0.30   -0.49   -0.99   -1.23   -1.15   -0.56    0.84    3.42
+   340.0    0.00    0.18    0.68    1.46    2.35    3.15    3.64    3.66    3.18    2.30    1.23    0.23   -0.56   -1.08   -1.32   -1.26   -0.73    0.61    3.11
+   345.0    0.00    0.17    0.68    1.45    2.33    3.11    3.60    3.61    3.12    2.23    1.16    0.14   -0.66   -1.19   -1.45   -1.42   -0.93    0.34    2.77
+   350.0    0.00    0.17    0.67    1.44    2.30    3.07    3.54    3.55    3.04    2.16    1.07    0.04   -0.78   -1.32   -1.60   -1.59   -1.16    0.06    2.41
+   355.0    0.00    0.17    0.67    1.42    2.27    3.02    3.48    3.47    2.97    2.08    0.98   -0.06   -0.90   -1.46   -1.76   -1.78   -1.37   -0.21    2.09
+   360.0    0.00    0.17    0.66    1.40    2.24    2.98    3.43    3.41    2.90    1.99    0.89   -0.16   -1.01   -1.59   -1.92   -1.96   -1.57   -0.42    1.87
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+     -0.22     -0.51    158.30                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.16   -0.59   -1.19   -1.84   -2.48   -3.14   -3.84   -4.57   -5.25   -5.68   -5.67   -5.09   -3.97   -2.44   -0.66    1.33    3.72    6.77
+     0.0    0.00   -0.17   -0.61   -1.21   -1.89   -2.58   -3.28   -3.99   -4.70   -5.31   -5.69   -5.64   -5.10   -4.06   -2.65   -1.03    0.76    2.82    5.44
+     5.0    0.00   -0.18   -0.61   -1.23   -1.93   -2.63   -3.33   -4.05   -4.76   -5.37   -5.74   -5.72   -5.20   -4.20   -2.85   -1.26    0.52    2.62    5.27
+    10.0    0.00   -0.19   -0.63   -1.25   -1.95   -2.67   -3.38   -4.10   -4.81   -5.43   -5.81   -5.80   -5.29   -4.33   -3.03   -1.47    0.31    2.44    5.16
+    15.0    0.00   -0.19   -0.63   -1.27   -1.98   -2.71   -3.43   -4.15   -4.86   -5.48   -5.86   -5.85   -5.38   -4.45   -3.16   -1.64    0.16    2.34    5.12
+    20.0    0.00   -0.19   -0.65   -1.28   -2.00   -2.73   -3.44   -4.18   -4.89   -5.53   -5.91   -5.91   -5.45   -4.53   -3.26   -1.74    0.06    2.29    5.16
+    25.0    0.00   -0.19   -0.66   -1.30   -2.02   -2.74   -3.46   -4.20   -4.93   -5.56   -5.96   -5.96   -5.50   -4.58   -3.31   -1.79    0.05    2.34    5.28
+    30.0    0.00   -0.20   -0.66   -1.31   -2.02   -2.74   -3.47   -4.21   -4.94   -5.60   -6.01   -6.02   -5.55   -4.61   -3.33   -1.76    0.09    2.44    5.45
+    35.0    0.00   -0.20   -0.67   -1.32   -2.02   -2.74   -3.45   -4.20   -4.96   -5.63   -6.05   -6.06   -5.58   -4.61   -3.29   -1.70    0.21    2.60    5.69
+    40.0    0.00   -0.20   -0.68   -1.32   -2.02   -2.72   -3.42   -4.17   -4.94   -5.64   -6.09   -6.10   -5.59   -4.60   -3.22   -1.58    0.37    2.83    5.97
+    45.0    0.00   -0.20   -0.68   -1.32   -2.01   -2.70   -3.40   -4.15   -4.93   -5.65   -6.11   -6.12   -5.60   -4.56   -3.12   -1.44    0.56    3.08    6.28
+    50.0    0.00   -0.21   -0.69   -1.32   -2.01   -2.67   -3.35   -4.11   -4.90   -5.64   -6.12   -6.13   -5.59   -4.50   -3.02   -1.27    0.79    3.35    6.61
+    55.0    0.00   -0.21   -0.68   -1.32   -1.99   -2.64   -3.32   -4.05   -4.86   -5.61   -6.10   -6.12   -5.54   -4.43   -2.90   -1.11    1.00    3.61    6.93
+    60.0    0.00   -0.21   -0.69   -1.32   -1.98   -2.62   -3.28   -4.00   -4.80   -5.57   -6.07   -6.09   -5.51   -4.35   -2.79   -0.95    1.20    3.85    7.23
+    65.0    0.00   -0.21   -0.68   -1.31   -1.97   -2.60   -3.23   -3.94   -4.75   -5.50   -6.01   -6.04   -5.45   -4.28   -2.69   -0.81    1.35    4.06    7.48
+    70.0    0.00   -0.21   -0.69   -1.32   -1.95   -2.56   -3.19   -3.90   -4.68   -5.44   -5.94   -5.97   -5.38   -4.19   -2.60   -0.71    1.48    4.21    7.69
+    75.0    0.00   -0.21   -0.69   -1.31   -1.94   -2.55   -3.16   -3.85   -4.62   -5.37   -5.87   -5.90   -5.30   -4.12   -2.52   -0.64    1.55    4.30    7.81
+    80.0    0.00   -0.20   -0.68   -1.30   -1.94   -2.54   -3.14   -3.81   -4.57   -5.30   -5.79   -5.80   -5.21   -4.04   -2.46   -0.60    1.59    4.33    7.86
+    85.0    0.00   -0.20   -0.67   -1.30   -1.93   -2.53   -3.12   -3.78   -4.52   -5.24   -5.71   -5.72   -5.12   -3.98   -2.41   -0.57    1.58    4.30    7.84
+    90.0    0.00   -0.19   -0.68   -1.29   -1.93   -2.53   -3.12   -3.77   -4.49   -5.19   -5.64   -5.63   -5.04   -3.89   -2.36   -0.56    1.55    4.24    7.75
+    95.0    0.00   -0.19   -0.68   -1.29   -1.92   -2.54   -3.12   -3.77   -4.48   -5.15   -5.58   -5.56   -4.96   -3.83   -2.32   -0.55    1.52    4.15    7.62
+   100.0    0.00   -0.19   -0.67   -1.29   -1.93   -2.53   -3.14   -3.78   -4.47   -5.12   -5.52   -5.49   -4.89   -3.76   -2.26   -0.52    1.49    4.06    7.46
+   105.0    0.00   -0.18   -0.65   -1.27   -1.92   -2.54   -3.14   -3.79   -4.47   -5.10   -5.49   -5.44   -4.82   -3.70   -2.20   -0.49    1.49    3.98    7.30
+   110.0    0.00   -0.19   -0.64   -1.26   -1.91   -2.53   -3.14   -3.79   -4.47   -5.09   -5.46   -5.39   -4.76   -3.61   -2.12   -0.42    1.52    3.93    7.17
+   115.0    0.00   -0.18   -0.63   -1.24   -1.89   -2.53   -3.15   -3.79   -4.47   -5.08   -5.43   -5.35   -4.70   -3.54   -2.03   -0.32    1.60    3.94    7.08
+   120.0    0.00   -0.17   -0.61   -1.23   -1.88   -2.51   -3.14   -3.79   -4.47   -5.07   -5.42   -5.32   -4.65   -3.47   -1.93   -0.20    1.70    4.00    7.05
+   125.0    0.00   -0.17   -0.61   -1.20   -1.85   -2.49   -3.12   -3.77   -4.45   -5.05   -5.40   -5.29   -4.61   -3.40   -1.83   -0.07    1.83    4.09    7.08
+   130.0    0.00   -0.17   -0.59   -1.18   -1.83   -2.47   -3.09   -3.75   -4.42   -5.04   -5.38   -5.26   -4.57   -3.34   -1.73    0.06    1.97    4.22    7.15
+   135.0    0.00   -0.15   -0.57   -1.16   -1.80   -2.43   -3.06   -3.72   -4.40   -5.01   -5.36   -5.23   -4.53   -3.28   -1.64    0.19    2.14    4.38    7.27
+   140.0    0.00   -0.14   -0.56   -1.14   -1.76   -2.39   -3.02   -3.69   -4.37   -4.98   -5.33   -5.22   -4.51   -3.25   -1.58    0.28    2.27    4.52    7.39
+   145.0    0.00   -0.14   -0.54   -1.11   -1.73   -2.36   -2.98   -3.64   -4.33   -4.96   -5.32   -5.22   -4.51   -3.25   -1.56    0.34    2.37    4.63    7.49
+   150.0    0.00   -0.14   -0.54   -1.09   -1.70   -2.33   -2.95   -3.62   -4.31   -4.94   -5.32   -5.23   -4.55   -3.28   -1.58    0.35    2.40    4.68    7.54
+   155.0    0.00   -0.13   -0.53   -1.07   -1.68   -2.30   -2.93   -3.59   -4.30   -4.94   -5.33   -5.26   -4.59   -3.34   -1.64    0.29    2.36    4.67    7.52
+   160.0    0.00   -0.13   -0.52   -1.06   -1.66   -2.28   -2.92   -3.60   -4.31   -4.97   -5.37   -5.31   -4.67   -3.44   -1.76    0.17    2.26    4.57    7.40
+   165.0    0.00   -0.12   -0.50   -1.04   -1.64   -2.27   -2.91   -3.61   -4.33   -5.01   -5.43   -5.40   -4.78   -3.57   -1.92   -0.96    2.08    4.40    7.21
+   170.0    0.00   -0.12   -0.49   -1.04   -1.65   -2.27   -2.93   -3.63   -4.39   -5.07   -5.51   -5.51   -4.92   -3.75   -2.13   -0.23    1.85    4.17    6.94
+   175.0    0.00   -0.12   -0.49   -1.03   -1.64   -2.28   -2.96   -3.67   -4.44   -5.14   -5.60   -5.62   -5.07   -3.94   -2.36   -0.48    1.58    3.88    6.63
+   180.0    0.00   -0.12   -0.49   -1.03   -1.65   -2.29   -2.98   -3.73   -4.51   -5.23   -5.71   -5.75   -5.24   -4.14   -2.59   -0.76    1.29    3.59    6.30
+   185.0    0.00   -0.12   -0.49   -1.03   -1.67   -2.32   -3.02   -3.78   -4.57   -5.31   -5.81   -5.88   -5.39   -4.34   -2.84   -1.02    1.01    3.30    6.01
+   190.0    0.00   -0.11   -0.49   -1.05   -1.67   -2.35   -3.06   -3.83   -4.64   -5.39   -5.91   -6.00   -5.53   -4.52   -3.04   -1.26    0.76    3.07    5.78
+   195.0    0.00   -0.12   -0.50   -1.05   -1.69   -2.37   -3.09   -3.86   -4.68   -5.45   -5.99   -6.09   -5.66   -4.67   -3.22   -1.45    0.57    2.91    5.65
+   200.0    0.00   -0.12   -0.51   -1.06   -1.71   -2.39   -3.12   -3.89   -4.72   -5.49   -6.03   -6.16   -5.74   -4.76   -3.34   -1.58    0.47    2.85    5.64
+   205.0    0.00   -0.12   -0.52   -1.08   -1.74   -2.42   -3.13   -3.91   -4.72   -5.50   -6.06   -6.20   -5.78   -4.82   -3.40   -1.64    0.43    2.87    5.76
+   210.0    0.00   -0.12   -0.52   -1.09   -1.75   -2.44   -3.14   -3.92   -4.72   -5.51   -6.05   -6.20   -5.78   -4.82   -3.39   -1.63    0.47    2.98    6.00
+   215.0    0.00   -0.13   -0.53   -1.11   -1.77   -2.45   -3.14   -3.91   -4.71   -5.48   -6.03   -6.16   -5.75   -4.78   -3.34   -1.54    0.58    3.18    6.34
+   220.0    0.00   -0.13   -0.54   -1.12   -1.79   -2.46   -3.15   -3.89   -4.69   -5.45   -5.99   -6.11   -5.68   -4.68   -3.23   -1.42    0.75    3.42    6.72
+   225.0    0.00   -0.13   -0.54   -1.14   -1.81   -2.48   -3.15   -3.88   -4.66   -5.42   -5.94   -6.06   -5.59   -4.56   -3.09   -1.25    0.95    3.67    7.13
+   230.0    0.00   -0.13   -0.55   -1.15   -1.82   -2.47   -3.15   -3.86   -4.65   -5.39   -5.90   -5.99   -5.49   -4.42   -2.91   -1.06    1.16    3.93    7.50
+   235.0    0.00   -0.13   -0.56   -1.17   -1.84   -2.49   -3.15   -3.86   -4.63   -5.36   -5.86   -5.93   -5.38   -4.29   -2.74   -0.88    1.34    4.14    7.80
+   240.0    0.00   -0.13   -0.56   -1.18   -1.85   -2.50   -3.15   -3.86   -4.62   -5.35   -5.84   -5.87   -5.29   -4.15   -2.57   -0.71    1.49    4.29    7.99
+   245.0    0.00   -0.13   -0.57   -1.19   -1.86   -2.51   -3.16   -3.87   -4.63   -5.35   -5.83   -5.83   -5.22   -4.03   -2.43   -0.57    1.60    4.37    8.08
+   250.0    0.00   -0.14   -0.58   -1.20   -1.87   -2.51   -3.17   -3.87   -4.64   -5.37   -5.83   -5.81   -5.16   -3.94   -2.33   -0.48    1.65    4.36    8.05
+   255.0    0.00   -0.14   -0.59   -1.20   -1.87   -2.53   -3.18   -3.88   -4.65   -5.38   -5.84   -5.79   -5.11   -3.87   -2.26   -0.43    1.65    4.28    7.92
+   260.0    0.00   -0.14   -0.58   -1.20   -1.87   -2.53   -3.18   -3.89   -4.67   -5.39   -5.84   -5.78   -5.09   -3.83   -2.21   -0.42    1.60    4.16    7.72
+   265.0    0.00   -0.14   -0.58   -1.21   -1.86   -2.51   -3.18   -3.88   -4.66   -5.39   -5.83   -5.76   -5.07   -3.81   -2.20   -0.44    1.53    4.00    7.48
+   270.0    0.00   -0.14   -0.58   -1.20   -1.86   -2.51   -3.16   -3.88   -4.65   -5.37   -5.80   -5.73   -5.03   -3.79   -2.21   -0.48    1.43    3.84    7.23
+   275.0    0.00   -0.14   -0.58   -1.20   -1.85   -2.49   -3.13   -3.85   -4.61   -5.33   -5.76   -5.69   -5.00   -3.78   -2.22   -0.52    1.35    3.70    7.00
+   280.0    0.00   -0.15   -0.58   -1.19   -1.83   -2.46   -3.11   -3.81   -4.56   -5.26   -5.69   -5.63   -4.96   -3.75   -2.23   -0.56    1.29    3.60    6.85
+   285.0    0.00   -0.14   -0.58   -1.17   -1.80   -2.43   -3.07   -3.75   -4.49   -5.18   -5.60   -5.55   -4.91   -3.73   -2.22   -0.57    1.25    3.55    6.75
+   290.0    0.00   -0.14   -0.57   -1.16   -1.79   -2.39   -3.01   -3.69   -4.41   -5.09   -5.51   -5.46   -4.83   -3.68   -2.20   -0.55    1.27    3.55    6.74
+   295.0    0.00   -0.15   -0.57   -1.15   -1.76   -2.36   -2.96   -3.63   -4.33   -4.98   -5.40   -5.36   -4.74   -3.61   -2.14   -0.50    1.32    3.61    6.77
+   300.0    0.00   -0.15   -0.57   -1.13   -1.74   -2.33   -2.91   -3.56   -4.26   -4.90   -5.31   -5.25   -4.65   -3.53   -2.07   -0.42    1.42    3.70    6.85
+   305.0    0.00   -0.15   -0.56   -1.12   -1.71   -2.30   -2.88   -3.51   -4.18   -4.82   -5.22   -5.17   -4.57   -3.45   -1.98   -0.32    1.53    3.83    6.96
+   310.0    0.00   -0.15   -0.56   -1.11   -1.70   -2.28   -2.85   -3.48   -4.15   -4.76   -5.15   -5.11   -4.50   -3.38   -1.90   -0.21    1.66    3.95    7.05
+   315.0    0.00   -0.15   -0.55   -1.10   -1.69   -2.27   -2.84   -3.45   -4.12   -4.74   -5.13   -5.06   -4.45   -3.32   -1.81   -0.10    1.78    4.05    7.11
+   320.0    0.00   -0.15   -0.55   -1.10   -1.68   -2.26   -2.84   -3.46   -4.13   -4.74   -5.12   -5.05   -4.44   -3.28   -1.75   -0.03    1.87    4.12    7.11
+   325.0    0.00   -0.15   -0.56   -1.11   -1.69   -2.28   -2.86   -3.48   -4.17   -4.77   -5.15   -5.08   -4.44   -3.27   -1.73    0.02    1.91    4.12    7.05
+   330.0    0.00   -0.15   -0.56   -1.11   -1.71   -2.29   -2.89   -3.54   -4.22   -4.83   -5.19   -5.12   -4.48   -3.30   -1.75    0.01    1.90    4.08    6.91
+   335.0    0.00   -0.16   -0.57   -1.12   -1.73   -2.33   -2.95   -3.60   -4.28   -4.90   -5.27   -5.19   -4.54   -3.36   -1.80   -0.04    1.82    3.97    6.72
+   340.0    0.00   -0.16   -0.58   -1.13   -1.75   -2.37   -3.01   -3.67   -4.36   -4.98   -5.35   -5.27   -4.63   -3.47   -1.91   -0.16    1.69    3.79    6.48
+   345.0    0.00   -0.17   -0.58   -1.15   -1.78   -2.43   -3.07   -3.75   -4.45   -5.07   -5.44   -5.37   -4.74   -3.60   -2.06   -0.34    1.50    3.58    6.21
+   350.0    0.00   -0.17   -0.59   -1.16   -1.82   -2.48   -3.14   -3.84   -4.54   -5.16   -5.52   -5.47   -4.86   -3.74   -2.24   -0.54    1.27    3.33    5.92
+   355.0    0.00   -0.17   -0.59   -1.19   -1.85   -2.53   -3.21   -3.91   -4.62   -5.24   -5.61   -5.55   -4.98   -3.89   -2.44   -0.79    1.02    3.07    5.67
+   360.0    0.00   -0.17   -0.61   -1.21   -1.89   -2.58   -3.28   -3.99   -4.70   -5.31   -5.69   -5.64   -5.10   -4.06   -2.65   -1.03    0.76    2.82    5.44
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+NOV750.R4       NOVS                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               5    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     4                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+# Number of Calibrated Antennas:           5                COMMENT             
+# Number of Individual GPS-Calibrations:  14                COMMENT             
+# Number of Individual GLO-Calibrations:  14                COMMENT             
+# GLONASS PCV                                               COMMENT             
+#  derived from Delta PCV per 25.0 MHz                      COMMENT             
+#  for frequency channel number k=0                         COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.21     -0.22    169.44                              NORTH / EAST / UP   
+   NOAZI    0.00    0.34    1.29    2.69    4.29    5.76    6.77    7.09    6.64    5.50    3.92    2.18    0.52   -0.91   -2.04   -2.76   -2.85   -1.98    0.12
+     0.0    0.00    0.28    1.20    2.61    4.25    5.75    6.78    7.06    6.54    5.33    3.71    1.97    0.34   -1.07   -2.22   -3.03   -3.25   -2.50   -0.48
+     5.0    0.00    0.29    1.21    2.62    4.25    5.74    6.76    7.03    6.50    5.28    3.64    1.88    0.24   -1.19   -2.35   -3.16   -3.39   -2.66   -0.68
+    10.0    0.00    0.29    1.22    2.63    4.25    5.74    6.74    7.01    6.46    5.23    3.58    1.81    0.15   -1.28   -2.45   -3.26   -3.49   -2.77   -0.80
+    15.0    0.00    0.30    1.23    2.64    4.26    5.74    6.73    6.99    6.44    5.20    3.54    1.76    0.09   -1.35   -2.51   -3.32   -3.53   -2.80   -0.83
+    20.0    0.00    0.31    1.25    2.66    4.27    5.74    6.73    6.98    6.43    5.19    3.53    1.74    0.07   -1.37   -2.53   -3.32   -3.52   -2.76   -0.75
+    25.0    0.00    0.32    1.26    2.67    4.28    5.75    6.73    6.98    6.43    5.19    3.53    1.74    0.07   -1.37   -2.52   -3.29   -3.45   -2.65   -0.59
+    30.0    0.00    0.33    1.28    2.69    4.30    5.76    6.74    6.99    6.44    5.21    3.55    1.76    0.09   -1.34   -2.47   -3.21   -3.33   -2.49   -0.35
+    35.0    0.00    0.33    1.29    2.71    4.31    5.77    6.75    7.00    6.46    5.24    3.58    1.80    0.14   -1.28   -2.39   -3.10   -3.19   -2.28   -0.06
+    40.0    0.00    0.34    1.31    2.72    4.33    5.79    6.77    7.02    6.49    5.27    3.63    1.86    0.20   -1.21   -2.30   -2.99   -3.03   -2.07    0.23
+    45.0    0.00    0.35    1.32    2.74    4.35    5.80    6.78    7.05    6.52    5.31    3.68    1.92    0.27   -1.13   -2.21   -2.87   -2.87   -1.86    0.50
+    50.0    0.00    0.36    1.34    2.76    4.37    5.82    6.80    7.07    6.55    5.35    3.73    1.98    0.34   -1.05   -2.12   -2.76   -2.74   -1.69    0.71
+    55.0    0.00    0.37    1.35    2.78    4.39    5.84    6.82    7.09    6.58    5.39    3.78    2.04    0.40   -0.98   -2.04   -2.67   -2.63   -1.57    0.84
+    60.0    0.00    0.38    1.37    2.80    4.40    5.85    6.83    7.11    6.60    5.43    3.83    2.09    0.46   -0.92   -1.98   -2.61   -2.57   -1.51    0.89
+    65.0    0.00    0.38    1.38    2.81    4.42    5.87    6.85    7.12    6.62    5.46    3.86    2.13    0.50   -0.88   -1.94   -2.58   -2.54   -1.50    0.85
+    70.0    0.00    0.39    1.39    2.83    4.43    5.88    6.85    7.13    6.64    5.48    3.89    2.17    0.54   -0.85   -1.93   -2.57   -2.55   -1.55    0.73
+    75.0    0.00    0.40    1.41    2.84    4.45    5.89    6.86    7.14    6.65    5.50    3.92    2.19    0.56   -0.84   -1.93   -2.59   -2.59   -1.63    0.56
+    80.0    0.00    0.40    1.42    2.86    4.46    5.90    6.87    7.14    6.66    5.51    3.93    2.21    0.57   -0.84   -1.94   -2.61   -2.65   -1.73    0.38
+    85.0    0.00    0.41    1.43    2.87    4.47    5.90    6.87    7.15    6.66    5.52    3.94    2.22    0.57   -0.85   -1.96   -2.65   -2.70   -1.82    0.20
+    90.0    0.00    0.42    1.44    2.88    4.48    5.91    6.87    7.15    6.66    5.52    3.95    2.22    0.57   -0.86   -1.98   -2.67   -2.74   -1.90    0.06
+    95.0    0.00    0.42    1.44    2.89    4.48    5.91    6.88    7.15    6.67    5.53    3.96    2.23    0.57   -0.86   -1.99   -2.69   -2.76   -1.94   -0.02
+   100.0    0.00    0.42    1.45    2.89    4.49    5.92    6.88    7.16    6.68    5.54    3.96    2.23    0.57   -0.86   -1.98   -2.68   -2.76   -1.93   -0.02
+   105.0    0.00    0.43    1.45    2.89    4.49    5.92    6.89    7.17    6.69    5.55    3.98    2.24    0.58   -0.85   -1.97   -2.66   -2.72   -1.88    0.06
+   110.0    0.00    0.43    1.46    2.90    4.49    5.92    6.89    7.18    6.71    5.57    4.00    2.26    0.60   -0.83   -1.94   -2.62   -2.66   -1.78    0.21
+   115.0    0.00    0.43    1.46    2.90    4.49    5.92    6.90    7.19    6.73    5.59    4.02    2.28    0.63   -0.80   -1.90   -2.56   -2.58   -1.66    0.41
+   120.0    0.00    0.43    1.46    2.90    4.49    5.93    6.91    7.21    6.75    5.62    4.05    2.31    0.66   -0.76   -1.85   -2.50   -2.49   -1.53    0.64
+   125.0    0.00    0.43    1.46    2.89    4.48    5.93    6.92    7.23    6.77    5.65    4.08    2.34    0.69   -0.72   -1.79   -2.43   -2.41   -1.40    0.86
+   130.0    0.00    0.43    1.45    2.89    4.48    5.93    6.92    7.24    6.80    5.68    4.11    2.37    0.73   -0.68   -1.75   -2.38   -2.35   -1.30    1.06
+   135.0    0.00    0.43    1.45    2.88    4.47    5.92    6.93    7.25    6.82    5.70    4.14    2.40    0.76   -0.64   -1.71   -2.34   -2.31   -1.25    1.19
+   140.0    0.00    0.43    1.44    2.87    4.46    5.92    6.93    7.26    6.84    5.73    4.16    2.43    0.78   -0.62   -1.69   -2.34   -2.31   -1.25    1.24
+   145.0    0.00    0.42    1.44    2.86    4.45    5.91    6.92    7.27    6.85    5.74    4.18    2.44    0.79   -0.61   -1.70   -2.36   -2.36   -1.31    1.21
+   150.0    0.00    0.42    1.43    2.85    4.44    5.90    6.92    7.27    6.85    5.75    4.18    2.44    0.79   -0.63   -1.73   -2.42   -2.45   -1.43    1.08
+   155.0    0.00    0.42    1.42    2.84    4.43    5.88    6.91    7.26    6.85    5.74    4.17    2.43    0.77   -0.66   -1.79   -2.50   -2.58   -1.61    0.87
+   160.0    0.00    0.41    1.41    2.83    4.41    5.87    6.89    7.25    6.83    5.73    4.15    2.40    0.72   -0.72   -1.87   -2.62   -2.75   -1.83    0.60
+   165.0    0.00    0.41    1.40    2.81    4.40    5.85    6.87    7.23    6.81    5.70    4.12    2.36    0.67   -0.80   -1.97   -2.76   -2.93   -2.07    0.28
+   170.0    0.00    0.40    1.39    2.80    4.38    5.83    6.85    7.20    6.78    5.66    4.08    2.30    0.60   -0.89   -2.09   -2.91   -3.13   -2.33   -0.06
+   175.0    0.00    0.40    1.38    2.79    4.36    5.81    6.83    7.17    6.75    5.62    4.03    2.24    0.52   -0.99   -2.21   -3.07   -3.32   -2.58   -0.38
+   180.0    0.00    0.39    1.37    2.77    4.35    5.79    6.80    7.14    6.71    5.58    3.97    2.18    0.44   -1.08   -2.33   -3.21   -3.50   -2.79   -0.66
+   185.0    0.00    0.38    1.36    2.76    4.33    5.77    6.78    7.11    6.67    5.53    3.92    2.12    0.37   -1.17   -2.44   -3.34   -3.64   -2.96   -0.87
+   190.0    0.00    0.38    1.35    2.74    4.31    5.75    6.76    7.08    6.63    5.49    3.87    2.07    0.31   -1.24   -2.52   -3.43   -3.74   -3.07   -1.01
+   195.0    0.00    0.37    1.33    2.73    4.30    5.74    6.73    7.05    6.60    5.45    3.83    2.03    0.27   -1.29   -2.57   -3.48   -3.79   -3.11   -1.05
+   200.0    0.00    0.36    1.32    2.71    4.28    5.72    6.71    7.02    6.57    5.42    3.81    2.01    0.25   -1.30   -2.59   -3.50   -3.79   -3.08   -1.00
+   205.0    0.00    0.35    1.31    2.70    4.27    5.70    6.69    7.00    6.54    5.40    3.79    2.00    0.26   -1.29   -2.57   -3.47   -3.73   -2.98   -0.85
+   210.0    0.00    0.35    1.30    2.68    4.25    5.69    6.67    6.98    6.52    5.39    3.80    2.02    0.29   -1.25   -2.53   -3.40   -3.63   -2.82   -0.63
+   215.0    0.00    0.34    1.28    2.67    4.24    5.67    6.66    6.97    6.51    5.38    3.81    2.05    0.34   -1.19   -2.45   -3.30   -3.49   -2.62   -0.36
+   220.0    0.00    0.33    1.27    2.65    4.22    5.65    6.64    6.95    6.50    5.39    3.83    2.09    0.40   -1.12   -2.36   -3.18   -3.32   -2.38   -0.05
+   225.0    0.00    0.32    1.26    2.64    4.21    5.64    6.63    6.94    6.50    5.40    3.86    2.14    0.46   -1.03   -2.26   -3.05   -3.14   -2.13    0.27
+   230.0    0.00    0.31    1.24    2.62    4.19    5.62    6.62    6.93    6.50    5.41    3.88    2.18    0.52   -0.96   -2.16   -2.92   -2.96   -1.90    0.56
+   235.0    0.00    0.31    1.23    2.61    4.17    5.61    6.60    6.93    6.50    5.43    3.91    2.23    0.58   -0.89   -2.07   -2.80   -2.80   -1.68    0.80
+   240.0    0.00    0.30    1.22    2.59    4.16    5.60    6.60    6.92    6.51    5.44    3.94    2.26    0.62   -0.84   -2.00   -2.71   -2.67   -1.51    0.98
+   245.0    0.00    0.29    1.21    2.58    4.15    5.59    6.59    6.92    6.51    5.45    3.95    2.28    0.64   -0.81   -1.96   -2.64   -2.57   -1.40    1.07
+   250.0    0.00    0.28    1.19    2.57    4.13    5.58    6.59    6.93    6.52    5.47    3.97    2.29    0.64   -0.81   -1.95   -2.61   -2.51   -1.34    1.07
+   255.0    0.00    0.28    1.18    2.55    4.12    5.58    6.59    6.94    6.54    5.48    3.97    2.29    0.63   -0.82   -1.96   -2.60   -2.50   -1.35    0.99
+   260.0    0.00    0.27    1.17    2.54    4.12    5.57    6.60    6.95    6.55    5.49    3.98    2.28    0.61   -0.85   -1.99   -2.63   -2.52   -1.40    0.84
+   265.0    0.00    0.27    1.16    2.53    4.11    5.58    6.61    6.97    6.57    5.51    3.98    2.27    0.59   -0.89   -2.02   -2.66   -2.57   -1.50    0.63
+   270.0    0.00    0.26    1.16    2.53    4.11    5.59    6.63    6.99    6.60    5.53    3.99    2.26    0.56   -0.92   -2.06   -2.71   -2.64   -1.62    0.40
+   275.0    0.00    0.26    1.15    2.52    4.12    5.60    6.65    7.02    6.63    5.55    4.00    2.26    0.55   -0.94   -2.08   -2.74   -2.70   -1.74    0.18
+   280.0    0.00    0.25    1.15    2.52    4.12    5.62    6.68    7.06    6.66    5.58    4.02    2.27    0.56   -0.94   -2.09   -2.76   -2.75   -1.86   -0.02
+   285.0    0.00    0.25    1.14    2.52    4.13    5.64    6.71    7.09    6.70    5.61    4.05    2.29    0.58   -0.91   -2.07   -2.76   -2.78   -1.94   -0.16
+   290.0    0.00    0.25    1.14    2.52    4.14    5.66    6.74    7.13    6.74    5.65    4.09    2.33    0.62   -0.86   -2.02   -2.72   -2.79   -1.98   -0.23
+   295.0    0.00    0.25    1.14    2.53    4.15    5.68    6.77    7.17    6.78    5.69    4.13    2.38    0.69   -0.79   -1.94   -2.66   -2.75   -1.97   -0.22
+   300.0    0.00    0.24    1.14    2.53    4.17    5.71    6.81    7.21    6.82    5.73    4.17    2.43    0.76   -0.70   -1.85   -2.58   -2.69   -1.92   -0.14
+   305.0    0.00    0.24    1.14    2.54    4.18    5.73    6.84    7.24    6.85    5.76    4.21    2.48    0.83   -0.60   -1.74   -2.48   -2.61   -1.84    0.00
+   310.0    0.00    0.24    1.14    2.54    4.19    5.75    6.86    7.27    6.87    5.78    4.23    2.53    0.91   -0.51   -1.64   -2.39   -2.52   -1.74    0.18
+   315.0    0.00    0.24    1.14    2.55    4.21    5.77    6.88    7.29    6.89    5.79    4.25    2.56    0.96   -0.43   -1.55   -2.30   -2.44   -1.63    0.36
+   320.0    0.00    0.25    1.14    2.56    4.22    5.78    6.90    7.29    6.89    5.79    4.25    2.58    1.00   -0.38   -1.49   -2.24   -2.38   -1.55    0.52
+   325.0    0.00    0.25    1.15    2.56    4.23    5.79    6.90    7.29    6.87    5.77    4.23    2.57    1.00   -0.36   -1.46   -2.21   -2.35   -1.50    0.63
+   330.0    0.00    0.25    1.15    2.57    4.23    5.79    6.90    7.27    6.85    5.73    4.19    2.53    0.97   -0.38   -1.48   -2.23   -2.37   -1.51    0.67
+   335.0    0.00    0.25    1.16    2.58    4.24    5.79    6.89    7.25    6.81    5.68    4.13    2.47    0.91   -0.44   -1.54   -2.29   -2.44   -1.58    0.62
+   340.0    0.00    0.26    1.17    2.58    4.24    5.79    6.87    7.22    6.76    5.62    4.06    2.39    0.83   -0.53   -1.64   -2.40   -2.55   -1.70    0.49
+   345.0    0.00    0.26    1.17    2.59    4.24    5.78    6.85    7.18    6.71    5.55    3.98    2.29    0.72   -0.65   -1.77   -2.54   -2.71   -1.88    0.29
+   350.0    0.00    0.27    1.18    2.60    4.24    5.77    6.82    7.14    6.65    5.47    3.88    2.18    0.59   -0.79   -1.92   -2.70   -2.89   -2.08    0.04
+   355.0    0.00    0.27    1.19    2.60    4.24    5.76    6.80    7.10    6.59    5.40    3.79    2.07    0.46   -0.93   -2.07   -2.87   -3.07   -2.30   -0.23
+   360.0    0.00    0.28    1.20    2.61    4.25    5.75    6.78    7.06    6.54    5.33    3.71    1.97    0.34   -1.07   -2.22   -3.03   -3.25   -2.50   -0.48
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.37     -0.42    156.70                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.20   -0.75   -1.53   -2.39   -3.24   -4.07   -4.90   -5.68   -6.28   -6.51   -6.16   -5.15   -3.56   -1.58    0.62    3.08    6.10   10.13
+     0.0    0.00   -0.20   -0.73   -1.49   -2.33   -3.18   -4.00   -4.81   -5.55   -6.12   -6.32   -5.99   -5.07   -3.62   -1.83    0.18    2.49    5.46    9.60
+     5.0    0.00   -0.20   -0.74   -1.49   -2.34   -3.20   -4.05   -4.87   -5.64   -6.22   -6.45   -6.14   -5.25   -3.85   -2.11   -0.15    2.10    5.04    9.18
+    10.0    0.00   -0.20   -0.74   -1.50   -2.36   -3.23   -4.09   -4.93   -5.72   -6.33   -6.58   -6.30   -5.42   -4.05   -2.35   -0.45    1.76    4.68    8.83
+    15.0    0.00   -0.20   -0.74   -1.51   -2.37   -3.25   -4.13   -4.99   -5.81   -6.44   -6.70   -6.43   -5.57   -4.22   -2.56   -0.70    1.49    4.40    8.58
+    20.0    0.00   -0.20   -0.75   -1.52   -2.39   -3.27   -4.16   -5.05   -5.88   -6.54   -6.81   -6.55   -5.69   -4.35   -2.70   -0.86    1.31    4.24    8.45
+    25.0    0.00   -0.20   -0.75   -1.52   -2.40   -3.29   -4.20   -5.10   -5.95   -6.62   -6.90   -6.64   -5.77   -4.42   -2.78   -0.94    1.24    4.20    8.44
+    30.0    0.00   -0.20   -0.75   -1.53   -2.41   -3.31   -4.22   -5.14   -6.00   -6.68   -6.97   -6.69   -5.82   -4.45   -2.78   -0.92    1.29    4.29    8.56
+    35.0    0.00   -0.20   -0.75   -1.53   -2.42   -3.32   -4.24   -5.16   -6.04   -6.72   -7.01   -6.72   -5.82   -4.42   -2.72   -0.81    1.46    4.51    8.80
+    40.0    0.00   -0.20   -0.76   -1.54   -2.42   -3.33   -4.25   -5.17   -6.05   -6.73   -7.01   -6.71   -5.79   -4.35   -2.60   -0.63    1.72    4.83    9.12
+    45.0    0.00   -0.20   -0.76   -1.55   -2.43   -3.34   -4.25   -5.17   -6.04   -6.72   -6.99   -6.68   -5.73   -4.25   -2.44   -0.38    2.05    5.23    9.49
+    50.0    0.00   -0.20   -0.76   -1.55   -2.44   -3.34   -4.24   -5.15   -6.02   -6.69   -6.95   -6.63   -5.66   -4.14   -2.25   -0.11    2.42    5.66    9.89
+    55.0    0.00   -0.21   -0.77   -1.56   -2.44   -3.34   -4.23   -5.13   -5.97   -6.63   -6.89   -6.56   -5.57   -4.01   -2.06    0.18    2.80    6.10   10.28
+    60.0    0.00   -0.21   -0.77   -1.56   -2.44   -3.34   -4.22   -5.09   -5.92   -6.56   -6.81   -6.47   -5.47   -3.88   -1.87    0.44    3.15    6.49   10.62
+    65.0    0.00   -0.21   -0.77   -1.56   -2.45   -3.33   -4.20   -5.05   -5.86   -6.49   -6.73   -6.39   -5.38   -3.77   -1.71    0.67    3.44    6.82   10.90
+    70.0    0.00   -0.21   -0.77   -1.57   -2.45   -3.33   -4.18   -5.02   -5.80   -6.41   -6.64   -6.30   -5.29   -3.67   -1.59    0.84    3.65    7.05   11.09
+    75.0    0.00   -0.21   -0.77   -1.57   -2.46   -3.33   -4.17   -4.98   -5.74   -6.33   -6.56   -6.22   -5.21   -3.59   -1.50    0.94    3.77    7.16   11.19
+    80.0    0.00   -0.21   -0.77   -1.57   -2.46   -3.33   -4.16   -4.96   -5.70   -6.27   -6.48   -6.14   -5.14   -3.53   -1.45    0.98    3.80    7.17   11.20
+    85.0    0.00   -0.21   -0.77   -1.58   -2.46   -3.33   -4.15   -4.94   -5.66   -6.21   -6.42   -6.07   -5.08   -3.49   -1.43    0.97    3.74    7.08   11.13
+    90.0    0.00   -0.21   -0.77   -1.58   -2.46   -3.33   -4.15   -4.92   -5.63   -6.17   -6.36   -6.01   -5.03   -3.45   -1.44    0.91    3.61    6.91   10.99
+    95.0    0.00   -0.20   -0.77   -1.58   -2.46   -3.33   -4.15   -4.91   -5.61   -6.14   -6.32   -5.96   -4.98   -3.42   -1.45    0.83    3.45    6.68   10.82
+   100.0    0.00   -0.20   -0.77   -1.57   -2.46   -3.33   -4.14   -4.90   -5.60   -6.11   -6.28   -5.92   -4.93   -3.39   -1.45    0.75    3.29    6.45   10.62
+   105.0    0.00   -0.20   -0.77   -1.57   -2.46   -3.32   -4.14   -4.90   -5.58   -6.09   -6.25   -5.87   -4.88   -3.35   -1.44    0.70    3.15    6.23   10.43
+   110.0    0.00   -0.20   -0.77   -1.56   -2.45   -3.31   -4.13   -4.88   -5.57   -6.07   -6.22   -5.83   -4.83   -3.29   -1.40    0.69    3.06    6.07   10.28
+   115.0    0.00   -0.20   -0.76   -1.56   -2.44   -3.30   -4.11   -4.86   -5.55   -6.05   -6.19   -5.79   -4.78   -3.22   -1.33    0.74    3.04    5.98   10.18
+   120.0    0.00   -0.20   -0.76   -1.55   -2.42   -3.28   -4.08   -4.84   -5.52   -6.02   -6.16   -5.75   -4.71   -3.14   -1.23    0.84    3.11    5.99   10.14
+   125.0    0.00   -0.20   -0.75   -1.54   -2.41   -3.26   -4.06   -4.80   -5.48   -5.98   -6.12   -5.70   -4.65   -3.04   -1.10    0.99    3.25    6.08   10.16
+   130.0    0.00   -0.20   -0.75   -1.53   -2.39   -3.23   -4.02   -4.77   -5.44   -5.94   -6.08   -5.66   -4.59   -2.94   -0.95    1.18    3.46    6.24   10.24
+   135.0    0.00   -0.20   -0.74   -1.52   -2.37   -3.21   -3.99   -4.73   -5.40   -5.90   -6.04   -5.62   -4.53   -2.85   -0.80    1.39    3.70    6.46   10.37
+   140.0    0.00   -0.20   -0.74   -1.51   -2.36   -3.18   -3.96   -4.69   -5.36   -5.86   -6.00   -5.58   -4.48   -2.77   -0.66    1.59    3.94    6.70   10.52
+   145.0    0.00   -0.19   -0.74   -1.50   -2.34   -3.16   -3.93   -4.66   -5.32   -5.83   -5.97   -5.55   -4.45   -2.71   -0.56    1.75    4.15    6.92   10.65
+   150.0    0.00   -0.19   -0.73   -1.49   -2.33   -3.15   -3.91   -4.64   -5.30   -5.81   -5.96   -5.54   -4.44   -2.69   -0.51    1.85    4.31    7.08   10.76
+   155.0    0.00   -0.19   -0.73   -1.49   -2.32   -3.14   -3.90   -4.63   -5.30   -5.81   -5.97   -5.56   -4.46   -2.71   -0.52    1.87    4.37    7.17   10.80
+   160.0    0.00   -0.19   -0.73   -1.48   -2.32   -3.14   -3.91   -4.64   -5.32   -5.83   -5.99   -5.60   -4.51   -2.78   -0.59    1.80    4.32    7.14   10.76
+   165.0    0.00   -0.19   -0.73   -1.48   -2.32   -3.14   -3.92   -4.67   -5.35   -5.88   -6.05   -5.66   -4.60   -2.89   -0.74    1.64    4.16    7.01   10.63
+   170.0    0.00   -0.19   -0.73   -1.48   -2.32   -3.15   -3.95   -4.71   -5.41   -5.94   -6.13   -5.76   -4.72   -3.06   -0.95    1.39    3.90    6.76   10.41
+   175.0    0.00   -0.19   -0.73   -1.49   -2.33   -3.17   -3.98   -4.76   -5.48   -6.03   -6.23   -5.88   -4.88   -3.27   -1.22    1.07    3.55    6.43   10.12
+   180.0    0.00   -0.19   -0.73   -1.49   -2.34   -3.19   -4.01   -4.81   -5.56   -6.13   -6.35   -6.03   -5.06   -3.50   -1.52    0.71    3.16    6.04    9.77
+   185.0    0.00   -0.19   -0.73   -1.49   -2.35   -3.21   -4.05   -4.87   -5.64   -6.24   -6.49   -6.19   -5.26   -3.75   -1.83    0.34    2.75    5.64    9.41
+   190.0    0.00   -0.19   -0.73   -1.50   -2.36   -3.23   -4.08   -4.92   -5.72   -6.35   -6.63   -6.36   -5.46   -3.99   -2.13   -0.01    2.36    5.26    9.06
+   195.0    0.00   -0.19   -0.73   -1.50   -2.36   -3.24   -4.11   -4.97   -5.79   -6.46   -6.76   -6.53   -5.66   -4.22   -2.39   -0.31    2.05    4.96    8.78
+   200.0    0.00   -0.19   -0.74   -1.50   -2.37   -3.25   -4.13   -5.01   -5.86   -6.55   -6.89   -6.68   -5.83   -4.41   -2.60   -0.54    1.82    4.75    8.59
+   205.0    0.00   -0.19   -0.74   -1.51   -2.37   -3.25   -4.14   -5.03   -5.91   -6.63   -6.99   -6.80   -5.97   -4.56   -2.74   -0.67    1.71    4.66    8.53
+   210.0    0.00   -0.20   -0.74   -1.51   -2.37   -3.26   -4.14   -5.05   -5.94   -6.68   -7.07   -6.90   -6.07   -4.64   -2.81   -0.70    1.72    4.71    8.59
+   215.0    0.00   -0.20   -0.74   -1.51   -2.37   -3.25   -4.14   -5.05   -5.96   -6.72   -7.13   -6.96   -6.12   -4.67   -2.79   -0.63    1.84    4.88    8.78
+   220.0    0.00   -0.20   -0.74   -1.51   -2.37   -3.25   -4.14   -5.05   -5.97   -6.74   -7.15   -6.98   -6.12   -4.63   -2.70   -0.48    2.06    5.16    9.08
+   225.0    0.00   -0.20   -0.74   -1.51   -2.37   -3.24   -4.13   -5.05   -5.97   -6.75   -7.16   -6.97   -6.08   -4.54   -2.55   -0.26    2.34    5.51    9.46
+   230.0    0.00   -0.20   -0.74   -1.51   -2.37   -3.24   -4.12   -5.04   -5.96   -6.74   -7.13   -6.92   -5.99   -4.41   -2.36   -0.01    2.66    5.89    9.89
+   235.0    0.00   -0.20   -0.75   -1.51   -2.36   -3.23   -4.11   -5.03   -5.95   -6.72   -7.10   -6.85   -5.88   -4.24   -2.14    0.26    2.98    6.26   10.31
+   240.0    0.00   -0.20   -0.75   -1.51   -2.36   -3.22   -4.11   -5.02   -5.94   -6.69   -7.05   -6.77   -5.75   -4.07   -1.93    0.51    3.27    6.59   10.69
+   245.0    0.00   -0.20   -0.75   -1.51   -2.36   -3.22   -4.10   -5.02   -5.93   -6.66   -6.99   -6.67   -5.61   -3.90   -1.73    0.72    3.49    6.84   10.99
+   250.0    0.00   -0.20   -0.74   -1.51   -2.35   -3.22   -4.10   -5.01   -5.91   -6.63   -6.93   -6.57   -5.48   -3.74   -1.56    0.88    3.65    6.99   11.18
+   255.0    0.00   -0.20   -0.74   -1.50   -2.35   -3.21   -4.09   -5.01   -5.90   -6.60   -6.87   -6.48   -5.36   -3.60   -1.43    0.99    3.72    7.05   11.26
+   260.0    0.00   -0.20   -0.74   -1.50   -2.34   -3.20   -4.09   -5.00   -5.88   -6.57   -6.81   -6.40   -5.26   -3.50   -1.35    1.03    3.71    7.01   11.23
+   265.0    0.00   -0.20   -0.74   -1.49   -2.33   -3.19   -4.07   -4.98   -5.86   -6.53   -6.76   -6.33   -5.18   -3.43   -1.30    1.03    3.65    6.89   11.11
+   270.0    0.00   -0.20   -0.74   -1.49   -2.32   -3.18   -4.06   -4.96   -5.83   -6.49   -6.70   -6.26   -5.11   -3.38   -1.29    0.99    3.54    6.73   10.93
+   275.0    0.00   -0.20   -0.74   -1.48   -2.31   -3.17   -4.04   -4.93   -5.79   -6.44   -6.65   -6.20   -5.06   -3.34   -1.29    0.93    3.42    6.55   10.73
+   280.0    0.00   -0.20   -0.73   -1.48   -2.30   -3.15   -4.01   -4.90   -5.75   -6.39   -6.59   -6.15   -5.01   -3.32   -1.30    0.88    3.32    6.39   10.54
+   285.0    0.00   -0.20   -0.73   -1.47   -2.29   -3.13   -3.98   -4.86   -5.69   -6.33   -6.52   -6.09   -4.97   -3.29   -1.30    0.85    3.24    6.27   10.41
+   290.0    0.00   -0.20   -0.73   -1.46   -2.28   -3.11   -3.95   -4.81   -5.63   -6.26   -6.45   -6.02   -4.91   -3.25   -1.28    0.85    3.22    6.21   10.35
+   295.0    0.00   -0.20   -0.73   -1.46   -2.27   -3.09   -3.92   -4.77   -5.57   -6.18   -6.37   -5.94   -4.84   -3.20   -1.23    0.89    3.25    6.24   10.38
+   300.0    0.00   -0.20   -0.72   -1.45   -2.26   -3.07   -3.89   -4.72   -5.51   -6.11   -6.29   -5.86   -4.77   -3.12   -1.16    0.97    3.34    6.33   10.49
+   305.0    0.00   -0.20   -0.72   -1.45   -2.25   -3.06   -3.87   -4.68   -5.45   -6.03   -6.20   -5.77   -4.68   -3.03   -1.06    1.08    3.47    6.48   10.67
+   310.0    0.00   -0.20   -0.72   -1.45   -2.25   -3.05   -3.85   -4.64   -5.40   -5.96   -6.12   -5.68   -4.59   -2.94   -0.95    1.21    3.63    6.67   10.90
+   315.0    0.00   -0.20   -0.72   -1.45   -2.25   -3.04   -3.83   -4.62   -5.35   -5.89   -6.04   -5.60   -4.50   -2.85   -0.85    1.34    3.79    6.87   11.13
+   320.0    0.00   -0.19   -0.72   -1.45   -2.25   -3.04   -3.83   -4.60   -5.32   -5.84   -5.97   -5.53   -4.43   -2.77   -0.76    1.45    3.93    7.03   11.32
+   325.0    0.00   -0.19   -0.72   -1.45   -2.25   -3.05   -3.83   -4.59   -5.29   -5.81   -5.93   -5.48   -4.38   -2.73   -0.71    1.52    4.02    7.14   11.45
+   330.0    0.00   -0.19   -0.72   -1.45   -2.26   -3.06   -3.84   -4.59   -5.29   -5.79   -5.91   -5.46   -4.37   -2.72   -0.71    1.53    4.04    7.17   11.48
+   335.0    0.00   -0.20   -0.72   -1.45   -2.26   -3.07   -3.85   -4.61   -5.30   -5.79   -5.91   -5.47   -4.39   -2.77   -0.76    1.46    3.97    7.10   11.39
+   340.0    0.00   -0.20   -0.72   -1.46   -2.28   -3.09   -3.87   -4.63   -5.32   -5.82   -5.94   -5.52   -4.46   -2.86   -0.88    1.32    3.82    6.93   11.19
+   345.0    0.00   -0.20   -0.73   -1.47   -2.29   -3.11   -3.90   -4.66   -5.36   -5.87   -6.00   -5.60   -4.57   -3.00   -1.06    1.11    3.57    6.65   10.88
+   350.0    0.00   -0.20   -0.73   -1.47   -2.30   -3.13   -3.93   -4.70   -5.41   -5.93   -6.09   -5.71   -4.71   -3.18   -1.29    0.84    3.26    6.30   10.49
+   355.0    0.00   -0.20   -0.73   -1.48   -2.31   -3.15   -3.97   -4.75   -5.48   -6.02   -6.20   -5.84   -4.88   -3.40   -1.55    0.52    2.89    5.89   10.05
+   360.0    0.00   -0.20   -0.73   -1.49   -2.33   -3.18   -4.00   -4.81   -5.55   -6.12   -6.32   -5.99   -5.07   -3.62   -1.83    0.18    2.49    5.46    9.60
+   G02                                                      END OF FREQUENCY    
+   R01                                                      START OF FREQUENCY  
+      0.21     -0.22    169.44                              NORTH / EAST / UP   
+   NOAZI    0.00    0.21    0.82    1.83    3.11    4.44    5.53    6.04    5.80    4.81    3.30    1.57   -0.06   -1.46   -2.60   -3.44   -3.76   -3.15   -1.08
+     0.0    0.00    0.11    0.64    1.58    2.87    4.24    5.38    5.90    5.65    4.62    3.07    1.35   -0.27   -1.64   -2.83   -3.80   -4.36   -4.00   -2.09
+     5.0    0.00    0.12    0.65    1.60    2.87    4.22    5.34    5.83    5.55    4.50    2.94    1.20   -0.42   -1.82   -3.01   -3.99   -4.55   -4.17   -2.21
+    10.0    0.00    0.12    0.67    1.61    2.88    4.22    5.29    5.78    5.47    4.40    2.83    1.08   -0.56   -1.97   -3.17   -4.14   -4.68   -4.26   -2.24
+    15.0    0.00    0.13    0.68    1.63    2.89    4.22    5.27    5.74    5.41    4.33    2.73    0.97   -0.69   -2.10   -3.29   -4.23   -4.72   -4.24   -2.15
+    20.0    0.00    0.15    0.71    1.66    2.91    4.22    5.27    5.71    5.39    4.30    2.69    0.91   -0.76   -2.18   -3.36   -4.27   -4.68   -4.11   -1.95
+    25.0    0.00    0.16    0.73    1.68    2.93    4.24    5.28    5.73    5.38    4.29    2.68    0.88   -0.80   -2.23   -3.38   -4.24   -4.57   -3.90   -1.70
+    30.0    0.00    0.17    0.76    1.72    2.97    4.27    5.30    5.75    5.41    4.32    2.70    0.89   -0.80   -2.23   -3.36   -4.15   -4.39   -3.65   -1.37
+    35.0    0.00    0.18    0.78    1.75    3.00    4.30    5.33    5.77    5.45    4.37    2.75    0.94   -0.75   -2.18   -3.28   -4.01   -4.19   -3.35   -1.04
+    40.0    0.00    0.19    0.81    1.78    3.04    4.34    5.37    5.82    5.50    4.43    2.83    1.03   -0.68   -2.10   -3.18   -3.88   -3.97   -3.08   -0.73
+    45.0    0.00    0.21    0.83    1.83    3.08    4.38    5.41    5.87    5.56    4.51    2.93    1.13   -0.58   -2.00   -3.07   -3.72   -3.76   -2.83   -0.48
+    50.0    0.00    0.22    0.86    1.86    3.13    4.42    5.45    5.91    5.63    4.58    3.02    1.24   -0.46   -1.88   -2.94   -3.58   -3.60   -2.65   -0.31
+    55.0    0.00    0.24    0.88    1.90    3.17    4.47    5.49    5.95    5.68    4.66    3.11    1.35   -0.33   -1.75   -2.82   -3.46   -3.48   -2.54   -0.23
+    60.0    0.00    0.25    0.91    1.94    3.21    4.50    5.53    5.99    5.72    4.72    3.19    1.45   -0.21   -1.62   -2.70   -3.38   -3.43   -2.52   -0.26
+    65.0    0.00    0.26    0.94    1.97    3.25    4.55    5.57    6.02    5.75    4.77    3.25    1.53   -0.12   -1.52   -2.61   -3.32   -3.43   -2.57   -0.35
+    70.0    0.00    0.27    0.96    2.01    3.29    4.59    5.61    6.06    5.79    4.80    3.31    1.62   -0.01   -1.42   -2.55   -3.30   -3.47   -2.69   -0.52
+    75.0    0.00    0.29    1.00    2.04    3.34    4.64    5.65    6.09    5.81    4.83    3.35    1.67    0.05   -1.36   -2.50   -3.31   -3.55   -2.83   -0.73
+    80.0    0.00    0.29    1.02    2.08    3.39    4.69    5.69    6.12    5.84    4.85    3.37    1.70    0.09   -1.31   -2.47   -3.32   -3.63   -2.97   -0.92
+    85.0    0.00    0.30    1.04    2.12    3.43    4.72    5.73    6.17    5.86    4.87    3.39    1.73    0.12   -1.29   -2.46   -3.34   -3.69   -3.09   -1.09
+    90.0    0.00    0.32    1.06    2.15    3.47    4.77    5.77    6.21    5.89    4.89    3.41    1.74    0.14   -1.26   -2.45   -3.34   -3.73   -3.17   -1.19
+    95.0    0.00    0.32    1.06    2.17    3.49    4.81    5.84    6.27    5.95    4.93    3.44    1.76    0.16   -1.24   -2.43   -3.33   -3.72   -3.17   -1.21
+   100.0    0.00    0.32    1.08    2.19    3.52    4.86    5.89    6.33    6.01    4.99    3.46    1.77    0.16   -1.23   -2.39   -3.28   -3.66   -3.11   -1.15
+   105.0    0.00    0.33    1.08    2.19    3.54    4.90    5.94    6.39    6.07    5.04    3.51    1.79    0.18   -1.21   -2.36   -3.21   -3.56   -2.98   -0.99
+   110.0    0.00    0.33    1.10    2.21    3.57    4.92    5.99    6.45    6.15    5.10    3.55    1.82    0.20   -1.19   -2.31   -3.13   -3.43   -2.79   -0.76
+   115.0    0.00    0.33    1.10    2.21    3.57    4.94    6.02    6.50    6.21    5.15    3.61    1.85    0.23   -1.16   -2.25   -3.03   -3.28   -2.60   -0.49
+   120.0    0.00    0.33    1.10    2.21    3.57    4.95    6.05    6.54    6.26    5.22    3.66    1.90    0.26   -1.12   -2.19   -2.94   -3.14   -2.39   -0.20
+   125.0    0.00    0.33    1.09    2.19    3.54    4.95    6.06    6.57    6.29    5.26    3.70    1.94    0.29   -1.08   -2.13   -2.84   -3.02   -2.22    0.05
+   130.0    0.00    0.33    1.08    2.18    3.53    4.93    6.04    6.57    6.31    5.29    3.73    1.97    0.33   -1.05   -2.10   -2.79   -2.96   -2.10    0.27
+   135.0    0.00    0.33    1.07    2.16    3.50    4.89    6.02    6.55    6.31    5.29    3.75    1.99    0.35   -1.01   -2.07   -2.78   -2.94   -2.07    0.39
+   140.0    0.00    0.33    1.05    2.13    3.46    4.85    5.97    6.51    6.29    5.28    3.75    2.00    0.37   -1.00   -2.07   -2.82   -2.98   -2.12    0.41
+   145.0    0.00    0.32    1.05    2.09    3.42    4.79    5.91    6.46    6.23    5.25    3.73    1.99    0.36   -1.01   -2.11   -2.89   -3.10   -2.27    0.32
+   150.0    0.00    0.32    1.03    2.07    3.38    4.74    5.85    6.40    6.18    5.21    3.69    1.97    0.34   -1.04   -2.18   -3.00   -3.29   -2.48    0.10
+   155.0    0.00    0.31    1.01    2.04    3.33    4.67    5.78    6.32    6.12    5.14    3.65    1.94    0.31   -1.10   -2.27   -3.15   -3.52   -2.79   -0.21
+   160.0    0.00    0.30    0.98    2.01    3.28    4.62    5.70    6.25    6.03    5.08    3.59    1.89    0.25   -1.17   -2.38   -3.32   -3.78   -3.13   -0.59
+   165.0    0.00    0.30    0.96    1.97    3.24    4.55    5.64    6.18    5.97    5.02    3.52    1.83    0.19   -1.26   -2.50   -3.51   -4.04   -3.47   -1.03
+   170.0    0.00    0.29    0.94    1.95    3.20    4.50    5.57    6.12    5.90    4.95    3.46    1.75    0.11   -1.36   -2.63   -3.70   -4.30   -3.82   -1.47
+   175.0    0.00    0.29    0.93    1.92    3.16    4.46    5.53    6.05    5.85    4.89    3.40    1.68    0.02   -1.47   -2.76   -3.88   -4.52   -4.14   -1.89
+   180.0    0.00    0.27    0.91    1.89    3.13    4.42    5.48    6.00    5.80    4.84    3.33    1.62   -0.07   -1.56   -2.89   -4.02   -4.71   -4.38   -2.24
+   185.0    0.00    0.26    0.90    1.88    3.10    4.39    5.45    5.96    5.75    4.78    3.27    1.55   -0.15   -1.66   -3.00   -4.15   -4.84   -4.55   -2.50
+   190.0    0.00    0.26    0.89    1.85    3.08    4.36    5.42    5.93    5.71    4.74    3.22    1.49   -0.22   -1.74   -3.08   -4.22   -4.92   -4.64   -2.65
+   195.0    0.00    0.25    0.87    1.84    3.07    4.35    5.39    5.89    5.66    4.68    3.17    1.43   -0.27   -1.80   -3.13   -4.25   -4.93   -4.63   -2.68
+   200.0    0.00    0.24    0.86    1.82    3.05    4.33    5.36    5.86    5.63    4.65    3.14    1.39   -0.31   -1.83   -3.15   -4.24   -4.87   -4.54   -2.58
+   205.0    0.00    0.23    0.85    1.82    3.04    4.31    5.34    5.83    5.58    4.61    3.10    1.36   -0.34   -1.84   -3.15   -4.20   -4.77   -4.36   -2.37
+   210.0    0.00    0.23    0.84    1.80    3.03    4.30    5.32    5.80    5.55    4.58    3.08    1.35   -0.34   -1.83   -3.13   -4.13   -4.63   -4.13   -2.08
+   215.0    0.00    0.22    0.82    1.80    3.02    4.29    5.31    5.78    5.52    4.55    3.07    1.35   -0.32   -1.81   -3.08   -4.03   -4.46   -3.86   -1.73
+   220.0    0.00    0.21    0.81    1.78    3.01    4.27    5.29    5.75    5.49    4.53    3.05    1.36   -0.29   -1.77   -3.01   -3.92   -4.27   -3.58   -1.36
+   225.0    0.00    0.20    0.80    1.78    3.01    4.27    5.28    5.74    5.48    4.52    3.06    1.39   -0.26   -1.71   -2.93   -3.80   -4.09   -3.30   -0.98
+   230.0    0.00    0.18    0.79    1.76    3.00    4.26    5.27    5.72    5.47    4.52    3.06    1.40   -0.21   -1.65   -2.85   -3.69   -3.91   -3.06   -0.66
+   235.0    0.00    0.18    0.78    1.76    2.99    4.26    5.26    5.73    5.47    4.53    3.09    1.45   -0.16   -1.59   -2.76   -3.58   -3.76   -2.84   -0.42
+   240.0    0.00    0.17    0.77    1.75    2.98    4.26    5.27    5.73    5.49    4.55    3.12    1.49   -0.11   -1.53   -2.69   -3.49   -3.65   -2.69   -0.24
+   245.0    0.00    0.16    0.76    1.74    2.98    4.26    5.27    5.74    5.50    4.58    3.15    1.54   -0.06   -1.48   -2.63   -3.42   -3.56   -2.61   -0.17
+   250.0    0.00    0.15    0.74    1.73    2.97    4.26    5.29    5.78    5.54    4.63    3.20    1.58   -0.03   -1.44   -2.59   -3.36   -3.51   -2.58   -0.20
+   255.0    0.00    0.15    0.73    1.71    2.97    4.28    5.31    5.81    5.59    4.68    3.25    1.62    0.01   -1.39   -2.56   -3.33   -3.50   -2.62   -0.29
+   260.0    0.00    0.14    0.72    1.70    2.97    4.28    5.35    5.85    5.65    4.74    3.31    1.66    0.04   -1.37   -2.53   -3.33   -3.51   -2.68   -0.43
+   265.0    0.00    0.13    0.70    1.69    2.96    4.29    5.38    5.91    5.71    4.80    3.35    1.70    0.07   -1.36   -2.52   -3.32   -3.55   -2.78   -0.60
+   270.0    0.00    0.12    0.70    1.68    2.96    4.31    5.41    5.96    5.77    4.85    3.41    1.73    0.08   -1.35   -2.51   -3.34   -3.59   -2.87   -0.77
+   275.0    0.00    0.12    0.68    1.67    2.96    4.32    5.44    6.01    5.83    4.91    3.45    1.76    0.10   -1.33   -2.49   -3.32   -3.61   -2.94   -0.90
+   280.0    0.00    0.11    0.68    1.66    2.95    4.33    5.48    6.06    5.88    4.96    3.49    1.79    0.13   -1.31   -2.48   -3.31   -3.62   -3.00   -1.00
+   285.0    0.00    0.10    0.66    1.65    2.95    4.35    5.51    6.10    5.95    5.01    3.54    1.82    0.15   -1.28   -2.44   -3.29   -3.60   -3.00   -1.02
+   290.0    0.00    0.10    0.65    1.63    2.95    4.36    5.54    6.15    6.00    5.08    3.59    1.86    0.19   -1.24   -2.39   -3.22   -3.56   -2.96   -0.98
+   295.0    0.00    0.10    0.64    1.63    2.94    4.36    5.56    6.19    6.06    5.14    3.64    1.91    0.24   -1.19   -2.32   -3.15   -3.46   -2.86   -0.89
+   300.0    0.00    0.08    0.63    1.62    2.94    4.38    5.60    6.24    6.11    5.19    3.69    1.95    0.29   -1.13   -2.25   -3.05   -3.35   -2.74   -0.76
+   305.0    0.00    0.08    0.62    1.60    2.94    4.38    5.62    6.27    6.15    5.24    3.74    1.99    0.34   -1.06   -2.17   -2.94   -3.23   -2.61   -0.60
+   310.0    0.00    0.08    0.62    1.59    2.92    4.39    5.63    6.31    6.19    5.27    3.77    2.04    0.40   -1.00   -2.08   -2.85   -3.10   -2.47   -0.45
+   315.0    0.00    0.08    0.61    1.58    2.92    4.39    5.65    6.33    6.22    5.30    3.80    2.07    0.43   -0.94   -2.01   -2.75   -3.00   -2.36   -0.35
+   320.0    0.00    0.08    0.60    1.58    2.92    4.39    5.66    6.33    6.23    5.32    3.81    2.09    0.47   -0.90   -1.95   -2.70   -2.95   -2.32   -0.31
+   325.0    0.00    0.08    0.60    1.57    2.91    4.39    5.65    6.33    6.22    5.31    3.80    2.09    0.47   -0.88   -1.93   -2.67   -2.95   -2.33   -0.35
+   330.0    0.00    0.08    0.60    1.57    2.90    4.37    5.63    6.30    6.20    5.27    3.78    2.06    0.45   -0.89   -1.95   -2.71   -3.01   -2.43   -0.48
+   335.0    0.00    0.08    0.60    1.57    2.90    4.35    5.60    6.27    6.14    5.21    3.70    2.00    0.40   -0.95   -2.01   -2.79   -3.14   -2.61   -0.69
+   340.0    0.00    0.09    0.61    1.56    2.89    4.33    5.56    6.22    6.07    5.12    3.62    1.92    0.32   -1.03   -2.12   -2.94   -3.33   -2.85   -0.96
+   345.0    0.00    0.09    0.61    1.57    2.88    4.31    5.52    6.15    5.98    5.02    3.51    1.80    0.21   -1.15   -2.26   -3.12   -3.57   -3.15   -1.26
+   350.0    0.00    0.10    0.62    1.57    2.87    4.28    5.47    6.07    5.86    4.89    3.37    1.66    0.06   -1.30   -2.44   -3.35   -3.85   -3.45   -1.58
+   355.0    0.00    0.10    0.63    1.57    2.87    4.26    5.42    5.98    5.75    4.75    3.22    1.51   -0.10   -1.47   -2.62   -3.57   -4.11   -3.75   -1.87
+   360.0    0.00    0.11    0.64    1.58    2.87    4.24    5.38    5.90    5.65    4.62    3.07    1.35   -0.27   -1.64   -2.83   -3.80   -4.36   -4.00   -2.09
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+     -0.37     -0.42    156.70                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.19   -0.69   -1.41   -2.22   -3.03   -3.86   -4.75   -5.64   -6.39   -6.80   -6.64   -5.80   -4.34   -2.46   -0.33    2.09    5.05    9.01
+     0.0    0.00   -0.21   -0.76   -1.52   -2.34   -3.16   -3.96   -4.77   -5.58   -6.29   -6.69   -6.59   -5.91   -4.66   -3.01   -1.09    1.17    4.10    8.22
+     5.0    0.00   -0.21   -0.76   -1.50   -2.34   -3.17   -4.01   -4.85   -5.69   -6.41   -6.84   -6.76   -6.11   -4.92   -3.33   -1.46    0.74    3.63    7.71
+    10.0    0.00   -0.21   -0.75   -1.50   -2.35   -3.19   -4.05   -4.93   -5.79   -6.54   -6.98   -6.93   -6.30   -5.14   -3.60   -1.80    0.37    3.25    7.30
+    15.0    0.00   -0.21   -0.74   -1.50   -2.33   -3.21   -4.09   -5.00   -5.91   -6.67   -7.12   -7.07   -6.45   -5.33   -3.83   -2.06    0.09    2.97    7.02
+    20.0    0.00   -0.20   -0.74   -1.48   -2.33   -3.20   -4.12   -5.06   -5.98   -6.78   -7.23   -7.20   -6.57   -5.46   -3.97   -2.21   -0.07    2.83    6.88
+    25.0    0.00   -0.19   -0.72   -1.46   -2.31   -3.20   -4.14   -5.11   -6.05   -6.86   -7.32   -7.27   -6.65   -5.52   -4.03   -2.26   -0.09    2.85    6.89
+    30.0    0.00   -0.19   -0.71   -1.44   -2.29   -3.19   -4.14   -5.13   -6.09   -6.91   -7.37   -7.31   -6.67   -5.51   -3.99   -2.19    0.02    3.00    7.06
+    35.0    0.00   -0.19   -0.69   -1.42   -2.27   -3.17   -4.12   -5.12   -6.11   -6.93   -7.39   -7.31   -6.63   -5.43   -3.86   -2.00    0.28    3.30    7.36
+    40.0    0.00   -0.18   -0.69   -1.40   -2.24   -3.13   -4.09   -5.09   -6.09   -6.91   -7.36   -7.26   -6.54   -5.28   -3.65   -1.73    0.62    3.68    7.74
+    45.0    0.00   -0.17   -0.66   -1.38   -2.20   -3.10   -4.04   -5.05   -6.04   -6.87   -7.31   -7.18   -6.41   -5.10   -3.40   -1.40    1.02    4.13    8.19
+    50.0    0.00   -0.16   -0.65   -1.35   -2.18   -3.05   -3.98   -4.99   -5.99   -6.82   -7.24   -7.08   -6.26   -4.88   -3.10   -1.04    1.43    4.59    8.65
+    55.0    0.00   -0.17   -0.64   -1.33   -2.13   -3.00   -3.93   -4.93   -5.91   -6.73   -7.15   -6.96   -6.09   -4.65   -2.82   -0.68    1.84    5.03    9.10
+    60.0    0.00   -0.17   -0.63   -1.31   -2.09   -2.96   -3.87   -4.85   -5.84   -6.64   -7.04   -6.82   -5.91   -4.42   -2.53   -0.37    2.18    5.39    9.49
+    65.0    0.00   -0.16   -0.62   -1.29   -2.07   -2.90   -3.82   -4.79   -5.76   -6.56   -6.94   -6.70   -5.75   -4.22   -2.28   -0.10    2.45    5.67    9.78
+    70.0    0.00   -0.16   -0.61   -1.28   -2.04   -2.87   -3.76   -4.73   -5.70   -6.48   -6.85   -6.57   -5.60   -4.04   -2.10    0.09    2.61    5.83    9.97
+    75.0    0.00   -0.15   -0.60   -1.25   -2.03   -2.84   -3.73   -4.68   -5.64   -6.41   -6.77   -6.47   -5.47   -3.89   -1.95    0.20    2.70    5.87   10.05
+    80.0    0.00   -0.15   -0.59   -1.24   -2.00   -2.81   -3.69   -4.64   -5.59   -6.36   -6.69   -6.38   -5.37   -3.78   -1.85    0.27    2.70    5.82   10.02
+    85.0    0.00   -0.15   -0.59   -1.24   -1.99   -2.79   -3.66   -4.61   -5.55   -6.31   -6.64   -6.31   -5.29   -3.71   -1.80    0.28    2.64    5.71    9.92
+    90.0    0.00   -0.15   -0.59   -1.24   -1.97   -2.78   -3.64   -4.57   -5.51   -6.27   -6.59   -6.26   -5.24   -3.66   -1.79    0.25    2.55    5.56    9.73
+    95.0    0.00   -0.14   -0.59   -1.23   -1.97   -2.77   -3.63   -4.55   -5.48   -6.23   -6.56   -6.23   -5.22   -3.63   -1.77    0.23    2.46    5.38    9.54
+   100.0    0.00   -0.14   -0.59   -1.23   -1.97   -2.76   -3.61   -4.52   -5.45   -6.19   -6.52   -6.21   -5.19   -3.63   -1.76    0.21    2.40    5.24    9.32
+   105.0    0.00   -0.14   -0.59   -1.24   -1.98   -2.76   -3.60   -4.50   -5.40   -6.15   -6.49   -6.18   -5.17   -3.61   -1.74    0.22    2.37    5.13    9.16
+   110.0    0.00   -0.14   -0.60   -1.24   -1.99   -2.76   -3.59   -4.46   -5.36   -6.11   -6.46   -6.16   -5.17   -3.58   -1.70    0.27    2.40    5.10    9.05
+   115.0    0.00   -0.14   -0.60   -1.26   -2.01   -2.77   -3.58   -4.43   -5.33   -6.07   -6.42   -6.14   -5.16   -3.56   -1.65    0.36    2.48    5.13    9.02
+   120.0    0.00   -0.15   -0.61   -1.27   -2.01   -2.78   -3.56   -4.42   -5.29   -6.03   -6.38   -6.12   -5.12   -3.52   -1.58    0.47    2.61    5.25    9.07
+   125.0    0.00   -0.15   -0.61   -1.29   -2.03   -2.80   -3.57   -4.40   -5.25   -5.98   -6.34   -6.08   -5.10   -3.47   -1.49    0.60    2.77    5.40    9.17
+   130.0    0.00   -0.16   -0.62   -1.30   -2.05   -2.81   -3.58   -4.40   -5.23   -5.95   -6.31   -6.06   -5.07   -3.42   -1.40    0.73    2.94    5.57    9.34
+   135.0    0.00   -0.16   -0.63   -1.32   -2.08   -2.84   -3.60   -4.41   -5.22   -5.93   -6.28   -6.03   -5.04   -3.38   -1.33    0.85    3.10    5.75    9.54
+   140.0    0.00   -0.16   -0.64   -1.34   -2.11   -2.86   -3.63   -4.43   -5.23   -5.93   -6.26   -6.01   -5.02   -3.36   -1.28    0.93    3.20    5.91    9.73
+   145.0    0.00   -0.15   -0.66   -1.36   -2.13   -2.90   -3.67   -4.46   -5.25   -5.94   -6.26   -6.01   -5.02   -3.35   -1.27    0.96    3.27    6.00    9.85
+   150.0    0.00   -0.16   -0.66   -1.37   -2.16   -2.94   -3.71   -4.51   -5.29   -5.96   -6.29   -6.02   -5.04   -3.39   -1.31    0.92    3.26    6.02    9.91
+   155.0    0.00   -0.16   -0.67   -1.39   -2.19   -2.99   -3.76   -4.56   -5.34   -6.01   -6.33   -6.07   -5.09   -3.46   -1.41    0.82    3.19    5.97    9.86
+   160.0    0.00   -0.17   -0.69   -1.41   -2.22   -3.04   -3.82   -4.62   -5.41   -6.07   -6.38   -6.14   -5.18   -3.58   -1.55    0.66    3.02    5.82    9.69
+   165.0    0.00   -0.17   -0.69   -1.43   -2.25   -3.07   -3.88   -4.68   -5.48   -6.14   -6.46   -6.22   -5.31   -3.74   -1.76    0.44    2.81    5.61    9.40
+   170.0    0.00   -0.17   -0.70   -1.44   -2.28   -3.11   -3.94   -4.75   -5.55   -6.20   -6.55   -6.34   -5.46   -3.95   -2.00    0.17    2.54    5.32    9.02
+   175.0    0.00   -0.18   -0.70   -1.46   -2.30   -3.15   -3.98   -4.81   -5.62   -6.29   -6.65   -6.47   -5.65   -4.20   -2.29   -0.14    2.23    4.99    8.58
+   180.0    0.00   -0.18   -0.71   -1.47   -2.32   -3.18   -4.02   -4.85   -5.69   -6.37   -6.75   -6.62   -5.85   -4.45   -2.60   -0.45    1.92    4.66    8.11
+   185.0    0.00   -0.18   -0.71   -1.47   -2.33   -3.20   -4.05   -4.90   -5.74   -6.45   -6.87   -6.77   -6.05   -4.72   -2.90   -0.77    1.60    4.34    7.67
+   190.0    0.00   -0.18   -0.71   -1.48   -2.34   -3.22   -4.07   -4.93   -5.79   -6.53   -6.98   -6.93   -6.26   -4.97   -3.20   -1.07    1.32    4.07    7.30
+   195.0    0.00   -0.18   -0.71   -1.47   -2.33   -3.22   -4.09   -4.97   -5.83   -6.60   -7.08   -7.07   -6.45   -5.21   -3.45   -1.33    1.10    3.87    7.06
+   200.0    0.00   -0.18   -0.71   -1.46   -2.33   -3.21   -4.10   -4.99   -5.88   -6.66   -7.17   -7.20   -6.61   -5.40   -3.66   -1.53    0.93    3.76    6.96
+   205.0    0.00   -0.18   -0.71   -1.47   -2.32   -3.20   -4.10   -5.00   -5.91   -6.72   -7.24   -7.29   -6.74   -5.55   -3.81   -1.67    0.85    3.75    7.04
+   210.0    0.00   -0.19   -0.70   -1.45   -2.30   -3.19   -4.08   -5.01   -5.93   -6.76   -7.31   -7.37   -6.81   -5.62   -3.89   -1.72    0.84    3.86    7.27
+   215.0    0.00   -0.19   -0.70   -1.44   -2.28   -3.16   -4.07   -5.01   -5.95   -6.79   -7.35   -7.41   -6.85   -5.64   -3.89   -1.70    0.93    4.05    7.64
+   220.0    0.00   -0.19   -0.69   -1.42   -2.26   -3.14   -4.05   -5.00   -5.96   -6.82   -7.37   -7.42   -6.83   -5.59   -3.83   -1.60    1.10    4.34    8.12
+   225.0    0.00   -0.19   -0.69   -1.41   -2.24   -3.11   -4.02   -4.98   -5.96   -6.83   -7.39   -7.40   -6.78   -5.50   -3.68   -1.42    1.32    4.69    8.67
+   230.0    0.00   -0.19   -0.68   -1.39   -2.22   -3.08   -3.98   -4.95   -5.95   -6.83   -7.37   -7.36   -6.68   -5.36   -3.49   -1.19    1.60    5.06    9.23
+   235.0    0.00   -0.19   -0.68   -1.38   -2.18   -3.04   -3.94   -4.91   -5.92   -6.81   -7.34   -7.30   -6.57   -5.17   -3.26   -0.91    1.92    5.44    9.75
+   240.0    0.00   -0.19   -0.68   -1.37   -2.16   -2.99   -3.90   -4.87   -5.88   -6.76   -7.30   -7.23   -6.44   -4.99   -3.01   -0.62    2.24    5.79   10.19
+   245.0    0.00   -0.19   -0.68   -1.36   -2.14   -2.96   -3.84   -4.82   -5.83   -6.72   -7.24   -7.14   -6.31   -4.79   -2.75   -0.33    2.53    6.08   10.50
+   250.0    0.00   -0.19   -0.67   -1.36   -2.11   -2.93   -3.80   -4.76   -5.77   -6.66   -7.17   -7.05   -6.18   -4.60   -2.51   -0.06    2.80    6.30   10.68
+   255.0    0.00   -0.19   -0.67   -1.35   -2.10   -2.89   -3.75   -4.71   -5.71   -6.59   -7.10   -6.96   -6.05   -4.43   -2.30    0.17    3.00    6.43   10.72
+   260.0    0.00   -0.19   -0.67   -1.35   -2.09   -2.87   -3.72   -4.65   -5.64   -6.53   -7.02   -6.87   -5.94   -4.29   -2.14    0.34    3.12    6.47   10.65
+   265.0    0.00   -0.19   -0.68   -1.34   -2.08   -2.85   -3.68   -4.60   -5.59   -6.46   -6.95   -6.79   -5.85   -4.19   -2.01    0.45    3.19    6.43   10.49
+   270.0    0.00   -0.20   -0.69   -1.35   -2.08   -2.85   -3.67   -4.57   -5.54   -6.39   -6.88   -6.71   -5.77   -4.10   -1.94    0.49    3.16    6.33   10.28
+   275.0    0.00   -0.20   -0.70   -1.35   -2.09   -2.85   -3.66   -4.55   -5.50   -6.34   -6.81   -6.63   -5.69   -4.03   -1.90    0.48    3.09    6.17   10.07
+   280.0    0.00   -0.21   -0.69   -1.37   -2.11   -2.86   -3.66   -4.54   -5.47   -6.29   -6.74   -6.56   -5.62   -3.99   -1.90    0.44    3.00    6.01    9.88
+   285.0    0.00   -0.21   -0.70   -1.38   -2.13   -2.89   -3.67   -4.54   -5.44   -6.25   -6.67   -6.49   -5.56   -3.95   -1.90    0.38    2.86    5.87    9.78
+   290.0    0.00   -0.21   -0.72   -1.39   -2.15   -2.91   -3.69   -4.55   -5.43   -6.21   -6.60   -6.41   -5.48   -3.91   -1.91    0.31    2.76    5.75    9.75
+   295.0    0.00   -0.21   -0.73   -1.42   -2.17   -2.94   -3.72   -4.56   -5.42   -6.17   -6.54   -6.32   -5.40   -3.86   -1.91    0.26    2.68    5.70    9.83
+   300.0    0.00   -0.21   -0.73   -1.43   -2.20   -2.97   -3.75   -4.57   -5.41   -6.13   -6.48   -6.24   -5.33   -3.80   -1.89    0.24    2.65    5.70    9.97
+   305.0    0.00   -0.22   -0.73   -1.45   -2.22   -2.99   -3.77   -4.58   -5.41   -6.09   -6.41   -6.17   -5.25   -3.73   -1.85    0.26    2.65    5.76   10.18
+   310.0    0.00   -0.22   -0.75   -1.47   -2.25   -3.02   -3.80   -4.59   -5.39   -6.05   -6.36   -6.08   -5.16   -3.66   -1.79    0.30    2.71    5.86   10.43
+   315.0    0.00   -0.22   -0.76   -1.49   -2.27   -3.03   -3.80   -4.59   -5.36   -6.01   -6.30   -6.03   -5.10   -3.60   -1.73    0.36    2.78    5.99   10.64
+   320.0    0.00   -0.22   -0.76   -1.49   -2.29   -3.05   -3.82   -4.59   -5.35   -5.97   -6.24   -5.97   -5.05   -3.55   -1.68    0.42    2.86    6.08   10.79
+   325.0    0.00   -0.22   -0.76   -1.50   -2.29   -3.06   -3.82   -4.58   -5.32   -5.94   -6.22   -5.94   -5.03   -3.54   -1.66    0.45    2.91    6.14   10.85
+   330.0    0.00   -0.22   -0.77   -1.51   -2.30   -3.07   -3.83   -4.57   -5.31   -5.92   -6.20   -5.95   -5.05   -3.56   -1.68    0.45    2.91    6.12   10.80
+   335.0    0.00   -0.23   -0.77   -1.51   -2.30   -3.08   -3.82   -4.57   -5.31   -5.92   -6.21   -5.98   -5.09   -3.64   -1.76    0.36    2.81    6.00   10.60
+   340.0    0.00   -0.23   -0.77   -1.52   -2.32   -3.10   -3.83   -4.58   -5.32   -5.95   -6.25   -6.05   -5.19   -3.76   -1.90    0.20    2.65    5.79   10.28
+   345.0    0.00   -0.23   -0.78   -1.53   -2.33   -3.11   -3.86   -4.60   -5.35   -6.00   -6.32   -6.14   -5.33   -3.93   -2.11   -0.03    2.37    5.46    9.83
+   350.0    0.00   -0.22   -0.77   -1.52   -2.33   -3.12   -3.88   -4.64   -5.41   -6.06   -6.42   -6.28   -5.50   -4.14   -2.38   -0.34    2.02    5.05    9.32
+   355.0    0.00   -0.22   -0.77   -1.52   -2.33   -3.14   -3.92   -4.70   -5.49   -6.17   -6.55   -6.42   -5.69   -4.40   -2.68   -0.70    1.62    4.58    8.76
+   360.0    0.00   -0.21   -0.76   -1.52   -2.34   -3.16   -3.96   -4.77   -5.58   -6.29   -6.69   -6.59   -5.91   -4.66   -3.01   -1.09    1.17    4.10    8.22
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+SEN67157596+CR  NONE                                        TYPE / SERIAL NO    
+FIELD               NGS                      1    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      1.78      0.93     13.85                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.03   -0.20   -0.63   -1.22   -1.92   -2.66   -3.39   -3.87   -4.11   -4.16   -3.89   -3.23   -2.35   -0.98    1.09    3.87
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      1.92     -0.69     26.55                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.23   -0.51   -0.98   -1.49   -2.08   -2.79   -3.37   -4.01   -4.31   -4.45   -4.16   -3.43   -2.43   -1.13    0.39    2.45
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+SOK_RADIAN_IS   NONE                                        TYPE / SERIAL NO    
+FIELD               NGS                      3    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.78     -1.07    145.65                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.53   -0.70   -0.73   -0.72   -0.62   -0.56   -0.49   -0.37   -0.21   -0.06    0.11    0.17    0.25    0.32    0.69    1.47
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -2.18     -0.69    154.35                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.73   -1.01   -1.18   -1.09   -0.98   -0.79   -0.77   -0.71   -0.71   -0.75   -0.66   -0.53   -0.53   -0.63   -0.81   -0.95
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+SOK502          NONE                                        TYPE / SERIAL NO    
+FIELD               NGS                      3    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+     -0.52     -1.67     41.85                              NORTH / EAST / UP   
+   NOAZI    0.00   -2.33   -3.30   -3.53   -3.22   -2.72   -2.16   -1.79   -1.37   -1.31   -1.26   -1.29   -1.33   -1.15   -0.48    1.19    4.37
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.32     -2.29     59.35                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.83   -1.61   -2.48   -3.19   -3.78   -4.19   -4.47   -4.51   -4.31   -3.95   -3.46   -2.83   -2.43   -2.43   -3.11   -4.45
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+SOK600          NONE                                        TYPE / SERIAL NO    
+FIELD               NGS                      3    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+     -0.72     -0.07     72.35                              NORTH / EAST / UP   
+   NOAZI    0.00    0.47    0.70    0.77    0.78    0.58    0.24    0.01   -0.07   -0.11    0.04    0.21    0.47    0.85    1.32    2.09    3.27
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.12     -0.99     84.15                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.73   -1.11   -1.28   -1.29   -1.18   -1.19   -1.27   -1.51   -1.61   -1.75   -1.76   -1.63   -1.43   -1.13   -0.71    0.05
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+SOK702          NONE                                        TYPE / SERIAL NO    
+FIELD               NGS                      2    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      2.98     -0.87     69.05                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.03    0.10    0.07    0.08   -0.12   -0.46   -0.69   -0.97   -1.21   -1.36   -1.59   -1.63   -1.75   -1.88   -1.51   -0.73
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.58     -1.39     71.15                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.93   -1.31   -1.48   -1.49   -1.48   -1.59   -1.67   -2.01   -2.21   -2.45   -2.76   -2.83   -2.93   -2.93   -2.81   -2.35
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+SPP571212238+GP NONE                                        TYPE / SERIAL NO    
+FIELD               NGS                      2    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.88      1.63     76.75                              NORTH / EAST / UP   
+   NOAZI    0.00   -1.33   -1.60   -1.23   -0.62   -0.12    0.54    0.91    1.13    1.19    1.24    1.01    1.07    1.25    2.02    3.99    7.27
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -1.48      2.51     68.85                              NORTH / EAST / UP   
+   NOAZI    0.00   -2.83   -5.01   -6.68   -7.99   -8.98   -9.79  -10.47  -10.81  -11.01  -10.85  -10.26   -9.23   -7.83   -6.03   -3.51   -0.45
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+STXS9SA7224V3.0 NONE                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               5    27-APR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     4                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+# Number of Calibrated Antennas:           5                COMMENT             
+# Number of Individual GPS-Calibrations:  14                COMMENT             
+# Number of Individual GLO-Calibrations:  14                COMMENT             
+# GLONASS PCV                                               COMMENT             
+#  derived from Delta PCV per 25.0 MHz                      COMMENT             
+#  for frequency channel number k=0                         COMMENT             
+   G01                                                      START OF FREQUENCY  
+      1.11     -0.37     92.01                              NORTH / EAST / UP   
+   NOAZI    0.00    0.02    0.04   -0.04   -0.31   -0.76   -1.27   -1.65   -1.76   -1.59   -1.27   -0.99   -0.88   -0.88   -0.75   -0.21    0.88    2.31    3.50
+     0.0    0.00    0.01    0.03   -0.04   -0.27   -0.66   -1.13   -1.50   -1.65   -1.56   -1.33   -1.09   -0.94   -0.83   -0.60   -0.03    0.92    2.08    3.00
+     5.0    0.00    0.01    0.03   -0.03   -0.25   -0.63   -1.09   -1.45   -1.60   -1.52   -1.30   -1.09   -0.98   -0.91   -0.72   -0.18    0.77    1.94    2.87
+    10.0    0.00    0.01    0.03   -0.02   -0.23   -0.61   -1.05   -1.40   -1.55   -1.47   -1.27   -1.09   -1.01   -1.00   -0.85   -0.33    0.62    1.81    2.75
+    15.0    0.00    0.01    0.04   -0.01   -0.21   -0.58   -1.00   -1.35   -1.49   -1.41   -1.22   -1.08   -1.05   -1.09   -0.98   -0.49    0.48    1.69    2.65
+    20.0    0.00    0.01    0.04    0.00   -0.20   -0.55   -0.97   -1.29   -1.42   -1.35   -1.17   -1.06   -1.08   -1.18   -1.12   -0.64    0.33    1.59    2.55
+    25.0    0.00    0.01    0.04    0.00   -0.19   -0.53   -0.93   -1.24   -1.36   -1.27   -1.11   -1.03   -1.11   -1.26   -1.26   -0.81    0.19    1.49    2.47
+    30.0    0.00    0.01    0.05    0.01   -0.17   -0.51   -0.90   -1.20   -1.29   -1.20   -1.04   -0.98   -1.11   -1.34   -1.39   -0.97    0.04    1.39    2.40
+    35.0    0.00    0.01    0.05    0.02   -0.17   -0.50   -0.88   -1.16   -1.24   -1.12   -0.95   -0.91   -1.10   -1.40   -1.52   -1.14   -0.12    1.28    2.32
+    40.0    0.00    0.01    0.05    0.02   -0.16   -0.49   -0.87   -1.13   -1.19   -1.05   -0.86   -0.84   -1.06   -1.43   -1.63   -1.30   -0.28    1.16    2.25
+    45.0    0.00    0.01    0.05    0.02   -0.16   -0.49   -0.86   -1.12   -1.15   -0.98   -0.78   -0.75   -1.01   -1.44   -1.71   -1.44   -0.43    1.04    2.16
+    50.0    0.00    0.01    0.05    0.02   -0.16   -0.49   -0.87   -1.11   -1.12   -0.92   -0.69   -0.65   -0.93   -1.41   -1.76   -1.55   -0.57    0.91    2.07
+    55.0    0.00    0.02    0.06    0.03   -0.16   -0.50   -0.88   -1.12   -1.11   -0.88   -0.61   -0.55   -0.83   -1.36   -1.77   -1.62   -0.69    0.79    1.98
+    60.0    0.00    0.02    0.06    0.02   -0.17   -0.51   -0.89   -1.14   -1.11   -0.86   -0.55   -0.46   -0.73   -1.27   -1.73   -1.65   -0.76    0.70    1.90
+    65.0    0.00    0.02    0.06    0.02   -0.17   -0.53   -0.92   -1.16   -1.13   -0.85   -0.51   -0.37   -0.62   -1.16   -1.65   -1.61   -0.78    0.65    1.85
+    70.0    0.00    0.02    0.06    0.02   -0.18   -0.54   -0.94   -1.19   -1.16   -0.86   -0.48   -0.30   -0.51   -1.03   -1.52   -1.52   -0.74    0.65    1.83
+    75.0    0.00    0.02    0.06    0.02   -0.19   -0.56   -0.97   -1.23   -1.20   -0.88   -0.48   -0.25   -0.41   -0.89   -1.37   -1.38   -0.63    0.72    1.88
+    80.0    0.00    0.02    0.06    0.01   -0.20   -0.58   -1.00   -1.27   -1.24   -0.92   -0.49   -0.23   -0.32   -0.75   -1.19   -1.19   -0.45    0.86    1.99
+    85.0    0.00    0.02    0.06    0.01   -0.21   -0.60   -1.03   -1.32   -1.30   -0.98   -0.53   -0.22   -0.26   -0.62   -0.99   -0.96   -0.22    1.06    2.17
+    90.0    0.00    0.02    0.05    0.00   -0.22   -0.62   -1.06   -1.36   -1.36   -1.04   -0.58   -0.24   -0.22   -0.50   -0.81   -0.72    0.04    1.32    2.42
+    95.0    0.00    0.02    0.05    0.00   -0.23   -0.64   -1.10   -1.42   -1.43   -1.12   -0.65   -0.28   -0.20   -0.41   -0.64   -0.48    0.33    1.63    2.73
+   100.0    0.00    0.02    0.05   -0.01   -0.25   -0.67   -1.14   -1.47   -1.50   -1.20   -0.73   -0.34   -0.22   -0.36   -0.50   -0.26    0.61    1.94    3.07
+   105.0    0.00    0.02    0.05   -0.02   -0.27   -0.70   -1.19   -1.53   -1.58   -1.29   -0.83   -0.42   -0.26   -0.34   -0.40   -0.08    0.86    2.25    3.43
+   110.0    0.00    0.02    0.05   -0.03   -0.29   -0.73   -1.23   -1.60   -1.66   -1.38   -0.92   -0.51   -0.32   -0.35   -0.35    0.05    1.07    2.53    3.76
+   115.0    0.00    0.02    0.04   -0.04   -0.31   -0.77   -1.29   -1.66   -1.74   -1.48   -1.02   -0.60   -0.40   -0.40   -0.35    0.12    1.21    2.75    4.04
+   120.0    0.00    0.02    0.04   -0.05   -0.33   -0.81   -1.34   -1.73   -1.82   -1.57   -1.12   -0.71   -0.50   -0.48   -0.39    0.13    1.29    2.90    4.26
+   125.0    0.00    0.02    0.04   -0.06   -0.36   -0.85   -1.40   -1.80   -1.89   -1.65   -1.21   -0.81   -0.61   -0.58   -0.47    0.09    1.31    2.98    4.39
+   130.0    0.00    0.02    0.03   -0.07   -0.38   -0.89   -1.45   -1.86   -1.97   -1.73   -1.30   -0.90   -0.71   -0.70   -0.58    0.01    1.26    2.98    4.43
+   135.0    0.00    0.02    0.03   -0.08   -0.40   -0.92   -1.50   -1.92   -2.03   -1.80   -1.37   -0.99   -0.82   -0.81   -0.70   -0.11    1.17    2.92    4.40
+   140.0    0.00    0.02    0.03   -0.09   -0.42   -0.95   -1.54   -1.97   -2.08   -1.85   -1.44   -1.07   -0.91   -0.93   -0.83   -0.23    1.06    2.83    4.31
+   145.0    0.00    0.02    0.03   -0.09   -0.43   -0.97   -1.57   -2.01   -2.12   -1.90   -1.49   -1.13   -0.99   -1.03   -0.94   -0.35    0.95    2.71    4.20
+   150.0    0.00    0.03    0.03   -0.09   -0.44   -0.99   -1.59   -2.03   -2.15   -1.93   -1.53   -1.18   -1.06   -1.10   -1.03   -0.44    0.85    2.61    4.08
+   155.0    0.00    0.03    0.03   -0.09   -0.44   -0.99   -1.60   -2.04   -2.16   -1.95   -1.55   -1.22   -1.10   -1.15   -1.08   -0.51    0.78    2.53    4.00
+   160.0    0.00    0.03    0.04   -0.09   -0.44   -0.99   -1.59   -2.04   -2.16   -1.95   -1.57   -1.24   -1.12   -1.18   -1.10   -0.53    0.75    2.50    3.98
+   165.0    0.00    0.03    0.04   -0.09   -0.44   -0.98   -1.58   -2.03   -2.15   -1.95   -1.57   -1.24   -1.12   -1.17   -1.09   -0.51    0.77    2.52    4.02
+   170.0    0.00    0.03    0.04   -0.08   -0.43   -0.97   -1.57   -2.01   -2.14   -1.94   -1.56   -1.23   -1.11   -1.14   -1.04   -0.45    0.83    2.60    4.13
+   175.0    0.00    0.03    0.04   -0.08   -0.41   -0.95   -1.54   -1.99   -2.12   -1.92   -1.54   -1.21   -1.07   -1.08   -0.97   -0.37    0.93    2.71    4.30
+   180.0    0.00    0.03    0.05   -0.07   -0.40   -0.93   -1.52   -1.96   -2.09   -1.89   -1.52   -1.18   -1.02   -1.02   -0.88   -0.27    1.04    2.85    4.51
+   185.0    0.00    0.03    0.05   -0.06   -0.39   -0.92   -1.50   -1.93   -2.06   -1.87   -1.49   -1.14   -0.97   -0.94   -0.79   -0.16    1.16    3.00    4.73
+   190.0    0.00    0.04    0.06   -0.05   -0.38   -0.90   -1.48   -1.91   -2.04   -1.84   -1.46   -1.10   -0.92   -0.87   -0.71   -0.07    1.27    3.14    4.94
+   195.0    0.00    0.04    0.06   -0.05   -0.37   -0.89   -1.46   -1.89   -2.02   -1.82   -1.43   -1.06   -0.86   -0.81   -0.64    0.01    1.35    3.24    5.09
+   200.0    0.00    0.04    0.06   -0.04   -0.36   -0.88   -1.45   -1.88   -2.00   -1.79   -1.40   -1.02   -0.82   -0.77   -0.59    0.05    1.39    3.30    5.17
+   205.0    0.00    0.04    0.06   -0.04   -0.36   -0.87   -1.44   -1.86   -1.98   -1.77   -1.37   -0.99   -0.80   -0.74   -0.57    0.06    1.40    3.30    5.17
+   210.0    0.00    0.04    0.06   -0.04   -0.36   -0.87   -1.44   -1.85   -1.96   -1.74   -1.34   -0.97   -0.78   -0.74   -0.59    0.04    1.37    3.25    5.08
+   215.0    0.00    0.04    0.07   -0.04   -0.36   -0.87   -1.43   -1.84   -1.94   -1.72   -1.32   -0.96   -0.79   -0.77   -0.63   -0.01    1.30    3.15    4.91
+   220.0    0.00    0.04    0.07   -0.04   -0.36   -0.87   -1.43   -1.83   -1.92   -1.70   -1.30   -0.96   -0.82   -0.81   -0.69   -0.08    1.21    3.02    4.68
+   225.0    0.00    0.04    0.06   -0.04   -0.36   -0.87   -1.42   -1.82   -1.90   -1.68   -1.30   -0.97   -0.85   -0.87   -0.76   -0.16    1.11    2.86    4.42
+   230.0    0.00    0.04    0.06   -0.04   -0.36   -0.87   -1.42   -1.80   -1.88   -1.66   -1.30   -1.00   -0.91   -0.95   -0.84   -0.25    1.01    2.70    4.16
+   235.0    0.00    0.04    0.06   -0.04   -0.36   -0.87   -1.41   -1.79   -1.87   -1.65   -1.30   -1.03   -0.96   -1.02   -0.91   -0.32    0.92    2.55    3.91
+   240.0    0.00    0.04    0.06   -0.05   -0.36   -0.86   -1.40   -1.78   -1.86   -1.65   -1.32   -1.08   -1.03   -1.08   -0.97   -0.37    0.84    2.42    3.70
+   245.0    0.00    0.04    0.06   -0.05   -0.36   -0.86   -1.39   -1.76   -1.85   -1.66   -1.36   -1.13   -1.08   -1.13   -1.00   -0.40    0.80    2.33    3.55
+   250.0    0.00    0.04    0.06   -0.05   -0.36   -0.86   -1.38   -1.76   -1.85   -1.68   -1.40   -1.18   -1.14   -1.17   -1.01   -0.38    0.80    2.28    3.46
+   255.0    0.00    0.03    0.06   -0.05   -0.36   -0.85   -1.37   -1.75   -1.87   -1.72   -1.45   -1.24   -1.18   -1.17   -0.98   -0.34    0.83    2.26    3.43
+   260.0    0.00    0.03    0.05   -0.05   -0.36   -0.84   -1.37   -1.76   -1.89   -1.76   -1.51   -1.30   -1.21   -1.16   -0.91   -0.25    0.89    2.28    3.45
+   265.0    0.00    0.03    0.05   -0.05   -0.36   -0.84   -1.36   -1.77   -1.92   -1.82   -1.58   -1.36   -1.23   -1.12   -0.82   -0.13    0.99    2.33    3.50
+   270.0    0.00    0.03    0.05   -0.05   -0.35   -0.83   -1.36   -1.78   -1.95   -1.88   -1.65   -1.41   -1.24   -1.06   -0.70    0.01    1.11    2.41    3.56
+   275.0    0.00    0.03    0.05   -0.06   -0.35   -0.83   -1.36   -1.79   -1.99   -1.94   -1.72   -1.46   -1.23   -0.98   -0.56    0.18    1.25    2.49    3.63
+   280.0    0.00    0.03    0.04   -0.06   -0.35   -0.82   -1.36   -1.81   -2.03   -1.99   -1.78   -1.50   -1.22   -0.90   -0.41    0.36    1.41    2.59    3.69
+   285.0    0.00    0.02    0.04   -0.06   -0.35   -0.82   -1.37   -1.82   -2.06   -2.04   -1.82   -1.52   -1.19   -0.81   -0.26    0.53    1.56    2.69    3.73
+   290.0    0.00    0.02    0.04   -0.06   -0.35   -0.82   -1.37   -1.83   -2.08   -2.07   -1.86   -1.54   -1.17   -0.72   -0.13    0.70    1.71    2.78    3.75
+   295.0    0.00    0.02    0.03   -0.06   -0.35   -0.81   -1.36   -1.83   -2.09   -2.09   -1.87   -1.53   -1.13   -0.65   -0.01    0.84    1.85    2.87    3.75
+   300.0    0.00    0.02    0.03   -0.06   -0.34   -0.81   -1.36   -1.83   -2.09   -2.09   -1.87   -1.52   -1.10   -0.59    0.08    0.95    1.97    2.95    3.74
+   305.0    0.00    0.02    0.03   -0.06   -0.34   -0.81   -1.35   -1.82   -2.08   -2.07   -1.85   -1.49   -1.06   -0.54    0.14    1.03    2.05    3.01    3.72
+   310.0    0.00    0.02    0.03   -0.07   -0.34   -0.80   -1.34   -1.81   -2.05   -2.04   -1.81   -1.45   -1.03   -0.51    0.17    1.07    2.10    3.05    3.70
+   315.0    0.00    0.01    0.03   -0.07   -0.34   -0.80   -1.33   -1.78   -2.02   -1.99   -1.76   -1.41   -0.99   -0.50    0.17    1.07    2.11    3.07    3.67
+   320.0    0.00    0.01    0.02   -0.07   -0.34   -0.79   -1.32   -1.76   -1.98   -1.94   -1.70   -1.35   -0.96   -0.50    0.15    1.03    2.08    3.05    3.64
+   325.0    0.00    0.01    0.02   -0.07   -0.34   -0.79   -1.30   -1.73   -1.94   -1.89   -1.64   -1.30   -0.93   -0.51    0.09    0.95    2.01    3.01    3.61
+   330.0    0.00    0.01    0.02   -0.07   -0.33   -0.78   -1.29   -1.71   -1.90   -1.83   -1.57   -1.24   -0.91   -0.53    0.02    0.85    1.90    2.93    3.57
+   335.0    0.00    0.01    0.02   -0.06   -0.33   -0.76   -1.27   -1.68   -1.86   -1.78   -1.51   -1.20   -0.89   -0.56   -0.07    0.72    1.76    2.83    3.51
+   340.0    0.00    0.01    0.02   -0.06   -0.32   -0.75   -1.25   -1.65   -1.82   -1.73   -1.46   -1.16   -0.88   -0.60   -0.16    0.57    1.61    2.70    3.44
+   345.0    0.00    0.01    0.02   -0.06   -0.31   -0.73   -1.22   -1.61   -1.78   -1.68   -1.42   -1.13   -0.88   -0.65   -0.26    0.42    1.44    2.55    3.35
+   350.0    0.00    0.01    0.02   -0.05   -0.30   -0.71   -1.19   -1.58   -1.74   -1.64   -1.39   -1.11   -0.89   -0.70   -0.37    0.27    1.26    2.39    3.24
+   355.0    0.00    0.01    0.03   -0.04   -0.28   -0.69   -1.16   -1.54   -1.70   -1.60   -1.36   -1.09   -0.91   -0.76   -0.48    0.12    1.09    2.23    3.13
+   360.0    0.00    0.01    0.03   -0.04   -0.27   -0.66   -1.13   -1.50   -1.65   -1.56   -1.33   -1.09   -0.94   -0.83   -0.60   -0.03    0.92    2.08    3.00
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      2.45      0.71     98.02                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.04   -0.14   -0.22   -0.25   -0.24   -0.26   -0.40   -0.68   -1.01   -1.20   -1.06   -0.55    0.17    0.79    0.96    0.58   -0.10   -0.43
+     0.0    0.00   -0.07   -0.21   -0.34   -0.43   -0.46   -0.50   -0.60   -0.79   -1.01   -1.11   -0.96   -0.49    0.17    0.79    1.08    0.90    0.45    0.28
+     5.0    0.00   -0.07   -0.21   -0.35   -0.43   -0.48   -0.53   -0.66   -0.89   -1.13   -1.24   -1.10   -0.64    0.01    0.60    0.87    0.73    0.37    0.33
+    10.0    0.00   -0.07   -0.21   -0.35   -0.44   -0.49   -0.57   -0.72   -0.98   -1.24   -1.38   -1.24   -0.79   -0.15    0.41    0.66    0.53    0.23    0.28
+    15.0    0.00   -0.07   -0.21   -0.34   -0.44   -0.50   -0.59   -0.78   -1.06   -1.36   -1.51   -1.38   -0.93   -0.31    0.23    0.45    0.31    0.05    0.14
+    20.0    0.00   -0.07   -0.21   -0.34   -0.43   -0.50   -0.60   -0.82   -1.14   -1.47   -1.64   -1.52   -1.07   -0.45    0.07    0.26    0.10   -0.16   -0.06
+    25.0    0.00   -0.07   -0.20   -0.33   -0.42   -0.49   -0.61   -0.85   -1.20   -1.57   -1.76   -1.64   -1.19   -0.58   -0.08    0.09   -0.10   -0.36   -0.30
+    30.0    0.00   -0.07   -0.20   -0.32   -0.40   -0.47   -0.60   -0.86   -1.26   -1.65   -1.87   -1.75   -1.30   -0.68   -0.19   -0.05   -0.26   -0.54   -0.53
+    35.0    0.00   -0.07   -0.19   -0.31   -0.38   -0.44   -0.58   -0.87   -1.29   -1.72   -1.96   -1.84   -1.38   -0.76   -0.27   -0.15   -0.38   -0.68   -0.72
+    40.0    0.00   -0.07   -0.19   -0.29   -0.35   -0.41   -0.55   -0.85   -1.30   -1.76   -2.02   -1.91   -1.43   -0.79   -0.30   -0.20   -0.45   -0.77   -0.85
+    45.0    0.00   -0.06   -0.18   -0.27   -0.32   -0.37   -0.51   -0.83   -1.30   -1.78   -2.06   -1.94   -1.45   -0.79   -0.29   -0.19   -0.46   -0.79   -0.90
+    50.0    0.00   -0.06   -0.17   -0.25   -0.29   -0.32   -0.46   -0.78   -1.28   -1.78   -2.06   -1.95   -1.44   -0.75   -0.24   -0.13   -0.40   -0.75   -0.85
+    55.0    0.00   -0.06   -0.16   -0.24   -0.25   -0.27   -0.40   -0.73   -1.23   -1.75   -2.04   -1.92   -1.38   -0.67   -0.13   -0.02   -0.29   -0.63   -0.71
+    60.0    0.00   -0.06   -0.15   -0.22   -0.22   -0.22   -0.34   -0.66   -1.17   -1.70   -1.99   -1.85   -1.30   -0.55    0.01    0.14   -0.13   -0.46   -0.49
+    65.0    0.00   -0.05   -0.14   -0.20   -0.19   -0.17   -0.27   -0.59   -1.09   -1.62   -1.91   -1.76   -1.18   -0.40    0.20    0.35    0.08   -0.24   -0.20
+    70.0    0.00   -0.05   -0.14   -0.18   -0.15   -0.12   -0.20   -0.50   -1.00   -1.52   -1.81   -1.64   -1.03   -0.22    0.42    0.58    0.32    0.02    0.14
+    75.0    0.00   -0.05   -0.13   -0.16   -0.12   -0.07   -0.13   -0.41   -0.90   -1.41   -1.68   -1.50   -0.87   -0.02    0.65    0.84    0.58    0.29    0.50
+    80.0    0.00   -0.04   -0.12   -0.15   -0.10   -0.03   -0.07   -0.32   -0.78   -1.28   -1.54   -1.35   -0.69    0.19    0.89    1.11    0.85    0.56    0.86
+    85.0    0.00   -0.04   -0.11   -0.14   -0.08    0.01    0.00   -0.23   -0.67   -1.14   -1.39   -1.19   -0.51    0.40    1.13    1.36    1.11    0.82    1.18
+    90.0    0.00   -0.04   -0.11   -0.13   -0.06    0.04    0.05   -0.14   -0.55   -1.00   -1.24   -1.03   -0.34    0.59    1.35    1.60    1.34    1.04    1.45
+    95.0    0.00   -0.03   -0.10   -0.12   -0.04    0.07    0.11   -0.06   -0.43   -0.86   -1.09   -0.88   -0.19    0.75    1.54    1.81    1.54    1.21    1.65
+   100.0    0.00   -0.03   -0.10   -0.11   -0.04    0.09    0.15    0.02   -0.32   -0.73   -0.94   -0.74   -0.06    0.88    1.68    1.97    1.69    1.32    1.77
+   105.0    0.00   -0.03   -0.09   -0.11   -0.03    0.10    0.18    0.08   -0.23   -0.61   -0.82   -0.62    0.04    0.98    1.78    2.07    1.78    1.37    1.79
+   110.0    0.00   -0.03   -0.09   -0.11   -0.03    0.11    0.20    0.13   -0.14   -0.50   -0.71   -0.53    0.11    1.03    1.83    2.13    1.82    1.35    1.71
+   115.0    0.00   -0.02   -0.09   -0.11   -0.03    0.11    0.22    0.17   -0.08   -0.41   -0.62   -0.46    0.14    1.04    1.83    2.13    1.80    1.27    1.54
+   120.0    0.00   -0.02   -0.08   -0.11   -0.04    0.10    0.22    0.19   -0.03   -0.35   -0.56   -0.43    0.14    1.00    1.78    2.08    1.73    1.12    1.28
+   125.0    0.00   -0.02   -0.08   -0.11   -0.05    0.09    0.21    0.19   -0.01   -0.31   -0.53   -0.42    0.11    0.93    1.69    1.98    1.61    0.93    0.94
+   130.0    0.00   -0.02   -0.08   -0.12   -0.06    0.07    0.19    0.18    0.00   -0.30   -0.52   -0.44    0.04    0.83    1.57    1.85    1.45    0.69    0.54
+   135.0    0.00   -0.02   -0.08   -0.12   -0.08    0.05    0.16    0.16   -0.02   -0.31   -0.54   -0.49   -0.05    0.70    1.42    1.68    1.27    0.43    0.10
+   140.0    0.00   -0.02   -0.08   -0.13   -0.09    0.02    0.13    0.12   -0.06   -0.35   -0.59   -0.57   -0.15    0.55    1.25    1.51    1.08    0.16   -0.35
+   145.0    0.00   -0.02   -0.08   -0.13   -0.11   -0.01    0.08    0.07   -0.11   -0.41   -0.66   -0.65   -0.28    0.40    1.07    1.32    0.88   -0.11   -0.80
+   150.0    0.00   -0.02   -0.08   -0.14   -0.13   -0.04    0.04    0.01   -0.18   -0.48   -0.74   -0.76   -0.41    0.24    0.89    1.14    0.68   -0.35   -1.22
+   155.0    0.00   -0.01   -0.09   -0.15   -0.14   -0.08   -0.02   -0.06   -0.26   -0.57   -0.84   -0.87   -0.54    0.09    0.72    0.96    0.50   -0.57   -1.58
+   160.0    0.00   -0.01   -0.09   -0.15   -0.16   -0.11   -0.07   -0.13   -0.34   -0.66   -0.94   -0.98   -0.67   -0.06    0.56    0.80    0.34   -0.75   -1.87
+   165.0    0.00   -0.01   -0.09   -0.16   -0.18   -0.15   -0.13   -0.21   -0.44   -0.77   -1.05   -1.09   -0.79   -0.19    0.42    0.65    0.20   -0.89   -2.07
+   170.0    0.00   -0.02   -0.09   -0.17   -0.20   -0.19   -0.19   -0.29   -0.53   -0.87   -1.15   -1.20   -0.89   -0.31    0.29    0.52    0.09   -0.98   -2.19
+   175.0    0.00   -0.02   -0.10   -0.18   -0.23   -0.23   -0.25   -0.37   -0.63   -0.98   -1.26   -1.29   -0.99   -0.41    0.18    0.41    0.00   -1.02   -2.21
+   180.0    0.00   -0.02   -0.10   -0.19   -0.25   -0.27   -0.31   -0.45   -0.72   -1.08   -1.35   -1.38   -1.06   -0.48    0.10    0.32   -0.06   -1.02   -2.15
+   185.0    0.00   -0.02   -0.11   -0.21   -0.27   -0.30   -0.36   -0.52   -0.82   -1.17   -1.44   -1.45   -1.12   -0.53    0.04    0.26   -0.10   -0.98   -2.02
+   190.0    0.00   -0.02   -0.11   -0.22   -0.29   -0.34   -0.42   -0.59   -0.90   -1.26   -1.52   -1.51   -1.16   -0.56    0.00    0.22   -0.10   -0.91   -1.83
+   195.0    0.00   -0.02   -0.12   -0.23   -0.32   -0.38   -0.47   -0.66   -0.97   -1.34   -1.58   -1.55   -1.18   -0.57    0.00    0.22   -0.09   -0.81   -1.60
+   200.0    0.00   -0.02   -0.12   -0.24   -0.34   -0.41   -0.51   -0.72   -1.04   -1.40   -1.64   -1.58   -1.18   -0.56    0.02    0.24   -0.04   -0.69   -1.35
+   205.0    0.00   -0.02   -0.13   -0.25   -0.36   -0.43   -0.55   -0.76   -1.09   -1.45   -1.68   -1.60   -1.17   -0.52    0.06    0.28    0.03   -0.55   -1.09
+   210.0    0.00   -0.03   -0.13   -0.26   -0.37   -0.46   -0.57   -0.79   -1.13   -1.49   -1.70   -1.60   -1.14   -0.47    0.13    0.36    0.12   -0.40   -0.84
+   215.0    0.00   -0.03   -0.14   -0.27   -0.38   -0.47   -0.59   -0.81   -1.15   -1.51   -1.72   -1.59   -1.10   -0.40    0.22    0.46    0.23   -0.24   -0.59
+   220.0    0.00   -0.03   -0.14   -0.28   -0.39   -0.48   -0.59   -0.82   -1.16   -1.52   -1.71   -1.57   -1.06   -0.32    0.32    0.57    0.36   -0.08   -0.35
+   225.0    0.00   -0.03   -0.15   -0.29   -0.40   -0.48   -0.59   -0.80   -1.14   -1.50   -1.70   -1.55   -1.00   -0.24    0.43    0.69    0.49    0.07   -0.14
+   230.0    0.00   -0.03   -0.15   -0.29   -0.40   -0.47   -0.57   -0.78   -1.11   -1.48   -1.67   -1.51   -0.94   -0.15    0.54    0.82    0.62    0.22    0.06
+   235.0    0.00   -0.04   -0.15   -0.29   -0.39   -0.45   -0.54   -0.74   -1.07   -1.43   -1.62   -1.46   -0.88   -0.07    0.64    0.93    0.73    0.34    0.24
+   240.0    0.00   -0.04   -0.16   -0.29   -0.39   -0.43   -0.50   -0.69   -1.01   -1.37   -1.57   -1.40   -0.81    0.02    0.74    1.03    0.83    0.44    0.40
+   245.0    0.00   -0.04   -0.16   -0.29   -0.37   -0.41   -0.46   -0.63   -0.94   -1.30   -1.50   -1.33   -0.74    0.09    0.82    1.10    0.89    0.51    0.53
+   250.0    0.00   -0.04   -0.16   -0.29   -0.36   -0.38   -0.41   -0.56   -0.86   -1.22   -1.42   -1.25   -0.66    0.17    0.88    1.15    0.91    0.53    0.62
+   255.0    0.00   -0.04   -0.16   -0.28   -0.34   -0.34   -0.36   -0.49   -0.78   -1.13   -1.33   -1.16   -0.58    0.24    0.93    1.17    0.89    0.50    0.65
+   260.0    0.00   -0.04   -0.16   -0.28   -0.33   -0.31   -0.31   -0.43   -0.70   -1.04   -1.23   -1.07   -0.50    0.30    0.97    1.16    0.84    0.41    0.63
+   265.0    0.00   -0.05   -0.16   -0.27   -0.31   -0.28   -0.26   -0.37   -0.63   -0.95   -1.14   -0.98   -0.41    0.37    0.99    1.13    0.75    0.28    0.53
+   270.0    0.00   -0.05   -0.16   -0.26   -0.29   -0.25   -0.22   -0.31   -0.56   -0.87   -1.04   -0.88   -0.32    0.43    1.02    1.09    0.64    0.11    0.35
+   275.0    0.00   -0.05   -0.16   -0.26   -0.28   -0.23   -0.19   -0.26   -0.50   -0.79   -0.95   -0.78   -0.23    0.50    1.04    1.05    0.51   -0.11    0.10
+   280.0    0.00   -0.05   -0.16   -0.25   -0.27   -0.21   -0.16   -0.23   -0.44   -0.72   -0.86   -0.68   -0.14    0.57    1.07    1.02    0.39   -0.34   -0.22
+   285.0    0.00   -0.05   -0.16   -0.25   -0.26   -0.19   -0.14   -0.20   -0.40   -0.66   -0.78   -0.59   -0.05    0.64    1.11    1.00    0.28   -0.57   -0.58
+   290.0    0.00   -0.05   -0.16   -0.25   -0.25   -0.19   -0.13   -0.18   -0.36   -0.61   -0.72   -0.51    0.03    0.71    1.16    1.01    0.21   -0.78   -0.97
+   295.0    0.00   -0.05   -0.16   -0.24   -0.25   -0.18   -0.12   -0.16   -0.34   -0.56   -0.66   -0.44    0.10    0.78    1.22    1.04    0.17   -0.95   -1.35
+   300.0    0.00   -0.06   -0.16   -0.25   -0.25   -0.18   -0.12   -0.16   -0.32   -0.53   -0.61   -0.39    0.17    0.85    1.29    1.10    0.19   -1.06   -1.69
+   305.0    0.00   -0.06   -0.16   -0.25   -0.25   -0.19   -0.13   -0.16   -0.31   -0.51   -0.57   -0.34    0.21    0.90    1.36    1.18    0.24   -1.11   -1.96
+   310.0    0.00   -0.06   -0.17   -0.25   -0.26   -0.20   -0.14   -0.17   -0.31   -0.49   -0.55   -0.32    0.24    0.95    1.42    1.28    0.34   -1.09   -2.12
+   315.0    0.00   -0.06   -0.17   -0.26   -0.27   -0.22   -0.16   -0.18   -0.32   -0.49   -0.54   -0.31    0.25    0.97    1.48    1.38    0.48   -0.99   -2.17
+   320.0    0.00   -0.06   -0.17   -0.27   -0.29   -0.24   -0.18   -0.20   -0.33   -0.50   -0.54   -0.31    0.24    0.97    1.52    1.48    0.63   -0.83   -2.09
+   325.0    0.00   -0.06   -0.18   -0.28   -0.30   -0.26   -0.21   -0.23   -0.35   -0.51   -0.56   -0.34    0.21    0.95    1.53    1.56    0.78   -0.62   -1.89
+   330.0    0.00   -0.07   -0.18   -0.29   -0.32   -0.29   -0.24   -0.26   -0.39   -0.55   -0.60   -0.38    0.16    0.90    1.51    1.61    0.93   -0.38   -1.60
+   335.0    0.00   -0.07   -0.19   -0.30   -0.34   -0.31   -0.28   -0.31   -0.43   -0.59   -0.64   -0.44    0.09    0.83    1.47    1.62    1.05   -0.13   -1.24
+   340.0    0.00   -0.07   -0.19   -0.31   -0.36   -0.34   -0.32   -0.36   -0.48   -0.65   -0.71   -0.51    0.00    0.73    1.38    1.59    1.12    0.09   -0.85
+   345.0    0.00   -0.07   -0.20   -0.32   -0.38   -0.38   -0.36   -0.41   -0.55   -0.72   -0.79   -0.60   -0.10    0.62    1.27    1.52    1.15    0.28   -0.47
+   350.0    0.00   -0.07   -0.20   -0.33   -0.40   -0.41   -0.41   -0.47   -0.62   -0.81   -0.88   -0.71   -0.22    0.48    1.13    1.41    1.12    0.40   -0.14
+   355.0    0.00   -0.07   -0.21   -0.34   -0.41   -0.43   -0.45   -0.54   -0.71   -0.90   -0.99   -0.83   -0.35    0.33    0.97    1.26    1.03    0.46    0.12
+   360.0    0.00   -0.07   -0.21   -0.34   -0.43   -0.46   -0.50   -0.60   -0.79   -1.01   -1.11   -0.96   -0.49    0.17    0.79    1.08    0.90    0.45    0.28
+   G02                                                      END OF FREQUENCY    
+   R01                                                      START OF FREQUENCY  
+      1.11     -0.37     92.01                              NORTH / EAST / UP   
+   NOAZI    0.00    0.05    0.16    0.18    0.01   -0.41   -0.95   -1.42   -1.65   -1.57   -1.28   -0.94   -0.70   -0.59   -0.42    0.08    1.09    2.53    3.98
+     0.0    0.00    0.07    0.21    0.27    0.14   -0.20   -0.72   -1.18   -1.47   -1.50   -1.31   -1.04   -0.78   -0.55   -0.27    0.27    1.10    2.17    3.09
+     5.0    0.00    0.07    0.21    0.28    0.16   -0.17   -0.65   -1.11   -1.38   -1.40   -1.23   -0.97   -0.76   -0.58   -0.34    0.16    0.98    2.04    2.96
+    10.0    0.00    0.07    0.21    0.28    0.17   -0.15   -0.60   -1.04   -1.31   -1.31   -1.14   -0.92   -0.73   -0.62   -0.42    0.04    0.85    1.93    2.90
+    15.0    0.00    0.07    0.21    0.29    0.19   -0.12   -0.55   -0.98   -1.21   -1.22   -1.05   -0.86   -0.71   -0.65   -0.51   -0.10    0.74    1.85    2.89
+    20.0    0.00    0.07    0.21    0.29    0.19   -0.10   -0.53   -0.92   -1.13   -1.14   -0.96   -0.78   -0.69   -0.69   -0.61   -0.21    0.62    1.81    2.94
+    25.0    0.00    0.07    0.20    0.28    0.19   -0.09   -0.49   -0.87   -1.07   -1.04   -0.87   -0.71   -0.66   -0.72   -0.71   -0.36    0.51    1.78    3.03
+    30.0    0.00    0.06    0.21    0.28    0.20   -0.08   -0.47   -0.84   -1.00   -0.96   -0.77   -0.62   -0.61   -0.74   -0.79   -0.49    0.39    1.76    3.14
+    35.0    0.00    0.06    0.20    0.29    0.19   -0.09   -0.48   -0.81   -0.95   -0.88   -0.67   -0.52   -0.56   -0.76   -0.88   -0.62    0.27    1.74    3.23
+    40.0    0.00    0.06    0.20    0.28    0.19   -0.09   -0.48   -0.79   -0.91   -0.81   -0.57   -0.43   -0.49   -0.75   -0.95   -0.73    0.18    1.70    3.31
+    45.0    0.00    0.06    0.19    0.26    0.18   -0.11   -0.48   -0.79   -0.88   -0.75   -0.49   -0.34   -0.41   -0.72   -0.98   -0.81    0.09    1.67    3.35
+    50.0    0.00    0.05    0.19    0.25    0.17   -0.11   -0.50   -0.79   -0.86   -0.70   -0.41   -0.24   -0.32   -0.67   -0.98   -0.86    0.03    1.61    3.34
+    55.0    0.00    0.06    0.19    0.26    0.16   -0.13   -0.52   -0.81   -0.87   -0.67   -0.35   -0.15   -0.23   -0.59   -0.95   -0.88   -0.03    1.56    3.29
+    60.0    0.00    0.06    0.19    0.24    0.15   -0.15   -0.53   -0.83   -0.88   -0.67   -0.32   -0.08   -0.15   -0.50   -0.88   -0.85   -0.04    1.51    3.21
+    65.0    0.00    0.06    0.18    0.24    0.14   -0.17   -0.56   -0.86   -0.92   -0.68   -0.30   -0.02   -0.06   -0.39   -0.79   -0.77   -0.01    1.48    3.12
+    70.0    0.00    0.06    0.18    0.24    0.13   -0.18   -0.59   -0.90   -0.96   -0.71   -0.30    0.02    0.02   -0.29   -0.66   -0.66    0.05    1.48    3.04
+    75.0    0.00    0.05    0.18    0.24    0.12   -0.20   -0.62   -0.94   -1.01   -0.75   -0.33    0.03    0.08   -0.18   -0.53   -0.53    0.16    1.53    3.02
+    80.0    0.00    0.05    0.18    0.23    0.11   -0.22   -0.65   -0.99   -1.07   -0.81   -0.37    0.23    0.13   -0.08   -0.38   -0.36    0.30    1.63    3.04
+    85.0    0.00    0.05    0.18    0.23    0.11   -0.24   -0.69   -1.05   -1.14   -0.91   -0.44   -0.03    0.13    0.62   -0.24   -0.18    0.48    1.75    3.14
+    90.0    0.00    0.05    0.16    0.22    0.10   -0.26   -0.72   -1.10   -1.22   -0.99   -0.54   -0.09    0.13    0.05   -0.11   -0.01    0.67    1.94    3.31
+    95.0    0.00    0.04    0.16    0.22    0.09   -0.27   -0.76   -1.18   -1.30   -1.10   -0.64   -0.17    0.10    0.09   -0.01    0.15    0.87    2.15    3.55
+   100.0    0.00    0.04    0.16    0.21    0.07   -0.30   -0.80   -1.23   -1.39   -1.20   -0.75   -0.27    0.02    0.08    0.05    0.27    1.05    2.37    3.82
+   105.0    0.00    0.04    0.16    0.20    0.06   -0.33   -0.85   -1.30   -1.48   -1.31   -0.87   -0.39   -0.06    0.04    0.08    0.37    1.19    2.57    4.12
+   110.0    0.00    0.04    0.16    0.19    0.04   -0.35   -0.89   -1.37   -1.57   -1.41   -0.99   -0.51   -0.16   -0.03    0.05    0.41    1.30    2.75    4.39
+   115.0    0.00    0.04    0.15    0.18    0.02   -0.39   -0.94   -1.43   -1.65   -1.52   -1.11   -0.63   -0.28   -0.13   -0.01    0.40    1.35    2.88    4.59
+   120.0    0.00    0.04    0.15    0.17    0.01   -0.43   -0.99   -1.50   -1.73   -1.62   -1.23   -0.76   -0.41   -0.26   -0.10    0.34    1.35    2.94    4.75
+   125.0    0.00    0.03    0.14    0.16   -0.02   -0.46   -1.04   -1.56   -1.80   -1.71   -1.33   -0.88   -0.56   -0.40   -0.24    0.24    1.31    2.95    4.80
+   130.0    0.00    0.03    0.13    0.15   -0.05   -0.50   -1.09   -1.62   -1.88   -1.79   -1.44   -1.00   -0.69   -0.55   -0.39    0.12    1.20    2.88    4.77
+   135.0    0.00    0.03    0.13    0.13   -0.07   -0.54   -1.15   -1.68   -1.96   -1.87   -1.52   -1.11   -0.82   -0.69   -0.54   -0.05    1.06    2.78    4.68
+   140.0    0.00    0.03    0.12    0.11   -0.10   -0.58   -1.19   -1.74   -2.01   -1.92   -1.59   -1.20   -0.93   -0.83   -0.70   -0.20    0.92    2.65    4.53
+   145.0    0.00    0.03    0.12    0.11   -0.12   -0.61   -1.24   -1.79   -2.06   -1.99   -1.65   -1.27   -1.02   -0.96   -0.84   -0.35    0.78    2.50    4.37
+   150.0    0.00    0.03    0.10    0.10   -0.15   -0.65   -1.28   -1.83   -2.11   -2.03   -1.70   -1.32   -1.10   -1.05   -0.96   -0.47    0.65    2.38    4.22
+   155.0    0.00    0.03    0.10    0.08   -0.16   -0.67   -1.31   -1.87   -2.14   -2.06   -1.72   -1.36   -1.14   -1.10   -1.03   -0.56    0.57    2.29    4.12
+   160.0    0.00    0.03    0.10    0.07   -0.18   -0.69   -1.33   -1.90   -2.16   -2.08   -1.75   -1.38   -1.16   -1.14   -1.06   -0.60    0.52    2.24    4.08
+   165.0    0.00    0.03    0.09    0.06   -0.21   -0.71   -1.36   -1.92   -2.18   -2.09   -1.75   -1.37   -1.15   -1.12   -1.06   -0.60    0.53    2.26    4.12
+   170.0    0.00    0.03    0.09    0.06   -0.22   -0.73   -1.38   -1.92   -2.19   -2.09   -1.74   -1.35   -1.12   -1.08   -1.00   -0.54    0.59    2.36    4.23
+   175.0    0.00    0.03    0.08    0.05   -0.21   -0.74   -1.37   -1.94   -2.19   -2.08   -1.71   -1.32   -1.07   -1.01   -0.92   -0.46    0.70    2.48    4.40
+   180.0    0.00    0.02    0.09    0.05   -0.22   -0.73   -1.37   -1.92   -2.18   -2.06   -1.69   -1.27   -1.00   -0.92   -0.81   -0.33    0.83    2.64    4.61
+   185.0    0.00    0.02    0.09    0.06   -0.22   -0.73   -1.36   -1.90   -2.15   -2.03   -1.65   -1.21   -0.92   -0.81   -0.68   -0.19    0.98    2.81    4.83
+   190.0    0.00    0.03    0.10    0.06   -0.21   -0.72   -1.34   -1.88   -2.11   -1.99   -1.61   -1.15   -0.85   -0.71   -0.57   -0.06    1.13    2.98    5.03
+   195.0    0.00    0.03    0.10    0.06   -0.20   -0.70   -1.31   -1.84   -2.08   -1.96   -1.56   -1.09   -0.76   -0.62   -0.45    0.07    1.25    3.10    5.18
+   200.0    0.00    0.03    0.10    0.07   -0.18   -0.68   -1.29   -1.81   -2.04   -1.91   -1.51   -1.04   -0.70   -0.55   -0.36    0.17    1.35    3.19    5.26
+   205.0    0.00    0.04    0.10    0.08   -0.17   -0.65   -1.25   -1.75   -1.99   -1.86   -1.46   -0.99   -0.66   -0.47   -0.28    0.24    1.40    3.21    5.27
+   210.0    0.00    0.04    0.10    0.09   -0.16   -0.63   -1.22   -1.71   -1.93   -1.79   -1.41   -0.96   -0.62   -0.44   -0.26    0.27    1.41    3.19    5.20
+   215.0    0.00    0.04    0.12    0.09   -0.15   -0.60   -1.17   -1.66   -1.88   -1.75   -1.37   -0.93   -0.61   -0.44   -0.26    0.27    1.39    3.12    5.07
+   220.0    0.00    0.04    0.12    0.10   -0.13   -0.57   -1.13   -1.61   -1.81   -1.70   -1.33   -0.92   -0.62   -0.45   -0.28    0.23    1.32    3.01    4.89
+   225.0    0.00    0.04    0.12    0.11   -0.10   -0.55   -1.09   -1.56   -1.76   -1.66   -1.31   -0.91   -0.63   -0.49   -0.32    0.18    1.24    2.88    4.71
+   230.0    0.00    0.05    0.12    0.13   -0.08   -0.52   -1.07   -1.51   -1.72   -1.62   -1.29   -0.93   -0.68   -0.55   -0.38    0.11    1.16    2.75    4.52
+   235.0    0.00    0.05    0.13    0.14   -0.07   -0.50   -1.03   -1.48   -1.69   -1.59   -1.28   -0.93   -0.70   -0.61   -0.43    0.05    1.09    2.64    4.36
+   240.0    0.00    0.05    0.15    0.14   -0.05   -0.48   -1.01   -1.46   -1.66   -1.58   -1.29   -0.97   -0.76   -0.65   -0.49    0.01    1.03    2.55    4.22
+   245.0    0.00    0.06    0.15    0.15   -0.04   -0.47   -0.99   -1.43   -1.64   -1.56   -1.31   -1.01   -0.81   -0.70   -0.52   -0.02    1.01    2.51    4.13
+   250.0    0.00    0.06    0.16    0.16   -0.03   -0.46   -0.97   -1.42   -1.64   -1.58   -1.35   -1.06   -0.87   -0.76   -0.54    0.01    1.06    2.51    4.08
+   255.0    0.00    0.05    0.17    0.17   -0.03   -0.45   -0.97   -1.42   -1.66   -1.61   -1.39   -1.11   -0.92   -0.78   -0.52    0.05    1.12    2.56    4.07
+   260.0    0.00    0.06    0.16    0.17   -0.02   -0.44   -0.97   -1.43   -1.68   -1.65   -1.44   -1.17   -0.97   -0.79   -0.48    0.15    1.23    2.65    4.08
+   265.0    0.00    0.06    0.17    0.18   -0.02   -0.44   -0.97   -1.45   -1.72   -1.71   -1.51   -1.24   -1.01   -0.79   -0.42    0.27    1.38    2.77    4.11
+   270.0    0.00    0.06    0.18    0.18   -0.01   -0.44   -0.99   -1.48   -1.76   -1.77   -1.58   -1.30   -1.05   -0.77   -0.34    0.41    1.55    2.91    4.14
+   275.0    0.00    0.07    0.18    0.18   -0.01   -0.45   -1.00   -1.51   -1.81   -1.84   -1.66   -1.37   -1.07   -0.74   -0.24    0.56    1.72    3.04    4.18
+   280.0    0.00    0.07    0.18    0.18   -0.01   -0.45   -1.02   -1.55   -1.87   -1.92   -1.74   -1.44   -1.10   -0.72   -0.14    0.72    1.90    3.19    4.21
+   285.0    0.00    0.06    0.18    0.20   -0.01   -0.46   -1.05   -1.59   -1.93   -1.99   -1.80   -1.49   -1.12   -0.68   -0.06    0.86    2.05    3.32    4.24
+   290.0    0.00    0.07    0.19    0.20   -0.02   -0.47   -1.07   -1.63   -1.97   -2.04   -1.86   -1.54   -1.14   -0.65    0.01    0.98    2.19    3.43    4.27
+   295.0    0.00    0.07    0.19    0.21   -0.02   -0.47   -1.08   -1.65   -2.02   -2.09   -1.90   -1.56   -1.14   -0.63    0.08    1.06    2.29    3.51    4.29
+   300.0    0.00    0.07    0.19    0.21   -0.01   -0.48   -1.10   -1.68   -2.06   -2.13   -1.93   -1.58   -1.14   -0.61    0.11    1.11    2.35    3.57    4.32
+   305.0    0.00    0.08    0.20    0.22    0.34   -0.48   -1.11   -1.69   -2.08   -2.14   -1.96   -1.59   -1.13   -0.60    0.12    1.13    2.37    3.59    4.35
+   310.0    0.00    0.08    0.20    0.21    0.34   -0.47   -1.11   -1.70   -2.07   -2.15   -1.95   -1.58   -1.13   -0.60    0.12    1.11    2.36    3.59    4.37
+   315.0    0.00    0.07    0.20    0.22    0.34   -0.47   -1.10   -1.68   -2.06   -2.13   -1.93   -1.56   -1.11   -0.60    0.10    1.07    2.30    3.55    4.36
+   320.0    0.00    0.07    0.20    0.22    0.01   -0.46   -1.09   -1.67   -2.04   -2.10   -1.88   -1.51   -1.08   -0.59    0.08    1.01    2.22    3.46    4.33
+   325.0    0.00    0.07    0.20    0.23    0.02   -0.44   -1.06   -1.63   -2.00   -2.06   -1.84   -1.46   -1.04   -0.57    0.04    0.93    2.11    3.36    4.28
+   330.0    0.00    0.07    0.20    0.23    0.04   -0.42   -1.02   -1.60   -1.95   -1.99   -1.77   -1.40   -1.00   -0.57   -0.02    0.84    1.97    3.22    4.18
+   335.0    0.00    0.08    0.20    0.25    0.05   -0.39   -0.98   -1.54   -1.89   -1.93   -1.69   -1.35   -0.95   -0.56   -0.05    0.74    1.82    3.05    4.03
+   340.0    0.00    0.08    0.21    0.25    0.07   -0.36   -0.94   -1.48   -1.82   -1.85   -1.62   -1.28   -0.91   -0.55   -0.07    0.64    1.68    2.87    3.85
+   345.0    0.00    0.08    0.21    0.25    0.09   -0.32   -0.88   -1.41   -1.74   -1.77   -1.55   -1.22   -0.87   -0.54   -0.11    0.55    1.54    2.68    3.65
+   350.0    0.00    0.08    0.21    0.27    0.10   -0.27   -0.82   -1.34   -1.65   -1.67   -1.48   -1.15   -0.84   -0.54   -0.16    0.46    1.39    2.49    3.44
+   355.0    0.00    0.08    0.21    0.28    0.13   -0.24   -0.77   -1.26   -1.56   -1.59   -1.39   -1.09   -0.80   -0.55   -0.20    0.36    1.25    2.32    3.25
+   360.0    0.00    0.07    0.21    0.27    0.14   -0.20   -0.72   -1.18   -1.47   -1.50   -1.31   -1.04   -0.78   -0.55   -0.27    0.27    1.10    2.17    3.09
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+      2.45      0.71     98.02                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.05   -0.20   -0.32   -0.37   -0.34   -0.29   -0.33   -0.52   -0.78   -0.96   -0.88   -0.46    0.13    0.65    0.75    0.37   -0.27   -0.50
+     0.0    0.00   -0.11   -0.27   -0.41   -0.48   -0.48   -0.50   -0.58   -0.74   -0.92   -0.97   -0.78   -0.30    0.34    0.91    1.15    0.92    0.39   -0.04
+     5.0    0.00   -0.11   -0.27   -0.41   -0.47   -0.48   -0.49   -0.59   -0.79   -1.00   -1.06   -0.87   -0.38    0.28    0.84    1.06    0.85    0.36    0.04
+    10.0    0.00   -0.11   -0.27   -0.40   -0.46   -0.46   -0.49   -0.60   -0.83   -1.06   -1.15   -0.96   -0.47    0.20    0.76    0.95    0.74    0.29    0.08
+    15.0    0.00   -0.10   -0.27   -0.39   -0.45   -0.45   -0.47   -0.60   -0.85   -1.12   -1.23   -1.06   -0.55    0.11    0.66    0.84    0.61    0.20    0.07
+    20.0    0.00   -0.10   -0.27   -0.39   -0.44   -0.43   -0.45   -0.59   -0.86   -1.17   -1.31   -1.15   -0.65    0.02    0.56    0.73    0.49    0.09    0.02
+    25.0    0.00   -0.10   -0.26   -0.39   -0.43   -0.41   -0.43   -0.57   -0.86   -1.20   -1.38   -1.24   -0.74   -0.07    0.46    0.63    0.36   -0.01   -0.06
+    30.0    0.00   -0.10   -0.26   -0.38   -0.41   -0.38   -0.39   -0.54   -0.86   -1.22   -1.44   -1.30   -0.81   -0.14    0.39    0.53    0.27   -0.11   -0.15
+    35.0    0.00   -0.10   -0.26   -0.38   -0.39   -0.34   -0.35   -0.51   -0.84   -1.23   -1.47   -1.35   -0.87   -0.20    0.34    0.47    0.19   -0.16   -0.21
+    40.0    0.00   -0.10   -0.26   -0.36   -0.37   -0.32   -0.31   -0.46   -0.81   -1.22   -1.49   -1.39   -0.90   -0.22    0.32    0.44    0.16   -0.20   -0.25
+    45.0    0.00   -0.09   -0.25   -0.35   -0.35   -0.28   -0.26   -0.42   -0.78   -1.21   -1.49   -1.39   -0.91   -0.22    0.33    0.46    0.17   -0.18   -0.23
+    50.0    0.00   -0.09   -0.24   -0.34   -0.33   -0.25   -0.22   -0.36   -0.74   -1.18   -1.46   -1.38   -0.90   -0.18    0.36    0.51    0.24   -0.12   -0.15
+    55.0    0.00   -0.09   -0.23   -0.34   -0.30   -0.20   -0.16   -0.31   -0.68   -1.13   -1.43   -1.35   -0.84   -0.13    0.45    0.60    0.34    0.01    0.71
+    60.0    0.00   -0.09   -0.22   -0.32   -0.29   -0.17   -0.12   -0.26   -0.62   -1.08   -1.38   -1.28   -0.78   -0.04    0.54    0.71    0.47    0.17    0.22
+    65.0    0.00   -0.07   -0.21   -0.30   -0.26   -0.13   -0.06   -0.20   -0.55   -1.01   -1.31   -1.22   -0.70    0.06    0.67    0.87    0.65    0.38    0.51
+    70.0    0.00   -0.07   -0.21   -0.28   -0.23   -0.10   -0.02   -0.13   -0.48   -0.94   -1.24   -1.13   -0.60    0.17    0.81    1.02    0.83    0.61    0.85
+    75.0    0.00   -0.07   -0.20   -0.26   -0.20   -0.06    0.03   -0.07   -0.42   -0.87   -1.15   -1.04   -0.50    0.29    0.95    1.19    1.01    0.84    1.21
+    80.0    0.00   -0.05   -0.19   -0.25   -0.19   -0.03    0.08   -0.01   -0.34   -0.78   -1.05   -0.95   -0.39    0.41    1.09    1.35    1.20    1.07    1.57
+    85.0    0.00   -0.05   -0.17   -0.24   -0.16   -0.01    0.13    0.04   -0.27   -0.68   -0.96   -0.84   -0.28    0.53    1.23    1.49    1.36    1.26    1.87
+    90.0    0.00   -0.05   -0.16   -0.22   -0.14    0.03    0.15    0.10   -0.20   -0.60   -0.86   -0.75   -0.18    0.63    1.34    1.61    1.48    1.41    2.11
+    95.0    0.00   -0.04   -0.14   -0.20   -0.11    0.06    0.20    0.15   -0.12   -0.51   -0.77   -0.65   -0.09    0.72    1.43    1.71    1.56    1.47    2.25
+   100.0    0.00   -0.04   -0.14   -0.18   -0.11    0.07    0.22    0.20   -0.06   -0.43   -0.67   -0.56   -0.02    0.78    1.48    1.76    1.59    1.47    2.28
+   105.0    0.00   -0.03   -0.12   -0.17   -0.10    0.08    0.24    0.23    0.23   -0.35   -0.58   -0.47    0.05    0.83    1.52    1.77    1.57    1.39    2.17
+   110.0    0.00   -0.03   -0.11   -0.16   -0.09    0.09    0.24    0.26    0.06   -0.27   -0.50   -0.40    0.10    0.85    1.51    1.75    1.50    1.23    1.93
+   115.0    0.00   -0.01   -0.10   -0.15   -0.08    0.08    0.25    0.27    0.09   -0.20   -0.43   -0.34    0.12    0.85    1.48    1.69    1.38    1.01    1.58
+   120.0    0.00   -0.01   -0.09   -0.15   -0.08    0.07    0.23    0.27    0.12   -0.15   -0.37   -0.30    0.13    0.82    1.42    1.59    1.22    0.73    1.14
+   125.0    0.00   -0.01   -0.08   -0.14   -0.09    0.05    0.21    0.26    0.13   -0.12   -0.32   -0.27    0.12    0.76    1.32    1.46    1.04    0.43    0.63
+   130.0    0.00   -0.01   -0.08   -0.14   -0.10    0.03    0.18    0.23    0.13   -0.09   -0.29   -0.26    0.08    0.68    1.22    1.33    0.84    0.11    0.09
+   135.0    0.00   -0.01   -0.07   -0.13   -0.12   -0.05    0.14    0.20    0.11   -0.09   -0.28   -0.28    0.04    0.59    1.09    1.16    0.64   -0.21   -0.44
+   140.0    0.00    0.02   -0.07   -0.14   -0.13   -0.04    0.09    0.16    0.08   -0.11   -0.30   -0.31   -0.02    0.48    0.95    1.01    0.45   -0.50   -0.93
+   145.0    0.00    0.02   -0.07   -0.14   -0.16   -0.08    0.03    0.10    0.04   -0.15   -0.32   -0.34   -0.10    0.37    0.80    0.84    0.28   -0.74   -1.37
+   150.0    0.00    0.02   -0.06   -0.15   -0.19   -0.12   -0.02    0.04   -0.02   -0.19   -0.36   -0.40   -0.17    0.25    0.66    0.70    0.11   -0.94   -1.71
+   155.0    0.00    0.01   -0.07   -0.16   -0.20   -0.17   -0.09   -0.04   -0.09   -0.25   -0.42   -0.46   -0.25    0.16    0.54    0.57   -0.01   -1.09   -1.96
+   160.0    0.00    0.01   -0.07   -0.16   -0.23   -0.21   -0.14   -0.11   -0.16   -0.31   -0.48   -0.52   -0.33    0.06    0.43    0.47   -0.10   -1.17   -2.11
+   165.0    0.00    0.02   -0.07   -0.17   -0.25   -0.25   -0.21   -0.18   -0.25   -0.40   -0.56   -0.58   -0.40   -0.01    0.35    0.39   -0.17   -1.21   -2.16
+   170.0    0.00    0.02   -0.07   -0.19   -0.27   -0.30   -0.27   -0.26   -0.33   -0.49   -0.63   -0.66   -0.46   -0.07    0.30    0.33   -0.20   -1.21   -2.14
+   175.0    0.00    0.02   -0.08   -0.20   -0.30   -0.34   -0.32   -0.34   -0.42   -0.59   -0.74   -0.73   -0.51   -0.12    0.26    0.30   -0.21   -1.16   -2.04
+   180.0    0.00    0.02   -0.09   -0.21   -0.32   -0.37   -0.38   -0.41   -0.51   -0.69   -0.83   -0.81   -0.56   -0.13    0.25    0.29   -0.19   -1.09   -1.89
+   185.0    0.00    0.02   -0.10   -0.23   -0.34   -0.40   -0.43   -0.48   -0.61   -0.79   -0.93   -0.89   -0.60   -0.14    0.25    0.30   -0.16   -0.99   -1.72
+   190.0    0.00    0.02   -0.10   -0.25   -0.36   -0.43   -0.47   -0.54   -0.70   -0.91   -1.04   -0.98   -0.65   -0.16    0.26    0.32   -0.11   -0.90   -1.51
+   195.0    0.00   -0.01   -0.11   -0.26   -0.39   -0.46   -0.51   -0.61   -0.78   -1.02   -1.15   -1.06   -0.70   -0.17    0.29    0.36   -0.07   -0.79   -1.31
+   200.0    0.00   -0.01   -0.12   -0.28   -0.41   -0.48   -0.54   -0.66   -0.86   -1.11   -1.26   -1.15   -0.75   -0.18    0.30    0.39   -0.01   -0.68   -1.10
+   205.0    0.00   -0.01   -0.14   -0.29   -0.43   -0.50   -0.57   -0.69   -0.93   -1.19   -1.36   -1.25   -0.82   -0.20    0.30    0.41    0.03   -0.57   -0.90
+   210.0    0.00   -0.02   -0.14   -0.31   -0.44   -0.53   -0.58   -0.72   -0.98   -1.27   -1.44   -1.33   -0.88   -0.23    0.29    0.42    0.07   -0.48   -0.72
+   215.0    0.00   -0.02   -0.16   -0.33   -0.46   -0.54   -0.60   -0.74   -1.02   -1.33   -1.53   -1.41   -0.94   -0.27    0.28    0.42    0.09   -0.40   -0.55
+   220.0    0.00   -0.03   -0.17   -0.35   -0.48   -0.55   -0.60   -0.76   -1.04   -1.38   -1.58   -1.47   -1.01   -0.32    0.25    0.41    0.10   -0.34   -0.40
+   225.0    0.00   -0.04   -0.19   -0.38   -0.50   -0.56   -0.61   -0.76   -1.04   -1.39   -1.62   -1.53   -1.05   -0.37    0.22    0.38    0.09   -0.31   -0.29
+   230.0    0.00   -0.04   -0.20   -0.39   -0.53   -0.57   -0.61   -0.75   -1.03   -1.40   -1.64   -1.56   -1.09   -0.40    0.18    0.35    0.07   -0.30   -0.20
+   235.0    0.00   -0.05   -0.21   -0.41   -0.53   -0.58   -0.60   -0.73   -1.01   -1.37   -1.62   -1.56   -1.10   -0.43    0.14    0.30    0.02   -0.34   -0.16
+   240.0    0.00   -0.05   -0.23   -0.42   -0.56   -0.58   -0.59   -0.70   -0.97   -1.33   -1.59   -1.53   -1.09   -0.43    0.12    0.26   -0.05   -0.40   -0.17
+   245.0    0.00   -0.06   -0.24   -0.44   -0.56   -0.59   -0.58   -0.67   -0.92   -1.27   -1.53   -1.48   -1.06   -0.42    0.11    0.21   -0.13   -0.49   -0.22
+   250.0    0.00   -0.07   -0.26   -0.46   -0.58   -0.59   -0.56   -0.63   -0.86   -1.21   -1.46   -1.40   -0.99   -0.37    0.11    0.17   -0.22   -0.62   -0.32
+   255.0    0.00   -0.07   -0.26   -0.47   -0.58   -0.58   -0.54   -0.59   -0.79   -1.12   -1.36   -1.31   -0.91   -0.31    0.13    0.14   -0.32   -0.77   -0.49
+   260.0    0.00   -0.08   -0.27   -0.49   -0.59   -0.58   -0.52   -0.56   -0.73   -1.03   -1.25   -1.20   -0.82   -0.24    0.17    0.11   -0.42   -0.96   -0.69
+   265.0    0.00   -0.09   -0.28   -0.49   -0.60   -0.58   -0.50   -0.52   -0.67   -0.94   -1.15   -1.10   -0.71   -0.16    0.21    0.10   -0.51   -1.13   -0.92
+   270.0    0.00   -0.09   -0.29   -0.49   -0.59   -0.57   -0.48   -0.47   -0.61   -0.86   -1.04   -0.98   -0.60   -0.08    0.27    0.10   -0.57   -1.30   -1.18
+   275.0    0.00   -0.09   -0.29   -0.50   -0.60   -0.56   -0.47   -0.44   -0.56   -0.78   -0.95   -0.88   -0.50    0.01    0.33    0.12   -0.63   -1.46   -1.44
+   280.0    0.00   -0.09   -0.29   -0.49   -0.59   -0.56   -0.45   -0.41   -0.51   -0.71   -0.86   -0.78   -0.42    0.08    0.39    0.15   -0.66   -1.58   -1.68
+   285.0    0.00   -0.09   -0.30   -0.49   -0.58   -0.54   -0.43   -0.38   -0.47   -0.65   -0.79   -0.71   -0.34    0.15    0.44    0.19   -0.65   -1.65   -1.90
+   290.0    0.00   -0.09   -0.30   -0.49   -0.57   -0.53   -0.42   -0.36   -0.43   -0.61   -0.73   -0.65   -0.29    0.19    0.49    0.25   -0.59   -1.67   -2.07
+   295.0    0.00   -0.10   -0.29   -0.48   -0.56   -0.51   -0.40   -0.34   -0.41   -0.56   -0.69   -0.60   -0.26    0.22    0.54    0.32   -0.51   -1.63   -2.19
+   300.0    0.00   -0.11   -0.29   -0.48   -0.55   -0.50   -0.39   -0.33   -0.39   -0.54   -0.65   -0.58   -0.23    0.25    0.58    0.41   -0.39   -1.55   -2.24
+   305.0    0.00   -0.11   -0.29   -0.46   -0.53   -0.49   -0.39   -0.32   -0.38   -0.52   -0.63   -0.55   -0.22    0.26    0.62    0.50   -0.25   -1.40   -2.24
+   310.0    0.00   -0.10   -0.29   -0.45   -0.52   -0.48   -0.38   -0.32   -0.38   -0.51   -0.62   -0.55   -0.21    0.29    0.66    0.60   -0.09   -1.23   -2.16
+   315.0    0.00   -0.10   -0.29   -0.44   -0.51   -0.48   -0.38   -0.33   -0.39   -0.51   -0.61   -0.54   -0.21    0.30    0.71    0.72    0.10   -1.01   -2.02
+   320.0    0.00   -0.10   -0.28   -0.44   -0.51   -0.48   -0.39   -0.34   -0.40   -0.53   -0.61   -0.52   -0.19    0.31    0.77    0.83    0.29   -0.78   -1.83
+   325.0    0.00   -0.10   -0.28   -0.43   -0.50   -0.47   -0.40   -0.36   -0.42   -0.54   -0.62   -0.53   -0.19    0.35    0.82    0.94    0.46   -0.54   -1.60
+   330.0    0.00   -0.11   -0.28   -0.43   -0.50   -0.47   -0.41   -0.39   -0.46   -0.58   -0.64   -0.53   -0.18    0.37    0.87    1.04    0.64   -0.31   -1.35
+   335.0    0.00   -0.11   -0.28   -0.43   -0.49   -0.47   -0.43   -0.43   -0.50   -0.61   -0.67   -0.54   -0.17    0.40    0.93    1.12    0.79   -0.09   -1.09
+   340.0    0.00   -0.11   -0.27   -0.42   -0.49   -0.47   -0.45   -0.46   -0.54   -0.66   -0.71   -0.56   -0.17    0.41    0.95    1.18    0.88    0.08   -0.82
+   345.0    0.00   -0.11   -0.27   -0.42   -0.48   -0.49   -0.46   -0.49   -0.59   -0.72   -0.76   -0.59   -0.17    0.43    0.98    1.22    0.96    0.24   -0.57
+   350.0    0.00   -0.11   -0.27   -0.41   -0.49   -0.49   -0.48   -0.52   -0.64   -0.79   -0.82   -0.64   -0.20    0.41    0.98    1.23    0.99    0.33   -0.36
+   355.0    0.00   -0.11   -0.28   -0.41   -0.48   -0.48   -0.49   -0.56   -0.70   -0.85   -0.89   -0.70   -0.24    0.39    0.96    1.20    0.97    0.38   -0.17
+   360.0    0.00   -0.11   -0.27   -0.41   -0.48   -0.48   -0.50   -0.58   -0.74   -0.92   -0.97   -0.78   -0.30    0.34    0.91    1.15    0.92    0.39   -0.04
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TOP700779A      NONE                                        TYPE / SERIAL NO    
+CONVERTED           TUM                      3    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+CONVERTED FROM igs_01.pcv                                   COMMENT             
+   G01                                                      START OF FREQUENCY  
+      3.98      0.63     69.15                              NORTH / EAST / UP   
+   NOAZI    0.00    1.07    2.00    2.67    2.98    3.08    2.84    2.31    1.73    0.99    0.34   -0.29   -0.83   -1.05   -0.88    0.09    2.07
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      3.02     -1.89     55.75                              NORTH / EAST / UP   
+   NOAZI    0.00   -2.53   -4.51   -6.28   -7.69   -8.98  -10.19  -11.17  -12.01  -12.51  -12.65  -12.16  -11.03   -9.13   -6.53   -3.01    1.95
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TOP72110        NONE                                        TYPE / SERIAL NO    
+CONVERTED           TUM                      1    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+CONVERTED FROM igs_01.pcv                                   COMMENT             
+   G01                                                      START OF FREQUENCY  
+     -3.32      6.93    128.95                              NORTH / EAST / UP   
+   NOAZI    0.00   -1.33   -2.00   -2.23   -2.32   -2.32   -2.26   -2.29   -2.57   -2.91   -3.56   -4.49   -5.93   -7.75   -9.88  -12.21  -14.53
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -4.48      5.91    120.15                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.63   -1.21   -1.88   -2.49   -3.18   -3.89   -4.67   -5.41   -6.21   -6.85   -7.36   -7.73   -8.13   -8.63   -9.21   -9.75
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TPSCR.G3        NONE                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH              16    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     4                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+Number of Calibrated Antennas GPS:      016                 COMMENT             
+Number of Individual Calibrations GPS:  032                 COMMENT             
+Number of Calibrated Antennas GLO:      015                 COMMENT             
+Number of Individual Calibrations GLO:  032                 COMMENT             
+# GLONASS PCV                                               COMMENT             
+#  derived from Delta PCV per 25.0 MHz                      COMMENT             
+#  for frequency channel number k=0                         COMMENT             
+   G01                                                      START OF FREQUENCY  
+     -0.17      0.30     88.41                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.31   -1.21   -2.56   -4.17   -5.84   -7.36   -8.58   -9.37   -9.67   -9.44   -8.67   -7.34   -5.42   -2.83    0.50    4.65    9.57   14.98
+     0.0    0.00   -0.30   -1.20   -2.56   -4.19   -5.87   -7.40   -8.61   -9.39   -9.69   -9.46   -8.70   -7.38   -5.48   -2.91    0.39    4.48    9.24   14.33
+     5.0    0.00   -0.30   -1.20   -2.57   -4.20   -5.89   -7.42   -8.64   -9.44   -9.73   -9.50   -8.73   -7.41   -5.51   -2.95    0.33    4.41    9.20   14.38
+    10.0    0.00   -0.30   -1.21   -2.57   -4.21   -5.91   -7.45   -8.68   -9.48   -9.78   -9.55   -8.77   -7.44   -5.54   -2.99    0.27    4.34    9.17   14.45
+    15.0    0.00   -0.31   -1.21   -2.58   -4.22   -5.93   -7.48   -8.72   -9.53   -9.84   -9.60   -8.81   -7.47   -5.57   -3.03    0.22    4.28    9.15   14.54
+    20.0    0.00   -0.31   -1.21   -2.59   -4.23   -5.94   -7.51   -8.77   -9.59   -9.89   -9.65   -8.85   -7.51   -5.60   -3.07    0.17    4.24    9.13   14.62
+    25.0    0.00   -0.31   -1.22   -2.59   -4.24   -5.96   -7.54   -8.81   -9.64   -9.95   -9.71   -8.90   -7.55   -5.63   -3.11    0.13    4.20    9.12   14.68
+    30.0    0.00   -0.31   -1.22   -2.59   -4.25   -5.98   -7.57   -8.85   -9.69  -10.00   -9.76   -8.95   -7.59   -5.67   -3.13    0.11    4.18    9.11   14.72
+    35.0    0.00   -0.31   -1.22   -2.60   -4.25   -5.99   -7.58   -8.87   -9.72  -10.05   -9.81   -9.00   -7.63   -5.70   -3.15    0.10    4.17    9.11   14.73
+    40.0    0.00   -0.31   -1.22   -2.60   -4.26   -5.99   -7.59   -8.89   -9.75  -10.08   -9.85   -9.04   -7.67   -5.72   -3.16    0.10    4.18    9.11   14.71
+    45.0    0.00   -0.31   -1.22   -2.59   -4.25   -5.98   -7.59   -8.89   -9.76  -10.10   -9.88   -9.08   -7.70   -5.74   -3.16    0.12    4.20    9.11   14.68
+    50.0    0.00   -0.31   -1.22   -2.59   -4.24   -5.97   -7.57   -8.88   -9.75  -10.10   -9.89   -9.10   -7.72   -5.75   -3.15    0.16    4.25    9.13   14.64
+    55.0    0.00   -0.32   -1.22   -2.59   -4.23   -5.95   -7.55   -8.85   -9.72  -10.08   -9.88   -9.10   -7.72   -5.75   -3.12    0.20    4.31    9.17   14.62
+    60.0    0.00   -0.32   -1.22   -2.58   -4.22   -5.93   -7.51   -8.80   -9.67  -10.04   -9.85   -9.08   -7.71   -5.73   -3.09    0.27    4.38    9.23   14.63
+    65.0    0.00   -0.32   -1.22   -2.57   -4.20   -5.90   -7.47   -8.74   -9.61   -9.98   -9.80   -9.04   -7.68   -5.69   -3.04    0.34    4.48    9.32   14.67
+    70.0    0.00   -0.32   -1.22   -2.57   -4.18   -5.87   -7.42   -8.68   -9.53   -9.90   -9.73   -8.99   -7.64   -5.65   -2.97    0.43    4.58    9.43   14.75
+    75.0    0.00   -0.32   -1.21   -2.56   -4.17   -5.83   -7.37   -8.61   -9.46   -9.82   -9.66   -8.92   -7.58   -5.59   -2.90    0.53    4.70    9.55   14.87
+    80.0    0.00   -0.32   -1.21   -2.55   -4.15   -5.80   -7.32   -8.55   -9.38   -9.74   -9.57   -8.85   -7.51   -5.52   -2.82    0.63    4.83    9.70   15.02
+    85.0    0.00   -0.32   -1.21   -2.54   -4.13   -5.77   -7.27   -8.49   -9.30   -9.66   -9.49   -8.77   -7.44   -5.44   -2.73    0.73    4.95    9.84   15.19
+    90.0    0.00   -0.32   -1.21   -2.54   -4.12   -5.75   -7.23   -8.43   -9.24   -9.58   -9.41   -8.69   -7.36   -5.36   -2.65    0.83    5.07    9.99   15.36
+    95.0    0.00   -0.32   -1.21   -2.53   -4.11   -5.73   -7.21   -8.39   -9.19   -9.52   -9.35   -8.61   -7.28   -5.28   -2.57    0.92    5.17   10.11   15.51
+   100.0    0.00   -0.32   -1.21   -2.53   -4.10   -5.72   -7.19   -8.37   -9.15   -9.47   -9.29   -8.55   -7.21   -5.21   -2.49    0.99    5.25   10.21   15.64
+   105.0    0.00   -0.32   -1.21   -2.53   -4.10   -5.71   -7.18   -8.35   -9.13   -9.44   -9.24   -8.49   -7.14   -5.15   -2.44    1.04    5.30   10.28   15.72
+   110.0    0.00   -0.32   -1.21   -2.53   -4.10   -5.71   -7.17   -8.34   -9.11   -9.41   -9.20   -8.44   -7.08   -5.09   -2.40    1.07    5.32   10.30   15.77
+   115.0    0.00   -0.32   -1.21   -2.53   -4.10   -5.71   -7.17   -8.34   -9.10   -9.39   -9.17   -8.39   -7.04   -5.05   -2.37    1.07    5.31   10.29   15.77
+   120.0    0.00   -0.33   -1.21   -2.53   -4.10   -5.71   -7.18   -8.34   -9.10   -9.38   -9.14   -8.36   -7.00   -5.03   -2.37    1.04    5.26   10.24   15.74
+   125.0    0.00   -0.33   -1.22   -2.54   -4.10   -5.71   -7.18   -8.34   -9.10   -9.37   -9.12   -8.33   -6.98   -5.02   -2.40    0.99    5.19   10.17   15.68
+   130.0    0.00   -0.33   -1.22   -2.54   -4.11   -5.72   -7.18   -8.35   -9.09   -9.36   -9.10   -8.31   -6.97   -5.03   -2.43    0.92    5.10   10.07   15.60
+   135.0    0.00   -0.33   -1.22   -2.54   -4.11   -5.72   -7.18   -8.34   -9.09   -9.35   -9.09   -8.30   -6.97   -5.05   -2.49    0.83    4.99    9.96   15.51
+   140.0    0.00   -0.33   -1.22   -2.55   -4.11   -5.72   -7.18   -8.34   -9.09   -9.35   -9.09   -8.30   -6.98   -5.09   -2.55    0.75    4.88    9.85   15.42
+   145.0    0.00   -0.33   -1.23   -2.55   -4.12   -5.72   -7.18   -8.34   -9.08   -9.35   -9.09   -8.32   -7.01   -5.13   -2.61    0.66    4.78    9.75   15.33
+   150.0    0.00   -0.33   -1.23   -2.56   -4.12   -5.73   -7.18   -8.34   -9.09   -9.36   -9.11   -8.34   -7.05   -5.18   -2.68    0.58    4.69    9.65   15.24
+   155.0    0.00   -0.33   -1.23   -2.56   -4.13   -5.73   -7.19   -8.35   -9.10   -9.38   -9.14   -8.38   -7.09   -5.23   -2.73    0.51    4.61    9.57   15.14
+   160.0    0.00   -0.33   -1.24   -2.57   -4.14   -5.74   -7.20   -8.36   -9.12   -9.41   -9.19   -8.43   -7.14   -5.28   -2.78    0.46    4.55    9.49   15.05
+   165.0    0.00   -0.34   -1.24   -2.57   -4.15   -5.75   -7.22   -8.39   -9.16   -9.46   -9.24   -8.50   -7.20   -5.33   -2.83    0.42    4.50    9.42   14.95
+   170.0    0.00   -0.34   -1.24   -2.58   -4.16   -5.77   -7.24   -8.42   -9.20   -9.51   -9.31   -8.56   -7.26   -5.38   -2.86    0.39    4.46    9.35   14.85
+   175.0    0.00   -0.34   -1.25   -2.59   -4.17   -5.80   -7.27   -8.47   -9.26   -9.58   -9.38   -8.63   -7.32   -5.43   -2.89    0.36    4.42    9.28   14.74
+   180.0    0.00   -0.34   -1.25   -2.60   -4.19   -5.82   -7.31   -8.52   -9.32   -9.65   -9.45   -8.70   -7.38   -5.47   -2.93    0.33    4.37    9.21   14.64
+   185.0    0.00   -0.34   -1.25   -2.61   -4.21   -5.85   -7.36   -8.57   -9.39   -9.72   -9.52   -8.76   -7.43   -5.51   -2.96    0.29    4.32    9.13   14.54
+   190.0    0.00   -0.34   -1.26   -2.62   -4.23   -5.88   -7.40   -8.63   -9.45   -9.79   -9.58   -8.82   -7.48   -5.55   -3.01    0.23    4.25    9.06   14.46
+   195.0    0.00   -0.34   -1.26   -2.62   -4.24   -5.92   -7.45   -8.68   -9.51   -9.84   -9.63   -8.86   -7.52   -5.60   -3.06    0.17    4.18    8.99   14.41
+   200.0    0.00   -0.33   -1.26   -2.63   -4.26   -5.94   -7.49   -8.73   -9.55   -9.88   -9.66   -8.89   -7.55   -5.65   -3.13    0.09    4.11    8.94   14.39
+   205.0    0.00   -0.33   -1.26   -2.63   -4.27   -5.97   -7.52   -8.77   -9.59   -9.91   -9.68   -8.91   -7.58   -5.70   -3.20    0.01    4.04    8.91   14.41
+   210.0    0.00   -0.33   -1.25   -2.63   -4.28   -5.98   -7.54   -8.79   -9.61   -9.92   -9.69   -8.92   -7.61   -5.75   -3.27   -0.07    3.99    8.91   14.47
+   215.0    0.00   -0.33   -1.25   -2.63   -4.28   -5.99   -7.56   -8.80   -9.61   -9.92   -9.68   -8.92   -7.63   -5.80   -3.34   -0.13    3.96    8.95   14.57
+   220.0    0.00   -0.33   -1.25   -2.63   -4.28   -5.99   -7.56   -8.80   -9.61   -9.90   -9.67   -8.92   -7.66   -5.85   -3.40   -0.17    3.97    9.02   14.69
+   225.0    0.00   -0.33   -1.24   -2.62   -4.27   -5.99   -7.55   -8.79   -9.59   -9.89   -9.66   -8.92   -7.68   -5.88   -3.43   -0.17    4.02    9.12   14.82
+   230.0    0.00   -0.32   -1.24   -2.61   -4.26   -5.97   -7.53   -8.77   -9.57   -9.87   -9.65   -8.93   -7.69   -5.90   -3.44   -0.14    4.11    9.26   14.96
+   235.0    0.00   -0.32   -1.23   -2.60   -4.25   -5.95   -7.51   -8.74   -9.55   -9.85   -9.64   -8.93   -7.70   -5.90   -3.41   -0.07    4.23    9.41   15.08
+   240.0    0.00   -0.32   -1.22   -2.59   -4.23   -5.93   -7.48   -8.72   -9.52   -9.83   -9.64   -8.93   -7.70   -5.88   -3.35    0.04    4.39    9.57   15.18
+   245.0    0.00   -0.31   -1.21   -2.57   -4.21   -5.90   -7.45   -8.69   -9.50   -9.82   -9.63   -8.93   -7.69   -5.84   -3.26    0.19    4.56    9.73   15.26
+   250.0    0.00   -0.31   -1.21   -2.56   -4.18   -5.87   -7.42   -8.66   -9.48   -9.81   -9.63   -8.92   -7.66   -5.77   -3.14    0.35    4.74    9.88   15.31
+   255.0    0.00   -0.31   -1.20   -2.55   -4.16   -5.85   -7.39   -8.63   -9.46   -9.79   -9.61   -8.90   -7.61   -5.68   -3.00    0.52    4.92   10.01   15.34
+   260.0    0.00   -0.31   -1.19   -2.53   -4.14   -5.82   -7.36   -8.61   -9.44   -9.78   -9.59   -8.86   -7.54   -5.57   -2.86    0.69    5.07   10.11   15.35
+   265.0    0.00   -0.30   -1.18   -2.52   -4.13   -5.80   -7.34   -8.59   -9.42   -9.75   -9.56   -8.80   -7.46   -5.45   -2.71    0.84    5.19   10.17   15.35
+   270.0    0.00   -0.30   -1.18   -2.51   -4.11   -5.79   -7.33   -8.57   -9.39   -9.72   -9.51   -8.73   -7.36   -5.33   -2.58    0.96    5.28   10.21   15.36
+   275.0    0.00   -0.30   -1.17   -2.50   -4.10   -5.77   -7.31   -8.55   -9.37   -9.68   -9.45   -8.65   -7.25   -5.21   -2.46    1.05    5.32   10.22   15.38
+   280.0    0.00   -0.30   -1.17   -2.50   -4.10   -5.77   -7.30   -8.54   -9.34   -9.64   -9.38   -8.55   -7.14   -5.10   -2.38    1.09    5.33   10.21   15.41
+   285.0    0.00   -0.29   -1.17   -2.49   -4.09   -5.76   -7.30   -8.53   -9.31   -9.59   -9.31   -8.46   -7.04   -5.01   -2.32    1.11    5.30   10.18   15.46
+   290.0    0.00   -0.29   -1.16   -2.49   -4.09   -5.77   -7.30   -8.51   -9.29   -9.54   -9.23   -8.37   -6.95   -4.94   -2.29    1.09    5.25   10.14   15.50
+   295.0    0.00   -0.29   -1.16   -2.49   -4.10   -5.77   -7.30   -8.50   -9.26   -9.49   -9.17   -8.30   -6.88   -4.90   -2.29    1.05    5.19   10.10   15.54
+   300.0    0.00   -0.29   -1.16   -2.49   -4.10   -5.77   -7.30   -8.49   -9.23   -9.45   -9.11   -8.24   -6.84   -4.89   -2.31    0.99    5.11   10.05   15.57
+   305.0    0.00   -0.29   -1.16   -2.50   -4.11   -5.78   -7.30   -8.49   -9.21   -9.41   -9.07   -8.21   -6.82   -4.90   -2.36    0.92    5.04    9.99   15.56
+   310.0    0.00   -0.29   -1.16   -2.50   -4.12   -5.79   -7.30   -8.48   -9.20   -9.40   -9.06   -8.20   -6.84   -4.94   -2.41    0.86    4.98    9.94   15.51
+   315.0    0.00   -0.29   -1.17   -2.51   -4.12   -5.80   -7.31   -8.48   -9.20   -9.39   -9.06   -8.22   -6.87   -4.99   -2.47    0.79    4.92    9.88   15.42
+   320.0    0.00   -0.29   -1.17   -2.51   -4.13   -5.80   -7.31   -8.48   -9.20   -9.40   -9.08   -8.25   -6.92   -5.05   -2.54    0.74    4.87    9.82   15.29
+   325.0    0.00   -0.29   -1.17   -2.52   -4.14   -5.81   -7.32   -8.49   -9.21   -9.42   -9.12   -8.31   -6.99   -5.12   -2.60    0.69    4.83    9.75   15.12
+   330.0    0.00   -0.29   -1.18   -2.52   -4.15   -5.82   -7.32   -8.50   -9.22   -9.45   -9.16   -8.37   -7.06   -5.19   -2.65    0.65    4.79    9.67   14.94
+   335.0    0.00   -0.29   -1.18   -2.53   -4.15   -5.82   -7.33   -8.51   -9.24   -9.48   -9.22   -8.44   -7.14   -5.25   -2.70    0.62    4.75    9.59   14.76
+   340.0    0.00   -0.29   -1.18   -2.54   -4.16   -5.83   -7.34   -8.52   -9.26   -9.52   -9.27   -8.50   -7.20   -5.31   -2.75    0.58    4.71    9.51   14.59
+   345.0    0.00   -0.30   -1.19   -2.54   -4.17   -5.84   -7.35   -8.54   -9.29   -9.56   -9.32   -8.56   -7.26   -5.36   -2.79    0.54    4.66    9.43   14.45
+   350.0    0.00   -0.30   -1.19   -2.55   -4.17   -5.85   -7.36   -8.55   -9.32   -9.60   -9.37   -8.61   -7.31   -5.41   -2.83    0.50    4.61    9.36   14.36
+   355.0    0.00   -0.30   -1.20   -2.56   -4.18   -5.86   -7.38   -8.58   -9.35   -9.64   -9.42   -8.66   -7.35   -5.44   -2.87    0.45    4.54    9.29   14.32
+   360.0    0.00   -0.30   -1.20   -2.56   -4.19   -5.87   -7.40   -8.61   -9.39   -9.69   -9.46   -8.70   -7.38   -5.48   -2.91    0.39    4.48    9.24   14.33
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.28     -0.04    119.40                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.09   -0.37   -0.80   -1.38   -2.04   -2.76   -3.46   -4.04   -4.40   -4.44   -4.12   -3.48   -2.56   -1.40    0.04    1.96    4.58    8.04
+     0.0    0.00   -0.08   -0.34   -0.76   -1.32   -1.99   -2.71   -3.42   -4.01   -4.38   -4.43   -4.10   -3.43   -2.46   -1.23    0.28    2.22    4.76    7.92
+     5.0    0.00   -0.08   -0.34   -0.76   -1.32   -1.99   -2.72   -3.42   -4.02   -4.38   -4.43   -4.12   -3.46   -2.51   -1.29    0.24    2.22    4.77    7.89
+    10.0    0.00   -0.08   -0.34   -0.77   -1.33   -2.00   -2.72   -3.43   -4.02   -4.39   -4.45   -4.15   -3.51   -2.57   -1.35    0.19    2.19    4.78    7.89
+    15.0    0.00   -0.09   -0.35   -0.77   -1.33   -2.00   -2.73   -3.44   -4.03   -4.40   -4.47   -4.18   -3.55   -2.63   -1.42    0.13    2.16    4.79    7.92
+    20.0    0.00   -0.09   -0.35   -0.78   -1.34   -2.01   -2.73   -3.44   -4.04   -4.41   -4.49   -4.21   -3.60   -2.69   -1.49    0.07    2.13    4.80    7.99
+    25.0    0.00   -0.09   -0.36   -0.78   -1.35   -2.01   -2.74   -3.45   -4.04   -4.43   -4.50   -4.24   -3.64   -2.74   -1.55    0.01    2.09    4.81    8.09
+    30.0    0.00   -0.09   -0.36   -0.79   -1.35   -2.02   -2.74   -3.45   -4.05   -4.43   -4.52   -4.26   -3.67   -2.78   -1.60   -0.04    2.06    4.83    8.21
+    35.0    0.00   -0.10   -0.37   -0.80   -1.36   -2.02   -2.74   -3.45   -4.05   -4.44   -4.53   -4.27   -3.68   -2.80   -1.63   -0.07    2.04    4.86    8.33
+    40.0    0.00   -0.10   -0.37   -0.80   -1.36   -2.03   -2.74   -3.45   -4.05   -4.44   -4.53   -4.27   -3.69   -2.81   -1.64   -0.08    2.03    4.89    8.45
+    45.0    0.00   -0.10   -0.38   -0.81   -1.37   -2.03   -2.75   -3.45   -4.05   -4.43   -4.52   -4.26   -3.68   -2.80   -1.63   -0.08    2.03    4.91    8.55
+    50.0    0.00   -0.11   -0.39   -0.82   -1.38   -2.04   -2.75   -3.45   -4.04   -4.42   -4.50   -4.24   -3.65   -2.77   -1.61   -0.07    2.05    4.93    8.62
+    55.0    0.00   -0.11   -0.39   -0.83   -1.39   -2.04   -2.75   -3.45   -4.04   -4.41   -4.49   -4.22   -3.62   -2.74   -1.57   -0.04    2.07    4.95    8.65
+    60.0    0.00   -0.11   -0.40   -0.83   -1.40   -2.05   -2.76   -3.45   -4.03   -4.40   -4.47   -4.19   -3.59   -2.70   -1.53    0.00    2.09    4.95    8.64
+    65.0    0.00   -0.11   -0.40   -0.84   -1.40   -2.06   -2.76   -3.45   -4.03   -4.39   -4.45   -4.17   -3.56   -2.66   -1.49    0.04    2.12    4.95    8.60
+    70.0    0.00   -0.12   -0.41   -0.85   -1.41   -2.06   -2.77   -3.45   -4.02   -4.38   -4.43   -4.14   -3.53   -2.63   -1.45    0.08    2.14    4.95    8.54
+    75.0    0.00   -0.12   -0.41   -0.85   -1.42   -2.07   -2.77   -3.45   -4.02   -4.37   -4.42   -4.12   -3.50   -2.60   -1.43    0.10    2.15    4.93    8.47
+    80.0    0.00   -0.12   -0.41   -0.86   -1.42   -2.08   -2.78   -3.46   -4.02   -4.36   -4.40   -4.11   -3.49   -2.58   -1.41    0.11    2.16    4.91    8.41
+    85.0    0.00   -0.12   -0.42   -0.86   -1.43   -2.08   -2.78   -3.46   -4.02   -4.36   -4.40   -4.10   -3.48   -2.58   -1.41    0.10    2.14    4.89    8.37
+    90.0    0.00   -0.12   -0.42   -0.86   -1.43   -2.09   -2.79   -3.46   -4.02   -4.36   -4.39   -4.09   -3.47   -2.58   -1.43    0.08    2.12    4.86    8.35
+    95.0    0.00   -0.12   -0.42   -0.87   -1.43   -2.09   -2.79   -3.46   -4.02   -4.35   -4.38   -4.08   -3.47   -2.59   -1.45    0.04    2.07    4.83    8.35
+   100.0    0.00   -0.12   -0.42   -0.87   -1.43   -2.08   -2.78   -3.46   -4.02   -4.35   -4.38   -4.08   -3.47   -2.61   -1.49   -0.01    2.02    4.80    8.38
+   105.0    0.00   -0.12   -0.42   -0.87   -1.43   -2.08   -2.78   -3.46   -4.01   -4.35   -4.37   -4.07   -3.47   -2.62   -1.52   -0.07    1.95    4.75    8.41
+   110.0    0.00   -0.12   -0.42   -0.86   -1.42   -2.07   -2.77   -3.45   -4.01   -4.34   -4.37   -4.07   -3.47   -2.63   -1.55   -0.12    1.88    4.70    8.44
+   115.0    0.00   -0.12   -0.42   -0.86   -1.42   -2.07   -2.76   -3.44   -4.00   -4.34   -4.36   -4.06   -3.46   -2.63   -1.57   -0.18    1.80    4.64    8.45
+   120.0    0.00   -0.12   -0.42   -0.86   -1.41   -2.06   -2.76   -3.44   -4.00   -4.33   -4.35   -4.04   -3.44   -2.62   -1.58   -0.22    1.74    4.57    8.44
+   125.0    0.00   -0.12   -0.42   -0.85   -1.41   -2.05   -2.75   -3.43   -3.99   -4.33   -4.34   -4.03   -3.42   -2.60   -1.58   -0.24    1.68    4.50    8.40
+   130.0    0.00   -0.12   -0.41   -0.85   -1.40   -2.04   -2.74   -3.42   -3.99   -4.32   -4.34   -4.01   -3.40   -2.57   -1.56   -0.24    1.65    4.44    8.32
+   135.0    0.00   -0.12   -0.41   -0.85   -1.40   -2.04   -2.74   -3.42   -3.99   -4.32   -4.33   -4.00   -3.37   -2.54   -1.52   -0.22    1.63    4.38    8.22
+   140.0    0.00   -0.12   -0.41   -0.84   -1.39   -2.03   -2.73   -3.42   -3.99   -4.32   -4.33   -3.99   -3.35   -2.50   -1.48   -0.19    1.64    4.34    8.09
+   145.0    0.00   -0.12   -0.41   -0.84   -1.39   -2.03   -2.73   -3.42   -3.99   -4.32   -4.33   -3.98   -3.33   -2.47   -1.43   -0.13    1.67    4.31    7.96
+   150.0    0.00   -0.12   -0.40   -0.84   -1.39   -2.03   -2.74   -3.42   -3.99   -4.33   -4.33   -3.98   -3.32   -2.44   -1.38   -0.07    1.73    4.31    7.83
+   155.0    0.00   -0.11   -0.40   -0.83   -1.39   -2.04   -2.74   -3.43   -4.00   -4.33   -4.34   -3.98   -3.32   -2.42   -1.34   -0.01    1.79    4.33    7.72
+   160.0    0.00   -0.11   -0.40   -0.83   -1.39   -2.04   -2.74   -3.43   -4.00   -4.34   -4.34   -3.99   -3.32   -2.41   -1.31    0.05    1.87    4.37    7.64
+   165.0    0.00   -0.11   -0.39   -0.83   -1.39   -2.04   -2.75   -3.44   -4.01   -4.34   -4.35   -4.00   -3.33   -2.41   -1.29    0.11    1.94    4.42    7.58
+   170.0    0.00   -0.11   -0.39   -0.83   -1.39   -2.05   -2.76   -3.44   -4.01   -4.34   -4.36   -4.01   -3.35   -2.43   -1.28    0.15    2.01    4.48    7.55
+   175.0    0.00   -0.11   -0.39   -0.82   -1.39   -2.05   -2.76   -3.45   -4.01   -4.35   -4.36   -4.03   -3.38   -2.45   -1.29    0.17    2.06    4.54    7.55
+   180.0    0.00   -0.10   -0.38   -0.82   -1.39   -2.05   -2.77   -3.45   -4.01   -4.35   -4.37   -4.05   -3.41   -2.48   -1.31    0.18    2.10    4.59    7.57
+   185.0    0.00   -0.10   -0.38   -0.82   -1.39   -2.06   -2.77   -3.45   -4.02   -4.35   -4.38   -4.07   -3.44   -2.52   -1.34    0.17    2.11    4.62    7.59
+   190.0    0.00   -0.10   -0.38   -0.82   -1.39   -2.06   -2.77   -3.46   -4.02   -4.36   -4.40   -4.09   -3.47   -2.55   -1.37    0.14    2.11    4.62    7.61
+   195.0    0.00   -0.10   -0.37   -0.81   -1.39   -2.06   -2.77   -3.46   -4.02   -4.37   -4.41   -4.12   -3.50   -2.59   -1.40    0.11    2.08    4.61    7.63
+   200.0    0.00   -0.10   -0.37   -0.81   -1.38   -2.06   -2.77   -3.46   -4.03   -4.38   -4.43   -4.14   -3.52   -2.61   -1.43    0.08    2.04    4.58    7.64
+   205.0    0.00   -0.09   -0.37   -0.81   -1.38   -2.06   -2.78   -3.47   -4.04   -4.40   -4.45   -4.16   -3.54   -2.63   -1.45    0.05    1.99    4.53    7.64
+   210.0    0.00   -0.09   -0.36   -0.80   -1.38   -2.06   -2.78   -3.48   -4.06   -4.42   -4.47   -4.18   -3.55   -2.63   -1.46    0.02    1.94    4.47    7.65
+   215.0    0.00   -0.09   -0.36   -0.80   -1.38   -2.06   -2.78   -3.49   -4.08   -4.44   -4.50   -4.20   -3.56   -2.63   -1.46    0.01    1.90    4.43    7.65
+   220.0    0.00   -0.09   -0.36   -0.80   -1.38   -2.06   -2.79   -3.50   -4.09   -4.46   -4.51   -4.21   -3.55   -2.62   -1.44    0.01    1.88    4.39    7.67
+   225.0    0.00   -0.09   -0.36   -0.80   -1.38   -2.06   -2.80   -3.51   -4.11   -4.48   -4.53   -4.21   -3.54   -2.59   -1.42    0.02    1.87    4.37    7.71
+   230.0    0.00   -0.08   -0.35   -0.79   -1.38   -2.06   -2.80   -3.52   -4.12   -4.49   -4.54   -4.21   -3.53   -2.57   -1.38    0.04    1.87    4.38    7.77
+   235.0    0.00   -0.08   -0.35   -0.79   -1.38   -2.07   -2.81   -3.53   -4.13   -4.50   -4.54   -4.20   -3.51   -2.53   -1.35    0.07    1.90    4.41    7.85
+   240.0    0.00   -0.08   -0.35   -0.79   -1.38   -2.07   -2.82   -3.54   -4.13   -4.50   -4.53   -4.18   -3.48   -2.50   -1.32    0.10    1.93    4.45    7.95
+   245.0    0.00   -0.08   -0.35   -0.79   -1.38   -2.08   -2.82   -3.54   -4.13   -4.49   -4.51   -4.16   -3.46   -2.48   -1.28    0.14    1.97    4.50    8.04
+   250.0    0.00   -0.08   -0.35   -0.79   -1.39   -2.08   -2.82   -3.54   -4.12   -4.47   -4.49   -4.14   -3.43   -2.45   -1.26    0.16    2.00    4.56    8.13
+   255.0    0.00   -0.08   -0.35   -0.79   -1.39   -2.09   -2.83   -3.53   -4.11   -4.45   -4.47   -4.11   -3.41   -2.44   -1.25    0.18    2.03    4.60    8.19
+   260.0    0.00   -0.07   -0.34   -0.80   -1.39   -2.09   -2.83   -3.53   -4.10   -4.43   -4.44   -4.09   -3.40   -2.43   -1.24    0.19    2.04    4.62    8.23
+   265.0    0.00   -0.07   -0.34   -0.80   -1.39   -2.09   -2.82   -3.52   -4.08   -4.41   -4.42   -4.07   -3.39   -2.43   -1.25    0.18    2.03    4.61    8.22
+   270.0    0.00   -0.07   -0.34   -0.80   -1.39   -2.09   -2.82   -3.51   -4.06   -4.39   -4.40   -4.06   -3.39   -2.44   -1.27    0.16    2.01    4.58    8.18
+   275.0    0.00   -0.07   -0.34   -0.79   -1.39   -2.09   -2.82   -3.50   -4.05   -4.38   -4.40   -4.06   -3.40   -2.46   -1.29    0.13    1.96    4.52    8.11
+   280.0    0.00   -0.07   -0.34   -0.79   -1.39   -2.08   -2.81   -3.49   -4.05   -4.37   -4.40   -4.07   -3.42   -2.48   -1.32    0.09    1.91    4.44    8.01
+   285.0    0.00   -0.07   -0.34   -0.79   -1.39   -2.08   -2.80   -3.49   -4.04   -4.38   -4.41   -4.09   -3.44   -2.50   -1.35    0.05    1.84    4.35    7.91
+   290.0    0.00   -0.07   -0.34   -0.79   -1.38   -2.07   -2.79   -3.48   -4.04   -4.39   -4.43   -4.12   -3.46   -2.52   -1.37    0.01    1.78    4.25    7.81
+   295.0    0.00   -0.07   -0.34   -0.78   -1.38   -2.06   -2.79   -3.48   -4.05   -4.41   -4.46   -4.15   -3.49   -2.54   -1.39   -0.02    1.73    4.18    7.74
+   300.0    0.00   -0.07   -0.33   -0.78   -1.37   -2.05   -2.78   -3.47   -4.06   -4.43   -4.48   -4.17   -3.51   -2.55   -1.39   -0.04    1.69    4.12    7.69
+   305.0    0.00   -0.07   -0.33   -0.77   -1.36   -2.04   -2.77   -3.47   -4.06   -4.44   -4.51   -4.20   -3.52   -2.55   -1.39   -0.04    1.67    4.09    7.68
+   310.0    0.00   -0.07   -0.33   -0.77   -1.35   -2.03   -2.76   -3.47   -4.07   -4.46   -4.53   -4.21   -3.52   -2.55   -1.37   -0.02    1.68    4.10    7.71
+   315.0    0.00   -0.07   -0.33   -0.77   -1.34   -2.02   -2.75   -3.46   -4.07   -4.47   -4.54   -4.22   -3.52   -2.53   -1.35    0.01    1.71    4.14    7.76
+   320.0    0.00   -0.07   -0.33   -0.76   -1.34   -2.01   -2.74   -3.46   -4.07   -4.47   -4.54   -4.21   -3.51   -2.50   -1.31    0.05    1.76    4.20    7.84
+   325.0    0.00   -0.07   -0.33   -0.76   -1.33   -2.00   -2.73   -3.45   -4.07   -4.46   -4.53   -4.20   -3.48   -2.47   -1.28    0.10    1.83    4.29    7.91
+   330.0    0.00   -0.07   -0.33   -0.76   -1.32   -1.99   -2.72   -3.44   -4.06   -4.45   -4.51   -4.18   -3.46   -2.44   -1.24    0.16    1.91    4.38    7.98
+   335.0    0.00   -0.07   -0.33   -0.75   -1.32   -1.99   -2.72   -3.44   -4.05   -4.44   -4.49   -4.15   -3.43   -2.42   -1.20    0.21    1.99    4.48    8.03
+   340.0    0.00   -0.07   -0.33   -0.75   -1.32   -1.99   -2.71   -3.43   -4.04   -4.42   -4.47   -4.13   -3.41   -2.40   -1.18    0.26    2.07    4.57    8.05
+   345.0    0.00   -0.07   -0.33   -0.75   -1.32   -1.98   -2.71   -3.42   -4.03   -4.40   -4.45   -4.11   -3.40   -2.39   -1.17    0.29    2.14    4.64    8.04
+   350.0    0.00   -0.07   -0.33   -0.75   -1.32   -1.98   -2.71   -3.42   -4.02   -4.39   -4.43   -4.10   -3.40   -2.40   -1.17    0.31    2.18    4.70    8.01
+   355.0    0.00   -0.08   -0.33   -0.76   -1.32   -1.99   -2.71   -3.42   -4.01   -4.38   -4.43   -4.09   -3.41   -2.42   -1.20    0.30    2.21    4.74    7.96
+   360.0    0.00   -0.08   -0.34   -0.76   -1.32   -1.99   -2.71   -3.42   -4.01   -4.38   -4.43   -4.10   -3.43   -2.46   -1.23    0.28    2.22    4.76    7.92
+   G02                                                      END OF FREQUENCY    
+   R01                                                      START OF FREQUENCY  
+     -0.17      0.30     88.41                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.34   -1.32   -2.77   -4.50   -6.28   -7.91   -9.24  -10.16  -10.59  -10.51   -9.89   -8.70   -6.92   -4.49   -1.35    2.58    7.26   12.48
+     0.0    0.00   -0.31   -1.24   -2.67   -4.39   -6.19   -7.83   -9.12   -9.95  -10.29  -10.09   -9.38   -8.17   -6.39   -3.95   -0.75    3.25    7.84   12.50
+     5.0    0.00   -0.30   -1.24   -2.68   -4.39   -6.19   -7.81   -9.12   -9.96  -10.29  -10.11   -9.40   -8.18   -6.39   -3.95   -0.78    3.19    7.78   12.52
+    10.0    0.00   -0.30   -1.25   -2.68   -4.40   -6.19   -7.81   -9.12   -9.97  -10.31  -10.15   -9.44   -8.21   -6.42   -3.98   -0.83    3.11    7.69   12.53
+    15.0    0.00   -0.31   -1.25   -2.69   -4.40   -6.20   -7.82   -9.11   -9.99  -10.36  -10.20   -9.50   -8.26   -6.46   -4.03   -0.90    2.99    7.59   12.52
+    20.0    0.00   -0.31   -1.25   -2.70   -4.41   -6.18   -7.82   -9.13  -10.02  -10.40  -10.26   -9.57   -8.34   -6.52   -4.09   -0.98    2.89    7.46   12.48
+    25.0    0.00   -0.31   -1.26   -2.71   -4.42   -6.20   -7.83   -9.15  -10.04  -10.46  -10.35   -9.67   -8.43   -6.61   -4.17   -1.07    2.76    7.32   12.43
+    30.0    0.00   -0.31   -1.27   -2.71   -4.44   -6.22   -7.85   -9.18  -10.09  -10.52  -10.43   -9.77   -8.53   -6.70   -4.26   -1.17    2.64    7.19   12.36
+    35.0    0.00   -0.32   -1.27   -2.73   -4.45   -6.23   -7.86   -9.20  -10.13  -10.59  -10.52   -9.87   -8.63   -6.80   -4.34   -1.26    2.52    7.06   12.27
+    40.0    0.00   -0.32   -1.28   -2.74   -4.47   -6.26   -7.89   -9.23  -10.19  -10.66  -10.60   -9.96   -8.73   -6.88   -4.41   -1.35    2.43    6.95   12.19
+    45.0    0.00   -0.32   -1.29   -2.74   -4.48   -6.27   -7.91   -9.26  -10.24  -10.73  -10.69  -10.07   -8.82   -6.96   -4.50   -1.42    2.34    6.86   12.14
+    50.0    0.00   -0.32   -1.29   -2.76   -4.50   -6.28   -7.93   -9.29  -10.27  -10.78  -10.75  -10.14   -8.89   -7.03   -4.56   -1.47    2.28    6.80   12.10
+    55.0    0.00   -0.33   -1.31   -2.77   -4.51   -6.30   -7.95   -9.32  -10.30  -10.81  -10.79  -10.18   -8.94   -7.09   -4.61   -1.52    2.26    6.79   12.11
+    60.0    0.00   -0.33   -1.31   -2.78   -4.52   -6.31   -7.96   -9.32  -10.31  -10.83  -10.82  -10.22   -8.99   -7.12   -4.65   -1.54    2.25    6.82   12.17
+    65.0    0.00   -0.33   -1.32   -2.78   -4.53   -6.31   -7.96   -9.31  -10.30  -10.82  -10.81  -10.22   -9.00   -7.15   -4.67   -1.54    2.30    6.89   12.27
+    70.0    0.00   -0.33   -1.33   -2.79   -4.53   -6.32   -7.95   -9.30  -10.26  -10.78  -10.78  -10.20   -9.00   -7.16   -4.66   -1.51    2.36    7.00   12.39
+    75.0    0.00   -0.34   -1.32   -2.79   -4.53   -6.30   -7.93   -9.27  -10.23  -10.73  -10.74  -10.16   -8.98   -7.15   -4.64   -1.46    2.45    7.13   12.53
+    80.0    0.00   -0.34   -1.32   -2.79   -4.52   -6.29   -7.90   -9.23  -10.17  -10.68  -10.68  -10.13   -8.96   -7.13   -4.62   -1.39    2.57    7.28   12.67
+    85.0    0.00   -0.34   -1.32   -2.78   -4.51   -6.27   -7.87   -9.18  -10.11  -10.61  -10.62  -10.08   -8.93   -7.09   -4.56   -1.31    2.69    7.42   12.80
+    90.0    0.00   -0.34   -1.32   -2.78   -4.50   -6.25   -7.83   -9.12  -10.05  -10.54  -10.55  -10.03   -8.88   -7.05   -4.51   -1.22    2.82    7.56   12.89
+    95.0    0.00   -0.34   -1.32   -2.77   -4.49   -6.23   -7.81   -9.08  -10.00  -10.48  -10.51   -9.97   -8.83   -7.00   -4.44   -1.12    2.93    7.66   12.94
+   100.0    0.00   -0.34   -1.32   -2.77   -4.48   -6.22   -7.79   -9.05   -9.96  -10.44  -10.46   -9.93   -8.78   -6.94   -4.36   -1.04    3.02    7.74   12.95
+   105.0    0.00   -0.34   -1.32   -2.76   -4.47   -6.20   -7.76   -9.03   -9.94  -10.41  -10.42   -9.88   -8.72   -6.88   -4.30   -0.97    3.09    7.78   12.91
+   110.0    0.00   -0.33   -1.31   -2.75   -4.46   -6.19   -7.74   -9.02   -9.92  -10.39  -10.38   -9.83   -8.66   -6.81   -4.24   -0.91    3.12    7.77   12.86
+   115.0    0.00   -0.33   -1.31   -2.74   -4.45   -6.18   -7.74   -9.02   -9.92  -10.38  -10.36   -9.78   -8.60   -6.74   -4.17   -0.88    3.13    7.75   12.77
+   120.0    0.00   -0.34   -1.30   -2.73   -4.44   -6.17   -7.75   -9.03   -9.93  -10.38  -10.33   -9.74   -8.53   -6.68   -4.12   -0.86    3.10    7.69   12.70
+   125.0    0.00   -0.34   -1.31   -2.73   -4.43   -6.17   -7.75   -9.04   -9.94  -10.37  -10.30   -9.68   -8.47   -6.61   -4.10   -0.86    3.06    7.64   12.64
+   130.0    0.00   -0.34   -1.29   -2.72   -4.42   -6.17   -7.75   -9.06   -9.94  -10.36  -10.27   -9.63   -8.41   -6.57   -4.07   -0.88    3.03    7.58   12.61
+   135.0    0.00   -0.34   -1.29   -2.71   -4.41   -6.16   -7.75   -9.05   -9.94  -10.35  -10.23   -9.57   -8.35   -6.53   -4.07   -0.91    2.97    7.55   12.61
+   140.0    0.00   -0.34   -1.28   -2.71   -4.40   -6.15   -7.74   -9.05   -9.93  -10.33  -10.19   -9.51   -8.30   -6.50   -4.07   -0.94    2.93    7.53   12.63
+   145.0    0.00   -0.34   -1.29   -2.70   -4.39   -6.12   -7.73   -9.03   -9.90  -10.29  -10.13   -9.47   -8.26   -6.48   -4.08   -0.97    2.92    7.55   12.68
+   150.0    0.00   -0.34   -1.28   -2.70   -4.38   -6.11   -7.71   -9.01   -9.88  -10.25  -10.10   -9.42   -8.24   -6.49   -4.10   -0.99    2.91    7.58   12.73
+   155.0    0.00   -0.34   -1.28   -2.69   -4.36   -6.09   -7.69   -8.98   -9.83  -10.21  -10.06   -9.41   -8.24   -6.50   -4.12   -1.01    2.93    7.62   12.78
+   160.0    0.00   -0.34   -1.28   -2.69   -4.35   -6.08   -7.66   -8.93   -9.80  -10.18  -10.05   -9.41   -8.25   -6.52   -4.14   -1.01    2.96    7.67   12.82
+   165.0    0.00   -0.35   -1.28   -2.68   -4.35   -6.06   -7.65   -8.92   -9.78  -10.17  -10.05   -9.44   -8.28   -6.55   -4.17   -1.00    2.98    7.71   12.82
+   170.0    0.00   -0.35   -1.28   -2.69   -4.34   -6.05   -7.62   -8.90   -9.76  -10.17  -10.08   -9.46   -8.32   -6.60   -4.19   -1.01    2.99    7.71   12.80
+   175.0    0.00   -0.35   -1.29   -2.69   -4.34   -6.06   -7.62   -8.91   -9.78  -10.20  -10.12   -9.52   -8.38   -6.65   -4.23   -1.04    2.96    7.67   12.73
+   180.0    0.00   -0.36   -1.30   -2.71   -4.36   -6.06   -7.63   -8.92   -9.81  -10.25  -10.18   -9.59   -8.45   -6.70   -4.28   -1.08    2.90    7.59   12.64
+   185.0    0.00   -0.36   -1.30   -2.72   -4.38   -6.08   -7.67   -8.95   -9.87  -10.32  -10.26   -9.67   -8.53   -6.76   -4.33   -1.17    2.79    7.45   12.53
+   190.0    0.00   -0.36   -1.32   -2.74   -4.40   -6.11   -7.71   -9.02   -9.94  -10.42  -10.36   -9.78   -8.61   -6.84   -4.42   -1.28    2.63    7.28   12.42
+   195.0    0.00   -0.37   -1.33   -2.75   -4.43   -6.16   -7.77   -9.09  -10.03  -10.51  -10.46   -9.86   -8.68   -6.91   -4.52   -1.42    2.44    7.08   12.32
+   200.0    0.00   -0.36   -1.35   -2.78   -4.47   -6.22   -7.84   -9.18  -10.12  -10.61  -10.55   -9.94   -8.75   -7.00   -4.64   -1.61    2.21    6.87   12.23
+   205.0    0.00   -0.36   -1.36   -2.80   -4.50   -6.28   -7.91   -9.27  -10.23  -10.71  -10.65  -10.03   -8.82   -7.09   -4.77   -1.80    1.98    6.66   12.17
+   210.0    0.00   -0.37   -1.36   -2.82   -4.56   -6.33   -7.99   -9.35  -10.32  -10.80  -10.73  -10.10   -8.91   -7.20   -4.92   -2.01    1.75    6.46   12.13
+   215.0    0.00   -0.37   -1.38   -2.85   -4.59   -6.39   -8.06   -9.43  -10.40  -10.88  -10.80  -10.16   -8.98   -7.30   -5.06   -2.18    1.55    6.32   12.12
+   220.0    0.00   -0.38   -1.39   -2.87   -4.63   -6.45   -8.12   -9.50  -10.47  -10.93  -10.85  -10.23   -9.07   -7.41   -5.21   -2.34    1.41    6.23   12.14
+   225.0    0.00   -0.38   -1.40   -2.90   -4.66   -6.50   -8.18   -9.56  -10.51  -10.99  -10.90  -10.28   -9.15   -7.51   -5.32   -2.45    1.33    6.20   12.14
+   230.0    0.00   -0.37   -1.41   -2.92   -4.70   -6.53   -8.22   -9.60  -10.55  -11.02  -10.95  -10.34   -9.22   -7.60   -5.42   -2.51    1.31    6.22   12.16
+   235.0    0.00   -0.38   -1.41   -2.93   -4.73   -6.57   -8.25   -9.61  -10.58  -11.04  -10.98  -10.40   -9.29   -7.68   -5.46   -2.52    1.36    6.28   12.17
+   240.0    0.00   -0.38   -1.41   -2.94   -4.74   -6.59   -8.27   -9.64  -10.59  -11.06  -11.02  -10.45   -9.36   -7.73   -5.48   -2.47    1.47    6.39   12.15
+   245.0    0.00   -0.37   -1.41   -2.94   -4.75   -6.59   -8.28   -9.65  -10.61  -11.07  -11.04  -10.50   -9.41   -7.75   -5.45   -2.36    1.61    6.52   12.12
+   250.0    0.00   -0.38   -1.42   -2.94   -4.74   -6.59   -8.28   -9.65  -10.61  -11.10  -11.09  -10.54   -9.45   -7.76   -5.38   -2.23    1.78    6.65   12.09
+   255.0    0.00   -0.38   -1.41   -2.94   -4.74   -6.59   -8.27   -9.65  -10.62  -11.11  -11.10  -10.56   -9.45   -7.72   -5.29   -2.08    1.96    6.78   12.04
+   260.0    0.00   -0.38   -1.40   -2.93   -4.74   -6.57   -8.26   -9.64  -10.62  -11.13  -11.11  -10.57   -9.43   -7.65   -5.18   -1.93    2.12    6.89   12.01
+   265.0    0.00   -0.37   -1.39   -2.92   -4.73   -6.57   -8.25   -9.64  -10.62  -11.12  -11.12  -10.54   -9.40   -7.57   -5.05   -1.78    2.26    6.96   11.99
+   270.0    0.00   -0.37   -1.39   -2.90   -4.69   -6.54   -8.24   -9.63  -10.61  -11.12  -11.10  -10.52   -9.32   -7.48   -4.93   -1.66    2.37    7.01   12.00
+   275.0    0.00   -0.36   -1.38   -2.88   -4.67   -6.51   -8.21   -9.61  -10.60  -11.10  -11.07  -10.46   -9.23   -7.37   -4.82   -1.55    2.42    7.04   12.04
+   280.0    0.00   -0.36   -1.37   -2.87   -4.65   -6.49   -8.18   -9.59  -10.57  -11.08  -11.02  -10.37   -9.13   -7.26   -4.73   -1.50    2.45    7.05   12.10
+   285.0    0.00   -0.35   -1.36   -2.84   -4.61   -6.45   -8.16   -9.56  -10.54  -11.03  -10.95  -10.29   -9.03   -7.15   -4.65   -1.46    2.45    7.06   12.21
+   290.0    0.00   -0.35   -1.34   -2.82   -4.59   -6.43   -8.13   -9.52  -10.50  -10.96  -10.86  -10.18   -8.92   -7.06   -4.59   -1.44    2.43    7.07   12.31
+   295.0    0.00   -0.34   -1.33   -2.80   -4.57   -6.39   -8.09   -9.48  -10.44  -10.88  -10.78  -10.08   -8.82   -6.97   -4.54   -1.44    2.43    7.09   12.42
+   300.0    0.00   -0.34   -1.31   -2.78   -4.53   -6.35   -8.04   -9.43  -10.37  -10.80  -10.66   -9.97   -8.72   -6.91   -4.51   -1.43    2.42    7.13   12.54
+   305.0    0.00   -0.33   -1.30   -2.77   -4.50   -6.32   -8.00   -9.37  -10.29  -10.71  -10.56   -9.88   -8.64   -6.86   -4.49   -1.43    2.45    7.17   12.61
+   310.0    0.00   -0.33   -1.29   -2.73   -4.48   -6.30   -7.96   -9.32  -10.23  -10.62  -10.47   -9.78   -8.57   -6.82   -4.46   -1.39    2.51    7.26   12.66
+   315.0    0.00   -0.32   -1.29   -2.72   -4.46   -6.27   -7.94   -9.27  -10.17  -10.54  -10.38   -9.71   -8.51   -6.79   -4.43   -1.35    2.58    7.35   12.69
+   320.0    0.00   -0.32   -1.27   -2.70   -4.44   -6.25   -7.91   -9.22  -10.10  -10.46  -10.30   -9.63   -8.45   -6.74   -4.39   -1.27    2.69    7.45   12.67
+   325.0    0.00   -0.32   -1.26   -2.70   -4.43   -6.24   -7.88   -9.20  -10.06  -10.41  -10.25   -9.58   -8.40   -6.69   -4.33   -1.19    2.81    7.56   12.63
+   330.0    0.00   -0.31   -1.25   -2.68   -4.42   -6.22   -7.86   -9.18  -10.02  -10.36  -10.18   -9.52   -8.36   -6.66   -4.27   -1.09    2.93    7.65   12.59
+   335.0    0.00   -0.31   -1.24   -2.68   -4.41   -6.20   -7.85   -9.16   -9.99  -10.32  -10.16   -9.48   -8.32   -6.59   -4.20   -1.00    3.05    7.74   12.55
+   340.0    0.00   -0.30   -1.24   -2.68   -4.40   -6.20   -7.85   -9.15   -9.97  -10.30  -10.12   -9.44   -8.27   -6.54   -4.13   -0.91    3.15    7.81   12.51
+   345.0    0.00   -0.31   -1.24   -2.67   -4.40   -6.20   -7.84   -9.14   -9.96  -10.28  -10.10   -9.41   -8.23   -6.49   -4.06   -0.83    3.22    7.86   12.47
+   350.0    0.00   -0.31   -1.23   -2.67   -4.39   -6.20   -7.83   -9.12   -9.96  -10.27  -10.08   -9.39   -8.20   -6.44   -4.01   -0.78    3.27    7.88   12.47
+   355.0    0.00   -0.31   -1.24   -2.67   -4.39   -6.19   -7.83   -9.12   -9.96  -10.27  -10.08   -9.38   -8.18   -6.41   -3.97   -0.74    3.27    7.87   12.48
+   360.0    0.00   -0.31   -1.24   -2.67   -4.39   -6.19   -7.83   -9.12   -9.95  -10.29  -10.09   -9.38   -8.17   -6.39   -3.95   -0.75    3.25    7.84   12.50
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+      0.28     -0.04    119.40                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.10   -0.42   -0.90   -1.53   -2.25   -3.02   -3.81   -4.52   -5.04   -5.26   -5.14   -4.69   -3.94   -2.95   -1.68    0.02    2.39    5.61
+     0.0    0.00   -0.07   -0.35   -0.81   -1.44   -2.20   -3.01   -3.82   -4.51   -4.98   -5.15   -4.96   -4.46   -3.67   -2.61   -1.27    0.51    2.82    5.67
+     5.0    0.00   -0.07   -0.35   -0.80   -1.43   -2.19   -3.01   -3.81   -4.51   -4.96   -5.13   -4.97   -4.47   -3.70   -2.66   -1.29    0.53    2.86    5.67
+    10.0    0.00   -0.07   -0.35   -0.81   -1.43   -2.19   -3.00   -3.81   -4.48   -4.96   -5.13   -4.98   -4.52   -3.76   -2.72   -1.33    0.51    2.89    5.65
+    15.0    0.00   -0.08   -0.36   -0.81   -1.43   -2.18   -2.99   -3.79   -4.47   -4.94   -5.14   -5.01   -4.57   -3.84   -2.80   -1.39    0.48    2.88    5.61
+    20.0    0.00   -0.09   -0.36   -0.82   -1.44   -2.18   -2.99   -3.78   -4.47   -4.94   -5.15   -5.04   -4.62   -3.90   -2.88   -1.46    0.44    2.85    5.57
+    25.0    0.00   -0.09   -0.37   -0.82   -1.45   -2.18   -2.98   -3.77   -4.45   -4.95   -5.16   -5.07   -4.67   -3.97   -2.95   -1.54    0.36    2.79    5.54
+    30.0    0.00   -0.09   -0.37   -0.83   -1.45   -2.18   -2.98   -3.77   -4.45   -4.95   -5.18   -5.09   -4.70   -4.01   -3.01   -1.62    0.28    2.73    5.54
+    35.0    0.00   -0.10   -0.38   -0.85   -1.46   -2.18   -2.98   -3.76   -4.45   -4.96   -5.19   -5.10   -4.70   -4.01   -3.04   -1.67    0.19    2.65    5.56
+    40.0    0.00   -0.11   -0.39   -0.85   -1.46   -2.19   -2.98   -3.77   -4.46   -4.97   -5.19   -5.09   -4.70   -4.01   -3.05   -1.71    0.11    2.59    5.64
+    45.0    0.00   -0.11   -0.41   -0.87   -1.47   -2.19   -2.99   -3.77   -4.48   -4.97   -5.20   -5.08   -4.67   -3.97   -3.02   -1.74    0.04    2.54    5.76
+    50.0    0.00   -0.12   -0.42   -0.89   -1.49   -2.20   -2.99   -3.78   -4.48   -4.98   -5.18   -5.06   -4.61   -3.91   -2.99   -1.76    0.01    2.53    5.93
+    55.0    0.00   -0.12   -0.43   -0.90   -1.50   -2.21   -2.99   -3.79   -4.50   -4.99   -5.19   -5.04   -4.56   -3.86   -2.93   -1.73   -2.07    2.56    6.13
+    60.0    0.00   -0.12   -0.44   -0.91   -1.52   -2.22   -3.00   -3.79   -4.49   -5.00   -5.19   -5.01   -4.52   -3.80   -2.88   -1.69    0.01    2.61    6.33
+    65.0    0.00   -0.12   -0.45   -0.93   -1.53   -2.23   -3.00   -3.80   -4.51   -5.01   -5.19   -5.02   -4.50   -3.75   -2.83   -1.65    0.07    2.69    6.53
+    70.0    0.00   -0.14   -0.47   -0.95   -1.54   -2.23   -3.01   -3.79   -4.50   -5.01   -5.20   -5.02   -4.50   -3.73   -2.78   -1.58    0.14    2.80    6.71
+    75.0    0.00   -0.14   -0.48   -0.95   -1.55   -2.24   -3.00   -3.78   -4.51   -5.03   -5.22   -5.04   -4.51   -3.73   -2.77   -1.54    0.20    2.88    6.84
+    80.0    0.00   -0.14   -0.48   -0.97   -1.56   -2.24   -3.00   -3.79   -4.51   -5.03   -5.24   -5.08   -4.56   -3.76   -2.77   -1.52    0.27    2.96    6.89
+    85.0    0.00   -0.15   -0.49   -0.98   -1.57   -2.25   -3.00   -3.78   -4.51   -5.05   -5.28   -5.13   -4.61   -3.82   -2.79   -1.51    0.29    2.99    6.88
+    90.0    0.00   -0.15   -0.50   -0.99   -1.58   -2.26   -3.00   -3.78   -4.51   -5.07   -5.32   -5.19   -4.68   -3.88   -2.85   -1.54    0.29    2.96    6.79
+    95.0    0.00   -0.15   -0.50   -1.00   -1.58   -2.27   -3.01   -3.79   -4.53   -5.09   -5.35   -5.24   -4.74   -3.95   -2.91   -1.60    0.22    2.86    6.61
+   100.0    0.00   -0.16   -0.51   -1.00   -1.59   -2.26   -3.02   -3.81   -4.55   -5.12   -5.40   -5.29   -4.80   -4.02   -3.01   -1.69    0.11    2.72    6.40
+   105.0    0.00   -0.16   -0.51   -1.01   -1.60   -2.28   -3.03   -3.83   -4.57   -5.16   -5.42   -5.32   -4.85   -4.08   -3.08   -1.81   -0.04    2.51    6.13
+   110.0    0.00   -0.16   -0.52   -1.01   -1.60   -2.28   -3.05   -3.85   -4.61   -5.18   -5.46   -5.35   -4.88   -4.12   -3.15   -1.92   -0.23    2.26    5.86
+   115.0    0.00   -0.16   -0.52   -1.01   -1.61   -2.30   -3.06   -3.87   -4.63   -5.22   -5.47   -5.36   -4.88   -4.14   -3.20   -2.06   -0.43    2.01    5.59
+   120.0    0.00   -0.16   -0.52   -1.01   -1.61   -2.31   -3.09   -3.90   -4.67   -5.23   -5.48   -5.34   -4.85   -4.13   -3.24   -2.16   -0.61    1.78    5.39
+   125.0    0.00   -0.16   -0.52   -1.00   -1.61   -2.31   -3.10   -3.92   -4.68   -5.25   -5.47   -5.31   -4.81   -4.09   -3.26   -2.23   -0.76    1.60    5.23
+   130.0    0.00   -0.16   -0.50   -1.00   -1.60   -2.30   -3.10   -3.94   -4.70   -5.25   -5.46   -5.27   -4.76   -4.05   -3.24   -2.26   -0.84    1.49    5.15
+   135.0    0.00   -0.16   -0.50   -0.99   -1.60   -2.30   -3.11   -3.94   -4.70   -5.24   -5.43   -5.23   -4.70   -4.00   -3.20   -2.25   -0.87    1.46    5.14
+   140.0    0.00   -0.15   -0.49   -0.97   -1.58   -2.29   -3.09   -3.94   -4.69   -5.22   -5.40   -5.19   -4.66   -3.94   -3.14   -2.20   -0.80    1.52    5.20
+   145.0    0.00   -0.15   -0.48   -0.97   -1.57   -2.27   -3.08   -3.91   -4.67   -5.19   -5.37   -5.16   -4.62   -3.89   -3.07   -2.10   -0.68    1.66    5.31
+   150.0    0.00   -0.15   -0.47   -0.96   -1.55   -2.26   -3.06   -3.88   -4.63   -5.16   -5.34   -5.13   -4.59   -3.85   -3.00   -1.97   -0.49    1.87    5.45
+   155.0    0.00   -0.14   -0.47   -0.93   -1.54   -2.25   -3.03   -3.86   -4.60   -5.12   -5.31   -5.11   -4.59   -3.83   -2.93   -1.84   -0.28    2.11    5.60
+   160.0    0.00   -0.13   -0.46   -0.93   -1.52   -2.22   -3.00   -3.82   -4.55   -5.08   -5.28   -5.11   -4.59   -3.82   -2.88   -1.69   -0.05    2.36    5.75
+   165.0    0.00   -0.13   -0.44   -0.91   -1.50   -2.19   -2.99   -3.79   -4.53   -5.05   -5.26   -5.10   -4.60   -3.82   -2.84   -1.56    0.16    2.59    5.85
+   170.0    0.00   -0.13   -0.43   -0.90   -1.49   -2.19   -2.97   -3.76   -4.49   -5.01   -5.24   -5.10   -4.62   -3.84   -2.81   -1.47    0.33    2.78    5.91
+   175.0    0.00   -0.12   -0.43   -0.88   -1.47   -2.18   -2.95   -3.74   -4.46   -4.99   -5.22   -5.10   -4.65   -3.86   -2.81   -1.41    0.44    2.91    5.93
+   180.0    0.00   -0.11   -0.42   -0.87   -1.46   -2.16   -2.95   -3.74   -4.44   -4.98   -5.21   -5.10   -4.66   -3.89   -2.83   -1.40    0.50    2.97    5.91
+   185.0    0.00   -0.11   -0.41   -0.86   -1.46   -2.17   -2.95   -3.73   -4.45   -4.96   -5.19   -5.09   -4.67   -3.92   -2.86   -1.42    0.49    2.96    5.85
+   190.0    0.00   -0.11   -0.40   -0.86   -1.46   -2.17   -2.95   -3.75   -4.45   -4.96   -5.19   -5.08   -4.67   -3.93   -2.89   -1.48    0.43    2.88    5.76
+   195.0    0.00   -0.11   -0.39   -0.85   -1.46   -2.17   -2.96   -3.75   -4.45   -4.96   -5.18   -5.08   -4.67   -3.95   -2.93   -1.55    0.33    2.78    5.66
+   200.0    0.00   -0.11   -0.39   -0.85   -1.45   -2.18   -2.97   -3.76   -4.46   -4.95   -5.17   -5.07   -4.65   -3.96   -2.98   -1.63    0.21    2.66    5.59
+   205.0    0.00   -0.10   -0.39   -0.85   -1.45   -2.19   -2.99   -3.78   -4.47   -4.96   -5.16   -5.06   -4.64   -3.96   -3.00   -1.70    0.10    2.53    5.51
+   210.0    0.00   -0.10   -0.38   -0.84   -1.45   -2.19   -2.99   -3.79   -4.48   -4.96   -5.16   -5.05   -4.63   -3.95   -3.02   -1.76   -1.94    2.42    5.49
+   215.0    0.00   -0.10   -0.38   -0.84   -1.46   -2.20   -2.99   -3.79   -4.48   -4.97   -5.17   -5.05   -4.63   -3.95   -3.03   -1.79   -0.07    2.35    5.48
+   220.0    0.00   -0.10   -0.38   -0.85   -1.47   -2.20   -3.00   -3.79   -4.48   -4.97   -5.17   -5.06   -4.62   -3.94   -3.01   -1.78   -0.08    2.31    5.50
+   225.0    0.00   -0.10   -0.39   -0.86   -1.48   -2.21   -3.00   -3.78   -4.48   -4.97   -5.18   -5.06   -4.61   -3.91   -2.98   -1.75   -0.07    2.31    5.54
+   230.0    0.00   -0.09   -0.38   -0.86   -1.48   -2.21   -3.00   -3.78   -4.47   -4.97   -5.19   -5.06   -4.62   -3.89   -2.93   -1.70   -0.03    2.34    5.58
+   235.0    0.00   -0.09   -0.39   -0.86   -1.49   -2.22   -3.00   -3.77   -4.46   -4.97   -5.20   -5.08   -4.62   -3.86   -2.88   -1.63    0.04    2.39    5.63
+   240.0    0.00   -0.09   -0.39   -0.87   -1.51   -2.23   -3.01   -3.78   -4.46   -4.97   -5.20   -5.08   -4.61   -3.84   -2.84   -1.56    0.10    2.42    5.67
+   245.0    0.00   -0.09   -0.39   -0.89   -1.52   -2.26   -3.02   -3.78   -4.46   -4.97   -5.20   -5.09   -4.62   -3.83   -2.78   -1.49    0.16    2.45    5.67
+   250.0    0.00   -0.09   -0.39   -0.89   -1.54   -2.27   -3.03   -3.80   -4.47   -4.97   -5.20   -5.10   -4.61   -3.80   -2.75   -1.46    0.19    2.46    5.65
+   255.0    0.00   -0.09   -0.40   -0.90   -1.56   -2.30   -3.07   -3.81   -4.48   -4.98   -5.21   -5.10   -4.61   -3.80   -2.74   -1.44    0.19    2.43    5.59
+   260.0    0.00   -0.08   -0.40   -0.93   -1.58   -2.32   -3.09   -3.84   -4.50   -4.99   -5.21   -5.10   -4.61   -3.80   -2.73   -1.44    0.16    2.37    5.51
+   265.0    0.00   -0.08   -0.40   -0.93   -1.60   -2.35   -3.11   -3.86   -4.51   -5.00   -5.22   -5.10   -4.62   -3.81   -2.76   -1.48    0.10    2.28    5.40
+   270.0    0.00   -0.08   -0.41   -0.94   -1.61   -2.37   -3.14   -3.88   -4.52   -5.01   -5.22   -5.11   -4.64   -3.85   -2.81   -1.55    0.03    2.20    5.29
+   275.0    0.00   -0.08   -0.41   -0.94   -1.63   -2.38   -3.16   -3.90   -4.54   -5.02   -5.25   -5.13   -4.67   -3.90   -2.87   -1.61   -0.06    2.10    5.17
+   280.0    0.00   -0.08   -0.41   -0.94   -1.63   -2.39   -3.16   -3.90   -4.55   -5.03   -5.26   -5.16   -4.72   -3.95   -2.94   -1.69   -0.14    2.00    5.05
+   285.0    0.00   -0.08   -0.41   -0.94   -1.63   -2.40   -3.17   -3.91   -4.55   -5.04   -5.28   -5.20   -4.77   -4.02   -3.01   -1.77   -0.21    1.93    4.96
+   290.0    0.00   -0.08   -0.41   -0.94   -1.63   -2.39   -3.15   -3.89   -4.54   -5.05   -5.31   -5.25   -4.84   -4.09   -3.08   -1.83   -0.25    1.87    4.87
+   295.0    0.00   -0.08   -0.41   -0.93   -1.62   -2.37   -3.14   -3.88   -4.54   -5.06   -5.34   -5.31   -4.90   -4.16   -3.14   -1.87   -0.26    1.86    4.83
+   300.0    0.00   -0.08   -0.40   -0.93   -1.61   -2.35   -3.12   -3.85   -4.53   -5.06   -5.36   -5.34   -4.96   -4.21   -3.17   -1.88   -0.26    1.87    4.80
+   305.0    0.00   -0.08   -0.39   -0.91   -1.59   -2.33   -3.09   -3.84   -4.51   -5.06   -5.39   -5.38   -5.00   -4.25   -3.19   -1.87   -0.23    1.90    4.81
+   310.0    0.00   -0.08   -0.38   -0.90   -1.56   -2.30   -3.07   -3.82   -4.50   -5.06   -5.40   -5.40   -5.01   -4.26   -3.17   -1.82   -0.17    1.97    4.85
+   315.0    0.00   -0.08   -0.38   -0.90   -1.54   -2.28   -3.04   -3.79   -4.50   -5.07   -5.41   -5.41   -5.01   -4.24   -3.13   -1.76   -0.10    2.04    4.90
+   320.0    0.00   -0.07   -0.37   -0.87   -1.52   -2.25   -3.02   -3.79   -4.49   -5.07   -5.40   -5.39   -4.98   -4.18   -3.06   -1.69   -0.02    2.12    5.00
+   325.0    0.00   -0.07   -0.37   -0.86   -1.51   -2.24   -3.01   -3.78   -4.50   -5.06   -5.38   -5.35   -4.92   -4.10   -2.99   -1.61    0.06    2.22    5.09
+   330.0    0.00   -0.07   -0.37   -0.86   -1.48   -2.22   -3.00   -3.78   -4.50   -5.05   -5.35   -5.30   -4.84   -4.00   -2.89   -1.52    0.15    2.31    5.21
+   335.0    0.00   -0.07   -0.36   -0.83   -1.47   -2.21   -3.00   -3.79   -4.51   -5.05   -5.31   -5.22   -4.74   -3.91   -2.79   -1.44    0.22    2.41    5.31
+   340.0    0.00   -0.07   -0.35   -0.82   -1.46   -2.20   -3.00   -3.80   -4.52   -5.04   -5.28   -5.15   -4.65   -3.81   -2.71   -1.37    0.30    2.51    5.42
+   345.0    0.00   -0.06   -0.34   -0.82   -1.45   -2.19   -3.00   -3.81   -4.52   -5.03   -5.24   -5.09   -4.57   -3.73   -2.65   -1.31    0.37    2.60    5.52
+   350.0    0.00   -0.06   -0.34   -0.81   -1.45   -2.19   -3.01   -3.82   -4.52   -5.02   -5.20   -5.03   -4.50   -3.68   -2.61   -1.27    0.43    2.69    5.60
+   355.0    0.00   -0.07   -0.34   -0.81   -1.45   -2.20   -3.01   -3.82   -4.51   -5.00   -5.17   -4.98   -4.47   -3.65   -2.60   -1.26    0.47    2.77    5.64
+   360.0    0.00   -0.07   -0.35   -0.81   -1.44   -2.20   -3.01   -3.82   -4.51   -4.98   -5.15   -4.96   -4.46   -3.67   -2.61   -1.27    0.51    2.82    5.67
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TPSCR.G3        SCIS                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               5    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     4                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+Number of Calibrated Antennas GPS:      005                 COMMENT             
+Number of Individual Calibrations GPS:  010                 COMMENT             
+Number of Calibrated Antennas GLO:      005                 COMMENT             
+Number of Individual Calibrations GLO:  010                 COMMENT             
+# GLONASS PCV                                               COMMENT             
+#  derived from Delta PCV per 25.0 MHz                      COMMENT             
+#  for frequency channel number k=0                         COMMENT             
+   G01                                                      START OF FREQUENCY  
+     -0.21      0.28     84.17                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.36   -1.39   -2.95   -4.84   -6.80   -8.59   -9.98  -10.81  -10.97  -10.44   -9.28   -7.53   -5.22   -2.32    1.33    5.91   11.47   17.81
+     0.0    0.00   -0.33   -1.33   -2.87   -4.75   -6.73   -8.56  -10.01  -10.88  -11.05  -10.51   -9.33   -7.60   -5.38   -2.61    0.90    5.38   10.87   16.96
+     5.0    0.00   -0.33   -1.34   -2.89   -4.78   -6.76   -8.60  -10.06  -10.95  -11.14  -10.61   -9.42   -7.66   -5.41   -2.62    0.89    5.33   10.77   16.83
+    10.0    0.00   -0.34   -1.35   -2.91   -4.80   -6.79   -8.64  -10.12  -11.03  -11.24  -10.71   -9.50   -7.72   -5.43   -2.62    0.89    5.29   10.68   16.74
+    15.0    0.00   -0.34   -1.36   -2.92   -4.82   -6.83   -8.69  -10.18  -11.11  -11.33  -10.81   -9.59   -7.77   -5.45   -2.61    0.89    5.26   10.61   16.70
+    20.0    0.00   -0.34   -1.37   -2.94   -4.85   -6.86   -8.73  -10.25  -11.19  -11.43  -10.90   -9.67   -7.82   -5.46   -2.59    0.90    5.24   10.57   16.70
+    25.0    0.00   -0.35   -1.38   -2.95   -4.87   -6.89   -8.78  -10.30  -11.26  -11.51  -10.99   -9.74   -7.86   -5.47   -2.59    0.91    5.24   10.57   16.76
+    30.0    0.00   -0.35   -1.39   -2.97   -4.88   -6.91   -8.81  -10.35  -11.32  -11.58  -11.07   -9.81   -7.91   -5.50   -2.59    0.92    5.26   10.60   16.85
+    35.0    0.00   -0.36   -1.40   -2.98   -4.90   -6.93   -8.83  -10.38  -11.36  -11.63  -11.12   -9.87   -7.96   -5.53   -2.60    0.94    5.30   10.67   16.98
+    40.0    0.00   -0.36   -1.40   -2.98   -4.90   -6.94   -8.84  -10.39  -11.38  -11.66  -11.16   -9.91   -8.01   -5.57   -2.62    0.95    5.36   10.78   17.13
+    45.0    0.00   -0.36   -1.41   -2.99   -4.91   -6.94   -8.84  -10.38  -11.37  -11.66  -11.17   -9.94   -8.05   -5.62   -2.64    0.97    5.44   10.91   17.30
+    50.0    0.00   -0.36   -1.41   -2.99   -4.91   -6.93   -8.82  -10.36  -11.34  -11.62  -11.15   -9.94   -8.08   -5.65   -2.67    1.00    5.54   11.08   17.47
+    55.0    0.00   -0.37   -1.41   -2.99   -4.90   -6.91   -8.79  -10.31  -11.28  -11.56  -11.10   -9.91   -8.09   -5.68   -2.68    1.04    5.66   11.26   17.64
+    60.0    0.00   -0.37   -1.41   -2.99   -4.89   -6.89   -8.75  -10.25  -11.20  -11.47  -11.02   -9.86   -8.07   -5.68   -2.67    1.10    5.79   11.46   17.80
+    65.0    0.00   -0.37   -1.41   -2.98   -4.87   -6.86   -8.70  -10.18  -11.10  -11.36  -10.92   -9.78   -8.02   -5.66   -2.64    1.18    5.94   11.66   17.96
+    70.0    0.00   -0.37   -1.41   -2.98   -4.86   -6.83   -8.65  -10.10  -11.00  -11.25  -10.80   -9.68   -7.94   -5.60   -2.58    1.27    6.10   11.86   18.11
+    75.0    0.00   -0.37   -1.41   -2.97   -4.84   -6.80   -8.60  -10.03  -10.90  -11.13  -10.67   -9.56   -7.84   -5.51   -2.48    1.39    6.26   12.05   18.26
+    80.0    0.00   -0.38   -1.41   -2.96   -4.83   -6.77   -8.55   -9.96  -10.81  -11.01  -10.54   -9.42   -7.71   -5.39   -2.36    1.53    6.43   12.23   18.41
+    85.0    0.00   -0.38   -1.41   -2.95   -4.81   -6.74   -8.52   -9.90  -10.73  -10.91  -10.42   -9.29   -7.57   -5.24   -2.22    1.68    6.59   12.39   18.54
+    90.0    0.00   -0.38   -1.41   -2.95   -4.80   -6.72   -8.48   -9.86  -10.67  -10.83  -10.31   -9.16   -7.42   -5.09   -2.06    1.84    6.74   12.53   18.67
+    95.0    0.00   -0.38   -1.41   -2.94   -4.79   -6.71   -8.46   -9.82  -10.62  -10.76  -10.22   -9.04   -7.28   -4.94   -1.90    1.99    6.86   12.63   18.77
+   100.0    0.00   -0.38   -1.40   -2.94   -4.78   -6.69   -8.44   -9.80  -10.59  -10.71  -10.15   -8.95   -7.16   -4.79   -1.75    2.12    6.96   12.70   18.86
+   105.0    0.00   -0.38   -1.40   -2.93   -4.77   -6.68   -8.43   -9.78  -10.56  -10.67  -10.10   -8.88   -7.06   -4.67   -1.63    2.22    7.03   12.73   18.91
+   110.0    0.00   -0.38   -1.40   -2.93   -4.77   -6.68   -8.42   -9.76  -10.54  -10.65  -10.06   -8.83   -6.99   -4.59   -1.54    2.29    7.05   12.72   18.92
+   115.0    0.00   -0.38   -1.41   -2.93   -4.77   -6.67   -8.41   -9.75  -10.53  -10.63  -10.04   -8.80   -6.95   -4.53   -1.49    2.32    7.03   12.66   18.89
+   120.0    0.00   -0.38   -1.41   -2.93   -4.77   -6.67   -8.40   -9.74  -10.52  -10.62  -10.03   -8.79   -6.94   -4.52   -1.48    2.30    6.97   12.56   18.82
+   125.0    0.00   -0.39   -1.41   -2.94   -4.77   -6.67   -8.40   -9.73  -10.50  -10.61  -10.03   -8.79   -6.95   -4.53   -1.51    2.24    6.86   12.41   18.71
+   130.0    0.00   -0.39   -1.41   -2.95   -4.78   -6.67   -8.39   -9.72  -10.49  -10.60  -10.03   -8.81   -6.98   -4.58   -1.57    2.15    6.72   12.23   18.56
+   135.0    0.00   -0.39   -1.42   -2.95   -4.79   -6.68   -8.39   -9.71  -10.47  -10.59  -10.03   -8.83   -7.02   -4.64   -1.66    2.03    6.55   12.03   18.39
+   140.0    0.00   -0.39   -1.43   -2.96   -4.80   -6.69   -8.40   -9.70  -10.46  -10.58  -10.04   -8.85   -7.07   -4.72   -1.76    1.89    6.37   11.82   18.19
+   145.0    0.00   -0.39   -1.43   -2.98   -4.82   -6.71   -8.41   -9.71  -10.46  -10.58  -10.05   -8.88   -7.13   -4.80   -1.87    1.74    6.19   11.60   18.00
+   150.0    0.00   -0.39   -1.44   -2.99   -4.84   -6.73   -8.43   -9.72  -10.47  -10.59  -10.06   -8.92   -7.18   -4.88   -1.98    1.60    6.01   11.41   17.81
+   155.0    0.00   -0.40   -1.45   -3.01   -4.86   -6.76   -8.46   -9.75  -10.49  -10.61  -10.09   -8.96   -7.24   -4.96   -2.08    1.47    5.85   11.23   17.64
+   160.0    0.00   -0.40   -1.45   -3.02   -4.89   -6.79   -8.49   -9.79  -10.53  -10.65  -10.13   -9.01   -7.30   -5.03   -2.18    1.35    5.72   11.08   17.49
+   165.0    0.00   -0.40   -1.46   -3.04   -4.92   -6.83   -8.54   -9.84  -10.58  -10.70  -10.19   -9.07   -7.36   -5.11   -2.26    1.26    5.61   10.97   17.36
+   170.0    0.00   -0.40   -1.47   -3.06   -4.95   -6.87   -8.59   -9.90  -10.64  -10.77  -10.26   -9.14   -7.44   -5.18   -2.34    1.17    5.53   10.89   17.26
+   175.0    0.00   -0.40   -1.48   -3.07   -4.98   -6.92   -8.65   -9.96  -10.72  -10.85  -10.34   -9.22   -7.51   -5.26   -2.42    1.10    5.47   10.83   17.18
+   180.0    0.00   -0.40   -1.48   -3.09   -5.00   -6.96   -8.70  -10.03  -10.80  -10.93  -10.43   -9.30   -7.60   -5.34   -2.50    1.04    5.42   10.79   17.13
+   185.0    0.00   -0.40   -1.49   -3.11   -5.03   -7.00   -8.76  -10.10  -10.88  -11.02  -10.52   -9.39   -7.69   -5.43   -2.58    0.97    5.37   10.77   17.10
+   190.0    0.00   -0.40   -1.49   -3.12   -5.06   -7.04   -8.81  -10.16  -10.95  -11.10  -10.60   -9.48   -7.78   -5.52   -2.67    0.89    5.33   10.76   17.08
+   195.0    0.00   -0.40   -1.49   -3.13   -5.08   -7.07   -8.85  -10.21  -11.01  -11.16  -10.67   -9.56   -7.87   -5.62   -2.76    0.81    5.28   10.74   17.08
+   200.0    0.00   -0.40   -1.49   -3.13   -5.09   -7.10   -8.89  -10.25  -11.05  -11.21  -10.73   -9.62   -7.94   -5.70   -2.86    0.73    5.22   10.73   17.10
+   205.0    0.00   -0.40   -1.49   -3.14   -5.10   -7.11   -8.91  -10.28  -11.09  -11.25  -10.76   -9.67   -8.00   -5.78   -2.95    0.64    5.16   10.73   17.15
+   210.0    0.00   -0.39   -1.49   -3.14   -5.10   -7.12   -8.93  -10.30  -11.10  -11.26  -10.78   -9.69   -8.04   -5.85   -3.03    0.56    5.11   10.73   17.23
+   215.0    0.00   -0.39   -1.48   -3.13   -5.10   -7.12   -8.93  -10.30  -11.10  -11.26  -10.77   -9.69   -8.06   -5.89   -3.09    0.49    5.07   10.75   17.34
+   220.0    0.00   -0.39   -1.48   -3.12   -5.09   -7.12   -8.92  -10.30  -11.09  -11.24  -10.75   -9.68   -8.06   -5.91   -3.13    0.46    5.06   10.80   17.48
+   225.0    0.00   -0.38   -1.47   -3.11   -5.08   -7.10   -8.91  -10.28  -11.07  -11.21  -10.72   -9.65   -8.04   -5.90   -3.13    0.46    5.09   10.89   17.65
+   230.0    0.00   -0.38   -1.46   -3.10   -5.06   -7.08   -8.88  -10.25  -11.04  -11.17  -10.68   -9.60   -8.00   -5.86   -3.09    0.50    5.16   11.01   17.86
+   235.0    0.00   -0.37   -1.45   -3.08   -5.04   -7.05   -8.85  -10.22  -11.00  -11.13  -10.63   -9.56   -7.95   -5.80   -3.02    0.59    5.28   11.17   18.08
+   240.0    0.00   -0.37   -1.43   -3.05   -5.00   -7.01   -8.81  -10.17  -10.96  -11.09  -10.59   -9.50   -7.89   -5.72   -2.92    0.73    5.44   11.36   18.31
+   245.0    0.00   -0.36   -1.42   -3.03   -4.97   -6.97   -8.76  -10.13  -10.91  -11.05  -10.55   -9.46   -7.82   -5.63   -2.79    0.90    5.65   11.58   18.53
+   250.0    0.00   -0.36   -1.40   -3.00   -4.93   -6.92   -8.71  -10.07  -10.86  -11.00  -10.50   -9.41   -7.76   -5.53   -2.63    1.10    5.88   11.81   18.73
+   255.0    0.00   -0.35   -1.39   -2.97   -4.89   -6.87   -8.65  -10.02  -10.81  -10.96  -10.47   -9.37   -7.69   -5.42   -2.47    1.32    6.13   12.04   18.90
+   260.0    0.00   -0.34   -1.37   -2.94   -4.85   -6.82   -8.59   -9.96  -10.75  -10.91  -10.43   -9.32   -7.62   -5.31   -2.30    1.55    6.38   12.26   19.02
+   265.0    0.00   -0.34   -1.35   -2.92   -4.81   -6.76   -8.53   -9.90  -10.70  -10.87  -10.39   -9.28   -7.56   -5.20   -2.14    1.75    6.60   12.43   19.10
+   270.0    0.00   -0.33   -1.34   -2.89   -4.76   -6.71   -8.48   -9.84  -10.65  -10.82  -10.35   -9.23   -7.49   -5.09   -1.99    1.93    6.78   12.56   19.13
+   275.0    0.00   -0.33   -1.33   -2.86   -4.73   -6.67   -8.42   -9.79  -10.60  -10.78  -10.30   -9.17   -7.41   -4.99   -1.86    2.07    6.90   12.64   19.11
+   280.0    0.00   -0.32   -1.31   -2.84   -4.69   -6.62   -8.38   -9.74  -10.55  -10.73  -10.25   -9.11   -7.33   -4.90   -1.76    2.17    6.97   12.66   19.06
+   285.0    0.00   -0.32   -1.30   -2.82   -4.66   -6.59   -8.34   -9.71  -10.52  -10.69  -10.19   -9.04   -7.25   -4.82   -1.69    2.21    6.98   12.62   18.97
+   290.0    0.00   -0.31   -1.29   -2.80   -4.64   -6.56   -8.32   -9.68  -10.49  -10.65  -10.14   -8.97   -7.17   -4.74   -1.65    2.21    6.93   12.54   18.88
+   295.0    0.00   -0.31   -1.28   -2.79   -4.62   -6.55   -8.31   -9.67  -10.48  -10.62  -10.08   -8.89   -7.09   -4.68   -1.64    2.16    6.83   12.42   18.77
+   300.0    0.00   -0.31   -1.28   -2.78   -4.61   -6.54   -8.30   -9.67  -10.47  -10.60  -10.04   -8.83   -7.02   -4.64   -1.65    2.08    6.70   12.28   18.66
+   305.0    0.00   -0.31   -1.27   -2.77   -4.61   -6.54   -8.31   -9.69  -10.48  -10.59  -10.00   -8.77   -6.97   -4.62   -1.70    1.96    6.54   12.13   18.56
+   310.0    0.00   -0.31   -1.27   -2.77   -4.61   -6.55   -8.33   -9.70  -10.49  -10.59   -9.98   -8.73   -6.93   -4.63   -1.77    1.83    6.37   11.98   18.46
+   315.0    0.00   -0.31   -1.27   -2.77   -4.61   -6.56   -8.34   -9.73  -10.52  -10.60   -9.98   -8.72   -6.93   -4.66   -1.85    1.69    6.21   11.84   18.36
+   320.0    0.00   -0.31   -1.27   -2.77   -4.62   -6.57   -8.37   -9.76  -10.55  -10.62   -9.99   -8.72   -6.95   -4.71   -1.95    1.55    6.06   11.71   18.26
+   325.0    0.00   -0.31   -1.27   -2.78   -4.63   -6.59   -8.39   -9.79  -10.58  -10.65  -10.01   -8.75   -6.99   -4.79   -2.06    1.41    5.92   11.60   18.14
+   330.0    0.00   -0.31   -1.28   -2.79   -4.64   -6.60   -8.41   -9.81  -10.61  -10.69  -10.06   -8.80   -7.06   -4.88   -2.18    1.29    5.81   11.49   18.01
+   335.0    0.00   -0.31   -1.28   -2.80   -4.66   -6.62   -8.43   -9.84  -10.64  -10.73  -10.11   -8.87   -7.15   -4.98   -2.29    1.18    5.71   11.39   17.85
+   340.0    0.00   -0.31   -1.29   -2.81   -4.67   -6.64   -8.45   -9.87  -10.68  -10.78  -10.18   -8.96   -7.24   -5.08   -2.39    1.09    5.62   11.29   17.68
+   345.0    0.00   -0.32   -1.30   -2.82   -4.69   -6.66   -8.48   -9.90  -10.72  -10.84  -10.25   -9.05   -7.34   -5.18   -2.47    1.02    5.55   11.19   17.50
+   350.0    0.00   -0.32   -1.31   -2.84   -4.71   -6.68   -8.50   -9.93  -10.76  -10.90  -10.33   -9.14   -7.43   -5.26   -2.54    0.96    5.49   11.09   17.31
+   355.0    0.00   -0.32   -1.32   -2.86   -4.73   -6.71   -8.53   -9.97  -10.82  -10.97  -10.42   -9.24   -7.52   -5.33   -2.58    0.92    5.43   10.98   17.13
+   360.0    0.00   -0.33   -1.33   -2.87   -4.75   -6.73   -8.56  -10.01  -10.88  -11.05  -10.51   -9.33   -7.60   -5.38   -2.61    0.90    5.38   10.87   16.96
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.45     -0.08    120.26                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.09   -0.36   -0.77   -1.29   -1.90   -2.57   -3.25   -3.85   -4.25   -4.31   -3.99   -3.30   -2.34   -1.20    0.14    1.94    4.58    8.40
+     0.0    0.00   -0.10   -0.35   -0.71   -1.18   -1.75   -2.40   -3.08   -3.71   -4.15   -4.27   -3.97   -3.28   -2.28   -1.06    0.36    2.16    4.74    8.63
+     5.0    0.00   -0.10   -0.35   -0.72   -1.18   -1.74   -2.39   -3.08   -3.72   -4.17   -4.29   -4.00   -3.30   -2.30   -1.09    0.33    2.15    4.78    8.75
+    10.0    0.00   -0.11   -0.35   -0.72   -1.18   -1.74   -2.39   -3.08   -3.73   -4.19   -4.32   -4.02   -3.33   -2.33   -1.13    0.28    2.12    4.80    8.84
+    15.0    0.00   -0.11   -0.36   -0.72   -1.18   -1.74   -2.39   -3.09   -3.75   -4.21   -4.34   -4.05   -3.35   -2.37   -1.18    0.21    2.06    4.80    8.91
+    20.0    0.00   -0.11   -0.36   -0.73   -1.19   -1.74   -2.40   -3.10   -3.77   -4.24   -4.36   -4.07   -3.38   -2.40   -1.24    0.13    1.99    4.78    8.94
+    25.0    0.00   -0.11   -0.37   -0.73   -1.20   -1.75   -2.41   -3.12   -3.79   -4.26   -4.38   -4.08   -3.39   -2.43   -1.30    0.04    1.90    4.74    8.95
+    30.0    0.00   -0.11   -0.37   -0.74   -1.21   -1.77   -2.43   -3.14   -3.81   -4.27   -4.39   -4.08   -3.39   -2.45   -1.36   -0.04    1.81    4.68    8.93
+    35.0    0.00   -0.11   -0.38   -0.75   -1.22   -1.79   -2.45   -3.17   -3.83   -4.29   -4.39   -4.07   -3.38   -2.45   -1.40   -0.11    1.73    4.63    8.90
+    40.0    0.00   -0.12   -0.38   -0.76   -1.24   -1.81   -2.47   -3.19   -3.86   -4.30   -4.39   -4.05   -3.36   -2.45   -1.42   -0.16    1.67    4.59    8.87
+    45.0    0.00   -0.12   -0.39   -0.78   -1.26   -1.83   -2.50   -3.22   -3.88   -4.31   -4.38   -4.03   -3.33   -2.43   -1.42   -0.19    1.64    4.57    8.83
+    50.0    0.00   -0.12   -0.39   -0.79   -1.27   -1.86   -2.53   -3.24   -3.89   -4.32   -4.38   -4.01   -3.30   -2.39   -1.40   -0.18    1.64    4.58    8.81
+    55.0    0.00   -0.12   -0.40   -0.80   -1.29   -1.88   -2.55   -3.27   -3.91   -4.32   -4.37   -3.98   -3.26   -2.36   -1.36   -0.15    1.68    4.61    8.80
+    60.0    0.00   -0.12   -0.40   -0.81   -1.31   -1.90   -2.57   -3.28   -3.92   -4.33   -4.36   -3.96   -3.23   -2.31   -1.31   -0.09    1.75    4.68    8.81
+    65.0    0.00   -0.12   -0.41   -0.82   -1.33   -1.92   -2.59   -3.30   -3.93   -4.33   -4.35   -3.94   -3.20   -2.27   -1.25   -0.01    1.84    4.76    8.84
+    70.0    0.00   -0.12   -0.41   -0.83   -1.34   -1.94   -2.61   -3.31   -3.94   -4.33   -4.34   -3.93   -3.17   -2.23   -1.18    0.08    1.95    4.86    8.88
+    75.0    0.00   -0.12   -0.41   -0.84   -1.35   -1.95   -2.62   -3.32   -3.94   -4.33   -4.34   -3.92   -3.16   -2.19   -1.12    0.18    2.06    4.95    8.92
+    80.0    0.00   -0.12   -0.42   -0.84   -1.36   -1.97   -2.64   -3.33   -3.94   -4.32   -4.34   -3.92   -3.15   -2.17   -1.07    0.26    2.15    5.03    8.96
+    85.0    0.00   -0.12   -0.42   -0.85   -1.37   -1.98   -2.65   -3.33   -3.94   -4.32   -4.34   -3.92   -3.15   -2.15   -1.03    0.32    2.22    5.09    8.98
+    90.0    0.00   -0.12   -0.41   -0.85   -1.38   -1.99   -2.65   -3.34   -3.94   -4.32   -4.34   -3.93   -3.16   -2.15   -1.00    0.36    2.26    5.10    8.96
+    95.0    0.00   -0.12   -0.41   -0.85   -1.38   -2.00   -2.66   -3.35   -3.94   -4.32   -4.34   -3.94   -3.17   -2.16   -1.00    0.38    2.27    5.07    8.91
+   100.0    0.00   -0.11   -0.41   -0.85   -1.39   -2.00   -2.67   -3.35   -3.95   -4.33   -4.35   -3.96   -3.19   -2.18   -1.01    0.37    2.24    5.00    8.80
+   105.0    0.00   -0.11   -0.41   -0.84   -1.39   -2.01   -2.68   -3.36   -3.95   -4.33   -4.36   -3.97   -3.22   -2.21   -1.04    0.34    2.18    4.89    8.65
+   110.0    0.00   -0.11   -0.40   -0.84   -1.39   -2.01   -2.69   -3.37   -3.96   -4.34   -4.37   -4.00   -3.25   -2.24   -1.07    0.29    2.11    4.74    8.46
+   115.0    0.00   -0.11   -0.40   -0.84   -1.39   -2.02   -2.70   -3.38   -3.97   -4.35   -4.38   -4.02   -3.28   -2.28   -1.11    0.25    2.02    4.59    8.24
+   120.0    0.00   -0.10   -0.39   -0.83   -1.38   -2.02   -2.71   -3.39   -3.98   -4.36   -4.40   -4.05   -3.32   -2.32   -1.15    0.21    1.95    4.43    8.01
+   125.0    0.00   -0.10   -0.38   -0.82   -1.38   -2.02   -2.71   -3.39   -3.98   -4.36   -4.42   -4.08   -3.36   -2.36   -1.18    0.18    1.89    4.29    7.78
+   130.0    0.00   -0.10   -0.38   -0.81   -1.37   -2.02   -2.71   -3.40   -3.99   -4.37   -4.43   -4.10   -3.39   -2.39   -1.19    0.18    1.86    4.19    7.59
+   135.0    0.00   -0.09   -0.37   -0.81   -1.37   -2.02   -2.71   -3.40   -3.99   -4.38   -4.44   -4.12   -3.42   -2.40   -1.19    0.19    1.86    4.12    7.45
+   140.0    0.00   -0.09   -0.36   -0.80   -1.36   -2.01   -2.71   -3.40   -3.99   -4.37   -4.45   -4.14   -3.43   -2.41   -1.17    0.23    1.89    4.11    7.37
+   145.0    0.00   -0.09   -0.36   -0.79   -1.35   -2.01   -2.70   -3.39   -3.98   -4.37   -4.45   -4.14   -3.44   -2.40   -1.14    0.28    1.94    4.14    7.36
+   150.0    0.00   -0.08   -0.35   -0.78   -1.34   -2.00   -2.70   -3.38   -3.97   -4.36   -4.44   -4.14   -3.43   -2.39   -1.10    0.35    2.02    4.20    7.42
+   155.0    0.00   -0.08   -0.34   -0.77   -1.33   -1.99   -2.69   -3.37   -3.95   -4.34   -4.42   -4.12   -3.41   -2.36   -1.06    0.41    2.10    4.29    7.55
+   160.0    0.00   -0.08   -0.34   -0.76   -1.32   -1.98   -2.68   -3.36   -3.94   -4.32   -4.40   -4.09   -3.38   -2.32   -1.01    0.46    2.17    4.40    7.73
+   165.0    0.00   -0.08   -0.33   -0.76   -1.32   -1.97   -2.67   -3.34   -3.92   -4.29   -4.36   -4.05   -3.34   -2.28   -0.98    0.50    2.22    4.50    7.93
+   170.0    0.00   -0.07   -0.33   -0.75   -1.31   -1.96   -2.66   -3.33   -3.90   -4.27   -4.33   -4.02   -3.30   -2.25   -0.96    0.51    2.24    4.58    8.13
+   175.0    0.00   -0.07   -0.32   -0.75   -1.30   -1.96   -2.65   -3.32   -3.88   -4.24   -4.30   -3.98   -3.26   -2.22   -0.95    0.50    2.24    4.63    8.31
+   180.0    0.00   -0.07   -0.32   -0.74   -1.30   -1.95   -2.64   -3.30   -3.87   -4.22   -4.27   -3.94   -3.23   -2.21   -0.97    0.46    2.20    4.65    8.44
+   185.0    0.00   -0.07   -0.32   -0.74   -1.30   -1.94   -2.63   -3.30   -3.85   -4.20   -4.25   -3.92   -3.21   -2.21   -1.00    0.40    2.14    4.64    8.50
+   190.0    0.00   -0.07   -0.32   -0.74   -1.29   -1.94   -2.63   -3.29   -3.85   -4.20   -4.23   -3.90   -3.20   -2.22   -1.04    0.33    2.06    4.59    8.50
+   195.0    0.00   -0.07   -0.32   -0.74   -1.29   -1.94   -2.62   -3.29   -3.84   -4.19   -4.23   -3.90   -3.21   -2.24   -1.09    0.25    1.98    4.53    8.44
+   200.0    0.00   -0.07   -0.32   -0.74   -1.29   -1.94   -2.62   -3.28   -3.84   -4.20   -4.24   -3.91   -3.22   -2.27   -1.14    0.18    1.90    4.45    8.32
+   205.0    0.00   -0.07   -0.32   -0.74   -1.30   -1.94   -2.62   -3.28   -3.85   -4.20   -4.25   -3.92   -3.24   -2.30   -1.19    0.12    1.84    4.38    8.17
+   210.0    0.00   -0.07   -0.32   -0.74   -1.30   -1.94   -2.62   -3.28   -3.85   -4.21   -4.27   -3.94   -3.27   -2.33   -1.22    0.08    1.80    4.32    8.00
+   215.0    0.00   -0.07   -0.32   -0.75   -1.30   -1.94   -2.62   -3.28   -3.86   -4.23   -4.28   -3.96   -3.28   -2.35   -1.24    0.06    1.78    4.29    7.86
+   220.0    0.00   -0.07   -0.33   -0.75   -1.30   -1.94   -2.61   -3.28   -3.86   -4.24   -4.30   -3.98   -3.30   -2.36   -1.25    0.07    1.80    4.29    7.75
+   225.0    0.00   -0.07   -0.33   -0.75   -1.30   -1.94   -2.61   -3.29   -3.87   -4.25   -4.31   -3.98   -3.29   -2.35   -1.23    0.09    1.83    4.33    7.71
+   230.0    0.00   -0.07   -0.33   -0.76   -1.31   -1.94   -2.61   -3.29   -3.87   -4.25   -4.31   -3.98   -3.28   -2.32   -1.20    0.13    1.89    4.40    7.74
+   235.0    0.00   -0.07   -0.33   -0.76   -1.31   -1.94   -2.61   -3.29   -3.87   -4.25   -4.30   -3.96   -3.25   -2.29   -1.16    0.17    1.95    4.49    7.83
+   240.0    0.00   -0.07   -0.34   -0.76   -1.31   -1.94   -2.61   -3.29   -3.87   -4.25   -4.29   -3.94   -3.22   -2.25   -1.12    0.21    2.01    4.60    8.00
+   245.0    0.00   -0.07   -0.34   -0.77   -1.31   -1.93   -2.61   -3.28   -3.87   -4.25   -4.28   -3.91   -3.18   -2.20   -1.08    0.25    2.07    4.71    8.21
+   250.0    0.00   -0.08   -0.34   -0.77   -1.31   -1.93   -2.61   -3.28   -3.87   -4.24   -4.26   -3.88   -3.14   -2.17   -1.06    0.27    2.11    4.82    8.45
+   255.0    0.00   -0.08   -0.34   -0.77   -1.31   -1.93   -2.60   -3.28   -3.87   -4.23   -4.25   -3.86   -3.11   -2.15   -1.05    0.27    2.12    4.91    8.70
+   260.0    0.00   -0.08   -0.35   -0.77   -1.31   -1.92   -2.60   -3.27   -3.86   -4.23   -4.24   -3.85   -3.10   -2.14   -1.06    0.25    2.12    4.97    8.92
+   265.0    0.00   -0.08   -0.35   -0.77   -1.30   -1.92   -2.59   -3.27   -3.86   -4.22   -4.24   -3.85   -3.11   -2.16   -1.09    0.21    2.09    5.01    9.10
+   270.0    0.00   -0.08   -0.35   -0.77   -1.30   -1.91   -2.58   -3.26   -3.85   -4.22   -4.25   -3.87   -3.14   -2.20   -1.14    0.16    2.05    5.01    9.21
+   275.0    0.00   -0.08   -0.35   -0.77   -1.29   -1.90   -2.57   -3.25   -3.84   -4.23   -4.26   -3.90   -3.19   -2.27   -1.20    0.10    2.00    4.97    9.26
+   280.0    0.00   -0.08   -0.35   -0.77   -1.29   -1.89   -2.56   -3.24   -3.84   -4.23   -4.29   -3.95   -3.26   -2.34   -1.28    0.03    1.93    4.91    9.23
+   285.0    0.00   -0.08   -0.35   -0.76   -1.28   -1.88   -2.55   -3.23   -3.83   -4.24   -4.31   -4.00   -3.33   -2.43   -1.36   -0.04    1.87    4.83    9.14
+   290.0    0.00   -0.09   -0.35   -0.76   -1.28   -1.88   -2.54   -3.21   -3.83   -4.24   -4.34   -4.05   -3.41   -2.51   -1.43   -0.09    1.81    4.73    8.99
+   295.0    0.00   -0.09   -0.35   -0.76   -1.27   -1.87   -2.52   -3.20   -3.82   -4.25   -4.36   -4.10   -3.47   -2.58   -1.49   -0.14    1.76    4.63    8.81
+   300.0    0.00   -0.09   -0.35   -0.75   -1.26   -1.86   -2.51   -3.19   -3.81   -4.24   -4.38   -4.13   -3.53   -2.64   -1.53   -0.16    1.72    4.53    8.60
+   305.0    0.00   -0.09   -0.35   -0.75   -1.26   -1.85   -2.51   -3.18   -3.80   -4.24   -4.38   -4.15   -3.56   -2.67   -1.55   -0.17    1.70    4.43    8.40
+   310.0    0.00   -0.09   -0.35   -0.75   -1.25   -1.84   -2.50   -3.17   -3.79   -4.23   -4.38   -4.16   -3.57   -2.67   -1.54   -0.15    1.70    4.36    8.23
+   315.0    0.00   -0.09   -0.35   -0.74   -1.25   -1.84   -2.49   -3.16   -3.78   -4.22   -4.36   -4.15   -3.55   -2.65   -1.51   -0.11    1.71    4.31    8.08
+   320.0    0.00   -0.09   -0.35   -0.74   -1.24   -1.83   -2.48   -3.16   -3.77   -4.20   -4.34   -4.12   -3.52   -2.61   -1.46   -0.06    1.74    4.28    7.99
+   325.0    0.00   -0.09   -0.35   -0.74   -1.23   -1.82   -2.48   -3.15   -3.75   -4.18   -4.32   -4.08   -3.48   -2.55   -1.39    0.01    1.79    4.28    7.95
+   330.0    0.00   -0.09   -0.35   -0.73   -1.23   -1.81   -2.47   -3.14   -3.74   -4.16   -4.29   -4.04   -3.42   -2.49   -1.32    0.08    1.85    4.31    7.95
+   335.0    0.00   -0.10   -0.35   -0.73   -1.22   -1.80   -2.46   -3.13   -3.73   -4.15   -4.27   -4.01   -3.37   -2.42   -1.24    0.16    1.91    4.36    8.01
+   340.0    0.00   -0.10   -0.35   -0.72   -1.21   -1.79   -2.44   -3.12   -3.72   -4.14   -4.25   -3.98   -3.32   -2.36   -1.17    0.23    1.98    4.43    8.10
+   345.0    0.00   -0.10   -0.35   -0.72   -1.20   -1.78   -2.43   -3.11   -3.72   -4.13   -4.24   -3.96   -3.29   -2.31   -1.11    0.29    2.04    4.51    8.22
+   350.0    0.00   -0.10   -0.35   -0.72   -1.19   -1.77   -2.42   -3.10   -3.71   -4.13   -4.24   -3.95   -3.27   -2.28   -1.07    0.34    2.10    4.59    8.36
+   355.0    0.00   -0.10   -0.35   -0.72   -1.19   -1.76   -2.41   -3.09   -3.71   -4.14   -4.25   -3.96   -3.27   -2.27   -1.06    0.36    2.14    4.67    8.50
+   360.0    0.00   -0.10   -0.35   -0.71   -1.18   -1.75   -2.40   -3.08   -3.71   -4.15   -4.27   -3.97   -3.28   -2.28   -1.06    0.36    2.16    4.74    8.63
+   G02                                                      END OF FREQUENCY    
+   R01                                                      START OF FREQUENCY  
+     -0.21      0.28     84.17                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.39   -1.52   -3.17   -5.12   -7.08   -8.82  -10.17  -11.01  -11.24  -10.79   -9.71   -7.97   -5.63   -2.72    0.87    5.33   10.81   17.34
+     0.0    0.00   -0.30   -1.31   -2.89   -4.81   -6.83   -8.67  -10.12  -10.98  -11.15  -10.60   -9.38   -7.61   -5.36   -2.61    0.80    5.18   10.68   17.10
+     5.0    0.00   -0.30   -1.32   -2.91   -4.84   -6.86   -8.70  -10.15  -11.01  -11.19  -10.64   -9.41   -7.59   -5.30   -2.55    0.85    5.16   10.61   17.06
+    10.0    0.00   -0.31   -1.33   -2.93   -4.86   -6.88   -8.71  -10.16  -11.05  -11.24  -10.69   -9.44   -7.59   -5.27   -2.48    0.90    5.15   10.54   17.03
+    15.0    0.00   -0.31   -1.35   -2.95   -4.89   -6.90   -8.72  -10.17  -11.06  -11.27  -10.74   -9.49   -7.62   -5.26   -2.44    0.94    5.15   10.48   16.97
+    20.0    0.00   -0.31   -1.36   -2.98   -4.92   -6.91   -8.72  -10.16  -11.05  -11.28  -10.77   -9.54   -7.67   -5.27   -2.40    1.00    5.17   10.43   16.88
+    25.0    0.00   -0.32   -1.38   -3.00   -4.94   -6.93   -8.73  -10.14  -11.04  -11.29  -10.81   -9.61   -7.73   -5.30   -2.40    1.03    5.19   10.40   16.80
+    30.0    0.00   -0.32   -1.40   -3.04   -4.97   -6.94   -8.71  -10.12  -11.00  -11.27  -10.85   -9.68   -7.81   -5.37   -2.43    1.04    5.22   10.39   16.72
+    35.0    0.00   -0.34   -1.42   -3.07   -5.01   -6.95   -8.69  -10.08  -10.97  -11.26  -10.86   -9.75   -7.92   -5.47   -2.48    1.05    5.25   10.39   16.67
+    40.0    0.00   -0.34   -1.43   -3.09   -5.02   -6.97   -8.69  -10.04  -10.92  -11.23  -10.88   -9.81   -8.02   -5.57   -2.56    1.01    5.27   10.43   16.64
+    45.0    0.00   -0.34   -1.45   -3.12   -5.06   -6.98   -8.69  -10.02  -10.89  -11.21  -10.89   -9.88   -8.12   -5.71   -2.65    0.97    5.29   10.46   16.67
+    50.0    0.00   -0.35   -1.47   -3.15   -5.09   -7.00   -8.69  -10.02  -10.87  -11.19  -10.91   -9.92   -8.22   -5.82   -2.78    0.91    5.30   10.54   16.74
+    55.0    0.00   -0.36   -1.48   -3.17   -5.11   -7.03   -8.72  -10.01  -10.85  -11.18  -10.90   -9.95   -8.30   -5.94   -2.88    0.84    5.31   10.62   16.85
+    60.0    0.00   -0.37   -1.50   -3.19   -5.15   -7.07   -8.74  -10.03  -10.86  -11.16  -10.89   -9.97   -8.36   -6.02   -2.98    0.77    5.31   10.73   17.01
+    65.0    0.00   -0.37   -1.52   -3.21   -5.17   -7.09   -8.77  -10.05  -10.87  -11.16  -10.89   -9.97   -8.38   -6.09   -3.07    0.72    5.32   10.84   17.19
+    70.0    0.00   -0.37   -1.53   -3.24   -5.19   -7.13   -8.81  -10.09  -10.88  -11.16  -10.86   -9.95   -8.37   -6.10   -3.10    0.69    5.36   10.96   17.39
+    75.0    0.00   -0.38   -1.54   -3.25   -5.21   -7.15   -8.84  -10.13  -10.91  -11.16  -10.84   -9.91   -8.34   -6.08   -3.10    0.69    5.40   11.08   17.58
+    80.0    0.00   -0.39   -1.54   -3.25   -5.22   -7.17   -8.87  -10.16  -10.94  -11.16  -10.82   -9.86   -8.27   -6.03   -3.05    0.73    5.47   11.21   17.76
+    85.0    0.00   -0.40   -1.55   -3.25   -5.22   -7.19   -8.90  -10.18  -10.95  -11.15  -10.78   -9.79   -8.19   -5.92   -2.97    0.82    5.57   11.34   17.90
+    90.0    0.00   -0.40   -1.55   -3.26   -5.23   -7.19   -8.89  -10.20  -10.97  -11.15  -10.74   -9.71   -8.07   -5.81   -2.85    0.94    5.69   11.46   18.01
+    95.0    0.00   -0.40   -1.56   -3.25   -5.22   -7.19   -8.90  -10.19  -10.96  -11.13  -10.69   -9.62   -7.96   -5.68   -2.71    1.08    5.82   11.57   18.08
+   100.0    0.00   -0.40   -1.55   -3.24   -5.21   -7.16   -8.88  -10.18  -10.94  -11.09  -10.63   -9.55   -7.84   -5.53   -2.55    1.23    5.95   11.66   18.13
+   105.0    0.00   -0.41   -1.55   -3.23   -5.17   -7.13   -8.86  -10.15  -10.90  -11.05  -10.57   -9.45   -7.73   -5.39   -2.41    1.37    6.07   11.74   18.16
+   110.0    0.00   -0.41   -1.54   -3.21   -5.15   -7.11   -8.81  -10.10  -10.86  -11.00  -10.50   -9.37   -7.63   -5.28   -2.27    1.49    6.17   11.81   18.17
+   115.0    0.00   -0.41   -1.55   -3.20   -5.13   -7.06   -8.77  -10.06  -10.82  -10.95  -10.44   -9.30   -7.53   -5.17   -2.17    1.59    6.23   11.84   18.18
+   120.0    0.00   -0.41   -1.54   -3.19   -5.11   -7.03   -8.72  -10.02  -10.76  -10.90  -10.38   -9.24   -7.46   -5.10   -2.10    1.64    6.27   11.85   18.20
+   125.0    0.00   -0.42   -1.54   -3.17   -5.08   -6.99   -8.69   -9.96  -10.71  -10.84  -10.33   -9.17   -7.41   -5.04   -2.07    1.64    6.24   11.83   18.24
+   130.0    0.00   -0.42   -1.53   -3.16   -5.06   -6.96   -8.65   -9.93  -10.68  -10.80  -10.29   -9.14   -7.37   -5.03   -2.07    1.62    6.19   11.77   18.27
+   135.0    0.00   -0.43   -1.54   -3.15   -5.05   -6.95   -8.62   -9.90  -10.64  -10.77  -10.25   -9.11   -7.35   -5.02   -2.10    1.56    6.10   11.71   18.32
+   140.0    0.00   -0.43   -1.55   -3.15   -5.03   -6.92   -8.61   -9.88  -10.62  -10.75  -10.24   -9.08   -7.35   -5.04   -2.14    1.48    5.99   11.62   18.32
+   145.0    0.00   -0.43   -1.54   -3.15   -5.03   -6.92   -8.60   -9.87  -10.62  -10.74  -10.23   -9.08   -7.35   -5.07   -2.20    1.38    5.88   11.50   18.30
+   150.0    0.00   -0.43   -1.55   -3.15   -5.03   -6.92   -8.60   -9.87  -10.62  -10.75  -10.23   -9.10   -7.37   -5.10   -2.25    1.29    5.75   11.39   18.24
+   155.0    0.00   -0.44   -1.56   -3.17   -5.04   -6.93   -8.60   -9.88  -10.63  -10.76  -10.25   -9.13   -7.41   -5.14   -2.29    1.23    5.66   11.25   18.12
+   160.0    0.00   -0.45   -1.56   -3.17   -5.05   -6.93   -8.61   -9.90  -10.65  -10.79  -10.29   -9.17   -7.45   -5.17   -2.33    1.17    5.57   11.12   17.96
+   165.0    0.00   -0.45   -1.57   -3.19   -5.07   -6.95   -8.63   -9.90  -10.67  -10.82  -10.34   -9.22   -7.49   -5.21   -2.36    1.15    5.50   10.99   17.74
+   170.0    0.00   -0.45   -1.59   -3.21   -5.09   -6.97   -8.64   -9.93  -10.69  -10.87  -10.41   -9.29   -7.56   -5.23   -2.36    1.13    5.46   10.86   17.49
+   175.0    0.00   -0.46   -1.60   -3.22   -5.11   -6.99   -8.66   -9.95  -10.73  -10.92  -10.48   -9.37   -7.61   -5.28   -2.38    1.12    5.41   10.72   17.24
+   180.0    0.00   -0.46   -1.61   -3.25   -5.13   -7.02   -8.69   -9.99  -10.78  -10.98  -10.56   -9.45   -7.69   -5.32   -2.40    1.11    5.36   10.60   17.00
+   185.0    0.00   -0.47   -1.63   -3.28   -5.17   -7.05   -8.73  -10.03  -10.84  -11.06  -10.65   -9.54   -7.76   -5.37   -2.43    1.08    5.28   10.47   16.80
+   190.0    0.00   -0.47   -1.64   -3.30   -5.21   -7.09   -8.77  -10.07  -10.90  -11.15  -10.74   -9.64   -7.84   -5.43   -2.49    1.01    5.21   10.36   16.64
+   195.0    0.00   -0.47   -1.65   -3.33   -5.24   -7.13   -8.81  -10.12  -10.97  -11.22  -10.84   -9.73   -7.93   -5.52   -2.57    0.92    5.10   10.23   16.55
+   200.0    0.00   -0.49   -1.67   -3.35   -5.27   -7.19   -8.88  -10.20  -11.04  -11.32  -10.93   -9.82   -8.03   -5.60   -2.68    0.79    4.95   10.11   16.52
+   205.0    0.00   -0.49   -1.68   -3.38   -5.31   -7.24   -8.93  -10.27  -11.13  -11.42  -11.03   -9.93   -8.12   -5.72   -2.81    0.63    4.79   10.02   16.53
+   210.0    0.00   -0.49   -1.69   -3.42   -5.36   -7.29   -9.00  -10.35  -11.22  -11.50  -11.11  -10.01   -8.21   -5.85   -2.97    0.44    4.62    9.92   16.60
+   215.0    0.00   -0.49   -1.70   -3.43   -5.40   -7.34   -9.08  -10.43  -11.30  -11.59  -11.18  -10.08   -8.32   -5.98   -3.13    0.26    4.45    9.85   16.70
+   220.0    0.00   -0.50   -1.71   -3.45   -5.43   -7.41   -9.14  -10.51  -11.38  -11.65  -11.26  -10.16   -8.41   -6.10   -3.30    0.08    4.31    9.79   16.80
+   225.0    0.00   -0.49   -1.73   -3.47   -5.47   -7.45   -9.21  -10.58  -11.45  -11.72  -11.32  -10.23   -8.50   -6.22   -3.45   -0.07    4.20    9.77   16.88
+   230.0    0.00   -0.49   -1.73   -3.49   -5.51   -7.49   -9.25  -10.63  -11.51  -11.77  -11.37  -10.28   -8.57   -6.32   -3.56   -0.19    4.13    9.78   16.97
+   235.0    0.00   -0.49   -1.73   -3.51   -5.53   -7.53   -9.30  -10.69  -11.54  -11.80  -11.40  -10.34   -8.64   -6.41   -3.65   -0.25    4.12    9.82   17.01
+   240.0    0.00   -0.49   -1.72   -3.50   -5.53   -7.55   -9.33  -10.70  -11.58  -11.82  -11.43  -10.36   -8.70   -6.46   -3.70   -0.25    4.15    9.87   17.02
+   245.0    0.00   -0.48   -1.72   -3.50   -5.53   -7.57   -9.34  -10.73  -11.58  -11.84  -11.44  -10.40   -8.72   -6.50   -3.70   -0.21    4.25    9.96   17.01
+   250.0    0.00   -0.48   -1.70   -3.48   -5.53   -7.56   -9.35  -10.72  -11.57  -11.83  -11.44  -10.41   -8.75   -6.51   -3.66   -0.12    4.37   10.07   17.00
+   255.0    0.00   -0.46   -1.69   -3.46   -5.51   -7.54   -9.33  -10.71  -11.56  -11.82  -11.44  -10.41   -8.74   -6.48   -3.60   -1.32    4.54   10.19   16.99
+   260.0    0.00   -0.45   -1.67   -3.43   -5.49   -7.51   -9.30  -10.68  -11.53  -11.79  -11.42  -10.39   -8.73   -6.43   -3.50    0.16    4.71   10.32   16.98
+   265.0    0.00   -0.45   -1.64   -3.41   -5.45   -7.47   -9.26  -10.64  -11.50  -11.77  -11.40  -10.38   -8.69   -6.36   -3.38    0.30    4.87   10.43   17.02
+   270.0    0.00   -0.43   -1.63   -3.37   -5.39   -7.42   -9.21  -10.59  -11.47  -11.73  -11.37  -10.34   -8.63   -6.27   -3.27    0.45    5.02   10.55   17.09
+   275.0    0.00   -0.43   -1.60   -3.33   -5.35   -7.37   -9.15  -10.56  -11.43  -11.70  -11.33  -10.28   -8.56   -6.17   -3.14    0.58    5.14   10.65   17.19
+   280.0    0.00   -0.41   -1.57   -3.28   -5.27   -7.30   -9.09  -10.49  -11.37  -11.65  -11.28  -10.22   -8.48   -6.08   -3.04    0.69    5.23   10.74   17.31
+   285.0    0.00   -0.39   -1.53   -3.23   -5.21   -7.23   -9.02  -10.44  -11.33  -11.60  -11.22  -10.15   -8.40   -5.99   -2.94    0.76    5.29   10.79   17.43
+   290.0    0.00   -0.38   -1.50   -3.18   -5.15   -7.16   -8.96  -10.37  -11.27  -11.54  -11.16  -10.08   -8.31   -5.90   -2.87    0.83    5.32   10.85   17.55
+   295.0    0.00   -0.37   -1.47   -3.13   -5.09   -7.09   -8.89  -10.31  -11.21  -11.48  -11.08  -10.00   -8.23   -5.82   -2.82    0.84    5.33   10.88   17.65
+   300.0    0.00   -0.36   -1.45   -3.09   -5.02   -7.02   -8.82  -10.24  -11.14  -11.42  -11.01   -9.91   -8.15   -5.76   -2.79    0.86    5.34   10.90   17.71
+   305.0    0.00   -0.35   -1.42   -3.04   -4.97   -6.95   -8.76  -10.18  -11.08  -11.34  -10.92   -9.83   -8.08   -5.72   -2.77    0.84    5.33   10.91   17.74
+   310.0    0.00   -0.34   -1.39   -2.99   -4.92   -6.89   -8.70  -10.11  -11.00  -11.27  -10.85   -9.75   -8.01   -5.69   -2.78    0.83    5.31   10.92   17.73
+   315.0    0.00   -0.33   -1.37   -2.95   -4.87   -6.85   -8.64  -10.06  -10.95  -11.20  -10.78   -9.68   -7.96   -5.67   -2.79    0.81    5.31   10.93   17.68
+   320.0    0.00   -0.32   -1.34   -2.92   -4.82   -6.79   -8.60  -10.02  -10.90  -11.13  -10.70   -9.60   -7.92   -5.65   -2.79    0.78    5.31   10.92   17.60
+   325.0    0.00   -0.32   -1.32   -2.90   -4.79   -6.77   -8.57   -9.99  -10.86  -11.08  -10.63   -9.55   -7.87   -5.64   -2.80    0.76    5.29   10.93   17.50
+   330.0    0.00   -0.31   -1.31   -2.88   -4.77   -6.75   -8.55   -9.96  -10.83  -11.04  -10.59   -9.49   -7.83   -5.62   -2.82    0.75    5.30   10.92   17.41
+   335.0    0.00   -0.30   -1.30   -2.86   -4.77   -6.74   -8.55   -9.97  -10.82  -11.02  -10.55   -9.44   -7.80   -5.60   -2.82    0.74    5.28   10.90   17.32
+   340.0    0.00   -0.30   -1.30   -2.86   -4.76   -6.75   -8.56   -9.98  -10.83  -11.01  -10.53   -9.42   -7.75   -5.56   -2.80    0.74    5.27   10.88   17.24
+   345.0    0.00   -0.30   -1.29   -2.85   -4.76   -6.76   -8.59  -10.01  -10.86  -11.03  -10.53   -9.39   -7.71   -5.52   -2.77    0.74    5.24   10.84   17.19
+   350.0    0.00   -0.30   -1.30   -2.86   -4.77   -6.78   -8.61  -10.04  -10.89  -11.06  -10.53   -9.37   -7.66   -5.46   -2.73    0.75    5.22   10.80   17.16
+   355.0    0.00   -0.29   -1.30   -2.88   -4.79   -6.81   -8.64  -10.09  -10.94  -11.10  -10.56   -9.38   -7.63   -5.42   -2.67    0.77    5.20   10.74   17.13
+   360.0    0.00   -0.30   -1.31   -2.89   -4.81   -6.83   -8.67  -10.12  -10.98  -11.15  -10.60   -9.38   -7.61   -5.36   -2.61    0.80    5.18   10.68   17.10
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+      0.45     -0.08    120.26                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.10   -0.40   -0.88   -1.49   -2.21   -3.01   -3.83   -4.58   -5.10   -5.27   -5.03   -4.40   -3.50   -2.43   -1.20    0.42    2.78    6.22
+     0.0    0.00   -0.08   -0.32   -0.72   -1.31   -2.04   -2.89   -3.74   -4.47   -4.95   -5.09   -4.84   -4.26   -3.41   -2.36   -1.08    0.58    2.92    6.25
+     5.0    0.00   -0.08   -0.33   -0.74   -1.32   -2.05   -2.89   -3.74   -4.49   -4.98   -5.12   -4.87   -4.26   -3.41   -2.37   -1.12    0.53    2.91    6.38
+    10.0    0.00   -0.09   -0.34   -0.76   -1.33   -2.06   -2.89   -3.74   -4.49   -5.00   -5.14   -4.87   -4.26   -3.40   -2.39   -1.17    0.46    2.88    6.48
+    15.0    0.00   -0.09   -0.35   -0.77   -1.34   -2.06   -2.88   -3.72   -4.49   -5.00   -5.15   -4.90   -4.27   -3.42   -2.40   -1.23    0.38    2.83    6.53
+    20.0    0.00   -0.10   -0.36   -0.80   -1.37   -2.06   -2.86   -3.70   -4.46   -5.00   -5.15   -4.90   -4.29   -3.42   -2.42   -1.27    0.31    2.76    6.50
+    25.0    0.00   -0.10   -0.38   -0.81   -1.38   -2.06   -2.84   -3.66   -4.43   -4.97   -5.15   -4.90   -4.28   -3.42   -2.43   -1.31    0.24    2.67    6.40
+    30.0    0.00   -0.10   -0.39   -0.84   -1.40   -2.06   -2.83   -3.63   -4.38   -4.93   -5.13   -4.90   -4.28   -3.41   -2.44   -1.34    0.16    2.55    6.25
+    35.0    0.00   -0.10   -0.41   -0.86   -1.42   -2.08   -2.81   -3.60   -4.35   -4.91   -5.12   -4.89   -4.27   -3.40   -2.45   -1.36    0.10    2.45    6.07
+    40.0    0.00   -0.11   -0.42   -0.88   -1.45   -2.08   -2.79   -3.57   -4.32   -4.87   -5.10   -4.88   -4.27   -3.40   -2.44   -1.37    0.07    2.36    5.87
+    45.0    0.00   -0.12   -0.44   -0.91   -1.47   -2.09   -2.79   -3.55   -4.29   -4.85   -5.09   -4.88   -4.27   -3.40   -2.44   -1.37    0.04    2.29    5.69
+    50.0    0.00   -0.12   -0.45   -0.94   -1.49   -2.12   -2.81   -3.55   -4.27   -4.85   -5.09   -4.89   -4.28   -3.40   -2.43   -1.37    0.04    2.25    5.57
+    55.0    0.00   -0.13   -0.47   -0.95   -1.53   -2.15   -2.83   -3.56   -4.29   -4.85   -5.10   -4.90   -4.29   -3.41   -2.43   -1.36    0.05    2.25    5.50
+    60.0    0.00   -0.13   -0.47   -0.98   -1.55   -2.18   -2.86   -3.58   -4.30   -4.87   -5.12   -4.92   -4.31   -3.43   -2.44   -1.36    0.09    2.30    5.51
+    65.0    0.00   -0.13   -0.49   -1.00   -1.59   -2.21   -2.89   -3.62   -4.33   -4.90   -5.14   -4.95   -4.34   -3.45   -2.45   -1.34    0.14    2.38    5.59
+    70.0    0.00   -0.13   -0.49   -1.01   -1.60   -2.25   -2.93   -3.66   -4.38   -4.94   -5.18   -4.99   -4.37   -3.49   -2.46   -1.32    0.21    2.50    5.73
+    75.0    0.00   -0.13   -0.50   -1.02   -1.63   -2.28   -2.97   -3.72   -4.43   -4.99   -5.22   -5.02   -4.41   -3.51   -2.47   -1.28    0.28    2.62    5.89
+    80.0    0.00   -0.13   -0.51   -1.02   -1.64   -2.32   -3.03   -3.77   -4.48   -5.03   -5.27   -5.06   -4.45   -3.55   -2.49   -1.26    0.35    2.75    6.06
+    85.0    0.00   -0.13   -0.50   -1.03   -1.66   -2.34   -3.07   -3.82   -4.54   -5.08   -5.31   -5.10   -4.48   -3.56   -2.49   -1.24    0.42    2.87    6.21
+    90.0    0.00   -0.13   -0.49   -1.03   -1.67   -2.37   -3.10   -3.87   -4.59   -5.13   -5.35   -5.13   -4.51   -3.58   -2.48   -1.21    0.48    2.95    6.31
+    95.0    0.00   -0.13   -0.48   -1.03   -1.67   -2.38   -3.14   -3.92   -4.64   -5.17   -5.38   -5.15   -4.52   -3.59   -2.48   -1.18    0.53    2.99    6.36
+   100.0    0.00   -0.12   -0.48   -1.01   -1.67   -2.39   -3.17   -3.97   -4.69   -5.22   -5.40   -5.17   -4.51   -3.59   -2.46   -1.15    0.55    3.01    6.36
+   105.0    0.00   -0.12   -0.48   -0.99   -1.65   -2.40   -3.20   -4.02   -4.74   -5.26   -5.43   -5.17   -4.52   -3.57   -2.45   -1.14    0.55    2.98    6.30
+   110.0    0.00   -0.12   -0.46   -0.98   -1.65   -2.40   -3.23   -4.05   -4.78   -5.30   -5.44   -5.18   -4.51   -3.56   -2.44   -1.15    0.54    2.92    6.22
+   115.0    0.00   -0.12   -0.45   -0.97   -1.63   -2.41   -3.25   -4.10   -4.83   -5.34   -5.46   -5.18   -4.49   -3.55   -2.43   -1.14    0.51    2.86    6.13
+   120.0    0.00   -0.11   -0.43   -0.94   -1.61   -2.41   -3.28   -4.14   -4.88   -5.37   -5.47   -5.17   -4.48   -3.54   -2.44   -1.15    0.49    2.80    6.06
+   125.0    0.00   -0.11   -0.42   -0.92   -1.59   -2.40   -3.29   -4.16   -4.91   -5.38   -5.49   -5.17   -4.48   -3.54   -2.45   -1.17    0.45    2.74    6.01
+   130.0    0.00   -0.11   -0.41   -0.89   -1.57   -2.40   -3.30   -4.19   -4.94   -5.40   -5.48   -5.16   -4.47   -3.55   -2.46   -1.18    0.44    2.73    6.02
+   135.0    0.00   -0.10   -0.39   -0.88   -1.55   -2.39   -3.31   -4.21   -4.95   -5.42   -5.49   -5.15   -4.47   -3.55   -2.47   -1.20    0.44    2.74    6.08
+   140.0    0.00   -0.10   -0.37   -0.86   -1.54   -2.37   -3.31   -4.22   -4.96   -5.41   -5.47   -5.14   -4.47   -3.56   -2.48   -1.20    0.46    2.80    6.17
+   145.0    0.00   -0.10   -0.37   -0.84   -1.51   -2.36   -3.29   -4.21   -4.95   -5.39   -5.46   -5.13   -4.47   -3.56   -2.48   -1.18    0.50    2.88    6.28
+   150.0    0.00   -0.09   -0.36   -0.82   -1.49   -2.34   -3.27   -4.18   -4.92   -5.37   -5.43   -5.12   -4.47   -3.57   -2.48   -1.14    0.58    2.97    6.38
+   155.0    0.00   -0.09   -0.35   -0.81   -1.47   -2.31   -3.24   -4.14   -4.88   -5.32   -5.39   -5.09   -4.46   -3.57   -2.46   -1.09    0.66    3.06    6.46
+   160.0    0.00   -0.09   -0.35   -0.80   -1.45   -2.28   -3.20   -4.10   -4.83   -5.28   -5.36   -5.07   -4.45   -3.56   -2.42   -1.03    0.74    3.14    6.50
+   165.0    0.00   -0.09   -0.34   -0.80   -1.44   -2.25   -3.16   -4.03   -4.77   -5.21   -5.32   -5.04   -4.44   -3.53   -2.39   -0.96    0.81    3.19    6.48
+   170.0    0.00   -0.08   -0.34   -0.79   -1.43   -2.22   -3.11   -3.98   -4.70   -5.17   -5.28   -5.04   -4.42   -3.51   -2.34   -0.90    0.86    3.20    6.40
+   175.0    0.00   -0.08   -0.34   -0.79   -1.41   -2.20   -3.06   -3.92   -4.64   -5.11   -5.26   -5.03   -4.41   -3.48   -2.29   -0.85    0.89    3.15    6.27
+   180.0    0.00   -0.08   -0.35   -0.79   -1.41   -2.17   -3.02   -3.85   -4.59   -5.07   -5.24   -5.01   -4.40   -3.46   -2.26   -0.83    0.88    3.07    6.11
+   185.0    0.00   -0.09   -0.36   -0.80   -1.41   -2.15   -2.98   -3.82   -4.53   -5.05   -5.24   -5.03   -4.40   -3.45   -2.24   -0.83    0.83    2.96    5.94
+   190.0    0.00   -0.09   -0.36   -0.81   -1.41   -2.14   -2.95   -3.78   -4.52   -5.05   -5.25   -5.04   -4.41   -3.45   -2.24   -0.86    0.74    2.83    5.80
+   195.0    0.00   -0.10   -0.38   -0.82   -1.42   -2.13   -2.93   -3.75   -4.50   -5.05   -5.28   -5.07   -4.44   -3.45   -2.26   -0.92    0.63    2.70    5.71
+   200.0    0.00   -0.11   -0.39   -0.84   -1.43   -2.14   -2.92   -3.74   -4.50   -5.08   -5.31   -5.11   -4.46   -3.48   -2.30   -1.00    0.52    2.59    5.69
+   205.0    0.00   -0.11   -0.40   -0.86   -1.45   -2.15   -2.92   -3.74   -4.52   -5.10   -5.35   -5.14   -4.49   -3.51   -2.35   -1.09    0.40    2.51    5.74
+   210.0    0.00   -0.11   -0.42   -0.87   -1.47   -2.16   -2.93   -3.74   -4.53   -5.13   -5.40   -5.18   -4.52   -3.54   -2.40   -1.19    0.29    2.46    5.86
+   215.0    0.00   -0.11   -0.42   -0.90   -1.49   -2.18   -2.94   -3.76   -4.56   -5.16   -5.42   -5.21   -4.54   -3.56   -2.45   -1.27    0.20    2.46    6.04
+   220.0    0.00   -0.11   -0.45   -0.93   -1.51   -2.20   -2.96   -3.77   -4.57   -5.19   -5.45   -5.23   -4.55   -3.58   -2.49   -1.33    0.16    2.51    6.25
+   225.0    0.00   -0.12   -0.46   -0.94   -1.54   -2.23   -2.98   -3.81   -4.60   -5.21   -5.46   -5.22   -4.54   -3.57   -2.50   -1.36    0.14    2.59    6.48
+   230.0    0.00   -0.12   -0.46   -0.97   -1.57   -2.25   -2.99   -3.82   -4.61   -5.21   -5.46   -5.22   -4.52   -3.54   -2.49   -1.36    0.18    2.69    6.68
+   235.0    0.00   -0.12   -0.47   -0.98   -1.59   -2.27   -3.01   -3.83   -4.61   -5.21   -5.44   -5.19   -4.48   -3.50   -2.45   -1.32    0.23    2.79    6.83
+   240.0    0.00   -0.12   -0.49   -0.99   -1.60   -2.29   -3.04   -3.85   -4.63   -5.22   -5.42   -5.15   -4.43   -3.45   -2.39   -1.26    0.30    2.89    6.93
+   245.0    0.00   -0.12   -0.49   -1.01   -1.62   -2.30   -3.06   -3.86   -4.64   -5.22   -5.41   -5.11   -4.37   -3.37   -2.32   -1.19    0.38    2.97    6.96
+   250.0    0.00   -0.13   -0.49   -1.01   -1.63   -2.32   -3.08   -3.88   -4.65   -5.22   -5.39   -5.07   -4.31   -3.30   -2.24   -1.11    0.46    3.02    6.92
+   255.0    0.00   -0.13   -0.49   -1.01   -1.64   -2.33   -3.09   -3.91   -4.67   -5.22   -5.38   -5.04   -4.26   -3.25   -2.18   -1.03    0.52    3.03    6.85
+   260.0    0.00   -0.13   -0.49   -1.01   -1.64   -2.34   -3.12   -3.93   -4.68   -5.23   -5.37   -5.02   -4.23   -3.20   -2.13   -0.99    0.55    3.02    6.74
+   265.0    0.00   -0.12   -0.48   -1.01   -1.63   -2.35   -3.13   -3.95   -4.71   -5.24   -5.37   -5.01   -4.21   -3.18   -2.11   -0.97    0.54    2.99    6.63
+   270.0    0.00   -0.12   -0.48   -1.00   -1.62   -2.34   -3.13   -3.97   -4.73   -5.26   -5.39   -5.03   -4.23   -3.19   -2.13   -0.99    0.53    2.93    6.52
+   275.0    0.00   -0.12   -0.47   -0.98   -1.61   -2.33   -3.14   -3.98   -4.75   -5.28   -5.41   -5.05   -4.26   -3.25   -2.16   -1.03    0.48    2.85    6.45
+   280.0    0.00   -0.12   -0.45   -0.96   -1.59   -2.32   -3.13   -3.98   -4.76   -5.29   -5.43   -5.08   -4.32   -3.31   -2.25   -1.10    0.41    2.79    6.40
+   285.0    0.00   -0.11   -0.44   -0.94   -1.56   -2.29   -3.12   -3.98   -4.75   -5.30   -5.44   -5.12   -4.38   -3.41   -2.35   -1.20    0.33    2.73    6.38
+   290.0    0.00   -0.11   -0.42   -0.91   -1.54   -2.28   -3.11   -3.95   -4.74   -5.29   -5.44   -5.15   -4.46   -3.51   -2.46   -1.29    0.27    2.69    6.37
+   295.0    0.00   -0.10   -0.41   -0.89   -1.51   -2.25   -3.06   -3.93   -4.71   -5.27   -5.43   -5.17   -4.52   -3.61   -2.56   -1.38    0.21    2.66    6.37
+   300.0    0.00   -0.10   -0.39   -0.85   -1.47   -2.21   -3.03   -3.89   -4.66   -5.21   -5.41   -5.18   -4.58   -3.70   -2.66   -1.44    0.19    2.66    6.36
+   305.0    0.00   -0.10   -0.38   -0.83   -1.44   -2.17   -3.00   -3.84   -4.61   -5.16   -5.37   -5.17   -4.61   -3.77   -2.73   -1.48    0.18    2.66    6.32
+   310.0    0.00   -0.09   -0.36   -0.81   -1.40   -2.13   -2.96   -3.80   -4.56   -5.09   -5.31   -5.15   -4.62   -3.80   -2.76   -1.48    0.21    2.67    6.26
+   315.0    0.00   -0.08   -0.35   -0.78   -1.38   -2.10   -2.92   -3.75   -4.49   -5.03   -5.24   -5.11   -4.60   -3.81   -2.76   -1.46    0.26    2.69    6.17
+   320.0    0.00   -0.08   -0.34   -0.76   -1.34   -2.07   -2.88   -3.71   -4.45   -4.97   -5.18   -5.05   -4.57   -3.79   -2.74   -1.41    0.33    2.71    6.07
+   325.0    0.00   -0.08   -0.33   -0.75   -1.32   -2.05   -2.86   -3.68   -4.40   -4.91   -5.13   -4.99   -4.53   -3.74   -2.69   -1.33    0.41    2.73    5.97
+   330.0    0.00   -0.08   -0.32   -0.72   -1.31   -2.03   -2.85   -3.66   -4.37   -4.87   -5.08   -4.94   -4.47   -3.69   -2.62   -1.26    0.48    2.76    5.87
+   335.0    0.00   -0.08   -0.31   -0.72   -1.29   -2.02   -2.84   -3.66   -4.36   -4.85   -5.04   -4.90   -4.42   -3.63   -2.55   -1.18    0.55    2.79    5.82
+   340.0    0.00   -0.08   -0.31   -0.71   -1.29   -2.02   -2.84   -3.66   -4.37   -4.85   -5.02   -4.86   -4.36   -3.56   -2.48   -1.12    0.60    2.83    5.82
+   345.0    0.00   -0.08   -0.31   -0.71   -1.29   -2.02   -2.85   -3.68   -4.40   -4.86   -5.03   -4.84   -4.32   -3.50   -2.42   -1.08    0.63    2.85    5.86
+   350.0    0.00   -0.08   -0.31   -0.71   -1.29   -2.03   -2.87   -3.70   -4.42   -4.89   -5.03   -4.83   -4.29   -3.46   -2.38   -1.05    0.64    2.88    5.97
+   355.0    0.00   -0.08   -0.31   -0.72   -1.30   -2.04   -2.88   -3.72   -4.45   -4.92   -5.06   -4.84   -4.27   -3.43   -2.37   -1.05    0.62    2.90    6.10
+   360.0    0.00   -0.08   -0.32   -0.72   -1.31   -2.04   -2.89   -3.74   -4.47   -4.95   -5.09   -4.84   -4.26   -3.41   -2.36   -1.08    0.58    2.92    6.25
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TPSCR.G3        TPSH                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH              60    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     4                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+Number of Calibrated Antennas GPS:      060                 COMMENT             
+Number of Individual Calibrations GPS:  120                 COMMENT             
+Number of Calibrated Antennas GLO:      058                 COMMENT             
+Number of Individual Calibrations GLO:  113                 COMMENT             
+# GLONASS PCV                                               COMMENT             
+#  derived from Delta PCV per 25.0 MHz                      COMMENT             
+#  for frequency channel number k=0                         COMMENT             
+   G01                                                      START OF FREQUENCY  
+     -0.07      0.38     84.41                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.36   -1.37   -2.90   -4.73   -6.62   -8.34   -9.68  -10.52  -10.77  -10.41   -9.44   -7.89   -5.73   -2.89    0.74    5.26   10.68   16.73
+     0.0    0.00   -0.35   -1.38   -2.93   -4.78   -6.70   -8.43   -9.77  -10.59  -10.82  -10.45   -9.49   -7.97   -5.87   -3.08    0.49    4.95   10.22   15.98
+     5.0    0.00   -0.35   -1.38   -2.93   -4.80   -6.72   -8.47   -9.82  -10.66  -10.89  -10.51   -9.55   -8.02   -5.91   -3.14    0.41    4.86   10.16   16.01
+    10.0    0.00   -0.35   -1.38   -2.94   -4.81   -6.74   -8.50   -9.87  -10.72  -10.96  -10.57   -9.60   -8.07   -5.96   -3.20    0.33    4.77   10.11   16.07
+    15.0    0.00   -0.36   -1.38   -2.94   -4.82   -6.76   -8.53   -9.92  -10.78  -11.02  -10.64   -9.65   -8.11   -6.00   -3.26    0.26    4.70   10.08   16.14
+    20.0    0.00   -0.36   -1.39   -2.95   -4.82   -6.78   -8.56   -9.96  -10.83  -11.08  -10.70   -9.71   -8.15   -6.04   -3.31    0.20    4.64   10.05   16.20
+    25.0    0.00   -0.36   -1.39   -2.95   -4.83   -6.79   -8.58  -10.00  -10.88  -11.14  -10.76   -9.76   -8.20   -6.09   -3.35    0.16    4.60   10.04   16.25
+    30.0    0.00   -0.36   -1.39   -2.95   -4.83   -6.79   -8.60  -10.03  -10.92  -11.19  -10.81   -9.82   -8.25   -6.13   -3.38    0.14    4.59   10.04   16.28
+    35.0    0.00   -0.36   -1.39   -2.95   -4.83   -6.79   -8.60  -10.04  -10.95  -11.24  -10.87   -9.87   -8.30   -6.16   -3.39    0.13    4.59   10.05   16.29
+    40.0    0.00   -0.36   -1.38   -2.94   -4.82   -6.78   -8.60  -10.04  -10.97  -11.27  -10.91   -9.92   -8.34   -6.18   -3.39    0.16    4.63   10.08   16.29
+    45.0    0.00   -0.36   -1.38   -2.94   -4.81   -6.77   -8.58  -10.03  -10.97  -11.28  -10.94   -9.95   -8.36   -6.19   -3.38    0.20    4.68   10.12   16.28
+    50.0    0.00   -0.36   -1.38   -2.93   -4.80   -6.75   -8.55  -10.01  -10.95  -11.28  -10.95   -9.97   -8.38   -6.18   -3.34    0.26    4.76   10.18   16.29
+    55.0    0.00   -0.36   -1.38   -2.92   -4.78   -6.72   -8.52   -9.97  -10.92  -11.25  -10.93   -9.96   -8.37   -6.16   -3.29    0.34    4.86   10.26   16.32
+    60.0    0.00   -0.36   -1.37   -2.91   -4.76   -6.69   -8.47   -9.92  -10.86  -11.21  -10.90   -9.94   -8.34   -6.11   -3.22    0.44    4.97   10.37   16.39
+    65.0    0.00   -0.36   -1.37   -2.90   -4.74   -6.65   -8.42   -9.86  -10.80  -11.14  -10.84   -9.88   -8.29   -6.05   -3.13    0.55    5.10   10.51   16.51
+    70.0    0.00   -0.35   -1.37   -2.89   -4.72   -6.62   -8.37   -9.79  -10.72  -11.06  -10.76   -9.81   -8.21   -5.97   -3.04    0.67    5.23   10.66   16.67
+    75.0    0.00   -0.35   -1.36   -2.88   -4.70   -6.58   -8.32   -9.71  -10.63  -10.97  -10.67   -9.72   -8.12   -5.88   -2.94    0.78    5.38   10.83   16.87
+    80.0    0.00   -0.35   -1.36   -2.87   -4.68   -6.55   -8.26   -9.64  -10.54  -10.87  -10.57   -9.62   -8.02   -5.77   -2.83    0.91    5.52   11.01   17.09
+    85.0    0.00   -0.35   -1.36   -2.86   -4.66   -6.51   -8.21   -9.58  -10.46  -10.77  -10.46   -9.51   -7.91   -5.67   -2.72    1.02    5.66   11.18   17.32
+    90.0    0.00   -0.35   -1.35   -2.86   -4.64   -6.49   -8.17   -9.52  -10.38  -10.68  -10.35   -9.40   -7.81   -5.57   -2.62    1.13    5.79   11.35   17.53
+    95.0    0.00   -0.35   -1.35   -2.85   -4.63   -6.47   -8.14   -9.46  -10.31  -10.59  -10.26   -9.29   -7.70   -5.47   -2.53    1.23    5.90   11.48   17.70
+   100.0    0.00   -0.35   -1.35   -2.84   -4.62   -6.45   -8.11   -9.42  -10.25  -10.52  -10.17   -9.20   -7.61   -5.38   -2.44    1.31    5.99   11.58   17.83
+   105.0    0.00   -0.35   -1.35   -2.84   -4.61   -6.44   -8.09   -9.39  -10.21  -10.46  -10.10   -9.12   -7.53   -5.31   -2.38    1.37    6.04   11.64   17.89
+   110.0    0.00   -0.35   -1.35   -2.84   -4.61   -6.43   -8.08   -9.37  -10.18  -10.41  -10.04   -9.06   -7.47   -5.25   -2.33    1.41    6.07   11.66   17.89
+   115.0    0.00   -0.35   -1.35   -2.84   -4.61   -6.42   -8.07   -9.36  -10.16  -10.38  -10.00   -9.02   -7.43   -5.21   -2.31    1.41    6.06   11.62   17.82
+   120.0    0.00   -0.35   -1.35   -2.83   -4.60   -6.42   -8.07   -9.35  -10.14  -10.36   -9.97   -8.98   -7.40   -5.19   -2.30    1.40    6.01   11.54   17.71
+   125.0    0.00   -0.35   -1.35   -2.83   -4.60   -6.42   -8.07   -9.35  -10.13  -10.35   -9.96   -8.97   -7.39   -5.20   -2.32    1.35    5.94   11.43   17.57
+   130.0    0.00   -0.35   -1.35   -2.84   -4.61   -6.42   -8.07   -9.35  -10.13  -10.34   -9.95   -8.96   -7.39   -5.21   -2.36    1.28    5.83   11.30   17.40
+   135.0    0.00   -0.35   -1.35   -2.84   -4.61   -6.43   -8.07   -9.35  -10.13  -10.34   -9.95   -8.97   -7.41   -5.25   -2.42    1.19    5.71   11.14   17.24
+   140.0    0.00   -0.35   -1.35   -2.84   -4.61   -6.43   -8.08   -9.36  -10.14  -10.35   -9.96   -8.99   -7.44   -5.30   -2.50    1.09    5.58   10.99   17.08
+   145.0    0.00   -0.36   -1.35   -2.85   -4.62   -6.44   -8.08   -9.36  -10.15  -10.37   -9.99   -9.02   -7.48   -5.36   -2.58    0.98    5.45   10.84   16.95
+   150.0    0.00   -0.36   -1.36   -2.85   -4.63   -6.45   -8.09   -9.38  -10.17  -10.39  -10.02   -9.07   -7.54   -5.43   -2.66    0.88    5.32   10.71   16.83
+   155.0    0.00   -0.36   -1.36   -2.86   -4.63   -6.46   -8.11   -9.40  -10.20  -10.43  -10.07   -9.12   -7.61   -5.51   -2.75    0.77    5.20   10.58   16.74
+   160.0    0.00   -0.36   -1.37   -2.87   -4.65   -6.48   -8.13   -9.43  -10.23  -10.48  -10.13   -9.19   -7.68   -5.58   -2.84    0.68    5.10   10.48   16.65
+   165.0    0.00   -0.36   -1.37   -2.88   -4.66   -6.50   -8.16   -9.47  -10.28  -10.54  -10.20   -9.27   -7.76   -5.66   -2.92    0.60    5.02   10.39   16.58
+   170.0    0.00   -0.36   -1.37   -2.89   -4.68   -6.53   -8.20   -9.51  -10.34  -10.61  -10.28   -9.35   -7.85   -5.74   -2.99    0.53    4.95   10.31   16.50
+   175.0    0.00   -0.36   -1.38   -2.90   -4.70   -6.56   -8.24   -9.57  -10.41  -10.68  -10.36   -9.44   -7.93   -5.82   -3.05    0.47    4.88   10.24   16.42
+   180.0    0.00   -0.36   -1.39   -2.91   -4.73   -6.59   -8.29   -9.63  -10.48  -10.77  -10.45   -9.53   -8.02   -5.90   -3.12    0.42    4.83   10.17   16.34
+   185.0    0.00   -0.37   -1.39   -2.92   -4.75   -6.63   -8.34   -9.69  -10.55  -10.85  -10.53   -9.61   -8.10   -5.97   -3.18    0.36    4.77   10.11   16.25
+   190.0    0.00   -0.37   -1.40   -2.94   -4.78   -6.67   -8.39   -9.76  -10.63  -10.92  -10.61   -9.69   -8.17   -6.03   -3.24    0.31    4.72   10.05   16.18
+   195.0    0.00   -0.37   -1.40   -2.95   -4.80   -6.71   -8.44   -9.82  -10.69  -10.98  -10.67   -9.75   -8.23   -6.10   -3.30    0.25    4.66   10.00   16.12
+   200.0    0.00   -0.37   -1.40   -2.96   -4.82   -6.74   -8.49   -9.87  -10.74  -11.03  -10.72   -9.80   -8.28   -6.15   -3.37    0.18    4.61    9.96   16.09
+   205.0    0.00   -0.37   -1.41   -2.97   -4.84   -6.77   -8.52   -9.90  -10.78  -11.07  -10.75   -9.83   -8.32   -6.21   -3.43    0.12    4.56    9.94   16.09
+   210.0    0.00   -0.37   -1.41   -2.98   -4.85   -6.79   -8.55   -9.93  -10.80  -11.08  -10.76   -9.84   -8.35   -6.25   -3.49    0.06    4.52    9.94   16.13
+   215.0    0.00   -0.37   -1.41   -2.98   -4.86   -6.80   -8.56   -9.94  -10.80  -11.08  -10.76   -9.85   -8.37   -6.29   -3.54    0.02    4.51    9.98   16.22
+   220.0    0.00   -0.37   -1.41   -2.98   -4.87   -6.81   -8.56   -9.94  -10.80  -11.07  -10.75   -9.85   -8.38   -6.32   -3.57    0.00    4.53   10.05   16.34
+   225.0    0.00   -0.37   -1.41   -2.98   -4.86   -6.80   -8.56   -9.92  -10.78  -11.05  -10.73   -9.84   -8.38   -6.33   -3.58    0.01    4.58   10.15   16.48
+   230.0    0.00   -0.37   -1.41   -2.98   -4.86   -6.79   -8.54   -9.90  -10.75  -11.02  -10.71   -9.82   -8.37   -6.32   -3.57    0.05    4.67   10.29   16.64
+   235.0    0.00   -0.37   -1.41   -2.97   -4.84   -6.77   -8.51   -9.87  -10.72  -10.99  -10.68   -9.81   -8.36   -6.30   -3.52    0.14    4.80   10.45   16.80
+   240.0    0.00   -0.36   -1.40   -2.96   -4.83   -6.75   -8.48   -9.84  -10.69  -10.97  -10.66   -9.79   -8.33   -6.25   -3.44    0.26    4.96   10.63   16.94
+   245.0    0.00   -0.36   -1.40   -2.95   -4.81   -6.72   -8.45   -9.81  -10.66  -10.94  -10.64   -9.76   -8.29   -6.18   -3.32    0.42    5.15   10.81   17.07
+   250.0    0.00   -0.36   -1.39   -2.94   -4.79   -6.70   -8.42   -9.77  -10.63  -10.92  -10.63   -9.74   -8.24   -6.09   -3.18    0.60    5.35   10.99   17.17
+   255.0    0.00   -0.36   -1.39   -2.93   -4.77   -6.67   -8.39   -9.75  -10.61  -10.90  -10.60   -9.70   -8.17   -5.97   -3.02    0.80    5.55   11.15   17.24
+   260.0    0.00   -0.36   -1.38   -2.92   -4.76   -6.65   -8.37   -9.72  -10.58  -10.88  -10.57   -9.64   -8.08   -5.84   -2.85    0.99    5.74   11.29   17.28
+   265.0    0.00   -0.36   -1.38   -2.91   -4.74   -6.63   -8.34   -9.70  -10.56  -10.85  -10.53   -9.58   -7.98   -5.70   -2.68    1.17    5.90   11.40   17.31
+   270.0    0.00   -0.36   -1.37   -2.90   -4.73   -6.61   -8.33   -9.68  -10.54  -10.82  -10.48   -9.50   -7.86   -5.55   -2.51    1.33    6.02   11.47   17.32
+   275.0    0.00   -0.35   -1.37   -2.89   -4.72   -6.60   -8.31   -9.66  -10.51  -10.78  -10.41   -9.40   -7.74   -5.42   -2.37    1.45    6.11   11.51   17.33
+   280.0    0.00   -0.35   -1.36   -2.89   -4.71   -6.59   -8.30   -9.64  -10.48  -10.73  -10.33   -9.30   -7.62   -5.29   -2.26    1.53    6.15   11.53   17.35
+   285.0    0.00   -0.35   -1.36   -2.88   -4.70   -6.58   -8.29   -9.63  -10.45  -10.67  -10.25   -9.19   -7.50   -5.18   -2.19    1.57    6.15   11.51   17.36
+   290.0    0.00   -0.35   -1.36   -2.88   -4.70   -6.58   -8.28   -9.61  -10.41  -10.61  -10.16   -9.09   -7.40   -5.11   -2.15    1.56    6.11   11.47   17.37
+   295.0    0.00   -0.35   -1.36   -2.88   -4.70   -6.58   -8.27   -9.59  -10.37  -10.54  -10.08   -9.00   -7.33   -5.06   -2.15    1.52    6.04   11.42   17.37
+   300.0    0.00   -0.35   -1.35   -2.88   -4.70   -6.58   -8.27   -9.57  -10.33  -10.49  -10.01   -8.93   -7.27   -5.04   -2.17    1.45    5.96   11.35   17.36
+   305.0    0.00   -0.35   -1.35   -2.88   -4.70   -6.58   -8.26   -9.55  -10.30  -10.44   -9.96   -8.88   -7.25   -5.06   -2.23    1.37    5.86   11.27   17.31
+   310.0    0.00   -0.35   -1.35   -2.88   -4.70   -6.58   -8.26   -9.54  -10.28  -10.41   -9.92   -8.86   -7.26   -5.10   -2.31    1.27    5.76   11.18   17.24
+   315.0    0.00   -0.35   -1.36   -2.88   -4.71   -6.58   -8.26   -9.53  -10.26  -10.39   -9.92   -8.87   -7.30   -5.17   -2.39    1.17    5.67   11.09   17.13
+   320.0    0.00   -0.35   -1.36   -2.88   -4.71   -6.59   -8.26   -9.53  -10.26  -10.39   -9.93   -8.91   -7.36   -5.25   -2.49    1.08    5.58   10.99   16.99
+   325.0    0.00   -0.35   -1.36   -2.89   -4.72   -6.59   -8.27   -9.54  -10.27  -10.41   -9.97   -8.97   -7.44   -5.34   -2.58    1.00    5.50   10.89   16.82
+   330.0    0.00   -0.35   -1.36   -2.89   -4.72   -6.60   -8.28   -9.55  -10.29  -10.45  -10.02   -9.04   -7.53   -5.44   -2.67    0.92    5.43   10.78   16.63
+   335.0    0.00   -0.35   -1.36   -2.90   -4.73   -6.61   -8.29   -9.57  -10.33  -10.50  -10.09   -9.12   -7.62   -5.53   -2.75    0.85    5.35   10.68   16.45
+   340.0    0.00   -0.35   -1.37   -2.90   -4.74   -6.62   -8.31   -9.60  -10.37  -10.55  -10.16   -9.21   -7.71   -5.61   -2.82    0.78    5.28   10.57   16.28
+   345.0    0.00   -0.35   -1.37   -2.91   -4.75   -6.64   -8.34   -9.64  -10.42  -10.62  -10.24   -9.29   -7.79   -5.69   -2.89    0.71    5.20   10.47   16.14
+   350.0    0.00   -0.35   -1.37   -2.91   -4.76   -6.66   -8.36   -9.68  -10.47  -10.69  -10.31   -9.37   -7.86   -5.76   -2.96    0.64    5.12   10.38   16.04
+   355.0    0.00   -0.35   -1.37   -2.92   -4.77   -6.68   -8.40   -9.72  -10.53  -10.75  -10.38   -9.43   -7.92   -5.81   -3.02    0.57    5.03   10.30   15.99
+   360.0    0.00   -0.35   -1.38   -2.93   -4.78   -6.70   -8.43   -9.77  -10.59  -10.82  -10.45   -9.49   -7.97   -5.87   -3.08    0.49    4.95   10.22   15.98
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.78      0.27    119.73                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.09   -0.34   -0.75   -1.28   -1.92   -2.62   -3.32   -3.93   -4.32   -4.40   -4.13   -3.51   -2.60   -1.44    0.04    2.00    4.70    8.27
+     0.0    0.00   -0.06   -0.29   -0.68   -1.20   -1.83   -2.53   -3.23   -3.84   -4.25   -4.36   -4.10   -3.48   -2.53   -1.29    0.25    2.23    4.81    8.16
+     5.0    0.00   -0.06   -0.29   -0.68   -1.20   -1.83   -2.52   -3.22   -3.83   -4.25   -4.36   -4.12   -3.50   -2.55   -1.30    0.25    2.24    4.84    8.21
+    10.0    0.00   -0.06   -0.29   -0.68   -1.19   -1.82   -2.51   -3.21   -3.82   -4.25   -4.37   -4.14   -3.53   -2.58   -1.33    0.24    2.23    4.86    8.28
+    15.0    0.00   -0.06   -0.29   -0.67   -1.19   -1.82   -2.51   -3.21   -3.82   -4.25   -4.39   -4.16   -3.56   -2.61   -1.37    0.20    2.21    4.86    8.34
+    20.0    0.00   -0.06   -0.29   -0.68   -1.19   -1.82   -2.51   -3.21   -3.82   -4.26   -4.40   -4.18   -3.59   -2.65   -1.41    0.16    2.18    4.86    8.40
+    25.0    0.00   -0.06   -0.29   -0.68   -1.20   -1.82   -2.51   -3.21   -3.83   -4.26   -4.41   -4.20   -3.61   -2.69   -1.45    0.11    2.14    4.85    8.46
+    30.0    0.00   -0.06   -0.30   -0.68   -1.20   -1.83   -2.52   -3.22   -3.84   -4.27   -4.42   -4.21   -3.64   -2.72   -1.50    0.06    2.09    4.84    8.52
+    35.0    0.00   -0.07   -0.30   -0.69   -1.21   -1.84   -2.53   -3.23   -3.85   -4.28   -4.42   -4.22   -3.65   -2.75   -1.54    0.01    2.05    4.83    8.56
+    40.0    0.00   -0.07   -0.30   -0.69   -1.22   -1.85   -2.55   -3.25   -3.86   -4.28   -4.43   -4.22   -3.66   -2.77   -1.57   -0.03    2.02    4.82    8.59
+    45.0    0.00   -0.07   -0.31   -0.70   -1.23   -1.87   -2.57   -3.26   -3.87   -4.29   -4.43   -4.22   -3.66   -2.78   -1.59   -0.06    2.00    4.82    8.62
+    50.0    0.00   -0.07   -0.31   -0.71   -1.24   -1.88   -2.58   -3.28   -3.89   -4.30   -4.43   -4.22   -3.66   -2.78   -1.60   -0.07    2.00    4.84    8.65
+    55.0    0.00   -0.07   -0.32   -0.72   -1.25   -1.90   -2.60   -3.30   -3.90   -4.31   -4.43   -4.21   -3.65   -2.77   -1.60   -0.06    2.02    4.87    8.67
+    60.0    0.00   -0.07   -0.32   -0.72   -1.27   -1.91   -2.62   -3.31   -3.91   -4.31   -4.43   -4.20   -3.64   -2.76   -1.58   -0.04    2.05    4.92    8.69
+    65.0    0.00   -0.08   -0.33   -0.73   -1.28   -1.93   -2.63   -3.33   -3.92   -4.32   -4.43   -4.20   -3.63   -2.74   -1.56    0.00    2.10    4.97    8.72
+    70.0    0.00   -0.08   -0.33   -0.74   -1.29   -1.94   -2.65   -3.34   -3.94   -4.33   -4.43   -4.19   -3.61   -2.72   -1.53    0.03    2.15    5.02    8.75
+    75.0    0.00   -0.08   -0.34   -0.75   -1.30   -1.95   -2.66   -3.35   -3.95   -4.34   -4.43   -4.19   -3.60   -2.70   -1.51    0.07    2.19    5.07    8.79
+    80.0    0.00   -0.08   -0.34   -0.76   -1.31   -1.96   -2.66   -3.36   -3.95   -4.34   -4.44   -4.19   -3.59   -2.69   -1.48    0.09    2.22    5.11    8.83
+    85.0    0.00   -0.09   -0.35   -0.76   -1.31   -1.96   -2.67   -3.36   -3.96   -4.35   -4.44   -4.19   -3.58   -2.68   -1.47    0.10    2.23    5.12    8.86
+    90.0    0.00   -0.09   -0.35   -0.77   -1.32   -1.96   -2.67   -3.37   -3.97   -4.36   -4.45   -4.19   -3.58   -2.67   -1.47    0.09    2.21    5.11    8.88
+    95.0    0.00   -0.09   -0.36   -0.77   -1.32   -1.97   -2.67   -3.37   -3.97   -4.37   -4.45   -4.19   -3.58   -2.67   -1.48    0.06    2.16    5.07    8.88
+   100.0    0.00   -0.09   -0.36   -0.78   -1.33   -1.97   -2.67   -3.37   -3.98   -4.37   -4.46   -4.19   -3.57   -2.67   -1.50    0.01    2.09    5.00    8.86
+   105.0    0.00   -0.10   -0.36   -0.78   -1.33   -1.97   -2.67   -3.37   -3.98   -4.38   -4.46   -4.19   -3.57   -2.67   -1.52   -0.05    2.00    4.90    8.81
+   110.0    0.00   -0.10   -0.37   -0.79   -1.33   -1.97   -2.68   -3.38   -3.98   -4.38   -4.46   -4.18   -3.56   -2.67   -1.55   -0.11    1.90    4.79    8.72
+   115.0    0.00   -0.10   -0.37   -0.79   -1.34   -1.98   -2.68   -3.38   -3.99   -4.38   -4.46   -4.17   -3.55   -2.67   -1.57   -0.16    1.80    4.66    8.61
+   120.0    0.00   -0.10   -0.37   -0.79   -1.34   -1.98   -2.68   -3.38   -3.99   -4.38   -4.45   -4.16   -3.54   -2.66   -1.58   -0.20    1.72    4.55    8.47
+   125.0    0.00   -0.10   -0.38   -0.80   -1.34   -1.98   -2.69   -3.39   -3.99   -4.38   -4.44   -4.14   -3.51   -2.64   -1.57   -0.22    1.67    4.44    8.32
+   130.0    0.00   -0.10   -0.38   -0.80   -1.35   -1.99   -2.69   -3.39   -3.99   -4.37   -4.43   -4.12   -3.49   -2.61   -1.55   -0.21    1.64    4.36    8.15
+   135.0    0.00   -0.10   -0.38   -0.80   -1.35   -1.99   -2.70   -3.39   -3.99   -4.36   -4.41   -4.10   -3.46   -2.58   -1.51   -0.18    1.65    4.31    8.00
+   140.0    0.00   -0.10   -0.38   -0.80   -1.35   -2.00   -2.70   -3.39   -3.98   -4.35   -4.39   -4.07   -3.43   -2.54   -1.46   -0.12    1.69    4.29    7.86
+   145.0    0.00   -0.11   -0.38   -0.80   -1.35   -2.00   -2.70   -3.39   -3.98   -4.34   -4.38   -4.05   -3.39   -2.49   -1.40   -0.05    1.76    4.31    7.76
+   150.0    0.00   -0.11   -0.38   -0.80   -1.35   -2.00   -2.70   -3.39   -3.97   -4.32   -4.35   -4.02   -3.36   -2.45   -1.33    0.04    1.85    4.36    7.69
+   155.0    0.00   -0.11   -0.38   -0.80   -1.35   -2.00   -2.70   -3.38   -3.96   -4.31   -4.34   -4.00   -3.33   -2.41   -1.27    0.12    1.94    4.42    7.66
+   160.0    0.00   -0.11   -0.38   -0.80   -1.35   -1.99   -2.69   -3.38   -3.95   -4.29   -4.32   -3.98   -3.31   -2.38   -1.22    0.20    2.03    4.50    7.68
+   165.0    0.00   -0.11   -0.38   -0.80   -1.34   -1.98   -2.68   -3.37   -3.93   -4.28   -4.30   -3.97   -3.30   -2.36   -1.19    0.25    2.11    4.58    7.73
+   170.0    0.00   -0.11   -0.37   -0.79   -1.33   -1.98   -2.67   -3.35   -3.92   -4.27   -4.29   -3.96   -3.30   -2.35   -1.17    0.29    2.17    4.65    7.81
+   175.0    0.00   -0.11   -0.37   -0.79   -1.33   -1.97   -2.66   -3.34   -3.91   -4.26   -4.29   -3.97   -3.31   -2.36   -1.18    0.29    2.19    4.70    7.90
+   180.0    0.00   -0.11   -0.37   -0.78   -1.32   -1.96   -2.65   -3.33   -3.90   -4.26   -4.29   -3.98   -3.32   -2.39   -1.20    0.28    2.19    4.74    7.99
+   185.0    0.00   -0.10   -0.37   -0.78   -1.31   -1.94   -2.64   -3.32   -3.90   -4.26   -4.30   -4.00   -3.35   -2.42   -1.24    0.24    2.17    4.75    8.07
+   190.0    0.00   -0.10   -0.37   -0.77   -1.30   -1.93   -2.63   -3.31   -3.90   -4.26   -4.32   -4.02   -3.38   -2.46   -1.29    0.19    2.13    4.73    8.13
+   195.0    0.00   -0.10   -0.36   -0.77   -1.29   -1.92   -2.62   -3.31   -3.90   -4.27   -4.34   -4.05   -3.42   -2.50   -1.34    0.14    2.07    4.70    8.16
+   200.0    0.00   -0.10   -0.36   -0.76   -1.29   -1.92   -2.61   -3.31   -3.90   -4.28   -4.36   -4.08   -3.45   -2.54   -1.38    0.08    2.02    4.66    8.16
+   205.0    0.00   -0.10   -0.36   -0.76   -1.28   -1.91   -2.61   -3.31   -3.91   -4.30   -4.38   -4.10   -3.48   -2.58   -1.42    0.04    1.97    4.61    8.13
+   210.0    0.00   -0.10   -0.36   -0.76   -1.28   -1.91   -2.61   -3.31   -3.92   -4.31   -4.40   -4.13   -3.51   -2.60   -1.45    0.01    1.93    4.56    8.08
+   215.0    0.00   -0.10   -0.36   -0.76   -1.28   -1.91   -2.61   -3.32   -3.93   -4.33   -4.42   -4.14   -3.52   -2.61   -1.46   -0.01    1.90    4.52    8.02
+   220.0    0.00   -0.10   -0.36   -0.76   -1.28   -1.92   -2.62   -3.33   -3.94   -4.34   -4.43   -4.15   -3.53   -2.62   -1.46   -0.01    1.90    4.49    7.95
+   225.0    0.00   -0.10   -0.36   -0.76   -1.29   -1.92   -2.63   -3.34   -3.95   -4.35   -4.43   -4.15   -3.52   -2.61   -1.45    0.00    1.90    4.48    7.90
+   230.0    0.00   -0.10   -0.36   -0.76   -1.29   -1.93   -2.64   -3.35   -3.96   -4.35   -4.43   -4.14   -3.51   -2.59   -1.43    0.02    1.92    4.48    7.86
+   235.0    0.00   -0.10   -0.36   -0.76   -1.30   -1.94   -2.65   -3.36   -3.96   -4.35   -4.42   -4.13   -3.49   -2.57   -1.41    0.05    1.94    4.50    7.84
+   240.0    0.00   -0.10   -0.36   -0.76   -1.30   -1.95   -2.66   -3.37   -3.97   -4.35   -4.41   -4.11   -3.47   -2.55   -1.39    0.07    1.97    4.53    7.86
+   245.0    0.00   -0.10   -0.36   -0.77   -1.31   -1.96   -2.67   -3.37   -3.97   -4.35   -4.40   -4.10   -3.45   -2.53   -1.37    0.08    1.99    4.56    7.90
+   250.0    0.00   -0.10   -0.36   -0.77   -1.31   -1.96   -2.68   -3.38   -3.97   -4.34   -4.39   -4.08   -3.44   -2.52   -1.37    0.08    2.00    4.60    7.97
+   255.0    0.00   -0.09   -0.36   -0.77   -1.32   -1.97   -2.68   -3.38   -3.97   -4.34   -4.38   -4.07   -3.43   -2.52   -1.38    0.07    2.00    4.63    8.05
+   260.0    0.00   -0.09   -0.36   -0.77   -1.32   -1.97   -2.68   -3.38   -3.97   -4.33   -4.38   -4.07   -3.44   -2.53   -1.39    0.05    1.99    4.66    8.15
+   265.0    0.00   -0.09   -0.36   -0.77   -1.32   -1.97   -2.68   -3.38   -3.97   -4.34   -4.39   -4.08   -3.45   -2.55   -1.42    0.02    1.97    4.68    8.25
+   270.0    0.00   -0.09   -0.35   -0.77   -1.32   -1.97   -2.68   -3.38   -3.97   -4.34   -4.40   -4.10   -3.47   -2.57   -1.45   -0.01    1.95    4.69    8.33
+   275.0    0.00   -0.09   -0.35   -0.77   -1.32   -1.96   -2.67   -3.37   -3.97   -4.35   -4.41   -4.12   -3.49   -2.60   -1.48   -0.04    1.92    4.69    8.41
+   280.0    0.00   -0.09   -0.35   -0.77   -1.31   -1.96   -2.66   -3.37   -3.97   -4.36   -4.43   -4.14   -3.52   -2.63   -1.51   -0.07    1.89    4.69    8.46
+   285.0    0.00   -0.09   -0.35   -0.76   -1.31   -1.95   -2.66   -3.36   -3.97   -4.37   -4.45   -4.17   -3.55   -2.66   -1.53   -0.10    1.87    4.68    8.49
+   290.0    0.00   -0.09   -0.35   -0.76   -1.30   -1.94   -2.65   -3.35   -3.97   -4.38   -4.47   -4.20   -3.58   -2.68   -1.55   -0.11    1.85    4.66    8.49
+   295.0    0.00   -0.08   -0.34   -0.75   -1.29   -1.93   -2.64   -3.35   -3.97   -4.38   -4.49   -4.22   -3.59   -2.69   -1.56   -0.12    1.84    4.64    8.47
+   300.0    0.00   -0.08   -0.34   -0.75   -1.29   -1.92   -2.63   -3.34   -3.97   -4.39   -4.50   -4.23   -3.61   -2.70   -1.55   -0.12    1.84    4.62    8.43
+   305.0    0.00   -0.08   -0.33   -0.74   -1.28   -1.92   -2.62   -3.33   -3.96   -4.39   -4.50   -4.23   -3.61   -2.69   -1.54   -0.10    1.84    4.60    8.38
+   310.0    0.00   -0.08   -0.33   -0.74   -1.27   -1.91   -2.61   -3.33   -3.96   -4.38   -4.49   -4.23   -3.60   -2.68   -1.52   -0.08    1.85    4.59    8.32
+   315.0    0.00   -0.08   -0.33   -0.73   -1.27   -1.90   -2.61   -3.32   -3.95   -4.38   -4.48   -4.21   -3.58   -2.66   -1.50   -0.05    1.87    4.58    8.26
+   320.0    0.00   -0.07   -0.32   -0.72   -1.26   -1.90   -2.60   -3.32   -3.94   -4.36   -4.47   -4.19   -3.56   -2.63   -1.47   -0.02    1.90    4.58    8.20
+   325.0    0.00   -0.07   -0.32   -0.72   -1.25   -1.89   -2.60   -3.31   -3.93   -4.35   -4.44   -4.17   -3.53   -2.60   -1.43    0.02    1.94    4.59    8.14
+   330.0    0.00   -0.07   -0.31   -0.71   -1.25   -1.88   -2.59   -3.30   -3.92   -4.33   -4.42   -4.14   -3.50   -2.57   -1.40    0.06    1.98    4.60    8.10
+   335.0    0.00   -0.07   -0.31   -0.71   -1.24   -1.88   -2.58   -3.29   -3.90   -4.31   -4.40   -4.12   -3.48   -2.54   -1.36    0.10    2.02    4.63    8.07
+   340.0    0.00   -0.07   -0.31   -0.70   -1.23   -1.87   -2.57   -3.28   -3.89   -4.29   -4.38   -4.10   -3.46   -2.52   -1.33    0.15    2.07    4.66    8.06
+   345.0    0.00   -0.07   -0.30   -0.69   -1.22   -1.86   -2.56   -3.27   -3.87   -4.27   -4.36   -4.09   -3.45   -2.51   -1.31    0.19    2.12    4.70    8.06
+   350.0    0.00   -0.07   -0.30   -0.69   -1.22   -1.85   -2.55   -3.25   -3.86   -4.26   -4.35   -4.08   -3.45   -2.51   -1.29    0.22    2.16    4.74    8.08
+   355.0    0.00   -0.06   -0.30   -0.68   -1.21   -1.84   -2.54   -3.24   -3.85   -4.25   -4.35   -4.09   -3.46   -2.51   -1.28    0.24    2.20    4.78    8.11
+   360.0    0.00   -0.06   -0.29   -0.68   -1.20   -1.83   -2.53   -3.23   -3.84   -4.25   -4.36   -4.10   -3.48   -2.53   -1.29    0.25    2.23    4.81    8.16
+   G02                                                      END OF FREQUENCY    
+   R01                                                      START OF FREQUENCY  
+     -0.07      0.38     84.41                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.38   -1.47   -3.09   -5.04   -7.05   -8.88  -10.34  -11.30  -11.69  -11.49  -10.72   -9.39   -7.47   -4.90   -1.55    2.68    7.81   13.58
+     0.0    0.00   -0.35   -1.41   -3.02   -4.94   -6.94   -8.79  -10.24  -11.16  -11.51  -11.25  -10.43   -9.08   -7.17   -4.58   -1.20    3.08    8.14   13.52
+     5.0    0.00   -0.35   -1.41   -3.00   -4.95   -6.95   -8.81  -10.27  -11.21  -11.54  -11.28  -10.44   -9.07   -7.16   -4.60   -1.24    3.03    8.11   13.56
+    10.0    0.00   -0.35   -1.40   -3.00   -4.94   -6.96   -8.82  -10.30  -11.24  -11.59  -11.30  -10.46   -9.09   -7.18   -4.62   -1.30    2.96    8.07   13.61
+    15.0    0.00   -0.36   -1.40   -3.00   -4.95   -6.96   -8.83  -10.32  -11.28  -11.63  -11.35  -10.49   -9.12   -7.20   -4.67   -1.37    2.87    8.01   13.66
+    20.0    0.00   -0.36   -1.41   -3.01   -4.94   -6.97   -8.85  -10.34  -11.32  -11.68  -11.41  -10.55   -9.16   -7.25   -4.75   -1.46    2.76    7.91   13.67
+    25.0    0.00   -0.36   -1.41   -3.00   -4.95   -6.98   -8.86  -10.37  -11.36  -11.74  -11.47  -10.62   -9.23   -7.33   -4.82   -1.55    2.64    7.81   13.65
+    30.0    0.00   -0.36   -1.41   -3.01   -4.95   -6.98   -8.88  -10.40  -11.40  -11.79  -11.54  -10.70   -9.32   -7.42   -4.91   -1.66    2.53    7.69   13.58
+    35.0    0.00   -0.36   -1.41   -3.01   -4.96   -6.98   -8.88  -10.41  -11.43  -11.85  -11.62  -10.79   -9.43   -7.51   -5.01   -1.76    2.41    7.57   13.47
+    40.0    0.00   -0.36   -1.40   -3.01   -4.96   -6.98   -8.89  -10.42  -11.47  -11.91  -11.70  -10.90   -9.53   -7.62   -5.09   -1.84    2.33    7.48   13.36
+    45.0    0.00   -0.36   -1.41   -3.03   -4.96   -6.99   -8.89  -10.43  -11.49  -11.94  -11.77  -10.98   -9.63   -7.71   -5.19   -1.92    2.26    7.38   13.23
+    50.0    0.00   -0.36   -1.41   -3.03   -4.97   -6.99   -8.88  -10.44  -11.50  -11.98  -11.83  -11.07   -9.72   -7.80   -5.24   -1.96    2.22    7.32   13.12
+    55.0    0.00   -0.36   -1.42   -3.03   -4.97   -7.00   -8.88  -10.44  -11.50  -11.99  -11.85  -11.12   -9.78   -7.86   -5.30   -1.99    2.21    7.29   13.03
+    60.0    0.00   -0.36   -1.42   -3.04   -4.97   -7.00   -8.87  -10.43  -11.49  -12.00  -11.88  -11.15   -9.83   -7.90   -5.31   -1.98    2.23    7.32   13.01
+    65.0    0.00   -0.37   -1.42   -3.04   -4.98   -7.00   -8.87  -10.41  -11.48  -11.97  -11.87  -11.15   -9.84   -7.91   -5.31   -1.95    2.29    7.38   13.05
+    70.0    0.00   -0.36   -1.43   -3.05   -5.00   -7.00   -8.87  -10.40  -11.44  -11.93  -11.83  -11.13   -9.82   -7.88   -5.28   -1.88    2.37    7.49   13.15
+    75.0    0.00   -0.36   -1.43   -3.06   -5.00   -7.01   -8.86  -10.36  -11.41  -11.88  -11.78  -11.07   -9.76   -7.84   -5.23   -1.81    2.49    7.64   13.31
+    80.0    0.00   -0.36   -1.45   -3.06   -5.01   -7.01   -8.84  -10.34  -11.35  -11.83  -11.71  -11.00   -9.69   -7.76   -5.14   -1.71    2.62    7.80   13.50
+    85.0    0.00   -0.36   -1.45   -3.07   -5.01   -7.00   -8.83  -10.31  -11.31  -11.75  -11.62  -10.90   -9.59   -7.67   -5.04   -1.61    2.75    7.97   13.72
+    90.0    0.00   -0.36   -1.45   -3.08   -5.01   -7.01   -8.82  -10.29  -11.25  -11.68  -11.52  -10.80   -9.49   -7.57   -4.94   -1.50    2.89    8.14   13.93
+    95.0    0.00   -0.37   -1.45   -3.08   -5.01   -7.00   -8.81  -10.25  -11.20  -11.60  -11.44  -10.69   -9.37   -7.46   -4.84   -1.37    3.01    8.28   14.11
+   100.0    0.00   -0.37   -1.46   -3.08   -5.01   -7.00   -8.79  -10.21  -11.14  -11.54  -11.35  -10.59   -9.27   -7.34   -4.72   -1.27    3.11    8.39   14.26
+   105.0    0.00   -0.37   -1.46   -3.08   -5.01   -6.99   -8.77  -10.18  -11.10  -11.47  -11.27  -10.49   -9.17   -7.25   -4.62   -1.18    3.18    8.47   14.35
+   110.0    0.00   -0.37   -1.46   -3.08   -5.01   -6.98   -8.76  -10.16  -11.06  -11.41  -11.20  -10.42   -9.08   -7.14   -4.53   -1.11    3.24    8.51   14.39
+   115.0    0.00   -0.37   -1.46   -3.08   -5.00   -6.96   -8.73  -10.13  -11.02  -11.37  -11.14  -10.36   -9.01   -7.07   -4.47   -1.06    3.26    8.50   14.38
+   120.0    0.00   -0.37   -1.46   -3.07   -4.98   -6.94   -8.72  -10.09  -10.98  -11.33  -11.09  -10.30   -8.95   -7.01   -4.41   -1.02    3.27    8.47   14.33
+   125.0    0.00   -0.37   -1.46   -3.06   -4.97   -6.93   -8.69  -10.07  -10.95  -11.29  -11.06  -10.26   -8.91   -6.98   -4.37   -1.01    3.26    8.42   14.27
+   130.0    0.00   -0.37   -1.46   -3.06   -4.97   -6.91   -8.67  -10.04  -10.92  -11.25  -11.01  -10.21   -8.87   -6.94   -4.36   -1.02    3.21    8.38   14.21
+   135.0    0.00   -0.37   -1.45   -3.05   -4.96   -6.90   -8.64  -10.01  -10.88  -11.22  -10.98  -10.19   -8.86   -6.93   -4.37   -1.03    3.18    8.31   14.16
+   140.0    0.00   -0.37   -1.45   -3.05   -4.94   -6.88   -8.62   -9.99  -10.86  -11.19  -10.96  -10.18   -8.84   -6.93   -4.38   -1.06    3.15    8.27   14.11
+   145.0    0.00   -0.38   -1.45   -3.05   -4.94   -6.87   -8.60   -9.96  -10.84  -11.18  -10.95  -10.17   -8.83   -6.94   -4.40   -1.08    3.11    8.24   14.11
+   150.0    0.00   -0.38   -1.45   -3.04   -4.93   -6.85   -8.58   -9.95  -10.83  -11.16  -10.93  -10.17   -8.85   -6.96   -4.41   -1.11    3.09    8.22   14.10
+   155.0    0.00   -0.38   -1.45   -3.04   -4.92   -6.84   -8.58   -9.94  -10.82  -11.15  -10.93  -10.16   -8.86   -6.99   -4.44   -1.14    3.06    8.20   14.10
+   160.0    0.00   -0.38   -1.46   -3.04   -4.92   -6.84   -8.58   -9.94  -10.81  -11.16  -10.95  -10.18   -8.88   -7.00   -4.48   -1.17    3.04    8.18   14.09
+   165.0    0.00   -0.38   -1.44   -3.04   -4.92   -6.84   -8.57   -9.95  -10.82  -11.18  -10.97  -10.22   -8.92   -7.04   -4.51   -1.20    3.02    8.16   14.06
+   170.0    0.00   -0.38   -1.44   -3.04   -4.92   -6.86   -8.60   -9.97  -10.85  -11.21  -11.00  -10.25   -8.97   -7.08   -4.55   -1.22    2.99    8.11   13.98
+   175.0    0.00   -0.38   -1.45   -3.05   -4.93   -6.88   -8.62  -10.01  -10.90  -11.25  -11.05  -10.31   -9.01   -7.14   -4.58   -1.26    2.93    8.04   13.87
+   180.0    0.00   -0.38   -1.46   -3.05   -4.95   -6.90   -8.66  -10.06  -10.96  -11.32  -11.12  -10.38   -9.08   -7.20   -4.64   -1.31    2.87    7.93   13.72
+   185.0    0.00   -0.39   -1.46   -3.06   -4.97   -6.93   -8.70  -10.10  -11.02  -11.39  -11.20  -10.45   -9.16   -7.27   -4.71   -1.40    2.76    7.80   13.54
+   190.0    0.00   -0.39   -1.47   -3.08   -5.00   -6.97   -8.75  -10.17  -11.10  -11.47  -11.29  -10.54   -9.24   -7.34   -4.79   -1.50    2.65    7.64   13.35
+   195.0    0.00   -0.39   -1.47   -3.10   -5.02   -7.01   -8.81  -10.25  -11.18  -11.55  -11.37  -10.63   -9.33   -7.44   -4.89   -1.62    2.49    7.46   13.16
+   200.0    0.00   -0.40   -1.47   -3.11   -5.05   -7.05   -8.87  -10.32  -11.26  -11.65  -11.47  -10.72   -9.42   -7.53   -5.02   -1.77    2.32    7.28   12.99
+   205.0    0.00   -0.40   -1.50   -3.13   -5.08   -7.10   -8.92  -10.38  -11.34  -11.74  -11.56  -10.82   -9.52   -7.66   -5.15   -1.92    2.15    7.11   12.85
+   210.0    0.00   -0.40   -1.50   -3.15   -5.11   -7.14   -8.99  -10.45  -11.42  -11.81  -11.64  -10.89   -9.62   -7.76   -5.30   -2.09    1.97    6.95   12.76
+   215.0    0.00   -0.40   -1.51   -3.16   -5.14   -7.17   -9.04  -10.51  -11.48  -11.89  -11.72  -10.99   -9.72   -7.88   -5.44   -2.24    1.82    6.85   12.73
+   220.0    0.00   -0.40   -1.52   -3.17   -5.17   -7.22   -9.08  -10.57  -11.54  -11.95  -11.79  -11.07   -9.82   -8.01   -5.57   -2.39    1.70    6.79   12.75
+   225.0    0.00   -0.41   -1.53   -3.19   -5.19   -7.25   -9.12  -10.60  -11.60  -12.01  -11.85  -11.15   -9.90   -8.12   -5.70   -2.50    1.62    6.76   12.79
+   230.0    0.00   -0.41   -1.53   -3.21   -5.21   -7.28   -9.16  -10.64  -11.63  -12.05  -11.91  -11.21   -9.99   -8.21   -5.79   -2.59    1.59    6.79   12.87
+   235.0    0.00   -0.41   -1.54   -3.21   -5.22   -7.29   -9.17  -10.67  -11.67  -12.09  -11.96  -11.28  -10.06   -8.29   -5.86   -2.60    1.61    6.87   12.95
+   240.0    0.00   -0.40   -1.54   -3.23   -5.24   -7.31   -9.19  -10.69  -11.69  -12.13  -12.00  -11.33  -10.13   -8.33   -5.89   -2.59    1.69    6.97   13.03
+   245.0    0.00   -0.40   -1.55   -3.23   -5.25   -7.32   -9.20  -10.71  -11.71  -12.15  -12.04  -11.38  -10.16   -8.36   -5.86   -2.53    1.80    7.09   13.09
+   250.0    0.00   -0.41   -1.54   -3.24   -5.25   -7.33   -9.21  -10.72  -11.73  -12.19  -12.09  -11.42  -10.19   -8.35   -5.81   -2.42    1.94    7.23   13.14
+   255.0    0.00   -0.41   -1.55   -3.24   -5.25   -7.32   -9.21  -10.73  -11.75  -12.21  -12.10  -11.43  -10.18   -8.30   -5.71   -2.27    2.11    7.35   13.17
+   260.0    0.00   -0.41   -1.54   -3.24   -5.25   -7.32   -9.21  -10.72  -11.74  -12.22  -12.11  -11.42  -10.14   -8.23   -5.59   -2.11    2.27    7.48   13.17
+   265.0    0.00   -0.41   -1.55   -3.23   -5.24   -7.31   -9.19  -10.72  -11.74  -12.21  -12.10  -11.40  -10.09   -8.12   -5.44   -1.96    2.42    7.58   13.17
+   270.0    0.00   -0.41   -1.54   -3.23   -5.23   -7.29   -9.19  -10.71  -11.74  -12.20  -12.09  -11.35  -10.00   -8.00   -5.28   -1.79    2.55    7.66   13.18
+   275.0    0.00   -0.40   -1.54   -3.22   -5.22   -7.28   -9.17  -10.69  -11.72  -12.18  -12.04  -11.28   -9.90   -7.88   -5.13   -1.64    2.68    7.73   13.20
+   280.0    0.00   -0.40   -1.53   -3.21   -5.21   -7.26   -9.15  -10.66  -11.69  -12.14  -11.98  -11.19   -9.78   -7.72   -4.99   -1.52    2.75    7.78   13.27
+   285.0    0.00   -0.40   -1.52   -3.20   -5.18   -7.24   -9.12  -10.64  -11.65  -12.08  -11.90  -11.08   -9.65   -7.59   -4.88   -1.43    2.80    7.80   13.34
+   290.0    0.00   -0.40   -1.52   -3.19   -5.17   -7.22   -9.09  -10.60  -11.60  -12.02  -11.81  -10.98   -9.53   -7.48   -4.78   -1.37    2.81    7.82   13.45
+   295.0    0.00   -0.39   -1.51   -3.17   -5.15   -7.19   -9.05  -10.55  -11.54  -11.94  -11.72  -10.87   -9.42   -7.37   -4.71   -1.35    2.82    7.84   13.55
+   300.0    0.00   -0.39   -1.50   -3.16   -5.13   -7.15   -9.01  -10.49  -11.47  -11.86  -11.63  -10.77   -9.31   -7.28   -4.66   -1.34    2.81    7.85   13.67
+   305.0    0.00   -0.39   -1.49   -3.14   -5.09   -7.12   -8.96  -10.43  -11.41  -11.78  -11.53  -10.67   -9.24   -7.24   -4.63   -1.33    2.80    7.87   13.76
+   310.0    0.00   -0.39   -1.48   -3.12   -5.07   -7.09   -8.92  -10.39  -11.34  -11.71  -11.44  -10.59   -9.17   -7.19   -4.63   -1.35    2.79    7.89   13.83
+   315.0    0.00   -0.38   -1.48   -3.10   -5.05   -7.06   -8.89  -10.33  -11.27  -11.62  -11.38  -10.53   -9.14   -7.19   -4.63   -1.36    2.80    7.92   13.86
+   320.0    0.00   -0.38   -1.47   -3.08   -5.03   -7.04   -8.84  -10.28  -11.22  -11.57  -11.32  -10.49   -9.11   -7.19   -4.65   -1.35    2.83    7.95   13.85
+   325.0    0.00   -0.38   -1.46   -3.08   -5.02   -7.00   -8.82  -10.25  -11.17  -11.52  -11.28  -10.47   -9.11   -7.19   -4.64   -1.34    2.86    7.99   13.81
+   330.0    0.00   -0.37   -1.45   -3.06   -4.99   -6.98   -8.79  -10.22  -11.14  -11.49  -11.24  -10.44   -9.11   -7.20   -4.65   -1.32    2.91    8.02   13.74
+   335.0    0.00   -0.37   -1.43   -3.05   -4.97   -6.96   -8.77  -10.20  -11.13  -11.47  -11.24  -10.44   -9.11   -7.21   -4.64   -1.29    2.96    8.06   13.66
+   340.0    0.00   -0.37   -1.43   -3.04   -4.96   -6.95   -8.77  -10.20  -11.11  -11.45  -11.22  -10.43   -9.11   -7.20   -4.63   -1.25    3.02    8.09   13.59
+   345.0    0.00   -0.36   -1.42   -3.03   -4.95   -6.95   -8.77  -10.19  -11.11  -11.46  -11.23  -10.43   -9.11   -7.20   -4.61   -1.23    3.05    8.12   13.54
+   350.0    0.00   -0.36   -1.41   -3.02   -4.95   -6.95   -8.76  -10.20  -11.12  -11.47  -11.22  -10.43   -9.09   -7.20   -4.60   -1.20    3.09    8.14   13.50
+   355.0    0.00   -0.36   -1.41   -3.02   -4.94   -6.95   -8.78  -10.22  -11.15  -11.48  -11.23  -10.42   -9.08   -7.17   -4.58   -1.19    3.08    8.15   13.50
+   360.0    0.00   -0.35   -1.41   -3.02   -4.94   -6.94   -8.79  -10.24  -11.16  -11.51  -11.25  -10.43   -9.08   -7.17   -4.58   -1.20    3.08    8.14   13.52
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+      0.78      0.27    119.73                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.10   -0.40   -0.88   -1.52   -2.29   -3.14   -4.04   -4.88   -5.53   -5.86   -5.85   -5.48   -4.79   -3.86   -2.62   -0.94    1.48    4.79
+     0.0    0.00   -0.07   -0.33   -0.75   -1.34   -2.09   -2.96   -3.88   -4.74   -5.40   -5.73   -5.67   -5.24   -4.50   -3.51   -2.24   -0.52    1.89    5.19
+     5.0    0.00   -0.07   -0.32   -0.75   -1.35   -2.09   -2.95   -3.88   -4.73   -5.38   -5.71   -5.66   -5.24   -4.52   -3.53   -2.27   -0.54    1.91    5.27
+    10.0    0.00   -0.07   -0.33   -0.75   -1.34   -2.08   -2.95   -3.87   -4.72   -5.38   -5.70   -5.66   -5.25   -4.55   -3.59   -2.32   -0.59    1.90    5.34
+    15.0    0.00   -0.07   -0.33   -0.74   -1.34   -2.09   -2.96   -3.87   -4.71   -5.36   -5.71   -5.67   -5.28   -4.59   -3.66   -2.41   -0.65    1.86    5.34
+    20.0    0.00   -0.07   -0.33   -0.76   -1.34   -2.09   -2.96   -3.87   -4.70   -5.36   -5.70   -5.68   -5.32   -4.65   -3.73   -2.48   -0.73    1.80    5.31
+    25.0    0.00   -0.07   -0.33   -0.76   -1.35   -2.10   -2.96   -3.87   -4.71   -5.36   -5.71   -5.71   -5.35   -4.71   -3.80   -2.57   -0.81    1.72    5.25
+    30.0    0.00   -0.07   -0.34   -0.77   -1.36   -2.11   -2.97   -3.87   -4.71   -5.36   -5.72   -5.73   -5.40   -4.77   -3.87   -2.64   -0.90    1.64    5.17
+    35.0    0.00   -0.08   -0.34   -0.78   -1.38   -2.12   -2.97   -3.87   -4.71   -5.36   -5.72   -5.74   -5.42   -4.81   -3.92   -2.71   -0.97    1.56    5.07
+    40.0    0.00   -0.08   -0.35   -0.79   -1.40   -2.14   -2.99   -3.88   -4.71   -5.36   -5.74   -5.76   -5.46   -4.85   -3.96   -2.75   -1.02    1.49    4.98
+    45.0    0.00   -0.08   -0.36   -0.80   -1.41   -2.16   -3.01   -3.89   -4.72   -5.37   -5.75   -5.78   -5.47   -4.86   -3.97   -2.78   -1.05    1.45    4.91
+    50.0    0.00   -0.09   -0.37   -0.83   -1.43   -2.18   -3.03   -3.91   -4.74   -5.39   -5.76   -5.80   -5.49   -4.87   -3.98   -2.77   -1.04    1.44    4.88
+    55.0    0.00   -0.09   -0.39   -0.85   -1.46   -2.21   -3.06   -3.94   -4.76   -5.41   -5.78   -5.81   -5.50   -4.87   -3.97   -2.75   -1.01    1.46    4.87
+    60.0    0.00   -0.09   -0.39   -0.85   -1.49   -2.24   -3.09   -3.97   -4.79   -5.43   -5.81   -5.83   -5.50   -4.86   -3.94   -2.71   -0.97    1.51    4.89
+    65.0    0.00   -0.10   -0.40   -0.88   -1.52   -2.28   -3.12   -4.00   -4.82   -5.47   -5.84   -5.85   -5.51   -4.85   -3.92   -2.66   -0.91    1.58    4.95
+    70.0    0.00   -0.11   -0.41   -0.90   -1.54   -2.31   -3.17   -4.04   -4.86   -5.51   -5.87   -5.87   -5.52   -4.85   -3.89   -2.63   -0.85    1.63    5.01
+    75.0    0.00   -0.11   -0.43   -0.92   -1.57   -2.34   -3.20   -4.08   -4.90   -5.55   -5.89   -5.90   -5.54   -4.84   -3.89   -2.59   -0.82    1.68    5.07
+    80.0    0.00   -0.11   -0.44   -0.94   -1.60   -2.38   -3.23   -4.12   -4.94   -5.58   -5.94   -5.93   -5.56   -4.86   -3.88   -2.59   -0.80    1.70    5.11
+    85.0    0.00   -0.12   -0.45   -0.95   -1.62   -2.40   -3.27   -4.15   -4.98   -5.62   -5.98   -5.97   -5.58   -4.89   -3.91   -2.62   -0.83    1.68    5.09
+    90.0    0.00   -0.12   -0.45   -0.98   -1.64   -2.42   -3.30   -4.19   -5.02   -5.66   -6.02   -6.01   -5.63   -4.92   -3.95   -2.67   -0.90    1.61    5.04
+    95.0    0.00   -0.12   -0.47   -0.98   -1.66   -2.46   -3.32   -4.21   -5.04   -5.69   -6.05   -6.04   -5.66   -4.97   -4.01   -2.76   -1.01    1.49    4.92
+   100.0    0.00   -0.13   -0.47   -1.00   -1.68   -2.47   -3.34   -4.23   -5.07   -5.72   -6.08   -6.07   -5.70   -5.02   -4.08   -2.86   -1.15    1.33    4.78
+   105.0    0.00   -0.14   -0.47   -1.01   -1.69   -2.49   -3.35   -4.25   -5.08   -5.75   -6.10   -6.10   -5.73   -5.07   -4.15   -2.98   -1.30    1.15    4.59
+   110.0    0.00   -0.14   -0.48   -1.02   -1.70   -2.49   -3.37   -4.26   -5.09   -5.76   -6.12   -6.12   -5.76   -5.11   -4.24   -3.09   -1.46    0.96    4.38
+   115.0    0.00   -0.13   -0.48   -1.02   -1.71   -2.50   -3.37   -4.27   -5.11   -5.76   -6.13   -6.13   -5.78   -5.14   -4.29   -3.18   -1.59    0.79    4.19
+   120.0    0.00   -0.13   -0.48   -1.02   -1.71   -2.50   -3.37   -4.27   -5.11   -5.76   -6.13   -6.13   -5.78   -5.16   -4.33   -3.23   -1.69    0.66    4.03
+   125.0    0.00   -0.13   -0.49   -1.03   -1.71   -2.50   -3.38   -4.27   -5.11   -5.76   -6.12   -6.12   -5.77   -5.16   -4.33   -3.26   -1.72    0.58    3.93
+   130.0    0.00   -0.13   -0.48   -1.02   -1.71   -2.51   -3.37   -4.27   -5.10   -5.75   -6.12   -6.11   -5.76   -5.13   -4.30   -3.23   -1.72    0.57    3.87
+   135.0    0.00   -0.13   -0.48   -1.01   -1.70   -2.49   -3.38   -4.27   -5.10   -5.74   -6.10   -6.09   -5.73   -5.09   -4.24   -3.16   -1.64    0.63    3.88
+   140.0    0.00   -0.13   -0.48   -1.01   -1.69   -2.49   -3.37   -4.26   -5.08   -5.73   -6.08   -6.06   -5.69   -5.04   -4.16   -3.05   -1.52    0.74    3.94
+   145.0    0.00   -0.13   -0.47   -1.00   -1.68   -2.49   -3.36   -4.25   -5.08   -5.72   -6.07   -6.03   -5.63   -4.96   -4.06   -2.91   -1.35    0.90    4.05
+   150.0    0.00   -0.13   -0.47   -0.98   -1.67   -2.47   -3.35   -4.25   -5.07   -5.70   -6.04   -5.99   -5.59   -4.89   -3.95   -2.76   -1.17    1.08    4.19
+   155.0    0.00   -0.13   -0.46   -0.98   -1.66   -2.46   -3.35   -4.23   -5.06   -5.69   -6.02   -5.96   -5.54   -4.82   -3.84   -2.62   -1.00    1.26    4.33
+   160.0    0.00   -0.12   -0.45   -0.97   -1.64   -2.45   -3.33   -4.23   -5.05   -5.67   -5.99   -5.92   -5.49   -4.75   -3.75   -2.49   -0.84    1.43    4.48
+   165.0    0.00   -0.12   -0.45   -0.96   -1.63   -2.43   -3.31   -4.22   -5.03   -5.66   -5.96   -5.89   -5.45   -4.69   -3.69   -2.40   -0.72    1.56    4.59
+   170.0    0.00   -0.12   -0.44   -0.94   -1.61   -2.42   -3.30   -4.20   -5.02   -5.63   -5.92   -5.85   -5.42   -4.65   -3.64   -2.34   -0.65    1.63    4.67
+   175.0    0.00   -0.12   -0.43   -0.93   -1.60   -2.40   -3.29   -4.19   -5.00   -5.61   -5.90   -5.83   -5.39   -4.63   -3.62   -2.33   -0.64    1.65    4.71
+   180.0    0.00   -0.12   -0.42   -0.91   -1.58   -2.39   -3.27   -4.17   -4.97   -5.58   -5.87   -5.81   -5.37   -4.63   -3.64   -2.35   -0.67    1.64    4.70
+   185.0    0.00   -0.11   -0.42   -0.91   -1.57   -2.36   -3.25   -4.14   -4.95   -5.56   -5.85   -5.79   -5.37   -4.64   -3.67   -2.41   -0.72    1.59    4.67
+   190.0    0.00   -0.11   -0.41   -0.90   -1.55   -2.34   -3.23   -4.12   -4.93   -5.53   -5.83   -5.77   -5.36   -4.67   -3.72   -2.47   -0.81    1.50    4.63
+   195.0    0.00   -0.11   -0.40   -0.89   -1.53   -2.32   -3.21   -4.10   -4.91   -5.51   -5.81   -5.76   -5.38   -4.69   -3.78   -2.55   -0.90    1.42    4.58
+   200.0    0.00   -0.11   -0.40   -0.88   -1.53   -2.31   -3.18   -4.08   -4.89   -5.49   -5.80   -5.76   -5.38   -4.72   -3.82   -2.62   -0.97    1.36    4.55
+   205.0    0.00   -0.11   -0.40   -0.87   -1.51   -2.29   -3.17   -4.07   -4.87   -5.48   -5.79   -5.76   -5.39   -4.75   -3.86   -2.66   -1.02    1.32    4.55
+   210.0    0.00   -0.11   -0.40   -0.87   -1.50   -2.29   -3.15   -4.05   -4.85   -5.46   -5.78   -5.76   -5.41   -4.76   -3.87   -2.68   -1.03    1.32    4.56
+   215.0    0.00   -0.11   -0.40   -0.87   -1.50   -2.27   -3.14   -4.03   -4.85   -5.46   -5.79   -5.77   -5.41   -4.77   -3.87   -2.67   -1.01    1.36    4.62
+   220.0    0.00   -0.11   -0.40   -0.87   -1.49   -2.27   -3.14   -4.03   -4.85   -5.47   -5.80   -5.78   -5.41   -4.76   -3.84   -2.63   -0.94    1.42    4.68
+   225.0    0.00   -0.11   -0.40   -0.87   -1.50   -2.27   -3.14   -4.03   -4.84   -5.47   -5.80   -5.78   -5.40   -4.74   -3.81   -2.57   -0.87    1.52    4.78
+   230.0    0.00   -0.11   -0.40   -0.87   -1.50   -2.28   -3.14   -4.03   -4.85   -5.47   -5.81   -5.77   -5.40   -4.71   -3.76   -2.50   -0.77    1.62    4.87
+   235.0    0.00   -0.11   -0.40   -0.87   -1.51   -2.29   -3.14   -4.04   -4.85   -5.48   -5.80   -5.78   -5.38   -4.67   -3.71   -2.42   -0.69    1.72    4.95
+   240.0    0.00   -0.11   -0.40   -0.88   -1.52   -2.30   -3.15   -4.05   -4.86   -5.49   -5.81   -5.77   -5.36   -4.64   -3.66   -2.35   -0.61    1.80    5.03
+   245.0    0.00   -0.11   -0.41   -0.90   -1.53   -2.31   -3.16   -4.05   -4.87   -5.50   -5.81   -5.77   -5.34   -4.61   -3.61   -2.31   -0.56    1.84    5.08
+   250.0    0.00   -0.11   -0.41   -0.90   -1.54   -2.31   -3.18   -4.06   -4.88   -5.50   -5.82   -5.75   -5.33   -4.59   -3.59   -2.30   -0.56    1.86    5.11
+   255.0    0.00   -0.10   -0.42   -0.90   -1.56   -2.32   -3.19   -4.07   -4.88   -5.51   -5.82   -5.75   -5.31   -4.58   -3.60   -2.32   -0.58    1.84    5.12
+   260.0    0.00   -0.10   -0.42   -0.91   -1.56   -2.33   -3.19   -4.08   -4.89   -5.51   -5.82   -5.75   -5.32   -4.59   -3.61   -2.36   -0.64    1.79    5.11
+   265.0    0.00   -0.10   -0.42   -0.91   -1.56   -2.34   -3.20   -4.08   -4.90   -5.52   -5.83   -5.76   -5.33   -4.61   -3.66   -2.43   -0.73    1.72    5.09
+   270.0    0.00   -0.10   -0.42   -0.92   -1.57   -2.35   -3.20   -4.09   -4.90   -5.52   -5.84   -5.77   -5.35   -4.65   -3.72   -2.51   -0.82    1.63    5.05
+   275.0    0.00   -0.10   -0.42   -0.92   -1.57   -2.34   -3.19   -4.08   -4.89   -5.52   -5.84   -5.79   -5.38   -4.70   -3.79   -2.60   -0.93    1.54    5.02
+   280.0    0.00   -0.10   -0.42   -0.92   -1.56   -2.34   -3.18   -4.07   -4.89   -5.53   -5.86   -5.82   -5.43   -4.75   -3.86   -2.68   -1.02    1.47    4.99
+   285.0    0.00   -0.10   -0.42   -0.91   -1.56   -2.32   -3.18   -4.05   -4.88   -5.53   -5.88   -5.86   -5.47   -4.81   -3.92   -2.76   -1.10    1.40    4.95
+   290.0    0.00   -0.10   -0.42   -0.91   -1.54   -2.30   -3.15   -4.03   -4.88   -5.54   -5.90   -5.89   -5.52   -4.87   -3.98   -2.81   -1.15    1.35    4.91
+   295.0    0.00   -0.09   -0.41   -0.90   -1.53   -2.28   -3.13   -4.02   -4.86   -5.54   -5.93   -5.93   -5.56   -4.91   -4.02   -2.84   -1.17    1.32    4.86
+   300.0    0.00   -0.09   -0.41   -0.89   -1.52   -2.26   -3.10   -4.00   -4.85   -5.55   -5.94   -5.96   -5.60   -4.94   -4.02   -2.84   -1.16    1.31    4.81
+   305.0    0.00   -0.09   -0.40   -0.87   -1.50   -2.24   -3.08   -3.97   -4.84   -5.55   -5.96   -5.98   -5.63   -4.94   -4.02   -2.82   -1.14    1.31    4.76
+   310.0    0.00   -0.09   -0.39   -0.87   -1.48   -2.21   -3.05   -3.96   -4.83   -5.54   -5.95   -6.00   -5.63   -4.94   -3.99   -2.77   -1.09    1.34    4.71
+   315.0    0.00   -0.09   -0.39   -0.85   -1.46   -2.19   -3.03   -3.93   -4.81   -5.54   -5.95   -5.98   -5.62   -4.91   -3.94   -2.70   -1.03    1.37    4.68
+   320.0    0.00   -0.08   -0.37   -0.83   -1.44   -2.17   -3.00   -3.92   -4.80   -5.52   -5.95   -5.97   -5.59   -4.87   -3.88   -2.63   -0.95    1.42    4.65
+   325.0    0.00   -0.08   -0.37   -0.82   -1.42   -2.15   -3.00   -3.91   -4.79   -5.51   -5.93   -5.94   -5.55   -4.81   -3.81   -2.54   -0.86    1.47    4.63
+   330.0    0.00   -0.08   -0.35   -0.81   -1.41   -2.13   -2.98   -3.90   -4.78   -5.50   -5.90   -5.90   -5.49   -4.74   -3.73   -2.46   -0.78    1.52    4.65
+   335.0    0.00   -0.08   -0.35   -0.80   -1.39   -2.12   -2.97   -3.89   -4.77   -5.48   -5.87   -5.86   -5.43   -4.67   -3.65   -2.38   -0.71    1.60    4.69
+   340.0    0.00   -0.08   -0.35   -0.78   -1.38   -2.11   -2.96   -3.88   -4.77   -5.46   -5.84   -5.81   -5.37   -4.60   -3.58   -2.31   -0.64    1.66    4.76
+   345.0    0.00   -0.08   -0.34   -0.77   -1.36   -2.10   -2.96   -3.89   -4.75   -5.43   -5.80   -5.76   -5.32   -4.55   -3.54   -2.25   -0.58    1.73    4.86
+   350.0    0.00   -0.08   -0.34   -0.76   -1.36   -2.09   -2.95   -3.88   -4.74   -5.42   -5.76   -5.71   -5.28   -4.52   -3.50   -2.23   -0.54    1.80    4.97
+   355.0    0.00   -0.07   -0.34   -0.75   -1.35   -2.09   -2.96   -3.88   -4.74   -5.41   -5.74   -5.69   -5.25   -4.49   -3.49   -2.23   -0.52    1.86    5.09
+   360.0    0.00   -0.07   -0.33   -0.75   -1.34   -2.09   -2.96   -3.88   -4.74   -5.40   -5.73   -5.67   -5.24   -4.50   -3.51   -2.24   -0.52    1.89    5.19
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TPSCR3_GGD      NONE                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               3    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+Number of Calibrated Antennas GPS:      003                 COMMENT             
+Number of Individual Calibrations GPS:  010                 COMMENT             
+   G01                                                      START OF FREQUENCY  
+     -0.03     -0.11     62.82                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.25   -0.97   -2.01   -3.23   -4.44   -5.54   -6.44   -7.09   -7.46   -7.47   -7.04   -6.05   -4.45   -2.20    0.61    3.83    7.25   10.57
+     0.0    0.00   -0.28   -1.00   -2.03   -3.20   -4.36   -5.41   -6.29   -6.96   -7.37   -7.42   -6.99   -5.94   -4.22   -1.87    0.97    4.12    7.36   10.47
+     5.0    0.00   -0.28   -1.00   -2.04   -3.22   -4.39   -5.44   -6.31   -6.98   -7.40   -7.46   -7.04   -6.02   -4.32   -1.97    0.89    4.06    7.31   10.45
+    10.0    0.00   -0.28   -1.01   -2.06   -3.24   -4.41   -5.46   -6.34   -7.01   -7.42   -7.50   -7.10   -6.10   -4.42   -2.08    0.79    3.99    7.27   10.43
+    15.0    0.00   -0.28   -1.02   -2.07   -3.27   -4.44   -5.50   -6.37   -7.03   -7.45   -7.54   -7.16   -6.19   -4.53   -2.20    0.69    3.91    7.23   10.41
+    20.0    0.00   -0.29   -1.03   -2.08   -3.29   -4.47   -5.53   -6.40   -7.06   -7.48   -7.58   -7.22   -6.27   -4.63   -2.30    0.59    3.84    7.18   10.38
+    25.0    0.00   -0.29   -1.03   -2.10   -3.31   -4.50   -5.56   -6.43   -7.10   -7.52   -7.62   -7.28   -6.35   -4.72   -2.40    0.50    3.76    7.11   10.34
+    30.0    0.00   -0.29   -1.04   -2.11   -3.33   -4.53   -5.60   -6.47   -7.13   -7.55   -7.66   -7.32   -6.41   -4.80   -2.49    0.41    3.67    7.03   10.27
+    35.0    0.00   -0.29   -1.04   -2.12   -3.35   -4.56   -5.63   -6.51   -7.17   -7.59   -7.69   -7.36   -6.45   -4.85   -2.55    0.33    3.59    6.95   10.20
+    40.0    0.00   -0.29   -1.04   -2.13   -3.36   -4.58   -5.67   -6.55   -7.22   -7.63   -7.72   -7.38   -6.47   -4.88   -2.59    0.27    3.51    6.86   10.13
+    45.0    0.00   -0.29   -1.05   -2.13   -3.38   -4.60   -5.70   -6.59   -7.26   -7.67   -7.75   -7.40   -6.48   -4.89   -2.62    0.22    3.44    6.78   10.07
+    50.0    0.00   -0.29   -1.05   -2.14   -3.38   -4.62   -5.72   -6.63   -7.30   -7.70   -7.78   -7.40   -6.47   -4.88   -2.62    0.19    3.39    6.72   10.03
+    55.0    0.00   -0.29   -1.05   -2.14   -3.39   -4.63   -5.75   -6.66   -7.33   -7.73   -7.79   -7.40   -6.45   -4.86   -2.62    0.18    3.36    6.70   10.04
+    60.0    0.00   -0.29   -1.04   -2.13   -3.39   -4.64   -5.76   -6.68   -7.36   -7.76   -7.80   -7.39   -6.43   -4.83   -2.60    0.19    3.36    6.72   10.09
+    65.0    0.00   -0.29   -1.04   -2.13   -3.38   -4.64   -5.77   -6.70   -7.38   -7.77   -7.79   -7.37   -6.40   -4.80   -2.57    0.21    3.39    6.78   10.20
+    70.0    0.00   -0.28   -1.03   -2.12   -3.37   -4.63   -5.76   -6.70   -7.38   -7.77   -7.78   -7.35   -6.36   -4.77   -2.54    0.24    3.44    6.88   10.35
+    75.0    0.00   -0.28   -1.03   -2.11   -3.36   -4.61   -5.75   -6.69   -7.37   -7.75   -7.76   -7.31   -6.33   -4.73   -2.51    0.28    3.52    7.01   10.53
+    80.0    0.00   -0.28   -1.02   -2.09   -3.34   -4.59   -5.73   -6.67   -7.35   -7.72   -7.72   -7.27   -6.29   -4.70   -2.48    0.33    3.61    7.16   10.73
+    85.0    0.00   -0.28   -1.01   -2.08   -3.32   -4.57   -5.71   -6.65   -7.32   -7.69   -7.68   -7.23   -6.25   -4.66   -2.44    0.38    3.70    7.31   10.93
+    90.0    0.00   -0.27   -1.00   -2.06   -3.29   -4.54   -5.68   -6.61   -7.28   -7.64   -7.63   -7.17   -6.20   -4.62   -2.41    0.43    3.79    7.45   11.10
+    95.0    0.00   -0.27   -0.99   -2.04   -3.27   -4.51   -5.64   -6.57   -7.23   -7.59   -7.57   -7.11   -6.14   -4.58   -2.36    0.48    3.87    7.57   11.25
+   100.0    0.00   -0.26   -0.98   -2.02   -3.24   -4.47   -5.60   -6.52   -7.18   -7.53   -7.51   -7.05   -6.08   -4.52   -2.32    0.53    3.93    7.66   11.35
+   105.0    0.00   -0.26   -0.97   -2.01   -3.21   -4.44   -5.55   -6.47   -7.13   -7.47   -7.45   -6.99   -6.02   -4.46   -2.26    0.58    3.98    7.71   11.40
+   110.0    0.00   -0.26   -0.96   -1.99   -3.18   -4.40   -5.51   -6.42   -7.08   -7.42   -7.39   -6.92   -5.95   -4.39   -2.20    0.63    4.02    7.73   11.41
+   115.0    0.00   -0.25   -0.95   -1.97   -3.16   -4.36   -5.47   -6.38   -7.03   -7.37   -7.33   -6.86   -5.87   -4.31   -2.12    0.69    4.04    7.73   11.38
+   120.0    0.00   -0.25   -0.94   -1.95   -3.13   -4.33   -5.43   -6.33   -6.99   -7.33   -7.29   -6.81   -5.81   -4.23   -2.05    0.75    4.06    7.71   11.34
+   125.0    0.00   -0.24   -0.93   -1.94   -3.11   -4.30   -5.39   -6.30   -6.95   -7.29   -7.26   -6.76   -5.75   -4.16   -1.97    0.81    4.08    7.68   11.29
+   130.0    0.00   -0.24   -0.92   -1.92   -3.09   -4.27   -5.36   -6.26   -6.92   -7.27   -7.23   -6.73   -5.70   -4.09   -1.89    0.87    4.11    7.66   11.25
+   135.0    0.00   -0.24   -0.92   -1.91   -3.07   -4.25   -5.33   -6.23   -6.90   -7.25   -7.22   -6.71   -5.66   -4.03   -1.82    0.93    4.14    7.66   11.23
+   140.0    0.00   -0.23   -0.91   -1.90   -3.06   -4.23   -5.30   -6.21   -6.88   -7.24   -7.21   -6.70   -5.64   -3.99   -1.76    0.98    4.17    7.66   11.23
+   145.0    0.00   -0.23   -0.91   -1.90   -3.05   -4.21   -5.29   -6.19   -6.86   -7.24   -7.21   -6.70   -5.63   -3.96   -1.72    1.02    4.20    7.68   11.25
+   150.0    0.00   -0.23   -0.90   -1.89   -3.04   -4.20   -5.27   -6.18   -6.86   -7.23   -7.22   -6.71   -5.63   -3.95   -1.71    1.04    4.22    7.70   11.28
+   155.0    0.00   -0.23   -0.90   -1.89   -3.04   -4.20   -5.27   -6.17   -6.85   -7.23   -7.22   -6.72   -5.64   -3.97   -1.72    1.04    4.22    7.71   11.31
+   160.0    0.00   -0.23   -0.90   -1.89   -3.04   -4.20   -5.27   -6.17   -6.85   -7.23   -7.22   -6.73   -5.66   -4.00   -1.75    1.00    4.19    7.70   11.32
+   165.0    0.00   -0.22   -0.90   -1.89   -3.05   -4.21   -5.28   -6.18   -6.85   -7.23   -7.22   -6.74   -5.69   -4.04   -1.82    0.94    4.13    7.66   11.30
+   170.0    0.00   -0.22   -0.90   -1.89   -3.05   -4.22   -5.29   -6.19   -6.85   -7.23   -7.22   -6.75   -5.72   -4.10   -1.90    0.84    4.04    7.59   11.25
+   175.0    0.00   -0.22   -0.90   -1.90   -3.07   -4.24   -5.31   -6.20   -6.86   -7.22   -7.22   -6.76   -5.76   -4.17   -2.01    0.71    3.92    7.48   11.15
+   180.0    0.00   -0.22   -0.90   -1.91   -3.08   -4.26   -5.33   -6.22   -6.87   -7.23   -7.22   -6.76   -5.79   -4.25   -2.13    0.57    3.76    7.33   11.01
+   185.0    0.00   -0.22   -0.90   -1.91   -3.09   -4.28   -5.36   -6.25   -6.89   -7.23   -7.22   -6.78   -5.83   -4.33   -2.25    0.41    3.59    7.16   10.83
+   190.0    0.00   -0.22   -0.90   -1.92   -3.11   -4.31   -5.39   -6.27   -6.91   -7.24   -7.23   -6.80   -5.88   -4.42   -2.37    0.26    3.42    6.98   10.63
+   195.0    0.00   -0.22   -0.91   -1.93   -3.12   -4.33   -5.41   -6.30   -6.93   -7.26   -7.25   -6.82   -5.93   -4.50   -2.49    0.12    3.26    6.81   10.42
+   200.0    0.00   -0.22   -0.91   -1.94   -3.14   -4.35   -5.44   -6.33   -6.96   -7.29   -7.28   -6.86   -5.98   -4.57   -2.58    0.00    3.13    6.64   10.22
+   205.0    0.00   -0.22   -0.91   -1.95   -3.15   -4.37   -5.47   -6.36   -6.99   -7.33   -7.32   -6.92   -6.05   -4.64   -2.66   -0.08    3.03    6.51   10.04
+   210.0    0.00   -0.22   -0.92   -1.96   -3.17   -4.39   -5.49   -6.39   -7.03   -7.37   -7.37   -6.98   -6.11   -4.70   -2.71   -0.13    2.98    6.42    9.89
+   215.0    0.00   -0.23   -0.92   -1.96   -3.18   -4.41   -5.52   -6.42   -7.07   -7.43   -7.44   -7.04   -6.17   -4.75   -2.73   -0.13    2.96    6.36    9.77
+   220.0    0.00   -0.23   -0.93   -1.97   -3.19   -4.43   -5.54   -6.46   -7.12   -7.48   -7.51   -7.11   -6.23   -4.78   -2.72   -0.10    2.99    6.35    9.69
+   225.0    0.00   -0.23   -0.93   -1.98   -3.21   -4.45   -5.57   -6.49   -7.16   -7.54   -7.57   -7.18   -6.28   -4.79   -2.69   -0.03    3.05    6.36    9.64
+   230.0    0.00   -0.23   -0.93   -1.99   -3.22   -4.47   -5.60   -6.53   -7.21   -7.60   -7.64   -7.24   -6.31   -4.78   -2.63    0.06    3.14    6.40    9.61
+   235.0    0.00   -0.23   -0.94   -2.00   -3.23   -4.49   -5.62   -6.56   -7.25   -7.65   -7.69   -7.28   -6.33   -4.75   -2.56    0.16    3.24    6.45    9.60
+   240.0    0.00   -0.23   -0.94   -2.01   -3.25   -4.51   -5.65   -6.60   -7.29   -7.69   -7.73   -7.31   -6.33   -4.71   -2.48    0.27    3.34    6.50    9.60
+   245.0    0.00   -0.23   -0.95   -2.01   -3.27   -4.53   -5.68   -6.63   -7.32   -7.72   -7.75   -7.32   -6.31   -4.66   -2.39    0.37    3.43    6.56    9.60
+   250.0    0.00   -0.24   -0.95   -2.02   -3.28   -4.55   -5.71   -6.66   -7.35   -7.74   -7.76   -7.30   -6.27   -4.60   -2.31    0.46    3.51    6.61    9.62
+   255.0    0.00   -0.24   -0.95   -2.03   -3.29   -4.57   -5.73   -6.68   -7.36   -7.74   -7.74   -7.27   -6.22   -4.54   -2.24    0.54    3.58    6.67    9.65
+   260.0    0.00   -0.24   -0.96   -2.04   -3.31   -4.59   -5.75   -6.69   -7.36   -7.72   -7.71   -7.22   -6.17   -4.48   -2.18    0.60    3.64    6.73    9.70
+   265.0    0.00   -0.24   -0.96   -2.04   -3.32   -4.61   -5.76   -6.69   -7.35   -7.69   -7.66   -7.16   -6.11   -4.43   -2.14    0.64    3.70    6.80    9.77
+   270.0    0.00   -0.24   -0.96   -2.05   -3.32   -4.61   -5.77   -6.69   -7.33   -7.65   -7.60   -7.10   -6.05   -4.39   -2.11    0.67    3.76    6.89    9.87
+   275.0    0.00   -0.24   -0.97   -2.05   -3.33   -4.61   -5.76   -6.67   -7.29   -7.59   -7.54   -7.04   -6.01   -4.36   -2.09    0.70    3.82    7.00   10.01
+   280.0    0.00   -0.24   -0.97   -2.05   -3.32   -4.60   -5.74   -6.64   -7.24   -7.53   -7.47   -6.98   -5.97   -4.35   -2.09    0.73    3.90    7.14   10.17
+   285.0    0.00   -0.25   -0.97   -2.05   -3.32   -4.59   -5.71   -6.59   -7.19   -7.47   -7.41   -6.93   -5.94   -4.34   -2.08    0.76    3.98    7.30   10.36
+   290.0    0.00   -0.25   -0.97   -2.04   -3.30   -4.56   -5.68   -6.55   -7.13   -7.41   -7.36   -6.89   -5.92   -4.33   -2.08    0.79    4.08    7.47   10.56
+   295.0    0.00   -0.25   -0.97   -2.04   -3.29   -4.53   -5.63   -6.49   -7.07   -7.35   -7.31   -6.87   -5.91   -4.33   -2.07    0.84    4.19    7.64   10.76
+   300.0    0.00   -0.25   -0.97   -2.03   -3.27   -4.50   -5.59   -6.43   -7.01   -7.31   -7.28   -6.85   -5.90   -4.32   -2.04    0.89    4.29    7.80   10.93
+   305.0    0.00   -0.25   -0.97   -2.02   -3.25   -4.46   -5.54   -6.38   -6.96   -7.27   -7.25   -6.83   -5.89   -4.31   -2.01    0.95    4.38    7.93   11.07
+   310.0    0.00   -0.25   -0.97   -2.01   -3.22   -4.43   -5.49   -6.33   -6.92   -7.24   -7.24   -6.83   -5.88   -4.28   -1.97    1.01    4.46    8.02   11.17
+   315.0    0.00   -0.26   -0.97   -2.00   -3.20   -4.39   -5.45   -6.29   -6.89   -7.22   -7.23   -6.82   -5.86   -4.24   -1.91    1.07    4.52    8.06   11.20
+   320.0    0.00   -0.26   -0.97   -2.00   -3.19   -4.36   -5.41   -6.25   -6.87   -7.22   -7.24   -6.82   -5.84   -4.20   -1.85    1.13    4.54    8.06   11.19
+   325.0    0.00   -0.26   -0.97   -1.99   -3.17   -4.34   -5.38   -6.23   -6.86   -7.22   -7.24   -6.82   -5.82   -4.15   -1.79    1.17    4.54    8.01   11.13
+   330.0    0.00   -0.26   -0.97   -1.99   -3.16   -4.32   -5.36   -6.22   -6.86   -7.23   -7.26   -6.82   -5.80   -4.11   -1.74    1.20    4.52    7.93   11.03
+   335.0    0.00   -0.26   -0.97   -1.99   -3.15   -4.31   -5.35   -6.21   -6.86   -7.25   -7.28   -6.83   -5.78   -4.07   -1.71    1.20    4.47    7.83   10.91
+   340.0    0.00   -0.27   -0.97   -1.99   -3.15   -4.31   -5.35   -6.22   -6.88   -7.27   -7.30   -6.84   -5.78   -4.06   -1.69    1.19    4.41    7.72   10.79
+   345.0    0.00   -0.27   -0.98   -2.00   -3.16   -4.31   -5.36   -6.23   -6.90   -7.29   -7.33   -6.86   -5.79   -4.06   -1.70    1.16    4.34    7.61   10.68
+   350.0    0.00   -0.27   -0.98   -2.01   -3.17   -4.32   -5.37   -6.24   -6.92   -7.32   -7.36   -6.90   -5.82   -4.09   -1.73    1.12    4.27    7.51   10.58
+   355.0    0.00   -0.27   -0.99   -2.02   -3.18   -4.34   -5.39   -6.26   -6.94   -7.34   -7.39   -6.94   -5.87   -4.14   -1.79    1.05    4.20    7.43   10.52
+   360.0    0.00   -0.28   -1.00   -2.03   -3.20   -4.36   -5.41   -6.29   -6.96   -7.37   -7.42   -6.99   -5.94   -4.22   -1.87    0.97    4.12    7.36   10.47
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.82      0.23     98.19                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.05   -0.19   -0.45   -0.81   -1.24   -1.69   -2.10   -2.43   -2.65   -2.79   -2.83   -2.75   -2.42   -1.68   -0.42    1.41    3.62    5.83
+     0.0    0.00   -0.03   -0.16   -0.38   -0.70   -1.13   -1.60   -2.04   -2.37   -2.57   -2.66   -2.69   -2.63   -2.39   -1.72   -0.41    1.58    3.88    5.55
+     5.0    0.00   -0.04   -0.16   -0.37   -0.70   -1.11   -1.58   -2.02   -2.36   -2.57   -2.67   -2.70   -2.64   -2.38   -1.70   -0.37    1.62    3.91    5.62
+    10.0    0.00   -0.04   -0.16   -0.37   -0.69   -1.10   -1.56   -2.00   -2.34   -2.56   -2.68   -2.71   -2.65   -2.39   -1.69   -0.36    1.63    3.92    5.68
+    15.0    0.00   -0.04   -0.17   -0.38   -0.69   -1.09   -1.54   -1.98   -2.33   -2.56   -2.69   -2.73   -2.67   -2.40   -1.70   -0.37    1.60    3.89    5.74
+    20.0    0.00   -0.05   -0.17   -0.38   -0.69   -1.09   -1.54   -1.97   -2.32   -2.56   -2.69   -2.75   -2.70   -2.42   -1.72   -0.40    1.56    3.85    5.79
+    25.0    0.00   -0.05   -0.18   -0.39   -0.70   -1.09   -1.54   -1.96   -2.31   -2.55   -2.70   -2.76   -2.72   -2.44   -1.74   -0.43    1.51    3.80    5.84
+    30.0    0.00   -0.05   -0.19   -0.40   -0.71   -1.11   -1.54   -1.96   -2.31   -2.55   -2.70   -2.78   -2.74   -2.46   -1.76   -0.46    1.46    3.75    5.89
+    35.0    0.00   -0.06   -0.20   -0.42   -0.73   -1.13   -1.56   -1.97   -2.30   -2.54   -2.70   -2.78   -2.75   -2.48   -1.77   -0.48    1.43    3.71    5.93
+    40.0    0.00   -0.06   -0.21   -0.44   -0.76   -1.15   -1.58   -1.98   -2.30   -2.54   -2.69   -2.78   -2.76   -2.48   -1.78   -0.48    1.41    3.69    5.97
+    45.0    0.00   -0.07   -0.22   -0.45   -0.78   -1.18   -1.61   -2.00   -2.31   -2.53   -2.69   -2.78   -2.75   -2.48   -1.76   -0.46    1.43    3.70    6.02
+    50.0    0.00   -0.07   -0.23   -0.47   -0.81   -1.21   -1.64   -2.02   -2.31   -2.53   -2.68   -2.77   -2.74   -2.46   -1.74   -0.43    1.47    3.74    6.07
+    55.0    0.00   -0.07   -0.24   -0.49   -0.84   -1.25   -1.67   -2.04   -2.32   -2.52   -2.67   -2.75   -2.72   -2.43   -1.70   -0.37    1.53    3.80    6.14
+    60.0    0.00   -0.08   -0.25   -0.51   -0.87   -1.28   -1.70   -2.06   -2.34   -2.53   -2.66   -2.74   -2.70   -2.40   -1.65   -0.32    1.59    3.87    6.21
+    65.0    0.00   -0.08   -0.26   -0.53   -0.89   -1.31   -1.73   -2.09   -2.36   -2.54   -2.66   -2.73   -2.68   -2.37   -1.61   -0.26    1.66    3.95    6.30
+    70.0    0.00   -0.08   -0.26   -0.54   -0.91   -1.34   -1.76   -2.12   -2.38   -2.55   -2.66   -2.72   -2.67   -2.35   -1.58   -0.22    1.71    4.02    6.38
+    75.0    0.00   -0.09   -0.27   -0.56   -0.93   -1.36   -1.79   -2.15   -2.41   -2.58   -2.68   -2.73   -2.66   -2.34   -1.57   -0.21    1.74    4.08    6.45
+    80.0    0.00   -0.09   -0.28   -0.57   -0.95   -1.38   -1.81   -2.17   -2.44   -2.61   -2.71   -2.75   -2.67   -2.34   -1.57   -0.22    1.73    4.10    6.51
+    85.0    0.00   -0.09   -0.28   -0.57   -0.95   -1.39   -1.83   -2.20   -2.48   -2.66   -2.75   -2.78   -2.69   -2.36   -1.60   -0.26    1.69    4.08    6.53
+    90.0    0.00   -0.09   -0.28   -0.58   -0.96   -1.40   -1.84   -2.23   -2.52   -2.71   -2.81   -2.82   -2.72   -2.39   -1.65   -0.33    1.62    4.04    6.53
+    95.0    0.00   -0.09   -0.29   -0.58   -0.96   -1.40   -1.85   -2.25   -2.56   -2.76   -2.87   -2.88   -2.77   -2.44   -1.71   -0.42    1.52    3.96    6.47
+   100.0    0.00   -0.09   -0.29   -0.58   -0.96   -1.40   -1.86   -2.28   -2.61   -2.82   -2.93   -2.94   -2.83   -2.50   -1.79   -0.52    1.40    3.86    6.38
+   105.0    0.00   -0.09   -0.29   -0.58   -0.95   -1.40   -1.86   -2.30   -2.65   -2.88   -3.00   -3.00   -2.88   -2.55   -1.86   -0.61    1.29    3.74    6.26
+   110.0    0.00   -0.09   -0.28   -0.57   -0.95   -1.39   -1.86   -2.31   -2.68   -2.93   -3.06   -3.06   -2.94   -2.61   -1.92   -0.69    1.20    3.64    6.11
+   115.0    0.00   -0.09   -0.28   -0.57   -0.94   -1.39   -1.87   -2.33   -2.71   -2.98   -3.11   -3.12   -2.99   -2.65   -1.96   -0.74    1.14    3.55    5.95
+   120.0    0.00   -0.09   -0.28   -0.56   -0.94   -1.38   -1.87   -2.34   -2.73   -3.01   -3.15   -3.16   -3.02   -2.67   -1.98   -0.76    1.11    3.49    5.80
+   125.0    0.00   -0.09   -0.28   -0.56   -0.93   -1.38   -1.87   -2.34   -2.75   -3.03   -3.17   -3.18   -3.04   -2.68   -1.97   -0.73    1.13    3.47    5.68
+   130.0    0.00   -0.09   -0.27   -0.56   -0.93   -1.38   -1.87   -2.35   -2.75   -3.03   -3.18   -3.19   -3.04   -2.66   -1.93   -0.68    1.19    3.49    5.60
+   135.0    0.00   -0.08   -0.27   -0.55   -0.93   -1.38   -1.87   -2.35   -2.75   -3.03   -3.17   -3.18   -3.02   -2.63   -1.87   -0.59    1.28    3.55    5.59
+   140.0    0.00   -0.08   -0.27   -0.55   -0.93   -1.38   -1.87   -2.34   -2.73   -3.01   -3.15   -3.16   -2.99   -2.58   -1.79   -0.48    1.40    3.64    5.63
+   145.0    0.00   -0.08   -0.26   -0.55   -0.93   -1.39   -1.87   -2.34   -2.72   -2.98   -3.12   -3.12   -2.95   -2.52   -1.70   -0.36    1.53    3.76    5.74
+   150.0    0.00   -0.08   -0.26   -0.54   -0.93   -1.39   -1.87   -2.33   -2.70   -2.95   -3.09   -3.08   -2.90   -2.45   -1.61   -0.24    1.65    3.88    5.90
+   155.0    0.00   -0.07   -0.25   -0.54   -0.93   -1.39   -1.87   -2.31   -2.67   -2.92   -3.05   -3.04   -2.85   -2.39   -1.52   -0.14    1.76    3.99    6.08
+   160.0    0.00   -0.07   -0.25   -0.54   -0.93   -1.39   -1.87   -2.30   -2.65   -2.89   -3.01   -3.01   -2.81   -2.34   -1.45   -0.05    1.85    4.09    6.28
+   165.0    0.00   -0.07   -0.24   -0.53   -0.93   -1.39   -1.86   -2.28   -2.62   -2.85   -2.98   -2.98   -2.78   -2.29   -1.39    0.01    1.90    4.14    6.46
+   170.0    0.00   -0.06   -0.24   -0.53   -0.92   -1.38   -1.85   -2.26   -2.59   -2.83   -2.96   -2.96   -2.76   -2.26   -1.35    0.05    1.92    4.16    6.60
+   175.0    0.00   -0.06   -0.23   -0.52   -0.91   -1.37   -1.83   -2.24   -2.57   -2.80   -2.94   -2.95   -2.75   -2.24   -1.32    0.06    1.90    4.13    6.68
+   180.0    0.00   -0.06   -0.22   -0.51   -0.90   -1.36   -1.82   -2.22   -2.54   -2.78   -2.93   -2.94   -2.75   -2.24   -1.31    0.06    1.87    4.06    6.69
+   185.0    0.00   -0.05   -0.22   -0.50   -0.89   -1.34   -1.79   -2.19   -2.52   -2.76   -2.92   -2.94   -2.75   -2.23   -1.31    0.05    1.81    3.96    6.61
+   190.0    0.00   -0.05   -0.21   -0.49   -0.88   -1.33   -1.77   -2.17   -2.49   -2.74   -2.91   -2.95   -2.76   -2.24   -1.31    0.03    1.74    3.83    6.47
+   195.0    0.00   -0.05   -0.20   -0.48   -0.86   -1.31   -1.75   -2.14   -2.47   -2.72   -2.90   -2.95   -2.76   -2.24   -1.32    0.00    1.67    3.69    6.27
+   200.0    0.00   -0.04   -0.20   -0.47   -0.85   -1.29   -1.72   -2.11   -2.44   -2.70   -2.89   -2.94   -2.76   -2.25   -1.33   -0.02    1.60    3.55    6.04
+   205.0    0.00   -0.04   -0.19   -0.46   -0.84   -1.27   -1.70   -2.09   -2.41   -2.67   -2.86   -2.92   -2.75   -2.25   -1.34   -0.05    1.54    3.42    5.79
+   210.0    0.00   -0.04   -0.18   -0.45   -0.82   -1.25   -1.69   -2.07   -2.39   -2.65   -2.83   -2.89   -2.74   -2.25   -1.35   -0.07    1.49    3.31    5.55
+   215.0    0.00   -0.03   -0.18   -0.44   -0.81   -1.24   -1.67   -2.05   -2.36   -2.61   -2.79   -2.86   -2.71   -2.24   -1.37   -0.11    1.45    3.23    5.35
+   220.0    0.00   -0.03   -0.17   -0.43   -0.80   -1.23   -1.66   -2.04   -2.34   -2.58   -2.75   -2.82   -2.69   -2.24   -1.39   -0.14    1.42    3.18    5.21
+   225.0    0.00   -0.03   -0.17   -0.43   -0.79   -1.22   -1.66   -2.03   -2.33   -2.55   -2.71   -2.77   -2.66   -2.24   -1.42   -0.18    1.39    3.17    5.13
+   230.0    0.00   -0.02   -0.16   -0.42   -0.79   -1.22   -1.65   -2.03   -2.31   -2.52   -2.67   -2.73   -2.63   -2.25   -1.46   -0.23    1.37    3.18    5.12
+   235.0    0.00   -0.02   -0.16   -0.41   -0.78   -1.22   -1.65   -2.02   -2.30   -2.50   -2.63   -2.69   -2.61   -2.26   -1.51   -0.28    1.35    3.22    5.17
+   240.0    0.00   -0.02   -0.15   -0.41   -0.78   -1.21   -1.65   -2.02   -2.30   -2.48   -2.61   -2.67   -2.60   -2.28   -1.56   -0.34    1.34    3.28    5.27
+   245.0    0.00   -0.02   -0.15   -0.41   -0.77   -1.21   -1.65   -2.03   -2.30   -2.48   -2.60   -2.66   -2.60   -2.31   -1.61   -0.39    1.32    3.34    5.41
+   250.0    0.00   -0.02   -0.15   -0.40   -0.77   -1.21   -1.65   -2.03   -2.30   -2.48   -2.60   -2.66   -2.62   -2.34   -1.65   -0.44    1.31    3.41    5.56
+   255.0    0.00   -0.02   -0.15   -0.40   -0.76   -1.20   -1.64   -2.02   -2.31   -2.50   -2.62   -2.68   -2.64   -2.37   -1.69   -0.48    1.30    3.46    5.70
+   260.0    0.00   -0.02   -0.15   -0.40   -0.76   -1.19   -1.64   -2.02   -2.31   -2.51   -2.64   -2.72   -2.68   -2.40   -1.73   -0.51    1.28    3.50    5.82
+   265.0    0.00   -0.02   -0.14   -0.39   -0.75   -1.18   -1.63   -2.02   -2.32   -2.54   -2.68   -2.76   -2.72   -2.44   -1.76   -0.53    1.27    3.52    5.91
+   270.0    0.00   -0.01   -0.14   -0.39   -0.75   -1.17   -1.61   -2.01   -2.33   -2.57   -2.73   -2.81   -2.76   -2.47   -1.78   -0.55    1.25    3.51    5.96
+   275.0    0.00   -0.01   -0.14   -0.39   -0.74   -1.16   -1.60   -2.01   -2.34   -2.59   -2.77   -2.86   -2.80   -2.49   -1.79   -0.57    1.22    3.48    5.96
+   280.0    0.00   -0.01   -0.15   -0.39   -0.74   -1.16   -1.59   -2.00   -2.35   -2.62   -2.81   -2.90   -2.84   -2.51   -1.80   -0.59    1.18    3.43    5.93
+   285.0    0.00   -0.02   -0.15   -0.39   -0.74   -1.15   -1.58   -2.00   -2.35   -2.64   -2.85   -2.94   -2.87   -2.53   -1.82   -0.61    1.13    3.36    5.87
+   290.0    0.00   -0.02   -0.15   -0.39   -0.74   -1.15   -1.58   -2.00   -2.36   -2.66   -2.87   -2.97   -2.89   -2.55   -1.83   -0.65    1.08    3.29    5.78
+   295.0    0.00   -0.02   -0.15   -0.39   -0.74   -1.15   -1.58   -2.00   -2.37   -2.67   -2.88   -2.98   -2.90   -2.56   -1.86   -0.68    1.02    3.21    5.69
+   300.0    0.00   -0.02   -0.15   -0.40   -0.74   -1.15   -1.59   -2.01   -2.38   -2.68   -2.88   -2.97   -2.90   -2.57   -1.88   -0.73    0.96    3.14    5.59
+   305.0    0.00   -0.02   -0.15   -0.40   -0.75   -1.16   -1.60   -2.02   -2.39   -2.68   -2.87   -2.96   -2.89   -2.57   -1.91   -0.78    0.91    3.09    5.50
+   310.0    0.00   -0.02   -0.15   -0.40   -0.75   -1.17   -1.61   -2.04   -2.40   -2.67   -2.86   -2.93   -2.87   -2.58   -1.94   -0.82    0.87    3.06    5.43
+   315.0    0.00   -0.02   -0.15   -0.40   -0.75   -1.18   -1.63   -2.05   -2.40   -2.66   -2.83   -2.90   -2.84   -2.57   -1.96   -0.85    0.86    3.06    5.36
+   320.0    0.00   -0.02   -0.15   -0.40   -0.76   -1.19   -1.65   -2.07   -2.41   -2.65   -2.80   -2.86   -2.81   -2.57   -1.98   -0.86    0.87    3.09    5.32
+   325.0    0.00   -0.02   -0.15   -0.40   -0.76   -1.20   -1.66   -2.08   -2.42   -2.64   -2.77   -2.82   -2.78   -2.55   -1.98   -0.86    0.91    3.15    5.30
+   330.0    0.00   -0.02   -0.15   -0.40   -0.76   -1.20   -1.67   -2.09   -2.42   -2.63   -2.74   -2.78   -2.74   -2.53   -1.96   -0.82    0.98    3.24    5.30
+   335.0    0.00   -0.02   -0.15   -0.40   -0.75   -1.20   -1.67   -2.10   -2.42   -2.62   -2.71   -2.74   -2.71   -2.51   -1.94   -0.77    1.08    3.36    5.31
+   340.0    0.00   -0.03   -0.15   -0.39   -0.75   -1.19   -1.67   -2.10   -2.42   -2.61   -2.69   -2.72   -2.68   -2.48   -1.90   -0.70    1.19    3.48    5.34
+   345.0    0.00   -0.03   -0.15   -0.39   -0.74   -1.18   -1.66   -2.09   -2.41   -2.59   -2.67   -2.69   -2.66   -2.45   -1.85   -0.62    1.31    3.60    5.38
+   350.0    0.00   -0.03   -0.15   -0.38   -0.73   -1.16   -1.64   -2.08   -2.40   -2.59   -2.66   -2.68   -2.64   -2.42   -1.80   -0.54    1.42    3.72    5.43
+   355.0    0.00   -0.03   -0.15   -0.38   -0.72   -1.15   -1.62   -2.06   -2.39   -2.58   -2.66   -2.68   -2.63   -2.40   -1.76   -0.47    1.51    3.81    5.49
+   360.0    0.00   -0.03   -0.16   -0.38   -0.70   -1.13   -1.60   -2.04   -2.37   -2.57   -2.66   -2.69   -2.63   -2.39   -1.72   -0.41    1.58    3.88    5.55
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TPSCR3_GGD      CONE                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH             159    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     4                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+Number of Calibrated Antennas GPS:      159                 COMMENT             
+Number of Individual Calibrations GPS:  385                 COMMENT             
+Number of Calibrated Antennas GLO:      047                 COMMENT             
+Number of Individual Calibrations GLO:  094                 COMMENT             
+# GLONASS PCV                                               COMMENT             
+#  derived from Delta PCV per 25.0 MHz                      COMMENT             
+#  for frequency channel number k=0                         COMMENT             
+   G01                                                      START OF FREQUENCY  
+     -0.34     -0.14     63.68                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.23   -0.89   -1.85   -2.98   -4.15   -5.25   -6.23   -7.04   -7.62   -7.85   -7.56   -6.59   -4.84   -2.31    0.85    4.38    7.91   11.04
+     0.0    0.00   -0.25   -0.90   -1.84   -2.92   -4.02   -5.06   -6.00   -6.80   -7.40   -7.64   -7.33   -6.30   -4.44   -1.81    1.41    4.88    8.26   11.27
+     5.0    0.00   -0.25   -0.90   -1.85   -2.93   -4.04   -5.08   -6.02   -6.82   -7.42   -7.67   -7.38   -6.37   -4.53   -1.91    1.31    4.80    8.20   11.22
+    10.0    0.00   -0.25   -0.90   -1.85   -2.95   -4.06   -5.11   -6.05   -6.85   -7.45   -7.71   -7.44   -6.45   -4.64   -2.02    1.20    4.71    8.14   11.16
+    15.0    0.00   -0.25   -0.91   -1.86   -2.97   -4.09   -5.14   -6.08   -6.88   -7.48   -7.75   -7.50   -6.53   -4.74   -2.14    1.09    4.61    8.06   11.09
+    20.0    0.00   -0.25   -0.91   -1.87   -2.99   -4.12   -5.18   -6.13   -6.93   -7.53   -7.80   -7.56   -6.61   -4.84   -2.26    0.96    4.50    7.96   11.00
+    25.0    0.00   -0.25   -0.91   -1.88   -3.01   -4.15   -5.23   -6.18   -6.98   -7.58   -7.85   -7.61   -6.69   -4.94   -2.37    0.84    4.38    7.85   10.88
+    30.0    0.00   -0.25   -0.92   -1.89   -3.03   -4.19   -5.27   -6.24   -7.04   -7.64   -7.90   -7.67   -6.75   -5.02   -2.47    0.72    4.25    7.72   10.74
+    35.0    0.00   -0.25   -0.92   -1.90   -3.05   -4.23   -5.32   -6.30   -7.11   -7.70   -7.96   -7.72   -6.81   -5.09   -2.56    0.61    4.13    7.58   10.59
+    40.0    0.00   -0.25   -0.92   -1.91   -3.07   -4.26   -5.37   -6.36   -7.17   -7.76   -8.01   -7.77   -6.85   -5.15   -2.64    0.51    4.00    7.44   10.43
+    45.0    0.00   -0.25   -0.92   -1.92   -3.09   -4.29   -5.42   -6.42   -7.24   -7.83   -8.07   -7.81   -6.90   -5.20   -2.71    0.42    3.89    7.32   10.29
+    50.0    0.00   -0.25   -0.92   -1.92   -3.10   -4.31   -5.46   -6.47   -7.30   -7.88   -8.12   -7.86   -6.93   -5.24   -2.77    0.34    3.80    7.22   10.19
+    55.0    0.00   -0.25   -0.92   -1.93   -3.11   -4.33   -5.49   -6.51   -7.35   -7.94   -8.17   -7.90   -6.97   -5.28   -2.81    0.29    3.74    7.15   10.13
+    60.0    0.00   -0.24   -0.92   -1.93   -3.11   -4.34   -5.51   -6.54   -7.38   -7.98   -8.21   -7.94   -7.01   -5.32   -2.85    0.25    3.70    7.14   10.13
+    65.0    0.00   -0.24   -0.92   -1.92   -3.11   -4.34   -5.51   -6.55   -7.41   -8.00   -8.24   -7.97   -7.04   -5.35   -2.89    0.22    3.70    7.17   10.19
+    70.0    0.00   -0.24   -0.92   -1.92   -3.10   -4.34   -5.51   -6.55   -7.41   -8.01   -8.26   -7.99   -7.07   -5.38   -2.91    0.22    3.73    7.24   10.30
+    75.0    0.00   -0.24   -0.91   -1.91   -3.09   -4.32   -5.49   -6.54   -7.40   -8.01   -8.26   -8.00   -7.09   -5.40   -2.92    0.23    3.78    7.34   10.47
+    80.0    0.00   -0.24   -0.91   -1.90   -3.08   -4.30   -5.47   -6.51   -7.37   -7.98   -8.24   -8.00   -7.09   -5.41   -2.92    0.26    3.85    7.47   10.66
+    85.0    0.00   -0.24   -0.90   -1.89   -3.06   -4.27   -5.43   -6.47   -7.33   -7.95   -8.21   -7.97   -7.07   -5.39   -2.90    0.30    3.93    7.61   10.87
+    90.0    0.00   -0.23   -0.90   -1.88   -3.04   -4.25   -5.40   -6.42   -7.28   -7.89   -8.16   -7.92   -7.03   -5.35   -2.86    0.35    4.02    7.75   11.07
+    95.0    0.00   -0.23   -0.89   -1.87   -3.02   -4.22   -5.35   -6.37   -7.22   -7.83   -8.09   -7.86   -6.97   -5.29   -2.80    0.41    4.10    7.87   11.25
+   100.0    0.00   -0.23   -0.88   -1.85   -3.00   -4.18   -5.31   -6.32   -7.16   -7.76   -8.01   -7.77   -6.88   -5.21   -2.72    0.49    4.17    7.97   11.40
+   105.0    0.00   -0.23   -0.88   -1.84   -2.98   -4.15   -5.27   -6.27   -7.10   -7.68   -7.93   -7.68   -6.78   -5.11   -2.63    0.57    4.25    8.05   11.51
+   110.0    0.00   -0.22   -0.87   -1.83   -2.96   -4.12   -5.23   -6.22   -7.04   -7.61   -7.84   -7.57   -6.66   -4.99   -2.52    0.66    4.32    8.11   11.58
+   115.0    0.00   -0.22   -0.86   -1.82   -2.94   -4.10   -5.20   -6.17   -6.98   -7.54   -7.75   -7.47   -6.55   -4.87   -2.40    0.76    4.40    8.16   11.63
+   120.0    0.00   -0.22   -0.86   -1.80   -2.92   -4.07   -5.16   -6.13   -6.93   -7.48   -7.68   -7.38   -6.44   -4.74   -2.28    0.87    4.48    8.22   11.66
+   125.0    0.00   -0.22   -0.85   -1.79   -2.90   -4.05   -5.13   -6.09   -6.88   -7.42   -7.61   -7.30   -6.34   -4.63   -2.16    0.98    4.58    8.28   11.69
+   130.0    0.00   -0.21   -0.85   -1.78   -2.89   -4.02   -5.10   -6.06   -6.84   -7.38   -7.56   -7.23   -6.26   -4.53   -2.05    1.10    4.68    8.36   11.73
+   135.0    0.00   -0.21   -0.84   -1.78   -2.87   -4.00   -5.07   -6.03   -6.81   -7.34   -7.52   -7.19   -6.20   -4.46   -1.95    1.21    4.79    8.45   11.78
+   140.0    0.00   -0.21   -0.84   -1.77   -2.86   -3.99   -5.05   -6.00   -6.78   -7.32   -7.50   -7.16   -6.17   -4.40   -1.87    1.32    4.91    8.56   11.84
+   145.0    0.00   -0.21   -0.83   -1.76   -2.85   -3.97   -5.03   -5.97   -6.75   -7.30   -7.48   -7.15   -6.15   -4.37   -1.81    1.41    5.02    8.67   11.92
+   150.0    0.00   -0.21   -0.83   -1.76   -2.84   -3.96   -5.01   -5.95   -6.74   -7.28   -7.48   -7.15   -6.15   -4.35   -1.77    1.47    5.11    8.77   12.01
+   155.0    0.00   -0.21   -0.83   -1.75   -2.84   -3.95   -5.00   -5.94   -6.72   -7.28   -7.47   -7.16   -6.15   -4.36   -1.76    1.51    5.17    8.85   12.09
+   160.0    0.00   -0.21   -0.83   -1.75   -2.83   -3.95   -5.00   -5.93   -6.72   -7.27   -7.48   -7.17   -6.17   -4.37   -1.77    1.51    5.19    8.89   12.15
+   165.0    0.00   -0.21   -0.83   -1.75   -2.83   -3.95   -5.00   -5.93   -6.72   -7.27   -7.48   -7.18   -6.19   -4.40   -1.81    1.47    5.16    8.89   12.18
+   170.0    0.00   -0.21   -0.83   -1.75   -2.84   -3.95   -5.00   -5.94   -6.72   -7.28   -7.49   -7.19   -6.21   -4.44   -1.86    1.39    5.08    8.83   12.16
+   175.0    0.00   -0.21   -0.83   -1.76   -2.84   -3.96   -5.01   -5.95   -6.74   -7.29   -7.50   -7.20   -6.23   -4.48   -1.94    1.29    4.96    8.71   12.10
+   180.0    0.00   -0.21   -0.83   -1.76   -2.85   -3.97   -5.03   -5.97   -6.76   -7.31   -7.51   -7.21   -6.26   -4.54   -2.04    1.15    4.79    8.55   11.99
+   185.0    0.00   -0.21   -0.83   -1.76   -2.86   -3.98   -5.05   -6.00   -6.78   -7.33   -7.53   -7.23   -6.29   -4.60   -2.14    0.99    4.59    8.34   11.83
+   190.0    0.00   -0.21   -0.84   -1.77   -2.87   -4.00   -5.08   -6.03   -6.82   -7.36   -7.56   -7.26   -6.33   -4.67   -2.26    0.83    4.39    8.12   11.63
+   195.0    0.00   -0.21   -0.84   -1.78   -2.88   -4.02   -5.10   -6.07   -6.85   -7.40   -7.60   -7.30   -6.39   -4.75   -2.37    0.67    4.18    7.88   11.40
+   200.0    0.00   -0.21   -0.84   -1.78   -2.89   -4.04   -5.13   -6.10   -6.90   -7.45   -7.65   -7.36   -6.46   -4.84   -2.49    0.52    3.99    7.66   11.15
+   205.0    0.00   -0.21   -0.85   -1.79   -2.91   -4.06   -5.16   -6.14   -6.95   -7.51   -7.71   -7.43   -6.54   -4.93   -2.59    0.39    3.83    7.45   10.90
+   210.0    0.00   -0.22   -0.85   -1.80   -2.92   -4.09   -5.19   -6.18   -7.00   -7.57   -7.79   -7.52   -6.62   -5.01   -2.68    0.29    3.71    7.27   10.66
+   215.0    0.00   -0.22   -0.86   -1.81   -2.94   -4.11   -5.22   -6.22   -7.05   -7.63   -7.87   -7.60   -6.71   -5.09   -2.75    0.23    3.62    7.13   10.42
+   220.0    0.00   -0.22   -0.86   -1.82   -2.96   -4.13   -5.26   -6.26   -7.10   -7.70   -7.95   -7.69   -6.80   -5.16   -2.79    0.20    3.57    7.02   10.20
+   225.0    0.00   -0.22   -0.87   -1.83   -2.97   -4.16   -5.29   -6.31   -7.16   -7.77   -8.02   -7.77   -6.87   -5.21   -2.81    0.20    3.56    6.94   10.01
+   230.0    0.00   -0.22   -0.88   -1.85   -2.99   -4.18   -5.32   -6.35   -7.21   -7.83   -8.09   -7.84   -6.92   -5.24   -2.80    0.22    3.56    6.88    9.84
+   235.0    0.00   -0.23   -0.88   -1.86   -3.01   -4.21   -5.35   -6.39   -7.25   -7.88   -8.14   -7.89   -6.95   -5.24   -2.78    0.26    3.59    6.84    9.69
+   240.0    0.00   -0.23   -0.89   -1.87   -3.03   -4.23   -5.39   -6.42   -7.30   -7.92   -8.18   -7.91   -6.95   -5.21   -2.73    0.32    3.62    6.81    9.58
+   245.0    0.00   -0.23   -0.90   -1.88   -3.05   -4.26   -5.42   -6.46   -7.33   -7.95   -8.20   -7.91   -6.93   -5.17   -2.67    0.38    3.65    6.79    9.50
+   250.0    0.00   -0.23   -0.90   -1.89   -3.06   -4.28   -5.44   -6.49   -7.35   -7.96   -8.20   -7.89   -6.89   -5.11   -2.61    0.43    3.69    6.79    9.46
+   255.0    0.00   -0.24   -0.91   -1.90   -3.08   -4.30   -5.47   -6.51   -7.36   -7.96   -8.18   -7.85   -6.84   -5.05   -2.54    0.49    3.72    6.81    9.48
+   260.0    0.00   -0.24   -0.91   -1.91   -3.09   -4.32   -5.48   -6.52   -7.36   -7.95   -8.15   -7.80   -6.78   -4.98   -2.48    0.54    3.76    6.85    9.55
+   265.0    0.00   -0.24   -0.92   -1.92   -3.10   -4.33   -5.49   -6.52   -7.35   -7.92   -8.10   -7.75   -6.72   -4.93   -2.43    0.58    3.81    6.93    9.68
+   270.0    0.00   -0.24   -0.92   -1.92   -3.10   -4.33   -5.48   -6.50   -7.33   -7.88   -8.05   -7.69   -6.66   -4.88   -2.39    0.63    3.88    7.05    9.86
+   275.0    0.00   -0.24   -0.92   -1.92   -3.10   -4.32   -5.47   -6.48   -7.29   -7.84   -8.00   -7.64   -6.62   -4.85   -2.36    0.68    3.97    7.21   10.10
+   280.0    0.00   -0.24   -0.92   -1.92   -3.10   -4.31   -5.45   -6.44   -7.24   -7.78   -7.95   -7.60   -6.59   -4.83   -2.33    0.73    4.08    7.40   10.38
+   285.0    0.00   -0.24   -0.92   -1.92   -3.09   -4.29   -5.42   -6.40   -7.19   -7.73   -7.90   -7.57   -6.57   -4.81   -2.31    0.79    4.22    7.62   10.68
+   290.0    0.00   -0.25   -0.92   -1.91   -3.08   -4.27   -5.38   -6.35   -7.13   -7.67   -7.86   -7.54   -6.56   -4.80   -2.28    0.87    4.37    7.86   10.99
+   295.0    0.00   -0.25   -0.92   -1.91   -3.06   -4.24   -5.33   -6.29   -7.07   -7.62   -7.82   -7.52   -6.55   -4.79   -2.24    0.96    4.53    8.10   11.28
+   300.0    0.00   -0.25   -0.92   -1.90   -3.04   -4.20   -5.29   -6.24   -7.02   -7.57   -7.78   -7.50   -6.54   -4.77   -2.20    1.06    4.69    8.32   11.54
+   305.0    0.00   -0.25   -0.91   -1.89   -3.02   -4.17   -5.24   -6.18   -6.96   -7.52   -7.75   -7.47   -6.52   -4.74   -2.13    1.16    4.84    8.51   11.74
+   310.0    0.00   -0.25   -0.91   -1.88   -3.00   -4.13   -5.19   -6.13   -6.91   -7.48   -7.72   -7.45   -6.48   -4.69   -2.06    1.26    4.97    8.66   11.88
+   315.0    0.00   -0.25   -0.91   -1.87   -2.98   -4.10   -5.15   -6.09   -6.87   -7.45   -7.69   -7.42   -6.44   -4.63   -1.98    1.36    5.08    8.75   11.95
+   320.0    0.00   -0.25   -0.91   -1.86   -2.96   -4.07   -5.12   -6.05   -6.84   -7.42   -7.66   -7.38   -6.39   -4.56   -1.89    1.45    5.15    8.79   11.96
+   325.0    0.00   -0.25   -0.90   -1.85   -2.94   -4.05   -5.09   -6.02   -6.82   -7.40   -7.64   -7.35   -6.33   -4.48   -1.80    1.53    5.19    8.78   11.91
+   330.0    0.00   -0.25   -0.90   -1.84   -2.93   -4.03   -5.07   -6.00   -6.80   -7.38   -7.62   -7.31   -6.28   -4.41   -1.73    1.58    5.20    8.74   11.82
+   335.0    0.00   -0.25   -0.90   -1.84   -2.92   -4.01   -5.05   -5.99   -6.79   -7.37   -7.60   -7.28   -6.24   -4.35   -1.67    1.61    5.18    8.66   11.71
+   340.0    0.00   -0.25   -0.90   -1.83   -2.91   -4.01   -5.04   -5.98   -6.78   -7.37   -7.59   -7.27   -6.21   -4.32   -1.64    1.62    5.14    8.58   11.60
+   345.0    0.00   -0.25   -0.90   -1.83   -2.91   -4.00   -5.04   -5.98   -6.78   -7.37   -7.59   -7.26   -6.20   -4.31   -1.64    1.60    5.09    8.49   11.49
+   350.0    0.00   -0.25   -0.90   -1.83   -2.91   -4.00   -5.04   -5.98   -6.78   -7.37   -7.60   -7.27   -6.21   -4.32   -1.67    1.55    5.02    8.40   11.40
+   355.0    0.00   -0.25   -0.90   -1.84   -2.91   -4.01   -5.05   -5.98   -6.79   -7.38   -7.61   -7.30   -6.25   -4.37   -1.72    1.49    4.96    8.33   11.33
+   360.0    0.00   -0.25   -0.90   -1.84   -2.92   -4.02   -5.06   -6.00   -6.80   -7.40   -7.64   -7.33   -6.30   -4.44   -1.81    1.41    4.88    8.26   11.27
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.46      0.24     96.75                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.04   -0.17   -0.37   -0.62   -0.90   -1.17   -1.41   -1.61   -1.79   -1.95   -2.11   -2.20   -2.13   -1.72   -0.80    0.76    2.93    5.46
+     0.0    0.00   -0.02   -0.13   -0.32   -0.58   -0.88   -1.19   -1.46   -1.69   -1.86   -2.01   -2.14   -2.24   -2.19   -1.82   -0.92    0.70    3.02    5.73
+     5.0    0.00   -0.02   -0.13   -0.32   -0.58   -0.88   -1.18   -1.45   -1.68   -1.85   -2.00   -2.13   -2.21   -2.16   -1.79   -0.89    0.72    3.03    5.75
+    10.0    0.00   -0.02   -0.13   -0.32   -0.57   -0.87   -1.17   -1.44   -1.67   -1.84   -1.99   -2.11   -2.19   -2.13   -1.76   -0.87    0.73    3.03    5.74
+    15.0    0.00   -0.02   -0.13   -0.31   -0.57   -0.86   -1.16   -1.43   -1.65   -1.83   -1.97   -2.10   -2.17   -2.11   -1.73   -0.84    0.75    3.03    5.72
+    20.0    0.00   -0.02   -0.13   -0.31   -0.56   -0.85   -1.14   -1.41   -1.63   -1.81   -1.96   -2.08   -2.15   -2.08   -1.70   -0.80    0.77    3.03    5.69
+    25.0    0.00   -0.02   -0.13   -0.31   -0.56   -0.84   -1.13   -1.39   -1.61   -1.79   -1.94   -2.07   -2.14   -2.05   -1.66   -0.75    0.81    3.04    5.67
+    30.0    0.00   -0.02   -0.13   -0.31   -0.56   -0.83   -1.11   -1.37   -1.59   -1.77   -1.92   -2.05   -2.12   -2.03   -1.62   -0.70    0.87    3.07    5.65
+    35.0    0.00   -0.03   -0.13   -0.31   -0.55   -0.82   -1.10   -1.35   -1.56   -1.74   -1.90   -2.03   -2.10   -2.00   -1.58   -0.64    0.93    3.12    5.65
+    40.0    0.00   -0.03   -0.14   -0.32   -0.55   -0.82   -1.08   -1.32   -1.53   -1.71   -1.87   -2.01   -2.08   -1.97   -1.53   -0.58    1.01    3.18    5.66
+    45.0    0.00   -0.03   -0.14   -0.32   -0.56   -0.82   -1.07   -1.30   -1.50   -1.67   -1.84   -1.98   -2.06   -1.95   -1.49   -0.51    1.09    3.26    5.70
+    50.0    0.00   -0.03   -0.14   -0.33   -0.56   -0.82   -1.07   -1.29   -1.47   -1.64   -1.80   -1.95   -2.03   -1.92   -1.45   -0.45    1.17    3.33    5.74
+    55.0    0.00   -0.03   -0.15   -0.33   -0.57   -0.82   -1.06   -1.27   -1.45   -1.61   -1.77   -1.93   -2.01   -1.90   -1.42   -0.40    1.23    3.40    5.80
+    60.0    0.00   -0.04   -0.15   -0.34   -0.57   -0.83   -1.07   -1.27   -1.44   -1.59   -1.75   -1.90   -1.99   -1.88   -1.40   -0.37    1.28    3.45    5.84
+    65.0    0.00   -0.04   -0.16   -0.35   -0.59   -0.84   -1.07   -1.27   -1.43   -1.58   -1.73   -1.89   -1.98   -1.87   -1.39   -0.35    1.30    3.48    5.88
+    70.0    0.00   -0.04   -0.16   -0.36   -0.60   -0.85   -1.09   -1.28   -1.44   -1.57   -1.72   -1.88   -1.97   -1.87   -1.39   -0.36    1.30    3.48    5.89
+    75.0    0.00   -0.04   -0.17   -0.37   -0.61   -0.87   -1.11   -1.30   -1.45   -1.58   -1.73   -1.88   -1.98   -1.88   -1.41   -0.39    1.26    3.44    5.87
+    80.0    0.00   -0.05   -0.18   -0.38   -0.63   -0.89   -1.13   -1.32   -1.47   -1.61   -1.75   -1.90   -1.99   -1.90   -1.44   -0.44    1.19    3.37    5.82
+    85.0    0.00   -0.05   -0.18   -0.39   -0.64   -0.91   -1.15   -1.35   -1.51   -1.64   -1.78   -1.93   -2.03   -1.94   -1.49   -0.51    1.10    3.26    5.73
+    90.0    0.00   -0.05   -0.19   -0.40   -0.66   -0.93   -1.18   -1.39   -1.55   -1.69   -1.83   -1.97   -2.07   -1.99   -1.56   -0.60    0.98    3.13    5.61
+    95.0    0.00   -0.06   -0.20   -0.41   -0.67   -0.95   -1.21   -1.42   -1.59   -1.74   -1.88   -2.03   -2.13   -2.05   -1.63   -0.70    0.86    2.98    5.47
+   100.0    0.00   -0.06   -0.20   -0.42   -0.68   -0.97   -1.23   -1.46   -1.64   -1.79   -1.94   -2.10   -2.20   -2.13   -1.72   -0.80    0.73    2.84    5.32
+   105.0    0.00   -0.06   -0.21   -0.43   -0.70   -0.99   -1.26   -1.49   -1.68   -1.85   -2.01   -2.17   -2.27   -2.20   -1.80   -0.89    0.62    2.70    5.17
+   110.0    0.00   -0.06   -0.21   -0.43   -0.71   -1.00   -1.28   -1.52   -1.72   -1.90   -2.07   -2.23   -2.34   -2.28   -1.88   -0.98    0.52    2.59    5.04
+   115.0    0.00   -0.07   -0.22   -0.44   -0.72   -1.02   -1.30   -1.55   -1.76   -1.95   -2.13   -2.30   -2.41   -2.34   -1.95   -1.05    0.45    2.51    4.94
+   120.0    0.00   -0.07   -0.22   -0.45   -0.73   -1.03   -1.32   -1.57   -1.79   -1.98   -2.17   -2.35   -2.46   -2.40   -2.00   -1.10    0.40    2.47    4.88
+   125.0    0.00   -0.07   -0.23   -0.45   -0.73   -1.04   -1.33   -1.59   -1.81   -2.01   -2.21   -2.39   -2.51   -2.44   -2.03   -1.12    0.39    2.46    4.87
+   130.0    0.00   -0.07   -0.23   -0.46   -0.74   -1.04   -1.33   -1.60   -1.82   -2.03   -2.23   -2.41   -2.53   -2.46   -2.05   -1.12    0.42    2.50    4.91
+   135.0    0.00   -0.07   -0.23   -0.46   -0.75   -1.05   -1.34   -1.60   -1.83   -2.03   -2.24   -2.42   -2.54   -2.47   -2.04   -1.09    0.46    2.57    4.98
+   140.0    0.00   -0.07   -0.23   -0.47   -0.75   -1.05   -1.34   -1.60   -1.83   -2.03   -2.23   -2.42   -2.53   -2.45   -2.01   -1.05    0.53    2.66    5.10
+   145.0    0.00   -0.07   -0.24   -0.47   -0.75   -1.05   -1.34   -1.60   -1.82   -2.03   -2.22   -2.40   -2.51   -2.42   -1.97   -0.99    0.61    2.77    5.23
+   150.0    0.00   -0.08   -0.24   -0.47   -0.75   -1.05   -1.34   -1.60   -1.82   -2.01   -2.20   -2.37   -2.47   -2.38   -1.92   -0.93    0.69    2.88    5.38
+   155.0    0.00   -0.08   -0.24   -0.47   -0.75   -1.05   -1.34   -1.59   -1.81   -2.00   -2.18   -2.34   -2.43   -2.33   -1.86   -0.87    0.77    2.99    5.52
+   160.0    0.00   -0.08   -0.24   -0.47   -0.74   -1.04   -1.33   -1.58   -1.80   -1.99   -2.16   -2.31   -2.39   -2.28   -1.81   -0.81    0.84    3.07    5.64
+   165.0    0.00   -0.07   -0.23   -0.46   -0.74   -1.04   -1.32   -1.57   -1.79   -1.97   -2.14   -2.28   -2.35   -2.23   -1.76   -0.75    0.89    3.14    5.73
+   170.0    0.00   -0.07   -0.23   -0.46   -0.73   -1.03   -1.31   -1.56   -1.78   -1.96   -2.12   -2.26   -2.32   -2.19   -1.72   -0.71    0.93    3.18    5.80
+   175.0    0.00   -0.07   -0.23   -0.45   -0.72   -1.02   -1.30   -1.55   -1.76   -1.95   -2.11   -2.24   -2.29   -2.16   -1.68   -0.69    0.95    3.20    5.83
+   180.0    0.00   -0.07   -0.23   -0.45   -0.72   -1.00   -1.28   -1.54   -1.75   -1.93   -2.09   -2.22   -2.27   -2.13   -1.66   -0.67    0.95    3.19    5.83
+   185.0    0.00   -0.07   -0.22   -0.44   -0.70   -0.99   -1.27   -1.52   -1.74   -1.92   -2.08   -2.21   -2.25   -2.11   -1.64   -0.66    0.95    3.17    5.80
+   190.0    0.00   -0.07   -0.22   -0.43   -0.69   -0.98   -1.25   -1.50   -1.72   -1.91   -2.07   -2.19   -2.23   -2.10   -1.63   -0.66    0.93    3.14    5.76
+   195.0    0.00   -0.07   -0.21   -0.42   -0.68   -0.96   -1.23   -1.48   -1.70   -1.89   -2.05   -2.17   -2.21   -2.08   -1.61   -0.66    0.92    3.11    5.70
+   200.0    0.00   -0.06   -0.21   -0.41   -0.67   -0.94   -1.21   -1.46   -1.68   -1.86   -2.02   -2.15   -2.19   -2.06   -1.60   -0.65    0.91    3.09    5.64
+   205.0    0.00   -0.06   -0.20   -0.41   -0.65   -0.93   -1.19   -1.44   -1.65   -1.83   -1.99   -2.12   -2.16   -2.03   -1.58   -0.64    0.91    3.07    5.59
+   210.0    0.00   -0.06   -0.20   -0.40   -0.64   -0.91   -1.17   -1.42   -1.62   -1.80   -1.95   -2.08   -2.13   -2.00   -1.56   -0.62    0.92    3.06    5.55
+   215.0    0.00   -0.06   -0.19   -0.39   -0.63   -0.89   -1.15   -1.39   -1.59   -1.76   -1.91   -2.03   -2.08   -1.97   -1.53   -0.60    0.94    3.07    5.53
+   220.0    0.00   -0.05   -0.18   -0.38   -0.62   -0.88   -1.14   -1.37   -1.56   -1.72   -1.87   -1.98   -2.04   -1.93   -1.50   -0.57    0.97    3.10    5.53
+   225.0    0.00   -0.05   -0.18   -0.37   -0.60   -0.86   -1.12   -1.34   -1.53   -1.68   -1.82   -1.94   -1.99   -1.89   -1.47   -0.54    1.01    3.13    5.53
+   230.0    0.00   -0.05   -0.17   -0.36   -0.59   -0.85   -1.10   -1.32   -1.50   -1.64   -1.77   -1.89   -1.95   -1.86   -1.44   -0.51    1.04    3.17    5.55
+   235.0    0.00   -0.05   -0.17   -0.35   -0.58   -0.84   -1.08   -1.30   -1.47   -1.61   -1.73   -1.85   -1.92   -1.83   -1.42   -0.49    1.07    3.20    5.57
+   240.0    0.00   -0.04   -0.16   -0.34   -0.57   -0.82   -1.07   -1.28   -1.44   -1.58   -1.70   -1.82   -1.90   -1.82   -1.41   -0.48    1.09    3.22    5.59
+   245.0    0.00   -0.04   -0.16   -0.34   -0.56   -0.81   -1.05   -1.26   -1.42   -1.56   -1.68   -1.81   -1.90   -1.82   -1.42   -0.48    1.09    3.23    5.60
+   250.0    0.00   -0.04   -0.15   -0.33   -0.55   -0.80   -1.04   -1.25   -1.41   -1.55   -1.68   -1.81   -1.91   -1.84   -1.44   -0.50    1.07    3.22    5.60
+   255.0    0.00   -0.04   -0.15   -0.32   -0.55   -0.79   -1.03   -1.24   -1.40   -1.55   -1.68   -1.83   -1.93   -1.88   -1.48   -0.55    1.03    3.18    5.59
+   260.0    0.00   -0.03   -0.14   -0.32   -0.54   -0.79   -1.03   -1.24   -1.41   -1.55   -1.71   -1.86   -1.97   -1.93   -1.53   -0.61    0.96    3.11    5.55
+   265.0    0.00   -0.03   -0.14   -0.31   -0.54   -0.78   -1.03   -1.24   -1.42   -1.57   -1.74   -1.90   -2.03   -1.98   -1.60   -0.68    0.88    3.02    5.49
+   270.0    0.00   -0.03   -0.14   -0.31   -0.53   -0.78   -1.03   -1.25   -1.43   -1.60   -1.78   -1.96   -2.09   -2.05   -1.67   -0.77    0.77    2.92    5.42
+   275.0    0.00   -0.03   -0.13   -0.31   -0.53   -0.79   -1.03   -1.26   -1.46   -1.64   -1.83   -2.01   -2.15   -2.12   -1.75   -0.86    0.66    2.80    5.34
+   280.0    0.00   -0.03   -0.13   -0.31   -0.54   -0.79   -1.04   -1.28   -1.49   -1.68   -1.88   -2.07   -2.21   -2.19   -1.82   -0.95    0.55    2.67    5.24
+   285.0    0.00   -0.02   -0.13   -0.31   -0.54   -0.80   -1.06   -1.30   -1.52   -1.72   -1.93   -2.13   -2.27   -2.25   -1.89   -1.04    0.44    2.55    5.15
+   290.0    0.00   -0.02   -0.13   -0.31   -0.54   -0.81   -1.08   -1.33   -1.55   -1.76   -1.97   -2.17   -2.32   -2.30   -1.95   -1.11    0.35    2.45    5.06
+   295.0    0.00   -0.02   -0.13   -0.31   -0.55   -0.82   -1.09   -1.35   -1.59   -1.80   -2.02   -2.22   -2.36   -2.34   -2.00   -1.17    0.28    2.37    4.99
+   300.0    0.00   -0.02   -0.13   -0.31   -0.55   -0.83   -1.11   -1.38   -1.62   -1.84   -2.05   -2.25   -2.39   -2.37   -2.03   -1.21    0.23    2.31    4.94
+   305.0    0.00   -0.02   -0.13   -0.31   -0.56   -0.84   -1.13   -1.40   -1.65   -1.87   -2.08   -2.27   -2.41   -2.39   -2.05   -1.23    0.20    2.29    4.92
+   310.0    0.00   -0.02   -0.13   -0.32   -0.57   -0.86   -1.15   -1.43   -1.67   -1.89   -2.09   -2.28   -2.42   -2.39   -2.06   -1.23    0.21    2.30    4.92
+   315.0    0.00   -0.02   -0.13   -0.32   -0.58   -0.87   -1.17   -1.45   -1.69   -1.90   -2.10   -2.29   -2.42   -2.39   -2.05   -1.22    0.24    2.35    4.96
+   320.0    0.00   -0.02   -0.13   -0.32   -0.58   -0.88   -1.18   -1.46   -1.70   -1.91   -2.11   -2.28   -2.41   -2.38   -2.04   -1.19    0.29    2.42    5.02
+   325.0    0.00   -0.02   -0.13   -0.32   -0.59   -0.89   -1.19   -1.47   -1.71   -1.92   -2.10   -2.27   -2.40   -2.37   -2.02   -1.16    0.35    2.51    5.10
+   330.0    0.00   -0.02   -0.13   -0.32   -0.59   -0.89   -1.20   -1.48   -1.72   -1.91   -2.09   -2.26   -2.38   -2.35   -1.99   -1.12    0.42    2.61    5.21
+   335.0    0.00   -0.02   -0.13   -0.32   -0.59   -0.90   -1.21   -1.48   -1.72   -1.91   -2.08   -2.24   -2.36   -2.33   -1.96   -1.07    0.49    2.71    5.32
+   340.0    0.00   -0.02   -0.13   -0.32   -0.59   -0.90   -1.21   -1.48   -1.71   -1.90   -2.06   -2.22   -2.34   -2.30   -1.94   -1.03    0.55    2.80    5.43
+   345.0    0.00   -0.02   -0.13   -0.32   -0.59   -0.90   -1.21   -1.48   -1.71   -1.89   -2.05   -2.20   -2.31   -2.27   -1.91   -1.00    0.61    2.89    5.54
+   350.0    0.00   -0.02   -0.13   -0.32   -0.59   -0.90   -1.20   -1.48   -1.70   -1.88   -2.03   -2.18   -2.29   -2.25   -1.88   -0.97    0.65    2.95    5.62
+   355.0    0.00   -0.02   -0.13   -0.32   -0.59   -0.89   -1.20   -1.47   -1.69   -1.87   -2.02   -2.16   -2.26   -2.22   -1.85   -0.94    0.68    2.99    5.69
+   360.0    0.00   -0.02   -0.13   -0.32   -0.58   -0.88   -1.19   -1.46   -1.69   -1.86   -2.01   -2.14   -2.24   -2.19   -1.82   -0.92    0.70    3.02    5.73
+   G02                                                      END OF FREQUENCY    
+   R01                                                      START OF FREQUENCY  
+     -0.34     -0.14     63.68                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.25   -0.96   -2.03   -3.30   -4.64   -5.89   -6.95   -7.78   -8.31   -8.47   -8.12   -7.15   -5.45   -2.95    0.24    3.89    7.57   10.72
+     0.0    0.00   -0.32   -1.08   -2.16   -3.41   -4.68   -5.87   -6.89   -7.70   -8.25   -8.42   -8.05   -7.02   -5.17   -2.54    0.76    4.39    7.94   10.99
+     5.0    0.00   -0.32   -1.08   -2.17   -3.42   -4.71   -5.90   -6.92   -7.72   -8.27   -8.44   -8.08   -7.06   -5.24   -2.61    0.67    4.31    7.88   10.94
+    10.0    0.00   -0.32   -1.08   -2.18   -3.45   -4.74   -5.94   -6.96   -7.76   -8.29   -8.46   -8.13   -7.12   -5.33   -2.71    0.56    4.22    7.80   10.88
+    15.0    0.00   -0.32   -1.10   -2.19   -3.48   -4.78   -5.98   -7.00   -7.79   -8.32   -8.49   -8.18   -7.19   -5.42   -2.83    0.45    4.10    7.71   10.80
+    20.0    0.00   -0.34   -1.10   -2.21   -3.50   -4.82   -6.03   -7.05   -7.84   -8.37   -8.54   -8.23   -7.27   -5.53   -2.96    0.30    3.97    7.59   10.69
+    25.0    0.00   -0.34   -1.10   -2.22   -3.53   -4.85   -6.08   -7.12   -7.90   -8.42   -8.59   -8.29   -7.36   -5.64   -3.09    0.16    3.83    7.45   10.54
+    30.0    0.00   -0.34   -1.11   -2.23   -3.55   -4.90   -6.13   -7.18   -7.96   -8.49   -8.65   -8.36   -7.44   -5.75   -3.22    0.01    3.67    7.28   10.35
+    35.0    0.00   -0.34   -1.12   -2.25   -3.57   -4.94   -6.18   -7.25   -8.05   -8.56   -8.73   -8.43   -7.53   -5.86   -3.35   -0.13    3.51    7.10   10.14
+    40.0    0.00   -0.34   -1.12   -2.26   -3.60   -4.97   -6.23   -7.31   -8.11   -8.63   -8.80   -8.51   -7.60   -5.95   -3.47   -0.27    3.34    6.91    9.91
+    45.0    0.00   -0.34   -1.12   -2.27   -3.62   -5.00   -6.29   -7.37   -8.19   -8.72   -8.89   -8.59   -7.70   -6.04   -3.58   -0.40    3.18    6.71    9.68
+    50.0    0.00   -0.34   -1.12   -2.27   -3.62   -5.02   -6.33   -7.43   -8.27   -8.79   -8.97   -8.68   -7.77   -6.12   -3.68   -0.53    3.02    6.54    9.49
+    55.0    0.00   -0.34   -1.11   -2.27   -3.63   -5.04   -6.36   -7.48   -8.33   -8.89   -9.06   -8.76   -7.85   -6.20   -3.76   -0.63    2.89    6.37    9.32
+    60.0    0.00   -0.33   -1.11   -2.27   -3.63   -5.05   -6.38   -7.52   -8.38   -8.96   -9.13   -8.84   -7.93   -6.28   -3.84   -0.73    2.78    6.26    9.22
+    65.0    0.00   -0.33   -1.11   -2.26   -3.63   -5.05   -6.38   -7.54   -8.43   -9.01   -9.21   -8.92   -8.00   -6.35   -3.92   -0.81    2.69    6.18    9.17
+    70.0    0.00   -0.31   -1.11   -2.26   -3.62   -5.05   -6.39   -7.55   -8.45   -9.05   -9.26   -8.97   -8.06   -6.40   -3.97   -0.88    2.63    6.13    9.18
+    75.0    0.00   -0.31   -1.10   -2.25   -3.61   -5.03   -6.37   -7.55   -8.46   -9.07   -9.29   -9.01   -8.11   -6.45   -4.03   -0.92    2.60    6.14    9.28
+    80.0    0.00   -0.31   -1.09   -2.23   -3.60   -5.01   -6.36   -7.53   -8.45   -9.08   -9.30   -9.03   -8.13   -6.48   -4.06   -0.94    2.60    6.19    9.41
+    85.0    0.00   -0.31   -1.08   -2.22   -3.58   -4.98   -6.32   -7.50   -8.43   -9.06   -9.29   -9.02   -8.12   -6.49   -4.06   -0.94    2.62    6.27    9.57
+    90.0    0.00   -0.29   -1.08   -2.21   -3.55   -4.96   -6.30   -7.46   -8.39   -9.01   -9.26   -8.98   -8.10   -6.47   -4.04   -0.92    2.69    6.39    9.75
+    95.0    0.00   -0.29   -1.06   -2.19   -3.53   -4.93   -6.25   -7.41   -8.34   -8.95   -9.19   -8.92   -8.04   -6.42   -4.00   -0.87    2.76    6.51    9.94
+   100.0    0.00   -0.29   -1.05   -2.17   -3.51   -4.89   -6.21   -7.36   -8.27   -8.88   -9.09   -8.83   -7.95   -6.34   -3.92   -0.79    2.85    6.65   10.13
+   105.0    0.00   -0.28   -1.04   -2.15   -3.48   -4.86   -6.17   -7.30   -8.20   -8.78   -8.99   -8.73   -7.84   -6.24   -3.82   -0.67    2.98    6.80   10.31
+   110.0    0.00   -0.27   -1.02   -2.13   -3.46   -4.82   -6.12   -7.24   -8.11   -8.68   -8.88   -8.59   -7.71   -6.10   -3.69   -0.55    3.13    6.95   10.46
+   115.0    0.00   -0.26   -1.00   -2.12   -3.43   -4.79   -6.08   -7.18   -8.03   -8.58   -8.76   -8.46   -7.57   -5.95   -3.54   -0.39    3.29    7.13   10.62
+   120.0    0.00   -0.26   -0.99   -2.08   -3.40   -4.75   -6.02   -7.11   -7.95   -8.48   -8.65   -8.33   -7.42   -5.78   -3.38   -0.21    3.48    7.32   10.77
+   125.0    0.00   -0.25   -0.97   -2.06   -3.36   -4.71   -5.97   -7.05   -7.87   -8.38   -8.52   -8.20   -7.28   -5.63   -3.19   -0.02    3.70    7.51   10.94
+   130.0    0.00   -0.24   -0.96   -2.04   -3.33   -4.66   -5.92   -6.98   -7.79   -8.28   -8.42   -8.07   -7.13   -5.47   -3.02    0.19    3.90    7.74   11.11
+   135.0    0.00   -0.23   -0.94   -2.01   -3.28   -4.62   -5.85   -6.91   -7.70   -8.19   -8.32   -7.97   -7.01   -5.32   -2.84    0.39    4.13    7.97   11.32
+   140.0    0.00   -0.22   -0.93   -1.98   -3.24   -4.56   -5.79   -6.83   -7.62   -8.11   -8.22   -7.86   -6.89   -5.19   -2.68    0.60    4.36    8.21   11.53
+   145.0    0.00   -0.22   -0.90   -1.95   -3.20   -4.51   -5.72   -6.76   -7.54   -8.02   -8.13   -7.77   -6.79   -5.06   -2.52    0.77    4.57    8.44   11.76
+   150.0    0.00   -0.21   -0.88   -1.92   -3.16   -4.46   -5.66   -6.67   -7.46   -7.94   -8.05   -7.68   -6.70   -4.95   -2.39    0.93    4.76    8.65   11.99
+   155.0    0.00   -0.20   -0.87   -1.89   -3.13   -4.40   -5.60   -6.61   -7.38   -7.86   -7.97   -7.61   -6.61   -4.86   -2.28    1.06    4.91    8.83   12.21
+   160.0    0.00   -0.20   -0.85   -1.87   -3.07   -4.35   -5.53   -6.54   -7.32   -7.79   -7.91   -7.53   -6.53   -4.77   -2.20    1.16    5.02    8.96   12.38
+   165.0    0.00   -0.19   -0.84   -1.84   -3.04   -4.30   -5.48   -6.47   -7.25   -7.72   -7.83   -7.46   -6.47   -4.71   -2.14    1.20    5.07    9.06   12.52
+   170.0    0.00   -0.19   -0.82   -1.81   -3.01   -4.26   -5.43   -6.42   -7.19   -7.66   -7.77   -7.39   -6.39   -4.65   -2.09    1.22    5.08    9.07   12.60
+   175.0    0.00   -0.18   -0.81   -1.79   -2.98   -4.22   -5.38   -6.38   -7.14   -7.61   -7.70   -7.33   -6.33   -4.61   -2.09    1.20    5.05    9.04   12.61
+   180.0    0.00   -0.17   -0.79   -1.77   -2.95   -4.18   -5.35   -6.34   -7.11   -7.57   -7.65   -7.26   -6.28   -4.58   -2.10    1.15    4.95    8.94   12.56
+   185.0    0.00   -0.17   -0.78   -1.75   -2.93   -4.16   -5.33   -6.32   -7.08   -7.53   -7.62   -7.22   -6.24   -4.57   -2.12    1.06    4.82    8.80   12.45
+   190.0    0.00   -0.16   -0.78   -1.74   -2.91   -4.15   -5.32   -6.32   -7.08   -7.52   -7.59   -7.19   -6.21   -4.57   -2.17    0.97    4.69    8.63   12.27
+   195.0    0.00   -0.16   -0.77   -1.73   -2.90   -4.14   -5.31   -6.33   -7.07   -7.53   -7.59   -7.18   -6.22   -4.59   -2.22    0.87    4.53    8.43   12.05
+   200.0    0.00   -0.16   -0.75   -1.72   -2.89   -4.14   -5.32   -6.33   -7.10   -7.55   -7.61   -7.20   -6.25   -4.64   -2.30    0.76    4.38    8.24   11.79
+   205.0    0.00   -0.15   -0.76   -1.72   -2.90   -4.15   -5.34   -6.36   -7.14   -7.60   -7.65   -7.25   -6.31   -4.71   -2.38    0.66    4.24    8.06   11.53
+   210.0    0.00   -0.16   -0.75   -1.71   -2.90   -4.16   -5.36   -6.40   -7.18   -7.64   -7.72   -7.33   -6.38   -4.78   -2.46    0.57    4.14    7.88   11.26
+   215.0    0.00   -0.16   -0.76   -1.72   -2.92   -4.18   -5.39   -6.44   -7.24   -7.72   -7.81   -7.41   -6.47   -4.86   -2.54    0.50    4.03    7.71   10.98
+   220.0    0.00   -0.16   -0.76   -1.73   -2.94   -4.20   -5.43   -6.48   -7.30   -7.80   -7.90   -7.52   -6.58   -4.96   -2.61    0.43    3.96    7.58   10.72
+   225.0    0.00   -0.16   -0.77   -1.74   -2.95   -4.23   -5.47   -6.55   -7.38   -7.89   -8.00   -7.63   -6.69   -5.05   -2.67    0.39    3.91    7.46   10.47
+   230.0    0.00   -0.16   -0.78   -1.76   -2.98   -4.27   -5.51   -6.61   -7.45   -7.98   -8.11   -7.75   -6.79   -5.14   -2.73    0.35    3.85    7.35   10.23
+   235.0    0.00   -0.17   -0.79   -1.79   -3.01   -4.32   -5.56   -6.67   -7.53   -8.07   -8.21   -7.87   -6.90   -5.22   -2.78    0.32    3.81    7.23   10.02
+   240.0    0.00   -0.18   -0.80   -1.81   -3.04   -4.35   -5.62   -6.73   -7.61   -8.15   -8.31   -7.96   -6.98   -5.26   -2.80    0.31    3.77    7.13    9.82
+   245.0    0.00   -0.18   -0.83   -1.83   -3.08   -4.40   -5.68   -6.80   -7.68   -8.24   -8.40   -8.04   -7.05   -5.32   -2.83    0.28    3.71    7.02    9.65
+   250.0    0.00   -0.18   -0.84   -1.86   -3.11   -4.45   -5.73   -6.86   -7.74   -8.31   -8.47   -8.10   -7.09   -5.34   -2.87    0.25    3.67    6.93    9.51
+   255.0    0.00   -0.20   -0.86   -1.89   -3.15   -4.49   -5.79   -6.92   -7.81   -8.36   -8.52   -8.14   -7.13   -5.37   -2.88    0.21    3.60    6.84    9.43
+   260.0    0.00   -0.20   -0.87   -1.91   -3.19   -4.55   -5.84   -6.98   -7.86   -8.42   -8.56   -8.17   -7.15   -5.38   -2.91    0.18    3.55    6.78    9.39
+   265.0    0.00   -0.21   -0.89   -1.94   -3.23   -4.60   -5.89   -7.03   -7.90   -8.45   -8.58   -8.19   -7.17   -5.41   -2.93    0.12    3.49    6.74    9.41
+   270.0    0.00   -0.21   -0.91   -1.96   -3.26   -4.64   -5.93   -7.05   -7.94   -8.46   -8.58   -8.19   -7.17   -5.42   -2.96    0.09    3.45    6.75    9.49
+   275.0    0.00   -0.22   -0.92   -1.99   -3.29   -4.66   -5.97   -7.09   -7.95   -8.48   -8.58   -8.19   -7.18   -5.46   -3.01    0.05    3.45    6.80    9.64
+   280.0    0.00   -0.22   -0.93   -2.02   -3.32   -4.69   -5.99   -7.10   -7.94   -8.47   -8.58   -8.20   -7.20   -5.49   -3.04    0.02    3.45    6.89    9.84
+   285.0    0.00   -0.23   -0.95   -2.04   -3.35   -4.72   -6.00   -7.10   -7.94   -8.45   -8.57   -8.20   -7.21   -5.51   -3.09   -0.79    3.51    7.02   10.07
+   290.0    0.00   -0.25   -0.96   -2.05   -3.37   -4.73   -6.01   -7.09   -7.92   -8.44   -8.55   -8.19   -7.23   -5.54   -3.11    0.01    3.58    7.19   10.34
+   295.0    0.00   -0.25   -0.97   -2.07   -3.38   -4.74   -6.00   -7.08   -7.89   -8.41   -8.53   -8.19   -7.24   -5.57   -3.12    0.05    3.68    7.39   10.60
+   300.0    0.00   -0.26   -0.99   -2.08   -3.38   -4.72   -5.99   -7.05   -7.87   -8.38   -8.51   -8.19   -7.26   -5.58   -3.11    0.10    3.81    7.58   10.86
+   305.0    0.00   -0.27   -1.00   -2.09   -3.38   -4.72   -5.96   -7.01   -7.82   -8.34   -8.49   -8.18   -7.26   -5.58   -3.09    0.17    3.94    7.77   11.07
+   310.0    0.00   -0.27   -1.01   -2.09   -3.38   -4.70   -5.93   -6.98   -7.78   -8.31   -8.47   -8.17   -7.25   -5.56   -3.04    0.26    4.07    7.94   11.24
+   315.0    0.00   -0.28   -1.02   -2.10   -3.38   -4.68   -5.90   -6.95   -7.75   -8.28   -8.46   -8.15   -7.23   -5.52   -2.97    0.36    4.21    8.07   11.34
+   320.0    0.00   -0.28   -1.03   -2.10   -3.37   -4.67   -5.87   -6.91   -7.72   -8.26   -8.44   -8.13   -7.20   -5.46   -2.88    0.47    4.31    8.15   11.41
+   325.0    0.00   -0.29   -1.03   -2.11   -3.37   -4.66   -5.86   -6.88   -7.70   -8.24   -8.43   -8.12   -7.15   -5.39   -2.78    0.58    4.40    8.21   11.40
+   330.0    0.00   -0.29   -1.04   -2.11   -3.37   -4.65   -5.84   -6.86   -7.68   -8.22   -8.41   -8.09   -7.10   -5.31   -2.69    0.68    4.48    8.23   11.36
+   335.0    0.00   -0.30   -1.05   -2.12   -3.37   -4.63   -5.82   -6.85   -7.66   -8.21   -8.40   -8.06   -7.06   -5.24   -2.59    0.76    4.52    8.20   11.30
+   340.0    0.00   -0.30   -1.05   -2.12   -3.37   -4.64   -5.82   -6.84   -7.66   -8.21   -8.39   -8.05   -7.03   -5.19   -2.52    0.82    4.53    8.18   11.23
+   345.0    0.00   -0.31   -1.06   -2.13   -3.37   -4.64   -5.82   -6.84   -7.66   -8.21   -8.39   -8.04   -7.00   -5.15   -2.48    0.86    4.53    8.13   11.15
+   350.0    0.00   -0.31   -1.07   -2.14   -3.38   -4.64   -5.83   -6.85   -7.66   -8.22   -8.39   -8.04   -6.99   -5.13   -2.47    0.85    4.50    8.06   11.09
+   355.0    0.00   -0.31   -1.07   -2.15   -3.39   -4.66   -5.85   -6.86   -7.68   -8.23   -8.40   -8.04   -6.99   -5.14   -2.47    0.82    4.46    8.01   11.04
+   360.0    0.00   -0.32   -1.08   -2.16   -3.41   -4.68   -5.87   -6.89   -7.70   -8.25   -8.42   -8.05   -7.02   -5.17   -2.54    0.76    4.39    7.94   10.99
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+      0.46      0.24     96.75                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.03   -0.16   -0.35   -0.60   -0.89   -1.18   -1.46   -1.70   -1.92   -2.11   -2.31   -2.44   -2.44   -2.11   -1.27    0.24    2.46    5.16
+     0.0    0.00   -0.06   -0.19   -0.39   -0.65   -0.97   -1.31   -1.62   -1.90   -2.13   -2.34   -2.52   -2.68   -2.70   -2.42   -1.60   -0.04    2.28    5.07
+     5.0    0.00   -0.06   -0.20   -0.40   -0.67   -0.99   -1.32   -1.63   -1.92   -2.14   -2.33   -2.51   -2.63   -2.64   -2.35   -1.53    0.03    2.35    5.15
+    10.0    0.00   -0.06   -0.20   -0.41   -0.67   -1.00   -1.33   -1.65   -1.92   -2.13   -2.32   -2.47   -2.59   -2.59   -2.30   -1.48    0.07    2.40    5.20
+    15.0    0.00   -0.06   -0.20   -0.41   -0.69   -1.00   -1.34   -1.65   -1.91   -2.13   -2.30   -2.45   -2.56   -2.56   -2.25   -1.44    0.11    2.42    5.22
+    20.0    0.00   -0.06   -0.21   -0.41   -0.69   -1.00   -1.33   -1.65   -1.90   -2.11   -2.29   -2.43   -2.54   -2.54   -2.24   -1.41    0.12    2.42    5.20
+    25.0    0.00   -0.06   -0.21   -0.42   -0.69   -1.00   -1.33   -1.63   -1.89   -2.10   -2.27   -2.43   -2.54   -2.53   -2.23   -1.40    0.13    2.40    5.18
+    30.0    0.00   -0.06   -0.21   -0.42   -0.70   -1.00   -1.31   -1.61   -1.87   -2.08   -2.26   -2.43   -2.55   -2.55   -2.24   -1.41    0.12    2.37    5.13
+    35.0    0.00   -0.08   -0.22   -0.42   -0.69   -0.99   -1.30   -1.59   -1.84   -2.06   -2.25   -2.43   -2.57   -2.56   -2.26   -1.42    0.10    2.35    5.08
+    40.0    0.00   -0.07   -0.23   -0.43   -0.69   -0.98   -1.28   -1.56   -1.81   -2.03   -2.25   -2.44   -2.60   -2.59   -2.27   -1.44    0.08    2.30    5.02
+    45.0    0.00   -0.07   -0.22   -0.43   -0.69   -0.98   -1.26   -1.54   -1.79   -2.01   -2.24   -2.45   -2.62   -2.62   -2.30   -1.45    0.07    2.28    4.98
+    50.0    0.00   -0.07   -0.22   -0.44   -0.69   -0.97   -1.26   -1.53   -1.76   -2.00   -2.23   -2.46   -2.63   -2.64   -2.32   -1.47    0.05    2.24    4.92
+    55.0    0.00   -0.07   -0.23   -0.43   -0.70   -0.97   -1.24   -1.51   -1.75   -1.99   -2.23   -2.48   -2.66   -2.67   -2.34   -1.48    0.02    2.21    4.89
+    60.0    0.00   -0.08   -0.22   -0.44   -0.69   -0.98   -1.25   -1.51   -1.75   -1.99   -2.24   -2.48   -2.67   -2.68   -2.35   -1.50    0.01    2.17    4.85
+    65.0    0.00   -0.08   -0.23   -0.45   -0.71   -0.98   -1.25   -1.51   -1.75   -2.00   -2.25   -2.50   -2.69   -2.69   -2.36   -1.51   -0.02    2.14    4.83
+    70.0    0.00   -0.08   -0.23   -0.45   -0.71   -0.98   -1.27   -1.52   -1.78   -2.01   -2.26   -2.51   -2.69   -2.69   -2.36   -1.52   -0.03    2.11    4.82
+    75.0    0.00   -0.08   -0.24   -0.45   -0.71   -1.00   -1.29   -1.55   -1.80   -2.03   -2.28   -2.52   -2.70   -2.70   -2.37   -1.53   -0.06    2.08    4.80
+    80.0    0.00   -0.09   -0.24   -0.45   -0.73   -1.02   -1.31   -1.58   -1.82   -2.07   -2.31   -2.54   -2.70   -2.70   -2.37   -1.55   -0.09    2.05    4.78
+    85.0    0.00   -0.08   -0.23   -0.46   -0.73   -1.04   -1.33   -1.61   -1.86   -2.10   -2.33   -2.56   -2.73   -2.72   -2.39   -1.57   -0.11    2.02    4.77
+    90.0    0.00   -0.08   -0.23   -0.47   -0.75   -1.06   -1.36   -1.65   -1.90   -2.14   -2.37   -2.58   -2.75   -2.74   -2.42   -1.60   -0.15    2.00    4.75
+    95.0    0.00   -0.08   -0.24   -0.47   -0.75   -1.07   -1.39   -1.68   -1.94   -2.17   -2.40   -2.62   -2.78   -2.77   -2.45   -1.63   -0.17    1.96    4.73
+   100.0    0.00   -0.08   -0.23   -0.47   -0.75   -1.09   -1.41   -1.71   -1.97   -2.21   -2.43   -2.66   -2.82   -2.82   -2.50   -1.68   -0.20    1.95    4.70
+   105.0    0.00   -0.07   -0.24   -0.47   -0.77   -1.10   -1.43   -1.73   -2.00   -2.24   -2.47   -2.69   -2.86   -2.86   -2.54   -1.71   -0.23    1.93    4.67
+   110.0    0.00   -0.07   -0.23   -0.46   -0.77   -1.10   -1.44   -1.75   -2.02   -2.27   -2.50   -2.72   -2.90   -2.92   -2.59   -1.75   -0.26    1.91    4.63
+   115.0    0.00   -0.08   -0.23   -0.46   -0.77   -1.12   -1.45   -1.77   -2.04   -2.29   -2.53   -2.76   -2.94   -2.95   -2.64   -1.79   -0.28    1.90    4.59
+   120.0    0.00   -0.07   -0.23   -0.46   -0.77   -1.12   -1.46   -1.78   -2.05   -2.30   -2.54   -2.78   -2.97   -3.00   -2.68   -1.82   -0.31    1.89    4.53
+   125.0    0.00   -0.07   -0.23   -0.46   -0.76   -1.11   -1.46   -1.78   -2.05   -2.30   -2.55   -2.79   -3.00   -3.01   -2.69   -1.83   -0.31    1.86    4.49
+   130.0    0.00   -0.06   -0.22   -0.45   -0.76   -1.10   -1.45   -1.77   -2.04   -2.29   -2.55   -2.79   -2.99   -3.02   -2.71   -1.84   -0.30    1.87    4.46
+   135.0    0.00   -0.06   -0.21   -0.45   -0.76   -1.10   -1.44   -1.75   -2.03   -2.27   -2.53   -2.77   -2.97   -3.01   -2.69   -1.82   -0.29    1.88    4.43
+   140.0    0.00   -0.06   -0.20   -0.45   -0.74   -1.08   -1.42   -1.73   -2.01   -2.25   -2.49   -2.74   -2.94   -2.97   -2.64   -1.79   -0.26    1.89    4.44
+   145.0    0.00   -0.06   -0.20   -0.43   -0.74   -1.06   -1.41   -1.71   -1.97   -2.22   -2.46   -2.70   -2.89   -2.91   -2.59   -1.72   -0.20    1.95    4.48
+   150.0    0.00   -0.06   -0.20   -0.43   -0.72   -1.05   -1.38   -1.69   -1.95   -2.18   -2.41   -2.64   -2.82   -2.84   -2.51   -1.64   -0.12    2.03    4.56
+   155.0    0.00   -0.05   -0.20   -0.42   -0.71   -1.04   -1.36   -1.66   -1.91   -2.14   -2.36   -2.58   -2.75   -2.76   -2.42   -1.55   -0.02    2.14    4.68
+   160.0    0.00   -0.05   -0.19   -0.40   -0.68   -1.01   -1.34   -1.62   -1.87   -2.09   -2.31   -2.51   -2.67   -2.67   -2.32   -1.44    0.11    2.28    4.84
+   165.0    0.00   -0.03   -0.17   -0.39   -0.67   -1.00   -1.31   -1.58   -1.83   -2.04   -2.25   -2.44   -2.59   -2.57   -2.21   -1.30    0.26    2.45    5.02
+   170.0    0.00   -0.03   -0.16   -0.38   -0.65   -0.97   -1.28   -1.55   -1.79   -2.00   -2.19   -2.39   -2.51   -2.47   -2.09   -1.16    0.42    2.64    5.25
+   175.0    0.00   -0.03   -0.16   -0.36   -0.63   -0.95   -1.25   -1.52   -1.75   -1.96   -2.15   -2.32   -2.44   -2.38   -1.97   -1.02    0.60    2.85    5.48
+   180.0    0.00   -0.03   -0.15   -0.35   -0.62   -0.92   -1.22   -1.50   -1.71   -1.91   -2.09   -2.26   -2.36   -2.28   -1.85   -0.88    0.77    3.04    5.70
+   185.0    0.00   -0.03   -0.14   -0.34   -0.60   -0.90   -1.20   -1.46   -1.69   -1.87   -2.04   -2.20   -2.29   -2.18   -1.74   -0.73    0.94    3.24    5.90
+   190.0    0.00   -0.03   -0.13   -0.32   -0.58   -0.88   -1.17   -1.43   -1.65   -1.84   -2.00   -2.15   -2.21   -2.10   -1.62   -0.60    1.08    3.40    6.08
+   195.0    0.00   -0.02   -0.11   -0.30   -0.56   -0.85   -1.14   -1.40   -1.62   -1.80   -1.96   -2.08   -2.14   -2.01   -1.51   -0.49    1.21    3.53    6.20
+   200.0    0.00   -0.01   -0.11   -0.28   -0.54   -0.82   -1.11   -1.37   -1.59   -1.76   -1.91   -2.03   -2.06   -1.93   -1.42   -0.39    1.31    3.63    6.27
+   205.0    0.00   -0.01   -0.10   -0.28   -0.51   -0.80   -1.08   -1.34   -1.55   -1.72   -1.86   -1.97   -2.00   -1.84   -1.34   -0.32    1.37    3.68    6.30
+   210.0    0.00   -0.01   -0.10   -0.27   -0.49   -0.77   -1.05   -1.32   -1.52   -1.68   -1.81   -1.91   -1.93   -1.76   -1.28   -0.26    1.41    3.69    6.29
+   215.0    0.00   -0.01   -0.09   -0.25   -0.48   -0.74   -1.02   -1.27   -1.48   -1.63   -1.76   -1.84   -1.85   -1.71   -1.22   -0.23    1.41    3.67    6.26
+   220.0    0.00    0.05   -0.07   -0.23   -0.45   -0.71   -0.99   -1.24   -1.43   -1.59   -1.71   -1.77   -1.80   -1.65   -1.19   -0.22    1.40    3.64    6.21
+   225.0    0.00    0.05   -0.07   -0.22   -0.42   -0.68   -0.95   -1.19   -1.39   -1.53   -1.65   -1.73   -1.74   -1.61   -1.17   -0.22    1.37    3.59    6.16
+   230.0    0.00    0.05   -0.06   -0.21   -0.40   -0.65   -0.91   -1.14   -1.34   -1.48   -1.59   -1.68   -1.70   -1.59   -1.16   -0.24    1.33    3.55    6.12
+   235.0    0.00    0.05   -0.06   -0.19   -0.38   -0.62   -0.87   -1.10   -1.29   -1.43   -1.54   -1.64   -1.68   -1.57   -1.18   -0.27    1.29    3.51    6.10
+   240.0    0.00    0.01   -0.05   -0.18   -0.36   -0.58   -0.83   -1.05   -1.23   -1.39   -1.50   -1.61   -1.66   -1.58   -1.20   -0.30    1.26    3.48    6.11
+   245.0    0.00    0.01   -0.05   -0.18   -0.35   -0.57   -0.80   -1.02   -1.20   -1.35   -1.48   -1.60   -1.68   -1.61   -1.24   -0.34    1.22    3.47    6.13
+   250.0    0.00    0.01   -0.05   -0.17   -0.34   -0.55   -0.78   -0.99   -1.17   -1.34   -1.47   -1.60   -1.70   -1.64   -1.28   -0.38    1.19    3.46    6.17
+   255.0    0.00    0.04   -0.05   -0.17   -0.34   -0.54   -0.77   -0.98   -1.16   -1.33   -1.47   -1.62   -1.73   -1.70   -1.33   -0.44    1.16    3.45    6.22
+   260.0    0.00    0.01   -0.04   -0.17   -0.33   -0.55   -0.77   -0.98   -1.17   -1.33   -1.50   -1.66   -1.78   -1.75   -1.39   -0.50    1.11    3.42    6.23
+   265.0    0.00    0.01   -0.05   -0.16   -0.35   -0.55   -0.78   -0.99   -1.19   -1.36   -1.54   -1.71   -1.85   -1.81   -1.46   -0.56    1.05    3.37    6.21
+   270.0    0.00    0.01   -0.06   -0.18   -0.35   -0.57   -0.80   -1.02   -1.22   -1.41   -1.60   -1.78   -1.91   -1.88   -1.53   -0.64    0.95    3.29    6.16
+   275.0    0.00    0.01   -0.06   -0.18   -0.37   -0.60   -0.83   -1.06   -1.28   -1.47   -1.66   -1.83   -1.97   -1.96   -1.62   -0.73    0.84    3.16    6.05
+   280.0    0.00    0.03   -0.06   -0.20   -0.39   -0.62   -0.87   -1.12   -1.34   -1.54   -1.73   -1.92   -2.05   -2.04   -1.70   -0.85    0.70    2.99    5.87
+   285.0    0.00    0.02   -0.07   -0.21   -0.41   -0.66   -0.92   -1.17   -1.41   -1.61   -1.81   -2.00   -2.13   -2.12   -1.80   -0.97    0.54    2.79    5.66
+   290.0    0.00    0.02   -0.08   -0.23   -0.43   -0.69   -0.97   -1.24   -1.48   -1.69   -1.88   -2.07   -2.21   -2.21   -1.91   -1.11    0.36    2.57    5.40
+   295.0    0.00   -0.01   -0.09   -0.24   -0.46   -0.72   -1.01   -1.29   -1.55   -1.76   -1.97   -2.15   -2.29   -2.30   -2.03   -1.26    0.17    2.33    5.13
+   300.0    0.00   -0.01   -0.09   -0.25   -0.48   -0.76   -1.06   -1.35   -1.61   -1.83   -2.04   -2.22   -2.38   -2.40   -2.14   -1.41   -0.02    2.10    4.87
+   305.0    0.00   -0.01   -0.11   -0.27   -0.50   -0.79   -1.09   -1.39   -1.66   -1.89   -2.10   -2.29   -2.45   -2.50   -2.26   -1.55   -0.20    1.89    4.63
+   310.0    0.00   -0.02   -0.12   -0.29   -0.53   -0.82   -1.13   -1.44   -1.71   -1.94   -2.16   -2.36   -2.54   -2.59   -2.38   -1.68   -0.34    1.73    4.43
+   315.0    0.00   -0.02   -0.12   -0.30   -0.55   -0.84   -1.16   -1.47   -1.74   -1.98   -2.20   -2.42   -2.61   -2.68   -2.48   -1.79   -0.45    1.61    4.29
+   320.0    0.00   -0.03   -0.13   -0.31   -0.56   -0.86   -1.18   -1.49   -1.77   -2.01   -2.25   -2.47   -2.67   -2.76   -2.56   -1.87   -0.53    1.55    4.21
+   325.0    0.00   -0.03   -0.14   -0.32   -0.58   -0.88   -1.19   -1.51   -1.79   -2.05   -2.28   -2.52   -2.73   -2.83   -2.63   -1.93   -0.56    1.55    4.19
+   330.0    0.00   -0.03   -0.14   -0.33   -0.59   -0.89   -1.21   -1.52   -1.82   -2.06   -2.31   -2.55   -2.77   -2.87   -2.66   -1.95   -0.54    1.59    4.26
+   335.0    0.00   -0.04   -0.16   -0.34   -0.60   -0.91   -1.23   -1.53   -1.83   -2.09   -2.33   -2.57   -2.79   -2.89   -2.67   -1.93   -0.50    1.68    4.36
+   340.0    0.00   -0.04   -0.17   -0.35   -0.61   -0.92   -1.24   -1.55   -1.84   -2.10   -2.34   -2.58   -2.80   -2.88   -2.66   -1.89   -0.42    1.79    4.50
+   345.0    0.00   -0.05   -0.17   -0.36   -0.63   -0.94   -1.26   -1.57   -1.86   -2.11   -2.35   -2.58   -2.78   -2.85   -2.62   -1.83   -0.32    1.93    4.66
+   350.0    0.00   -0.05   -0.18   -0.37   -0.63   -0.95   -1.27   -1.59   -1.87   -2.12   -2.35   -2.57   -2.76   -2.82   -2.56   -1.76   -0.23    2.05    4.81
+   355.0    0.00   -0.06   -0.18   -0.38   -0.65   -0.96   -1.30   -1.60   -1.88   -2.13   -2.34   -2.55   -2.72   -2.76   -2.49   -1.68   -0.13    2.17    4.95
+   360.0    0.00   -0.06   -0.19   -0.39   -0.65   -0.97   -1.31   -1.62   -1.90   -2.13   -2.34   -2.52   -2.68   -2.70   -2.42   -1.60   -0.04    2.28    5.07
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TPSCR3_GGD      OLGA                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               1    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+Number of Calibrated Antennas GPS:      001                 COMMENT             
+Number of Individual Calibrations GPS:  001                 COMMENT             
+   G01                                                      START OF FREQUENCY  
+     -0.81     -0.19     54.32                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.14   -0.60   -1.43   -2.63   -4.10   -5.62   -6.90   -7.69   -7.85   -7.41   -6.52   -5.28   -3.69   -1.57    1.36    5.27    9.97   14.80
+     0.0    0.00   -0.18   -0.63   -1.39   -2.53   -4.00   -5.59   -6.96   -7.78   -7.88   -7.30   -6.28   -5.05   -3.58   -1.48    1.74    6.29   11.49   15.52
+     5.0    0.00   -0.18   -0.62   -1.37   -2.50   -3.95   -5.53   -6.89   -7.70   -7.77   -7.17   -6.13   -4.90   -3.47   -1.50    1.53    5.86   10.93   15.04
+    10.0    0.00   -0.18   -0.61   -1.36   -2.47   -3.91   -5.47   -6.82   -7.62   -7.67   -7.03   -5.95   -4.70   -3.31   -1.46    1.37    5.46   10.36   14.48
+    15.0    0.00   -0.18   -0.61   -1.35   -2.45   -3.88   -5.43   -6.77   -7.55   -7.57   -6.90   -5.78   -4.51   -3.14   -1.39    1.27    5.14    9.85   13.94
+    20.0    0.00   -0.18   -0.61   -1.34   -2.44   -3.86   -5.40   -6.74   -7.51   -7.51   -6.80   -5.65   -4.35   -2.99   -1.31    1.21    4.92    9.46   13.49
+    25.0    0.00   -0.18   -0.61   -1.34   -2.43   -3.85   -5.39   -6.72   -7.49   -7.49   -6.77   -5.60   -4.29   -2.92   -1.26    1.20    4.81    9.25   13.22
+    30.0    0.00   -0.18   -0.60   -1.34   -2.43   -3.85   -5.39   -6.73   -7.51   -7.53   -6.82   -5.66   -4.34   -2.96   -1.27    1.21    4.81    9.23   13.15
+    35.0    0.00   -0.17   -0.60   -1.34   -2.44   -3.86   -5.41   -6.76   -7.57   -7.62   -6.95   -5.82   -4.51   -3.11   -1.35    1.21    4.91    9.39   13.30
+    40.0    0.00   -0.17   -0.61   -1.34   -2.44   -3.87   -5.43   -6.81   -7.65   -7.76   -7.17   -6.09   -4.81   -3.37   -1.52    1.20    5.07    9.68   13.63
+    45.0    0.00   -0.17   -0.61   -1.35   -2.46   -3.89   -5.47   -6.87   -7.76   -7.94   -7.43   -6.44   -5.19   -3.71   -1.75    1.16    5.24   10.05   14.07
+    50.0    0.00   -0.17   -0.61   -1.36   -2.47   -3.91   -5.50   -6.93   -7.88   -8.13   -7.72   -6.81   -5.61   -4.10   -2.01    1.08    5.39   10.40   14.54
+    55.0    0.00   -0.17   -0.61   -1.37   -2.49   -3.93   -5.54   -6.99   -7.98   -8.32   -7.99   -7.17   -6.00   -4.47   -2.29    0.97    5.48   10.67   14.94
+    60.0    0.00   -0.17   -0.61   -1.37   -2.50   -3.95   -5.56   -7.04   -8.07   -8.47   -8.21   -7.45   -6.32   -4.78   -2.53    0.84    5.47   10.79   15.19
+    65.0    0.00   -0.16   -0.61   -1.38   -2.51   -3.97   -5.58   -7.07   -8.12   -8.56   -8.35   -7.64   -6.53   -4.98   -2.70    0.69    5.35   10.71   15.23
+    70.0    0.00   -0.16   -0.61   -1.38   -2.52   -3.98   -5.59   -7.07   -8.13   -8.58   -8.40   -7.69   -6.59   -5.04   -2.79    0.55    5.13   10.44   15.04
+    75.0    0.00   -0.16   -0.61   -1.39   -2.52   -3.98   -5.57   -7.04   -8.09   -8.53   -8.33   -7.62   -6.50   -4.97   -2.78    0.43    4.83   10.00   14.64
+    80.0    0.00   -0.16   -0.61   -1.39   -2.53   -3.97   -5.55   -6.99   -8.01   -8.42   -8.18   -7.43   -6.29   -4.78   -2.68    0.33    4.48    9.45   14.09
+    85.0    0.00   -0.15   -0.61   -1.39   -2.52   -3.95   -5.51   -6.92   -7.90   -8.25   -7.97   -7.16   -5.99   -4.50   -2.52    0.28    4.14    8.86   13.49
+    90.0    0.00   -0.15   -0.60   -1.39   -2.52   -3.94   -5.46   -6.83   -7.76   -8.06   -7.72   -6.87   -5.67   -4.19   -2.31    0.27    3.84    8.31   12.93
+    95.0    0.00   -0.14   -0.60   -1.39   -2.51   -3.91   -5.41   -6.73   -7.61   -7.87   -7.49   -6.59   -5.37   -3.91   -2.11    0.31    3.64    7.89   12.52
+   100.0    0.00   -0.14   -0.59   -1.38   -2.51   -3.89   -5.36   -6.64   -7.48   -7.70   -7.29   -6.38   -5.14   -3.68   -1.92    0.39    3.55    7.67   12.34
+   105.0    0.00   -0.13   -0.59   -1.38   -2.50   -3.87   -5.31   -6.56   -7.36   -7.57   -7.17   -6.26   -5.02   -3.55   -1.79    0.50    3.60    7.67   12.43
+   110.0    0.00   -0.13   -0.58   -1.37   -2.50   -3.86   -5.27   -6.50   -7.29   -7.50   -7.12   -6.24   -5.02   -3.53   -1.71    0.63    3.78    7.90   12.81
+   115.0    0.00   -0.12   -0.57   -1.37   -2.49   -3.85   -5.25   -6.45   -7.24   -7.48   -7.14   -6.32   -5.12   -3.60   -1.69    0.79    4.07    8.32   13.44
+   120.0    0.00   -0.12   -0.56   -1.36   -2.49   -3.84   -5.24   -6.44   -7.23   -7.50   -7.23   -6.47   -5.30   -3.73   -1.70    0.96    4.44    8.88   14.26
+   125.0    0.00   -0.11   -0.55   -1.35   -2.48   -3.84   -5.24   -6.44   -7.25   -7.55   -7.34   -6.64   -5.50   -3.88   -1.72    1.13    4.83    9.51   15.17
+   130.0    0.00   -0.11   -0.54   -1.34   -2.48   -3.85   -5.24   -6.45   -7.27   -7.62   -7.46   -6.81   -5.67   -4.01   -1.72    1.32    5.22   10.11   16.08
+   135.0    0.00   -0.10   -0.53   -1.33   -2.47   -3.85   -5.25   -6.46   -7.30   -7.66   -7.53   -6.91   -5.78   -4.06   -1.67    1.50    5.55   10.62   16.90
+   140.0    0.00   -0.10   -0.52   -1.32   -2.46   -3.84   -5.25   -6.47   -7.31   -7.68   -7.55   -6.93   -5.78   -4.02   -1.57    1.67    5.79   10.98   17.55
+   145.0    0.00   -0.09   -0.51   -1.30   -2.45   -3.83   -5.25   -6.46   -7.29   -7.64   -7.50   -6.85   -5.67   -3.88   -1.40    1.83    5.93   11.16   17.98
+   150.0    0.00   -0.08   -0.50   -1.28   -2.43   -3.81   -5.22   -6.42   -7.23   -7.56   -7.38   -6.68   -5.45   -3.64   -1.19    1.97    5.96   11.16   18.20
+   155.0    0.00   -0.08   -0.48   -1.26   -2.40   -3.78   -5.18   -6.36   -7.14   -7.43   -7.20   -6.45   -5.17   -3.35   -0.95    2.07    5.90   10.99   18.20
+   160.0    0.00   -0.08   -0.47   -1.24   -2.37   -3.74   -5.12   -6.28   -7.03   -7.27   -6.99   -6.18   -4.86   -3.05   -0.73    2.13    5.75   10.70   18.04
+   165.0    0.00   -0.07   -0.46   -1.22   -2.34   -3.69   -5.04   -6.18   -6.90   -7.10   -6.78   -5.93   -4.59   -2.79   -0.56    2.14    5.55   10.34   17.76
+   170.0    0.00   -0.07   -0.45   -1.20   -2.31   -3.63   -4.96   -6.07   -6.77   -6.95   -6.61   -5.74   -4.40   -2.62   -0.46    2.10    5.32    9.97   17.42
+   175.0    0.00   -0.07   -0.45   -1.19   -2.28   -3.58   -4.89   -5.97   -6.65   -6.84   -6.50   -5.65   -4.32   -2.58   -0.47    1.99    5.09    9.62   17.06
+   180.0    0.00   -0.07   -0.45   -1.18   -2.26   -3.54   -4.83   -5.89   -6.58   -6.78   -6.48   -5.67   -4.39   -2.67   -0.59    1.84    4.88    9.32   16.70
+   185.0    0.00   -0.07   -0.45   -1.18   -2.25   -3.52   -4.79   -5.85   -6.55   -6.79   -6.55   -5.81   -4.58   -2.89   -0.80    1.65    4.69    9.09   16.34
+   190.0    0.00   -0.07   -0.45   -1.19   -2.25   -3.52   -4.78   -5.85   -6.57   -6.87   -6.70   -6.04   -4.87   -3.20   -1.09    1.43    4.53    8.91   15.98
+   195.0    0.00   -0.08   -0.46   -1.21   -2.28   -3.55   -4.82   -5.90   -6.66   -7.01   -6.91   -6.33   -5.22   -3.56   -1.40    1.22    4.41    8.76   15.59
+   200.0    0.00   -0.08   -0.48   -1.23   -2.32   -3.61   -4.90   -6.01   -6.79   -7.19   -7.15   -6.64   -5.57   -3.91   -1.69    1.02    4.30    8.63   15.14
+   205.0    0.00   -0.08   -0.49   -1.27   -2.39   -3.71   -5.03   -6.16   -6.98   -7.40   -7.39   -6.90   -5.86   -4.19   -1.93    0.87    4.22    8.48   14.62
+   210.0    0.00   -0.09   -0.51   -1.32   -2.47   -3.83   -5.20   -6.36   -7.19   -7.61   -7.59   -7.09   -6.04   -4.36   -2.07    0.77    4.14    8.31   14.04
+   215.0    0.00   -0.10   -0.54   -1.37   -2.56   -3.98   -5.39   -6.58   -7.41   -7.80   -7.73   -7.18   -6.09   -4.40   -2.11    0.73    4.08    8.11   13.41
+   220.0    0.00   -0.11   -0.56   -1.43   -2.67   -4.14   -5.60   -6.82   -7.63   -7.95   -7.80   -7.16   -6.01   -4.30   -2.04    0.76    4.03    7.90   12.80
+   225.0    0.00   -0.11   -0.59   -1.49   -2.78   -4.30   -5.81   -7.05   -7.82   -8.07   -7.79   -7.03   -5.81   -4.09   -1.88    0.83    4.00    7.70   12.25
+   230.0    0.00   -0.12   -0.62   -1.55   -2.88   -4.46   -6.01   -7.26   -7.99   -8.14   -7.72   -6.84   -5.53   -3.81   -1.67    0.93    3.99    7.57   11.83
+   235.0    0.00   -0.13   -0.64   -1.60   -2.98   -4.60   -6.19   -7.44   -8.12   -8.17   -7.62   -6.60   -5.22   -3.52   -1.45    1.05    4.02    7.52   11.61
+   240.0    0.00   -0.14   -0.67   -1.65   -3.06   -4.72   -6.33   -7.58   -8.22   -8.16   -7.50   -6.38   -4.95   -3.26   -1.27    1.15    4.09    7.60   11.62
+   245.0    0.00   -0.15   -0.69   -1.69   -3.13   -4.81   -6.44   -7.67   -8.27   -8.15   -7.40   -6.21   -4.75   -3.09   -1.15    1.22    4.20    7.81   11.89
+   250.0    0.00   -0.16   -0.71   -1.73   -3.17   -4.87   -6.50   -7.72   -8.29   -8.12   -7.33   -6.11   -4.66   -3.04   -1.14    1.26    4.35    8.15   12.38
+   255.0    0.00   -0.16   -0.73   -1.75   -3.20   -4.89   -6.52   -7.73   -8.28   -8.10   -7.31   -6.11   -4.69   -3.12   -1.23    1.25    4.53    8.61   13.06
+   260.0    0.00   -0.17   -0.74   -1.76   -3.21   -4.89   -6.50   -7.70   -8.26   -8.10   -7.33   -6.19   -4.84   -3.31   -1.40    1.20    4.73    9.13   13.84
+   265.0    0.00   -0.18   -0.75   -1.77   -3.20   -4.86   -6.45   -7.66   -8.23   -8.10   -7.40   -6.33   -5.06   -3.57   -1.62    1.13    4.94    9.68   14.63
+   270.0    0.00   -0.18   -0.75   -1.76   -3.17   -4.81   -6.39   -7.59   -8.19   -8.12   -7.49   -6.52   -5.32   -3.86   -1.87    1.05    5.14   10.20   15.33
+   275.0    0.00   -0.19   -0.76   -1.75   -3.14   -4.75   -6.32   -7.53   -8.15   -8.14   -7.59   -6.69   -5.57   -4.13   -2.08    1.01    5.34   10.64   15.87
+   280.0    0.00   -0.19   -0.76   -1.74   -3.10   -4.69   -6.24   -7.46   -8.12   -8.16   -7.67   -6.83   -5.75   -4.32   -2.21    1.00    5.53   11.00   16.19
+   285.0    0.00   -0.19   -0.75   -1.72   -3.06   -4.63   -6.18   -7.41   -8.09   -8.16   -7.71   -6.90   -5.84   -4.41   -2.25    1.07    5.71   11.24   16.28
+   290.0    0.00   -0.19   -0.75   -1.70   -3.02   -4.58   -6.12   -7.37   -8.07   -8.16   -7.71   -6.90   -5.82   -4.37   -2.17    1.20    5.90   11.38   16.15
+   295.0    0.00   -0.20   -0.74   -1.68   -2.98   -4.53   -6.08   -7.34   -8.05   -8.14   -7.66   -6.82   -5.70   -4.21   -1.98    1.41    6.09   11.45   15.86
+   300.0    0.00   -0.20   -0.74   -1.65   -2.95   -4.49   -6.05   -7.32   -8.04   -8.10   -7.59   -6.67   -5.50   -3.96   -1.71    1.67    6.30   11.48   15.48
+   305.0    0.00   -0.20   -0.73   -1.63   -2.91   -4.46   -6.03   -7.32   -8.04   -8.07   -7.49   -6.50   -5.25   -3.66   -1.40    1.97    6.52   11.52   15.10
+   310.0    0.00   -0.20   -0.72   -1.61   -2.88   -4.43   -6.02   -7.32   -8.04   -8.04   -7.39   -6.33   -5.01   -3.37   -1.08    2.27    6.76   11.59   14.80
+   315.0    0.00   -0.20   -0.71   -1.59   -2.85   -4.41   -6.01   -7.33   -8.04   -8.01   -7.32   -6.19   -4.80   -3.13   -0.82    2.55    7.01   11.73   14.65
+   320.0    0.00   -0.20   -0.70   -1.57   -2.82   -4.38   -6.00   -7.33   -8.05   -8.00   -7.27   -6.10   -4.68   -2.97   -0.63    2.76    7.24   11.92   14.66
+   325.0    0.00   -0.20   -0.69   -1.54   -2.79   -4.35   -5.97   -7.32   -8.05   -8.01   -7.27   -6.08   -4.64   -2.91   -0.54    2.89    7.43   12.14   14.83
+   330.0    0.00   -0.19   -0.68   -1.52   -2.76   -4.31   -5.94   -7.30   -8.05   -8.02   -7.29   -6.11   -4.68   -2.96   -0.56    2.93    7.56   12.37   15.12
+   335.0    0.00   -0.19   -0.67   -1.50   -2.72   -4.27   -5.90   -7.27   -8.04   -8.04   -7.34   -6.19   -4.79   -3.08   -0.68    2.87    7.60   12.54   15.46
+   340.0    0.00   -0.19   -0.66   -1.47   -2.68   -4.22   -5.85   -7.23   -8.02   -8.05   -7.39   -6.29   -4.93   -3.25   -0.85    2.72    7.53   12.62   15.77
+   345.0    0.00   -0.19   -0.65   -1.45   -2.64   -4.16   -5.79   -7.18   -7.98   -8.04   -7.43   -6.37   -5.05   -3.42   -1.06    2.51    7.35   12.57   15.97
+   350.0    0.00   -0.19   -0.64   -1.43   -2.60   -4.11   -5.72   -7.11   -7.93   -8.02   -7.43   -6.40   -5.13   -3.54   -1.25    2.25    7.07   12.35   16.01
+   355.0    0.00   -0.19   -0.63   -1.41   -2.56   -4.05   -5.66   -7.04   -7.86   -7.96   -7.38   -6.38   -5.13   -3.60   -1.40    1.99    6.70   11.99   15.86
+   360.0    0.00   -0.18   -0.63   -1.39   -2.53   -4.00   -5.59   -6.96   -7.78   -7.88   -7.30   -6.28   -5.05   -3.58   -1.48    1.74    6.29   11.49   15.52
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.58     -0.09     94.54                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.09   -0.33   -0.68   -1.06   -1.48   -1.96   -2.51   -3.09   -3.59   -3.82   -3.64   -2.98   -1.94   -0.68    0.66    2.14    4.05    6.77
+     0.0    0.00   -0.10   -0.33   -0.66   -1.06   -1.53   -2.07   -2.64   -3.17   -3.57   -3.75   -3.62   -3.15   -2.29   -1.05    0.56    2.38    4.06    5.18
+     5.0    0.00   -0.10   -0.34   -0.67   -1.07   -1.55   -2.08   -2.65   -3.17   -3.54   -3.69   -3.55   -3.05   -2.16   -0.85    0.87    2.80    4.58    5.67
+    10.0    0.00   -0.10   -0.34   -0.67   -1.08   -1.55   -2.09   -2.65   -3.17   -3.53   -3.66   -3.48   -2.94   -2.00   -0.61    1.20    3.22    5.00    5.93
+    15.0    0.00   -0.11   -0.34   -0.67   -1.07   -1.54   -2.08   -2.65   -3.17   -3.53   -3.64   -3.43   -2.84   -1.84   -0.38    1.50    3.54    5.26    5.93
+    20.0    0.00   -0.11   -0.34   -0.66   -1.06   -1.52   -2.06   -2.64   -3.16   -3.53   -3.63   -3.39   -2.75   -1.69   -0.19    1.70    3.72    5.32    5.70
+    25.0    0.00   -0.11   -0.34   -0.66   -1.03   -1.49   -2.02   -2.61   -3.15   -3.53   -3.62   -3.35   -2.68   -1.58   -0.08    1.77    3.70    5.17    5.31
+    30.0    0.00   -0.11   -0.34   -0.65   -1.01   -1.44   -1.97   -2.57   -3.13   -3.52   -3.62   -3.33   -2.63   -1.53   -0.07    1.68    3.49    4.84    4.88
+    35.0    0.00   -0.11   -0.34   -0.64   -0.98   -1.39   -1.91   -2.51   -3.09   -3.51   -3.61   -3.30   -2.60   -1.54   -0.18    1.42    3.10    4.40    4.52
+    40.0    0.00   -0.12   -0.34   -0.63   -0.95   -1.34   -1.85   -2.45   -3.05   -3.48   -3.58   -3.28   -2.59   -1.60   -0.38    1.04    2.59    3.94    4.33
+    45.0    0.00   -0.12   -0.35   -0.62   -0.92   -1.30   -1.78   -2.38   -2.99   -3.43   -3.54   -3.25   -2.60   -1.71   -0.65    0.58    2.04    3.54    4.39
+    50.0    0.00   -0.12   -0.35   -0.62   -0.90   -1.26   -1.73   -2.32   -2.92   -3.37   -3.50   -3.22   -2.63   -1.84   -0.95    0.12    1.54    3.27    4.73
+    55.0    0.00   -0.12   -0.35   -0.62   -0.90   -1.23   -1.68   -2.25   -2.86   -3.31   -3.44   -3.20   -2.66   -1.98   -1.23   -0.27    1.17    3.20    5.29
+    60.0    0.00   -0.12   -0.36   -0.62   -0.90   -1.22   -1.65   -2.20   -2.80   -3.25   -3.39   -3.17   -2.69   -2.09   -1.44   -0.53    0.99    3.33    6.01
+    65.0    0.00   -0.12   -0.36   -0.64   -0.91   -1.22   -1.63   -2.17   -2.74   -3.19   -3.35   -3.16   -2.72   -2.17   -1.54   -0.62    1.02    3.64    6.74
+    70.0    0.00   -0.13   -0.37   -0.66   -0.93   -1.24   -1.64   -2.15   -2.70   -3.15   -3.32   -3.16   -2.75   -2.20   -1.54   -0.52    1.26    4.07    7.36
+    75.0    0.00   -0.13   -0.38   -0.68   -0.97   -1.28   -1.66   -2.14   -2.68   -3.12   -3.31   -3.18   -2.77   -2.18   -1.42   -0.26    1.67    4.54    7.73
+    80.0    0.00   -0.13   -0.39   -0.70   -1.01   -1.32   -1.69   -2.15   -2.67   -3.11   -3.32   -3.22   -2.80   -2.13   -1.21    0.13    2.16    4.95    7.75
+    85.0    0.00   -0.13   -0.40   -0.73   -1.06   -1.38   -1.74   -2.18   -2.68   -3.12   -3.36   -3.28   -2.83   -2.06   -0.96    0.56    2.65    5.22    7.41
+    90.0    0.00   -0.13   -0.41   -0.76   -1.11   -1.44   -1.79   -2.21   -2.70   -3.15   -3.41   -3.35   -2.88   -1.99   -0.71    0.97    3.05    5.28    6.71
+    95.0    0.00   -0.13   -0.42   -0.78   -1.15   -1.50   -1.85   -2.25   -2.72   -3.19   -3.48   -3.44   -2.94   -1.95   -0.51    1.28    3.29    5.10    5.77
+   100.0    0.00   -0.13   -0.42   -0.80   -1.19   -1.55   -1.89   -2.29   -2.76   -3.23   -3.56   -3.54   -3.02   -1.95   -0.40    1.44    3.31    4.71    4.72
+   105.0    0.00   -0.13   -0.43   -0.82   -1.22   -1.59   -1.94   -2.32   -2.79   -3.28   -3.63   -3.64   -3.12   -2.00   -0.40    1.42    3.10    4.14    3.73
+   110.0    0.00   -0.13   -0.43   -0.83   -1.24   -1.62   -1.96   -2.35   -2.82   -3.32   -3.71   -3.74   -3.22   -2.10   -0.52    1.21    2.70    3.48    2.97
+   115.0    0.00   -0.12   -0.43   -0.83   -1.25   -1.63   -1.98   -2.36   -2.84   -3.36   -3.77   -3.83   -3.33   -2.24   -0.72    0.87    2.15    2.82    2.59
+   120.0    0.00   -0.12   -0.42   -0.83   -1.25   -1.63   -1.98   -2.37   -2.85   -3.39   -3.82   -3.90   -3.43   -2.39   -0.98    0.43    1.55    2.26    2.68
+   125.0    0.00   -0.12   -0.41   -0.82   -1.24   -1.62   -1.97   -2.37   -2.87   -3.42   -3.86   -3.95   -3.50   -2.52   -1.25   -0.02    0.97    1.87    3.24
+   130.0    0.00   -0.11   -0.40   -0.80   -1.22   -1.60   -1.95   -2.36   -2.88   -3.44   -3.89   -3.98   -3.54   -2.62   -1.47   -0.41    0.51    1.71    4.21
+   135.0    0.00   -0.11   -0.39   -0.78   -1.19   -1.57   -1.93   -2.35   -2.89   -3.46   -3.91   -3.98   -3.54   -2.65   -1.60   -0.67    0.22    1.79    5.49
+   140.0    0.00   -0.10   -0.38   -0.76   -1.16   -1.53   -1.91   -2.35   -2.90   -3.48   -3.91   -3.95   -3.49   -2.61   -1.62   -0.77    0.13    2.07    6.88
+   145.0    0.00   -0.10   -0.37   -0.74   -1.13   -1.50   -1.89   -2.34   -2.91   -3.50   -3.91   -3.91   -3.39   -2.49   -1.51   -0.70    0.24    2.49    8.21
+   150.0    0.00   -0.10   -0.36   -0.72   -1.11   -1.48   -1.87   -2.35   -2.93   -3.51   -3.90   -3.84   -3.26   -2.29   -1.29   -0.47    0.51    2.97    9.31
+   155.0    0.00   -0.09   -0.35   -0.70   -1.09   -1.47   -1.87   -2.36   -2.94   -3.52   -3.87   -3.76   -3.10   -2.05   -0.98   -0.12    0.88    3.41   10.04
+   160.0    0.00   -0.09   -0.33   -0.69   -1.07   -1.46   -1.88   -2.38   -2.96   -3.52   -3.84   -3.67   -2.93   -1.80   -0.64    0.27    1.26    3.75   10.33
+   165.0    0.00   -0.08   -0.33   -0.68   -1.07   -1.47   -1.89   -2.40   -2.98   -3.52   -3.79   -3.57   -2.76   -1.55   -0.32    0.63    1.60    3.93   10.19
+   170.0    0.00   -0.08   -0.32   -0.67   -1.07   -1.48   -1.92   -2.43   -2.99   -3.50   -3.74   -3.47   -2.62   -1.35   -0.07    0.92    1.83    3.93    9.69
+   175.0    0.00   -0.07   -0.31   -0.67   -1.08   -1.50   -1.95   -2.45   -3.00   -3.47   -3.68   -3.38   -2.51   -1.23    0.09    1.08    1.92    3.76    8.97
+   180.0    0.00   -0.07   -0.31   -0.67   -1.09   -1.53   -1.99   -2.48   -2.99   -3.44   -3.61   -3.31   -2.45   -1.18    0.12    1.10    1.87    3.49    8.18
+   185.0    0.00   -0.07   -0.30   -0.67   -1.11   -1.56   -2.02   -2.50   -2.99   -3.40   -3.56   -3.26   -2.43   -1.21    0.04    0.98    1.70    3.17    7.51
+   190.0    0.00   -0.07   -0.30   -0.68   -1.12   -1.58   -2.04   -2.51   -2.98   -3.36   -3.51   -3.24   -2.47   -1.32   -0.13    0.77    1.47    2.90    7.08
+   195.0    0.00   -0.06   -0.30   -0.68   -1.13   -1.60   -2.06   -2.51   -2.96   -3.34   -3.49   -3.26   -2.54   -1.47   -0.35    0.52    1.24    2.74    7.01
+   200.0    0.00   -0.06   -0.30   -0.69   -1.14   -1.61   -2.06   -2.51   -2.95   -3.33   -3.50   -3.30   -2.65   -1.64   -0.58    0.28    1.08    2.76    7.31
+   205.0    0.00   -0.06   -0.30   -0.69   -1.15   -1.61   -2.06   -2.50   -2.95   -3.35   -3.55   -3.38   -2.77   -1.80   -0.76    0.12    1.03    2.97    7.96
+   210.0    0.00   -0.06   -0.30   -0.69   -1.14   -1.60   -2.04   -2.49   -2.96   -3.39   -3.63   -3.49   -2.89   -1.92   -0.86    0.09    1.14    3.37    8.85
+   215.0    0.00   -0.06   -0.30   -0.69   -1.14   -1.58   -2.02   -2.48   -2.98   -3.46   -3.74   -3.62   -3.00   -1.98   -0.85    0.19    1.39    3.91    9.87
+   220.0    0.00   -0.06   -0.30   -0.69   -1.12   -1.56   -1.99   -2.47   -3.02   -3.55   -3.87   -3.76   -3.09   -1.98   -0.73    0.43    1.77    4.51   10.84
+   225.0    0.00   -0.06   -0.30   -0.68   -1.11   -1.53   -1.97   -2.47   -3.07   -3.66   -4.02   -3.90   -3.15   -1.92   -0.53    0.76    2.23    5.10   11.65
+   230.0    0.00   -0.06   -0.30   -0.67   -1.09   -1.50   -1.94   -2.48   -3.12   -3.77   -4.17   -4.02   -3.18   -1.81   -0.27    1.14    2.69    5.61   12.17
+   235.0    0.00   -0.06   -0.30   -0.67   -1.07   -1.48   -1.93   -2.49   -3.19   -3.89   -4.30   -4.11   -3.18   -1.67    0.00    1.51    3.09    5.96   12.35
+   240.0    0.00   -0.06   -0.30   -0.66   -1.06   -1.46   -1.92   -2.51   -3.25   -3.98   -4.40   -4.17   -3.16   -1.54    0.24    1.81    3.38    6.13   12.18
+   245.0    0.00   -0.06   -0.30   -0.66   -1.05   -1.45   -1.92   -2.54   -3.31   -4.06   -4.46   -4.19   -3.11   -1.43    0.40    1.98    3.52    6.11   11.73
+   250.0    0.00   -0.06   -0.30   -0.65   -1.04   -1.45   -1.94   -2.58   -3.36   -4.10   -4.47   -4.16   -3.05   -1.36    0.45    2.01    3.50    5.93   11.07
+   255.0    0.00   -0.06   -0.30   -0.65   -1.04   -1.46   -1.97   -2.62   -3.40   -4.11   -4.44   -4.10   -2.99   -1.35    0.39    1.89    3.34    5.65   10.32
+   260.0    0.00   -0.06   -0.30   -0.65   -1.04   -1.48   -2.00   -2.67   -3.43   -4.09   -4.37   -4.01   -2.94   -1.40    0.22    1.65    3.08    5.33    9.58
+   265.0    0.00   -0.06   -0.30   -0.64   -1.05   -1.50   -2.04   -2.71   -3.44   -4.05   -4.27   -3.89   -2.89   -1.49   -0.02    1.33    2.78    5.04    8.93
+   270.0    0.00   -0.06   -0.29   -0.64   -1.05   -1.52   -2.08   -2.75   -3.44   -3.99   -4.16   -3.77   -2.85   -1.61   -0.29    0.99    2.51    4.83    8.42
+   275.0    0.00   -0.06   -0.29   -0.64   -1.05   -1.54   -2.11   -2.78   -3.44   -3.93   -4.04   -3.66   -2.83   -1.74   -0.57    0.68    2.30    4.73    8.05
+   280.0    0.00   -0.06   -0.29   -0.64   -1.06   -1.55   -2.14   -2.80   -3.43   -3.87   -3.94   -3.57   -2.82   -1.86   -0.79    0.46    2.20    4.73    7.79
+   285.0    0.00   -0.06   -0.29   -0.63   -1.05   -1.56   -2.15   -2.81   -3.42   -3.82   -3.87   -3.52   -2.83   -1.96   -0.95    0.34    2.22    4.82    7.57
+   290.0    0.00   -0.07   -0.29   -0.63   -1.05   -1.55   -2.15   -2.81   -3.41   -3.80   -3.83   -3.49   -2.85   -2.02   -1.02    0.34    2.33    4.94    7.31
+   295.0    0.00   -0.07   -0.29   -0.62   -1.03   -1.54   -2.14   -2.80   -3.40   -3.79   -3.83   -3.51   -2.88   -2.06   -1.01    0.44    2.51    5.03    6.94
+   300.0    0.00   -0.07   -0.29   -0.61   -1.02   -1.52   -2.12   -2.79   -3.40   -3.80   -3.86   -3.55   -2.93   -2.07   -0.94    0.60    2.69    5.05    6.44
+   305.0    0.00   -0.07   -0.29   -0.61   -1.00   -1.49   -2.09   -2.76   -3.39   -3.82   -3.92   -3.62   -2.98   -2.06   -0.84    0.78    2.84    4.94    5.78
+   310.0    0.00   -0.07   -0.29   -0.60   -0.99   -1.47   -2.06   -2.73   -3.39   -3.85   -3.98   -3.70   -3.04   -2.05   -0.74    0.92    2.90    4.70    5.01
+   315.0    0.00   -0.08   -0.29   -0.60   -0.98   -1.44   -2.02   -2.70   -3.37   -3.88   -4.05   -3.79   -3.11   -2.06   -0.68    1.00    2.85    4.33    4.20
+   320.0    0.00   -0.08   -0.29   -0.60   -0.97   -1.42   -1.99   -2.67   -3.36   -3.89   -4.10   -3.86   -3.17   -2.09   -0.67    0.98    2.69    3.89    3.44
+   325.0    0.00   -0.08   -0.30   -0.60   -0.96   -1.41   -1.97   -2.64   -3.34   -3.89   -4.12   -3.92   -3.24   -2.14   -0.72    0.88    2.44    3.43    2.85
+   330.0    0.00   -0.08   -0.30   -0.60   -0.97   -1.41   -1.96   -2.62   -3.31   -3.87   -4.12   -3.94   -3.29   -2.21   -0.83    0.71    2.16    3.03    2.49
+   335.0    0.00   -0.08   -0.31   -0.61   -0.98   -1.41   -1.96   -2.61   -3.28   -3.83   -4.10   -3.94   -3.32   -2.29   -0.96    0.52    1.90    2.76    2.42
+   340.0    0.00   -0.09   -0.31   -0.62   -0.99   -1.43   -1.97   -2.60   -3.25   -3.78   -4.04   -3.91   -3.34   -2.37   -1.09    0.34    1.72    2.67    2.65
+   345.0    0.00   -0.09   -0.32   -0.63   -1.01   -1.46   -1.99   -2.60   -3.22   -3.73   -3.97   -3.85   -3.33   -2.42   -1.19    0.23    1.66    2.78    3.14
+   350.0    0.00   -0.09   -0.32   -0.64   -1.03   -1.48   -2.02   -2.61   -3.20   -3.67   -3.89   -3.78   -3.29   -2.42   -1.22    0.23    1.76    3.08    3.80
+   355.0    0.00   -0.10   -0.33   -0.65   -1.05   -1.51   -2.04   -2.62   -3.18   -3.62   -3.82   -3.70   -3.23   -2.38   -1.18    0.34    2.01    3.53    4.52
+   360.0    0.00   -0.10   -0.33   -0.66   -1.06   -1.53   -2.07   -2.64   -3.17   -3.57   -3.75   -3.62   -3.15   -2.29   -1.05    0.56    2.38    4.06    5.18
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TPSCR3_GGD      PFAN                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               1    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+Number of Calibrated Antennas GPS:      001                 COMMENT             
+Number of Individual Calibrations GPS:  001                 COMMENT             
+   G01                                                      START OF FREQUENCY  
+     -0.51     -0.47     61.69                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.22   -0.82   -1.71   -2.75   -3.85   -4.93   -5.95   -6.80   -7.33   -7.32   -6.60   -5.09   -2.89   -0.23    2.68    5.69    8.86   12.32
+     0.0    0.00   -0.18   -0.79   -1.73   -2.83   -3.97   -5.05   -5.99   -6.71   -7.12   -7.06   -6.42   -5.13   -3.24   -0.87    1.87    4.92    8.30   11.88
+     5.0    0.00   -0.19   -0.82   -1.76   -2.86   -3.99   -5.05   -5.97   -6.70   -7.14   -7.13   -6.52   -5.24   -3.33   -0.93    1.79    4.78    8.10   11.87
+    10.0    0.00   -0.20   -0.84   -1.79   -2.89   -4.01   -5.04   -5.95   -6.69   -7.16   -7.20   -6.64   -5.36   -3.42   -0.97    1.78    4.71    7.95   11.80
+    15.0    0.00   -0.21   -0.86   -1.81   -2.91   -4.01   -5.03   -5.93   -6.68   -7.19   -7.29   -6.76   -5.50   -3.50   -0.98    1.81    4.70    7.84   11.68
+    20.0    0.00   -0.22   -0.87   -1.83   -2.93   -4.02   -5.01   -5.90   -6.67   -7.21   -7.36   -6.89   -5.62   -3.58   -0.97    1.87    4.73    7.75   11.51
+    25.0    0.00   -0.23   -0.89   -1.85   -2.94   -4.01   -4.99   -5.87   -6.64   -7.22   -7.42   -6.99   -5.73   -3.65   -0.97    1.93    4.78    7.68   11.33
+    30.0    0.00   -0.24   -0.90   -1.86   -2.94   -4.00   -4.96   -5.83   -6.61   -7.21   -7.45   -7.06   -5.81   -3.70   -0.97    1.98    4.81    7.62   11.16
+    35.0    0.00   -0.24   -0.91   -1.86   -2.93   -3.97   -4.92   -5.78   -6.56   -7.19   -7.45   -7.09   -5.86   -3.74   -0.97    2.00    4.83    7.57   11.01
+    40.0    0.00   -0.25   -0.92   -1.86   -2.92   -3.94   -4.87   -5.73   -6.51   -7.14   -7.42   -7.08   -5.87   -3.76   -0.99    1.99    4.81    7.52   10.90
+    45.0    0.00   -0.25   -0.92   -1.85   -2.89   -3.90   -4.82   -5.67   -6.44   -7.08   -7.37   -7.04   -5.85   -3.76   -1.02    1.96    4.77    7.47   10.85
+    50.0    0.00   -0.26   -0.92   -1.83   -2.85   -3.84   -4.76   -5.60   -6.38   -7.01   -7.30   -6.97   -5.80   -3.75   -1.04    1.90    4.71    7.44   10.85
+    55.0    0.00   -0.26   -0.91   -1.81   -2.81   -3.78   -4.69   -5.54   -6.31   -6.94   -7.22   -6.89   -5.74   -3.72   -1.07    1.84    4.65    7.43   10.91
+    60.0    0.00   -0.27   -0.90   -1.78   -2.75   -3.71   -4.62   -5.47   -6.26   -6.88   -7.16   -6.82   -5.67   -3.68   -1.08    1.78    4.60    7.44   11.02
+    65.0    0.00   -0.27   -0.89   -1.75   -2.69   -3.63   -4.54   -5.41   -6.21   -6.85   -7.11   -6.75   -5.60   -3.63   -1.06    1.76    4.58    7.48   11.15
+    70.0    0.00   -0.27   -0.88   -1.71   -2.62   -3.55   -4.46   -5.35   -6.18   -6.83   -7.09   -6.71   -5.53   -3.56   -1.02    1.78    4.60    7.55   11.29
+    75.0    0.00   -0.27   -0.87   -1.67   -2.56   -3.46   -4.38   -5.30   -6.17   -6.85   -7.10   -6.70   -5.48   -3.49   -0.94    1.84    4.66    7.65   11.42
+    80.0    0.00   -0.27   -0.86   -1.63   -2.49   -3.38   -4.30   -5.25   -6.17   -6.88   -7.14   -6.71   -5.44   -3.40   -0.84    1.94    4.75    7.76   11.52
+    85.0    0.00   -0.27   -0.85   -1.60   -2.43   -3.30   -4.23   -5.21   -6.18   -6.93   -7.20   -6.73   -5.41   -3.30   -0.70    2.08    4.88    7.87   11.59
+    90.0    0.00   -0.27   -0.84   -1.56   -2.37   -3.23   -4.17   -5.19   -6.20   -6.99   -7.27   -6.77   -5.37   -3.19   -0.54    2.25    5.03    7.98   11.62
+    95.0    0.00   -0.27   -0.83   -1.54   -2.32   -3.17   -4.11   -5.16   -6.22   -7.05   -7.33   -6.79   -5.32   -3.07   -0.37    2.43    5.18    8.07   11.61
+   100.0    0.00   -0.27   -0.82   -1.52   -2.28   -3.12   -4.07   -5.15   -6.24   -7.09   -7.38   -6.80   -5.26   -2.94   -0.19    2.61    5.32    8.15   11.58
+   105.0    0.00   -0.27   -0.82   -1.50   -2.26   -3.09   -4.05   -5.14   -6.25   -7.12   -7.39   -6.78   -5.19   -2.81   -0.02    2.78    5.45    8.22   11.55
+   110.0    0.00   -0.27   -0.82   -1.50   -2.25   -3.08   -4.04   -5.14   -6.26   -7.12   -7.38   -6.73   -5.09   -2.67    0.13    2.92    5.56    8.29   11.53
+   115.0    0.00   -0.27   -0.82   -1.50   -2.26   -3.09   -4.04   -5.14   -6.25   -7.10   -7.34   -6.65   -4.99   -2.54    0.26    3.04    5.66    8.36   11.55
+   120.0    0.00   -0.28   -0.82   -1.52   -2.28   -3.11   -4.06   -5.15   -6.24   -7.06   -7.27   -6.56   -4.88   -2.43    0.37    3.14    5.76    8.46   11.63
+   125.0    0.00   -0.28   -0.83   -1.54   -2.31   -3.15   -4.10   -5.16   -6.22   -7.01   -7.18   -6.46   -4.77   -2.33    0.45    3.22    5.85    8.59   11.77
+   130.0    0.00   -0.28   -0.84   -1.56   -2.36   -3.21   -4.15   -5.19   -6.21   -6.96   -7.09   -6.36   -4.68   -2.27    0.50    3.28    5.96    8.76   11.99
+   135.0    0.00   -0.28   -0.85   -1.59   -2.41   -3.28   -4.22   -5.23   -6.21   -6.91   -7.02   -6.27   -4.61   -2.23    0.53    3.33    6.08    8.97   12.26
+   140.0    0.00   -0.28   -0.87   -1.63   -2.47   -3.35   -4.29   -5.28   -6.22   -6.88   -6.96   -6.21   -4.58   -2.22    0.53    3.37    6.21    9.21   12.58
+   145.0    0.00   -0.28   -0.88   -1.66   -2.53   -3.44   -4.38   -5.35   -6.25   -6.87   -6.92   -6.18   -4.57   -2.24    0.51    3.40    6.33    9.46   12.91
+   150.0    0.00   -0.28   -0.89   -1.70   -2.60   -3.52   -4.47   -5.43   -6.29   -6.88   -6.92   -6.18   -4.60   -2.28    0.47    3.41    6.44    9.68   13.23
+   155.0    0.00   -0.28   -0.90   -1.73   -2.66   -3.61   -4.57   -5.51   -6.36   -6.92   -6.95   -6.21   -4.64   -2.35    0.41    3.40    6.52    9.86   13.51
+   160.0    0.00   -0.28   -0.91   -1.76   -2.71   -3.69   -4.66   -5.61   -6.44   -6.98   -6.99   -6.26   -4.70   -2.43    0.34    3.35    6.54    9.97   13.70
+   165.0    0.00   -0.28   -0.92   -1.79   -2.76   -3.76   -4.75   -5.70   -6.53   -7.06   -7.05   -6.32   -4.77   -2.51    0.24    3.27    6.48    9.97   13.78
+   170.0    0.00   -0.28   -0.92   -1.81   -2.80   -3.82   -4.84   -5.80   -6.62   -7.14   -7.12   -6.38   -4.83   -2.59    0.14    3.13    6.34    9.85   13.74
+   175.0    0.00   -0.27   -0.92   -1.82   -2.83   -3.88   -4.91   -5.89   -6.71   -7.22   -7.18   -6.42   -4.88   -2.66    0.02    2.96    6.12    9.63   13.57
+   180.0    0.00   -0.27   -0.92   -1.83   -2.86   -3.92   -4.98   -5.97   -6.80   -7.29   -7.24   -6.46   -4.92   -2.73   -0.11    2.75    5.83    9.30   13.28
+   185.0    0.00   -0.27   -0.92   -1.83   -2.88   -3.96   -5.03   -6.04   -6.87   -7.36   -7.28   -6.48   -4.94   -2.79   -0.25    2.51    5.50    8.90   12.89
+   190.0    0.00   -0.26   -0.91   -1.83   -2.89   -3.99   -5.08   -6.10   -6.94   -7.41   -7.31   -6.49   -4.96   -2.84   -0.38    2.27    5.15    8.46   12.43
+   195.0    0.00   -0.25   -0.91   -1.83   -2.90   -4.02   -5.13   -6.16   -7.00   -7.46   -7.34   -6.50   -4.97   -2.89   -0.50    2.05    4.82    8.04   11.95
+   200.0    0.00   -0.25   -0.90   -1.83   -2.90   -4.04   -5.17   -6.22   -7.06   -7.51   -7.36   -6.51   -4.98   -2.94   -0.61    1.87    4.55    7.67   11.49
+   205.0    0.00   -0.24   -0.89   -1.82   -2.91   -4.06   -5.21   -6.28   -7.12   -7.55   -7.40   -6.54   -5.01   -2.99   -0.70    1.74    4.36    7.40   11.10
+   210.0    0.00   -0.23   -0.88   -1.81   -2.92   -4.09   -5.26   -6.34   -7.18   -7.61   -7.44   -6.57   -5.05   -3.05   -0.76    1.67    4.28    7.25   10.82
+   215.0    0.00   -0.23   -0.87   -1.81   -2.93   -4.13   -5.32   -6.41   -7.26   -7.67   -7.49   -6.63   -5.11   -3.10   -0.79    1.67    4.30    7.24   10.67
+   220.0    0.00   -0.22   -0.85   -1.80   -2.94   -4.17   -5.38   -6.49   -7.33   -7.75   -7.56   -6.69   -5.17   -3.14   -0.79    1.75    4.43    7.37   10.68
+   225.0    0.00   -0.21   -0.84   -1.80   -2.96   -4.21   -5.45   -6.57   -7.42   -7.83   -7.64   -6.77   -5.24   -3.17   -0.75    1.87    4.65    7.61   10.86
+   230.0    0.00   -0.20   -0.83   -1.80   -2.98   -4.26   -5.53   -6.66   -7.50   -7.91   -7.71   -6.84   -5.29   -3.19   -0.69    2.04    4.92    7.95   11.17
+   235.0    0.00   -0.19   -0.82   -1.79   -3.00   -4.31   -5.60   -6.74   -7.59   -7.98   -7.77   -6.89   -5.32   -3.18   -0.61    2.23    5.23    8.33   11.61
+   240.0    0.00   -0.18   -0.80   -1.79   -3.01   -4.35   -5.66   -6.81   -7.65   -8.03   -7.81   -6.91   -5.32   -3.14   -0.50    2.43    5.53    8.74   12.13
+   245.0    0.00   -0.17   -0.79   -1.78   -3.03   -4.39   -5.72   -6.87   -7.70   -8.06   -7.82   -6.90   -5.29   -3.07   -0.38    2.62    5.80    9.12   12.68
+   250.0    0.00   -0.16   -0.78   -1.77   -3.04   -4.41   -5.76   -6.91   -7.73   -8.06   -7.80   -6.85   -5.21   -2.97   -0.24    2.79    6.03    9.46   13.22
+   255.0    0.00   -0.16   -0.76   -1.76   -3.03   -4.43   -5.77   -6.92   -7.72   -8.03   -7.74   -6.76   -5.10   -2.84   -0.10    2.95    6.22    9.74   13.69
+   260.0    0.00   -0.15   -0.75   -1.75   -3.03   -4.42   -5.77   -6.90   -7.68   -7.97   -7.65   -6.65   -4.96   -2.69    0.04    3.08    6.36    9.94   14.06
+   265.0    0.00   -0.14   -0.73   -1.73   -3.01   -4.40   -5.73   -6.86   -7.62   -7.89   -7.54   -6.52   -4.82   -2.53    0.19    3.21    6.47   10.08   14.29
+   270.0    0.00   -0.13   -0.72   -1.71   -2.98   -4.36   -5.68   -6.79   -7.53   -7.78   -7.42   -6.38   -4.67   -2.38    0.34    3.34    6.58   10.17   14.38
+   275.0    0.00   -0.13   -0.71   -1.68   -2.94   -4.30   -5.61   -6.70   -7.43   -7.67   -7.31   -6.26   -4.54   -2.24    0.48    3.47    6.69   10.23   14.31
+   280.0    0.00   -0.12   -0.69   -1.66   -2.90   -4.24   -5.52   -6.59   -7.32   -7.57   -7.21   -6.17   -4.45   -2.13    0.61    3.62    6.82   10.27   14.10
+   285.0    0.00   -0.12   -0.68   -1.63   -2.85   -4.16   -5.42   -6.48   -7.21   -7.47   -7.14   -6.11   -4.39   -2.05    0.73    3.77    6.97   10.31   13.78
+   290.0    0.00   -0.12   -0.67   -1.60   -2.80   -4.09   -5.32   -6.37   -7.10   -7.39   -7.09   -6.09   -4.37   -2.01    0.82    3.93    7.15   10.36   13.36
+   295.0    0.00   -0.11   -0.66   -1.58   -2.75   -4.02   -5.23   -6.27   -7.01   -7.33   -7.07   -6.11   -4.40   -2.01    0.88    4.07    7.33   10.41   12.91
+   300.0    0.00   -0.11   -0.65   -1.56   -2.71   -3.95   -5.14   -6.18   -6.94   -7.29   -7.07   -6.15   -4.46   -2.05    0.91    4.19    7.50   10.46   12.45
+   305.0    0.00   -0.11   -0.65   -1.54   -2.67   -3.89   -5.07   -6.11   -6.89   -7.27   -7.09   -6.20   -4.54   -2.12    0.89    4.26    7.63   10.50   12.02
+   310.0    0.00   -0.11   -0.65   -1.53   -2.65   -3.85   -5.02   -6.06   -6.85   -7.25   -7.11   -6.26   -4.62   -2.22    0.83    4.26    7.69   10.51   11.66
+   315.0    0.00   -0.12   -0.65   -1.53   -2.63   -3.82   -4.99   -6.02   -6.82   -7.25   -7.13   -6.31   -4.71   -2.32    0.72    4.18    7.66   10.47   11.39
+   320.0    0.00   -0.12   -0.65   -1.53   -2.63   -3.81   -4.97   -6.00   -6.80   -7.24   -7.13   -6.35   -4.78   -2.44    0.57    4.03    7.54   10.37   11.22
+   325.0    0.00   -0.12   -0.66   -1.54   -2.63   -3.81   -4.96   -5.99   -6.79   -7.22   -7.13   -6.36   -4.83   -2.56    0.38    3.80    7.31   10.21   11.16
+   330.0    0.00   -0.13   -0.67   -1.55   -2.64   -3.82   -4.97   -5.99   -6.78   -7.20   -7.10   -6.35   -4.87   -2.67    0.17    3.51    7.00    9.99   11.18
+   335.0    0.00   -0.14   -0.69   -1.57   -2.67   -3.84   -4.98   -5.99   -6.77   -7.18   -7.07   -6.33   -4.89   -2.78   -0.04    3.18    6.63    9.72   11.27
+   340.0    0.00   -0.15   -0.71   -1.60   -2.70   -3.86   -5.00   -6.00   -6.76   -7.16   -7.04   -6.31   -4.91   -2.88   -0.26    2.84    6.22    9.43   11.41
+   345.0    0.00   -0.15   -0.73   -1.63   -2.73   -3.89   -5.01   -6.00   -6.75   -7.13   -7.02   -6.30   -4.94   -2.97   -0.46    2.51    5.82    9.12   11.57
+   350.0    0.00   -0.16   -0.75   -1.66   -2.76   -3.92   -5.03   -6.00   -6.74   -7.12   -7.01   -6.31   -4.98   -3.06   -0.63    2.23    5.45    8.81   11.71
+   355.0    0.00   -0.17   -0.77   -1.69   -2.80   -3.95   -5.04   -6.00   -6.72   -7.11   -7.02   -6.35   -5.04   -3.15   -0.77    2.01    5.15    8.54   11.82
+   360.0    0.00   -0.18   -0.79   -1.73   -2.83   -3.97   -5.05   -5.99   -6.71   -7.12   -7.06   -6.42   -5.13   -3.24   -0.87    1.87    4.92    8.30   11.88
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.69     -0.04     94.80                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.02   -0.10   -0.25   -0.48   -0.79   -1.13   -1.50   -1.86   -2.22   -2.57   -2.85   -2.94   -2.61   -1.65    0.08    2.48    5.16    7.48
+     0.0    0.00    0.02   -0.06   -0.27   -0.59   -0.97   -1.36   -1.72   -2.05   -2.39   -2.72   -2.99   -3.04   -2.67   -1.76   -0.31    1.62    4.09    7.66
+     5.0    0.00    0.01   -0.08   -0.28   -0.58   -0.95   -1.32   -1.68   -2.00   -2.33   -2.66   -2.92   -2.95   -2.58   -1.69   -0.29    1.51    3.72    6.84
+    10.0    0.00   -0.01   -0.10   -0.29   -0.57   -0.91   -1.27   -1.61   -1.93   -2.26   -2.59   -2.84   -2.87   -2.51   -1.64   -0.32    1.34    3.27    5.92
+    15.0    0.00   -0.02   -0.12   -0.30   -0.56   -0.87   -1.20   -1.53   -1.85   -2.18   -2.50   -2.76   -2.80   -2.46   -1.64   -0.39    1.13    2.83    5.05
+    20.0    0.00   -0.04   -0.13   -0.30   -0.54   -0.82   -1.13   -1.44   -1.76   -2.08   -2.40   -2.66   -2.71   -2.41   -1.66   -0.49    0.93    2.47    4.38
+    25.0    0.00   -0.05   -0.15   -0.30   -0.52   -0.78   -1.07   -1.37   -1.67   -1.98   -2.29   -2.54   -2.62   -2.38   -1.70   -0.60    0.77    2.26    4.02
+    30.0    0.00   -0.06   -0.16   -0.30   -0.50   -0.74   -1.01   -1.30   -1.59   -1.88   -2.16   -2.41   -2.52   -2.34   -1.75   -0.71    0.69    2.27    4.07
+    35.0    0.00   -0.07   -0.17   -0.31   -0.48   -0.71   -0.97   -1.25   -1.52   -1.78   -2.04   -2.27   -2.41   -2.31   -1.80   -0.78    0.71    2.51    4.52
+    40.0    0.00   -0.08   -0.19   -0.31   -0.47   -0.69   -0.95   -1.22   -1.48   -1.70   -1.92   -2.13   -2.30   -2.27   -1.83   -0.81    0.86    2.98    5.31
+    45.0    0.00   -0.10   -0.20   -0.31   -0.46   -0.67   -0.94   -1.21   -1.44   -1.63   -1.80   -2.00   -2.20   -2.24   -1.85   -0.77    1.12    3.64    6.32
+    50.0    0.00   -0.11   -0.21   -0.31   -0.46   -0.67   -0.93   -1.20   -1.42   -1.57   -1.71   -1.89   -2.11   -2.21   -1.85   -0.68    1.49    4.42    7.39
+    55.0    0.00   -0.12   -0.22   -0.32   -0.45   -0.66   -0.93   -1.19   -1.40   -1.52   -1.63   -1.81   -2.06   -2.20   -1.84   -0.53    1.94    5.23    8.34
+    60.0    0.00   -0.13   -0.23   -0.32   -0.45   -0.65   -0.92   -1.18   -1.37   -1.48   -1.58   -1.77   -2.06   -2.22   -1.82   -0.35    2.40    5.97    8.99
+    65.0    0.00   -0.13   -0.24   -0.32   -0.44   -0.63   -0.89   -1.15   -1.34   -1.44   -1.55   -1.77   -2.09   -2.27   -1.80   -0.16    2.85    6.54    9.22
+    70.0    0.00   -0.14   -0.25   -0.32   -0.43   -0.61   -0.86   -1.11   -1.30   -1.41   -1.55   -1.81   -2.17   -2.35   -1.80    0.02    3.21    6.89    8.96
+    75.0    0.00   -0.15   -0.25   -0.32   -0.41   -0.58   -0.82   -1.06   -1.25   -1.38   -1.57   -1.88   -2.29   -2.46   -1.82    0.16    3.46    6.98    8.21
+    80.0    0.00   -0.16   -0.26   -0.32   -0.40   -0.55   -0.76   -1.00   -1.19   -1.37   -1.60   -1.99   -2.44   -2.59   -1.86    0.24    3.57    6.79    7.04
+    85.0    0.00   -0.16   -0.27   -0.32   -0.38   -0.51   -0.71   -0.93   -1.15   -1.36   -1.66   -2.11   -2.59   -2.73   -1.94    0.24    3.53    6.36    5.57
+    90.0    0.00   -0.17   -0.27   -0.32   -0.37   -0.48   -0.66   -0.88   -1.11   -1.37   -1.73   -2.23   -2.75   -2.87   -2.04    0.16    3.34    5.74    3.98
+    95.0    0.00   -0.17   -0.28   -0.32   -0.36   -0.45   -0.62   -0.85   -1.10   -1.40   -1.81   -2.35   -2.88   -3.00   -2.15    0.01    3.03    5.02    2.43
+   100.0    0.00   -0.17   -0.28   -0.32   -0.35   -0.43   -0.60   -0.84   -1.12   -1.45   -1.90   -2.46   -3.00   -3.11   -2.28   -0.18    2.64    4.27    1.08
+   105.0    0.00   -0.18   -0.29   -0.33   -0.35   -0.43   -0.60   -0.86   -1.17   -1.53   -1.99   -2.56   -3.08   -3.19   -2.39   -0.41    2.23    3.59    0.06
+   110.0    0.00   -0.18   -0.29   -0.33   -0.36   -0.44   -0.63   -0.91   -1.24   -1.63   -2.09   -2.64   -3.14   -3.24   -2.49   -0.62    1.84    3.03   -0.56
+   115.0    0.00   -0.18   -0.30   -0.34   -0.37   -0.47   -0.68   -0.98   -1.35   -1.75   -2.20   -2.71   -3.17   -3.26   -2.56   -0.81    1.52    2.65   -0.78
+   120.0    0.00   -0.18   -0.30   -0.35   -0.40   -0.51   -0.74   -1.07   -1.47   -1.88   -2.31   -2.78   -3.19   -3.26   -2.59   -0.93    1.31    2.47   -0.64
+   125.0    0.00   -0.18   -0.30   -0.37   -0.42   -0.56   -0.81   -1.18   -1.59   -2.01   -2.43   -2.85   -3.21   -3.25   -2.59   -0.97    1.23    2.49   -0.20
+   130.0    0.00   -0.17   -0.30   -0.38   -0.45   -0.61   -0.89   -1.28   -1.71   -2.14   -2.54   -2.93   -3.24   -3.23   -2.55   -0.93    1.29    2.68    0.42
+   135.0    0.00   -0.17   -0.31   -0.39   -0.48   -0.66   -0.96   -1.37   -1.82   -2.26   -2.66   -3.02   -3.29   -3.22   -2.47   -0.81    1.47    3.00    1.15
+   140.0    0.00   -0.17   -0.30   -0.40   -0.51   -0.71   -1.02   -1.45   -1.91   -2.36   -2.77   -3.13   -3.35   -3.21   -2.37   -0.61    1.75    3.41    1.90
+   145.0    0.00   -0.16   -0.30   -0.41   -0.54   -0.75   -1.08   -1.51   -1.98   -2.44   -2.87   -3.23   -3.43   -3.21   -2.25   -0.37    2.09    3.87    2.63
+   150.0    0.00   -0.15   -0.30   -0.42   -0.57   -0.79   -1.13   -1.56   -2.03   -2.51   -2.96   -3.34   -3.51   -3.21   -2.13   -0.11    2.45    4.33    3.34
+   155.0    0.00   -0.15   -0.29   -0.43   -0.59   -0.83   -1.17   -1.59   -2.07   -2.56   -3.03   -3.42   -3.58   -3.21   -2.01    0.14    2.80    4.77    4.04
+   160.0    0.00   -0.14   -0.28   -0.43   -0.61   -0.86   -1.21   -1.63   -2.10   -2.60   -3.09   -3.49   -3.62   -3.19   -1.89    0.35    3.09    5.16    4.78
+   165.0    0.00   -0.13   -0.27   -0.43   -0.63   -0.90   -1.24   -1.66   -2.13   -2.63   -3.12   -3.52   -3.63   -3.14   -1.77    0.52    3.30    5.50    5.60
+   170.0    0.00   -0.11   -0.26   -0.43   -0.64   -0.93   -1.28   -1.70   -2.17   -2.66   -3.14   -3.52   -3.59   -3.06   -1.66    0.63    3.41    5.77    6.53
+   175.0    0.00   -0.10   -0.24   -0.42   -0.65   -0.96   -1.33   -1.75   -2.21   -2.68   -3.14   -3.47   -3.50   -2.94   -1.56    0.67    3.41    5.98    7.57
+   180.0    0.00   -0.09   -0.22   -0.41   -0.66   -0.99   -1.38   -1.81   -2.26   -2.71   -3.11   -3.39   -3.36   -2.79   -1.46    0.65    3.33    6.13    8.69
+   185.0    0.00   -0.07   -0.20   -0.39   -0.66   -1.01   -1.43   -1.88   -2.32   -2.73   -3.08   -3.28   -3.18   -2.60   -1.36    0.59    3.17    6.22    9.82
+   190.0    0.00   -0.06   -0.18   -0.37   -0.66   -1.03   -1.47   -1.94   -2.38   -2.76   -3.04   -3.15   -2.99   -2.40   -1.26    0.51    2.96    6.24   10.88
+   195.0    0.00   -0.04   -0.15   -0.35   -0.65   -1.04   -1.51   -1.99   -2.42   -2.77   -2.99   -3.02   -2.79   -2.20   -1.16    0.43    2.73    6.19   11.75
+   200.0    0.00   -0.02   -0.12   -0.32   -0.63   -1.04   -1.53   -2.02   -2.45   -2.78   -2.94   -2.90   -2.61   -2.01   -1.06    0.36    2.52    6.09   12.35
+   205.0    0.00   -0.01   -0.10   -0.29   -0.60   -1.03   -1.53   -2.03   -2.46   -2.77   -2.90   -2.80   -2.46   -1.85   -0.96    0.33    2.36    5.94   12.61
+   210.0    0.00    0.01   -0.07   -0.25   -0.57   -1.01   -1.51   -2.01   -2.44   -2.74   -2.85   -2.74   -2.36   -1.74   -0.86    0.35    2.27    5.77   12.52
+   215.0    0.00    0.03   -0.04   -0.22   -0.54   -0.97   -1.47   -1.96   -2.39   -2.69   -2.81   -2.70   -2.32   -1.67   -0.78    0.43    2.26    5.60   12.10
+   220.0    0.00    0.04   -0.01   -0.18   -0.50   -0.93   -1.42   -1.90   -2.32   -2.63   -2.77   -2.69   -2.32   -1.65   -0.70    0.55    2.35    5.47   11.42
+   225.0    0.00    0.06    0.02   -0.15   -0.46   -0.89   -1.36   -1.83   -2.24   -2.56   -2.74   -2.71   -2.37   -1.68   -0.64    0.72    2.55    5.42   10.61
+   230.0    0.00    0.07    0.05   -0.11   -0.43   -0.85   -1.31   -1.75   -2.15   -2.48   -2.71   -2.74   -2.45   -1.73   -0.59    0.93    2.83    5.47    9.80
+   235.0    0.00    0.09    0.08   -0.08   -0.40   -0.82   -1.27   -1.69   -2.07   -2.42   -2.69   -2.79   -2.54   -1.81   -0.55    1.16    3.19    5.66    9.13
+   240.0    0.00    0.10    0.10   -0.06   -0.38   -0.80   -1.24   -1.64   -2.01   -2.36   -2.67   -2.83   -2.64   -1.90   -0.52    1.39    3.61    5.98    8.70
+   245.0    0.00    0.12    0.13   -0.03   -0.36   -0.79   -1.23   -1.62   -1.98   -2.33   -2.66   -2.87   -2.72   -1.98   -0.50    1.61    4.04    6.43    8.58
+   250.0    0.00    0.13    0.15   -0.01   -0.35   -0.79   -1.24   -1.63   -1.98   -2.32   -2.66   -2.90   -2.79   -2.05   -0.49    1.80    4.47    6.97    8.77
+   255.0    0.00    0.14    0.16    0.00   -0.35   -0.80   -1.26   -1.66   -2.00   -2.33   -2.67   -2.92   -2.83   -2.10   -0.49    1.95    4.85    7.54    9.24
+   260.0    0.00    0.15    0.18    0.01   -0.34   -0.82   -1.30   -1.70   -2.04   -2.36   -2.68   -2.93   -2.86   -2.14   -0.51    2.04    5.15    8.09    9.88
+   265.0    0.00    0.15    0.19    0.02   -0.35   -0.84   -1.33   -1.75   -2.09   -2.40   -2.71   -2.95   -2.88   -2.18   -0.54    2.07    5.34    8.53   10.56
+   270.0    0.00    0.16    0.20    0.03   -0.35   -0.85   -1.36   -1.80   -2.14   -2.44   -2.74   -2.97   -2.91   -2.22   -0.60    2.03    5.40    8.82   11.15
+   275.0    0.00    0.16    0.20    0.04   -0.34   -0.85   -1.38   -1.82   -2.18   -2.49   -2.78   -3.01   -2.95   -2.27   -0.69    1.91    5.32    8.89   11.52
+   280.0    0.00    0.16    0.20    0.04   -0.34   -0.85   -1.37   -1.82   -2.19   -2.52   -2.83   -3.06   -3.00   -2.35   -0.81    1.73    5.10    8.73   11.59
+   285.0    0.00    0.16    0.20    0.04   -0.33   -0.83   -1.35   -1.80   -2.18   -2.53   -2.88   -3.13   -3.09   -2.46   -0.97    1.49    4.76    8.34   11.33
+   290.0    0.00    0.16    0.20    0.04   -0.32   -0.80   -1.30   -1.75   -2.15   -2.53   -2.92   -3.21   -3.19   -2.59   -1.15    1.20    4.32    7.75   10.76
+   295.0    0.00    0.16    0.20    0.04   -0.31   -0.77   -1.24   -1.68   -2.09   -2.52   -2.95   -3.30   -3.32   -2.74   -1.36    0.88    3.80    7.03    9.98
+   300.0    0.00    0.16    0.19    0.03   -0.30   -0.74   -1.18   -1.60   -2.02   -2.49   -2.98   -3.38   -3.45   -2.90   -1.58    0.54    3.26    6.25    9.09
+   305.0    0.00    0.15    0.17    0.02   -0.30   -0.71   -1.13   -1.53   -1.95   -2.45   -3.00   -3.46   -3.57   -3.06   -1.79    0.21    2.74    5.50    8.23
+   310.0    0.00    0.14    0.16    0.00   -0.31   -0.69   -1.08   -1.47   -1.89   -2.41   -3.00   -3.51   -3.67   -3.21   -1.99   -0.09    2.27    4.85    7.53
+   315.0    0.00    0.13    0.14   -0.02   -0.32   -0.69   -1.06   -1.43   -1.85   -2.38   -3.00   -3.54   -3.73   -3.31   -2.15   -0.34    1.89    4.36    7.09
+   320.0    0.00    0.12    0.12   -0.04   -0.35   -0.71   -1.07   -1.42   -1.83   -2.36   -2.98   -3.54   -3.76   -3.38   -2.27   -0.54    1.62    4.05    6.95
+   325.0    0.00    0.11    0.10   -0.07   -0.38   -0.74   -1.10   -1.45   -1.84   -2.36   -2.96   -3.51   -3.74   -3.39   -2.34   -0.66    1.45    3.94    7.08
+   330.0    0.00    0.10    0.08   -0.10   -0.42   -0.78   -1.15   -1.49   -1.88   -2.36   -2.94   -3.46   -3.69   -3.36   -2.35   -0.72    1.39    3.98    7.43
+   335.0    0.00    0.09    0.05   -0.14   -0.46   -0.83   -1.21   -1.55   -1.93   -2.38   -2.91   -3.39   -3.60   -3.28   -2.31   -0.71    1.42    4.12    7.89
+   340.0    0.00    0.08    0.03   -0.17   -0.50   -0.88   -1.27   -1.62   -1.98   -2.40   -2.88   -3.31   -3.49   -3.17   -2.23   -0.65    1.49    4.29    8.31
+   345.0    0.00    0.06    0.01   -0.20   -0.53   -0.93   -1.32   -1.68   -2.03   -2.42   -2.85   -3.23   -3.37   -3.04   -2.11   -0.56    1.58    4.42    8.57
+   350.0    0.00    0.05   -0.02   -0.23   -0.56   -0.96   -1.36   -1.72   -2.06   -2.42   -2.81   -3.14   -3.25   -2.91   -1.99   -0.46    1.65    4.45    8.57
+   355.0    0.00    0.03   -0.04   -0.25   -0.58   -0.97   -1.37   -1.73   -2.07   -2.41   -2.77   -3.07   -3.14   -2.78   -1.87   -0.37    1.67    4.34    8.26
+   360.0    0.00    0.02   -0.06   -0.27   -0.59   -0.97   -1.36   -1.72   -2.05   -2.39   -2.72   -2.99   -3.04   -2.67   -1.76   -0.31    1.62    4.09    7.66
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TPSCR4          NONE                                        TYPE / SERIAL NO    
+COPIED              Geo++ GmbH               2    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+COPIED FROM AOAD/M_T        NONE                            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.58     -0.37     91.85                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.23   -0.90   -1.93   -3.22   -4.62   -5.96   -7.09   -7.87   -8.21   -8.06   -7.39   -6.23   -4.55   -2.28    0.69    4.47    9.08   14.23
+     0.0    0.00   -0.27   -0.98   -2.07   -3.42   -4.87   -6.26   -7.43   -8.21   -8.53   -8.32   -7.62   -6.44   -4.77   -2.54    0.39    4.14    8.68   13.67
+     5.0    0.00   -0.27   -0.98   -2.06   -3.41   -4.86   -6.25   -7.41   -8.20   -8.52   -8.31   -7.60   -6.41   -4.74   -2.50    0.42    4.18    8.73   13.73
+    10.0    0.00   -0.26   -0.97   -2.05   -3.39   -4.84   -6.23   -7.40   -8.19   -8.50   -8.30   -7.58   -6.38   -4.70   -2.46    0.47    4.23    8.79   13.83
+    15.0    0.00   -0.26   -0.97   -2.05   -3.38   -4.82   -6.21   -7.37   -8.17   -8.49   -8.28   -7.56   -6.36   -4.66   -2.41    0.53    4.30    8.88   13.96
+    20.0    0.00   -0.26   -0.96   -2.03   -3.36   -4.80   -6.18   -7.35   -8.15   -8.47   -8.27   -7.54   -6.33   -4.62   -2.36    0.60    4.38    9.00   14.12
+    25.0    0.00   -0.26   -0.96   -2.02   -3.34   -4.77   -6.16   -7.32   -8.12   -8.44   -8.25   -7.53   -6.30   -4.58   -2.30    0.68    4.49    9.13   14.31
+    30.0    0.00   -0.26   -0.95   -2.01   -3.32   -4.75   -6.12   -7.28   -8.08   -8.42   -8.22   -7.51   -6.28   -4.54   -2.24    0.77    4.61    9.29   14.51
+    35.0    0.00   -0.25   -0.94   -2.00   -3.30   -4.72   -6.09   -7.25   -8.05   -8.38   -8.20   -7.48   -6.25   -4.50   -2.17    0.87    4.75    9.46   14.71
+    40.0    0.00   -0.25   -0.93   -1.98   -3.28   -4.69   -6.05   -7.21   -8.01   -8.35   -8.17   -7.46   -6.23   -4.46   -2.10    0.97    4.88    9.62   14.90
+    45.0    0.00   -0.25   -0.93   -1.97   -3.26   -4.66   -6.02   -7.16   -7.96   -8.30   -8.13   -7.43   -6.19   -4.42   -2.03    1.08    5.02    9.78   15.07
+    50.0    0.00   -0.24   -0.92   -1.95   -3.24   -4.63   -5.98   -7.12   -7.91   -8.26   -8.09   -7.39   -6.16   -4.37   -1.97    1.17    5.14    9.92   15.22
+    55.0    0.00   -0.24   -0.91   -1.94   -3.21   -4.60   -5.94   -7.07   -7.86   -8.20   -8.04   -7.35   -6.12   -4.33   -1.91    1.24    5.24   10.04   15.34
+    60.0    0.00   -0.24   -0.90   -1.92   -3.19   -4.57   -5.90   -7.02   -7.81   -8.15   -7.99   -7.30   -6.08   -4.29   -1.87    1.30    5.31   10.11   15.41
+    65.0    0.00   -0.23   -0.89   -1.91   -3.17   -4.54   -5.86   -6.97   -7.75   -8.09   -7.93   -7.25   -6.03   -4.25   -1.83    1.33    5.34   10.15   15.45
+    70.0    0.00   -0.23   -0.89   -1.90   -3.15   -4.51   -5.82   -6.93   -7.70   -8.03   -7.88   -7.20   -5.99   -4.22   -1.82    1.33    5.33   10.14   15.45
+    75.0    0.00   -0.23   -0.88   -1.88   -3.13   -4.49   -5.79   -6.89   -7.65   -7.98   -7.82   -7.15   -5.96   -4.21   -1.82    1.31    5.28   10.08   15.40
+    80.0    0.00   -0.23   -0.87   -1.87   -3.12   -4.46   -5.76   -6.85   -7.61   -7.94   -7.78   -7.11   -5.93   -4.20   -1.85    1.25    5.20    9.99   15.32
+    85.0    0.00   -0.22   -0.87   -1.86   -3.10   -4.44   -5.74   -6.83   -7.58   -7.91   -7.75   -7.09   -5.92   -4.21   -1.89    1.17    5.09    9.86   15.20
+    90.0    0.00   -0.22   -0.86   -1.86   -3.09   -4.43   -5.72   -6.81   -7.56   -7.89   -7.73   -7.08   -5.92   -4.24   -1.95    1.08    4.96    9.71   15.05
+    95.0    0.00   -0.22   -0.86   -1.85   -3.09   -4.42   -5.71   -6.80   -7.56   -7.89   -7.73   -7.09   -5.94   -4.28   -2.02    0.97    4.82    9.54   14.88
+   100.0    0.00   -0.22   -0.86   -1.85   -3.08   -4.42   -5.71   -6.80   -7.56   -7.90   -7.75   -7.11   -5.98   -4.34   -2.11    0.86    4.68    9.37   14.70
+   105.0    0.00   -0.22   -0.86   -1.85   -3.08   -4.42   -5.72   -6.81   -7.58   -7.92   -7.78   -7.16   -6.04   -4.41   -2.19    0.75    4.54    9.21   14.52
+   110.0    0.00   -0.21   -0.85   -1.85   -3.09   -4.43   -5.73   -6.83   -7.61   -7.96   -7.83   -7.21   -6.10   -4.49   -2.28    0.64    4.42    9.07   14.35
+   115.0    0.00   -0.21   -0.85   -1.85   -3.09   -4.44   -5.75   -6.86   -7.65   -8.01   -7.89   -7.28   -6.18   -4.57   -2.36    0.56    4.32    8.95   14.20
+   120.0    0.00   -0.21   -0.86   -1.86   -3.10   -4.46   -5.77   -6.90   -7.69   -8.06   -7.95   -7.35   -6.25   -4.64   -2.44    0.48    4.25    8.86   14.08
+   125.0    0.00   -0.21   -0.86   -1.86   -3.12   -4.48   -5.80   -6.93   -7.73   -8.11   -8.01   -7.42   -6.33   -4.72   -2.50    0.43    4.20    8.81   13.99
+   130.0    0.00   -0.21   -0.86   -1.87   -3.13   -4.50   -5.83   -6.97   -7.78   -8.16   -8.07   -7.48   -6.39   -4.78   -2.55    0.40    4.18    8.78   13.94
+   135.0    0.00   -0.21   -0.86   -1.88   -3.15   -4.53   -5.86   -7.01   -7.82   -8.21   -8.12   -7.54   -6.45   -4.83   -2.59    0.38    4.17    8.78   13.92
+   140.0    0.00   -0.21   -0.86   -1.89   -3.16   -4.55   -5.89   -7.04   -7.85   -8.24   -8.16   -7.58   -6.49   -4.87   -2.62    0.37    4.18    8.79   13.93
+   145.0    0.00   -0.21   -0.87   -1.89   -3.18   -4.57   -5.92   -7.07   -7.88   -8.28   -8.19   -7.61   -6.52   -4.89   -2.63    0.37    4.19    8.81   13.95
+   150.0    0.00   -0.21   -0.87   -1.90   -3.19   -4.59   -5.95   -7.10   -7.91   -8.30   -8.21   -7.63   -6.54   -4.90   -2.63    0.37    4.21    8.83   13.98
+   155.0    0.00   -0.21   -0.87   -1.91   -3.20   -4.61   -5.97   -7.12   -7.93   -8.32   -8.23   -7.65   -6.55   -4.91   -2.64    0.38    4.21    8.84   14.00
+   160.0    0.00   -0.21   -0.87   -1.91   -3.21   -4.63   -5.98   -7.13   -7.94   -8.33   -8.24   -7.65   -6.56   -4.91   -2.64    0.38    4.21    8.83   14.00
+   165.0    0.00   -0.21   -0.88   -1.92   -3.22   -4.64   -6.00   -7.14   -7.95   -8.34   -8.24   -7.65   -6.55   -4.91   -2.64    0.37    4.19    8.81   13.98
+   170.0    0.00   -0.21   -0.88   -1.92   -3.23   -4.64   -6.00   -7.15   -7.96   -8.34   -8.25   -7.65   -6.55   -4.91   -2.64    0.35    4.16    8.76   13.93
+   175.0    0.00   -0.21   -0.88   -1.92   -3.23   -4.65   -6.01   -7.16   -7.97   -8.35   -8.25   -7.65   -6.55   -4.90   -2.64    0.33    4.11    8.70   13.87
+   180.0    0.00   -0.21   -0.88   -1.92   -3.23   -4.65   -6.01   -7.16   -7.97   -8.35   -8.25   -7.66   -6.55   -4.90   -2.65    0.31    4.07    8.63   13.79
+   185.0    0.00   -0.21   -0.88   -1.92   -3.23   -4.64   -6.00   -7.16   -7.97   -8.36   -8.26   -7.66   -6.55   -4.90   -2.66    0.28    4.02    8.57   13.72
+   190.0    0.00   -0.21   -0.87   -1.92   -3.22   -4.64   -6.00   -7.15   -7.97   -8.36   -8.26   -7.66   -6.54   -4.90   -2.67    0.26    3.99    8.52   13.66
+   195.0    0.00   -0.21   -0.87   -1.91   -3.21   -4.63   -5.99   -7.15   -7.97   -8.35   -8.25   -7.65   -6.53   -4.89   -2.66    0.26    3.97    8.50   13.64
+   200.0    0.00   -0.21   -0.87   -1.91   -3.20   -4.61   -5.98   -7.14   -7.96   -8.34   -8.24   -7.63   -6.52   -4.88   -2.65    0.27    3.98    8.52   13.67
+   205.0    0.00   -0.21   -0.87   -1.90   -3.19   -4.60   -5.96   -7.12   -7.94   -8.33   -8.22   -7.61   -6.49   -4.85   -2.62    0.30    4.03    8.58   13.75
+   210.0    0.00   -0.21   -0.87   -1.89   -3.18   -4.59   -5.94   -7.10   -7.92   -8.30   -8.19   -7.57   -6.45   -4.80   -2.57    0.35    4.11    8.70   13.88
+   215.0    0.00   -0.21   -0.86   -1.89   -3.17   -4.57   -5.92   -7.08   -7.89   -8.26   -8.14   -7.52   -6.39   -4.74   -2.51    0.44    4.22    8.85   14.06
+   220.0    0.00   -0.21   -0.86   -1.88   -3.16   -4.55   -5.90   -7.05   -7.85   -8.22   -8.09   -7.46   -6.32   -4.67   -2.42    0.54    4.36    9.04   14.28
+   225.0    0.00   -0.21   -0.86   -1.88   -3.15   -4.53   -5.88   -7.01   -7.81   -8.17   -8.03   -7.38   -6.24   -4.58   -2.32    0.67    4.53    9.25   14.52
+   230.0    0.00   -0.21   -0.86   -1.87   -3.14   -4.52   -5.85   -6.98   -7.77   -8.11   -7.96   -7.30   -6.15   -4.48   -2.20    0.81    4.71    9.46   14.74
+   235.0    0.00   -0.21   -0.86   -1.87   -3.13   -4.50   -5.83   -6.95   -7.72   -8.05   -7.89   -7.22   -6.06   -4.37   -2.08    0.96    4.88    9.66   14.94
+   240.0    0.00   -0.22   -0.86   -1.86   -3.12   -4.49   -5.80   -6.91   -7.68   -7.99   -7.82   -7.14   -5.97   -4.27   -1.96    1.10    5.04    9.83   15.09
+   245.0    0.00   -0.22   -0.86   -1.86   -3.12   -4.48   -5.78   -6.88   -7.64   -7.94   -7.76   -7.07   -5.88   -4.17   -1.84    1.23    5.18    9.95   15.17
+   250.0    0.00   -0.22   -0.86   -1.87   -3.11   -4.47   -5.77   -6.86   -7.60   -7.90   -7.71   -7.01   -5.81   -4.08   -1.74    1.34    5.27   10.01   15.19
+   255.0    0.00   -0.22   -0.87   -1.87   -3.12   -4.47   -5.76   -6.84   -7.58   -7.87   -7.67   -6.97   -5.76   -4.01   -1.66    1.41    5.32   10.00   15.12
+   260.0    0.00   -0.22   -0.87   -1.87   -3.12   -4.47   -5.76   -6.84   -7.57   -7.86   -7.65   -6.94   -5.72   -3.97   -1.61    1.45    5.32    9.94   15.00
+   265.0    0.00   -0.23   -0.88   -1.88   -3.13   -4.48   -5.77   -6.84   -7.57   -7.86   -7.65   -6.93   -5.70   -3.94   -1.59    1.45    5.26    9.81   14.82
+   270.0    0.00   -0.23   -0.88   -1.89   -3.14   -4.49   -5.78   -6.85   -7.58   -7.87   -7.66   -6.94   -5.71   -3.94   -1.60    1.41    5.16    9.65   14.61
+   275.0    0.00   -0.23   -0.89   -1.90   -3.16   -4.51   -5.80   -6.88   -7.61   -7.90   -7.69   -6.97   -5.73   -3.97   -1.64    1.33    5.03    9.45   14.39
+   280.0    0.00   -0.23   -0.90   -1.92   -3.18   -4.54   -5.83   -6.91   -7.64   -7.93   -7.73   -7.01   -5.77   -4.02   -1.71    1.23    4.87    9.24   14.18
+   285.0    0.00   -0.24   -0.91   -1.93   -3.20   -4.56   -5.87   -6.95   -7.69   -7.98   -7.78   -7.06   -5.83   -4.09   -1.80    1.10    4.70    9.04   13.99
+   290.0    0.00   -0.24   -0.91   -1.95   -3.23   -4.60   -5.91   -7.00   -7.74   -8.04   -7.83   -7.12   -5.90   -4.17   -1.91    0.96    4.53    8.85   13.85
+   295.0    0.00   -0.24   -0.92   -1.96   -3.25   -4.63   -5.95   -7.05   -7.79   -8.09   -7.90   -7.19   -5.97   -4.26   -2.02    0.82    4.37    8.70   13.74
+   300.0    0.00   -0.25   -0.93   -1.98   -3.28   -4.67   -6.00   -7.10   -7.85   -8.15   -7.96   -7.26   -6.06   -4.36   -2.14    0.69    4.23    8.58   13.68
+   305.0    0.00   -0.25   -0.94   -2.00   -3.30   -4.71   -6.04   -7.16   -7.91   -8.21   -8.02   -7.32   -6.14   -4.46   -2.26    0.57    4.12    8.51   13.66
+   310.0    0.00   -0.25   -0.95   -2.01   -3.33   -4.74   -6.09   -7.21   -7.97   -8.27   -8.08   -7.39   -6.22   -4.55   -2.36    0.46    4.04    8.47   13.66
+   315.0    0.00   -0.26   -0.96   -2.03   -3.35   -4.78   -6.13   -7.26   -8.02   -8.33   -8.14   -7.45   -6.29   -4.64   -2.45    0.39    4.00    8.46   13.68
+   320.0    0.00   -0.26   -0.96   -2.04   -3.37   -4.81   -6.17   -7.30   -8.07   -8.38   -8.19   -7.51   -6.35   -4.71   -2.52    0.33    3.97    8.47   13.69
+   325.0    0.00   -0.26   -0.97   -2.05   -3.39   -4.83   -6.20   -7.34   -8.11   -8.42   -8.23   -7.55   -6.40   -4.76   -2.57    0.30    3.97    8.50   13.71
+   330.0    0.00   -0.26   -0.98   -2.06   -3.41   -4.85   -6.23   -7.37   -8.14   -8.45   -8.27   -7.59   -6.44   -4.81   -2.61    0.28    3.98    8.53   13.70
+   335.0    0.00   -0.26   -0.98   -2.07   -3.42   -4.87   -6.25   -7.40   -8.17   -8.48   -8.30   -7.62   -6.47   -4.83   -2.63    0.28    4.01    8.56   13.69
+   340.0    0.00   -0.27   -0.98   -2.07   -3.42   -4.88   -6.27   -7.42   -8.19   -8.51   -8.32   -7.64   -6.48   -4.84   -2.63    0.29    4.03    8.59   13.67
+   345.0    0.00   -0.27   -0.98   -2.08   -3.43   -4.88   -6.27   -7.43   -8.21   -8.52   -8.33   -7.64   -6.48   -4.84   -2.62    0.30    4.06    8.61   13.65
+   350.0    0.00   -0.27   -0.98   -2.08   -3.43   -4.88   -6.28   -7.43   -8.22   -8.53   -8.33   -7.64   -6.48   -4.82   -2.60    0.33    4.08    8.63   13.63
+   355.0    0.00   -0.27   -0.98   -2.07   -3.42   -4.88   -6.27   -7.43   -8.22   -8.53   -8.33   -7.63   -6.46   -4.80   -2.58    0.35    4.11    8.65   13.64
+   360.0    0.00   -0.27   -0.98   -2.07   -3.42   -4.87   -6.26   -7.43   -8.21   -8.53   -8.32   -7.62   -6.44   -4.77   -2.54    0.39    4.14    8.68   13.67
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.08     -0.59    120.35                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.13   -0.51   -1.08   -1.79   -2.58   -3.39   -4.17   -4.81   -5.21   -5.25   -4.86   -4.03   -2.83   -1.33    0.49    2.75    5.68    9.44
+     0.0    0.00   -0.12   -0.48   -1.02   -1.69   -2.44   -3.24   -4.04   -4.72   -5.17   -5.25   -4.89   -4.12   -3.00   -1.59    0.15    2.44    5.50    9.31
+     5.0    0.00   -0.12   -0.48   -1.02   -1.69   -2.44   -3.24   -4.03   -4.72   -5.16   -5.25   -4.90   -4.13   -3.01   -1.61    0.14    2.42    5.45    9.20
+    10.0    0.00   -0.12   -0.47   -1.01   -1.68   -2.44   -3.24   -4.03   -4.71   -5.15   -5.24   -4.90   -4.13   -3.02   -1.61    0.14    2.41    5.41    9.12
+    15.0    0.00   -0.12   -0.47   -1.01   -1.68   -2.44   -3.24   -4.02   -4.70   -5.14   -5.23   -4.89   -4.13   -3.02   -1.60    0.15    2.41    5.38    9.06
+    20.0    0.00   -0.11   -0.47   -1.01   -1.68   -2.44   -3.24   -4.02   -4.69   -5.13   -5.21   -4.88   -4.12   -3.00   -1.58    0.18    2.43    5.37    9.05
+    25.0    0.00   -0.11   -0.46   -1.00   -1.68   -2.44   -3.24   -4.02   -4.68   -5.11   -5.20   -4.86   -4.10   -2.97   -1.54    0.22    2.46    5.39    9.06
+    30.0    0.00   -0.11   -0.46   -1.00   -1.68   -2.45   -3.24   -4.01   -4.67   -5.09   -5.18   -4.84   -4.07   -2.93   -1.49    0.28    2.51    5.42    9.11
+    35.0    0.00   -0.11   -0.46   -1.00   -1.68   -2.45   -3.24   -4.01   -4.66   -5.08   -5.16   -4.81   -4.03   -2.88   -1.42    0.35    2.58    5.48    9.19
+    40.0    0.00   -0.11   -0.45   -1.00   -1.68   -2.45   -3.25   -4.01   -4.65   -5.06   -5.13   -4.78   -4.00   -2.83   -1.36    0.42    2.65    5.55    9.30
+    45.0    0.00   -0.10   -0.45   -0.99   -1.68   -2.45   -3.25   -4.01   -4.65   -5.05   -5.11   -4.75   -3.96   -2.78   -1.30    0.49    2.72    5.62    9.41
+    50.0    0.00   -0.10   -0.45   -0.99   -1.68   -2.45   -3.25   -4.01   -4.65   -5.05   -5.10   -4.72   -3.92   -2.73   -1.24    0.56    2.78    5.69    9.52
+    55.0    0.00   -0.10   -0.45   -0.99   -1.68   -2.46   -3.26   -4.02   -4.65   -5.04   -5.09   -4.70   -3.88   -2.69   -1.19    0.60    2.84    5.76    9.62
+    60.0    0.00   -0.10   -0.44   -0.99   -1.68   -2.46   -3.27   -4.03   -4.66   -5.05   -5.08   -4.68   -3.86   -2.66   -1.16    0.64    2.87    5.81    9.70
+    65.0    0.00   -0.10   -0.44   -0.99   -1.69   -2.47   -3.28   -4.05   -4.68   -5.06   -5.08   -4.67   -3.84   -2.64   -1.15    0.65    2.89    5.84    9.76
+    70.0    0.00   -0.10   -0.44   -0.99   -1.69   -2.48   -3.30   -4.07   -4.70   -5.07   -5.08   -4.67   -3.83   -2.64   -1.15    0.64    2.88    5.85    9.79
+    75.0    0.00   -0.10   -0.44   -0.99   -1.69   -2.49   -3.31   -4.09   -4.72   -5.09   -5.09   -4.67   -3.84   -2.65   -1.17    0.61    2.86    5.83    9.78
+    80.0    0.00   -0.10   -0.45   -1.00   -1.70   -2.50   -3.33   -4.12   -4.75   -5.11   -5.11   -4.68   -3.85   -2.67   -1.21    0.57    2.82    5.80    9.74
+    85.0    0.00   -0.10   -0.45   -1.00   -1.71   -2.52   -3.36   -4.14   -4.78   -5.14   -5.13   -4.70   -3.87   -2.70   -1.25    0.52    2.77    5.75    9.67
+    90.0    0.00   -0.10   -0.45   -1.01   -1.72   -2.54   -3.38   -4.17   -4.81   -5.17   -5.15   -4.72   -3.89   -2.73   -1.29    0.47    2.71    5.68    9.57
+    95.0    0.00   -0.10   -0.46   -1.02   -1.74   -2.55   -3.40   -4.20   -4.83   -5.19   -5.18   -4.74   -3.92   -2.77   -1.33    0.42    2.66    5.62    9.47
+   100.0    0.00   -0.11   -0.46   -1.03   -1.75   -2.58   -3.43   -4.22   -4.86   -5.22   -5.20   -4.77   -3.95   -2.80   -1.37    0.38    2.61    5.56    9.36
+   105.0    0.00   -0.11   -0.47   -1.04   -1.77   -2.60   -3.45   -4.25   -4.88   -5.24   -5.22   -4.79   -3.97   -2.82   -1.40    0.35    2.58    5.51    9.26
+   110.0    0.00   -0.11   -0.48   -1.05   -1.79   -2.62   -3.47   -4.27   -4.90   -5.26   -5.25   -4.82   -4.00   -2.84   -1.41    0.35    2.57    5.48    9.18
+   115.0    0.00   -0.11   -0.48   -1.07   -1.81   -2.64   -3.50   -4.29   -4.92   -5.28   -5.26   -4.84   -4.01   -2.85   -1.41    0.36    2.58    5.46    9.13
+   120.0    0.00   -0.12   -0.49   -1.08   -1.83   -2.66   -3.52   -4.30   -4.93   -5.29   -5.28   -4.85   -4.03   -2.86   -1.39    0.38    2.61    5.47    9.10
+   125.0    0.00   -0.12   -0.50   -1.10   -1.85   -2.68   -3.53   -4.32   -4.94   -5.30   -5.29   -4.87   -4.03   -2.85   -1.37    0.43    2.65    5.50    9.09
+   130.0    0.00   -0.12   -0.50   -1.11   -1.86   -2.70   -3.55   -4.33   -4.95   -5.30   -5.30   -4.88   -4.04   -2.84   -1.33    0.48    2.71    5.54    9.11
+   135.0    0.00   -0.12   -0.51   -1.12   -1.88   -2.72   -3.56   -4.33   -4.95   -5.30   -5.30   -4.88   -4.04   -2.82   -1.29    0.54    2.77    5.60    9.15
+   140.0    0.00   -0.13   -0.52   -1.13   -1.89   -2.73   -3.57   -4.33   -4.95   -5.31   -5.31   -4.89   -4.04   -2.80   -1.25    0.60    2.84    5.66    9.19
+   145.0    0.00   -0.13   -0.52   -1.14   -1.90   -2.74   -3.57   -4.33   -4.94   -5.31   -5.31   -4.89   -4.04   -2.79   -1.22    0.65    2.90    5.71    9.23
+   150.0    0.00   -0.13   -0.53   -1.15   -1.91   -2.74   -3.57   -4.33   -4.94   -5.31   -5.32   -4.90   -4.04   -2.78   -1.19    0.69    2.94    5.74    9.25
+   155.0    0.00   -0.13   -0.53   -1.15   -1.91   -2.74   -3.57   -4.33   -4.94   -5.31   -5.33   -4.91   -4.05   -2.78   -1.18    0.71    2.97    5.76    9.25
+   160.0    0.00   -0.13   -0.53   -1.15   -1.91   -2.74   -3.56   -4.32   -4.93   -5.31   -5.33   -4.92   -4.06   -2.78   -1.18    0.71    2.97    5.76    9.23
+   165.0    0.00   -0.14   -0.54   -1.15   -1.91   -2.73   -3.55   -4.31   -4.93   -5.31   -5.34   -4.94   -4.07   -2.80   -1.19    0.70    2.95    5.73    9.18
+   170.0    0.00   -0.14   -0.54   -1.15   -1.90   -2.72   -3.54   -4.30   -4.93   -5.32   -5.35   -4.95   -4.09   -2.82   -1.22    0.66    2.91    5.68    9.11
+   175.0    0.00   -0.14   -0.54   -1.15   -1.90   -2.71   -3.53   -4.30   -4.93   -5.32   -5.36   -4.96   -4.11   -2.84   -1.26    0.61    2.85    5.62    9.03
+   180.0    0.00   -0.14   -0.54   -1.14   -1.89   -2.70   -3.52   -4.29   -4.93   -5.33   -5.37   -4.97   -4.12   -2.87   -1.30    0.55    2.77    5.55    8.96
+   185.0    0.00   -0.14   -0.54   -1.14   -1.87   -2.69   -3.51   -4.29   -4.93   -5.34   -5.38   -4.98   -4.13   -2.89   -1.35    0.48    2.70    5.48    8.89
+   190.0    0.00   -0.14   -0.53   -1.13   -1.86   -2.67   -3.50   -4.29   -4.94   -5.34   -5.38   -4.97   -4.12   -2.90   -1.38    0.42    2.63    5.42    8.86
+   195.0    0.00   -0.14   -0.53   -1.12   -1.85   -2.66   -3.49   -4.28   -4.94   -5.34   -5.37   -4.96   -4.11   -2.90   -1.40    0.38    2.58    5.39    8.87
+   200.0    0.00   -0.14   -0.53   -1.12   -1.84   -2.65   -3.49   -4.29   -4.95   -5.34   -5.36   -4.94   -4.09   -2.89   -1.41    0.35    2.55    5.39    8.92
+   205.0    0.00   -0.15   -0.53   -1.11   -1.83   -2.64   -3.48   -4.29   -4.95   -5.34   -5.35   -4.91   -4.05   -2.86   -1.40    0.35    2.55    5.43    9.01
+   210.0    0.00   -0.15   -0.53   -1.11   -1.82   -2.63   -3.48   -4.29   -4.95   -5.34   -5.33   -4.88   -4.01   -2.82   -1.36    0.38    2.59    5.50    9.15
+   215.0    0.00   -0.15   -0.53   -1.10   -1.82   -2.63   -3.48   -4.29   -4.95   -5.33   -5.32   -4.85   -3.97   -2.77   -1.31    0.44    2.67    5.61    9.32
+   220.0    0.00   -0.15   -0.53   -1.10   -1.82   -2.63   -3.48   -4.29   -4.95   -5.32   -5.30   -4.82   -3.93   -2.71   -1.24    0.52    2.78    5.76    9.50
+   225.0    0.00   -0.15   -0.53   -1.10   -1.82   -2.63   -3.47   -4.28   -4.94   -5.31   -5.28   -4.79   -3.89   -2.66   -1.17    0.63    2.91    5.91    9.68
+   230.0    0.00   -0.15   -0.53   -1.11   -1.82   -2.63   -3.47   -4.28   -4.93   -5.30   -5.27   -4.78   -3.86   -2.61   -1.09    0.75    3.06    6.07    9.84
+   235.0    0.00   -0.15   -0.54   -1.11   -1.82   -2.63   -3.47   -4.27   -4.92   -5.29   -5.26   -4.77   -3.85   -2.58   -1.01    0.86    3.21    6.22    9.96
+   240.0    0.00   -0.15   -0.54   -1.11   -1.83   -2.63   -3.47   -4.26   -4.91   -5.28   -5.26   -4.78   -3.86   -2.56   -0.95    0.97    3.35    6.35   10.04
+   245.0    0.00   -0.15   -0.54   -1.12   -1.83   -2.63   -3.46   -4.25   -4.89   -5.27   -5.26   -4.80   -3.88   -2.56   -0.91    1.06    3.46    6.44   10.07
+   250.0    0.00   -0.15   -0.54   -1.12   -1.84   -2.63   -3.46   -4.23   -4.88   -5.26   -5.27   -4.83   -3.92   -2.58   -0.90    1.12    3.53    6.48   10.05
+   255.0    0.00   -0.16   -0.55   -1.13   -1.84   -2.64   -3.45   -4.22   -4.86   -5.26   -5.29   -4.87   -3.97   -2.63   -0.91    1.14    3.56    6.47    9.98
+   260.0    0.00   -0.16   -0.55   -1.13   -1.85   -2.64   -3.44   -4.20   -4.84   -5.25   -5.31   -4.91   -4.03   -2.68   -0.95    1.12    3.54    6.41    9.87
+   265.0    0.00   -0.16   -0.55   -1.14   -1.85   -2.64   -3.43   -4.19   -4.83   -5.25   -5.33   -4.96   -4.09   -2.75   -1.01    1.07    3.48    6.31    9.74
+   270.0    0.00   -0.16   -0.56   -1.14   -1.86   -2.63   -3.43   -4.18   -4.82   -5.25   -5.34   -5.00   -4.15   -2.82   -1.08    0.98    3.37    6.18    9.61
+   275.0    0.00   -0.16   -0.56   -1.14   -1.86   -2.63   -3.42   -4.16   -4.80   -5.24   -5.36   -5.03   -4.20   -2.89   -1.17    0.87    3.23    6.03    9.50
+   280.0    0.00   -0.16   -0.56   -1.15   -1.86   -2.63   -3.41   -4.15   -4.79   -5.24   -5.36   -5.05   -4.24   -2.95   -1.26    0.75    3.08    5.88    9.41
+   285.0    0.00   -0.16   -0.56   -1.14   -1.85   -2.62   -3.40   -4.14   -4.79   -5.23   -5.36   -5.06   -4.27   -3.00   -1.35    0.62    2.92    5.73    9.36
+   290.0    0.00   -0.16   -0.56   -1.14   -1.85   -2.61   -3.39   -4.13   -4.78   -5.23   -5.36   -5.06   -4.28   -3.04   -1.42    0.50    2.77    5.60    9.35
+   295.0    0.00   -0.16   -0.55   -1.14   -1.84   -2.60   -3.38   -4.12   -4.77   -5.22   -5.35   -5.05   -4.27   -3.05   -1.48    0.39    2.64    5.51    9.38
+   300.0    0.00   -0.15   -0.55   -1.13   -1.83   -2.59   -3.37   -4.12   -4.77   -5.21   -5.33   -5.02   -4.25   -3.06   -1.53    0.30    2.53    5.45    9.45
+   305.0    0.00   -0.15   -0.55   -1.12   -1.82   -2.57   -3.35   -4.11   -4.76   -5.20   -5.31   -4.99   -4.22   -3.04   -1.55    0.24    2.46    5.42    9.53
+   310.0    0.00   -0.15   -0.54   -1.11   -1.80   -2.56   -3.34   -4.10   -4.76   -5.20   -5.29   -4.96   -4.18   -3.02   -1.56    0.20    2.41    5.42    9.63
+   315.0    0.00   -0.15   -0.54   -1.10   -1.79   -2.54   -3.33   -4.09   -4.75   -5.19   -5.28   -4.93   -4.14   -2.99   -1.55    0.18    2.40    5.45    9.72
+   320.0    0.00   -0.15   -0.53   -1.09   -1.77   -2.52   -3.31   -4.08   -4.75   -5.18   -5.26   -4.90   -4.11   -2.96   -1.54    0.18    2.40    5.50    9.80
+   325.0    0.00   -0.14   -0.53   -1.08   -1.76   -2.51   -3.30   -4.07   -4.74   -5.18   -5.25   -4.88   -4.08   -2.94   -1.53    0.18    2.42    5.54    9.84
+   330.0    0.00   -0.14   -0.52   -1.07   -1.74   -2.49   -3.28   -4.07   -4.74   -5.18   -5.24   -4.86   -4.06   -2.92   -1.52    0.19    2.45    5.59    9.85
+   335.0    0.00   -0.14   -0.51   -1.06   -1.73   -2.48   -3.27   -4.06   -4.74   -5.17   -5.24   -4.86   -4.05   -2.92   -1.52    0.20    2.47    5.62    9.83
+   340.0    0.00   -0.14   -0.51   -1.05   -1.72   -2.46   -3.26   -4.05   -4.74   -5.17   -5.24   -4.86   -4.06   -2.92   -1.52    0.21    2.49    5.63    9.76
+   345.0    0.00   -0.13   -0.50   -1.04   -1.71   -2.46   -3.25   -4.05   -4.73   -5.17   -5.24   -4.86   -4.07   -2.93   -1.53    0.20    2.49    5.62    9.67
+   350.0    0.00   -0.13   -0.49   -1.03   -1.70   -2.45   -3.25   -4.04   -4.73   -5.17   -5.24   -4.87   -4.08   -2.95   -1.55    0.19    2.48    5.59    9.55
+   355.0    0.00   -0.13   -0.49   -1.03   -1.69   -2.44   -3.24   -4.04   -4.73   -5.17   -5.25   -4.88   -4.10   -2.98   -1.57    0.17    2.46    5.55    9.43
+   360.0    0.00   -0.12   -0.48   -1.02   -1.69   -2.44   -3.24   -4.04   -4.72   -5.17   -5.25   -4.89   -4.12   -3.00   -1.59    0.15    2.44    5.50    9.31
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TPSCR4          CONE                                        TYPE / SERIAL NO    
+FIELD               NGS                      3    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.78      0.23     91.05                              NORTH / EAST / UP   
+   NOAZI    0.00    0.37    0.00   -0.83   -2.02   -3.52   -4.96   -6.29   -7.27   -7.71   -7.66   -6.99   -5.73   -3.85   -1.18    2.39    6.87
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.08     -1.29    119.15                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.73   -1.41   -1.98   -2.59   -3.18   -3.89   -4.47   -5.11   -5.41   -5.55   -5.26   -4.63   -3.53   -2.13   -0.11    2.45
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TPSG3_A1        NONE                                        TYPE / SERIAL NO    
+FIELD               NGS                      3    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.78     -0.47     33.35                              NORTH / EAST / UP   
+   NOAZI    0.00    1.77    2.60    2.67    2.28    1.48    0.64   -0.09   -0.67   -1.01   -0.96   -0.59   -0.13    0.45    1.22    1.99    2.77
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.02     -0.79     41.25                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.03    0.09    0.32    0.61    0.82    0.81    0.53    0.29   -0.21   -0.55   -0.86   -0.93   -0.93   -0.73   -0.11    0.95
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TPSG3_A1        TPSD                                        TYPE / SERIAL NO    
+FIELD               NGS                      3    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.98     -0.17     33.15                              NORTH / EAST / UP   
+   NOAZI    0.00    1.47    2.10    2.17    1.78    1.08    0.24   -0.49   -1.07   -1.31   -1.36   -1.09   -0.63   -0.05    0.72    1.69    2.77
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.52      0.11     42.35                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.03    0.09    0.32    0.61    0.72    0.71    0.53    0.09   -0.31   -0.75   -1.06   -1.13   -1.13   -0.93   -0.41    0.65
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TPSHIPER_GD     NONE                                        TYPE / SERIAL NO    
+FIELD               NGS                      4    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+     -1.12     -1.17     87.85                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.53   -0.60   -0.43   -0.22   -0.02    0.14    0.21    0.23    0.29    0.24    0.11    0.07   -0.05    0.12    0.79    2.17
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -1.28     -1.39     93.55                              NORTH / EAST / UP   
+   NOAZI    0.00   -1.03   -1.51   -1.58   -1.69   -1.58   -1.49   -1.57   -1.51   -1.71   -1.75   -1.86   -1.83   -1.93   -2.03   -2.21   -2.35
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TPSHIPER_GGD    NONE                                        TYPE / SERIAL NO    
+FIELD               NGS                      4    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+     -1.12     -1.17     87.85                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.53   -0.60   -0.43   -0.22   -0.02    0.14    0.21    0.23    0.29    0.24    0.11    0.07   -0.05    0.12    0.79    2.17
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -1.28     -1.39     93.55                              NORTH / EAST / UP   
+   NOAZI    0.00   -1.03   -1.51   -1.58   -1.69   -1.58   -1.49   -1.57   -1.51   -1.71   -1.75   -1.86   -1.83   -1.93   -2.03   -2.21   -2.35
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TPSHIPER_LITE   NONE                                        TYPE / SERIAL NO    
+FIELD               NGS                      3    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.68      1.73     87.95                              NORTH / EAST / UP   
+   NOAZI    0.00    0.17    0.50    0.77    0.98    0.98    1.04    1.01    1.03    1.09    1.24    1.41    1.67    1.85    2.32    3.09    4.47
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.02      1.01     88.05                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.73   -1.01   -1.18   -1.09   -0.98   -0.99   -0.97   -1.11   -1.11   -1.15   -1.16   -1.03   -0.83   -0.53   -0.31    0.25
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TPSHIPER_PLUS   NONE                                        TYPE / SERIAL NO    
+FIELD               NGS                      3    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+     -0.22      1.23     87.75                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.03    0.20    0.67    0.98    1.18    1.34    1.51    1.53    1.59    1.54    1.61    1.57    1.65    1.92    2.59    3.97
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.78      0.11     89.45                              NORTH / EAST / UP   
+   NOAZI    0.00   -1.03   -1.61   -1.88   -1.89   -1.88   -1.79   -1.77   -1.91   -2.01   -2.05   -2.06   -1.83   -1.63   -1.33   -0.81   -0.05
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TPSLEGANT_G     NONE                                        TYPE / SERIAL NO    
+FIELD               NGS                      3    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     1                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      3.08     -0.07     60.75                              NORTH / EAST / UP   
+   NOAZI    0.00    0.57    1.00    1.07    0.98    0.68    0.34   -0.09   -0.47   -0.71   -0.86   -0.79   -0.83   -0.65   -0.48   -0.11    0.67
+   G01                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TPSLEGANT2      NONE                                        TYPE / SERIAL NO    
+FIELD               NGS                      3    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.58     -0.87     39.55                              NORTH / EAST / UP   
+   NOAZI    0.00   -1.13   -1.70   -1.93   -1.92   -1.72   -1.66   -1.59   -1.47   -1.41   -1.36   -1.19   -1.03   -0.75   -0.18    1.09    3.27
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.02     -1.79     57.25                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.73   -1.11   -1.28   -1.29   -1.28   -1.19   -1.17   -1.11   -1.01   -0.95   -0.76   -0.63   -0.63   -0.83   -1.21   -1.75
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TPSLEGANT3_UHF  NONE                                        TYPE / SERIAL NO    
+FIELD               NGS                      3    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+     -0.12      0.23     95.95                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.13   -0.10   -0.03   -0.02   -0.02   -0.06    0.01    0.13    0.39    0.54    0.81    0.87    0.75    0.42    0.09   -0.33
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.08     -0.29    104.95                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.63   -1.01   -1.18   -1.19   -1.18   -1.19   -1.27   -1.41   -1.51   -1.55   -1.46   -1.33   -1.13   -1.03   -0.91   -0.75
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TPSODYSSEY_I    NONE                                        TYPE / SERIAL NO    
+FIELD               NGS                      1    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.98     -2.27     70.35                              NORTH / EAST / UP   
+   NOAZI    0.00    0.47    0.80    0.97    0.98    0.88    0.64    0.51    0.33    0.19    0.24    0.41    0.57    0.75    1.12    1.69    2.77
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.38     -2.29     81.25                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.03   -0.01    0.02    0.01    0.02    0.01   -0.07   -0.11   -0.21   -0.15    0.04    0.17    0.17   -0.03   -0.61   -1.45
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TPSPG_A1        NONE                                        TYPE / SERIAL NO    
+FIELD               NGS                      3    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      1.28      1.83     36.15                              NORTH / EAST / UP   
+   NOAZI    0.00   -1.03   -1.40   -1.33   -1.02   -0.72   -0.56   -0.39   -0.37   -0.41   -0.56   -0.59   -0.53   -0.25    0.62    2.39    5.47
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.32     -0.79     52.85                              NORTH / EAST / UP   
+   NOAZI    0.00   -2.23   -3.71   -4.48   -4.89   -5.08   -4.99   -4.77   -4.61   -4.41   -4.15   -3.96   -3.73   -3.73   -3.93   -4.41   -5.05
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TPSPG_A1+GP     NONE                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               6    04-MAY-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     4                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+# Number of Calibrated Antennas:           6                COMMENT             
+# Number of Individual GPS-Calibrations:  12                COMMENT             
+# Number of Individual GLO-Calibrations:  12                COMMENT             
+# GLONASS PCV                                               COMMENT             
+#  derived from Delta PCV per 25.0 MHz                      COMMENT             
+#  for frequency channel number k=0                         COMMENT             
+   G01                                                      START OF FREQUENCY  
+     -0.09      0.02     34.77                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.09   -0.35   -0.74   -1.16   -1.52   -1.73   -1.75   -1.66   -1.59   -1.68   -1.99   -2.34   -2.42   -1.85   -0.41    1.69    3.81    4.96
+     0.0    0.00   -0.12   -0.44   -0.90   -1.40   -1.83   -2.08   -2.13   -2.03   -1.92   -1.98   -2.24   -2.59   -2.72   -2.25   -0.90    1.23    3.61    5.28
+     5.0    0.00   -0.12   -0.43   -0.88   -1.37   -1.80   -2.04   -2.08   -1.98   -1.87   -1.91   -2.15   -2.48   -2.59   -2.10   -0.77    1.33    3.67    5.29
+    10.0    0.00   -0.12   -0.42   -0.86   -1.35   -1.76   -2.00   -2.04   -1.93   -1.81   -1.84   -2.06   -2.35   -2.43   -1.91   -0.57    1.53    3.82    5.34
+    15.0    0.00   -0.11   -0.41   -0.84   -1.31   -1.72   -1.95   -1.98   -1.88   -1.76   -1.78   -1.98   -2.24   -2.27   -1.70   -0.31    1.80    4.05    5.45
+    20.0    0.00   -0.11   -0.39   -0.82   -1.28   -1.67   -1.90   -1.93   -1.82   -1.71   -1.72   -1.91   -2.14   -2.11   -1.48   -0.03    2.12    4.34    5.62
+    25.0    0.00   -0.10   -0.38   -0.79   -1.24   -1.62   -1.84   -1.87   -1.76   -1.65   -1.67   -1.85   -2.06   -1.99   -1.29    0.25    2.46    4.69    5.84
+    30.0    0.00   -0.10   -0.37   -0.76   -1.20   -1.57   -1.78   -1.81   -1.71   -1.60   -1.63   -1.81   -2.01   -1.90   -1.13    0.50    2.79    5.04    6.11
+    35.0    0.00   -0.09   -0.35   -0.74   -1.16   -1.52   -1.72   -1.75   -1.64   -1.55   -1.59   -1.79   -1.99   -1.85   -1.03    0.69    3.07    5.36    6.39
+    40.0    0.00   -0.09   -0.34   -0.71   -1.12   -1.47   -1.66   -1.68   -1.58   -1.50   -1.56   -1.78   -1.99   -1.86   -0.99    0.79    3.26    5.62    6.65
+    45.0    0.00   -0.08   -0.32   -0.68   -1.08   -1.41   -1.60   -1.62   -1.52   -1.46   -1.54   -1.79   -2.03   -1.90   -1.02    0.81    3.34    5.77    6.87
+    50.0    0.00   -0.08   -0.31   -0.65   -1.04   -1.36   -1.54   -1.56   -1.47   -1.41   -1.52   -1.80   -2.07   -1.98   -1.12    0.72    3.30    5.81    7.01
+    55.0    0.00   -0.07   -0.29   -0.63   -1.00   -1.31   -1.49   -1.50   -1.42   -1.37   -1.50   -1.81   -2.13   -2.09   -1.26    0.56    3.15    5.72    7.05
+    60.0    0.00   -0.07   -0.28   -0.60   -0.96   -1.27   -1.44   -1.45   -1.37   -1.33   -1.48   -1.82   -2.19   -2.20   -1.44    0.34    2.91    5.51    6.96
+    65.0    0.00   -0.06   -0.27   -0.58   -0.93   -1.23   -1.40   -1.41   -1.33   -1.30   -1.46   -1.83   -2.24   -2.31   -1.62    0.07    2.59    5.20    6.76
+    70.0    0.00   -0.06   -0.26   -0.57   -0.91   -1.20   -1.36   -1.37   -1.30   -1.27   -1.44   -1.83   -2.28   -2.41   -1.80   -0.20    2.24    4.81    6.45
+    75.0    0.00   -0.06   -0.26   -0.55   -0.89   -1.17   -1.34   -1.35   -1.27   -1.25   -1.43   -1.83   -2.30   -2.48   -1.95   -0.45    1.88    4.38    6.05
+    80.0    0.00   -0.06   -0.25   -0.55   -0.88   -1.16   -1.32   -1.33   -1.26   -1.24   -1.41   -1.82   -2.31   -2.53   -2.06   -0.66    1.56    3.96    5.60
+    85.0    0.00   -0.05   -0.25   -0.54   -0.87   -1.15   -1.31   -1.33   -1.26   -1.23   -1.41   -1.81   -2.31   -2.55   -2.14   -0.81    1.29    3.57    5.13
+    90.0    0.00   -0.05   -0.25   -0.54   -0.87   -1.16   -1.32   -1.34   -1.26   -1.24   -1.41   -1.81   -2.30   -2.55   -2.17   -0.91    1.08    3.24    4.68
+    95.0    0.00   -0.05   -0.25   -0.55   -0.88   -1.17   -1.34   -1.36   -1.28   -1.26   -1.42   -1.81   -2.29   -2.54   -2.17   -0.96    0.96    2.98    4.29
+   100.0    0.00   -0.05   -0.25   -0.55   -0.90   -1.19   -1.37   -1.39   -1.31   -1.28   -1.43   -1.82   -2.29   -2.53   -2.15   -0.96    0.90    2.82    3.97
+   105.0    0.00   -0.05   -0.26   -0.57   -0.92   -1.22   -1.40   -1.43   -1.35   -1.32   -1.46   -1.83   -2.29   -2.51   -2.13   -0.94    0.89    2.73    3.75
+   110.0    0.00   -0.05   -0.26   -0.58   -0.94   -1.26   -1.45   -1.48   -1.40   -1.36   -1.50   -1.86   -2.31   -2.51   -2.11   -0.91    0.91    2.70    3.62
+   115.0    0.00   -0.06   -0.27   -0.60   -0.97   -1.30   -1.50   -1.53   -1.46   -1.41   -1.54   -1.90   -2.34   -2.53   -2.11   -0.88    0.95    2.73    3.58
+   120.0    0.00   -0.06   -0.28   -0.62   -1.01   -1.35   -1.55   -1.59   -1.51   -1.46   -1.59   -1.94   -2.37   -2.56   -2.13   -0.88    0.97    2.77    3.61
+   125.0    0.00   -0.06   -0.29   -0.64   -1.04   -1.39   -1.60   -1.64   -1.56   -1.51   -1.63   -1.98   -2.42   -2.61   -2.17   -0.91    0.98    2.83    3.69
+   130.0    0.00   -0.06   -0.29   -0.65   -1.06   -1.43   -1.65   -1.69   -1.61   -1.55   -1.67   -2.02   -2.46   -2.66   -2.24   -0.96    0.96    2.86    3.79
+   135.0    0.00   -0.06   -0.30   -0.67   -1.09   -1.46   -1.68   -1.73   -1.64   -1.58   -1.70   -2.05   -2.50   -2.72   -2.31   -1.04    0.91    2.88    3.89
+   140.0    0.00   -0.07   -0.31   -0.68   -1.11   -1.48   -1.71   -1.75   -1.66   -1.60   -1.71   -2.07   -2.54   -2.78   -2.39   -1.13    0.84    2.87    3.97
+   145.0    0.00   -0.07   -0.32   -0.69   -1.12   -1.49   -1.72   -1.75   -1.66   -1.60   -1.71   -2.07   -2.55   -2.82   -2.45   -1.21    0.76    2.83    4.02
+   150.0    0.00   -0.07   -0.32   -0.70   -1.13   -1.49   -1.71   -1.74   -1.65   -1.58   -1.69   -2.06   -2.55   -2.84   -2.50   -1.29    0.67    2.77    4.04
+   155.0    0.00   -0.07   -0.33   -0.70   -1.12   -1.48   -1.69   -1.71   -1.61   -1.54   -1.66   -2.04   -2.54   -2.83   -2.52   -1.34    0.60    2.71    4.03
+   160.0    0.00   -0.07   -0.33   -0.70   -1.12   -1.46   -1.65   -1.66   -1.56   -1.49   -1.62   -1.99   -2.50   -2.81   -2.52   -1.37    0.55    2.65    4.00
+   165.0    0.00   -0.08   -0.33   -0.70   -1.10   -1.43   -1.61   -1.61   -1.50   -1.43   -1.56   -1.94   -2.45   -2.76   -2.48   -1.36    0.53    2.61    3.96
+   170.0    0.00   -0.08   -0.33   -0.70   -1.09   -1.40   -1.56   -1.54   -1.43   -1.36   -1.49   -1.87   -2.38   -2.69   -2.43   -1.32    0.53    2.59    3.93
+   175.0    0.00   -0.08   -0.33   -0.69   -1.07   -1.36   -1.50   -1.47   -1.35   -1.29   -1.42   -1.80   -2.30   -2.61   -2.35   -1.26    0.57    2.59    3.92
+   180.0    0.00   -0.08   -0.33   -0.68   -1.05   -1.33   -1.45   -1.41   -1.28   -1.21   -1.35   -1.72   -2.22   -2.52   -2.26   -1.18    0.62    2.63    3.94
+   185.0    0.00   -0.08   -0.33   -0.67   -1.03   -1.29   -1.40   -1.35   -1.22   -1.14   -1.27   -1.65   -2.13   -2.42   -2.16   -1.09    0.70    2.69    3.99
+   190.0    0.00   -0.08   -0.32   -0.66   -1.01   -1.26   -1.36   -1.30   -1.16   -1.08   -1.21   -1.57   -2.04   -2.33   -2.06   -1.00    0.79    2.78    4.09
+   195.0    0.00   -0.08   -0.32   -0.66   -1.00   -1.24   -1.34   -1.27   -1.12   -1.04   -1.15   -1.50   -1.96   -2.24   -1.97   -0.90    0.89    2.90    4.22
+   200.0    0.00   -0.08   -0.32   -0.65   -0.99   -1.23   -1.32   -1.25   -1.10   -1.00   -1.10   -1.44   -1.89   -2.16   -1.88   -0.80    1.01    3.04    4.37
+   205.0    0.00   -0.08   -0.32   -0.65   -0.98   -1.23   -1.32   -1.25   -1.08   -0.97   -1.06   -1.38   -1.82   -2.09   -1.80   -0.70    1.14    3.19    4.55
+   210.0    0.00   -0.08   -0.32   -0.65   -0.98   -1.23   -1.33   -1.25   -1.09   -0.96   -1.03   -1.35   -1.78   -2.02   -1.72   -0.59    1.28    3.37    4.73
+   215.0    0.00   -0.08   -0.32   -0.65   -0.99   -1.24   -1.34   -1.27   -1.10   -0.97   -1.03   -1.32   -1.74   -1.98   -1.64   -0.48    1.44    3.56    4.91
+   220.0    0.00   -0.09   -0.32   -0.65   -1.00   -1.26   -1.37   -1.30   -1.12   -0.98   -1.03   -1.32   -1.73   -1.94   -1.57   -0.36    1.61    3.75    5.08
+   225.0    0.00   -0.09   -0.32   -0.66   -1.01   -1.28   -1.40   -1.33   -1.16   -1.01   -1.06   -1.34   -1.73   -1.92   -1.51   -0.24    1.79    3.96    5.24
+   230.0    0.00   -0.09   -0.33   -0.66   -1.02   -1.31   -1.43   -1.37   -1.20   -1.05   -1.10   -1.38   -1.76   -1.92   -1.45   -0.11    1.97    4.15    5.37
+   235.0    0.00   -0.09   -0.33   -0.67   -1.04   -1.34   -1.47   -1.42   -1.25   -1.11   -1.15   -1.43   -1.80   -1.93   -1.40    0.01    2.15    4.33    5.47
+   240.0    0.00   -0.09   -0.33   -0.68   -1.06   -1.37   -1.51   -1.47   -1.30   -1.17   -1.22   -1.51   -1.86   -1.95   -1.36    0.12    2.31    4.48    5.54
+   245.0    0.00   -0.09   -0.34   -0.69   -1.08   -1.40   -1.56   -1.52   -1.37   -1.24   -1.31   -1.59   -1.94   -1.99   -1.34    0.21    2.44    4.59    5.57
+   250.0    0.00   -0.10   -0.35   -0.71   -1.11   -1.44   -1.61   -1.59   -1.44   -1.33   -1.40   -1.69   -2.02   -2.03   -1.33    0.27    2.53    4.66    5.56
+   255.0    0.00   -0.10   -0.35   -0.72   -1.14   -1.48   -1.67   -1.66   -1.53   -1.43   -1.51   -1.79   -2.11   -2.09   -1.34    0.30    2.57    4.67    5.52
+   260.0    0.00   -0.10   -0.36   -0.74   -1.17   -1.53   -1.73   -1.74   -1.62   -1.53   -1.61   -1.89   -2.19   -2.14   -1.36    0.30    2.56    4.63    5.44
+   265.0    0.00   -0.11   -0.37   -0.76   -1.20   -1.58   -1.80   -1.82   -1.72   -1.64   -1.72   -1.99   -2.27   -2.19   -1.39    0.28    2.52    4.54    5.33
+   270.0    0.00   -0.11   -0.38   -0.78   -1.24   -1.63   -1.87   -1.91   -1.82   -1.75   -1.82   -2.08   -2.34   -2.24   -1.43    0.24    2.44    4.42    5.20
+   275.0    0.00   -0.11   -0.39   -0.80   -1.27   -1.69   -1.95   -2.01   -1.93   -1.85   -1.92   -2.16   -2.39   -2.28   -1.46    0.18    2.35    4.29    5.05
+   280.0    0.00   -0.11   -0.40   -0.82   -1.31   -1.74   -2.02   -2.10   -2.03   -1.95   -2.01   -2.23   -2.44   -2.31   -1.49    0.13    2.26    4.15    4.91
+   285.0    0.00   -0.12   -0.41   -0.84   -1.34   -1.80   -2.10   -2.19   -2.13   -2.05   -2.09   -2.29   -2.48   -2.33   -1.52    0.08    2.17    4.03    4.78
+   290.0    0.00   -0.12   -0.42   -0.86   -1.38   -1.85   -2.16   -2.27   -2.21   -2.13   -2.16   -2.34   -2.51   -2.36   -1.54    0.04    2.11    3.95    4.68
+   295.0    0.00   -0.12   -0.43   -0.88   -1.41   -1.89   -2.22   -2.33   -2.28   -2.19   -2.21   -2.38   -2.54   -2.38   -1.57    0.02    2.07    3.90    4.62
+   300.0    0.00   -0.13   -0.44   -0.90   -1.44   -1.93   -2.27   -2.38   -2.33   -2.24   -2.26   -2.41   -2.57   -2.41   -1.59   -0.01    2.06    3.89    4.60
+   305.0    0.00   -0.13   -0.44   -0.91   -1.46   -1.96   -2.30   -2.42   -2.37   -2.27   -2.29   -2.45   -2.61   -2.45   -1.63   -0.03    2.06    3.92    4.63
+   310.0    0.00   -0.13   -0.45   -0.93   -1.48   -1.98   -2.32   -2.44   -2.38   -2.29   -2.31   -2.48   -2.65   -2.50   -1.68   -0.07    2.06    3.96    4.70
+   315.0    0.00   -0.13   -0.46   -0.94   -1.49   -1.99   -2.33   -2.44   -2.38   -2.29   -2.31   -2.50   -2.70   -2.57   -1.76   -0.12    2.05    4.02    4.81
+   320.0    0.00   -0.13   -0.46   -0.94   -1.50   -1.99   -2.32   -2.43   -2.36   -2.27   -2.31   -2.52   -2.75   -2.64   -1.85   -0.21    2.01    4.06    4.93
+   325.0    0.00   -0.13   -0.46   -0.95   -1.50   -1.99   -2.31   -2.40   -2.33   -2.25   -2.30   -2.54   -2.79   -2.73   -1.96   -0.32    1.94    4.07    5.06
+   330.0    0.00   -0.13   -0.46   -0.95   -1.49   -1.98   -2.29   -2.37   -2.30   -2.21   -2.28   -2.54   -2.83   -2.81   -2.08   -0.46    1.83    4.05    5.17
+   335.0    0.00   -0.13   -0.46   -0.95   -1.49   -1.96   -2.26   -2.33   -2.26   -2.17   -2.25   -2.53   -2.85   -2.88   -2.20   -0.61    1.69    3.99    5.26
+   340.0    0.00   -0.13   -0.46   -0.94   -1.48   -1.94   -2.23   -2.29   -2.21   -2.13   -2.21   -2.50   -2.86   -2.92   -2.29   -0.75    1.54    3.90    5.31
+   345.0    0.00   -0.13   -0.46   -0.94   -1.46   -1.92   -2.19   -2.25   -2.16   -2.08   -2.16   -2.46   -2.83   -2.93   -2.36   -0.87    1.39    3.79    5.33
+   350.0    0.00   -0.13   -0.45   -0.93   -1.45   -1.89   -2.16   -2.21   -2.12   -2.03   -2.10   -2.40   -2.78   -2.90   -2.38   -0.95    1.27    3.69    5.32
+   355.0    0.00   -0.13   -0.45   -0.91   -1.42   -1.86   -2.12   -2.17   -2.07   -1.98   -2.04   -2.33   -2.70   -2.83   -2.34   -0.96    1.21    3.62    5.30
+   360.0    0.00   -0.12   -0.44   -0.90   -1.40   -1.83   -2.08   -2.13   -2.03   -1.92   -1.98   -2.24   -2.59   -2.72   -2.25   -0.90    1.23    3.61    5.28
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.01     -0.27     40.03                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.05   -0.18   -0.37   -0.63   -0.95   -1.30   -1.62   -1.77   -1.58   -0.97   -0.01    0.99    1.56    1.35    0.37   -0.75   -0.81    1.51
+     0.0    0.00   -0.09   -0.25   -0.47   -0.70   -0.94   -1.20   -1.43   -1.57   -1.47   -1.02   -0.25    0.59    1.11    0.94    0.04   -1.03   -1.10    1.23
+     5.0    0.00   -0.09   -0.26   -0.47   -0.71   -0.95   -1.21   -1.45   -1.58   -1.48   -1.03   -0.27    0.57    1.07    0.87   -0.05   -1.12   -1.15    1.26
+    10.0    0.00   -0.09   -0.26   -0.47   -0.71   -0.96   -1.21   -1.46   -1.59   -1.49   -1.03   -0.26    0.57    1.06    0.82   -0.14   -1.22   -1.24    1.24
+    15.0    0.00   -0.08   -0.25   -0.48   -0.71   -0.96   -1.22   -1.46   -1.60   -1.48   -1.01   -0.23    0.60    1.07    0.80   -0.21   -1.33   -1.34    1.18
+    20.0    0.00   -0.08   -0.25   -0.47   -0.72   -0.97   -1.23   -1.47   -1.60   -1.47   -0.98   -0.17    0.67    1.13    0.82   -0.24   -1.40   -1.43    1.11
+    25.0    0.00   -0.08   -0.25   -0.47   -0.72   -0.98   -1.24   -1.49   -1.61   -1.46   -0.93   -0.10    0.77    1.22    0.88   -0.22   -1.43   -1.48    1.03
+    30.0    0.00   -0.08   -0.24   -0.47   -0.72   -0.99   -1.26   -1.51   -1.62   -1.45   -0.88    0.00    0.90    1.36    1.00   -0.14   -1.39   -1.48    0.99
+    35.0    0.00   -0.07   -0.24   -0.46   -0.72   -1.00   -1.29   -1.55   -1.65   -1.45   -0.83    0.10    1.05    1.53    1.17    0.00   -1.28   -1.41    1.01
+    40.0    0.00   -0.07   -0.23   -0.46   -0.72   -1.02   -1.33   -1.59   -1.69   -1.46   -0.80    0.20    1.20    1.73    1.38    0.20   -1.10   -1.25    1.10
+    45.0    0.00   -0.07   -0.23   -0.45   -0.72   -1.04   -1.37   -1.65   -1.74   -1.48   -0.77    0.28    1.35    1.92    1.60    0.45   -0.84   -1.01    1.28
+    50.0    0.00   -0.06   -0.22   -0.44   -0.73   -1.06   -1.41   -1.71   -1.81   -1.53   -0.77    0.34    1.47    2.10    1.83    0.72   -0.54   -0.69    1.55
+    55.0    0.00   -0.06   -0.21   -0.44   -0.73   -1.08   -1.46   -1.78   -1.88   -1.59   -0.80    0.37    1.55    2.24    2.03    0.98   -0.21   -0.33    1.88
+    60.0    0.00   -0.05   -0.20   -0.43   -0.73   -1.10   -1.50   -1.84   -1.96   -1.66   -0.85    0.36    1.58    2.33    2.19    1.22    0.11    0.05    2.26
+    65.0    0.00   -0.05   -0.19   -0.42   -0.72   -1.11   -1.54   -1.90   -2.03   -1.74   -0.92    0.30    1.56    2.36    2.29    1.41    0.39    0.41    2.65
+    70.0    0.00   -0.04   -0.18   -0.40   -0.72   -1.12   -1.57   -1.96   -2.10   -1.82   -1.01    0.22    1.49    2.32    2.32    1.54    0.62    0.73    3.03
+    75.0    0.00   -0.04   -0.17   -0.39   -0.71   -1.12   -1.58   -1.99   -2.16   -1.90   -1.11    0.10    1.38    2.23    2.28    1.59    0.77    0.97    3.35
+    80.0    0.00   -0.03   -0.16   -0.38   -0.69   -1.11   -1.59   -2.01   -2.20   -1.97   -1.21   -0.03    1.23    2.08    2.18    1.56    0.83    1.12    3.59
+    85.0    0.00   -0.03   -0.15   -0.36   -0.68   -1.10   -1.58   -2.02   -2.23   -2.03   -1.31   -0.17    1.06    1.91    2.03    1.46    0.80    1.16    3.73
+    90.0    0.00   -0.02   -0.14   -0.34   -0.66   -1.08   -1.56   -2.01   -2.24   -2.07   -1.39   -0.30    0.89    1.73    1.86    1.31    0.69    1.10    3.76
+    95.0    0.00   -0.02   -0.13   -0.33   -0.63   -1.05   -1.53   -1.98   -2.23   -2.09   -1.45   -0.41    0.74    1.55    1.67    1.13    0.52    0.95    3.68
+   100.0    0.00   -0.02   -0.12   -0.31   -0.61   -1.01   -1.49   -1.95   -2.21   -2.09   -1.50   -0.49    0.62    1.40    1.50    0.94    0.30    0.72    3.52
+   105.0    0.00   -0.01   -0.11   -0.29   -0.58   -0.98   -1.45   -1.90   -2.17   -2.08   -1.52   -0.55    0.53    1.29    1.36    0.76    0.07    0.45    3.29
+   110.0    0.00   -0.01   -0.10   -0.28   -0.56   -0.94   -1.40   -1.85   -2.13   -2.06   -1.52   -0.57    0.48    1.22    1.26    0.60   -0.16    0.16    3.01
+   115.0    0.00   -0.01   -0.09   -0.26   -0.53   -0.90   -1.36   -1.80   -2.09   -2.02   -1.50   -0.57    0.48    1.19    1.20    0.48   -0.36   -0.12    2.72
+   120.0    0.00    0.00   -0.09   -0.25   -0.51   -0.87   -1.31   -1.76   -2.04   -1.98   -1.46   -0.54    0.50    1.20    1.18    0.41   -0.52   -0.37    2.43
+   125.0    0.00    0.00   -0.08   -0.24   -0.49   -0.84   -1.27   -1.71   -1.99   -1.94   -1.42   -0.50    0.54    1.24    1.19    0.36   -0.64   -0.57    2.17
+   130.0    0.00    0.00   -0.08   -0.23   -0.47   -0.82   -1.24   -1.67   -1.95   -1.90   -1.38   -0.45    0.60    1.29    1.22    0.35   -0.72   -0.72    1.95
+   135.0    0.00    0.00   -0.07   -0.23   -0.46   -0.80   -1.21   -1.64   -1.92   -1.86   -1.34   -0.40    0.65    1.34    1.25    0.35   -0.76   -0.83    1.77
+   140.0    0.00    0.00   -0.07   -0.22   -0.45   -0.78   -1.19   -1.61   -1.88   -1.83   -1.30   -0.36    0.68    1.37    1.28    0.36   -0.78   -0.89    1.64
+   145.0    0.00    0.00   -0.07   -0.22   -0.45   -0.77   -1.17   -1.59   -1.86   -1.80   -1.27   -0.34    0.71    1.39    1.28    0.36   -0.79   -0.91    1.54
+   150.0    0.00    0.00   -0.07   -0.22   -0.45   -0.76   -1.16   -1.57   -1.84   -1.78   -1.26   -0.33    0.71    1.38    1.27    0.35   -0.79   -0.91    1.48
+   155.0    0.00    0.00   -0.08   -0.23   -0.45   -0.76   -1.15   -1.56   -1.83   -1.77   -1.25   -0.33    0.69    1.34    1.23    0.32   -0.79   -0.89    1.45
+   160.0    0.00    0.00   -0.08   -0.23   -0.45   -0.76   -1.15   -1.55   -1.82   -1.77   -1.26   -0.35    0.66    1.30    1.17    0.27   -0.80   -0.87    1.44
+   165.0    0.00    0.00   -0.09   -0.24   -0.46   -0.76   -1.15   -1.55   -1.82   -1.77   -1.27   -0.38    0.62    1.24    1.11    0.23   -0.81   -0.83    1.46
+   170.0    0.00    0.00   -0.09   -0.25   -0.47   -0.77   -1.16   -1.56   -1.83   -1.79   -1.29   -0.40    0.57    1.19    1.05    0.18   -0.82   -0.79    1.52
+   175.0    0.00   -0.01   -0.10   -0.26   -0.48   -0.78   -1.17   -1.57   -1.85   -1.80   -1.31   -0.43    0.54    1.14    1.01    0.15   -0.81   -0.73    1.60
+   180.0    0.00   -0.01   -0.10   -0.27   -0.49   -0.80   -1.18   -1.59   -1.87   -1.83   -1.34   -0.46    0.52    1.12    0.99    0.14   -0.79   -0.66    1.72
+   185.0    0.00   -0.01   -0.11   -0.28   -0.51   -0.81   -1.20   -1.61   -1.89   -1.85   -1.36   -0.48    0.51    1.12    0.99    0.16   -0.75   -0.57    1.87
+   190.0    0.00   -0.02   -0.12   -0.29   -0.52   -0.83   -1.22   -1.63   -1.91   -1.88   -1.38   -0.49    0.51    1.14    1.03    0.20   -0.68   -0.46    2.04
+   195.0    0.00   -0.02   -0.13   -0.30   -0.54   -0.85   -1.24   -1.65   -1.94   -1.90   -1.40   -0.49    0.53    1.19    1.09    0.28   -0.58   -0.33    2.24
+   200.0    0.00   -0.02   -0.13   -0.31   -0.55   -0.87   -1.26   -1.68   -1.96   -1.92   -1.41   -0.47    0.57    1.25    1.17    0.38   -0.47   -0.19    2.43
+   205.0    0.00   -0.02   -0.14   -0.33   -0.57   -0.89   -1.28   -1.70   -1.98   -1.93   -1.40   -0.45    0.61    1.32    1.27    0.49   -0.35   -0.06    2.60
+   210.0    0.00   -0.03   -0.15   -0.34   -0.59   -0.91   -1.31   -1.71   -1.99   -1.93   -1.39   -0.42    0.67    1.40    1.37    0.60   -0.24    0.06    2.74
+   215.0    0.00   -0.03   -0.16   -0.35   -0.61   -0.93   -1.32   -1.73   -1.99   -1.92   -1.36   -0.37    0.73    1.48    1.47    0.71   -0.14    0.14    2.82
+   220.0    0.00   -0.03   -0.16   -0.36   -0.62   -0.95   -1.34   -1.74   -1.98   -1.89   -1.31   -0.31    0.81    1.56    1.55    0.79   -0.07    0.18    2.83
+   225.0    0.00   -0.04   -0.17   -0.37   -0.64   -0.97   -1.36   -1.74   -1.97   -1.85   -1.25   -0.24    0.89    1.64    1.62    0.84   -0.04    0.17    2.76
+   230.0    0.00   -0.04   -0.17   -0.38   -0.65   -0.99   -1.37   -1.74   -1.94   -1.79   -1.17   -0.15    0.97    1.71    1.67    0.87   -0.06    0.10    2.61
+   235.0    0.00   -0.04   -0.18   -0.39   -0.67   -1.01   -1.39   -1.73   -1.91   -1.72   -1.08   -0.04    1.07    1.78    1.71    0.86   -0.12   -0.03    2.39
+   240.0    0.00   -0.05   -0.18   -0.40   -0.68   -1.02   -1.40   -1.73   -1.87   -1.65   -0.97    0.08    1.17    1.85    1.72    0.82   -0.22   -0.21    2.12
+   245.0    0.00   -0.05   -0.19   -0.41   -0.69   -1.04   -1.41   -1.72   -1.82   -1.56   -0.85    0.20    1.28    1.91    1.73    0.76   -0.35   -0.43    1.80
+   250.0    0.00   -0.05   -0.19   -0.41   -0.70   -1.05   -1.41   -1.70   -1.78   -1.48   -0.74    0.33    1.39    1.98    1.72    0.68   -0.51   -0.67    1.48
+   255.0    0.00   -0.05   -0.20   -0.42   -0.71   -1.06   -1.41   -1.69   -1.73   -1.39   -0.62    0.46    1.50    2.03    1.70    0.58   -0.69   -0.92    1.15
+   260.0    0.00   -0.06   -0.20   -0.42   -0.71   -1.06   -1.41   -1.67   -1.68   -1.31   -0.51    0.58    1.59    2.07    1.67    0.47   -0.87   -1.17    0.85
+   265.0    0.00   -0.06   -0.20   -0.42   -0.71   -1.06   -1.40   -1.64   -1.64   -1.24   -0.41    0.68    1.67    2.10    1.63    0.35   -1.05   -1.40    0.59
+   270.0    0.00   -0.06   -0.20   -0.42   -0.71   -1.05   -1.39   -1.61   -1.59   -1.17   -0.33    0.75    1.72    2.10    1.57    0.23   -1.22   -1.60    0.37
+   275.0    0.00   -0.06   -0.20   -0.42   -0.70   -1.03   -1.36   -1.58   -1.54   -1.11   -0.27    0.80    1.75    2.09    1.51    0.12   -1.38   -1.78    0.20
+   280.0    0.00   -0.06   -0.20   -0.41   -0.69   -1.01   -1.33   -1.54   -1.49   -1.07   -0.23    0.83    1.74    2.04    1.43    0.00   -1.51   -1.92    0.07
+   285.0    0.00   -0.07   -0.20   -0.41   -0.68   -0.99   -1.29   -1.49   -1.45   -1.03   -0.21    0.82    1.70    1.98    1.34   -0.10   -1.62   -2.03   -0.03
+   290.0    0.00   -0.07   -0.21   -0.41   -0.66   -0.96   -1.25   -1.45   -1.40   -1.00   -0.21    0.79    1.64    1.90    1.25   -0.19   -1.71   -2.11   -0.09
+   295.0    0.00   -0.07   -0.21   -0.40   -0.65   -0.93   -1.21   -1.40   -1.36   -0.98   -0.23    0.74    1.56    1.80    1.16   -0.26   -1.76   -2.16   -0.14
+   300.0    0.00   -0.07   -0.21   -0.40   -0.64   -0.91   -1.17   -1.36   -1.33   -0.98   -0.26    0.67    1.47    1.71    1.08   -0.30   -1.78   -2.17   -0.17
+   305.0    0.00   -0.07   -0.21   -0.40   -0.63   -0.88   -1.14   -1.32   -1.31   -0.98   -0.31    0.59    1.37    1.62    1.02   -0.32   -1.77   -2.16   -0.17
+   310.0    0.00   -0.08   -0.21   -0.40   -0.62   -0.87   -1.11   -1.29   -1.29   -1.00   -0.36    0.50    1.27    1.53    0.99   -0.31   -1.72   -2.11   -0.15
+   315.0    0.00   -0.08   -0.22   -0.40   -0.62   -0.86   -1.09   -1.27   -1.29   -1.02   -0.42    0.41    1.18    1.47    0.97   -0.27   -1.64   -2.03   -0.10
+   320.0    0.00   -0.08   -0.22   -0.41   -0.62   -0.85   -1.08   -1.26   -1.30   -1.06   -0.49    0.32    1.09    1.42    0.98   -0.20   -1.54   -1.92   -0.02
+   325.0    0.00   -0.08   -0.23   -0.41   -0.63   -0.85   -1.08   -1.27   -1.32   -1.11   -0.57    0.23    1.01    1.38    1.00   -0.12   -1.41   -1.78    0.10
+   330.0    0.00   -0.08   -0.23   -0.42   -0.63   -0.86   -1.09   -1.29   -1.35   -1.16   -0.64    0.14    0.94    1.35    1.03   -0.03   -1.28   -1.63    0.25
+   335.0    0.00   -0.08   -0.24   -0.43   -0.65   -0.87   -1.11   -1.31   -1.39   -1.22   -0.72    0.06    0.88    1.32    1.06    0.05   -1.16   -1.48    0.44
+   340.0    0.00   -0.08   -0.24   -0.44   -0.66   -0.89   -1.13   -1.34   -1.43   -1.29   -0.80   -0.02    0.81    1.29    1.07    0.11   -1.05   -1.33    0.63
+   345.0    0.00   -0.09   -0.25   -0.45   -0.67   -0.90   -1.15   -1.37   -1.48   -1.34   -0.87   -0.09    0.75    1.26    1.07    0.15   -0.98   -1.21    0.83
+   350.0    0.00   -0.09   -0.25   -0.46   -0.68   -0.92   -1.17   -1.39   -1.51   -1.40   -0.93   -0.16    0.69    1.21    1.04    0.14   -0.95   -1.13    1.00
+   355.0    0.00   -0.09   -0.25   -0.46   -0.69   -0.93   -1.18   -1.42   -1.55   -1.44   -0.98   -0.21    0.64    1.16    1.00    0.10   -0.97   -1.09    1.14
+   360.0    0.00   -0.09   -0.25   -0.47   -0.70   -0.94   -1.20   -1.43   -1.57   -1.47   -1.02   -0.25    0.59    1.11    0.94    0.04   -1.03   -1.10    1.23
+   G02                                                      END OF FREQUENCY    
+   R01                                                      START OF FREQUENCY  
+     -0.09      0.02     34.77                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.11   -0.42   -0.91   -1.46   -1.96   -2.28   -2.35   -2.21   -2.04   -2.01   -2.23   -2.58   -2.75   -2.28   -0.86    1.36    3.75    5.20
+     0.0    0.00   -0.16   -0.55   -1.08   -1.66   -2.18   -2.51   -2.58   -2.43   -2.22   -2.13   -2.28   -2.57   -2.70   -2.22   -0.76    1.56    4.13    5.68
+     5.0    0.00   -0.17   -0.54   -1.05   -1.61   -2.13   -2.43   -2.49   -2.35   -2.14   -2.05   -2.17   -2.45   -2.56   -2.05   -0.61    1.71    4.27    5.78
+    10.0    0.00   -0.17   -0.54   -1.03   -1.58   -2.07   -2.37   -2.43   -2.29   -2.07   -1.97   -2.07   -2.31   -2.39   -1.86   -0.41    1.92    4.47    5.94
+    15.0    0.00   -0.16   -0.53   -1.01   -1.53   -2.01   -2.30   -2.36   -2.23   -2.02   -1.91   -1.99   -2.20   -2.24   -1.67   -0.17    2.18    4.72    6.17
+    20.0    0.00   -0.17   -0.51   -0.98   -1.49   -1.95   -2.24   -2.31   -2.18   -1.98   -1.86   -1.93   -2.11   -2.09   -1.47    0.06    2.46    5.02    6.45
+    25.0    0.00   -0.16   -0.51   -0.95   -1.44   -1.89   -2.17   -2.25   -2.13   -1.95   -1.83   -1.88   -2.04   -1.99   -1.32    0.27    2.73    5.34    6.76
+    30.0    0.00   -0.17   -0.50   -0.92   -1.40   -1.83   -2.11   -2.20   -2.11   -1.93   -1.82   -1.87   -2.01   -1.92   -1.22    0.45    2.97    5.64    7.08
+    35.0    0.00   -0.16   -0.48   -0.91   -1.36   -1.79   -2.06   -2.16   -2.08   -1.92   -1.82   -1.89   -2.02   -1.91   -1.18    0.55    3.14    5.88    7.35
+    40.0    0.00   -0.16   -0.48   -0.88   -1.32   -1.74   -2.02   -2.13   -2.05   -1.91   -1.84   -1.92   -2.06   -1.98   -1.20    0.56    3.23    6.03    7.53
+    45.0    0.00   -0.17   -0.46   -0.86   -1.29   -1.69   -1.97   -2.09   -2.03   -1.92   -1.87   -1.98   -2.16   -2.08   -1.32    0.48    3.19    6.06    7.61
+    50.0    0.00   -0.17   -0.46   -0.84   -1.26   -1.66   -1.93   -2.06   -2.01   -1.91   -1.90   -2.06   -2.26   -2.24   -1.50    0.28    3.02    5.95    7.55
+    55.0    0.00   -0.16   -0.45   -0.83   -1.24   -1.62   -1.90   -2.02   -2.00   -1.91   -1.94   -2.12   -2.40   -2.43   -1.74    0.02    2.76    5.69    7.35
+    60.0    0.00   -0.16   -0.44   -0.81   -1.22   -1.60   -1.89   -2.00   -1.98   -1.91   -1.96   -2.19   -2.54   -2.64   -2.02   -0.32    2.39    5.32    7.00
+    65.0    0.00   -0.15   -0.44   -0.80   -1.21   -1.59   -1.87   -1.98   -1.97   -1.92   -1.98   -2.27   -2.67   -2.84   -2.31   -0.70    1.94    4.84    6.55
+    70.0    0.00   -0.16   -0.44   -0.81   -1.21   -1.58   -1.86   -1.98   -1.96   -1.92   -2.00   -2.32   -2.78   -3.03   -2.59   -1.07    1.46    4.29    6.00
+    75.0    0.00   -0.16   -0.44   -0.81   -1.22   -1.58   -1.86   -1.98   -1.96   -1.92   -2.04   -2.37   -2.86   -3.18   -2.83   -1.43    0.99    3.72    5.42
+    80.0    0.00   -0.16   -0.44   -0.82   -1.23   -1.61   -1.87   -1.99   -1.97   -1.93   -2.05   -2.40   -2.94   -3.30   -3.02   -1.72    0.57    3.17    4.86
+    85.0    0.00   -0.15   -0.44   -0.83   -1.24   -1.62   -1.89   -2.01   -1.99   -1.95   -2.07   -2.44   -2.98   -3.37   -3.16   -1.95    0.22    2.70    4.33
+    90.0    0.00   -0.15   -0.45   -0.84   -1.26   -1.66   -1.94   -2.04   -2.01   -1.98   -2.10   -2.46   -3.00   -3.40   -3.22   -2.10   -0.06    2.32    3.90
+    95.0    0.00   -0.15   -0.45   -0.86   -1.29   -1.70   -1.98   -2.09   -2.06   -2.03   -2.13   -2.49   -3.01   -3.41   -3.24   -2.17   -0.22    2.03    3.60
+   100.0    0.00   -0.15   -0.45   -0.87   -1.34   -1.74   -2.03   -2.14   -2.11   -2.06   -2.15   -2.51   -3.02   -3.40   -3.21   -2.17   -0.28    1.90    3.42
+   105.0    0.00   -0.14   -0.46   -0.90   -1.37   -1.79   -2.09   -2.21   -2.16   -2.12   -2.20   -2.53   -3.01   -3.36   -3.16   -2.13   -0.28    1.85    3.37
+   110.0    0.00   -0.14   -0.46   -0.91   -1.40   -1.84   -2.15   -2.27   -2.23   -2.17   -2.24   -2.56   -3.02   -3.33   -3.10   -2.05   -0.21    1.88    3.43
+   115.0    0.00   -0.15   -0.47   -0.93   -1.44   -1.90   -2.21   -2.33   -2.29   -2.22   -2.28   -2.59   -3.03   -3.31   -3.03   -1.95   -0.10    2.01    3.57
+   120.0    0.00   -0.13   -0.47   -0.95   -1.48   -1.96   -2.27   -2.39   -2.34   -2.27   -2.33   -2.61   -3.03   -3.28   -2.99   -1.87   -0.97    2.14    3.77
+   125.0    0.00   -0.13   -0.47   -0.96   -1.51   -2.00   -2.32   -2.44   -2.38   -2.30   -2.35   -2.63   -3.04   -3.28   -2.96   -1.80    0.11    2.30    4.00
+   130.0    0.00   -0.12   -0.47   -0.97   -1.53   -2.04   -2.37   -2.48   -2.41   -2.32   -2.36   -2.64   -3.03   -3.27   -2.95   -1.77    0.18    2.42    4.20
+   135.0    0.00   -0.12   -0.47   -0.98   -1.55   -2.06   -2.39   -2.51   -2.42   -2.30   -2.34   -2.61   -3.02   -3.27   -2.95   -1.76    0.23    2.54    4.37
+   140.0    0.00   -0.12   -0.46   -0.97   -1.56   -2.08   -2.41   -2.50   -2.40   -2.28   -2.29   -2.57   -3.00   -3.27   -2.95   -1.77    0.24    2.60    4.49
+   145.0    0.00   -0.11   -0.46   -0.97   -1.56   -2.07   -2.41   -2.48   -2.37   -2.23   -2.23   -2.50   -2.94   -3.23   -2.95   -1.77    0.25    2.63    4.54
+   150.0    0.00   -0.10   -0.45   -0.96   -1.54   -2.05   -2.39   -2.45   -2.32   -2.15   -2.14   -2.41   -2.86   -3.19   -2.93   -1.78    0.23    2.62    4.54
+   155.0    0.00   -0.10   -0.44   -0.93   -1.51   -2.03   -2.35   -2.40   -2.25   -2.05   -2.03   -2.31   -2.77   -3.11   -2.88   -1.77    0.23    2.60    4.50
+   160.0    0.00   -0.09   -0.43   -0.92   -1.50   -2.00   -2.30   -2.33   -2.16   -1.94   -1.91   -2.16   -2.65   -3.01   -2.82   -1.73    0.24    2.60    4.44
+   165.0    0.00   -0.09   -0.40   -0.90   -1.46   -1.95   -2.25   -2.26   -2.06   -1.82   -1.77   -2.03   -2.51   -2.89   -2.71   -1.66    0.29    2.60    4.35
+   170.0    0.00   -0.08   -0.39   -0.88   -1.43   -1.91   -2.19   -2.18   -1.96   -1.70   -1.64   -1.88   -2.36   -2.74   -2.60   -1.55    0.36    2.62    4.29
+   175.0    0.00   -0.08   -0.37   -0.85   -1.40   -1.86   -2.11   -2.09   -1.85   -1.59   -1.51   -1.74   -2.21   -2.61   -2.47   -1.43    0.46    2.68    4.26
+   180.0    0.00   -0.07   -0.36   -0.82   -1.36   -1.81   -2.05   -2.01   -1.75   -1.47   -1.38   -1.60   -2.08   -2.47   -2.32   -1.29    0.59    2.78    4.27
+   185.0    0.00   -0.06   -0.35   -0.80   -1.33   -1.76   -1.98   -1.92   -1.67   -1.35   -1.26   -1.49   -1.96   -2.33   -2.18   -1.14    0.74    2.90    4.33
+   190.0    0.00   -0.05   -0.32   -0.78   -1.29   -1.72   -1.93   -1.86   -1.57   -1.26   -1.17   -1.39   -1.85   -2.22   -2.05   -1.00    0.90    3.06    4.45
+   195.0    0.00   -0.05   -0.31   -0.76   -1.27   -1.69   -1.90   -1.81   -1.51   -1.20   -1.09   -1.31   -1.77   -2.13   -1.95   -0.88    1.04    3.23    4.61
+   200.0    0.00   -0.04   -0.30   -0.74   -1.26   -1.68   -1.87   -1.78   -1.47   -1.14   -1.03   -1.25   -1.71   -2.07   -1.87   -0.77    1.19    3.41    4.80
+   205.0    0.00   -0.04   -0.30   -0.74   -1.24   -1.67   -1.86   -1.77   -1.44   -1.10   -0.97   -1.20   -1.67   -2.04   -1.82   -0.68    1.33    3.58    5.03
+   210.0    0.00   -0.03   -0.29   -0.72   -1.24   -1.67   -1.87   -1.76   -1.44   -1.08   -0.94   -1.19   -1.66   -2.02   -1.79   -0.61    1.45    3.77    5.24
+   215.0    0.00   -0.03   -0.29   -0.72   -1.26   -1.69   -1.89   -1.78   -1.44   -1.09   -0.96   -1.18   -1.67   -2.03   -1.78   -0.55    1.57    3.94    5.45
+   220.0    0.00   -0.04   -0.29   -0.72   -1.27   -1.72   -1.93   -1.82   -1.47   -1.10   -0.97   -1.21   -1.71   -2.07   -1.78   -0.51    1.67    4.09    5.63
+   225.0    0.00   -0.04   -0.28   -0.75   -1.29   -1.75   -1.97   -1.86   -1.52   -1.14   -1.02   -1.27   -1.75   -2.11   -1.81   -0.48    1.77    4.24    5.77
+   230.0    0.00   -0.04   -0.29   -0.75   -1.31   -1.80   -2.03   -1.92   -1.58   -1.20   -1.09   -1.34   -1.83   -2.18   -1.82   -0.45    1.84    4.33    5.86
+   235.0    0.00   -0.03   -0.30   -0.77   -1.34   -1.85   -2.09   -2.00   -1.66   -1.29   -1.17   -1.43   -1.93   -2.25   -1.85   -0.42    1.92    4.40    5.87
+   240.0    0.00   -0.03   -0.30   -0.78   -1.37   -1.89   -2.15   -2.08   -1.75   -1.39   -1.28   -1.56   -2.04   -2.32   -1.88   -0.39    1.97    4.44    5.84
+   245.0    0.00   -0.04   -0.31   -0.80   -1.40   -1.93   -2.22   -2.16   -1.85   -1.51   -1.43   -1.70   -2.17   -2.42   -1.91   -0.37    2.01    4.42    5.72
+   250.0    0.00   -0.05   -0.32   -0.82   -1.44   -1.98   -2.29   -2.25   -1.96   -1.65   -1.58   -1.86   -2.31   -2.51   -1.95   -0.37    2.02    4.37    5.54
+   255.0    0.00   -0.05   -0.33   -0.84   -1.47   -2.03   -2.36   -2.34   -2.08   -1.80   -1.75   -2.02   -2.46   -2.61   -2.00   -0.38    2.00    4.27    5.33
+   260.0    0.00   -0.05   -0.34   -0.86   -1.51   -2.08   -2.42   -2.44   -2.20   -1.97   -1.93   -2.20   -2.60   -2.70   -2.04   -0.40    1.93    4.13    5.08
+   265.0    0.00   -0.06   -0.36   -0.89   -1.53   -2.12   -2.49   -2.52   -2.34   -2.13   -2.10   -2.37   -2.74   -2.80   -2.09   -0.44    1.85    3.94    4.82
+   270.0    0.00   -0.07   -0.37   -0.91   -1.57   -2.16   -2.55   -2.62   -2.46   -2.28   -2.28   -2.54   -2.87   -2.89   -2.15   -0.50    1.74    3.76    4.57
+   275.0    0.00   -0.07   -0.39   -0.93   -1.60   -2.21   -2.61   -2.71   -2.59   -2.42   -2.43   -2.68   -2.97   -2.96   -2.20   -0.57    1.62    3.59    4.36
+   280.0    0.00   -0.07   -0.40   -0.95   -1.63   -2.25   -2.67   -2.79   -2.70   -2.56   -2.57   -2.80   -3.08   -3.02   -2.26   -0.65    1.51    3.42    4.21
+   285.0    0.00   -0.09   -0.42   -0.98   -1.65   -2.29   -2.73   -2.87   -2.81   -2.69   -2.70   -2.91   -3.15   -3.06   -2.30   -0.71    1.39    3.29    4.12
+   290.0    0.00   -0.09   -0.44   -1.00   -1.69   -2.33   -2.77   -2.95   -2.89   -2.79   -2.80   -2.98   -3.19   -3.09   -2.33   -0.77    1.31    3.22    4.12
+   295.0    0.00   -0.10   -0.45   -1.02   -1.71   -2.36   -2.82   -3.00   -2.96   -2.86   -2.86   -3.03   -3.21   -3.11   -2.36   -0.81    1.25    3.19    4.18
+   300.0    0.00   -0.11   -0.47   -1.05   -1.74   -2.39   -2.85   -3.04   -3.02   -2.91   -2.90   -3.04   -3.22   -3.11   -2.37   -0.85    1.23    3.22    4.32
+   305.0    0.00   -0.12   -0.48   -1.06   -1.76   -2.41   -2.87   -3.08   -3.05   -2.94   -2.92   -3.05   -3.22   -3.11   -2.38   -0.86    1.24    3.30    4.52
+   310.0    0.00   -0.12   -0.49   -1.08   -1.78   -2.43   -2.89   -3.10   -3.06   -2.95   -2.91   -3.03   -3.19   -3.11   -2.39   -0.88    1.27    3.42    4.75
+   315.0    0.00   -0.13   -0.51   -1.10   -1.79   -2.44   -2.90   -3.10   -3.06   -2.93   -2.87   -2.99   -3.18   -3.10   -2.41   -0.87    1.32    3.56    5.00
+   320.0    0.00   -0.13   -0.52   -1.10   -1.80   -2.44   -2.89   -3.09   -3.03   -2.89   -2.83   -2.95   -3.14   -3.10   -2.42   -0.89    1.35    3.70    5.22
+   325.0    0.00   -0.14   -0.52   -1.12   -1.80   -2.44   -2.88   -3.05   -2.98   -2.83   -2.77   -2.90   -3.11   -3.10   -2.45   -0.90    1.39    3.81    5.41
+   330.0    0.00   -0.14   -0.53   -1.12   -1.80   -2.43   -2.85   -3.01   -2.93   -2.75   -2.69   -2.84   -3.07   -3.10   -2.47   -0.94    1.40    3.90    5.54
+   335.0    0.00   -0.15   -0.55   -1.13   -1.79   -2.40   -2.81   -2.95   -2.86   -2.67   -2.61   -2.76   -3.03   -3.09   -2.50   -0.96    1.40    3.96    5.63
+   340.0    0.00   -0.15   -0.55   -1.12   -1.78   -2.37   -2.76   -2.87   -2.77   -2.59   -2.52   -2.68   -2.98   -3.06   -2.49   -0.97    1.40    4.00    5.66
+   345.0    0.00   -0.16   -0.56   -1.12   -1.75   -2.33   -2.70   -2.80   -2.68   -2.49   -2.43   -2.59   -2.90   -3.02   -2.48   -0.98    1.40    4.00    5.66
+   350.0    0.00   -0.16   -0.55   -1.11   -1.74   -2.28   -2.64   -2.73   -2.60   -2.39   -2.32   -2.50   -2.81   -2.93   -2.43   -0.95    1.41    4.02    5.65
+   355.0    0.00   -0.17   -0.55   -1.09   -1.70   -2.23   -2.58   -2.65   -2.51   -2.31   -2.22   -2.39   -2.70   -2.83   -2.34   -0.89    1.47    4.05    5.65
+   360.0    0.00   -0.16   -0.55   -1.08   -1.66   -2.18   -2.51   -2.58   -2.43   -2.22   -2.13   -2.28   -2.57   -2.70   -2.22   -0.76    1.56    4.13    5.68
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+     -0.01     -0.27     40.03                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.06   -0.22   -0.42   -0.69   -1.01   -1.37   -1.77   -2.06   -2.09   -1.69   -0.88    0.09    0.76    0.71   -0.17   -1.39   -1.83   -0.17
+     0.0    0.00   -0.13   -0.31   -0.51   -0.67   -0.83   -1.07   -1.37   -1.72   -1.92   -1.77   -1.21   -0.43    0.20    0.18   -0.67   -2.01   -2.78   -1.63
+     5.0    0.00   -0.13   -0.33   -0.51   -0.67   -0.82   -1.05   -1.38   -1.73   -1.94   -1.82   -1.28   -0.49    0.12    0.08   -0.83   -2.19   -2.95   -1.70
+    10.0    0.00   -0.13   -0.33   -0.50   -0.66   -0.82   -1.04   -1.39   -1.74   -1.98   -1.84   -1.29   -0.50    0.09   -0.02   -0.99   -2.39   -3.12   -1.70
+    15.0    0.00   -0.12   -0.32   -0.52   -0.67   -0.83   -1.07   -1.41   -1.78   -2.00   -1.84   -1.27   -0.47    0.09   -0.08   -1.13   -2.59   -3.27   -1.65
+    20.0    0.00   -0.12   -0.32   -0.51   -0.69   -0.87   -1.11   -1.46   -1.83   -2.02   -1.83   -1.21   -0.40    0.14   -0.09   -1.23   -2.74   -3.37   -1.54
+    25.0    0.00   -0.13   -0.32   -0.53   -0.71   -0.91   -1.17   -1.54   -1.90   -2.05   -1.80   -1.13   -0.28    0.23   -0.07   -1.29   -2.84   -3.39   -1.40
+    30.0    0.00   -0.13   -0.32   -0.54   -0.74   -0.97   -1.25   -1.64   -1.97   -2.09   -1.77   -1.04   -0.15    0.36    0.01   -1.26   -2.83   -3.34   -1.21
+    35.0    0.00   -0.12   -0.33   -0.55   -0.77   -1.03   -1.35   -1.74   -2.07   -2.14   -1.75   -0.95   -0.02    0.51    0.15   -1.16   -2.73   -3.20   -0.98
+    40.0    0.00   -0.12   -0.33   -0.56   -0.80   -1.09   -1.46   -1.85   -2.18   -2.20   -1.76   -0.87    0.11    0.68    0.33   -0.97   -2.52   -2.95   -0.71
+    45.0    0.00   -0.12   -0.33   -0.57   -0.83   -1.16   -1.55   -1.97   -2.28   -2.27   -1.76   -0.83    0.23    0.85    0.53   -0.71   -2.21   -2.61   -0.41
+    50.0    0.00   -0.11   -0.32   -0.57   -0.87   -1.21   -1.63   -2.07   -2.38   -2.35   -1.80   -0.81    0.31    1.00    0.76   -0.40   -1.83   -2.19   -0.07
+    55.0    0.00   -0.11   -0.31   -0.58   -0.88   -1.26   -1.70   -2.16   -2.48   -2.44   -1.86   -0.81    0.37    1.13    0.99   -0.07   -1.39   -1.74    0.28
+    60.0    0.00   -0.10   -0.30   -0.58   -0.89   -1.28   -1.75   -2.22   -2.56   -2.51   -1.92   -0.84    0.38    1.23    1.20    0.26   -0.97   -1.28    0.63
+    65.0    0.00   -0.09   -0.29   -0.57   -0.89   -1.29   -1.78   -2.27   -2.61   -2.58   -1.99   -0.90    0.37    1.29    1.38    0.56   -0.57   -0.86    0.96
+    70.0    0.00   -0.08   -0.28   -0.55   -0.88   -1.29   -1.79   -2.30   -2.65   -2.64   -2.06   -0.96    0.33    1.31    1.50    0.81   -0.23   -0.51    1.25
+    75.0    0.00   -0.08   -0.27   -0.53   -0.86   -1.27   -1.76   -2.29   -2.67   -2.67   -2.13   -1.05    0.28    1.31    1.59    0.99    0.02   -0.24    1.48
+    80.0    0.00   -0.07   -0.26   -0.51   -0.82   -1.24   -1.74   -2.27   -2.66   -2.70   -2.19   -1.13    0.20    1.27    1.61    1.10    0.17   -0.07    1.63
+    85.0    0.00   -0.07   -0.24   -0.48   -0.80   -1.20   -1.69   -2.23   -2.64   -2.71   -2.24   -1.20    0.12    1.21    1.60    1.13    0.23   -0.01    1.71
+    90.0    0.00   -0.05   -0.22   -0.44   -0.76   -1.15   -1.63   -2.18   -2.61   -2.70   -2.27   -1.26    0.04    1.15    1.56    1.10    0.21   -0.04    1.70
+    95.0    0.00   -0.05   -0.20   -0.43   -0.71   -1.09   -1.57   -2.11   -2.56   -2.69   -2.27   -1.31   -0.03    1.07    1.49    1.03    0.13   -0.15    1.62
+   100.0    0.00   -0.04   -0.18   -0.39   -0.67   -1.03   -1.51   -2.05   -2.51   -2.65   -2.28   -1.34   -0.09    1.00    1.40    0.94    0.01   -0.30    1.52
+   105.0    0.00   -0.03   -0.16   -0.36   -0.62   -0.99   -1.46   -1.99   -2.45   -2.61   -2.26   -1.36   -0.13    0.94    1.32    0.83   -0.13   -0.46    1.39
+   110.0    0.00   -0.02   -0.14   -0.33   -0.60   -0.94   -1.40   -1.93   -2.39   -2.57   -2.24   -1.35   -0.16    0.88    1.25    0.73   -0.26   -0.60    1.28
+   115.0    0.00   -0.02   -0.12   -0.30   -0.55   -0.90   -1.36   -1.88   -2.35   -2.51   -2.20   -1.34   -0.17    0.84    1.19    0.64   -0.37   -0.71    1.20
+   120.0    0.00   -0.01   -0.11   -0.28   -0.53   -0.87   -1.32   -1.85   -2.30   -2.47   -2.14   -1.31   -0.16    0.81    1.13    0.57   -0.44   -0.78    1.15
+   125.0    0.00    0.00   -0.09   -0.26   -0.50   -0.84   -1.29   -1.81   -2.25   -2.41   -2.09   -1.27   -0.15    0.79    1.08    0.50   -0.49   -0.81    1.15
+   130.0    0.00    0.01   -0.09   -0.24   -0.48   -0.83   -1.27   -1.78   -2.21   -2.36   -2.04   -1.22   -0.13    0.77    1.03    0.45   -0.54   -0.82    1.18
+   135.0    0.00    0.01   -0.06   -0.24   -0.47   -0.81   -1.25   -1.76   -2.18   -2.31   -1.98   -1.17   -0.10    0.77    0.97    0.38   -0.58   -0.82    1.21
+   140.0    0.00    0.01   -0.06   -0.22   -0.46   -0.80   -1.25   -1.74   -2.14   -2.26   -1.93   -1.12   -0.09    0.73    0.91    0.29   -0.65   -0.85    1.22
+   145.0    0.00    0.01   -0.05   -0.21   -0.46   -0.80   -1.24   -1.73   -2.12   -2.22   -1.87   -1.08   -0.08    0.71    0.83    0.19   -0.75   -0.91    1.16
+   150.0    0.00    0.02   -0.05   -0.21   -0.46   -0.79   -1.23   -1.71   -2.10   -2.19   -1.85   -1.07   -0.08    0.66    0.74    0.07   -0.89   -1.03    1.03
+   155.0    0.00    0.02   -0.05   -0.21   -0.45   -0.80   -1.23   -1.71   -2.09   -2.18   -1.83   -1.06   -0.11    0.58    0.63   -0.08   -1.05   -1.21    0.80
+   160.0    0.00    0.02   -0.04   -0.21   -0.45   -0.80   -1.23   -1.70   -2.08   -2.18   -1.85   -1.09   -0.16    0.51    0.51   -0.25   -1.25   -1.45    0.48
+   165.0    0.00    0.03   -0.05   -0.22   -0.46   -0.80   -1.23   -1.70   -2.09   -2.20   -1.88   -1.14   -0.22    0.42    0.39   -0.39   -1.45   -1.71    0.08
+   170.0    0.00    0.03   -0.05   -0.23   -0.47   -0.81   -1.24   -1.72   -2.12   -2.25   -1.94   -1.21   -0.31    0.33    0.28   -0.53   -1.64   -1.99   -0.34
+   175.0    0.00    0.02   -0.06   -0.24   -0.49   -0.82   -1.26   -1.74   -2.15   -2.29   -2.01   -1.30   -0.41    0.22    0.18   -0.65   -1.80   -2.24   -0.76
+   180.0    0.00    0.02   -0.06   -0.26   -0.50   -0.85   -1.28   -1.77   -2.19   -2.36   -2.10   -1.41   -0.51    0.13    0.10   -0.74   -1.92   -2.43   -1.12
+   185.0    0.00    0.02   -0.07   -0.27   -0.54   -0.88   -1.31   -1.81   -2.24   -2.42   -2.18   -1.52   -0.62    0.04    0.03   -0.78   -1.97   -2.54   -1.37
+   190.0    0.00    0.01   -0.09   -0.29   -0.56   -0.91   -1.35   -1.85   -2.29   -2.50   -2.27   -1.61   -0.71   -0.03   -0.01   -0.79   -1.96   -2.56   -1.47
+   195.0    0.00    0.01   -0.10   -0.31   -0.60   -0.95   -1.39   -1.89   -2.34   -2.56   -2.34   -1.68   -0.78   -0.08   -0.03   -0.77   -1.89   -2.47   -1.40
+   200.0    0.00    0.01   -0.11   -0.33   -0.63   -1.00   -1.44   -1.95   -2.39   -2.59   -2.38   -1.71   -0.81   -0.10   -0.02   -0.72   -1.79   -2.29   -1.16
+   205.0    0.00    0.01   -0.13   -0.37   -0.67   -1.04   -1.49   -1.99   -2.42   -2.61   -2.38   -1.71   -0.81   -0.09   -1.27   -0.65   -1.65   -2.05   -0.79
+   210.0    0.00    0.03   -0.14   -0.38   -0.71   -1.09   -1.55   -2.03   -2.44   -2.60   -2.35   -1.66   -0.76   -0.05    0.05   -0.58   -1.51   -1.77   -0.31
+   215.0    0.00    0.03   -0.15   -0.41   -0.74   -1.14   -1.58   -2.06   -2.44   -2.57   -2.27   -1.56   -0.67    0.03    0.12   -0.51   -1.38   -1.51    0.19
+   220.0    0.00   -0.01   -0.16   -0.43   -0.77   -1.17   -1.62   -2.08   -2.41   -2.49   -2.16   -1.43   -0.53    0.13    0.18   -0.45   -1.27   -1.27    0.67
+   225.0    0.00   -0.02   -0.17   -0.44   -0.79   -1.20   -1.65   -2.07   -2.38   -2.41   -2.03   -1.27   -0.36    0.27    0.27   -0.40   -1.20   -1.10    1.05
+   230.0    0.00   -0.02   -0.18   -0.45   -0.80   -1.22   -1.64   -2.06   -2.32   -2.30   -1.87   -1.08   -0.19    0.42    0.37   -0.34   -1.18   -1.02    1.29
+   235.0    0.00   -0.02   -0.19   -0.46   -0.82   -1.22   -1.64   -2.01   -2.25   -2.18   -1.71   -0.89    0.02    0.60    0.49   -0.30   -1.18   -1.02    1.36
+   240.0    0.00   -0.04   -0.19   -0.47   -0.81   -1.20   -1.61   -1.96   -2.16   -2.05   -1.55   -0.70    0.21    0.77    0.61   -0.25   -1.21   -1.12    1.26
+   245.0    0.00   -0.04   -0.20   -0.47   -0.80   -1.18   -1.56   -1.89   -2.06   -1.92   -1.39   -0.54    0.38    0.93    0.74   -0.17   -1.23   -1.28    0.98
+   250.0    0.00   -0.04   -0.20   -0.46   -0.78   -1.14   -1.49   -1.80   -1.96   -1.81   -1.27   -0.39    0.54    1.10    0.88   -0.10   -1.28   -1.49    0.61
+   255.0    0.00   -0.04   -0.21   -0.46   -0.76   -1.10   -1.42   -1.72   -1.86   -1.70   -1.15   -0.27    0.68    1.24    1.02   -0.02   -1.31   -1.70    0.15
+   260.0    0.00   -0.05   -0.21   -0.45   -0.73   -1.04   -1.35   -1.63   -1.76   -1.60   -1.05   -0.17    0.78    1.36    1.14    0.07   -1.33   -1.91   -0.31
+   265.0    0.00   -0.05   -0.21   -0.44   -0.70   -0.99   -1.28   -1.54   -1.68   -1.53   -0.98   -0.09    0.86    1.45    1.24    0.14   -1.33   -2.08   -0.70
+   270.0    0.00   -0.06   -0.21   -0.43   -0.69   -0.95   -1.22   -1.46   -1.60   -1.45   -0.92   -0.04    0.92    1.52    1.32    0.21   -1.33   -2.20   -1.00
+   275.0    0.00   -0.06   -0.21   -0.43   -0.66   -0.90   -1.17   -1.40   -1.53   -1.39   -0.87   -0.80    0.97    1.57    1.37    0.25   -1.33   -2.27   -1.15
+   280.0    0.00   -0.06   -0.22   -0.42   -0.65   -0.88   -1.13   -1.36   -1.48   -1.35   -0.82    0.04    1.00    1.59    1.39    0.25   -1.33   -2.28   -1.17
+   285.0    0.00   -0.08   -0.22   -0.43   -0.65   -0.87   -1.11   -1.33   -1.45   -1.30   -0.78    0.08    1.02    1.60    1.37    0.22   -1.35   -2.26   -1.06
+   290.0    0.00   -0.08   -0.24   -0.44   -0.65   -0.87   -1.10   -1.32   -1.42   -1.27   -0.74    0.12    1.04    1.58    1.32    0.16   -1.39   -2.21   -0.84
+   295.0    0.00   -0.08   -0.25   -0.44   -0.66   -0.88   -1.11   -1.33   -1.42   -1.24   -0.71    0.16    1.05    1.55    1.25    0.06   -1.44   -2.15   -0.57
+   300.0    0.00   -0.08   -0.25   -0.45   -0.68   -0.91   -1.14   -1.36   -1.43   -1.24   -0.68    0.18    1.06    1.52    1.15   -0.04   -1.51   -2.07   -0.29
+   305.0    0.00   -0.08   -0.25   -0.47   -0.70   -0.92   -1.18   -1.39   -1.46   -1.24   -0.68    0.19    1.05    1.47    1.06   -0.14   -1.57   -2.03   -0.04
+   310.0    0.00   -0.10   -0.26   -0.47   -0.71   -0.97   -1.21   -1.42   -1.49   -1.27   -0.68    0.18    1.01    1.40    0.98   -0.24   -1.63   -1.99    0.13
+   315.0    0.00   -0.10   -0.27   -0.49   -0.73   -0.99   -1.24   -1.46   -1.53   -1.31   -0.72    0.13    0.96    1.33    0.89   -0.32   -1.68   -1.99    0.20
+   320.0    0.00   -0.10   -0.28   -0.50   -0.74   -1.00   -1.26   -1.49   -1.56   -1.36   -0.79    0.05    0.86    1.24    0.82   -0.36   -1.70   -2.00    0.16
+   325.0    0.00   -0.11   -0.29   -0.51   -0.76   -1.00   -1.27   -1.51   -1.61   -1.43   -0.89   -0.08    0.74    1.13    0.75   -0.39   -1.70   -2.03    0.02
+   330.0    0.00   -0.11   -0.30   -0.51   -0.75   -1.00   -1.27   -1.52   -1.64   -1.50   -1.01   -0.24    0.58    1.01    0.69   -0.40   -1.69   -2.08   -0.21
+   335.0    0.00   -0.11   -0.31   -0.52   -0.75   -0.99   -1.26   -1.51   -1.67   -1.58   -1.15   -0.41    0.41    0.87    0.63   -0.39   -1.68   -2.15   -0.47
+   340.0    0.00   -0.12   -0.31   -0.51   -0.73   -0.96   -1.23   -1.49   -1.69   -1.67   -1.30   -0.60    0.21    0.73    0.56   -0.40   -1.67   -2.24   -0.78
+   345.0    0.00   -0.13   -0.32   -0.52   -0.71   -0.92   -1.18   -1.47   -1.71   -1.74   -1.44   -0.79    0.02    0.58    0.48   -0.41   -1.69   -2.34   -1.05
+   350.0    0.00   -0.13   -0.31   -0.52   -0.69   -0.90   -1.14   -1.43   -1.71   -1.82   -1.58   -0.96   -0.16    0.44    0.38   -0.47   -1.74   -2.47   -1.31
+   355.0    0.00   -0.13   -0.31   -0.50   -0.68   -0.86   -1.09   -1.41   -1.72   -1.87   -1.69   -1.11   -0.30    0.31    0.29   -0.56   -1.85   -2.61   -1.50
+   360.0    0.00   -0.13   -0.31   -0.51   -0.67   -0.83   -1.07   -1.37   -1.72   -1.92   -1.77   -1.21   -0.43    0.20    0.18   -0.67   -2.01   -2.78   -1.63
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TRM14177.00     NONE                                        TYPE / SERIAL NO    
+COPIED              Geo++ GmbH              22    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+COPIED FROM TRM14532.00     NONE                            COMMENT             
+   G01                                                      START OF FREQUENCY  
+     -0.36     -3.26     74.83                              NORTH / EAST / UP   
+   NOAZI    0.00    0.65    2.40    4.70    6.84    8.18    8.35    7.36    5.52    3.34    1.28   -0.38   -1.63   -2.59   -3.28   -3.44   -2.50    0.26    5.24
+     0.0    0.00    0.74    2.73    5.33    7.73    9.18    9.27    8.05    5.90    3.38    0.98   -1.05   -2.71   -4.06   -5.09   -5.48   -4.65   -1.99    2.77
+     5.0    0.00    0.69    2.63    5.23    7.63    9.11    9.24    8.05    5.93    3.43    1.04   -0.97   -2.60   -3.95   -4.99   -5.39   -4.56   -1.88    2.90
+    10.0    0.00    0.63    2.53    5.10    7.52    9.03    9.21    8.06    5.97    3.49    1.13   -0.85   -2.46   -3.80   -4.84   -5.26   -4.45   -1.76    3.05
+    15.0    0.00    0.57    2.42    4.97    7.40    8.94    9.17    8.08    6.03    3.59    1.26   -0.70   -2.28   -3.60   -4.64   -5.09   -4.30   -1.61    3.22
+    20.0    0.00    0.51    2.31    4.83    7.26    8.85    9.14    8.10    6.11    3.71    1.41   -0.51   -2.07   -3.36   -4.40   -4.86   -4.09   -1.40    3.43
+    25.0    0.00    0.45    2.19    4.68    7.11    8.74    9.09    8.13    6.20    3.84    1.58   -0.31   -1.83   -3.10   -4.12   -4.58   -3.82   -1.15    3.67
+    30.0    0.00    0.39    2.07    4.52    6.95    8.62    9.05    8.16    6.29    3.99    1.77   -0.08   -1.57   -2.80   -3.81   -4.26   -3.50   -0.83    3.96
+    35.0    0.00    0.33    1.95    4.36    6.79    8.50    8.99    8.19    6.39    4.15    1.97    0.15   -1.30   -2.50   -3.47   -3.89   -3.13   -0.47    4.28
+    40.0    0.00    0.27    1.83    4.19    6.62    8.36    8.92    8.20    6.48    4.30    2.16    0.37   -1.04   -2.19   -3.12   -3.51   -2.72   -0.06    4.64
+    45.0    0.00    0.22    1.71    4.03    6.44    8.22    8.84    8.20    6.56    4.43    2.33    0.58   -0.79   -1.90   -2.77   -3.12   -2.30    0.36    5.02
+    50.0    0.00    0.17    1.60    3.87    6.26    8.06    8.75    8.18    6.61    4.54    2.49    0.77   -0.56   -1.62   -2.44   -2.74   -1.88    0.80    5.42
+    55.0    0.00    0.12    1.49    3.71    6.09    7.90    8.64    8.13    6.63    4.62    2.61    0.93   -0.36   -1.38   -2.15   -2.39   -1.48    1.23    5.82
+    60.0    0.00    0.08    1.40    3.56    5.91    7.74    8.51    8.06    6.62    4.66    2.70    1.05   -0.21   -1.18   -1.90   -2.07   -1.11    1.64    6.22
+    65.0    0.00    0.04    1.31    3.42    5.75    7.57    8.37    7.97    6.58    4.67    2.74    1.12   -0.10   -1.03   -1.70   -1.81   -0.79    2.01    6.62
+    70.0    0.00    0.00    1.23    3.30    5.59    7.41    8.22    7.85    6.50    4.63    2.73    1.15   -0.04   -0.94   -1.55   -1.61   -0.52    2.34    7.00
+    75.0    0.00   -0.02    1.16    3.19    5.45    7.25    8.07    7.72    6.39    4.55    2.69    1.13   -0.03   -0.89   -1.46   -1.47   -0.31    2.62    7.36
+    80.0    0.00   -0.04    1.11    3.10    5.33    7.10    7.91    7.56    6.26    4.44    2.59    1.07   -0.07   -0.90   -1.43   -1.38   -0.17    2.84    7.68
+    85.0    0.00   -0.06    1.07    3.03    5.22    6.97    7.76    7.40    6.10    4.29    2.47    0.96   -0.16   -0.96   -1.45   -1.36   -0.08    3.00    7.96
+    90.0    0.00   -0.06    1.05    2.98    5.14    6.86    7.61    7.24    5.93    4.12    2.30    0.81   -0.29   -1.06   -1.52   -1.38   -0.06    3.10    8.17
+    95.0    0.00   -0.06    1.04    2.96    5.09    6.76    7.48    7.08    5.75    3.93    2.12    0.63   -0.45   -1.20   -1.63   -1.46   -0.09    3.12    8.29
+   100.0    0.00   -0.06    1.05    2.96    5.06    6.70    7.37    6.93    5.56    3.73    1.91    0.43   -0.64   -1.38   -1.79   -1.59   -0.20    3.06    8.30
+   105.0    0.00   -0.04    1.08    2.98    5.06    6.66    7.28    6.79    5.38    3.53    1.69    0.21   -0.86   -1.59   -1.99   -1.78   -0.37    2.90    8.18
+   110.0    0.00   -0.02    1.12    3.03    5.09    6.64    7.21    6.66    5.21    3.32    1.47   -0.03   -1.10   -1.83   -2.22   -2.01   -0.61    2.64    7.92
+   115.0    0.00    0.01    1.17    3.10    5.15    6.66    7.17    6.56    5.05    3.12    1.25   -0.27   -1.36   -2.10   -2.50   -2.30   -0.92    2.29    7.53
+   120.0    0.00    0.04    1.24    3.19    5.23    6.70    7.15    6.47    4.91    2.94    1.03   -0.51   -1.63   -2.39   -2.81   -2.63   -1.30    1.84    7.00
+   125.0    0.00    0.08    1.33    3.30    5.33    6.76    7.15    6.40    4.78    2.76    0.81   -0.76   -1.91   -2.70   -3.16   -3.02   -1.74    1.31    6.36
+   130.0    0.00    0.13    1.42    3.43    5.46    6.85    7.17    6.35    4.66    2.59    0.60   -1.01   -2.19   -3.03   -3.53   -3.44   -2.22    0.72    5.65
+   135.0    0.00    0.18    1.53    3.57    5.60    6.95    7.21    6.31    4.56    2.43    0.40   -1.25   -2.48   -3.37   -3.92   -3.88   -2.74    0.10    4.90
+   140.0    0.00    0.23    1.64    3.72    5.76    7.08    7.27    6.29    4.47    2.28    0.21   -1.49   -2.77   -3.71   -4.31   -4.32   -3.25   -0.51    4.17
+   145.0    0.00    0.29    1.76    3.89    5.93    7.21    7.34    6.29    4.39    2.15    0.02   -1.72   -3.05   -4.04   -4.68   -4.74   -3.73   -1.07    3.51
+   150.0    0.00    0.35    1.89    4.06    6.11    7.36    7.43    6.30    4.34    2.03   -0.15   -1.94   -3.31   -4.34   -5.02   -5.12   -4.15   -1.55    2.96
+   155.0    0.00    0.41    2.02    4.23    6.29    7.52    7.52    6.33    4.30    1.93   -0.29   -2.13   -3.54   -4.60   -5.31   -5.43   -4.48   -1.92    2.55
+   160.0    0.00    0.47    2.14    4.41    6.48    7.68    7.63    6.38    4.28    1.86   -0.41   -2.28   -3.72   -4.80   -5.52   -5.65   -4.71   -2.16    2.32
+   165.0    0.00    0.54    2.27    4.58    6.66    7.84    7.75    6.44    4.28    1.81   -0.50   -2.39   -3.85   -4.93   -5.64   -5.75   -4.80   -2.24    2.26
+   170.0    0.00    0.60    2.39    4.74    6.84    8.01    7.88    6.52    4.31    1.81   -0.53   -2.44   -3.90   -4.97   -5.66   -5.75   -4.77   -2.18    2.39
+   175.0    0.00    0.66    2.51    4.90    7.01    8.17    8.01    6.62    4.38    1.84   -0.51   -2.42   -3.86   -4.91   -5.57   -5.62   -4.61   -1.97    2.67
+   180.0    0.00    0.72    2.62    5.04    7.17    8.32    8.15    6.73    4.48    1.93   -0.43   -2.33   -3.74   -4.75   -5.36   -5.38   -4.33   -1.65    3.08
+   185.0    0.00    0.78    2.72    5.17    7.31    8.46    8.28    6.86    4.60    2.06   -0.28   -2.16   -3.53   -4.49   -5.06   -5.03   -3.96   -1.22    3.59
+   190.0    0.00    0.83    2.82    5.29    7.43    8.59    8.41    7.00    4.76    2.24   -0.07   -1.91   -3.23   -4.14   -4.66   -4.61   -3.51   -0.73    4.17
+   195.0    0.00    0.88    2.90    5.39    7.54    8.69    8.53    7.14    4.93    2.45    0.19   -1.59   -2.85   -3.71   -4.20   -4.13   -3.01   -0.20    4.79
+   200.0    0.00    0.93    2.98    5.47    7.62    8.78    8.63    7.28    5.11    2.69    0.49   -1.22   -2.42   -3.23   -3.69   -3.61   -2.49    0.35    5.42
+   205.0    0.00    0.97    3.04    5.53    7.67    8.83    8.71    7.40    5.29    2.95    0.82   -0.82   -1.96   -2.72   -3.16   -3.08   -1.96    0.90    6.04
+   210.0    0.00    1.01    3.09    5.58    7.71    8.86    8.76    7.50    5.46    3.19    1.15   -0.41   -1.48   -2.21   -2.64   -2.57   -1.45    1.44    6.65
+   215.0    0.00    1.05    3.14    5.60    7.71    8.87    8.79    7.57    5.60    3.42    1.47   -0.01   -1.03   -1.72   -2.15   -2.09   -0.97    1.95    7.23
+   220.0    0.00    1.08    3.17    5.62    7.70    8.84    8.77    7.60    5.71    3.61    1.74    0.34   -0.62   -1.28   -1.71   -1.66   -0.54    2.44    7.78
+   225.0    0.00    1.11    3.19    5.61    7.67    8.79    8.73    7.59    5.76    3.74    1.96    0.63   -0.29   -0.92   -1.34   -1.29   -0.15    2.88    8.30
+   230.0    0.00    1.13    3.21    5.60    7.61    8.71    8.65    7.54    5.77    3.82    2.10    0.83   -0.03   -0.65   -1.05   -0.99    0.18    3.27    8.77
+   235.0    0.00    1.16    3.22    5.58    7.55    8.62    8.55    7.46    5.72    3.82    2.17    0.95    0.12   -0.47   -0.86   -0.78    0.43    3.60    9.17
+   240.0    0.00    1.17    3.23    5.55    7.48    8.51    8.43    7.35    5.63    3.77    2.15    0.97    0.17   -0.39   -0.76   -0.65    0.61    3.85    9.49
+   245.0    0.00    1.19    3.23    5.52    7.41    8.41    8.30    7.21    5.51    3.66    2.07    0.91    0.13   -0.41   -0.76   -0.61    0.71    4.00    9.70
+   250.0    0.00    1.20    3.23    5.49    7.34    8.31    8.17    7.07    5.36    3.51    1.92    0.77    0.00   -0.52   -0.84   -0.66    0.70    4.04    9.78
+   255.0    0.00    1.21    3.23    5.46    7.29    8.22    8.06    6.93    5.20    3.34    1.73    0.57   -0.19   -0.70   -1.00   -0.80    0.58    3.94    9.70
+   260.0    0.00    1.21    3.22    5.44    7.24    8.15    7.96    6.81    5.05    3.16    1.52    0.34   -0.43   -0.94   -1.23   -1.02    0.35    3.70    9.45
+   265.0    0.00    1.22    3.22    5.43    7.21    8.10    7.90    6.71    4.92    2.99    1.31    0.10   -0.70   -1.22   -1.52   -1.32    0.02    3.32    9.03
+   270.0    0.00    1.22    3.22    5.42    7.20    8.08    7.87    6.66    4.82    2.84    1.12   -0.14   -0.97   -1.52   -1.85   -1.69   -0.42    2.79    8.45
+   275.0    0.00    1.21    3.22    5.43    7.22    8.10    7.87    6.64    4.77    2.74    0.96   -0.36   -1.24   -1.83   -2.20   -2.12   -0.94    2.16    7.73
+   280.0    0.00    1.21    3.22    5.44    7.25    8.15    7.92    6.67    4.77    2.68    0.84   -0.55   -1.49   -2.14   -2.58   -2.58   -1.53    1.43    6.91
+   285.0    0.00    1.20    3.22    5.46    7.30    8.22    8.01    6.75    4.81    2.67    0.76   -0.69   -1.70   -2.43   -2.95   -3.06   -2.14    0.67    6.03
+   290.0    0.00    1.19    3.22    5.49    7.36    8.32    8.12    6.86    4.89    2.71    0.73   -0.80   -1.89   -2.69   -3.31   -3.53   -2.75   -0.10    5.15
+   295.0    0.00    1.18    3.22    5.53    7.44    8.44    8.26    7.00    5.01    2.78    0.74   -0.86   -2.04   -2.94   -3.65   -3.97   -3.32   -0.81    4.32
+   300.0    0.00    1.17    3.22    5.56    7.53    8.57    8.42    7.16    5.15    2.88    0.78   -0.90   -2.16   -3.15   -3.96   -4.38   -3.84   -1.45    3.58
+   305.0    0.00    1.15    3.21    5.60    7.61    8.70    8.58    7.33    5.30    2.99    0.83   -0.92   -2.27   -3.34   -4.23   -4.73   -4.27   -1.97    2.96
+   310.0    0.00    1.13    3.21    5.63    7.70    8.83    8.74    7.50    5.45    3.10    0.89   -0.93   -2.36   -3.51   -4.46   -5.02   -4.60   -2.36    2.49
+   315.0    0.00    1.11    3.19    5.66    7.78    8.96    8.89    7.65    5.59    3.20    0.94   -0.94   -2.44   -3.66   -4.66   -5.24   -4.83   -2.61    2.17
+   320.0    0.00    1.08    3.18    5.68    7.84    9.06    9.02    7.78    5.70    3.28    0.98   -0.96   -2.51   -3.79   -4.82   -5.40   -4.97   -2.74    1.99
+   325.0    0.00    1.05    3.15    5.68    7.90    9.15    9.13    7.89    5.79    3.34    1.00   -0.98   -2.59   -3.90   -4.95   -5.51   -5.03   -2.76    1.93
+   330.0    0.00    1.01    3.12    5.68    7.93    9.22    9.22    7.97    5.85    3.38    1.01   -1.01   -2.66   -4.00   -5.05   -5.57   -5.02   -2.70    1.97
+   335.0    0.00    0.98    3.08    5.66    7.95    9.27    9.27    8.02    5.89    3.39    0.99   -1.05   -2.72   -4.08   -5.12   -5.60   -4.98   -2.59    2.07
+   340.0    0.00    0.94    3.02    5.63    7.94    9.29    9.31    8.05    5.90    3.39    0.98   -1.08   -2.76   -4.13   -5.17   -5.61   -4.92   -2.46    2.20
+   345.0    0.00    0.89    2.96    5.58    7.92    9.29    9.32    8.06    5.90    3.38    0.96   -1.11   -2.79   -4.16   -5.19   -5.60   -4.85   -2.32    2.35
+   350.0    0.00    0.84    2.90    5.51    7.87    9.27    9.32    8.06    5.90    3.37    0.95   -1.12   -2.80   -4.17   -5.19   -5.58   -4.78   -2.20    2.50
+   355.0    0.00    0.79    2.82    5.43    7.81    9.23    9.30    8.06    5.89    3.37    0.95   -1.10   -2.77   -4.13   -5.16   -5.54   -4.72   -2.09    2.64
+   360.0    0.00    0.74    2.73    5.33    7.73    9.18    9.27    8.05    5.90    3.38    0.98   -1.05   -2.71   -4.06   -5.09   -5.48   -4.65   -1.99    2.77
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -3.18     -0.87     66.97                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.04   -0.16   -0.38   -0.74   -1.24   -1.86   -2.54   -3.16   -3.59   -3.73   -3.53   -3.06   -2.38   -1.54   -0.41    1.29    3.95    7.82
+     0.0    0.00    0.60    0.91    0.83    0.36   -0.45   -1.47   -2.54   -3.51   -4.28   -4.79   -5.04   -5.03   -4.80   -4.31   -3.46   -1.99    0.41    4.07
+     5.0    0.00    0.62    0.98    0.96    0.53   -0.26   -1.27   -2.34   -3.32   -4.10   -4.62   -4.87   -4.88   -4.66   -4.18   -3.32   -1.82    0.64    4.36
+    10.0    0.00    0.64    1.04    1.07    0.69   -0.06   -1.06   -2.13   -3.11   -3.90   -4.42   -4.67   -4.68   -4.47   -3.99   -3.11   -1.57    0.95    4.72
+    15.0    0.00    0.66    1.10    1.18    0.85    0.13   -0.85   -1.91   -2.90   -3.69   -4.20   -4.45   -4.45   -4.23   -3.74   -2.83   -1.25    1.32    5.13
+    20.0    0.00    0.67    1.14    1.27    0.99    0.31   -0.65   -1.70   -2.69   -3.47   -3.97   -4.20   -4.19   -3.95   -3.43   -2.49   -0.85    1.77    5.61
+    25.0    0.00    0.67    1.17    1.35    1.11    0.47   -0.46   -1.50   -2.47   -3.24   -3.73   -3.94   -3.91   -3.64   -3.09   -2.09   -0.39    2.30    6.15
+    30.0    0.00    0.67    1.19    1.41    1.22    0.62   -0.28   -1.31   -2.27   -3.02   -3.49   -3.68   -3.61   -3.31   -2.70   -1.64    0.14    2.89    6.75
+    35.0    0.00    0.66    1.20    1.45    1.29    0.73   -0.14   -1.14   -2.08   -2.81   -3.26   -3.41   -3.31   -2.96   -2.30   -1.16    0.71    3.53    7.40
+    40.0    0.00    0.64    1.19    1.46    1.34    0.82   -0.02   -0.99   -1.90   -2.61   -3.03   -3.15   -3.01   -2.61   -1.88   -0.65    1.31    4.21    8.08
+    45.0    0.00    0.62    1.16    1.45    1.36    0.87    0.07   -0.87   -1.76   -2.44   -2.82   -2.91   -2.72   -2.26   -1.46   -0.15    1.91    4.90    8.78
+    50.0    0.00    0.59    1.11    1.41    1.34    0.88    0.12   -0.78   -1.64   -2.29   -2.64   -2.68   -2.44   -1.92   -1.05    0.35    2.51    5.58    9.48
+    55.0    0.00    0.55    1.05    1.34    1.28    0.86    0.13   -0.73   -1.56   -2.17   -2.49   -2.48   -2.19   -1.61   -0.66    0.83    3.08    6.24   10.17
+    60.0    0.00    0.51    0.97    1.24    1.19    0.79    0.10   -0.73   -1.51   -2.09   -2.37   -2.32   -1.97   -1.32   -0.30    1.27    3.61    6.85   10.82
+    65.0    0.00    0.46    0.88    1.12    1.07    0.68    0.03   -0.77   -1.51   -2.05   -2.29   -2.19   -1.78   -1.07    0.02    1.67    4.08    7.40   11.42
+    70.0    0.00    0.40    0.77    0.97    0.91    0.53   -0.10   -0.85   -1.56   -2.06   -2.25   -2.10   -1.63   -0.85    0.30    2.00    4.49    7.88   11.96
+    75.0    0.00    0.34    0.65    0.80    0.71    0.34   -0.26   -0.98   -1.65   -2.12   -2.27   -2.07   -1.53   -0.69    0.52    2.28    4.82    8.27   12.42
+    80.0    0.00    0.27    0.51    0.61    0.49    0.12   -0.47   -1.16   -1.79   -2.22   -2.33   -2.07   -1.48   -0.58    0.69    2.49    5.06    8.56   12.79
+    85.0    0.00    0.20    0.36    0.39    0.23   -0.15   -0.72   -1.38   -1.98   -2.37   -2.44   -2.13   -1.48   -0.52    0.79    2.62    5.22    8.76   13.06
+    90.0    0.00    0.13    0.21    0.17   -0.04   -0.44   -1.00   -1.64   -2.21   -2.57   -2.59   -2.24   -1.53   -0.52    0.83    2.68    5.29    8.85   13.21
+    95.0    0.00    0.06    0.05   -0.08   -0.34   -0.76   -1.32   -1.93   -2.48   -2.80   -2.79   -2.39   -1.63   -0.58    0.80    2.66    5.26    8.84   13.25
+   100.0    0.00   -0.02   -0.12   -0.32   -0.65   -1.10   -1.66   -2.26   -2.78   -3.07   -3.02   -2.58   -1.78   -0.69    0.71    2.56    5.15    8.72   13.15
+   105.0    0.00   -0.09   -0.29   -0.58   -0.97   -1.45   -2.02   -2.61   -3.11   -3.38   -3.30   -2.82   -1.99   -0.86    0.54    2.39    4.95    8.48   12.91
+   110.0    0.00   -0.17   -0.45   -0.83   -1.28   -1.81   -2.39   -2.98   -3.46   -3.70   -3.59   -3.09   -2.23   -1.09    0.32    2.14    4.66    8.15   12.54
+   115.0    0.00   -0.24   -0.61   -1.07   -1.59   -2.16   -2.76   -3.35   -3.81   -4.04   -3.91   -3.39   -2.51   -1.37    0.03    1.82    4.29    7.71   12.04
+   120.0    0.00   -0.31   -0.77   -1.31   -1.89   -2.50   -3.12   -3.71   -4.17   -4.38   -4.24   -3.71   -2.83   -1.69   -0.31    1.44    3.85    7.19   11.42
+   125.0    0.00   -0.38   -0.91   -1.53   -2.17   -2.82   -3.46   -4.06   -4.51   -4.72   -4.58   -4.04   -3.17   -2.05   -0.70    1.00    3.34    6.59   10.69
+   130.0    0.00   -0.44   -1.05   -1.73   -2.42   -3.11   -3.77   -4.38   -4.83   -5.04   -4.90   -4.38   -3.53   -2.44   -1.13    0.52    2.79    5.93    9.90
+   135.0    0.00   -0.50   -1.17   -1.90   -2.65   -3.37   -4.05   -4.66   -5.12   -5.34   -5.21   -4.71   -3.90   -2.85   -1.59    0.01    2.20    5.24    9.07
+   140.0    0.00   -0.56   -1.27   -2.06   -2.83   -3.58   -4.27   -4.89   -5.37   -5.59   -5.49   -5.02   -4.25   -3.26   -2.06   -0.52    1.60    4.54    8.23
+   145.0    0.00   -0.60   -1.36   -2.18   -2.98   -3.74   -4.44   -5.07   -5.56   -5.80   -5.73   -5.31   -4.59   -3.66   -2.52   -1.05    1.01    3.86    7.43
+   150.0    0.00   -0.64   -1.44   -2.27   -3.08   -3.85   -4.56   -5.19   -5.69   -5.96   -5.92   -5.55   -4.90   -4.04   -2.96   -1.55    0.44    3.23    6.70
+   155.0    0.00   -0.68   -1.49   -2.33   -3.14   -3.90   -4.61   -5.25   -5.76   -6.05   -6.05   -5.74   -5.16   -4.37   -3.37   -2.02   -0.07    2.66    6.07
+   160.0    0.00   -0.71   -1.53   -2.37   -3.16   -3.90   -4.60   -5.24   -5.76   -6.08   -6.12   -5.86   -5.35   -4.64   -3.71   -2.42   -0.51    2.19    5.58
+   165.0    0.00   -0.73   -1.55   -2.37   -3.14   -3.86   -4.54   -5.17   -5.70   -6.04   -6.12   -5.92   -5.48   -4.84   -3.98   -2.74   -0.87    1.83    5.24
+   170.0    0.00   -0.74   -1.55   -2.34   -3.07   -3.76   -4.42   -5.05   -5.58   -5.94   -6.06   -5.90   -5.53   -4.96   -4.17   -2.97   -1.12    1.60    5.05
+   175.0    0.00   -0.75   -1.54   -2.29   -2.98   -3.62   -4.25   -4.87   -5.41   -5.78   -5.92   -5.81   -5.49   -4.98   -4.25   -3.10   -1.25    1.49    5.03
+   180.0    0.00   -0.75   -1.51   -2.22   -2.85   -3.45   -4.04   -4.64   -5.18   -5.56   -5.72   -5.64   -5.36   -4.90   -4.22   -3.11   -1.27    1.52    5.16
+   185.0    0.00   -0.74   -1.47   -2.12   -2.69   -3.24   -3.80   -4.38   -4.91   -5.30   -5.46   -5.40   -5.14   -4.72   -4.08   -3.00   -1.17    1.67    5.42
+   190.0    0.00   -0.73   -1.42   -2.01   -2.52   -3.01   -3.54   -4.10   -4.61   -4.99   -5.15   -5.09   -4.84   -4.45   -3.84   -2.78   -0.94    1.94    5.81
+   195.0    0.00   -0.71   -1.36   -1.89   -2.33   -2.77   -3.26   -3.79   -4.29   -4.66   -4.81   -4.73   -4.47   -4.08   -3.49   -2.45   -0.62    2.31    6.29
+   200.0    0.00   -0.69   -1.29   -1.75   -2.14   -2.52   -2.97   -3.48   -3.96   -4.31   -4.43   -4.32   -4.05   -3.65   -3.06   -2.03   -0.19    2.77    6.84
+   205.0    0.00   -0.66   -1.21   -1.61   -1.93   -2.27   -2.69   -3.17   -3.63   -3.95   -4.03   -3.89   -3.58   -3.16   -2.56   -1.53    0.30    3.30    7.45
+   210.0    0.00   -0.63   -1.13   -1.47   -1.73   -2.02   -2.40   -2.86   -3.30   -3.59   -3.64   -3.45   -3.09   -2.63   -2.01   -0.98    0.86    3.87    8.09
+   215.0    0.00   -0.60   -1.05   -1.33   -1.54   -1.79   -2.13   -2.57   -2.98   -3.24   -3.25   -3.01   -2.60   -2.09   -1.44   -0.40    1.45    4.47    8.74
+   220.0    0.00   -0.57   -0.96   -1.19   -1.36   -1.56   -1.88   -2.29   -2.69   -2.92   -2.89   -2.59   -2.12   -1.56   -0.87    0.20    2.04    5.06    9.37
+   225.0    0.00   -0.53   -0.88   -1.06   -1.19   -1.36   -1.65   -2.04   -2.42   -2.62   -2.55   -2.21   -1.68   -1.05   -0.31    0.77    2.61    5.63    9.97
+   230.0    0.00   -0.49   -0.79   -0.94   -1.03   -1.18   -1.45   -1.82   -2.18   -2.36   -2.27   -1.88   -1.29   -0.60    0.20    1.31    3.14    6.15   10.52
+   235.0    0.00   -0.45   -0.71   -0.83   -0.89   -1.02   -1.28   -1.64   -1.98   -2.15   -2.03   -1.60   -0.95   -0.20    0.65    1.78    3.60    6.59   10.98
+   240.0    0.00   -0.40   -0.64   -0.73   -0.77   -0.89   -1.13   -1.49   -1.82   -1.99   -1.85   -1.39   -0.69    0.12    1.02    2.17    3.97    6.92   11.34
+   245.0    0.00   -0.36   -0.56   -0.64   -0.68   -0.79   -1.03   -1.38   -1.71   -1.88   -1.73   -1.25   -0.51    0.36    1.30    2.46    4.23    7.14   11.57
+   250.0    0.00   -0.32   -0.50   -0.56   -0.60   -0.71   -0.96   -1.31   -1.66   -1.83   -1.68   -1.18   -0.40    0.52    1.50    2.65    4.37    7.22   11.65
+   255.0    0.00   -0.27   -0.43   -0.50   -0.55   -0.67   -0.93   -1.29   -1.65   -1.83   -1.70   -1.19   -0.38    0.58    1.59    2.73    4.39    7.15   11.58
+   260.0    0.00   -0.23   -0.37   -0.44   -0.51   -0.66   -0.93   -1.32   -1.69   -1.90   -1.78   -1.27   -0.44    0.56    1.59    2.70    4.28    6.94   11.34
+   265.0    0.00   -0.18   -0.31   -0.40   -0.50   -0.67   -0.98   -1.38   -1.79   -2.02   -1.93   -1.42   -0.57    0.46    1.49    2.57    4.04    6.59   10.95
+   270.0    0.00   -0.14   -0.26   -0.37   -0.50   -0.72   -1.05   -1.49   -1.93   -2.20   -2.12   -1.62   -0.76    0.28    1.31    2.34    3.70    6.11   10.40
+   275.0    0.00   -0.10   -0.21   -0.34   -0.51   -0.78   -1.16   -1.64   -2.12   -2.42   -2.37   -1.88   -1.02    0.03    1.05    2.02    3.28    5.54    9.73
+   280.0    0.00   -0.05   -0.16   -0.32   -0.54   -0.86   -1.29   -1.82   -2.33   -2.67   -2.65   -2.18   -1.32   -0.28    0.73    1.64    2.78    4.90    8.96
+   285.0    0.00   -0.01   -0.11   -0.30   -0.57   -0.95   -1.44   -2.01   -2.57   -2.94   -2.96   -2.51   -1.67   -0.63    0.35    1.20    2.24    4.21    8.14
+   290.0    0.00    0.04   -0.06   -0.28   -0.61   -1.05   -1.60   -2.22   -2.82   -3.23   -3.28   -2.87   -2.04   -1.03   -0.08    0.73    1.68    3.52    7.29
+   295.0    0.00    0.08   -0.01   -0.26   -0.64   -1.14   -1.75   -2.43   -3.07   -3.52   -3.60   -3.23   -2.44   -1.45   -0.53    0.23    1.11    2.85    6.47
+   300.0    0.00    0.12    0.04   -0.23   -0.66   -1.23   -1.90   -2.63   -3.31   -3.80   -3.92   -3.58   -2.84   -1.90   -1.00   -0.27    0.57    2.23    5.71
+   305.0    0.00    0.17    0.10   -0.19   -0.68   -1.31   -2.04   -2.82   -3.54   -4.05   -4.21   -3.93   -3.24   -2.34   -1.49   -0.76    0.07    1.68    5.04
+   310.0    0.00    0.21    0.16   -0.15   -0.68   -1.36   -2.15   -2.97   -3.73   -4.28   -4.48   -4.25   -3.62   -2.79   -1.96   -1.24   -0.39    1.22    4.47
+   315.0    0.00    0.26    0.22   -0.10   -0.66   -1.39   -2.23   -3.10   -3.89   -4.47   -4.71   -4.53   -3.98   -3.21   -2.42   -1.69   -0.80    0.83    4.02
+   320.0    0.00    0.30    0.29   -0.03   -0.62   -1.40   -2.28   -3.19   -4.00   -4.61   -4.90   -4.78   -4.31   -3.60   -2.85   -2.10   -1.15    0.54    3.69
+   325.0    0.00    0.34    0.36    0.04   -0.56   -1.37   -2.30   -3.23   -4.08   -4.71   -5.04   -4.99   -4.59   -3.96   -3.24   -2.47   -1.45    0.32    3.47
+   330.0    0.00    0.39    0.44    0.13   -0.48   -1.32   -2.27   -3.24   -4.11   -4.77   -5.13   -5.14   -4.82   -4.27   -3.59   -2.79   -1.69    0.17    3.36
+   335.0    0.00    0.43    0.51    0.23   -0.38   -1.23   -2.21   -3.20   -4.09   -4.78   -5.18   -5.25   -5.00   -4.52   -3.88   -3.06   -1.88    0.08    3.33
+   340.0    0.00    0.47    0.59    0.34   -0.26   -1.12   -2.12   -3.13   -4.04   -4.75   -5.18   -5.30   -5.12   -4.70   -4.10   -3.28   -2.02    0.05    3.37
+   345.0    0.00    0.50    0.67    0.46   -0.12   -0.98   -1.99   -3.02   -3.95   -4.68   -5.14   -5.30   -5.18   -4.83   -4.26   -3.42   -2.10    0.07    3.47
+   350.0    0.00    0.54    0.75    0.58    0.03   -0.82   -1.84   -2.88   -3.83   -4.58   -5.06   -5.26   -5.19   -4.88   -4.35   -3.51   -2.13    0.13    3.62
+   355.0    0.00    0.57    0.83    0.71    0.19   -0.64   -1.66   -2.72   -3.68   -4.44   -4.94   -5.17   -5.14   -4.87   -4.37   -3.52   -2.10    0.24    3.82
+   360.0    0.00    0.60    0.91    0.83    0.36   -0.45   -1.47   -2.54   -3.51   -4.28   -4.79   -5.04   -5.03   -4.80   -4.31   -3.46   -1.99    0.41    4.07
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TRM14532.00     NONE                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH              22    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+Number of Calibrated Antennas GPS:      022                 COMMENT             
+Number of Individual Calibrations GPS:  078                 COMMENT             
+   G01                                                      START OF FREQUENCY  
+     -0.36     -3.26     74.83                              NORTH / EAST / UP   
+   NOAZI    0.00    0.65    2.40    4.70    6.84    8.18    8.35    7.36    5.52    3.34    1.28   -0.38   -1.63   -2.59   -3.28   -3.44   -2.50    0.26    5.24
+     0.0    0.00    0.74    2.73    5.33    7.73    9.18    9.27    8.05    5.90    3.38    0.98   -1.05   -2.71   -4.06   -5.09   -5.48   -4.65   -1.99    2.77
+     5.0    0.00    0.69    2.63    5.23    7.63    9.11    9.24    8.05    5.93    3.43    1.04   -0.97   -2.60   -3.95   -4.99   -5.39   -4.56   -1.88    2.90
+    10.0    0.00    0.63    2.53    5.10    7.52    9.03    9.21    8.06    5.97    3.49    1.13   -0.85   -2.46   -3.80   -4.84   -5.26   -4.45   -1.76    3.05
+    15.0    0.00    0.57    2.42    4.97    7.40    8.94    9.17    8.08    6.03    3.59    1.26   -0.70   -2.28   -3.60   -4.64   -5.09   -4.30   -1.61    3.22
+    20.0    0.00    0.51    2.31    4.83    7.26    8.85    9.14    8.10    6.11    3.71    1.41   -0.51   -2.07   -3.36   -4.40   -4.86   -4.09   -1.40    3.43
+    25.0    0.00    0.45    2.19    4.68    7.11    8.74    9.09    8.13    6.20    3.84    1.58   -0.31   -1.83   -3.10   -4.12   -4.58   -3.82   -1.15    3.67
+    30.0    0.00    0.39    2.07    4.52    6.95    8.62    9.05    8.16    6.29    3.99    1.77   -0.08   -1.57   -2.80   -3.81   -4.26   -3.50   -0.83    3.96
+    35.0    0.00    0.33    1.95    4.36    6.79    8.50    8.99    8.19    6.39    4.15    1.97    0.15   -1.30   -2.50   -3.47   -3.89   -3.13   -0.47    4.28
+    40.0    0.00    0.27    1.83    4.19    6.62    8.36    8.92    8.20    6.48    4.30    2.16    0.37   -1.04   -2.19   -3.12   -3.51   -2.72   -0.06    4.64
+    45.0    0.00    0.22    1.71    4.03    6.44    8.22    8.84    8.20    6.56    4.43    2.33    0.58   -0.79   -1.90   -2.77   -3.12   -2.30    0.36    5.02
+    50.0    0.00    0.17    1.60    3.87    6.26    8.06    8.75    8.18    6.61    4.54    2.49    0.77   -0.56   -1.62   -2.44   -2.74   -1.88    0.80    5.42
+    55.0    0.00    0.12    1.49    3.71    6.09    7.90    8.64    8.13    6.63    4.62    2.61    0.93   -0.36   -1.38   -2.15   -2.39   -1.48    1.23    5.82
+    60.0    0.00    0.08    1.40    3.56    5.91    7.74    8.51    8.06    6.62    4.66    2.70    1.05   -0.21   -1.18   -1.90   -2.07   -1.11    1.64    6.22
+    65.0    0.00    0.04    1.31    3.42    5.75    7.57    8.37    7.97    6.58    4.67    2.74    1.12   -0.10   -1.03   -1.70   -1.81   -0.79    2.01    6.62
+    70.0    0.00    0.00    1.23    3.30    5.59    7.41    8.22    7.85    6.50    4.63    2.73    1.15   -0.04   -0.94   -1.55   -1.61   -0.52    2.34    7.00
+    75.0    0.00   -0.02    1.16    3.19    5.45    7.25    8.07    7.72    6.39    4.55    2.69    1.13   -0.03   -0.89   -1.46   -1.47   -0.31    2.62    7.36
+    80.0    0.00   -0.04    1.11    3.10    5.33    7.10    7.91    7.56    6.26    4.44    2.59    1.07   -0.07   -0.90   -1.43   -1.38   -0.17    2.84    7.68
+    85.0    0.00   -0.06    1.07    3.03    5.22    6.97    7.76    7.40    6.10    4.29    2.47    0.96   -0.16   -0.96   -1.45   -1.36   -0.08    3.00    7.96
+    90.0    0.00   -0.06    1.05    2.98    5.14    6.86    7.61    7.24    5.93    4.12    2.30    0.81   -0.29   -1.06   -1.52   -1.38   -0.06    3.10    8.17
+    95.0    0.00   -0.06    1.04    2.96    5.09    6.76    7.48    7.08    5.75    3.93    2.12    0.63   -0.45   -1.20   -1.63   -1.46   -0.09    3.12    8.29
+   100.0    0.00   -0.06    1.05    2.96    5.06    6.70    7.37    6.93    5.56    3.73    1.91    0.43   -0.64   -1.38   -1.79   -1.59   -0.20    3.06    8.30
+   105.0    0.00   -0.04    1.08    2.98    5.06    6.66    7.28    6.79    5.38    3.53    1.69    0.21   -0.86   -1.59   -1.99   -1.78   -0.37    2.90    8.18
+   110.0    0.00   -0.02    1.12    3.03    5.09    6.64    7.21    6.66    5.21    3.32    1.47   -0.03   -1.10   -1.83   -2.22   -2.01   -0.61    2.64    7.92
+   115.0    0.00    0.01    1.17    3.10    5.15    6.66    7.17    6.56    5.05    3.12    1.25   -0.27   -1.36   -2.10   -2.50   -2.30   -0.92    2.29    7.53
+   120.0    0.00    0.04    1.24    3.19    5.23    6.70    7.15    6.47    4.91    2.94    1.03   -0.51   -1.63   -2.39   -2.81   -2.63   -1.30    1.84    7.00
+   125.0    0.00    0.08    1.33    3.30    5.33    6.76    7.15    6.40    4.78    2.76    0.81   -0.76   -1.91   -2.70   -3.16   -3.02   -1.74    1.31    6.36
+   130.0    0.00    0.13    1.42    3.43    5.46    6.85    7.17    6.35    4.66    2.59    0.60   -1.01   -2.19   -3.03   -3.53   -3.44   -2.22    0.72    5.65
+   135.0    0.00    0.18    1.53    3.57    5.60    6.95    7.21    6.31    4.56    2.43    0.40   -1.25   -2.48   -3.37   -3.92   -3.88   -2.74    0.10    4.90
+   140.0    0.00    0.23    1.64    3.72    5.76    7.08    7.27    6.29    4.47    2.28    0.21   -1.49   -2.77   -3.71   -4.31   -4.32   -3.25   -0.51    4.17
+   145.0    0.00    0.29    1.76    3.89    5.93    7.21    7.34    6.29    4.39    2.15    0.02   -1.72   -3.05   -4.04   -4.68   -4.74   -3.73   -1.07    3.51
+   150.0    0.00    0.35    1.89    4.06    6.11    7.36    7.43    6.30    4.34    2.03   -0.15   -1.94   -3.31   -4.34   -5.02   -5.12   -4.15   -1.55    2.96
+   155.0    0.00    0.41    2.02    4.23    6.29    7.52    7.52    6.33    4.30    1.93   -0.29   -2.13   -3.54   -4.60   -5.31   -5.43   -4.48   -1.92    2.55
+   160.0    0.00    0.47    2.14    4.41    6.48    7.68    7.63    6.38    4.28    1.86   -0.41   -2.28   -3.72   -4.80   -5.52   -5.65   -4.71   -2.16    2.32
+   165.0    0.00    0.54    2.27    4.58    6.66    7.84    7.75    6.44    4.28    1.81   -0.50   -2.39   -3.85   -4.93   -5.64   -5.75   -4.80   -2.24    2.26
+   170.0    0.00    0.60    2.39    4.74    6.84    8.01    7.88    6.52    4.31    1.81   -0.53   -2.44   -3.90   -4.97   -5.66   -5.75   -4.77   -2.18    2.39
+   175.0    0.00    0.66    2.51    4.90    7.01    8.17    8.01    6.62    4.38    1.84   -0.51   -2.42   -3.86   -4.91   -5.57   -5.62   -4.61   -1.97    2.67
+   180.0    0.00    0.72    2.62    5.04    7.17    8.32    8.15    6.73    4.48    1.93   -0.43   -2.33   -3.74   -4.75   -5.36   -5.38   -4.33   -1.65    3.08
+   185.0    0.00    0.78    2.72    5.17    7.31    8.46    8.28    6.86    4.60    2.06   -0.28   -2.16   -3.53   -4.49   -5.06   -5.03   -3.96   -1.22    3.59
+   190.0    0.00    0.83    2.82    5.29    7.43    8.59    8.41    7.00    4.76    2.24   -0.07   -1.91   -3.23   -4.14   -4.66   -4.61   -3.51   -0.73    4.17
+   195.0    0.00    0.88    2.90    5.39    7.54    8.69    8.53    7.14    4.93    2.45    0.19   -1.59   -2.85   -3.71   -4.20   -4.13   -3.01   -0.20    4.79
+   200.0    0.00    0.93    2.98    5.47    7.62    8.78    8.63    7.28    5.11    2.69    0.49   -1.22   -2.42   -3.23   -3.69   -3.61   -2.49    0.35    5.42
+   205.0    0.00    0.97    3.04    5.53    7.67    8.83    8.71    7.40    5.29    2.95    0.82   -0.82   -1.96   -2.72   -3.16   -3.08   -1.96    0.90    6.04
+   210.0    0.00    1.01    3.09    5.58    7.71    8.86    8.76    7.50    5.46    3.19    1.15   -0.41   -1.48   -2.21   -2.64   -2.57   -1.45    1.44    6.65
+   215.0    0.00    1.05    3.14    5.60    7.71    8.87    8.79    7.57    5.60    3.42    1.47   -0.01   -1.03   -1.72   -2.15   -2.09   -0.97    1.95    7.23
+   220.0    0.00    1.08    3.17    5.62    7.70    8.84    8.77    7.60    5.71    3.61    1.74    0.34   -0.62   -1.28   -1.71   -1.66   -0.54    2.44    7.78
+   225.0    0.00    1.11    3.19    5.61    7.67    8.79    8.73    7.59    5.76    3.74    1.96    0.63   -0.29   -0.92   -1.34   -1.29   -0.15    2.88    8.30
+   230.0    0.00    1.13    3.21    5.60    7.61    8.71    8.65    7.54    5.77    3.82    2.10    0.83   -0.03   -0.65   -1.05   -0.99    0.18    3.27    8.77
+   235.0    0.00    1.16    3.22    5.58    7.55    8.62    8.55    7.46    5.72    3.82    2.17    0.95    0.12   -0.47   -0.86   -0.78    0.43    3.60    9.17
+   240.0    0.00    1.17    3.23    5.55    7.48    8.51    8.43    7.35    5.63    3.77    2.15    0.97    0.17   -0.39   -0.76   -0.65    0.61    3.85    9.49
+   245.0    0.00    1.19    3.23    5.52    7.41    8.41    8.30    7.21    5.51    3.66    2.07    0.91    0.13   -0.41   -0.76   -0.61    0.71    4.00    9.70
+   250.0    0.00    1.20    3.23    5.49    7.34    8.31    8.17    7.07    5.36    3.51    1.92    0.77    0.00   -0.52   -0.84   -0.66    0.70    4.04    9.78
+   255.0    0.00    1.21    3.23    5.46    7.29    8.22    8.06    6.93    5.20    3.34    1.73    0.57   -0.19   -0.70   -1.00   -0.80    0.58    3.94    9.70
+   260.0    0.00    1.21    3.22    5.44    7.24    8.15    7.96    6.81    5.05    3.16    1.52    0.34   -0.43   -0.94   -1.23   -1.02    0.35    3.70    9.45
+   265.0    0.00    1.22    3.22    5.43    7.21    8.10    7.90    6.71    4.92    2.99    1.31    0.10   -0.70   -1.22   -1.52   -1.32    0.02    3.32    9.03
+   270.0    0.00    1.22    3.22    5.42    7.20    8.08    7.87    6.66    4.82    2.84    1.12   -0.14   -0.97   -1.52   -1.85   -1.69   -0.42    2.79    8.45
+   275.0    0.00    1.21    3.22    5.43    7.22    8.10    7.87    6.64    4.77    2.74    0.96   -0.36   -1.24   -1.83   -2.20   -2.12   -0.94    2.16    7.73
+   280.0    0.00    1.21    3.22    5.44    7.25    8.15    7.92    6.67    4.77    2.68    0.84   -0.55   -1.49   -2.14   -2.58   -2.58   -1.53    1.43    6.91
+   285.0    0.00    1.20    3.22    5.46    7.30    8.22    8.01    6.75    4.81    2.67    0.76   -0.69   -1.70   -2.43   -2.95   -3.06   -2.14    0.67    6.03
+   290.0    0.00    1.19    3.22    5.49    7.36    8.32    8.12    6.86    4.89    2.71    0.73   -0.80   -1.89   -2.69   -3.31   -3.53   -2.75   -0.10    5.15
+   295.0    0.00    1.18    3.22    5.53    7.44    8.44    8.26    7.00    5.01    2.78    0.74   -0.86   -2.04   -2.94   -3.65   -3.97   -3.32   -0.81    4.32
+   300.0    0.00    1.17    3.22    5.56    7.53    8.57    8.42    7.16    5.15    2.88    0.78   -0.90   -2.16   -3.15   -3.96   -4.38   -3.84   -1.45    3.58
+   305.0    0.00    1.15    3.21    5.60    7.61    8.70    8.58    7.33    5.30    2.99    0.83   -0.92   -2.27   -3.34   -4.23   -4.73   -4.27   -1.97    2.96
+   310.0    0.00    1.13    3.21    5.63    7.70    8.83    8.74    7.50    5.45    3.10    0.89   -0.93   -2.36   -3.51   -4.46   -5.02   -4.60   -2.36    2.49
+   315.0    0.00    1.11    3.19    5.66    7.78    8.96    8.89    7.65    5.59    3.20    0.94   -0.94   -2.44   -3.66   -4.66   -5.24   -4.83   -2.61    2.17
+   320.0    0.00    1.08    3.18    5.68    7.84    9.06    9.02    7.78    5.70    3.28    0.98   -0.96   -2.51   -3.79   -4.82   -5.40   -4.97   -2.74    1.99
+   325.0    0.00    1.05    3.15    5.68    7.90    9.15    9.13    7.89    5.79    3.34    1.00   -0.98   -2.59   -3.90   -4.95   -5.51   -5.03   -2.76    1.93
+   330.0    0.00    1.01    3.12    5.68    7.93    9.22    9.22    7.97    5.85    3.38    1.01   -1.01   -2.66   -4.00   -5.05   -5.57   -5.02   -2.70    1.97
+   335.0    0.00    0.98    3.08    5.66    7.95    9.27    9.27    8.02    5.89    3.39    0.99   -1.05   -2.72   -4.08   -5.12   -5.60   -4.98   -2.59    2.07
+   340.0    0.00    0.94    3.02    5.63    7.94    9.29    9.31    8.05    5.90    3.39    0.98   -1.08   -2.76   -4.13   -5.17   -5.61   -4.92   -2.46    2.20
+   345.0    0.00    0.89    2.96    5.58    7.92    9.29    9.32    8.06    5.90    3.38    0.96   -1.11   -2.79   -4.16   -5.19   -5.60   -4.85   -2.32    2.35
+   350.0    0.00    0.84    2.90    5.51    7.87    9.27    9.32    8.06    5.90    3.37    0.95   -1.12   -2.80   -4.17   -5.19   -5.58   -4.78   -2.20    2.50
+   355.0    0.00    0.79    2.82    5.43    7.81    9.23    9.30    8.06    5.89    3.37    0.95   -1.10   -2.77   -4.13   -5.16   -5.54   -4.72   -2.09    2.64
+   360.0    0.00    0.74    2.73    5.33    7.73    9.18    9.27    8.05    5.90    3.38    0.98   -1.05   -2.71   -4.06   -5.09   -5.48   -4.65   -1.99    2.77
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -3.18     -0.87     66.97                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.04   -0.16   -0.38   -0.74   -1.24   -1.86   -2.54   -3.16   -3.59   -3.73   -3.53   -3.06   -2.38   -1.54   -0.41    1.29    3.95    7.82
+     0.0    0.00    0.60    0.91    0.83    0.36   -0.45   -1.47   -2.54   -3.51   -4.28   -4.79   -5.04   -5.03   -4.80   -4.31   -3.46   -1.99    0.41    4.07
+     5.0    0.00    0.62    0.98    0.96    0.53   -0.26   -1.27   -2.34   -3.32   -4.10   -4.62   -4.87   -4.88   -4.66   -4.18   -3.32   -1.82    0.64    4.36
+    10.0    0.00    0.64    1.04    1.07    0.69   -0.06   -1.06   -2.13   -3.11   -3.90   -4.42   -4.67   -4.68   -4.47   -3.99   -3.11   -1.57    0.95    4.72
+    15.0    0.00    0.66    1.10    1.18    0.85    0.13   -0.85   -1.91   -2.90   -3.69   -4.20   -4.45   -4.45   -4.23   -3.74   -2.83   -1.25    1.32    5.13
+    20.0    0.00    0.67    1.14    1.27    0.99    0.31   -0.65   -1.70   -2.69   -3.47   -3.97   -4.20   -4.19   -3.95   -3.43   -2.49   -0.85    1.77    5.61
+    25.0    0.00    0.67    1.17    1.35    1.11    0.47   -0.46   -1.50   -2.47   -3.24   -3.73   -3.94   -3.91   -3.64   -3.09   -2.09   -0.39    2.30    6.15
+    30.0    0.00    0.67    1.19    1.41    1.22    0.62   -0.28   -1.31   -2.27   -3.02   -3.49   -3.68   -3.61   -3.31   -2.70   -1.64    0.14    2.89    6.75
+    35.0    0.00    0.66    1.20    1.45    1.29    0.73   -0.14   -1.14   -2.08   -2.81   -3.26   -3.41   -3.31   -2.96   -2.30   -1.16    0.71    3.53    7.40
+    40.0    0.00    0.64    1.19    1.46    1.34    0.82   -0.02   -0.99   -1.90   -2.61   -3.03   -3.15   -3.01   -2.61   -1.88   -0.65    1.31    4.21    8.08
+    45.0    0.00    0.62    1.16    1.45    1.36    0.87    0.07   -0.87   -1.76   -2.44   -2.82   -2.91   -2.72   -2.26   -1.46   -0.15    1.91    4.90    8.78
+    50.0    0.00    0.59    1.11    1.41    1.34    0.88    0.12   -0.78   -1.64   -2.29   -2.64   -2.68   -2.44   -1.92   -1.05    0.35    2.51    5.58    9.48
+    55.0    0.00    0.55    1.05    1.34    1.28    0.86    0.13   -0.73   -1.56   -2.17   -2.49   -2.48   -2.19   -1.61   -0.66    0.83    3.08    6.24   10.17
+    60.0    0.00    0.51    0.97    1.24    1.19    0.79    0.10   -0.73   -1.51   -2.09   -2.37   -2.32   -1.97   -1.32   -0.30    1.27    3.61    6.85   10.82
+    65.0    0.00    0.46    0.88    1.12    1.07    0.68    0.03   -0.77   -1.51   -2.05   -2.29   -2.19   -1.78   -1.07    0.02    1.67    4.08    7.40   11.42
+    70.0    0.00    0.40    0.77    0.97    0.91    0.53   -0.10   -0.85   -1.56   -2.06   -2.25   -2.10   -1.63   -0.85    0.30    2.00    4.49    7.88   11.96
+    75.0    0.00    0.34    0.65    0.80    0.71    0.34   -0.26   -0.98   -1.65   -2.12   -2.27   -2.07   -1.53   -0.69    0.52    2.28    4.82    8.27   12.42
+    80.0    0.00    0.27    0.51    0.61    0.49    0.12   -0.47   -1.16   -1.79   -2.22   -2.33   -2.07   -1.48   -0.58    0.69    2.49    5.06    8.56   12.79
+    85.0    0.00    0.20    0.36    0.39    0.23   -0.15   -0.72   -1.38   -1.98   -2.37   -2.44   -2.13   -1.48   -0.52    0.79    2.62    5.22    8.76   13.06
+    90.0    0.00    0.13    0.21    0.17   -0.04   -0.44   -1.00   -1.64   -2.21   -2.57   -2.59   -2.24   -1.53   -0.52    0.83    2.68    5.29    8.85   13.21
+    95.0    0.00    0.06    0.05   -0.08   -0.34   -0.76   -1.32   -1.93   -2.48   -2.80   -2.79   -2.39   -1.63   -0.58    0.80    2.66    5.26    8.84   13.25
+   100.0    0.00   -0.02   -0.12   -0.32   -0.65   -1.10   -1.66   -2.26   -2.78   -3.07   -3.02   -2.58   -1.78   -0.69    0.71    2.56    5.15    8.72   13.15
+   105.0    0.00   -0.09   -0.29   -0.58   -0.97   -1.45   -2.02   -2.61   -3.11   -3.38   -3.30   -2.82   -1.99   -0.86    0.54    2.39    4.95    8.48   12.91
+   110.0    0.00   -0.17   -0.45   -0.83   -1.28   -1.81   -2.39   -2.98   -3.46   -3.70   -3.59   -3.09   -2.23   -1.09    0.32    2.14    4.66    8.15   12.54
+   115.0    0.00   -0.24   -0.61   -1.07   -1.59   -2.16   -2.76   -3.35   -3.81   -4.04   -3.91   -3.39   -2.51   -1.37    0.03    1.82    4.29    7.71   12.04
+   120.0    0.00   -0.31   -0.77   -1.31   -1.89   -2.50   -3.12   -3.71   -4.17   -4.38   -4.24   -3.71   -2.83   -1.69   -0.31    1.44    3.85    7.19   11.42
+   125.0    0.00   -0.38   -0.91   -1.53   -2.17   -2.82   -3.46   -4.06   -4.51   -4.72   -4.58   -4.04   -3.17   -2.05   -0.70    1.00    3.34    6.59   10.69
+   130.0    0.00   -0.44   -1.05   -1.73   -2.42   -3.11   -3.77   -4.38   -4.83   -5.04   -4.90   -4.38   -3.53   -2.44   -1.13    0.52    2.79    5.93    9.90
+   135.0    0.00   -0.50   -1.17   -1.90   -2.65   -3.37   -4.05   -4.66   -5.12   -5.34   -5.21   -4.71   -3.90   -2.85   -1.59    0.01    2.20    5.24    9.07
+   140.0    0.00   -0.56   -1.27   -2.06   -2.83   -3.58   -4.27   -4.89   -5.37   -5.59   -5.49   -5.02   -4.25   -3.26   -2.06   -0.52    1.60    4.54    8.23
+   145.0    0.00   -0.60   -1.36   -2.18   -2.98   -3.74   -4.44   -5.07   -5.56   -5.80   -5.73   -5.31   -4.59   -3.66   -2.52   -1.05    1.01    3.86    7.43
+   150.0    0.00   -0.64   -1.44   -2.27   -3.08   -3.85   -4.56   -5.19   -5.69   -5.96   -5.92   -5.55   -4.90   -4.04   -2.96   -1.55    0.44    3.23    6.70
+   155.0    0.00   -0.68   -1.49   -2.33   -3.14   -3.90   -4.61   -5.25   -5.76   -6.05   -6.05   -5.74   -5.16   -4.37   -3.37   -2.02   -0.07    2.66    6.07
+   160.0    0.00   -0.71   -1.53   -2.37   -3.16   -3.90   -4.60   -5.24   -5.76   -6.08   -6.12   -5.86   -5.35   -4.64   -3.71   -2.42   -0.51    2.19    5.58
+   165.0    0.00   -0.73   -1.55   -2.37   -3.14   -3.86   -4.54   -5.17   -5.70   -6.04   -6.12   -5.92   -5.48   -4.84   -3.98   -2.74   -0.87    1.83    5.24
+   170.0    0.00   -0.74   -1.55   -2.34   -3.07   -3.76   -4.42   -5.05   -5.58   -5.94   -6.06   -5.90   -5.53   -4.96   -4.17   -2.97   -1.12    1.60    5.05
+   175.0    0.00   -0.75   -1.54   -2.29   -2.98   -3.62   -4.25   -4.87   -5.41   -5.78   -5.92   -5.81   -5.49   -4.98   -4.25   -3.10   -1.25    1.49    5.03
+   180.0    0.00   -0.75   -1.51   -2.22   -2.85   -3.45   -4.04   -4.64   -5.18   -5.56   -5.72   -5.64   -5.36   -4.90   -4.22   -3.11   -1.27    1.52    5.16
+   185.0    0.00   -0.74   -1.47   -2.12   -2.69   -3.24   -3.80   -4.38   -4.91   -5.30   -5.46   -5.40   -5.14   -4.72   -4.08   -3.00   -1.17    1.67    5.42
+   190.0    0.00   -0.73   -1.42   -2.01   -2.52   -3.01   -3.54   -4.10   -4.61   -4.99   -5.15   -5.09   -4.84   -4.45   -3.84   -2.78   -0.94    1.94    5.81
+   195.0    0.00   -0.71   -1.36   -1.89   -2.33   -2.77   -3.26   -3.79   -4.29   -4.66   -4.81   -4.73   -4.47   -4.08   -3.49   -2.45   -0.62    2.31    6.29
+   200.0    0.00   -0.69   -1.29   -1.75   -2.14   -2.52   -2.97   -3.48   -3.96   -4.31   -4.43   -4.32   -4.05   -3.65   -3.06   -2.03   -0.19    2.77    6.84
+   205.0    0.00   -0.66   -1.21   -1.61   -1.93   -2.27   -2.69   -3.17   -3.63   -3.95   -4.03   -3.89   -3.58   -3.16   -2.56   -1.53    0.30    3.30    7.45
+   210.0    0.00   -0.63   -1.13   -1.47   -1.73   -2.02   -2.40   -2.86   -3.30   -3.59   -3.64   -3.45   -3.09   -2.63   -2.01   -0.98    0.86    3.87    8.09
+   215.0    0.00   -0.60   -1.05   -1.33   -1.54   -1.79   -2.13   -2.57   -2.98   -3.24   -3.25   -3.01   -2.60   -2.09   -1.44   -0.40    1.45    4.47    8.74
+   220.0    0.00   -0.57   -0.96   -1.19   -1.36   -1.56   -1.88   -2.29   -2.69   -2.92   -2.89   -2.59   -2.12   -1.56   -0.87    0.20    2.04    5.06    9.37
+   225.0    0.00   -0.53   -0.88   -1.06   -1.19   -1.36   -1.65   -2.04   -2.42   -2.62   -2.55   -2.21   -1.68   -1.05   -0.31    0.77    2.61    5.63    9.97
+   230.0    0.00   -0.49   -0.79   -0.94   -1.03   -1.18   -1.45   -1.82   -2.18   -2.36   -2.27   -1.88   -1.29   -0.60    0.20    1.31    3.14    6.15   10.52
+   235.0    0.00   -0.45   -0.71   -0.83   -0.89   -1.02   -1.28   -1.64   -1.98   -2.15   -2.03   -1.60   -0.95   -0.20    0.65    1.78    3.60    6.59   10.98
+   240.0    0.00   -0.40   -0.64   -0.73   -0.77   -0.89   -1.13   -1.49   -1.82   -1.99   -1.85   -1.39   -0.69    0.12    1.02    2.17    3.97    6.92   11.34
+   245.0    0.00   -0.36   -0.56   -0.64   -0.68   -0.79   -1.03   -1.38   -1.71   -1.88   -1.73   -1.25   -0.51    0.36    1.30    2.46    4.23    7.14   11.57
+   250.0    0.00   -0.32   -0.50   -0.56   -0.60   -0.71   -0.96   -1.31   -1.66   -1.83   -1.68   -1.18   -0.40    0.52    1.50    2.65    4.37    7.22   11.65
+   255.0    0.00   -0.27   -0.43   -0.50   -0.55   -0.67   -0.93   -1.29   -1.65   -1.83   -1.70   -1.19   -0.38    0.58    1.59    2.73    4.39    7.15   11.58
+   260.0    0.00   -0.23   -0.37   -0.44   -0.51   -0.66   -0.93   -1.32   -1.69   -1.90   -1.78   -1.27   -0.44    0.56    1.59    2.70    4.28    6.94   11.34
+   265.0    0.00   -0.18   -0.31   -0.40   -0.50   -0.67   -0.98   -1.38   -1.79   -2.02   -1.93   -1.42   -0.57    0.46    1.49    2.57    4.04    6.59   10.95
+   270.0    0.00   -0.14   -0.26   -0.37   -0.50   -0.72   -1.05   -1.49   -1.93   -2.20   -2.12   -1.62   -0.76    0.28    1.31    2.34    3.70    6.11   10.40
+   275.0    0.00   -0.10   -0.21   -0.34   -0.51   -0.78   -1.16   -1.64   -2.12   -2.42   -2.37   -1.88   -1.02    0.03    1.05    2.02    3.28    5.54    9.73
+   280.0    0.00   -0.05   -0.16   -0.32   -0.54   -0.86   -1.29   -1.82   -2.33   -2.67   -2.65   -2.18   -1.32   -0.28    0.73    1.64    2.78    4.90    8.96
+   285.0    0.00   -0.01   -0.11   -0.30   -0.57   -0.95   -1.44   -2.01   -2.57   -2.94   -2.96   -2.51   -1.67   -0.63    0.35    1.20    2.24    4.21    8.14
+   290.0    0.00    0.04   -0.06   -0.28   -0.61   -1.05   -1.60   -2.22   -2.82   -3.23   -3.28   -2.87   -2.04   -1.03   -0.08    0.73    1.68    3.52    7.29
+   295.0    0.00    0.08   -0.01   -0.26   -0.64   -1.14   -1.75   -2.43   -3.07   -3.52   -3.60   -3.23   -2.44   -1.45   -0.53    0.23    1.11    2.85    6.47
+   300.0    0.00    0.12    0.04   -0.23   -0.66   -1.23   -1.90   -2.63   -3.31   -3.80   -3.92   -3.58   -2.84   -1.90   -1.00   -0.27    0.57    2.23    5.71
+   305.0    0.00    0.17    0.10   -0.19   -0.68   -1.31   -2.04   -2.82   -3.54   -4.05   -4.21   -3.93   -3.24   -2.34   -1.49   -0.76    0.07    1.68    5.04
+   310.0    0.00    0.21    0.16   -0.15   -0.68   -1.36   -2.15   -2.97   -3.73   -4.28   -4.48   -4.25   -3.62   -2.79   -1.96   -1.24   -0.39    1.22    4.47
+   315.0    0.00    0.26    0.22   -0.10   -0.66   -1.39   -2.23   -3.10   -3.89   -4.47   -4.71   -4.53   -3.98   -3.21   -2.42   -1.69   -0.80    0.83    4.02
+   320.0    0.00    0.30    0.29   -0.03   -0.62   -1.40   -2.28   -3.19   -4.00   -4.61   -4.90   -4.78   -4.31   -3.60   -2.85   -2.10   -1.15    0.54    3.69
+   325.0    0.00    0.34    0.36    0.04   -0.56   -1.37   -2.30   -3.23   -4.08   -4.71   -5.04   -4.99   -4.59   -3.96   -3.24   -2.47   -1.45    0.32    3.47
+   330.0    0.00    0.39    0.44    0.13   -0.48   -1.32   -2.27   -3.24   -4.11   -4.77   -5.13   -5.14   -4.82   -4.27   -3.59   -2.79   -1.69    0.17    3.36
+   335.0    0.00    0.43    0.51    0.23   -0.38   -1.23   -2.21   -3.20   -4.09   -4.78   -5.18   -5.25   -5.00   -4.52   -3.88   -3.06   -1.88    0.08    3.33
+   340.0    0.00    0.47    0.59    0.34   -0.26   -1.12   -2.12   -3.13   -4.04   -4.75   -5.18   -5.30   -5.12   -4.70   -4.10   -3.28   -2.02    0.05    3.37
+   345.0    0.00    0.50    0.67    0.46   -0.12   -0.98   -1.99   -3.02   -3.95   -4.68   -5.14   -5.30   -5.18   -4.83   -4.26   -3.42   -2.10    0.07    3.47
+   350.0    0.00    0.54    0.75    0.58    0.03   -0.82   -1.84   -2.88   -3.83   -4.58   -5.06   -5.26   -5.19   -4.88   -4.35   -3.51   -2.13    0.13    3.62
+   355.0    0.00    0.57    0.83    0.71    0.19   -0.64   -1.66   -2.72   -3.68   -4.44   -4.94   -5.17   -5.14   -4.87   -4.37   -3.52   -2.10    0.24    3.82
+   360.0    0.00    0.60    0.91    0.83    0.36   -0.45   -1.47   -2.54   -3.51   -4.28   -4.79   -5.04   -5.03   -4.80   -4.31   -3.46   -1.99    0.41    4.07
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TRM14532.10     NONE                                        TYPE / SERIAL NO    
+FIELD               NGS                      1    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+     -1.02      0.53     77.85                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.23   -0.20   -0.23   -0.22   -0.32   -0.36   -0.49   -0.57   -0.71   -0.76   -0.79   -0.93   -0.95   -0.98   -0.71   -0.03
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      1.52      3.51     86.75                              NORTH / EAST / UP   
+   NOAZI    0.00   -1.13   -1.81   -2.18   -2.39   -2.38   -2.49   -2.57   -2.71   -2.91   -3.15   -3.26   -3.43   -3.63   -3.93   -4.31   -4.55
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TRM22020.00+GP  NONE                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH              27    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+Number of Calibrated Antennas GPS:      027                 COMMENT             
+Number of Individual Calibrations GPS:  136                 COMMENT             
+   G01                                                      START OF FREQUENCY  
+      1.25     -1.44     70.58                              NORTH / EAST / UP   
+   NOAZI    0.00    0.64    2.34    4.51    6.42    7.47    7.38    6.24    4.44    2.45    0.65   -0.82   -1.99   -2.90   -3.45   -3.26   -1.75    1.50    6.44
+     0.0    0.00    0.88    2.80    5.12    7.09    8.11    7.92    6.66    4.75    2.66    0.74   -0.90   -2.27   -3.40   -4.12   -3.99   -2.47    0.82    5.70
+     5.0    0.00    0.84    2.73    5.04    7.01    8.05    7.89    6.66    4.78    2.71    0.81   -0.81   -2.16   -3.28   -4.01   -3.92   -2.45    0.80    5.68
+    10.0    0.00    0.81    2.67    4.96    6.93    7.98    7.85    6.66    4.80    2.76    0.88   -0.70   -2.03   -3.14   -3.88   -3.83   -2.42    0.78    5.69
+    15.0    0.00    0.77    2.59    4.86    6.84    7.91    7.81    6.65    4.82    2.81    0.96   -0.60   -1.90   -2.99   -3.73   -3.72   -2.37    0.79    5.74
+    20.0    0.00    0.73    2.52    4.77    6.74    7.83    7.76    6.63    4.84    2.86    1.03   -0.49   -1.76   -2.83   -3.57   -3.59   -2.29    0.84    5.81
+    25.0    0.00    0.69    2.44    4.67    6.64    7.75    7.71    6.62    4.86    2.90    1.10   -0.40   -1.64   -2.68   -3.41   -3.44   -2.17    0.92    5.92
+    30.0    0.00    0.65    2.36    4.57    6.54    7.67    7.66    6.60    4.87    2.94    1.16   -0.31   -1.52   -2.53   -3.24   -3.27   -2.03    1.03    6.04
+    35.0    0.00    0.61    2.29    4.47    6.44    7.58    7.60    6.58    4.88    2.97    1.21   -0.24   -1.42   -2.40   -3.08   -3.10   -1.87    1.17    6.17
+    40.0    0.00    0.57    2.21    4.37    6.33    7.49    7.54    6.55    4.88    2.99    1.24   -0.19   -1.35   -2.29   -2.93   -2.93   -1.69    1.32    6.28
+    45.0    0.00    0.53    2.13    4.27    6.23    7.40    7.48    6.52    4.87    2.99    1.26   -0.17   -1.30   -2.21   -2.81   -2.77   -1.53    1.45    6.35
+    50.0    0.00    0.49    2.06    4.17    6.13    7.31    7.41    6.48    4.85    2.99    1.26   -0.16   -1.28   -2.16   -2.72   -2.65   -1.40    1.56    6.39
+    55.0    0.00    0.45    1.99    4.08    6.03    7.23    7.35    6.44    4.83    2.97    1.24   -0.17   -1.28   -2.14   -2.67   -2.57   -1.30    1.63    6.38
+    60.0    0.00    0.42    1.92    4.00    5.94    7.15    7.29    6.39    4.79    2.94    1.21   -0.21   -1.32   -2.16   -2.66   -2.53   -1.25    1.65    6.32
+    65.0    0.00    0.39    1.86    3.92    5.86    7.07    7.22    6.34    4.75    2.90    1.16   -0.27   -1.37   -2.21   -2.69   -2.54   -1.26    1.63    6.21
+    70.0    0.00    0.35    1.81    3.85    5.78    7.00    7.16    6.29    4.70    2.84    1.10   -0.34   -1.45   -2.28   -2.76   -2.60   -1.31    1.56    6.07
+    75.0    0.00    0.33    1.76    3.78    5.72    6.94    7.11    6.24    4.65    2.78    1.02   -0.43   -1.55   -2.38   -2.86   -2.68   -1.39    1.46    5.93
+    80.0    0.00    0.30    1.71    3.73    5.66    6.89    7.06    6.18    4.59    2.71    0.94   -0.53   -1.66   -2.50   -2.97   -2.79   -1.49    1.36    5.79
+    85.0    0.00    0.28    1.68    3.69    5.62    6.84    7.01    6.14    4.53    2.63    0.84   -0.63   -1.78   -2.62   -3.09   -2.91   -1.60    1.26    5.67
+    90.0    0.00    0.26    1.65    3.65    5.59    6.81    6.98    6.09    4.47    2.56    0.75   -0.74   -1.89   -2.74   -3.21   -3.02   -1.69    1.19    5.60
+    95.0    0.00    0.25    1.62    3.63    5.57    6.79    6.96    6.06    4.42    2.48    0.66   -0.85   -2.01   -2.86   -3.33   -3.11   -1.75    1.16    5.59
+   100.0    0.00    0.23    1.61    3.62    5.56    6.79    6.95    6.04    4.37    2.42    0.58   -0.95   -2.12   -2.97   -3.42   -3.19   -1.79    1.17    5.63
+   105.0    0.00    0.23    1.60    3.61    5.56    6.79    6.94    6.02    4.34    2.37    0.51   -1.03   -2.21   -3.06   -3.51   -3.24   -1.80    1.22    5.73
+   110.0    0.00    0.22    1.60    3.62    5.57    6.81    6.95    6.02    4.32    2.33    0.45   -1.10   -2.29   -3.14   -3.57   -3.28   -1.78    1.30    5.88
+   115.0    0.00    0.22    1.60    3.63    5.59    6.83    6.97    6.02    4.31    2.31    0.42   -1.15   -2.34   -3.20   -3.63   -3.31   -1.75    1.41    6.06
+   120.0    0.00    0.22    1.61    3.65    5.62    6.86    7.00    6.04    4.32    2.30    0.40   -1.17   -2.39   -3.26   -3.68   -3.33   -1.73    1.52    6.26
+   125.0    0.00    0.23    1.63    3.68    5.65    6.89    7.03    6.06    4.33    2.31    0.40   -1.18   -2.41   -3.30   -3.73   -3.37   -1.71    1.61    6.45
+   130.0    0.00    0.23    1.65    3.71    5.69    6.93    7.06    6.09    4.36    2.33    0.42   -1.18   -2.43   -3.34   -3.79   -3.42   -1.72    1.69    6.62
+   135.0    0.00    0.24    1.67    3.75    5.73    6.97    7.09    6.12    4.38    2.36    0.44   -1.17   -2.44   -3.38   -3.85   -3.49   -1.75    1.72    6.76
+   140.0    0.00    0.26    1.70    3.79    5.78    7.01    7.13    6.14    4.41    2.38    0.47   -1.15   -2.44   -3.42   -3.92   -3.57   -1.82    1.72    6.85
+   145.0    0.00    0.27    1.73    3.83    5.82    7.05    7.16    6.17    4.43    2.41    0.49   -1.13   -2.44   -3.45   -4.00   -3.66   -1.90    1.68    6.89
+   150.0    0.00    0.29    1.77    3.87    5.87    7.09    7.18    6.18    4.44    2.42    0.51   -1.12   -2.45   -3.49   -4.06   -3.75   -1.99    1.62    6.88
+   155.0    0.00    0.31    1.80    3.92    5.91    7.12    7.20    6.18    4.44    2.42    0.51   -1.11   -2.46   -3.51   -4.11   -3.82   -2.07    1.54    6.82
+   160.0    0.00    0.34    1.84    3.96    5.95    7.15    7.21    6.18    4.43    2.41    0.51   -1.12   -2.46   -3.53   -4.14   -3.86   -2.13    1.46    6.73
+   165.0    0.00    0.36    1.89    4.01    5.99    7.17    7.21    6.17    4.41    2.39    0.49   -1.13   -2.46   -3.52   -4.13   -3.86   -2.16    1.38    6.60
+   170.0    0.00    0.39    1.93    4.06    6.03    7.19    7.21    6.15    4.38    2.36    0.47   -1.14   -2.45   -3.49   -4.08   -3.82   -2.15    1.33    6.47
+   175.0    0.00    0.41    1.97    4.11    6.07    7.21    7.21    6.13    4.34    2.32    0.44   -1.14   -2.42   -3.43   -4.00   -3.74   -2.10    1.29    6.33
+   180.0    0.00    0.44    2.02    4.15    6.10    7.22    7.20    6.10    4.31    2.29    0.42   -1.13   -2.38   -3.34   -3.87   -3.61   -2.02    1.29    6.21
+   185.0    0.00    0.47    2.06    4.20    6.14    7.24    7.19    6.08    4.27    2.26    0.41   -1.11   -2.31   -3.22   -3.72   -3.46   -1.91    1.31    6.12
+   190.0    0.00    0.50    2.11    4.25    6.17    7.25    7.18    6.06    4.25    2.24    0.42   -1.06   -2.22   -3.08   -3.55   -3.28   -1.78    1.36    6.06
+   195.0    0.00    0.53    2.16    4.29    6.20    7.26    7.18    6.04    4.23    2.24    0.44   -1.00   -2.10   -2.93   -3.37   -3.11   -1.65    1.42    6.06
+   200.0    0.00    0.56    2.21    4.34    6.24    7.28    7.17    6.03    4.23    2.26    0.49   -0.91   -1.98   -2.77   -3.20   -2.95   -1.52    1.51    6.11
+   205.0    0.00    0.60    2.26    4.39    6.27    7.29    7.17    6.02    4.23    2.28    0.55   -0.81   -1.84   -2.61   -3.05   -2.81   -1.40    1.61    6.22
+   210.0    0.00    0.63    2.31    4.44    6.31    7.31    7.17    6.02    4.24    2.32    0.62   -0.71   -1.71   -2.48   -2.92   -2.70   -1.30    1.73    6.39
+   215.0    0.00    0.66    2.36    4.49    6.34    7.33    7.18    6.02    4.25    2.36    0.69   -0.61   -1.60   -2.37   -2.83   -2.63   -1.22    1.86    6.62
+   220.0    0.00    0.70    2.41    4.54    6.38    7.35    7.18    6.02    4.27    2.39    0.76   -0.52   -1.51   -2.29   -2.77   -2.58   -1.14    2.01    6.88
+   225.0    0.00    0.73    2.46    4.59    6.42    7.37    7.19    6.02    4.27    2.42    0.80   -0.46   -1.46   -2.25   -2.75   -2.55   -1.07    2.17    7.17
+   230.0    0.00    0.76    2.51    4.65    6.46    7.39    7.20    6.02    4.27    2.43    0.82   -0.44   -1.44   -2.25   -2.75   -2.54   -1.00    2.35    7.47
+   235.0    0.00    0.79    2.56    4.70    6.51    7.42    7.20    6.01    4.26    2.42    0.81   -0.45   -1.46   -2.27   -2.78   -2.53   -0.92    2.54    7.76
+   240.0    0.00    0.82    2.61    4.76    6.55    7.44    7.21    6.00    4.23    2.38    0.77   -0.50   -1.51   -2.33   -2.82   -2.52   -0.84    2.72    8.02
+   245.0    0.00    0.85    2.66    4.81    6.60    7.47    7.21    5.98    4.19    2.32    0.70   -0.58   -1.59   -2.40   -2.86   -2.52   -0.75    2.88    8.21
+   250.0    0.00    0.88    2.71    4.87    6.65    7.51    7.22    5.96    4.14    2.25    0.61   -0.68   -1.69   -2.49   -2.91   -2.51   -0.68    3.00    8.34
+   255.0    0.00    0.91    2.76    4.93    6.71    7.54    7.23    5.93    4.09    2.16    0.50   -0.80   -1.81   -2.58   -2.96   -2.51   -0.64    3.07    8.38
+   260.0    0.00    0.94    2.81    4.99    6.76    7.58    7.24    5.91    4.03    2.07    0.39   -0.92   -1.92   -2.67   -3.01   -2.53   -0.63    3.08    8.33
+   265.0    0.00    0.96    2.85    5.04    6.82    7.62    7.26    5.89    3.97    1.99    0.29   -1.03   -2.02   -2.75   -3.07   -2.56   -0.66    3.00    8.19
+   270.0    0.00    0.98    2.89    5.10    6.88    7.67    7.28    5.88    3.93    1.92    0.19   -1.12   -2.11   -2.82   -3.13   -2.63   -0.76    2.85    7.97
+   275.0    0.00    1.00    2.93    5.15    6.94    7.72    7.31    5.89    3.90    1.86    0.13   -1.20   -2.17   -2.88   -3.20   -2.73   -0.92    2.63    7.70
+   280.0    0.00    1.02    2.97    5.21    6.99    7.77    7.35    5.90    3.89    1.83    0.09   -1.24   -2.22   -2.94   -3.28   -2.87   -1.13    2.35    7.39
+   285.0    0.00    1.03    3.00    5.25    7.05    7.83    7.39    5.93    3.90    1.83    0.07   -1.26   -2.25   -2.99   -3.38   -3.04   -1.39    2.03    7.07
+   290.0    0.00    1.05    3.03    5.30    7.10    7.89    7.44    5.97    3.93    1.85    0.08   -1.26   -2.27   -3.05   -3.50   -3.24   -1.67    1.69    6.76
+   295.0    0.00    1.06    3.06    5.34    7.16    7.94    7.50    6.02    3.98    1.89    0.12   -1.24   -2.28   -3.10   -3.63   -3.45   -1.95    1.37    6.48
+   300.0    0.00    1.06    3.08    5.37    7.20    8.00    7.56    6.09    4.04    1.95    0.17   -1.21   -2.29   -3.17   -3.76   -3.65   -2.22    1.09    6.25
+   305.0    0.00    1.07    3.09    5.40    7.25    8.06    7.63    6.16    4.12    2.02    0.22   -1.19   -2.30   -3.24   -3.89   -3.84   -2.44    0.86    6.08
+   310.0    0.00    1.07    3.10    5.42    7.28    8.11    7.69    6.23    4.20    2.10    0.28   -1.16   -2.33   -3.32   -4.02   -4.00   -2.61    0.70    5.96
+   315.0    0.00    1.06    3.10    5.43    7.31    8.15    7.75    6.31    4.28    2.17    0.34   -1.14   -2.36   -3.40   -4.14   -4.13   -2.73    0.61    5.89
+   320.0    0.00    1.05    3.09    5.44    7.33    8.19    7.81    6.38    4.36    2.25    0.39   -1.13   -2.39   -3.47   -4.23   -4.22   -2.78    0.59    5.86
+   325.0    0.00    1.04    3.08    5.43    7.34    8.22    7.86    6.45    4.43    2.31    0.43   -1.13   -2.43   -3.54   -4.30   -4.26   -2.79    0.61    5.86
+   330.0    0.00    1.03    3.06    5.41    7.33    8.23    7.90    6.50    4.50    2.38    0.47   -1.13   -2.47   -3.60   -4.35   -4.27   -2.75    0.67    5.86
+   335.0    0.00    1.01    3.03    5.39    7.32    8.24    7.93    6.55    4.56    2.43    0.50   -1.12   -2.49   -3.63   -4.37   -4.25   -2.69    0.73    5.86
+   340.0    0.00    0.99    3.00    5.35    7.30    8.24    7.95    6.59    4.61    2.48    0.54   -1.11   -2.49   -3.64   -4.36   -4.22   -2.63    0.79    5.85
+   345.0    0.00    0.97    2.96    5.31    7.26    8.22    7.95    6.62    4.65    2.52    0.57   -1.08   -2.48   -3.62   -4.34   -4.17   -2.57    0.84    5.82
+   350.0    0.00    0.94    2.91    5.25    7.21    8.19    7.95    6.64    4.69    2.57    0.62   -1.04   -2.43   -3.58   -4.28   -4.12   -2.52    0.85    5.78
+   355.0    0.00    0.91    2.86    5.19    7.16    8.15    7.94    6.66    4.72    2.61    0.67   -0.98   -2.37   -3.50   -4.21   -4.06   -2.49    0.85    5.74
+   360.0    0.00    0.88    2.80    5.12    7.09    8.11    7.92    6.66    4.75    2.66    0.74   -0.90   -2.27   -3.40   -4.12   -3.99   -2.47    0.82    5.70
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -1.49      1.43     62.97                              NORTH / EAST / UP   
+   NOAZI    0.00    0.06    0.20    0.32    0.29    0.02   -0.49   -1.15   -1.79   -2.26   -2.47   -2.43   -2.24   -1.98   -1.62   -0.94    0.50    3.16    7.26
+     0.0    0.00   -0.07   -0.02    0.06    0.03   -0.21   -0.68   -1.28   -1.86   -2.25   -2.37   -2.26   -2.04   -1.84   -1.63   -1.14    0.15    2.78    7.03
+     5.0    0.00   -0.08   -0.03    0.06    0.05   -0.17   -0.63   -1.23   -1.81   -2.20   -2.31   -2.19   -1.95   -1.73   -1.51   -1.00    0.28    2.89    7.10
+    10.0    0.00   -0.09   -0.03    0.07    0.07   -0.14   -0.59   -1.18   -1.76   -2.15   -2.26   -2.12   -1.87   -1.63   -1.38   -0.86    0.42    3.01    7.17
+    15.0    0.00   -0.10   -0.04    0.07    0.08   -0.11   -0.55   -1.14   -1.71   -2.10   -2.21   -2.07   -1.81   -1.54   -1.27   -0.72    0.56    3.14    7.25
+    20.0    0.00   -0.10   -0.04    0.07    0.09   -0.09   -0.52   -1.10   -1.67   -2.06   -2.17   -2.03   -1.74   -1.45   -1.15   -0.58    0.72    3.28    7.36
+    25.0    0.00   -0.11   -0.05    0.07    0.10   -0.08   -0.49   -1.06   -1.63   -2.02   -2.13   -1.98   -1.69   -1.37   -1.03   -0.43    0.89    3.44    7.51
+    30.0    0.00   -0.11   -0.06    0.06    0.10   -0.07   -0.47   -1.04   -1.60   -1.99   -2.10   -1.94   -1.63   -1.29   -0.91   -0.28    1.06    3.61    7.68
+    35.0    0.00   -0.12   -0.06    0.06    0.09   -0.07   -0.46   -1.02   -1.57   -1.95   -2.06   -1.90   -1.58   -1.21   -0.80   -0.13    1.23    3.80    7.86
+    40.0    0.00   -0.12   -0.07    0.04    0.08   -0.07   -0.46   -1.00   -1.55   -1.92   -2.03   -1.86   -1.53   -1.14   -0.70    0.01    1.40    3.98    8.05
+    45.0    0.00   -0.12   -0.08    0.03    0.07   -0.09   -0.47   -1.00   -1.54   -1.90   -1.99   -1.82   -1.48   -1.08   -0.62    0.12    1.55    4.15    8.23
+    50.0    0.00   -0.12   -0.09    0.02    0.04   -0.12   -0.49   -1.02   -1.54   -1.89   -1.97   -1.80   -1.45   -1.04   -0.56    0.21    1.67    4.29    8.38
+    55.0    0.00   -0.12   -0.09    0.00    0.02   -0.15   -0.52   -1.04   -1.55   -1.89   -1.97   -1.78   -1.44   -1.02   -0.53    0.26    1.75    4.39    8.48
+    60.0    0.00   -0.12   -0.10   -0.02   -0.01   -0.18   -0.56   -1.08   -1.58   -1.91   -1.98   -1.79   -1.45   -1.03   -0.53    0.27    1.78    4.45    8.52
+    65.0    0.00   -0.12   -0.10   -0.04   -0.04   -0.23   -0.61   -1.12   -1.62   -1.94   -2.01   -1.82   -1.48   -1.08   -0.58    0.24    1.77    4.45    8.49
+    70.0    0.00   -0.12   -0.11   -0.05   -0.07   -0.27   -0.66   -1.18   -1.68   -2.00   -2.06   -1.88   -1.56   -1.16   -0.66    0.16    1.72    4.40    8.38
+    75.0    0.00   -0.12   -0.11   -0.07   -0.10   -0.31   -0.72   -1.25   -1.75   -2.07   -2.14   -1.98   -1.66   -1.28   -0.79    0.04    1.62    4.31    8.22
+    80.0    0.00   -0.11   -0.11   -0.08   -0.13   -0.36   -0.78   -1.31   -1.82   -2.16   -2.25   -2.10   -1.80   -1.44   -0.96   -0.11    1.49    4.18    8.01
+    85.0    0.00   -0.11   -0.11   -0.08   -0.15   -0.39   -0.83   -1.38   -1.91   -2.26   -2.37   -2.24   -1.97   -1.63   -1.15   -0.29    1.33    4.03    7.77
+    90.0    0.00   -0.10   -0.10   -0.09   -0.16   -0.42   -0.88   -1.45   -1.99   -2.37   -2.50   -2.40   -2.16   -1.84   -1.36   -0.49    1.16    3.87    7.53
+    95.0    0.00   -0.09   -0.09   -0.08   -0.17   -0.45   -0.92   -1.51   -2.07   -2.47   -2.63   -2.57   -2.36   -2.06   -1.59   -0.69    1.00    3.71    7.31
+   100.0    0.00   -0.08   -0.08   -0.07   -0.18   -0.46   -0.95   -1.56   -2.14   -2.57   -2.76   -2.73   -2.55   -2.28   -1.81   -0.89    0.83    3.58    7.12
+   105.0    0.00   -0.07   -0.06   -0.06   -0.17   -0.47   -0.97   -1.59   -2.20   -2.66   -2.88   -2.88   -2.74   -2.48   -2.02   -1.08    0.68    3.46    6.99
+   110.0    0.00   -0.05   -0.04   -0.04   -0.15   -0.46   -0.98   -1.62   -2.25   -2.73   -2.98   -3.01   -2.89   -2.66   -2.20   -1.25    0.55    3.38    6.92
+   115.0    0.00   -0.04   -0.02   -0.01   -0.13   -0.45   -0.98   -1.63   -2.28   -2.78   -3.05   -3.11   -3.02   -2.81   -2.36   -1.40    0.43    3.31    6.91
+   120.0    0.00   -0.02    0.01    0.02   -0.10   -0.42   -0.96   -1.63   -2.30   -2.81   -3.10   -3.17   -3.11   -2.92   -2.49   -1.52    0.34    3.27    6.95
+   125.0    0.00    0.00    0.04    0.06   -0.06   -0.39   -0.94   -1.62   -2.29   -2.82   -3.12   -3.21   -3.16   -2.99   -2.58   -1.62    0.25    3.24    7.02
+   130.0    0.00    0.02    0.08    0.10   -0.01   -0.35   -0.91   -1.60   -2.28   -2.81   -3.11   -3.21   -3.17   -3.02   -2.63   -1.70    0.18    3.22    7.11
+   135.0    0.00    0.04    0.12    0.15    0.04   -0.30   -0.86   -1.56   -2.25   -2.78   -3.08   -3.18   -3.15   -3.02   -2.66   -1.75    0.13    3.20    7.21
+   140.0    0.00    0.06    0.16    0.21    0.10   -0.24   -0.81   -1.51   -2.21   -2.74   -3.04   -3.14   -3.11   -2.99   -2.66   -1.78    0.08    3.18    7.28
+   145.0    0.00    0.08    0.20    0.27    0.17   -0.17   -0.74   -1.46   -2.15   -2.68   -2.98   -3.08   -3.06   -2.95   -2.64   -1.78    0.05    3.15    7.32
+   150.0    0.00    0.10    0.24    0.33    0.25   -0.09   -0.67   -1.39   -2.09   -2.62   -2.92   -3.01   -2.99   -2.89   -2.59   -1.77    0.03    3.11    7.32
+   155.0    0.00    0.12    0.29    0.40    0.33   -0.01   -0.59   -1.31   -2.02   -2.55   -2.85   -2.95   -2.93   -2.83   -2.54   -1.74    0.03    3.08    7.28
+   160.0    0.00    0.14    0.34    0.47    0.41    0.08   -0.50   -1.22   -1.94   -2.48   -2.79   -2.89   -2.86   -2.76   -2.48   -1.69    0.04    3.04    7.20
+   165.0    0.00    0.16    0.38    0.54    0.49    0.18   -0.40   -1.13   -1.85   -2.41   -2.72   -2.83   -2.81   -2.70   -2.41   -1.62    0.07    3.01    7.10
+   170.0    0.00    0.18    0.43    0.60    0.58    0.28   -0.30   -1.04   -1.76   -2.33   -2.66   -2.78   -2.75   -2.63   -2.33   -1.54    0.12    2.99    6.99
+   175.0    0.00    0.20    0.47    0.67    0.67    0.37   -0.20   -0.94   -1.68   -2.26   -2.60   -2.73   -2.70   -2.57   -2.24   -1.45    0.19    2.98    6.88
+   180.0    0.00    0.22    0.51    0.74    0.75    0.47   -0.10   -0.84   -1.59   -2.19   -2.55   -2.67   -2.64   -2.49   -2.14   -1.34    0.27    3.00    6.80
+   185.0    0.00    0.24    0.55    0.79    0.83    0.56   -0.01   -0.75   -1.51   -2.12   -2.49   -2.62   -2.58   -2.40   -2.03   -1.23    0.36    3.03    6.75
+   190.0    0.00    0.25    0.58    0.85    0.90    0.64    0.08   -0.67   -1.44   -2.05   -2.43   -2.55   -2.50   -2.31   -1.91   -1.10    0.46    3.08    6.74
+   195.0    0.00    0.26    0.61    0.90    0.96    0.71    0.15   -0.60   -1.37   -1.99   -2.36   -2.48   -2.41   -2.19   -1.79   -0.98    0.56    3.14    6.79
+   200.0    0.00    0.28    0.64    0.94    1.01    0.76    0.21   -0.55   -1.32   -1.94   -2.30   -2.40   -2.30   -2.06   -1.65   -0.85    0.66    3.22    6.89
+   205.0    0.00    0.29    0.66    0.97    1.05    0.81    0.25   -0.50   -1.27   -1.89   -2.23   -2.30   -2.18   -1.92   -1.51   -0.73    0.76    3.31    7.03
+   210.0    0.00    0.29    0.67    0.99    1.08    0.84    0.28   -0.48   -1.24   -1.84   -2.16   -2.21   -2.05   -1.78   -1.36   -0.61    0.85    3.40    7.21
+   215.0    0.00    0.30    0.68    1.00    1.09    0.85    0.29   -0.46   -1.22   -1.81   -2.10   -2.11   -1.92   -1.63   -1.22   -0.49    0.94    3.50    7.41
+   220.0    0.00    0.30    0.69    1.00    1.09    0.85    0.29   -0.46   -1.21   -1.77   -2.04   -2.01   -1.79   -1.49   -1.09   -0.39    1.02    3.60    7.61
+   225.0    0.00    0.30    0.68    1.00    1.08    0.84    0.28   -0.47   -1.21   -1.75   -1.99   -1.93   -1.68   -1.37   -0.98   -0.30    1.10    3.70    7.81
+   230.0    0.00    0.30    0.67    0.98    1.06    0.81    0.25   -0.49   -1.22   -1.74   -1.95   -1.86   -1.59   -1.27   -0.88   -0.22    1.16    3.79    7.99
+   235.0    0.00    0.29    0.66    0.96    1.02    0.77    0.22   -0.52   -1.23   -1.73   -1.92   -1.82   -1.53   -1.20   -0.81   -0.16    1.22    3.86    8.13
+   240.0    0.00    0.28    0.64    0.92    0.98    0.72    0.17   -0.55   -1.25   -1.74   -1.91   -1.80   -1.50   -1.16   -0.78   -0.12    1.25    3.90    8.23
+   245.0    0.00    0.27    0.61    0.88    0.93    0.67    0.12   -0.59   -1.28   -1.75   -1.92   -1.80   -1.51   -1.17   -0.78   -0.12    1.26    3.91    8.26
+   250.0    0.00    0.26    0.59    0.83    0.86    0.60    0.06   -0.64   -1.31   -1.78   -1.95   -1.84   -1.55   -1.21   -0.81   -0.15    1.23    3.89    8.24
+   255.0    0.00    0.25    0.55    0.78    0.80    0.53   -0.01   -0.70   -1.36   -1.83   -2.01   -1.90   -1.63   -1.29   -0.88   -0.21    1.17    3.82    8.15
+   260.0    0.00    0.23    0.52    0.72    0.72    0.45   -0.09   -0.77   -1.42   -1.89   -2.08   -1.99   -1.73   -1.39   -0.99   -0.31    1.07    3.69    8.01
+   265.0    0.00    0.22    0.48    0.66    0.64    0.36   -0.17   -0.84   -1.49   -1.97   -2.17   -2.10   -1.86   -1.53   -1.12   -0.44    0.92    3.52    7.82
+   270.0    0.00    0.20    0.44    0.60    0.56    0.27   -0.26   -0.93   -1.58   -2.06   -2.28   -2.23   -2.00   -1.68   -1.28   -0.61    0.73    3.30    7.58
+   275.0    0.00    0.18    0.40    0.53    0.48    0.18   -0.35   -1.02   -1.67   -2.16   -2.39   -2.36   -2.15   -1.84   -1.45   -0.80    0.51    3.05    7.32
+   280.0    0.00    0.17    0.36    0.47    0.40    0.09   -0.45   -1.12   -1.77   -2.27   -2.52   -2.50   -2.30   -2.01   -1.63   -1.01    0.27    2.78    7.05
+   285.0    0.00    0.15    0.32    0.41    0.32    0.00   -0.54   -1.22   -1.88   -2.38   -2.64   -2.64   -2.45   -2.17   -1.82   -1.23    0.01    2.50    6.78
+   290.0    0.00    0.13    0.28    0.35    0.25   -0.09   -0.64   -1.31   -1.98   -2.50   -2.76   -2.76   -2.58   -2.31   -1.99   -1.43   -0.23    2.23    6.54
+   295.0    0.00    0.11    0.24    0.29    0.18   -0.16   -0.72   -1.41   -2.08   -2.60   -2.86   -2.87   -2.69   -2.44   -2.14   -1.62   -0.46    1.99    6.34
+   300.0    0.00    0.09    0.20    0.24    0.12   -0.23   -0.80   -1.49   -2.16   -2.68   -2.94   -2.95   -2.77   -2.54   -2.26   -1.78   -0.65    1.80    6.19
+   305.0    0.00    0.07    0.17    0.20    0.06   -0.29   -0.86   -1.55   -2.23   -2.74   -3.00   -3.00   -2.83   -2.61   -2.36   -1.91   -0.78    1.67    6.10
+   310.0    0.00    0.06    0.14    0.16    0.02   -0.34   -0.91   -1.60   -2.27   -2.78   -3.04   -3.03   -2.86   -2.65   -2.42   -1.98   -0.87    1.61    6.07
+   315.0    0.00    0.04    0.11    0.13   -0.01   -0.37   -0.94   -1.63   -2.30   -2.80   -3.04   -3.03   -2.86   -2.65   -2.44   -2.02   -0.90    1.60    6.09
+   320.0    0.00    0.02    0.09    0.10   -0.04   -0.39   -0.95   -1.63   -2.30   -2.79   -3.02   -2.99   -2.82   -2.63   -2.43   -2.01   -0.87    1.66    6.17
+   325.0    0.00    0.01    0.06    0.08   -0.05   -0.40   -0.95   -1.62   -2.27   -2.75   -2.97   -2.93   -2.76   -2.58   -2.39   -1.96   -0.80    1.76    6.28
+   330.0    0.00   -0.01    0.04    0.06   -0.06   -0.39   -0.93   -1.60   -2.24   -2.70   -2.90   -2.85   -2.68   -2.50   -2.32   -1.88   -0.70    1.90    6.41
+   335.0    0.00   -0.02    0.03    0.06   -0.05   -0.37   -0.91   -1.56   -2.18   -2.63   -2.81   -2.76   -2.58   -2.41   -2.22   -1.78   -0.57    2.06    6.55
+   340.0    0.00   -0.03    0.02    0.05   -0.04   -0.35   -0.87   -1.51   -2.12   -2.55   -2.72   -2.65   -2.47   -2.30   -2.12   -1.66   -0.42    2.23    6.68
+   345.0    0.00   -0.04    0.00    0.05   -0.03   -0.32   -0.82   -1.45   -2.05   -2.47   -2.62   -2.54   -2.36   -2.18   -2.00   -1.53   -0.27    2.38    6.79
+   350.0    0.00   -0.05   -0.01    0.05   -0.01   -0.28   -0.78   -1.40   -1.99   -2.39   -2.53   -2.44   -2.24   -2.06   -1.87   -1.40   -0.13    2.53    6.89
+   355.0    0.00   -0.06   -0.01    0.06    0.01   -0.25   -0.73   -1.34   -1.92   -2.32   -2.45   -2.34   -2.14   -1.95   -1.75   -1.27    0.01    2.66    6.97
+   360.0    0.00   -0.07   -0.02    0.06    0.03   -0.21   -0.68   -1.28   -1.86   -2.25   -2.37   -2.26   -2.04   -1.84   -1.63   -1.14    0.15    2.78    7.03
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TRM22020.00-GP  NONE                                        TYPE / SERIAL NO    
+CONVERTED           TUM                      4    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+CONVERTED FROM igs_01.pcv                                   COMMENT             
+   G01                                                      START OF FREQUENCY  
+      3.68      0.53     68.45                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.03   -0.50   -0.73   -0.72   -1.02   -1.46   -1.99   -2.27   -2.41   -2.56   -2.39   -2.03   -1.85   -1.68   -0.81    1.87
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      1.12     -0.69     74.05                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.13   -0.01    0.12    0.21    0.32    0.11   -0.27   -0.51   -0.51   -0.35   -0.36   -0.53   -0.63   -0.33   -0.61   -2.05
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TRM23903.00     NONE                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               7    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+Number of Calibrated Antennas GPS:      007                 COMMENT             
+Number of Individual Calibrations GPS:  026                 COMMENT             
+   G01                                                      START OF FREQUENCY  
+      1.38     -1.45     73.52                              NORTH / EAST / UP   
+   NOAZI    0.00    0.61    2.23    4.36    6.32    7.51    7.60    6.61    4.85    2.79    0.86   -0.71   -1.90   -2.79   -3.35   -3.30   -2.09    0.89    5.90
+     0.0    0.00    0.81    2.61    4.84    6.80    7.92    7.92    6.87    5.11    3.08    1.16   -0.49   -1.89   -3.09   -4.01   -4.26   -3.17   -0.11    5.12
+     5.0    0.00    0.78    2.57    4.79    6.75    7.89    7.90    6.86    5.10    3.08    1.18   -0.44   -1.81   -3.00   -3.94   -4.23   -3.17   -0.09    5.24
+    10.0    0.00    0.76    2.52    4.73    6.71    7.86    7.89    6.85    5.09    3.08    1.20   -0.39   -1.72   -2.90   -3.85   -4.18   -3.16   -0.08    5.34
+    15.0    0.00    0.73    2.47    4.67    6.66    7.84    7.88    6.85    5.10    3.09    1.22   -0.33   -1.63   -2.78   -3.74   -4.11   -3.14   -0.07    5.43
+    20.0    0.00    0.69    2.41    4.61    6.61    7.81    7.88    6.86    5.11    3.10    1.25   -0.28   -1.54   -2.67   -3.62   -4.00   -3.09   -0.05    5.48
+    25.0    0.00    0.66    2.35    4.55    6.56    7.78    7.87    6.87    5.13    3.12    1.27   -0.24   -1.46   -2.55   -3.47   -3.87   -3.00   -0.01    5.50
+    30.0    0.00    0.63    2.29    4.48    6.50    7.74    7.87    6.89    5.16    3.15    1.30   -0.20   -1.40   -2.44   -3.32   -3.71   -2.87    0.05    5.50
+    35.0    0.00    0.60    2.23    4.40    6.43    7.70    7.86    6.91    5.19    3.18    1.32   -0.17   -1.34   -2.33   -3.18   -3.54   -2.71    0.14    5.49
+    40.0    0.00    0.56    2.17    4.33    6.36    7.66    7.85    6.93    5.22    3.21    1.34   -0.15   -1.30   -2.25   -3.03   -3.36   -2.54    0.25    5.46
+    45.0    0.00    0.53    2.11    4.25    6.29    7.60    7.83    6.94    5.25    3.24    1.36   -0.14   -1.27   -2.18   -2.91   -3.19   -2.36    0.37    5.45
+    50.0    0.00    0.50    2.05    4.17    6.21    7.54    7.79    6.93    5.26    3.26    1.38   -0.13   -1.26   -2.14   -2.82   -3.04   -2.18    0.50    5.46
+    55.0    0.00    0.47    1.99    4.09    6.13    7.47    7.74    6.91    5.26    3.27    1.38   -0.13   -1.26   -2.12   -2.76   -2.92   -2.03    0.64    5.50
+    60.0    0.00    0.44    1.93    4.01    6.04    7.39    7.68    6.87    5.24    3.26    1.37   -0.15   -1.28   -2.13   -2.73   -2.85   -1.92    0.77    5.58
+    65.0    0.00    0.41    1.87    3.94    5.95    7.30    7.60    6.81    5.19    3.23    1.35   -0.18   -1.31   -2.16   -2.74   -2.82   -1.84    0.88    5.69
+    70.0    0.00    0.38    1.82    3.86    5.86    7.21    7.51    6.72    5.13    3.17    1.30   -0.22   -1.36   -2.21   -2.79   -2.84   -1.80    0.98    5.84
+    75.0    0.00    0.36    1.77    3.80    5.78    7.12    7.41    6.63    5.03    3.09    1.23   -0.29   -1.43   -2.29   -2.86   -2.88   -1.80    1.06    5.99
+    80.0    0.00    0.33    1.73    3.74    5.71    7.03    7.31    6.52    4.93    2.99    1.13   -0.38   -1.52   -2.38   -2.95   -2.96   -1.82    1.11    6.14
+    85.0    0.00    0.31    1.69    3.69    5.64    6.95    7.22    6.41    4.81    2.87    1.02   -0.49   -1.63   -2.49   -3.06   -3.05   -1.87    1.14    6.27
+    90.0    0.00    0.30    1.66    3.65    5.59    6.88    7.13    6.31    4.69    2.74    0.90   -0.61   -1.74   -2.60   -3.16   -3.14   -1.92    1.15    6.35
+    95.0    0.00    0.28    1.64    3.62    5.56    6.84    7.07    6.22    4.59    2.62    0.77   -0.73   -1.86   -2.71   -3.26   -3.22   -1.98    1.13    6.37
+   100.0    0.00    0.27    1.62    3.60    5.53    6.81    7.03    6.16    4.50    2.51    0.65   -0.85   -1.97   -2.81   -3.34   -3.29   -2.03    1.09    6.33
+   105.0    0.00    0.26    1.61    3.59    5.53    6.80    7.01    6.12    4.44    2.43    0.55   -0.96   -2.07   -2.89   -3.41   -3.33   -2.07    1.04    6.23
+   110.0    0.00    0.25    1.60    3.59    5.54    6.82    7.02    6.12    4.41    2.37    0.47   -1.04   -2.15   -2.95   -3.45   -3.36   -2.10    0.97    6.09
+   115.0    0.00    0.25    1.61    3.60    5.56    6.85    7.06    6.14    4.41    2.35    0.43   -1.10   -2.20   -2.99   -3.47   -3.37   -2.13    0.90    5.93
+   120.0    0.00    0.25    1.61    3.62    5.60    6.90    7.11    6.19    4.44    2.36    0.42   -1.12   -2.23   -3.01   -3.48   -3.38   -2.14    0.83    5.77
+   125.0    0.00    0.25    1.62    3.65    5.64    6.96    7.18    6.26    4.50    2.40    0.44   -1.12   -2.23   -3.01   -3.48   -3.37   -2.15    0.78    5.63
+   130.0    0.00    0.26    1.64    3.68    5.69    7.02    7.25    6.33    4.57    2.46    0.48   -1.08   -2.21   -3.00   -3.47   -3.37   -2.16    0.74    5.54
+   135.0    0.00    0.27    1.66    3.71    5.74    7.08    7.32    6.40    4.64    2.53    0.54   -1.04   -2.18   -2.98   -3.46   -3.37   -2.17    0.72    5.50
+   140.0    0.00    0.28    1.68    3.75    5.79    7.14    7.38    6.47    4.71    2.59    0.60   -0.99   -2.15   -2.96   -3.45   -3.37   -2.17    0.72    5.53
+   145.0    0.00    0.29    1.71    3.78    5.83    7.18    7.42    6.51    4.75    2.64    0.65   -0.95   -2.12   -2.95   -3.46   -3.37   -2.17    0.75    5.62
+   150.0    0.00    0.30    1.74    3.82    5.86    7.21    7.45    6.53    4.77    2.66    0.67   -0.93   -2.11   -2.95   -3.46   -3.38   -2.16    0.80    5.74
+   155.0    0.00    0.32    1.77    3.85    5.90    7.23    7.45    6.53    4.76    2.65    0.66   -0.94   -2.12   -2.96   -3.47   -3.39   -2.15    0.86    5.89
+   160.0    0.00    0.34    1.80    3.89    5.92    7.24    7.44    6.50    4.73    2.62    0.63   -0.97   -2.14   -2.98   -3.49   -3.38   -2.12    0.92    6.02
+   165.0    0.00    0.36    1.83    3.92    5.94    7.23    7.41    6.45    4.67    2.56    0.57   -1.02   -2.19   -3.01   -3.50   -3.37   -2.09    0.98    6.11
+   170.0    0.00    0.38    1.86    3.95    5.95    7.22    7.38    6.40    4.60    2.48    0.50   -1.09   -2.24   -3.04   -3.50   -3.35   -2.05    1.02    6.16
+   175.0    0.00    0.40    1.90    3.99    5.97    7.21    7.34    6.33    4.52    2.40    0.42   -1.16   -2.29   -3.06   -3.48   -3.31   -2.01    1.03    6.15
+   180.0    0.00    0.43    1.94    4.02    5.98    7.20    7.30    6.28    4.46    2.33    0.35   -1.22   -2.33   -3.07   -3.46   -3.26   -1.97    1.03    6.08
+   185.0    0.00    0.45    1.98    4.05    6.00    7.20    7.28    6.24    4.41    2.28    0.30   -1.25   -2.34   -3.05   -3.41   -3.21   -1.94    1.01    5.97
+   190.0    0.00    0.48    2.01    4.09    6.03    7.20    7.26    6.22    4.39    2.26    0.29   -1.25   -2.32   -3.01   -3.35   -3.14   -1.90    0.98    5.86
+   195.0    0.00    0.50    2.06    4.13    6.05    7.22    7.27    6.22    4.40    2.28    0.31   -1.22   -2.27   -2.95   -3.28   -3.08   -1.87    0.95    5.76
+   200.0    0.00    0.53    2.10    4.17    6.09    7.24    7.29    6.25    4.43    2.33    0.38   -1.14   -2.19   -2.86   -3.20   -3.01   -1.82    0.96    5.71
+   205.0    0.00    0.56    2.14    4.22    6.13    7.27    7.32    6.29    4.49    2.40    0.47   -1.04   -2.09   -2.76   -3.11   -2.93   -1.76    1.00    5.73
+   210.0    0.00    0.59    2.19    4.27    6.17    7.32    7.37    6.35    4.57    2.50    0.58   -0.92   -1.97   -2.66   -3.02   -2.85   -1.68    1.10    5.86
+   215.0    0.00    0.62    2.23    4.32    6.22    7.37    7.42    6.41    4.65    2.60    0.70   -0.80   -1.86   -2.56   -2.93   -2.77   -1.57    1.27    6.08
+   220.0    0.00    0.65    2.28    4.37    6.28    7.42    7.48    6.48    4.73    2.70    0.80   -0.70   -1.77   -2.48   -2.86   -2.67   -1.41    1.51    6.40
+   225.0    0.00    0.67    2.32    4.43    6.33    7.47    7.52    6.53    4.79    2.77    0.88   -0.62   -1.71   -2.43   -2.80   -2.57   -1.22    1.81    6.78
+   230.0    0.00    0.70    2.37    4.48    6.38    7.51    7.57    6.57    4.83    2.81    0.92   -0.60   -1.69   -2.42   -2.76   -2.46   -1.01    2.15    7.19
+   235.0    0.00    0.73    2.42    4.53    6.43    7.56    7.60    6.59    4.84    2.81    0.91   -0.62   -1.72   -2.44   -2.74   -2.35   -0.77    2.51    7.59
+   240.0    0.00    0.76    2.46    4.59    6.48    7.59    7.62    6.59    4.83    2.78    0.86   -0.68   -1.79   -2.49   -2.74   -2.25   -0.55    2.85    7.94
+   245.0    0.00    0.78    2.51    4.64    6.53    7.62    7.63    6.58    4.79    2.72    0.77   -0.79   -1.90   -2.58   -2.76   -2.17   -0.34    3.14    8.20
+   250.0    0.00    0.81    2.55    4.69    6.57    7.65    7.63    6.55    4.73    2.63    0.66   -0.92   -2.04   -2.69   -2.81   -2.12   -0.19    3.34    8.34
+   255.0    0.00    0.83    2.59    4.73    6.61    7.67    7.63    6.52    4.67    2.53    0.53   -1.07   -2.18   -2.81   -2.88   -2.11   -0.12    3.43    8.33
+   260.0    0.00    0.85    2.63    4.78    6.65    7.69    7.62    6.48    4.60    2.44    0.42   -1.20   -2.32   -2.93   -2.96   -2.16   -0.13    3.39    8.19
+   265.0    0.00    0.87    2.66    4.82    6.69    7.71    7.62    6.45    4.55    2.36    0.32   -1.31   -2.43   -3.04   -3.06   -2.25   -0.25    3.21    7.92
+   270.0    0.00    0.89    2.70    4.86    6.72    7.73    7.62    6.43    4.51    2.31    0.26   -1.38   -2.51   -3.13   -3.17   -2.41   -0.47    2.90    7.54
+   275.0    0.00    0.91    2.73    4.89    6.75    7.75    7.62    6.43    4.50    2.29    0.24   -1.40   -2.55   -3.20   -3.30   -2.61   -0.79    2.48    7.09
+   280.0    0.00    0.92    2.75    4.93    6.78    7.78    7.64    6.44    4.51    2.31    0.26   -1.38   -2.54   -3.24   -3.42   -2.86   -1.18    1.98    6.59
+   285.0    0.00    0.93    2.78    4.96    6.81    7.80    7.66    6.47    4.54    2.36    0.33   -1.31   -2.50   -3.26   -3.54   -3.13   -1.61    1.44    6.10
+   290.0    0.00    0.94    2.80    4.98    6.84    7.83    7.70    6.51    4.60    2.44    0.42   -1.22   -2.43   -3.26   -3.66   -3.41   -2.06    0.90    5.64
+   295.0    0.00    0.95    2.81    5.01    6.87    7.86    7.74    6.56    4.68    2.54    0.54   -1.10   -2.34   -3.24   -3.77   -3.68   -2.48    0.40    5.24
+   300.0    0.00    0.96    2.82    5.02    6.89    7.90    7.78    6.62    4.76    2.65    0.67   -0.97   -2.25   -3.23   -3.87   -3.93   -2.86   -0.04    4.91
+   305.0    0.00    0.96    2.83    5.04    6.91    7.93    7.82    6.68    4.85    2.76    0.79   -0.86   -2.17   -3.21   -3.96   -4.13   -3.16   -0.39    4.66
+   310.0    0.00    0.96    2.83    5.05    6.93    7.95    7.87    6.75    4.93    2.86    0.90   -0.76   -2.10   -3.20   -4.02   -4.28   -3.38   -0.63    4.48
+   315.0    0.00    0.95    2.83    5.05    6.94    7.98    7.90    6.80    5.00    2.94    0.99   -0.68   -2.06   -3.20   -4.08   -4.38   -3.51   -0.77    4.38
+   320.0    0.00    0.95    2.83    5.05    6.95    8.00    7.94    6.85    5.06    3.01    1.05   -0.63   -2.03   -3.21   -4.11   -4.43   -3.57   -0.81    4.34
+   325.0    0.00    0.94    2.82    5.04    6.95    8.01    7.96    6.88    5.11    3.06    1.10   -0.60   -2.03   -3.23   -4.14   -4.44   -3.55   -0.77    4.35
+   330.0    0.00    0.93    2.80    5.03    6.95    8.01    7.97    6.91    5.14    3.09    1.12   -0.59   -2.03   -3.24   -4.15   -4.43   -3.49   -0.68    4.40
+   335.0    0.00    0.92    2.78    5.01    6.93    8.01    7.98    6.92    5.15    3.11    1.13   -0.59   -2.04   -3.26   -4.15   -4.40   -3.41   -0.56    4.49
+   340.0    0.00    0.90    2.75    4.99    6.92    8.00    7.98    6.92    5.15    3.11    1.14   -0.58   -2.04   -3.26   -4.15   -4.36   -3.33   -0.43    4.59
+   345.0    0.00    0.88    2.73    4.96    6.89    7.99    7.97    6.91    5.15    3.10    1.14   -0.58   -2.03   -3.25   -4.13   -4.33   -3.25   -0.31    4.71
+   350.0    0.00    0.86    2.69    4.92    6.87    7.97    7.96    6.90    5.14    3.10    1.14   -0.56   -2.00   -3.22   -4.11   -4.30   -3.20   -0.22    4.85
+   355.0    0.00    0.84    2.65    4.88    6.83    7.94    7.94    6.88    5.12    3.09    1.15   -0.53   -1.95   -3.17   -4.07   -4.28   -3.18   -0.15    4.98
+   360.0    0.00    0.81    2.61    4.84    6.80    7.92    7.92    6.87    5.11    3.08    1.16   -0.49   -1.89   -3.09   -4.01   -4.26   -3.17   -0.11    5.12
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -1.40      1.46     66.45                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.07   -0.28   -0.64   -1.14   -1.77   -2.50   -3.24   -3.89   -4.30   -4.36   -4.02   -3.35   -2.46   -1.41   -0.11    1.73    4.54    8.63
+     0.0    0.00   -0.28   -0.65   -1.09   -1.61   -2.23   -2.94   -3.67   -4.26   -4.56   -4.44   -3.90   -3.06   -2.10   -1.15   -0.10    1.36    3.74    7.35
+     5.0    0.00   -0.28   -0.64   -1.06   -1.55   -2.14   -2.84   -3.57   -4.18   -4.49   -4.38   -3.83   -2.97   -2.00   -1.04    0.01    1.50    3.94    7.63
+    10.0    0.00   -0.29   -0.63   -1.02   -1.48   -2.05   -2.74   -3.47   -4.10   -4.43   -4.32   -3.76   -2.89   -1.91   -0.94    0.12    1.65    4.16    7.95
+    15.0    0.00   -0.29   -0.62   -0.98   -1.41   -1.95   -2.63   -3.37   -4.01   -4.36   -4.27   -3.71   -2.83   -1.83   -0.84    0.25    1.82    4.39    8.30
+    20.0    0.00   -0.29   -0.61   -0.94   -1.34   -1.86   -2.52   -3.26   -3.92   -4.29   -4.22   -3.67   -2.79   -1.77   -0.75    0.38    2.00    4.65    8.66
+    25.0    0.00   -0.29   -0.59   -0.91   -1.28   -1.78   -2.42   -3.16   -3.82   -4.21   -4.16   -3.64   -2.76   -1.73   -0.67    0.50    2.19    4.91    9.03
+    30.0    0.00   -0.29   -0.58   -0.88   -1.24   -1.71   -2.33   -3.06   -3.72   -4.13   -4.11   -3.61   -2.75   -1.71   -0.61    0.63    2.38    5.19    9.39
+    35.0    0.00   -0.29   -0.58   -0.86   -1.20   -1.66   -2.26   -2.97   -3.63   -4.04   -4.05   -3.58   -2.74   -1.70   -0.57    0.74    2.58    5.46    9.72
+    40.0    0.00   -0.29   -0.57   -0.85   -1.18   -1.62   -2.21   -2.89   -3.54   -3.96   -3.98   -3.55   -2.74   -1.70   -0.54    0.83    2.76    5.71   10.02
+    45.0    0.00   -0.28   -0.57   -0.85   -1.18   -1.61   -2.18   -2.84   -3.47   -3.88   -3.92   -3.51   -2.73   -1.71   -0.53    0.90    2.91    5.94   10.27
+    50.0    0.00   -0.28   -0.57   -0.86   -1.19   -1.63   -2.18   -2.82   -3.42   -3.81   -3.85   -3.47   -2.72   -1.72   -0.53    0.96    3.04    6.13   10.47
+    55.0    0.00   -0.28   -0.57   -0.87   -1.22   -1.66   -2.21   -2.83   -3.40   -3.77   -3.80   -3.43   -2.72   -1.73   -0.54    0.98    3.13    6.27   10.62
+    60.0    0.00   -0.27   -0.57   -0.89   -1.26   -1.72   -2.27   -2.87   -3.41   -3.75   -3.77   -3.41   -2.71   -1.75   -0.56    0.99    3.18    6.36   10.72
+    65.0    0.00   -0.27   -0.57   -0.91   -1.31   -1.79   -2.35   -2.94   -3.46   -3.76   -3.76   -3.40   -2.72   -1.78   -0.60    0.96    3.19    6.41   10.78
+    70.0    0.00   -0.26   -0.58   -0.94   -1.37   -1.88   -2.45   -3.04   -3.53   -3.82   -3.79   -3.42   -2.75   -1.83   -0.65    0.91    3.17    6.42   10.79
+    75.0    0.00   -0.26   -0.58   -0.97   -1.43   -1.97   -2.57   -3.16   -3.64   -3.90   -3.86   -3.48   -2.81   -1.90   -0.73    0.84    3.11    6.39   10.77
+    80.0    0.00   -0.25   -0.59   -1.00   -1.50   -2.07   -2.69   -3.29   -3.77   -4.02   -3.97   -3.58   -2.91   -2.00   -0.83    0.74    3.02    6.32   10.72
+    85.0    0.00   -0.24   -0.59   -1.03   -1.55   -2.16   -2.81   -3.43   -3.92   -4.17   -4.11   -3.72   -3.04   -2.13   -0.96    0.62    2.92    6.23   10.64
+    90.0    0.00   -0.23   -0.59   -1.05   -1.61   -2.24   -2.92   -3.56   -4.07   -4.34   -4.28   -3.90   -3.22   -2.30   -1.12    0.48    2.79    6.12   10.53
+    95.0    0.00   -0.22   -0.58   -1.06   -1.65   -2.31   -3.01   -3.68   -4.22   -4.51   -4.48   -4.10   -3.43   -2.50   -1.30    0.31    2.65    5.99   10.41
+   100.0    0.00   -0.21   -0.57   -1.07   -1.68   -2.37   -3.09   -3.79   -4.35   -4.68   -4.67   -4.32   -3.65   -2.72   -1.50    0.14    2.49    5.85   10.27
+   105.0    0.00   -0.19   -0.56   -1.07   -1.70   -2.40   -3.15   -3.87   -4.47   -4.83   -4.86   -4.54   -3.88   -2.94   -1.72   -0.05    2.32    5.70   10.12
+   110.0    0.00   -0.18   -0.54   -1.06   -1.70   -2.42   -3.19   -3.93   -4.56   -4.95   -5.03   -4.74   -4.10   -3.17   -1.93   -0.25    2.15    5.54    9.97
+   115.0    0.00   -0.16   -0.52   -1.04   -1.69   -2.42   -3.20   -3.96   -4.61   -5.05   -5.16   -4.90   -4.29   -3.37   -2.13   -0.44    1.97    5.38    9.81
+   120.0    0.00   -0.14   -0.49   -1.02   -1.67   -2.41   -3.19   -3.97   -4.64   -5.10   -5.24   -5.02   -4.43   -3.53   -2.31   -0.62    1.80    5.22    9.66
+   125.0    0.00   -0.12   -0.46   -0.98   -1.63   -2.37   -3.17   -3.95   -4.64   -5.11   -5.28   -5.08   -4.53   -3.66   -2.46   -0.78    1.64    5.07    9.53
+   130.0    0.00   -0.10   -0.42   -0.93   -1.58   -2.33   -3.12   -3.91   -4.60   -5.09   -5.27   -5.10   -4.58   -3.74   -2.57   -0.92    1.50    4.94    9.40
+   135.0    0.00   -0.08   -0.38   -0.88   -1.52   -2.27   -3.06   -3.85   -4.54   -5.03   -5.22   -5.06   -4.58   -3.78   -2.65   -1.02    1.38    4.82    9.30
+   140.0    0.00   -0.05   -0.34   -0.82   -1.45   -2.19   -2.99   -3.77   -4.46   -4.94   -5.13   -4.99   -4.53   -3.78   -2.69   -1.10    1.29    4.73    9.22
+   145.0    0.00   -0.03   -0.28   -0.75   -1.37   -2.10   -2.90   -3.68   -4.36   -4.83   -5.02   -4.90   -4.46   -3.75   -2.70   -1.14    1.23    4.67    9.15
+   150.0    0.00    0.00   -0.23   -0.67   -1.28   -2.00   -2.79   -3.57   -4.24   -4.71   -4.90   -4.79   -4.38   -3.69   -2.68   -1.15    1.20    4.62    9.10
+   155.0    0.00    0.02   -0.18   -0.59   -1.17   -1.89   -2.68   -3.45   -4.11   -4.58   -4.78   -4.68   -4.29   -3.63   -2.64   -1.13    1.20    4.60    9.06
+   160.0    0.00    0.05   -0.12   -0.50   -1.06   -1.77   -2.55   -3.31   -3.98   -4.45   -4.66   -4.58   -4.21   -3.57   -2.59   -1.08    1.22    4.59    9.02
+   165.0    0.00    0.08   -0.06   -0.41   -0.95   -1.64   -2.41   -3.17   -3.85   -4.33   -4.56   -4.49   -4.14   -3.51   -2.52   -1.02    1.27    4.59    8.97
+   170.0    0.00    0.10    0.00   -0.31   -0.83   -1.50   -2.26   -3.03   -3.71   -4.22   -4.47   -4.43   -4.09   -3.44   -2.45   -0.94    1.32    4.59    8.92
+   175.0    0.00    0.12    0.06   -0.22   -0.70   -1.35   -2.11   -2.88   -3.58   -4.12   -4.40   -4.38   -4.04   -3.38   -2.36   -0.85    1.37    4.58    8.86
+   180.0    0.00    0.15    0.11   -0.13   -0.58   -1.21   -1.96   -2.74   -3.46   -4.03   -4.34   -4.33   -3.99   -3.31   -2.27   -0.76    1.43    4.56    8.80
+   185.0    0.00    0.17    0.17   -0.04   -0.47   -1.07   -1.81   -2.61   -3.35   -3.95   -4.29   -4.29   -3.94   -3.22   -2.16   -0.65    1.48    4.53    8.74
+   190.0    0.00    0.19    0.21    0.04   -0.36   -0.95   -1.68   -2.49   -3.26   -3.88   -4.24   -4.24   -3.86   -3.11   -2.02   -0.54    1.53    4.50    8.70
+   195.0    0.00    0.20    0.26    0.11   -0.26   -0.83   -1.57   -2.39   -3.18   -3.82   -4.18   -4.17   -3.76   -2.97   -1.87   -0.42    1.58    4.48    8.67
+   200.0    0.00    0.22    0.29    0.17   -0.17   -0.74   -1.47   -2.31   -3.12   -3.77   -4.13   -4.08   -3.62   -2.81   -1.70   -0.28    1.64    4.47    8.68
+   205.0    0.00    0.23    0.32    0.22   -0.10   -0.66   -1.41   -2.25   -3.08   -3.73   -4.06   -3.98   -3.47   -2.61   -1.50   -0.13    1.71    4.49    8.72
+   210.0    0.00    0.24    0.35    0.26   -0.06   -0.61   -1.36   -2.22   -3.05   -3.69   -3.99   -3.85   -3.29   -2.40   -1.30    0.02    1.81    4.54    8.79
+   215.0    0.00    0.24    0.36    0.29   -0.02   -0.58   -1.34   -2.21   -3.04   -3.66   -3.91   -3.72   -3.10   -2.19   -1.10    0.18    1.92    4.63    8.90
+   220.0    0.00    0.24    0.36    0.30   -0.01   -0.58   -1.35   -2.22   -3.04   -3.63   -3.83   -3.58   -2.92   -2.00   -0.92    0.34    2.05    4.76    9.02
+   225.0    0.00    0.24    0.36    0.29   -0.02   -0.59   -1.37   -2.25   -3.05   -3.61   -3.76   -3.46   -2.77   -1.83   -0.76    0.48    2.19    4.91    9.15
+   230.0    0.00    0.23    0.35    0.27   -0.05   -0.63   -1.42   -2.29   -3.07   -3.59   -3.70   -3.35   -2.64   -1.70   -0.64    0.60    2.34    5.08    9.27
+   235.0    0.00    0.22    0.33    0.24   -0.10   -0.69   -1.48   -2.34   -3.10   -3.58   -3.65   -3.28   -2.56   -1.63   -0.58    0.68    2.47    5.24    9.36
+   240.0    0.00    0.21    0.30    0.19   -0.16   -0.76   -1.55   -2.40   -3.14   -3.58   -3.62   -3.24   -2.53   -1.61   -0.56    0.72    2.56    5.37    9.39
+   245.0    0.00    0.20    0.26    0.13   -0.24   -0.85   -1.64   -2.47   -3.18   -3.60   -3.62   -3.24   -2.54   -1.65   -0.60    0.72    2.61    5.44    9.35
+   250.0    0.00    0.18    0.22    0.06   -0.33   -0.95   -1.73   -2.55   -3.23   -3.63   -3.64   -3.27   -2.60   -1.73   -0.69    0.66    2.59    5.44    9.24
+   255.0    0.00    0.16    0.17   -0.02   -0.43   -1.06   -1.84   -2.64   -3.30   -3.68   -3.69   -3.34   -2.69   -1.84   -0.81    0.55    2.51    5.35    9.06
+   260.0    0.00    0.13    0.11   -0.11   -0.55   -1.18   -1.95   -2.74   -3.38   -3.75   -3.77   -3.43   -2.80   -1.98   -0.96    0.39    2.35    5.16    8.80
+   265.0    0.00    0.11    0.05   -0.20   -0.66   -1.31   -2.08   -2.85   -3.48   -3.84   -3.86   -3.53   -2.92   -2.12   -1.12    0.21    2.12    4.89    8.48
+   270.0    0.00    0.08   -0.01   -0.30   -0.79   -1.45   -2.21   -2.97   -3.59   -3.95   -3.97   -3.65   -3.05   -2.25   -1.28    0.00    1.84    4.54    8.13
+   275.0    0.00    0.06   -0.07   -0.40   -0.91   -1.59   -2.35   -3.10   -3.72   -4.08   -4.10   -3.77   -3.16   -2.36   -1.42   -0.21    1.53    4.14    7.77
+   280.0    0.00    0.03   -0.14   -0.50   -1.04   -1.73   -2.49   -3.24   -3.86   -4.22   -4.23   -3.88   -3.25   -2.45   -1.54   -0.42    1.20    3.72    7.41
+   285.0    0.00    0.00   -0.20   -0.60   -1.17   -1.87   -2.64   -3.39   -4.01   -4.36   -4.36   -3.99   -3.33   -2.51   -1.62   -0.60    0.88    3.30    7.08
+   290.0    0.00   -0.03   -0.27   -0.70   -1.29   -2.00   -2.78   -3.53   -4.15   -4.51   -4.50   -4.09   -3.39   -2.54   -1.68   -0.74    0.60    2.92    6.80
+   295.0    0.00   -0.06   -0.33   -0.79   -1.40   -2.13   -2.91   -3.67   -4.29   -4.65   -4.62   -4.18   -3.43   -2.56   -1.71   -0.85    0.37    2.60    6.57
+   300.0    0.00   -0.08   -0.39   -0.88   -1.51   -2.24   -3.03   -3.79   -4.42   -4.77   -4.72   -4.26   -3.47   -2.56   -1.71   -0.91    0.21    2.37    6.40
+   305.0    0.00   -0.11   -0.44   -0.95   -1.60   -2.34   -3.13   -3.90   -4.52   -4.87   -4.81   -4.32   -3.50   -2.56   -1.70   -0.93    0.13    2.22    6.29
+   310.0    0.00   -0.14   -0.49   -1.02   -1.68   -2.42   -3.21   -3.98   -4.60   -4.94   -4.88   -4.37   -3.52   -2.55   -1.68   -0.92    0.11    2.17    6.23
+   315.0    0.00   -0.16   -0.53   -1.08   -1.74   -2.49   -3.28   -4.03   -4.65   -4.99   -4.92   -4.40   -3.53   -2.55   -1.66   -0.88    0.15    2.19    6.22
+   320.0    0.00   -0.18   -0.57   -1.12   -1.79   -2.53   -3.31   -4.07   -4.68   -5.01   -4.93   -4.41   -3.54   -2.54   -1.63   -0.81    0.25    2.29    6.25
+   325.0    0.00   -0.20   -0.60   -1.15   -1.82   -2.56   -3.33   -4.07   -4.68   -5.00   -4.92   -4.40   -3.53   -2.53   -1.60   -0.74    0.37    2.43    6.30
+   330.0    0.00   -0.22   -0.62   -1.18   -1.83   -2.56   -3.32   -4.06   -4.65   -4.97   -4.88   -4.37   -3.51   -2.52   -1.56   -0.65    0.52    2.61    6.37
+   335.0    0.00   -0.23   -0.64   -1.19   -1.83   -2.55   -3.30   -4.02   -4.61   -4.91   -4.83   -4.32   -3.47   -2.49   -1.52   -0.57    0.68    2.80    6.47
+   340.0    0.00   -0.25   -0.65   -1.18   -1.81   -2.51   -3.25   -3.97   -4.55   -4.85   -4.76   -4.25   -3.42   -2.44   -1.47   -0.48    0.83    2.99    6.58
+   345.0    0.00   -0.26   -0.66   -1.17   -1.78   -2.46   -3.19   -3.91   -4.48   -4.78   -4.68   -4.17   -3.34   -2.38   -1.41   -0.39    0.97    3.18    6.72
+   350.0    0.00   -0.27   -0.66   -1.15   -1.73   -2.40   -3.12   -3.83   -4.41   -4.70   -4.60   -4.08   -3.25   -2.30   -1.33   -0.30    1.11    3.37    6.89
+   355.0    0.00   -0.27   -0.66   -1.13   -1.68   -2.32   -3.04   -3.75   -4.34   -4.63   -4.52   -3.99   -3.16   -2.20   -1.25   -0.21    1.23    3.55    7.10
+   360.0    0.00   -0.28   -0.65   -1.09   -1.61   -2.23   -2.94   -3.67   -4.26   -4.56   -4.44   -3.90   -3.06   -2.10   -1.15   -0.10    1.36    3.74    7.35
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TRM27947.00+GP  NONE                                        TYPE / SERIAL NO    
+FIELD               NGS                      1    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      2.18     -0.77     57.05                              NORTH / EAST / UP   
+   NOAZI    0.00    4.97    9.00   12.07   14.18   15.38   15.84   15.71   15.23   14.49   13.64   13.01   12.67   12.85   13.92   16.39   20.57
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.48      2.21     67.95                              NORTH / EAST / UP   
+   NOAZI    0.00    0.27    0.39    0.52    0.51    0.42    0.11   -0.37   -0.81   -1.31   -1.55   -1.66   -1.33   -0.73    0.27    1.59    3.65
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TRM27947.00-GP  NONE                                        TYPE / SERIAL NO    
+FIELD               NGS                      1    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      3.98     -0.27     73.55                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.53   -0.80   -1.13   -1.42   -1.72   -2.06   -2.29   -2.57   -2.71   -2.76   -2.59   -2.43   -2.05   -1.28   -0.01    2.07
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -1.48      1.51     87.25                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.63   -1.21   -1.68   -2.19   -2.68   -3.19   -3.57   -4.01   -4.21   -4.35   -4.26   -3.93   -3.63   -3.43   -3.31   -3.25
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TRM29659.00     NONE                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH              18    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     4                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+Number of Calibrated Antennas GPS:      018                 COMMENT             
+Number of Individual Calibrations GPS:  036                 COMMENT             
+Number of Calibrated Antennas GLO:      016                 COMMENT             
+Number of Individual Calibrations GLO:  031                 COMMENT             
+# GLONASS PCV                                               COMMENT             
+#  derived from Delta PCV per 25.0 MHz                      COMMENT             
+#  for frequency channel number k=0                         COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.19      0.23     90.99                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.24   -0.95   -2.06   -3.44   -4.94   -6.37   -7.56   -8.36   -8.68   -8.49   -7.80   -6.61   -4.90   -2.55    0.58    4.60    9.47   14.83
+     0.0    0.00   -0.25   -0.97   -2.09   -3.49   -5.00   -6.42   -7.57   -8.29   -8.52   -8.23   -7.46   -6.23   -4.51   -2.17    0.96    4.99    9.77   14.78
+     5.0    0.00   -0.25   -0.97   -2.08   -3.48   -4.99   -6.41   -7.57   -8.30   -8.52   -8.22   -7.44   -6.21   -4.50   -2.18    0.93    4.93    9.73   14.82
+    10.0    0.00   -0.25   -0.96   -2.07   -3.47   -4.98   -6.41   -7.57   -8.31   -8.53   -8.23   -7.44   -6.21   -4.50   -2.19    0.88    4.86    9.69   14.89
+    15.0    0.00   -0.25   -0.96   -2.07   -3.46   -4.97   -6.41   -7.58   -8.33   -8.57   -8.26   -7.47   -6.22   -4.51   -2.22    0.83    4.80    9.65   14.97
+    20.0    0.00   -0.24   -0.95   -2.06   -3.44   -4.96   -6.41   -7.60   -8.37   -8.61   -8.31   -7.51   -6.26   -4.54   -2.26    0.78    4.74    9.62   15.05
+    25.0    0.00   -0.24   -0.95   -2.05   -3.44   -4.95   -6.41   -7.62   -8.40   -8.66   -8.37   -7.57   -6.31   -4.58   -2.29    0.75    4.71    9.61   15.13
+    30.0    0.00   -0.24   -0.94   -2.04   -3.43   -4.94   -6.41   -7.63   -8.43   -8.71   -8.44   -7.65   -6.38   -4.64   -2.33    0.73    4.70    9.62   15.20
+    35.0    0.00   -0.24   -0.94   -2.03   -3.42   -4.94   -6.41   -7.64   -8.46   -8.76   -8.51   -7.73   -6.46   -4.70   -2.36    0.72    4.71    9.64   15.25
+    40.0    0.00   -0.24   -0.94   -2.03   -3.41   -4.93   -6.40   -7.64   -8.48   -8.80   -8.57   -7.81   -6.54   -4.76   -2.39    0.73    4.74    9.67   15.28
+    45.0    0.00   -0.24   -0.93   -2.03   -3.40   -4.92   -6.39   -7.64   -8.49   -8.83   -8.63   -7.88   -6.62   -4.82   -2.41    0.74    4.77    9.70   15.30
+    50.0    0.00   -0.24   -0.93   -2.02   -3.40   -4.91   -6.38   -7.62   -8.48   -8.85   -8.67   -7.94   -6.69   -4.88   -2.44    0.75    4.81    9.74   15.31
+    55.0    0.00   -0.24   -0.93   -2.02   -3.39   -4.90   -6.36   -7.61   -8.47   -8.85   -8.69   -7.99   -6.75   -4.93   -2.47    0.76    4.84    9.77   15.30
+    60.0    0.00   -0.24   -0.93   -2.02   -3.39   -4.89   -6.35   -7.58   -8.45   -8.83   -8.70   -8.02   -6.79   -4.98   -2.50    0.75    4.86    9.79   15.29
+    65.0    0.00   -0.24   -0.93   -2.02   -3.39   -4.89   -6.34   -7.56   -8.42   -8.81   -8.69   -8.03   -6.83   -5.02   -2.54    0.73    4.86    9.79   15.28
+    70.0    0.00   -0.24   -0.94   -2.03   -3.39   -4.89   -6.32   -7.54   -8.39   -8.78   -8.67   -8.03   -6.85   -5.06   -2.58    0.70    4.84    9.77   15.26
+    75.0    0.00   -0.24   -0.94   -2.03   -3.40   -4.89   -6.32   -7.52   -8.36   -8.75   -8.65   -8.03   -6.86   -5.09   -2.62    0.65    4.79    9.74   15.24
+    80.0    0.00   -0.24   -0.94   -2.04   -3.41   -4.89   -6.32   -7.51   -8.35   -8.73   -8.63   -8.02   -6.87   -5.12   -2.67    0.59    4.74    9.69   15.21
+    85.0    0.00   -0.24   -0.94   -2.04   -3.41   -4.90   -6.32   -7.51   -8.34   -8.71   -8.61   -8.01   -6.88   -5.15   -2.72    0.53    4.67    9.63   15.17
+    90.0    0.00   -0.24   -0.94   -2.05   -3.42   -4.91   -6.33   -7.51   -8.33   -8.71   -8.61   -8.01   -6.88   -5.17   -2.76    0.47    4.59    9.56   15.11
+    95.0    0.00   -0.24   -0.95   -2.05   -3.43   -4.92   -6.34   -7.53   -8.34   -8.71   -8.61   -8.01   -6.90   -5.20   -2.81    0.40    4.52    9.48   15.04
+   100.0    0.00   -0.24   -0.95   -2.06   -3.44   -4.93   -6.36   -7.54   -8.36   -8.73   -8.62   -8.02   -6.91   -5.22   -2.85    0.35    4.44    9.40   14.96
+   105.0    0.00   -0.24   -0.95   -2.06   -3.45   -4.94   -6.37   -7.56   -8.37   -8.75   -8.64   -8.04   -6.93   -5.24   -2.88    0.30    4.38    9.33   14.87
+   110.0    0.00   -0.24   -0.95   -2.06   -3.45   -4.95   -6.38   -7.57   -8.39   -8.76   -8.66   -8.05   -6.94   -5.26   -2.90    0.26    4.33    9.27   14.78
+   115.0    0.00   -0.24   -0.95   -2.06   -3.45   -4.95   -6.38   -7.58   -8.40   -8.78   -8.67   -8.06   -6.95   -5.27   -2.92    0.24    4.30    9.22   14.71
+   120.0    0.00   -0.24   -0.95   -2.06   -3.45   -4.95   -6.38   -7.58   -8.41   -8.79   -8.67   -8.07   -6.95   -5.27   -2.92    0.23    4.27    9.18   14.65
+   125.0    0.00   -0.24   -0.95   -2.06   -3.44   -4.94   -6.37   -7.57   -8.40   -8.78   -8.67   -8.05   -6.93   -5.25   -2.91    0.23    4.27    9.17   14.63
+   130.0    0.00   -0.24   -0.95   -2.06   -3.44   -4.93   -6.36   -7.56   -8.39   -8.76   -8.64   -8.03   -6.90   -5.22   -2.89    0.24    4.27    9.18   14.64
+   135.0    0.00   -0.24   -0.95   -2.05   -3.43   -4.91   -6.34   -7.53   -8.36   -8.73   -8.61   -7.98   -6.85   -5.18   -2.85    0.27    4.30    9.21   14.67
+   140.0    0.00   -0.24   -0.95   -2.05   -3.41   -4.90   -6.32   -7.51   -8.33   -8.69   -8.56   -7.92   -6.79   -5.12   -2.80    0.31    4.33    9.25   14.74
+   145.0    0.00   -0.24   -0.94   -2.04   -3.40   -4.88   -6.29   -7.48   -8.29   -8.64   -8.50   -7.86   -6.72   -5.05   -2.74    0.36    4.38    9.31   14.81
+   150.0    0.00   -0.24   -0.94   -2.03   -3.39   -4.86   -6.27   -7.44   -8.25   -8.60   -8.44   -7.79   -6.64   -4.97   -2.67    0.42    4.43    9.36   14.89
+   155.0    0.00   -0.24   -0.94   -2.03   -3.38   -4.84   -6.24   -7.42   -8.22   -8.55   -8.38   -7.72   -6.56   -4.88   -2.59    0.49    4.49    9.41   14.94
+   160.0    0.00   -0.24   -0.94   -2.02   -3.37   -4.83   -6.22   -7.39   -8.18   -8.51   -8.33   -7.65   -6.49   -4.80   -2.51    0.56    4.55    9.46   14.97
+   165.0    0.00   -0.24   -0.93   -2.01   -3.36   -4.81   -6.21   -7.37   -8.16   -8.48   -8.29   -7.60   -6.43   -4.73   -2.43    0.63    4.60    9.48   14.96
+   170.0    0.00   -0.24   -0.93   -2.01   -3.35   -4.81   -6.20   -7.36   -8.14   -8.46   -8.27   -7.57   -6.38   -4.68   -2.37    0.69    4.64    9.48   14.90
+   175.0    0.00   -0.24   -0.93   -2.01   -3.35   -4.80   -6.19   -7.35   -8.14   -8.45   -8.25   -7.55   -6.35   -4.64   -2.32    0.74    4.67    9.46   14.81
+   180.0    0.00   -0.24   -0.93   -2.01   -3.35   -4.80   -6.19   -7.35   -8.13   -8.45   -8.25   -7.55   -6.35   -4.62   -2.29    0.77    4.68    9.42   14.69
+   185.0    0.00   -0.24   -0.93   -2.01   -3.35   -4.80   -6.19   -7.35   -8.14   -8.45   -8.26   -7.56   -6.35   -4.62   -2.29    0.78    4.67    9.36   14.56
+   190.0    0.00   -0.24   -0.93   -2.01   -3.35   -4.80   -6.20   -7.36   -8.14   -8.46   -8.27   -7.58   -6.38   -4.65   -2.31    0.76    4.64    9.30   14.44
+   195.0    0.00   -0.24   -0.93   -2.01   -3.35   -4.81   -6.20   -7.36   -8.15   -8.47   -8.28   -7.60   -6.41   -4.68   -2.34    0.72    4.60    9.25   14.36
+   200.0    0.00   -0.24   -0.93   -2.01   -3.36   -4.82   -6.21   -7.37   -8.15   -8.47   -8.30   -7.62   -6.44   -4.73   -2.40    0.67    4.56    9.21   14.31
+   205.0    0.00   -0.24   -0.93   -2.01   -3.36   -4.82   -6.22   -7.37   -8.16   -8.47   -8.30   -7.64   -6.48   -4.78   -2.46    0.62    4.52    9.19   14.33
+   210.0    0.00   -0.24   -0.93   -2.01   -3.37   -4.83   -6.22   -7.38   -8.16   -8.47   -8.30   -7.65   -6.51   -4.83   -2.52    0.57    4.50    9.21   14.40
+   215.0    0.00   -0.24   -0.93   -2.02   -3.37   -4.84   -6.23   -7.38   -8.16   -8.47   -8.30   -7.66   -6.53   -4.87   -2.57    0.52    4.49    9.26   14.52
+   220.0    0.00   -0.24   -0.94   -2.02   -3.38   -4.84   -6.24   -7.39   -8.16   -8.47   -8.30   -7.67   -6.55   -4.91   -2.60    0.50    4.51    9.34   14.67
+   225.0    0.00   -0.24   -0.94   -2.02   -3.38   -4.85   -6.24   -7.39   -8.16   -8.47   -8.31   -7.67   -6.57   -4.93   -2.62    0.50    4.55    9.45   14.83
+   230.0    0.00   -0.24   -0.94   -2.03   -3.38   -4.85   -6.25   -7.40   -8.17   -8.48   -8.31   -7.68   -6.58   -4.93   -2.62    0.53    4.62    9.56   14.98
+   235.0    0.00   -0.24   -0.94   -2.03   -3.39   -4.86   -6.26   -7.41   -8.18   -8.49   -8.33   -7.69   -6.58   -4.93   -2.60    0.58    4.70    9.67   15.10
+   240.0    0.00   -0.24   -0.95   -2.03   -3.40   -4.87   -6.27   -7.43   -8.20   -8.52   -8.35   -7.71   -6.59   -4.92   -2.57    0.63    4.78    9.76   15.16
+   245.0    0.00   -0.25   -0.95   -2.04   -3.40   -4.88   -6.28   -7.45   -8.23   -8.55   -8.38   -7.74   -6.60   -4.91   -2.53    0.69    4.86    9.82   15.16
+   250.0    0.00   -0.25   -0.95   -2.04   -3.41   -4.89   -6.30   -7.47   -8.27   -8.59   -8.42   -7.77   -6.62   -4.90   -2.50    0.75    4.90    9.84   15.09
+   255.0    0.00   -0.25   -0.96   -2.05   -3.42   -4.90   -6.32   -7.50   -8.31   -8.64   -8.47   -7.80   -6.63   -4.90   -2.48    0.78    4.92    9.80   14.96
+   260.0    0.00   -0.25   -0.96   -2.06   -3.43   -4.92   -6.34   -7.54   -8.35   -8.69   -8.52   -7.84   -6.66   -4.90   -2.47    0.78    4.89    9.72   14.80
+   265.0    0.00   -0.25   -0.96   -2.06   -3.44   -4.93   -6.37   -7.57   -8.40   -8.74   -8.57   -7.88   -6.68   -4.91   -2.48    0.74    4.82    9.59   14.61
+   270.0    0.00   -0.25   -0.97   -2.07   -3.45   -4.95   -6.40   -7.61   -8.44   -8.79   -8.61   -7.91   -6.70   -4.94   -2.52    0.67    4.70    9.43   14.42
+   275.0    0.00   -0.25   -0.97   -2.08   -3.47   -4.98   -6.43   -7.65   -8.48   -8.83   -8.64   -7.94   -6.72   -4.97   -2.58    0.57    4.55    9.25   14.26
+   280.0    0.00   -0.26   -0.98   -2.09   -3.48   -5.00   -6.46   -7.69   -8.52   -8.86   -8.67   -7.96   -6.74   -5.00   -2.65    0.45    4.39    9.08   14.15
+   285.0    0.00   -0.26   -0.98   -2.10   -3.50   -5.02   -6.49   -7.72   -8.55   -8.89   -8.69   -7.97   -6.75   -5.03   -2.72    0.33    4.22    8.93   14.09
+   290.0    0.00   -0.26   -0.99   -2.11   -3.52   -5.05   -6.52   -7.75   -8.58   -8.90   -8.69   -7.97   -6.76   -5.06   -2.79    0.21    4.08    8.81   14.09
+   295.0    0.00   -0.26   -0.99   -2.12   -3.53   -5.07   -6.54   -7.77   -8.60   -8.91   -8.69   -7.96   -6.76   -5.09   -2.85    0.11    3.97    8.75   14.14
+   300.0    0.00   -0.26   -0.99   -2.13   -3.54   -5.08   -6.56   -7.79   -8.61   -8.91   -8.68   -7.94   -6.75   -5.10   -2.89    0.05    3.92    8.74   14.24
+   305.0    0.00   -0.26   -1.00   -2.13   -3.55   -5.10   -6.58   -7.80   -8.61   -8.90   -8.66   -7.92   -6.73   -5.09   -2.90    0.04    3.92    8.78   14.36
+   310.0    0.00   -0.26   -1.00   -2.14   -3.56   -5.11   -6.58   -7.80   -8.60   -8.88   -8.63   -7.90   -6.71   -5.07   -2.88    0.07    3.98    8.88   14.49
+   315.0    0.00   -0.26   -1.00   -2.14   -3.57   -5.11   -6.58   -7.79   -8.58   -8.85   -8.60   -7.86   -6.68   -5.04   -2.83    0.15    4.09    9.01   14.61
+   320.0    0.00   -0.26   -1.00   -2.14   -3.57   -5.11   -6.57   -7.77   -8.55   -8.82   -8.57   -7.83   -6.64   -4.99   -2.75    0.26    4.24    9.17   14.70
+   325.0    0.00   -0.26   -1.00   -2.14   -3.57   -5.10   -6.56   -7.75   -8.52   -8.78   -8.53   -7.79   -6.60   -4.93   -2.66    0.40    4.41    9.33   14.76
+   330.0    0.00   -0.26   -1.00   -2.14   -3.56   -5.09   -6.54   -7.72   -8.48   -8.73   -8.48   -7.74   -6.55   -4.86   -2.56    0.55    4.58    9.48   14.79
+   335.0    0.00   -0.26   -1.00   -2.14   -3.55   -5.08   -6.52   -7.68   -8.43   -8.69   -8.43   -7.69   -6.49   -4.79   -2.45    0.69    4.74    9.61   14.80
+   340.0    0.00   -0.26   -0.99   -2.13   -3.54   -5.06   -6.49   -7.65   -8.39   -8.64   -8.38   -7.64   -6.43   -4.72   -2.36    0.80    4.87    9.71   14.78
+   345.0    0.00   -0.26   -0.99   -2.12   -3.53   -5.05   -6.47   -7.62   -8.35   -8.59   -8.33   -7.58   -6.37   -4.65   -2.28    0.90    4.97    9.78   14.76
+   350.0    0.00   -0.26   -0.98   -2.11   -3.52   -5.03   -6.45   -7.60   -8.32   -8.56   -8.28   -7.53   -6.32   -4.59   -2.22    0.95    5.01    9.80   14.75
+   355.0    0.00   -0.25   -0.98   -2.10   -3.50   -5.01   -6.43   -7.58   -8.30   -8.53   -8.25   -7.49   -6.27   -4.54   -2.19    0.97    5.02    9.80   14.75
+   360.0    0.00   -0.25   -0.97   -2.09   -3.49   -5.00   -6.42   -7.57   -8.29   -8.52   -8.23   -7.46   -6.23   -4.51   -2.17    0.96    4.99    9.77   14.78
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.01      0.00    120.40                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.14   -0.56   -1.18   -1.95   -2.81   -3.68   -4.51   -5.21   -5.65   -5.70   -5.29   -4.41   -3.14   -1.54    0.39    2.78    5.90    9.93
+     0.0    0.00   -0.14   -0.55   -1.16   -1.91   -2.75   -3.64   -4.51   -5.27   -5.76   -5.87   -5.49   -4.63   -3.38   -1.83    0.06    2.43    5.54    9.50
+     5.0    0.00   -0.14   -0.55   -1.15   -1.90   -2.74   -3.63   -4.49   -5.25   -5.74   -5.85   -5.49   -4.65   -3.43   -1.90   -0.04    2.35    5.51    9.55
+    10.0    0.00   -0.14   -0.55   -1.15   -1.90   -2.73   -3.62   -4.48   -5.23   -5.72   -5.83   -5.48   -4.67   -3.47   -1.96   -0.09    2.31    5.53    9.66
+    15.0    0.00   -0.14   -0.55   -1.15   -1.90   -2.73   -3.61   -4.46   -5.20   -5.69   -5.81   -5.46   -4.66   -3.48   -1.98   -0.11    2.32    5.60    9.84
+    20.0    0.00   -0.14   -0.55   -1.15   -1.90   -2.73   -3.60   -4.45   -5.18   -5.67   -5.77   -5.43   -4.64   -3.47   -1.97   -0.09    2.37    5.71   10.06
+    25.0    0.00   -0.14   -0.55   -1.15   -1.90   -2.73   -3.59   -4.44   -5.16   -5.63   -5.73   -5.39   -4.60   -3.43   -1.93   -0.04    2.46    5.85   10.30
+    30.0    0.00   -0.14   -0.55   -1.15   -1.90   -2.73   -3.59   -4.43   -5.14   -5.60   -5.69   -5.34   -4.54   -3.37   -1.87    0.04    2.56    6.00   10.53
+    35.0    0.00   -0.14   -0.55   -1.16   -1.90   -2.73   -3.60   -4.42   -5.12   -5.56   -5.64   -5.27   -4.47   -3.29   -1.78    0.14    2.67    6.14   10.72
+    40.0    0.00   -0.14   -0.55   -1.16   -1.91   -2.74   -3.60   -4.42   -5.10   -5.53   -5.59   -5.21   -4.39   -3.20   -1.68    0.24    2.78    6.25   10.86
+    45.0    0.00   -0.15   -0.55   -1.17   -1.92   -2.75   -3.60   -4.41   -5.09   -5.50   -5.54   -5.14   -4.31   -3.11   -1.57    0.35    2.88    6.33   10.93
+    50.0    0.00   -0.15   -0.55   -1.17   -1.93   -2.76   -3.61   -4.41   -5.07   -5.47   -5.50   -5.09   -4.24   -3.02   -1.48    0.44    2.95    6.36   10.92
+    55.0    0.00   -0.15   -0.56   -1.18   -1.93   -2.77   -3.62   -4.41   -5.06   -5.45   -5.46   -5.04   -4.18   -2.95   -1.40    0.52    3.00    6.35   10.84
+    60.0    0.00   -0.15   -0.56   -1.18   -1.94   -2.78   -3.63   -4.42   -5.06   -5.44   -5.44   -5.01   -4.14   -2.89   -1.33    0.57    3.01    6.30   10.70
+    65.0    0.00   -0.15   -0.56   -1.19   -1.95   -2.79   -3.63   -4.42   -5.06   -5.43   -5.44   -4.99   -4.11   -2.86   -1.30    0.60    3.00    6.22   10.52
+    70.0    0.00   -0.15   -0.56   -1.19   -1.96   -2.79   -3.64   -4.43   -5.07   -5.44   -5.44   -5.00   -4.11   -2.85   -1.28    0.60    2.97    6.11   10.32
+    75.0    0.00   -0.15   -0.57   -1.19   -1.96   -2.80   -3.65   -4.44   -5.08   -5.46   -5.46   -5.02   -4.13   -2.86   -1.29    0.59    2.92    5.99   10.11
+    80.0    0.00   -0.15   -0.57   -1.20   -1.97   -2.81   -3.66   -4.46   -5.10   -5.49   -5.50   -5.06   -4.17   -2.89   -1.32    0.55    2.85    5.87    9.91
+    85.0    0.00   -0.15   -0.57   -1.20   -1.97   -2.82   -3.67   -4.47   -5.13   -5.52   -5.54   -5.10   -4.21   -2.94   -1.36    0.50    2.78    5.76    9.75
+    90.0    0.00   -0.15   -0.57   -1.20   -1.98   -2.82   -3.68   -4.49   -5.15   -5.56   -5.59   -5.15   -4.26   -2.98   -1.40    0.45    2.71    5.67    9.63
+    95.0    0.00   -0.15   -0.57   -1.21   -1.98   -2.83   -3.69   -4.51   -5.18   -5.60   -5.63   -5.20   -4.31   -3.02   -1.45    0.40    2.65    5.59    9.55
+   100.0    0.00   -0.15   -0.58   -1.21   -1.98   -2.83   -3.70   -4.52   -5.21   -5.63   -5.67   -5.24   -4.35   -3.06   -1.49    0.35    2.60    5.54    9.51
+   105.0    0.00   -0.15   -0.58   -1.21   -1.98   -2.83   -3.71   -4.53   -5.23   -5.66   -5.70   -5.28   -4.38   -3.09   -1.51    0.32    2.56    5.51    9.50
+   110.0    0.00   -0.15   -0.58   -1.21   -1.98   -2.84   -3.71   -4.54   -5.24   -5.68   -5.73   -5.29   -4.39   -3.10   -1.53    0.30    2.54    5.50    9.52
+   115.0    0.00   -0.15   -0.58   -1.21   -1.99   -2.84   -3.71   -4.55   -5.25   -5.69   -5.74   -5.30   -4.39   -3.10   -1.53    0.30    2.54    5.52    9.55
+   120.0    0.00   -0.15   -0.58   -1.21   -1.99   -2.84   -3.71   -4.55   -5.25   -5.69   -5.74   -5.30   -4.38   -3.09   -1.52    0.31    2.56    5.54    9.59
+   125.0    0.00   -0.15   -0.58   -1.21   -1.99   -2.83   -3.71   -4.54   -5.25   -5.69   -5.73   -5.29   -4.37   -3.07   -1.50    0.33    2.58    5.57    9.61
+   130.0    0.00   -0.15   -0.58   -1.21   -1.99   -2.83   -3.70   -4.54   -5.24   -5.67   -5.71   -5.27   -4.35   -3.05   -1.47    0.36    2.62    5.61    9.63
+   135.0    0.00   -0.15   -0.58   -1.22   -1.99   -2.83   -3.70   -4.53   -5.22   -5.66   -5.70   -5.26   -4.34   -3.04   -1.45    0.39    2.65    5.64    9.62
+   140.0    0.00   -0.15   -0.58   -1.22   -1.99   -2.83   -3.69   -4.52   -5.21   -5.65   -5.69   -5.25   -4.34   -3.03   -1.44    0.41    2.68    5.66    9.59
+   145.0    0.00   -0.15   -0.58   -1.22   -1.99   -2.83   -3.69   -4.51   -5.20   -5.64   -5.68   -5.25   -4.34   -3.03   -1.44    0.43    2.70    5.66    9.53
+   150.0    0.00   -0.15   -0.58   -1.22   -1.99   -2.83   -3.69   -4.51   -5.20   -5.63   -5.68   -5.26   -4.36   -3.05   -1.45    0.42    2.70    5.65    9.46
+   155.0    0.00   -0.15   -0.58   -1.22   -1.99   -2.84   -3.69   -4.51   -5.20   -5.64   -5.69   -5.28   -4.38   -3.08   -1.48    0.40    2.68    5.61    9.37
+   160.0    0.00   -0.15   -0.58   -1.22   -2.00   -2.84   -3.70   -4.52   -5.20   -5.64   -5.71   -5.30   -4.41   -3.12   -1.52    0.36    2.64    5.55    9.28
+   165.0    0.00   -0.15   -0.58   -1.22   -2.00   -2.84   -3.71   -4.52   -5.21   -5.66   -5.73   -5.33   -4.45   -3.17   -1.57    0.30    2.58    5.48    9.18
+   170.0    0.00   -0.15   -0.58   -1.22   -2.00   -2.85   -3.71   -4.54   -5.23   -5.68   -5.75   -5.36   -4.49   -3.21   -1.63    0.24    2.50    5.40    9.10
+   175.0    0.00   -0.15   -0.58   -1.22   -2.00   -2.85   -3.72   -4.55   -5.24   -5.69   -5.77   -5.39   -4.52   -3.26   -1.68    0.17    2.43    5.32    9.03
+   180.0    0.00   -0.15   -0.57   -1.22   -2.00   -2.86   -3.73   -4.56   -5.25   -5.71   -5.79   -5.40   -4.55   -3.29   -1.73    0.11    2.36    5.25    8.99
+   185.0    0.00   -0.15   -0.57   -1.21   -2.00   -2.86   -3.74   -4.56   -5.26   -5.71   -5.79   -5.41   -4.56   -3.32   -1.76    0.07    2.31    5.22    8.99
+   190.0    0.00   -0.15   -0.57   -1.21   -2.00   -2.86   -3.74   -4.57   -5.27   -5.72   -5.79   -5.41   -4.56   -3.32   -1.78    0.05    2.30    5.22    9.03
+   195.0    0.00   -0.15   -0.57   -1.21   -1.99   -2.85   -3.73   -4.57   -5.26   -5.71   -5.78   -5.40   -4.55   -3.31   -1.76    0.07    2.33    5.27    9.13
+   200.0    0.00   -0.15   -0.56   -1.20   -1.99   -2.85   -3.73   -4.56   -5.26   -5.70   -5.76   -5.37   -4.52   -3.27   -1.72    0.12    2.40    5.38    9.27
+   205.0    0.00   -0.14   -0.56   -1.20   -1.98   -2.84   -3.72   -4.55   -5.24   -5.68   -5.74   -5.34   -4.48   -3.23   -1.66    0.21    2.52    5.53    9.46
+   210.0    0.00   -0.14   -0.56   -1.19   -1.97   -2.84   -3.71   -4.54   -5.23   -5.66   -5.71   -5.31   -4.44   -3.17   -1.58    0.33    2.68    5.73    9.67
+   215.0    0.00   -0.14   -0.56   -1.19   -1.97   -2.83   -3.71   -4.53   -5.22   -5.64   -5.69   -5.27   -4.39   -3.10   -1.48    0.46    2.86    5.95    9.91
+   220.0    0.00   -0.14   -0.55   -1.18   -1.96   -2.82   -3.70   -4.53   -5.21   -5.62   -5.66   -5.24   -4.34   -3.03   -1.38    0.61    3.06    6.19   10.15
+   225.0    0.00   -0.14   -0.55   -1.18   -1.96   -2.82   -3.70   -4.52   -5.20   -5.61   -5.64   -5.21   -4.30   -2.97   -1.28    0.74    3.24    6.40   10.38
+   230.0    0.00   -0.14   -0.55   -1.18   -1.96   -2.82   -3.70   -4.53   -5.20   -5.61   -5.63   -5.18   -4.26   -2.91   -1.20    0.86    3.39    6.59   10.56
+   235.0    0.00   -0.14   -0.55   -1.18   -1.96   -2.83   -3.71   -4.54   -5.21   -5.61   -5.63   -5.17   -4.23   -2.87   -1.15    0.94    3.50    6.72   10.69
+   240.0    0.00   -0.14   -0.55   -1.18   -1.96   -2.83   -3.72   -4.55   -5.23   -5.62   -5.63   -5.16   -4.22   -2.85   -1.12    0.98    3.55    6.78   10.76
+   245.0    0.00   -0.14   -0.55   -1.18   -1.97   -2.84   -3.73   -4.57   -5.24   -5.64   -5.64   -5.17   -4.22   -2.85   -1.13    0.97    3.54    6.77   10.76
+   250.0    0.00   -0.14   -0.55   -1.18   -1.97   -2.85   -3.75   -4.59   -5.26   -5.66   -5.65   -5.18   -4.23   -2.87   -1.16    0.91    3.47    6.70   10.70
+   255.0    0.00   -0.14   -0.55   -1.19   -1.98   -2.86   -3.76   -4.60   -5.28   -5.67   -5.67   -5.19   -4.25   -2.91   -1.23    0.81    3.35    6.56   10.59
+   260.0    0.00   -0.14   -0.55   -1.19   -1.99   -2.87   -3.78   -4.62   -5.30   -5.69   -5.68   -5.21   -4.29   -2.97   -1.31    0.69    3.19    6.40   10.44
+   265.0    0.00   -0.14   -0.55   -1.19   -1.99   -2.88   -3.78   -4.63   -5.31   -5.70   -5.70   -5.24   -4.33   -3.03   -1.41    0.56    3.02    6.21   10.28
+   270.0    0.00   -0.14   -0.56   -1.20   -2.00   -2.88   -3.79   -4.63   -5.31   -5.71   -5.72   -5.27   -4.37   -3.10   -1.51    0.43    2.86    6.04   10.13
+   275.0    0.00   -0.14   -0.56   -1.20   -2.00   -2.89   -3.79   -4.63   -5.31   -5.72   -5.73   -5.30   -4.42   -3.17   -1.60    0.32    2.73    5.90   10.01
+   280.0    0.00   -0.14   -0.56   -1.20   -2.00   -2.88   -3.78   -4.62   -5.31   -5.72   -5.75   -5.33   -4.46   -3.22   -1.66    0.24    2.64    5.80    9.94
+   285.0    0.00   -0.14   -0.56   -1.20   -2.00   -2.88   -3.78   -4.61   -5.30   -5.72   -5.76   -5.35   -4.50   -3.27   -1.71    0.20    2.60    5.77    9.91
+   290.0    0.00   -0.14   -0.56   -1.21   -2.00   -2.87   -3.76   -4.60   -5.29   -5.72   -5.77   -5.38   -4.53   -3.29   -1.72    0.20    2.62    5.79    9.95
+   295.0    0.00   -0.14   -0.56   -1.21   -2.00   -2.87   -3.75   -4.59   -5.28   -5.72   -5.79   -5.40   -4.55   -3.30   -1.70    0.24    2.68    5.87   10.02
+   300.0    0.00   -0.14   -0.56   -1.21   -1.99   -2.86   -3.74   -4.57   -5.27   -5.72   -5.80   -5.42   -4.56   -3.29   -1.66    0.31    2.78    5.98   10.12
+   305.0    0.00   -0.14   -0.56   -1.20   -1.99   -2.85   -3.73   -4.56   -5.27   -5.73   -5.81   -5.43   -4.56   -3.26   -1.61    0.41    2.90    6.11   10.23
+   310.0    0.00   -0.14   -0.56   -1.20   -1.98   -2.84   -3.72   -4.56   -5.27   -5.74   -5.83   -5.44   -4.56   -3.23   -1.54    0.51    3.02    6.23   10.32
+   315.0    0.00   -0.14   -0.56   -1.20   -1.98   -2.83   -3.71   -4.56   -5.27   -5.75   -5.84   -5.44   -4.54   -3.19   -1.47    0.59    3.12    6.33   10.38
+   320.0    0.00   -0.14   -0.56   -1.20   -1.97   -2.83   -3.71   -4.55   -5.28   -5.76   -5.85   -5.45   -4.53   -3.16   -1.42    0.66    3.18    6.38   10.39
+   325.0    0.00   -0.14   -0.56   -1.19   -1.96   -2.82   -3.70   -4.56   -5.29   -5.77   -5.86   -5.45   -4.52   -3.13   -1.39    0.68    3.20    6.37   10.34
+   330.0    0.00   -0.14   -0.56   -1.19   -1.96   -2.81   -3.70   -4.56   -5.30   -5.78   -5.87   -5.45   -4.51   -3.12   -1.39    0.67    3.17    6.31   10.24
+   335.0    0.00   -0.14   -0.56   -1.18   -1.95   -2.80   -3.69   -4.56   -5.30   -5.79   -5.88   -5.45   -4.51   -3.13   -1.41    0.62    3.09    6.21   10.10
+   340.0    0.00   -0.14   -0.56   -1.18   -1.94   -2.79   -3.68   -4.55   -5.30   -5.80   -5.88   -5.46   -4.52   -3.16   -1.47    0.54    2.97    6.06    9.93
+   345.0    0.00   -0.14   -0.55   -1.17   -1.93   -2.78   -3.67   -4.55   -5.30   -5.79   -5.88   -5.46   -4.54   -3.20   -1.54    0.42    2.83    5.91    9.76
+   350.0    0.00   -0.14   -0.55   -1.17   -1.92   -2.77   -3.66   -4.54   -5.29   -5.79   -5.88   -5.47   -4.57   -3.26   -1.63    0.30    2.68    5.75    9.62
+   355.0    0.00   -0.14   -0.55   -1.16   -1.92   -2.76   -3.65   -4.53   -5.28   -5.78   -5.87   -5.48   -4.60   -3.32   -1.73    0.17    2.54    5.63    9.53
+   360.0    0.00   -0.14   -0.55   -1.16   -1.91   -2.75   -3.64   -4.51   -5.27   -5.76   -5.87   -5.49   -4.63   -3.38   -1.83    0.06    2.43    5.54    9.50
+   G02                                                      END OF FREQUENCY    
+   R01                                                      START OF FREQUENCY  
+      0.19      0.23     90.99                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.25   -0.97   -2.09   -3.45   -4.93   -6.33   -7.52   -8.36   -8.77   -8.68   -8.09   -6.95   -5.26   -2.93    0.15    4.09    8.89   14.29
+     0.0    0.00   -0.25   -0.98   -2.11   -3.50   -4.98   -6.36   -7.51   -8.27   -8.58   -8.38   -7.66   -6.44   -4.71   -2.43    0.56    4.38    9.10   14.50
+     5.0    0.00   -0.25   -0.98   -2.10   -3.48   -4.95   -6.32   -7.48   -8.28   -8.61   -8.42   -7.71   -6.47   -4.73   -2.44    0.54    4.32    9.02   14.48
+    10.0    0.00   -0.25   -0.97   -2.08   -3.45   -4.91   -6.29   -7.46   -8.28   -8.64   -8.47   -7.77   -6.53   -4.78   -2.46    0.50    4.26    8.96   14.49
+    15.0    0.00   -0.25   -0.97   -2.08   -3.43   -4.87   -6.26   -7.43   -8.29   -8.69   -8.55   -7.86   -6.61   -4.83   -2.50    0.47    4.23    8.91   14.48
+    20.0    0.00   -0.24   -0.96   -2.06   -3.39   -4.83   -6.22   -7.42   -8.30   -8.73   -8.63   -7.96   -6.72   -4.91   -2.56    0.43    4.19    8.88   14.48
+    25.0    0.00   -0.24   -0.96   -2.05   -3.38   -4.79   -6.19   -7.41   -8.30   -8.78   -8.71   -8.06   -6.82   -5.01   -2.62    0.40    4.19    8.88   14.49
+    30.0    0.00   -0.24   -0.95   -2.03   -3.36   -4.77   -6.15   -7.39   -8.31   -8.82   -8.79   -8.17   -6.93   -5.11   -2.69    0.38    4.19    8.89   14.50
+    35.0    0.00   -0.25   -0.95   -2.02   -3.33   -4.76   -6.14   -7.38   -8.32   -8.86   -8.86   -8.26   -7.04   -5.20   -2.74    0.35    4.19    8.91   14.51
+    40.0    0.00   -0.25   -0.95   -2.02   -3.32   -4.74   -6.13   -7.38   -8.34   -8.89   -8.91   -8.34   -7.12   -5.27   -2.80    0.33    4.20    8.93   14.51
+    45.0    0.00   -0.25   -0.94   -2.02   -3.31   -4.74   -6.13   -7.40   -8.36   -8.92   -8.95   -8.38   -7.18   -5.33   -2.85    0.30    4.20    8.93   14.53
+    50.0    0.00   -0.25   -0.94   -2.01   -3.33   -4.75   -6.16   -7.41   -8.37   -8.94   -8.97   -8.40   -7.21   -5.37   -2.89    0.28    4.19    8.96   14.56
+    55.0    0.00   -0.25   -0.95   -2.02   -3.34   -4.77   -6.18   -7.44   -8.38   -8.94   -8.96   -8.39   -7.21   -5.38   -2.91    0.26    4.19    8.98   14.59
+    60.0    0.00   -0.25   -0.95   -2.02   -3.35   -4.79   -6.21   -7.45   -8.41   -8.92   -8.92   -8.36   -7.17   -5.37   -2.93    0.23    4.19    9.00   14.63
+    65.0    0.00   -0.25   -0.95   -2.03   -3.37   -4.83   -6.25   -7.49   -8.41   -8.90   -8.88   -8.31   -7.15   -5.36   -2.94    0.21    4.19    9.04   14.70
+    70.0    0.00   -0.25   -0.96   -2.05   -3.39   -4.87   -6.28   -7.52   -8.41   -8.88   -8.84   -8.24   -7.09   -5.35   -2.94    0.20    4.19    9.07   14.76
+    75.0    0.00   -0.25   -0.97   -2.06   -3.42   -4.90   -6.32   -7.54   -8.41   -8.86   -8.79   -8.20   -7.05   -5.32   -2.94    0.18    4.18    9.11   14.84
+    80.0    0.00   -0.26   -0.97   -2.07   -3.45   -4.92   -6.36   -7.57   -8.44   -8.84   -8.76   -8.15   -7.02   -5.31   -2.95    0.18    4.21    9.15   14.90
+    85.0    0.00   -0.26   -0.97   -2.08   -3.46   -4.96   -6.39   -7.60   -8.45   -8.83   -8.73   -8.13   -7.00   -5.31   -2.96    0.17    4.21    9.19   14.96
+    90.0    0.00   -0.26   -0.97   -2.10   -3.48   -4.98   -6.43   -7.62   -8.45   -8.84   -8.73   -8.12   -7.00   -5.32   -2.97    0.16    4.22    9.23   14.98
+    95.0    0.00   -0.26   -0.99   -2.10   -3.50   -5.01   -6.45   -7.65   -8.47   -8.84   -8.74   -8.13   -7.03   -5.35   -3.01    0.13    4.23    9.24   14.97
+   100.0    0.00   -0.26   -0.99   -2.12   -3.51   -5.03   -6.47   -7.67   -8.50   -8.87   -8.76   -8.16   -7.06   -5.39   -3.05    0.12    4.21    9.22   14.93
+   105.0    0.00   -0.26   -0.99   -2.12   -3.52   -5.04   -6.48   -7.68   -8.51   -8.90   -8.80   -8.21   -7.11   -5.43   -3.09    0.08    4.17    9.18   14.84
+   110.0    0.00   -0.26   -0.99   -2.12   -3.52   -5.05   -6.49   -7.69   -8.53   -8.91   -8.83   -8.24   -7.15   -5.48   -3.14    0.03    4.12    9.12   14.73
+   115.0    0.00   -0.26   -1.00   -2.12   -3.52   -5.04   -6.48   -7.69   -8.53   -8.94   -8.86   -8.27   -7.19   -5.54   -3.20   -0.04    4.06    9.03   14.60
+   120.0    0.00   -0.27   -1.00   -2.13   -3.52   -5.04   -6.47   -7.69   -8.54   -8.95   -8.87   -8.30   -7.23   -5.57   -3.24   -0.09    3.97    8.92   14.48
+   125.0    0.00   -0.27   -1.00   -2.13   -3.53   -5.01   -6.46   -7.67   -8.52   -8.93   -8.87   -8.29   -7.22   -5.58   -3.27   -0.14    3.90    8.84   14.37
+   130.0    0.00   -0.27   -1.00   -2.13   -3.53   -5.00   -6.43   -7.63   -8.50   -8.90   -8.83   -8.29   -7.21   -5.57   -3.29   -0.20    3.83    8.77   14.30
+   135.0    0.00   -0.27   -1.01   -2.14   -3.52   -4.98   -6.40   -7.59   -8.45   -8.86   -8.79   -8.22   -7.16   -5.55   -3.29   -0.21    3.80    8.73   14.27
+   140.0    0.00   -0.27   -1.01   -2.14   -3.50   -4.97   -6.37   -7.56   -8.39   -8.80   -8.73   -8.15   -7.10   -5.50   -3.26   -0.20    3.79    8.72   14.28
+   145.0    0.00   -0.27   -1.00   -2.13   -3.49   -4.94   -6.33   -7.51   -8.33   -8.73   -8.65   -8.08   -7.03   -5.44   -3.21   -0.17    3.82    8.77   14.33
+   150.0    0.00   -0.27   -1.01   -2.13   -3.49   -4.92   -6.30   -7.45   -8.27   -8.66   -8.57   -8.00   -6.94   -5.36   -3.14   -0.11    3.87    8.82   14.42
+   155.0    0.00   -0.27   -1.01   -2.13   -3.48   -4.90   -6.27   -7.42   -8.22   -8.59   -8.49   -7.92   -6.86   -5.27   -3.06   -0.03    3.95    8.90   14.50
+   160.0    0.00   -0.27   -1.01   -2.13   -3.48   -4.90   -6.24   -7.38   -8.16   -8.53   -8.43   -7.85   -6.79   -5.19   -2.97    0.06    4.04    8.99   14.59
+   165.0    0.00   -0.27   -1.00   -2.12   -3.47   -4.88   -6.23   -7.35   -8.13   -8.49   -8.39   -7.80   -6.74   -5.12   -2.89    0.14    4.12    9.05   14.63
+   170.0    0.00   -0.27   -1.00   -2.12   -3.46   -4.88   -6.22   -7.34   -8.11   -8.47   -8.38   -7.78   -6.70   -5.07   -2.82    0.22    4.18    9.09   14.61
+   175.0    0.00   -0.27   -1.00   -2.13   -3.47   -4.87   -6.21   -7.33   -8.11   -8.47   -8.37   -7.77   -6.68   -5.04   -2.77    0.27    4.21    9.07   14.55
+   180.0    0.00   -0.27   -1.00   -2.13   -3.47   -4.89   -6.21   -7.33   -8.11   -8.49   -8.39   -7.79   -6.69   -5.03   -2.75    0.28    4.20    8.99   14.42
+   185.0    0.00   -0.27   -1.00   -2.13   -3.47   -4.89   -6.22   -7.34   -8.14   -8.51   -8.42   -7.83   -6.71   -5.05   -2.77    0.27    4.14    8.87   14.24
+   190.0    0.00   -0.27   -1.00   -2.12   -3.47   -4.89   -6.23   -7.36   -8.15   -8.55   -8.46   -7.88   -6.76   -5.09   -2.81    0.21    4.03    8.72   14.03
+   195.0    0.00   -0.26   -0.99   -2.12   -3.46   -4.88   -6.23   -7.36   -8.17   -8.58   -8.49   -7.92   -6.80   -5.14   -2.86    0.11    3.91    8.55   13.82
+   200.0    0.00   -0.26   -0.99   -2.11   -3.46   -4.88   -6.23   -7.37   -8.18   -8.59   -8.53   -7.96   -6.85   -5.21   -2.95    0.01    3.77    8.38   13.63
+   205.0    0.00   -0.26   -0.98   -2.10   -3.45   -4.87   -6.23   -7.37   -8.19   -8.60   -8.54   -7.99   -6.91   -5.27   -3.03   -0.08    3.66    8.24   13.49
+   210.0    0.00   -0.26   -0.98   -2.08   -3.44   -4.87   -6.22   -7.37   -8.19   -8.60   -8.56   -8.01   -6.96   -5.34   -3.12   -0.16    3.59    8.17   13.42
+   215.0    0.00   -0.25   -0.97   -2.08   -3.42   -4.86   -6.21   -7.35   -8.17   -8.59   -8.56   -8.03   -6.99   -5.39   -3.18   -0.23    3.54    8.15   13.44
+   220.0    0.00   -0.25   -0.97   -2.07   -3.42   -4.84   -6.20   -7.34   -8.15   -8.58   -8.54   -8.04   -7.02   -5.44   -3.22   -0.25    3.57    8.22   13.52
+   225.0    0.00   -0.25   -0.96   -2.05   -3.40   -4.83   -6.18   -7.32   -8.14   -8.56   -8.54   -8.04   -7.05   -5.47   -3.24   -0.23    3.65    8.38   13.68
+   230.0    0.00   -0.24   -0.95   -2.05   -3.38   -4.81   -6.16   -7.30   -8.13   -8.55   -8.53   -8.05   -7.07   -5.48   -3.23   -0.16    3.78    8.56   13.87
+   235.0    0.00   -0.24   -0.95   -2.04   -3.38   -4.81   -6.16   -7.30   -8.13   -8.55   -8.55   -8.06   -7.07   -5.48   -3.18   -0.07    3.96    8.78   14.09
+   240.0    0.00   -0.24   -0.95   -2.02   -3.37   -4.81   -6.16   -7.32   -8.15   -8.58   -8.57   -8.08   -7.08   -5.46   -3.13    0.05    4.12    8.99   14.29
+   245.0    0.00   -0.24   -0.94   -2.02   -3.36   -4.81   -6.17   -7.35   -8.19   -8.62   -8.60   -8.11   -7.08   -5.44   -3.06    0.16    4.30    9.18   14.44
+   250.0    0.00   -0.24   -0.93   -2.01   -3.36   -4.82   -6.20   -7.40   -8.26   -8.69   -8.66   -8.14   -7.09   -5.41   -3.00    0.26    4.41    9.31   14.53
+   255.0    0.00   -0.24   -0.93   -2.01   -3.37   -4.83   -6.25   -7.46   -8.33   -8.77   -8.73   -8.17   -7.09   -5.38   -2.95    0.33    4.48    9.36   14.52
+   260.0    0.00   -0.23   -0.93   -2.01   -3.37   -4.86   -6.29   -7.53   -8.41   -8.86   -8.81   -8.22   -7.10   -5.35   -2.91    0.38    4.50    9.34   14.47
+   265.0    0.00   -0.23   -0.92   -2.01   -3.38   -4.88   -6.34   -7.59   -8.51   -8.94   -8.88   -8.26   -7.09   -5.32   -2.87    0.36    4.45    9.23   14.33
+   270.0    0.00   -0.23   -0.93   -2.01   -3.39   -4.90   -6.39   -7.66   -8.59   -9.02   -8.93   -8.28   -7.09   -5.32   -2.88    0.31    4.33    9.07   14.14
+   275.0    0.00   -0.23   -0.93   -2.02   -3.41   -4.94   -6.43   -7.72   -8.65   -9.09   -8.97   -8.31   -7.09   -5.32   -2.92    0.23    4.18    8.87   13.94
+   280.0    0.00   -0.24   -0.94   -2.03   -3.42   -4.96   -6.47   -7.78   -8.70   -9.13   -9.00   -8.32   -7.09   -5.33   -2.96    0.13    4.03    8.67   13.76
+   285.0    0.00   -0.24   -0.93   -2.04   -3.44   -4.98   -6.50   -7.81   -8.72   -9.15   -9.01   -8.32   -7.09   -5.34   -3.01    0.03    3.87    8.49   13.59
+   290.0    0.00   -0.24   -0.95   -2.05   -3.46   -5.01   -6.52   -7.81   -8.72   -9.12   -8.98   -8.30   -7.09   -5.36   -3.06   -0.06    3.75    8.36   13.48
+   295.0    0.00   -0.24   -0.95   -2.06   -3.47   -5.02   -6.52   -7.80   -8.70   -9.09   -8.95   -8.27   -7.08   -5.39   -3.11   -0.13    3.67    8.30   13.44
+   300.0    0.00   -0.24   -0.95   -2.08   -3.48   -5.02   -6.52   -7.78   -8.65   -9.03   -8.88   -8.22   -7.06   -5.40   -3.13   -0.16    3.66    8.31   13.46
+   305.0    0.00   -0.24   -0.96   -2.08   -3.50   -5.04   -6.52   -7.75   -8.60   -8.95   -8.81   -8.16   -7.03   -5.39   -3.14   -0.15    3.71    8.39   13.55
+   310.0    0.00   -0.24   -0.97   -2.10   -3.51   -5.05   -6.49   -7.70   -8.53   -8.88   -8.73   -8.11   -7.00   -5.37   -3.12   -0.11    3.80    8.52   13.68
+   315.0    0.00   -0.24   -0.97   -2.11   -3.53   -5.04   -6.47   -7.66   -8.46   -8.80   -8.65   -8.03   -6.95   -5.34   -3.07   -0.02    3.93    8.69   13.84
+   320.0    0.00   -0.24   -0.98   -2.12   -3.54   -5.05   -6.46   -7.62   -8.40   -8.72   -8.58   -7.97   -6.88   -5.28   -3.01    0.08    4.08    8.87   14.02
+   325.0    0.00   -0.24   -0.98   -2.12   -3.55   -5.05   -6.45   -7.60   -8.35   -8.66   -8.51   -7.90   -6.82   -5.21   -2.92    0.20    4.23    9.04   14.18
+   330.0    0.00   -0.25   -0.99   -2.13   -3.55   -5.05   -6.44   -7.57   -8.32   -8.60   -8.45   -7.83   -6.74   -5.12   -2.83    0.32    4.35    9.17   14.30
+   335.0    0.00   -0.25   -0.99   -2.14   -3.55   -5.05   -6.43   -7.55   -8.28   -8.57   -8.40   -7.76   -6.66   -5.02   -2.72    0.41    4.44    9.27   14.42
+   340.0    0.00   -0.25   -0.99   -2.14   -3.55   -5.04   -6.43   -7.54   -8.26   -8.54   -8.36   -7.70   -6.58   -4.93   -2.63    0.48    4.50    9.31   14.47
+   345.0    0.00   -0.25   -0.99   -2.13   -3.54   -5.04   -6.42   -7.53   -8.25   -8.54   -8.34   -7.67   -6.52   -4.85   -2.55    0.55    4.51    9.31   14.50
+   350.0    0.00   -0.25   -0.98   -2.13   -3.54   -5.02   -6.41   -7.53   -8.26   -8.54   -8.32   -7.64   -6.47   -4.78   -2.49    0.57    4.49    9.26   14.52
+   355.0    0.00   -0.24   -0.99   -2.12   -3.51   -5.00   -6.38   -7.52   -8.27   -8.55   -8.35   -7.64   -6.44   -4.73   -2.45    0.57    4.45    9.18   14.52
+   360.0    0.00   -0.25   -0.98   -2.11   -3.50   -4.98   -6.36   -7.51   -8.27   -8.58   -8.38   -7.66   -6.44   -4.71   -2.43    0.56    4.38    9.10   14.50
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+     -0.01      0.00    120.40                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.16   -0.63   -1.30   -2.10   -2.98   -3.86   -4.73   -5.52   -6.11   -6.35   -6.14   -5.45   -4.36   -2.95   -1.27    0.81    3.60    7.41
+     0.0    0.00   -0.16   -0.62   -1.31   -2.12   -2.99   -3.88   -4.76   -5.58   -6.19   -6.48   -6.31   -5.67   -4.62   -3.25   -1.58    0.51    3.32    7.09
+     5.0    0.00   -0.16   -0.63   -1.30   -2.11   -2.97   -3.87   -4.74   -5.57   -6.19   -6.49   -6.35   -5.72   -4.68   -3.33   -1.67    0.44    3.26    7.02
+    10.0    0.00   -0.17   -0.63   -1.30   -2.10   -2.95   -3.84   -4.72   -5.55   -6.18   -6.49   -6.37   -5.77   -4.74   -3.39   -1.71    0.40    3.24    7.00
+    15.0    0.00   -0.17   -0.64   -1.30   -2.09   -2.94   -3.81   -4.68   -5.50   -6.15   -6.49   -6.38   -5.79   -4.77   -3.41   -1.71    0.42    3.27    7.04
+    20.0    0.00   -0.17   -0.64   -1.30   -2.08   -2.91   -3.78   -4.65   -5.47   -6.13   -6.46   -6.37   -5.79   -4.77   -3.38   -1.68    0.48    3.35    7.15
+    25.0    0.00   -0.18   -0.64   -1.29   -2.06   -2.88   -3.73   -4.60   -5.42   -6.08   -6.43   -6.34   -5.76   -4.72   -3.33   -1.61    0.58    3.47    7.30
+    30.0    0.00   -0.18   -0.64   -1.29   -2.05   -2.86   -3.70   -4.56   -5.38   -6.04   -6.39   -6.29   -5.69   -4.64   -3.25   -1.51    0.68    3.59    7.48
+    35.0    0.00   -0.18   -0.64   -1.29   -2.03   -2.84   -3.68   -4.52   -5.34   -5.99   -6.33   -6.21   -5.60   -4.53   -3.12   -1.38    0.79    3.72    7.65
+    40.0    0.00   -0.18   -0.65   -1.29   -2.04   -2.83   -3.66   -4.51   -5.31   -5.95   -6.27   -6.13   -5.49   -4.40   -2.98   -1.25    0.91    3.82    7.81
+    45.0    0.00   -0.19   -0.65   -1.30   -2.04   -2.82   -3.64   -4.48   -5.29   -5.91   -6.21   -6.03   -5.36   -4.25   -2.82   -1.11    1.02    3.91    7.95
+    50.0    0.00   -0.19   -0.65   -1.30   -2.04   -2.83   -3.65   -4.49   -5.28   -5.88   -6.15   -5.94   -5.23   -4.10   -2.68   -1.00    1.09    3.95    8.04
+    55.0    0.00   -0.19   -0.66   -1.31   -2.04   -2.84   -3.67   -4.50   -5.27   -5.86   -6.09   -5.85   -5.11   -3.97   -2.56   -0.91    1.14    3.97    8.09
+    60.0    0.00   -0.19   -0.66   -1.31   -2.06   -2.87   -3.70   -4.53   -5.30   -5.85   -6.05   -5.78   -5.01   -3.85   -2.45   -0.85    1.15    3.96    8.09
+    65.0    0.00   -0.19   -0.66   -1.32   -2.08   -2.89   -3.73   -4.56   -5.32   -5.85   -6.03   -5.72   -4.93   -3.78   -2.40   -0.82    1.13    3.92    8.05
+    70.0    0.00   -0.20   -0.66   -1.33   -2.11   -2.92   -3.77   -4.61   -5.35   -5.87   -6.01   -5.69   -4.89   -3.74   -2.38   -0.84    1.09    3.84    7.99
+    75.0    0.00   -0.20   -0.68   -1.34   -2.12   -2.95   -3.81   -4.65   -5.38   -5.89   -6.02   -5.69   -4.89   -3.74   -2.40   -0.88    1.01    3.75    7.88
+    80.0    0.00   -0.20   -0.68   -1.35   -2.15   -2.99   -3.85   -4.70   -5.42   -5.93   -6.06   -5.72   -4.93   -3.80   -2.47   -0.97    0.92    3.64    7.75
+    85.0    0.00   -0.20   -0.69   -1.37   -2.16   -3.03   -3.89   -4.73   -5.48   -5.97   -6.10   -5.76   -4.99   -3.88   -2.57   -1.07    0.81    3.53    7.61
+    90.0    0.00   -0.20   -0.69   -1.38   -2.19   -3.05   -3.93   -4.78   -5.51   -6.02   -6.16   -5.83   -5.08   -3.98   -2.67   -1.18    0.71    3.43    7.47
+    95.0    0.00   -0.20   -0.69   -1.39   -2.20   -3.08   -3.96   -4.83   -5.56   -6.08   -6.22   -5.92   -5.18   -4.09   -2.80   -1.29    0.60    3.31    7.33
+   100.0    0.00   -0.20   -0.71   -1.39   -2.22   -3.09   -3.99   -4.85   -5.61   -6.12   -6.29   -6.00   -5.28   -4.20   -2.91   -1.40    0.51    3.21    7.20
+   105.0    0.00   -0.20   -0.71   -1.40   -2.22   -3.11   -4.01   -4.88   -5.64   -6.18   -6.35   -6.09   -5.37   -4.30   -2.99   -1.48    0.43    3.13    7.09
+   110.0    0.00   -0.20   -0.71   -1.40   -2.23   -3.13   -4.02   -4.89   -5.67   -6.22   -6.41   -6.14   -5.44   -4.37   -3.06   -1.54    0.37    3.06    6.99
+   115.0    0.00   -0.20   -0.71   -1.41   -2.24   -3.13   -4.03   -4.91   -5.69   -6.25   -6.45   -6.20   -5.48   -4.40   -3.08   -1.56    0.34    3.02    6.92
+   120.0    0.00   -0.20   -0.71   -1.40   -2.24   -3.13   -4.03   -4.91   -5.70   -6.27   -6.48   -6.23   -5.49   -4.41   -3.08   -1.55    0.34    3.00    6.87
+   125.0    0.00   -0.20   -0.70   -1.40   -2.23   -3.11   -4.02   -4.90   -5.71   -6.29   -6.50   -6.24   -5.50   -4.39   -3.05   -1.52    0.36    3.01    6.84
+   130.0    0.00   -0.20   -0.70   -1.39   -2.23   -3.10   -4.00   -4.90   -5.70   -6.28   -6.49   -6.23   -5.47   -4.35   -2.99   -1.47    0.42    3.04    6.85
+   135.0    0.00   -0.19   -0.70   -1.40   -2.22   -3.09   -3.99   -4.88   -5.68   -6.27   -6.48   -6.21   -5.44   -4.31   -2.94   -1.40    0.48    3.09    6.86
+   140.0    0.00   -0.19   -0.69   -1.40   -2.21   -3.08   -3.97   -4.86   -5.66   -6.25   -6.46   -6.18   -5.42   -4.27   -2.89   -1.34    0.54    3.15    6.88
+   145.0    0.00   -0.19   -0.69   -1.39   -2.20   -3.07   -3.95   -4.83   -5.63   -6.23   -6.44   -6.17   -5.40   -4.24   -2.86   -1.29    0.60    3.20    6.89
+   150.0    0.00   -0.19   -0.68   -1.38   -2.19   -3.05   -3.94   -4.82   -5.62   -6.20   -6.42   -6.17   -5.41   -4.24   -2.85   -1.27    0.64    3.25    6.90
+   155.0    0.00   -0.19   -0.68   -1.37   -2.18   -3.05   -3.93   -4.80   -5.60   -6.19   -6.41   -6.17   -5.42   -4.27   -2.88   -1.28    0.66    3.27    6.88
+   160.0    0.00   -0.19   -0.68   -1.37   -2.18   -3.04   -3.92   -4.79   -5.58   -6.17   -6.42   -6.18   -5.46   -4.33   -2.93   -1.33    0.65    3.27    6.85
+   165.0    0.00   -0.18   -0.67   -1.36   -2.18   -3.03   -3.92   -4.78   -5.58   -6.18   -6.43   -6.21   -5.51   -4.41   -3.01   -1.40    0.59    3.24    6.79
+   170.0    0.00   -0.18   -0.66   -1.36   -2.18   -3.04   -3.92   -4.80   -5.59   -6.19   -6.45   -6.25   -5.58   -4.49   -3.12   -1.48    0.51    3.18    6.71
+   175.0    0.00   -0.17   -0.66   -1.35   -2.17   -3.04   -3.93   -4.81   -5.60   -6.20   -6.47   -6.30   -5.64   -4.58   -3.21   -1.59    0.44    3.09    6.60
+   180.0    0.00   -0.17   -0.64   -1.35   -2.17   -3.05   -3.94   -4.82   -5.61   -6.23   -6.50   -6.33   -5.71   -4.65   -3.31   -1.68    0.34    3.00    6.50
+   185.0    0.00   -0.17   -0.64   -1.34   -2.16   -3.05   -3.95   -4.83   -5.64   -6.24   -6.52   -6.37   -5.74   -4.72   -3.36   -1.75    0.26    2.93    6.42
+   190.0    0.00   -0.16   -0.63   -1.33   -2.16   -3.05   -3.96   -4.85   -5.65   -6.26   -6.54   -6.38   -5.76   -4.74   -3.41   -1.79    0.23    2.89    6.37
+   195.0    0.00   -0.16   -0.63   -1.32   -2.14   -3.04   -3.95   -4.86   -5.65   -6.26   -6.54   -6.39   -5.76   -4.73   -3.39   -1.77    0.24    2.89    6.38
+   200.0    0.00   -0.16   -0.61   -1.30   -2.14   -3.03   -3.95   -4.85   -5.65   -6.26   -6.53   -6.36   -5.73   -4.68   -3.33   -1.71    0.30    2.95    6.44
+   205.0    0.00   -0.15   -0.60   -1.30   -2.13   -3.02   -3.93   -4.83   -5.63   -6.23   -6.50   -6.32   -5.66   -4.61   -3.24   -1.60    0.42    3.06    6.57
+   210.0    0.00   -0.14   -0.60   -1.28   -2.10   -3.01   -3.91   -4.80   -5.60   -6.20   -6.45   -6.27   -5.60   -4.52   -3.12   -1.44    0.60    3.26    6.75
+   215.0    0.00   -0.14   -0.59   -1.27   -2.10   -2.98   -3.89   -4.77   -5.57   -6.15   -6.40   -6.20   -5.52   -4.40   -2.97   -1.27    0.81    3.48    6.99
+   220.0    0.00   -0.13   -0.58   -1.25   -2.07   -2.96   -3.86   -4.74   -5.52   -6.09   -6.34   -6.13   -5.43   -4.30   -2.82   -1.07    1.05    3.75    7.26
+   225.0    0.00   -0.13   -0.57   -1.25   -2.06   -2.94   -3.83   -4.69   -5.46   -6.04   -6.27   -6.06   -5.36   -4.20   -2.69   -0.90    1.27    4.02    7.55
+   230.0    0.00   -0.13   -0.56   -1.24   -2.05   -2.92   -3.81   -4.67   -5.43   -5.99   -6.23   -6.00   -5.30   -4.12   -2.58   -0.74    1.47    4.26    7.81
+   235.0    0.00   -0.13   -0.56   -1.23   -2.04   -2.92   -3.80   -4.65   -5.40   -5.96   -6.20   -5.97   -5.25   -4.08   -2.53   -0.64    1.62    4.46    8.04
+   240.0    0.00   -0.13   -0.56   -1.22   -2.03   -2.91   -3.79   -4.64   -5.39   -5.94   -6.17   -5.95   -5.24   -4.06   -2.50   -0.59    1.71    4.59    8.21
+   245.0    0.00   -0.13   -0.55   -1.22   -2.04   -2.91   -3.80   -4.65   -5.39   -5.95   -6.18   -5.96   -5.25   -4.08   -2.53   -0.61    1.72    4.64    8.29
+   250.0    0.00   -0.13   -0.55   -1.22   -2.04   -2.92   -3.82   -4.68   -5.42   -5.98   -6.19   -5.98   -5.28   -4.13   -2.58   -0.68    1.67    4.62    8.31
+   255.0    0.00   -0.12   -0.54   -1.22   -2.05   -2.94   -3.85   -4.71   -5.46   -6.01   -6.23   -6.01   -5.32   -4.20   -2.69   -0.80    1.55    4.51    8.25
+   260.0    0.00   -0.12   -0.54   -1.22   -2.06   -2.97   -3.89   -4.76   -5.52   -6.07   -6.28   -6.06   -5.39   -4.29   -2.80   -0.95    1.37    4.35    8.14
+   265.0    0.00   -0.12   -0.54   -1.22   -2.06   -2.99   -3.92   -4.81   -5.57   -6.12   -6.33   -6.12   -5.45   -4.36   -2.92   -1.10    1.18    4.16    7.99
+   270.0    0.00   -0.12   -0.55   -1.23   -2.08   -3.01   -3.96   -4.85   -5.63   -6.17   -6.39   -6.17   -5.50   -4.45   -3.03   -1.26    1.00    3.98    7.85
+   275.0    0.00   -0.12   -0.55   -1.24   -2.09   -3.03   -3.98   -4.89   -5.67   -6.23   -6.43   -6.22   -5.56   -4.51   -3.13   -1.39    0.84    3.81    7.72
+   280.0    0.00   -0.12   -0.55   -1.24   -2.10   -3.03   -3.99   -4.91   -5.71   -6.26   -6.47   -6.26   -5.59   -4.55   -3.18   -1.47    0.73    3.69    7.64
+   285.0    0.00   -0.12   -0.55   -1.24   -2.10   -3.04   -4.01   -4.92   -5.72   -6.28   -6.49   -6.27   -5.62   -4.58   -3.22   -1.51    0.66    3.63    7.60
+   290.0    0.00   -0.12   -0.56   -1.25   -2.10   -3.03   -4.00   -4.92   -5.71   -6.28   -6.50   -6.29   -5.62   -4.57   -3.21   -1.51    0.68    3.63    7.63
+   295.0    0.00   -0.13   -0.56   -1.25   -2.10   -3.03   -3.98   -4.89   -5.69   -6.26   -6.50   -6.28   -5.61   -4.55   -3.16   -1.46    0.73    3.70    7.71
+   300.0    0.00   -0.13   -0.57   -1.26   -2.09   -3.01   -3.95   -4.85   -5.65   -6.24   -6.48   -6.27   -5.59   -4.51   -3.10   -1.38    0.83    3.80    7.83
+   305.0    0.00   -0.13   -0.57   -1.25   -2.09   -3.00   -3.92   -4.81   -5.62   -6.20   -6.44   -6.25   -5.56   -4.46   -3.03   -1.26    0.96    3.93    7.97
+   310.0    0.00   -0.13   -0.57   -1.26   -2.08   -2.98   -3.90   -4.78   -5.57   -6.17   -6.42   -6.22   -5.53   -4.41   -2.94   -1.15    1.08    4.07    8.10
+   315.0    0.00   -0.13   -0.58   -1.27   -2.09   -2.97   -3.86   -4.75   -5.53   -6.13   -6.39   -6.19   -5.50   -4.35   -2.86   -1.06    1.19    4.18    8.20
+   320.0    0.00   -0.13   -0.59   -1.27   -2.09   -2.97   -3.86   -4.71   -5.51   -6.11   -6.37   -6.17   -5.46   -4.32   -2.80   -0.99    1.26    4.24    8.26
+   325.0    0.00   -0.14   -0.59   -1.27   -2.09   -2.96   -3.84   -4.71   -5.49   -6.09   -6.35   -6.16   -5.45   -4.28   -2.77   -0.96    1.28    4.24    8.24
+   330.0    0.00   -0.14   -0.60   -1.29   -2.10   -2.96   -3.85   -4.71   -5.49   -6.09   -6.36   -6.15   -5.44   -4.28   -2.77   -0.98    1.25    4.19    8.16
+   335.0    0.00   -0.15   -0.60   -1.28   -2.10   -2.97   -3.84   -4.71   -5.50   -6.10   -6.37   -6.16   -5.44   -4.29   -2.80   -1.03    1.17    4.09    8.02
+   340.0    0.00   -0.15   -0.61   -1.30   -2.10   -2.97   -3.86   -4.73   -5.51   -6.12   -6.38   -6.17   -5.46   -4.33   -2.87   -1.11    1.05    3.93    7.84
+   345.0    0.00   -0.15   -0.61   -1.30   -2.11   -2.98   -3.87   -4.75   -5.54   -6.14   -6.40   -6.20   -5.50   -4.38   -2.95   -1.23    0.91    3.78    7.63
+   350.0    0.00   -0.15   -0.62   -1.30   -2.11   -2.98   -3.87   -4.76   -5.55   -6.17   -6.43   -6.24   -5.56   -4.46   -3.04   -1.35    0.76    3.59    7.42
+   355.0    0.00   -0.15   -0.62   -1.30   -2.12   -2.99   -3.88   -4.77   -5.57   -6.18   -6.45   -6.27   -5.61   -4.53   -3.15   -1.48    0.62    3.44    7.23
+   360.0    0.00   -0.16   -0.62   -1.31   -2.12   -2.99   -3.88   -4.76   -5.58   -6.19   -6.48   -6.31   -5.67   -4.62   -3.25   -1.58    0.51    3.32    7.09
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TRM29659.00     OLGA                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               1    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+Number of Calibrated Antennas GPS:      001                 COMMENT             
+Number of Individual Calibrations GPS:  002                 COMMENT             
+   G01                                                      START OF FREQUENCY  
+     -0.73     -0.96     83.24                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.26   -1.02   -2.16   -3.54   -5.01   -6.41   -7.56   -8.33   -8.59   -8.25   -7.32   -5.84   -3.88   -1.46    1.56    5.45   10.51   16.76
+     0.0    0.00   -0.30   -1.11   -2.31   -3.73   -5.20   -6.55   -7.63   -8.31   -8.50   -8.12   -7.13   -5.56   -3.49   -1.00    1.90    5.39    9.96   16.37
+     5.0    0.00   -0.30   -1.10   -2.27   -3.68   -5.14   -6.48   -7.55   -8.20   -8.34   -7.89   -6.84   -5.25   -3.20   -0.79    2.00    5.36    9.74   15.84
+    10.0    0.00   -0.30   -1.08   -2.24   -3.63   -5.08   -6.42   -7.48   -8.11   -8.20   -7.68   -6.58   -4.96   -2.93   -0.58    2.13    5.41    9.69   15.56
+    15.0    0.00   -0.30   -1.07   -2.21   -3.58   -5.03   -6.37   -7.43   -8.04   -8.09   -7.52   -6.37   -4.73   -2.72   -0.42    2.26    5.53    9.79   15.56
+    20.0    0.00   -0.29   -1.05   -2.17   -3.53   -4.98   -6.32   -7.39   -8.01   -8.04   -7.43   -6.25   -4.60   -2.61   -0.33    2.35    5.69   10.06   15.85
+    25.0    0.00   -0.29   -1.04   -2.14   -3.49   -4.93   -6.28   -7.37   -8.00   -8.03   -7.43   -6.24   -4.61   -2.64   -0.36    2.38    5.87   10.45   16.37
+    30.0    0.00   -0.29   -1.02   -2.11   -3.45   -4.88   -6.25   -7.36   -8.01   -8.08   -7.50   -6.35   -4.74   -2.80   -0.50    2.34    6.04   10.90   17.03
+    35.0    0.00   -0.29   -1.01   -2.09   -3.41   -4.84   -6.22   -7.36   -8.05   -8.16   -7.64   -6.54   -4.99   -3.08   -0.75    2.23    6.17   11.36   17.73
+    40.0    0.00   -0.28   -1.00   -2.06   -3.37   -4.80   -6.19   -7.36   -8.10   -8.27   -7.83   -6.81   -5.32   -3.44   -1.06    2.05    6.26   11.76   18.35
+    45.0    0.00   -0.28   -0.99   -2.05   -3.34   -4.77   -6.17   -7.36   -8.15   -8.39   -8.03   -7.10   -5.68   -3.83   -1.41    1.84    6.28   12.05   18.80
+    50.0    0.00   -0.28   -0.99   -2.03   -3.32   -4.74   -6.14   -7.36   -8.19   -8.50   -8.21   -7.36   -6.02   -4.18   -1.74    1.63    6.24   12.19   19.00
+    55.0    0.00   -0.28   -0.98   -2.02   -3.30   -4.72   -6.12   -7.35   -8.22   -8.58   -8.36   -7.57   -6.27   -4.46   -1.99    1.44    6.15   12.17   18.92
+    60.0    0.00   -0.28   -0.98   -2.02   -3.29   -4.70   -6.10   -7.33   -8.22   -8.62   -8.43   -7.68   -6.41   -4.61   -2.13    1.31    6.01   11.98   18.57
+    65.0    0.00   -0.28   -0.98   -2.02   -3.29   -4.69   -6.08   -7.31   -8.21   -8.61   -8.44   -7.69   -6.41   -4.61   -2.15    1.24    5.84   11.67   18.00
+    70.0    0.00   -0.28   -0.99   -2.02   -3.29   -4.68   -6.07   -7.29   -8.17   -8.56   -8.37   -7.59   -6.29   -4.48   -2.06    1.23    5.67   11.26   17.29
+    75.0    0.00   -0.28   -0.99   -2.03   -3.30   -4.69   -6.06   -7.27   -8.13   -8.49   -8.25   -7.42   -6.06   -4.24   -1.88    1.27    5.48   10.80   16.53
+    80.0    0.00   -0.28   -1.00   -2.04   -3.31   -4.70   -6.06   -7.25   -8.08   -8.40   -8.10   -7.20   -5.78   -3.95   -1.65    1.33    5.30   10.33   15.80
+    85.0    0.00   -0.28   -1.00   -2.06   -3.33   -4.71   -6.06   -7.23   -8.04   -8.31   -7.95   -6.98   -5.50   -3.66   -1.43    1.39    5.12    9.91   15.18
+    90.0    0.00   -0.28   -1.01   -2.07   -3.35   -4.73   -6.07   -7.23   -8.02   -8.26   -7.84   -6.81   -5.29   -3.43   -1.26    1.42    4.95    9.55   14.71
+    95.0    0.00   -0.28   -1.02   -2.09   -3.38   -4.75   -6.09   -7.25   -8.02   -8.24   -7.80   -6.73   -5.17   -3.31   -1.19    1.39    4.79    9.26   14.40
+   100.0    0.00   -0.28   -1.03   -2.11   -3.40   -4.78   -6.12   -7.28   -8.06   -8.28   -7.84   -6.76   -5.19   -3.32   -1.23    1.29    4.62    9.06   14.24
+   105.0    0.00   -0.29   -1.04   -2.13   -3.42   -4.81   -6.16   -7.32   -8.13   -8.38   -7.97   -6.90   -5.34   -3.48   -1.38    1.14    4.47    8.93   14.18
+   110.0    0.00   -0.29   -1.04   -2.14   -3.45   -4.84   -6.20   -7.38   -8.22   -8.52   -8.17   -7.15   -5.61   -3.74   -1.61    0.95    4.34    8.86   14.17
+   115.0    0.00   -0.29   -1.05   -2.16   -3.47   -4.87   -6.24   -7.45   -8.34   -8.70   -8.42   -7.46   -5.96   -4.08   -1.89    0.76    4.24    8.82   14.17
+   120.0    0.00   -0.28   -1.05   -2.17   -3.49   -4.90   -6.29   -7.53   -8.46   -8.90   -8.69   -7.80   -6.32   -4.42   -2.16    0.60    4.17    8.81   14.14
+   125.0    0.00   -0.28   -1.06   -2.18   -3.51   -4.93   -6.33   -7.60   -8.58   -9.07   -8.93   -8.10   -6.65   -4.72   -2.37    0.50    4.16    8.81   14.06
+   130.0    0.00   -0.28   -1.06   -2.19   -3.53   -4.95   -6.37   -7.67   -8.68   -9.22   -9.12   -8.33   -6.88   -4.91   -2.48    0.48    4.21    8.84   13.96
+   135.0    0.00   -0.28   -1.05   -2.19   -3.54   -4.98   -6.40   -7.71   -8.74   -9.30   -9.23   -8.44   -6.99   -4.97   -2.47    0.57    4.32    8.88   13.85
+   140.0    0.00   -0.28   -1.05   -2.19   -3.54   -4.99   -6.42   -7.73   -8.75   -9.31   -9.23   -8.43   -6.94   -4.88   -2.33    0.74    4.48    8.95   13.79
+   145.0    0.00   -0.27   -1.05   -2.19   -3.54   -4.99   -6.43   -7.72   -8.72   -9.24   -9.12   -8.29   -6.76   -4.66   -2.08    0.99    4.68    9.06   13.83
+   150.0    0.00   -0.27   -1.04   -2.18   -3.54   -4.99   -6.41   -7.68   -8.64   -9.10   -8.93   -8.04   -6.48   -4.36   -1.78    1.26    4.90    9.22   14.01
+   155.0    0.00   -0.26   -1.03   -2.17   -3.53   -4.98   -6.38   -7.61   -8.51   -8.91   -8.66   -7.72   -6.13   -4.02   -1.47    1.52    5.10    9.41   14.36
+   160.0    0.00   -0.26   -1.02   -2.15   -3.51   -4.95   -6.34   -7.52   -8.35   -8.67   -8.36   -7.38   -5.78   -3.70   -1.21    1.73    5.28    9.64   14.86
+   165.0    0.00   -0.25   -1.01   -2.14   -3.49   -4.92   -6.28   -7.41   -8.18   -8.43   -8.06   -7.06   -5.49   -3.46   -1.03    1.85    5.40    9.89   15.48
+   170.0    0.00   -0.25   -0.99   -2.12   -3.47   -4.88   -6.21   -7.30   -8.00   -8.20   -7.80   -6.81   -5.29   -3.34   -0.98    1.87    5.46   10.13   16.18
+   175.0    0.00   -0.24   -0.98   -2.10   -3.44   -4.84   -6.14   -7.19   -7.84   -8.00   -7.61   -6.66   -5.22   -3.34   -1.04    1.80    5.46   10.35   16.88
+   180.0    0.00   -0.24   -0.97   -2.08   -3.42   -4.81   -6.08   -7.09   -7.71   -7.86   -7.50   -6.62   -5.26   -3.47   -1.22    1.65    5.41   10.53   17.50
+   185.0    0.00   -0.23   -0.95   -2.06   -3.39   -4.77   -6.03   -7.02   -7.63   -7.79   -7.47   -6.67   -5.41   -3.69   -1.45    1.46    5.34   10.66   17.98
+   190.0    0.00   -0.23   -0.94   -2.05   -3.38   -4.75   -6.00   -6.98   -7.59   -7.78   -7.53   -6.81   -5.62   -3.94   -1.69    1.28    5.27   10.73   18.27
+   195.0    0.00   -0.22   -0.93   -2.03   -3.37   -4.75   -6.00   -6.98   -7.61   -7.84   -7.63   -6.98   -5.84   -4.17   -1.88    1.17    5.24   10.75   18.35
+   200.0    0.00   -0.22   -0.92   -2.02   -3.36   -4.75   -6.02   -7.02   -7.67   -7.93   -7.77   -7.16   -6.03   -4.32   -1.97    1.16    5.27   10.75   18.26
+   205.0    0.00   -0.21   -0.91   -2.02   -3.37   -4.78   -6.07   -7.09   -7.78   -8.06   -7.92   -7.30   -6.13   -4.36   -1.92    1.27    5.37   10.75   18.02
+   210.0    0.00   -0.21   -0.91   -2.02   -3.38   -4.82   -6.14   -7.20   -7.90   -8.20   -8.04   -7.37   -6.13   -4.27   -1.74    1.50    5.56   10.78   17.72
+   215.0    0.00   -0.21   -0.91   -2.02   -3.41   -4.87   -6.23   -7.32   -8.05   -8.33   -8.12   -7.37   -6.02   -4.04   -1.43    1.83    5.83   10.84   17.41
+   220.0    0.00   -0.21   -0.90   -2.03   -3.43   -4.93   -6.33   -7.46   -8.19   -8.44   -8.16   -7.29   -5.82   -3.72   -1.04    2.22    6.14   10.96   17.18
+   225.0    0.00   -0.20   -0.91   -2.04   -3.47   -5.00   -6.43   -7.59   -8.31   -8.52   -8.15   -7.16   -5.55   -3.36   -0.62    2.62    6.45   11.13   17.06
+   230.0    0.00   -0.21   -0.91   -2.05   -3.50   -5.06   -6.53   -7.70   -8.42   -8.57   -8.10   -6.99   -5.27   -3.01   -0.26    2.95    6.73   11.34   17.08
+   235.0    0.00   -0.21   -0.91   -2.07   -3.53   -5.12   -6.61   -7.79   -8.49   -8.60   -8.04   -6.83   -5.03   -2.73   -0.01    3.17    6.93   11.55   17.24
+   240.0    0.00   -0.21   -0.92   -2.08   -3.56   -5.17   -6.67   -7.86   -8.54   -8.59   -7.97   -6.70   -4.87   -2.59    0.09    3.23    7.02   11.73   17.48
+   245.0    0.00   -0.21   -0.93   -2.10   -3.59   -5.20   -6.71   -7.89   -8.55   -8.57   -7.92   -6.63   -4.82   -2.60    0.00    3.11    6.97   11.85   17.75
+   250.0    0.00   -0.21   -0.94   -2.12   -3.61   -5.22   -6.73   -7.89   -8.54   -8.55   -7.89   -6.63   -4.89   -2.77   -0.26    2.82    6.78   11.88   17.97
+   255.0    0.00   -0.22   -0.95   -2.13   -3.63   -5.23   -6.72   -7.87   -8.51   -8.52   -7.90   -6.71   -5.08   -3.08   -0.67    2.39    6.46   11.79   18.10
+   260.0    0.00   -0.22   -0.96   -2.15   -3.64   -5.23   -6.70   -7.84   -8.47   -8.51   -7.95   -6.86   -5.36   -3.49   -1.18    1.87    6.06   11.60   18.07
+   265.0    0.00   -0.23   -0.98   -2.17   -3.65   -5.23   -6.67   -7.79   -8.43   -8.51   -8.03   -7.05   -5.68   -3.94   -1.70    1.34    5.61   11.30   17.88
+   270.0    0.00   -0.24   -0.99   -2.19   -3.66   -5.22   -6.64   -7.75   -8.40   -8.53   -8.13   -7.26   -6.00   -4.36   -2.18    0.86    5.18   10.95   17.55
+   275.0    0.00   -0.24   -1.01   -2.21   -3.68   -5.21   -6.62   -7.71   -8.39   -8.57   -8.24   -7.46   -6.28   -4.70   -2.55    0.48    4.81   10.57   17.13
+   280.0    0.00   -0.25   -1.02   -2.23   -3.69   -5.21   -6.60   -7.70   -8.39   -8.62   -8.36   -7.63   -6.49   -4.92   -2.77    0.26    4.55   10.24   16.69
+   285.0    0.00   -0.26   -1.04   -2.25   -3.71   -5.23   -6.60   -7.70   -8.42   -8.68   -8.46   -7.76   -6.60   -5.00   -2.82    0.21    4.43    9.99   16.32
+   290.0    0.00   -0.26   -1.06   -2.28   -3.74   -5.25   -6.62   -7.73   -8.47   -8.76   -8.55   -7.83   -6.63   -4.94   -2.70    0.32    4.45    9.87   16.10
+   295.0    0.00   -0.27   -1.08   -2.30   -3.77   -5.27   -6.65   -7.77   -8.53   -8.84   -8.63   -7.87   -6.57   -4.78   -2.45    0.58    4.62    9.89   16.08
+   300.0    0.00   -0.28   -1.09   -2.33   -3.80   -5.31   -6.70   -7.83   -8.61   -8.92   -8.70   -7.87   -6.47   -4.55   -2.13    0.92    4.88   10.05   16.29
+   305.0    0.00   -0.28   -1.11   -2.35   -3.83   -5.35   -6.74   -7.89   -8.69   -9.01   -8.76   -7.87   -6.36   -4.31   -1.78    1.30    5.21   10.33   16.72
+   310.0    0.00   -0.29   -1.12   -2.37   -3.86   -5.38   -6.79   -7.96   -8.76   -9.09   -8.82   -7.87   -6.26   -4.10   -1.47    1.65    5.56   10.68   17.30
+   315.0    0.00   -0.29   -1.13   -2.39   -3.88   -5.42   -6.83   -8.01   -8.83   -9.16   -8.87   -7.88   -6.20   -3.94   -1.23    1.95    5.87   11.04   17.95
+   320.0    0.00   -0.30   -1.14   -2.40   -3.90   -5.44   -6.86   -8.05   -8.87   -9.21   -8.92   -7.91   -6.19   -3.87   -1.09    2.14    6.10   11.36   18.57
+   325.0    0.00   -0.30   -1.15   -2.41   -3.91   -5.45   -6.88   -8.06   -8.89   -9.24   -8.95   -7.95   -6.22   -3.87   -1.05    2.23    6.24   11.59   19.06
+   330.0    0.00   -0.30   -1.15   -2.41   -3.91   -5.45   -6.87   -8.05   -8.88   -9.23   -8.96   -7.98   -6.26   -3.92   -1.08    2.22    6.26   11.67   19.32
+   335.0    0.00   -0.30   -1.15   -2.41   -3.90   -5.43   -6.85   -8.02   -8.84   -9.19   -8.94   -7.98   -6.30   -3.99   -1.16    2.15    6.19   11.61   19.32
+   340.0    0.00   -0.31   -1.15   -2.40   -3.88   -5.40   -6.80   -7.96   -8.77   -9.11   -8.86   -7.94   -6.30   -4.03   -1.24    2.04    6.04   11.39   19.03
+   345.0    0.00   -0.31   -1.14   -2.38   -3.85   -5.36   -6.75   -7.89   -8.67   -8.99   -8.74   -7.83   -6.23   -4.01   -1.28    1.93    5.85   11.07   18.51
+   350.0    0.00   -0.31   -1.13   -2.36   -3.82   -5.31   -6.69   -7.81   -8.56   -8.85   -8.57   -7.65   -6.08   -3.92   -1.26    1.86    5.66   10.68   17.82
+   355.0    0.00   -0.31   -1.12   -2.33   -3.78   -5.26   -6.62   -7.72   -8.44   -8.68   -8.36   -7.41   -5.85   -3.74   -1.16    1.85    5.50   10.28   17.07
+   360.0    0.00   -0.30   -1.11   -2.31   -3.73   -5.20   -6.55   -7.63   -8.31   -8.50   -8.12   -7.13   -5.56   -3.49   -1.00    1.90    5.39    9.96   16.37
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.54     -0.27    114.63                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.18   -0.68   -1.37   -2.14   -2.92   -3.68   -4.45   -5.22   -5.84   -6.12   -5.82   -4.80   -3.08   -0.83    1.71    4.40    7.27   10.46
+     0.0    0.00   -0.19   -0.71   -1.45   -2.25   -3.00   -3.69   -4.36   -5.05   -5.70   -6.11   -5.93   -4.92   -3.00   -0.43    2.36    4.99    7.45   10.28
+     5.0    0.00   -0.19   -0.71   -1.45   -2.25   -3.01   -3.70   -4.38   -5.07   -5.72   -6.10   -5.89   -4.85   -2.91   -0.32    2.48    5.13    7.61   10.40
+    10.0    0.00   -0.20   -0.72   -1.45   -2.25   -3.01   -3.71   -4.40   -5.10   -5.74   -6.09   -5.85   -4.78   -2.84   -0.26    2.54    5.21    7.73   10.58
+    15.0    0.00   -0.20   -0.72   -1.45   -2.24   -3.00   -3.72   -4.42   -5.12   -5.75   -6.07   -5.81   -4.72   -2.79   -0.25    2.51    5.18    7.77   10.74
+    20.0    0.00   -0.20   -0.73   -1.45   -2.24   -3.00   -3.72   -4.43   -5.14   -5.76   -6.06   -5.76   -4.67   -2.78   -0.31    2.38    5.03    7.69   10.82
+    25.0    0.00   -0.21   -0.73   -1.45   -2.23   -2.99   -3.71   -4.44   -5.15   -5.76   -6.04   -5.72   -4.64   -2.80   -0.42    2.17    4.77    7.48   10.77
+    30.0    0.00   -0.21   -0.73   -1.45   -2.22   -2.98   -3.71   -4.44   -5.16   -5.75   -6.01   -5.68   -4.62   -2.85   -0.58    1.89    4.41    7.15   10.57
+    35.0    0.00   -0.22   -0.74   -1.44   -2.21   -2.97   -3.70   -4.44   -5.16   -5.74   -5.98   -5.65   -4.61   -2.91   -0.77    1.57    4.00    6.73   10.22
+    40.0    0.00   -0.22   -0.74   -1.44   -2.20   -2.96   -3.69   -4.43   -5.15   -5.73   -5.95   -5.62   -4.61   -2.99   -0.96    1.25    3.59    6.27    9.75
+    45.0    0.00   -0.22   -0.74   -1.44   -2.20   -2.95   -3.69   -4.43   -5.15   -5.71   -5.93   -5.59   -4.61   -3.06   -1.13    0.97    3.22    5.83    9.22
+    50.0    0.00   -0.23   -0.75   -1.45   -2.20   -2.95   -3.69   -4.43   -5.14   -5.70   -5.90   -5.57   -4.61   -3.10   -1.25    0.77    2.94    5.47    8.69
+    55.0    0.00   -0.23   -0.75   -1.45   -2.20   -2.95   -3.69   -4.44   -5.15   -5.69   -5.89   -5.55   -4.60   -3.13   -1.31    0.67    2.79    5.22    8.23
+    60.0    0.00   -0.23   -0.76   -1.45   -2.21   -2.96   -3.70   -4.45   -5.16   -5.70   -5.88   -5.54   -4.59   -3.11   -1.30    0.68    2.78    5.12    7.88
+    65.0    0.00   -0.23   -0.76   -1.46   -2.22   -2.97   -3.72   -4.47   -5.18   -5.72   -5.89   -5.53   -4.56   -3.07   -1.23    0.78    2.89    5.17    7.67
+    70.0    0.00   -0.23   -0.76   -1.47   -2.23   -2.99   -3.75   -4.51   -5.21   -5.74   -5.90   -5.52   -4.53   -3.01   -1.11    0.96    3.12    5.34    7.59
+    75.0    0.00   -0.24   -0.77   -1.47   -2.24   -3.01   -3.78   -4.54   -5.25   -5.78   -5.93   -5.52   -4.50   -2.93   -0.97    1.19    3.40    5.59    7.63
+    80.0    0.00   -0.24   -0.77   -1.48   -2.25   -3.02   -3.80   -4.58   -5.30   -5.82   -5.96   -5.53   -4.48   -2.85   -0.82    1.42    3.69    5.87    7.72
+    85.0    0.00   -0.24   -0.77   -1.48   -2.25   -3.04   -3.82   -4.61   -5.34   -5.86   -5.99   -5.55   -4.46   -2.79   -0.69    1.62    3.96    6.13    7.83
+    90.0    0.00   -0.24   -0.77   -1.48   -2.25   -3.04   -3.84   -4.64   -5.37   -5.90   -6.03   -5.57   -4.46   -2.75   -0.61    1.76    4.15    6.32    7.90
+    95.0    0.00   -0.24   -0.77   -1.47   -2.25   -3.04   -3.84   -4.65   -5.40   -5.93   -6.06   -5.60   -4.48   -2.74   -0.57    1.84    4.25    6.41    7.89
+   100.0    0.00   -0.23   -0.76   -1.47   -2.24   -3.02   -3.83   -4.65   -5.41   -5.96   -6.09   -5.64   -4.51   -2.77   -0.58    1.84    4.26    6.40    7.78
+   105.0    0.00   -0.23   -0.76   -1.46   -2.22   -3.00   -3.80   -4.63   -5.40   -5.97   -6.13   -5.68   -4.56   -2.82   -0.63    1.79    4.21    6.31    7.60
+   110.0    0.00   -0.23   -0.75   -1.44   -2.19   -2.97   -3.77   -4.59   -5.38   -5.97   -6.15   -5.73   -4.62   -2.89   -0.71    1.71    4.11    6.18    7.38
+   115.0    0.00   -0.23   -0.74   -1.42   -2.16   -2.92   -3.72   -4.55   -5.35   -5.97   -6.18   -5.78   -4.69   -2.97   -0.78    1.63    4.03    6.07    7.17
+   120.0    0.00   -0.22   -0.73   -1.40   -2.13   -2.88   -3.66   -4.50   -5.32   -5.96   -6.20   -5.82   -4.75   -3.03   -0.84    1.59    4.00    6.02    7.03
+   125.0    0.00   -0.22   -0.72   -1.38   -2.10   -2.83   -3.61   -4.45   -5.28   -5.95   -6.21   -5.86   -4.80   -3.08   -0.87    1.60    4.04    6.07    7.02
+   130.0    0.00   -0.22   -0.71   -1.36   -2.06   -2.78   -3.56   -4.40   -5.25   -5.94   -6.23   -5.90   -4.84   -3.10   -0.85    1.68    4.19    6.25    7.18
+   135.0    0.00   -0.21   -0.70   -1.34   -2.03   -2.74   -3.51   -4.36   -5.23   -5.93   -6.24   -5.92   -4.86   -3.09   -0.79    1.82    4.42    6.57    7.51
+   140.0    0.00   -0.21   -0.69   -1.32   -2.00   -2.70   -3.48   -4.33   -5.21   -5.93   -6.24   -5.92   -4.85   -3.06   -0.69    2.00    4.72    6.98    7.99
+   145.0    0.00   -0.20   -0.68   -1.30   -1.97   -2.68   -3.45   -4.32   -5.20   -5.93   -6.24   -5.92   -4.83   -3.01   -0.59    2.20    5.05    7.45    8.59
+   150.0    0.00   -0.20   -0.66   -1.28   -1.95   -2.66   -3.44   -4.31   -5.20   -5.93   -6.24   -5.90   -4.80   -2.95   -0.48    2.38    5.35    7.91    9.23
+   155.0    0.00   -0.19   -0.65   -1.27   -1.94   -2.65   -3.44   -4.32   -5.21   -5.93   -6.23   -5.88   -4.77   -2.90   -0.41    2.50    5.57    8.30    9.86
+   160.0    0.00   -0.18   -0.64   -1.25   -1.93   -2.65   -3.45   -4.33   -5.22   -5.92   -6.21   -5.85   -4.73   -2.88   -0.40    2.54    5.68    8.57   10.39
+   165.0    0.00   -0.18   -0.63   -1.24   -1.92   -2.65   -3.46   -4.34   -5.22   -5.91   -6.18   -5.82   -4.71   -2.89   -0.45    2.47    5.65    8.68   10.79
+   170.0    0.00   -0.17   -0.63   -1.24   -1.92   -2.66   -3.47   -4.35   -5.22   -5.89   -6.15   -5.79   -4.71   -2.94   -0.56    2.30    5.48    8.63   11.04
+   175.0    0.00   -0.17   -0.62   -1.23   -1.92   -2.66   -3.48   -4.35   -5.20   -5.87   -6.12   -5.77   -4.73   -3.03   -0.73    2.05    5.20    8.43   11.15
+   180.0    0.00   -0.17   -0.61   -1.23   -1.92   -2.67   -3.48   -4.35   -5.19   -5.84   -6.09   -5.76   -4.77   -3.14   -0.95    1.74    4.84    8.15   11.16
+   185.0    0.00   -0.16   -0.61   -1.23   -1.93   -2.68   -3.49   -4.34   -5.16   -5.80   -6.06   -5.76   -4.83   -3.28   -1.18    1.42    4.47    7.84   11.15
+   190.0    0.00   -0.16   -0.60   -1.23   -1.94   -2.69   -3.49   -4.32   -5.13   -5.77   -6.04   -5.78   -4.90   -3.42   -1.39    1.13    4.14    7.58   11.17
+   195.0    0.00   -0.15   -0.60   -1.23   -1.95   -2.70   -3.49   -4.31   -5.11   -5.75   -6.04   -5.81   -4.98   -3.55   -1.57    0.91    3.91    7.43   11.32
+   200.0    0.00   -0.15   -0.60   -1.24   -1.96   -2.71   -3.49   -4.30   -5.09   -5.73   -6.05   -5.85   -5.05   -3.64   -1.68    0.79    3.81    7.44   11.61
+   205.0    0.00   -0.15   -0.60   -1.24   -1.98   -2.73   -3.51   -4.31   -5.09   -5.73   -6.07   -5.90   -5.11   -3.70   -1.72    0.79    3.87    7.62   12.09
+   210.0    0.00   -0.14   -0.60   -1.25   -1.99   -2.76   -3.53   -4.32   -5.10   -5.75   -6.10   -5.94   -5.16   -3.72   -1.68    0.91    4.08    7.97   12.71
+   215.0    0.00   -0.14   -0.60   -1.26   -2.02   -2.79   -3.56   -4.35   -5.12   -5.78   -6.14   -5.98   -5.18   -3.68   -1.57    1.11    4.39    8.43   13.42
+   220.0    0.00   -0.14   -0.60   -1.28   -2.04   -2.83   -3.61   -4.39   -5.17   -5.82   -6.18   -6.01   -5.17   -3.62   -1.41    1.38    4.77    8.94   14.13
+   225.0    0.00   -0.14   -0.60   -1.29   -2.07   -2.87   -3.66   -4.45   -5.22   -5.88   -6.22   -6.03   -5.14   -3.52   -1.22    1.67    5.15    9.41   14.74
+   230.0    0.00   -0.14   -0.61   -1.30   -2.10   -2.92   -3.72   -4.51   -5.28   -5.93   -6.25   -6.03   -5.10   -3.40   -1.02    1.93    5.47    9.77   15.14
+   235.0    0.00   -0.13   -0.61   -1.32   -2.13   -2.97   -3.78   -4.58   -5.35   -5.98   -6.28   -6.02   -5.04   -3.28   -0.85    2.14    5.68    9.95   15.26
+   240.0    0.00   -0.13   -0.61   -1.33   -2.16   -3.01   -3.84   -4.65   -5.41   -6.02   -6.29   -6.00   -4.97   -3.17   -0.72    2.27    5.76    9.91   15.06
+   245.0    0.00   -0.13   -0.61   -1.34   -2.19   -3.06   -3.90   -4.70   -5.46   -6.05   -6.29   -5.96   -4.90   -3.08   -0.63    2.31    5.68    9.64   14.52
+   250.0    0.00   -0.13   -0.62   -1.35   -2.21   -3.09   -3.94   -4.75   -5.49   -6.06   -6.28   -5.92   -4.84   -3.01   -0.59    2.26    5.47    9.18   13.71
+   255.0    0.00   -0.13   -0.62   -1.36   -2.23   -3.12   -3.97   -4.78   -5.51   -6.06   -6.26   -5.88   -4.78   -2.97   -0.59    2.15    5.16    8.57   12.70
+   260.0    0.00   -0.13   -0.62   -1.37   -2.24   -3.13   -3.98   -4.78   -5.51   -6.05   -6.24   -5.85   -4.74   -2.94   -0.62    2.00    4.80    7.90   11.62
+   265.0    0.00   -0.13   -0.62   -1.37   -2.25   -3.13   -3.98   -4.77   -5.49   -6.03   -6.21   -5.82   -4.72   -2.94   -0.66    1.85    4.45    7.25   10.60
+   270.0    0.00   -0.13   -0.63   -1.37   -2.24   -3.12   -3.96   -4.75   -5.46   -6.00   -6.19   -5.80   -4.71   -2.94   -0.71    1.71    4.14    6.70    9.75
+   275.0    0.00   -0.13   -0.63   -1.37   -2.24   -3.11   -3.93   -4.71   -5.42   -5.97   -6.17   -5.80   -4.71   -2.95   -0.74    1.61    3.92    6.31    9.17
+   280.0    0.00   -0.14   -0.63   -1.37   -2.23   -3.09   -3.90   -4.66   -5.38   -5.94   -6.16   -5.81   -4.73   -2.96   -0.76    1.56    3.81    6.11    8.92
+   285.0    0.00   -0.14   -0.63   -1.37   -2.22   -3.06   -3.85   -4.61   -5.33   -5.91   -6.16   -5.83   -4.76   -2.98   -0.76    1.57    3.80    6.10    8.99
+   290.0    0.00   -0.14   -0.63   -1.37   -2.21   -3.03   -3.81   -4.56   -5.29   -5.89   -6.17   -5.86   -4.79   -3.00   -0.75    1.61    3.88    6.26    9.35
+   295.0    0.00   -0.14   -0.63   -1.37   -2.19   -3.00   -3.77   -4.51   -5.24   -5.87   -6.18   -5.90   -4.84   -3.03   -0.74    1.67    4.02    6.54    9.91
+   300.0    0.00   -0.14   -0.64   -1.37   -2.19   -2.98   -3.73   -4.46   -5.20   -5.85   -6.19   -5.94   -4.88   -3.06   -0.73    1.74    4.18    6.86   10.57
+   305.0    0.00   -0.15   -0.64   -1.37   -2.18   -2.96   -3.70   -4.42   -5.17   -5.84   -6.20   -5.98   -4.94   -3.10   -0.74    1.79    4.32    7.18   11.21
+   310.0    0.00   -0.15   -0.65   -1.37   -2.18   -2.95   -3.67   -4.39   -5.13   -5.82   -6.21   -6.01   -4.99   -3.15   -0.77    1.81    4.42    7.43   11.74
+   315.0    0.00   -0.15   -0.65   -1.38   -2.18   -2.94   -3.65   -4.36   -5.10   -5.80   -6.22   -6.04   -5.04   -3.21   -0.81    1.80    4.47    7.58   12.08
+   320.0    0.00   -0.16   -0.66   -1.38   -2.18   -2.94   -3.64   -4.33   -5.07   -5.78   -6.21   -6.06   -5.08   -3.26   -0.85    1.78    4.48    7.62   12.20
+   325.0    0.00   -0.16   -0.66   -1.39   -2.19   -2.94   -3.63   -4.32   -5.05   -5.76   -6.20   -6.08   -5.12   -3.31   -0.89    1.75    4.45    7.56   12.10
+   330.0    0.00   -0.16   -0.67   -1.40   -2.20   -2.95   -3.63   -4.30   -5.03   -5.73   -6.19   -6.08   -5.14   -3.33   -0.92    1.73    4.41    7.45   11.81
+   335.0    0.00   -0.17   -0.68   -1.41   -2.21   -2.96   -3.63   -4.30   -5.01   -5.71   -6.17   -6.07   -5.14   -3.34   -0.91    1.75    4.40    7.32   11.42
+   340.0    0.00   -0.17   -0.68   -1.42   -2.22   -2.97   -3.64   -4.30   -5.00   -5.70   -6.16   -6.06   -5.13   -3.32   -0.87    1.80    4.43    7.21   11.01
+   345.0    0.00   -0.18   -0.69   -1.43   -2.23   -2.98   -3.65   -4.31   -5.00   -5.69   -6.14   -6.04   -5.10   -3.27   -0.79    1.91    4.51    7.16   10.64
+   350.0    0.00   -0.18   -0.70   -1.44   -2.24   -2.99   -3.66   -4.32   -5.01   -5.69   -6.13   -6.01   -5.05   -3.19   -0.68    2.05    4.65    7.19   10.38
+   355.0    0.00   -0.18   -0.70   -1.44   -2.25   -3.00   -3.68   -4.33   -5.03   -5.69   -6.11   -5.97   -4.99   -3.10   -0.56    2.21    4.82    7.29   10.26
+   360.0    0.00   -0.19   -0.71   -1.45   -2.25   -3.00   -3.69   -4.36   -5.05   -5.70   -6.11   -5.93   -4.92   -3.00   -0.43    2.36    4.99    7.45   10.28
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TRM29659.00     SCIS                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               5    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+Number of Calibrated Antennas GPS:      005                 COMMENT             
+Number of Individual Calibrations GPS:  010                 COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.34      0.85     87.49                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.31   -1.20   -2.55   -4.19   -5.91   -7.53   -8.85   -9.74  -10.08   -9.81   -8.94   -7.49   -5.47   -2.84    0.56    4.97   10.56   17.23
+     0.0    0.00   -0.30   -1.19   -2.55   -4.20   -5.95   -7.58   -8.91   -9.77  -10.07   -9.73   -8.79   -7.29   -5.26   -2.65    0.71    5.09   10.67   17.33
+     5.0    0.00   -0.31   -1.19   -2.55   -4.20   -5.94   -7.57   -8.89   -9.76  -10.05   -9.72   -8.78   -7.27   -5.22   -2.60    0.76    5.13   10.67   17.28
+    10.0    0.00   -0.31   -1.20   -2.55   -4.20   -5.93   -7.56   -8.88   -9.75  -10.05   -9.72   -8.78   -7.26   -5.21   -2.58    0.79    5.15   10.67   17.25
+    15.0    0.00   -0.32   -1.21   -2.56   -4.20   -5.93   -7.55   -8.87   -9.75  -10.06   -9.74   -8.80   -7.28   -5.22   -2.57    0.81    5.16   10.66   17.23
+    20.0    0.00   -0.32   -1.21   -2.56   -4.19   -5.92   -7.54   -8.87   -9.75  -10.08   -9.78   -8.84   -7.32   -5.24   -2.57    0.82    5.16   10.65   17.24
+    25.0    0.00   -0.33   -1.22   -2.57   -4.19   -5.91   -7.53   -8.86   -9.76  -10.10   -9.82   -8.89   -7.36   -5.26   -2.57    0.84    5.17   10.65   17.27
+    30.0    0.00   -0.33   -1.23   -2.57   -4.19   -5.91   -7.52   -8.86   -9.77  -10.13   -9.86   -8.95   -7.41   -5.29   -2.57    0.85    5.20   10.67   17.32
+    35.0    0.00   -0.34   -1.24   -2.58   -4.19   -5.90   -7.51   -8.85   -9.77  -10.15   -9.90   -9.00   -7.46   -5.32   -2.57    0.88    5.23   10.70   17.38
+    40.0    0.00   -0.34   -1.24   -2.58   -4.20   -5.90   -7.50   -8.84   -9.76  -10.16   -9.92   -9.03   -7.50   -5.34   -2.56    0.92    5.28   10.75   17.45
+    45.0    0.00   -0.35   -1.25   -2.59   -4.20   -5.89   -7.49   -8.83   -9.75  -10.15   -9.94   -9.05   -7.51   -5.34   -2.54    0.96    5.33   10.81   17.51
+    50.0    0.00   -0.35   -1.26   -2.60   -4.21   -5.90   -7.48   -8.81   -9.74  -10.14   -9.93   -9.06   -7.52   -5.33   -2.52    1.01    5.39   10.87   17.57
+    55.0    0.00   -0.36   -1.27   -2.61   -4.22   -5.90   -7.48   -8.80   -9.72  -10.12   -9.91   -9.04   -7.50   -5.32   -2.49    1.05    5.45   10.93   17.61
+    60.0    0.00   -0.36   -1.28   -2.62   -4.23   -5.91   -7.48   -8.79   -9.70  -10.09   -9.87   -9.01   -7.48   -5.30   -2.46    1.09    5.50   10.98   17.64
+    65.0    0.00   -0.37   -1.29   -2.64   -4.24   -5.92   -7.49   -8.79   -9.68  -10.05   -9.83   -8.97   -7.44   -5.28   -2.45    1.11    5.54   11.03   17.65
+    70.0    0.00   -0.37   -1.30   -2.65   -4.26   -5.94   -7.50   -8.79   -9.66  -10.02   -9.79   -8.92   -7.42   -5.27   -2.45    1.11    5.56   11.07   17.65
+    75.0    0.00   -0.37   -1.30   -2.66   -4.28   -5.96   -7.52   -8.80   -9.66  -10.00   -9.75   -8.89   -7.40   -5.27   -2.48    1.08    5.56   11.09   17.65
+    80.0    0.00   -0.38   -1.31   -2.68   -4.30   -5.98   -7.54   -8.81   -9.66   -9.99   -9.73   -8.87   -7.40   -5.30   -2.53    1.03    5.53   11.10   17.64
+    85.0    0.00   -0.38   -1.32   -2.69   -4.32   -6.01   -7.57   -8.83   -9.67   -9.99   -9.73   -8.87   -7.42   -5.35   -2.61    0.94    5.49   11.10   17.64
+    90.0    0.00   -0.38   -1.33   -2.70   -4.33   -6.03   -7.59   -8.86   -9.69  -10.00   -9.74   -8.89   -7.46   -5.43   -2.71    0.84    5.42   11.09   17.63
+    95.0    0.00   -0.38   -1.33   -2.71   -4.35   -6.05   -7.62   -8.89   -9.72  -10.02   -9.76   -8.92   -7.52   -5.52   -2.83    0.73    5.34   11.07   17.63
+   100.0    0.00   -0.39   -1.33   -2.72   -4.36   -6.06   -7.64   -8.91   -9.75  -10.05   -9.80   -8.97   -7.59   -5.62   -2.96    0.60    5.24   11.02   17.62
+   105.0    0.00   -0.39   -1.34   -2.72   -4.37   -6.07   -7.65   -8.93   -9.77  -10.09   -9.84   -9.03   -7.67   -5.72   -3.08    0.47    5.14   10.97   17.60
+   110.0    0.00   -0.39   -1.34   -2.72   -4.37   -6.08   -7.66   -8.94   -9.79  -10.11   -9.88   -9.08   -7.73   -5.81   -3.18    0.36    5.03   10.89   17.57
+   115.0    0.00   -0.39   -1.34   -2.72   -4.37   -6.07   -7.66   -8.94   -9.80  -10.14   -9.91   -9.12   -7.78   -5.87   -3.26    0.26    4.93   10.80   17.52
+   120.0    0.00   -0.38   -1.33   -2.72   -4.36   -6.06   -7.65   -8.94   -9.80  -10.15   -9.92   -9.14   -7.81   -5.90   -3.31    0.18    4.82   10.70   17.46
+   125.0    0.00   -0.38   -1.33   -2.71   -4.35   -6.05   -7.63   -8.92   -9.79  -10.14   -9.92   -9.14   -7.80   -5.90   -3.33    0.13    4.73   10.59   17.38
+   130.0    0.00   -0.38   -1.33   -2.70   -4.34   -6.03   -7.61   -8.90   -9.78  -10.13   -9.91   -9.12   -7.77   -5.87   -3.32    0.10    4.65   10.47   17.28
+   135.0    0.00   -0.38   -1.32   -2.69   -4.32   -6.01   -7.59   -8.88   -9.75  -10.11   -9.88   -9.08   -7.72   -5.81   -3.27    0.10    4.58   10.35   17.18
+   140.0    0.00   -0.37   -1.31   -2.68   -4.30   -5.99   -7.56   -8.85   -9.73  -10.08   -9.84   -9.02   -7.64   -5.73   -3.20    0.12    4.54   10.24   17.07
+   145.0    0.00   -0.37   -1.30   -2.67   -4.29   -5.97   -7.53   -8.83   -9.70  -10.05   -9.80   -8.96   -7.56   -5.63   -3.12    0.16    4.51   10.14   16.97
+   150.0    0.00   -0.36   -1.29   -2.65   -4.27   -5.95   -7.51   -8.80   -9.67  -10.01   -9.76   -8.90   -7.49   -5.54   -3.04    0.22    4.50   10.07   16.87
+   155.0    0.00   -0.36   -1.28   -2.64   -4.25   -5.93   -7.49   -8.78   -9.65   -9.99   -9.72   -8.85   -7.42   -5.46   -2.95    0.27    4.51   10.02   16.79
+   160.0    0.00   -0.35   -1.27   -2.62   -4.23   -5.91   -7.48   -8.77   -9.63   -9.97   -9.70   -8.81   -7.37   -5.40   -2.88    0.33    4.54   10.00   16.72
+   165.0    0.00   -0.34   -1.26   -2.61   -4.22   -5.90   -7.46   -8.75   -9.62   -9.95   -9.68   -8.79   -7.33   -5.35   -2.83    0.39    4.58   10.00   16.67
+   170.0    0.00   -0.34   -1.24   -2.59   -4.20   -5.88   -7.45   -8.75   -9.62   -9.95   -9.67   -8.79   -7.32   -5.33   -2.79    0.44    4.63   10.03   16.64
+   175.0    0.00   -0.33   -1.23   -2.57   -4.19   -5.87   -7.45   -8.74   -9.61   -9.94   -9.67   -8.79   -7.33   -5.33   -2.78    0.48    4.68   10.07   16.63
+   180.0    0.00   -0.32   -1.22   -2.56   -4.17   -5.86   -7.44   -8.74   -9.61   -9.94   -9.68   -8.80   -7.35   -5.35   -2.78    0.50    4.73   10.11   16.63
+   185.0    0.00   -0.32   -1.20   -2.54   -4.15   -5.85   -7.43   -8.73   -9.61   -9.94   -9.68   -8.81   -7.37   -5.37   -2.79    0.51    4.77   10.16   16.64
+   190.0    0.00   -0.31   -1.19   -2.52   -4.14   -5.84   -7.42   -8.73   -9.60   -9.94   -9.68   -8.82   -7.39   -5.40   -2.81    0.52    4.80   10.21   16.68
+   195.0    0.00   -0.30   -1.18   -2.51   -4.12   -5.82   -7.42   -8.72   -9.60   -9.93   -9.68   -8.82   -7.40   -5.41   -2.83    0.51    4.82   10.25   16.72
+   200.0    0.00   -0.29   -1.16   -2.49   -4.10   -5.81   -7.41   -8.72   -9.59   -9.93   -9.67   -8.81   -7.39   -5.42   -2.84    0.51    4.83   10.29   16.78
+   205.0    0.00   -0.29   -1.15   -2.47   -4.09   -5.80   -7.40   -8.71   -9.58   -9.91   -9.65   -8.79   -7.38   -5.42   -2.84    0.50    4.84   10.34   16.87
+   210.0    0.00   -0.28   -1.13   -2.45   -4.07   -5.78   -7.39   -8.71   -9.58   -9.90   -9.63   -8.77   -7.36   -5.40   -2.84    0.50    4.86   10.39   16.97
+   215.0    0.00   -0.27   -1.12   -2.44   -4.05   -5.77   -7.38   -8.70   -9.57   -9.89   -9.61   -8.74   -7.33   -5.38   -2.82    0.52    4.89   10.45   17.08
+   220.0    0.00   -0.27   -1.11   -2.42   -4.04   -5.75   -7.37   -8.70   -9.57   -9.88   -9.59   -8.71   -7.29   -5.35   -2.80    0.54    4.93   10.53   17.22
+   225.0    0.00   -0.26   -1.10   -2.41   -4.02   -5.74   -7.37   -8.70   -9.57   -9.88   -9.58   -8.70   -7.27   -5.32   -2.77    0.58    4.99   10.62   17.35
+   230.0    0.00   -0.26   -1.09   -2.39   -4.01   -5.73   -7.36   -8.70   -9.57   -9.88   -9.58   -8.69   -7.26   -5.30   -2.73    0.64    5.07   10.74   17.49
+   235.0    0.00   -0.25   -1.08   -2.38   -4.00   -5.73   -7.36   -8.70   -9.58   -9.90   -9.59   -8.70   -7.26   -5.28   -2.69    0.70    5.17   10.86   17.61
+   240.0    0.00   -0.25   -1.07   -2.38   -3.99   -5.72   -7.36   -8.71   -9.60   -9.91   -9.62   -8.72   -7.27   -5.28   -2.66    0.77    5.28   10.99   17.70
+   245.0    0.00   -0.24   -1.07   -2.37   -3.99   -5.72   -7.37   -8.72   -9.61   -9.94   -9.65   -8.75   -7.30   -5.29   -2.64    0.84    5.38   11.10   17.76
+   250.0    0.00   -0.24   -1.06   -2.37   -3.99   -5.73   -7.38   -8.73   -9.63   -9.96   -9.68   -8.80   -7.34   -5.31   -2.63    0.90    5.48   11.19   17.76
+   255.0    0.00   -0.24   -1.06   -2.37   -3.99   -5.74   -7.39   -8.75   -9.65   -9.99   -9.72   -8.85   -7.39   -5.35   -2.63    0.94    5.55   11.24   17.72
+   260.0    0.00   -0.24   -1.06   -2.37   -4.00   -5.75   -7.40   -8.77   -9.68  -10.02   -9.76   -8.89   -7.44   -5.38   -2.64    0.96    5.58   11.25   17.63
+   265.0    0.00   -0.24   -1.06   -2.37   -4.01   -5.76   -7.42   -8.79   -9.70  -10.05   -9.80   -8.94   -7.49   -5.43   -2.67    0.95    5.57   11.20   17.49
+   270.0    0.00   -0.23   -1.06   -2.38   -4.02   -5.78   -7.44   -8.81   -9.73  -10.08   -9.83   -8.98   -7.53   -5.47   -2.71    0.91    5.51   11.11   17.33
+   275.0    0.00   -0.24   -1.07   -2.39   -4.04   -5.80   -7.47   -8.84   -9.75  -10.11   -9.86   -9.01   -7.57   -5.51   -2.76    0.83    5.41   10.96   17.15
+   280.0    0.00   -0.24   -1.07   -2.40   -4.06   -5.83   -7.50   -8.87   -9.78  -10.14   -9.89   -9.03   -7.59   -5.55   -2.82    0.73    5.26   10.78   16.98
+   285.0    0.00   -0.24   -1.08   -2.41   -4.08   -5.85   -7.53   -8.90   -9.82  -10.17   -9.91   -9.05   -7.61   -5.58   -2.89    0.61    5.08   10.58   16.83
+   290.0    0.00   -0.24   -1.08   -2.43   -4.10   -5.88   -7.56   -8.94   -9.85  -10.20   -9.93   -9.07   -7.63   -5.62   -2.97    0.47    4.89   10.38   16.72
+   295.0    0.00   -0.24   -1.09   -2.44   -4.12   -5.91   -7.59   -8.97   -9.88  -10.23   -9.96   -9.08   -7.64   -5.64   -3.04    0.34    4.71   10.20   16.66
+   300.0    0.00   -0.25   -1.10   -2.45   -4.13   -5.93   -7.62   -9.00   -9.92  -10.26   -9.98   -9.09   -7.65   -5.67   -3.10    0.22    4.54   10.05   16.65
+   305.0    0.00   -0.25   -1.11   -2.47   -4.15   -5.95   -7.64   -9.03   -9.95  -10.28  -10.00   -9.10   -7.65   -5.68   -3.15    0.13    4.41    9.95   16.70
+   310.0    0.00   -0.25   -1.12   -2.48   -4.17   -5.97   -7.66   -9.05   -9.97  -10.31  -10.01   -9.11   -7.66   -5.69   -3.18    0.06    4.33    9.90   16.79
+   315.0    0.00   -0.26   -1.12   -2.49   -4.18   -5.98   -7.68   -9.07   -9.98  -10.32  -10.02   -9.11   -7.65   -5.69   -3.19    0.03    4.29    9.91   16.91
+   320.0    0.00   -0.26   -1.13   -2.50   -4.19   -5.99   -7.68   -9.07   -9.99  -10.32  -10.02   -9.11   -7.64   -5.68   -3.18    0.04    4.31    9.96   17.05
+   325.0    0.00   -0.27   -1.14   -2.51   -4.20   -5.99   -7.68   -9.07   -9.98  -10.31  -10.01   -9.09   -7.62   -5.65   -3.15    0.08    4.38   10.06   17.18
+   330.0    0.00   -0.27   -1.15   -2.52   -4.20   -5.99   -7.67   -9.05   -9.96  -10.29   -9.99   -9.07   -7.59   -5.61   -3.09    0.16    4.47   10.17   17.30
+   335.0    0.00   -0.27   -1.15   -2.52   -4.21   -5.99   -7.66   -9.03   -9.94  -10.26   -9.95   -9.03   -7.55   -5.56   -3.02    0.25    4.59   10.30   17.38
+   340.0    0.00   -0.28   -1.16   -2.53   -4.21   -5.98   -7.65   -9.01   -9.90  -10.22   -9.91   -8.98   -7.49   -5.50   -2.94    0.36    4.72   10.42   17.43
+   345.0    0.00   -0.28   -1.17   -2.53   -4.21   -5.98   -7.63   -8.98   -9.87  -10.17   -9.86   -8.93   -7.44   -5.43   -2.86    0.46    4.84   10.52   17.44
+   350.0    0.00   -0.29   -1.17   -2.54   -4.21   -5.97   -7.61   -8.95   -9.83  -10.13   -9.81   -8.87   -7.38   -5.36   -2.78    0.56    4.94   10.60   17.43
+   355.0    0.00   -0.29   -1.18   -2.54   -4.20   -5.96   -7.60   -8.93   -9.80  -10.09   -9.76   -8.83   -7.33   -5.30   -2.70    0.65    5.03   10.65   17.39
+   360.0    0.00   -0.30   -1.19   -2.55   -4.20   -5.95   -7.58   -8.91   -9.77  -10.07   -9.73   -8.79   -7.29   -5.26   -2.65    0.71    5.09   10.67   17.33
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.23     -0.53    119.32                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.18   -0.66   -1.38   -2.21   -3.09   -3.99   -4.87   -5.65   -6.19   -6.30   -5.86   -4.82   -3.31   -1.49    0.55    2.94    6.03   10.24
+     0.0    0.00   -0.21   -0.73   -1.45   -2.26   -3.10   -3.93   -4.75   -5.52   -6.09   -6.31   -6.00   -5.11   -3.71   -1.94    0.13    2.62    5.83   10.12
+     5.0    0.00   -0.21   -0.73   -1.45   -2.26   -3.09   -3.91   -4.73   -5.49   -6.07   -6.28   -5.98   -5.10   -3.70   -1.93    0.14    2.61    5.80   10.09
+    10.0    0.00   -0.21   -0.73   -1.45   -2.26   -3.08   -3.90   -4.71   -5.47   -6.04   -6.25   -5.95   -5.07   -3.68   -1.91    0.16    2.63    5.82   10.13
+    15.0    0.00   -0.21   -0.73   -1.45   -2.25   -3.07   -3.89   -4.70   -5.44   -6.01   -6.22   -5.91   -5.02   -3.62   -1.85    0.21    2.68    5.88   10.22
+    20.0    0.00   -0.21   -0.73   -1.44   -2.24   -3.06   -3.88   -4.69   -5.43   -5.99   -6.18   -5.86   -4.96   -3.55   -1.77    0.29    2.76    5.98   10.38
+    25.0    0.00   -0.21   -0.73   -1.44   -2.24   -3.06   -3.88   -4.69   -5.43   -5.98   -6.15   -5.81   -4.89   -3.46   -1.68    0.39    2.87    6.11   10.58
+    30.0    0.00   -0.21   -0.72   -1.43   -2.24   -3.06   -3.89   -4.71   -5.44   -5.98   -6.13   -5.76   -4.81   -3.37   -1.57    0.50    3.00    6.27   10.80
+    35.0    0.00   -0.21   -0.72   -1.43   -2.23   -3.07   -3.91   -4.73   -5.47   -5.99   -6.12   -5.72   -4.74   -3.28   -1.47    0.62    3.13    6.44   11.02
+    40.0    0.00   -0.21   -0.71   -1.42   -2.23   -3.08   -3.93   -4.76   -5.50   -6.01   -6.12   -5.69   -4.69   -3.20   -1.37    0.73    3.26    6.59   11.19
+    45.0    0.00   -0.20   -0.71   -1.41   -2.23   -3.09   -3.95   -4.79   -5.54   -6.04   -6.13   -5.68   -4.65   -3.13   -1.29    0.83    3.37    6.72   11.30
+    50.0    0.00   -0.20   -0.70   -1.41   -2.23   -3.09   -3.97   -4.83   -5.58   -6.08   -6.15   -5.68   -4.62   -3.09   -1.23    0.90    3.46    6.79   11.31
+    55.0    0.00   -0.20   -0.69   -1.40   -2.22   -3.10   -3.99   -4.86   -5.61   -6.11   -6.18   -5.69   -4.62   -3.07   -1.20    0.95    3.51    6.81   11.22
+    60.0    0.00   -0.19   -0.69   -1.39   -2.22   -3.10   -4.00   -4.88   -5.64   -6.14   -6.20   -5.70   -4.63   -3.08   -1.19    0.96    3.51    6.77   11.03
+    65.0    0.00   -0.19   -0.68   -1.38   -2.21   -3.10   -4.01   -4.90   -5.66   -6.16   -6.23   -5.73   -4.65   -3.10   -1.21    0.94    3.47    6.67   10.76
+    70.0    0.00   -0.19   -0.68   -1.38   -2.21   -3.10   -4.01   -4.90   -5.67   -6.17   -6.24   -5.75   -4.68   -3.14   -1.26    0.89    3.40    6.51   10.42
+    75.0    0.00   -0.19   -0.67   -1.37   -2.20   -3.09   -4.01   -4.90   -5.67   -6.18   -6.25   -5.77   -4.72   -3.18   -1.31    0.82    3.29    6.32   10.05
+    80.0    0.00   -0.18   -0.66   -1.36   -2.19   -3.09   -4.00   -4.89   -5.66   -6.17   -6.26   -5.79   -4.74   -3.23   -1.37    0.73    3.16    6.12    9.70
+    85.0    0.00   -0.18   -0.66   -1.36   -2.19   -3.08   -3.99   -4.88   -5.65   -6.17   -6.26   -5.79   -4.76   -3.26   -1.43    0.64    3.03    5.92    9.40
+    90.0    0.00   -0.18   -0.66   -1.35   -2.18   -3.07   -3.98   -4.87   -5.64   -6.16   -6.25   -5.79   -4.77   -3.29   -1.48    0.56    2.91    5.75    9.17
+    95.0    0.00   -0.18   -0.65   -1.35   -2.18   -3.07   -3.98   -4.86   -5.64   -6.15   -6.24   -5.79   -4.77   -3.30   -1.51    0.49    2.80    5.62    9.04
+   100.0    0.00   -0.17   -0.65   -1.35   -2.17   -3.07   -3.98   -4.86   -5.63   -6.15   -6.24   -5.78   -4.76   -3.29   -1.53    0.45    2.73    5.54    9.02
+   105.0    0.00   -0.17   -0.65   -1.35   -2.18   -3.07   -3.98   -4.87   -5.64   -6.16   -6.24   -5.78   -4.75   -3.28   -1.52    0.43    2.69    5.51    9.09
+   110.0    0.00   -0.17   -0.65   -1.35   -2.18   -3.07   -3.99   -4.88   -5.65   -6.17   -6.25   -5.77   -4.73   -3.25   -1.50    0.44    2.68    5.53    9.23
+   115.0    0.00   -0.17   -0.64   -1.35   -2.18   -3.08   -4.00   -4.89   -5.67   -6.19   -6.27   -5.78   -4.72   -3.22   -1.47    0.46    2.70    5.58    9.42
+   120.0    0.00   -0.17   -0.64   -1.35   -2.19   -3.09   -4.01   -4.91   -5.70   -6.22   -6.29   -5.79   -4.72   -3.20   -1.43    0.50    2.74    5.66    9.62
+   125.0    0.00   -0.16   -0.64   -1.35   -2.20   -3.10   -4.02   -4.93   -5.72   -6.25   -6.32   -5.82   -4.72   -3.18   -1.39    0.55    2.79    5.74    9.80
+   130.0    0.00   -0.16   -0.65   -1.36   -2.20   -3.11   -4.04   -4.94   -5.74   -6.27   -6.36   -5.85   -4.75   -3.18   -1.37    0.59    2.84    5.80    9.93
+   135.0    0.00   -0.16   -0.65   -1.36   -2.21   -3.12   -4.05   -4.95   -5.75   -6.30   -6.39   -5.89   -4.78   -3.20   -1.36    0.62    2.88    5.83    9.99
+   140.0    0.00   -0.16   -0.65   -1.37   -2.22   -3.13   -4.05   -4.96   -5.76   -6.32   -6.42   -5.93   -4.82   -3.23   -1.38    0.62    2.89    5.83    9.97
+   145.0    0.00   -0.16   -0.65   -1.37   -2.23   -3.13   -4.06   -4.96   -5.77   -6.33   -6.45   -5.98   -4.88   -3.28   -1.41    0.61    2.87    5.78    9.88
+   150.0    0.00   -0.16   -0.65   -1.37   -2.23   -3.14   -4.06   -4.96   -5.76   -6.33   -6.47   -6.02   -4.93   -3.34   -1.46    0.56    2.82    5.69    9.74
+   155.0    0.00   -0.16   -0.65   -1.38   -2.24   -3.14   -4.06   -4.95   -5.76   -6.33   -6.49   -6.05   -4.99   -3.41   -1.53    0.49    2.74    5.58    9.57
+   160.0    0.00   -0.16   -0.65   -1.38   -2.24   -3.14   -4.05   -4.94   -5.75   -6.33   -6.49   -6.08   -5.04   -3.47   -1.61    0.41    2.64    5.45    9.40
+   165.0    0.00   -0.16   -0.65   -1.38   -2.24   -3.14   -4.05   -4.94   -5.74   -6.32   -6.49   -6.10   -5.07   -3.53   -1.68    0.32    2.53    5.32    9.26
+   170.0    0.00   -0.15   -0.65   -1.38   -2.24   -3.14   -4.05   -4.93   -5.73   -6.31   -6.49   -6.10   -5.10   -3.58   -1.75    0.24    2.44    5.22    9.17
+   175.0    0.00   -0.15   -0.64   -1.38   -2.24   -3.14   -4.05   -4.93   -5.72   -6.30   -6.48   -6.10   -5.10   -3.60   -1.79    0.17    2.37    5.16    9.15
+   180.0    0.00   -0.15   -0.64   -1.37   -2.23   -3.14   -4.04   -4.93   -5.72   -6.29   -6.46   -6.08   -5.09   -3.60   -1.81    0.14    2.34    5.16    9.21
+   185.0    0.00   -0.15   -0.64   -1.37   -2.23   -3.13   -4.04   -4.92   -5.71   -6.28   -6.44   -6.05   -5.06   -3.58   -1.80    0.15    2.36    5.22    9.34
+   190.0    0.00   -0.15   -0.63   -1.36   -2.22   -3.13   -4.04   -4.92   -5.71   -6.27   -6.42   -6.02   -5.02   -3.53   -1.75    0.20    2.43    5.34    9.54
+   195.0    0.00   -0.15   -0.63   -1.35   -2.21   -3.12   -4.03   -4.91   -5.70   -6.25   -6.40   -5.98   -4.97   -3.47   -1.67    0.30    2.56    5.52    9.78
+   200.0    0.00   -0.15   -0.63   -1.35   -2.20   -3.11   -4.02   -4.91   -5.69   -6.24   -6.37   -5.94   -4.91   -3.39   -1.57    0.44    2.74    5.75   10.05
+   205.0    0.00   -0.15   -0.62   -1.34   -2.19   -3.10   -4.01   -4.89   -5.68   -6.22   -6.34   -5.89   -4.84   -3.30   -1.44    0.61    2.96    6.01   10.32
+   210.0    0.00   -0.14   -0.62   -1.33   -2.18   -3.08   -4.00   -4.88   -5.66   -6.20   -6.31   -5.85   -4.78   -3.20   -1.31    0.79    3.20    6.28   10.56
+   215.0    0.00   -0.14   -0.61   -1.32   -2.17   -3.07   -3.99   -4.87   -5.65   -6.18   -6.28   -5.81   -4.72   -3.11   -1.17    0.98    3.43    6.54   10.77
+   220.0    0.00   -0.14   -0.61   -1.32   -2.16   -3.06   -3.97   -4.86   -5.64   -6.16   -6.26   -5.77   -4.67   -3.03   -1.05    1.15    3.65    6.76   10.93
+   225.0    0.00   -0.14   -0.61   -1.31   -2.15   -3.05   -3.97   -4.86   -5.63   -6.16   -6.24   -5.75   -4.62   -2.97   -0.95    1.29    3.82    6.94   11.03
+   230.0    0.00   -0.14   -0.60   -1.30   -2.14   -3.05   -3.97   -4.86   -5.63   -6.15   -6.24   -5.73   -4.59   -2.92   -0.89    1.38    3.94    7.05   11.07
+   235.0    0.00   -0.14   -0.60   -1.30   -2.14   -3.05   -3.97   -4.87   -5.65   -6.16   -6.24   -5.72   -4.58   -2.90   -0.85    1.43    3.99    7.10   11.06
+   240.0    0.00   -0.14   -0.60   -1.30   -2.14   -3.05   -3.98   -4.88   -5.67   -6.18   -6.25   -5.73   -4.58   -2.89   -0.86    1.41    3.97    7.07   11.01
+   245.0    0.00   -0.14   -0.60   -1.30   -2.14   -3.06   -4.00   -4.91   -5.70   -6.21   -6.28   -5.74   -4.59   -2.92   -0.90    1.34    3.88    6.98   10.92
+   250.0    0.00   -0.15   -0.60   -1.30   -2.14   -3.07   -4.02   -4.94   -5.73   -6.25   -6.31   -5.77   -4.62   -2.96   -0.98    1.23    3.74    6.83   10.80
+   255.0    0.00   -0.15   -0.61   -1.30   -2.15   -3.08   -4.04   -4.97   -5.77   -6.29   -6.34   -5.80   -4.65   -3.02   -1.08    1.07    3.54    6.64   10.66
+   260.0    0.00   -0.15   -0.61   -1.30   -2.15   -3.09   -4.05   -5.00   -5.81   -6.33   -6.38   -5.83   -4.70   -3.09   -1.20    0.89    3.32    6.42   10.52
+   265.0    0.00   -0.15   -0.61   -1.31   -2.16   -3.09   -4.07   -5.02   -5.83   -6.36   -6.41   -5.87   -4.74   -3.17   -1.33    0.70    3.09    6.19   10.39
+   270.0    0.00   -0.16   -0.62   -1.32   -2.16   -3.10   -4.08   -5.03   -5.85   -6.38   -6.43   -5.89   -4.78   -3.25   -1.46    0.52    2.87    5.98   10.26
+   275.0    0.00   -0.16   -0.62   -1.32   -2.17   -3.10   -4.08   -5.03   -5.85   -6.38   -6.44   -5.92   -4.82   -3.31   -1.57    0.36    2.67    5.79   10.15
+   280.0    0.00   -0.16   -0.63   -1.33   -2.17   -3.10   -4.07   -5.02   -5.84   -6.37   -6.44   -5.93   -4.85   -3.37   -1.66    0.23    2.51    5.65   10.07
+   285.0    0.00   -0.17   -0.64   -1.34   -2.18   -3.10   -4.06   -5.00   -5.82   -6.35   -6.43   -5.93   -4.88   -3.42   -1.74    0.13    2.40    5.55   10.03
+   290.0    0.00   -0.17   -0.64   -1.34   -2.18   -3.09   -4.04   -4.97   -5.78   -6.32   -6.40   -5.92   -4.89   -3.45   -1.78    0.07    2.34    5.50   10.01
+   295.0    0.00   -0.17   -0.65   -1.35   -2.19   -3.09   -4.02   -4.93   -5.74   -6.28   -6.37   -5.90   -4.89   -3.46   -1.80    0.05    2.33    5.51   10.04
+   300.0    0.00   -0.18   -0.66   -1.36   -2.19   -3.08   -3.99   -4.90   -5.69   -6.23   -6.34   -5.88   -4.88   -3.47   -1.80    0.06    2.36    5.56   10.10
+   305.0    0.00   -0.18   -0.67   -1.37   -2.20   -3.08   -3.98   -4.86   -5.65   -6.19   -6.30   -5.86   -4.87   -3.46   -1.79    0.10    2.42    5.64   10.18
+   310.0    0.00   -0.19   -0.68   -1.38   -2.20   -3.07   -3.96   -4.84   -5.62   -6.16   -6.28   -5.85   -4.87   -3.45   -1.77    0.14    2.50    5.74   10.28
+   315.0    0.00   -0.19   -0.69   -1.39   -2.21   -3.08   -3.95   -4.82   -5.59   -6.13   -6.26   -5.84   -4.86   -3.45   -1.75    0.19    2.58    5.85   10.38
+   320.0    0.00   -0.19   -0.69   -1.40   -2.22   -3.08   -3.95   -4.81   -5.58   -6.12   -6.25   -5.84   -4.87   -3.45   -1.74    0.23    2.66    5.94   10.46
+   325.0    0.00   -0.20   -0.70   -1.42   -2.23   -3.09   -3.95   -4.81   -5.57   -6.11   -6.25   -5.85   -4.89   -3.47   -1.74    0.26    2.72    6.02   10.52
+   330.0    0.00   -0.20   -0.71   -1.43   -2.24   -3.09   -3.96   -4.81   -5.57   -6.12   -6.26   -5.87   -4.92   -3.49   -1.75    0.28    2.76    6.06   10.55
+   335.0    0.00   -0.20   -0.72   -1.43   -2.25   -3.10   -3.96   -4.81   -5.58   -6.13   -6.28   -5.90   -4.95   -3.53   -1.77    0.27    2.77    6.07   10.53
+   340.0    0.00   -0.21   -0.72   -1.44   -2.26   -3.11   -3.96   -4.81   -5.58   -6.13   -6.30   -5.93   -4.99   -3.57   -1.81    0.25    2.76    6.05   10.47
+   345.0    0.00   -0.21   -0.73   -1.45   -2.26   -3.11   -3.96   -4.80   -5.57   -6.13   -6.31   -5.96   -5.04   -3.62   -1.85    0.22    2.72    6.01   10.39
+   350.0    0.00   -0.21   -0.73   -1.45   -2.27   -3.11   -3.95   -4.79   -5.56   -6.13   -6.32   -5.98   -5.07   -3.66   -1.89    0.18    2.69    5.94   10.29
+   355.0    0.00   -0.21   -0.73   -1.45   -2.27   -3.10   -3.94   -4.77   -5.54   -6.12   -6.32   -6.00   -5.10   -3.70   -1.92    0.15    2.65    5.88   10.19
+   360.0    0.00   -0.21   -0.73   -1.45   -2.26   -3.10   -3.93   -4.75   -5.52   -6.09   -6.31   -6.00   -5.11   -3.71   -1.94    0.13    2.62    5.83   10.12
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TRM29659.00     SCIT                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               5    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+Number of Calibrated Antennas GPS:      005                 COMMENT             
+Number of Individual Calibrations GPS:  010                 COMMENT             
+   G01                                                      START OF FREQUENCY  
+      1.16      0.75     85.99                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.39   -1.47   -2.98   -4.60   -6.09   -7.30   -8.21   -8.80   -9.04   -8.82   -8.01   -6.55   -4.47   -1.87    1.19    4.84    9.43   15.25
+     0.0    0.00   -0.34   -1.38   -2.86   -4.47   -5.96   -7.18   -8.08   -8.67   -8.88   -8.63   -7.79   -6.31   -4.26   -1.78    1.08    4.49    8.84   14.60
+     5.0    0.00   -0.34   -1.39   -2.88   -4.50   -5.99   -7.21   -8.10   -8.67   -8.88   -8.61   -7.77   -6.30   -4.26   -1.77    1.12    4.54    8.88   14.54
+    10.0    0.00   -0.35   -1.40   -2.90   -4.53   -6.03   -7.24   -8.13   -8.68   -8.87   -8.61   -7.77   -6.31   -4.27   -1.77    1.15    4.60    8.93   14.52
+    15.0    0.00   -0.36   -1.42   -2.93   -4.57   -6.07   -7.28   -8.16   -8.70   -8.88   -8.61   -7.77   -6.32   -4.28   -1.77    1.17    4.64    8.99   14.55
+    20.0    0.00   -0.36   -1.43   -2.95   -4.60   -6.11   -7.32   -8.19   -8.72   -8.89   -8.61   -7.78   -6.33   -4.29   -1.77    1.18    4.68    9.05   14.63
+    25.0    0.00   -0.37   -1.44   -2.97   -4.63   -6.14   -7.35   -8.22   -8.74   -8.90   -8.62   -7.78   -6.33   -4.29   -1.77    1.20    4.72    9.11   14.75
+    30.0    0.00   -0.37   -1.46   -2.99   -4.66   -6.17   -7.38   -8.24   -8.76   -8.91   -8.62   -7.79   -6.33   -4.29   -1.75    1.22    4.74    9.16   14.88
+    35.0    0.00   -0.38   -1.47   -3.01   -4.68   -6.20   -7.41   -8.26   -8.77   -8.92   -8.63   -7.79   -6.33   -4.27   -1.73    1.24    4.76    9.20   15.02
+    40.0    0.00   -0.38   -1.48   -3.03   -4.70   -6.22   -7.42   -8.27   -8.78   -8.93   -8.64   -7.79   -6.32   -4.25   -1.69    1.28    4.79    9.23   15.14
+    45.0    0.00   -0.39   -1.49   -3.04   -4.72   -6.23   -7.43   -8.28   -8.79   -8.95   -8.65   -7.80   -6.31   -4.22   -1.65    1.32    4.81    9.25   15.24
+    50.0    0.00   -0.40   -1.50   -3.06   -4.73   -6.24   -7.44   -8.28   -8.80   -8.96   -8.67   -7.81   -6.30   -4.19   -1.60    1.37    4.85    9.27   15.30
+    55.0    0.00   -0.40   -1.51   -3.07   -4.74   -6.25   -7.44   -8.28   -8.80   -8.97   -8.69   -7.83   -6.30   -4.16   -1.54    1.43    4.89    9.29   15.32
+    60.0    0.00   -0.41   -1.52   -3.08   -4.74   -6.24   -7.43   -8.28   -8.80   -8.98   -8.71   -7.85   -6.31   -4.14   -1.49    1.50    4.94    9.30   15.31
+    65.0    0.00   -0.41   -1.53   -3.08   -4.74   -6.24   -7.42   -8.27   -8.80   -9.00   -8.74   -7.88   -6.33   -4.13   -1.46    1.56    5.00    9.33   15.27
+    70.0    0.00   -0.42   -1.53   -3.09   -4.74   -6.23   -7.41   -8.26   -8.81   -9.02   -8.78   -7.93   -6.37   -4.15   -1.43    1.61    5.07    9.36   15.21
+    75.0    0.00   -0.42   -1.54   -3.09   -4.74   -6.22   -7.40   -8.25   -8.81   -9.04   -8.81   -7.97   -6.42   -4.18   -1.44    1.65    5.13    9.40   15.15
+    80.0    0.00   -0.42   -1.54   -3.09   -4.73   -6.21   -7.39   -8.25   -8.81   -9.06   -8.85   -8.03   -6.47   -4.23   -1.46    1.66    5.18    9.45   15.10
+    85.0    0.00   -0.43   -1.55   -3.09   -4.73   -6.20   -7.38   -8.24   -8.82   -9.08   -8.89   -8.08   -6.54   -4.30   -1.51    1.65    5.21    9.49   15.06
+    90.0    0.00   -0.43   -1.55   -3.09   -4.72   -6.19   -7.37   -8.24   -8.83   -9.10   -8.93   -8.13   -6.61   -4.38   -1.59    1.61    5.22    9.54   15.05
+    95.0    0.00   -0.43   -1.55   -3.09   -4.72   -6.19   -7.37   -8.25   -8.84   -9.12   -8.96   -8.18   -6.68   -4.47   -1.68    1.54    5.21    9.58   15.05
+   100.0    0.00   -0.44   -1.56   -3.09   -4.72   -6.19   -7.37   -8.25   -8.86   -9.14   -8.99   -8.23   -6.75   -4.56   -1.78    1.45    5.17    9.61   15.08
+   105.0    0.00   -0.44   -1.56   -3.09   -4.71   -6.18   -7.37   -8.27   -8.88   -9.17   -9.01   -8.26   -6.80   -4.65   -1.89    1.35    5.12    9.63   15.12
+   110.0    0.00   -0.44   -1.56   -3.09   -4.71   -6.19   -7.38   -8.28   -8.90   -9.19   -9.04   -8.29   -6.85   -4.72   -2.00    1.25    5.06    9.65   15.17
+   115.0    0.00   -0.45   -1.56   -3.09   -4.71   -6.19   -7.39   -8.30   -8.92   -9.21   -9.06   -8.32   -6.89   -4.79   -2.09    1.16    5.01    9.66   15.22
+   120.0    0.00   -0.45   -1.56   -3.09   -4.71   -6.19   -7.40   -8.31   -8.94   -9.23   -9.08   -8.34   -6.92   -4.84   -2.15    1.08    4.97    9.67   15.27
+   125.0    0.00   -0.45   -1.57   -3.09   -4.72   -6.20   -7.41   -8.33   -8.96   -9.25   -9.09   -8.35   -6.94   -4.86   -2.20    1.04    4.94    9.70   15.32
+   130.0    0.00   -0.45   -1.57   -3.09   -4.72   -6.20   -7.42   -8.34   -8.98   -9.27   -9.11   -8.36   -6.94   -4.87   -2.21    1.02    4.95    9.73   15.37
+   135.0    0.00   -0.45   -1.57   -3.10   -4.72   -6.20   -7.42   -8.35   -8.99   -9.28   -9.12   -8.36   -6.94   -4.87   -2.20    1.04    4.98    9.78   15.42
+   140.0    0.00   -0.45   -1.57   -3.10   -4.72   -6.21   -7.43   -8.36   -9.00   -9.29   -9.12   -8.36   -6.93   -4.85   -2.18    1.08    5.03    9.85   15.46
+   145.0    0.00   -0.45   -1.57   -3.10   -4.73   -6.21   -7.43   -8.36   -9.00   -9.29   -9.11   -8.35   -6.91   -4.82   -2.13    1.14    5.10    9.92   15.51
+   150.0    0.00   -0.45   -1.58   -3.10   -4.73   -6.21   -7.43   -8.35   -8.99   -9.27   -9.10   -8.33   -6.89   -4.78   -2.08    1.21    5.19   10.00   15.56
+   155.0    0.00   -0.45   -1.58   -3.11   -4.73   -6.21   -7.42   -8.34   -8.96   -9.24   -9.07   -8.30   -6.86   -4.75   -2.04    1.27    5.27   10.08   15.60
+   160.0    0.00   -0.45   -1.58   -3.11   -4.73   -6.21   -7.41   -8.32   -8.93   -9.21   -9.03   -8.26   -6.83   -4.72   -2.00    1.32    5.33   10.14   15.63
+   165.0    0.00   -0.45   -1.58   -3.11   -4.73   -6.21   -7.40   -8.30   -8.90   -9.16   -8.98   -8.22   -6.80   -4.70   -1.98    1.36    5.37   10.17   15.64
+   170.0    0.00   -0.45   -1.58   -3.11   -4.73   -6.20   -7.39   -8.27   -8.85   -9.10   -8.92   -8.17   -6.76   -4.68   -1.97    1.36    5.38   10.17   15.63
+   175.0    0.00   -0.45   -1.57   -3.11   -4.73   -6.19   -7.37   -8.24   -8.81   -9.05   -8.86   -8.12   -6.73   -4.67   -1.98    1.34    5.35   10.14   15.60
+   180.0    0.00   -0.45   -1.57   -3.10   -4.73   -6.19   -7.36   -8.21   -8.76   -8.99   -8.80   -8.07   -6.70   -4.67   -1.99    1.30    5.29   10.07   15.55
+   185.0    0.00   -0.45   -1.57   -3.10   -4.72   -6.18   -7.34   -8.18   -8.72   -8.94   -8.75   -8.02   -6.67   -4.66   -2.02    1.25    5.21    9.97   15.48
+   190.0    0.00   -0.44   -1.56   -3.10   -4.72   -6.17   -7.33   -8.16   -8.69   -8.90   -8.70   -7.98   -6.64   -4.65   -2.04    1.19    5.11    9.85   15.41
+   195.0    0.00   -0.44   -1.56   -3.09   -4.71   -6.16   -7.32   -8.15   -8.68   -8.88   -8.67   -7.94   -6.60   -4.63   -2.05    1.13    5.01    9.73   15.33
+   200.0    0.00   -0.44   -1.55   -3.08   -4.70   -6.15   -7.31   -8.15   -8.67   -8.87   -8.65   -7.91   -6.57   -4.60   -2.04    1.09    4.92    9.62   15.28
+   205.0    0.00   -0.43   -1.55   -3.07   -4.69   -6.14   -7.31   -8.15   -8.68   -8.87   -8.65   -7.89   -6.53   -4.55   -2.02    1.08    4.85    9.53   15.27
+   210.0    0.00   -0.43   -1.54   -3.06   -4.67   -6.13   -7.31   -8.16   -8.70   -8.89   -8.65   -7.87   -6.48   -4.49   -1.96    1.09    4.81    9.47   15.30
+   215.0    0.00   -0.42   -1.53   -3.05   -4.66   -6.13   -7.31   -8.17   -8.73   -8.92   -8.67   -7.86   -6.43   -4.42   -1.89    1.13    4.80    9.45   15.37
+   220.0    0.00   -0.42   -1.52   -3.03   -4.65   -6.12   -7.31   -8.19   -8.76   -8.96   -8.69   -7.85   -6.38   -4.33   -1.81    1.19    4.82    9.46   15.49
+   225.0    0.00   -0.41   -1.51   -3.02   -4.63   -6.11   -7.31   -8.21   -8.79   -9.00   -8.71   -7.83   -6.32   -4.25   -1.71    1.26    4.87    9.52   15.65
+   230.0    0.00   -0.41   -1.50   -3.00   -4.62   -6.10   -7.31   -8.23   -8.82   -9.03   -8.73   -7.82   -6.27   -4.16   -1.62    1.34    4.93    9.59   15.82
+   235.0    0.00   -0.40   -1.48   -2.99   -4.60   -6.09   -7.31   -8.24   -8.85   -9.06   -8.74   -7.81   -6.23   -4.09   -1.54    1.41    4.99    9.68   16.00
+   240.0    0.00   -0.39   -1.47   -2.97   -4.59   -6.07   -7.31   -8.25   -8.87   -9.07   -8.75   -7.80   -6.19   -4.04   -1.48    1.47    5.05    9.76   16.15
+   245.0    0.00   -0.39   -1.46   -2.96   -4.57   -6.06   -7.31   -8.26   -8.87   -9.08   -8.76   -7.79   -6.17   -4.02   -1.46    1.50    5.09    9.83   16.25
+   250.0    0.00   -0.38   -1.45   -2.94   -4.55   -6.05   -7.30   -8.25   -8.87   -9.08   -8.76   -7.79   -6.18   -4.02   -1.46    1.50    5.11    9.87   16.29
+   255.0    0.00   -0.38   -1.44   -2.93   -4.54   -6.03   -7.29   -8.24   -8.87   -9.08   -8.76   -7.80   -6.20   -4.06   -1.51    1.46    5.09    9.87   16.25
+   260.0    0.00   -0.37   -1.43   -2.91   -4.52   -6.02   -7.27   -8.23   -8.85   -9.07   -8.77   -7.83   -6.26   -4.13   -1.58    1.40    5.05    9.83   16.15
+   265.0    0.00   -0.36   -1.42   -2.90   -4.51   -6.01   -7.26   -8.21   -8.84   -9.07   -8.78   -7.88   -6.33   -4.23   -1.68    1.31    4.99    9.76   15.98
+   270.0    0.00   -0.36   -1.41   -2.88   -4.49   -5.99   -7.24   -8.19   -8.83   -9.07   -8.81   -7.93   -6.43   -4.35   -1.81    1.21    4.90    9.66   15.76
+   275.0    0.00   -0.35   -1.39   -2.87   -4.48   -5.98   -7.22   -8.18   -8.82   -9.07   -8.84   -8.01   -6.53   -4.48   -1.94    1.09    4.81    9.54   15.53
+   280.0    0.00   -0.35   -1.39   -2.86   -4.47   -5.96   -7.21   -8.16   -8.81   -9.09   -8.88   -8.09   -6.65   -4.61   -2.07    0.98    4.70    9.41   15.30
+   285.0    0.00   -0.34   -1.38   -2.85   -4.45   -5.95   -7.19   -8.15   -8.81   -9.10   -8.93   -8.17   -6.76   -4.74   -2.19    0.88    4.61    9.29   15.10
+   290.0    0.00   -0.34   -1.37   -2.84   -4.44   -5.93   -7.18   -8.15   -8.81   -9.13   -8.98   -8.24   -6.85   -4.84   -2.29    0.79    4.52    9.18   14.94
+   295.0    0.00   -0.34   -1.36   -2.82   -4.43   -5.92   -7.17   -8.14   -8.82   -9.15   -9.02   -8.30   -6.92   -4.91   -2.36    0.72    4.44    9.09   14.85
+   300.0    0.00   -0.33   -1.35   -2.82   -4.42   -5.91   -7.16   -8.13   -8.82   -9.17   -9.06   -8.35   -6.97   -4.95   -2.40    0.67    4.37    9.01   14.82
+   305.0    0.00   -0.33   -1.35   -2.81   -4.41   -5.90   -7.15   -8.13   -8.82   -9.18   -9.08   -8.37   -6.98   -4.96   -2.40    0.64    4.32    8.96   14.85
+   310.0    0.00   -0.33   -1.34   -2.80   -4.40   -5.88   -7.14   -8.12   -8.82   -9.19   -9.08   -8.36   -6.96   -4.93   -2.38    0.64    4.28    8.92   14.91
+   315.0    0.00   -0.33   -1.34   -2.79   -4.39   -5.88   -7.13   -8.11   -8.82   -9.18   -9.06   -8.33   -6.92   -4.87   -2.33    0.65    4.26    8.90   14.99
+   320.0    0.00   -0.32   -1.34   -2.79   -4.38   -5.87   -7.12   -8.10   -8.80   -9.16   -9.03   -8.28   -6.85   -4.79   -2.27    0.68    4.24    8.88   15.07
+   325.0    0.00   -0.32   -1.34   -2.79   -4.38   -5.86   -7.11   -8.09   -8.78   -9.13   -8.98   -8.21   -6.76   -4.70   -2.19    0.72    4.24    8.86   15.13
+   330.0    0.00   -0.32   -1.34   -2.79   -4.38   -5.86   -7.10   -8.08   -8.76   -9.09   -8.93   -8.13   -6.66   -4.60   -2.10    0.77    4.25    8.84   15.15
+   335.0    0.00   -0.33   -1.34   -2.79   -4.38   -5.86   -7.10   -8.07   -8.74   -9.05   -8.86   -8.05   -6.57   -4.50   -2.02    0.83    4.26    8.83   15.12
+   340.0    0.00   -0.33   -1.34   -2.80   -4.39   -5.87   -7.11   -8.06   -8.71   -9.00   -8.80   -7.97   -6.48   -4.42   -1.94    0.88    4.29    8.81   15.05
+   345.0    0.00   -0.33   -1.35   -2.81   -4.41   -5.89   -7.11   -8.05   -8.69   -8.96   -8.74   -7.91   -6.41   -4.35   -1.88    0.94    4.33    8.80   14.95
+   350.0    0.00   -0.33   -1.36   -2.83   -4.43   -5.91   -7.13   -8.06   -8.68   -8.93   -8.69   -7.85   -6.36   -4.30   -1.83    0.99    4.38    8.80   14.83
+   355.0    0.00   -0.34   -1.37   -2.84   -4.45   -5.93   -7.15   -8.07   -8.67   -8.90   -8.66   -7.81   -6.32   -4.27   -1.80    1.04    4.43    8.81   14.71
+   360.0    0.00   -0.34   -1.38   -2.86   -4.47   -5.96   -7.18   -8.08   -8.67   -8.88   -8.63   -7.79   -6.31   -4.26   -1.78    1.08    4.49    8.84   14.60
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.63     -0.62    118.35                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.16   -0.60   -1.24   -1.99   -2.77   -3.54   -4.29   -4.99   -5.54   -5.82   -5.70   -5.05   -3.82   -2.02    0.34    3.25    6.76   10.80
+     0.0    0.00   -0.14   -0.55   -1.16   -1.86   -2.61   -3.39   -4.16   -4.89   -5.48   -5.79   -5.68   -5.09   -4.00   -2.38   -0.17    2.74    6.37   10.46
+     5.0    0.00   -0.14   -0.56   -1.17   -1.87   -2.63   -3.40   -4.19   -4.92   -5.51   -5.81   -5.70   -5.11   -4.02   -2.42   -0.22    2.69    6.34   10.43
+    10.0    0.00   -0.15   -0.58   -1.18   -1.89   -2.64   -3.42   -4.21   -4.95   -5.54   -5.82   -5.70   -5.11   -4.03   -2.44   -0.25    2.67    6.36   10.46
+    15.0    0.00   -0.16   -0.59   -1.20   -1.90   -2.66   -3.44   -4.24   -4.98   -5.56   -5.84   -5.70   -5.10   -4.02   -2.43   -0.23    2.71    6.42   10.55
+    20.0    0.00   -0.17   -0.60   -1.21   -1.91   -2.67   -3.46   -4.27   -5.01   -5.58   -5.84   -5.69   -5.07   -3.98   -2.39   -0.18    2.79    6.54   10.70
+    25.0    0.00   -0.17   -0.61   -1.22   -1.93   -2.68   -3.48   -4.29   -5.03   -5.59   -5.84   -5.67   -5.04   -3.93   -2.31   -0.08    2.92    6.71   10.89
+    30.0    0.00   -0.18   -0.62   -1.23   -1.94   -2.69   -3.49   -4.30   -5.04   -5.60   -5.83   -5.64   -4.99   -3.86   -2.22    0.05    3.09    6.92   11.12
+    35.0    0.00   -0.19   -0.63   -1.24   -1.95   -2.70   -3.50   -4.30   -5.04   -5.59   -5.81   -5.61   -4.94   -3.79   -2.11    0.20    3.29    7.15   11.35
+    40.0    0.00   -0.19   -0.64   -1.25   -1.95   -2.71   -3.49   -4.29   -5.02   -5.57   -5.79   -5.58   -4.89   -3.72   -2.00    0.37    3.50    7.38   11.57
+    45.0    0.00   -0.20   -0.65   -1.26   -1.96   -2.71   -3.49   -4.28   -5.00   -5.54   -5.76   -5.55   -4.85   -3.65   -1.89    0.52    3.69    7.57   11.74
+    50.0    0.00   -0.20   -0.66   -1.27   -1.97   -2.71   -3.48   -4.25   -4.97   -5.51   -5.73   -5.52   -4.82   -3.60   -1.80    0.65    3.85    7.72   11.86
+    55.0    0.00   -0.21   -0.67   -1.28   -1.97   -2.70   -3.46   -4.23   -4.94   -5.47   -5.70   -5.51   -4.81   -3.57   -1.74    0.75    3.95    7.81   11.91
+    60.0    0.00   -0.21   -0.68   -1.29   -1.98   -2.70   -3.45   -4.21   -4.91   -5.44   -5.68   -5.50   -4.81   -3.56   -1.71    0.79    3.99    7.81   11.89
+    65.0    0.00   -0.22   -0.69   -1.30   -1.99   -2.71   -3.44   -4.19   -4.88   -5.42   -5.67   -5.50   -4.82   -3.57   -1.72    0.78    3.96    7.73   11.79
+    70.0    0.00   -0.22   -0.69   -1.31   -2.00   -2.71   -3.44   -4.17   -4.86   -5.41   -5.67   -5.52   -4.85   -3.61   -1.76    0.72    3.86    7.58   11.63
+    75.0    0.00   -0.23   -0.70   -1.32   -2.01   -2.72   -3.44   -4.17   -4.86   -5.40   -5.67   -5.54   -4.88   -3.66   -1.83    0.61    3.70    7.36   11.43
+    80.0    0.00   -0.23   -0.71   -1.33   -2.02   -2.73   -3.45   -4.18   -4.86   -5.41   -5.69   -5.56   -4.93   -3.72   -1.93    0.47    3.49    7.11   11.20
+    85.0    0.00   -0.23   -0.71   -1.34   -2.03   -2.75   -3.47   -4.19   -4.87   -5.42   -5.70   -5.59   -4.97   -3.79   -2.03    0.32    3.26    6.83   10.97
+    90.0    0.00   -0.23   -0.72   -1.35   -2.05   -2.77   -3.49   -4.21   -4.89   -5.44   -5.72   -5.61   -5.00   -3.84   -2.12    0.16    3.04    6.56   10.75
+    95.0    0.00   -0.24   -0.72   -1.36   -2.06   -2.79   -3.51   -4.23   -4.91   -5.46   -5.74   -5.63   -5.03   -3.89   -2.21    0.02    2.84    6.32   10.55
+   100.0    0.00   -0.24   -0.72   -1.37   -2.08   -2.81   -3.54   -4.26   -4.93   -5.48   -5.76   -5.65   -5.05   -3.92   -2.27   -0.08    2.69    6.14   10.39
+   105.0    0.00   -0.24   -0.73   -1.37   -2.09   -2.82   -3.56   -4.28   -4.95   -5.49   -5.77   -5.65   -5.06   -3.94   -2.30   -0.14    2.59    6.01   10.26
+   110.0    0.00   -0.24   -0.73   -1.38   -2.10   -2.84   -3.58   -4.30   -4.97   -5.51   -5.78   -5.66   -5.05   -3.93   -2.30   -0.16    2.55    5.95   10.16
+   115.0    0.00   -0.24   -0.73   -1.38   -2.11   -2.85   -3.59   -4.32   -4.98   -5.51   -5.78   -5.65   -5.04   -3.91   -2.27   -0.12    2.58    5.95   10.09
+   120.0    0.00   -0.24   -0.73   -1.39   -2.12   -2.87   -3.61   -4.33   -4.99   -5.52   -5.78   -5.65   -5.02   -3.88   -2.22   -0.06    2.66    6.00   10.04
+   125.0    0.00   -0.23   -0.73   -1.39   -2.12   -2.88   -3.62   -4.34   -5.00   -5.52   -5.78   -5.64   -5.00   -3.84   -2.16    0.04    2.77    6.08    9.99
+   130.0    0.00   -0.23   -0.73   -1.39   -2.13   -2.88   -3.63   -4.34   -5.00   -5.52   -5.78   -5.63   -4.99   -3.80   -2.09    0.14    2.89    6.18    9.95
+   135.0    0.00   -0.23   -0.72   -1.39   -2.13   -2.89   -3.64   -4.35   -5.01   -5.53   -5.78   -5.63   -4.97   -3.77   -2.03    0.24    3.01    6.28    9.91
+   140.0    0.00   -0.23   -0.72   -1.39   -2.14   -2.90   -3.65   -4.36   -5.02   -5.53   -5.78   -5.63   -4.96   -3.75   -1.98    0.31    3.11    6.36    9.85
+   145.0    0.00   -0.22   -0.72   -1.39   -2.14   -2.91   -3.66   -4.38   -5.03   -5.55   -5.79   -5.63   -4.96   -3.74   -1.95    0.36    3.18    6.41    9.79
+   150.0    0.00   -0.22   -0.71   -1.39   -2.15   -2.92   -3.68   -4.40   -5.05   -5.56   -5.81   -5.65   -4.97   -3.74   -1.95    0.38    3.21    6.43    9.73
+   155.0    0.00   -0.21   -0.71   -1.39   -2.16   -2.94   -3.69   -4.42   -5.07   -5.58   -5.83   -5.67   -4.99   -3.76   -1.96    0.37    3.20    6.42    9.68
+   160.0    0.00   -0.21   -0.70   -1.39   -2.16   -2.95   -3.72   -4.44   -5.10   -5.61   -5.85   -5.69   -5.01   -3.78   -1.99    0.33    3.16    6.39    9.64
+   165.0    0.00   -0.20   -0.69   -1.38   -2.17   -2.96   -3.74   -4.47   -5.12   -5.63   -5.87   -5.71   -5.04   -3.81   -2.04    0.28    3.11    6.35    9.63
+   170.0    0.00   -0.20   -0.69   -1.38   -2.17   -2.98   -3.76   -4.49   -5.14   -5.65   -5.89   -5.73   -5.06   -3.85   -2.08    0.23    3.05    6.31    9.66
+   175.0    0.00   -0.19   -0.68   -1.38   -2.18   -2.99   -3.77   -4.51   -5.16   -5.67   -5.91   -5.75   -5.09   -3.87   -2.11    0.19    3.02    6.30    9.74
+   180.0    0.00   -0.19   -0.67   -1.37   -2.18   -3.00   -3.78   -4.52   -5.17   -5.68   -5.92   -5.77   -5.11   -3.89   -2.12    0.18    3.02    6.33    9.86
+   185.0    0.00   -0.18   -0.66   -1.36   -2.18   -3.00   -3.79   -4.52   -5.17   -5.68   -5.93   -5.79   -5.12   -3.90   -2.11    0.21    3.06    6.41   10.05
+   190.0    0.00   -0.17   -0.65   -1.36   -2.17   -3.00   -3.79   -4.52   -5.17   -5.68   -5.94   -5.80   -5.13   -3.89   -2.08    0.27    3.15    6.54   10.30
+   195.0    0.00   -0.17   -0.64   -1.35   -2.16   -3.00   -3.78   -4.51   -5.16   -5.67   -5.94   -5.80   -5.13   -3.87   -2.01    0.38    3.29    6.73   10.60
+   200.0    0.00   -0.16   -0.63   -1.33   -2.15   -2.99   -3.77   -4.49   -5.14   -5.66   -5.94   -5.81   -5.13   -3.83   -1.93    0.51    3.47    6.95   10.94
+   205.0    0.00   -0.15   -0.62   -1.32   -2.14   -2.97   -3.75   -4.47   -5.12   -5.65   -5.94   -5.81   -5.12   -3.79   -1.83    0.67    3.67    7.21   11.32
+   210.0    0.00   -0.14   -0.60   -1.31   -2.13   -2.96   -3.74   -4.45   -5.10   -5.64   -5.93   -5.82   -5.11   -3.74   -1.73    0.83    3.88    7.47   11.70
+   215.0    0.00   -0.14   -0.59   -1.29   -2.11   -2.94   -3.72   -4.43   -5.09   -5.63   -5.93   -5.82   -5.10   -3.70   -1.64    0.98    4.08    7.71   12.08
+   220.0    0.00   -0.13   -0.58   -1.27   -2.09   -2.92   -3.70   -4.41   -5.07   -5.62   -5.94   -5.82   -5.10   -3.66   -1.56    1.10    4.24    7.92   12.42
+   225.0    0.00   -0.12   -0.56   -1.25   -2.07   -2.90   -3.68   -4.40   -5.06   -5.62   -5.94   -5.83   -5.09   -3.64   -1.50    1.19    4.35    8.08   12.71
+   230.0    0.00   -0.11   -0.55   -1.23   -2.04   -2.87   -3.66   -4.38   -5.06   -5.62   -5.95   -5.84   -5.09   -3.62   -1.47    1.23    4.40    8.17   12.91
+   235.0    0.00   -0.11   -0.54   -1.21   -2.02   -2.85   -3.64   -4.37   -5.05   -5.62   -5.95   -5.84   -5.10   -3.63   -1.48    1.22    4.39    8.18   13.01
+   240.0    0.00   -0.10   -0.52   -1.19   -2.00   -2.83   -3.62   -4.36   -5.05   -5.63   -5.96   -5.85   -5.11   -3.65   -1.52    1.16    4.31    8.10   13.01
+   245.0    0.00   -0.10   -0.51   -1.17   -1.97   -2.80   -3.60   -4.35   -5.04   -5.63   -5.96   -5.86   -5.13   -3.69   -1.59    1.05    4.17    7.95   12.89
+   250.0    0.00   -0.09   -0.50   -1.15   -1.95   -2.78   -3.58   -4.34   -5.04   -5.62   -5.97   -5.87   -5.16   -3.75   -1.69    0.91    3.99    7.73   12.66
+   255.0    0.00   -0.09   -0.49   -1.14   -1.93   -2.75   -3.56   -4.32   -5.03   -5.62   -5.96   -5.88   -5.19   -3.81   -1.80    0.75    3.77    7.46   12.34
+   260.0    0.00   -0.08   -0.48   -1.12   -1.91   -2.73   -3.54   -4.30   -5.01   -5.61   -5.96   -5.88   -5.21   -3.88   -1.91    0.57    3.53    7.16   11.95
+   265.0    0.00   -0.08   -0.47   -1.11   -1.89   -2.71   -3.52   -4.29   -5.00   -5.60   -5.95   -5.88   -5.24   -3.94   -2.03    0.40    3.30    6.85   11.51
+   270.0    0.00   -0.08   -0.46   -1.09   -1.87   -2.69   -3.50   -4.27   -4.98   -5.58   -5.94   -5.88   -5.26   -4.00   -2.13    0.24    3.09    6.55   11.07
+   275.0    0.00   -0.07   -0.46   -1.08   -1.85   -2.67   -3.48   -4.25   -4.97   -5.57   -5.92   -5.88   -5.27   -4.04   -2.21    0.11    2.90    6.29   10.65
+   280.0    0.00   -0.07   -0.45   -1.07   -1.84   -2.66   -3.46   -4.24   -4.96   -5.55   -5.91   -5.86   -5.27   -4.07   -2.27    0.02    2.76    6.08   10.29
+   285.0    0.00   -0.07   -0.45   -1.07   -1.83   -2.64   -3.45   -4.23   -4.94   -5.54   -5.89   -5.85   -5.26   -4.07   -2.31   -0.05    2.67    5.94   10.01
+   290.0    0.00   -0.07   -0.45   -1.06   -1.82   -2.63   -3.44   -4.22   -4.94   -5.53   -5.87   -5.82   -5.24   -4.06   -2.32   -0.07    2.63    5.86    9.82
+   295.0    0.00   -0.07   -0.45   -1.06   -1.82   -2.63   -3.43   -4.21   -4.93   -5.52   -5.85   -5.80   -5.21   -4.04   -2.30   -0.06    2.63    5.85    9.74
+   300.0    0.00   -0.07   -0.45   -1.06   -1.81   -2.62   -3.43   -4.21   -4.92   -5.51   -5.84   -5.76   -5.17   -4.00   -2.26   -0.03    2.67    5.90    9.75
+   305.0    0.00   -0.08   -0.45   -1.06   -1.81   -2.62   -3.42   -4.20   -4.92   -5.50   -5.82   -5.73   -5.13   -3.95   -2.22    0.02    2.74    5.99    9.85
+   310.0    0.00   -0.08   -0.46   -1.07   -1.81   -2.61   -3.42   -4.20   -4.91   -5.49   -5.80   -5.70   -5.08   -3.90   -2.17    0.08    2.82    6.12   10.00
+   315.0    0.00   -0.08   -0.46   -1.07   -1.81   -2.61   -3.41   -4.19   -4.90   -5.48   -5.78   -5.67   -5.04   -3.85   -2.12    0.13    2.91    6.26   10.18
+   320.0    0.00   -0.09   -0.47   -1.08   -1.82   -2.61   -3.40   -4.18   -4.89   -5.46   -5.76   -5.64   -5.01   -3.82   -2.08    0.18    2.99    6.39   10.36
+   325.0    0.00   -0.09   -0.48   -1.09   -1.82   -2.60   -3.39   -4.17   -4.88   -5.45   -5.75   -5.63   -4.99   -3.80   -2.06    0.21    3.05    6.50   10.52
+   330.0    0.00   -0.10   -0.49   -1.09   -1.82   -2.60   -3.38   -4.16   -4.87   -5.44   -5.74   -5.61   -4.98   -3.79   -2.06    0.21    3.07    6.58   10.63
+   335.0    0.00   -0.10   -0.50   -1.10   -1.83   -2.60   -3.37   -4.14   -4.86   -5.43   -5.73   -5.61   -4.98   -3.80   -2.08    0.19    3.07    6.61   10.69
+   340.0    0.00   -0.11   -0.51   -1.11   -1.83   -2.59   -3.37   -4.14   -4.85   -5.43   -5.73   -5.62   -4.99   -3.83   -2.12    0.14    3.04    6.61   10.70
+   345.0    0.00   -0.12   -0.52   -1.12   -1.84   -2.59   -3.36   -4.13   -4.85   -5.43   -5.74   -5.63   -5.02   -3.87   -2.18    0.08    2.98    6.57   10.66
+   350.0    0.00   -0.12   -0.53   -1.13   -1.84   -2.60   -3.37   -4.13   -4.86   -5.44   -5.75   -5.65   -5.04   -3.92   -2.25   -0.01    2.90    6.50   10.59
+   355.0    0.00   -0.13   -0.54   -1.15   -1.85   -2.60   -3.37   -4.14   -4.87   -5.46   -5.77   -5.66   -5.07   -3.96   -2.32   -0.09    2.81    6.43   10.52
+   360.0    0.00   -0.14   -0.55   -1.16   -1.86   -2.61   -3.39   -4.16   -4.89   -5.48   -5.79   -5.68   -5.09   -4.00   -2.38   -0.17    2.74    6.37   10.46
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TRM29659.00     SNOW                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               2    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+Number of Calibrated Antennas GPS:      002                 COMMENT             
+Number of Individual Calibrations GPS:  014                 COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.04      0.76     91.41                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.23   -0.92   -1.98   -3.33   -4.83   -6.35   -7.71   -8.76   -9.33   -9.32   -8.64   -7.27   -5.22   -2.52    0.81    4.76    9.26   14.10
+     0.0    0.00   -0.22   -0.90   -1.97   -3.34   -4.87   -6.38   -7.68   -8.61   -9.05   -8.92   -8.19   -6.83   -4.82   -2.10    1.37    5.52   10.08   14.53
+     5.0    0.00   -0.22   -0.90   -1.97   -3.34   -4.86   -6.37   -7.68   -8.62   -9.06   -8.93   -8.19   -6.84   -4.84   -2.16    1.26    5.36    9.90   14.39
+    10.0    0.00   -0.22   -0.90   -1.97   -3.33   -4.86   -6.37   -7.69   -8.64   -9.09   -8.96   -8.22   -6.86   -4.88   -2.23    1.12    5.16    9.69   14.24
+    15.0    0.00   -0.22   -0.90   -1.96   -3.33   -4.85   -6.37   -7.71   -8.67   -9.14   -9.01   -8.26   -6.90   -4.93   -2.32    0.97    4.95    9.46   14.10
+    20.0    0.00   -0.22   -0.89   -1.96   -3.33   -4.85   -6.38   -7.72   -8.71   -9.20   -9.08   -8.33   -6.96   -4.99   -2.41    0.82    4.74    9.25   13.98
+    25.0    0.00   -0.22   -0.89   -1.96   -3.32   -4.85   -6.38   -7.75   -8.76   -9.27   -9.16   -8.41   -7.03   -5.06   -2.50    0.69    4.56    9.06   13.88
+    30.0    0.00   -0.22   -0.89   -1.96   -3.32   -4.85   -6.39   -7.77   -8.81   -9.34   -9.25   -8.50   -7.12   -5.14   -2.59    0.57    4.41    8.91   13.81
+    35.0    0.00   -0.22   -0.90   -1.96   -3.32   -4.85   -6.39   -7.79   -8.86   -9.41   -9.34   -8.60   -7.21   -5.22   -2.67    0.48    4.30    8.80   13.75
+    40.0    0.00   -0.22   -0.90   -1.96   -3.32   -4.85   -6.40   -7.81   -8.90   -9.48   -9.43   -8.70   -7.31   -5.30   -2.73    0.42    4.24    8.74   13.72
+    45.0    0.00   -0.22   -0.90   -1.96   -3.32   -4.85   -6.41   -7.83   -8.93   -9.54   -9.52   -8.80   -7.40   -5.38   -2.79    0.38    4.21    8.71   13.69
+    50.0    0.00   -0.22   -0.90   -1.96   -3.32   -4.85   -6.41   -7.84   -8.96   -9.58   -9.58   -8.88   -7.48   -5.45   -2.84    0.36    4.21    8.72   13.67
+    55.0    0.00   -0.22   -0.90   -1.97   -3.32   -4.85   -6.41   -7.85   -8.97   -9.61   -9.63   -8.94   -7.55   -5.52   -2.88    0.36    4.23    8.74   13.65
+    60.0    0.00   -0.22   -0.90   -1.97   -3.33   -4.86   -6.42   -7.85   -8.98   -9.63   -9.66   -8.99   -7.61   -5.57   -2.91    0.35    4.25    8.77   13.64
+    65.0    0.00   -0.22   -0.90   -1.98   -3.33   -4.86   -6.42   -7.85   -8.97   -9.63   -9.66   -9.01   -7.64   -5.60   -2.94    0.35    4.27    8.79   13.63
+    70.0    0.00   -0.22   -0.91   -1.98   -3.34   -4.87   -6.42   -7.84   -8.96   -9.61   -9.66   -9.01   -7.66   -5.63   -2.96    0.34    4.28    8.80   13.61
+    75.0    0.00   -0.22   -0.91   -1.98   -3.34   -4.87   -6.42   -7.83   -8.94   -9.59   -9.63   -8.99   -7.65   -5.64   -2.97    0.33    4.28    8.81   13.61
+    80.0    0.00   -0.23   -0.91   -1.98   -3.34   -4.87   -6.41   -7.82   -8.92   -9.56   -9.60   -8.97   -7.64   -5.63   -2.98    0.32    4.27    8.80   13.61
+    85.0    0.00   -0.23   -0.91   -1.98   -3.35   -4.87   -6.41   -7.80   -8.90   -9.53   -9.57   -8.93   -7.61   -5.61   -2.97    0.32    4.26    8.79   13.62
+    90.0    0.00   -0.23   -0.91   -1.98   -3.34   -4.86   -6.40   -7.79   -8.87   -9.50   -9.53   -8.90   -7.58   -5.59   -2.96    0.32    4.26    8.79   13.64
+    95.0    0.00   -0.23   -0.91   -1.98   -3.34   -4.85   -6.38   -7.77   -8.85   -9.47   -9.50   -8.86   -7.54   -5.56   -2.93    0.34    4.27    8.80   13.69
+   100.0    0.00   -0.23   -0.91   -1.98   -3.33   -4.84   -6.37   -7.75   -8.82   -9.44   -9.47   -8.83   -7.51   -5.51   -2.88    0.38    4.30    8.83   13.75
+   105.0    0.00   -0.23   -0.91   -1.97   -3.32   -4.83   -6.35   -7.73   -8.80   -9.42   -9.44   -8.81   -7.47   -5.47   -2.82    0.45    4.36    8.88   13.84
+   110.0    0.00   -0.23   -0.91   -1.97   -3.31   -4.81   -6.33   -7.70   -8.77   -9.39   -9.42   -8.78   -7.44   -5.42   -2.75    0.53    4.45    8.97   13.95
+   115.0    0.00   -0.23   -0.90   -1.96   -3.30   -4.79   -6.30   -7.67   -8.75   -9.37   -9.40   -8.76   -7.40   -5.36   -2.67    0.64    4.56    9.08   14.07
+   120.0    0.00   -0.23   -0.90   -1.96   -3.29   -4.78   -6.28   -7.65   -8.72   -9.34   -9.38   -8.73   -7.36   -5.30   -2.58    0.76    4.70    9.22   14.22
+   125.0    0.00   -0.23   -0.90   -1.95   -3.28   -4.76   -6.26   -7.62   -8.69   -9.32   -9.35   -8.70   -7.32   -5.23   -2.48    0.89    4.85    9.38   14.38
+   130.0    0.00   -0.23   -0.90   -1.95   -3.27   -4.75   -6.24   -7.60   -8.67   -9.28   -9.31   -8.65   -7.26   -5.16   -2.38    1.02    5.00    9.54   14.54
+   135.0    0.00   -0.23   -0.90   -1.94   -3.26   -4.73   -6.22   -7.58   -8.64   -9.25   -9.27   -8.60   -7.20   -5.08   -2.28    1.14    5.15    9.69   14.70
+   140.0    0.00   -0.23   -0.90   -1.94   -3.26   -4.73   -6.21   -7.56   -8.61   -9.21   -9.22   -8.54   -7.13   -5.00   -2.18    1.26    5.28    9.83   14.84
+   145.0    0.00   -0.23   -0.90   -1.94   -3.26   -4.73   -6.21   -7.55   -8.59   -9.17   -9.17   -8.48   -7.06   -4.92   -2.10    1.35    5.38    9.95   14.96
+   150.0    0.00   -0.23   -0.90   -1.94   -3.26   -4.73   -6.21   -7.54   -8.57   -9.14   -9.12   -8.41   -6.99   -4.85   -2.02    1.43    5.46   10.03   15.03
+   155.0    0.00   -0.23   -0.90   -1.94   -3.26   -4.73   -6.22   -7.54   -8.56   -9.11   -9.07   -8.35   -6.92   -4.78   -1.97    1.48    5.51   10.07   15.06
+   160.0    0.00   -0.24   -0.91   -1.95   -3.27   -4.74   -6.23   -7.55   -8.55   -9.09   -9.03   -8.31   -6.87   -4.74   -1.93    1.51    5.53   10.07   15.03
+   165.0    0.00   -0.24   -0.91   -1.95   -3.28   -4.76   -6.24   -7.56   -8.56   -9.08   -9.01   -8.28   -6.84   -4.71   -1.91    1.52    5.51   10.02   14.94
+   170.0    0.00   -0.24   -0.91   -1.96   -3.29   -4.77   -6.25   -7.57   -8.57   -9.08   -9.01   -8.27   -6.83   -4.70   -1.91    1.50    5.47    9.93   14.79
+   175.0    0.00   -0.24   -0.92   -1.97   -3.30   -4.78   -6.27   -7.59   -8.58   -9.10   -9.03   -8.29   -6.85   -4.72   -1.93    1.46    5.39    9.80   14.59
+   180.0    0.00   -0.24   -0.92   -1.98   -3.31   -4.80   -6.28   -7.60   -8.60   -9.13   -9.06   -8.33   -6.89   -4.76   -1.98    1.40    5.29    9.64   14.35
+   185.0    0.00   -0.24   -0.93   -1.99   -3.33   -4.81   -6.30   -7.62   -8.62   -9.16   -9.11   -8.39   -6.96   -4.82   -2.04    1.32    5.17    9.46   14.10
+   190.0    0.00   -0.25   -0.94   -2.00   -3.34   -4.82   -6.31   -7.64   -8.65   -9.21   -9.17   -8.47   -7.04   -4.91   -2.13    1.21    5.03    9.26   13.84
+   195.0    0.00   -0.25   -0.94   -2.01   -3.35   -4.84   -6.32   -7.65   -8.68   -9.25   -9.24   -8.55   -7.13   -5.00   -2.22    1.10    4.88    9.07   13.60
+   200.0    0.00   -0.25   -0.95   -2.02   -3.36   -4.85   -6.33   -7.67   -8.71   -9.30   -9.31   -8.64   -7.23   -5.10   -2.33    0.97    4.73    8.89   13.41
+   205.0    0.00   -0.25   -0.95   -2.03   -3.37   -4.86   -6.34   -7.68   -8.73   -9.34   -9.37   -8.72   -7.32   -5.20   -2.45    0.84    4.58    8.73   13.27
+   210.0    0.00   -0.25   -0.96   -2.04   -3.38   -4.87   -6.36   -7.70   -8.76   -9.38   -9.43   -8.79   -7.40   -5.30   -2.56    0.72    4.45    8.61   13.20
+   215.0    0.00   -0.26   -0.96   -2.04   -3.39   -4.88   -6.37   -7.72   -8.78   -9.41   -9.47   -8.84   -7.47   -5.38   -2.66    0.60    4.34    8.53   13.20
+   220.0    0.00   -0.26   -0.97   -2.05   -3.40   -4.89   -6.38   -7.73   -8.80   -9.44   -9.50   -8.88   -7.52   -5.45   -2.75    0.51    4.25    8.51   13.26
+   225.0    0.00   -0.26   -0.97   -2.06   -3.41   -4.90   -6.39   -7.74   -8.82   -9.46   -9.52   -8.91   -7.56   -5.50   -2.81    0.43    4.21    8.53   13.38
+   230.0    0.00   -0.26   -0.97   -2.06   -3.42   -4.91   -6.40   -7.76   -8.83   -9.46   -9.53   -8.92   -7.58   -5.54   -2.86    0.39    4.20    8.59   13.54
+   235.0    0.00   -0.26   -0.97   -2.07   -3.42   -4.92   -6.41   -7.77   -8.83   -9.47   -9.53   -8.91   -7.58   -5.55   -2.89    0.37    4.23    8.69   13.70
+   240.0    0.00   -0.26   -0.97   -2.07   -3.43   -4.92   -6.42   -7.77   -8.84   -9.47   -9.52   -8.91   -7.58   -5.56   -2.89    0.39    4.28    8.81   13.86
+   245.0    0.00   -0.26   -0.97   -2.07   -3.43   -4.92   -6.42   -7.77   -8.84   -9.46   -9.51   -8.89   -7.57   -5.55   -2.88    0.42    4.36    8.94   14.00
+   250.0    0.00   -0.26   -0.97   -2.06   -3.42   -4.92   -6.42   -7.77   -8.83   -9.45   -9.50   -8.88   -7.56   -5.54   -2.86    0.47    4.45    9.06   14.09
+   255.0    0.00   -0.26   -0.97   -2.06   -3.42   -4.91   -6.41   -7.77   -8.83   -9.45   -9.49   -8.87   -7.55   -5.52   -2.83    0.53    4.54    9.15   14.13
+   260.0    0.00   -0.26   -0.97   -2.05   -3.41   -4.90   -6.40   -7.76   -8.82   -9.44   -9.48   -8.86   -7.53   -5.50   -2.79    0.58    4.61    9.21   14.11
+   265.0    0.00   -0.25   -0.96   -2.04   -3.40   -4.89   -6.39   -7.75   -8.81   -9.43   -9.48   -8.86   -7.52   -5.48   -2.76    0.62    4.65    9.22   14.05
+   270.0    0.00   -0.25   -0.96   -2.04   -3.39   -4.88   -6.38   -7.74   -8.80   -9.43   -9.47   -8.85   -7.51   -5.47   -2.74    0.65    4.66    9.20   13.96
+   275.0    0.00   -0.25   -0.95   -2.03   -3.37   -4.87   -6.37   -7.73   -8.80   -9.42   -9.47   -8.84   -7.50   -5.45   -2.72    0.66    4.64    9.14   13.86
+   280.0    0.00   -0.25   -0.95   -2.02   -3.36   -4.85   -6.36   -7.72   -8.80   -9.42   -9.46   -8.83   -7.48   -5.43   -2.71    0.65    4.60    9.06   13.76
+   285.0    0.00   -0.25   -0.94   -2.01   -3.35   -4.85   -6.35   -7.72   -8.79   -9.42   -9.45   -8.81   -7.45   -5.40   -2.69    0.63    4.55    8.98   13.69
+   290.0    0.00   -0.25   -0.94   -2.00   -3.35   -4.84   -6.35   -7.72   -8.80   -9.41   -9.44   -8.78   -7.42   -5.37   -2.68    0.61    4.49    8.91   13.66
+   295.0    0.00   -0.24   -0.93   -2.00   -3.34   -4.84   -6.35   -7.73   -8.80   -9.41   -9.42   -8.75   -7.38   -5.34   -2.66    0.60    4.46    8.87   13.68
+   300.0    0.00   -0.24   -0.93   -1.99   -3.34   -4.84   -6.36   -7.73   -8.80   -9.40   -9.40   -8.72   -7.34   -5.29   -2.63    0.61    4.45    8.88   13.76
+   305.0    0.00   -0.24   -0.92   -1.99   -3.33   -4.84   -6.36   -7.74   -8.80   -9.39   -9.37   -8.67   -7.29   -5.24   -2.59    0.65    4.49    8.94   13.88
+   310.0    0.00   -0.24   -0.92   -1.98   -3.34   -4.85   -6.37   -7.75   -8.80   -9.37   -9.33   -8.62   -7.23   -5.19   -2.54    0.71    4.58    9.05   14.05
+   315.0    0.00   -0.23   -0.92   -1.98   -3.34   -4.85   -6.38   -7.75   -8.79   -9.34   -9.29   -8.57   -7.17   -5.13   -2.47    0.81    4.71    9.22   14.23
+   320.0    0.00   -0.23   -0.91   -1.98   -3.34   -4.86   -6.39   -7.75   -8.78   -9.31   -9.24   -8.52   -7.12   -5.07   -2.39    0.92    4.88    9.43   14.42
+   325.0    0.00   -0.23   -0.91   -1.98   -3.34   -4.87   -6.40   -7.75   -8.76   -9.27   -9.19   -8.46   -7.06   -5.01   -2.30    1.06    5.07    9.65   14.59
+   330.0    0.00   -0.23   -0.91   -1.98   -3.35   -4.87   -6.40   -7.74   -8.73   -9.23   -9.14   -8.41   -7.01   -4.96   -2.22    1.19    5.26    9.87   14.73
+   335.0    0.00   -0.23   -0.91   -1.98   -3.35   -4.88   -6.40   -7.73   -8.70   -9.19   -9.08   -8.35   -6.97   -4.91   -2.15    1.31    5.44   10.05   14.82
+   340.0    0.00   -0.23   -0.90   -1.98   -3.35   -4.88   -6.40   -7.72   -8.67   -9.14   -9.03   -8.30   -6.92   -4.86   -2.09    1.41    5.58   10.20   14.85
+   345.0    0.00   -0.23   -0.90   -1.98   -3.35   -4.88   -6.39   -7.70   -8.65   -9.10   -8.99   -8.26   -6.89   -4.83   -2.06    1.47    5.66   10.27   14.84
+   350.0    0.00   -0.22   -0.90   -1.98   -3.35   -4.88   -6.39   -7.69   -8.63   -9.07   -8.95   -8.22   -6.86   -4.82   -2.04    1.48    5.68   10.28   14.77
+   355.0    0.00   -0.22   -0.90   -1.97   -3.35   -4.87   -6.38   -7.68   -8.61   -9.05   -8.93   -8.20   -6.84   -4.81   -2.06    1.45    5.63   10.21   14.67
+   360.0    0.00   -0.22   -0.90   -1.97   -3.34   -4.87   -6.38   -7.68   -8.61   -9.05   -8.92   -8.19   -6.83   -4.82   -2.10    1.37    5.52   10.08   14.53
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.27     -0.49    120.45                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.12   -0.48   -1.01   -1.67   -2.41   -3.20   -4.00   -4.74   -5.31   -5.56   -5.40   -4.75   -3.61   -2.03    0.00    2.57    5.84    9.87
+     0.0    0.00   -0.18   -0.57   -1.12   -1.76   -2.47   -3.23   -4.02   -4.76   -5.34   -5.61   -5.43   -4.74   -3.53   -1.80    0.45    3.25    6.60   10.28
+     5.0    0.00   -0.18   -0.57   -1.13   -1.77   -2.48   -3.24   -4.02   -4.76   -5.33   -5.60   -5.42   -4.73   -3.52   -1.80    0.42    3.18    6.47   10.10
+    10.0    0.00   -0.17   -0.57   -1.13   -1.78   -2.49   -3.25   -4.02   -4.76   -5.32   -5.58   -5.40   -4.71   -3.50   -1.82    0.36    3.06    6.33    9.97
+    15.0    0.00   -0.17   -0.57   -1.13   -1.79   -2.50   -3.26   -4.03   -4.75   -5.30   -5.55   -5.36   -4.67   -3.49   -1.84    0.27    2.92    6.18    9.89
+    20.0    0.00   -0.16   -0.57   -1.13   -1.80   -2.51   -3.26   -4.02   -4.73   -5.28   -5.51   -5.32   -4.63   -3.47   -1.87    0.18    2.77    6.03    9.87
+    25.0    0.00   -0.16   -0.56   -1.13   -1.80   -2.52   -3.26   -4.02   -4.71   -5.25   -5.47   -5.27   -4.59   -3.45   -1.90    0.09    2.63    5.90    9.90
+    30.0    0.00   -0.15   -0.55   -1.13   -1.80   -2.52   -3.26   -4.00   -4.69   -5.21   -5.43   -5.23   -4.55   -3.43   -1.92    0.00    2.50    5.79    9.95
+    35.0    0.00   -0.15   -0.54   -1.12   -1.79   -2.51   -3.25   -3.98   -4.66   -5.18   -5.40   -5.20   -4.53   -3.43   -1.95   -0.06    2.40    5.71   10.01
+    40.0    0.00   -0.14   -0.53   -1.11   -1.78   -2.50   -3.23   -3.96   -4.64   -5.15   -5.37   -5.18   -4.52   -3.43   -1.97   -0.11    2.34    5.66   10.07
+    45.0    0.00   -0.14   -0.52   -1.09   -1.77   -2.49   -3.22   -3.94   -4.61   -5.13   -5.36   -5.17   -4.53   -3.44   -1.99   -0.13    2.30    5.63   10.09
+    50.0    0.00   -0.13   -0.51   -1.07   -1.75   -2.47   -3.20   -3.92   -4.59   -5.12   -5.36   -5.19   -4.55   -3.47   -2.00   -0.14    2.30    5.62   10.08
+    55.0    0.00   -0.12   -0.49   -1.05   -1.73   -2.45   -3.18   -3.91   -4.59   -5.12   -5.38   -5.22   -4.59   -3.51   -2.02   -0.14    2.30    5.61   10.03
+    60.0    0.00   -0.11   -0.48   -1.03   -1.70   -2.43   -3.17   -3.90   -4.59   -5.13   -5.41   -5.27   -4.65   -3.56   -2.05   -0.14    2.31    5.59    9.95
+    65.0    0.00   -0.11   -0.46   -1.01   -1.68   -2.41   -3.15   -3.90   -4.60   -5.16   -5.45   -5.33   -4.71   -3.62   -2.09   -0.15    2.32    5.57    9.83
+    70.0    0.00   -0.10   -0.44   -0.99   -1.65   -2.39   -3.14   -3.90   -4.61   -5.19   -5.49   -5.39   -4.79   -3.68   -2.14   -0.18    2.31    5.53    9.70
+    75.0    0.00   -0.09   -0.43   -0.96   -1.63   -2.37   -3.14   -3.91   -4.64   -5.23   -5.54   -5.45   -4.86   -3.76   -2.20   -0.22    2.28    5.48    9.57
+    80.0    0.00   -0.08   -0.41   -0.94   -1.60   -2.35   -3.13   -3.92   -4.66   -5.26   -5.59   -5.51   -4.93   -3.84   -2.28   -0.28    2.23    5.42    9.45
+    85.0    0.00   -0.08   -0.39   -0.91   -1.58   -2.33   -3.13   -3.93   -4.69   -5.30   -5.63   -5.56   -4.99   -3.91   -2.36   -0.36    2.16    5.36    9.36
+    90.0    0.00   -0.07   -0.38   -0.89   -1.56   -2.32   -3.13   -3.94   -4.71   -5.32   -5.66   -5.60   -5.05   -3.99   -2.45   -0.44    2.09    5.30    9.31
+    95.0    0.00   -0.06   -0.36   -0.87   -1.54   -2.30   -3.12   -3.95   -4.72   -5.34   -5.68   -5.63   -5.09   -4.05   -2.52   -0.52    2.03    5.26    9.29
+   100.0    0.00   -0.06   -0.35   -0.85   -1.52   -2.29   -3.11   -3.95   -4.72   -5.34   -5.69   -5.65   -5.13   -4.10   -2.58   -0.58    1.98    5.23    9.32
+   105.0    0.00   -0.05   -0.34   -0.84   -1.50   -2.28   -3.11   -3.94   -4.72   -5.34   -5.69   -5.66   -5.15   -4.13   -2.62   -0.61    1.96    5.24    9.39
+   110.0    0.00   -0.05   -0.33   -0.83   -1.49   -2.27   -3.10   -3.93   -4.70   -5.33   -5.68   -5.65   -5.15   -4.14   -2.63   -0.61    1.98    5.28    9.49
+   115.0    0.00   -0.05   -0.33   -0.82   -1.49   -2.26   -3.09   -3.92   -4.69   -5.31   -5.66   -5.64   -5.14   -4.12   -2.60   -0.56    2.03    5.35    9.61
+   120.0    0.00   -0.05   -0.33   -0.82   -1.48   -2.25   -3.08   -3.91   -4.67   -5.29   -5.64   -5.61   -5.11   -4.08   -2.53   -0.48    2.12    5.45    9.74
+   125.0    0.00   -0.05   -0.33   -0.82   -1.48   -2.25   -3.08   -3.89   -4.65   -5.26   -5.62   -5.58   -5.06   -4.01   -2.44   -0.36    2.25    5.56    9.87
+   130.0    0.00   -0.05   -0.33   -0.83   -1.49   -2.26   -3.08   -3.89   -4.64   -5.24   -5.59   -5.54   -5.00   -3.92   -2.31   -0.22    2.39    5.68   10.00
+   135.0    0.00   -0.05   -0.33   -0.84   -1.50   -2.27   -3.08   -3.89   -4.63   -5.22   -5.56   -5.50   -4.93   -3.81   -2.17   -0.05    2.54    5.80   10.10
+   140.0    0.00   -0.05   -0.34   -0.85   -1.52   -2.29   -3.10   -3.89   -4.62   -5.21   -5.53   -5.45   -4.85   -3.70   -2.02    0.11    2.70    5.91   10.18
+   145.0    0.00   -0.05   -0.35   -0.87   -1.54   -2.31   -3.11   -3.90   -4.62   -5.19   -5.50   -5.40   -4.77   -3.58   -1.87    0.27    2.83    6.00   10.22
+   150.0    0.00   -0.05   -0.36   -0.88   -1.57   -2.34   -3.13   -3.91   -4.62   -5.18   -5.47   -5.35   -4.69   -3.47   -1.74    0.41    2.94    6.06   10.22
+   155.0    0.00   -0.06   -0.37   -0.90   -1.59   -2.36   -3.15   -3.92   -4.63   -5.17   -5.45   -5.30   -4.62   -3.37   -1.62    0.52    3.03    6.09   10.18
+   160.0    0.00   -0.06   -0.38   -0.92   -1.62   -2.39   -3.17   -3.94   -4.63   -5.16   -5.42   -5.26   -4.56   -3.29   -1.54    0.59    3.07    6.09   10.09
+   165.0    0.00   -0.07   -0.40   -0.95   -1.64   -2.41   -3.19   -3.95   -4.63   -5.16   -5.40   -5.22   -4.51   -3.25   -1.50    0.62    3.09    6.06    9.96
+   170.0    0.00   -0.07   -0.41   -0.97   -1.66   -2.43   -3.21   -3.96   -4.63   -5.15   -5.38   -5.20   -4.49   -3.22   -1.49    0.62    3.07    6.01    9.79
+   175.0    0.00   -0.08   -0.42   -0.98   -1.68   -2.45   -3.22   -3.96   -4.63   -5.14   -5.37   -5.19   -4.48   -3.23   -1.50    0.59    3.02    5.93    9.60
+   180.0    0.00   -0.09   -0.44   -1.00   -1.70   -2.46   -3.22   -3.96   -4.62   -5.14   -5.37   -5.18   -4.48   -3.25   -1.55    0.53    2.96    5.83    9.39
+   185.0    0.00   -0.09   -0.45   -1.02   -1.72   -2.47   -3.23   -3.96   -4.62   -5.14   -5.37   -5.19   -4.50   -3.29   -1.61    0.45    2.87    5.73    9.17
+   190.0    0.00   -0.10   -0.46   -1.03   -1.73   -2.48   -3.23   -3.96   -4.63   -5.14   -5.38   -5.20   -4.52   -3.33   -1.68    0.36    2.78    5.63    8.98
+   195.0    0.00   -0.11   -0.47   -1.04   -1.73   -2.48   -3.23   -3.97   -4.64   -5.15   -5.39   -5.21   -4.54   -3.37   -1.75    0.27    2.68    5.53    8.82
+   200.0    0.00   -0.11   -0.48   -1.05   -1.74   -2.48   -3.24   -3.98   -4.66   -5.17   -5.40   -5.22   -4.55   -3.40   -1.81    0.18    2.58    5.44    8.71
+   205.0    0.00   -0.12   -0.49   -1.06   -1.74   -2.49   -3.25   -4.00   -4.68   -5.20   -5.42   -5.23   -4.56   -3.42   -1.86    0.09    2.48    5.37    8.65
+   210.0    0.00   -0.12   -0.50   -1.06   -1.75   -2.49   -3.26   -4.02   -4.71   -5.23   -5.44   -5.23   -4.55   -3.42   -1.90    0.01    2.40    5.33    8.65
+   215.0    0.00   -0.13   -0.50   -1.07   -1.75   -2.49   -3.27   -4.04   -4.75   -5.27   -5.46   -5.23   -4.53   -3.41   -1.93   -0.05    2.32    5.30    8.71
+   220.0    0.00   -0.13   -0.51   -1.07   -1.74   -2.49   -3.28   -4.07   -4.79   -5.31   -5.48   -5.22   -4.51   -3.40   -1.94   -0.10    2.27    5.30    8.82
+   225.0    0.00   -0.14   -0.51   -1.07   -1.74   -2.49   -3.29   -4.10   -4.83   -5.34   -5.50   -5.21   -4.48   -3.37   -1.94   -0.13    2.24    5.33    8.96
+   230.0    0.00   -0.14   -0.52   -1.07   -1.74   -2.49   -3.30   -4.12   -4.86   -5.38   -5.52   -5.21   -4.46   -3.36   -1.94   -0.15    2.23    5.38    9.12
+   235.0    0.00   -0.14   -0.52   -1.06   -1.73   -2.48   -3.30   -4.14   -4.89   -5.41   -5.54   -5.22   -4.46   -3.35   -1.94   -0.15    2.24    5.44    9.27
+   240.0    0.00   -0.15   -0.52   -1.06   -1.72   -2.47   -3.30   -4.15   -4.91   -5.43   -5.57   -5.24   -4.48   -3.36   -1.94   -0.14    2.28    5.51    9.39
+   245.0    0.00   -0.15   -0.52   -1.06   -1.71   -2.46   -3.29   -4.15   -4.92   -5.45   -5.60   -5.28   -4.51   -3.39   -1.95   -0.12    2.33    5.59    9.47
+   250.0    0.00   -0.15   -0.52   -1.05   -1.70   -2.45   -3.28   -4.14   -4.92   -5.47   -5.63   -5.33   -4.57   -3.44   -1.97   -0.09    2.40    5.66    9.51
+   255.0    0.00   -0.16   -0.52   -1.05   -1.69   -2.43   -3.26   -4.12   -4.91   -5.48   -5.67   -5.39   -4.65   -3.50   -2.00   -0.06    2.47    5.72    9.50
+   260.0    0.00   -0.16   -0.53   -1.05   -1.68   -2.42   -3.24   -4.10   -4.90   -5.49   -5.71   -5.46   -4.74   -3.58   -2.03   -0.04    2.53    5.77    9.46
+   265.0    0.00   -0.16   -0.53   -1.04   -1.67   -2.41   -3.22   -4.09   -4.89   -5.50   -5.75   -5.54   -4.83   -3.67   -2.08   -0.03    2.58    5.79    9.40
+   270.0    0.00   -0.16   -0.53   -1.04   -1.67   -2.40   -3.21   -4.07   -4.88   -5.50   -5.78   -5.60   -4.92   -3.75   -2.12   -0.03    2.61    5.80    9.34
+   275.0    0.00   -0.17   -0.53   -1.04   -1.66   -2.39   -3.20   -4.06   -4.88   -5.51   -5.81   -5.66   -5.00   -3.82   -2.17   -0.04    2.61    5.79    9.30
+   280.0    0.00   -0.17   -0.53   -1.04   -1.66   -2.39   -3.20   -4.05   -4.87   -5.52   -5.83   -5.70   -5.05   -3.88   -2.22   -0.07    2.59    5.77    9.32
+   285.0    0.00   -0.17   -0.53   -1.04   -1.66   -2.39   -3.20   -4.06   -4.87   -5.52   -5.84   -5.71   -5.07   -3.91   -2.26   -0.12    2.54    5.74    9.39
+   290.0    0.00   -0.17   -0.53   -1.04   -1.67   -2.39   -3.21   -4.06   -4.88   -5.52   -5.84   -5.71   -5.07   -3.93   -2.29   -0.17    2.49    5.73    9.54
+   295.0    0.00   -0.17   -0.54   -1.05   -1.67   -2.40   -3.22   -4.08   -4.89   -5.51   -5.82   -5.68   -5.05   -3.91   -2.31   -0.21    2.43    5.73    9.75
+   300.0    0.00   -0.18   -0.54   -1.05   -1.68   -2.41   -3.23   -4.09   -4.89   -5.50   -5.79   -5.63   -5.00   -3.88   -2.31   -0.25    2.38    5.76   10.01
+   305.0    0.00   -0.18   -0.54   -1.05   -1.69   -2.42   -3.24   -4.10   -4.89   -5.49   -5.75   -5.58   -4.94   -3.84   -2.30   -0.28    2.36    5.82   10.30
+   310.0    0.00   -0.18   -0.55   -1.06   -1.69   -2.43   -3.25   -4.10   -4.89   -5.47   -5.71   -5.52   -4.87   -3.78   -2.27   -0.27    2.37    5.91   10.59
+   315.0    0.00   -0.18   -0.55   -1.06   -1.70   -2.44   -3.26   -4.10   -4.88   -5.44   -5.67   -5.46   -4.81   -3.73   -2.23   -0.24    2.42    6.03   10.86
+   320.0    0.00   -0.18   -0.55   -1.07   -1.71   -2.44   -3.26   -4.10   -4.87   -5.42   -5.63   -5.42   -4.76   -3.67   -2.18   -0.19    2.50    6.18   11.08
+   325.0    0.00   -0.18   -0.56   -1.08   -1.71   -2.44   -3.25   -4.09   -4.85   -5.40   -5.60   -5.39   -4.72   -3.63   -2.12   -0.10    2.62    6.32   11.22
+   330.0    0.00   -0.18   -0.56   -1.08   -1.72   -2.44   -3.25   -4.07   -4.83   -5.38   -5.59   -5.37   -4.70   -3.60   -2.05    0.00    2.77    6.47   11.28
+   335.0    0.00   -0.18   -0.56   -1.09   -1.72   -2.44   -3.24   -4.06   -4.81   -5.36   -5.58   -5.37   -4.70   -3.57   -1.99    0.12    2.92    6.59   11.24
+   340.0    0.00   -0.18   -0.57   -1.09   -1.73   -2.45   -3.23   -4.04   -4.79   -5.35   -5.58   -5.38   -4.71   -3.56   -1.93    0.23    3.06    6.69   11.13
+   345.0    0.00   -0.18   -0.57   -1.10   -1.73   -2.45   -3.23   -4.03   -4.78   -5.35   -5.59   -5.40   -4.72   -3.55   -1.88    0.33    3.17    6.73   10.95
+   350.0    0.00   -0.18   -0.57   -1.11   -1.74   -2.45   -3.22   -4.02   -4.77   -5.34   -5.60   -5.42   -4.73   -3.54   -1.84    0.40    3.25    6.74   10.73
+   355.0    0.00   -0.18   -0.57   -1.11   -1.75   -2.46   -3.23   -4.02   -4.76   -5.34   -5.61   -5.43   -4.74   -3.54   -1.81    0.44    3.28    6.69   10.50
+   360.0    0.00   -0.18   -0.57   -1.12   -1.76   -2.47   -3.23   -4.02   -4.76   -5.34   -5.61   -5.43   -4.74   -3.53   -1.80    0.45    3.25    6.60   10.28
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TRM29659.00     TCWD                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               7    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+Number of Calibrated Antennas GPS:      007                 COMMENT             
+Number of Individual Calibrations GPS:  059                 COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.04     -0.22     95.58                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.22   -0.86   -1.87   -3.19   -4.71   -6.32   -7.84   -9.03   -9.63   -9.41   -8.26   -6.28   -3.74   -1.01    1.64    4.18    6.87   10.16
+     0.0    0.00   -0.23   -0.87   -1.87   -3.15   -4.64   -6.21   -7.70   -8.89   -9.50   -9.28   -8.12   -6.09   -3.46   -0.65    2.02    4.48    7.03   10.21
+     5.0    0.00   -0.23   -0.87   -1.86   -3.14   -4.63   -6.21   -7.71   -8.90   -9.52   -9.31   -8.16   -6.14   -3.53   -0.73    1.94    4.41    6.94   10.08
+    10.0    0.00   -0.23   -0.87   -1.85   -3.14   -4.62   -6.21   -7.72   -8.92   -9.55   -9.35   -8.21   -6.21   -3.62   -0.82    1.85    4.32    6.85    9.96
+    15.0    0.00   -0.23   -0.86   -1.85   -3.13   -4.62   -6.21   -7.73   -8.94   -9.57   -9.39   -8.26   -6.28   -3.71   -0.93    1.74    4.22    6.76    9.87
+    20.0    0.00   -0.23   -0.86   -1.85   -3.13   -4.63   -6.22   -7.74   -8.96   -9.60   -9.42   -8.31   -6.35   -3.81   -1.04    1.62    4.12    6.69    9.81
+    25.0    0.00   -0.23   -0.86   -1.84   -3.13   -4.63   -6.23   -7.76   -8.98   -9.62   -9.45   -8.36   -6.42   -3.90   -1.16    1.50    4.02    6.62    9.79
+    30.0    0.00   -0.23   -0.86   -1.84   -3.13   -4.63   -6.24   -7.77   -8.99   -9.64   -9.48   -8.40   -6.48   -3.98   -1.26    1.39    3.92    6.57    9.80
+    35.0    0.00   -0.23   -0.86   -1.84   -3.13   -4.64   -6.25   -7.78   -9.01   -9.65   -9.50   -8.43   -6.53   -4.05   -1.36    1.29    3.84    6.54    9.84
+    40.0    0.00   -0.23   -0.86   -1.85   -3.13   -4.64   -6.25   -7.79   -9.02   -9.66   -9.51   -8.44   -6.55   -4.10   -1.43    1.21    3.77    6.52    9.89
+    45.0    0.00   -0.23   -0.86   -1.85   -3.14   -4.65   -6.26   -7.80   -9.02   -9.66   -9.51   -8.44   -6.57   -4.13   -1.47    1.15    3.73    6.52    9.95
+    50.0    0.00   -0.23   -0.86   -1.85   -3.14   -4.65   -6.27   -7.80   -9.02   -9.66   -9.50   -8.44   -6.56   -4.14   -1.49    1.13    3.72    6.54   10.01
+    55.0    0.00   -0.23   -0.86   -1.85   -3.15   -4.66   -6.27   -7.80   -9.02   -9.65   -9.49   -8.42   -6.54   -4.12   -1.48    1.13    3.73    6.57   10.06
+    60.0    0.00   -0.23   -0.86   -1.86   -3.15   -4.66   -6.27   -7.80   -9.01   -9.64   -9.47   -8.39   -6.51   -4.08   -1.45    1.17    3.76    6.61   10.10
+    65.0    0.00   -0.23   -0.87   -1.86   -3.16   -4.66   -6.27   -7.80   -9.01   -9.63   -9.45   -8.36   -6.47   -4.03   -1.39    1.23    3.82    6.66   10.11
+    70.0    0.00   -0.23   -0.87   -1.87   -3.16   -4.67   -6.27   -7.80   -9.00   -9.62   -9.43   -8.33   -6.42   -3.97   -1.32    1.30    3.89    6.71   10.11
+    75.0    0.00   -0.23   -0.87   -1.87   -3.16   -4.67   -6.27   -7.79   -9.00   -9.61   -9.41   -8.30   -6.38   -3.91   -1.24    1.39    3.97    6.76   10.10
+    80.0    0.00   -0.23   -0.87   -1.88   -3.17   -4.67   -6.27   -7.80   -9.00   -9.61   -9.40   -8.28   -6.33   -3.85   -1.17    1.47    4.05    6.81   10.07
+    85.0    0.00   -0.23   -0.88   -1.88   -3.17   -4.68   -6.28   -7.80   -9.00   -9.61   -9.40   -8.26   -6.30   -3.80   -1.10    1.55    4.13    6.86   10.05
+    90.0    0.00   -0.23   -0.88   -1.88   -3.18   -4.69   -6.29   -7.81   -9.01   -9.62   -9.40   -8.25   -6.28   -3.75   -1.04    1.62    4.19    6.89   10.03
+    95.0    0.00   -0.23   -0.88   -1.89   -3.19   -4.69   -6.30   -7.82   -9.03   -9.64   -9.41   -8.25   -6.26   -3.72   -0.99    1.67    4.23    6.92   10.02
+   100.0    0.00   -0.23   -0.88   -1.89   -3.19   -4.70   -6.31   -7.84   -9.05   -9.66   -9.43   -8.26   -6.26   -3.70   -0.96    1.70    4.26    6.93   10.03
+   105.0    0.00   -0.23   -0.88   -1.89   -3.19   -4.71   -6.32   -7.85   -9.07   -9.69   -9.45   -8.28   -6.26   -3.69   -0.94    1.72    4.27    6.94   10.05
+   110.0    0.00   -0.23   -0.88   -1.89   -3.20   -4.71   -6.33   -7.87   -9.09   -9.71   -9.48   -8.29   -6.26   -3.69   -0.94    1.72    4.27    6.95   10.10
+   115.0    0.00   -0.23   -0.88   -1.89   -3.20   -4.72   -6.33   -7.88   -9.11   -9.73   -9.50   -8.31   -6.27   -3.68   -0.93    1.72    4.27    6.96   10.15
+   120.0    0.00   -0.22   -0.88   -1.89   -3.20   -4.72   -6.34   -7.89   -9.12   -9.74   -9.51   -8.31   -6.27   -3.68   -0.92    1.72    4.26    6.97   10.21
+   125.0    0.00   -0.22   -0.87   -1.89   -3.20   -4.72   -6.34   -7.89   -9.13   -9.75   -9.51   -8.31   -6.26   -3.66   -0.91    1.73    4.26    6.98   10.28
+   130.0    0.00   -0.22   -0.87   -1.88   -3.19   -4.71   -6.34   -7.89   -9.12   -9.74   -9.50   -8.29   -6.24   -3.64   -0.89    1.75    4.28    7.00   10.34
+   135.0    0.00   -0.22   -0.86   -1.88   -3.19   -4.71   -6.33   -7.88   -9.11   -9.72   -9.48   -8.27   -6.21   -3.60   -0.85    1.78    4.31    7.03   10.40
+   140.0    0.00   -0.22   -0.86   -1.87   -3.18   -4.70   -6.32   -7.86   -9.09   -9.70   -9.44   -8.23   -6.16   -3.56   -0.81    1.82    4.34    7.07   10.44
+   145.0    0.00   -0.21   -0.85   -1.86   -3.17   -4.69   -6.31   -7.84   -9.06   -9.66   -9.40   -8.18   -6.11   -3.51   -0.76    1.87    4.39    7.11   10.47
+   150.0    0.00   -0.21   -0.85   -1.86   -3.16   -4.68   -6.29   -7.83   -9.03   -9.62   -9.35   -8.13   -6.06   -3.45   -0.70    1.93    4.44    7.14   10.49
+   155.0    0.00   -0.21   -0.84   -1.85   -3.15   -4.67   -6.28   -7.81   -9.01   -9.58   -9.31   -8.08   -6.00   -3.40   -0.65    1.97    4.48    7.17   10.49
+   160.0    0.00   -0.21   -0.84   -1.84   -3.14   -4.66   -6.28   -7.80   -8.99   -9.55   -9.27   -8.03   -5.96   -3.36   -0.61    2.01    4.51    7.18   10.47
+   165.0    0.00   -0.20   -0.83   -1.83   -3.14   -4.66   -6.27   -7.80   -8.97   -9.53   -9.23   -7.99   -5.92   -3.33   -0.59    2.02    4.52    7.18   10.43
+   170.0    0.00   -0.20   -0.82   -1.82   -3.13   -4.66   -6.28   -7.80   -8.97   -9.52   -9.22   -7.97   -5.90   -3.32   -0.59    2.02    4.50    7.15   10.38
+   175.0    0.00   -0.20   -0.82   -1.81   -3.13   -4.66   -6.29   -7.81   -8.99   -9.53   -9.22   -7.97   -5.90   -3.33   -0.61    1.99    4.47    7.11   10.32
+   180.0    0.00   -0.19   -0.81   -1.81   -3.12   -4.66   -6.30   -7.83   -9.01   -9.55   -9.23   -7.98   -5.92   -3.36   -0.66    1.93    4.41    7.04   10.25
+   185.0    0.00   -0.19   -0.80   -1.80   -3.12   -4.67   -6.31   -7.85   -9.03   -9.58   -9.26   -8.01   -5.96   -3.41   -0.72    1.86    4.33    6.97   10.17
+   190.0    0.00   -0.19   -0.80   -1.79   -3.11   -4.67   -6.32   -7.88   -9.07   -9.61   -9.30   -8.06   -6.02   -3.48   -0.80    1.77    4.24    6.88   10.09
+   195.0    0.00   -0.19   -0.80   -1.79   -3.11   -4.67   -6.33   -7.90   -9.10   -9.65   -9.35   -8.12   -6.09   -3.56   -0.89    1.68    4.15    6.80   10.01
+   200.0    0.00   -0.19   -0.79   -1.78   -3.10   -4.67   -6.34   -7.91   -9.12   -9.69   -9.40   -8.18   -6.17   -3.65   -0.98    1.59    4.07    6.72    9.94
+   205.0    0.00   -0.19   -0.79   -1.78   -3.10   -4.67   -6.34   -7.92   -9.14   -9.72   -9.45   -8.25   -6.24   -3.73   -1.07    1.51    3.99    6.65    9.89
+   210.0    0.00   -0.19   -0.79   -1.78   -3.10   -4.66   -6.34   -7.92   -9.15   -9.74   -9.48   -8.30   -6.31   -3.81   -1.15    1.44    3.94    6.61    9.84
+   215.0    0.00   -0.19   -0.79   -1.78   -3.09   -4.66   -6.33   -7.91   -9.14   -9.75   -9.51   -8.35   -6.38   -3.88   -1.21    1.39    3.90    6.58    9.82
+   220.0    0.00   -0.19   -0.79   -1.78   -3.09   -4.65   -6.31   -7.89   -9.12   -9.74   -9.52   -8.38   -6.42   -3.93   -1.25    1.36    3.88    6.57    9.82
+   225.0    0.00   -0.19   -0.79   -1.78   -3.09   -4.64   -6.30   -7.87   -9.10   -9.72   -9.52   -8.40   -6.46   -3.97   -1.28    1.34    3.88    6.58    9.83
+   230.0    0.00   -0.19   -0.80   -1.79   -3.10   -4.64   -6.29   -7.84   -9.07   -9.70   -9.51   -8.40   -6.47   -3.99   -1.30    1.35    3.90    6.60    9.86
+   235.0    0.00   -0.19   -0.80   -1.80   -3.11   -4.64   -6.28   -7.82   -9.04   -9.67   -9.48   -8.39   -6.47   -3.99   -1.30    1.36    3.92    6.63    9.90
+   240.0    0.00   -0.20   -0.81   -1.81   -3.12   -4.65   -6.27   -7.81   -9.01   -9.64   -9.46   -8.37   -6.46   -3.99   -1.28    1.37    3.94    6.66    9.94
+   245.0    0.00   -0.20   -0.82   -1.82   -3.14   -4.66   -6.28   -7.80   -9.00   -9.61   -9.43   -8.35   -6.45   -3.97   -1.27    1.39    3.97    6.68    9.98
+   250.0    0.00   -0.20   -0.83   -1.84   -3.16   -4.69   -6.29   -7.80   -8.99   -9.60   -9.41   -8.33   -6.43   -3.95   -1.25    1.41    3.98    6.71   10.02
+   255.0    0.00   -0.21   -0.84   -1.86   -3.18   -4.71   -6.31   -7.82   -8.99   -9.59   -9.40   -8.31   -6.41   -3.93   -1.23    1.43    4.00    6.72   10.04
+   260.0    0.00   -0.21   -0.85   -1.88   -3.21   -4.74   -6.34   -7.84   -9.00   -9.59   -9.40   -8.30   -6.39   -3.91   -1.21    1.45    4.01    6.72   10.06
+   265.0    0.00   -0.21   -0.86   -1.90   -3.24   -4.78   -6.38   -7.87   -9.03   -9.61   -9.40   -8.30   -6.38   -3.90   -1.19    1.46    4.01    6.73   10.06
+   270.0    0.00   -0.22   -0.87   -1.92   -3.27   -4.81   -6.41   -7.90   -9.05   -9.63   -9.41   -8.30   -6.38   -3.88   -1.17    1.48    4.02    6.73   10.05
+   275.0    0.00   -0.22   -0.88   -1.94   -3.29   -4.84   -6.45   -7.93   -9.08   -9.65   -9.43   -8.31   -6.38   -3.87   -1.15    1.50    4.04    6.73   10.05
+   280.0    0.00   -0.22   -0.89   -1.95   -3.32   -4.87   -6.48   -7.96   -9.11   -9.68   -9.45   -8.33   -6.38   -3.86   -1.13    1.53    4.07    6.75   10.04
+   285.0    0.00   -0.23   -0.90   -1.97   -3.34   -4.89   -6.50   -7.98   -9.13   -9.69   -9.47   -8.34   -6.38   -3.85   -1.11    1.56    4.10    6.78   10.05
+   290.0    0.00   -0.23   -0.91   -1.98   -3.35   -4.91   -6.51   -7.99   -9.14   -9.71   -9.48   -8.34   -6.38   -3.83   -1.07    1.61    4.15    6.82   10.08
+   295.0    0.00   -0.23   -0.91   -1.99   -3.36   -4.91   -6.51   -7.99   -9.14   -9.71   -9.48   -8.34   -6.37   -3.81   -1.03    1.66    4.21    6.88   10.13
+   300.0    0.00   -0.23   -0.92   -1.99   -3.36   -4.91   -6.51   -7.98   -9.13   -9.70   -9.47   -8.33   -6.35   -3.78   -0.98    1.72    4.28    6.94   10.20
+   305.0    0.00   -0.24   -0.92   -1.99   -3.35   -4.90   -6.49   -7.96   -9.11   -9.68   -9.46   -8.31   -6.32   -3.73   -0.93    1.79    4.35    7.02   10.29
+   310.0    0.00   -0.24   -0.92   -1.99   -3.34   -4.88   -6.46   -7.93   -9.08   -9.65   -9.43   -8.28   -6.28   -3.68   -0.87    1.86    4.42    7.10   10.39
+   315.0    0.00   -0.24   -0.92   -1.98   -3.33   -4.85   -6.43   -7.90   -9.04   -9.62   -9.40   -8.25   -6.23   -3.63   -0.80    1.93    4.49    7.17   10.49
+   320.0    0.00   -0.24   -0.92   -1.97   -3.31   -4.82   -6.39   -7.86   -9.01   -9.58   -9.36   -8.20   -6.18   -3.57   -0.74    1.99    4.55    7.24   10.58
+   325.0    0.00   -0.24   -0.91   -1.96   -3.29   -4.79   -6.36   -7.82   -8.97   -9.55   -9.32   -8.16   -6.13   -3.51   -0.68    2.04    4.60    7.28   10.65
+   330.0    0.00   -0.24   -0.91   -1.94   -3.26   -4.76   -6.32   -7.79   -8.94   -9.52   -9.29   -8.12   -6.09   -3.46   -0.62    2.09    4.63    7.31   10.69
+   335.0    0.00   -0.24   -0.90   -1.93   -3.24   -4.73   -6.29   -7.76   -8.91   -9.50   -9.26   -8.09   -6.05   -3.41   -0.58    2.12    4.65    7.32   10.70
+   340.0    0.00   -0.24   -0.90   -1.92   -3.22   -4.71   -6.26   -7.73   -8.89   -9.48   -9.25   -8.07   -6.02   -3.38   -0.56    2.14    4.65    7.30   10.66
+   345.0    0.00   -0.24   -0.89   -1.90   -3.20   -4.68   -6.24   -7.72   -8.88   -9.47   -9.24   -8.06   -6.01   -3.37   -0.55    2.14    4.63    7.25   10.58
+   350.0    0.00   -0.24   -0.89   -1.89   -3.18   -4.66   -6.22   -7.70   -8.88   -9.47   -9.25   -8.07   -6.02   -3.38   -0.56    2.12    4.60    7.19   10.48
+   355.0    0.00   -0.24   -0.88   -1.88   -3.16   -4.65   -6.21   -7.70   -8.88   -9.48   -9.26   -8.09   -6.04   -3.41   -0.60    2.08    4.55    7.12   10.35
+   360.0    0.00   -0.23   -0.87   -1.87   -3.15   -4.64   -6.21   -7.70   -8.89   -9.50   -9.28   -8.12   -6.09   -3.46   -0.65    2.02    4.48    7.03   10.21
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.32     -0.40    124.09                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.09   -0.35   -0.74   -1.23   -1.79   -2.42   -3.14   -3.89   -4.60   -5.12   -5.29   -4.96   -4.06   -2.55   -0.47    2.15    5.24    8.68
+     0.0    0.00   -0.05   -0.28   -0.66   -1.15   -1.71   -2.33   -3.03   -3.77   -4.48   -5.01   -5.20   -4.89   -4.00   -2.50   -0.44    2.14    5.23    8.80
+     5.0    0.00   -0.05   -0.29   -0.66   -1.14   -1.70   -2.32   -3.02   -3.77   -4.48   -5.01   -5.20   -4.89   -4.00   -2.52   -0.49    2.08    5.17    8.73
+    10.0    0.00   -0.06   -0.29   -0.66   -1.14   -1.69   -2.32   -3.02   -3.77   -4.48   -5.01   -5.19   -4.88   -4.00   -2.54   -0.53    2.03    5.11    8.66
+    15.0    0.00   -0.06   -0.29   -0.67   -1.14   -1.69   -2.32   -3.03   -3.78   -4.49   -5.02   -5.19   -4.88   -4.00   -2.55   -0.55    1.99    5.06    8.59
+    20.0    0.00   -0.07   -0.30   -0.67   -1.14   -1.69   -2.33   -3.04   -3.80   -4.52   -5.04   -5.20   -4.88   -4.00   -2.56   -0.57    1.97    5.04    8.55
+    25.0    0.00   -0.07   -0.31   -0.68   -1.15   -1.70   -2.34   -3.07   -3.83   -4.54   -5.06   -5.22   -4.89   -4.01   -2.56   -0.57    1.97    5.04    8.53
+    30.0    0.00   -0.08   -0.31   -0.68   -1.16   -1.72   -2.37   -3.10   -3.87   -4.58   -5.09   -5.24   -4.90   -4.01   -2.56   -0.56    1.98    5.06    8.54
+    35.0    0.00   -0.08   -0.32   -0.69   -1.17   -1.74   -2.39   -3.13   -3.91   -4.62   -5.12   -5.26   -4.91   -4.02   -2.56   -0.55    2.02    5.11    8.59
+    40.0    0.00   -0.09   -0.33   -0.70   -1.18   -1.76   -2.42   -3.17   -3.95   -4.66   -5.16   -5.29   -4.93   -4.03   -2.56   -0.53    2.06    5.18    8.66
+    45.0    0.00   -0.09   -0.34   -0.72   -1.20   -1.78   -2.45   -3.20   -3.99   -4.70   -5.19   -5.31   -4.95   -4.04   -2.56   -0.50    2.12    5.26    8.74
+    50.0    0.00   -0.10   -0.35   -0.73   -1.22   -1.80   -2.48   -3.23   -4.02   -4.73   -5.22   -5.34   -4.98   -4.06   -2.56   -0.48    2.17    5.35    8.84
+    55.0    0.00   -0.10   -0.36   -0.74   -1.23   -1.82   -2.50   -3.26   -4.04   -4.75   -5.24   -5.36   -5.00   -4.08   -2.57   -0.47    2.23    5.44    8.93
+    60.0    0.00   -0.11   -0.37   -0.76   -1.25   -1.84   -2.52   -3.28   -4.06   -4.77   -5.26   -5.39   -5.03   -4.11   -2.59   -0.46    2.28    5.52    9.00
+    65.0    0.00   -0.12   -0.38   -0.77   -1.26   -1.85   -2.53   -3.28   -4.07   -4.77   -5.27   -5.41   -5.06   -4.14   -2.61   -0.45    2.32    5.59    9.05
+    70.0    0.00   -0.12   -0.39   -0.79   -1.28   -1.86   -2.53   -3.28   -4.06   -4.77   -5.28   -5.43   -5.09   -4.18   -2.64   -0.45    2.35    5.64    9.08
+    75.0    0.00   -0.13   -0.41   -0.80   -1.29   -1.86   -2.53   -3.28   -4.06   -4.77   -5.28   -5.45   -5.13   -4.22   -2.67   -0.46    2.37    5.67    9.08
+    80.0    0.00   -0.13   -0.42   -0.81   -1.30   -1.87   -2.53   -3.27   -4.05   -4.76   -5.29   -5.47   -5.16   -4.26   -2.70   -0.47    2.39    5.69    9.05
+    85.0    0.00   -0.14   -0.43   -0.83   -1.31   -1.87   -2.53   -3.26   -4.03   -4.76   -5.29   -5.48   -5.19   -4.29   -2.72   -0.47    2.39    5.69    9.01
+    90.0    0.00   -0.15   -0.44   -0.84   -1.32   -1.88   -2.52   -3.25   -4.03   -4.76   -5.30   -5.50   -5.21   -4.31   -2.74   -0.48    2.39    5.67    8.96
+    95.0    0.00   -0.15   -0.45   -0.85   -1.33   -1.88   -2.53   -3.25   -4.03   -4.76   -5.31   -5.51   -5.22   -4.32   -2.74   -0.48    2.39    5.66    8.92
+   100.0    0.00   -0.15   -0.46   -0.86   -1.34   -1.89   -2.53   -3.26   -4.04   -4.77   -5.32   -5.52   -5.22   -4.31   -2.73   -0.47    2.39    5.64    8.89
+   105.0    0.00   -0.16   -0.47   -0.87   -1.35   -1.90   -2.54   -3.27   -4.05   -4.79   -5.33   -5.53   -5.21   -4.29   -2.70   -0.45    2.39    5.63    8.88
+   110.0    0.00   -0.16   -0.47   -0.88   -1.37   -1.92   -2.56   -3.29   -4.07   -4.81   -5.34   -5.52   -5.19   -4.25   -2.66   -0.41    2.41    5.62    8.90
+   115.0    0.00   -0.17   -0.48   -0.89   -1.38   -1.93   -2.58   -3.31   -4.10   -4.83   -5.35   -5.50   -5.15   -4.19   -2.60   -0.37    2.42    5.63    8.94
+   120.0    0.00   -0.17   -0.49   -0.90   -1.39   -1.95   -2.59   -3.33   -4.12   -4.84   -5.35   -5.48   -5.10   -4.13   -2.53   -0.32    2.45    5.65    9.00
+   125.0    0.00   -0.17   -0.49   -0.91   -1.40   -1.96   -2.61   -3.35   -4.14   -4.85   -5.34   -5.45   -5.05   -4.06   -2.46   -0.26    2.49    5.68    9.07
+   130.0    0.00   -0.17   -0.49   -0.92   -1.41   -1.97   -2.62   -3.36   -4.15   -4.85   -5.33   -5.42   -4.99   -3.98   -2.38   -0.20    2.53    5.72    9.14
+   135.0    0.00   -0.17   -0.49   -0.92   -1.41   -1.98   -2.63   -3.37   -4.14   -4.84   -5.31   -5.38   -4.94   -3.92   -2.32   -0.14    2.58    5.76    9.19
+   140.0    0.00   -0.17   -0.49   -0.92   -1.41   -1.98   -2.62   -3.36   -4.13   -4.83   -5.28   -5.35   -4.89   -3.87   -2.26   -0.09    2.62    5.79    9.23
+   145.0    0.00   -0.17   -0.49   -0.92   -1.41   -1.97   -2.61   -3.34   -4.11   -4.80   -5.25   -5.32   -4.86   -3.83   -2.22   -0.05    2.66    5.81    9.23
+   150.0    0.00   -0.17   -0.49   -0.91   -1.40   -1.96   -2.59   -3.31   -4.07   -4.76   -5.22   -5.29   -4.85   -3.82   -2.20   -0.02    2.68    5.81    9.19
+   155.0    0.00   -0.16   -0.48   -0.90   -1.39   -1.94   -2.56   -3.28   -4.03   -4.72   -5.20   -5.28   -4.85   -3.82   -2.20   -0.02    2.68    5.79    9.13
+   160.0    0.00   -0.16   -0.47   -0.89   -1.37   -1.91   -2.53   -3.23   -3.99   -4.68   -5.17   -5.27   -4.86   -3.85   -2.23   -0.04    2.66    5.75    9.03
+   165.0    0.00   -0.15   -0.46   -0.88   -1.35   -1.89   -2.50   -3.19   -3.94   -4.65   -5.15   -5.28   -4.88   -3.88   -2.27   -0.08    2.61    5.68    8.91
+   170.0    0.00   -0.15   -0.45   -0.86   -1.33   -1.86   -2.46   -3.15   -3.90   -4.61   -5.13   -5.28   -4.91   -3.92   -2.32   -0.14    2.54    5.59    8.78
+   175.0    0.00   -0.14   -0.44   -0.84   -1.31   -1.83   -2.43   -3.12   -3.87   -4.59   -5.12   -5.29   -4.93   -3.97   -2.38   -0.21    2.45    5.49    8.66
+   180.0    0.00   -0.14   -0.43   -0.82   -1.29   -1.81   -2.40   -3.09   -3.84   -4.57   -5.11   -5.29   -4.95   -4.01   -2.44   -0.29    2.35    5.37    8.55
+   185.0    0.00   -0.13   -0.41   -0.81   -1.26   -1.78   -2.38   -3.07   -3.82   -4.55   -5.10   -5.29   -4.96   -4.04   -2.49   -0.38    2.24    5.25    8.47
+   190.0    0.00   -0.12   -0.40   -0.78   -1.24   -1.76   -2.36   -3.05   -3.81   -4.55   -5.10   -5.29   -4.97   -4.05   -2.54   -0.46    2.13    5.15    8.41
+   195.0    0.00   -0.12   -0.39   -0.76   -1.22   -1.74   -2.35   -3.05   -3.81   -4.54   -5.09   -5.27   -4.96   -4.06   -2.57   -0.53    2.03    5.05    8.38
+   200.0    0.00   -0.11   -0.37   -0.74   -1.20   -1.72   -2.34   -3.04   -3.81   -4.54   -5.08   -5.25   -4.94   -4.05   -2.59   -0.59    1.95    4.98    8.37
+   205.0    0.00   -0.10   -0.35   -0.72   -1.18   -1.71   -2.33   -3.04   -3.81   -4.54   -5.06   -5.23   -4.91   -4.04   -2.60   -0.63    1.89    4.93    8.39
+   210.0    0.00   -0.09   -0.34   -0.70   -1.16   -1.70   -2.32   -3.04   -3.81   -4.53   -5.05   -5.21   -4.89   -4.02   -2.61   -0.65    1.86    4.91    8.41
+   215.0    0.00   -0.09   -0.33   -0.69   -1.14   -1.68   -2.32   -3.04   -3.81   -4.52   -5.03   -5.19   -4.86   -4.01   -2.60   -0.66    1.84    4.91    8.44
+   220.0    0.00   -0.08   -0.31   -0.67   -1.12   -1.67   -2.31   -3.04   -3.81   -4.52   -5.02   -5.17   -4.85   -4.00   -2.60   -0.66    1.85    4.93    8.47
+   225.0    0.00   -0.07   -0.30   -0.65   -1.11   -1.66   -2.30   -3.03   -3.80   -4.51   -5.01   -5.16   -4.85   -4.00   -2.60   -0.65    1.87    4.96    8.48
+   230.0    0.00   -0.07   -0.29   -0.64   -1.10   -1.65   -2.30   -3.03   -3.79   -4.49   -5.00   -5.16   -4.86   -4.01   -2.61   -0.64    1.90    4.98    8.48
+   235.0    0.00   -0.06   -0.28   -0.63   -1.09   -1.64   -2.29   -3.02   -3.78   -4.49   -5.00   -5.17   -4.88   -4.04   -2.63   -0.64    1.92    5.00    8.45
+   240.0    0.00   -0.05   -0.27   -0.62   -1.08   -1.64   -2.28   -3.01   -3.77   -4.48   -5.00   -5.19   -4.91   -4.08   -2.65   -0.64    1.93    5.01    8.41
+   245.0    0.00   -0.05   -0.26   -0.61   -1.07   -1.63   -2.28   -3.00   -3.76   -4.47   -5.01   -5.21   -4.95   -4.12   -2.69   -0.66    1.93    5.00    8.36
+   250.0    0.00   -0.04   -0.25   -0.60   -1.07   -1.63   -2.28   -2.99   -3.75   -4.47   -5.01   -5.24   -4.99   -4.17   -2.73   -0.69    1.91    4.97    8.29
+   255.0    0.00   -0.04   -0.25   -0.60   -1.07   -1.63   -2.28   -2.99   -3.75   -4.46   -5.02   -5.26   -5.02   -4.21   -2.77   -0.72    1.87    4.91    8.22
+   260.0    0.00   -0.04   -0.24   -0.60   -1.08   -1.64   -2.28   -2.99   -3.74   -4.46   -5.02   -5.27   -5.05   -4.24   -2.81   -0.76    1.82    4.84    8.16
+   265.0    0.00   -0.03   -0.24   -0.60   -1.08   -1.65   -2.29   -3.00   -3.75   -4.46   -5.03   -5.28   -5.06   -4.26   -2.83   -0.80    1.76    4.76    8.10
+   270.0    0.00   -0.03   -0.24   -0.61   -1.09   -1.67   -2.31   -3.01   -3.75   -4.46   -5.02   -5.28   -5.06   -4.26   -2.85   -0.84    1.69    4.68    8.06
+   275.0    0.00   -0.03   -0.24   -0.61   -1.11   -1.68   -2.32   -3.02   -3.75   -4.46   -5.02   -5.27   -5.05   -4.25   -2.84   -0.86    1.64    4.61    8.03
+   280.0    0.00   -0.03   -0.24   -0.62   -1.12   -1.70   -2.34   -3.03   -3.76   -4.46   -5.01   -5.26   -5.03   -4.23   -2.82   -0.86    1.61    4.56    8.03
+   285.0    0.00   -0.03   -0.25   -0.63   -1.13   -1.72   -2.35   -3.04   -3.76   -4.46   -5.00   -5.24   -5.00   -4.19   -2.79   -0.84    1.60    4.53    8.05
+   290.0    0.00   -0.03   -0.25   -0.64   -1.15   -1.73   -2.37   -3.05   -3.77   -4.45   -4.99   -5.22   -4.97   -4.15   -2.74   -0.80    1.62    4.53    8.08
+   295.0    0.00   -0.03   -0.25   -0.65   -1.16   -1.75   -2.39   -3.07   -3.77   -4.45   -4.99   -5.20   -4.94   -4.10   -2.68   -0.74    1.67    4.57    8.14
+   300.0    0.00   -0.03   -0.25   -0.66   -1.18   -1.76   -2.40   -3.07   -3.78   -4.45   -4.98   -5.19   -4.92   -4.06   -2.62   -0.66    1.74    4.63    8.22
+   305.0    0.00   -0.03   -0.26   -0.66   -1.19   -1.78   -2.41   -3.08   -3.78   -4.46   -4.98   -5.18   -4.90   -4.02   -2.55   -0.58    1.83    4.72    8.31
+   310.0    0.00   -0.03   -0.26   -0.67   -1.19   -1.78   -2.42   -3.09   -3.79   -4.46   -4.99   -5.19   -4.89   -3.99   -2.49   -0.49    1.94    4.84    8.41
+   315.0    0.00   -0.03   -0.26   -0.67   -1.20   -1.79   -2.42   -3.09   -3.79   -4.47   -5.00   -5.19   -4.88   -3.96   -2.44   -0.41    2.05    4.96    8.52
+   320.0    0.00   -0.03   -0.27   -0.68   -1.20   -1.79   -2.42   -3.09   -3.80   -4.48   -5.01   -5.20   -4.88   -3.95   -2.41   -0.34    2.15    5.08    8.63
+   325.0    0.00   -0.03   -0.27   -0.68   -1.20   -1.79   -2.42   -3.09   -3.80   -4.49   -5.02   -5.21   -4.89   -3.95   -2.38   -0.29    2.23    5.18    8.73
+   330.0    0.00   -0.03   -0.27   -0.68   -1.20   -1.78   -2.41   -3.09   -3.80   -4.49   -5.03   -5.22   -4.90   -3.95   -2.37   -0.26    2.29    5.27    8.81
+   335.0    0.00   -0.04   -0.27   -0.68   -1.19   -1.77   -2.40   -3.08   -3.80   -4.50   -5.03   -5.23   -4.90   -3.95   -2.38   -0.26    2.32    5.33    8.88
+   340.0    0.00   -0.04   -0.28   -0.68   -1.18   -1.76   -2.39   -3.07   -3.80   -4.50   -5.04   -5.23   -4.91   -3.96   -2.39   -0.27    2.32    5.36    8.92
+   345.0    0.00   -0.04   -0.28   -0.67   -1.18   -1.75   -2.37   -3.06   -3.79   -4.49   -5.03   -5.23   -4.91   -3.97   -2.42   -0.30    2.30    5.36    8.93
+   350.0    0.00   -0.04   -0.28   -0.67   -1.17   -1.73   -2.36   -3.05   -3.78   -4.49   -5.03   -5.22   -4.91   -3.98   -2.44   -0.34    2.26    5.34    8.91
+   355.0    0.00   -0.05   -0.28   -0.67   -1.16   -1.72   -2.34   -3.04   -3.77   -4.48   -5.02   -5.21   -4.90   -3.99   -2.47   -0.39    2.20    5.29    8.87
+   360.0    0.00   -0.05   -0.28   -0.66   -1.15   -1.71   -2.33   -3.03   -3.77   -4.48   -5.01   -5.20   -4.89   -4.00   -2.50   -0.44    2.14    5.23    8.80
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TRM29659.00     UNAV                                        TYPE / SERIAL NO    
+FIELD               NGS                      1    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      1.38      1.53     89.55                              NORTH / EAST / UP   
+   NOAZI    0.00    0.57    0.40   -0.53   -1.82   -3.32   -4.86   -6.19   -7.07   -7.51   -7.36   -6.59   -5.33   -3.45   -0.98    2.09    5.87
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.78     -0.69    119.65                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.43   -0.91   -1.58   -2.39   -3.18   -3.99   -4.77   -5.41   -5.81   -5.85   -5.46   -4.53   -3.33   -1.63    0.39    2.95
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TRM33429.00+GP  NONE                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH              17    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+Number of Calibrated Antennas GPS:      017                 COMMENT             
+Number of Individual Calibrations GPS:  053                 COMMENT             
+   G01                                                      START OF FREQUENCY  
+     -0.05     -0.58     69.58                              NORTH / EAST / UP   
+   NOAZI    0.00    0.61    2.21    4.27    6.07    7.07    6.98    5.92    4.24    2.39    0.70   -0.69   -1.82   -2.72   -3.26   -3.08   -1.66    1.40    6.00
+     0.0    0.00    0.61    2.21    4.24    6.01    6.96    6.83    5.73    4.04    2.21    0.57   -0.78   -1.89   -2.81   -3.38   -3.16   -1.59    1.71    6.45
+     5.0    0.00    0.60    2.20    4.24    6.03    6.98    6.84    5.73    4.02    2.17    0.51   -0.86   -1.98   -2.92   -3.51   -3.34   -1.82    1.44    6.18
+    10.0    0.00    0.59    2.19    4.24    6.04    7.01    6.87    5.75    4.02    2.14    0.45   -0.93   -2.07   -3.02   -3.64   -3.50   -2.04    1.17    5.91
+    15.0    0.00    0.58    2.19    4.25    6.06    7.03    6.90    5.77    4.02    2.13    0.42   -0.98   -2.14   -3.10   -3.74   -3.65   -2.24    0.92    5.67
+    20.0    0.00    0.57    2.18    4.25    6.07    7.07    6.94    5.81    4.05    2.13    0.40   -1.03   -2.19   -3.17   -3.83   -3.78   -2.42    0.69    5.44
+    25.0    0.00    0.56    2.17    4.25    6.09    7.10    6.99    5.85    4.08    2.14    0.39   -1.06   -2.24   -3.22   -3.90   -3.87   -2.56    0.50    5.25
+    30.0    0.00    0.55    2.16    4.25    6.11    7.13    7.04    5.91    4.13    2.17    0.39   -1.07   -2.27   -3.26   -3.95   -3.94   -2.67    0.34    5.09
+    35.0    0.00    0.54    2.15    4.24    6.12    7.16    7.08    5.96    4.18    2.21    0.41   -1.08   -2.29   -3.29   -3.98   -3.99   -2.75    0.22    4.95
+    40.0    0.00    0.54    2.14    4.24    6.13    7.19    7.13    6.02    4.23    2.25    0.43   -1.07   -2.29   -3.30   -3.99   -4.01   -2.80    0.13    4.83
+    45.0    0.00    0.53    2.12    4.23    6.13    7.21    7.16    6.06    4.29    2.30    0.46   -1.05   -2.29   -3.29   -3.99   -4.01   -2.82    0.07    4.73
+    50.0    0.00    0.52    2.11    4.22    6.13    7.22    7.19    6.11    4.34    2.34    0.50   -1.03   -2.27   -3.28   -3.97   -3.99   -2.82    0.04    4.64
+    55.0    0.00    0.51    2.09    4.20    6.12    7.22    7.21    6.14    4.38    2.39    0.55   -0.99   -2.24   -3.25   -3.94   -3.96   -2.80    0.02    4.56
+    60.0    0.00    0.50    2.08    4.18    6.10    7.22    7.22    6.16    4.42    2.44    0.59   -0.95   -2.20   -3.21   -3.90   -3.92   -2.77    0.01    4.49
+    65.0    0.00    0.49    2.06    4.16    6.08    7.20    7.21    6.18    4.44    2.48    0.64   -0.90   -2.15   -3.16   -3.85   -3.87   -2.73    0.02    4.43
+    70.0    0.00    0.48    2.04    4.13    6.05    7.18    7.20    6.18    4.46    2.51    0.69   -0.84   -2.09   -3.10   -3.78   -3.80   -2.66    0.05    4.38
+    75.0    0.00    0.47    2.02    4.10    6.01    7.14    7.18    6.17    4.48    2.55    0.74   -0.78   -2.02   -3.03   -3.70   -3.72   -2.58    0.11    4.36
+    80.0    0.00    0.46    2.00    4.07    5.98    7.10    7.15    6.16    4.49    2.58    0.79   -0.71   -1.95   -2.94   -3.61   -3.62   -2.48    0.19    4.38
+    85.0    0.00    0.46    1.98    4.04    5.94    7.06    7.11    6.14    4.49    2.61    0.84   -0.64   -1.86   -2.85   -3.50   -3.50   -2.36    0.30    4.44
+    90.0    0.00    0.45    1.96    4.01    5.89    7.02    7.07    6.12    4.49    2.63    0.89   -0.57   -1.77   -2.74   -3.38   -3.36   -2.20    0.45    4.55
+    95.0    0.00    0.45    1.95    3.98    5.85    6.97    7.04    6.10    4.49    2.66    0.95   -0.50   -1.68   -2.63   -3.25   -3.20   -2.02    0.64    4.72
+   100.0    0.00    0.44    1.93    3.95    5.81    6.93    7.00    6.08    4.50    2.69    1.00   -0.42   -1.58   -2.51   -3.10   -3.03   -1.82    0.86    4.94
+   105.0    0.00    0.44    1.92    3.92    5.77    6.89    6.96    6.06    4.50    2.71    1.05   -0.35   -1.48   -2.39   -2.95   -2.84   -1.61    1.11    5.21
+   110.0    0.00    0.44    1.91    3.90    5.74    6.85    6.93    6.04    4.50    2.74    1.10   -0.28   -1.39   -2.27   -2.80   -2.66   -1.38    1.38    5.52
+   115.0    0.00    0.44    1.90    3.88    5.71    6.82    6.90    6.02    4.50    2.76    1.14   -0.22   -1.31   -2.16   -2.67   -2.49   -1.17    1.65    5.85
+   120.0    0.00    0.44    1.90    3.87    5.69    6.79    6.88    6.01    4.50    2.78    1.18   -0.16   -1.23   -2.07   -2.54   -2.33   -0.97    1.91    6.19
+   125.0    0.00    0.45    1.90    3.86    5.67    6.76    6.85    5.99    4.50    2.79    1.20   -0.12   -1.18   -1.99   -2.45   -2.21   -0.80    2.15    6.52
+   130.0    0.00    0.45    1.90    3.85    5.65    6.74    6.83    5.97    4.49    2.79    1.21   -0.10   -1.14   -1.94   -2.38   -2.11   -0.66    2.35    6.82
+   135.0    0.00    0.46    1.91    3.86    5.65    6.72    6.80    5.95    4.46    2.78    1.21   -0.09   -1.13   -1.92   -2.34   -2.05   -0.56    2.51    7.07
+   140.0    0.00    0.47    1.92    3.87    5.65    6.71    6.78    5.92    4.43    2.75    1.18   -0.11   -1.14   -1.92   -2.34   -2.03   -0.51    2.62    7.26
+   145.0    0.00    0.48    1.94    3.88    5.66    6.71    6.76    5.88    4.39    2.70    1.14   -0.16   -1.18   -1.96   -2.37   -2.05   -0.50    2.67    7.38
+   150.0    0.00    0.49    1.96    3.91    5.67    6.71    6.75    5.85    4.34    2.64    1.07   -0.23   -1.25   -2.03   -2.43   -2.10   -0.54    2.67    7.42
+   155.0    0.00    0.50    1.99    3.93    5.69    6.72    6.73    5.81    4.28    2.57    0.99   -0.32   -1.35   -2.12   -2.52   -2.19   -0.60    2.62    7.40
+   160.0    0.00    0.52    2.01    3.97    5.72    6.73    6.72    5.77    4.22    2.48    0.88   -0.43   -1.46   -2.24   -2.63   -2.29   -0.70    2.53    7.30
+   165.0    0.00    0.53    2.05    4.01    5.76    6.75    6.72    5.73    4.15    2.39    0.77   -0.55   -1.59   -2.37   -2.76   -2.41   -0.82    2.40    7.15
+   170.0    0.00    0.55    2.08    4.05    5.81    6.78    6.72    5.70    4.08    2.29    0.65   -0.68   -1.72   -2.50   -2.89   -2.54   -0.95    2.25    6.96
+   175.0    0.00    0.57    2.12    4.10    5.86    6.82    6.73    5.68    4.02    2.20    0.54   -0.81   -1.86   -2.64   -3.03   -2.68   -1.10    2.08    6.74
+   180.0    0.00    0.59    2.16    4.16    5.91    6.86    6.74    5.66    3.97    2.11    0.43   -0.93   -1.99   -2.77   -3.16   -2.82   -1.25    1.90    6.51
+   185.0    0.00    0.60    2.20    4.22    5.98    6.91    6.77    5.65    3.93    2.04    0.33   -1.04   -2.11   -2.89   -3.29   -2.96   -1.41    1.71    6.29
+   190.0    0.00    0.62    2.24    4.27    6.04    6.97    6.81    5.66    3.90    1.98    0.25   -1.14   -2.21   -3.00   -3.41   -3.10   -1.58    1.52    6.08
+   195.0    0.00    0.64    2.28    4.33    6.11    7.04    6.85    5.68    3.89    1.94    0.19   -1.21   -2.29   -3.10   -3.53   -3.24   -1.74    1.34    5.89
+   200.0    0.00    0.66    2.32    4.39    6.18    7.10    6.91    5.71    3.89    1.92    0.16   -1.26   -2.36   -3.19   -3.64   -3.37   -1.90    1.17    5.74
+   205.0    0.00    0.68    2.35    4.45    6.24    7.17    6.96    5.75    3.91    1.92    0.14   -1.29   -2.41   -3.26   -3.74   -3.50   -2.05    1.02    5.62
+   210.0    0.00    0.69    2.39    4.50    6.31    7.23    7.02    5.79    3.94    1.94    0.14   -1.30   -2.44   -3.32   -3.83   -3.63   -2.20    0.88    5.53
+   215.0    0.00    0.71    2.42    4.55    6.36    7.29    7.08    5.84    3.98    1.97    0.16   -1.30   -2.46   -3.36   -3.91   -3.74   -2.32    0.76    5.47
+   220.0    0.00    0.72    2.45    4.59    6.41    7.35    7.13    5.89    4.03    2.01    0.19   -1.29   -2.47   -3.40   -3.98   -3.83   -2.43    0.67    5.43
+   225.0    0.00    0.73    2.48    4.62    6.46    7.39    7.18    5.94    4.07    2.05    0.23   -1.27   -2.47   -3.43   -4.04   -3.91   -2.50    0.61    5.42
+   230.0    0.00    0.75    2.50    4.65    6.49    7.42    7.21    5.98    4.12    2.10    0.26   -1.25   -2.47   -3.45   -4.08   -3.95   -2.55    0.58    5.41
+   235.0    0.00    0.76    2.51    4.67    6.51    7.45    7.24    6.01    4.15    2.14    0.30   -1.22   -2.46   -3.46   -4.09   -3.97   -2.56    0.58    5.41
+   240.0    0.00    0.76    2.52    4.68    6.52    7.46    7.25    6.03    4.18    2.17    0.34   -1.19   -2.44   -3.45   -4.08   -3.95   -2.53    0.61    5.42
+   245.0    0.00    0.77    2.53    4.69    6.52    7.45    7.25    6.04    4.20    2.20    0.37   -1.16   -2.41   -3.43   -4.05   -3.90   -2.46    0.67    5.43
+   250.0    0.00    0.77    2.53    4.68    6.51    7.44    7.24    6.04    4.22    2.23    0.41   -1.12   -2.37   -3.38   -3.99   -3.82   -2.37    0.75    5.45
+   255.0    0.00    0.77    2.53    4.67    6.49    7.41    7.22    6.03    4.22    2.25    0.45   -1.07   -2.31   -3.31   -3.89   -3.71   -2.25    0.84    5.48
+   260.0    0.00    0.78    2.53    4.65    6.46    7.38    7.19    6.01    4.22    2.28    0.49   -1.01   -2.24   -3.21   -3.78   -3.57   -2.11    0.95    5.51
+   265.0    0.00    0.77    2.52    4.63    6.42    7.34    7.15    5.98    4.22    2.30    0.54   -0.94   -2.14   -3.09   -3.64   -3.42   -1.96    1.07    5.57
+   270.0    0.00    0.77    2.50    4.61    6.38    7.29    7.11    5.96    4.22    2.32    0.59   -0.85   -2.03   -2.95   -3.48   -3.25   -1.80    1.20    5.65
+   275.0    0.00    0.77    2.49    4.58    6.34    7.25    7.07    5.93    4.22    2.35    0.66   -0.75   -1.90   -2.80   -3.31   -3.09   -1.65    1.33    5.75
+   280.0    0.00    0.76    2.47    4.54    6.30    7.20    7.03    5.91    4.22    2.39    0.73   -0.64   -1.76   -2.64   -3.14   -2.92   -1.50    1.47    5.88
+   285.0    0.00    0.76    2.45    4.51    6.26    7.16    6.99    5.89    4.23    2.43    0.81   -0.53   -1.62   -2.48   -2.98   -2.77   -1.35    1.61    6.04
+   290.0    0.00    0.75    2.43    4.48    6.22    7.11    6.96    5.87    4.24    2.47    0.88   -0.42   -1.48   -2.33   -2.83   -2.62   -1.22    1.76    6.22
+   295.0    0.00    0.74    2.41    4.45    6.18    7.08    6.93    5.87    4.25    2.51    0.96   -0.32   -1.36   -2.19   -2.70   -2.50   -1.09    1.91    6.43
+   300.0    0.00    0.73    2.39    4.42    6.14    7.05    6.91    5.86    4.27    2.55    1.02   -0.23   -1.25   -2.08   -2.59   -2.39   -0.97    2.07    6.64
+   305.0    0.00    0.72    2.37    4.39    6.11    7.02    6.89    5.86    4.28    2.59    1.07   -0.17   -1.18   -2.00   -2.51   -2.31   -0.87    2.22    6.85
+   310.0    0.00    0.71    2.35    4.36    6.08    7.00    6.88    5.86    4.29    2.61    1.11   -0.12   -1.13   -1.96   -2.46   -2.25   -0.78    2.36    7.05
+   315.0    0.00    0.70    2.33    4.34    6.06    6.98    6.87    5.85    4.30    2.62    1.12   -0.11   -1.11   -1.94   -2.44   -2.22   -0.71    2.49    7.22
+   320.0    0.00    0.69    2.31    4.32    6.04    6.96    6.86    5.85    4.29    2.61    1.11   -0.12   -1.13   -1.96   -2.46   -2.21   -0.66    2.58    7.35
+   325.0    0.00    0.68    2.30    4.30    6.03    6.95    6.85    5.84    4.28    2.59    1.08   -0.16   -1.18   -2.01   -2.51   -2.24   -0.65    2.64    7.43
+   330.0    0.00    0.67    2.28    4.28    6.01    6.94    6.84    5.82    4.25    2.56    1.03   -0.22   -1.25   -2.09   -2.58   -2.30   -0.67    2.66    7.45
+   335.0    0.00    0.66    2.27    4.27    6.01    6.94    6.83    5.80    4.22    2.51    0.97   -0.30   -1.34   -2.19   -2.68   -2.38   -0.73    2.62    7.41
+   340.0    0.00    0.65    2.25    4.26    6.00    6.93    6.82    5.78    4.18    2.45    0.89   -0.39   -1.45   -2.31   -2.80   -2.50   -0.84    2.53    7.31
+   345.0    0.00    0.64    2.24    4.25    6.00    6.93    6.82    5.76    4.14    2.39    0.81   -0.49   -1.56   -2.43   -2.94   -2.64   -0.98    2.39    7.15
+   350.0    0.00    0.63    2.23    4.25    6.00    6.94    6.82    5.74    4.10    2.32    0.72   -0.59   -1.67   -2.56   -3.08   -2.81   -1.16    2.20    6.95
+   355.0    0.00    0.62    2.22    4.24    6.01    6.95    6.82    5.73    4.06    2.26    0.64   -0.69   -1.78   -2.69   -3.23   -2.98   -1.37    1.97    6.71
+   360.0    0.00    0.61    2.21    4.24    6.01    6.96    6.83    5.73    4.04    2.21    0.57   -0.78   -1.89   -2.81   -3.38   -3.16   -1.59    1.71    6.45
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.09     -0.22     62.04                              NORTH / EAST / UP   
+   NOAZI    0.00    0.01    0.01   -0.04   -0.24   -0.60   -1.13   -1.75   -2.31   -2.70   -2.83   -2.71   -2.43   -2.07   -1.60   -0.80    0.75    3.53    7.78
+     0.0    0.00    0.07    0.12    0.09   -0.08   -0.44   -0.98   -1.61   -2.19   -2.57   -2.65   -2.41   -1.97   -1.45   -0.89   -0.04    1.55    4.52    9.28
+     5.0    0.00    0.07    0.10    0.05   -0.14   -0.52   -1.07   -1.71   -2.30   -2.69   -2.77   -2.55   -2.13   -1.62   -1.04   -0.19    1.41    4.34    9.03
+    10.0    0.00    0.07    0.09    0.02   -0.20   -0.60   -1.17   -1.81   -2.41   -2.80   -2.90   -2.71   -2.30   -1.81   -1.22   -0.36    1.24    4.14    8.76
+    15.0    0.00    0.06    0.07   -0.02   -0.26   -0.68   -1.26   -1.92   -2.51   -2.92   -3.04   -2.87   -2.49   -2.00   -1.41   -0.54    1.07    3.94    8.48
+    20.0    0.00    0.06    0.06   -0.05   -0.31   -0.75   -1.35   -2.01   -2.62   -3.03   -3.17   -3.02   -2.66   -2.19   -1.60   -0.71    0.89    3.73    8.19
+    25.0    0.00    0.06    0.05   -0.07   -0.35   -0.82   -1.43   -2.10   -2.71   -3.13   -3.28   -3.16   -2.83   -2.37   -1.78   -0.88    0.73    3.54    7.92
+    30.0    0.00    0.05    0.04   -0.09   -0.39   -0.87   -1.49   -2.18   -2.79   -3.22   -3.38   -3.28   -2.97   -2.53   -1.94   -1.03    0.58    3.36    7.67
+    35.0    0.00    0.05    0.03   -0.11   -0.42   -0.91   -1.55   -2.24   -2.86   -3.29   -3.47   -3.38   -3.09   -2.66   -2.07   -1.15    0.45    3.20    7.44
+    40.0    0.00    0.05    0.03   -0.12   -0.44   -0.94   -1.58   -2.28   -2.90   -3.34   -3.53   -3.46   -3.18   -2.76   -2.18   -1.25    0.35    3.07    7.24
+    45.0    0.00    0.05    0.02   -0.12   -0.44   -0.95   -1.60   -2.30   -2.93   -3.37   -3.56   -3.50   -3.24   -2.83   -2.25   -1.33    0.27    2.96    7.08
+    50.0    0.00    0.04    0.03   -0.12   -0.44   -0.95   -1.60   -2.30   -2.94   -3.38   -3.58   -3.53   -3.27   -2.87   -2.30   -1.38    0.21    2.88    6.96
+    55.0    0.00    0.04    0.03   -0.11   -0.42   -0.93   -1.58   -2.29   -2.92   -3.37   -3.57   -3.53   -3.28   -2.89   -2.33   -1.42    0.16    2.83    6.87
+    60.0    0.00    0.04    0.03   -0.09   -0.40   -0.90   -1.55   -2.25   -2.89   -3.34   -3.55   -3.51   -3.27   -2.89   -2.34   -1.44    0.14    2.80    6.82
+    65.0    0.00    0.04    0.04   -0.08   -0.37   -0.85   -1.50   -2.20   -2.84   -3.30   -3.51   -3.47   -3.24   -2.88   -2.35   -1.46    0.13    2.79    6.79
+    70.0    0.00    0.04    0.05   -0.05   -0.33   -0.80   -1.44   -2.14   -2.78   -3.24   -3.45   -3.42   -3.21   -2.86   -2.34   -1.46    0.13    2.81    6.80
+    75.0    0.00    0.04    0.06   -0.03   -0.28   -0.74   -1.36   -2.06   -2.70   -3.16   -3.38   -3.36   -3.16   -2.83   -2.34   -1.46    0.14    2.84    6.83
+    80.0    0.00    0.04    0.06    0.00   -0.24   -0.68   -1.29   -1.98   -2.62   -3.08   -3.30   -3.29   -3.11   -2.80   -2.32   -1.45    0.17    2.90    6.88
+    85.0    0.00    0.04    0.07    0.02   -0.19   -0.61   -1.21   -1.89   -2.52   -2.99   -3.21   -3.21   -3.05   -2.77   -2.30   -1.43    0.22    2.98    6.94
+    90.0    0.00    0.04    0.08    0.04   -0.15   -0.55   -1.12   -1.79   -2.42   -2.89   -3.12   -3.13   -2.98   -2.72   -2.27   -1.39    0.29    3.09    7.03
+    95.0    0.00    0.03    0.08    0.06   -0.11   -0.49   -1.05   -1.70   -2.32   -2.78   -3.02   -3.04   -2.91   -2.66   -2.22   -1.33    0.38    3.21    7.15
+   100.0    0.00    0.03    0.08    0.08   -0.08   -0.43   -0.97   -1.61   -2.22   -2.68   -2.91   -2.94   -2.82   -2.58   -2.14   -1.24    0.50    3.37    7.28
+   105.0    0.00    0.03    0.08    0.09   -0.05   -0.39   -0.91   -1.53   -2.13   -2.57   -2.80   -2.83   -2.71   -2.48   -2.04   -1.12    0.65    3.54    7.44
+   110.0    0.00    0.02    0.08    0.09   -0.03   -0.36   -0.86   -1.46   -2.04   -2.47   -2.69   -2.71   -2.59   -2.36   -1.91   -0.97    0.82    3.73    7.63
+   115.0    0.00    0.02    0.08    0.09   -0.03   -0.33   -0.82   -1.40   -1.96   -2.37   -2.58   -2.59   -2.46   -2.21   -1.75   -0.80    1.01    3.94    7.83
+   120.0    0.00    0.01    0.07    0.08   -0.03   -0.32   -0.79   -1.36   -1.89   -2.29   -2.47   -2.46   -2.31   -2.04   -1.56   -0.60    1.22    4.15    8.06
+   125.0    0.00    0.01    0.06    0.07   -0.04   -0.32   -0.78   -1.33   -1.84   -2.21   -2.37   -2.33   -2.15   -1.85   -1.35   -0.38    1.43    4.36    8.29
+   130.0    0.00    0.00    0.04    0.05   -0.06   -0.34   -0.78   -1.31   -1.80   -2.15   -2.28   -2.21   -1.99   -1.65   -1.13   -0.16    1.63    4.55    8.52
+   135.0    0.00   -0.01    0.03    0.03   -0.09   -0.36   -0.79   -1.31   -1.78   -2.10   -2.20   -2.09   -1.83   -1.46   -0.91    0.06    1.82    4.72    8.73
+   140.0    0.00   -0.01    0.01    0.00   -0.12   -0.40   -0.82   -1.32   -1.78   -2.08   -2.15   -2.00   -1.69   -1.27   -0.70    0.26    1.99    4.85    8.91
+   145.0    0.00   -0.02   -0.01   -0.04   -0.16   -0.44   -0.86   -1.35   -1.79   -2.07   -2.11   -1.92   -1.57   -1.11   -0.52    0.43    2.12    4.94    9.04
+   150.0    0.00   -0.03   -0.04   -0.07   -0.21   -0.49   -0.91   -1.39   -1.82   -2.08   -2.10   -1.88   -1.48   -0.99   -0.37    0.56    2.20    4.98    9.10
+   155.0    0.00   -0.04   -0.06   -0.11   -0.26   -0.55   -0.96   -1.44   -1.87   -2.12   -2.12   -1.87   -1.43   -0.90   -0.27    0.65    2.24    4.96    9.10
+   160.0    0.00   -0.05   -0.08   -0.15   -0.32   -0.61   -1.03   -1.50   -1.93   -2.18   -2.17   -1.89   -1.43   -0.87   -0.22    0.68    2.22    4.89    9.02
+   165.0    0.00   -0.06   -0.10   -0.19   -0.37   -0.68   -1.10   -1.58   -2.00   -2.25   -2.24   -1.95   -1.47   -0.89   -0.23    0.66    2.16    4.77    8.87
+   170.0    0.00   -0.06   -0.13   -0.23   -0.43   -0.75   -1.18   -1.66   -2.09   -2.35   -2.33   -2.04   -1.55   -0.95   -0.29    0.58    2.05    4.61    8.66
+   175.0    0.00   -0.07   -0.15   -0.27   -0.48   -0.82   -1.26   -1.76   -2.20   -2.46   -2.45   -2.16   -1.66   -1.07   -0.41    0.46    1.90    4.41    8.41
+   180.0    0.00   -0.08   -0.16   -0.30   -0.53   -0.88   -1.35   -1.86   -2.31   -2.58   -2.58   -2.30   -1.81   -1.22   -0.56    0.29    1.71    4.19    8.12
+   185.0    0.00   -0.08   -0.18   -0.33   -0.58   -0.95   -1.43   -1.96   -2.42   -2.71   -2.72   -2.45   -1.98   -1.40   -0.76    0.09    1.50    3.95    7.82
+   190.0    0.00   -0.08   -0.19   -0.36   -0.62   -1.01   -1.51   -2.06   -2.54   -2.84   -2.86   -2.61   -2.15   -1.59   -0.97   -0.13    1.27    3.71    7.52
+   195.0    0.00   -0.09   -0.20   -0.38   -0.66   -1.07   -1.59   -2.16   -2.66   -2.96   -3.00   -2.76   -2.32   -1.79   -1.19   -0.37    1.03    3.46    7.25
+   200.0    0.00   -0.09   -0.21   -0.40   -0.69   -1.12   -1.66   -2.25   -2.76   -3.08   -3.12   -2.89   -2.48   -1.98   -1.41   -0.61    0.79    3.23    7.00
+   205.0    0.00   -0.09   -0.21   -0.40   -0.71   -1.15   -1.72   -2.33   -2.85   -3.18   -3.23   -3.01   -2.62   -2.15   -1.62   -0.84    0.55    3.01    6.80
+   210.0    0.00   -0.09   -0.21   -0.41   -0.72   -1.18   -1.76   -2.39   -2.93   -3.26   -3.31   -3.10   -2.73   -2.30   -1.81   -1.06    0.33    2.81    6.63
+   215.0    0.00   -0.08   -0.21   -0.40   -0.71   -1.18   -1.78   -2.42   -2.98   -3.31   -3.36   -3.16   -2.81   -2.42   -1.97   -1.26    0.12    2.63    6.49
+   220.0    0.00   -0.08   -0.20   -0.38   -0.70   -1.17   -1.79   -2.44   -3.00   -3.34   -3.39   -3.19   -2.86   -2.50   -2.10   -1.44   -0.07    2.46    6.39
+   225.0    0.00   -0.08   -0.18   -0.36   -0.67   -1.15   -1.76   -2.43   -2.99   -3.33   -3.38   -3.19   -2.87   -2.55   -2.20   -1.58   -0.24    2.31    6.30
+   230.0    0.00   -0.07   -0.17   -0.33   -0.63   -1.11   -1.72   -2.39   -2.96   -3.29   -3.34   -3.16   -2.86   -2.58   -2.27   -1.70   -0.38    2.18    6.22
+   235.0    0.00   -0.06   -0.15   -0.30   -0.59   -1.05   -1.66   -2.32   -2.89   -3.23   -3.29   -3.11   -2.84   -2.58   -2.32   -1.78   -0.49    2.07    6.16
+   240.0    0.00   -0.05   -0.12   -0.26   -0.53   -0.97   -1.57   -2.23   -2.80   -3.14   -3.21   -3.04   -2.79   -2.57   -2.34   -1.84   -0.57    1.98    6.09
+   245.0    0.00   -0.04   -0.10   -0.21   -0.46   -0.88   -1.47   -2.12   -2.68   -3.03   -3.11   -2.97   -2.74   -2.54   -2.34   -1.87   -0.63    1.91    6.03
+   250.0    0.00   -0.03   -0.07   -0.16   -0.39   -0.79   -1.35   -1.99   -2.56   -2.92   -3.01   -2.89   -2.69   -2.51   -2.33   -1.88   -0.66    1.87    5.99
+   255.0    0.00   -0.02   -0.04   -0.11   -0.31   -0.69   -1.23   -1.86   -2.42   -2.79   -2.91   -2.82   -2.64   -2.49   -2.32   -1.87   -0.65    1.86    5.97
+   260.0    0.00   -0.01   -0.01   -0.06   -0.23   -0.59   -1.11   -1.72   -2.29   -2.67   -2.81   -2.75   -2.60   -2.46   -2.29   -1.84   -0.62    1.89    5.98
+   265.0    0.00    0.00    0.02   -0.01   -0.15   -0.48   -0.99   -1.59   -2.16   -2.55   -2.72   -2.69   -2.56   -2.43   -2.26   -1.80   -0.56    1.95    6.03
+   270.0    0.00    0.01    0.05    0.04   -0.08   -0.39   -0.88   -1.47   -2.04   -2.45   -2.64   -2.63   -2.53   -2.41   -2.23   -1.74   -0.48    2.06    6.14
+   275.0    0.00    0.02    0.07    0.09   -0.01   -0.30   -0.78   -1.36   -1.93   -2.36   -2.57   -2.59   -2.50   -2.38   -2.19   -1.67   -0.37    2.21    6.31
+   280.0    0.00    0.03    0.10    0.13    0.05   -0.23   -0.69   -1.27   -1.85   -2.29   -2.51   -2.55   -2.47   -2.34   -2.13   -1.58   -0.23    2.39    6.55
+   285.0    0.00    0.04    0.12    0.17    0.10   -0.16   -0.62   -1.20   -1.78   -2.23   -2.47   -2.51   -2.43   -2.30   -2.06   -1.47   -0.08    2.62    6.84
+   290.0    0.00    0.05    0.14    0.21    0.15   -0.11   -0.56   -1.15   -1.73   -2.19   -2.43   -2.47   -2.38   -2.23   -1.98   -1.35    0.10    2.87    7.18
+   295.0    0.00    0.06    0.16    0.24    0.18   -0.07   -0.52   -1.11   -1.70   -2.15   -2.39   -2.42   -2.32   -2.15   -1.87   -1.21    0.30    3.14    7.56
+   300.0    0.00    0.06    0.17    0.26    0.21   -0.04   -0.50   -1.09   -1.68   -2.13   -2.36   -2.37   -2.24   -2.05   -1.74   -1.05    0.50    3.43    7.96
+   305.0    0.00    0.07    0.19    0.27    0.23   -0.02   -0.48   -1.08   -1.67   -2.12   -2.33   -2.31   -2.15   -1.93   -1.59   -0.88    0.72    3.71    8.36
+   310.0    0.00    0.07    0.19    0.28    0.24   -0.01   -0.48   -1.08   -1.68   -2.12   -2.31   -2.25   -2.05   -1.79   -1.43   -0.69    0.93    3.99    8.74
+   315.0    0.00    0.08    0.20    0.29    0.24   -0.02   -0.49   -1.09   -1.69   -2.12   -2.28   -2.19   -1.95   -1.65   -1.26   -0.51    1.14    4.24    9.08
+   320.0    0.00    0.08    0.20    0.28    0.23   -0.03   -0.50   -1.11   -1.70   -2.12   -2.26   -2.14   -1.85   -1.51   -1.10   -0.33    1.33    4.46    9.37
+   325.0    0.00    0.08    0.20    0.27    0.22   -0.05   -0.53   -1.14   -1.73   -2.14   -2.25   -2.09   -1.76   -1.38   -0.94   -0.16    1.49    4.64    9.60
+   330.0    0.00    0.08    0.19    0.26    0.19   -0.08   -0.57   -1.18   -1.76   -2.16   -2.25   -2.06   -1.69   -1.28   -0.81   -0.02    1.63    4.77    9.76
+   335.0    0.00    0.08    0.19    0.24    0.16   -0.12   -0.61   -1.22   -1.81   -2.19   -2.27   -2.05   -1.65   -1.20   -0.71    0.09    1.73    4.86    9.84
+   340.0    0.00    0.08    0.18    0.22    0.12   -0.17   -0.67   -1.28   -1.86   -2.24   -2.31   -2.07   -1.64   -1.17   -0.65    0.15    1.78    4.88    9.85
+   345.0    0.00    0.08    0.16    0.19    0.08   -0.23   -0.73   -1.35   -1.93   -2.30   -2.36   -2.11   -1.67   -1.17   -0.64    0.17    1.79    4.86    9.79
+   350.0    0.00    0.08    0.15    0.16    0.03   -0.29   -0.80   -1.42   -2.01   -2.38   -2.44   -2.19   -1.73   -1.22   -0.68    0.14    1.75    4.79    9.67
+   355.0    0.00    0.08    0.14    0.12   -0.03   -0.36   -0.89   -1.51   -2.09   -2.47   -2.53   -2.29   -1.84   -1.32   -0.76    0.07    1.67    4.67    9.50
+   360.0    0.00    0.07    0.12    0.09   -0.08   -0.44   -0.98   -1.61   -2.19   -2.57   -2.65   -2.41   -1.97   -1.45   -0.89   -0.04    1.55    4.52    9.28
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TRM33429.00-GP  NONE                                        TYPE / SERIAL NO    
+FIELD               NGS                      4    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.48     -0.77     62.35                              NORTH / EAST / UP   
+   NOAZI    0.00    0.47    0.90    1.07    0.98    0.68    0.44    0.11   -0.07   -0.11   -0.06    0.21    0.57    1.05    1.82    2.89    4.47
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.72     -1.49     71.75                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.23   -0.41   -0.48   -0.59   -0.68   -0.79   -0.87   -1.11   -1.21   -1.15   -0.96   -0.63   -0.33    0.07    0.29    0.75
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TRM33429.20+GP  NONE                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH              17    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+Number of Calibrated Antennas GPS:      017                 COMMENT             
+Number of Individual Calibrations GPS:  071                 COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.05     -0.75     73.34                              NORTH / EAST / UP   
+   NOAZI    0.00    0.61    2.25    4.39    6.35    7.54    7.62    6.60    4.81    2.72    0.78   -0.79   -1.96   -2.84   -3.41   -3.37   -2.12    1.02    6.36
+     0.0    0.00    0.58    2.15    4.21    6.11    7.27    7.38    6.45    4.78    2.81    0.91   -0.71   -2.02   -3.03   -3.65   -3.51   -2.03    1.32    6.62
+     5.0    0.00    0.57    2.15    4.23    6.14    7.30    7.39    6.43    4.74    2.74    0.83   -0.78   -2.08   -3.10   -3.75   -3.65   -2.23    1.07    6.35
+    10.0    0.00    0.57    2.16    4.25    6.17    7.34    7.41    6.43    4.71    2.69    0.77   -0.84   -2.13   -3.16   -3.83   -3.80   -2.45    0.81    6.10
+    15.0    0.00    0.57    2.17    4.28    6.22    7.38    7.45    6.45    4.69    2.65    0.72   -0.88   -2.17   -3.20   -3.91   -3.93   -2.65    0.55    5.87
+    20.0    0.00    0.57    2.18    4.31    6.26    7.44    7.50    6.48    4.69    2.63    0.69   -0.92   -2.20   -3.24   -3.98   -4.06   -2.84    0.33    5.69
+    25.0    0.00    0.57    2.19    4.34    6.31    7.50    7.56    6.52    4.71    2.62    0.67   -0.95   -2.23   -3.28   -4.04   -4.16   -3.00    0.14    5.56
+    30.0    0.00    0.57    2.20    4.36    6.36    7.56    7.62    6.57    4.74    2.63    0.65   -0.97   -2.26   -3.31   -4.09   -4.25   -3.13   -0.01    5.47
+    35.0    0.00    0.57    2.21    4.39    6.40    7.62    7.68    6.62    4.78    2.64    0.65   -0.99   -2.28   -3.34   -4.13   -4.31   -3.22   -0.11    5.41
+    40.0    0.00    0.57    2.22    4.41    6.44    7.67    7.74    6.68    4.82    2.67    0.65   -1.00   -2.31   -3.37   -4.16   -4.35   -3.27   -0.17    5.38
+    45.0    0.00    0.57    2.22    4.43    6.46    7.71    7.79    6.73    4.87    2.70    0.67   -1.01   -2.32   -3.38   -4.17   -4.36   -3.29   -0.19    5.35
+    50.0    0.00    0.57    2.23    4.43    6.48    7.73    7.82    6.77    4.91    2.73    0.68   -1.00   -2.33   -3.39   -4.17   -4.35   -3.28   -0.20    5.33
+    55.0    0.00    0.57    2.23    4.44    6.49    7.74    7.84    6.80    4.94    2.76    0.71   -0.99   -2.32   -3.37   -4.14   -4.31   -3.24   -0.18    5.30
+    60.0    0.00    0.57    2.22    4.43    6.49    7.74    7.85    6.81    4.96    2.79    0.73   -0.96   -2.29   -3.34   -4.09   -4.25   -3.18   -0.14    5.28
+    65.0    0.00    0.56    2.22    4.42    6.47    7.73    7.84    6.81    4.97    2.80    0.76   -0.93   -2.25   -3.28   -4.02   -4.16   -3.09   -0.08    5.27
+    70.0    0.00    0.56    2.21    4.41    6.45    7.70    7.81    6.79    4.96    2.81    0.78   -0.89   -2.19   -3.21   -3.93   -4.05   -2.98    0.00    5.28
+    75.0    0.00    0.56    2.20    4.39    6.42    7.66    7.77    6.75    4.94    2.81    0.80   -0.86   -2.13   -3.12   -3.81   -3.92   -2.84    0.11    5.33
+    80.0    0.00    0.56    2.19    4.36    6.38    7.61    7.72    6.71    4.90    2.79    0.80   -0.82   -2.06   -3.01   -3.68   -3.76   -2.69    0.25    5.42
+    85.0    0.00    0.55    2.18    4.34    6.34    7.56    7.67    6.66    4.86    2.77    0.80   -0.79   -1.99   -2.90   -3.53   -3.60   -2.51    0.43    5.57
+    90.0    0.00    0.55    2.17    4.31    6.30    7.51    7.61    6.60    4.82    2.74    0.80   -0.76   -1.92   -2.80   -3.39   -3.42   -2.31    0.64    5.76
+    95.0    0.00    0.55    2.15    4.28    6.26    7.47    7.56    6.55    4.77    2.70    0.79   -0.74   -1.86   -2.69   -3.24   -3.24   -2.10    0.86    5.98
+   100.0    0.00    0.55    2.14    4.26    6.22    7.42    7.52    6.51    4.74    2.68    0.78   -0.72   -1.81   -2.59   -3.10   -3.07   -1.89    1.10    6.23
+   105.0    0.00    0.55    2.13    4.23    6.19    7.38    7.48    6.48    4.71    2.66    0.77   -0.70   -1.76   -2.51   -2.98   -2.91   -1.70    1.34    6.49
+   110.0    0.00    0.54    2.12    4.21    6.16    7.35    7.45    6.46    4.69    2.65    0.78   -0.68   -1.71   -2.43   -2.87   -2.77   -1.52    1.56    6.73
+   115.0    0.00    0.54    2.11    4.19    6.13    7.33    7.43    6.44    4.69    2.66    0.80   -0.65   -1.66   -2.36   -2.78   -2.65   -1.37    1.75    6.95
+   120.0    0.00    0.54    2.10    4.18    6.11    7.31    7.42    6.44    4.70    2.68    0.83   -0.61   -1.61   -2.30   -2.71   -2.56   -1.25    1.90    7.13
+   125.0    0.00    0.54    2.10    4.17    6.10    7.30    7.41    6.45    4.72    2.71    0.87   -0.56   -1.56   -2.25   -2.66   -2.50   -1.17    2.02    7.27
+   130.0    0.00    0.55    2.10    4.16    6.09    7.29    7.41    6.45    4.74    2.74    0.91   -0.50   -1.50   -2.21   -2.62   -2.47   -1.12    2.10    7.38
+   135.0    0.00    0.55    2.10    4.16    6.08    7.28    7.40    6.46    4.75    2.77    0.96   -0.45   -1.46   -2.17   -2.61   -2.45   -1.09    2.15    7.47
+   140.0    0.00    0.55    2.10    4.16    6.08    7.27    7.39    6.45    4.76    2.80    0.99   -0.41   -1.42   -2.15   -2.60   -2.46   -1.09    2.18    7.53
+   145.0    0.00    0.56    2.11    4.16    6.07    7.26    7.38    6.44    4.76    2.80    1.01   -0.39   -1.41   -2.15   -2.62   -2.48   -1.10    2.20    7.59
+   150.0    0.00    0.56    2.11    4.17    6.07    7.25    7.36    6.42    4.73    2.78    1.00   -0.40   -1.43   -2.18   -2.65   -2.50   -1.11    2.21    7.65
+   155.0    0.00    0.57    2.12    4.18    6.08    7.24    7.34    6.38    4.69    2.74    0.95   -0.45   -1.47   -2.23   -2.69   -2.54   -1.13    2.21    7.69
+   160.0    0.00    0.58    2.14    4.19    6.08    7.23    7.31    6.34    4.63    2.67    0.87   -0.53   -1.56   -2.30   -2.75   -2.58   -1.15    2.20    7.71
+   165.0    0.00    0.58    2.15    4.21    6.09    7.23    7.29    6.28    4.56    2.57    0.76   -0.65   -1.67   -2.41   -2.83   -2.63   -1.18    2.18    7.70
+   170.0    0.00    0.59    2.17    4.23    6.11    7.23    7.26    6.23    4.48    2.47    0.63   -0.80   -1.82   -2.53   -2.92   -2.69   -1.23    2.12    7.63
+   175.0    0.00    0.60    2.19    4.25    6.13    7.24    7.25    6.19    4.40    2.36    0.49   -0.95   -1.98   -2.67   -3.02   -2.76   -1.30    2.01    7.48
+   180.0    0.00    0.61    2.21    4.28    6.16    7.25    7.24    6.15    4.33    2.25    0.35   -1.11   -2.14   -2.81   -3.13   -2.84   -1.40    1.85    7.25
+   185.0    0.00    0.62    2.24    4.32    6.19    7.28    7.25    6.14    4.28    2.16    0.23   -1.26   -2.29   -2.94   -3.24   -2.95   -1.54    1.62    6.94
+   190.0    0.00    0.63    2.26    4.35    6.23    7.31    7.27    6.13    4.25    2.10    0.14   -1.37   -2.41   -3.06   -3.35   -3.07   -1.72    1.34    6.54
+   195.0    0.00    0.64    2.29    4.39    6.28    7.36    7.31    6.15    4.25    2.07    0.09   -1.45   -2.49   -3.15   -3.44   -3.20   -1.93    1.00    6.09
+   200.0    0.00    0.65    2.31    4.43    6.33    7.41    7.36    6.19    4.27    2.08    0.07   -1.48   -2.54   -3.20   -3.53   -3.34   -2.17    0.65    5.61
+   205.0    0.00    0.66    2.34    4.47    6.39    7.47    7.42    6.25    4.32    2.12    0.10   -1.46   -2.54   -3.23   -3.60   -3.48   -2.41    0.29    5.16
+   210.0    0.00    0.67    2.36    4.52    6.44    7.54    7.48    6.32    4.39    2.18    0.17   -1.41   -2.50   -3.23   -3.66   -3.62   -2.63   -0.02    4.77
+   215.0    0.00    0.68    2.39    4.56    6.50    7.60    7.56    6.40    4.47    2.27    0.25   -1.33   -2.44   -3.21   -3.70   -3.73   -2.82   -0.27    4.49
+   220.0    0.00    0.69    2.41    4.60    6.55    7.67    7.63    6.47    4.55    2.36    0.35   -1.23   -2.37   -3.18   -3.72   -3.82   -2.95   -0.42    4.35
+   225.0    0.00    0.70    2.43    4.63    6.60    7.73    7.70    6.55    4.63    2.45    0.44   -1.14   -2.30   -3.15   -3.74   -3.87   -3.01   -0.45    4.37
+   230.0    0.00    0.70    2.45    4.66    6.65    7.79    7.76    6.61    4.70    2.52    0.52   -1.07   -2.24   -3.13   -3.75   -3.90   -3.00   -0.37    4.53
+   235.0    0.00    0.71    2.46    4.69    6.68    7.83    7.81    6.67    4.76    2.58    0.58   -1.02   -2.22   -3.12   -3.76   -3.88   -2.92   -0.17    4.84
+   240.0    0.00    0.71    2.47    4.71    6.72    7.87    7.86    6.71    4.79    2.61    0.60   -1.01   -2.22   -3.13   -3.77   -3.84   -2.78    0.12    5.24
+   245.0    0.00    0.71    2.48    4.72    6.74    7.90    7.89    6.74    4.81    2.62    0.60   -1.02   -2.24   -3.16   -3.77   -3.78   -2.60    0.45    5.70
+   250.0    0.00    0.71    2.48    4.73    6.75    7.93    7.91    6.76    4.82    2.61    0.57   -1.06   -2.29   -3.20   -3.77   -3.70   -2.39    0.81    6.16
+   255.0    0.00    0.71    2.48    4.73    6.76    7.94    7.93    6.77    4.82    2.60    0.54   -1.12   -2.35   -3.24   -3.77   -3.62   -2.19    1.14    6.58
+   260.0    0.00    0.71    2.48    4.73    6.76    7.94    7.94    6.78    4.82    2.58    0.50   -1.16   -2.39   -3.27   -3.75   -3.53   -2.02    1.41    6.90
+   265.0    0.00    0.71    2.47    4.72    6.75    7.94    7.94    6.78    4.82    2.57    0.48   -1.19   -2.42   -3.28   -3.73   -3.46   -1.89    1.59    7.11
+   270.0    0.00    0.70    2.45    4.70    6.73    7.93    7.94    6.79    4.83    2.57    0.48   -1.19   -2.41   -3.25   -3.68   -3.40   -1.81    1.68    7.21
+   275.0    0.00    0.70    2.44    4.67    6.70    7.91    7.93    6.80    4.85    2.60    0.51   -1.16   -2.36   -3.19   -3.62   -3.35   -1.79    1.68    7.19
+   280.0    0.00    0.69    2.42    4.64    6.67    7.88    7.92    6.81    4.89    2.65    0.58   -1.07   -2.27   -3.10   -3.54   -3.31   -1.81    1.60    7.08
+   285.0    0.00    0.68    2.40    4.60    6.63    7.85    7.91    6.83    4.94    2.73    0.68   -0.95   -2.14   -2.97   -3.45   -3.28   -1.87    1.46    6.93
+   290.0    0.00    0.68    2.37    4.56    6.58    7.81    7.90    6.85    4.99    2.82    0.80   -0.80   -1.98   -2.82   -3.35   -3.26   -1.94    1.31    6.77
+   295.0    0.00    0.67    2.35    4.52    6.53    7.76    7.87    6.86    5.05    2.93    0.95   -0.64   -1.81   -2.67   -3.24   -3.23   -2.00    1.17    6.63
+   300.0    0.00    0.66    2.32    4.48    6.47    7.71    7.85    6.88    5.11    3.04    1.09   -0.47   -1.64   -2.52   -3.14   -3.20   -2.05    1.07    6.55
+   305.0    0.00    0.65    2.29    4.43    6.41    7.66    7.81    6.88    5.16    3.13    1.22   -0.32   -1.49   -2.40   -3.05   -3.16   -2.06    1.03    6.55
+   310.0    0.00    0.64    2.27    4.39    6.36    7.60    7.77    6.87    5.20    3.21    1.33   -0.20   -1.38   -2.31   -2.99   -3.12   -2.04    1.06    6.62
+   315.0    0.00    0.63    2.24    4.34    6.30    7.54    7.72    6.86    5.22    3.27    1.41   -0.12   -1.31   -2.26   -2.95   -3.08   -1.97    1.16    6.75
+   320.0    0.00    0.62    2.22    4.30    6.24    7.48    7.67    6.83    5.22    3.30    1.45   -0.08   -1.29   -2.26   -2.95   -3.04   -1.89    1.30    6.91
+   325.0    0.00    0.61    2.20    4.27    6.20    7.42    7.62    6.79    5.20    3.30    1.46   -0.09   -1.32   -2.30   -2.98   -3.02   -1.79    1.46    7.08
+   330.0    0.00    0.60    2.18    4.24    6.15    7.37    7.56    6.74    5.17    3.27    1.42   -0.14   -1.39   -2.37   -3.03   -3.02   -1.70    1.61    7.23
+   335.0    0.00    0.60    2.17    4.21    6.12    7.32    7.51    6.68    5.11    3.21    1.36   -0.22   -1.49   -2.48   -3.11   -3.04   -1.64    1.73    7.31
+   340.0    0.00    0.59    2.15    4.20    6.09    7.29    7.46    6.63    5.05    3.14    1.28   -0.32   -1.60   -2.60   -3.21   -3.08   -1.62    1.80    7.32
+   345.0    0.00    0.59    2.15    4.19    6.08    7.26    7.42    6.57    4.98    3.06    1.19   -0.42   -1.72   -2.72   -3.32   -3.15   -1.64    1.78    7.25
+   350.0    0.00    0.58    2.14    4.19    6.08    7.25    7.40    6.52    4.91    2.97    1.09   -0.53   -1.84   -2.84   -3.43   -3.25   -1.73    1.70    7.09
+   355.0    0.00    0.58    2.14    4.19    6.09    7.25    7.38    6.48    4.84    2.89    0.99   -0.63   -1.94   -2.95   -3.54   -3.37   -1.86    1.54    6.88
+   360.0    0.00    0.58    2.15    4.21    6.11    7.27    7.38    6.45    4.78    2.81    0.91   -0.71   -2.02   -3.03   -3.65   -3.51   -2.03    1.32    6.62
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.11     -0.35     66.94                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.03   -0.13   -0.33   -0.67   -1.18   -1.85   -2.61   -3.32   -3.84   -4.04   -3.86   -3.36   -2.63   -1.72   -0.50    1.35    4.29    8.61
+     0.0    0.00   -0.07   -0.20   -0.39   -0.70   -1.16   -1.82   -2.59   -3.35   -3.89   -4.04   -3.73   -3.02   -2.05   -0.95    0.36    2.22    5.14    9.54
+     5.0    0.00   -0.08   -0.21   -0.41   -0.72   -1.20   -1.88   -2.68   -3.45   -4.01   -4.16   -3.85   -3.14   -2.18   -1.08    0.22    2.07    4.97    9.31
+    10.0    0.00   -0.08   -0.21   -0.42   -0.74   -1.24   -1.94   -2.76   -3.55   -4.12   -4.29   -3.98   -3.27   -2.32   -1.24    0.05    1.90    4.79    9.10
+    15.0    0.00   -0.08   -0.22   -0.43   -0.76   -1.28   -1.99   -2.83   -3.65   -4.23   -4.40   -4.11   -3.42   -2.49   -1.43   -0.15    1.70    4.61    8.92
+    20.0    0.00   -0.08   -0.22   -0.43   -0.78   -1.31   -2.04   -2.90   -3.73   -4.32   -4.51   -4.24   -3.58   -2.68   -1.65   -0.37    1.50    4.44    8.79
+    25.0    0.00   -0.08   -0.22   -0.44   -0.79   -1.34   -2.08   -2.95   -3.79   -4.40   -4.61   -4.37   -3.74   -2.89   -1.89   -0.61    1.29    4.29    8.71
+    30.0    0.00   -0.08   -0.22   -0.44   -0.80   -1.36   -2.11   -2.99   -3.84   -4.46   -4.69   -4.48   -3.90   -3.10   -2.13   -0.86    1.07    4.16    8.66
+    35.0    0.00   -0.08   -0.22   -0.45   -0.81   -1.37   -2.13   -3.01   -3.86   -4.49   -4.74   -4.57   -4.05   -3.30   -2.38   -1.11    0.87    4.04    8.63
+    40.0    0.00   -0.07   -0.21   -0.44   -0.82   -1.38   -2.14   -3.02   -3.86   -4.49   -4.76   -4.63   -4.17   -3.49   -2.60   -1.34    0.68    3.93    8.61
+    45.0    0.00   -0.07   -0.21   -0.44   -0.82   -1.39   -2.14   -3.01   -3.85   -4.47   -4.76   -4.67   -4.26   -3.64   -2.80   -1.54    0.52    3.83    8.58
+    50.0    0.00   -0.07   -0.21   -0.44   -0.82   -1.39   -2.14   -2.99   -3.82   -4.43   -4.73   -4.67   -4.31   -3.74   -2.94   -1.70    0.39    3.74    8.52
+    55.0    0.00   -0.07   -0.20   -0.43   -0.81   -1.38   -2.13   -2.97   -3.77   -4.38   -4.67   -4.64   -4.32   -3.80   -3.03   -1.80    0.29    3.66    8.44
+    60.0    0.00   -0.06   -0.19   -0.42   -0.81   -1.37   -2.11   -2.94   -3.72   -4.31   -4.60   -4.58   -4.29   -3.80   -3.06   -1.84    0.25    3.61    8.34
+    65.0    0.00   -0.06   -0.18   -0.41   -0.80   -1.36   -2.09   -2.90   -3.66   -4.23   -4.52   -4.49   -4.22   -3.75   -3.03   -1.82    0.25    3.58    8.23
+    70.0    0.00   -0.05   -0.17   -0.40   -0.78   -1.35   -2.07   -2.86   -3.60   -4.16   -4.43   -4.40   -4.13   -3.66   -2.94   -1.74    0.32    3.59    8.13
+    75.0    0.00   -0.05   -0.16   -0.39   -0.77   -1.33   -2.04   -2.82   -3.55   -4.08   -4.34   -4.30   -4.01   -3.53   -2.80   -1.59    0.44    3.64    8.07
+    80.0    0.00   -0.04   -0.15   -0.37   -0.75   -1.30   -2.01   -2.78   -3.49   -4.01   -4.25   -4.20   -3.89   -3.38   -2.62   -1.41    0.61    3.76    8.05
+    85.0    0.00   -0.04   -0.14   -0.36   -0.73   -1.28   -1.97   -2.74   -3.44   -3.95   -4.18   -4.10   -3.77   -3.23   -2.43   -1.18    0.83    3.92    8.11
+    90.0    0.00   -0.03   -0.13   -0.34   -0.71   -1.25   -1.93   -2.69   -3.39   -3.89   -4.11   -4.02   -3.66   -3.07   -2.22   -0.94    1.08    4.14    8.23
+    95.0    0.00   -0.03   -0.12   -0.32   -0.68   -1.21   -1.89   -2.64   -3.33   -3.84   -4.05   -3.95   -3.55   -2.92   -2.02   -0.69    1.35    4.39    8.43
+   100.0    0.00   -0.02   -0.11   -0.30   -0.65   -1.18   -1.85   -2.59   -3.28   -3.79   -4.00   -3.88   -3.46   -2.78   -1.83   -0.45    1.63    4.67    8.67
+   105.0    0.00   -0.02   -0.10   -0.29   -0.63   -1.14   -1.80   -2.53   -3.22   -3.73   -3.95   -3.83   -3.38   -2.66   -1.65   -0.22    1.89    4.95    8.96
+   110.0    0.00   -0.01   -0.09   -0.27   -0.60   -1.10   -1.75   -2.48   -3.17   -3.68   -3.90   -3.77   -3.30   -2.55   -1.50   -0.02    2.13    5.22    9.26
+   115.0    0.00   -0.01   -0.08   -0.25   -0.57   -1.06   -1.70   -2.42   -3.11   -3.62   -3.84   -3.71   -3.23   -2.45   -1.36    0.15    2.33    5.46    9.55
+   120.0    0.00    0.00   -0.07   -0.24   -0.55   -1.03   -1.66   -2.37   -3.05   -3.57   -3.79   -3.64   -3.15   -2.35   -1.24    0.29    2.49    5.66    9.82
+   125.0    0.00    0.00   -0.06   -0.23   -0.54   -1.01   -1.62   -2.33   -3.00   -3.51   -3.72   -3.57   -3.07   -2.25   -1.14    0.40    2.62    5.81   10.04
+   130.0    0.00    0.00   -0.06   -0.22   -0.52   -0.99   -1.60   -2.29   -2.96   -3.46   -3.66   -3.50   -2.98   -2.16   -1.04    0.49    2.70    5.92   10.22
+   135.0    0.00    0.01   -0.05   -0.22   -0.52   -0.98   -1.58   -2.27   -2.93   -3.41   -3.60   -3.43   -2.90   -2.07   -0.96    0.55    2.75    5.97   10.34
+   140.0    0.00    0.01   -0.05   -0.21   -0.52   -0.98   -1.58   -2.26   -2.91   -3.38   -3.55   -3.36   -2.82   -1.99   -0.90    0.60    2.78    6.00   10.41
+   145.0    0.00    0.01   -0.05   -0.22   -0.52   -0.99   -1.59   -2.26   -2.90   -3.36   -3.52   -3.31   -2.76   -1.93   -0.84    0.63    2.78    5.99   10.45
+   150.0    0.00    0.01   -0.05   -0.22   -0.54   -1.00   -1.61   -2.28   -2.91   -3.36   -3.51   -3.29   -2.72   -1.89   -0.81    0.64    2.76    5.95   10.44
+   155.0    0.00    0.01   -0.06   -0.23   -0.55   -1.03   -1.63   -2.31   -2.94   -3.38   -3.52   -3.29   -2.71   -1.88   -0.80    0.63    2.73    5.90   10.40
+   160.0    0.00    0.01   -0.06   -0.25   -0.58   -1.06   -1.67   -2.35   -2.98   -3.42   -3.55   -3.31   -2.74   -1.90   -0.82    0.60    2.68    5.83   10.32
+   165.0    0.00    0.01   -0.07   -0.26   -0.60   -1.09   -1.72   -2.40   -3.03   -3.47   -3.61   -3.37   -2.80   -1.95   -0.87    0.55    2.62    5.73   10.21
+   170.0    0.00    0.01   -0.07   -0.28   -0.63   -1.13   -1.76   -2.45   -3.09   -3.54   -3.68   -3.46   -2.89   -2.04   -0.95    0.48    2.52    5.61   10.05
+   175.0    0.00    0.01   -0.08   -0.29   -0.66   -1.18   -1.82   -2.51   -3.16   -3.62   -3.78   -3.57   -3.00   -2.15   -1.05    0.38    2.40    5.44    9.83
+   180.0    0.00    0.01   -0.09   -0.31   -0.69   -1.22   -1.87   -2.58   -3.23   -3.70   -3.88   -3.69   -3.13   -2.28   -1.18    0.25    2.25    5.23    9.54
+   185.0    0.00    0.01   -0.09   -0.33   -0.72   -1.26   -1.93   -2.64   -3.31   -3.79   -3.99   -3.81   -3.27   -2.42   -1.32    0.09    2.06    4.96    9.20
+   190.0    0.00    0.00   -0.10   -0.35   -0.75   -1.31   -1.98   -2.71   -3.39   -3.89   -4.09   -3.93   -3.40   -2.56   -1.47   -0.08    1.83    4.65    8.79
+   195.0    0.00    0.00   -0.11   -0.36   -0.78   -1.35   -2.04   -2.78   -3.46   -3.97   -4.19   -4.03   -3.51   -2.68   -1.61   -0.26    1.58    4.30    8.35
+   200.0    0.00    0.00   -0.11   -0.38   -0.80   -1.39   -2.09   -2.84   -3.54   -4.06   -4.27   -4.12   -3.61   -2.79   -1.75   -0.45    1.30    3.93    7.88
+   205.0    0.00    0.00   -0.12   -0.39   -0.83   -1.43   -2.14   -2.91   -3.61   -4.13   -4.35   -4.19   -3.67   -2.88   -1.87   -0.65    1.03    3.55    7.42
+   210.0    0.00    0.00   -0.12   -0.39   -0.84   -1.45   -2.19   -2.97   -3.68   -4.20   -4.40   -4.24   -3.72   -2.94   -1.99   -0.83    0.75    3.20    7.01
+   215.0    0.00    0.00   -0.12   -0.40   -0.85   -1.48   -2.23   -3.02   -3.74   -4.25   -4.44   -4.26   -3.75   -2.99   -2.08   -1.00    0.50    2.88    6.67
+   220.0    0.00    0.00   -0.12   -0.40   -0.86   -1.49   -2.25   -3.06   -3.78   -4.29   -4.47   -4.27   -3.76   -3.02   -2.17   -1.15    0.29    2.64    6.43
+   225.0    0.00   -0.01   -0.12   -0.40   -0.85   -1.49   -2.27   -3.08   -3.81   -4.31   -4.48   -4.27   -3.76   -3.05   -2.24   -1.28    0.12    2.47    6.30
+   230.0    0.00   -0.01   -0.12   -0.39   -0.84   -1.48   -2.26   -3.08   -3.82   -4.31   -4.47   -4.26   -3.76   -3.08   -2.31   -1.39    0.00    2.38    6.28
+   235.0    0.00   -0.01   -0.12   -0.38   -0.82   -1.46   -2.24   -3.07   -3.80   -4.30   -4.45   -4.24   -3.75   -3.10   -2.37   -1.47   -0.07    2.37    6.36
+   240.0    0.00   -0.01   -0.11   -0.36   -0.80   -1.42   -2.20   -3.03   -3.76   -4.26   -4.41   -4.22   -3.75   -3.13   -2.43   -1.53   -0.09    2.44    6.52
+   245.0    0.00   -0.01   -0.11   -0.35   -0.76   -1.37   -2.14   -2.96   -3.70   -4.20   -4.36   -4.18   -3.74   -3.15   -2.47   -1.57   -0.07    2.56    6.73
+   250.0    0.00   -0.01   -0.10   -0.33   -0.72   -1.31   -2.06   -2.88   -3.61   -4.12   -4.30   -4.14   -3.72   -3.16   -2.50   -1.58   -0.02    2.70    6.95
+   255.0    0.00   -0.01   -0.10   -0.30   -0.68   -1.25   -1.97   -2.77   -3.51   -4.02   -4.21   -4.08   -3.69   -3.16   -2.51   -1.57    0.06    2.86    7.16
+   260.0    0.00   -0.01   -0.09   -0.28   -0.63   -1.17   -1.88   -2.66   -3.39   -3.91   -4.12   -4.01   -3.64   -3.13   -2.49   -1.53    0.14    3.00    7.33
+   265.0    0.00   -0.01   -0.09   -0.26   -0.59   -1.10   -1.78   -2.54   -3.26   -3.79   -4.01   -3.92   -3.57   -3.08   -2.43   -1.46    0.24    3.13    7.45
+   270.0    0.00   -0.01   -0.08   -0.24   -0.54   -1.03   -1.68   -2.43   -3.14   -3.67   -3.90   -3.82   -3.48   -2.99   -2.34   -1.37    0.34    3.22    7.51
+   275.0    0.00   -0.02   -0.08   -0.22   -0.50   -0.96   -1.59   -2.32   -3.02   -3.55   -3.78   -3.70   -3.36   -2.87   -2.22   -1.25    0.44    3.29    7.53
+   280.0    0.00   -0.02   -0.08   -0.21   -0.47   -0.90   -1.51   -2.22   -2.92   -3.44   -3.67   -3.58   -3.23   -2.71   -2.06   -1.10    0.55    3.35    7.53
+   285.0    0.00   -0.02   -0.08   -0.20   -0.44   -0.85   -1.44   -2.14   -2.83   -3.35   -3.57   -3.46   -3.08   -2.54   -1.88   -0.94    0.67    3.41    7.54
+   290.0    0.00   -0.02   -0.08   -0.19   -0.42   -0.82   -1.39   -2.08   -2.76   -3.27   -3.48   -3.35   -2.93   -2.36   -1.68   -0.76    0.80    3.49    7.59
+   295.0    0.00   -0.03   -0.08   -0.19   -0.41   -0.80   -1.35   -2.04   -2.71   -3.22   -3.41   -3.25   -2.79   -2.18   -1.48   -0.57    0.95    3.59    7.69
+   300.0    0.00   -0.03   -0.09   -0.20   -0.41   -0.78   -1.34   -2.01   -2.69   -3.19   -3.36   -3.17   -2.67   -2.02   -1.29   -0.37    1.12    3.74    7.87
+   305.0    0.00   -0.03   -0.09   -0.20   -0.42   -0.79   -1.33   -2.01   -2.68   -3.17   -3.33   -3.11   -2.57   -1.87   -1.11   -0.18    1.31    3.93    8.12
+   310.0    0.00   -0.04   -0.10   -0.21   -0.43   -0.80   -1.34   -2.02   -2.69   -3.18   -3.33   -3.08   -2.50   -1.76   -0.96    0.00    1.51    4.16    8.43
+   315.0    0.00   -0.04   -0.11   -0.23   -0.45   -0.82   -1.36   -2.04   -2.71   -3.20   -3.34   -3.07   -2.47   -1.68   -0.84    0.16    1.71    4.42    8.79
+   320.0    0.00   -0.05   -0.12   -0.24   -0.47   -0.84   -1.39   -2.07   -2.75   -3.24   -3.37   -3.09   -2.46   -1.64   -0.75    0.30    1.91    4.68    9.15
+   325.0    0.00   -0.05   -0.13   -0.26   -0.49   -0.87   -1.43   -2.11   -2.79   -3.28   -3.42   -3.13   -2.48   -1.63   -0.69    0.41    2.08    4.93    9.48
+   330.0    0.00   -0.05   -0.14   -0.28   -0.52   -0.91   -1.47   -2.16   -2.85   -3.34   -3.48   -3.18   -2.52   -1.64   -0.67    0.50    2.23    5.14    9.76
+   335.0    0.00   -0.06   -0.15   -0.30   -0.55   -0.95   -1.52   -2.22   -2.91   -3.41   -3.55   -3.25   -2.58   -1.68   -0.66    0.55    2.34    5.30    9.95
+   340.0    0.00   -0.06   -0.16   -0.32   -0.58   -0.99   -1.57   -2.28   -2.98   -3.49   -3.63   -3.33   -2.65   -1.73   -0.68    0.58    2.41    5.40   10.04
+   345.0    0.00   -0.07   -0.17   -0.34   -0.61   -1.03   -1.63   -2.35   -3.06   -3.58   -3.72   -3.42   -2.72   -1.79   -0.72    0.57    2.43    5.42   10.03
+   350.0    0.00   -0.07   -0.18   -0.36   -0.64   -1.08   -1.69   -2.43   -3.15   -3.68   -3.82   -3.51   -2.81   -1.86   -0.77    0.53    2.40    5.38    9.93
+   355.0    0.00   -0.07   -0.19   -0.38   -0.67   -1.12   -1.75   -2.51   -3.25   -3.78   -3.93   -3.62   -2.91   -1.95   -0.85    0.46    2.33    5.28    9.75
+   360.0    0.00   -0.07   -0.20   -0.39   -0.70   -1.16   -1.82   -2.59   -3.35   -3.89   -4.04   -3.73   -3.02   -2.05   -0.95    0.36    2.22    5.14    9.54
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TRM33429.20+GP  TCWD                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               2    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+Number of Calibrated Antennas GPS:      002                 COMMENT             
+Number of Individual Calibrations GPS:  011                 COMMENT             
+   G01                                                      START OF FREQUENCY  
+     -0.37     -0.86     72.15                              NORTH / EAST / UP   
+   NOAZI    0.00    0.64    2.34    4.47    6.25    7.04    6.55    4.93    2.69    0.52   -1.07   -1.86   -1.99   -1.85   -1.74   -1.68   -1.25    0.23    3.34
+     0.0    0.00    0.63    2.25    4.24    5.87    6.54    6.01    4.44    2.34    0.34   -1.10   -1.80   -1.92   -1.83   -1.81   -1.84   -1.47    0.05    3.34
+     5.0    0.00    0.62    2.25    4.26    5.91    6.59    6.07    4.50    2.40    0.37   -1.11   -1.87   -2.07   -2.04   -2.07   -2.11   -1.74   -0.25    2.96
+    10.0    0.00    0.62    2.26    4.29    5.96    6.66    6.14    4.58    2.47    0.41   -1.12   -1.94   -2.21   -2.24   -2.30   -2.36   -1.99   -0.53    2.59
+    15.0    0.00    0.62    2.26    4.31    6.01    6.73    6.23    4.66    2.53    0.45   -1.12   -2.00   -2.33   -2.41   -2.51   -2.57   -2.21   -0.77    2.29
+    20.0    0.00    0.61    2.27    4.35    6.06    6.81    6.31    4.74    2.60    0.48   -1.13   -2.05   -2.42   -2.55   -2.67   -2.74   -2.37   -0.95    2.06
+    25.0    0.00    0.61    2.28    4.38    6.12    6.88    6.39    4.81    2.64    0.50   -1.14   -2.10   -2.50   -2.64   -2.77   -2.84   -2.46   -1.04    1.92
+    30.0    0.00    0.61    2.29    4.41    6.17    6.95    6.45    4.86    2.67    0.50   -1.17   -2.14   -2.55   -2.69   -2.81   -2.86   -2.47   -1.04    1.89
+    35.0    0.00    0.60    2.30    4.44    6.22    7.00    6.50    4.89    2.67    0.48   -1.20   -2.18   -2.58   -2.70   -2.80   -2.82   -2.39   -0.95    1.96
+    40.0    0.00    0.60    2.30    4.46    6.26    7.05    6.54    4.90    2.65    0.44   -1.25   -2.21   -2.59   -2.68   -2.72   -2.70   -2.24   -0.77    2.13
+    45.0    0.00    0.60    2.31    4.48    6.29    7.08    6.56    4.90    2.62    0.39   -1.30   -2.24   -2.58   -2.62   -2.61   -2.53   -2.02   -0.52    2.38
+    50.0    0.00    0.59    2.31    4.49    6.31    7.11    6.57    4.88    2.58    0.33   -1.35   -2.27   -2.56   -2.54   -2.47   -2.32   -1.75   -0.22    2.67
+    55.0    0.00    0.59    2.30    4.49    6.33    7.12    6.57    4.87    2.54    0.27   -1.41   -2.30   -2.54   -2.45   -2.31   -2.09   -1.47    0.10    2.99
+    60.0    0.00    0.58    2.30    4.49    6.33    7.13    6.57    4.85    2.50    0.23   -1.45   -2.31   -2.51   -2.36   -2.15   -1.87   -1.19    0.41    3.31
+    65.0    0.00    0.58    2.29    4.49    6.33    7.13    6.58    4.84    2.48    0.19   -1.48   -2.32   -2.48   -2.28   -2.00   -1.67   -0.95    0.68    3.59
+    70.0    0.00    0.57    2.28    4.48    6.33    7.14    6.58    4.85    2.48    0.18   -1.49   -2.32   -2.45   -2.20   -1.89   -1.51   -0.76    0.89    3.82
+    75.0    0.00    0.56    2.26    4.46    6.32    7.14    6.60    4.87    2.50    0.20   -1.48   -2.31   -2.41   -2.14   -1.80   -1.40   -0.64    1.02    3.98
+    80.0    0.00    0.55    2.25    4.44    6.30    7.14    6.63    4.92    2.55    0.24   -1.45   -2.28   -2.38   -2.09   -1.73   -1.34   -0.59    1.07    4.05
+    85.0    0.00    0.55    2.23    4.41    6.29    7.15    6.66    4.98    2.63    0.31   -1.39   -2.23   -2.33   -2.05   -1.70   -1.33   -0.61    1.03    4.03
+    90.0    0.00    0.54    2.21    4.38    6.26    7.15    6.70    5.05    2.72    0.41   -1.31   -2.17   -2.28   -2.01   -1.68   -1.34   -0.67    0.92    3.94
+    95.0    0.00    0.53    2.18    4.35    6.24    7.15    6.75    5.13    2.83    0.52   -1.21   -2.08   -2.22   -1.96   -1.66   -1.38   -0.77    0.77    3.79
+   100.0    0.00    0.53    2.16    4.32    6.21    7.15    6.78    5.22    2.94    0.64   -1.10   -1.99   -2.14   -1.91   -1.64   -1.40   -0.88    0.60    3.61
+   105.0    0.00    0.52    2.14    4.28    6.18    7.14    6.81    5.29    3.05    0.76   -0.98   -1.89   -2.05   -1.83   -1.59   -1.41   -0.96    0.44    3.43
+   110.0    0.00    0.52    2.12    4.24    6.14    7.12    6.83    5.35    3.14    0.87   -0.87   -1.78   -1.94   -1.73   -1.51   -1.39   -1.01    0.32    3.27
+   115.0    0.00    0.51    2.10    4.21    6.09    7.08    6.82    5.37    3.20    0.95   -0.77   -1.67   -1.83   -1.61   -1.40   -1.32   -1.00    0.25    3.17
+   120.0    0.00    0.51    2.08    4.17    6.04    7.04    6.79    5.37    3.22    1.01   -0.69   -1.57   -1.70   -1.47   -1.27   -1.20   -0.94    0.27    3.14
+   125.0    0.00    0.51    2.07    4.14    5.99    6.98    6.74    5.33    3.21    1.02   -0.64   -1.48   -1.58   -1.32   -1.10   -1.05   -0.81    0.35    3.20
+   130.0    0.00    0.51    2.06    4.11    5.94    6.91    6.66    5.26    3.15    1.00   -0.62   -1.41   -1.46   -1.17   -0.93   -0.88   -0.65    0.51    3.34
+   135.0    0.00    0.51    2.05    4.08    5.89    6.83    6.56    5.15    3.06    0.93   -0.64   -1.37   -1.37   -1.03   -0.76   -0.70   -0.46    0.71    3.56
+   140.0    0.00    0.51    2.05    4.07    5.85    6.76    6.45    5.02    2.93    0.83   -0.69   -1.36   -1.30   -0.91   -0.62   -0.53   -0.27    0.94    3.82
+   145.0    0.00    0.52    2.06    4.06    5.82    6.68    6.34    4.88    2.78    0.71   -0.76   -1.37   -1.26   -0.84   -0.53   -0.42   -0.11    1.16    4.09
+   150.0    0.00    0.53    2.07    4.07    5.80    6.63    6.24    4.74    2.63    0.57   -0.86   -1.42   -1.27   -0.82   -0.49   -0.36   -0.01    1.33    4.34
+   155.0    0.00    0.54    2.09    4.08    5.79    6.59    6.15    4.61    2.48    0.43   -0.97   -1.50   -1.31   -0.86   -0.52   -0.38    0.02    1.45    4.53
+   160.0    0.00    0.55    2.11    4.11    5.81    6.57    6.09    4.52    2.36    0.30   -1.09   -1.60   -1.41   -0.95   -0.63   -0.48   -0.03    1.47    4.63
+   165.0    0.00    0.56    2.14    4.15    5.85    6.59    6.07    4.45    2.26    0.19   -1.20   -1.72   -1.54   -1.11   -0.81   -0.66   -0.18    1.39    4.62
+   170.0    0.00    0.58    2.18    4.20    5.91    6.63    6.09    4.44    2.21    0.12   -1.30   -1.84   -1.70   -1.32   -1.06   -0.91   -0.40    1.22    4.47
+   175.0    0.00    0.60    2.22    4.27    5.98    6.71    6.15    4.47    2.21    0.08   -1.38   -1.97   -1.89   -1.56   -1.34   -1.21   -0.68    0.96    4.21
+   180.0    0.00    0.61    2.26    4.34    6.08    6.81    6.24    4.54    2.25    0.08   -1.43   -2.09   -2.08   -1.82   -1.66   -1.54   -1.01    0.64    3.85
+   185.0    0.00    0.63    2.31    4.42    6.18    6.93    6.37    4.65    2.34    0.12   -1.46   -2.19   -2.27   -2.09   -1.97   -1.87   -1.34    0.29    3.43
+   190.0    0.00    0.65    2.36    4.50    6.29    7.06    6.50    4.78    2.44    0.18   -1.46   -2.27   -2.44   -2.33   -2.26   -2.18   -1.66   -0.07    2.98
+   195.0    0.00    0.67    2.40    4.58    6.40    7.19    6.65    4.92    2.57    0.26   -1.44   -2.34   -2.58   -2.54   -2.51   -2.45   -1.95   -0.40    2.55
+   200.0    0.00    0.69    2.45    4.66    6.51    7.32    6.78    5.06    2.69    0.35   -1.41   -2.37   -2.69   -2.70   -2.70   -2.65   -2.17   -0.67    2.19
+   205.0    0.00    0.70    2.49    4.73    6.60    7.42    6.90    5.17    2.79    0.42   -1.37   -2.39   -2.75   -2.81   -2.82   -2.78   -2.32   -0.86    1.92
+   210.0    0.00    0.72    2.53    4.79    6.67    7.51    6.98    5.25    2.86    0.48   -1.34   -2.38   -2.77   -2.85   -2.88   -2.84   -2.39   -0.97    1.78
+   215.0    0.00    0.74    2.57    4.84    6.73    7.56    7.02    5.28    2.89    0.51   -1.31   -2.36   -2.76   -2.84   -2.86   -2.84   -2.39   -0.99    1.77
+   220.0    0.00    0.75    2.60    4.88    6.76    7.58    7.02    5.28    2.88    0.51   -1.29   -2.32   -2.70   -2.77   -2.80   -2.77   -2.33   -0.93    1.88
+   225.0    0.00    0.76    2.62    4.90    6.78    7.57    6.99    5.22    2.83    0.48   -1.29   -2.28   -2.62   -2.67   -2.68   -2.66   -2.23   -0.81    2.09
+   230.0    0.00    0.77    2.64    4.91    6.77    7.53    6.92    5.14    2.75    0.43   -1.30   -2.23   -2.53   -2.54   -2.55   -2.52   -2.10   -0.64    2.37
+   235.0    0.00    0.78    2.65    4.92    6.75    7.48    6.84    5.04    2.65    0.36   -1.31   -2.18   -2.43   -2.41   -2.40   -2.38   -1.95   -0.46    2.68
+   240.0    0.00    0.79    2.65    4.91    6.72    7.41    6.74    4.92    2.55    0.29   -1.32   -2.14   -2.33   -2.27   -2.25   -2.24   -1.81   -0.28    2.98
+   245.0    0.00    0.79    2.65    4.89    6.68    7.34    6.65    4.82    2.46    0.23   -1.33   -2.09   -2.24   -2.15   -2.12   -2.12   -1.69   -0.12    3.22
+   250.0    0.00    0.79    2.65    4.87    6.64    7.28    6.57    4.74    2.39    0.20   -1.33   -2.04   -2.15   -2.05   -2.02   -2.02   -1.59    0.00    3.40
+   255.0    0.00    0.79    2.64    4.85    6.59    7.23    6.52    4.70    2.37    0.20   -1.30   -1.99   -2.09   -1.97   -1.94   -1.94   -1.51    0.07    3.48
+   260.0    0.00    0.79    2.63    4.82    6.56    7.19    6.49    4.69    2.38    0.24   -1.25   -1.94   -2.03   -1.91   -1.88   -1.88   -1.47    0.11    3.47
+   265.0    0.00    0.79    2.61    4.79    6.52    7.17    6.49    4.73    2.44    0.31   -1.18   -1.88   -1.98   -1.87   -1.84   -1.84   -1.44    0.10    3.39
+   270.0    0.00    0.78    2.60    4.76    6.50    7.16    6.52    4.80    2.54    0.41   -1.09   -1.81   -1.93   -1.83   -1.80   -1.81   -1.42    0.08    3.26
+   275.0    0.00    0.78    2.57    4.73    6.47    7.17    6.57    4.89    2.66    0.54   -0.98   -1.73   -1.88   -1.79   -1.77   -1.78   -1.40    0.05    3.12
+   280.0    0.00    0.77    2.55    4.70    6.45    7.18    6.63    4.99    2.79    0.67   -0.87   -1.64   -1.82   -1.74   -1.72   -1.74   -1.37    0.02    2.99
+   285.0    0.00    0.76    2.53    4.67    6.43    7.18    6.68    5.09    2.92    0.80   -0.75   -1.55   -1.75   -1.68   -1.66   -1.68   -1.33    0.02    2.90
+   290.0    0.00    0.75    2.50    4.63    6.40    7.19    6.73    5.18    3.03    0.92   -0.65   -1.46   -1.66   -1.60   -1.58   -1.60   -1.27    0.05    2.89
+   295.0    0.00    0.74    2.48    4.59    6.36    7.17    6.75    5.23    3.11    1.00   -0.57   -1.38   -1.58   -1.50   -1.47   -1.50   -1.19    0.12    2.96
+   300.0    0.00    0.73    2.45    4.55    6.32    7.15    6.74    5.25    3.14    1.05   -0.51   -1.31   -1.48   -1.39   -1.35   -1.39   -1.09    0.23    3.11
+   305.0    0.00    0.72    2.42    4.51    6.27    7.10    6.71    5.22    3.13    1.05   -0.49   -1.25   -1.39   -1.27   -1.22   -1.27   -0.98    0.36    3.34
+   310.0    0.00    0.71    2.39    4.47    6.22    7.03    6.64    5.16    3.07    1.01   -0.49   -1.22   -1.31   -1.15   -1.09   -1.14   -0.86    0.52    3.61
+   315.0    0.00    0.70    2.37    4.42    6.15    6.95    6.55    5.06    2.98    0.94   -0.53   -1.20   -1.25   -1.05   -0.98   -1.03   -0.75    0.67    3.89
+   320.0    0.00    0.69    2.34    4.38    6.09    6.87    6.44    4.94    2.86    0.84   -0.58   -1.21   -1.21   -0.98   -0.89   -0.94   -0.65    0.82    4.16
+   325.0    0.00    0.68    2.32    4.34    6.02    6.77    6.32    4.81    2.73    0.73   -0.66   -1.24   -1.20   -0.94   -0.83   -0.88   -0.58    0.93    4.38
+   330.0    0.00    0.67    2.30    4.30    5.96    6.69    6.21    4.67    2.60    0.61   -0.75   -1.30   -1.22   -0.94   -0.83   -0.87   -0.56    0.99    4.52
+   335.0    0.00    0.66    2.28    4.27    5.91    6.61    6.11    4.56    2.48    0.51   -0.83   -1.36   -1.28   -0.99   -0.87   -0.91   -0.58    0.99    4.56
+   340.0    0.00    0.65    2.27    4.25    5.87    6.55    6.03    4.47    2.39    0.42   -0.91   -1.45   -1.37   -1.09   -0.98   -1.00   -0.66    0.92    4.49
+   345.0    0.00    0.65    2.26    4.23    5.85    6.51    5.98    4.41    2.32    0.36   -0.98   -1.53   -1.48   -1.23   -1.13   -1.15   -0.79    0.79    4.32
+   350.0    0.00    0.64    2.25    4.23    5.84    6.50    5.96    4.39    2.30    0.33   -1.04   -1.62   -1.62   -1.41   -1.33   -1.35   -0.98    0.59    4.06
+   355.0    0.00    0.63    2.25    4.23    5.85    6.51    5.97    4.40    2.31    0.32   -1.08   -1.71   -1.77   -1.61   -1.56   -1.59   -1.21    0.33    3.72
+   360.0    0.00    0.63    2.25    4.24    5.87    6.54    6.01    4.44    2.34    0.34   -1.10   -1.80   -1.92   -1.83   -1.81   -1.84   -1.47    0.05    3.34
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.10     -0.29     76.51                              NORTH / EAST / UP   
+   NOAZI    0.00    0.09    0.34    0.69    1.04    1.22    1.05    0.41   -0.69   -2.06   -3.37   -4.28   -4.53   -4.05   -2.90   -1.22    0.95    3.71    7.24
+     0.0    0.00    0.28    0.68    1.12    1.50    1.67    1.49    0.84   -0.28   -1.70   -3.08   -4.03   -4.23   -3.60   -2.26   -0.44    1.72    4.43    8.19
+     5.0    0.00    0.28    0.67    1.08    1.42    1.58    1.40    0.77   -0.31   -1.67   -3.00   -3.92   -4.13   -3.54   -2.27   -0.52    1.59    4.26    7.91
+    10.0    0.00    0.28    0.65    1.03    1.34    1.47    1.28    0.66   -0.38   -1.70   -2.99   -3.88   -4.10   -3.55   -2.33   -0.64    1.44    4.06    7.60
+    15.0    0.00    0.28    0.63    0.98    1.25    1.35    1.14    0.52   -0.51   -1.79   -3.05   -3.92   -4.14   -3.62   -2.45   -0.80    1.26    3.86    7.30
+    20.0    0.00    0.28    0.60    0.92    1.16    1.22    0.98    0.34   -0.69   -1.96   -3.19   -4.04   -4.26   -3.76   -2.62   -0.99    1.07    3.68    7.04
+    25.0    0.00    0.27    0.58    0.87    1.07    1.08    0.80    0.14   -0.91   -2.18   -3.39   -4.24   -4.45   -3.95   -2.82   -1.19    0.89    3.52    6.83
+    30.0    0.00    0.27    0.56    0.82    0.98    0.95    0.62   -0.08   -1.16   -2.44   -3.65   -4.48   -4.69   -4.18   -3.04   -1.39    0.73    3.40    6.71
+    35.0    0.00    0.26    0.54    0.78    0.91    0.83    0.45   -0.30   -1.41   -2.72   -3.94   -4.76   -4.94   -4.42   -3.25   -1.57    0.60    3.33    6.67
+    40.0    0.00    0.25    0.52    0.74    0.84    0.73    0.31   -0.50   -1.65   -2.99   -4.22   -5.03   -5.19   -4.64   -3.44   -1.71    0.51    3.32    6.72
+    45.0    0.00    0.25    0.51    0.71    0.79    0.65    0.19   -0.65   -1.85   -3.22   -4.46   -5.27   -5.41   -4.83   -3.59   -1.82    0.48    3.37    6.86
+    50.0    0.00    0.24    0.49    0.69    0.76    0.61    0.12   -0.76   -1.99   -3.38   -4.64   -5.44   -5.57   -4.96   -3.69   -1.86    0.49    3.47    7.07
+    55.0    0.00    0.23    0.48    0.68    0.75    0.60    0.10   -0.80   -2.05   -3.47   -4.74   -5.54   -5.66   -5.02   -3.72   -1.86    0.55    3.60    7.32
+    60.0    0.00    0.23    0.48    0.69    0.77    0.62    0.13   -0.77   -2.03   -3.46   -4.74   -5.56   -5.67   -5.03   -3.70   -1.81    0.64    3.76    7.59
+    65.0    0.00    0.22    0.48    0.70    0.80    0.67    0.21   -0.68   -1.93   -3.36   -4.66   -5.48   -5.61   -4.97   -3.64   -1.72    0.76    3.93    7.83
+    70.0    0.00    0.22    0.48    0.71    0.85    0.76    0.33   -0.52   -1.76   -3.18   -4.49   -5.34   -5.49   -4.86   -3.54   -1.61    0.89    4.08    8.04
+    75.0    0.00    0.21    0.48    0.74    0.91    0.87    0.49   -0.32   -1.53   -2.94   -4.26   -5.13   -5.32   -4.73   -3.42   -1.50    1.01    4.20    8.18
+    80.0    0.00    0.20    0.48    0.77    0.98    1.00    0.67   -0.09   -1.26   -2.66   -3.98   -4.90   -5.13   -4.57   -3.29   -1.38    1.11    4.29    8.25
+    85.0    0.00    0.19    0.48    0.80    1.06    1.13    0.86    0.15   -0.97   -2.36   -3.70   -4.64   -4.92   -4.42   -3.17   -1.28    1.20    4.33    8.24
+    90.0    0.00    0.19    0.49    0.84    1.14    1.26    1.05    0.39   -0.70   -2.07   -3.42   -4.40   -4.73   -4.28   -3.06   -1.20    1.25    4.33    8.16
+    95.0    0.00    0.18    0.49    0.87    1.22    1.38    1.22    0.61   -0.46   -1.82   -3.18   -4.19   -4.57   -4.15   -2.97   -1.13    1.28    4.30    8.03
+   100.0    0.00    0.17    0.49    0.90    1.28    1.49    1.37    0.79   -0.26   -1.61   -2.98   -4.02   -4.43   -4.05   -2.90   -1.09    1.30    4.25    7.87
+   105.0    0.00    0.16    0.49    0.92    1.34    1.58    1.49    0.92   -0.11   -1.46   -2.84   -3.89   -4.32   -3.97   -2.84   -1.05    1.31    4.20    7.72
+   110.0    0.00    0.15    0.49    0.94    1.39    1.65    1.57    1.02   -0.02   -1.37   -2.76   -3.82   -4.25   -3.91   -2.79   -1.01    1.32    4.16    7.60
+   115.0    0.00    0.14    0.48    0.95    1.42    1.70    1.63    1.07    0.03   -1.34   -2.72   -3.78   -4.21   -3.86   -2.74   -0.96    1.35    4.15    7.52
+   120.0    0.00    0.12    0.47    0.95    1.44    1.73    1.66    1.09    0.03   -1.35   -2.73   -3.78   -4.18   -3.81   -2.68   -0.90    1.40    4.18    7.52
+   125.0    0.00    0.11    0.45    0.95    1.45    1.75    1.67    1.08    0.00   -1.39   -2.77   -3.80   -4.18   -3.77   -2.62   -0.83    1.48    4.26    7.58
+   130.0    0.00    0.09    0.43    0.94    1.44    1.75    1.66    1.05   -0.05   -1.45   -2.83   -3.83   -4.17   -3.74   -2.55   -0.74    1.58    4.38    7.70
+   135.0    0.00    0.08    0.41    0.91    1.43    1.74    1.64    1.02   -0.11   -1.52   -2.89   -3.87   -4.18   -3.70   -2.48   -0.65    1.70    4.53    7.87
+   140.0    0.00    0.06    0.38    0.88    1.40    1.72    1.62    0.98   -0.16   -1.58   -2.95   -3.91   -4.18   -3.67   -2.41   -0.55    1.83    4.69    8.06
+   145.0    0.00    0.04    0.35    0.85    1.37    1.69    1.59    0.95   -0.20   -1.63   -2.99   -3.93   -4.18   -3.64   -2.36   -0.46    1.94    4.84    8.24
+   150.0    0.00    0.02    0.32    0.80    1.32    1.65    1.56    0.92   -0.22   -1.66   -3.02   -3.95   -4.18   -3.61   -2.31   -0.40    2.04    4.97    8.38
+   155.0    0.00    0.00    0.28    0.75    1.27    1.61    1.53    0.90   -0.24   -1.67   -3.04   -3.96   -4.17   -3.60   -2.29   -0.36    2.09    5.05    8.45
+   160.0    0.00   -0.02    0.23    0.69    1.21    1.55    1.48    0.87   -0.26   -1.68   -3.03   -3.95   -4.16   -3.59   -2.28   -0.37    2.09    5.05    8.44
+   165.0    0.00   -0.04    0.19    0.63    1.13    1.48    1.43    0.84   -0.27   -1.68   -3.02   -3.93   -4.15   -3.58   -2.30   -0.40    2.03    4.98    8.33
+   170.0    0.00   -0.06    0.14    0.56    1.05    1.40    1.36    0.79   -0.30   -1.68   -3.01   -3.91   -4.13   -3.58   -2.33   -0.48    1.91    4.83    8.13
+   175.0    0.00   -0.07    0.10    0.48    0.96    1.30    1.27    0.72   -0.34   -1.70   -3.00   -3.89   -4.11   -3.59   -2.38   -0.59    1.74    4.60    7.84
+   180.0    0.00   -0.09    0.05    0.41    0.86    1.19    1.16    0.63   -0.41   -1.73   -3.00   -3.87   -4.09   -3.59   -2.45   -0.73    1.51    4.31    7.49
+   185.0    0.00   -0.11    0.00    0.33    0.75    1.06    1.04    0.51   -0.49   -1.78   -3.02   -3.85   -4.07   -3.60   -2.51   -0.89    1.26    3.97    7.10
+   190.0    0.00   -0.12   -0.04    0.25    0.64    0.93    0.89    0.38   -0.60   -1.86   -3.05   -3.85   -4.05   -3.61   -2.59   -1.07    0.98    3.61    6.71
+   195.0    0.00   -0.14   -0.08    0.18    0.53    0.79    0.74    0.23   -0.74   -1.96   -3.11   -3.87   -4.06   -3.63   -2.67   -1.24    0.70    3.26    6.34
+   200.0    0.00   -0.15   -0.12    0.11    0.43    0.66    0.59    0.07   -0.88   -2.07   -3.19   -3.92   -4.08   -3.67   -2.76   -1.41    0.44    2.93    6.01
+   205.0    0.00   -0.16   -0.15    0.05    0.33    0.53    0.44   -0.09   -1.04   -2.20   -3.29   -3.99   -4.13   -3.73   -2.86   -1.58    0.19    2.64    5.76
+   210.0    0.00   -0.17   -0.17    0.00    0.25    0.42    0.30   -0.24   -1.18   -2.34   -3.41   -4.08   -4.21   -3.81   -2.96   -1.73   -0.01    2.41    5.58
+   215.0    0.00   -0.17   -0.19   -0.04    0.19    0.33    0.19   -0.37   -1.32   -2.48   -3.53   -4.20   -4.32   -3.91   -3.08   -1.87   -0.18    2.25    5.48
+   220.0    0.00   -0.17   -0.19   -0.06    0.14    0.27    0.11   -0.46   -1.43   -2.60   -3.66   -4.33   -4.45   -4.04   -3.20   -2.00   -0.30    2.15    5.46
+   225.0    0.00   -0.17   -0.20   -0.07    0.13    0.24    0.06   -0.52   -1.50   -2.69   -3.77   -4.46   -4.59   -4.18   -3.33   -2.10   -0.38    2.11    5.50
+   230.0    0.00   -0.16   -0.19   -0.06    0.13    0.24    0.06   -0.54   -1.54   -2.75   -3.86   -4.58   -4.73   -4.31   -3.44   -2.18   -0.42    2.12    5.59
+   235.0    0.00   -0.15   -0.17   -0.04    0.16    0.27    0.10   -0.51   -1.52   -2.76   -3.92   -4.67   -4.85   -4.43   -3.54   -2.24   -0.42    2.17    5.70
+   240.0    0.00   -0.14   -0.14    0.00    0.22    0.34    0.17   -0.43   -1.46   -2.73   -3.92   -4.72   -4.93   -4.52   -3.61   -2.26   -0.39    2.24    5.82
+   245.0    0.00   -0.13   -0.11    0.06    0.30    0.44    0.29   -0.31   -1.34   -2.64   -3.87   -4.72   -4.96   -4.57   -3.64   -2.25   -0.34    2.33    5.93
+   250.0    0.00   -0.11   -0.07    0.13    0.39    0.56    0.43   -0.15   -1.19   -2.50   -3.77   -4.65   -4.93   -4.56   -3.62   -2.21   -0.26    2.42    6.03
+   255.0    0.00   -0.09   -0.02    0.20    0.50    0.71    0.60    0.04   -0.99   -2.31   -3.61   -4.53   -4.84   -4.49   -3.56   -2.13   -0.17    2.51    6.09
+   260.0    0.00   -0.07    0.03    0.29    0.63    0.86    0.79    0.24   -0.78   -2.10   -3.41   -4.35   -4.70   -4.37   -3.44   -2.01   -0.06    2.60    6.13
+   265.0    0.00   -0.05    0.09    0.39    0.76    1.02    0.97    0.46   -0.55   -1.86   -3.18   -4.14   -4.51   -4.20   -3.29   -1.87    0.07    2.69    6.16
+   270.0    0.00   -0.02    0.15    0.48    0.89    1.18    1.16    0.66   -0.33   -1.63   -2.94   -3.92   -4.30   -4.01   -3.12   -1.71    0.20    2.77    6.18
+   275.0    0.00    0.00    0.21    0.58    1.02    1.34    1.33    0.85   -0.12   -1.42   -2.73   -3.71   -4.10   -3.82   -2.93   -1.54    0.35    2.87    6.20
+   280.0    0.00    0.03    0.27    0.68    1.14    1.48    1.49    1.01    0.05   -1.24   -2.55   -3.53   -3.93   -3.65   -2.76   -1.37    0.50    2.97    6.24
+   285.0    0.00    0.05    0.33    0.77    1.26    1.61    1.62    1.14    0.17   -1.12   -2.43   -3.41   -3.81   -3.52   -2.61   -1.21    0.65    3.08    6.31
+   290.0    0.00    0.08    0.39    0.86    1.36    1.72    1.72    1.23    0.25   -1.06   -2.38   -3.37   -3.76   -3.45   -2.51   -1.07    0.80    3.22    6.42
+   295.0    0.00    0.11    0.44    0.94    1.46    1.81    1.80    1.28    0.27   -1.07   -2.41   -3.41   -3.78   -3.44   -2.44   -0.96    0.95    3.37    6.58
+   300.0    0.00    0.13    0.49    1.01    1.53    1.88    1.84    1.29    0.24   -1.14   -2.51   -3.52   -3.88   -3.49   -2.42   -0.86    1.09    3.54    6.79
+   305.0    0.00    0.15    0.54    1.07    1.60    1.93    1.86    1.27    0.17   -1.26   -2.67   -3.70   -4.04   -3.59   -2.44   -0.80    1.23    3.72    7.03
+   310.0    0.00    0.18    0.58    1.12    1.65    1.96    1.86    1.23    0.07   -1.41   -2.87   -3.91   -4.23   -3.72   -2.49   -0.75    1.35    3.91    7.31
+   315.0    0.00    0.20    0.62    1.17    1.69    1.98    1.85    1.17   -0.04   -1.58   -3.08   -4.14   -4.44   -3.87   -2.54   -0.71    1.47    4.10    7.61
+   320.0    0.00    0.21    0.65    1.20    1.71    1.98    1.82    1.10   -0.15   -1.74   -3.28   -4.35   -4.63   -4.00   -2.59   -0.67    1.58    4.28    7.90
+   325.0    0.00    0.23    0.67    1.22    1.72    1.98    1.79    1.04   -0.25   -1.87   -3.44   -4.52   -4.78   -4.10   -2.62   -0.63    1.68    4.44    8.17
+   330.0    0.00    0.24    0.69    1.24    1.72    1.96    1.76    1.00   -0.32   -1.96   -3.54   -4.63   -4.86   -4.14   -2.62   -0.59    1.76    4.57    8.40
+   335.0    0.00    0.26    0.70    1.24    1.71    1.94    1.73    0.96   -0.36   -2.00   -3.58   -4.66   -4.88   -4.13   -2.59   -0.54    1.83    4.66    8.57
+   340.0    0.00    0.26    0.71    1.23    1.69    1.91    1.70    0.94   -0.36   -1.99   -3.55   -4.61   -4.82   -4.07   -2.53   -0.48    1.87    4.71    8.66
+   345.0    0.00    0.27    0.71    1.22    1.66    1.87    1.66    0.92   -0.34   -1.93   -3.46   -4.50   -4.70   -3.96   -2.45   -0.44    1.89    4.71    8.66
+   350.0    0.00    0.28    0.71    1.19    1.62    1.82    1.62    0.91   -0.31   -1.85   -3.34   -4.35   -4.54   -3.83   -2.36   -0.41    1.87    4.67    8.58
+   355.0    0.00    0.28    0.70    1.16    1.56    1.75    1.57    0.89   -0.29   -1.77   -3.20   -4.18   -4.38   -3.70   -2.29   -0.41    1.81    4.57    8.42
+   360.0    0.00    0.28    0.68    1.12    1.50    1.67    1.49    0.84   -0.28   -1.70   -3.08   -4.03   -4.23   -3.60   -2.26   -0.44    1.72    4.43    8.19
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TRM33429.20+GP  UNAV                                        TYPE / SERIAL NO    
+FIELD               NGS                      3    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+     -0.02     -0.67     57.65                              NORTH / EAST / UP   
+   NOAZI    0.00    4.87    8.90   12.27   14.58   16.08   16.94   17.11   16.83   16.39   15.64   15.01   14.67   14.75   15.62   17.69   21.47
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -1.08     -1.99     69.25                              NORTH / EAST / UP   
+   NOAZI    0.00    0.87    1.59    1.92    2.11    2.02    1.81    1.33    0.89    0.49    0.35    0.34    0.77    1.47    2.37    3.69    5.55
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TRM39105.00     NONE                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               7    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     4                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+Number of Calibrated Antennas GPS:      007                 COMMENT             
+Number of Individual Calibrations GPS:  040                 COMMENT             
+Number of Calibrated Antennas GLO:      002                 COMMENT             
+Number of Individual Calibrations GLO:  004                 COMMENT             
+# GLONASS PCV                                               COMMENT             
+#  derived from Delta PCV per 25.0 MHz                      COMMENT             
+#  for frequency channel number k=0                         COMMENT             
+   G01                                                      START OF FREQUENCY  
+     -0.30      0.48     55.86                              NORTH / EAST / UP   
+   NOAZI    0.00    0.00   -0.02   -0.08   -0.20   -0.36   -0.47   -0.48   -0.37   -0.19   -0.06   -0.09   -0.28   -0.50   -0.54   -0.24    0.37    0.96    0.96
+     0.0    0.00    0.02    0.03    0.01   -0.06   -0.17   -0.27   -0.33   -0.31   -0.26   -0.23   -0.25   -0.30   -0.28   -0.04    0.45    1.09    1.62    1.73
+     5.0    0.00    0.02    0.03    0.02   -0.05   -0.16   -0.26   -0.31   -0.30   -0.26   -0.24   -0.29   -0.36   -0.35   -0.14    0.33    0.96    1.46    1.53
+    10.0    0.00    0.02    0.03    0.01   -0.05   -0.15   -0.25   -0.29   -0.28   -0.25   -0.25   -0.32   -0.42   -0.45   -0.26    0.20    0.81    1.29    1.33
+    15.0    0.00    0.02    0.03    0.01   -0.05   -0.15   -0.23   -0.27   -0.26   -0.24   -0.26   -0.36   -0.50   -0.56   -0.39    0.04    0.65    1.13    1.15
+    20.0    0.00    0.02    0.03    0.01   -0.05   -0.14   -0.22   -0.26   -0.24   -0.23   -0.27   -0.40   -0.58   -0.67   -0.54   -0.12    0.49    0.99    1.00
+    25.0    0.00    0.02    0.03    0.01   -0.06   -0.14   -0.22   -0.24   -0.22   -0.21   -0.27   -0.44   -0.66   -0.80   -0.69   -0.27    0.35    0.88    0.90
+    30.0    0.00    0.02    0.03    0.00   -0.06   -0.15   -0.21   -0.23   -0.21   -0.20   -0.28   -0.48   -0.74   -0.91   -0.84   -0.42    0.23    0.79    0.84
+    35.0    0.00    0.02    0.03    0.00   -0.07   -0.15   -0.21   -0.22   -0.19   -0.19   -0.28   -0.51   -0.81   -1.02   -0.97   -0.55    0.12    0.72    0.80
+    40.0    0.00    0.02    0.03    0.00   -0.07   -0.16   -0.22   -0.22   -0.19   -0.18   -0.28   -0.53   -0.86   -1.11   -1.08   -0.67    0.02    0.65    0.77
+    45.0    0.00    0.03    0.03   -0.01   -0.08   -0.17   -0.23   -0.22   -0.18   -0.17   -0.28   -0.55   -0.90   -1.18   -1.17   -0.77   -0.07    0.58    0.72
+    50.0    0.00    0.03    0.03   -0.01   -0.09   -0.18   -0.24   -0.23   -0.18   -0.16   -0.27   -0.55   -0.92   -1.22   -1.24   -0.85   -0.16    0.49    0.65
+    55.0    0.00    0.03    0.03   -0.01   -0.10   -0.19   -0.25   -0.24   -0.18   -0.15   -0.25   -0.53   -0.91   -1.23   -1.27   -0.92   -0.26    0.38    0.54
+    60.0    0.00    0.03    0.03   -0.01   -0.10   -0.20   -0.26   -0.25   -0.18   -0.14   -0.22   -0.49   -0.88   -1.22   -1.29   -0.97   -0.34    0.25    0.38
+    65.0    0.00    0.03    0.03   -0.02   -0.11   -0.21   -0.27   -0.25   -0.17   -0.11   -0.18   -0.44   -0.82   -1.17   -1.27   -0.99   -0.43    0.11    0.19
+    70.0    0.00    0.03    0.03   -0.02   -0.11   -0.22   -0.28   -0.25   -0.16   -0.08   -0.13   -0.37   -0.75   -1.11   -1.23   -1.00   -0.49   -0.02   -0.03
+    75.0    0.00    0.03    0.03   -0.01   -0.11   -0.22   -0.28   -0.25   -0.14   -0.05   -0.07   -0.29   -0.66   -1.02   -1.17   -0.97   -0.52   -0.13   -0.24
+    80.0    0.00    0.03    0.03   -0.01   -0.11   -0.22   -0.28   -0.24   -0.12    0.00   -0.01   -0.21   -0.57   -0.93   -1.08   -0.91   -0.51   -0.20   -0.41
+    85.0    0.00    0.03    0.03   -0.01   -0.11   -0.22   -0.28   -0.23   -0.10    0.04    0.06   -0.12   -0.46   -0.82   -0.97   -0.82   -0.45   -0.21   -0.54
+    90.0    0.00    0.03    0.04   -0.01   -0.11   -0.22   -0.27   -0.22   -0.07    0.09    0.13   -0.03   -0.36   -0.70   -0.85   -0.69   -0.34   -0.15   -0.58
+    95.0    0.00    0.03    0.04    0.00   -0.10   -0.22   -0.27   -0.21   -0.05    0.12    0.18    0.04   -0.27   -0.59   -0.72   -0.54   -0.18   -0.01   -0.54
+   100.0    0.00    0.03    0.04    0.00   -0.10   -0.22   -0.27   -0.21   -0.04    0.15    0.23    0.11   -0.18   -0.48   -0.58   -0.36    0.03    0.20   -0.40
+   105.0    0.00    0.03    0.04    0.00   -0.10   -0.22   -0.28   -0.21   -0.03    0.17    0.26    0.16   -0.11   -0.38   -0.44   -0.17    0.27    0.46   -0.17
+   110.0    0.00    0.02    0.04    0.00   -0.10   -0.22   -0.29   -0.22   -0.04    0.17    0.28    0.20   -0.05   -0.30   -0.31    0.01    0.52    0.76    0.12
+   115.0    0.00    0.02    0.03    0.00   -0.11   -0.24   -0.30   -0.25   -0.06    0.16    0.29    0.22   -0.01   -0.23   -0.21    0.17    0.75    1.07    0.47
+   120.0    0.00    0.02    0.03   -0.01   -0.12   -0.25   -0.33   -0.28   -0.09    0.14    0.28    0.24    0.02   -0.18   -0.13    0.29    0.95    1.36    0.83
+   125.0    0.00    0.02    0.03   -0.02   -0.13   -0.27   -0.36   -0.32   -0.14    0.11    0.26    0.24    0.04   -0.15   -0.09    0.37    1.10    1.61    1.19
+   130.0    0.00    0.02    0.02   -0.02   -0.14   -0.30   -0.40   -0.37   -0.18    0.07    0.24    0.23    0.04   -0.15   -0.08    0.40    1.19    1.80    1.51
+   135.0    0.00    0.01    0.02   -0.03   -0.16   -0.33   -0.44   -0.41   -0.23    0.02    0.21    0.21    0.03   -0.16   -0.11    0.38    1.21    1.92    1.77
+   140.0    0.00    0.01    0.01   -0.05   -0.18   -0.35   -0.48   -0.46   -0.28   -0.02    0.18    0.19    0.01   -0.20   -0.17    0.30    1.17    1.97    1.96
+   145.0    0.00    0.01    0.00   -0.06   -0.20   -0.38   -0.52   -0.51   -0.33   -0.06    0.15    0.17   -0.02   -0.25   -0.26    0.20    1.07    1.95    2.07
+   150.0    0.00    0.00   -0.01   -0.08   -0.22   -0.41   -0.55   -0.55   -0.37   -0.09    0.13    0.15   -0.05   -0.32   -0.36    0.06    0.94    1.87    2.10
+   155.0    0.00    0.00   -0.02   -0.09   -0.25   -0.44   -0.58   -0.58   -0.40   -0.12    0.10    0.12   -0.09   -0.38   -0.46   -0.07    0.79    1.75    2.05
+   160.0    0.00    0.00   -0.03   -0.11   -0.27   -0.47   -0.61   -0.61   -0.42   -0.14    0.08    0.10   -0.13   -0.44   -0.56   -0.20    0.64    1.60    1.93
+   165.0    0.00   -0.01   -0.04   -0.13   -0.29   -0.49   -0.63   -0.63   -0.44   -0.16    0.07    0.08   -0.16   -0.49   -0.63   -0.31    0.50    1.44    1.77
+   170.0    0.00   -0.01   -0.05   -0.14   -0.31   -0.51   -0.65   -0.64   -0.46   -0.17    0.05    0.06   -0.18   -0.52   -0.68   -0.39    0.38    1.28    1.56
+   175.0    0.00   -0.02   -0.06   -0.16   -0.33   -0.54   -0.67   -0.66   -0.47   -0.18    0.04    0.05   -0.19   -0.54   -0.71   -0.44    0.29    1.12    1.34
+   180.0    0.00   -0.02   -0.07   -0.18   -0.35   -0.56   -0.69   -0.67   -0.48   -0.20    0.03    0.04   -0.20   -0.54   -0.71   -0.47    0.22    0.98    1.10
+   185.0    0.00   -0.02   -0.08   -0.19   -0.37   -0.57   -0.71   -0.69   -0.49   -0.21    0.02    0.03   -0.19   -0.52   -0.69   -0.47    0.16    0.85    0.88
+   190.0    0.00   -0.03   -0.09   -0.21   -0.39   -0.59   -0.73   -0.70   -0.51   -0.22    0.01    0.03   -0.17   -0.49   -0.66   -0.46    0.12    0.73    0.68
+   195.0    0.00   -0.03   -0.09   -0.22   -0.41   -0.61   -0.74   -0.72   -0.53   -0.24    0.00    0.04   -0.15   -0.45   -0.62   -0.45    0.08    0.62    0.51
+   200.0    0.00   -0.03   -0.10   -0.23   -0.42   -0.62   -0.76   -0.74   -0.55   -0.26   -0.01    0.04   -0.13   -0.42   -0.59   -0.44    0.04    0.53    0.39
+   205.0    0.00   -0.04   -0.11   -0.24   -0.43   -0.64   -0.77   -0.76   -0.57   -0.27   -0.02    0.05   -0.11   -0.40   -0.58   -0.45   -0.01    0.45    0.32
+   210.0    0.00   -0.04   -0.11   -0.24   -0.44   -0.64   -0.78   -0.77   -0.58   -0.29   -0.03    0.05   -0.11   -0.39   -0.58   -0.48   -0.06    0.40    0.32
+   215.0    0.00   -0.04   -0.11   -0.25   -0.44   -0.65   -0.79   -0.78   -0.59   -0.30   -0.04    0.04   -0.11   -0.40   -0.61   -0.52   -0.11    0.38    0.38
+   220.0    0.00   -0.04   -0.12   -0.25   -0.44   -0.64   -0.79   -0.78   -0.60   -0.31   -0.05    0.03   -0.13   -0.43   -0.65   -0.57   -0.15    0.39    0.49
+   225.0    0.00   -0.04   -0.11   -0.24   -0.43   -0.64   -0.78   -0.78   -0.60   -0.32   -0.07    0.01   -0.16   -0.47   -0.70   -0.63   -0.17    0.44    0.66
+   230.0    0.00   -0.04   -0.11   -0.24   -0.42   -0.63   -0.77   -0.77   -0.60   -0.33   -0.08   -0.02   -0.20   -0.52   -0.76   -0.67   -0.16    0.53    0.86
+   235.0    0.00   -0.04   -0.11   -0.23   -0.41   -0.61   -0.76   -0.76   -0.60   -0.33   -0.10   -0.06   -0.25   -0.58   -0.82   -0.70   -0.13    0.64    1.08
+   240.0    0.00   -0.04   -0.11   -0.22   -0.40   -0.59   -0.74   -0.75   -0.60   -0.34   -0.13   -0.09   -0.30   -0.64   -0.86   -0.70   -0.08    0.78    1.28
+   245.0    0.00   -0.04   -0.10   -0.21   -0.38   -0.58   -0.72   -0.74   -0.59   -0.35   -0.15   -0.13   -0.34   -0.68   -0.88   -0.68    0.01    0.92    1.45
+   250.0    0.00   -0.04   -0.09   -0.20   -0.36   -0.56   -0.70   -0.73   -0.59   -0.36   -0.17   -0.16   -0.38   -0.70   -0.88   -0.63    0.10    1.05    1.56
+   255.0    0.00   -0.03   -0.09   -0.19   -0.34   -0.54   -0.69   -0.72   -0.60   -0.38   -0.19   -0.19   -0.39   -0.70   -0.85   -0.57    0.19    1.14    1.60
+   260.0    0.00   -0.03   -0.08   -0.17   -0.33   -0.52   -0.68   -0.72   -0.61   -0.39   -0.21   -0.20   -0.39   -0.68   -0.80   -0.49    0.28    1.20    1.55
+   265.0    0.00   -0.03   -0.07   -0.16   -0.31   -0.51   -0.67   -0.72   -0.62   -0.41   -0.22   -0.19   -0.37   -0.63   -0.73   -0.42    0.34    1.20    1.43
+   270.0    0.00   -0.03   -0.06   -0.14   -0.30   -0.49   -0.67   -0.72   -0.63   -0.42   -0.22   -0.18   -0.33   -0.57   -0.65   -0.34    0.37    1.14    1.23
+   275.0    0.00   -0.02   -0.05   -0.13   -0.28   -0.48   -0.66   -0.73   -0.63   -0.42   -0.21   -0.15   -0.28   -0.49   -0.57   -0.28    0.38    1.05    0.99
+   280.0    0.00   -0.02   -0.05   -0.12   -0.27   -0.47   -0.66   -0.73   -0.64   -0.42   -0.19   -0.11   -0.21   -0.41   -0.49   -0.24    0.35    0.92    0.74
+   285.0    0.00   -0.02   -0.04   -0.11   -0.25   -0.46   -0.65   -0.72   -0.63   -0.40   -0.17   -0.06   -0.15   -0.34   -0.42   -0.20    0.32    0.78    0.51
+   290.0    0.00   -0.01   -0.03   -0.09   -0.24   -0.44   -0.63   -0.71   -0.62   -0.38   -0.14   -0.01   -0.08   -0.27   -0.36   -0.18    0.28    0.66    0.32
+   295.0    0.00   -0.01   -0.02   -0.08   -0.22   -0.43   -0.62   -0.69   -0.60   -0.36   -0.10    0.03   -0.03   -0.21   -0.31   -0.16    0.25    0.58    0.22
+   300.0    0.00   -0.01   -0.01   -0.07   -0.21   -0.41   -0.59   -0.67   -0.57   -0.33   -0.07    0.07    0.01   -0.16   -0.27   -0.13    0.25    0.56    0.21
+   305.0    0.00    0.00   -0.01   -0.06   -0.19   -0.39   -0.57   -0.63   -0.53   -0.30   -0.04    0.09    0.03   -0.13   -0.23   -0.09    0.29    0.60    0.30
+   310.0    0.00    0.00    0.00   -0.05   -0.17   -0.36   -0.53   -0.60   -0.50   -0.27   -0.02    0.10    0.04   -0.12   -0.20   -0.03    0.36    0.70    0.48
+   315.0    0.00    0.00    0.01   -0.04   -0.16   -0.34   -0.50   -0.56   -0.46   -0.24   -0.01    0.09    0.03   -0.11   -0.16    0.05    0.48    0.87    0.74
+   320.0    0.00    0.01    0.01   -0.03   -0.14   -0.31   -0.47   -0.52   -0.42   -0.22   -0.02    0.07    0.01   -0.11   -0.11    0.14    0.63    1.07    1.04
+   325.0    0.00    0.01    0.02   -0.02   -0.12   -0.28   -0.43   -0.48   -0.40   -0.21   -0.03    0.04   -0.01   -0.11   -0.07    0.25    0.79    1.29    1.35
+   330.0    0.00    0.01    0.02   -0.01   -0.11   -0.26   -0.40   -0.45   -0.37   -0.21   -0.05    0.00   -0.05   -0.11   -0.02    0.35    0.95    1.50    1.64
+   335.0    0.00    0.01    0.02    0.00   -0.10   -0.24   -0.37   -0.42   -0.36   -0.21   -0.08   -0.04   -0.09   -0.12    0.02    0.45    1.09    1.68    1.86
+   340.0    0.00    0.01    0.03    0.00   -0.08   -0.22   -0.34   -0.40   -0.34   -0.22   -0.12   -0.09   -0.13   -0.13    0.06    0.52    1.19    1.80    2.00
+   345.0    0.00    0.02    0.03    0.01   -0.07   -0.20   -0.32   -0.38   -0.34   -0.24   -0.15   -0.13   -0.17   -0.15    0.07    0.56    1.24    1.85    2.05
+   350.0    0.00    0.02    0.03    0.01   -0.07   -0.19   -0.30   -0.36   -0.33   -0.25   -0.18   -0.17   -0.21   -0.17    0.06    0.56    1.24    1.83    2.01
+   355.0    0.00    0.02    0.03    0.01   -0.06   -0.18   -0.29   -0.34   -0.32   -0.26   -0.20   -0.21   -0.25   -0.22    0.02    0.53    1.19    1.75    1.90
+   360.0    0.00    0.02    0.03    0.01   -0.06   -0.17   -0.27   -0.33   -0.31   -0.26   -0.23   -0.25   -0.30   -0.28   -0.04    0.45    1.09    1.62    1.73
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.62      1.63     52.61                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.05   -0.18   -0.34   -0.50   -0.66   -0.84   -1.04   -1.19   -1.17   -0.88   -0.29    0.46    1.04    1.12    0.58   -0.31   -0.80    0.10
+     0.0    0.00   -0.16   -0.41   -0.68   -0.91   -1.09   -1.22   -1.31   -1.33   -1.21   -0.86   -0.23    0.54    1.17    1.28    0.67   -0.47   -1.38   -0.79
+     5.0    0.00   -0.16   -0.39   -0.65   -0.88   -1.06   -1.20   -1.29   -1.32   -1.20   -0.83   -0.19    0.59    1.22    1.34    0.76   -0.35   -1.28   -0.86
+    10.0    0.00   -0.15   -0.37   -0.62   -0.84   -1.03   -1.17   -1.28   -1.32   -1.19   -0.81   -0.16    0.62    1.25    1.39    0.84   -0.22   -1.13   -0.86
+    15.0    0.00   -0.14   -0.35   -0.58   -0.80   -0.99   -1.15   -1.27   -1.32   -1.19   -0.81   -0.15    0.64    1.27    1.43    0.93   -0.06   -0.94   -0.77
+    20.0    0.00   -0.13   -0.33   -0.55   -0.76   -0.96   -1.13   -1.27   -1.33   -1.21   -0.82   -0.16    0.63    1.28    1.46    1.02    0.11   -0.69   -0.59
+    25.0    0.00   -0.12   -0.30   -0.51   -0.72   -0.92   -1.10   -1.26   -1.34   -1.24   -0.86   -0.20    0.60    1.27    1.49    1.11    0.30   -0.41   -0.31
+    30.0    0.00   -0.11   -0.28   -0.48   -0.68   -0.88   -1.08   -1.26   -1.36   -1.28   -0.91   -0.25    0.55    1.24    1.49    1.19    0.48   -0.12    0.03
+    35.0    0.00   -0.09   -0.25   -0.44   -0.64   -0.84   -1.05   -1.25   -1.38   -1.32   -0.97   -0.32    0.49    1.19    1.48    1.24    0.64    0.15    0.40
+    40.0    0.00   -0.08   -0.23   -0.41   -0.60   -0.79   -1.01   -1.24   -1.39   -1.36   -1.03   -0.40    0.41    1.12    1.44    1.25    0.74    0.37    0.75
+    45.0    0.00   -0.07   -0.20   -0.37   -0.55   -0.75   -0.97   -1.21   -1.38   -1.38   -1.08   -0.47    0.32    1.03    1.37    1.21    0.76    0.51    1.05
+    50.0    0.00   -0.06   -0.18   -0.34   -0.51   -0.70   -0.92   -1.16   -1.36   -1.38   -1.11   -0.53    0.24    0.93    1.26    1.11    0.70    0.54    1.26
+    55.0    0.00   -0.05   -0.16   -0.31   -0.47   -0.64   -0.86   -1.10   -1.31   -1.35   -1.12   -0.57    0.16    0.82    1.12    0.95    0.53    0.44    1.33
+    60.0    0.00   -0.03   -0.14   -0.27   -0.42   -0.59   -0.79   -1.03   -1.23   -1.30   -1.10   -0.59    0.10    0.71    0.96    0.73    0.28    0.22    1.26
+    65.0    0.00   -0.02   -0.11   -0.24   -0.38   -0.53   -0.71   -0.93   -1.14   -1.22   -1.04   -0.57    0.07    0.62    0.79    0.48   -0.04   -0.12    1.05
+    70.0    0.00   -0.01   -0.09   -0.21   -0.33   -0.46   -0.62   -0.83   -1.02   -1.10   -0.95   -0.52    0.07    0.55    0.64    0.22   -0.41   -0.54    0.70
+    75.0    0.00    0.00   -0.07   -0.18   -0.29   -0.40   -0.54   -0.71   -0.89   -0.98   -0.84   -0.44    0.10    0.52    0.51   -0.03   -0.79   -1.01    0.24
+    80.0    0.00    0.01   -0.06   -0.15   -0.25   -0.34   -0.45   -0.60   -0.76   -0.83   -0.71   -0.33    0.17    0.53    0.43   -0.23   -1.13   -1.48   -0.28
+    85.0    0.00    0.02   -0.04   -0.13   -0.21   -0.28   -0.36   -0.49   -0.63   -0.69   -0.57   -0.21    0.27    0.58    0.41   -0.36   -1.41   -1.91   -0.83
+    90.0    0.00    0.03   -0.02   -0.10   -0.17   -0.22   -0.28   -0.39   -0.51   -0.56   -0.43   -0.07    0.40    0.68    0.45   -0.41   -1.60   -2.27   -1.34
+    95.0    0.00    0.04    0.00   -0.08   -0.14   -0.17   -0.22   -0.30   -0.41   -0.44   -0.30    0.07    0.55    0.82    0.56   -0.38   -1.68   -2.52   -1.78
+   100.0    0.00    0.05    0.01   -0.05   -0.10   -0.13   -0.16   -0.24   -0.33   -0.35   -0.19    0.20    0.70    0.99    0.72   -0.26   -1.65   -2.65   -2.12
+   105.0    0.00    0.05    0.02   -0.03   -0.08   -0.09   -0.12   -0.19   -0.28   -0.29   -0.11    0.32    0.85    1.18    0.93   -0.07   -1.53   -2.65   -2.34
+   110.0    0.00    0.06    0.04   -0.01   -0.05   -0.07   -0.09   -0.17   -0.26   -0.26   -0.06    0.40    0.98    1.35    1.14    0.16   -1.33   -2.55   -2.43
+   115.0    0.00    0.07    0.05    0.00   -0.03   -0.05   -0.08   -0.16   -0.26   -0.26   -0.04    0.46    1.08    1.51    1.36    0.41   -1.09   -2.37   -2.39
+   120.0    0.00    0.07    0.06    0.02   -0.01   -0.03   -0.08   -0.18   -0.29   -0.29   -0.06    0.47    1.15    1.64    1.54    0.64   -0.83   -2.13   -2.24
+   125.0    0.00    0.07    0.07    0.03    0.00   -0.03   -0.09   -0.20   -0.33   -0.35   -0.10    0.46    1.18    1.72    1.68    0.84   -0.58   -1.86   -2.02
+   130.0    0.00    0.08    0.07    0.04    0.01   -0.02   -0.10   -0.25   -0.40   -0.42   -0.17    0.41    1.16    1.75    1.76    0.98   -0.38   -1.61   -1.74
+   135.0    0.00    0.08    0.08    0.05    0.01   -0.03   -0.13   -0.30   -0.47   -0.51   -0.26    0.33    1.11    1.72    1.78    1.06   -0.23   -1.38   -1.44
+   140.0    0.00    0.08    0.08    0.05    0.01   -0.04   -0.16   -0.35   -0.55   -0.61   -0.37    0.22    1.01    1.65    1.74    1.07   -0.14   -1.20   -1.16
+   145.0    0.00    0.08    0.08    0.05    0.01   -0.06   -0.20   -0.41   -0.64   -0.72   -0.49    0.10    0.89    1.54    1.65    1.02   -0.12   -1.08   -0.92
+   150.0    0.00    0.08    0.08    0.05    0.00   -0.08   -0.24   -0.48   -0.73   -0.83   -0.61   -0.04    0.75    1.40    1.52    0.93   -0.14   -1.02   -0.74
+   155.0    0.00    0.08    0.08    0.04   -0.02   -0.11   -0.29   -0.55   -0.81   -0.93   -0.74   -0.18    0.59    1.24    1.37    0.82   -0.21   -1.00   -0.63
+   160.0    0.00    0.08    0.07    0.03   -0.04   -0.15   -0.34   -0.62   -0.90   -1.04   -0.86   -0.32    0.43    1.07    1.22    0.69   -0.29   -1.03   -0.59
+   165.0    0.00    0.08    0.07    0.02   -0.06   -0.19   -0.39   -0.68   -0.98   -1.13   -0.97   -0.46    0.28    0.91    1.06    0.56   -0.38   -1.09   -0.62
+   170.0    0.00    0.07    0.06    0.00   -0.09   -0.23   -0.45   -0.75   -1.06   -1.22   -1.08   -0.59    0.13    0.76    0.93    0.45   -0.46   -1.16   -0.70
+   175.0    0.00    0.07    0.05   -0.02   -0.13   -0.28   -0.51   -0.82   -1.14   -1.30   -1.18   -0.70    0.00    0.62    0.80    0.36   -0.53   -1.24   -0.82
+   180.0    0.00    0.06    0.03   -0.05   -0.17   -0.33   -0.58   -0.89   -1.20   -1.38   -1.26   -0.80   -0.12    0.50    0.70    0.29   -0.58   -1.30   -0.95
+   185.0    0.00    0.05    0.02   -0.07   -0.21   -0.39   -0.64   -0.96   -1.27   -1.44   -1.33   -0.88   -0.21    0.40    0.62    0.23   -0.61   -1.35   -1.08
+   190.0    0.00    0.05    0.00   -0.10   -0.25   -0.44   -0.70   -1.02   -1.32   -1.49   -1.38   -0.95   -0.29    0.32    0.55    0.20   -0.62   -1.37   -1.17
+   195.0    0.00    0.04   -0.01   -0.13   -0.29   -0.50   -0.76   -1.08   -1.37   -1.53   -1.42   -1.00   -0.35    0.26    0.50    0.18   -0.61   -1.35   -1.20
+   200.0    0.00    0.03   -0.03   -0.16   -0.34   -0.56   -0.83   -1.13   -1.42   -1.56   -1.45   -1.02   -0.38    0.22    0.47    0.17   -0.57   -1.28   -1.15
+   205.0    0.00    0.02   -0.05   -0.19   -0.38   -0.61   -0.88   -1.19   -1.46   -1.58   -1.46   -1.03   -0.39    0.20    0.46    0.19   -0.51   -1.16   -1.00
+   210.0    0.00    0.01   -0.07   -0.22   -0.42   -0.66   -0.94   -1.24   -1.49   -1.60   -1.45   -1.01   -0.37    0.22    0.48    0.24   -0.41   -0.97   -0.74
+   215.0    0.00    0.00   -0.09   -0.25   -0.46   -0.71   -0.99   -1.28   -1.53   -1.62   -1.44   -0.97   -0.32    0.28    0.54    0.32   -0.26   -0.73   -0.37
+   220.0    0.00   -0.01   -0.11   -0.28   -0.50   -0.75   -1.04   -1.33   -1.56   -1.63   -1.42   -0.92   -0.24    0.37    0.64    0.44   -0.08   -0.41    0.10
+   225.0    0.00   -0.02   -0.13   -0.30   -0.53   -0.79   -1.08   -1.37   -1.59   -1.63   -1.39   -0.84   -0.13    0.51    0.79    0.61    0.16   -0.05    0.65
+   230.0    0.00   -0.03   -0.15   -0.33   -0.56   -0.82   -1.12   -1.41   -1.63   -1.64   -1.35   -0.75    0.02    0.68    0.98    0.82    0.43    0.36    1.25
+   235.0    0.00   -0.04   -0.17   -0.35   -0.58   -0.85   -1.15   -1.45   -1.66   -1.64   -1.31   -0.65    0.18    0.89    1.21    1.06    0.72    0.77    1.86
+   240.0    0.00   -0.05   -0.19   -0.38   -0.61   -0.88   -1.18   -1.48   -1.68   -1.64   -1.26   -0.53    0.36    1.12    1.45    1.31    1.01    1.18    2.45
+   245.0    0.00   -0.06   -0.21   -0.40   -0.63   -0.90   -1.20   -1.50   -1.70   -1.63   -1.20   -0.41    0.55    1.35    1.70    1.56    1.27    1.53    2.97
+   250.0    0.00   -0.08   -0.22   -0.42   -0.65   -0.92   -1.22   -1.52   -1.70   -1.62   -1.14   -0.28    0.73    1.57    1.92    1.76    1.48    1.80    3.38
+   255.0    0.00   -0.09   -0.24   -0.44   -0.67   -0.93   -1.23   -1.52   -1.70   -1.59   -1.07   -0.16    0.90    1.76    2.11    1.91    1.61    1.96    3.66
+   260.0    0.00   -0.10   -0.26   -0.47   -0.69   -0.94   -1.23   -1.52   -1.68   -1.55   -1.00   -0.06    1.04    1.91    2.23    1.98    1.63    1.98    3.77
+   265.0    0.00   -0.11   -0.28   -0.49   -0.71   -0.95   -1.22   -1.50   -1.64   -1.50   -0.93    0.04    1.15    2.00    2.27    1.95    1.53    1.86    3.73
+   270.0    0.00   -0.12   -0.30   -0.51   -0.72   -0.95   -1.21   -1.47   -1.60   -1.44   -0.85    0.11    1.21    2.02    2.23    1.82    1.31    1.60    3.54
+   275.0    0.00   -0.13   -0.32   -0.53   -0.74   -0.96   -1.20   -1.43   -1.54   -1.37   -0.79    0.16    1.22    1.98    2.10    1.59    0.98    1.23    3.22
+   280.0    0.00   -0.14   -0.34   -0.56   -0.77   -0.97   -1.18   -1.39   -1.48   -1.30   -0.73    0.19    1.19    1.88    1.91    1.29    0.58    0.76    2.81
+   285.0    0.00   -0.15   -0.36   -0.58   -0.79   -0.98   -1.17   -1.34   -1.42   -1.23   -0.69    0.18    1.13    1.74    1.67    0.95    0.12    0.24    2.34
+   290.0    0.00   -0.16   -0.38   -0.61   -0.81   -0.99   -1.16   -1.30   -1.36   -1.18   -0.66    0.16    1.03    1.56    1.40    0.58   -0.34   -0.29    1.86
+   295.0    0.00   -0.16   -0.39   -0.63   -0.84   -1.00   -1.15   -1.27   -1.31   -1.14   -0.66    0.10    0.91    1.36    1.14    0.24   -0.77   -0.79    1.40
+   300.0    0.00   -0.17   -0.41   -0.66   -0.87   -1.02   -1.15   -1.25   -1.28   -1.11   -0.67    0.04    0.77    1.17    0.90   -0.05   -1.13   -1.22    1.00
+   305.0    0.00   -0.18   -0.42   -0.68   -0.89   -1.04   -1.15   -1.24   -1.26   -1.11   -0.70   -0.05    0.64    1.01    0.71   -0.28   -1.41   -1.56    0.67
+   310.0    0.00   -0.18   -0.44   -0.70   -0.92   -1.07   -1.17   -1.24   -1.25   -1.12   -0.74   -0.13    0.52    0.87    0.58   -0.41   -1.58   -1.79    0.43
+   315.0    0.00   -0.19   -0.45   -0.72   -0.94   -1.09   -1.18   -1.25   -1.26   -1.14   -0.79   -0.21    0.42    0.78    0.51   -0.46   -1.64   -1.92    0.25
+   320.0    0.00   -0.19   -0.45   -0.73   -0.96   -1.11   -1.20   -1.26   -1.28   -1.17   -0.85   -0.29    0.35    0.73    0.51   -0.42   -1.62   -1.96    0.14
+   325.0    0.00   -0.19   -0.46   -0.74   -0.98   -1.13   -1.22   -1.28   -1.30   -1.21   -0.90   -0.35    0.30    0.72    0.56   -0.32   -1.52   -1.93    0.05
+   330.0    0.00   -0.19   -0.46   -0.75   -0.99   -1.15   -1.24   -1.30   -1.33   -1.24   -0.94   -0.39    0.28    0.75    0.65   -0.18   -1.37   -1.86   -0.02
+   335.0    0.00   -0.19   -0.46   -0.75   -0.99   -1.15   -1.25   -1.32   -1.35   -1.26   -0.96   -0.40    0.29    0.81    0.77   -0.01   -1.19   -1.77   -0.11
+   340.0    0.00   -0.19   -0.46   -0.75   -0.99   -1.16   -1.26   -1.33   -1.36   -1.27   -0.96   -0.39    0.32    0.88    0.89    0.16   -1.02   -1.68   -0.22
+   345.0    0.00   -0.18   -0.45   -0.74   -0.98   -1.15   -1.26   -1.33   -1.36   -1.27   -0.95   -0.37    0.37    0.95    1.01    0.32   -0.86   -1.60   -0.35
+   350.0    0.00   -0.18   -0.44   -0.72   -0.96   -1.14   -1.25   -1.33   -1.36   -1.26   -0.93   -0.33    0.42    1.03    1.12    0.46   -0.72   -1.53   -0.50
+   355.0    0.00   -0.17   -0.42   -0.70   -0.94   -1.12   -1.24   -1.32   -1.35   -1.24   -0.89   -0.28    0.48    1.11    1.21    0.57   -0.59   -1.46   -0.66
+   360.0    0.00   -0.16   -0.41   -0.68   -0.91   -1.09   -1.22   -1.31   -1.33   -1.21   -0.86   -0.23    0.54    1.17    1.28    0.67   -0.47   -1.38   -0.79
+   G02                                                      END OF FREQUENCY    
+   R01                                                      START OF FREQUENCY  
+     -0.30      0.48     55.86                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.05   -0.20   -0.42   -0.67   -0.88   -0.94   -0.80   -0.48   -0.09    0.21    0.27    0.10   -0.16   -0.27   -0.04    0.54    1.19    1.39
+     0.0    0.00   -0.02   -0.08   -0.21   -0.38   -0.52   -0.58   -0.53   -0.35   -0.14    0.03    0.05   -0.04   -0.12    0.02    0.51    1.27    1.95    1.94
+     5.0    0.00    0.01   -0.08   -0.20   -0.36   -0.50   -0.55   -0.49   -0.32   -0.13   -0.02   -0.05   -0.17   -0.26   -0.13    0.35    1.09    1.68    1.55
+    10.0    0.00    0.01   -0.08   -0.21   -0.36   -0.48   -0.53   -0.44   -0.29   -0.13   -0.05   -0.12   -0.29   -0.42   -0.28    0.20    0.91    1.44    1.21
+    15.0    0.00    0.01   -0.07   -0.21   -0.37   -0.48   -0.50   -0.41   -0.25   -0.12   -0.09   -0.21   -0.43   -0.57   -0.43    0.03    0.74    1.23    0.94
+    20.0    0.00    0.02   -0.07   -0.21   -0.37   -0.48   -0.49   -0.39   -0.23   -0.11   -0.13   -0.29   -0.55   -0.71   -0.59   -0.11    0.58    1.06    0.74
+    25.0    0.00    0.02   -0.07   -0.22   -0.39   -0.49   -0.49   -0.37   -0.21   -0.10   -0.15   -0.38   -0.67   -0.86   -0.74   -0.25    0.46    0.95    0.66
+    30.0    0.00    0.02   -0.07   -0.24   -0.41   -0.52   -0.50   -0.37   -0.20   -0.10   -0.17   -0.45   -0.78   -1.00   -0.89   -0.39    0.35    0.88    0.63
+    35.0    0.00    0.03   -0.07   -0.24   -0.44   -0.54   -0.52   -0.37   -0.19   -0.09   -0.18   -0.50   -0.88   -1.14   -1.03   -0.51    0.26    0.82    0.63
+    40.0    0.00    0.03   -0.07   -0.26   -0.45   -0.57   -0.55   -0.39   -0.19   -0.08   -0.19   -0.53   -0.97   -1.26   -1.18   -0.64    0.16    0.76    0.65
+    45.0    0.00    0.04   -0.07   -0.28   -0.48   -0.62   -0.59   -0.40   -0.18   -0.07   -0.19   -0.56   -1.04   -1.37   -1.30   -0.76    0.06    0.69    0.63
+    50.0    0.00    0.05   -0.07   -0.28   -0.52   -0.65   -0.62   -0.43   -0.18   -0.04   -0.16   -0.56   -1.08   -1.45   -1.42   -0.88   -0.06    0.60    0.60
+    55.0    0.00    0.05   -0.06   -0.29   -0.54   -0.68   -0.65   -0.45   -0.18   -0.01   -0.12   -0.54   -1.09   -1.51   -1.50   -1.01   -0.21    0.47    0.52
+    60.0    0.00    0.05   -0.06   -0.29   -0.55   -0.71   -0.67   -0.46   -0.16    0.02   -0.06   -0.48   -1.06   -1.53   -1.58   -1.12   -0.34    0.30    0.39
+    65.0    0.00    0.05   -0.06   -0.30   -0.56   -0.72   -0.70   -0.46   -0.14    0.09    0.02   -0.39   -0.99   -1.49   -1.60   -1.20   -0.49    0.13    0.25
+    70.0    0.00    0.06   -0.04   -0.29   -0.55   -0.73   -0.71   -0.45   -0.11    0.15    0.11   -0.27   -0.88   -1.42   -1.59   -1.28   -0.62   -0.03    0.11
+    75.0    0.00    0.06   -0.04   -0.27   -0.54   -0.72   -0.69   -0.44   -0.07    0.22    0.24   -0.12   -0.71   -1.28   -1.52   -1.28   -0.71   -0.16    0.24
+    80.0    0.00    0.06   -0.03   -0.25   -0.52   -0.71   -0.68   -0.42   -0.02    0.30    0.35    0.05   -0.53   -1.10   -1.38   -1.23   -0.75   -0.26   -0.05
+    85.0    0.00    0.06   -0.02   -0.23   -0.50   -0.69   -0.66   -0.40    0.01    0.37    0.47    0.23   -0.29   -0.86   -1.18   -1.12   -0.74   -0.30   -0.05
+    90.0    0.00    0.06   -0.04   -0.22   -0.48   -0.66   -0.64   -0.39    0.04    0.43    0.61    0.43   -0.03   -0.57   -0.94   -0.95   -0.65   -0.27    0.03
+    95.0    0.00    0.06   -0.04   -0.19   -0.44   -0.63   -0.63   -0.38    0.05    0.47    0.70    0.61    0.23   -0.27   -0.65   -0.72   -0.51   -0.16    0.15
+   100.0    0.00    0.06    0.01   -0.17   -0.42   -0.61   -0.62   -0.39    0.03    0.50    0.79    0.80    0.50    0.05   -0.32   -0.43   -0.30   -0.20    0.33
+   105.0    0.00    0.06    0.01   -0.16   -0.40   -0.59   -0.62   -0.40    0.02    0.51    0.87    0.96    0.74    0.36    0.01   -0.14   -0.05    0.20    0.53
+   110.0    0.00    0.05    0.02   -0.15   -0.38   -0.58   -0.63   -0.43   -0.02    0.49    0.91    1.08    0.96    0.64    0.32    0.16    0.22    0.44    0.74
+   115.0    0.00    0.05    0.01   -0.14   -0.38   -0.59   -0.65   -0.48   -0.07    0.46    0.94    1.18    1.13    0.87    0.57    0.43    0.48    0.70    0.95
+   120.0    0.00    0.05    0.01   -0.15   -0.39   -0.60   -0.68   -0.54   -0.12    0.43    0.93    1.24    1.24    1.02    0.76    0.63    0.73    0.95    1.15
+   125.0    0.00    0.04   -0.03   -0.16   -0.40   -0.62   -0.72   -0.59   -0.19    0.38    0.91    1.26    1.31    1.12    0.88    0.78    0.93    1.18    1.34
+   130.0    0.00    0.04   -0.02   -0.17   -0.42   -0.66   -0.77   -0.65   -0.24    0.34    0.89    1.24    1.29    1.12    0.91    0.87    1.08    1.40    1.53
+   135.0    0.00    0.02   -0.03   -0.19   -0.45   -0.71   -0.82   -0.70   -0.29    0.29    0.85    1.20    1.23    1.05    0.86    0.87    1.18    1.59    1.72
+   140.0    0.00    0.02   -0.05   -0.23   -0.49   -0.75   -0.88   -0.75   -0.33    0.25    0.81    1.13    1.14    0.92    0.72    0.80    1.23    1.77    1.92
+   145.0    0.00    0.01   -0.07   -0.26   -0.54   -0.81   -0.93   -0.80   -0.37    0.22    0.76    1.04    0.99    0.74    0.54    0.69    1.23    1.92    2.13
+   150.0    0.00   -0.01   -0.11   -0.31   -0.59   -0.87   -0.99   -0.84   -0.39    0.20    0.71    0.95    0.84    0.52    0.32    0.52    1.20    2.03    2.34
+   155.0    0.00   -0.02   -0.14   -0.36   -0.65   -0.93   -1.03   -0.86   -0.41    0.18    0.66    0.84    0.68    0.31    0.09    0.36    1.14    2.11    2.54
+   160.0    0.00   -0.03   -0.17   -0.41   -0.72   -0.99   -1.08   -0.90   -0.42    0.16    0.62    0.76    0.52    0.11   -0.11    0.19    1.07    2.14    2.67
+   165.0    0.00   -0.05   -0.20   -0.46   -0.78   -1.04   -1.12   -0.92   -0.44    0.14    0.58    0.66    0.38   -0.05   -0.28    0.05    0.98    2.13    2.75
+   170.0    0.00   -0.06   -0.24   -0.51   -0.83   -1.11   -1.16   -0.94   -0.47    0.11    0.52    0.58    0.28   -0.17   -0.39   -0.06    0.87    2.05    2.70
+   175.0    0.00   -0.08   -0.27   -0.56   -0.89   -1.17   -1.21   -0.98   -0.49    0.08    0.47    0.52    0.20   -0.24   -0.47   -0.14    0.76    1.87    2.53
+   180.0    0.00   -0.09   -0.30   -0.62   -0.96   -1.22   -1.25   -1.01   -0.52    0.02    0.41    0.45    0.15   -0.27   -0.50   -0.21    0.61    1.63    2.22
+   185.0    0.00   -0.11   -0.34   -0.66   -1.01   -1.26   -1.31   -1.05   -0.58   -0.03    0.36    0.40    0.14   -0.26   -0.48   -0.26    0.45    1.32    1.78
+   190.0    0.00   -0.13   -0.38   -0.71   -1.06   -1.31   -1.35   -1.09   -0.63   -0.09    0.30    0.37    0.14   -0.23   -0.46   -0.29    0.27    0.95    1.26
+   195.0    0.00   -0.14   -0.40   -0.75   -1.11   -1.35   -1.38   -1.15   -0.69   -0.15    0.23    0.34    0.15   -0.19   -0.42   -0.34    0.07    0.56    0.70
+   200.0    0.00   -0.15   -0.42   -0.78   -1.14   -1.39   -1.43   -1.20   -0.74   -0.23    0.18    0.31    0.16   -0.16   -0.41   -0.41   -0.14    0.18    0.17
+   205.0    0.00   -0.17   -0.45   -0.81   -1.17   -1.43   -1.46   -1.24   -0.80   -0.28    0.13    0.28    0.16   -0.16   -0.43   -0.49   -0.34   -0.15   -0.28
+   210.0    0.00   -0.17   -0.46   -0.84   -1.21   -1.45   -1.49   -1.28   -0.86   -0.34    0.08    0.26    0.13   -0.18   -0.48   -0.61   -0.52   -0.38   -0.55
+   215.0    0.00   -0.18   -0.48   -0.87   -1.23   -1.48   -1.52   -1.32   -0.90   -0.39    0.05    0.23    0.11   -0.22   -0.58   -0.73   -0.65   -0.49   -0.62
+   220.0    0.00   -0.19   -0.50   -0.88   -1.24   -1.49   -1.56   -1.35   -0.94   -0.43    0.01    0.20    0.06   -0.30   -0.68   -0.86   -0.73   -0.46   -0.47
+   225.0    0.00   -0.19   -0.49   -0.88   -1.24   -1.50   -1.57   -1.39   -0.97   -0.46   -0.02    0.17    0.01   -0.38   -0.81   -0.97   -0.74   -0.28   -0.08
+   230.0    0.00   -0.19   -0.50   -0.88   -1.24   -1.50   -1.58   -1.41   -1.00   -0.49   -0.04    0.14   -0.04   -0.48   -0.92   -1.04   -0.67    0.03    0.48
+   235.0    0.00   -0.20   -0.50   -0.87   -1.23   -1.49   -1.59   -1.42   -1.03   -0.51   -0.06    0.10   -0.10   -0.57   -1.02   -1.08   -0.53    0.43    1.15
+   240.0    0.00   -0.20   -0.50   -0.86   -1.22   -1.47   -1.58   -1.43   -1.05   -0.53   -0.10    0.08   -0.15   -0.64   -1.08   -1.05   -0.35    0.89    1.86
+   245.0    0.00   -0.20   -0.49   -0.84   -1.19   -1.46   -1.56   -1.44   -1.06   -0.55   -0.12    0.05   -0.17   -0.67   -1.08   -0.98   -0.10    1.33    2.53
+   250.0    0.00   -0.20   -0.47   -0.82   -1.16   -1.43   -1.54   -1.43   -1.07   -0.57   -0.14    0.03   -0.19   -0.66   -1.03   -0.84    0.15    1.74    3.05
+   255.0    0.00   -0.18   -0.47   -0.80   -1.12   -1.39   -1.51   -1.42   -1.09   -0.60   -0.16    0.01   -0.17   -0.60   -0.91   -0.67    0.40    2.04    3.38
+   260.0    0.00   -0.18   -0.45   -0.75   -1.07   -1.34   -1.48   -1.40   -1.09   -0.61   -0.18    0.01   -0.12   -0.51   -0.76   -0.45    0.63    2.23    3.45
+   265.0    0.00   -0.18   -0.42   -0.72   -1.02   -1.29   -1.42   -1.36   -1.08   -0.62   -0.19    0.03   -0.07   -0.36   -0.56   -0.24    0.80    2.27    3.30
+   270.0    0.00   -0.17   -0.40   -0.67   -0.97   -1.21   -1.37   -1.32   -1.06   -0.62   -0.19    0.04    0.01   -0.21   -0.33   -0.01    0.92    2.18    2.93
+   275.0    0.00   -0.16   -0.38   -0.64   -0.91   -1.15   -1.30   -1.27   -1.01   -0.61   -0.18    0.08    0.10   -0.03   -0.11    0.20    1.00    2.00    2.41
+   280.0    0.00   -0.15   -0.36   -0.60   -0.85   -1.09   -1.23   -1.21   -0.98   -0.58   -0.16    0.13    0.22    0.13    0.12    0.38    1.01    1.73    1.82
+   285.0    0.00   -0.15   -0.34   -0.56   -0.79   -1.02   -1.16   -1.13   -0.92   -0.53   -0.13    0.18    0.31    0.29    0.30    0.53    1.01    1.45    1.26
+   290.0    0.00   -0.13   -0.31   -0.50   -0.74   -0.95   -1.08   -1.06   -0.85   -0.48   -0.08    0.26    0.41    0.43    0.47    0.65    0.99    1.20    0.79
+   295.0    0.00   -0.12   -0.28   -0.47   -0.69   -0.90   -1.01   -0.99   -0.78   -0.42   -0.01    0.32    0.49    0.54    0.59    0.74    0.98    1.04    0.50
+   300.0    0.00   -0.12   -0.25   -0.44   -0.65   -0.84   -0.95   -0.93   -0.71   -0.35    0.05    0.38    0.55    0.63    0.69    0.82    0.99    0.99    0.39
+   305.0    0.00   -0.10   -0.23   -0.40   -0.59   -0.79   -0.90   -0.85   -0.65   -0.29    0.11    0.43    0.60    0.68    0.74    0.88    1.04    1.04    0.50
+   310.0    0.00   -0.09   -0.21   -0.38   -0.56   -0.74   -0.85   -0.81   -0.60   -0.24    0.16    0.47    0.64    0.70    0.76    0.92    1.13    1.19    0.79
+   315.0    0.00   -0.09   -0.19   -0.35   -0.53   -0.71   -0.82   -0.77   -0.55   -0.18    0.21    0.49    0.64    0.69    0.75    0.96    1.25    1.43    1.22
+   320.0    0.00   -0.06   -0.17   -0.33   -0.50   -0.68   -0.79   -0.74   -0.51   -0.15    0.24    0.51    0.63    0.66    0.74    0.99    1.38    1.72    1.71
+   325.0    0.00   -0.05   -0.15   -0.30   -0.48   -0.65   -0.77   -0.71   -0.49   -0.12    0.25    0.50    0.61    0.61    0.70    1.00    1.51    2.01    2.19
+   330.0    0.00   -0.04   -0.14   -0.28   -0.46   -0.64   -0.75   -0.69   -0.47   -0.11    0.25    0.47    0.55    0.55    0.65    1.01    1.62    2.27    2.59
+   335.0    0.00   -0.04   -0.13   -0.26   -0.45   -0.62   -0.73   -0.68   -0.46   -0.10    0.23    0.44    0.47    0.46    0.57    0.99    1.70    2.46    2.85
+   340.0    0.00   -0.03   -0.11   -0.24   -0.42   -0.60   -0.70   -0.67   -0.44   -0.11    0.19    0.37    0.39    0.37    0.50    0.95    1.71    2.53    2.94
+   345.0    0.00   -0.02   -0.10   -0.23   -0.40   -0.58   -0.68   -0.64   -0.44   -0.12    0.16    0.31    0.30    0.25    0.40    0.87    1.68    2.51    2.87
+   350.0    0.00   -0.01   -0.10   -0.22   -0.40   -0.56   -0.65   -0.60   -0.42   -0.13    0.12    0.22    0.19    0.15    0.28    0.77    1.58    2.39    2.65
+   355.0    0.00   -0.02   -0.09   -0.22   -0.38   -0.54   -0.62   -0.56   -0.38   -0.14    0.08    0.14    0.08    0.01    0.15    0.66    1.45    2.20    2.33
+   360.0    0.00   -0.02   -0.08   -0.21   -0.38   -0.52   -0.58   -0.53   -0.35   -0.14    0.03    0.05   -0.04   -0.12    0.02    0.51    1.27    1.95    1.94
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+     -0.62      1.63     52.61                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.07   -0.25   -0.51   -0.79   -1.09   -1.40   -1.69   -1.87   -1.84   -1.48   -0.81    0.03    0.67    0.77    0.19   -0.83   -1.61   -1.21
+     0.0    0.00   -0.14   -0.42   -0.78   -1.14   -1.46   -1.68   -1.78   -1.75   -1.54   -1.13   -0.51    0.19    0.75    0.84    0.25   -1.01   -2.61   -3.89
+     5.0    0.00   -0.12   -0.38   -0.73   -1.10   -1.43   -1.65   -1.74   -1.68   -1.45   -1.02   -0.42    0.24    0.77    0.88    0.38   -0.77   -2.38   -3.99
+    10.0    0.00   -0.10   -0.33   -0.68   -1.05   -1.40   -1.63   -1.72   -1.64   -1.37   -0.92   -0.31    0.33    0.83    0.95    0.51   -0.54   -2.09   -3.90
+    15.0    0.00   -0.07   -0.29   -0.62   -1.01   -1.37   -1.63   -1.72   -1.63   -1.32   -0.82   -0.19    0.46    0.94    1.05    0.65   -0.31   -1.77   -3.60
+    20.0    0.00   -0.05   -0.25   -0.58   -0.97   -1.36   -1.64   -1.74   -1.64   -1.30   -0.75   -0.07    0.59    1.07    1.17    0.80   -0.09   -1.39   -3.11
+    25.0    0.00   -0.02   -0.20   -0.52   -0.93   -1.34   -1.64   -1.76   -1.66   -1.30   -0.71    0.01    0.70    1.20    1.31    0.95    0.15   -0.98   -2.45
+    30.0    0.00    0.11   -0.16   -0.47   -0.89   -1.31   -1.65   -1.79   -1.70   -1.33   -0.71    0.05    0.78    1.30    1.41    1.08    0.37   -0.57   -1.70
+    35.0    0.00    0.03   -0.11   -0.42   -0.85   -1.28   -1.64   -1.81   -1.74   -1.38   -0.75    0.03    0.80    1.34    1.48    1.18    0.57   -0.18   -0.93
+    40.0    0.00    0.05   -0.08   -0.37   -0.80   -1.24   -1.61   -1.82   -1.77   -1.44   -0.82   -0.04    0.75    1.32    1.48    1.23    0.70    0.13   -0.24
+    45.0    0.00    0.07   -0.03   -0.33   -0.74   -1.19   -1.58   -1.81   -1.79   -1.50   -0.92   -0.15    0.62    1.21    1.42    1.20    0.74    0.35    0.33
+    50.0    0.00    0.09    0.18   -0.28   -0.69   -1.14   -1.53   -1.77   -1.79   -1.55   -1.03   -0.31    0.45    1.03    1.27    1.09    0.69    0.42    0.72
+    55.0    0.00    0.10    0.03   -0.24   -0.64   -1.07   -1.46   -1.72   -1.77   -1.58   -1.13   -0.48    0.23    0.80    1.04    0.88    0.50    0.34    0.90
+    60.0    0.00    0.13    0.07   -0.18   -0.57   -1.01   -1.39   -1.66   -1.73   -1.60   -1.23   -0.66   -0.10    0.53    0.75    0.58    0.21    0.10    0.87
+    65.0    0.00    0.15    0.10   -0.14   -0.53   -0.95   -1.31   -1.57   -1.68   -1.60   -1.29   -0.79   -0.21    0.27    0.44    0.22   -0.19   -0.27    0.69
+    70.0    0.00    0.16    0.13   -0.11   -0.47   -0.88   -1.23   -1.50   -1.61   -1.55   -1.30   -0.87   -0.36    0.04    0.14   -0.17   -0.66   -0.75    0.37
+    75.0    0.00    0.17    0.15   -0.08   -0.43   -0.83   -1.17   -1.41   -1.53   -1.50   -1.28   -0.90   -0.44   -0.11   -0.13   -0.57   -1.17   -1.28   -0.03
+    80.0    0.00    0.19    0.16   -0.05   -0.39   -0.77   -1.11   -1.34   -1.46   -1.42   -1.22   -0.85   -0.45   -0.20   -0.34   -0.91   -1.64   -1.80   -0.45
+    85.0    0.00    0.19    0.18   -0.03   -0.36   -0.73   -1.04   -1.28   -1.38   -1.33   -1.12   -0.75   -0.37   -0.19   -0.44   -1.17   -2.05   -2.28   -0.86
+    90.0    0.00    0.20    0.20    0.10   -0.32   -0.68   -0.99   -1.22   -1.31   -1.24   -1.00   -0.61   -0.23   -0.10   -0.46   -1.32   -2.34   -2.67   -1.22
+    95.0    0.00    0.21    0.21    0.02   -0.30   -0.64   -0.96   -1.17   -1.26   -1.15   -0.87   -0.45   -0.04    0.06   -0.37   -1.36   -2.49   -2.92   -1.54
+   100.0    0.00    0.21    0.22    0.04   -0.26   -0.61   -0.91   -1.13   -1.20   -1.08   -0.76   -0.29    0.16    0.27   -0.19   -1.25   -2.48   -3.04   -1.81
+   105.0    0.00    0.20    0.22    0.06   -0.24   -0.57   -0.87   -1.08   -1.16   -1.03   -0.68   -0.14    0.34    0.51    0.06   -1.02   -2.33   -3.03   -2.07
+   110.0    0.00    0.21    0.22    0.06   -0.21   -0.53   -0.82   -1.04   -1.12   -1.00   -0.63   -0.07    0.49    0.72    0.34   -0.71   -2.06   -2.91   -2.31
+   115.0    0.00    0.21    0.22    0.07   -0.18   -0.49   -0.77   -0.99   -1.09   -0.98   -0.62   -0.03    0.57    0.90    0.64   -0.33   -1.70   -2.73   -2.54
+   120.0    0.00    0.20    0.21    0.08   -0.16   -0.44   -0.72   -0.96   -1.08   -1.00   -0.67   -0.07    0.60    1.04    0.91    0.05   -1.30   -2.51   -2.78
+   125.0    0.00    0.19    0.21    0.07   -0.15   -0.41   -0.68   -0.91   -1.07   -1.06   -0.75   -0.16    0.57    1.12    1.13    0.41   -0.90   -2.27   -3.00
+   130.0    0.00    0.18    0.19    0.08   -0.13   -0.37   -0.63   -0.90   -1.10   -1.12   -0.86   -0.28    0.48    1.13    1.30    0.71   -0.57   -2.08   -3.18
+   135.0    0.00    0.17    0.18    0.06   -0.13   -0.35   -0.62   -0.90   -1.13   -1.21   -1.00   -0.44    0.37    1.10    1.39    0.92   -0.32   -1.92   -3.28
+   140.0    0.00    0.15    0.16    0.05   -0.13   -0.34   -0.61   -0.90   -1.18   -1.31   -1.14   -0.60    0.24    1.05    1.42    1.03   -0.18   -1.83   -3.30
+   145.0    0.00    0.14    0.14    0.03   -0.14   -0.36   -0.63   -0.94   -1.26   -1.43   -1.28   -0.74    0.11    0.97    1.39    1.03   -0.16   -1.79   -3.19
+   150.0    0.00    0.12    0.11    0.01   -0.17   -0.38   -0.67   -1.01   -1.36   -1.54   -1.41   -0.86    0.01    0.88    1.31    0.95   -0.22   -1.79   -2.98
+   155.0    0.00    0.11    0.09   -0.03   -0.20   -0.43   -0.73   -1.09   -1.45   -1.66   -1.53   -0.97   -0.08    0.79    1.19    0.81   -0.37   -1.81   -2.65
+   160.0    0.00    0.09    0.05   -0.07   -0.25   -0.49   -0.80   -1.19   -1.57   -1.78   -1.63   -1.04   -0.16    0.70    1.07    0.62   -0.55   -1.85   -2.25
+   165.0    0.00    0.07    0.03   -0.11   -0.30   -0.55   -0.88   -1.28   -1.68   -1.88   -1.71   -1.12   -0.21    0.61    0.91    0.41   -0.76   -1.88   -1.81
+   170.0    0.00    0.05   -0.01   -0.15   -0.35   -0.61   -0.97   -1.38   -1.79   -1.98   -1.79   -1.19   -0.29    0.51    0.76    0.21   -0.92   -1.88   -1.41
+   175.0    0.00    0.03   -0.05   -0.20   -0.41   -0.68   -1.04   -1.48   -1.88   -2.07   -1.88   -1.26   -0.38    0.38    0.60    0.05   -1.05   -1.87   -1.08
+   180.0    0.00   -0.06   -0.10   -0.26   -0.47   -0.74   -1.12   -1.55   -1.95   -2.15   -1.97   -1.36   -0.50    0.25    0.46   -0.08   -1.12   -1.82   -0.88
+   185.0    0.00   -0.02   -0.13   -0.30   -0.53   -0.80   -1.17   -1.62   -2.02   -2.22   -2.06   -1.48   -0.64    0.09    0.33   -0.16   -1.12   -1.77   -0.82
+   190.0    0.00   -0.04   -0.18   -0.35   -0.57   -0.84   -1.22   -1.65   -2.06   -2.28   -2.15   -1.62   -0.81   -0.08    0.20   -0.18   -1.06   -1.69   -0.88
+   195.0    0.00   -0.06   -0.21   -0.40   -0.62   -0.90   -1.25   -1.68   -2.09   -2.34   -2.25   -1.77   -1.00   -0.24    0.11   -0.17   -0.95   -1.60   -1.05
+   200.0    0.00   -0.09   -0.25   -0.45   -0.68   -0.94   -1.29   -1.70   -2.13   -2.39   -2.36   -1.90   -1.15   -0.38    0.04   -0.12   -0.80   -1.49   -1.24
+   205.0    0.00   -0.11   -0.29   -0.50   -0.73   -0.98   -1.31   -1.74   -2.17   -2.45   -2.44   -2.02   -1.28   -0.49    0.02   -0.03   -0.63   -1.34   -1.39
+   210.0    0.00   -0.14   -0.33   -0.55   -0.77   -1.03   -1.36   -1.78   -2.20   -2.51   -2.50   -2.08   -1.34   -0.52    0.05    0.09   -0.44   -1.16   -1.42
+   215.0    0.00   -0.15   -0.38   -0.60   -0.83   -1.09   -1.42   -1.82   -2.27   -2.56   -2.53   -2.10   -1.33   -0.46    0.14    0.22   -0.25   -0.94   -1.28
+   220.0    0.00   -0.18   -0.41   -0.65   -0.88   -1.14   -1.48   -1.90   -2.33   -2.61   -2.54   -2.05   -1.22   -0.33    0.29    0.38   -0.06   -0.66   -0.92
+   225.0    0.00   -0.20   -0.45   -0.69   -0.93   -1.20   -1.56   -2.00   -2.41   -2.65   -2.51   -1.93   -1.04   -0.10    0.50    0.55    0.15   -0.34   -0.33
+   230.0    0.00   -0.22   -0.49   -0.74   -0.99   -1.27   -1.65   -2.09   -2.51   -2.69   -2.45   -1.76   -0.77    0.18    0.74    0.73    0.33    0.04    0.43
+   235.0    0.00   -0.24   -0.52   -0.78   -1.04   -1.34   -1.73   -2.19   -2.59   -2.70   -2.37   -1.56   -0.47    0.51    1.01    0.91    0.51    0.43    1.32
+   240.0    0.00   -0.25   -0.55   -0.83   -1.09   -1.40   -1.81   -2.28   -2.66   -2.71   -2.27   -1.33   -0.16    0.83    1.27    1.07    0.68    0.83    2.21
+   245.0    0.00   -0.27   -0.58   -0.86   -1.13   -1.46   -1.87   -2.35   -2.71   -2.70   -2.16   -1.12    0.13    1.13    1.49    1.22    0.81    1.15    3.03
+   250.0    0.00   -0.29   -0.60   -0.89   -1.17   -1.50   -1.92   -2.39   -2.72   -2.67   -2.06   -0.93    0.36    1.36    1.66    1.30    0.89    1.40    3.64
+   255.0    0.00   -0.30   -0.62   -0.92   -1.20   -1.52   -1.94   -2.39   -2.70   -2.61   -1.96   -0.79    0.53    1.51    1.76    1.34    0.91    1.50    3.97
+   260.0    0.00   -0.31   -0.64   -0.96   -1.22   -1.53   -1.92   -2.36   -2.64   -2.54   -1.88   -0.72    0.61    1.56    1.77    1.30    0.84    1.42    3.95
+   265.0    0.00   -0.32   -0.66   -0.97   -1.23   -1.52   -1.88   -2.29   -2.56   -2.46   -1.82   -0.68    0.60    1.51    1.70    1.18    0.66    1.17    3.60
+   270.0    0.00   -0.33   -0.68   -0.98   -1.24   -1.49   -1.83   -2.21   -2.46   -2.37   -1.76   -0.70    0.52    1.38    1.54    0.99    0.38    0.72    2.92
+   275.0    0.00   -0.34   -0.70   -0.99   -1.24   -1.48   -1.77   -2.11   -2.35   -2.28   -1.74   -0.75    0.39    1.20    1.31    0.71   -0.01    0.13    2.01
+   280.0    0.00   -0.34   -0.70   -1.01   -1.25   -1.46   -1.71   -2.02   -2.24   -2.20   -1.72   -0.81    0.24    1.00    1.06    0.39   -0.48   -0.61    0.96
+   285.0    0.00   -0.34   -0.71   -1.01   -1.25   -1.44   -1.66   -1.93   -2.15   -2.12   -1.71   -0.88    0.11    0.81    0.81    0.05   -1.01   -1.40   -0.13
+   290.0    0.00   -0.34   -0.72   -1.03   -1.25   -1.43   -1.63   -1.87   -2.08   -2.07   -1.69   -0.91    0.01    0.65    0.58   -0.30   -1.56   -2.21   -1.14
+   295.0    0.00   -0.34   -0.71   -1.03   -1.27   -1.43   -1.62   -1.84   -2.04   -2.04   -1.68   -0.95   -0.05    0.54    0.40   -0.62   -2.09   -2.96   -1.97
+   300.0    0.00   -0.33   -0.71   -1.04   -1.28   -1.45   -1.64   -1.85   -2.04   -2.02   -1.66   -0.92   -0.05    0.51    0.29   -0.87   -2.54   -3.60   -2.57
+   305.0    0.00   -0.33   -0.70   -1.04   -1.29   -1.47   -1.66   -1.87   -2.05   -2.03   -1.65   -0.90   -0.01    0.54    0.25   -1.07   -2.91   -4.08   -2.93
+   310.0    0.00   -0.32   -0.70   -1.04   -1.31   -1.51   -1.71   -1.92   -2.08   -2.04   -1.62   -0.84    0.07    0.61    0.27   -1.15   -3.15   -4.40   -3.05
+   315.0    0.00   -0.32   -0.69   -1.04   -1.32   -1.54   -1.75   -1.97   -2.12   -2.05   -1.60   -0.77    0.17    0.72    0.33   -1.17   -3.25   -4.53   -3.02
+   320.0    0.00   -0.30   -0.66   -1.02   -1.33   -1.57   -1.80   -2.02   -2.16   -2.06   -1.59   -0.72    0.26    0.83    0.44   -1.09   -3.22   -4.52   -2.87
+   325.0    0.00   -0.29   -0.65   -1.01   -1.33   -1.59   -1.83   -2.05   -2.18   -2.07   -1.56   -0.67    0.32    0.91    0.55   -0.95   -3.08   -4.37   -2.72
+   330.0    0.00   -0.27   -0.62   -0.99   -1.33   -1.61   -1.84   -2.06   -2.18   -2.05   -1.54   -0.65    0.35    0.97    0.66   -0.78   -2.84   -4.15   -2.63
+   335.0    0.00   -0.25   -0.60   -0.97   -1.31   -1.59   -1.85   -2.05   -2.15   -2.00   -1.50   -0.64    0.35    0.98    0.75   -0.58   -2.54   -3.88   -2.63
+   340.0    0.00   -0.23   -0.57   -0.94   -1.29   -1.59   -1.83   -2.01   -2.10   -1.94   -1.45   -0.63    0.31    0.95    0.79   -0.38   -2.21   -3.60   -2.77
+   345.0    0.00   -0.21   -0.54   -0.91   -1.26   -1.55   -1.80   -1.96   -2.02   -1.86   -1.39   -0.63    0.26    0.88    0.82   -0.19   -1.88   -3.33   -3.01
+   350.0    0.00   -0.19   -0.50   -0.87   -1.22   -1.53   -1.75   -1.90   -1.93   -1.76   -1.33   -0.62    0.21    0.82    0.83   -0.02   -1.57   -3.08   -3.32
+   355.0    0.00   -0.16   -0.46   -0.83   -1.18   -1.50   -1.71   -1.84   -1.84   -1.65   -1.23   -0.57    0.18    0.77    0.83    0.12   -1.27   -2.84   -3.64
+   360.0    0.00   -0.14   -0.42   -0.78   -1.14   -1.46   -1.68   -1.78   -1.75   -1.54   -1.13   -0.51    0.19    0.75    0.84    0.25   -1.01   -2.61   -3.89
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TRM41249.00     NONE                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH              42    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+Number of Calibrated Antennas GPS:      042                 COMMENT             
+Number of Individual Calibrations GPS:  116                 COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.28      0.49     55.91                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.09   -0.34   -0.73   -1.22   -1.76   -2.31   -2.83   -3.26   -3.54   -3.60   -3.41   -2.95   -2.24   -1.30   -0.06    1.56    3.72    6.47
+     0.0    0.00   -0.10   -0.36   -0.75   -1.22   -1.76   -2.32   -2.85   -3.30   -3.59   -3.67   -3.48   -3.03   -2.34   -1.43   -0.25    1.29    3.35    5.99
+     5.0    0.00   -0.10   -0.36   -0.75   -1.23   -1.76   -2.32   -2.85   -3.30   -3.61   -3.69   -3.51   -3.07   -2.38   -1.46   -0.27    1.28    3.33    5.93
+    10.0    0.00   -0.10   -0.36   -0.75   -1.23   -1.76   -2.32   -2.85   -3.30   -3.61   -3.70   -3.54   -3.10   -2.41   -1.47   -0.26    1.30    3.34    5.91
+    15.0    0.00   -0.10   -0.36   -0.75   -1.23   -1.76   -2.32   -2.85   -3.30   -3.60   -3.70   -3.54   -3.11   -2.41   -1.46   -0.23    1.35    3.39    5.95
+    20.0    0.00   -0.10   -0.36   -0.75   -1.23   -1.76   -2.31   -2.84   -3.28   -3.59   -3.68   -3.53   -3.09   -2.39   -1.43   -0.19    1.42    3.48    6.04
+    25.0    0.00   -0.10   -0.36   -0.75   -1.23   -1.77   -2.31   -2.82   -3.26   -3.56   -3.65   -3.50   -3.07   -2.37   -1.40   -0.13    1.50    3.59    6.17
+    30.0    0.00   -0.10   -0.36   -0.76   -1.24   -1.77   -2.31   -2.81   -3.23   -3.52   -3.61   -3.45   -3.03   -2.33   -1.35   -0.07    1.58    3.70    6.32
+    35.0    0.00   -0.10   -0.36   -0.76   -1.24   -1.77   -2.30   -2.80   -3.21   -3.48   -3.56   -3.40   -2.98   -2.28   -1.31   -0.02    1.66    3.81    6.48
+    40.0    0.00   -0.10   -0.36   -0.76   -1.25   -1.77   -2.30   -2.79   -3.18   -3.45   -3.52   -3.36   -2.93   -2.24   -1.27    0.02    1.71    3.91    6.63
+    45.0    0.00   -0.10   -0.36   -0.76   -1.25   -1.78   -2.30   -2.78   -3.17   -3.42   -3.48   -3.31   -2.89   -2.21   -1.25    0.04    1.75    3.97    6.74
+    50.0    0.00   -0.10   -0.36   -0.77   -1.25   -1.78   -2.30   -2.78   -3.16   -3.40   -3.45   -3.28   -2.86   -2.19   -1.23    0.05    1.75    3.99    6.80
+    55.0    0.00   -0.10   -0.36   -0.77   -1.26   -1.79   -2.31   -2.78   -3.16   -3.39   -3.44   -3.26   -2.84   -2.18   -1.24    0.03    1.73    3.97    6.81
+    60.0    0.00   -0.10   -0.36   -0.77   -1.26   -1.79   -2.32   -2.79   -3.17   -3.40   -3.44   -3.26   -2.84   -2.18   -1.26   -0.01    1.67    3.91    6.75
+    65.0    0.00   -0.10   -0.36   -0.77   -1.27   -1.80   -2.33   -2.81   -3.19   -3.42   -3.46   -3.28   -2.86   -2.20   -1.29   -0.07    1.59    3.81    6.63
+    70.0    0.00   -0.10   -0.36   -0.77   -1.27   -1.81   -2.34   -2.83   -3.21   -3.45   -3.49   -3.30   -2.88   -2.23   -1.34   -0.13    1.50    3.68    6.46
+    75.0    0.00   -0.09   -0.36   -0.77   -1.27   -1.81   -2.35   -2.84   -3.24   -3.48   -3.52   -3.34   -2.92   -2.27   -1.39   -0.20    1.39    3.54    6.27
+    80.0    0.00   -0.09   -0.36   -0.77   -1.27   -1.81   -2.36   -2.86   -3.26   -3.51   -3.56   -3.37   -2.95   -2.31   -1.43   -0.28    1.29    3.39    6.07
+    85.0    0.00   -0.09   -0.36   -0.76   -1.26   -1.81   -2.36   -2.87   -3.28   -3.54   -3.59   -3.41   -2.99   -2.34   -1.48   -0.34    1.20    3.27    5.90
+    90.0    0.00   -0.09   -0.35   -0.76   -1.26   -1.81   -2.36   -2.88   -3.30   -3.56   -3.62   -3.43   -3.01   -2.37   -1.51   -0.38    1.13    3.17    5.77
+    95.0    0.00   -0.09   -0.35   -0.75   -1.25   -1.80   -2.36   -2.88   -3.30   -3.57   -3.63   -3.44   -3.02   -2.38   -1.53   -0.41    1.10    3.12    5.70
+   100.0    0.00   -0.09   -0.35   -0.75   -1.24   -1.79   -2.35   -2.87   -3.29   -3.56   -3.62   -3.44   -3.01   -2.37   -1.52   -0.40    1.10    3.13    5.70
+   105.0    0.00   -0.09   -0.34   -0.74   -1.23   -1.78   -2.33   -2.85   -3.27   -3.54   -3.60   -3.42   -2.99   -2.35   -1.49   -0.37    1.14    3.18    5.77
+   110.0    0.00   -0.09   -0.34   -0.73   -1.22   -1.76   -2.31   -2.83   -3.25   -3.52   -3.57   -3.39   -2.96   -2.31   -1.45   -0.31    1.21    3.28    5.90
+   115.0    0.00   -0.08   -0.34   -0.73   -1.21   -1.75   -2.29   -2.80   -3.22   -3.48   -3.54   -3.35   -2.91   -2.26   -1.38   -0.23    1.32    3.41    6.07
+   120.0    0.00   -0.08   -0.33   -0.72   -1.20   -1.73   -2.27   -2.78   -3.19   -3.45   -3.50   -3.30   -2.86   -2.20   -1.31   -0.14    1.44    3.56    6.27
+   125.0    0.00   -0.08   -0.33   -0.72   -1.19   -1.72   -2.26   -2.76   -3.16   -3.42   -3.46   -3.26   -2.81   -2.13   -1.23   -0.04    1.56    3.71    6.46
+   130.0    0.00   -0.08   -0.33   -0.71   -1.19   -1.71   -2.24   -2.74   -3.14   -3.39   -3.43   -3.23   -2.77   -2.08   -1.16    0.05    1.67    3.85    6.63
+   135.0    0.00   -0.08   -0.32   -0.71   -1.18   -1.70   -2.23   -2.73   -3.13   -3.38   -3.42   -3.20   -2.74   -2.03   -1.10    0.13    1.76    3.95    6.75
+   140.0    0.00   -0.08   -0.32   -0.70   -1.18   -1.70   -2.23   -2.73   -3.13   -3.38   -3.42   -3.20   -2.72   -2.01   -1.06    0.17    1.81    4.00    6.81
+   145.0    0.00   -0.08   -0.32   -0.70   -1.17   -1.70   -2.23   -2.73   -3.14   -3.39   -3.43   -3.21   -2.73   -2.00   -1.05    0.19    1.82    4.00    6.82
+   150.0    0.00   -0.08   -0.32   -0.70   -1.17   -1.70   -2.23   -2.74   -3.15   -3.41   -3.45   -3.24   -2.75   -2.03   -1.07    0.17    1.79    3.96    6.76
+   155.0    0.00   -0.08   -0.32   -0.70   -1.17   -1.70   -2.24   -2.75   -3.17   -3.44   -3.49   -3.28   -2.80   -2.07   -1.11    0.12    1.72    3.87    6.66
+   160.0    0.00   -0.07   -0.32   -0.69   -1.17   -1.70   -2.25   -2.76   -3.19   -3.47   -3.53   -3.33   -2.86   -2.14   -1.18    0.03    1.63    3.76    6.54
+   165.0    0.00   -0.07   -0.31   -0.69   -1.17   -1.71   -2.26   -2.78   -3.22   -3.50   -3.57   -3.38   -2.92   -2.22   -1.27   -0.06    1.52    3.64    6.41
+   170.0    0.00   -0.07   -0.31   -0.69   -1.17   -1.71   -2.27   -2.79   -3.24   -3.53   -3.62   -3.44   -2.99   -2.30   -1.36   -0.16    1.42    3.53    6.29
+   175.0    0.00   -0.07   -0.31   -0.69   -1.17   -1.71   -2.27   -2.81   -3.26   -3.56   -3.65   -3.49   -3.06   -2.37   -1.45   -0.25    1.33    3.44    6.21
+   180.0    0.00   -0.07   -0.31   -0.69   -1.17   -1.72   -2.28   -2.81   -3.27   -3.58   -3.68   -3.53   -3.11   -2.44   -1.52   -0.32    1.27    3.39    6.17
+   185.0    0.00   -0.07   -0.31   -0.69   -1.17   -1.72   -2.28   -2.82   -3.28   -3.60   -3.71   -3.56   -3.15   -2.48   -1.56   -0.35    1.25    3.39    6.18
+   190.0    0.00   -0.07   -0.31   -0.69   -1.18   -1.72   -2.28   -2.83   -3.29   -3.61   -3.72   -3.57   -3.16   -2.50   -1.57   -0.35    1.27    3.44    6.25
+   195.0    0.00   -0.07   -0.32   -0.70   -1.18   -1.72   -2.29   -2.83   -3.29   -3.61   -3.72   -3.57   -3.16   -2.48   -1.55   -0.31    1.34    3.53    6.34
+   200.0    0.00   -0.08   -0.32   -0.70   -1.18   -1.72   -2.29   -2.83   -3.29   -3.61   -3.71   -3.56   -3.13   -2.44   -1.49   -0.23    1.44    3.65    6.47
+   205.0    0.00   -0.08   -0.32   -0.70   -1.18   -1.72   -2.29   -2.83   -3.29   -3.60   -3.70   -3.53   -3.09   -2.38   -1.41   -0.13    1.55    3.78    6.60
+   210.0    0.00   -0.08   -0.32   -0.70   -1.18   -1.73   -2.29   -2.83   -3.29   -3.60   -3.68   -3.50   -3.04   -2.31   -1.32   -0.02    1.67    3.90    6.72
+   215.0    0.00   -0.08   -0.32   -0.70   -1.18   -1.73   -2.30   -2.84   -3.29   -3.59   -3.66   -3.46   -2.98   -2.23   -1.22    0.08    1.78    4.00    6.81
+   220.0    0.00   -0.08   -0.32   -0.71   -1.19   -1.73   -2.30   -2.84   -3.29   -3.58   -3.64   -3.42   -2.92   -2.15   -1.14    0.16    1.86    4.07    6.86
+   225.0    0.00   -0.08   -0.33   -0.71   -1.19   -1.74   -2.30   -2.84   -3.29   -3.57   -3.62   -3.38   -2.87   -2.09   -1.08    0.21    1.89    4.09    6.87
+   230.0    0.00   -0.08   -0.33   -0.71   -1.20   -1.74   -2.31   -2.84   -3.29   -3.57   -3.60   -3.36   -2.83   -2.06   -1.05    0.22    1.88    4.06    6.84
+   235.0    0.00   -0.08   -0.33   -0.72   -1.20   -1.74   -2.31   -2.85   -3.29   -3.56   -3.59   -3.34   -2.82   -2.05   -1.06    0.19    1.82    3.98    6.78
+   240.0    0.00   -0.08   -0.33   -0.72   -1.20   -1.75   -2.31   -2.85   -3.29   -3.56   -3.59   -3.34   -2.82   -2.07   -1.11    0.11    1.72    3.87    6.69
+   245.0    0.00   -0.09   -0.34   -0.72   -1.21   -1.75   -2.31   -2.85   -3.29   -3.56   -3.59   -3.35   -2.85   -2.12   -1.18    0.01    1.59    3.74    6.58
+   250.0    0.00   -0.09   -0.34   -0.73   -1.21   -1.75   -2.31   -2.85   -3.28   -3.56   -3.60   -3.38   -2.90   -2.19   -1.28   -0.11    1.45    3.61    6.48
+   255.0    0.00   -0.09   -0.34   -0.73   -1.22   -1.76   -2.32   -2.85   -3.29   -3.57   -3.62   -3.41   -2.95   -2.27   -1.38   -0.23    1.32    3.49    6.40
+   260.0    0.00   -0.09   -0.35   -0.74   -1.22   -1.76   -2.32   -2.85   -3.29   -3.58   -3.64   -3.46   -3.02   -2.35   -1.48   -0.34    1.22    3.40    6.34
+   265.0    0.00   -0.09   -0.35   -0.74   -1.23   -1.76   -2.32   -2.85   -3.29   -3.59   -3.67   -3.50   -3.08   -2.43   -1.56   -0.42    1.15    3.36    6.31
+   270.0    0.00   -0.09   -0.35   -0.74   -1.23   -1.77   -2.32   -2.85   -3.30   -3.60   -3.70   -3.54   -3.13   -2.49   -1.61   -0.45    1.14    3.36    6.33
+   275.0    0.00   -0.09   -0.35   -0.75   -1.23   -1.77   -2.32   -2.85   -3.31   -3.62   -3.72   -3.58   -3.17   -2.52   -1.63   -0.44    1.18    3.41    6.37
+   280.0    0.00   -0.09   -0.36   -0.75   -1.24   -1.77   -2.33   -2.86   -3.32   -3.63   -3.74   -3.60   -3.18   -2.52   -1.61   -0.39    1.26    3.51    6.45
+   285.0    0.00   -0.10   -0.36   -0.75   -1.24   -1.78   -2.33   -2.87   -3.32   -3.64   -3.75   -3.60   -3.18   -2.49   -1.55   -0.30    1.38    3.64    6.55
+   290.0    0.00   -0.10   -0.36   -0.75   -1.24   -1.78   -2.34   -2.87   -3.33   -3.65   -3.75   -3.59   -3.15   -2.44   -1.46   -0.18    1.53    3.79    6.66
+   295.0    0.00   -0.10   -0.36   -0.76   -1.24   -1.78   -2.34   -2.87   -3.33   -3.65   -3.74   -3.57   -3.10   -2.36   -1.36   -0.04    1.68    3.94    6.77
+   300.0    0.00   -0.10   -0.36   -0.76   -1.24   -1.78   -2.34   -2.87   -3.33   -3.64   -3.72   -3.53   -3.04   -2.28   -1.25    0.09    1.82    4.08    6.87
+   305.0    0.00   -0.10   -0.36   -0.76   -1.24   -1.78   -2.34   -2.87   -3.32   -3.62   -3.69   -3.48   -2.97   -2.19   -1.14    0.20    1.94    4.18    6.96
+   310.0    0.00   -0.10   -0.36   -0.76   -1.24   -1.78   -2.34   -2.87   -3.31   -3.60   -3.65   -3.42   -2.90   -2.11   -1.06    0.29    2.02    4.25    7.01
+   315.0    0.00   -0.10   -0.36   -0.76   -1.24   -1.78   -2.34   -2.86   -3.30   -3.58   -3.62   -3.37   -2.84   -2.04   -1.00    0.33    2.05    4.27    7.03
+   320.0    0.00   -0.10   -0.36   -0.75   -1.24   -1.78   -2.33   -2.86   -3.29   -3.55   -3.58   -3.33   -2.79   -2.00   -0.97    0.34    2.03    4.25    7.01
+   325.0    0.00   -0.10   -0.36   -0.75   -1.24   -1.77   -2.33   -2.85   -3.28   -3.54   -3.56   -3.30   -2.76   -1.98   -0.97    0.31    1.98    4.18    6.95
+   330.0    0.00   -0.10   -0.36   -0.75   -1.23   -1.77   -2.32   -2.84   -3.27   -3.52   -3.54   -3.28   -2.76   -1.99   -1.01    0.24    1.88    4.07    6.85
+   335.0    0.00   -0.10   -0.36   -0.75   -1.23   -1.77   -2.32   -2.84   -3.27   -3.52   -3.54   -3.29   -2.77   -2.03   -1.07    0.15    1.77    3.94    6.72
+   340.0    0.00   -0.10   -0.36   -0.75   -1.23   -1.76   -2.32   -2.84   -3.27   -3.52   -3.55   -3.31   -2.81   -2.08   -1.14    0.05    1.64    3.79    6.56
+   345.0    0.00   -0.10   -0.36   -0.75   -1.23   -1.76   -2.32   -2.84   -3.27   -3.54   -3.57   -3.34   -2.86   -2.15   -1.23   -0.05    1.52    3.65    6.40
+   350.0    0.00   -0.10   -0.36   -0.75   -1.23   -1.76   -2.32   -2.84   -3.28   -3.56   -3.60   -3.39   -2.91   -2.22   -1.31   -0.14    1.42    3.52    6.24
+   355.0    0.00   -0.10   -0.36   -0.75   -1.22   -1.76   -2.32   -2.85   -3.29   -3.58   -3.64   -3.43   -2.97   -2.28   -1.38   -0.21    1.34    3.42    6.10
+   360.0    0.00   -0.10   -0.36   -0.75   -1.22   -1.76   -2.32   -2.85   -3.30   -3.59   -3.67   -3.48   -3.03   -2.34   -1.43   -0.25    1.29    3.35    5.99
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.15      0.46     58.00                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.11   -0.43   -0.87   -1.38   -1.89   -2.42   -2.94   -3.44   -3.84   -3.99   -3.79   -3.18   -2.23   -1.05    0.26    1.73    3.56    5.99
+     0.0    0.00   -0.15   -0.51   -1.00   -1.55   -2.09   -2.60   -3.08   -3.53   -3.88   -4.03   -3.87   -3.35   -2.49   -1.36   -0.05    1.44    3.24    5.52
+     5.0    0.00   -0.15   -0.51   -1.00   -1.55   -2.09   -2.61   -3.10   -3.55   -3.91   -4.07   -3.92   -3.41   -2.54   -1.41   -0.09    1.41    3.21    5.46
+    10.0    0.00   -0.15   -0.50   -1.00   -1.55   -2.10   -2.63   -3.12   -3.58   -3.94   -4.10   -3.96   -3.44   -2.58   -1.44   -0.11    1.39    3.18    5.42
+    15.0    0.00   -0.15   -0.50   -1.00   -1.56   -2.11   -2.64   -3.14   -3.60   -3.97   -4.13   -3.98   -3.46   -2.59   -1.45   -0.12    1.38    3.17    5.39
+    20.0    0.00   -0.14   -0.50   -1.00   -1.56   -2.12   -2.65   -3.16   -3.63   -3.99   -4.15   -4.00   -3.47   -2.59   -1.44   -0.11    1.39    3.17    5.40
+    25.0    0.00   -0.14   -0.50   -0.99   -1.56   -2.12   -2.67   -3.18   -3.65   -4.01   -4.16   -4.00   -3.46   -2.57   -1.41   -0.08    1.42    3.20    5.44
+    30.0    0.00   -0.14   -0.49   -0.99   -1.56   -2.13   -2.68   -3.20   -3.67   -4.03   -4.17   -3.99   -3.44   -2.53   -1.36   -0.03    1.47    3.25    5.51
+    35.0    0.00   -0.14   -0.49   -0.98   -1.55   -2.13   -2.68   -3.21   -3.68   -4.04   -4.18   -3.98   -3.41   -2.48   -1.30    0.04    1.54    3.34    5.63
+    40.0    0.00   -0.14   -0.48   -0.98   -1.54   -2.12   -2.68   -3.21   -3.69   -4.05   -4.18   -3.97   -3.38   -2.43   -1.23    0.12    1.64    3.44    5.78
+    45.0    0.00   -0.13   -0.48   -0.97   -1.53   -2.11   -2.67   -3.21   -3.69   -4.05   -4.17   -3.96   -3.35   -2.38   -1.16    0.21    1.74    3.57    5.95
+    50.0    0.00   -0.13   -0.47   -0.96   -1.52   -2.09   -2.65   -3.19   -3.68   -4.04   -4.17   -3.95   -3.33   -2.34   -1.10    0.30    1.85    3.71    6.14
+    55.0    0.00   -0.13   -0.46   -0.95   -1.50   -2.07   -2.63   -3.17   -3.66   -4.03   -4.16   -3.94   -3.31   -2.30   -1.04    0.38    1.96    3.85    6.33
+    60.0    0.00   -0.12   -0.45   -0.93   -1.48   -2.04   -2.60   -3.14   -3.64   -4.01   -4.15   -3.93   -3.29   -2.28   -0.99    0.45    2.05    3.98    6.51
+    65.0    0.00   -0.12   -0.45   -0.92   -1.46   -2.02   -2.57   -3.10   -3.61   -3.99   -4.14   -3.92   -3.29   -2.26   -0.96    0.50    2.12    4.08    6.67
+    70.0    0.00   -0.12   -0.44   -0.91   -1.44   -1.98   -2.53   -3.06   -3.57   -3.96   -4.12   -3.91   -3.28   -2.25   -0.94    0.53    2.17    4.15    6.78
+    75.0    0.00   -0.11   -0.43   -0.89   -1.42   -1.95   -2.49   -3.02   -3.53   -3.93   -4.10   -3.90   -3.27   -2.24   -0.93    0.54    2.18    4.19    6.85
+    80.0    0.00   -0.11   -0.42   -0.88   -1.39   -1.92   -2.45   -2.98   -3.49   -3.90   -4.07   -3.88   -3.25   -2.23   -0.93    0.53    2.17    4.18    6.86
+    85.0    0.00   -0.11   -0.42   -0.86   -1.37   -1.89   -2.41   -2.94   -3.45   -3.86   -4.04   -3.85   -3.23   -2.22   -0.93    0.51    2.14    4.14    6.83
+    90.0    0.00   -0.10   -0.41   -0.85   -1.35   -1.87   -2.38   -2.90   -3.41   -3.82   -4.00   -3.82   -3.20   -2.19   -0.93    0.49    2.09    4.08    6.76
+    95.0    0.00   -0.10   -0.40   -0.84   -1.34   -1.84   -2.35   -2.87   -3.38   -3.79   -3.96   -3.78   -3.16   -2.17   -0.92    0.47    2.04    4.00    6.65
+   100.0    0.00   -0.10   -0.40   -0.83   -1.32   -1.82   -2.33   -2.84   -3.35   -3.75   -3.92   -3.73   -3.12   -2.13   -0.91    0.46    1.99    3.91    6.53
+   105.0    0.00   -0.09   -0.39   -0.82   -1.31   -1.81   -2.31   -2.82   -3.32   -3.72   -3.89   -3.69   -3.07   -2.09   -0.88    0.45    1.95    3.84    6.41
+   110.0    0.00   -0.09   -0.39   -0.81   -1.30   -1.79   -2.29   -2.81   -3.30   -3.70   -3.85   -3.64   -3.02   -2.05   -0.86    0.46    1.94    3.79    6.30
+   115.0    0.00   -0.09   -0.38   -0.80   -1.29   -1.78   -2.28   -2.79   -3.29   -3.68   -3.82   -3.61   -2.99   -2.01   -0.82    0.48    1.94    3.76    6.21
+   120.0    0.00   -0.09   -0.38   -0.80   -1.28   -1.77   -2.27   -2.79   -3.28   -3.66   -3.81   -3.59   -2.96   -1.99   -0.80    0.51    1.95    3.75    6.16
+   125.0    0.00   -0.09   -0.37   -0.79   -1.27   -1.77   -2.27   -2.78   -3.27   -3.66   -3.80   -3.58   -2.95   -1.97   -0.77    0.53    1.98    3.77    6.14
+   130.0    0.00   -0.08   -0.37   -0.79   -1.27   -1.76   -2.26   -2.78   -3.27   -3.66   -3.80   -3.58   -2.95   -1.96   -0.76    0.56    2.02    3.80    6.15
+   135.0    0.00   -0.08   -0.37   -0.78   -1.26   -1.76   -2.26   -2.78   -3.28   -3.67   -3.81   -3.59   -2.96   -1.97   -0.76    0.58    2.05    3.84    6.18
+   140.0    0.00   -0.08   -0.36   -0.78   -1.26   -1.75   -2.26   -2.78   -3.29   -3.68   -3.84   -3.62   -2.99   -1.99   -0.77    0.58    2.07    3.87    6.21
+   145.0    0.00   -0.08   -0.36   -0.78   -1.25   -1.75   -2.26   -2.79   -3.30   -3.70   -3.86   -3.65   -3.02   -2.02   -0.79    0.57    2.07    3.88    6.24
+   150.0    0.00   -0.08   -0.36   -0.77   -1.25   -1.75   -2.26   -2.79   -3.31   -3.73   -3.89   -3.69   -3.06   -2.06   -0.82    0.54    2.04    3.87    6.26
+   155.0    0.00   -0.08   -0.36   -0.77   -1.25   -1.74   -2.26   -2.80   -3.33   -3.75   -3.93   -3.73   -3.10   -2.10   -0.87    0.49    1.99    3.82    6.24
+   160.0    0.00   -0.08   -0.36   -0.77   -1.24   -1.74   -2.26   -2.80   -3.34   -3.77   -3.95   -3.76   -3.14   -2.14   -0.92    0.43    1.92    3.75    6.20
+   165.0    0.00   -0.08   -0.36   -0.77   -1.24   -1.74   -2.26   -2.81   -3.35   -3.79   -3.98   -3.79   -3.17   -2.18   -0.97    0.36    1.82    3.64    6.11
+   170.0    0.00   -0.08   -0.36   -0.77   -1.24   -1.73   -2.26   -2.81   -3.36   -3.81   -4.00   -3.82   -3.20   -2.23   -1.03    0.28    1.72    3.52    6.00
+   175.0    0.00   -0.08   -0.36   -0.77   -1.23   -1.73   -2.26   -2.82   -3.37   -3.82   -4.02   -3.84   -3.23   -2.26   -1.08    0.20    1.61    3.38    5.86
+   180.0    0.00   -0.08   -0.36   -0.77   -1.23   -1.73   -2.26   -2.82   -3.37   -3.83   -4.03   -3.86   -3.26   -2.30   -1.14    0.11    1.50    3.24    5.71
+   185.0    0.00   -0.08   -0.36   -0.77   -1.23   -1.73   -2.25   -2.82   -3.37   -3.83   -4.04   -3.87   -3.29   -2.35   -1.20    0.04    1.40    3.12    5.57
+   190.0    0.00   -0.08   -0.36   -0.77   -1.23   -1.73   -2.25   -2.82   -3.38   -3.84   -4.05   -3.89   -3.32   -2.39   -1.26   -0.04    1.31    3.02    5.44
+   195.0    0.00   -0.08   -0.36   -0.77   -1.24   -1.73   -2.25   -2.82   -3.38   -3.84   -4.06   -3.92   -3.35   -2.44   -1.32   -0.10    1.25    2.95    5.35
+   200.0    0.00   -0.09   -0.37   -0.77   -1.24   -1.73   -2.26   -2.82   -3.38   -3.84   -4.07   -3.94   -3.40   -2.50   -1.38   -0.16    1.20    2.90    5.28
+   205.0    0.00   -0.09   -0.37   -0.78   -1.24   -1.74   -2.26   -2.82   -3.38   -3.85   -4.09   -3.97   -3.44   -2.55   -1.44   -0.21    1.17    2.90    5.27
+   210.0    0.00   -0.09   -0.37   -0.78   -1.25   -1.74   -2.27   -2.83   -3.39   -3.86   -4.11   -4.00   -3.48   -2.61   -1.49   -0.24    1.16    2.91    5.29
+   215.0    0.00   -0.09   -0.38   -0.79   -1.26   -1.75   -2.28   -2.84   -3.40   -3.88   -4.13   -4.03   -3.52   -2.65   -1.54   -0.27    1.17    2.96    5.35
+   220.0    0.00   -0.09   -0.38   -0.79   -1.26   -1.76   -2.29   -2.85   -3.42   -3.90   -4.15   -4.05   -3.55   -2.68   -1.56   -0.28    1.19    3.02    5.45
+   225.0    0.00   -0.10   -0.38   -0.80   -1.27   -1.77   -2.31   -2.87   -3.44   -3.91   -4.17   -4.07   -3.56   -2.70   -1.57   -0.27    1.23    3.10    5.56
+   230.0    0.00   -0.10   -0.39   -0.80   -1.28   -1.78   -2.32   -2.89   -3.46   -3.93   -4.18   -4.07   -3.56   -2.69   -1.56   -0.24    1.28    3.19    5.69
+   235.0    0.00   -0.10   -0.39   -0.81   -1.29   -1.80   -2.33   -2.91   -3.48   -3.95   -4.18   -4.07   -3.54   -2.66   -1.51   -0.19    1.35    3.28    5.82
+   240.0    0.00   -0.10   -0.40   -0.82   -1.30   -1.81   -2.35   -2.92   -3.49   -3.95   -4.18   -4.04   -3.50   -2.60   -1.45   -0.12    1.42    3.37    5.94
+   245.0    0.00   -0.11   -0.40   -0.82   -1.30   -1.81   -2.36   -2.93   -3.50   -3.96   -4.16   -4.01   -3.44   -2.51   -1.35   -0.03    1.51    3.47    6.05
+   250.0    0.00   -0.11   -0.41   -0.83   -1.31   -1.82   -2.36   -2.94   -3.50   -3.95   -4.14   -3.96   -3.36   -2.41   -1.24    0.08    1.61    3.56    6.15
+   255.0    0.00   -0.11   -0.41   -0.84   -1.32   -1.83   -2.37   -2.94   -3.49   -3.93   -4.10   -3.89   -3.27   -2.30   -1.11    0.21    1.72    3.64    6.22
+   260.0    0.00   -0.12   -0.42   -0.84   -1.32   -1.83   -2.37   -2.93   -3.48   -3.90   -4.06   -3.83   -3.17   -2.18   -0.98    0.34    1.83    3.72    6.27
+   265.0    0.00   -0.12   -0.42   -0.85   -1.33   -1.83   -2.36   -2.92   -3.46   -3.87   -4.01   -3.75   -3.08   -2.06   -0.85    0.46    1.93    3.79    6.31
+   270.0    0.00   -0.12   -0.43   -0.86   -1.34   -1.84   -2.36   -2.90   -3.43   -3.83   -3.95   -3.68   -2.98   -1.95   -0.73    0.58    2.03    3.86    6.33
+   275.0    0.00   -0.12   -0.44   -0.87   -1.34   -1.84   -2.35   -2.89   -3.40   -3.79   -3.89   -3.61   -2.90   -1.86   -0.64    0.67    2.11    3.90    6.34
+   280.0    0.00   -0.13   -0.44   -0.87   -1.35   -1.84   -2.35   -2.87   -3.37   -3.74   -3.84   -3.55   -2.83   -1.79   -0.56    0.74    2.16    3.93    6.33
+   285.0    0.00   -0.13   -0.45   -0.88   -1.36   -1.85   -2.35   -2.86   -3.35   -3.70   -3.79   -3.49   -2.78   -1.73   -0.51    0.78    2.19    3.94    6.32
+   290.0    0.00   -0.13   -0.45   -0.89   -1.37   -1.86   -2.35   -2.85   -3.33   -3.67   -3.75   -3.45   -2.74   -1.70   -0.49    0.79    2.19    3.94    6.30
+   295.0    0.00   -0.13   -0.46   -0.90   -1.39   -1.88   -2.36   -2.85   -3.31   -3.64   -3.71   -3.41   -2.71   -1.69   -0.50    0.77    2.16    3.91    6.28
+   300.0    0.00   -0.14   -0.47   -0.91   -1.40   -1.89   -2.38   -2.86   -3.31   -3.63   -3.69   -3.39   -2.70   -1.70   -0.53    0.72    2.11    3.86    6.24
+   305.0    0.00   -0.14   -0.47   -0.92   -1.42   -1.91   -2.40   -2.87   -3.31   -3.62   -3.68   -3.38   -2.70   -1.72   -0.57    0.66    2.05    3.80    6.21
+   310.0    0.00   -0.14   -0.48   -0.93   -1.43   -1.93   -2.42   -2.89   -3.32   -3.62   -3.67   -3.38   -2.72   -1.76   -0.63    0.59    1.97    3.74    6.16
+   315.0    0.00   -0.14   -0.48   -0.94   -1.45   -1.95   -2.44   -2.91   -3.33   -3.63   -3.68   -3.39   -2.75   -1.81   -0.70    0.51    1.89    3.67    6.12
+   320.0    0.00   -0.15   -0.49   -0.95   -1.47   -1.98   -2.47   -2.93   -3.35   -3.65   -3.70   -3.42   -2.79   -1.86   -0.77    0.43    1.81    3.60    6.07
+   325.0    0.00   -0.15   -0.49   -0.96   -1.48   -2.00   -2.49   -2.96   -3.38   -3.67   -3.73   -3.46   -2.84   -1.93   -0.85    0.35    1.74    3.54    6.01
+   330.0    0.00   -0.15   -0.50   -0.97   -1.50   -2.01   -2.51   -2.98   -3.40   -3.69   -3.76   -3.50   -2.90   -2.01   -0.93    0.28    1.67    3.48    5.95
+   335.0    0.00   -0.15   -0.50   -0.98   -1.51   -2.03   -2.53   -3.00   -3.42   -3.72   -3.80   -3.56   -2.97   -2.09   -1.00    0.21    1.62    3.43    5.88
+   340.0    0.00   -0.15   -0.50   -0.99   -1.52   -2.04   -2.55   -3.02   -3.44   -3.75   -3.84   -3.62   -3.05   -2.17   -1.08    0.15    1.58    3.39    5.81
+   345.0    0.00   -0.15   -0.50   -0.99   -1.53   -2.06   -2.56   -3.04   -3.47   -3.78   -3.89   -3.69   -3.13   -2.26   -1.16    0.09    1.54    3.35    5.74
+   350.0    0.00   -0.15   -0.51   -0.99   -1.53   -2.07   -2.57   -3.05   -3.49   -3.82   -3.94   -3.75   -3.21   -2.34   -1.23    0.04    1.50    3.31    5.67
+   355.0    0.00   -0.15   -0.51   -1.00   -1.54   -2.08   -2.59   -3.07   -3.51   -3.85   -3.99   -3.82   -3.29   -2.42   -1.30   -0.01    1.47    3.27    5.59
+   360.0    0.00   -0.15   -0.51   -1.00   -1.55   -2.09   -2.60   -3.08   -3.53   -3.88   -4.03   -3.87   -3.35   -2.49   -1.36   -0.05    1.44    3.24    5.52
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TRM41249.00     SCIT                                        TYPE / SERIAL NO    
+FIELD               NGS                      3    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      1.38      1.33     57.65                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.33   -0.60   -0.93   -1.42   -2.02   -2.56   -3.09   -3.47   -3.71   -3.86   -3.79   -3.63   -3.25   -2.68   -1.61    0.07
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.42      0.61     59.45                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.53   -0.91   -1.38   -1.79   -2.28   -2.79   -3.37   -3.81   -4.21   -4.45   -4.26   -3.83   -3.03   -1.93   -0.51    1.55
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TRM41249.00     TZGD                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH              17    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+Number of Calibrated Antennas GPS:      017                 COMMENT             
+Number of Individual Calibrations GPS:  034                 COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.56      0.40     55.46                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.11   -0.43   -0.91   -1.49   -2.11   -2.73   -3.28   -3.71   -3.95   -3.96   -3.69   -3.15   -2.34   -1.29    0.07    1.86    4.21    7.19
+     0.0    0.00   -0.09   -0.39   -0.86   -1.45   -2.11   -2.76   -3.34   -3.76   -3.96   -3.91   -3.61   -3.08   -2.35   -1.40   -0.14    1.55    3.79    6.50
+     5.0    0.00   -0.10   -0.39   -0.86   -1.45   -2.10   -2.76   -3.33   -3.76   -3.97   -3.93   -3.64   -3.11   -2.37   -1.40   -0.12    1.59    3.81    6.48
+    10.0    0.00   -0.10   -0.39   -0.86   -1.45   -2.10   -2.75   -3.33   -3.76   -3.98   -3.95   -3.66   -3.13   -2.37   -1.37   -0.08    1.64    3.85    6.50
+    15.0    0.00   -0.10   -0.40   -0.87   -1.45   -2.10   -2.75   -3.32   -3.76   -3.99   -3.97   -3.68   -3.14   -2.36   -1.34   -0.02    1.70    3.91    6.56
+    20.0    0.00   -0.10   -0.40   -0.87   -1.46   -2.10   -2.74   -3.31   -3.75   -3.99   -3.98   -3.69   -3.14   -2.34   -1.30    0.04    1.77    3.98    6.66
+    25.0    0.00   -0.10   -0.40   -0.88   -1.46   -2.10   -2.74   -3.30   -3.74   -3.99   -3.98   -3.69   -3.13   -2.31   -1.25    0.10    1.83    4.06    6.79
+    30.0    0.00   -0.10   -0.41   -0.88   -1.47   -2.10   -2.73   -3.29   -3.73   -3.98   -3.97   -3.69   -3.12   -2.29   -1.21    0.15    1.89    4.15    6.95
+    35.0    0.00   -0.10   -0.41   -0.89   -1.47   -2.11   -2.73   -3.28   -3.72   -3.97   -3.97   -3.68   -3.11   -2.26   -1.17    0.19    1.94    4.22    7.11
+    40.0    0.00   -0.10   -0.42   -0.90   -1.48   -2.11   -2.72   -3.27   -3.70   -3.95   -3.95   -3.67   -3.10   -2.25   -1.15    0.22    1.98    4.29    7.26
+    45.0    0.00   -0.11   -0.42   -0.90   -1.49   -2.11   -2.72   -3.26   -3.69   -3.94   -3.94   -3.67   -3.09   -2.25   -1.15    0.23    1.99    4.33    7.38
+    50.0    0.00   -0.11   -0.43   -0.91   -1.50   -2.12   -2.72   -3.26   -3.68   -3.92   -3.93   -3.66   -3.10   -2.25   -1.16    0.22    1.99    4.35    7.46
+    55.0    0.00   -0.11   -0.43   -0.92   -1.51   -2.13   -2.72   -3.25   -3.67   -3.92   -3.93   -3.67   -3.11   -2.27   -1.18    0.19    1.97    4.35    7.49
+    60.0    0.00   -0.11   -0.44   -0.93   -1.52   -2.14   -2.73   -3.25   -3.67   -3.91   -3.93   -3.68   -3.13   -2.30   -1.22    0.15    1.94    4.32    7.47
+    65.0    0.00   -0.11   -0.44   -0.94   -1.53   -2.14   -2.74   -3.26   -3.67   -3.92   -3.94   -3.69   -3.16   -2.34   -1.27    0.10    1.88    4.27    7.40
+    70.0    0.00   -0.11   -0.44   -0.94   -1.53   -2.15   -2.74   -3.27   -3.68   -3.92   -3.95   -3.71   -3.19   -2.38   -1.32    0.04    1.82    4.19    7.29
+    75.0    0.00   -0.12   -0.45   -0.95   -1.54   -2.16   -2.75   -3.27   -3.69   -3.94   -3.97   -3.73   -3.22   -2.43   -1.37   -0.02    1.75    4.11    7.17
+    80.0    0.00   -0.12   -0.45   -0.95   -1.54   -2.16   -2.76   -3.29   -3.70   -3.95   -3.98   -3.75   -3.24   -2.46   -1.42   -0.08    1.68    4.02    7.04
+    85.0    0.00   -0.12   -0.45   -0.95   -1.54   -2.17   -2.76   -3.29   -3.71   -3.96   -4.00   -3.77   -3.26   -2.49   -1.46   -0.13    1.62    3.94    6.92
+    90.0    0.00   -0.12   -0.45   -0.95   -1.54   -2.17   -2.77   -3.30   -3.72   -3.97   -4.00   -3.77   -3.27   -2.51   -1.49   -0.16    1.58    3.88    6.84
+    95.0    0.00   -0.12   -0.45   -0.95   -1.54   -2.16   -2.77   -3.30   -3.72   -3.98   -4.01   -3.77   -3.27   -2.51   -1.50   -0.18    1.55    3.85    6.80
+   100.0    0.00   -0.12   -0.45   -0.95   -1.53   -2.16   -2.76   -3.30   -3.72   -3.97   -4.00   -3.76   -3.26   -2.50   -1.49   -0.18    1.55    3.85    6.81
+   105.0    0.00   -0.12   -0.45   -0.94   -1.53   -2.15   -2.75   -3.29   -3.71   -3.96   -3.98   -3.74   -3.23   -2.47   -1.46   -0.15    1.58    3.89    6.86
+   110.0    0.00   -0.12   -0.45   -0.94   -1.52   -2.13   -2.74   -3.27   -3.70   -3.94   -3.96   -3.71   -3.20   -2.43   -1.42   -0.10    1.63    3.96    6.95
+   115.0    0.00   -0.12   -0.45   -0.93   -1.51   -2.12   -2.72   -3.26   -3.68   -3.92   -3.94   -3.68   -3.16   -2.38   -1.36   -0.03    1.71    4.05    7.06
+   120.0    0.00   -0.12   -0.45   -0.93   -1.50   -2.11   -2.70   -3.24   -3.65   -3.90   -3.91   -3.65   -3.11   -2.33   -1.29    0.05    1.81    4.16    7.19
+   125.0    0.00   -0.12   -0.44   -0.92   -1.49   -2.10   -2.69   -3.22   -3.63   -3.87   -3.88   -3.62   -3.08   -2.28   -1.22    0.13    1.90    4.26    7.30
+   130.0    0.00   -0.12   -0.44   -0.92   -1.49   -2.09   -2.68   -3.21   -3.62   -3.86   -3.86   -3.59   -3.05   -2.23   -1.17    0.21    1.99    4.36    7.39
+   135.0    0.00   -0.12   -0.44   -0.92   -1.48   -2.09   -2.67   -3.20   -3.61   -3.84   -3.85   -3.58   -3.03   -2.21   -1.12    0.26    2.07    4.43    7.45
+   140.0    0.00   -0.12   -0.44   -0.91   -1.48   -2.09   -2.67   -3.20   -3.61   -3.84   -3.85   -3.58   -3.03   -2.20   -1.11    0.30    2.11    4.47    7.47
+   145.0    0.00   -0.12   -0.44   -0.91   -1.48   -2.09   -2.68   -3.21   -3.62   -3.85   -3.86   -3.59   -3.05   -2.22   -1.12    0.30    2.12    4.48    7.46
+   150.0    0.00   -0.12   -0.44   -0.91   -1.48   -2.10   -2.69   -3.22   -3.63   -3.87   -3.88   -3.62   -3.08   -2.26   -1.16    0.26    2.09    4.46    7.43
+   155.0    0.00   -0.12   -0.44   -0.91   -1.49   -2.11   -2.71   -3.25   -3.66   -3.89   -3.91   -3.65   -3.13   -2.32   -1.23    0.19    2.04    4.42    7.38
+   160.0    0.00   -0.12   -0.44   -0.91   -1.49   -2.12   -2.73   -3.27   -3.69   -3.92   -3.94   -3.70   -3.18   -2.39   -1.31    0.11    1.96    4.36    7.33
+   165.0    0.00   -0.12   -0.43   -0.91   -1.50   -2.13   -2.75   -3.30   -3.72   -3.96   -3.98   -3.74   -3.25   -2.47   -1.41    0.01    1.88    4.30    7.30
+   170.0    0.00   -0.12   -0.43   -0.91   -1.50   -2.14   -2.76   -3.32   -3.74   -3.99   -4.01   -3.79   -3.30   -2.55   -1.51   -0.09    1.79    4.25    7.29
+   175.0    0.00   -0.12   -0.43   -0.91   -1.50   -2.14   -2.78   -3.33   -3.76   -4.01   -4.04   -3.82   -3.35   -2.62   -1.58   -0.17    1.73    4.23    7.31
+   180.0    0.00   -0.12   -0.43   -0.91   -1.50   -2.15   -2.78   -3.34   -3.78   -4.03   -4.06   -3.85   -3.39   -2.66   -1.64   -0.23    1.70    4.24    7.36
+   185.0    0.00   -0.12   -0.43   -0.91   -1.50   -2.14   -2.78   -3.34   -3.78   -4.04   -4.07   -3.86   -3.40   -2.68   -1.66   -0.24    1.70    4.27    7.43
+   190.0    0.00   -0.12   -0.43   -0.91   -1.50   -2.14   -2.77   -3.34   -3.78   -4.04   -4.07   -3.85   -3.39   -2.66   -1.64   -0.21    1.74    4.34    7.51
+   195.0    0.00   -0.12   -0.43   -0.90   -1.49   -2.13   -2.76   -3.33   -3.77   -4.03   -4.06   -3.83   -3.36   -2.62   -1.58   -0.15    1.82    4.42    7.60
+   200.0    0.00   -0.12   -0.43   -0.90   -1.48   -2.11   -2.74   -3.31   -3.75   -4.01   -4.04   -3.80   -3.30   -2.54   -1.49   -0.05    1.91    4.51    7.67
+   205.0    0.00   -0.12   -0.43   -0.90   -1.47   -2.10   -2.72   -3.29   -3.73   -3.99   -4.01   -3.76   -3.24   -2.45   -1.38    0.06    2.01    4.59    7.72
+   210.0    0.00   -0.12   -0.43   -0.90   -1.47   -2.08   -2.70   -3.27   -3.71   -3.97   -3.98   -3.71   -3.16   -2.35   -1.26    0.17    2.10    4.64    7.74
+   215.0    0.00   -0.12   -0.43   -0.89   -1.46   -2.07   -2.69   -3.25   -3.70   -3.95   -3.95   -3.66   -3.09   -2.25   -1.16    0.27    2.16    4.66    7.73
+   220.0    0.00   -0.12   -0.43   -0.89   -1.46   -2.07   -2.68   -3.24   -3.69   -3.94   -3.93   -3.62   -3.02   -2.17   -1.07    0.33    2.19    4.64    7.67
+   225.0    0.00   -0.12   -0.43   -0.89   -1.45   -2.06   -2.67   -3.23   -3.68   -3.93   -3.91   -3.59   -2.97   -2.11   -1.02    0.36    2.17    4.58    7.59
+   230.0    0.00   -0.12   -0.43   -0.90   -1.46   -2.06   -2.67   -3.23   -3.68   -3.92   -3.90   -3.57   -2.95   -2.09   -1.02    0.33    2.10    4.48    7.50
+   235.0    0.00   -0.12   -0.43   -0.90   -1.46   -2.07   -2.68   -3.24   -3.68   -3.93   -3.90   -3.57   -2.95   -2.10   -1.05    0.26    2.00    4.35    7.39
+   240.0    0.00   -0.12   -0.43   -0.90   -1.46   -2.07   -2.68   -3.24   -3.69   -3.93   -3.91   -3.58   -2.98   -2.15   -1.13    0.15    1.86    4.21    7.29
+   245.0    0.00   -0.12   -0.43   -0.91   -1.47   -2.08   -2.69   -3.25   -3.70   -3.94   -3.93   -3.62   -3.03   -2.23   -1.23    0.02    1.72    4.08    7.21
+   250.0    0.00   -0.12   -0.44   -0.91   -1.48   -2.09   -2.70   -3.26   -3.70   -3.96   -3.95   -3.66   -3.10   -2.33   -1.36   -0.11    1.58    3.97    7.15
+   255.0    0.00   -0.12   -0.44   -0.92   -1.49   -2.10   -2.71   -3.27   -3.71   -3.97   -3.98   -3.71   -3.19   -2.44   -1.48   -0.24    1.47    3.89    7.12
+   260.0    0.00   -0.12   -0.44   -0.92   -1.49   -2.11   -2.72   -3.27   -3.72   -3.98   -4.01   -3.77   -3.27   -2.54   -1.58   -0.33    1.41    3.85    7.11
+   265.0    0.00   -0.11   -0.44   -0.92   -1.50   -2.12   -2.73   -3.28   -3.72   -3.99   -4.04   -3.82   -3.34   -2.62   -1.66   -0.38    1.39    3.86    7.13
+   270.0    0.00   -0.11   -0.44   -0.92   -1.51   -2.12   -2.73   -3.28   -3.72   -4.00   -4.06   -3.87   -3.40   -2.68   -1.70   -0.38    1.43    3.91    7.16
+   275.0    0.00   -0.11   -0.44   -0.93   -1.51   -2.13   -2.73   -3.28   -3.72   -4.01   -4.08   -3.90   -3.44   -2.70   -1.69   -0.32    1.52    4.00    7.21
+   280.0    0.00   -0.11   -0.44   -0.93   -1.51   -2.13   -2.73   -3.28   -3.72   -4.01   -4.09   -3.91   -3.45   -2.69   -1.63   -0.23    1.64    4.11    7.25
+   285.0    0.00   -0.11   -0.44   -0.92   -1.51   -2.13   -2.73   -3.28   -3.72   -4.01   -4.09   -3.91   -3.43   -2.64   -1.54   -0.10    1.79    4.23    7.30
+   290.0    0.00   -0.11   -0.43   -0.92   -1.51   -2.13   -2.73   -3.28   -3.72   -4.01   -4.09   -3.89   -3.38   -2.57   -1.43    0.05    1.94    4.35    7.33
+   295.0    0.00   -0.11   -0.43   -0.92   -1.50   -2.13   -2.73   -3.28   -3.72   -4.01   -4.07   -3.85   -3.32   -2.47   -1.31    0.19    2.07    4.44    7.35
+   300.0    0.00   -0.11   -0.43   -0.91   -1.50   -2.13   -2.74   -3.29   -3.73   -4.00   -4.05   -3.80   -3.24   -2.36   -1.18    0.31    2.17    4.50    7.36
+   305.0    0.00   -0.11   -0.42   -0.91   -1.50   -2.13   -2.74   -3.29   -3.73   -3.99   -4.01   -3.74   -3.16   -2.26   -1.08    0.40    2.24    4.53    7.35
+   310.0    0.00   -0.10   -0.42   -0.90   -1.49   -2.12   -2.75   -3.30   -3.74   -3.98   -3.98   -3.68   -3.07   -2.17   -1.00    0.45    2.25    4.51    7.32
+   315.0    0.00   -0.10   -0.42   -0.90   -1.49   -2.12   -2.75   -3.31   -3.74   -3.97   -3.95   -3.62   -3.00   -2.11   -0.96    0.45    2.22    4.47    7.27
+   320.0    0.00   -0.10   -0.41   -0.89   -1.48   -2.12   -2.76   -3.32   -3.74   -3.96   -3.91   -3.57   -2.95   -2.07   -0.96    0.42    2.15    4.39    7.21
+   325.0    0.00   -0.10   -0.41   -0.88   -1.48   -2.12   -2.76   -3.33   -3.75   -3.95   -3.89   -3.53   -2.91   -2.05   -0.98    0.34    2.05    4.29    7.14
+   330.0    0.00   -0.10   -0.40   -0.88   -1.47   -2.12   -2.77   -3.33   -3.75   -3.94   -3.87   -3.51   -2.90   -2.07   -1.04    0.25    1.94    4.18    7.05
+   335.0    0.00   -0.10   -0.40   -0.87   -1.47   -2.12   -2.77   -3.34   -3.75   -3.94   -3.85   -3.50   -2.90   -2.10   -1.11    0.15    1.82    4.07    6.95
+   340.0    0.00   -0.10   -0.40   -0.87   -1.46   -2.12   -2.77   -3.34   -3.75   -3.93   -3.85   -3.50   -2.92   -2.15   -1.19    0.05    1.71    3.97    6.84
+   345.0    0.00   -0.10   -0.39   -0.86   -1.46   -2.12   -2.77   -3.34   -3.75   -3.94   -3.86   -3.52   -2.96   -2.21   -1.27   -0.04    1.63    3.89    6.74
+   350.0    0.00   -0.10   -0.39   -0.86   -1.45   -2.11   -2.77   -3.34   -3.75   -3.94   -3.87   -3.54   -3.00   -2.26   -1.33   -0.10    1.57    3.83    6.64
+   355.0    0.00   -0.09   -0.39   -0.86   -1.45   -2.11   -2.76   -3.34   -3.76   -3.95   -3.89   -3.58   -3.04   -2.31   -1.37   -0.14    1.55    3.80    6.56
+   360.0    0.00   -0.09   -0.39   -0.86   -1.45   -2.11   -2.76   -3.34   -3.76   -3.96   -3.91   -3.61   -3.08   -2.35   -1.40   -0.14    1.55    3.79    6.50
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.32      0.50     57.95                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.10   -0.38   -0.77   -1.23   -1.72   -2.23   -2.75   -3.23   -3.58   -3.68   -3.43   -2.82   -1.92   -0.86    0.29    1.61    3.35    5.82
+     0.0    0.00   -0.12   -0.43   -0.87   -1.38   -1.89   -2.39   -2.87   -3.30   -3.64   -3.77   -3.60   -3.07   -2.21   -1.11    0.13    1.54    3.23    5.42
+     5.0    0.00   -0.12   -0.43   -0.88   -1.39   -1.90   -2.40   -2.88   -3.33   -3.67   -3.82   -3.66   -3.13   -2.27   -1.16    0.10    1.51    3.20    5.39
+    10.0    0.00   -0.12   -0.43   -0.88   -1.39   -1.91   -2.41   -2.90   -3.35   -3.70   -3.86   -3.71   -3.18   -2.32   -1.20    0.06    1.48    3.18    5.39
+    15.0    0.00   -0.12   -0.43   -0.88   -1.40   -1.92   -2.42   -2.91   -3.37   -3.73   -3.89   -3.75   -3.23   -2.36   -1.24    0.03    1.45    3.17    5.41
+    20.0    0.00   -0.12   -0.43   -0.88   -1.40   -1.92   -2.43   -2.92   -3.39   -3.76   -3.93   -3.78   -3.26   -2.38   -1.26    0.01    1.42    3.16    5.47
+    25.0    0.00   -0.12   -0.43   -0.88   -1.40   -1.92   -2.43   -2.93   -3.41   -3.78   -3.96   -3.81   -3.27   -2.39   -1.27   -0.01    1.40    3.16    5.55
+    30.0    0.00   -0.12   -0.43   -0.88   -1.39   -1.92   -2.43   -2.94   -3.42   -3.81   -3.98   -3.82   -3.28   -2.39   -1.27   -0.02    1.38    3.16    5.64
+    35.0    0.00   -0.12   -0.43   -0.88   -1.39   -1.91   -2.43   -2.95   -3.44   -3.83   -4.00   -3.84   -3.27   -2.37   -1.25   -0.02    1.37    3.17    5.73
+    40.0    0.00   -0.11   -0.42   -0.87   -1.38   -1.90   -2.43   -2.95   -3.45   -3.85   -4.02   -3.84   -3.26   -2.34   -1.22    0.00    1.37    3.18    5.82
+    45.0    0.00   -0.11   -0.42   -0.86   -1.36   -1.88   -2.41   -2.95   -3.46   -3.87   -4.03   -3.84   -3.24   -2.30   -1.18    0.02    1.37    3.19    5.90
+    50.0    0.00   -0.11   -0.41   -0.85   -1.34   -1.86   -2.39   -2.94   -3.46   -3.87   -4.04   -3.83   -3.21   -2.26   -1.14    0.05    1.39    3.20    5.97
+    55.0    0.00   -0.11   -0.41   -0.83   -1.32   -1.84   -2.37   -2.92   -3.45   -3.87   -4.03   -3.81   -3.18   -2.21   -1.09    0.09    1.41    3.22    6.02
+    60.0    0.00   -0.11   -0.40   -0.82   -1.30   -1.81   -2.34   -2.89   -3.43   -3.85   -4.01   -3.79   -3.14   -2.16   -1.03    0.14    1.45    3.24    6.05
+    65.0    0.00   -0.10   -0.39   -0.80   -1.28   -1.78   -2.30   -2.85   -3.39   -3.82   -3.98   -3.75   -3.10   -2.11   -0.98    0.20    1.49    3.28    6.08
+    70.0    0.00   -0.10   -0.38   -0.79   -1.25   -1.74   -2.26   -2.81   -3.34   -3.77   -3.93   -3.70   -3.05   -2.06   -0.92    0.25    1.55    3.32    6.09
+    75.0    0.00   -0.10   -0.37   -0.77   -1.22   -1.71   -2.21   -2.75   -3.29   -3.71   -3.87   -3.64   -2.99   -2.01   -0.86    0.32    1.62    3.38    6.11
+    80.0    0.00   -0.09   -0.36   -0.75   -1.20   -1.67   -2.17   -2.70   -3.22   -3.64   -3.80   -3.58   -2.93   -1.95   -0.80    0.39    1.70    3.45    6.12
+    85.0    0.00   -0.09   -0.36   -0.74   -1.17   -1.64   -2.13   -2.65   -3.16   -3.57   -3.73   -3.50   -2.86   -1.89   -0.74    0.46    1.79    3.54    6.15
+    90.0    0.00   -0.09   -0.35   -0.72   -1.15   -1.61   -2.09   -2.60   -3.10   -3.49   -3.64   -3.42   -2.79   -1.82   -0.67    0.54    1.88    3.63    6.18
+    95.0    0.00   -0.09   -0.34   -0.71   -1.13   -1.58   -2.05   -2.55   -3.04   -3.43   -3.57   -3.34   -2.71   -1.75   -0.60    0.62    1.98    3.72    6.21
+   100.0    0.00   -0.08   -0.34   -0.70   -1.12   -1.56   -2.03   -2.52   -2.99   -3.36   -3.50   -3.27   -2.64   -1.68   -0.54    0.70    2.07    3.82    6.25
+   105.0    0.00   -0.08   -0.33   -0.69   -1.10   -1.54   -2.01   -2.49   -2.96   -3.32   -3.44   -3.20   -2.57   -1.62   -0.47    0.77    2.16    3.90    6.30
+   110.0    0.00   -0.08   -0.33   -0.68   -1.09   -1.53   -2.00   -2.48   -2.94   -3.28   -3.39   -3.15   -2.52   -1.57   -0.42    0.84    2.23    3.98    6.33
+   115.0    0.00   -0.08   -0.32   -0.67   -1.09   -1.53   -1.99   -2.47   -2.93   -3.26   -3.36   -3.11   -2.48   -1.53   -0.38    0.88    2.29    4.03    6.36
+   120.0    0.00   -0.08   -0.32   -0.67   -1.08   -1.53   -1.99   -2.48   -2.93   -3.26   -3.35   -3.09   -2.45   -1.50   -0.35    0.91    2.32    4.07    6.38
+   125.0    0.00   -0.08   -0.32   -0.67   -1.08   -1.53   -2.00   -2.49   -2.94   -3.27   -3.35   -3.09   -2.45   -1.50   -0.35    0.91    2.33    4.07    6.38
+   130.0    0.00   -0.08   -0.31   -0.67   -1.08   -1.53   -2.01   -2.50   -2.96   -3.29   -3.37   -3.10   -2.46   -1.51   -0.37    0.89    2.30    4.05    6.37
+   135.0    0.00   -0.08   -0.31   -0.67   -1.08   -1.54   -2.02   -2.52   -2.99   -3.32   -3.40   -3.13   -2.49   -1.54   -0.40    0.85    2.26    4.01    6.34
+   140.0    0.00   -0.08   -0.31   -0.67   -1.09   -1.55   -2.04   -2.54   -3.02   -3.35   -3.44   -3.16   -2.52   -1.58   -0.45    0.78    2.18    3.94    6.29
+   145.0    0.00   -0.08   -0.32   -0.67   -1.09   -1.56   -2.05   -2.57   -3.04   -3.39   -3.47   -3.20   -2.57   -1.63   -0.52    0.70    2.09    3.85    6.23
+   150.0    0.00   -0.08   -0.32   -0.67   -1.10   -1.57   -2.07   -2.59   -3.07   -3.42   -3.51   -3.24   -2.61   -1.69   -0.60    0.60    1.98    3.74    6.14
+   155.0    0.00   -0.08   -0.32   -0.68   -1.10   -1.58   -2.08   -2.61   -3.10   -3.45   -3.54   -3.28   -2.65   -1.74   -0.67    0.50    1.85    3.61    6.04
+   160.0    0.00   -0.08   -0.32   -0.68   -1.11   -1.59   -2.10   -2.63   -3.12   -3.48   -3.57   -3.31   -2.69   -1.80   -0.75    0.39    1.72    3.47    5.92
+   165.0    0.00   -0.08   -0.33   -0.69   -1.12   -1.60   -2.11   -2.65   -3.15   -3.50   -3.59   -3.33   -2.71   -1.84   -0.82    0.28    1.58    3.32    5.78
+   170.0    0.00   -0.08   -0.33   -0.70   -1.13   -1.61   -2.13   -2.67   -3.17   -3.52   -3.61   -3.34   -2.74   -1.88   -0.89    0.18    1.44    3.17    5.62
+   175.0    0.00   -0.08   -0.33   -0.70   -1.14   -1.62   -2.15   -2.69   -3.19   -3.54   -3.62   -3.35   -2.75   -1.91   -0.96    0.07    1.31    3.01    5.44
+   180.0    0.00   -0.08   -0.34   -0.71   -1.15   -1.64   -2.16   -2.71   -3.21   -3.56   -3.63   -3.37   -2.77   -1.95   -1.02   -0.02    1.17    2.85    5.26
+   185.0    0.00   -0.08   -0.34   -0.72   -1.16   -1.65   -2.18   -2.73   -3.23   -3.58   -3.65   -3.38   -2.79   -1.98   -1.08   -0.12    1.05    2.70    5.08
+   190.0    0.00   -0.09   -0.35   -0.72   -1.17   -1.66   -2.19   -2.74   -3.25   -3.60   -3.67   -3.40   -2.82   -2.02   -1.14   -0.21    0.94    2.56    4.90
+   195.0    0.00   -0.09   -0.35   -0.73   -1.18   -1.67   -2.20   -2.76   -3.27   -3.62   -3.70   -3.44   -2.86   -2.08   -1.21   -0.29    0.84    2.44    4.75
+   200.0    0.00   -0.09   -0.35   -0.74   -1.19   -1.68   -2.21   -2.77   -3.28   -3.64   -3.73   -3.48   -2.91   -2.13   -1.28   -0.36    0.76    2.35    4.62
+   205.0    0.00   -0.09   -0.36   -0.74   -1.19   -1.69   -2.22   -2.78   -3.30   -3.67   -3.77   -3.53   -2.97   -2.20   -1.34   -0.42    0.70    2.29    4.54
+   210.0    0.00   -0.09   -0.36   -0.75   -1.20   -1.69   -2.23   -2.79   -3.32   -3.70   -3.82   -3.59   -3.03   -2.27   -1.40   -0.47    0.67    2.26    4.51
+   215.0    0.00   -0.09   -0.37   -0.75   -1.20   -1.69   -2.23   -2.79   -3.33   -3.73   -3.86   -3.65   -3.10   -2.33   -1.45   -0.49    0.66    2.28    4.55
+   220.0    0.00   -0.10   -0.37   -0.76   -1.21   -1.70   -2.23   -2.80   -3.34   -3.76   -3.90   -3.70   -3.16   -2.38   -1.47   -0.49    0.70    2.35    4.64
+   225.0    0.00   -0.10   -0.37   -0.76   -1.21   -1.70   -2.23   -2.80   -3.36   -3.78   -3.94   -3.75   -3.20   -2.40   -1.47   -0.46    0.77    2.45    4.78
+   230.0    0.00   -0.10   -0.37   -0.76   -1.21   -1.70   -2.24   -2.81   -3.37   -3.80   -3.97   -3.78   -3.22   -2.40   -1.44   -0.39    0.87    2.59    4.97
+   235.0    0.00   -0.10   -0.37   -0.76   -1.21   -1.70   -2.24   -2.81   -3.38   -3.82   -3.99   -3.79   -3.22   -2.37   -1.37   -0.28    1.01    2.76    5.20
+   240.0    0.00   -0.10   -0.38   -0.77   -1.22   -1.71   -2.24   -2.82   -3.38   -3.82   -3.99   -3.78   -3.18   -2.30   -1.27   -0.15    1.17    2.94    5.45
+   245.0    0.00   -0.10   -0.38   -0.77   -1.22   -1.71   -2.25   -2.82   -3.39   -3.82   -3.98   -3.74   -3.12   -2.20   -1.13    0.01    1.34    3.14    5.69
+   250.0    0.00   -0.10   -0.38   -0.77   -1.22   -1.72   -2.25   -2.83   -3.39   -3.81   -3.94   -3.68   -3.02   -2.07   -0.97    0.19    1.52    3.33    5.92
+   255.0    0.00   -0.10   -0.38   -0.77   -1.23   -1.72   -2.26   -2.83   -3.38   -3.78   -3.89   -3.60   -2.91   -1.92   -0.80    0.37    1.70    3.50    6.13
+   260.0    0.00   -0.10   -0.38   -0.77   -1.23   -1.73   -2.27   -2.83   -3.36   -3.75   -3.83   -3.51   -2.78   -1.77   -0.64    0.54    1.86    3.66    6.29
+   265.0    0.00   -0.10   -0.38   -0.77   -1.23   -1.73   -2.27   -2.82   -3.34   -3.70   -3.75   -3.40   -2.65   -1.62   -0.48    0.69    2.00    3.78    6.42
+   270.0    0.00   -0.11   -0.38   -0.78   -1.24   -1.74   -2.27   -2.81   -3.31   -3.64   -3.67   -3.29   -2.53   -1.49   -0.34    0.82    2.11    3.86    6.49
+   275.0    0.00   -0.11   -0.38   -0.78   -1.24   -1.74   -2.26   -2.80   -3.27   -3.58   -3.58   -3.19   -2.41   -1.38   -0.24    0.90    2.18    3.91    6.53
+   280.0    0.00   -0.11   -0.38   -0.78   -1.24   -1.74   -2.26   -2.77   -3.23   -3.51   -3.49   -3.09   -2.32   -1.30   -0.18    0.95    2.21    3.93    6.53
+   285.0    0.00   -0.11   -0.38   -0.78   -1.24   -1.74   -2.25   -2.75   -3.18   -3.44   -3.41   -3.01   -2.25   -1.25   -0.16    0.96    2.21    3.92    6.51
+   290.0    0.00   -0.11   -0.38   -0.78   -1.25   -1.74   -2.24   -2.72   -3.14   -3.38   -3.34   -2.95   -2.21   -1.24   -0.17    0.93    2.18    3.89    6.47
+   295.0    0.00   -0.11   -0.39   -0.78   -1.25   -1.74   -2.23   -2.70   -3.09   -3.32   -3.29   -2.91   -2.20   -1.26   -0.21    0.88    2.13    3.85    6.42
+   300.0    0.00   -0.11   -0.39   -0.79   -1.25   -1.74   -2.22   -2.68   -3.06   -3.28   -3.25   -2.88   -2.21   -1.30   -0.28    0.80    2.06    3.79    6.36
+   305.0    0.00   -0.11   -0.39   -0.79   -1.26   -1.74   -2.22   -2.66   -3.04   -3.25   -3.22   -2.88   -2.24   -1.36   -0.37    0.71    1.98    3.73    6.31
+   310.0    0.00   -0.11   -0.39   -0.80   -1.26   -1.74   -2.22   -2.66   -3.02   -3.24   -3.22   -2.91   -2.29   -1.44   -0.46    0.62    1.91    3.68    6.25
+   315.0    0.00   -0.11   -0.40   -0.80   -1.27   -1.75   -2.22   -2.66   -3.02   -3.25   -3.24   -2.94   -2.35   -1.52   -0.55    0.54    1.84    3.62    6.19
+   320.0    0.00   -0.11   -0.40   -0.81   -1.28   -1.76   -2.23   -2.67   -3.04   -3.27   -3.28   -3.00   -2.42   -1.61   -0.64    0.46    1.78    3.57    6.12
+   325.0    0.00   -0.11   -0.40   -0.81   -1.29   -1.78   -2.25   -2.69   -3.06   -3.30   -3.32   -3.06   -2.50   -1.69   -0.72    0.39    1.73    3.52    6.05
+   330.0    0.00   -0.11   -0.41   -0.82   -1.30   -1.79   -2.27   -2.71   -3.09   -3.34   -3.38   -3.14   -2.59   -1.77   -0.79    0.34    1.69    3.47    5.96
+   335.0    0.00   -0.12   -0.41   -0.83   -1.31   -1.81   -2.29   -2.74   -3.13   -3.39   -3.45   -3.22   -2.67   -1.85   -0.85    0.30    1.66    3.43    5.87
+   340.0    0.00   -0.12   -0.41   -0.84   -1.33   -1.83   -2.31   -2.77   -3.17   -3.45   -3.52   -3.30   -2.76   -1.93   -0.90    0.26    1.63    3.38    5.76
+   345.0    0.00   -0.12   -0.42   -0.85   -1.34   -1.84   -2.33   -2.80   -3.21   -3.50   -3.59   -3.38   -2.84   -2.00   -0.96    0.23    1.61    3.34    5.66
+   350.0    0.00   -0.12   -0.42   -0.86   -1.35   -1.86   -2.36   -2.82   -3.24   -3.55   -3.65   -3.46   -2.92   -2.08   -1.01    0.20    1.59    3.30    5.56
+   355.0    0.00   -0.12   -0.42   -0.86   -1.37   -1.88   -2.37   -2.85   -3.27   -3.60   -3.71   -3.53   -3.00   -2.14   -1.06    0.17    1.56    3.26    5.48
+   360.0    0.00   -0.12   -0.43   -0.87   -1.38   -1.89   -2.39   -2.87   -3.30   -3.64   -3.77   -3.60   -3.07   -2.21   -1.11    0.13    1.54    3.23    5.42
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TRM41249USCG    SCIT                                        TYPE / SERIAL NO    
+FIELD               NGS                      4    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+     -2.82     -2.27     63.15                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.03   -0.20   -0.43   -0.72   -1.22   -1.76   -2.19   -2.57   -2.81   -2.96   -2.89   -2.73   -2.35   -1.78   -0.71    0.97
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -3.78     -2.09     61.25                              NORTH / EAST / UP   
+   NOAZI    0.00    0.57    0.79    0.72    0.51    0.02   -0.49   -1.07   -1.61   -2.01   -2.05   -1.86   -1.23   -0.43    0.47    1.69    3.15
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TRM4800         NONE                                        TYPE / SERIAL NO    
+FIELD               NGS                      1    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.38      1.13    157.75                              NORTH / EAST / UP   
+   NOAZI    0.00    0.47    1.00    1.47    1.68    1.78    1.74    1.51    1.23    0.89    0.64    0.41    0.37    0.65    1.32    2.79    5.37
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.68      0.71    171.25                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.43   -0.51   -0.48   -0.39   -0.38   -0.39   -0.67   -1.11   -1.51   -1.85   -2.06   -2.03   -1.73   -1.13   -0.01    1.95
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TRM55971.00     NONE                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH              58    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     4                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+Number of Calibrated Antennas GPS:      058                 COMMENT             
+Number of Individual Calibrations GPS:  116                 COMMENT             
+Number of Calibrated Antennas GLO:      058                 COMMENT             
+Number of Individual Calibrations GLO:  116                 COMMENT             
+# GLONASS PCV                                               COMMENT             
+#  derived from Delta PCV per 25.0 MHz                      COMMENT             
+#  for frequency channel number k=0                         COMMENT             
+   G01                                                      START OF FREQUENCY  
+      1.29     -0.19     66.73                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.03   -0.13   -0.29   -0.51   -0.78   -1.12   -1.49   -1.87   -2.17   -2.34   -2.32   -2.08   -1.65   -1.04   -0.23    0.91    2.51    4.69
+     0.0    0.00   -0.02   -0.10   -0.24   -0.45   -0.74   -1.11   -1.55   -2.00   -2.39   -2.62   -2.66   -2.50   -2.17   -1.72   -1.11   -0.23    1.14    3.14
+     5.0    0.00   -0.02   -0.10   -0.24   -0.45   -0.73   -1.11   -1.55   -2.00   -2.39   -2.63   -2.68   -2.52   -2.20   -1.72   -1.08   -0.17    1.20    3.19
+    10.0    0.00   -0.02   -0.10   -0.24   -0.45   -0.73   -1.10   -1.53   -1.98   -2.37   -2.62   -2.68   -2.52   -2.18   -1.68   -1.00   -0.05    1.34    3.31
+    15.0    0.00   -0.02   -0.11   -0.24   -0.45   -0.73   -1.09   -1.51   -1.95   -2.34   -2.59   -2.65   -2.50   -2.14   -1.61   -0.88    0.13    1.55    3.51
+    20.0    0.00   -0.02   -0.11   -0.25   -0.45   -0.72   -1.07   -1.49   -1.92   -2.30   -2.54   -2.60   -2.44   -2.07   -1.50   -0.72    0.34    1.81    3.78
+    25.0    0.00   -0.03   -0.11   -0.25   -0.45   -0.72   -1.06   -1.46   -1.87   -2.24   -2.48   -2.53   -2.36   -1.97   -1.37   -0.55    0.57    2.09    4.10
+    30.0    0.00   -0.03   -0.11   -0.25   -0.46   -0.72   -1.05   -1.43   -1.83   -2.17   -2.40   -2.44   -2.26   -1.86   -1.23   -0.36    0.81    2.39    4.45
+    35.0    0.00   -0.03   -0.11   -0.26   -0.46   -0.72   -1.04   -1.41   -1.78   -2.10   -2.31   -2.34   -2.15   -1.74   -1.10   -0.19    1.04    2.68    4.80
+    40.0    0.00   -0.03   -0.12   -0.27   -0.47   -0.73   -1.04   -1.38   -1.74   -2.04   -2.23   -2.25   -2.05   -1.63   -0.97   -0.04    1.23    2.94    5.13
+    45.0    0.00   -0.03   -0.12   -0.27   -0.48   -0.73   -1.04   -1.37   -1.70   -1.98   -2.15   -2.16   -1.96   -1.53   -0.87    0.08    1.39    3.15    5.42
+    50.0    0.00   -0.03   -0.13   -0.28   -0.49   -0.74   -1.04   -1.36   -1.68   -1.94   -2.10   -2.09   -1.88   -1.46   -0.79    0.16    1.49    3.30    5.63
+    55.0    0.00   -0.03   -0.13   -0.29   -0.50   -0.76   -1.05   -1.36   -1.67   -1.92   -2.06   -2.04   -1.83   -1.41   -0.75    0.21    1.54    3.38    5.76
+    60.0    0.00   -0.03   -0.13   -0.30   -0.51   -0.77   -1.06   -1.37   -1.67   -1.91   -2.05   -2.02   -1.80   -1.38   -0.73    0.21    1.54    3.38    5.79
+    65.0    0.00   -0.03   -0.14   -0.30   -0.52   -0.78   -1.08   -1.39   -1.69   -1.93   -2.05   -2.02   -1.80   -1.39   -0.75    0.17    1.48    3.32    5.74
+    70.0    0.00   -0.03   -0.14   -0.31   -0.53   -0.80   -1.10   -1.41   -1.71   -1.95   -2.08   -2.04   -1.82   -1.41   -0.78    0.11    1.39    3.20    5.60
+    75.0    0.00   -0.04   -0.14   -0.32   -0.54   -0.81   -1.11   -1.43   -1.74   -1.98   -2.11   -2.07   -1.85   -1.44   -0.84    0.03    1.27    3.04    5.41
+    80.0    0.00   -0.04   -0.15   -0.32   -0.55   -0.82   -1.13   -1.45   -1.77   -2.02   -2.15   -2.11   -1.89   -1.49   -0.89   -0.05    1.14    2.86    5.18
+    85.0    0.00   -0.04   -0.15   -0.32   -0.55   -0.82   -1.14   -1.47   -1.80   -2.06   -2.19   -2.15   -1.93   -1.52   -0.94   -0.13    1.02    2.69    4.95
+    90.0    0.00   -0.04   -0.15   -0.32   -0.55   -0.83   -1.14   -1.48   -1.82   -2.08   -2.22   -2.18   -1.96   -1.55   -0.98   -0.19    0.93    2.54    4.75
+    95.0    0.00   -0.04   -0.15   -0.32   -0.55   -0.83   -1.14   -1.49   -1.83   -2.10   -2.24   -2.20   -1.97   -1.56   -0.99   -0.22    0.87    2.45    4.60
+   100.0    0.00   -0.04   -0.15   -0.32   -0.55   -0.82   -1.14   -1.49   -1.83   -2.10   -2.25   -2.21   -1.97   -1.56   -0.99   -0.22    0.85    2.40    4.52
+   105.0    0.00   -0.04   -0.15   -0.32   -0.55   -0.82   -1.13   -1.48   -1.82   -2.10   -2.24   -2.19   -1.95   -1.53   -0.95   -0.19    0.88    2.43    4.52
+   110.0    0.00   -0.04   -0.15   -0.32   -0.54   -0.81   -1.12   -1.47   -1.81   -2.09   -2.22   -2.17   -1.92   -1.49   -0.90   -0.13    0.96    2.50    4.59
+   115.0    0.00   -0.04   -0.15   -0.32   -0.54   -0.80   -1.12   -1.46   -1.80   -2.07   -2.20   -2.14   -1.88   -1.44   -0.83   -0.04    1.06    2.63    4.72
+   120.0    0.00   -0.04   -0.15   -0.31   -0.53   -0.80   -1.11   -1.45   -1.79   -2.06   -2.19   -2.12   -1.84   -1.39   -0.77    0.05    1.18    2.77    4.88
+   125.0    0.00   -0.04   -0.14   -0.31   -0.53   -0.80   -1.11   -1.45   -1.79   -2.06   -2.18   -2.10   -1.82   -1.34   -0.70    0.14    1.30    2.92    5.04
+   130.0    0.00   -0.04   -0.14   -0.31   -0.53   -0.80   -1.12   -1.46   -1.80   -2.06   -2.18   -2.10   -1.81   -1.32   -0.66    0.20    1.39    3.04    5.18
+   135.0    0.00   -0.04   -0.14   -0.31   -0.53   -0.80   -1.13   -1.48   -1.82   -2.09   -2.21   -2.12   -1.82   -1.33   -0.66    0.23    1.44    3.11    5.26
+   140.0    0.00   -0.04   -0.14   -0.31   -0.53   -0.81   -1.14   -1.50   -1.85   -2.13   -2.25   -2.17   -1.87   -1.37   -0.69    0.22    1.44    3.12    5.28
+   145.0    0.00   -0.04   -0.14   -0.31   -0.53   -0.82   -1.16   -1.53   -1.89   -2.18   -2.31   -2.24   -1.94   -1.45   -0.76    0.14    1.37    3.05    5.21
+   150.0    0.00   -0.04   -0.14   -0.31   -0.54   -0.83   -1.18   -1.57   -1.94   -2.24   -2.38   -2.32   -2.04   -1.55   -0.88    0.02    1.24    2.91    5.06
+   155.0    0.00   -0.04   -0.14   -0.31   -0.54   -0.84   -1.21   -1.60   -1.99   -2.31   -2.47   -2.42   -2.16   -1.69   -1.03   -0.14    1.06    2.70    4.85
+   160.0    0.00   -0.04   -0.14   -0.31   -0.55   -0.85   -1.23   -1.64   -2.04   -2.37   -2.55   -2.53   -2.29   -1.84   -1.20   -0.34    0.84    2.46    4.61
+   165.0    0.00   -0.04   -0.14   -0.31   -0.55   -0.86   -1.24   -1.67   -2.09   -2.43   -2.63   -2.63   -2.42   -1.99   -1.38   -0.55    0.60    2.21    4.35
+   170.0    0.00   -0.03   -0.14   -0.31   -0.55   -0.87   -1.26   -1.69   -2.12   -2.48   -2.70   -2.72   -2.53   -2.14   -1.55   -0.74    0.38    1.97    4.12
+   175.0    0.00   -0.03   -0.14   -0.31   -0.55   -0.87   -1.27   -1.71   -2.15   -2.52   -2.75   -2.80   -2.63   -2.25   -1.69   -0.91    0.20    1.78    3.95
+   180.0    0.00   -0.03   -0.13   -0.31   -0.55   -0.87   -1.27   -1.71   -2.16   -2.54   -2.78   -2.84   -2.69   -2.34   -1.79   -1.02    0.07    1.65    3.85
+   185.0    0.00   -0.04   -0.14   -0.31   -0.55   -0.87   -1.27   -1.71   -2.16   -2.54   -2.79   -2.86   -2.72   -2.38   -1.84   -1.07    0.02    1.61    3.85
+   190.0    0.00   -0.04   -0.14   -0.31   -0.55   -0.87   -1.26   -1.70   -2.14   -2.53   -2.78   -2.85   -2.71   -2.37   -1.83   -1.06    0.05    1.66    3.93
+   195.0    0.00   -0.04   -0.14   -0.31   -0.55   -0.87   -1.25   -1.69   -2.12   -2.50   -2.75   -2.81   -2.66   -2.31   -1.75   -0.97    0.16    1.80    4.09
+   200.0    0.00   -0.04   -0.14   -0.31   -0.55   -0.86   -1.24   -1.67   -2.10   -2.46   -2.70   -2.74   -2.58   -2.21   -1.63   -0.82    0.34    1.99    4.31
+   205.0    0.00   -0.04   -0.14   -0.31   -0.55   -0.86   -1.23   -1.65   -2.07   -2.42   -2.64   -2.66   -2.47   -2.07   -1.47   -0.62    0.56    2.24    4.56
+   210.0    0.00   -0.04   -0.14   -0.31   -0.55   -0.85   -1.22   -1.63   -2.04   -2.37   -2.57   -2.56   -2.35   -1.92   -1.28   -0.41    0.80    2.49    4.81
+   215.0    0.00   -0.04   -0.14   -0.31   -0.55   -0.85   -1.21   -1.62   -2.01   -2.33   -2.50   -2.47   -2.22   -1.75   -1.09   -0.19    1.03    2.73    5.04
+   220.0    0.00   -0.04   -0.14   -0.31   -0.55   -0.85   -1.21   -1.60   -1.98   -2.28   -2.42   -2.37   -2.09   -1.60   -0.91    0.00    1.24    2.94    5.23
+   225.0    0.00   -0.04   -0.14   -0.31   -0.55   -0.84   -1.20   -1.59   -1.95   -2.23   -2.36   -2.28   -1.97   -1.47   -0.76    0.16    1.39    3.09    5.35
+   230.0    0.00   -0.04   -0.14   -0.31   -0.55   -0.84   -1.19   -1.57   -1.93   -2.19   -2.30   -2.20   -1.88   -1.36   -0.66    0.26    1.49    3.17    5.41
+   235.0    0.00   -0.04   -0.14   -0.31   -0.55   -0.84   -1.18   -1.55   -1.90   -2.15   -2.25   -2.13   -1.81   -1.29   -0.60    0.30    1.52    3.18    5.41
+   240.0    0.00   -0.04   -0.15   -0.32   -0.55   -0.83   -1.17   -1.53   -1.87   -2.12   -2.20   -2.09   -1.77   -1.26   -0.59    0.29    1.49    3.14    5.37
+   245.0    0.00   -0.04   -0.15   -0.32   -0.54   -0.83   -1.16   -1.51   -1.85   -2.09   -2.17   -2.06   -1.75   -1.26   -0.61    0.24    1.41    3.06    5.30
+   250.0    0.00   -0.04   -0.15   -0.32   -0.54   -0.82   -1.14   -1.49   -1.82   -2.06   -2.15   -2.05   -1.75   -1.29   -0.67    0.15    1.31    2.96    5.22
+   255.0    0.00   -0.04   -0.15   -0.31   -0.53   -0.81   -1.13   -1.47   -1.80   -2.04   -2.14   -2.05   -1.78   -1.34   -0.75    0.05    1.20    2.87    5.16
+   260.0    0.00   -0.04   -0.15   -0.31   -0.53   -0.79   -1.11   -1.45   -1.77   -2.02   -2.13   -2.06   -1.81   -1.40   -0.82   -0.04    1.11    2.79    5.12
+   265.0    0.00   -0.04   -0.15   -0.31   -0.52   -0.78   -1.09   -1.43   -1.75   -2.01   -2.14   -2.09   -1.85   -1.45   -0.89   -0.11    1.04    2.75    5.11
+   270.0    0.00   -0.04   -0.14   -0.31   -0.51   -0.77   -1.07   -1.41   -1.74   -2.01   -2.15   -2.12   -1.89   -1.50   -0.94   -0.15    1.02    2.76    5.15
+   275.0    0.00   -0.04   -0.14   -0.30   -0.51   -0.76   -1.05   -1.39   -1.73   -2.02   -2.17   -2.14   -1.93   -1.53   -0.95   -0.15    1.04    2.80    5.21
+   280.0    0.00   -0.04   -0.14   -0.30   -0.50   -0.74   -1.04   -1.38   -1.73   -2.03   -2.19   -2.17   -1.95   -1.54   -0.94   -0.11    1.10    2.87    5.29
+   285.0    0.00   -0.04   -0.14   -0.29   -0.49   -0.73   -1.03   -1.38   -1.74   -2.04   -2.22   -2.20   -1.96   -1.53   -0.91   -0.05    1.18    2.96    5.37
+   290.0    0.00   -0.04   -0.14   -0.29   -0.48   -0.73   -1.03   -1.38   -1.75   -2.06   -2.24   -2.22   -1.97   -1.51   -0.86    0.03    1.27    3.05    5.44
+   295.0    0.00   -0.04   -0.13   -0.28   -0.48   -0.72   -1.03   -1.38   -1.76   -2.08   -2.26   -2.23   -1.96   -1.48   -0.80    0.10    1.35    3.11    5.47
+   300.0    0.00   -0.03   -0.13   -0.28   -0.47   -0.72   -1.03   -1.39   -1.78   -2.10   -2.28   -2.24   -1.95   -1.45   -0.75    0.16    1.40    3.14    5.45
+   305.0    0.00   -0.03   -0.13   -0.28   -0.47   -0.72   -1.04   -1.41   -1.80   -2.12   -2.30   -2.24   -1.94   -1.43   -0.72    0.18    1.41    3.11    5.38
+   310.0    0.00   -0.03   -0.13   -0.27   -0.47   -0.72   -1.04   -1.42   -1.82   -2.15   -2.31   -2.25   -1.94   -1.42   -0.72    0.17    1.36    3.02    5.25
+   315.0    0.00   -0.03   -0.12   -0.27   -0.46   -0.72   -1.05   -1.44   -1.84   -2.17   -2.33   -2.26   -1.95   -1.43   -0.75    0.10    1.25    2.86    5.06
+   320.0    0.00   -0.03   -0.12   -0.26   -0.46   -0.73   -1.06   -1.46   -1.86   -2.19   -2.35   -2.27   -1.97   -1.47   -0.82   -0.01    1.09    2.66    4.83
+   325.0    0.00   -0.03   -0.12   -0.26   -0.46   -0.73   -1.08   -1.48   -1.89   -2.21   -2.37   -2.30   -2.00   -1.53   -0.92   -0.16    0.88    2.41    4.56
+   330.0    0.00   -0.03   -0.11   -0.26   -0.46   -0.73   -1.09   -1.50   -1.91   -2.24   -2.40   -2.34   -2.06   -1.61   -1.05   -0.34    0.65    2.14    4.27
+   335.0    0.00   -0.03   -0.11   -0.25   -0.46   -0.74   -1.10   -1.51   -1.93   -2.27   -2.43   -2.39   -2.13   -1.71   -1.19   -0.53    0.42    1.86    3.98
+   340.0    0.00   -0.03   -0.11   -0.25   -0.46   -0.74   -1.10   -1.53   -1.95   -2.30   -2.47   -2.44   -2.21   -1.83   -1.34   -0.71    0.19    1.61    3.71
+   345.0    0.00   -0.03   -0.11   -0.25   -0.45   -0.74   -1.11   -1.54   -1.97   -2.33   -2.52   -2.50   -2.29   -1.94   -1.48   -0.88    0.00    1.39    3.48
+   350.0    0.00   -0.02   -0.11   -0.24   -0.45   -0.74   -1.11   -1.55   -1.99   -2.35   -2.56   -2.56   -2.37   -2.04   -1.59   -1.01   -0.14    1.23    3.30
+   355.0    0.00   -0.02   -0.10   -0.24   -0.45   -0.74   -1.11   -1.55   -2.00   -2.38   -2.60   -2.62   -2.44   -2.12   -1.68   -1.09   -0.22    1.15    3.18
+   360.0    0.00   -0.02   -0.10   -0.24   -0.45   -0.74   -1.11   -1.55   -2.00   -2.39   -2.62   -2.66   -2.50   -2.17   -1.72   -1.11   -0.23    1.14    3.14
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.38      0.61     57.69                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.12   -0.43   -0.88   -1.37   -1.88   -2.38   -2.90   -3.39   -3.77   -3.90   -3.67   -3.05   -2.09   -0.95    0.29    1.68    3.49    6.03
+     0.0    0.00   -0.18   -0.54   -0.99   -1.47   -1.92   -2.36   -2.79   -3.21   -3.55   -3.69   -3.50   -2.94   -2.04   -0.88    0.45    1.99    3.88    6.29
+     5.0    0.00   -0.18   -0.53   -0.99   -1.47   -1.92   -2.36   -2.80   -3.23   -3.56   -3.70   -3.52   -2.96   -2.06   -0.90    0.43    1.98    3.87    6.26
+    10.0    0.00   -0.17   -0.53   -0.98   -1.46   -1.93   -2.37   -2.82   -3.25   -3.58   -3.71   -3.53   -2.97   -2.08   -0.94    0.38    1.92    3.82    6.20
+    15.0    0.00   -0.17   -0.52   -0.98   -1.46   -1.93   -2.39   -2.84   -3.27   -3.61   -3.73   -3.54   -2.98   -2.10   -0.98    0.32    1.84    3.73    6.12
+    20.0    0.00   -0.17   -0.52   -0.98   -1.46   -1.94   -2.41   -2.87   -3.31   -3.64   -3.75   -3.55   -2.99   -2.12   -1.02    0.25    1.75    3.63    6.03
+    25.0    0.00   -0.17   -0.52   -0.97   -1.46   -1.95   -2.43   -2.91   -3.35   -3.68   -3.79   -3.57   -3.00   -2.13   -1.04    0.20    1.66    3.53    5.96
+    30.0    0.00   -0.16   -0.51   -0.97   -1.47   -1.97   -2.46   -2.95   -3.40   -3.73   -3.83   -3.59   -3.01   -2.13   -1.05    0.17    1.60    3.45    5.91
+    35.0    0.00   -0.16   -0.51   -0.97   -1.47   -1.98   -2.49   -2.99   -3.45   -3.78   -3.87   -3.62   -3.01   -2.12   -1.04    0.17    1.58    3.42    5.90
+    40.0    0.00   -0.16   -0.50   -0.96   -1.47   -1.99   -2.51   -3.03   -3.50   -3.84   -3.92   -3.66   -3.02   -2.10   -1.01    0.20    1.60    3.43    5.94
+    45.0    0.00   -0.15   -0.49   -0.96   -1.47   -2.00   -2.53   -3.06   -3.55   -3.89   -3.98   -3.69   -3.03   -2.08   -0.96    0.26    1.67    3.50    6.03
+    50.0    0.00   -0.15   -0.49   -0.95   -1.47   -2.01   -2.55   -3.09   -3.59   -3.95   -4.03   -3.73   -3.05   -2.06   -0.90    0.35    1.77    3.61    6.18
+    55.0    0.00   -0.14   -0.48   -0.95   -1.47   -2.01   -2.56   -3.11   -3.62   -3.99   -4.08   -3.78   -3.07   -2.04   -0.84    0.45    1.90    3.77    6.36
+    60.0    0.00   -0.14   -0.48   -0.94   -1.47   -2.01   -2.57   -3.12   -3.64   -4.02   -4.12   -3.82   -3.09   -2.04   -0.79    0.55    2.03    3.94    6.58
+    65.0    0.00   -0.13   -0.47   -0.94   -1.46   -2.01   -2.56   -3.12   -3.65   -4.04   -4.15   -3.86   -3.13   -2.04   -0.76    0.62    2.15    4.10    6.80
+    70.0    0.00   -0.13   -0.46   -0.93   -1.46   -2.00   -2.55   -3.12   -3.65   -4.05   -4.17   -3.89   -3.17   -2.07   -0.76    0.66    2.23    4.23    7.00
+    75.0    0.00   -0.12   -0.45   -0.92   -1.45   -1.99   -2.54   -3.10   -3.64   -4.05   -4.19   -3.92   -3.21   -2.11   -0.79    0.65    2.26    4.31    7.17
+    80.0    0.00   -0.12   -0.45   -0.91   -1.44   -1.98   -2.52   -3.08   -3.62   -4.04   -4.20   -3.95   -3.26   -2.17   -0.85    0.60    2.23    4.33    7.26
+    85.0    0.00   -0.11   -0.44   -0.90   -1.43   -1.96   -2.50   -3.06   -3.60   -4.02   -4.20   -3.98   -3.30   -2.24   -0.94    0.50    2.14    4.27    7.28
+    90.0    0.00   -0.11   -0.43   -0.89   -1.41   -1.95   -2.48   -3.03   -3.57   -4.01   -4.20   -3.99   -3.35   -2.32   -1.05    0.37    2.00    4.14    7.22
+    95.0    0.00   -0.10   -0.42   -0.88   -1.40   -1.93   -2.46   -3.01   -3.55   -3.99   -4.19   -4.01   -3.39   -2.39   -1.16    0.21    1.81    3.95    7.07
+   100.0    0.00   -0.10   -0.41   -0.87   -1.39   -1.91   -2.45   -2.99   -3.53   -3.98   -4.18   -4.01   -3.42   -2.46   -1.28    0.04    1.59    3.71    6.85
+   105.0    0.00   -0.09   -0.40   -0.86   -1.37   -1.90   -2.43   -2.97   -3.51   -3.96   -4.17   -4.01   -3.44   -2.51   -1.38   -0.12    1.38    3.45    6.57
+   110.0    0.00   -0.09   -0.39   -0.84   -1.35   -1.88   -2.41   -2.96   -3.50   -3.94   -4.16   -4.00   -3.44   -2.54   -1.45   -0.25    1.18    3.20    6.28
+   115.0    0.00   -0.08   -0.38   -0.83   -1.34   -1.86   -2.39   -2.94   -3.48   -3.92   -4.13   -3.98   -3.42   -2.54   -1.49   -0.34    1.03    2.97    5.98
+   120.0    0.00   -0.08   -0.37   -0.81   -1.32   -1.84   -2.37   -2.92   -3.45   -3.90   -4.10   -3.94   -3.39   -2.52   -1.48   -0.38    0.92    2.79    5.72
+   125.0    0.00   -0.07   -0.36   -0.80   -1.30   -1.82   -2.34   -2.89   -3.43   -3.86   -4.06   -3.89   -3.33   -2.46   -1.44   -0.37    0.88    2.68    5.52
+   130.0    0.00   -0.07   -0.35   -0.78   -1.28   -1.79   -2.32   -2.86   -3.39   -3.82   -4.00   -3.83   -3.26   -2.38   -1.37   -0.31    0.91    2.65    5.40
+   135.0    0.00   -0.06   -0.34   -0.77   -1.26   -1.77   -2.28   -2.82   -3.34   -3.76   -3.94   -3.75   -3.17   -2.28   -1.26   -0.20    0.99    2.69    5.37
+   140.0    0.00   -0.06   -0.33   -0.75   -1.24   -1.74   -2.25   -2.78   -3.29   -3.70   -3.86   -3.66   -3.06   -2.16   -1.13   -0.06    1.13    2.79    5.41
+   145.0    0.00   -0.05   -0.32   -0.74   -1.22   -1.71   -2.22   -2.73   -3.24   -3.63   -3.78   -3.57   -2.95   -2.04   -0.98    0.10    1.29    2.95    5.53
+   150.0    0.00   -0.05   -0.32   -0.72   -1.20   -1.69   -2.18   -2.69   -3.18   -3.56   -3.70   -3.47   -2.85   -1.91   -0.84    0.27    1.48    3.13    5.71
+   155.0    0.00   -0.05   -0.31   -0.71   -1.18   -1.66   -2.15   -2.65   -3.13   -3.50   -3.62   -3.38   -2.74   -1.79   -0.70    0.43    1.67    3.33    5.91
+   160.0    0.00   -0.05   -0.30   -0.70   -1.16   -1.64   -2.12   -2.61   -3.08   -3.44   -3.55   -3.30   -2.65   -1.69   -0.57    0.58    1.84    3.52    6.10
+   165.0    0.00   -0.05   -0.30   -0.69   -1.15   -1.63   -2.10   -2.58   -3.04   -3.39   -3.50   -3.24   -2.58   -1.61   -0.47    0.70    1.98    3.68    6.28
+   170.0    0.00   -0.04   -0.30   -0.69   -1.15   -1.61   -2.09   -2.56   -3.02   -3.36   -3.46   -3.20   -2.54   -1.55   -0.40    0.80    2.09    3.80    6.40
+   175.0    0.00   -0.04   -0.29   -0.69   -1.14   -1.61   -2.08   -2.56   -3.01   -3.35   -3.45   -3.19   -2.52   -1.52   -0.36    0.85    2.16    3.87    6.45
+   180.0    0.00   -0.04   -0.29   -0.69   -1.14   -1.61   -2.08   -2.56   -3.01   -3.36   -3.46   -3.20   -2.53   -1.53   -0.35    0.87    2.18    3.88    6.44
+   185.0    0.00   -0.05   -0.30   -0.69   -1.14   -1.62   -2.09   -2.57   -3.03   -3.38   -3.49   -3.24   -2.57   -1.57   -0.38    0.85    2.17    3.85    6.36
+   190.0    0.00   -0.05   -0.30   -0.69   -1.15   -1.63   -2.11   -2.59   -3.06   -3.42   -3.54   -3.30   -2.64   -1.64   -0.44    0.80    2.11    3.77    6.23
+   195.0    0.00   -0.05   -0.30   -0.70   -1.16   -1.64   -2.13   -2.62   -3.10   -3.47   -3.60   -3.38   -2.73   -1.73   -0.54    0.71    2.03    3.67    6.06
+   200.0    0.00   -0.05   -0.31   -0.71   -1.17   -1.66   -2.15   -2.65   -3.14   -3.52   -3.68   -3.47   -2.84   -1.85   -0.66    0.60    1.93    3.55    5.88
+   205.0    0.00   -0.06   -0.32   -0.72   -1.19   -1.68   -2.18   -2.69   -3.18   -3.59   -3.76   -3.57   -2.96   -1.99   -0.79    0.48    1.81    3.43    5.71
+   210.0    0.00   -0.06   -0.32   -0.73   -1.21   -1.70   -2.21   -2.73   -3.23   -3.65   -3.84   -3.68   -3.09   -2.13   -0.94    0.34    1.70    3.32    5.57
+   215.0    0.00   -0.06   -0.33   -0.74   -1.23   -1.73   -2.24   -2.76   -3.28   -3.71   -3.92   -3.78   -3.21   -2.27   -1.08    0.21    1.59    3.24    5.47
+   220.0    0.00   -0.07   -0.34   -0.76   -1.25   -1.75   -2.27   -2.81   -3.33   -3.77   -3.99   -3.87   -3.32   -2.39   -1.21    0.09    1.50    3.19    5.43
+   225.0    0.00   -0.07   -0.35   -0.78   -1.27   -1.78   -2.31   -2.85   -3.38   -3.83   -4.06   -3.94   -3.41   -2.49   -1.31    0.00    1.44    3.17    5.44
+   230.0    0.00   -0.08   -0.37   -0.79   -1.29   -1.81   -2.34   -2.89   -3.43   -3.89   -4.12   -4.00   -3.47   -2.56   -1.39   -0.06    1.41    3.19    5.49
+   235.0    0.00   -0.09   -0.38   -0.81   -1.31   -1.84   -2.38   -2.94   -3.48   -3.94   -4.17   -4.05   -3.51   -2.60   -1.42   -0.09    1.42    3.24    5.58
+   240.0    0.00   -0.09   -0.39   -0.83   -1.34   -1.87   -2.42   -2.98   -3.53   -3.99   -4.21   -4.07   -3.52   -2.60   -1.42   -0.07    1.46    3.32    5.69
+   245.0    0.00   -0.10   -0.40   -0.85   -1.36   -1.90   -2.45   -3.02   -3.58   -4.03   -4.24   -4.08   -3.50   -2.56   -1.37   -0.02    1.53    3.41    5.80
+   250.0    0.00   -0.11   -0.42   -0.87   -1.38   -1.92   -2.48   -3.06   -3.62   -4.06   -4.25   -4.07   -3.46   -2.50   -1.29    0.07    1.62    3.51    5.90
+   255.0    0.00   -0.11   -0.43   -0.88   -1.40   -1.94   -2.51   -3.09   -3.65   -4.08   -4.25   -4.04   -3.40   -2.41   -1.19    0.18    1.72    3.60    5.97
+   260.0    0.00   -0.12   -0.44   -0.90   -1.42   -1.96   -2.53   -3.11   -3.67   -4.09   -4.24   -4.00   -3.33   -2.30   -1.06    0.29    1.81    3.66    6.00
+   265.0    0.00   -0.13   -0.45   -0.92   -1.43   -1.98   -2.54   -3.12   -3.67   -4.09   -4.22   -3.95   -3.24   -2.19   -0.94    0.40    1.89    3.70    6.00
+   270.0    0.00   -0.13   -0.47   -0.93   -1.45   -1.99   -2.54   -3.12   -3.66   -4.07   -4.18   -3.89   -3.15   -2.08   -0.83    0.50    1.94    3.70    5.95
+   275.0    0.00   -0.14   -0.48   -0.94   -1.46   -1.99   -2.54   -3.10   -3.64   -4.03   -4.13   -3.82   -3.07   -1.99   -0.74    0.56    1.96    3.66    5.88
+   280.0    0.00   -0.14   -0.49   -0.95   -1.47   -1.99   -2.53   -3.08   -3.60   -3.98   -4.07   -3.74   -2.99   -1.91   -0.68    0.58    1.93    3.59    5.78
+   285.0    0.00   -0.15   -0.50   -0.97   -1.47   -1.99   -2.51   -3.05   -3.55   -3.92   -4.00   -3.67   -2.92   -1.85   -0.65    0.57    1.87    3.48    5.67
+   290.0    0.00   -0.15   -0.51   -0.97   -1.48   -1.98   -2.49   -3.01   -3.50   -3.85   -3.93   -3.60   -2.86   -1.82   -0.65    0.52    1.77    3.35    5.57
+   295.0    0.00   -0.16   -0.52   -0.98   -1.48   -1.98   -2.47   -2.97   -3.44   -3.78   -3.85   -3.53   -2.81   -1.80   -0.68    0.44    1.65    3.22    5.49
+   300.0    0.00   -0.16   -0.52   -0.99   -1.48   -1.97   -2.44   -2.93   -3.38   -3.71   -3.78   -3.48   -2.78   -1.81   -0.73    0.35    1.52    3.09    5.43
+   305.0    0.00   -0.17   -0.53   -1.00   -1.49   -1.96   -2.42   -2.89   -3.33   -3.65   -3.72   -3.43   -2.76   -1.83   -0.79    0.25    1.41    2.99    5.41
+   310.0    0.00   -0.17   -0.53   -1.00   -1.49   -1.95   -2.40   -2.85   -3.28   -3.60   -3.67   -3.40   -2.76   -1.85   -0.85    0.17    1.32    2.93    5.43
+   315.0    0.00   -0.17   -0.54   -1.00   -1.49   -1.95   -2.39   -2.83   -3.25   -3.56   -3.64   -3.38   -2.76   -1.88   -0.90    0.11    1.27    2.91    5.48
+   320.0    0.00   -0.18   -0.54   -1.01   -1.49   -1.94   -2.38   -2.81   -3.22   -3.53   -3.62   -3.37   -2.77   -1.91   -0.93    0.09    1.27    2.95    5.57
+   325.0    0.00   -0.18   -0.54   -1.01   -1.49   -1.94   -2.37   -2.79   -3.20   -3.52   -3.61   -3.37   -2.79   -1.93   -0.95    0.09    1.31    3.03    5.68
+   330.0    0.00   -0.18   -0.55   -1.01   -1.49   -1.94   -2.36   -2.79   -3.19   -3.51   -3.61   -3.39   -2.81   -1.95   -0.95    0.13    1.40    3.16    5.81
+   335.0    0.00   -0.18   -0.55   -1.01   -1.48   -1.93   -2.36   -2.78   -3.19   -3.51   -3.62   -3.40   -2.83   -1.96   -0.93    0.20    1.52    3.31    5.94
+   340.0    0.00   -0.18   -0.55   -1.01   -1.48   -1.93   -2.36   -2.78   -3.19   -3.52   -3.63   -3.43   -2.85   -1.98   -0.91    0.28    1.65    3.47    6.07
+   345.0    0.00   -0.18   -0.54   -1.00   -1.48   -1.93   -2.35   -2.78   -3.19   -3.52   -3.65   -3.45   -2.88   -1.99   -0.89    0.35    1.78    3.62    6.17
+   350.0    0.00   -0.18   -0.54   -1.00   -1.48   -1.92   -2.35   -2.78   -3.20   -3.53   -3.66   -3.47   -2.90   -2.00   -0.87    0.41    1.89    3.75    6.25
+   355.0    0.00   -0.18   -0.54   -1.00   -1.47   -1.92   -2.35   -2.79   -3.21   -3.54   -3.68   -3.49   -2.92   -2.02   -0.87    0.45    1.96    3.84    6.29
+   360.0    0.00   -0.18   -0.54   -0.99   -1.47   -1.92   -2.36   -2.79   -3.21   -3.55   -3.69   -3.50   -2.94   -2.04   -0.88    0.45    1.99    3.88    6.29
+   G02                                                      END OF FREQUENCY    
+   R01                                                      START OF FREQUENCY  
+      1.29     -0.19     66.73                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.05   -0.23   -0.49   -0.81   -1.17   -1.58   -1.99   -2.41   -2.75   -2.99   -3.04   -2.88   -2.49   -1.89   -1.04    0.19    1.90    4.21
+     0.0    0.00   -0.04   -0.19   -0.43   -0.74   -1.11   -1.52   -2.00   -2.47   -2.88   -3.15   -3.24   -3.12   -2.80   -2.28   -1.54   -0.47    1.08    3.15
+     5.0    0.00   -0.04   -0.20   -0.44   -0.75   -1.11   -1.55   -2.02   -2.49   -2.90   -3.18   -3.29   -3.18   -2.87   -2.35   -1.58   -0.49    1.06    3.16
+    10.0    0.00   -0.04   -0.21   -0.44   -0.76   -1.12   -1.55   -2.01   -2.48   -2.90   -3.19   -3.32   -3.22   -2.90   -2.37   -1.58   -0.45    1.12    3.21
+    15.0    0.00   -0.05   -0.22   -0.45   -0.77   -1.13   -1.56   -2.01   -2.47   -2.88   -3.19   -3.31   -3.23   -2.91   -2.36   -1.54   -0.37    1.24    3.35
+    20.0    0.00   -0.05   -0.23   -0.47   -0.78   -1.13   -1.54   -1.99   -2.45   -2.86   -3.16   -3.28   -3.19   -2.88   -2.31   -1.45   -0.26    1.41    3.55
+    25.0    0.00   -0.06   -0.23   -0.47   -0.79   -1.15   -1.54   -1.97   -2.40   -2.81   -3.11   -3.23   -3.15   -2.81   -2.23   -1.35   -0.10    1.59    3.79
+    30.0    0.00   -0.06   -0.23   -0.48   -0.80   -1.15   -1.54   -1.95   -2.37   -2.74   -3.04   -3.15   -3.06   -2.73   -2.12   -1.22    0.07    1.81    4.06
+    35.0    0.00   -0.06   -0.24   -0.49   -0.80   -1.15   -1.53   -1.93   -2.32   -2.68   -2.95   -3.06   -2.96   -2.62   -2.01   -1.08    0.23    2.02    4.33
+    40.0    0.00   -0.07   -0.25   -0.50   -0.81   -1.17   -1.53   -1.90   -2.29   -2.64   -2.88   -2.98   -2.87   -2.52   -1.91   -0.96    0.37    2.21    4.58
+    45.0    0.00   -0.07   -0.25   -0.50   -0.82   -1.16   -1.53   -1.89   -2.25   -2.58   -2.81   -2.89   -2.78   -2.42   -1.81   -0.87    0.50    2.36    4.80
+    50.0    0.00   -0.07   -0.26   -0.51   -0.83   -1.17   -1.53   -1.89   -2.24   -2.55   -2.77   -2.82   -2.70   -2.34   -1.73   -0.80    0.57    2.46    4.95
+    55.0    0.00   -0.07   -0.26   -0.52   -0.84   -1.19   -1.54   -1.89   -2.23   -2.54   -2.73   -2.78   -2.64   -2.29   -1.69   -0.75    0.59    2.50    5.02
+    60.0    0.00   -0.07   -0.26   -0.53   -0.84   -1.18   -1.54   -1.90   -2.24   -2.53   -2.73   -2.76   -2.61   -2.25   -1.65   -0.75    0.57    2.47    5.00
+    65.0    0.00   -0.07   -0.27   -0.52   -0.85   -1.19   -1.56   -1.92   -2.26   -2.56   -2.73   -2.76   -2.61   -2.25   -1.66   -0.79    0.51    2.38    4.92
+    70.0    0.00   -0.07   -0.27   -0.53   -0.85   -1.20   -1.57   -1.93   -2.28   -2.58   -2.76   -2.78   -2.62   -2.27   -1.69   -0.85    0.41    2.25    4.75
+    75.0    0.00   -0.08   -0.27   -0.54   -0.86   -1.20   -1.57   -1.95   -2.31   -2.61   -2.79   -2.81   -2.65   -2.29   -1.74   -0.92    0.30    2.09    4.56
+    80.0    0.00   -0.08   -0.28   -0.53   -0.86   -1.20   -1.59   -1.96   -2.33   -2.64   -2.83   -2.84   -2.68   -2.33   -1.78   -0.99    0.18    1.92    4.33
+    85.0    0.00   -0.08   -0.27   -0.53   -0.85   -1.20   -1.59   -1.97   -2.35   -2.67   -2.86   -2.87   -2.72   -2.36   -1.82   -1.05    0.08    1.78    4.12
+    90.0    0.00   -0.08   -0.27   -0.53   -0.85   -1.20   -1.58   -1.97   -2.36   -2.68   -2.87   -2.89   -2.74   -2.38   -1.85   -1.09    0.03    1.67    3.95
+    95.0    0.00   -0.08   -0.27   -0.53   -0.84   -1.19   -1.57   -1.97   -2.35   -2.67   -2.88   -2.89   -2.72   -2.38   -1.85   -1.09    0.01    1.63    3.87
+   100.0    0.00   -0.08   -0.27   -0.52   -0.84   -1.18   -1.55   -1.95   -2.34   -2.65   -2.87   -2.89   -2.71   -2.36   -1.82   -1.06    0.04    1.66    3.85
+   105.0    0.00   -0.08   -0.27   -0.52   -0.84   -1.18   -1.54   -1.94   -2.31   -2.64   -2.84   -2.85   -2.67   -2.31   -1.76   -0.99    0.13    1.76    3.95
+   110.0    0.00   -0.08   -0.27   -0.53   -0.83   -1.17   -1.53   -1.92   -2.30   -2.62   -2.79   -2.81   -2.62   -2.24   -1.68   -0.88    0.27    1.92    4.11
+   115.0    0.00   -0.08   -0.27   -0.53   -0.84   -1.16   -1.53   -1.92   -2.29   -2.59   -2.76   -2.77   -2.57   -2.17   -1.58   -0.75    0.43    2.13    4.35
+   120.0    0.00   -0.08   -0.28   -0.52   -0.83   -1.17   -1.54   -1.91   -2.28   -2.58   -2.75   -2.74   -2.51   -2.10   -1.49   -0.63    0.61    2.34    4.61
+   125.0    0.00   -0.08   -0.27   -0.53   -0.84   -1.18   -1.56   -1.93   -2.29   -2.59   -2.74   -2.72   -2.48   -2.04   -1.40   -0.50    0.78    2.57    4.87
+   130.0    0.00   -0.08   -0.27   -0.53   -0.85   -1.20   -1.58   -1.96   -2.32   -2.60   -2.75   -2.72   -2.47   -2.01   -1.34   -0.42    0.91    2.74    5.08
+   135.0    0.00   -0.08   -0.27   -0.54   -0.87   -1.23   -1.62   -2.00   -2.36   -2.65   -2.81   -2.75   -2.49   -2.02   -1.34   -0.38    0.98    2.85    5.23
+   140.0    0.00   -0.08   -0.27   -0.55   -0.88   -1.26   -1.65   -2.05   -2.42   -2.73   -2.87   -2.82   -2.55   -2.07   -1.37   -0.39    0.99    2.88    5.28
+   145.0    0.00   -0.08   -0.28   -0.55   -0.89   -1.29   -1.70   -2.11   -2.50   -2.81   -2.96   -2.92   -2.65   -2.17   -1.45   -0.47    0.91    2.81    5.21
+   150.0    0.00   -0.08   -0.28   -0.57   -0.91   -1.32   -1.74   -2.19   -2.59   -2.91   -3.07   -3.04   -2.78   -2.30   -1.60   -0.61    0.76    2.64    5.03
+   155.0    0.00   -0.08   -0.28   -0.58   -0.93   -1.34   -1.79   -2.24   -2.67   -3.01   -3.20   -3.19   -2.95   -2.48   -1.78   -0.80    0.55    2.38    4.75
+   160.0    0.00   -0.08   -0.28   -0.58   -0.95   -1.37   -1.84   -2.31   -2.74   -3.10   -3.32   -3.34   -3.13   -2.68   -2.00   -1.04    0.29    2.09    4.43
+   165.0    0.00   -0.08   -0.28   -0.59   -0.96   -1.39   -1.87   -2.36   -2.82   -3.21   -3.44   -3.48   -3.30   -2.87   -2.22   -1.29   -0.01    1.76    4.06
+   170.0    0.00   -0.07   -0.28   -0.59   -0.96   -1.41   -1.90   -2.39   -2.87   -3.28   -3.55   -3.62   -3.47   -3.08   -2.43   -1.53   -0.28    1.45    3.73
+   175.0    0.00   -0.07   -0.28   -0.59   -0.98   -1.42   -1.92   -2.43   -2.93   -3.35   -3.63   -3.75   -3.62   -3.24   -2.63   -1.75   -0.51    1.17    3.44
+   180.0    0.00   -0.07   -0.27   -0.59   -0.98   -1.42   -1.92   -2.43   -2.95   -3.39   -3.69   -3.83   -3.72   -3.37   -2.78   -1.90   -0.71    0.97    3.23
+   185.0    0.00   -0.08   -0.28   -0.59   -0.98   -1.42   -1.92   -2.44   -2.96   -3.40   -3.74   -3.88   -3.79   -3.46   -2.87   -2.01   -0.82    0.86    3.14
+   190.0    0.00   -0.08   -0.28   -0.59   -0.96   -1.42   -1.91   -2.43   -2.94   -3.40   -3.75   -3.90   -3.82   -3.50   -2.90   -2.05   -0.84    0.83    3.13
+   195.0    0.00   -0.07   -0.28   -0.58   -0.96   -1.41   -1.90   -2.41   -2.92   -3.38   -3.73   -3.88   -3.80   -3.47   -2.88   -2.01   -0.80    0.91    3.23
+   200.0    0.00   -0.07   -0.27   -0.58   -0.95   -1.39   -1.88   -2.38   -2.90   -3.34   -3.69   -3.82   -3.74   -3.40   -2.79   -1.92   -0.68    1.03    3.41
+   205.0    0.00   -0.07   -0.27   -0.57   -0.94   -1.38   -1.86   -2.35   -2.86   -3.30   -3.63   -3.76   -3.65   -3.28   -2.67   -1.77   -0.51    1.23    3.61
+   210.0    0.00   -0.07   -0.26   -0.55   -0.93   -1.36   -1.83   -2.32   -2.82   -3.24   -3.55   -3.66   -3.54   -3.15   -2.51   -1.60   -0.33    1.43    3.84
+   215.0    0.00   -0.07   -0.26   -0.54   -0.92   -1.34   -1.79   -2.29   -2.76   -3.18   -3.47   -3.55   -3.41   -2.99   -2.34   -1.41   -0.14    1.62    4.04
+   220.0    0.00   -0.06   -0.25   -0.53   -0.90   -1.32   -1.78   -2.25   -2.71   -3.12   -3.38   -3.44   -3.27   -2.85   -2.19   -1.25    0.03    1.79    4.21
+   225.0    0.00   -0.06   -0.24   -0.52   -0.89   -1.30   -1.74   -2.22   -2.66   -3.04   -3.28   -3.34   -3.14   -2.72   -2.05   -1.12    0.16    1.92    4.31
+   230.0    0.00   -0.06   -0.24   -0.51   -0.87   -1.28   -1.71   -2.17   -2.61   -2.97   -3.20   -3.23   -3.04   -2.60   -1.95   -1.03    0.24    1.98    4.34
+   235.0    0.00   -0.05   -0.23   -0.50   -0.86   -1.24   -1.68   -2.12   -2.55   -2.89   -3.12   -3.14   -2.94   -2.51   -1.88   -0.98    0.27    1.98    4.30
+   240.0    0.00   -0.05   -0.22   -0.50   -0.84   -1.21   -1.64   -2.07   -2.49   -2.83   -3.03   -3.06   -2.88   -2.46   -1.84   -0.98    0.26    1.94    4.24
+   245.0    0.00   -0.05   -0.22   -0.48   -0.81   -1.19   -1.61   -2.02   -2.42   -2.76   -2.96   -3.00   -2.81   -2.43   -1.83   -0.99    0.20    1.88    4.15
+   250.0    0.00   -0.05   -0.21   -0.47   -0.80   -1.16   -1.55   -1.97   -2.36   -2.69   -2.90   -2.94   -2.77   -2.42   -1.85   -1.04    0.14    1.80    4.07
+   255.0    0.00   -0.04   -0.20   -0.45   -0.76   -1.14   -1.52   -1.92   -2.31   -2.64   -2.85   -2.89   -2.76   -2.41   -1.89   -1.09    0.07    1.75    4.03
+   260.0    0.00   -0.04   -0.20   -0.44   -0.75   -1.10   -1.48   -1.88   -2.25   -2.57   -2.80   -2.86   -2.73   -2.43   -1.90   -1.12    0.04    1.72    4.02
+   265.0    0.00   -0.04   -0.19   -0.43   -0.73   -1.07   -1.44   -1.83   -2.20   -2.53   -2.77   -2.83   -2.72   -2.43   -1.92   -1.14    0.02    1.74    4.08
+   270.0    0.00   -0.04   -0.18   -0.43   -0.71   -1.05   -1.41   -1.79   -2.17   -2.50   -2.73   -2.82   -2.71   -2.41   -1.91   -1.13    0.05    1.81    4.20
+   275.0    0.00   -0.04   -0.17   -0.41   -0.70   -1.03   -1.37   -1.75   -2.13   -2.48   -2.71   -2.79   -2.70   -2.39   -1.86   -1.07    0.14    1.93    4.37
+   280.0    0.00   -0.04   -0.17   -0.41   -0.68   -1.00   -1.35   -1.73   -2.11   -2.47   -2.70   -2.78   -2.66   -2.35   -1.80   -0.98    0.25    2.07    4.57
+   285.0    0.00   -0.04   -0.17   -0.39   -0.67   -0.97   -1.33   -1.72   -2.10   -2.44   -2.70   -2.76   -2.63   -2.28   -1.73   -0.88    0.39    2.25    4.77
+   290.0    0.00   -0.03   -0.17   -0.39   -0.65   -0.97   -1.32   -1.71   -2.10   -2.44   -2.69   -2.75   -2.60   -2.22   -1.63   -0.75    0.54    2.42    4.98
+   295.0    0.00   -0.03   -0.16   -0.38   -0.65   -0.95   -1.32   -1.70   -2.10   -2.45   -2.67   -2.72   -2.54   -2.14   -1.51   -0.62    0.68    2.57    5.13
+   300.0    0.00   -0.02   -0.16   -0.38   -0.64   -0.95   -1.31   -1.70   -2.11   -2.45   -2.67   -2.71   -2.49   -2.07   -1.42   -0.50    0.80    2.68    5.23
+   305.0    0.00   -0.03   -0.16   -0.38   -0.64   -0.95   -1.32   -1.72   -2.12   -2.46   -2.68   -2.68   -2.45   -2.01   -1.34   -0.43    0.89    2.74    5.26
+   310.0    0.00   -0.03   -0.16   -0.37   -0.64   -0.95   -1.32   -1.72   -2.13   -2.48   -2.67   -2.68   -2.43   -1.96   -1.28   -0.37    0.91    2.73    5.21
+   315.0    0.00   -0.03   -0.15   -0.38   -0.64   -0.96   -1.33   -1.74   -2.15   -2.50   -2.69   -2.67   -2.42   -1.94   -1.27   -0.38    0.88    2.66    5.08
+   320.0    0.00   -0.03   -0.16   -0.37   -0.64   -0.97   -1.35   -1.77   -2.17   -2.52   -2.71   -2.67   -2.43   -1.96   -1.30   -0.42    0.79    2.53    4.90
+   325.0    0.00   -0.03   -0.16   -0.38   -0.65   -0.99   -1.38   -1.79   -2.21   -2.54   -2.73   -2.70   -2.46   -2.00   -1.37   -0.52    0.66    2.35    4.66
+   330.0    0.00   -0.03   -0.16   -0.39   -0.66   -1.00   -1.40   -1.82   -2.24   -2.59   -2.77   -2.75   -2.52   -2.08   -1.46   -0.66    0.48    2.13    4.39
+   335.0    0.00   -0.04   -0.16   -0.39   -0.67   -1.02   -1.42   -1.85   -2.28   -2.63   -2.82   -2.83   -2.60   -2.18   -1.59   -0.82    0.29    1.89    4.11
+   340.0    0.00   -0.04   -0.17   -0.40   -0.69   -1.04   -1.44   -1.89   -2.32   -2.68   -2.88   -2.90   -2.70   -2.31   -1.74   -0.99    0.08    1.66    3.83
+   345.0    0.00   -0.04   -0.18   -0.41   -0.69   -1.06   -1.47   -1.92   -2.36   -2.74   -2.97   -2.99   -2.80   -2.44   -1.91   -1.17   -0.11    1.44    3.59
+   350.0    0.00   -0.03   -0.18   -0.41   -0.71   -1.07   -1.49   -1.95   -2.40   -2.79   -3.04   -3.07   -2.91   -2.57   -2.05   -1.32   -0.27    1.26    3.39
+   355.0    0.00   -0.04   -0.19   -0.42   -0.73   -1.09   -1.51   -1.98   -2.45   -2.85   -3.10   -3.16   -3.02   -2.69   -2.18   -1.45   -0.39    1.14    3.23
+   360.0    0.00   -0.04   -0.19   -0.43   -0.74   -1.11   -1.52   -2.00   -2.47   -2.88   -3.15   -3.24   -3.12   -2.80   -2.28   -1.54   -0.47    1.08    3.15
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+      0.38      0.61     57.69                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.13   -0.45   -0.92   -1.42   -1.92   -2.42   -2.94   -3.44   -3.87   -4.05   -3.85   -3.25   -2.25   -1.03    0.33    1.87    3.86    6.63
+     0.0    0.00   -0.17   -0.55   -1.00   -1.49   -1.93   -2.37   -2.83   -3.29   -3.69   -3.89   -3.73   -3.15   -2.18   -0.94    0.48    2.13    4.23    7.11
+     5.0    0.00   -0.18   -0.54   -1.01   -1.51   -1.96   -2.40   -2.86   -3.33   -3.73   -3.94   -3.78   -3.22   -2.27   -1.03    0.36    2.01    4.12    7.00
+    10.0    0.00   -0.17   -0.54   -1.02   -1.50   -1.98   -2.43   -2.90   -3.38   -3.77   -3.97   -3.83   -3.27   -2.34   -1.15    0.22    1.84    3.96    6.85
+    15.0    0.00   -0.17   -0.54   -1.02   -1.52   -2.00   -2.46   -2.94   -3.41   -3.82   -4.01   -3.86   -3.32   -2.42   -1.27    0.07    1.66    3.76    6.65
+    20.0    0.00   -0.17   -0.54   -1.03   -1.53   -2.03   -2.51   -2.98   -3.46   -3.85   -4.04   -3.90   -3.37   -2.50   -1.38   -0.08    1.49    3.56    6.43
+    25.0    0.00   -0.17   -0.55   -1.03   -1.55   -2.05   -2.53   -3.03   -3.50   -3.89   -4.08   -3.93   -3.41   -2.56   -1.47   -0.20    1.34    3.39    6.23
+    30.0    0.00   -0.17   -0.54   -1.04   -1.57   -2.08   -2.58   -3.08   -3.55   -3.94   -4.12   -3.96   -3.44   -2.60   -1.52   -0.27    1.23    3.25    6.06
+    35.0    0.00   -0.17   -0.55   -1.04   -1.58   -2.11   -2.62   -3.12   -3.60   -3.99   -4.16   -4.00   -3.47   -2.62   -1.54   -0.29    1.20    3.18    5.94
+    40.0    0.00   -0.17   -0.54   -1.04   -1.59   -2.12   -2.64   -3.16   -3.65   -4.04   -4.20   -4.04   -3.48   -2.62   -1.52   -0.26    1.22    3.19    5.90
+    45.0    0.00   -0.16   -0.53   -1.05   -1.60   -2.14   -2.68   -3.20   -3.70   -4.09   -4.26   -4.07   -3.50   -2.60   -1.47   -0.19    1.32    3.26    5.96
+    50.0    0.00   -0.16   -0.53   -1.04   -1.60   -2.16   -2.70   -3.24   -3.74   -4.15   -4.31   -4.11   -3.51   -2.57   -1.39   -0.06    1.46    3.41    6.10
+    55.0    0.00   -0.15   -0.52   -1.04   -1.60   -2.16   -2.71   -3.26   -3.79   -4.20   -4.37   -4.16   -3.53   -2.53   -1.30    0.07    1.64    3.62    6.31
+    60.0    0.00   -0.15   -0.52   -1.03   -1.60   -2.16   -2.73   -3.28   -3.82   -4.24   -4.41   -4.20   -3.54   -2.51   -1.22    0.22    1.82    3.84    6.58
+    65.0    0.00   -0.14   -0.51   -1.03   -1.59   -2.17   -2.73   -3.29   -3.84   -4.28   -4.45   -4.24   -3.56   -2.48   -1.15    0.33    2.00    4.06    6.87
+    70.0    0.00   -0.14   -0.50   -1.02   -1.59   -2.15   -2.72   -3.30   -3.85   -4.29   -4.49   -4.27   -3.60   -2.49   -1.11    0.42    2.12    4.24    7.14
+    75.0    0.00   -0.13   -0.49   -1.01   -1.58   -2.14   -2.71   -3.28   -3.85   -4.31   -4.51   -4.30   -3.62   -2.51   -1.11    0.44    2.19    4.37    7.37
+    80.0    0.00   -0.13   -0.49   -0.99   -1.56   -2.12   -2.68   -3.26   -3.83   -4.30   -4.52   -4.33   -3.66   -2.55   -1.14    0.42    2.19    4.43    7.50
+    85.0    0.00   -0.12   -0.48   -0.97   -1.54   -2.09   -2.65   -3.23   -3.80   -4.27   -4.52   -4.35   -3.68   -2.59   -1.21    0.35    2.12    4.39    7.54
+    90.0    0.00   -0.12   -0.47   -0.96   -1.51   -2.07   -2.61   -3.18   -3.76   -4.25   -4.50   -4.34   -3.73   -2.66   -1.31    0.24    2.00    4.27    7.47
+    95.0    0.00   -0.11   -0.46   -0.95   -1.49   -2.04   -2.58   -3.15   -3.72   -4.22   -4.48   -4.35   -3.75   -2.71   -1.40    0.09    1.82    4.08    7.29
+   100.0    0.00   -0.11   -0.45   -0.93   -1.47   -2.01   -2.55   -3.11   -3.68   -4.19   -4.44   -4.33   -3.77   -2.77   -1.50   -0.06    1.63    3.85    7.03
+   105.0    0.00   -0.10   -0.44   -0.92   -1.44   -1.98   -2.52   -3.07   -3.64   -4.14   -4.41   -4.31   -3.76   -2.80   -1.59   -0.19    1.44    3.59    6.71
+   110.0    0.00   -0.10   -0.42   -0.89   -1.42   -1.95   -2.48   -3.04   -3.60   -4.09   -4.38   -4.28   -3.74   -2.81   -1.63   -0.30    1.26    3.35    6.38
+   115.0    0.00   -0.09   -0.41   -0.88   -1.40   -1.92   -2.45   -3.01   -3.57   -4.06   -4.33   -4.24   -3.70   -2.79   -1.64   -0.36    1.14    3.13    6.05
+   120.0    0.00   -0.09   -0.40   -0.85   -1.37   -1.89   -2.42   -2.98   -3.53   -4.03   -4.28   -4.18   -3.65   -2.75   -1.61   -0.37    1.06    2.97    5.79
+   125.0    0.00   -0.08   -0.39   -0.84   -1.35   -1.87   -2.38   -2.94   -3.50   -3.98   -4.23   -4.11   -3.57   -2.66   -1.54   -0.33    1.05    2.89    5.61
+   130.0    0.00   -0.08   -0.38   -0.82   -1.33   -1.84   -2.37   -2.91   -3.46   -3.94   -4.17   -4.04   -3.48   -2.56   -1.44   -0.24    1.10    2.89    5.53
+   135.0    0.00   -0.07   -0.37   -0.81   -1.31   -1.82   -2.33   -2.88   -3.42   -3.89   -4.11   -3.96   -3.38   -2.43   -1.31   -0.11    1.20    2.95    5.55
+   140.0    0.00   -0.07   -0.37   -0.80   -1.30   -1.80   -2.31   -2.85   -3.39   -3.84   -4.04   -3.87   -3.27   -2.31   -1.17    0.04    1.35    3.07    5.65
+   145.0    0.00   -0.06   -0.36   -0.79   -1.28   -1.77   -2.29   -2.81   -3.35   -3.78   -3.98   -3.79   -3.16   -2.18   -1.02    0.20    1.50    3.24    5.82
+   150.0    0.00   -0.06   -0.36   -0.77   -1.27   -1.76   -2.25   -2.78   -3.31   -3.73   -3.91   -3.71   -3.07   -2.06   -0.88    0.35    1.68    3.42    6.04
+   155.0    0.00   -0.06   -0.35   -0.77   -1.25   -1.73   -2.22   -2.75   -3.26   -3.68   -3.86   -3.64   -2.98   -1.96   -0.77    0.49    1.84    3.59    6.26
+   160.0    0.00   -0.07   -0.34   -0.77   -1.23   -1.71   -2.20   -2.71   -3.22   -3.64   -3.81   -3.59   -2.91   -1.89   -0.67    0.60    1.97    3.76    6.44
+   165.0    0.00   -0.07   -0.34   -0.76   -1.23   -1.71   -2.18   -2.68   -3.19   -3.60   -3.77   -3.56   -2.88   -1.85   -0.60    0.69    2.08    3.88    6.59
+   170.0    0.00   -0.06   -0.35   -0.76   -1.23   -1.69   -2.17   -2.66   -3.17   -3.58   -3.75   -3.54   -2.87   -1.82   -0.57    0.74    2.14    3.95    6.66
+   175.0    0.00   -0.06   -0.34   -0.76   -1.23   -1.70   -2.16   -2.66   -3.16   -3.57   -3.75   -3.55   -2.89   -1.83   -0.57    0.75    2.17    3.97    6.66
+   180.0    0.00   -0.06   -0.34   -0.77   -1.24   -1.70   -2.17   -2.66   -3.16   -3.58   -3.77   -3.58   -2.92   -1.88   -0.61    0.73    2.14    3.94    6.59
+   185.0    0.00   -0.07   -0.35   -0.77   -1.24   -1.72   -2.18   -2.67   -3.17   -3.60   -3.80   -3.62   -2.97   -1.95   -0.67    0.67    2.10    3.87    6.48
+   190.0    0.00   -0.07   -0.35   -0.78   -1.25   -1.73   -2.20   -2.69   -3.20   -3.63   -3.84   -3.68   -3.05   -2.03   -0.75    0.59    2.01    3.78    6.33
+   195.0    0.00   -0.07   -0.35   -0.79   -1.26   -1.74   -2.23   -2.72   -3.23   -3.68   -3.89   -3.75   -3.13   -2.13   -0.87    0.48    1.92    3.67    6.17
+   200.0    0.00   -0.07   -0.36   -0.80   -1.27   -1.76   -2.25   -2.75   -3.27   -3.71   -3.95   -3.82   -3.23   -2.24   -0.99    0.36    1.81    3.56    6.03
+   205.0    0.00   -0.08   -0.37   -0.81   -1.29   -1.78   -2.28   -2.79   -3.31   -3.77   -4.02   -3.89   -3.33   -2.37   -1.12    0.24    1.70    3.48    5.94
+   210.0    0.00   -0.08   -0.37   -0.81   -1.31   -1.80   -2.31   -2.83   -3.35   -3.81   -4.07   -3.97   -3.43   -2.48   -1.26    0.10    1.60    3.42    5.90
+   215.0    0.00   -0.07   -0.38   -0.82   -1.33   -1.83   -2.32   -2.84   -3.38   -3.86   -4.12   -4.04   -3.51   -2.59   -1.37   -0.21    1.52    3.40    5.93
+   220.0    0.00   -0.08   -0.38   -0.83   -1.33   -1.83   -2.34   -2.88   -3.41   -3.89   -4.16   -4.09   -3.58   -2.67   -1.47   -0.09    1.48    3.43    6.03
+   225.0    0.00   -0.08   -0.39   -0.85   -1.34   -1.85   -2.36   -2.89   -3.43   -3.92   -4.19   -4.12   -3.64   -2.73   -1.53   -0.14    1.48    3.50    6.18
+   230.0    0.00   -0.09   -0.41   -0.85   -1.35   -1.85   -2.36   -2.90   -3.45   -3.94   -4.22   -4.15   -3.65   -2.76   -1.57   -0.14    1.51    3.61    6.37
+   235.0    0.00   -0.10   -0.41   -0.85   -1.35   -1.86   -2.37   -2.92   -3.47   -3.95   -4.24   -4.17   -3.66   -2.75   -1.54   -0.10    1.60    3.76    6.59
+   240.0    0.00   -0.10   -0.42   -0.87   -1.36   -1.86   -2.38   -2.92   -3.48   -3.98   -4.24   -4.15   -3.63   -2.71   -1.48   -0.01    1.74    3.95    6.82
+   245.0    0.00   -0.11   -0.42   -0.87   -1.37   -1.87   -2.38   -2.92   -3.49   -3.98   -4.24   -4.13   -3.58   -2.62   -1.36    0.13    1.91    4.14    7.03
+   250.0    0.00   -0.12   -0.43   -0.88   -1.37   -1.87   -2.38   -2.93   -3.50   -3.98   -4.22   -4.09   -3.50   -2.51   -1.21    0.31    2.10    4.33    7.22
+   255.0    0.00   -0.12   -0.44   -0.89   -1.38   -1.87   -2.39   -2.94   -3.50   -3.97   -4.20   -4.03   -3.41   -2.37   -1.04    0.50    2.29    4.52    7.37
+   260.0    0.00   -0.12   -0.45   -0.90   -1.38   -1.88   -2.40   -2.94   -3.51   -3.96   -4.17   -3.97   -3.29   -2.20   -0.84    0.70    2.47    4.66    7.46
+   265.0    0.00   -0.13   -0.45   -0.91   -1.39   -1.88   -2.39   -2.94   -3.49   -3.95   -4.12   -3.89   -3.17   -2.04   -0.65    0.89    2.64    4.77    7.52
+   270.0    0.00   -0.13   -0.47   -0.92   -1.41   -1.89   -2.39   -2.94   -3.48   -3.92   -4.07   -3.80   -3.03   -1.87   -0.48    1.06    2.76    4.83    7.50
+   275.0    0.00   -0.14   -0.47   -0.92   -1.41   -1.89   -2.40   -2.93   -3.47   -3.88   -4.01   -3.70   -2.92   -1.74   -0.33    1.18    2.83    4.84    7.46
+   280.0    0.00   -0.13   -0.48   -0.93   -1.43   -1.90   -2.40   -2.93   -3.45   -3.83   -3.94   -3.60   -2.80   -1.62   -0.23    1.24    2.83    4.79    7.38
+   285.0    0.00   -0.14   -0.49   -0.95   -1.43   -1.92   -2.40   -2.92   -3.41   -3.78   -3.86   -3.51   -2.70   -1.52   -0.17    1.25    2.78    4.69    7.26
+   290.0    0.00   -0.14   -0.50   -0.95   -1.44   -1.91   -2.39   -2.89   -3.37   -3.71   -3.78   -3.42   -2.61   -1.47   -0.16    1.20    2.68    4.56    7.13
+   295.0    0.00   -0.15   -0.51   -0.96   -1.44   -1.92   -2.39   -2.87   -3.32   -3.64   -3.69   -3.33   -2.55   -1.44   -0.18    1.12    2.55    4.40    7.01
+   300.0    0.00   -0.15   -0.51   -0.97   -1.45   -1.93   -2.37   -2.84   -3.27   -3.58   -3.61   -3.27   -2.51   -1.45   -0.24    1.01    2.40    4.24    6.88
+   305.0    0.00   -0.16   -0.52   -0.98   -1.46   -1.92   -2.36   -2.81   -3.22   -3.52   -3.55   -3.22   -2.50   -1.48   -0.32    0.88    2.26    4.09    6.79
+   310.0    0.00   -0.16   -0.52   -0.98   -1.47   -1.91   -2.34   -2.77   -3.17   -3.47   -3.50   -3.20   -2.51   -1.52   -0.41    0.77    2.13    3.98    6.73
+   315.0    0.00   -0.16   -0.53   -0.99   -1.47   -1.91   -2.33   -2.75   -3.14   -3.43   -3.49   -3.20   -2.53   -1.58   -0.49    0.68    2.04    3.91    6.69
+   320.0    0.00   -0.17   -0.53   -1.00   -1.47   -1.90   -2.32   -2.73   -3.12   -3.40   -3.48   -3.22   -2.58   -1.65   -0.55    0.63    2.01    3.90    6.70
+   325.0    0.00   -0.17   -0.53   -1.00   -1.47   -1.90   -2.31   -2.71   -3.10   -3.41   -3.50   -3.24   -2.64   -1.71   -0.61    0.59    2.00    3.92    6.74
+   330.0    0.00   -0.17   -0.54   -1.00   -1.47   -1.90   -2.30   -2.71   -3.10   -3.42   -3.53   -3.31   -2.71   -1.77   -0.66    0.59    2.04    3.99    6.82
+   335.0    0.00   -0.17   -0.54   -1.00   -1.47   -1.89   -2.30   -2.71   -3.12   -3.45   -3.58   -3.37   -2.77   -1.83   -0.68    0.61    2.11    4.08    6.90
+   340.0    0.00   -0.17   -0.54   -1.00   -1.47   -1.90   -2.31   -2.72   -3.14   -3.50   -3.64   -3.45   -2.85   -1.90   -0.70    0.63    2.17    4.18    7.01
+   345.0    0.00   -0.17   -0.53   -1.00   -1.47   -1.91   -2.31   -2.74   -3.17   -3.53   -3.71   -3.52   -2.93   -1.96   -0.74    0.64    2.22    4.25    7.09
+   350.0    0.00   -0.17   -0.54   -1.00   -1.48   -1.91   -2.33   -2.77   -3.21   -3.59   -3.77   -3.60   -3.00   -2.02   -0.78    0.62    2.24    4.30    7.15
+   355.0    0.00   -0.17   -0.54   -1.01   -1.48   -1.92   -2.35   -2.80   -3.25   -3.64   -3.83   -3.67   -3.07   -2.10   -0.85    0.58    2.21    4.30    7.15
+   360.0    0.00   -0.17   -0.55   -1.00   -1.49   -1.93   -2.37   -2.83   -3.29   -3.69   -3.89   -3.73   -3.15   -2.18   -0.94    0.48    2.13    4.23    7.11
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TRM55971.00     SCIT                                        TYPE / SERIAL NO    
+FIELD               NGS                      2    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      2.28      1.23     67.75                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.43   -0.80   -1.13   -1.42   -1.82   -2.26   -2.69   -2.97   -3.21   -3.26   -3.29   -3.23   -3.15   -2.88   -2.31   -1.03
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.82      1.01     60.15                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.43   -0.81   -1.18   -1.59   -1.78   -2.29   -2.77   -3.31   -3.71   -3.85   -3.76   -3.43   -2.73   -1.83   -0.51    1.55
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TRM55971.00     TZGD                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               8    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     4                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+Number of Calibrated Antennas GPS:      008                 COMMENT             
+Number of Individual Calibrations GPS:  016                 COMMENT             
+Number of Calibrated Antennas GLO:      008                 COMMENT             
+Number of Individual Calibrations GLO:  020                 COMMENT             
+# GLONASS PCV                                               COMMENT             
+#  derived from Delta PCV per 25.0 MHz                      COMMENT             
+#  for frequency channel number k=0                         COMMENT             
+   G01                                                      START OF FREQUENCY  
+      1.13     -0.17     65.02                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.06   -0.25   -0.54   -0.92   -1.36   -1.84   -2.29   -2.67   -2.94   -3.03   -2.93   -2.61   -2.05   -1.22   -0.08    1.45    3.39    5.68
+     0.0    0.00   -0.05   -0.22   -0.50   -0.87   -1.33   -1.85   -2.38   -2.88   -3.25   -3.43   -3.37   -3.08   -2.59   -1.94   -1.08    0.09    1.72    3.87
+     5.0    0.00   -0.05   -0.22   -0.50   -0.87   -1.32   -1.84   -2.37   -2.87   -3.24   -3.42   -3.37   -3.08   -2.59   -1.92   -1.04    0.16    1.81    3.98
+    10.0    0.00   -0.05   -0.22   -0.50   -0.87   -1.32   -1.82   -2.35   -2.84   -3.21   -3.39   -3.35   -3.06   -2.56   -1.87   -0.94    0.31    2.00    4.17
+    15.0    0.00   -0.05   -0.22   -0.49   -0.86   -1.31   -1.80   -2.32   -2.79   -3.16   -3.34   -3.30   -3.02   -2.51   -1.78   -0.80    0.52    2.26    4.44
+    20.0    0.00   -0.05   -0.22   -0.49   -0.86   -1.29   -1.78   -2.28   -2.74   -3.09   -3.27   -3.23   -2.96   -2.44   -1.67   -0.62    0.77    2.57    4.77
+    25.0    0.00   -0.05   -0.22   -0.49   -0.86   -1.28   -1.76   -2.24   -2.67   -3.01   -3.19   -3.15   -2.88   -2.35   -1.54   -0.43    1.05    2.92    5.14
+    30.0    0.00   -0.05   -0.22   -0.49   -0.85   -1.28   -1.74   -2.20   -2.61   -2.93   -3.09   -3.06   -2.78   -2.24   -1.40   -0.23    1.33    3.27    5.53
+    35.0    0.00   -0.05   -0.22   -0.49   -0.85   -1.27   -1.72   -2.16   -2.56   -2.85   -3.00   -2.96   -2.68   -2.14   -1.27   -0.04    1.58    3.60    5.91
+    40.0    0.00   -0.05   -0.22   -0.49   -0.86   -1.27   -1.71   -2.14   -2.51   -2.78   -2.91   -2.86   -2.58   -2.03   -1.15    0.12    1.80    3.88    6.27
+    45.0    0.00   -0.05   -0.22   -0.50   -0.86   -1.28   -1.71   -2.13   -2.48   -2.73   -2.84   -2.78   -2.49   -1.94   -1.05    0.24    1.96    4.10    6.57
+    50.0    0.00   -0.05   -0.22   -0.50   -0.87   -1.29   -1.72   -2.12   -2.46   -2.69   -2.78   -2.70   -2.42   -1.86   -0.97    0.32    2.07    4.26    6.80
+    55.0    0.00   -0.05   -0.22   -0.51   -0.88   -1.30   -1.74   -2.13   -2.46   -2.67   -2.74   -2.65   -2.36   -1.81   -0.92    0.36    2.11    4.33    6.95
+    60.0    0.00   -0.05   -0.23   -0.51   -0.89   -1.32   -1.76   -2.15   -2.47   -2.67   -2.72   -2.62   -2.32   -1.77   -0.90    0.37    2.10    4.33    7.02
+    65.0    0.00   -0.05   -0.23   -0.52   -0.90   -1.33   -1.78   -2.18   -2.49   -2.68   -2.72   -2.60   -2.29   -1.75   -0.90    0.34    2.04    4.26    6.99
+    70.0    0.00   -0.06   -0.23   -0.52   -0.91   -1.35   -1.80   -2.21   -2.52   -2.70   -2.73   -2.60   -2.28   -1.74   -0.91    0.30    1.96    4.15    6.89
+    75.0    0.00   -0.06   -0.24   -0.53   -0.92   -1.37   -1.83   -2.24   -2.55   -2.73   -2.75   -2.61   -2.28   -1.74   -0.92    0.24    1.86    4.01    6.73
+    80.0    0.00   -0.06   -0.24   -0.54   -0.93   -1.39   -1.85   -2.26   -2.58   -2.76   -2.78   -2.62   -2.29   -1.75   -0.94    0.20    1.77    3.87    6.53
+    85.0    0.00   -0.06   -0.24   -0.54   -0.94   -1.40   -1.86   -2.28   -2.60   -2.78   -2.80   -2.64   -2.30   -1.75   -0.95    0.16    1.69    3.74    6.34
+    90.0    0.00   -0.06   -0.25   -0.55   -0.95   -1.41   -1.88   -2.30   -2.62   -2.80   -2.81   -2.65   -2.30   -1.75   -0.95    0.15    1.65    3.64    6.16
+    95.0    0.00   -0.06   -0.25   -0.56   -0.96   -1.42   -1.88   -2.30   -2.62   -2.80   -2.82   -2.65   -2.29   -1.74   -0.94    0.16    1.64    3.60    6.03
+   100.0    0.00   -0.07   -0.26   -0.56   -0.96   -1.42   -1.89   -2.31   -2.63   -2.80   -2.81   -2.64   -2.28   -1.72   -0.91    0.19    1.67    3.60    5.96
+   105.0    0.00   -0.07   -0.26   -0.57   -0.97   -1.43   -1.89   -2.31   -2.62   -2.80   -2.81   -2.64   -2.27   -1.70   -0.88    0.24    1.74    3.66    5.96
+   110.0    0.00   -0.07   -0.27   -0.58   -0.98   -1.43   -1.89   -2.31   -2.62   -2.80   -2.81   -2.63   -2.26   -1.67   -0.84    0.30    1.82    3.75    6.01
+   115.0    0.00   -0.07   -0.27   -0.58   -0.98   -1.44   -1.90   -2.31   -2.62   -2.80   -2.81   -2.63   -2.25   -1.66   -0.81    0.36    1.91    3.87    6.11
+   120.0    0.00   -0.08   -0.28   -0.59   -0.99   -1.45   -1.91   -2.32   -2.63   -2.81   -2.82   -2.64   -2.26   -1.66   -0.79    0.40    1.99    3.99    6.23
+   125.0    0.00   -0.08   -0.28   -0.60   -1.00   -1.46   -1.92   -2.33   -2.65   -2.84   -2.85   -2.67   -2.29   -1.68   -0.80    0.42    2.05    4.08    6.34
+   130.0    0.00   -0.08   -0.29   -0.60   -1.01   -1.47   -1.93   -2.35   -2.68   -2.88   -2.90   -2.72   -2.34   -1.72   -0.83    0.41    2.06    4.12    6.42
+   135.0    0.00   -0.08   -0.29   -0.61   -1.02   -1.48   -1.95   -2.38   -2.72   -2.93   -2.96   -2.80   -2.41   -1.79   -0.89    0.35    2.02    4.11    6.43
+   140.0    0.00   -0.08   -0.30   -0.62   -1.03   -1.50   -1.97   -2.41   -2.77   -2.99   -3.04   -2.89   -2.51   -1.89   -0.99    0.26    1.92    4.01    6.35
+   145.0    0.00   -0.09   -0.30   -0.63   -1.04   -1.51   -1.99   -2.45   -2.82   -3.07   -3.14   -3.00   -2.63   -2.02   -1.12    0.12    1.77    3.85    6.20
+   150.0    0.00   -0.09   -0.30   -0.63   -1.05   -1.53   -2.01   -2.48   -2.87   -3.14   -3.23   -3.12   -2.76   -2.15   -1.27   -0.05    1.57    3.61    5.96
+   155.0    0.00   -0.09   -0.31   -0.64   -1.06   -1.54   -2.03   -2.51   -2.92   -3.21   -3.33   -3.23   -2.89   -2.30   -1.43   -0.25    1.33    3.33    5.66
+   160.0    0.00   -0.09   -0.31   -0.65   -1.07   -1.55   -2.05   -2.53   -2.96   -3.28   -3.42   -3.34   -3.02   -2.44   -1.59   -0.44    1.08    3.03    5.34
+   165.0    0.00   -0.09   -0.31   -0.65   -1.07   -1.55   -2.06   -2.55   -2.99   -3.33   -3.49   -3.44   -3.13   -2.57   -1.74   -0.63    0.84    2.73    5.02
+   170.0    0.00   -0.09   -0.31   -0.65   -1.07   -1.55   -2.06   -2.56   -3.01   -3.36   -3.55   -3.51   -3.22   -2.68   -1.87   -0.79    0.64    2.47    4.74
+   175.0    0.00   -0.09   -0.31   -0.65   -1.07   -1.55   -2.06   -2.56   -3.02   -3.38   -3.58   -3.56   -3.28   -2.75   -1.96   -0.90    0.48    2.28    4.54
+   180.0    0.00   -0.09   -0.31   -0.65   -1.07   -1.55   -2.05   -2.55   -3.01   -3.37   -3.58   -3.57   -3.30   -2.78   -2.00   -0.96    0.40    2.17    4.44
+   185.0    0.00   -0.09   -0.31   -0.65   -1.07   -1.54   -2.04   -2.53   -2.99   -3.35   -3.56   -3.55   -3.29   -2.77   -2.00   -0.96    0.39    2.16    4.45
+   190.0    0.00   -0.09   -0.31   -0.64   -1.06   -1.53   -2.03   -2.51   -2.96   -3.32   -3.52   -3.51   -3.25   -2.73   -1.95   -0.90    0.46    2.25    4.58
+   195.0    0.00   -0.09   -0.31   -0.64   -1.05   -1.52   -2.01   -2.49   -2.93   -3.27   -3.46   -3.44   -3.17   -2.64   -1.85   -0.79    0.61    2.43    4.80
+   200.0    0.00   -0.09   -0.30   -0.63   -1.04   -1.51   -1.99   -2.47   -2.89   -3.21   -3.39   -3.35   -3.07   -2.53   -1.73   -0.63    0.81    2.68    5.09
+   205.0    0.00   -0.08   -0.30   -0.62   -1.03   -1.49   -1.97   -2.44   -2.85   -3.16   -3.31   -3.26   -2.96   -2.41   -1.57   -0.44    1.04    2.97    5.42
+   210.0    0.00   -0.08   -0.29   -0.61   -1.02   -1.48   -1.96   -2.41   -2.81   -3.10   -3.23   -3.15   -2.84   -2.27   -1.41   -0.24    1.30    3.27    5.75
+   215.0    0.00   -0.08   -0.29   -0.60   -1.01   -1.46   -1.94   -2.39   -2.77   -3.04   -3.15   -3.05   -2.72   -2.13   -1.25   -0.04    1.54    3.56    6.05
+   220.0    0.00   -0.08   -0.28   -0.59   -0.99   -1.45   -1.92   -2.36   -2.74   -2.99   -3.07   -2.96   -2.61   -2.00   -1.10    0.14    1.76    3.80    6.29
+   225.0    0.00   -0.08   -0.27   -0.58   -0.98   -1.43   -1.90   -2.34   -2.70   -2.94   -3.01   -2.87   -2.51   -1.89   -0.97    0.29    1.93    3.99    6.45
+   230.0    0.00   -0.07   -0.27   -0.57   -0.96   -1.41   -1.88   -2.32   -2.68   -2.90   -2.95   -2.80   -2.42   -1.79   -0.87    0.39    2.04    4.11    6.54
+   235.0    0.00   -0.07   -0.26   -0.56   -0.95   -1.40   -1.86   -2.30   -2.65   -2.86   -2.90   -2.74   -2.35   -1.73   -0.81    0.45    2.10    4.16    6.55
+   240.0    0.00   -0.07   -0.25   -0.55   -0.93   -1.38   -1.85   -2.28   -2.63   -2.83   -2.86   -2.69   -2.30   -1.68   -0.78    0.47    2.11    4.15    6.51
+   245.0    0.00   -0.07   -0.25   -0.54   -0.92   -1.36   -1.83   -2.26   -2.61   -2.81   -2.83   -2.65   -2.27   -1.66   -0.77    0.45    2.07    4.10    6.44
+   250.0    0.00   -0.06   -0.24   -0.52   -0.90   -1.34   -1.81   -2.25   -2.59   -2.79   -2.80   -2.62   -2.24   -1.65   -0.79    0.40    2.00    4.03    6.36
+   255.0    0.00   -0.06   -0.24   -0.51   -0.89   -1.33   -1.80   -2.23   -2.58   -2.77   -2.78   -2.61   -2.24   -1.66   -0.83    0.34    1.93    3.96    6.31
+   260.0    0.00   -0.06   -0.23   -0.51   -0.87   -1.31   -1.78   -2.22   -2.57   -2.76   -2.77   -2.60   -2.24   -1.68   -0.87    0.28    1.86    3.91    6.29
+   265.0    0.00   -0.06   -0.23   -0.50   -0.86   -1.30   -1.77   -2.21   -2.56   -2.75   -2.77   -2.60   -2.25   -1.70   -0.91    0.23    1.82    3.89    6.31
+   270.0    0.00   -0.06   -0.22   -0.49   -0.85   -1.29   -1.76   -2.20   -2.55   -2.75   -2.77   -2.61   -2.26   -1.72   -0.94    0.20    1.81    3.91    6.38
+   275.0    0.00   -0.05   -0.22   -0.49   -0.85   -1.28   -1.75   -2.19   -2.54   -2.75   -2.78   -2.62   -2.28   -1.75   -0.96    0.19    1.82    3.97    6.47
+   280.0    0.00   -0.05   -0.22   -0.48   -0.84   -1.27   -1.74   -2.18   -2.54   -2.76   -2.79   -2.64   -2.31   -1.77   -0.97    0.20    1.87    4.05    6.59
+   285.0    0.00   -0.05   -0.21   -0.48   -0.84   -1.27   -1.73   -2.18   -2.54   -2.76   -2.81   -2.67   -2.33   -1.79   -0.97    0.23    1.93    4.15    6.69
+   290.0    0.00   -0.05   -0.21   -0.48   -0.84   -1.26   -1.73   -2.17   -2.54   -2.77   -2.83   -2.70   -2.36   -1.81   -0.97    0.26    2.00    4.23    6.76
+   295.0    0.00   -0.05   -0.21   -0.48   -0.83   -1.26   -1.72   -2.17   -2.54   -2.79   -2.86   -2.73   -2.40   -1.83   -0.97    0.29    2.05    4.29    6.78
+   300.0    0.00   -0.05   -0.21   -0.48   -0.84   -1.26   -1.72   -2.17   -2.55   -2.80   -2.88   -2.77   -2.43   -1.86   -0.98    0.30    2.06    4.29    6.72
+   305.0    0.00   -0.05   -0.21   -0.48   -0.84   -1.26   -1.72   -2.18   -2.56   -2.83   -2.92   -2.81   -2.47   -1.89   -1.00    0.29    2.04    4.22    6.59
+   310.0    0.00   -0.05   -0.21   -0.48   -0.84   -1.27   -1.73   -2.19   -2.58   -2.85   -2.96   -2.85   -2.52   -1.93   -1.04    0.23    1.95    4.09    6.37
+   315.0    0.00   -0.05   -0.21   -0.49   -0.85   -1.27   -1.74   -2.20   -2.60   -2.89   -3.00   -2.90   -2.57   -1.99   -1.10    0.14    1.81    3.88    6.09
+   320.0    0.00   -0.05   -0.21   -0.49   -0.85   -1.28   -1.75   -2.22   -2.63   -2.93   -3.05   -2.95   -2.63   -2.05   -1.19    0.01    1.62    3.60    5.76
+   325.0    0.00   -0.05   -0.22   -0.49   -0.86   -1.29   -1.77   -2.25   -2.67   -2.97   -3.10   -3.01   -2.69   -2.12   -1.29   -0.15    1.38    3.28    5.39
+   330.0    0.00   -0.05   -0.22   -0.49   -0.86   -1.30   -1.78   -2.27   -2.71   -3.03   -3.16   -3.07   -2.75   -2.20   -1.41   -0.33    1.11    2.93    5.02
+   335.0    0.00   -0.05   -0.22   -0.50   -0.87   -1.31   -1.80   -2.30   -2.75   -3.08   -3.22   -3.14   -2.82   -2.29   -1.54   -0.53    0.83    2.59    4.66
+   340.0    0.00   -0.05   -0.22   -0.50   -0.87   -1.32   -1.82   -2.33   -2.80   -3.13   -3.28   -3.20   -2.89   -2.37   -1.66   -0.71    0.57    2.27    4.35
+   345.0    0.00   -0.05   -0.22   -0.50   -0.87   -1.33   -1.83   -2.36   -2.83   -3.18   -3.34   -3.26   -2.95   -2.45   -1.77   -0.87    0.35    2.01    4.10
+   350.0    0.00   -0.05   -0.22   -0.50   -0.88   -1.33   -1.84   -2.38   -2.86   -3.22   -3.38   -3.31   -3.01   -2.52   -1.86   -0.99    0.19    1.82    3.94
+   355.0    0.00   -0.05   -0.22   -0.50   -0.88   -1.33   -1.85   -2.39   -2.88   -3.25   -3.42   -3.35   -3.05   -2.56   -1.91   -1.06    0.10    1.72    3.86
+   360.0    0.00   -0.05   -0.22   -0.50   -0.87   -1.33   -1.85   -2.38   -2.88   -3.25   -3.43   -3.37   -3.08   -2.59   -1.94   -1.08    0.09    1.72    3.87
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.23      0.84     57.43                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.10   -0.37   -0.75   -1.18   -1.62   -2.07   -2.53   -2.98   -3.32   -3.43   -3.21   -2.64   -1.79   -0.80    0.26    1.46    3.07    5.41
+     0.0    0.00   -0.12   -0.41   -0.81   -1.23   -1.62   -2.00   -2.39   -2.79   -3.14   -3.35   -3.26   -2.79   -1.95   -0.82    0.50    1.95    3.58    5.46
+     5.0    0.00   -0.12   -0.41   -0.80   -1.21   -1.61   -2.00   -2.40   -2.81   -3.18   -3.39   -3.30   -2.82   -1.96   -0.79    0.56    2.05    3.73    5.65
+    10.0    0.00   -0.12   -0.40   -0.79   -1.20   -1.60   -2.00   -2.41   -2.83   -3.21   -3.42   -3.32   -2.83   -1.95   -0.78    0.59    2.10    3.81    5.81
+    15.0    0.00   -0.11   -0.39   -0.78   -1.19   -1.60   -2.00   -2.42   -2.86   -3.24   -3.44   -3.33   -2.83   -1.95   -0.78    0.57    2.08    3.83    5.91
+    20.0    0.00   -0.11   -0.39   -0.77   -1.18   -1.59   -2.01   -2.44   -2.88   -3.26   -3.45   -3.33   -2.82   -1.94   -0.80    0.53    2.02    3.78    5.95
+    25.0    0.00   -0.11   -0.38   -0.76   -1.17   -1.59   -2.02   -2.46   -2.91   -3.28   -3.46   -3.32   -2.80   -1.94   -0.82    0.47    1.92    3.69    5.94
+    30.0    0.00   -0.11   -0.38   -0.75   -1.16   -1.59   -2.03   -2.49   -2.94   -3.31   -3.48   -3.32   -2.79   -1.93   -0.84    0.40    1.81    3.57    5.88
+    35.0    0.00   -0.10   -0.37   -0.74   -1.15   -1.59   -2.04   -2.51   -2.97   -3.34   -3.50   -3.32   -2.78   -1.92   -0.85    0.35    1.72    3.45    5.80
+    40.0    0.00   -0.10   -0.36   -0.73   -1.14   -1.58   -2.05   -2.53   -3.01   -3.38   -3.53   -3.33   -2.77   -1.90   -0.85    0.31    1.64    3.36    5.74
+    45.0    0.00   -0.10   -0.36   -0.72   -1.14   -1.58   -2.05   -2.56   -3.05   -3.43   -3.57   -3.36   -2.77   -1.89   -0.83    0.31    1.61    3.31    5.70
+    50.0    0.00   -0.10   -0.36   -0.72   -1.13   -1.57   -2.06   -2.58   -3.08   -3.47   -3.61   -3.39   -2.78   -1.88   -0.80    0.34    1.63    3.31    5.72
+    55.0    0.00   -0.10   -0.35   -0.71   -1.12   -1.57   -2.06   -2.59   -3.11   -3.52   -3.66   -3.43   -2.80   -1.86   -0.77    0.39    1.68    3.37    5.80
+    60.0    0.00   -0.10   -0.35   -0.70   -1.11   -1.56   -2.06   -2.60   -3.14   -3.56   -3.71   -3.47   -2.82   -1.86   -0.73    0.45    1.76    3.47    5.93
+    65.0    0.00   -0.10   -0.35   -0.70   -1.11   -1.55   -2.05   -2.60   -3.15   -3.59   -3.75   -3.51   -2.85   -1.86   -0.71    0.51    1.85    3.59    6.09
+    70.0    0.00   -0.09   -0.35   -0.70   -1.10   -1.55   -2.04   -2.60   -3.15   -3.60   -3.78   -3.55   -2.89   -1.88   -0.70    0.55    1.92    3.70    6.27
+    75.0    0.00   -0.09   -0.35   -0.70   -1.10   -1.54   -2.03   -2.58   -3.15   -3.61   -3.80   -3.58   -2.92   -1.91   -0.72    0.55    1.96    3.79    6.42
+    80.0    0.00   -0.09   -0.35   -0.70   -1.10   -1.54   -2.02   -2.57   -3.13   -3.60   -3.80   -3.60   -2.96   -1.96   -0.77    0.50    1.94    3.82    6.51
+    85.0    0.00   -0.09   -0.35   -0.70   -1.10   -1.53   -2.01   -2.55   -3.11   -3.57   -3.79   -3.61   -3.00   -2.03   -0.86    0.41    1.86    3.77    6.52
+    90.0    0.00   -0.09   -0.35   -0.71   -1.11   -1.54   -2.00   -2.53   -3.08   -3.54   -3.77   -3.61   -3.03   -2.11   -0.97    0.28    1.72    3.65    6.43
+    95.0    0.00   -0.09   -0.35   -0.71   -1.12   -1.54   -2.00   -2.51   -3.05   -3.50   -3.74   -3.61   -3.07   -2.19   -1.10    0.11    1.53    3.45    6.23
+   100.0    0.00   -0.09   -0.35   -0.72   -1.13   -1.55   -2.00   -2.50   -3.02   -3.47   -3.70   -3.59   -3.09   -2.26   -1.23   -0.07    1.31    3.20    5.96
+   105.0    0.00   -0.09   -0.36   -0.73   -1.14   -1.56   -2.00   -2.49   -2.99   -3.43   -3.67   -3.57   -3.11   -2.32   -1.35   -0.25    1.07    2.92    5.62
+   110.0    0.00   -0.09   -0.36   -0.73   -1.15   -1.57   -2.01   -2.48   -2.98   -3.40   -3.63   -3.55   -3.11   -2.36   -1.44   -0.40    0.86    2.64    5.27
+   115.0    0.00   -0.09   -0.36   -0.74   -1.15   -1.58   -2.02   -2.48   -2.96   -3.38   -3.60   -3.52   -3.09   -2.37   -1.49   -0.50    0.70    2.40    4.95
+   120.0    0.00   -0.09   -0.36   -0.74   -1.16   -1.59   -2.02   -2.49   -2.96   -3.36   -3.57   -3.47   -3.04   -2.34   -1.49   -0.54    0.59    2.22    4.69
+   125.0    0.00   -0.09   -0.36   -0.74   -1.16   -1.59   -2.03   -2.49   -2.95   -3.34   -3.53   -3.42   -2.98   -2.27   -1.43   -0.51    0.57    2.12    4.54
+   130.0    0.00   -0.09   -0.36   -0.74   -1.16   -1.59   -2.02   -2.48   -2.94   -3.32   -3.49   -3.36   -2.89   -2.16   -1.31   -0.42    0.62    2.12    4.50
+   135.0    0.00   -0.09   -0.35   -0.73   -1.15   -1.58   -2.01   -2.47   -2.93   -3.29   -3.45   -3.28   -2.78   -2.02   -1.15   -0.27    0.75    2.21    4.58
+   140.0    0.00   -0.09   -0.35   -0.72   -1.14   -1.56   -2.00   -2.45   -2.90   -3.26   -3.40   -3.20   -2.65   -1.85   -0.96   -0.07    0.93    2.38    4.77
+   145.0    0.00   -0.08   -0.35   -0.71   -1.12   -1.54   -1.97   -2.42   -2.87   -3.22   -3.34   -3.11   -2.52   -1.68   -0.75    0.15    1.14    2.59    5.04
+   150.0    0.00   -0.08   -0.34   -0.70   -1.10   -1.51   -1.93   -2.38   -2.83   -3.17   -3.27   -3.01   -2.38   -1.50   -0.55    0.37    1.36    2.83    5.36
+   155.0    0.00   -0.08   -0.34   -0.69   -1.08   -1.47   -1.89   -2.33   -2.78   -3.11   -3.20   -2.92   -2.26   -1.34   -0.36    0.57    1.57    3.06    5.66
+   160.0    0.00   -0.08   -0.33   -0.68   -1.05   -1.44   -1.84   -2.28   -2.72   -3.06   -3.13   -2.83   -2.15   -1.21   -0.21    0.73    1.73    3.25    5.93
+   165.0    0.00   -0.08   -0.33   -0.66   -1.03   -1.41   -1.80   -2.23   -2.67   -3.00   -3.07   -2.77   -2.07   -1.12   -0.10    0.84    1.85    3.39    6.12
+   170.0    0.00   -0.08   -0.32   -0.65   -1.01   -1.38   -1.76   -2.19   -2.62   -2.96   -3.03   -2.72   -2.02   -1.07   -0.05    0.90    1.91    3.46    6.22
+   175.0    0.00   -0.08   -0.32   -0.65   -1.00   -1.36   -1.74   -2.16   -2.59   -2.93   -3.00   -2.71   -2.02   -1.07   -0.06    0.89    1.92    3.47    6.21
+   180.0    0.00   -0.08   -0.31   -0.64   -0.99   -1.35   -1.73   -2.15   -2.58   -2.91   -3.00   -2.72   -2.04   -1.11   -0.11    0.84    1.87    3.41    6.11
+   185.0    0.00   -0.08   -0.31   -0.64   -0.99   -1.35   -1.73   -2.15   -2.58   -2.92   -3.02   -2.75   -2.11   -1.20   -0.21    0.74    1.78    3.31    5.94
+   190.0    0.00   -0.08   -0.31   -0.64   -1.00   -1.36   -1.75   -2.17   -2.61   -2.95   -3.06   -2.81   -2.20   -1.31   -0.34    0.62    1.67    3.19    5.72
+   195.0    0.00   -0.08   -0.31   -0.65   -1.01   -1.39   -1.79   -2.22   -2.65   -3.00   -3.12   -2.89   -2.31   -1.45   -0.49    0.48    1.55    3.06    5.49
+   200.0    0.00   -0.08   -0.32   -0.66   -1.03   -1.42   -1.84   -2.28   -2.71   -3.06   -3.19   -2.98   -2.43   -1.60   -0.65    0.34    1.43    2.94    5.27
+   205.0    0.00   -0.08   -0.32   -0.67   -1.06   -1.47   -1.90   -2.35   -2.79   -3.14   -3.27   -3.08   -2.55   -1.74   -0.80    0.20    1.33    2.85    5.09
+   210.0    0.00   -0.08   -0.33   -0.68   -1.09   -1.52   -1.96   -2.42   -2.87   -3.22   -3.35   -3.18   -2.66   -1.88   -0.94    0.08    1.25    2.78    4.95
+   215.0    0.00   -0.08   -0.33   -0.70   -1.12   -1.57   -2.03   -2.50   -2.95   -3.30   -3.43   -3.26   -2.76   -1.99   -1.05   -0.01    1.19    2.75    4.86
+   220.0    0.00   -0.08   -0.34   -0.71   -1.15   -1.62   -2.10   -2.58   -3.03   -3.37   -3.50   -3.34   -2.85   -2.08   -1.14   -0.08    1.17    2.75    4.82
+   225.0    0.00   -0.09   -0.34   -0.73   -1.18   -1.67   -2.16   -2.65   -3.10   -3.44   -3.57   -3.40   -2.91   -2.14   -1.19   -0.11    1.16    2.76    4.82
+   230.0    0.00   -0.09   -0.35   -0.75   -1.21   -1.71   -2.21   -2.71   -3.16   -3.50   -3.62   -3.45   -2.95   -2.17   -1.21   -0.11    1.18    2.79    4.84
+   235.0    0.00   -0.09   -0.36   -0.76   -1.23   -1.74   -2.25   -2.76   -3.22   -3.56   -3.67   -3.48   -2.97   -2.18   -1.20   -0.08    1.21    2.82    4.86
+   240.0    0.00   -0.09   -0.37   -0.77   -1.25   -1.77   -2.29   -2.80   -3.26   -3.60   -3.71   -3.51   -2.97   -2.15   -1.15   -0.02    1.26    2.86    4.89
+   245.0    0.00   -0.10   -0.37   -0.78   -1.27   -1.79   -2.31   -2.83   -3.30   -3.64   -3.74   -3.52   -2.95   -2.10   -1.07    0.06    1.33    2.90    4.92
+   250.0    0.00   -0.10   -0.38   -0.79   -1.28   -1.80   -2.33   -2.85   -3.33   -3.67   -3.76   -3.52   -2.92   -2.03   -0.97    0.16    1.40    2.93    4.94
+   255.0    0.00   -0.10   -0.38   -0.80   -1.29   -1.81   -2.34   -2.87   -3.35   -3.69   -3.78   -3.51   -2.87   -1.94   -0.86    0.27    1.48    2.96    4.96
+   260.0    0.00   -0.10   -0.39   -0.81   -1.30   -1.82   -2.34   -2.87   -3.36   -3.70   -3.78   -3.49   -2.81   -1.84   -0.74    0.38    1.55    2.99    4.99
+   265.0    0.00   -0.11   -0.40   -0.82   -1.30   -1.82   -2.35   -2.88   -3.36   -3.71   -3.77   -3.45   -2.74   -1.74   -0.62    0.48    1.62    3.02    5.04
+   270.0    0.00   -0.11   -0.40   -0.82   -1.31   -1.82   -2.35   -2.88   -3.36   -3.70   -3.75   -3.40   -2.66   -1.64   -0.52    0.57    1.66    3.05    5.11
+   275.0    0.00   -0.11   -0.41   -0.83   -1.31   -1.82   -2.34   -2.87   -3.35   -3.67   -3.70   -3.34   -2.58   -1.54   -0.43    0.62    1.68    3.06    5.19
+   280.0    0.00   -0.11   -0.41   -0.83   -1.32   -1.82   -2.34   -2.86   -3.32   -3.63   -3.64   -3.26   -2.49   -1.46   -0.38    0.64    1.67    3.06    5.28
+   285.0    0.00   -0.12   -0.42   -0.84   -1.32   -1.83   -2.33   -2.84   -3.28   -3.57   -3.56   -3.17   -2.40   -1.40   -0.35    0.62    1.62    3.04    5.36
+   290.0    0.00   -0.12   -0.42   -0.85   -1.33   -1.82   -2.32   -2.81   -3.23   -3.50   -3.47   -3.07   -2.32   -1.35   -0.37    0.55    1.54    2.99    5.42
+   295.0    0.00   -0.12   -0.42   -0.85   -1.33   -1.82   -2.31   -2.77   -3.17   -3.41   -3.37   -2.97   -2.24   -1.33   -0.41    0.46    1.43    2.91    5.46
+   300.0    0.00   -0.12   -0.43   -0.86   -1.33   -1.82   -2.29   -2.73   -3.11   -3.32   -3.26   -2.87   -2.19   -1.34   -0.48    0.33    1.29    2.82    5.44
+   305.0    0.00   -0.12   -0.43   -0.86   -1.34   -1.81   -2.27   -2.69   -3.03   -3.22   -3.16   -2.79   -2.15   -1.37   -0.57    0.20    1.15    2.71    5.39
+   310.0    0.00   -0.12   -0.43   -0.86   -1.33   -1.80   -2.24   -2.64   -2.96   -3.14   -3.08   -2.73   -2.14   -1.41   -0.67    0.07    1.01    2.60    5.29
+   315.0    0.00   -0.12   -0.43   -0.86   -1.33   -1.79   -2.21   -2.59   -2.89   -3.06   -3.01   -2.70   -2.15   -1.48   -0.77   -0.05    0.91    2.50    5.16
+   320.0    0.00   -0.12   -0.44   -0.86   -1.32   -1.77   -2.18   -2.54   -2.83   -3.01   -2.98   -2.70   -2.19   -1.55   -0.86   -0.12    0.85    2.44    5.02
+   325.0    0.00   -0.12   -0.43   -0.86   -1.32   -1.75   -2.15   -2.50   -2.79   -2.97   -2.97   -2.73   -2.26   -1.63   -0.93   -0.16    0.85    2.43    4.90
+   330.0    0.00   -0.12   -0.43   -0.86   -1.31   -1.73   -2.11   -2.46   -2.75   -2.95   -2.98   -2.78   -2.33   -1.70   -0.97   -0.14    0.91    2.47    4.81
+   335.0    0.00   -0.12   -0.43   -0.85   -1.29   -1.71   -2.09   -2.43   -2.73   -2.96   -3.03   -2.86   -2.42   -1.77   -0.98   -0.08    1.03    2.58    4.77
+   340.0    0.00   -0.12   -0.43   -0.84   -1.28   -1.69   -2.06   -2.40   -2.73   -2.98   -3.08   -2.94   -2.52   -1.83   -0.97    0.02    1.20    2.74    4.80
+   345.0    0.00   -0.12   -0.43   -0.84   -1.27   -1.67   -2.04   -2.39   -2.73   -3.02   -3.15   -3.04   -2.60   -1.88   -0.94    0.14    1.40    2.94    4.90
+   350.0    0.00   -0.12   -0.42   -0.83   -1.25   -1.65   -2.02   -2.38   -2.74   -3.06   -3.22   -3.12   -2.68   -1.91   -0.90    0.28    1.60    3.16    5.06
+   355.0    0.00   -0.12   -0.42   -0.82   -1.24   -1.64   -2.01   -2.38   -2.76   -3.10   -3.29   -3.20   -2.75   -1.94   -0.86    0.40    1.79    3.39    5.25
+   360.0    0.00   -0.12   -0.41   -0.81   -1.23   -1.62   -2.00   -2.39   -2.79   -3.14   -3.35   -3.26   -2.79   -1.95   -0.82    0.50    1.95    3.58    5.46
+   G02                                                      END OF FREQUENCY    
+   R01                                                      START OF FREQUENCY  
+      1.13     -0.17     65.02                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.07   -0.28   -0.61   -1.05   -1.55   -2.11   -2.63   -3.08   -3.44   -3.61   -3.59   -3.33   -2.83   -2.02   -0.87    0.73    2.79    5.30
+     0.0    0.00   -0.05   -0.25   -0.57   -1.01   -1.54   -2.13   -2.72   -3.27   -3.69   -3.91   -3.88   -3.61   -3.10   -2.39   -1.40   -0.09    1.67    3.90
+     5.0    0.00   -0.05   -0.25   -0.59   -1.03   -1.55   -2.15   -2.74   -3.28   -3.70   -3.91   -3.90   -3.64   -3.15   -2.44   -1.45   -0.13    1.64    3.85
+    10.0    0.00   -0.05   -0.25   -0.60   -1.04   -1.58   -2.16   -2.74   -3.28   -3.68   -3.90   -3.90   -3.66   -3.18   -2.47   -1.45   -0.08    1.71    3.89
+    15.0    0.00   -0.05   -0.26   -0.59   -1.04   -1.59   -2.15   -2.73   -3.25   -3.65   -3.86   -3.87   -3.65   -3.18   -2.45   -1.41    0.03    1.87    4.05
+    20.0    0.00   -0.05   -0.26   -0.60   -1.05   -1.57   -2.14   -2.71   -3.21   -3.59   -3.80   -3.81   -3.62   -3.16   -2.40   -1.30    0.20    2.09    4.29
+    25.0    0.00   -0.05   -0.26   -0.60   -1.05   -1.56   -2.12   -2.67   -3.14   -3.52   -3.73   -3.76   -3.57   -3.10   -2.33   -1.17    0.40    2.39    4.62
+    30.0    0.00   -0.05   -0.26   -0.60   -1.03   -1.56   -2.10   -2.63   -3.08   -3.44   -3.65   -3.69   -3.49   -3.03   -2.23   -1.02    0.64    2.70    5.00
+    35.0    0.00   -0.05   -0.26   -0.59   -1.03   -1.54   -2.06   -2.56   -3.02   -3.36   -3.57   -3.61   -3.41   -2.95   -2.12   -0.86    0.86    3.00    5.39
+    40.0    0.00   -0.05   -0.26   -0.59   -1.03   -1.51   -2.03   -2.52   -2.96   -3.29   -3.49   -3.53   -3.32   -2.85   -2.00   -0.71    1.07    3.27    5.78
+    45.0    0.00   -0.05   -0.25   -0.59   -1.01   -1.50   -2.00   -2.49   -2.92   -3.24   -3.44   -3.46   -3.26   -2.76   -1.90   -0.59    1.22    3.49    6.10
+    50.0    0.00   -0.05   -0.25   -0.59   -1.01   -1.49   -1.99   -2.45   -2.87   -3.20   -3.39   -3.39   -3.19   -2.68   -1.81   -0.50    1.32    3.63    6.34
+    55.0    0.00   -0.05   -0.25   -0.58   -1.01   -1.47   -1.97   -2.44   -2.85   -3.17   -3.35   -3.35   -3.14   -2.62   -1.74   -0.45    1.36    3.68    6.49
+    60.0    0.00   -0.05   -0.26   -0.57   -1.00   -1.47   -1.96   -2.43   -2.84   -3.17   -3.34   -3.33   -3.10   -2.57   -1.71   -0.44    1.32    3.65    6.54
+    65.0    0.00   -0.05   -0.26   -0.58   -1.00   -1.47   -1.96   -2.44   -2.85   -3.17   -3.34   -3.31   -3.07   -2.55   -1.70   -0.46    1.24    3.54    6.48
+    70.0    0.00   -0.06   -0.25   -0.57   -1.00   -1.47   -1.97   -2.44   -2.87   -3.18   -3.35   -3.32   -3.06   -2.53   -1.70   -0.50    1.15    3.38    6.35
+    75.0    0.00   -0.06   -0.26   -0.58   -1.01   -1.49   -1.99   -2.46   -2.89   -3.21   -3.37   -3.33   -3.06   -2.53   -1.71   -0.57    1.03    3.22    6.16
+    80.0    0.00   -0.06   -0.26   -0.59   -1.02   -1.50   -2.00   -2.48   -2.91   -3.23   -3.39   -3.33   -3.07   -2.54   -1.73   -0.61    0.94    3.07    5.93
+    85.0    0.00   -0.06   -0.26   -0.59   -1.03   -1.52   -2.02   -2.50   -2.93   -3.24   -3.40   -3.34   -3.08   -2.55   -1.75   -0.64    0.87    2.95    5.76
+    90.0    0.00   -0.06   -0.27   -0.60   -1.04   -1.54   -2.05   -2.53   -2.95   -3.25   -3.39   -3.34   -3.07   -2.55   -1.75   -0.65    0.86    2.91    5.61
+    95.0    0.00   -0.06   -0.27   -0.61   -1.06   -1.56   -2.06   -2.54   -2.95   -3.25   -3.38   -3.33   -3.04   -2.54   -1.74   -0.62    0.90    2.93    5.55
+   100.0    0.00   -0.07   -0.28   -0.62   -1.07   -1.58   -2.09   -2.58   -2.97   -3.24   -3.36   -3.30   -3.02   -2.51   -1.70   -0.55    0.99    3.03    5.58
+   105.0    0.00   -0.07   -0.28   -0.63   -1.09   -1.60   -2.11   -2.60   -2.97   -3.24   -3.35   -3.29   -3.00   -2.48   -1.66   -0.47    1.12    3.19    5.68
+   110.0    0.00   -0.07   -0.29   -0.65   -1.11   -1.62   -2.15   -2.62   -2.98   -3.24   -3.33   -3.26   -2.97   -2.44   -1.59   -0.38    1.28    3.39    5.86
+   115.0    0.00   -0.07   -0.29   -0.65   -1.12   -1.65   -2.18   -2.64   -3.00   -3.24   -3.32   -3.24   -2.94   -2.40   -1.54   -0.29    1.42    3.60    6.08
+   120.0    0.00   -0.08   -0.31   -0.66   -1.14   -1.68   -2.22   -2.68   -3.03   -3.26   -3.33   -3.22   -2.93   -2.38   -1.50   -0.22    1.55    3.80    6.30
+   125.0    0.00   -0.08   -0.31   -0.69   -1.16   -1.70   -2.25   -2.72   -3.08   -3.31   -3.36   -3.24   -2.93   -2.38   -1.49   -0.19    1.64    3.93    6.50
+   130.0    0.00   -0.08   -0.32   -0.69   -1.18   -1.74   -2.28   -2.76   -3.14   -3.37   -3.41   -3.28   -2.97   -2.40   -1.51   -0.19    1.65    3.99    6.63
+   135.0    0.00   -0.08   -0.32   -0.70   -1.19   -1.76   -2.32   -2.83   -3.21   -3.44   -3.49   -3.36   -3.02   -2.45   -1.56   -0.26    1.58    3.96    6.65
+   140.0    0.00   -0.09   -0.33   -0.71   -1.21   -1.79   -2.36   -2.88   -3.29   -3.53   -3.59   -3.46   -3.12   -2.55   -1.67   -0.38    1.44    3.83    6.56
+   145.0    0.00   -0.10   -0.33   -0.73   -1.22   -1.80   -2.39   -2.95   -3.37   -3.64   -3.71   -3.58   -3.25   -2.68   -1.82   -0.55    1.24    3.61    6.38
+   150.0    0.00   -0.10   -0.33   -0.73   -1.23   -1.83   -2.42   -2.99   -3.45   -3.75   -3.84   -3.74   -3.40   -2.83   -1.99   -0.76    0.99    3.30    6.08
+   155.0    0.00   -0.10   -0.34   -0.74   -1.24   -1.84   -2.46   -3.04   -3.53   -3.85   -3.98   -3.88   -3.56   -3.01   -2.20   -1.02    0.68    2.96    5.71
+   160.0    0.00   -0.10   -0.35   -0.75   -1.25   -1.85   -2.48   -3.07   -3.59   -3.95   -4.10   -4.02   -3.73   -3.19   -2.40   -1.25    0.39    2.60    5.32
+   165.0    0.00   -0.10   -0.35   -0.75   -1.26   -1.85   -2.49   -3.10   -3.63   -4.02   -4.20   -4.16   -3.88   -3.38   -2.60   -1.49    0.10    2.25    4.91
+   170.0    0.00   -0.10   -0.35   -0.76   -1.26   -1.86   -2.49   -3.11   -3.66   -4.06   -4.28   -4.28   -4.03   -3.55   -2.79   -1.69   -0.14    1.96    4.55
+   175.0    0.00   -0.10   -0.36   -0.76   -1.26   -1.86   -2.49   -3.11   -3.67   -4.09   -4.35   -4.37   -4.14   -3.69   -2.94   -1.85   -0.33    1.73    4.26
+   180.0    0.00   -0.10   -0.36   -0.76   -1.27   -1.86   -2.48   -3.09   -3.66   -4.09   -4.36   -4.41   -4.21   -3.77   -3.03   -1.95   -0.43    1.59    4.07
+   185.0    0.00   -0.11   -0.36   -0.77   -1.27   -1.85   -2.47   -3.07   -3.63   -4.07   -4.36   -4.42   -4.26   -3.81   -3.08   -1.99   -0.47    1.52    3.97
+   190.0    0.00   -0.11   -0.37   -0.76   -1.27   -1.84   -2.46   -3.04   -3.59   -4.03   -4.32   -4.40   -4.25   -3.83   -3.09   -1.97   -0.44    1.55    3.98
+   195.0    0.00   -0.11   -0.37   -0.77   -1.26   -1.84   -2.44   -3.02   -3.55   -3.98   -4.26   -4.35   -4.20   -3.77   -3.02   -1.91   -0.35    1.64    4.07
+   200.0    0.00   -0.11   -0.36   -0.77   -1.26   -1.83   -2.40   -2.99   -3.50   -3.91   -4.20   -4.27   -4.12   -3.69   -2.93   -1.79   -0.22    1.80    4.23
+   205.0    0.00   -0.10   -0.37   -0.76   -1.25   -1.81   -2.38   -2.95   -3.46   -3.85   -4.11   -4.18   -4.02   -3.58   -2.80   -1.64   -0.08    1.96    4.42
+   210.0    0.00   -0.10   -0.36   -0.75   -1.24   -1.80   -2.36   -2.91   -3.41   -3.79   -4.03   -4.07   -3.90   -3.44   -2.65   -1.49    0.10    2.13    4.61
+   215.0    0.00   -0.10   -0.36   -0.75   -1.23   -1.77   -2.34   -2.88   -3.35   -3.72   -3.95   -3.97   -3.77   -3.30   -2.49   -1.33    0.25    2.29    4.81
+   220.0    0.00   -0.10   -0.35   -0.74   -1.21   -1.76   -2.30   -2.84   -3.31   -3.67   -3.87   -3.88   -3.65   -3.15   -2.34   -1.17    0.40    2.42    4.96
+   225.0    0.00   -0.10   -0.34   -0.72   -1.19   -1.72   -2.27   -2.80   -3.25   -3.61   -3.81   -3.78   -3.54   -3.02   -2.19   -1.04    0.51    2.51    5.07
+   230.0    0.00   -0.09   -0.34   -0.71   -1.17   -1.69   -2.23   -2.76   -3.22   -3.56   -3.75   -3.71   -3.43   -2.90   -2.07   -0.93    0.58    2.58    5.14
+   235.0    0.00   -0.09   -0.33   -0.70   -1.15   -1.66   -2.18   -2.70   -3.17   -3.51   -3.69   -3.64   -3.35   -2.80   -1.97   -0.85    0.63    2.61    5.17
+   240.0    0.00   -0.09   -0.32   -0.68   -1.11   -1.61   -2.15   -2.66   -3.13   -3.47   -3.64   -3.58   -3.28   -2.71   -1.90   -0.80    0.66    2.61    5.17
+   245.0    0.00   -0.09   -0.31   -0.66   -1.09   -1.57   -2.10   -2.61   -3.08   -3.43   -3.60   -3.53   -3.22   -2.66   -1.84   -0.76    0.68    2.60    5.17
+   250.0    0.00   -0.08   -0.30   -0.63   -1.05   -1.52   -2.04   -2.56   -3.03   -3.37   -3.54   -3.48   -3.16   -2.61   -1.81   -0.75    0.67    2.59    5.17
+   255.0    0.00   -0.08   -0.30   -0.61   -1.02   -1.49   -2.00   -2.51   -2.98   -3.32   -3.49   -3.44   -3.13   -2.58   -1.81   -0.76    0.68    2.61    5.19
+   260.0    0.00   -0.08   -0.28   -0.60   -0.99   -1.45   -1.95   -2.46   -2.94   -3.28   -3.45   -3.40   -3.09   -2.56   -1.81   -0.75    0.68    2.66    5.25
+   265.0    0.00   -0.08   -0.28   -0.57   -0.96   -1.42   -1.92   -2.42   -2.89   -3.24   -3.41   -3.35   -3.07   -2.55   -1.80   -0.76    0.70    2.72    5.33
+   270.0    0.00   -0.08   -0.26   -0.55   -0.92   -1.39   -1.88   -2.39   -2.85   -3.20   -3.35   -3.31   -3.04   -2.54   -1.80   -0.75    0.76    2.81    5.44
+   275.0    0.00   -0.06   -0.25   -0.54   -0.91   -1.35   -1.86   -2.36   -2.82   -3.15   -3.32   -3.27   -3.00   -2.53   -1.80   -0.72    0.82    2.94    5.58
+   280.0    0.00   -0.06   -0.25   -0.52   -0.89   -1.33   -1.83   -2.33   -2.78   -3.13   -3.28   -3.24   -2.99   -2.51   -1.78   -0.69    0.91    3.08    5.74
+   285.0    0.00   -0.06   -0.23   -0.51   -0.88   -1.31   -1.80   -2.32   -2.76   -3.10   -3.26   -3.22   -2.97   -2.50   -1.76   -0.63    1.01    3.24    5.88
+   290.0    0.00   -0.06   -0.23   -0.50   -0.87   -1.30   -1.79   -2.30   -2.75   -3.08   -3.24   -3.20   -2.94   -2.49   -1.74   -0.58    1.12    3.38    6.03
+   295.0    0.00   -0.06   -0.23   -0.50   -0.85   -1.29   -1.78   -2.29   -2.74   -3.08   -3.24   -3.20   -2.95   -2.47   -1.70   -0.52    1.22    3.51    6.14
+   300.0    0.00   -0.06   -0.22   -0.49   -0.85   -1.29   -1.78   -2.29   -2.74   -3.08   -3.23   -3.20   -2.94   -2.47   -1.67   -0.47    1.29    3.61    6.21
+   305.0    0.00   -0.06   -0.22   -0.49   -0.85   -1.28   -1.78   -2.30   -2.75   -3.10   -3.26   -3.21   -2.95   -2.45   -1.65   -0.41    1.36    3.66    6.23
+   310.0    0.00   -0.05   -0.22   -0.49   -0.85   -1.30   -1.79   -2.32   -2.77   -3.12   -3.29   -3.24   -2.98   -2.46   -1.64   -0.40    1.37    3.65    6.19
+   315.0    0.00   -0.05   -0.22   -0.50   -0.86   -1.30   -1.81   -2.33   -2.80   -3.16   -3.33   -3.28   -3.01   -2.48   -1.63   -0.39    1.34    3.59    6.09
+   320.0    0.00   -0.05   -0.22   -0.50   -0.86   -1.32   -1.82   -2.36   -2.84   -3.21   -3.39   -3.34   -3.06   -2.51   -1.66   -0.44    1.28    3.46    5.94
+   325.0    0.00   -0.05   -0.23   -0.50   -0.88   -1.33   -1.87   -2.40   -2.89   -3.26   -3.45   -3.40   -3.12   -2.56   -1.70   -0.50    1.16    3.27    5.72
+   330.0    0.00   -0.05   -0.23   -0.51   -0.89   -1.36   -1.89   -2.44   -2.94   -3.34   -3.52   -3.47   -3.18   -2.61   -1.77   -0.60    0.98    3.04    5.47
+   335.0    0.00   -0.05   -0.23   -0.52   -0.91   -1.40   -1.93   -2.49   -3.01   -3.40   -3.60   -3.57   -3.26   -2.69   -1.87   -0.74    0.79    2.77    5.16
+   340.0    0.00   -0.05   -0.23   -0.53   -0.93   -1.43   -1.97   -2.54   -3.08   -3.47   -3.68   -3.64   -3.34   -2.77   -1.97   -0.88    0.57    2.48    4.85
+   345.0    0.00   -0.05   -0.24   -0.54   -0.96   -1.46   -2.01   -2.60   -3.14   -3.54   -3.77   -3.72   -3.41   -2.86   -2.08   -1.04    0.35    2.21    4.55
+   350.0    0.00   -0.05   -0.24   -0.55   -0.98   -1.49   -2.05   -2.66   -3.19   -3.61   -3.82   -3.79   -3.49   -2.96   -2.20   -1.18    0.16    1.97    4.28
+   355.0    0.00   -0.05   -0.24   -0.56   -1.00   -1.51   -2.09   -2.70   -3.24   -3.66   -3.88   -3.85   -3.55   -3.03   -2.29   -1.30   -0.10    1.77    4.05
+   360.0    0.00   -0.05   -0.25   -0.57   -1.01   -1.54   -2.13   -2.72   -3.27   -3.69   -3.91   -3.88   -3.61   -3.10   -2.39   -1.40   -0.09    1.67    3.90
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+      0.23      0.84     57.43                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.11   -0.38   -0.77   -1.21   -1.66   -2.13   -2.63   -3.13   -3.53   -3.67   -3.45   -2.82   -1.88   -0.80    0.33    1.59    3.31    5.91
+     0.0    0.00   -0.11   -0.40   -0.79   -1.22   -1.65   -2.09   -2.55   -3.01   -3.38   -3.53   -3.35   -2.76   -1.85   -0.72    0.55    2.04    3.99    6.73
+     5.0    0.00   -0.11   -0.40   -0.79   -1.21   -1.65   -2.11   -2.58   -3.05   -3.44   -3.61   -3.45   -2.88   -1.97   -0.82    0.49    2.01    4.00    6.73
+    10.0    0.00   -0.11   -0.39   -0.78   -1.21   -1.66   -2.13   -2.61   -3.09   -3.50   -3.68   -3.53   -2.98   -2.08   -0.93    0.41    1.96    3.96    6.68
+    15.0    0.00   -0.10   -0.38   -0.77   -1.21   -1.67   -2.13   -2.63   -3.13   -3.54   -3.75   -3.62   -3.09   -2.19   -1.04    0.31    1.87    3.88    6.54
+    20.0    0.00   -0.10   -0.37   -0.76   -1.21   -1.66   -2.15   -2.65   -3.15   -3.58   -3.80   -3.69   -3.17   -2.29   -1.15    0.21    1.78    3.76    6.35
+    25.0    0.00   -0.10   -0.36   -0.76   -1.20   -1.67   -2.16   -2.66   -3.17   -3.61   -3.84   -3.74   -3.24   -2.38   -1.23    0.12    1.68    3.62    6.15
+    30.0    0.00   -0.10   -0.37   -0.75   -1.20   -1.67   -2.16   -2.68   -3.20   -3.64   -3.88   -3.79   -3.30   -2.44   -1.30    0.03    1.57    3.47    5.93
+    35.0    0.00   -0.08   -0.36   -0.75   -1.19   -1.68   -2.17   -2.69   -3.22   -3.67   -3.92   -3.83   -3.34   -2.47   -1.34   -0.01    1.50    3.35    5.75
+    40.0    0.00   -0.08   -0.35   -0.74   -1.18   -1.67   -2.18   -2.71   -3.25   -3.70   -3.96   -3.85   -3.35   -2.47   -1.34   -0.04    1.44    3.26    5.64
+    45.0    0.00   -0.08   -0.35   -0.73   -1.19   -1.68   -2.18   -2.73   -3.28   -3.75   -3.99   -3.88   -3.34   -2.46   -1.32   -0.04    1.42    3.22    5.61
+    50.0    0.00   -0.08   -0.35   -0.73   -1.19   -1.67   -2.19   -2.75   -3.31   -3.77   -4.01   -3.88   -3.32   -2.42   -1.26   -0.34    1.44    3.23    5.68
+    55.0    0.00   -0.08   -0.34   -0.72   -1.19   -1.67   -2.20   -2.77   -3.34   -3.81   -4.04   -3.89   -3.31   -2.36   -1.21    0.05    1.47    3.29    5.83
+    60.0    0.00   -0.08   -0.34   -0.72   -1.18   -1.68   -2.21   -2.78   -3.37   -3.85   -4.06   -3.89   -3.28   -2.31   -1.14    0.11    1.52    3.38    6.04
+    65.0    0.00   -0.08   -0.34   -0.72   -1.18   -1.68   -2.21   -2.80   -3.39   -3.88   -4.09   -3.89   -3.25   -2.26   -1.09    0.17    1.59    3.48    6.28
+    70.0    0.00   -0.07   -0.34   -0.72   -1.18   -1.68   -2.22   -2.81   -3.40   -3.89   -4.10   -3.89   -3.24   -2.23   -1.05    0.20    1.63    3.57    6.52
+    75.0    0.00   -0.06   -0.34   -0.72   -1.18   -1.68   -2.22   -2.81   -3.41   -3.90   -4.11   -3.89   -3.22   -2.21   -1.04    0.21    1.64    3.64    6.71
+    80.0    0.00   -0.06   -0.34   -0.72   -1.18   -1.69   -2.22   -2.81   -3.40   -3.89   -4.10   -3.89   -3.23   -2.22   -1.06    0.17    1.61    3.65    6.81
+    85.0    0.00   -0.06   -0.33   -0.72   -1.18   -1.68   -2.22   -2.80   -3.40   -3.87   -4.09   -3.89   -3.25   -2.27   -1.12    0.10    1.54    3.59    6.82
+    90.0    0.00   -0.06   -0.33   -0.73   -1.19   -1.69   -2.21   -2.78   -3.37   -3.85   -4.08   -3.89   -3.27   -2.33   -1.21   -0.28    1.42    3.49    6.72
+    95.0    0.00   -0.06   -0.33   -0.72   -1.19   -1.68   -2.20   -2.76   -3.34   -3.81   -4.06   -3.90   -3.32   -2.40   -1.31   -0.14    1.27    3.31    6.51
+   100.0    0.00   -0.06   -0.33   -0.73   -1.20   -1.68   -2.19   -2.74   -3.31   -3.79   -4.02   -3.89   -3.35   -2.47   -1.43   -0.28    1.09    3.09    6.25
+   105.0    0.00   -0.06   -0.33   -0.74   -1.20   -1.68   -2.18   -2.72   -3.27   -3.75   -3.99   -3.88   -3.37   -2.54   -1.53   -0.43    0.89    2.85    5.92
+   110.0    0.00   -0.06   -0.33   -0.73   -1.20   -1.67   -2.17   -2.70   -3.25   -3.71   -3.95   -3.87   -3.38   -2.58   -1.62   -0.56    0.72    2.61    5.61
+   115.0    0.00   -0.06   -0.33   -0.73   -1.19   -1.68   -2.17   -2.69   -3.22   -3.68   -3.92   -3.84   -3.37   -2.59   -1.67   -0.65    0.58    2.41    5.33
+   120.0    0.00   -0.06   -0.33   -0.73   -1.19   -1.67   -2.16   -2.68   -3.21   -3.65   -3.89   -3.78   -3.31   -2.56   -1.66   -0.69    0.49    2.26    5.13
+   125.0    0.00   -0.06   -0.33   -0.73   -1.18   -1.66   -2.16   -2.67   -3.19   -3.63   -3.84   -3.72   -3.24   -2.48   -1.60   -0.66    0.46    2.17    5.03
+   130.0    0.00   -0.07   -0.32   -0.72   -1.17   -1.66   -2.14   -2.66   -3.18   -3.61   -3.79   -3.65   -3.14   -2.36   -1.48   -0.57    0.50    2.17    5.02
+   135.0    0.00   -0.07   -0.31   -0.71   -1.16   -1.64   -2.13   -2.65   -3.17   -3.57   -3.74   -3.56   -3.02   -2.21   -1.31   -0.43    0.61    2.25    5.11
+   140.0    0.00   -0.07   -0.32   -0.70   -1.15   -1.61   -2.11   -2.63   -3.14   -3.54   -3.69   -3.46   -2.87   -2.03   -1.12   -0.24    0.78    2.39    5.29
+   145.0    0.00   -0.06   -0.32   -0.69   -1.13   -1.59   -2.08   -2.60   -3.11   -3.51   -3.63   -3.37   -2.73   -1.84   -0.90   -0.02    0.98    2.58    5.50
+   150.0    0.00   -0.06   -0.31   -0.68   -1.11   -1.56   -2.05   -2.56   -3.08   -3.46   -3.56   -3.27   -2.59   -1.65   -0.69    0.22    1.21    2.80    5.74
+   155.0    0.00   -0.07   -0.31   -0.67   -1.09   -1.52   -2.01   -2.52   -3.03   -3.40   -3.50   -3.18   -2.47   -1.49   -0.49    0.44    1.43    3.02    5.94
+   160.0    0.00   -0.07   -0.31   -0.67   -1.06   -1.49   -1.96   -2.47   -2.98   -3.36   -3.44   -3.10   -2.36   -1.36   -0.32    0.62    1.61    3.19    6.10
+   165.0    0.00   -0.07   -0.32   -0.65   -1.04   -1.46   -1.92   -2.42   -2.93   -3.30   -3.39   -3.06   -2.30   -1.27   -0.20    0.76    1.77    3.33    6.17
+   170.0    0.00   -0.07   -0.31   -0.64   -1.02   -1.43   -1.88   -2.37   -2.87   -3.26   -3.35   -3.02   -2.26   -1.23   -0.15    0.84    1.86    3.40    6.17
+   175.0    0.00   -0.08   -0.31   -0.65   -1.01   -1.41   -1.85   -2.34   -2.84   -3.23   -3.33   -3.03   -2.28   -1.25   -0.16    0.85    1.89    3.40    6.07
+   180.0    0.00   -0.08   -0.31   -0.65   -1.01   -1.40   -1.83   -2.32   -2.82   -3.20   -3.33   -3.04   -2.32   -1.31   -0.22    0.80    1.84    3.33    5.90
+   185.0    0.00   -0.09   -0.32   -0.65   -1.01   -1.40   -1.83   -2.31   -2.81   -3.21   -3.35   -3.08   -2.40   -1.42   -0.34    0.67    1.74    3.21    5.68
+   190.0    0.00   -0.09   -0.32   -0.65   -1.03   -1.41   -1.84   -2.32   -2.82   -3.23   -3.38   -3.14   -2.50   -1.55   -0.49    0.52    1.58    3.05    5.43
+   195.0    0.00   -0.09   -0.33   -0.67   -1.04   -1.44   -1.87   -2.36   -2.86   -3.27   -3.44   -3.22   -2.61   -1.69   -0.67    0.34    1.40    2.86    5.19
+   200.0    0.00   -0.09   -0.35   -0.69   -1.07   -1.46   -1.91   -2.41   -2.90   -3.32   -3.50   -3.30   -2.72   -1.85   -0.86    0.15    1.22    2.68    4.97
+   205.0    0.00   -0.10   -0.36   -0.71   -1.10   -1.51   -1.97   -2.46   -2.97   -3.39   -3.57   -3.40   -2.84   -1.98   -1.01   -0.03    1.05    2.52    4.78
+   210.0    0.00   -0.10   -0.37   -0.73   -1.13   -1.56   -2.02   -2.52   -3.04   -3.46   -3.64   -3.48   -2.93   -2.11   -1.15   -0.18    0.91    2.38    4.65
+   215.0    0.00   -0.11   -0.38   -0.76   -1.16   -1.61   -2.08   -2.59   -3.11   -3.54   -3.72   -3.55   -3.01   -2.19   -1.24   -0.27    0.81    2.31    4.57
+   220.0    0.00   -0.11   -0.40   -0.78   -1.20   -1.66   -2.14   -2.66   -3.18   -3.61   -3.79   -3.62   -3.07   -2.24   -1.29   -0.32    0.79    2.29    4.55
+   225.0    0.00   -0.13   -0.41   -0.80   -1.23   -1.70   -2.19   -2.72   -3.24   -3.67   -3.85   -3.66   -3.11   -2.25   -1.28   -0.29    0.82    2.33    4.59
+   230.0    0.00   -0.13   -0.42   -0.83   -1.27   -1.74   -2.22   -2.76   -3.29   -3.71   -3.88   -3.70   -3.11   -2.23   -1.22   -0.20    0.93    2.42    4.68
+   235.0    0.00   -0.13   -0.43   -0.84   -1.29   -1.76   -2.26   -2.80   -3.33   -3.76   -3.93   -3.72   -3.10   -2.18   -1.13   -0.05    1.08    2.57    4.80
+   240.0    0.00   -0.13   -0.45   -0.86   -1.32   -1.79   -2.28   -2.81   -3.35   -3.78   -3.95   -3.72   -3.07   -2.09   -0.98    0.13    1.28    2.76    4.97
+   245.0    0.00   -0.14   -0.46   -0.88   -1.34   -1.80   -2.30   -2.82   -3.36   -3.79   -3.95   -3.70   -3.01   -1.98   -0.81    0.35    1.52    2.99    5.18
+   250.0    0.00   -0.14   -0.47   -0.89   -1.35   -1.81   -2.30   -2.83   -3.36   -3.79   -3.94   -3.67   -2.95   -1.86   -0.62    0.58    1.77    3.23    5.40
+   255.0    0.00   -0.14   -0.47   -0.90   -1.36   -1.82   -2.30   -2.83   -3.35   -3.77   -3.92   -3.63   -2.86   -1.73   -0.45    0.80    2.02    3.48    5.64
+   260.0    0.00   -0.15   -0.48   -0.91   -1.37   -1.83   -2.29   -2.80   -3.33   -3.74   -3.88   -3.57   -2.77   -1.60   -0.28    1.01    2.24    3.71    5.89
+   265.0    0.00   -0.16   -0.49   -0.92   -1.37   -1.82   -2.28   -2.79   -3.30   -3.72   -3.83   -3.50   -2.68   -1.48   -0.13    1.17    2.44    3.93    6.14
+   270.0    0.00   -0.15   -0.49   -0.92   -1.37   -1.81   -2.28   -2.77   -3.27   -3.67   -3.77   -3.41   -2.58   -1.37   -0.01    1.30    2.57    4.11    6.38
+   275.0    0.00   -0.15   -0.50   -0.92   -1.36   -1.81   -2.25   -2.74   -3.23   -3.60   -3.69   -3.33   -2.49   -1.28    0.08    1.37    2.65    4.23    6.59
+   280.0    0.00   -0.15   -0.49   -0.92   -1.36   -1.79   -2.24   -2.72   -3.19   -3.54   -3.60   -3.24   -2.39   -1.20    0.11    1.40    2.69    4.31    6.75
+   285.0    0.00   -0.16   -0.49   -0.91   -1.36   -1.79   -2.22   -2.69   -3.13   -3.47   -3.52   -3.14   -2.30   -1.15    0.14    1.39    2.66    4.33    6.85
+   290.0    0.00   -0.16   -0.49   -0.92   -1.35   -1.77   -2.19   -2.64   -3.07   -3.39   -3.42   -3.04   -2.23   -1.11    0.11    1.32    2.59    4.29    6.88
+   295.0    0.00   -0.16   -0.49   -0.91   -1.34   -1.75   -2.18   -2.60   -3.01   -3.31   -3.33   -2.95   -2.16   -1.09    0.07    1.23    2.49    4.21    6.86
+   300.0    0.00   -0.16   -0.49   -0.90   -1.32   -1.74   -2.14   -2.55   -2.96   -3.22   -3.23   -2.86   -2.12   -1.10    0.01    1.12    2.36    4.09    6.76
+   305.0    0.00   -0.15   -0.47   -0.89   -1.32   -1.72   -2.12   -2.51   -2.88   -3.14   -3.15   -2.79   -2.08   -1.12   -0.05    1.01    2.22    3.95    6.64
+   310.0    0.00   -0.15   -0.47   -0.88   -1.30   -1.70   -2.09   -2.48   -2.83   -3.09   -3.09   -2.74   -2.07   -1.14   -0.13    0.91    2.09    3.82    6.49
+   315.0    0.00   -0.14   -0.46   -0.87   -1.29   -1.69   -2.06   -2.44   -2.79   -3.03   -3.04   -2.72   -2.06   -1.18   -0.20    0.80    1.98    3.69    6.34
+   320.0    0.00   -0.14   -0.46   -0.86   -1.27   -1.67   -2.04   -2.41   -2.76   -3.01   -3.02   -2.72   -2.09   -1.22   -0.26    0.74    1.90    3.60    6.22
+   325.0    0.00   -0.13   -0.44   -0.85   -1.26   -1.65   -2.02   -2.40   -2.75   -3.00   -3.04   -2.74   -2.13   -1.28   -0.32    0.68    1.86    3.56    6.14
+   330.0    0.00   -0.13   -0.44   -0.85   -1.25   -1.63   -2.01   -2.39   -2.74   -3.01   -3.05   -2.79   -2.18   -1.32   -0.37    0.65    1.84    3.54    6.13
+   335.0    0.00   -0.13   -0.43   -0.83   -1.24   -1.63   -2.02   -2.40   -2.77   -3.05   -3.12   -2.86   -2.25   -1.39   -0.41    0.64    1.87    3.59    6.17
+   340.0    0.00   -0.13   -0.43   -0.82   -1.23   -1.63   -2.02   -2.41   -2.80   -3.10   -3.18   -2.93   -2.34   -1.46   -0.45    0.64    1.91    3.66    6.26
+   345.0    0.00   -0.12   -0.42   -0.82   -1.23   -1.63   -2.03   -2.45   -2.85   -3.17   -3.26   -3.04   -2.43   -1.55   -0.50    0.63    1.96    3.76    6.39
+   350.0    0.00   -0.12   -0.41   -0.81   -1.22   -1.64   -2.05   -2.48   -2.89   -3.24   -3.35   -3.13   -2.54   -1.64   -0.56    0.63    2.00    3.85    6.53
+   355.0    0.00   -0.12   -0.41   -0.80   -1.22   -1.65   -2.07   -2.51   -2.95   -3.31   -3.44   -3.24   -2.65   -1.75   -0.64    0.60    2.03    3.94    6.65
+   360.0    0.00   -0.11   -0.40   -0.79   -1.22   -1.65   -2.09   -2.55   -3.01   -3.38   -3.53   -3.35   -2.76   -1.85   -0.72    0.55    2.04    3.99    6.73
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TRM57970.00     NONE                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               6    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     4                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+Number of Calibrated Antennas GPS:      006                 COMMENT             
+Number of Individual Calibrations GPS:  012                 COMMENT             
+Number of Calibrated Antennas GLO:      006                 COMMENT             
+Number of Individual Calibrations GLO:  013                 COMMENT             
+# GLONASS PCV                                               COMMENT             
+#  derived from Delta PCV per 25.0 MHz                      COMMENT             
+#  for frequency channel number k=0                         COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.58     -0.59     63.16                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.04   -0.15   -0.32   -0.49   -0.60   -0.59   -0.43   -0.18    0.01    0.00   -0.27   -0.69   -1.00   -0.92   -0.30    0.64    1.28    0.79
+     0.0    0.00   -0.01   -0.10   -0.27   -0.50   -0.71   -0.80   -0.71   -0.48   -0.23   -0.13   -0.32   -0.73   -1.14   -1.21   -0.71    0.28    1.26    1.40
+     5.0    0.00    0.00   -0.09   -0.26   -0.48   -0.68   -0.76   -0.67   -0.43   -0.19   -0.10   -0.30   -0.72   -1.15   -1.26   -0.80    0.15    1.09    1.20
+    10.0    0.00    0.00   -0.09   -0.25   -0.46   -0.64   -0.71   -0.61   -0.38   -0.14   -0.07   -0.27   -0.71   -1.16   -1.29   -0.87    0.04    0.93    0.98
+    15.0    0.00    0.00   -0.08   -0.24   -0.43   -0.60   -0.65   -0.55   -0.32   -0.09   -0.02   -0.24   -0.69   -1.14   -1.29   -0.90   -0.04    0.81    0.78
+    20.0    0.00    0.00   -0.08   -0.22   -0.40   -0.55   -0.58   -0.47   -0.24   -0.02    0.03   -0.20   -0.66   -1.12   -1.28   -0.90   -0.06    0.73    0.63
+    25.0    0.00    0.00   -0.07   -0.21   -0.37   -0.50   -0.51   -0.39   -0.15    0.05    0.08   -0.16   -0.63   -1.09   -1.24   -0.86   -0.03    0.72    0.55
+    30.0    0.00    0.00   -0.07   -0.20   -0.35   -0.45   -0.45   -0.30   -0.07    0.13    0.15   -0.11   -0.59   -1.05   -1.19   -0.79    0.05    0.78    0.55
+    35.0    0.00    0.00   -0.07   -0.19   -0.32   -0.41   -0.38   -0.22    0.02    0.22    0.22   -0.06   -0.54   -1.00   -1.12   -0.69    0.17    0.91    0.64
+    40.0    0.00    0.00   -0.07   -0.18   -0.30   -0.37   -0.32   -0.15    0.10    0.30    0.29    0.01   -0.49   -0.94   -1.04   -0.58    0.31    1.08    0.79
+    45.0    0.00    0.00   -0.07   -0.18   -0.29   -0.34   -0.28   -0.09    0.17    0.38    0.37    0.08   -0.42   -0.87   -0.95   -0.46    0.47    1.27    0.99
+    50.0    0.00    0.00   -0.07   -0.18   -0.28   -0.33   -0.25   -0.04    0.23    0.45    0.45    0.16   -0.34   -0.79   -0.86   -0.34    0.62    1.46    1.19
+    55.0    0.00   -0.01   -0.08   -0.18   -0.29   -0.32   -0.23   -0.01    0.28    0.51    0.52    0.24   -0.26   -0.71   -0.77   -0.24    0.75    1.62    1.38
+    60.0    0.00   -0.01   -0.08   -0.19   -0.29   -0.33   -0.23    0.00    0.31    0.56    0.59    0.32   -0.17   -0.62   -0.69   -0.16    0.85    1.73    1.51
+    65.0    0.00   -0.01   -0.09   -0.20   -0.31   -0.34   -0.25   -0.01    0.32    0.59    0.64    0.39   -0.09   -0.55   -0.63   -0.11    0.89    1.78    1.56
+    70.0    0.00   -0.01   -0.09   -0.21   -0.32   -0.36   -0.27   -0.03    0.31    0.60    0.68    0.45   -0.02   -0.48   -0.58   -0.08    0.89    1.75    1.52
+    75.0    0.00   -0.02   -0.10   -0.23   -0.35   -0.39   -0.31   -0.06    0.29    0.60    0.70    0.49    0.03   -0.44   -0.55   -0.09    0.85    1.66    1.40
+    80.0    0.00   -0.02   -0.11   -0.24   -0.37   -0.43   -0.35   -0.10    0.25    0.58    0.70    0.51    0.05   -0.42   -0.55   -0.12    0.76    1.51    1.19
+    85.0    0.00   -0.02   -0.12   -0.26   -0.39   -0.46   -0.39   -0.15    0.21    0.54    0.67    0.49    0.04   -0.43   -0.58   -0.18    0.64    1.32    0.93
+    90.0    0.00   -0.03   -0.13   -0.27   -0.42   -0.50   -0.43   -0.20    0.15    0.49    0.62    0.44    0.00   -0.47   -0.63   -0.26    0.50    1.10    0.62
+    95.0    0.00   -0.03   -0.13   -0.29   -0.44   -0.53   -0.48   -0.25    0.09    0.42    0.55    0.37   -0.07   -0.54   -0.70   -0.35    0.36    0.87    0.31
+   100.0    0.00   -0.03   -0.14   -0.30   -0.46   -0.56   -0.52   -0.30    0.03    0.34    0.45    0.26   -0.18   -0.63   -0.79   -0.45    0.22    0.66    0.03
+   105.0    0.00   -0.04   -0.15   -0.31   -0.48   -0.59   -0.55   -0.35   -0.04    0.25    0.35    0.14   -0.30   -0.74   -0.89   -0.55    0.10    0.49   -0.21
+   110.0    0.00   -0.04   -0.15   -0.32   -0.50   -0.61   -0.58   -0.40   -0.10    0.16    0.23    0.01   -0.43   -0.87   -0.99   -0.64    0.00    0.35   -0.39
+   115.0    0.00   -0.04   -0.16   -0.33   -0.51   -0.63   -0.61   -0.44   -0.16    0.08    0.12   -0.12   -0.57   -0.99   -1.09   -0.72   -0.08    0.26   -0.50
+   120.0    0.00   -0.04   -0.16   -0.34   -0.52   -0.64   -0.63   -0.47   -0.22    0.00    0.02   -0.24   -0.69   -1.11   -1.18   -0.79   -0.12    0.22   -0.53
+   125.0    0.00   -0.05   -0.17   -0.34   -0.52   -0.65   -0.65   -0.50   -0.26   -0.06   -0.06   -0.34   -0.80   -1.20   -1.26   -0.83   -0.14    0.23   -0.50
+   130.0    0.00   -0.05   -0.17   -0.34   -0.53   -0.66   -0.66   -0.52   -0.29   -0.11   -0.13   -0.42   -0.88   -1.28   -1.32   -0.86   -0.13    0.28   -0.41
+   135.0    0.00   -0.05   -0.17   -0.34   -0.53   -0.66   -0.67   -0.53   -0.31   -0.14   -0.17   -0.47   -0.94   -1.33   -1.35   -0.87   -0.09    0.36   -0.28
+   140.0    0.00   -0.05   -0.17   -0.34   -0.53   -0.66   -0.67   -0.54   -0.32   -0.16   -0.19   -0.49   -0.97   -1.36   -1.37   -0.86   -0.04    0.46   -0.13
+   145.0    0.00   -0.05   -0.17   -0.34   -0.52   -0.65   -0.66   -0.53   -0.32   -0.15   -0.19   -0.49   -0.97   -1.36   -1.36   -0.83    0.02    0.58    0.03
+   150.0    0.00   -0.05   -0.17   -0.34   -0.52   -0.64   -0.65   -0.52   -0.31   -0.14   -0.17   -0.48   -0.96   -1.35   -1.35   -0.80    0.09    0.70    0.19
+   155.0    0.00   -0.06   -0.17   -0.34   -0.51   -0.63   -0.64   -0.50   -0.28   -0.11   -0.14   -0.45   -0.93   -1.33   -1.32   -0.75    0.17    0.82    0.34
+   160.0    0.00   -0.06   -0.17   -0.33   -0.50   -0.62   -0.62   -0.48   -0.26   -0.08   -0.11   -0.42   -0.90   -1.30   -1.29   -0.71    0.24    0.92    0.47
+   165.0    0.00   -0.06   -0.17   -0.33   -0.50   -0.61   -0.60   -0.46   -0.23   -0.05   -0.08   -0.38   -0.87   -1.27   -1.26   -0.67    0.30    1.02    0.58
+   170.0    0.00   -0.06   -0.17   -0.33   -0.49   -0.60   -0.59   -0.43   -0.20   -0.02   -0.05   -0.36   -0.85   -1.24   -1.23   -0.63    0.36    1.09    0.66
+   175.0    0.00   -0.06   -0.17   -0.33   -0.48   -0.58   -0.57   -0.41   -0.17    0.01   -0.02   -0.33   -0.82   -1.22   -1.20   -0.59    0.40    1.15    0.73
+   180.0    0.00   -0.06   -0.18   -0.33   -0.48   -0.57   -0.55   -0.39   -0.15    0.03   -0.01   -0.32   -0.80   -1.20   -1.17   -0.56    0.44    1.19    0.77
+   185.0    0.00   -0.06   -0.18   -0.33   -0.48   -0.56   -0.54   -0.37   -0.13    0.04    0.00   -0.31   -0.79   -1.17   -1.14   -0.53    0.47    1.22    0.80
+   190.0    0.00   -0.06   -0.18   -0.33   -0.47   -0.56   -0.52   -0.36   -0.12    0.05    0.01   -0.30   -0.77   -1.14   -1.10   -0.49    0.50    1.24    0.83
+   195.0    0.00   -0.06   -0.18   -0.33   -0.48   -0.56   -0.52   -0.34   -0.11    0.06    0.02   -0.28   -0.75   -1.11   -1.06   -0.45    0.53    1.26    0.86
+   200.0    0.00   -0.06   -0.18   -0.34   -0.48   -0.56   -0.51   -0.33   -0.09    0.07    0.03   -0.27   -0.72   -1.07   -1.01   -0.40    0.57    1.30    0.91
+   205.0    0.00   -0.07   -0.19   -0.34   -0.48   -0.56   -0.51   -0.32   -0.08    0.09    0.05   -0.25   -0.69   -1.03   -0.95   -0.33    0.64    1.36    0.97
+   210.0    0.00   -0.07   -0.19   -0.35   -0.49   -0.56   -0.50   -0.31   -0.06    0.11    0.07   -0.22   -0.66   -0.98   -0.88   -0.25    0.73    1.45    1.05
+   215.0    0.00   -0.07   -0.19   -0.36   -0.50   -0.57   -0.50   -0.30   -0.04    0.14    0.10   -0.20   -0.63   -0.93   -0.81   -0.14    0.85    1.57    1.17
+   220.0    0.00   -0.07   -0.20   -0.36   -0.51   -0.58   -0.50   -0.29   -0.02    0.17    0.13   -0.17   -0.60   -0.89   -0.74   -0.03    1.00    1.74    1.31
+   225.0    0.00   -0.07   -0.20   -0.37   -0.52   -0.58   -0.50   -0.27    0.01    0.19    0.15   -0.16   -0.59   -0.86   -0.67    0.10    1.18    1.93    1.48
+   230.0    0.00   -0.07   -0.20   -0.38   -0.53   -0.59   -0.50   -0.26    0.03    0.22    0.17   -0.16   -0.59   -0.84   -0.61    0.23    1.37    2.16    1.67
+   235.0    0.00   -0.07   -0.21   -0.39   -0.55   -0.60   -0.50   -0.25    0.05    0.23    0.17   -0.17   -0.61   -0.85   -0.56    0.35    1.57    2.38    1.86
+   240.0    0.00   -0.07   -0.21   -0.39   -0.56   -0.61   -0.51   -0.25    0.05    0.23    0.15   -0.20   -0.65   -0.87   -0.53    0.46    1.76    2.60    2.03
+   245.0    0.00   -0.07   -0.21   -0.40   -0.57   -0.63   -0.52   -0.26    0.04    0.22    0.12   -0.26   -0.72   -0.91   -0.51    0.55    1.92    2.78    2.16
+   250.0    0.00   -0.07   -0.21   -0.40   -0.58   -0.64   -0.54   -0.28    0.02    0.18    0.07   -0.33   -0.79   -0.96   -0.52    0.61    2.03    2.91    2.24
+   255.0    0.00   -0.07   -0.21   -0.41   -0.58   -0.65   -0.56   -0.31   -0.02    0.13    0.00   -0.41   -0.87   -1.02   -0.53    0.64    2.10    2.96    2.24
+   260.0    0.00   -0.06   -0.21   -0.41   -0.59   -0.67   -0.58   -0.34   -0.07    0.06   -0.09   -0.50   -0.95   -1.08   -0.56    0.64    2.10    2.93    2.15
+   265.0    0.00   -0.06   -0.21   -0.41   -0.60   -0.68   -0.61   -0.39   -0.14   -0.02   -0.18   -0.58   -1.02   -1.13   -0.59    0.62    2.04    2.81    1.97
+   270.0    0.00   -0.06   -0.21   -0.41   -0.60   -0.70   -0.64   -0.44   -0.21   -0.11   -0.27   -0.66   -1.08   -1.16   -0.62    0.56    1.92    2.61    1.70
+   275.0    0.00   -0.06   -0.20   -0.40   -0.60   -0.71   -0.68   -0.50   -0.29   -0.20   -0.35   -0.73   -1.12   -1.18   -0.64    0.49    1.76    2.34    1.38
+   280.0    0.00   -0.06   -0.20   -0.40   -0.60   -0.72   -0.71   -0.56   -0.37   -0.28   -0.42   -0.77   -1.13   -1.17   -0.65    0.41    1.57    2.04    1.01
+   285.0    0.00   -0.05   -0.19   -0.39   -0.60   -0.73   -0.74   -0.61   -0.43   -0.35   -0.48   -0.79   -1.12   -1.15   -0.65    0.33    1.37    1.72    0.64
+   290.0    0.00   -0.05   -0.19   -0.39   -0.60   -0.74   -0.76   -0.66   -0.49   -0.41   -0.51   -0.79   -1.08   -1.11   -0.65    0.26    1.18    1.42    0.31
+   295.0    0.00   -0.05   -0.18   -0.38   -0.59   -0.75   -0.79   -0.69   -0.54   -0.45   -0.53   -0.77   -1.04   -1.05   -0.63    0.19    1.02    1.17    0.04
+   300.0    0.00   -0.04   -0.17   -0.37   -0.59   -0.75   -0.80   -0.72   -0.57   -0.47   -0.52   -0.74   -0.98   -1.00   -0.62    0.14    0.89    1.00   -0.13
+   305.0    0.00   -0.04   -0.17   -0.36   -0.58   -0.76   -0.82   -0.74   -0.59   -0.47   -0.50   -0.69   -0.92   -0.95   -0.60    0.10    0.81    0.90   -0.19
+   310.0    0.00   -0.04   -0.16   -0.35   -0.58   -0.76   -0.83   -0.75   -0.60   -0.46   -0.47   -0.64   -0.87   -0.92   -0.60    0.07    0.76    0.89   -0.13
+   315.0    0.00   -0.03   -0.15   -0.35   -0.57   -0.76   -0.83   -0.76   -0.59   -0.44   -0.43   -0.59   -0.82   -0.89   -0.61    0.04    0.76    0.95    0.04
+   320.0    0.00   -0.03   -0.15   -0.34   -0.57   -0.76   -0.84   -0.77   -0.59   -0.42   -0.39   -0.54   -0.78   -0.89   -0.64    0.01    0.77    1.07    0.30
+   325.0    0.00   -0.03   -0.14   -0.33   -0.57   -0.76   -0.85   -0.77   -0.58   -0.39   -0.34   -0.50   -0.76   -0.90   -0.68   -0.03    0.79    1.22    0.60
+   330.0    0.00   -0.02   -0.13   -0.33   -0.56   -0.77   -0.85   -0.77   -0.57   -0.36   -0.31   -0.46   -0.75   -0.93   -0.74   -0.09    0.80    1.37    0.92
+   335.0    0.00   -0.02   -0.13   -0.32   -0.56   -0.77   -0.85   -0.77   -0.56   -0.34   -0.27   -0.43   -0.74   -0.96   -0.82   -0.17    0.79    1.49    1.20
+   340.0    0.00   -0.02   -0.12   -0.31   -0.55   -0.76   -0.86   -0.77   -0.55   -0.32   -0.24   -0.40   -0.74   -1.01   -0.90   -0.26    0.75    1.56    1.43
+   345.0    0.00   -0.01   -0.11   -0.30   -0.54   -0.76   -0.85   -0.77   -0.54   -0.30   -0.21   -0.38   -0.74   -1.05   -0.99   -0.37    0.67    1.58    1.56
+   350.0    0.00   -0.01   -0.11   -0.29   -0.53   -0.75   -0.84   -0.76   -0.53   -0.28   -0.19   -0.36   -0.74   -1.09   -1.07   -0.49    0.56    1.53    1.60
+   355.0    0.00   -0.01   -0.10   -0.28   -0.52   -0.73   -0.83   -0.74   -0.51   -0.25   -0.16   -0.34   -0.74   -1.12   -1.15   -0.60    0.42    1.42    1.54
+   360.0    0.00   -0.01   -0.10   -0.27   -0.50   -0.71   -0.80   -0.71   -0.48   -0.23   -0.13   -0.32   -0.73   -1.14   -1.21   -0.71    0.28    1.26    1.40
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.04      2.02     56.57                              NORTH / EAST / UP   
+   NOAZI    0.00    0.03    0.08    0.03   -0.21   -0.64   -1.12   -1.43   -1.34   -0.78    0.14    1.09    1.65    1.52    0.69   -0.41   -1.04   -0.37    2.12
+     0.0    0.00   -0.12   -0.17   -0.23   -0.41   -0.73   -1.09   -1.30   -1.15   -0.56    0.36    1.29    1.81    1.59    0.61   -0.68   -1.41   -0.53    2.84
+     5.0    0.00   -0.11   -0.16   -0.23   -0.41   -0.73   -1.09   -1.30   -1.16   -0.56    0.36    1.29    1.79    1.52    0.48   -0.88   -1.69   -0.85    2.51
+    10.0    0.00   -0.10   -0.14   -0.21   -0.40   -0.73   -1.10   -1.31   -1.16   -0.56    0.37    1.29    1.78    1.47    0.37   -1.08   -1.98   -1.23    2.04
+    15.0    0.00   -0.09   -0.13   -0.20   -0.40   -0.73   -1.11   -1.33   -1.18   -0.58    0.37    1.30    1.78    1.45    0.29   -1.25   -2.26   -1.64    1.47
+    20.0    0.00   -0.08   -0.11   -0.19   -0.39   -0.74   -1.13   -1.36   -1.21   -0.60    0.36    1.31    1.80    1.46    0.25   -1.37   -2.50   -2.03    0.86
+    25.0    0.00   -0.07   -0.09   -0.17   -0.38   -0.75   -1.15   -1.40   -1.26   -0.64    0.34    1.32    1.84    1.51    0.28   -1.41   -2.65   -2.36    0.26
+    30.0    0.00   -0.05   -0.07   -0.15   -0.37   -0.75   -1.18   -1.44   -1.32   -0.70    0.30    1.32    1.88    1.58    0.36   -1.37   -2.71   -2.59   -0.25
+    35.0    0.00   -0.04   -0.05   -0.13   -0.35   -0.75   -1.20   -1.50   -1.39   -0.78    0.24    1.30    1.92    1.68    0.49   -1.25   -2.66   -2.69   -0.62
+    40.0    0.00   -0.02   -0.03   -0.10   -0.33   -0.75   -1.23   -1.55   -1.47   -0.87    0.16    1.26    1.95    1.79    0.66   -1.05   -2.49   -2.63   -0.79
+    45.0    0.00   -0.01    0.00   -0.07   -0.31   -0.74   -1.24   -1.59   -1.55   -0.97    0.06    1.21    1.96    1.88    0.84   -0.80   -2.21   -2.41   -0.74
+    50.0    0.00    0.01    0.02   -0.04   -0.28   -0.72   -1.24   -1.63   -1.61   -1.06   -0.04    1.13    1.94    1.95    1.02   -0.51   -1.85   -2.04   -0.47
+    55.0    0.00    0.02    0.05    0.00   -0.24   -0.69   -1.23   -1.64   -1.66   -1.14   -0.14    1.03    1.88    1.98    1.17   -0.22   -1.44   -1.55    0.02
+    60.0    0.00    0.04    0.08    0.04   -0.20   -0.65   -1.20   -1.63   -1.69   -1.20   -0.23    0.92    1.80    1.97    1.28    0.04   -1.01   -0.98    0.68
+    65.0    0.00    0.05    0.11    0.08   -0.15   -0.60   -1.16   -1.60   -1.68   -1.24   -0.31    0.81    1.69    1.91    1.33    0.25   -0.61   -0.38    1.45
+    70.0    0.00    0.07    0.14    0.12   -0.10   -0.55   -1.10   -1.55   -1.65   -1.24   -0.36    0.71    1.56    1.81    1.32    0.40   -0.26    0.19    2.26
+    75.0    0.00    0.09    0.17    0.16   -0.05   -0.48   -1.03   -1.48   -1.58   -1.21   -0.38    0.63    1.44    1.68    1.26    0.48    0.01    0.69    3.05
+    80.0    0.00    0.10    0.20    0.20    0.00   -0.42   -0.95   -1.39   -1.50   -1.14   -0.37    0.58    1.32    1.54    1.16    0.48    0.18    1.09    3.74
+    85.0    0.00    0.12    0.23    0.24    0.05   -0.36   -0.88   -1.30   -1.40   -1.06   -0.32    0.56    1.24    1.41    1.03    0.41    0.24    1.34    4.27
+    90.0    0.00    0.13    0.26    0.28    0.09   -0.30   -0.80   -1.20   -1.29   -0.95   -0.25    0.58    1.19    1.30    0.89    0.30    0.20    1.43    4.62
+    95.0    0.00    0.15    0.29    0.31    0.14   -0.25   -0.74   -1.11   -1.18   -0.84   -0.15    0.63    1.17    1.22    0.76    0.15    0.07    1.38    4.76
+   100.0    0.00    0.16    0.31    0.35    0.17   -0.21   -0.68   -1.04   -1.08   -0.72   -0.04    0.71    1.20    1.18    0.66   -0.02   -0.13    1.19    4.70
+   105.0    0.00    0.17    0.33    0.38    0.20   -0.18   -0.64   -0.97   -0.99   -0.61    0.08    0.81    1.26    1.18    0.58   -0.18   -0.37    0.90    4.47
+   110.0    0.00    0.18    0.35    0.40    0.23   -0.15   -0.61   -0.93   -0.92   -0.51    0.19    0.92    1.34    1.21    0.54   -0.32   -0.63    0.54    4.09
+   115.0    0.00    0.19    0.37    0.42    0.25   -0.14   -0.59   -0.90   -0.87   -0.44    0.29    1.03    1.43    1.27    0.52   -0.43   -0.87    0.16    3.63
+   120.0    0.00    0.20    0.39    0.44    0.26   -0.13   -0.59   -0.89   -0.85   -0.39    0.36    1.11    1.52    1.33    0.53   -0.51   -1.09   -0.21    3.14
+   125.0    0.00    0.21    0.40    0.45    0.27   -0.13   -0.59   -0.89   -0.84   -0.36    0.41    1.18    1.59    1.39    0.55   -0.57   -1.25   -0.53    2.65
+   130.0    0.00    0.21    0.41    0.46    0.27   -0.14   -0.60   -0.91   -0.85   -0.36    0.42    1.21    1.63    1.43    0.58   -0.59   -1.36   -0.78    2.22
+   135.0    0.00    0.22    0.41    0.46    0.27   -0.15   -0.62   -0.94   -0.88   -0.39    0.41    1.20    1.64    1.44    0.59   -0.59   -1.42   -0.95    1.88
+   140.0    0.00    0.22    0.42    0.46    0.26   -0.16   -0.65   -0.97   -0.92   -0.43    0.37    1.17    1.62    1.43    0.60   -0.58   -1.42   -1.02    1.65
+   145.0    0.00    0.22    0.42    0.46    0.25   -0.19   -0.69   -1.02   -0.97   -0.49    0.30    1.11    1.56    1.40    0.59   -0.55   -1.38   -1.01    1.52
+   150.0    0.00    0.22    0.41    0.45    0.23   -0.21   -0.73   -1.07   -1.04   -0.56    0.22    1.03    1.49    1.34    0.56   -0.53   -1.31   -0.93    1.49
+   155.0    0.00    0.21    0.41    0.43    0.21   -0.25   -0.77   -1.13   -1.11   -0.65    0.13    0.94    1.40    1.27    0.53   -0.50   -1.21   -0.79    1.55
+   160.0    0.00    0.21    0.40    0.42    0.18   -0.29   -0.83   -1.20   -1.20   -0.74    0.04    0.84    1.31    1.20    0.49   -0.48   -1.09   -0.61    1.68
+   165.0    0.00    0.20    0.38    0.39    0.15   -0.34   -0.89   -1.28   -1.29   -0.84   -0.06    0.75    1.23    1.13    0.45   -0.45   -0.98   -0.40    1.84
+   170.0    0.00    0.20    0.37    0.37    0.11   -0.39   -0.96   -1.37   -1.38   -0.93   -0.15    0.67    1.16    1.07    0.42   -0.43   -0.86   -0.20    2.03
+   175.0    0.00    0.19    0.35    0.34    0.07   -0.45   -1.04   -1.45   -1.48   -1.03   -0.23    0.60    1.10    1.02    0.39   -0.40   -0.75    0.01    2.23
+   180.0    0.00    0.18    0.33    0.31    0.02   -0.51   -1.11   -1.54   -1.57   -1.12   -0.30    0.54    1.06    0.99    0.38   -0.38   -0.64    0.20    2.42
+   185.0    0.00    0.17    0.30    0.27   -0.03   -0.57   -1.19   -1.63   -1.66   -1.19   -0.37    0.50    1.03    0.97    0.37   -0.35   -0.54    0.38    2.60
+   190.0    0.00    0.15    0.28    0.23   -0.08   -0.63   -1.25   -1.70   -1.73   -1.26   -0.42    0.47    1.01    0.95    0.37   -0.32   -0.46    0.54    2.76
+   195.0    0.00    0.14    0.25    0.19   -0.13   -0.68   -1.32   -1.77   -1.79   -1.31   -0.45    0.45    1.00    0.95    0.37   -0.30   -0.38    0.68    2.90
+   200.0    0.00    0.13    0.22    0.15   -0.17   -0.74   -1.37   -1.81   -1.84   -1.35   -0.48    0.43    0.99    0.94    0.37   -0.27   -0.31    0.80    3.03
+   205.0    0.00    0.11    0.19    0.11   -0.22   -0.78   -1.41   -1.85   -1.86   -1.36   -0.49    0.43    0.99    0.94    0.38   -0.25   -0.26    0.90    3.14
+   210.0    0.00    0.10    0.16    0.07   -0.26   -0.82   -1.44   -1.87   -1.87   -1.36   -0.48    0.44    1.00    0.95    0.38   -0.24   -0.22    0.97    3.24
+   215.0    0.00    0.08    0.13    0.03   -0.31   -0.86   -1.46   -1.87   -1.86   -1.35   -0.46    0.46    1.02    0.97    0.40   -0.22   -0.19    1.02    3.33
+   220.0    0.00    0.06    0.10   -0.01   -0.35   -0.89   -1.48   -1.87   -1.85   -1.32   -0.43    0.49    1.05    1.00    0.42   -0.21   -0.19    1.04    3.40
+   225.0    0.00    0.05    0.07   -0.05   -0.38   -0.91   -1.49   -1.86   -1.82   -1.28   -0.38    0.55    1.11    1.06    0.47   -0.19   -0.20    1.03    3.45
+   230.0    0.00    0.03    0.04   -0.08   -0.42   -0.94   -1.50   -1.85   -1.79   -1.24   -0.32    0.63    1.20    1.14    0.53   -0.17   -0.23    0.98    3.47
+   235.0    0.00    0.02    0.01   -0.12   -0.45   -0.96   -1.51   -1.84   -1.77   -1.19   -0.25    0.72    1.31    1.25    0.60   -0.16   -0.28    0.90    3.46
+   240.0    0.00    0.00   -0.02   -0.15   -0.48   -0.99   -1.52   -1.84   -1.74   -1.14   -0.17    0.83    1.44    1.38    0.69   -0.14   -0.35    0.78    3.41
+   245.0    0.00   -0.02   -0.04   -0.19   -0.51   -1.01   -1.53   -1.84   -1.72   -1.08   -0.08    0.96    1.59    1.52    0.79   -0.13   -0.44    0.63    3.31
+   250.0    0.00   -0.03   -0.07   -0.21   -0.54   -1.03   -1.54   -1.84   -1.70   -1.03    0.01    1.08    1.74    1.66    0.88   -0.13   -0.55    0.45    3.17
+   255.0    0.00   -0.04   -0.09   -0.24   -0.57   -1.05   -1.55   -1.84   -1.67   -0.98    0.10    1.21    1.89    1.79    0.95   -0.15   -0.67    0.25    2.98
+   260.0    0.00   -0.06   -0.11   -0.27   -0.59   -1.07   -1.56   -1.83   -1.65   -0.92    0.20    1.33    2.01    1.90    1.00   -0.19   -0.81    0.03    2.75
+   265.0    0.00   -0.07   -0.13   -0.29   -0.60   -1.08   -1.56   -1.82   -1.61   -0.86    0.28    1.43    2.11    1.97    1.02   -0.25   -0.96   -0.20    2.47
+   270.0    0.00   -0.08   -0.15   -0.30   -0.61   -1.08   -1.55   -1.79   -1.57   -0.80    0.36    1.52    2.18    2.00    0.99   -0.34   -1.12   -0.43    2.17
+   275.0    0.00   -0.09   -0.17   -0.31   -0.62   -1.07   -1.53   -1.75   -1.51   -0.73    0.43    1.58    2.21    1.99    0.93   -0.45   -1.27   -0.66    1.84
+   280.0    0.00   -0.10   -0.18   -0.32   -0.62   -1.05   -1.49   -1.70   -1.45   -0.66    0.50    1.61    2.21    1.93    0.84   -0.57   -1.42   -0.86    1.51
+   285.0    0.00   -0.11   -0.19   -0.33   -0.61   -1.03   -1.45   -1.64   -1.37   -0.59    0.55    1.63    2.17    1.85    0.73   -0.69   -1.55   -1.04    1.20
+   290.0    0.00   -0.12   -0.20   -0.33   -0.60   -1.00   -1.40   -1.57   -1.30   -0.52    0.59    1.63    2.12    1.76    0.62   -0.79   -1.65   -1.18    0.92
+   295.0    0.00   -0.13   -0.21   -0.33   -0.58   -0.96   -1.34   -1.50   -1.22   -0.46    0.62    1.61    2.05    1.66    0.51   -0.87   -1.71   -1.27    0.71
+   300.0    0.00   -0.13   -0.21   -0.33   -0.56   -0.92   -1.29   -1.43   -1.16   -0.41    0.64    1.58    1.99    1.58    0.44   -0.92   -1.73   -1.31    0.57
+   305.0    0.00   -0.14   -0.21   -0.32   -0.54   -0.89   -1.24   -1.37   -1.10   -0.37    0.64    1.55    1.93    1.52    0.41   -0.91   -1.70   -1.30    0.53
+   310.0    0.00   -0.14   -0.22   -0.31   -0.52   -0.85   -1.19   -1.33   -1.07   -0.36    0.63    1.52    1.90    1.50    0.42   -0.87   -1.63   -1.22    0.59
+   315.0    0.00   -0.14   -0.22   -0.31   -0.50   -0.82   -1.15   -1.29   -1.05   -0.36    0.61    1.49    1.87    1.51    0.47   -0.78   -1.51   -1.09    0.76
+   320.0    0.00   -0.14   -0.22   -0.30   -0.48   -0.79   -1.12   -1.27   -1.04   -0.37    0.58    1.46    1.87    1.54    0.55   -0.66   -1.37   -0.91    1.04
+   325.0    0.00   -0.14   -0.21   -0.29   -0.47   -0.77   -1.10   -1.26   -1.05   -0.40    0.54    1.43    1.87    1.59    0.64   -0.53   -1.22   -0.71    1.39
+   330.0    0.00   -0.14   -0.21   -0.28   -0.46   -0.76   -1.09   -1.26   -1.07   -0.44    0.50    1.41    1.88    1.65    0.74   -0.41   -1.08   -0.51    1.78
+   335.0    0.00   -0.14   -0.21   -0.27   -0.45   -0.75   -1.09   -1.27   -1.09   -0.48    0.46    1.38    1.89    1.69    0.82   -0.32   -0.97   -0.32    2.19
+   340.0    0.00   -0.14   -0.20   -0.27   -0.44   -0.74   -1.08   -1.28   -1.11   -0.51    0.42    1.36    1.89    1.72    0.86   -0.27   -0.91   -0.19    2.55
+   345.0    0.00   -0.13   -0.19   -0.26   -0.43   -0.73   -1.08   -1.28   -1.13   -0.54    0.39    1.34    1.88    1.72    0.86   -0.29   -0.93   -0.13    2.83
+   350.0    0.00   -0.13   -0.19   -0.25   -0.42   -0.73   -1.08   -1.29   -1.14   -0.55    0.37    1.32    1.86    1.70    0.81   -0.36   -1.01   -0.16    2.99
+   355.0    0.00   -0.12   -0.18   -0.24   -0.42   -0.73   -1.08   -1.29   -1.15   -0.56    0.36    1.30    1.84    1.65    0.72   -0.50   -1.18   -0.29    3.00
+   360.0    0.00   -0.12   -0.17   -0.23   -0.41   -0.73   -1.09   -1.30   -1.15   -0.56    0.36    1.29    1.81    1.59    0.61   -0.68   -1.41   -0.53    2.84
+   G02                                                      END OF FREQUENCY    
+   R01                                                      START OF FREQUENCY  
+      0.58     -0.59     63.16                              NORTH / EAST / UP   
+   NOAZI    0.00    0.00   -0.02   -0.13   -0.30   -0.50   -0.65   -0.64   -0.47   -0.26   -0.20   -0.44   -0.91   -1.35   -1.38   -0.75    0.35    1.19    0.65
+     0.0    0.00    0.02    0.10   -0.11   -0.34   -0.60   -0.80   -0.81   -0.63   -0.40   -0.31   -0.55   -1.06   -1.59   -1.73   -1.23   -0.21    0.66    0.33
+     5.0    0.00    0.02    0.01   -0.10   -0.32   -0.57   -0.75   -0.76   -0.58   -0.36   -0.28   -0.52   -1.04   -1.60   -1.79   -1.35   -0.38    0.45    0.09
+    10.0    0.00    0.02    0.01   -0.10   -0.29   -0.53   -0.70   -0.71   -0.54   -0.32   -0.25   -0.49   -1.02   -1.60   -1.83   -1.44   -0.53    0.27   -0.09
+    15.0    0.00    0.02    0.01   -0.09   -0.26   -0.49   -0.65   -0.67   -0.50   -0.29   -0.22   -0.46   -0.99   -1.57   -1.83   -1.51   -0.65    0.15   -0.21
+    20.0    0.00    0.02    0.01   -0.06   -0.23   -0.44   -0.60   -0.62   -0.46   -0.25   -0.19   -0.42   -0.95   -1.53   -1.83   -1.53   -0.69    0.09   -0.23
+    25.0    0.00    0.02    0.02   -0.05   -0.20   -0.40   -0.55   -0.57   -0.42   -0.23   -0.16   -0.38   -0.91   -1.49   -1.79   -1.52   -0.68    0.11   -0.16
+    30.0    0.00    0.02    0.02   -0.04   -0.19   -0.36   -0.51   -0.52   -0.39   -0.19   -0.12   -0.33   -0.86   -1.44   -1.75   -1.46   -0.61    0.22   -0.01
+    35.0    0.00    0.02    0.02   -0.03   -0.16   -0.34   -0.48   -0.48   -0.33   -0.13   -0.07   -0.28   -0.80   -1.38   -1.68   -1.37   -0.48    0.40    0.20
+    40.0    0.00    0.02    0.02   -0.02   -0.14   -0.31   -0.43   -0.44   -0.28   -0.08   -0.01   -0.22   -0.75   -1.32   -1.60   -1.26   -0.32    0.63    0.45
+    45.0    0.00    0.01    0.03   -0.02   -0.13   -0.28   -0.40   -0.39   -0.23   -0.01    0.06   -0.15   -0.68   -1.25   -1.50   -1.11   -0.10    0.90    0.71
+    50.0    0.00    0.01    0.03   -0.01   -0.11   -0.27   -0.37   -0.35   -0.17    0.06    0.14   -0.08   -0.60   -1.17   -1.40   -0.95    0.12    1.17    0.95
+    55.0    0.00    0.01    0.02   -0.01   -0.12   -0.26   -0.35   -0.31   -0.11    0.13    0.21   -0.24   -0.53   -1.09   -1.28   -0.77    0.36    1.43    1.15
+    60.0    0.00    0.01    0.02   -0.01   -0.11   -0.26   -0.33   -0.28   -0.06    0.19    0.29    0.08   -0.45   -1.00   -1.17   -0.61    0.58    1.66    1.29
+    65.0    0.00    0.01    0.01   -0.02   -0.12   -0.24   -0.34   -0.27   -0.03    0.25    0.35    0.15   -0.38   -0.92   -1.07   -0.46    0.76    1.83    1.36
+    70.0    0.00    0.01    0.01   -0.03   -0.13   -0.25   -0.33   -0.25   -0.01    0.28    0.40    0.21   -0.31   -0.85   -0.96   -0.34    0.90    1.93    1.36
+    75.0    0.00   -0.01    0.01   -0.04   -0.15   -0.27   -0.35   -0.26   -0.01    0.29    0.43    0.25   -0.26   -0.79   -0.89   -0.26    0.99    1.97    1.31
+    80.0    0.00   -0.01    0.11   -0.05   -0.16   -0.30   -0.38   -0.29   -0.04    0.28    0.43    0.27   -0.24   -0.76   -0.85   -0.22    0.99    1.94    1.21
+    85.0    0.00   -0.01   -0.01   -0.07   -0.18   -0.33   -0.42   -0.34   -0.08    0.24    0.40    0.25   -0.24   -0.75   -0.85   -0.22    0.95    1.84    1.09
+    90.0    0.00   -0.01   -0.02   -0.08   -0.21   -0.37   -0.46   -0.40   -0.15    0.18    0.35    0.20   -0.27   -0.77   -0.87   -0.29    0.83    1.68    0.93
+    95.0    0.00   -0.01   -0.02   -0.10   -0.23   -0.41   -0.52   -0.46   -0.23    0.10    0.27    0.14   -0.31   -0.83   -0.94   -0.39    0.67    1.49    0.76
+   100.0    0.00   -0.01   -0.03   -0.11   -0.25   -0.45   -0.58   -0.54   -0.31   -0.34    0.17    0.04   -0.40   -0.91   -1.06   -0.55    0.48    1.26    0.59
+   105.0    0.00   -0.02   -0.04   -0.12   -0.28   -0.49   -0.64   -0.62   -0.41   -0.11    0.06   -0.07   -0.51   -1.01   -1.19   -0.71    0.26    1.03    0.44
+   110.0    0.00   -0.02   -0.04   -0.13   -0.31   -0.52   -0.69   -0.69   -0.49   -0.22   -0.06   -0.19   -0.62   -1.15   -1.32   -0.90    0.05    0.82    0.28
+   115.0    0.00   -0.02   -0.05   -0.15   -0.32   -0.56   -0.73   -0.75   -0.57   -0.31   -0.17   -0.31   -0.75   -1.27   -1.47   -1.06   -0.14    0.62    0.13
+   120.0    0.00   -0.02   -0.05   -0.16   -0.34   -0.58   -0.76   -0.79   -0.65   -0.39   -0.26   -0.41   -0.87   -1.41   -1.61   -1.22   -0.29    0.48    0.01
+   125.0    0.00   -0.03   -0.07   -0.16   -0.35   -0.60   -0.79   -0.83   -0.69   -0.44   -0.33   -0.50   -0.98   -1.51   -1.73   -1.32   -0.41    0.38   -0.09
+   130.0    0.00   -0.03   -0.07   -0.17   -0.36   -0.61   -0.80   -0.84   -0.69   -0.48   -0.37   -0.57   -1.06   -1.61   -1.83   -1.40   -0.45    0.34   -0.13
+   135.0    0.00   -0.03   -0.07   -0.17   -0.37   -0.61   -0.81   -0.84   -0.70   -0.49   -0.40   -0.62   -1.12   -1.68   -1.88   -1.43   -0.44    0.37   -0.15
+   140.0    0.00   -0.03   -0.07   -0.18   -0.37   -0.62   -0.81   -0.84   -0.69   -0.49   -0.40   -0.63   -1.16   -1.72   -1.91   -1.42   -0.39    0.44   -0.14
+   145.0    0.00   -0.03   -0.07   -0.18   -0.37   -0.61   -0.79   -0.82   -0.67   -0.46   -0.39   -0.63   -1.17   -1.73   -1.90   -1.38   -0.31    0.55   -0.08
+   150.0    0.00   -0.03   -0.07   -0.19   -0.37   -0.60   -0.78   -0.80   -0.65   -0.44   -0.37   -0.62   -1.16   -1.72   -1.88   -1.33   -0.21    0.68    0.02
+   155.0    0.00   -0.04   -0.08   -0.19   -0.37   -0.60   -0.77   -0.77   -0.61   -0.40   -0.33   -0.60   -1.14   -1.70   -1.84   -1.26   -0.11    0.81    0.15
+   160.0    0.00   -0.04   -0.08   -0.18   -0.36   -0.59   -0.75   -0.76   -0.59   -0.37   -0.31   -0.58   -1.12   -1.68   -1.81   -1.21   -0.03    0.91    0.29
+   165.0    0.00   -0.04   -0.08   -0.18   -0.37   -0.59   -0.74   -0.74   -0.57   -0.35   -0.29   -0.54   -1.09   -1.65   -1.78   -1.18    0.01    1.00    0.43
+   170.0    0.00   -0.04   -0.07   -0.19   -0.36   -0.58   -0.73   -0.72   -0.55   -0.33   -0.27   -0.53   -1.08   -1.62   -1.76   -1.17    0.02    1.03    0.54
+   175.0    0.00   -0.03   -0.07   -0.19   -0.36   -0.57   -0.72   -0.71   -0.53   -0.31   -0.25   -0.51   -1.06   -1.61   -1.76   -1.19   -0.01    1.02    0.63
+   180.0    0.00   -0.03   -0.08   -0.19   -0.36   -0.56   -0.71   -0.70   -0.52   -0.31   -0.25   -0.51   -1.06   -1.61   -1.77   -1.22   -0.07    0.97    0.66
+   185.0    0.00   -0.03   -0.08   -0.18   -0.36   -0.56   -0.70   -0.68   -0.51   -0.30   -0.26   -0.51   -1.06   -1.61   -1.78   -1.26   -0.15    0.88    0.66
+   190.0    0.00   -0.03   -0.07   -0.18   -0.35   -0.56   -0.68   -0.67   -0.50   -0.30   -0.26   -0.52   -1.06   -1.61   -1.79   -1.30   -0.22    0.78    0.63
+   195.0    0.00   -0.02   -0.07   -0.17   -0.35   -0.55   -0.68   -0.65   -0.48   -0.29   -0.25   -0.51   -1.06   -1.61   -1.79   -1.32   -0.29    0.70    0.58
+   200.0    0.00   -0.02   -0.06   -0.18   -0.35   -0.55   -0.67   -0.63   -0.46   -0.27   -0.24   -0.51   -1.05   -1.60   -1.78   -1.31   -0.30    0.66    0.55
+   205.0    0.00   -0.03   -0.06   -0.17   -0.34   -0.54   -0.66   -0.62   -0.44   -0.24   -0.22   -0.51   -1.04   -1.58   -1.75   -1.28   -0.26    0.68    0.54
+   210.0    0.00   -0.02   -0.06   -0.17   -0.34   -0.53   -0.64   -0.60   -0.41   -0.22   -0.20   -0.48   -1.02   -1.55   -1.68   -1.19   -0.16    0.77    0.60
+   215.0    0.00   -0.02   -0.05   -0.17   -0.33   -0.53   -0.63   -0.58   -0.38   -0.18   -0.17   -0.47   -1.00   -1.50   -1.61   -1.04    0.01    0.94    0.73
+   220.0    0.00   -0.02   -0.05   -0.15   -0.33   -0.53   -0.62   -0.56   -0.36   -0.15   -0.14   -0.44   -0.97   -1.45   -1.51   -0.88    0.25    1.21    0.95
+   225.0    0.00   -0.01   -0.04   -0.15   -0.32   -0.51   -0.61   -0.54   -0.33   -0.13   -0.12   -0.42   -0.95   -1.41   -1.40   -0.69    0.53    1.53    1.24
+   230.0    0.00   -0.01   -0.03   -0.15   -0.32   -0.50   -0.61   -0.53   -0.31   -0.10   -0.09   -0.40   -0.93   -1.35   -1.29   -0.47    0.84    1.90    1.58
+   235.0    0.00   -0.01   -0.03   -0.13   -0.32   -0.50   -0.60   -0.52   -0.30   -0.09   -0.09   -0.39   -0.92   -1.32   -1.18   -0.28    1.16    2.28    1.96
+   240.0    0.00    0.07   -0.02   -0.12   -0.30   -0.49   -0.60   -0.52   -0.30   -0.09   -0.08   -0.39   -0.92   -1.28   -1.08   -0.08    1.45    2.65    2.30
+   245.0    0.00    0.07   -0.02   -0.11   -0.30   -0.50   -0.59   -0.52   -0.30   -0.09   -0.09   -0.42   -0.93   -1.27   -1.00    0.08    1.70    2.95    2.59
+   250.0    0.00    0.07   -0.01   -0.10   -0.29   -0.49   -0.59   -0.52   -0.31   -0.11   -0.11   -0.45   -0.95   -1.26   -0.96    0.20    1.88    3.18    2.77
+   255.0    0.00    0.07    0.21   -0.10   -0.27   -0.48   -0.59   -0.53   -0.32   -0.13   -0.15   -0.47   -0.98   -1.26   -0.91    0.28    2.00    3.28    2.84
+   260.0    0.00    0.03    0.21   -0.09   -0.27   -0.47   -0.58   -0.53   -0.34   -0.15   -0.19   -0.52   -1.00   -1.27   -0.89    0.33    2.05    3.28    2.75
+   265.0    0.00    0.03    0.01   -0.08   -0.26   -0.46   -0.58   -0.54   -0.35   -0.19   -0.23   -0.55   -1.03   -1.28   -0.88    0.35    2.02    3.16    2.51
+   270.0    0.00    0.03    0.01   -0.07   -0.25   -0.46   -0.58   -0.54   -0.38   -0.23   -0.27   -0.60   -1.05   -1.27   -0.86    0.34    1.92    2.95    2.16
+   275.0    0.00    0.03    0.02   -0.06   -0.24   -0.44   -0.58   -0.55   -0.41   -0.26   -0.32   -0.63   -1.07   -1.27   -0.84    0.31    1.79    2.66    1.73
+   280.0    0.00    0.03    0.02   -0.06   -0.24   -0.44   -0.58   -0.57   -0.43   -0.30   -0.35   -0.65   -1.07   -1.23   -0.82    0.27    1.64    2.35    1.27
+   285.0    0.00    0.04    0.02   -0.05   -0.24   -0.44   -0.60   -0.60   -0.46   -0.34   -0.39   -0.66   -1.06   -1.21   -0.80    0.23    1.48    2.03    0.81
+   290.0    0.00    0.02    0.02   -0.06   -0.24   -0.45   -0.61   -0.63   -0.50   -0.38   -0.41   -0.67   -1.03   -1.17   -0.78    0.21    1.33    1.73    0.42
+   295.0    0.00    0.02    0.02   -0.06   -0.25   -0.47   -0.64   -0.66   -0.55   -0.43   -0.44   -0.67   -1.01   -1.12   -0.75    0.17    1.21    1.50    0.13
+   300.0    0.00    0.03    0.03   -0.06   -0.26   -0.49   -0.67   -0.70   -0.59   -0.46   -0.47   -0.68   -0.98   -1.09   -0.73    0.14    1.11    1.35   -0.03
+   305.0    0.00    0.03    0.02   -0.07   -0.27   -0.54   -0.72   -0.75   -0.64   -0.49   -0.48   -0.67   -0.95   -1.06   -0.72    0.11    1.04    1.26   -0.07
+   310.0    0.00    0.02    0.02   -0.08   -0.30   -0.57   -0.77   -0.80   -0.70   -0.52   -0.49   -0.66   -0.94   -1.06   -0.74    0.07    0.98    1.25    0.01
+   315.0    0.00    0.03    0.02   -0.09   -0.31   -0.60   -0.80   -0.85   -0.73   -0.56   -0.50   -0.65   -0.94   -1.06   -0.78    0.01    0.95    1.29    0.19
+   320.0    0.00    0.03    0.01   -0.11   -0.35   -0.62   -0.85   -0.90   -0.76   -0.58   -0.51   -0.65   -0.93   -1.10   -0.84   -0.06    0.91    1.36    0.43
+   325.0    0.00    0.02    0.01   -0.12   -0.37   -0.65   -0.88   -0.92   -0.78   -0.58   -0.49   -0.65   -0.95   -1.16   -0.94   -0.17    0.85    1.42    0.65
+   330.0    0.00    0.03    0.01   -0.13   -0.37   -0.68   -0.90   -0.94   -0.79   -0.57   -0.49   -0.64   -0.97   -1.23   -1.05   -0.29    0.78    1.47    0.85
+   335.0    0.00    0.02    0.13   -0.13   -0.39   -0.70   -0.90   -0.95   -0.79   -0.56   -0.47   -0.63   -1.00   -1.29   -1.17   -0.44    0.67    1.46    0.97
+   340.0    0.00    0.02    0.12   -0.13   -0.39   -0.69   -0.91   -0.94   -0.77   -0.54   -0.44   -0.62   -1.03   -1.38   -1.30   -0.59    0.55    1.39    1.00
+   345.0    0.00    0.03    0.01   -0.13   -0.38   -0.69   -0.89   -0.92   -0.74   -0.51   -0.41   -0.61   -1.05   -1.45   -1.44   -0.76    0.37    1.28    0.93
+   350.0    0.00    0.02    0.11   -0.13   -0.37   -0.66   -0.87   -0.89   -0.71   -0.47   -0.38   -0.59   -1.06   -1.52   -1.55   -0.94    0.19    1.10    0.78
+   355.0    0.00    0.02    0.01   -0.12   -0.36   -0.63   -0.84   -0.85   -0.67   -0.43   -0.34   -0.57   -1.07   -1.56   -1.65   -1.09   -0.02    0.90    0.57
+   360.0    0.00    0.02    0.10   -0.11   -0.34   -0.60   -0.80   -0.81   -0.63   -0.40   -0.31   -0.55   -1.06   -1.59   -1.73   -1.23   -0.21    0.66    0.33
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+      0.04      2.02     56.57                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.01   -0.07   -0.24   -0.55   -0.98   -1.44   -1.77   -1.78   -1.38   -0.63    0.27    0.89    0.89    0.10   -1.18   -2.25   -2.05    0.36
+     0.0    0.00   -0.22   -0.46   -0.70   -0.99   -1.30   -1.58   -1.73   -1.61   -1.16   -0.42    0.38    0.90    0.79   -0.13   -1.59   -2.85   -2.69    0.21
+     5.0    0.00   -0.21   -0.45   -0.70   -0.98   -1.30   -1.58   -1.73   -1.63   -1.17   -0.44    0.37    0.90    0.76   -0.20   -1.73   -3.07   -2.97   -0.07
+    10.0    0.00   -0.21   -0.43   -0.68   -0.97   -1.30   -1.59   -1.75   -1.65   -1.21   -0.45    0.36    0.91    0.76   -0.24   -1.87   -3.30   -3.28   -0.43
+    15.0    0.00   -0.20   -0.42   -0.66   -0.96   -1.28   -1.60   -1.78   -1.70   -1.26   -0.48    0.37    0.93    0.78   -0.27   -1.98   -3.53   -3.60   -0.82
+    20.0    0.00   -0.19   -0.40   -0.65   -0.93   -1.27   -1.61   -1.82   -1.75   -1.31   -0.52    0.36    0.96    0.83   -0.27   -2.05   -3.71   -3.88   -1.22
+    25.0    0.00   -0.18   -0.37   -0.61   -0.90   -1.26   -1.61   -1.86   -1.81   -1.38   -0.57    0.36    1.01    0.90   -0.20   -2.07   -3.82   -4.12   -1.59
+    30.0    0.00   -0.16   -0.34   -0.58   -0.87   -1.24   -1.62   -1.89   -1.88   -1.45   -0.63    0.36    1.06    0.99   -0.10   -2.00   -3.84   -4.26   -1.91
+    35.0    0.00   -0.15   -0.32   -0.54   -0.82   -1.21   -1.61   -1.93   -1.94   -1.53   -0.69    0.34    1.10    1.09    0.03   -1.88   -3.77   -4.29   -2.12
+    40.0    0.00   -0.12   -0.29   -0.49   -0.78   -1.17   -1.61   -1.95   -2.00   -1.61   -0.76    0.30    1.13    1.20    0.20   -1.68   -3.59   -4.18   -2.20
+    45.0    0.00   -0.11   -0.25   -0.45   -0.73   -1.13   -1.58   -1.95   -2.04   -1.68   -0.84    0.27    1.14    1.28    0.36   -1.44   -3.31   -3.95   -2.10
+    50.0    0.00   -0.09   -0.22   -0.40   -0.68   -1.07   -1.54   -1.95   -2.07   -1.73   -0.90    0.21    1.14    1.35    0.53   -1.17   -2.95   -3.58   -1.85
+    55.0    0.00   -0.08   -0.19   -0.35   -0.62   -1.02   -1.50   -1.92   -2.06   -1.76   -0.96    0.14    1.09    1.38    0.66   -0.89   -2.55   -3.10   -1.42
+    60.0    0.00   -0.06   -0.15   -0.29   -0.56   -0.96   -1.44   -1.88   -2.06   -1.77   -1.00    0.07    1.02    1.36    0.76   -0.65   -2.14   -2.56   -0.84
+    65.0    0.00   -0.04   -0.11   -0.24   -0.50   -0.89   -1.39   -1.82   -2.01   -1.77   -1.04   -0.01    0.93    1.30    0.79   -0.46   -1.75   -1.99   -0.15
+    70.0    0.00   -0.02   -0.07   -0.20   -0.44   -0.84   -1.33   -1.76   -1.96   -1.73   -1.05   -0.07    0.82    1.21    0.78   -0.32   -1.42   -1.45    0.59
+    75.0    0.00   -0.09   -0.04   -0.15   -0.39   -0.78   -1.27   -1.70   -1.89   -1.69   -1.04   -0.12    0.73    1.08    0.71   -0.26   -1.17   -0.97    1.35
+    80.0    0.00    0.02   -0.01   -0.11   -0.35   -0.73   -1.20   -1.63   -1.82   -1.62   -1.02   -0.16    0.62    0.95    0.60   -0.28   -1.02   -0.58    2.03
+    85.0    0.00    0.04    0.03   -0.07   -0.30   -0.69   -1.16   -1.57   -1.75   -1.55   -0.97   -0.16    0.56    0.83    0.46   -0.36   -0.97   -0.33    2.59
+    90.0    0.00    0.06    0.06   -0.03   -0.28   -0.65   -1.12   -1.51   -1.67   -1.47   -0.91   -0.14    0.51    0.72    0.32   -0.49   -1.03   -0.24    2.98
+    95.0    0.00    0.08    0.10   -0.31   -0.24   -0.63   -1.09   -1.46   -1.61   -1.39   -0.83   -0.10    0.49    0.64    0.19   -0.64   -1.17   -0.28    3.16
+   100.0    0.00    0.09    0.12    0.04   -0.22   -0.61   -1.07   -1.44   -1.55   -1.32   -0.75   -0.04    0.52    0.59    0.08   -0.82   -1.37   -0.48    3.10
+   105.0    0.00    0.10    0.15    0.07   -0.20   -0.61   -1.06   -1.41   -1.51   -1.24   -0.66    0.04    0.56    0.58   -0.01   -0.98   -1.61   -0.78    2.84
+   110.0    0.00    0.12    0.17    0.09   -0.17   -0.59   -1.05   -1.39   -1.46   -1.18   -0.58    0.13    0.63    0.61   -0.05   -1.12   -1.87   -1.16    2.38
+   115.0    0.00    0.13    0.19    0.11   -0.15   -0.59   -1.05   -1.39   -1.44   -1.13   -0.50    0.21    0.70    0.67   -0.06   -1.22   -2.11   -1.58    1.80
+   120.0    0.00    0.15    0.22    0.13   -0.14   -0.58   -1.05   -1.38   -1.42   -1.09   -0.45    0.28    0.78    0.73   -0.04   -1.28   -2.33   -1.99    1.13
+   125.0    0.00    0.16    0.23    0.15   -0.13   -0.57   -1.04   -1.38   -1.41   -1.06   -0.40    0.35    0.85    0.79   -0.55   -1.32   -2.48   -2.37    0.44
+   130.0    0.00    0.17    0.25    0.17   -0.12   -0.57   -1.03   -1.37   -1.40   -1.04   -0.38    0.39    0.89    0.84    0.04   -1.32   -2.59   -2.68   -0.18
+   135.0    0.00    0.18    0.26    0.17   -0.11   -0.56   -1.04   -1.39   -1.42   -1.06   -0.38    0.39    0.93    0.87    0.07   -1.30   -2.65   -2.90   -0.70
+   140.0    0.00    0.18    0.27    0.19   -0.10   -0.55   -1.04   -1.39   -1.43   -1.08   -0.39    0.38    0.93    0.89    0.11   -1.28   -2.65   -3.01   -1.05
+   145.0    0.00    0.19    0.28    0.20   -0.10   -0.56   -1.06   -1.42   -1.46   -1.11   -0.44    0.36    0.90    0.89    0.12   -1.24   -2.62   -3.03   -1.25
+   150.0    0.00    0.19    0.28    0.20   -0.09   -0.56   -1.08   -1.44   -1.50   -1.16   -0.49    0.31    0.87    0.86    0.11   -1.22   -2.57   -2.96   -1.26
+   155.0    0.00    0.19    0.28    0.19   -0.10   -0.57   -1.09   -1.48   -1.55   -1.22   -0.55    0.25    0.81    0.81    0.09   -1.21   -2.48   -2.81   -1.12
+   160.0    0.00    0.19    0.28    0.19   -0.11   -0.59   -1.13   -1.53   -1.63   -1.30   -0.62    0.18    0.75    0.77    0.05   -1.20   -2.39   -2.60   -0.84
+   165.0    0.00    0.19    0.27    0.18   -0.12   -0.63   -1.17   -1.60   -1.70   -1.38   -0.71    0.10    0.69    0.71    0.01   -1.19   -2.29   -2.36   -0.50
+   170.0    0.00    0.19    0.27    0.17   -0.15   -0.65   -1.22   -1.67   -1.78   -1.47   -0.79    0.03    0.63    0.65   -0.04   -1.20   -2.18   -2.10   -0.10
+   175.0    0.00    0.18    0.25    0.15   -0.17   -0.70   -1.28   -1.73   -1.87   -1.57   -0.87   -0.04    0.57    0.60   -0.07   -1.18   -2.07   -1.83    0.29
+   180.0    0.00    0.17    0.24    0.13   -0.21   -0.74   -1.34   -1.80   -1.95   -1.66   -0.95   -0.12    0.52    0.56   -0.09   -1.16   -1.95   -1.58    0.66
+   185.0    0.00    0.17    0.22    0.10   -0.25   -0.78   -1.40   -1.88   -2.04   -1.73   -1.03   -0.17    0.46    0.52   -0.11   -1.12   -1.82   -1.33    0.98
+   190.0    0.00    0.15    0.21    0.07   -0.29   -0.84   -1.44   -1.94   -2.09   -1.80   -1.10   -0.23    0.41    0.49   -0.11   -1.07   -1.70   -1.12    1.24
+   195.0    0.00    0.15    0.18    0.04   -0.33   -0.87   -1.50   -1.99   -2.14   -1.85   -1.14   -0.27    0.38    0.47   -0.10   -1.02   -1.57   -0.92    1.44
+   200.0    0.00    0.14    0.15   -0.15   -0.36   -0.93   -1.55   -2.02   -2.19   -1.89   -1.18   -0.31    0.35    0.45   -0.09   -0.95   -1.44   -0.75    1.61
+   205.0    0.00    0.12    0.13   -0.04   -0.41   -0.96   -1.58   -2.06   -2.21   -1.90   -1.20   -0.33    0.33    0.45   -0.05   -0.88   -1.33   -0.60    1.74
+   210.0    0.00    0.11    0.10   -0.07   -0.45   -1.00   -1.62   -2.08   -2.22   -1.90   -1.20   -0.33    0.33    0.46   -0.04   -0.83   -1.24   -0.48    1.86
+   215.0    0.00    0.09    0.08   -0.11   -0.50   -1.05   -1.64   -2.09   -2.21   -1.90   -1.18   -0.31    0.35    0.48   -0.40   -0.78   -1.16   -0.38    1.99
+   220.0    0.00    0.07    0.05   -0.15   -0.54   -1.09   -1.68   -2.11   -2.22   -1.87   -1.15   -0.28    0.39    0.51    0.03   -0.75   -1.13   -0.31    2.12
+   225.0    0.00    0.06    0.02   -0.19   -0.58   -1.12   -1.70   -2.12   -2.20   -1.84   -1.09   -0.20    0.46    0.58    0.08   -0.73   -1.13   -0.28    2.24
+   230.0    0.00    0.04   -0.04   -0.21   -0.62   -1.16   -1.73   -2.13   -2.19   -1.81   -1.03   -0.11    0.57    0.67    0.13   -0.72   -1.16   -0.29    2.35
+   235.0    0.00    0.03   -0.03   -0.25   -0.66   -1.19   -1.75   -2.13   -2.18   -1.76   -0.94   -0.72    0.68    0.77    0.17   -0.75   -1.22   -0.34    2.43
+   240.0    0.00    0.01   -0.06   -0.28   -0.69   -1.23   -1.78   -2.15   -2.16   -1.71   -0.85    0.13    0.83    0.89    0.23   -0.77   -1.33   -0.46    2.45
+   245.0    0.00   -0.01   -0.08   -0.32   -0.72   -1.25   -1.79   -2.16   -2.15   -1.65   -0.75    0.27    0.98    1.01    0.29   -0.82   -1.46   -0.61    2.38
+   250.0    0.00   -0.02   -0.11   -0.34   -0.74   -1.27   -1.80   -2.16   -2.13   -1.59   -0.65    0.40    1.12    1.12    0.33   -0.87   -1.61   -0.81    2.24
+   255.0    0.00   -0.03   -0.13   -0.37   -0.77   -1.28   -1.81   -2.15   -2.09   -1.53   -0.56    0.53    1.26    1.22    0.35   -0.94   -1.77   -1.04    1.99
+   260.0    0.00   -0.05   -0.16   -0.40   -0.78   -1.29   -1.80   -2.13   -2.05   -1.46   -0.46    0.63    1.35    1.30    0.36   -1.02   -1.95   -1.30    1.67
+   265.0    0.00   -0.06   -0.18   -0.42   -0.78   -1.29   -1.79   -2.10   -2.00   -1.40   -0.38    0.71    1.42    1.33    0.35   -1.11   -2.12   -1.58    1.26
+   270.0    0.00   -0.08   -0.21   -0.43   -0.79   -1.28   -1.76   -2.05   -1.95   -1.34   -0.32    0.77    1.45    1.32    0.30   -1.21   -2.30   -1.87    0.82
+   275.0    0.00   -0.09   -0.24   -0.45   -0.80   -1.26   -1.73   -2.00   -1.89   -1.27   -0.27    0.80    1.44    1.28    0.22   -1.32   -2.45   -2.15    0.34
+   280.0    0.00   -0.11   -0.25   -0.47   -0.80   -1.24   -1.69   -1.95   -1.83   -1.21   -0.23    0.79    1.41    1.20    0.13   -1.43   -2.60   -2.39   -0.11
+   285.0    0.00   -0.12   -0.27   -0.48   -0.81   -1.23   -1.65   -1.89   -1.75   -1.16   -0.21    0.78    1.33    1.10    0.02   -1.54   -2.73   -2.60   -0.50
+   290.0    0.00   -0.14   -0.30   -0.50   -0.81   -1.21   -1.61   -1.83   -1.70   -1.12   -0.20    0.74    1.25    0.99   -0.09   -1.63   -2.83   -2.76   -0.82
+   295.0    0.00   -0.15   -0.31   -0.52   -0.82   -1.19   -1.57   -1.78   -1.64   -1.09   -0.20    0.68    1.15    0.88   -0.21   -1.71   -2.89   -2.86   -1.02
+   300.0    0.00   -0.16   -0.33   -0.54   -0.82   -1.18   -1.55   -1.74   -1.61   -1.07   -0.21    0.62    1.07    0.79   -0.29   -1.77   -2.93   -2.91   -1.12
+   305.0    0.00   -0.18   -0.35   -0.56   -0.83   -1.18   -1.53   -1.71   -1.58   -1.05   -0.24    0.57    1.00    0.70   -0.34   -1.79   -2.93   -2.91   -1.11
+   310.0    0.00   -0.18   -0.37   -0.57   -0.84   -1.18   -1.51   -1.70   -1.57   -1.06   -0.27    0.53    0.94    0.67   -0.35   -1.78   -2.90   -2.85   -1.01
+   315.0    0.00   -0.19   -0.39   -0.60   -0.86   -1.20   -1.51   -1.69   -1.57   -1.07   -0.29    0.49    0.91    0.66   -0.33   -1.74   -2.83   -2.76   -0.82
+   320.0    0.00   -0.20   -0.40   -0.62   -0.88   -1.20   -1.52   -1.69   -1.57   -1.08   -0.32    0.46    0.89    0.66   -0.29   -1.66   -2.74   -2.63   -0.56
+   325.0    0.00   -0.21   -0.42   -0.64   -0.90   -1.22   -1.53   -1.69   -1.57   -1.10   -0.34    0.44    0.89    0.69   -0.23   -1.57   -2.64   -2.50   -0.28
+   330.0    0.00   -0.21   -0.43   -0.66   -0.93   -1.25   -1.54   -1.70   -1.59   -1.12   -0.36    0.43    0.89    0.74   -0.16   -1.48   -2.54   -2.38   -0.02
+   335.0    0.00   -0.22   -0.45   -0.67   -0.95   -1.27   -1.56   -1.71   -1.59   -1.13   -0.37    0.42    0.90    0.77   -0.09   -1.41   -2.47   -2.28    0.22
+   340.0    0.00   -0.23   -0.45   -0.69   -0.97   -1.28   -1.56   -1.72   -1.59   -1.14   -0.39    0.41    0.91    0.80   -0.05   -1.36   -2.43   -2.23    0.39
+   345.0    0.00   -0.22   -0.45   -0.70   -0.98   -1.28   -1.57   -1.71   -1.59   -1.14   -0.40    0.41    0.92    0.81   -0.02   -1.36   -2.46   -2.23    0.48
+   350.0    0.00   -0.23   -0.46   -0.71   -0.99   -1.30   -1.57   -1.72   -1.59   -1.14   -0.41    0.40    0.91    0.82   -0.04   -1.39   -2.53   -2.31    0.49
+   355.0    0.00   -0.22   -0.46   -0.70   -0.99   -1.30   -1.57   -1.72   -1.60   -1.14   -0.41    0.39    0.91    0.80   -0.07   -1.48   -2.66   -2.46    0.39
+   360.0    0.00   -0.22   -0.46   -0.70   -0.99   -1.30   -1.58   -1.73   -1.61   -1.16   -0.42    0.38    0.90    0.79   -0.13   -1.59   -2.85   -2.69    0.21
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TRM57971.00     NONE                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               8    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     4                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+Number of Calibrated Antennas GPS:      008                 COMMENT             
+Number of Individual Calibrations GPS:  016                 COMMENT             
+Number of Calibrated Antennas GLO:      014                 COMMENT             
+Number of Individual Calibrations GLO:  028                 COMMENT             
+# GLONASS PCV                                               COMMENT             
+#  derived from Delta PCV per 25.0 MHz                      COMMENT             
+#  for frequency channel number k=0                         COMMENT             
+   G01                                                      START OF FREQUENCY  
+      1.11     -0.32     66.77                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.04   -0.16   -0.35   -0.61   -0.94   -1.34   -1.76   -2.16   -2.48   -2.63   -2.58   -2.31   -1.84   -1.17   -0.26    1.02    2.83    5.26
+     0.0    0.00   -0.03   -0.13   -0.31   -0.57   -0.90   -1.33   -1.81   -2.30   -2.72   -2.97   -3.00   -2.78   -2.36   -1.79   -1.06   -0.06    1.42    3.60
+     5.0    0.00   -0.03   -0.13   -0.31   -0.57   -0.91   -1.32   -1.80   -2.29   -2.71   -2.97   -3.00   -2.79   -2.36   -1.77   -1.00    0.04    1.54    3.69
+    10.0    0.00   -0.02   -0.13   -0.31   -0.57   -0.90   -1.31   -1.78   -2.27   -2.68   -2.95   -2.98   -2.77   -2.34   -1.71   -0.90    0.19    1.73    3.87
+    15.0    0.00   -0.02   -0.13   -0.31   -0.57   -0.90   -1.30   -1.76   -2.23   -2.64   -2.90   -2.94   -2.73   -2.28   -1.63   -0.77    0.39    1.98    4.14
+    20.0    0.00   -0.02   -0.13   -0.31   -0.57   -0.89   -1.28   -1.73   -2.18   -2.58   -2.84   -2.87   -2.66   -2.20   -1.52   -0.61    0.61    2.27    4.46
+    25.0    0.00   -0.02   -0.13   -0.31   -0.57   -0.88   -1.26   -1.69   -2.13   -2.51   -2.76   -2.79   -2.57   -2.11   -1.40   -0.44    0.85    2.57    4.82
+    30.0    0.00   -0.02   -0.13   -0.31   -0.56   -0.87   -1.24   -1.65   -2.08   -2.45   -2.68   -2.70   -2.48   -2.00   -1.27   -0.28    1.06    2.86    5.18
+    35.0    0.00   -0.02   -0.13   -0.31   -0.56   -0.86   -1.22   -1.62   -2.03   -2.38   -2.60   -2.61   -2.38   -1.89   -1.15   -0.13    1.25    3.11    5.51
+    40.0    0.00   -0.02   -0.13   -0.31   -0.56   -0.86   -1.21   -1.60   -1.99   -2.33   -2.53   -2.53   -2.29   -1.79   -1.05   -0.01    1.40    3.31    5.78
+    45.0    0.00   -0.02   -0.12   -0.31   -0.55   -0.86   -1.20   -1.59   -1.97   -2.29   -2.47   -2.46   -2.20   -1.70   -0.96    0.07    1.49    3.43    5.97
+    50.0    0.00   -0.02   -0.12   -0.31   -0.55   -0.85   -1.20   -1.58   -1.95   -2.26   -2.43   -2.40   -2.13   -1.63   -0.89    0.12    1.54    3.49    6.07
+    55.0    0.00   -0.02   -0.12   -0.30   -0.55   -0.86   -1.21   -1.59   -1.95   -2.25   -2.41   -2.36   -2.08   -1.58   -0.85    0.14    1.53    3.48    6.08
+    60.0    0.00   -0.02   -0.12   -0.30   -0.55   -0.86   -1.22   -1.60   -1.97   -2.26   -2.40   -2.34   -2.05   -1.55   -0.83    0.13    1.49    3.41    6.01
+    65.0    0.00   -0.01   -0.12   -0.30   -0.55   -0.87   -1.23   -1.61   -1.99   -2.27   -2.41   -2.33   -2.03   -1.53   -0.83    0.11    1.42    3.30    5.88
+    70.0    0.00   -0.01   -0.12   -0.30   -0.55   -0.87   -1.24   -1.64   -2.01   -2.30   -2.42   -2.34   -2.03   -1.53   -0.84    0.06    1.33    3.16    5.71
+    75.0    0.00   -0.01   -0.11   -0.30   -0.55   -0.88   -1.25   -1.66   -2.04   -2.32   -2.44   -2.35   -2.04   -1.53   -0.86    0.02    1.25    3.03    5.53
+    80.0    0.00   -0.01   -0.11   -0.30   -0.56   -0.88   -1.27   -1.67   -2.06   -2.35   -2.47   -2.37   -2.05   -1.55   -0.88   -0.02    1.18    2.92    5.35
+    85.0    0.00   -0.01   -0.11   -0.29   -0.56   -0.89   -1.27   -1.69   -2.08   -2.37   -2.48   -2.38   -2.06   -1.56   -0.90   -0.04    1.13    2.84    5.22
+    90.0    0.00   -0.01   -0.11   -0.29   -0.55   -0.89   -1.28   -1.70   -2.09   -2.38   -2.50   -2.40   -2.07   -1.57   -0.90   -0.05    1.12    2.80    5.14
+    95.0    0.00   -0.01   -0.11   -0.29   -0.55   -0.89   -1.29   -1.71   -2.10   -2.39   -2.50   -2.40   -2.08   -1.57   -0.90   -0.04    1.14    2.81    5.12
+   100.0    0.00   -0.01   -0.11   -0.29   -0.55   -0.89   -1.29   -1.71   -2.10   -2.39   -2.51   -2.40   -2.08   -1.57   -0.89   -0.01    1.18    2.87    5.17
+   105.0    0.00   -0.02   -0.11   -0.29   -0.55   -0.89   -1.29   -1.71   -2.10   -2.39   -2.50   -2.40   -2.08   -1.56   -0.87    0.03    1.25    2.97    5.27
+   110.0    0.00   -0.02   -0.11   -0.29   -0.56   -0.89   -1.29   -1.71   -2.10   -2.39   -2.50   -2.40   -2.08   -1.56   -0.85    0.07    1.34    3.09    5.40
+   115.0    0.00   -0.02   -0.12   -0.30   -0.56   -0.90   -1.30   -1.72   -2.10   -2.39   -2.50   -2.40   -2.08   -1.55   -0.84    0.12    1.42    3.21    5.54
+   120.0    0.00   -0.02   -0.12   -0.30   -0.56   -0.90   -1.30   -1.72   -2.11   -2.39   -2.51   -2.41   -2.09   -1.56   -0.83    0.15    1.49    3.32    5.68
+   125.0    0.00   -0.02   -0.12   -0.31   -0.57   -0.91   -1.31   -1.73   -2.12   -2.40   -2.52   -2.43   -2.11   -1.58   -0.85    0.15    1.53    3.40    5.78
+   130.0    0.00   -0.02   -0.13   -0.31   -0.58   -0.92   -1.32   -1.74   -2.13   -2.42   -2.54   -2.46   -2.15   -1.62   -0.88    0.13    1.53    3.42    5.82
+   135.0    0.00   -0.03   -0.13   -0.32   -0.59   -0.93   -1.33   -1.75   -2.15   -2.44   -2.57   -2.50   -2.20   -1.68   -0.94    0.07    1.48    3.39    5.80
+   140.0    0.00   -0.03   -0.14   -0.33   -0.60   -0.94   -1.34   -1.77   -2.17   -2.47   -2.61   -2.55   -2.27   -1.76   -1.03   -0.02    1.38    3.29    5.72
+   145.0    0.00   -0.03   -0.15   -0.34   -0.61   -0.96   -1.36   -1.79   -2.19   -2.50   -2.66   -2.61   -2.34   -1.86   -1.15   -0.15    1.24    3.14    5.57
+   150.0    0.00   -0.04   -0.15   -0.35   -0.62   -0.97   -1.38   -1.81   -2.22   -2.54   -2.71   -2.68   -2.43   -1.97   -1.28   -0.31    1.06    2.94    5.38
+   155.0    0.00   -0.04   -0.16   -0.36   -0.64   -0.99   -1.40   -1.83   -2.24   -2.57   -2.75   -2.74   -2.52   -2.08   -1.43   -0.49    0.85    2.71    5.16
+   160.0    0.00   -0.04   -0.17   -0.37   -0.65   -1.01   -1.41   -1.85   -2.26   -2.60   -2.80   -2.80   -2.60   -2.20   -1.57   -0.67    0.63    2.47    4.93
+   165.0    0.00   -0.05   -0.18   -0.38   -0.67   -1.02   -1.43   -1.86   -2.28   -2.63   -2.83   -2.86   -2.68   -2.30   -1.71   -0.85    0.42    2.24    4.73
+   170.0    0.00   -0.05   -0.18   -0.40   -0.68   -1.04   -1.44   -1.88   -2.30   -2.65   -2.86   -2.90   -2.74   -2.38   -1.82   -0.99    0.24    2.05    4.58
+   175.0    0.00   -0.05   -0.19   -0.41   -0.70   -1.05   -1.46   -1.89   -2.31   -2.66   -2.88   -2.93   -2.78   -2.44   -1.90   -1.10    0.11    1.92    4.49
+   180.0    0.00   -0.06   -0.20   -0.42   -0.71   -1.06   -1.47   -1.90   -2.32   -2.67   -2.89   -2.94   -2.79   -2.46   -1.94   -1.16    0.03    1.85    4.47
+   185.0    0.00   -0.06   -0.21   -0.43   -0.72   -1.08   -1.48   -1.91   -2.33   -2.68   -2.89   -2.93   -2.79   -2.45   -1.93   -1.16    0.03    1.85    4.52
+   190.0    0.00   -0.06   -0.21   -0.44   -0.73   -1.08   -1.49   -1.91   -2.33   -2.67   -2.88   -2.91   -2.75   -2.41   -1.88   -1.10    0.09    1.93    4.64
+   195.0    0.00   -0.07   -0.22   -0.45   -0.74   -1.09   -1.49   -1.91   -2.32   -2.66   -2.86   -2.87   -2.69   -2.33   -1.78   -0.99    0.22    2.08    4.82
+   200.0    0.00   -0.07   -0.22   -0.45   -0.75   -1.10   -1.49   -1.91   -2.32   -2.64   -2.83   -2.82   -2.62   -2.22   -1.65   -0.83    0.40    2.28    5.04
+   205.0    0.00   -0.07   -0.23   -0.46   -0.75   -1.10   -1.49   -1.91   -2.30   -2.62   -2.79   -2.76   -2.53   -2.10   -1.49   -0.64    0.61    2.51    5.27
+   210.0    0.00   -0.07   -0.23   -0.46   -0.76   -1.10   -1.49   -1.90   -2.29   -2.59   -2.74   -2.69   -2.43   -1.97   -1.33   -0.44    0.84    2.75    5.49
+   215.0    0.00   -0.07   -0.23   -0.47   -0.76   -1.10   -1.48   -1.88   -2.27   -2.56   -2.69   -2.62   -2.33   -1.84   -1.16   -0.25    1.06    2.98    5.69
+   220.0    0.00   -0.08   -0.24   -0.47   -0.76   -1.09   -1.47   -1.87   -2.24   -2.52   -2.64   -2.55   -2.23   -1.72   -1.01   -0.07    1.26    3.18    5.85
+   225.0    0.00   -0.08   -0.24   -0.47   -0.75   -1.09   -1.46   -1.85   -2.22   -2.49   -2.59   -2.48   -2.14   -1.61   -0.89    0.07    1.41    3.33    5.96
+   230.0    0.00   -0.08   -0.24   -0.46   -0.75   -1.08   -1.45   -1.84   -2.19   -2.45   -2.54   -2.42   -2.07   -1.53   -0.80    0.17    1.52    3.44    6.02
+   235.0    0.00   -0.08   -0.23   -0.46   -0.74   -1.07   -1.44   -1.82   -2.17   -2.42   -2.50   -2.37   -2.02   -1.48   -0.75    0.22    1.58    3.49    6.03
+   240.0    0.00   -0.08   -0.23   -0.46   -0.74   -1.06   -1.43   -1.81   -2.15   -2.39   -2.46   -2.33   -1.98   -1.45   -0.74    0.22    1.58    3.50    6.01
+   245.0    0.00   -0.07   -0.23   -0.45   -0.73   -1.05   -1.42   -1.80   -2.14   -2.37   -2.44   -2.30   -1.97   -1.45   -0.76    0.19    1.55    3.47    5.97
+   250.0    0.00   -0.07   -0.23   -0.44   -0.72   -1.05   -1.41   -1.79   -2.13   -2.36   -2.42   -2.29   -1.97   -1.47   -0.80    0.13    1.49    3.42    5.92
+   255.0    0.00   -0.07   -0.22   -0.44   -0.71   -1.04   -1.40   -1.78   -2.12   -2.35   -2.42   -2.29   -1.98   -1.51   -0.86    0.06    1.42    3.37    5.88
+   260.0    0.00   -0.07   -0.22   -0.43   -0.70   -1.03   -1.40   -1.78   -2.12   -2.36   -2.42   -2.30   -2.00   -1.55   -0.91    0.00    1.36    3.33    5.87
+   265.0    0.00   -0.07   -0.21   -0.42   -0.69   -1.01   -1.39   -1.78   -2.13   -2.36   -2.44   -2.32   -2.03   -1.58   -0.96   -0.06    1.31    3.31    5.88
+   270.0    0.00   -0.07   -0.20   -0.41   -0.67   -1.00   -1.38   -1.77   -2.13   -2.38   -2.45   -2.34   -2.06   -1.62   -1.00   -0.09    1.30    3.32    5.92
+   275.0    0.00   -0.06   -0.20   -0.40   -0.66   -0.98   -1.37   -1.77   -2.13   -2.39   -2.47   -2.37   -2.08   -1.64   -1.02   -0.10    1.31    3.35    5.99
+   280.0    0.00   -0.06   -0.19   -0.38   -0.64   -0.97   -1.35   -1.76   -2.13   -2.40   -2.49   -2.39   -2.11   -1.65   -1.02   -0.08    1.35    3.41    6.08
+   285.0    0.00   -0.06   -0.18   -0.37   -0.63   -0.95   -1.33   -1.75   -2.13   -2.40   -2.51   -2.41   -2.12   -1.66   -1.00   -0.04    1.40    3.48    6.17
+   290.0    0.00   -0.06   -0.18   -0.36   -0.61   -0.93   -1.32   -1.73   -2.12   -2.41   -2.52   -2.43   -2.13   -1.65   -0.97    0.01    1.46    3.54    6.25
+   295.0    0.00   -0.05   -0.17   -0.35   -0.59   -0.91   -1.30   -1.72   -2.11   -2.41   -2.53   -2.44   -2.14   -1.64   -0.94    0.05    1.50    3.58    6.30
+   300.0    0.00   -0.05   -0.16   -0.34   -0.58   -0.89   -1.28   -1.70   -2.10   -2.41   -2.54   -2.45   -2.14   -1.64   -0.93    0.07    1.52    3.58    6.30
+   305.0    0.00   -0.05   -0.16   -0.33   -0.57   -0.88   -1.26   -1.69   -2.10   -2.41   -2.55   -2.46   -2.15   -1.64   -0.92    0.07    1.49    3.53    6.23
+   310.0    0.00   -0.05   -0.15   -0.32   -0.56   -0.87   -1.25   -1.68   -2.09   -2.41   -2.56   -2.48   -2.17   -1.66   -0.94    0.03    1.42    3.41    6.10
+   315.0    0.00   -0.04   -0.15   -0.31   -0.55   -0.86   -1.24   -1.67   -2.10   -2.43   -2.58   -2.50   -2.20   -1.69   -0.99   -0.05    1.29    3.23    5.90
+   320.0    0.00   -0.04   -0.14   -0.31   -0.54   -0.85   -1.24   -1.68   -2.11   -2.44   -2.61   -2.54   -2.24   -1.74   -1.07   -0.16    1.12    2.99    5.63
+   325.0    0.00   -0.04   -0.14   -0.31   -0.54   -0.85   -1.24   -1.69   -2.13   -2.47   -2.65   -2.59   -2.30   -1.81   -1.16   -0.31    0.91    2.71    5.31
+   330.0    0.00   -0.04   -0.14   -0.30   -0.54   -0.86   -1.25   -1.71   -2.15   -2.51   -2.69   -2.65   -2.37   -1.90   -1.28   -0.47    0.68    2.41    4.96
+   335.0    0.00   -0.03   -0.14   -0.30   -0.54   -0.86   -1.27   -1.73   -2.19   -2.56   -2.75   -2.71   -2.45   -2.00   -1.40   -0.64    0.45    2.11    4.60
+   340.0    0.00   -0.03   -0.13   -0.30   -0.55   -0.87   -1.28   -1.75   -2.22   -2.60   -2.81   -2.79   -2.53   -2.10   -1.53   -0.80    0.24    1.84    4.26
+   345.0    0.00   -0.03   -0.13   -0.31   -0.55   -0.88   -1.30   -1.78   -2.26   -2.65   -2.87   -2.86   -2.61   -2.19   -1.63   -0.93    0.07    1.62    3.97
+   350.0    0.00   -0.03   -0.13   -0.31   -0.56   -0.89   -1.31   -1.80   -2.28   -2.69   -2.92   -2.92   -2.69   -2.27   -1.72   -1.02   -0.04    1.46    3.76
+   355.0    0.00   -0.03   -0.13   -0.31   -0.56   -0.90   -1.32   -1.81   -2.30   -2.71   -2.95   -2.97   -2.74   -2.33   -1.77   -1.07   -0.09    1.40    3.63
+   360.0    0.00   -0.03   -0.13   -0.31   -0.57   -0.90   -1.33   -1.81   -2.30   -2.72   -2.97   -3.00   -2.78   -2.36   -1.79   -1.06   -0.06    1.42    3.60
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.07      0.66     57.79                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.11   -0.42   -0.85   -1.36   -1.88   -2.42   -2.96   -3.47   -3.84   -3.95   -3.70   -3.05   -2.10   -0.98    0.24    1.66    3.57    6.32
+     0.0    0.00   -0.15   -0.49   -0.95   -1.46   -1.99   -2.50   -3.01   -3.45   -3.75   -3.81   -3.53   -2.90   -1.95   -0.80    0.52    2.06    4.04    6.72
+     5.0    0.00   -0.15   -0.48   -0.94   -1.45   -1.98   -2.51   -3.01   -3.46   -3.77   -3.83   -3.56   -2.92   -1.97   -0.80    0.52    2.05    4.01    6.67
+    10.0    0.00   -0.14   -0.47   -0.93   -1.44   -1.98   -2.51   -3.02   -3.48   -3.79   -3.86   -3.58   -2.94   -1.98   -0.80    0.51    2.01    3.93    6.57
+    15.0    0.00   -0.14   -0.46   -0.91   -1.43   -1.97   -2.51   -3.03   -3.50   -3.82   -3.89   -3.61   -2.96   -1.98   -0.81    0.49    1.96    3.82    6.43
+    20.0    0.00   -0.13   -0.45   -0.90   -1.42   -1.96   -2.50   -3.04   -3.52   -3.86   -3.93   -3.64   -2.98   -1.99   -0.80    0.48    1.91    3.72    6.29
+    25.0    0.00   -0.13   -0.44   -0.89   -1.40   -1.95   -2.50   -3.05   -3.55   -3.90   -3.97   -3.68   -3.00   -1.99   -0.80    0.48    1.89    3.64    6.17
+    30.0    0.00   -0.12   -0.43   -0.87   -1.39   -1.94   -2.50   -3.07   -3.58   -3.94   -4.03   -3.73   -3.03   -2.00   -0.79    0.50    1.89    3.62    6.11
+    35.0    0.00   -0.11   -0.42   -0.86   -1.37   -1.92   -2.50   -3.08   -3.61   -3.99   -4.08   -3.79   -3.07   -2.01   -0.77    0.53    1.92    3.65    6.14
+    40.0    0.00   -0.11   -0.41   -0.84   -1.36   -1.91   -2.49   -3.08   -3.63   -4.03   -4.14   -3.85   -3.12   -2.04   -0.77    0.57    2.00    3.75    6.25
+    45.0    0.00   -0.10   -0.40   -0.83   -1.34   -1.89   -2.48   -3.09   -3.66   -4.07   -4.20   -3.91   -3.17   -2.08   -0.77    0.61    2.09    3.90    6.44
+    50.0    0.00   -0.10   -0.39   -0.82   -1.32   -1.88   -2.47   -3.09   -3.67   -4.11   -4.25   -3.97   -3.24   -2.13   -0.79    0.64    2.19    4.09    6.71
+    55.0    0.00   -0.09   -0.38   -0.80   -1.31   -1.87   -2.46   -3.08   -3.68   -4.13   -4.29   -4.04   -3.31   -2.20   -0.84    0.64    2.28    4.28    7.00
+    60.0    0.00   -0.09   -0.37   -0.79   -1.30   -1.85   -2.45   -3.07   -3.67   -4.14   -4.33   -4.09   -3.39   -2.28   -0.91    0.61    2.32    4.45    7.30
+    65.0    0.00   -0.08   -0.36   -0.79   -1.29   -1.84   -2.43   -3.05   -3.66   -4.14   -4.34   -4.13   -3.46   -2.37   -1.01    0.53    2.31    4.56    7.55
+    70.0    0.00   -0.08   -0.36   -0.78   -1.28   -1.83   -2.41   -3.03   -3.64   -4.13   -4.35   -4.16   -3.52   -2.47   -1.14    0.40    2.23    4.58    7.72
+    75.0    0.00   -0.08   -0.35   -0.77   -1.27   -1.81   -2.40   -3.01   -3.61   -4.10   -4.33   -4.17   -3.56   -2.57   -1.28    0.23    2.08    4.51    7.79
+    80.0    0.00   -0.07   -0.35   -0.77   -1.26   -1.80   -2.38   -2.98   -3.58   -4.07   -4.30   -4.16   -3.59   -2.65   -1.43    0.03    1.86    4.34    7.74
+    85.0    0.00   -0.07   -0.34   -0.76   -1.26   -1.79   -2.36   -2.95   -3.54   -4.02   -4.26   -4.14   -3.60   -2.72   -1.57   -0.19    1.60    4.09    7.58
+    90.0    0.00   -0.07   -0.34   -0.76   -1.25   -1.79   -2.34   -2.93   -3.50   -3.97   -4.21   -4.09   -3.59   -2.76   -1.69   -0.39    1.31    3.78    7.33
+    95.0    0.00   -0.06   -0.34   -0.75   -1.25   -1.78   -2.33   -2.90   -3.46   -3.92   -4.15   -4.04   -3.56   -2.77   -1.77   -0.57    1.04    3.45    7.01
+   100.0    0.00   -0.06   -0.33   -0.75   -1.25   -1.77   -2.31   -2.87   -3.42   -3.87   -4.09   -3.98   -3.51   -2.75   -1.82   -0.70    0.80    3.13    6.67
+   105.0    0.00   -0.06   -0.33   -0.75   -1.24   -1.76   -2.29   -2.84   -3.38   -3.82   -4.04   -3.91   -3.44   -2.70   -1.81   -0.77    0.64    2.86    6.35
+   110.0    0.00   -0.06   -0.33   -0.75   -1.24   -1.75   -2.28   -2.82   -3.35   -3.78   -3.98   -3.85   -3.36   -2.62   -1.75   -0.76    0.55    2.67    6.08
+   115.0    0.00   -0.06   -0.33   -0.75   -1.24   -1.75   -2.26   -2.80   -3.32   -3.74   -3.93   -3.78   -3.28   -2.51   -1.64   -0.68    0.56    2.58    5.90
+   120.0    0.00   -0.06   -0.33   -0.75   -1.23   -1.74   -2.25   -2.77   -3.29   -3.70   -3.89   -3.72   -3.19   -2.39   -1.49   -0.54    0.66    2.59    5.81
+   125.0    0.00   -0.06   -0.33   -0.75   -1.23   -1.73   -2.24   -2.75   -3.26   -3.67   -3.85   -3.66   -3.10   -2.26   -1.32   -0.35    0.83    2.70    5.83
+   130.0    0.00   -0.06   -0.33   -0.75   -1.23   -1.73   -2.22   -2.74   -3.24   -3.64   -3.81   -3.61   -3.01   -2.13   -1.14   -0.13    1.05    2.87    5.93
+   135.0    0.00   -0.06   -0.33   -0.75   -1.23   -1.72   -2.21   -2.72   -3.22   -3.62   -3.77   -3.55   -2.93   -2.01   -0.96    0.09    1.29    3.08    6.08
+   140.0    0.00   -0.06   -0.33   -0.75   -1.23   -1.72   -2.21   -2.71   -3.20   -3.59   -3.74   -3.51   -2.86   -1.90   -0.80    0.30    1.53    3.31    6.27
+   145.0    0.00   -0.06   -0.33   -0.75   -1.23   -1.72   -2.20   -2.70   -3.18   -3.56   -3.70   -3.46   -2.79   -1.80   -0.67    0.48    1.73    3.51    6.44
+   150.0    0.00   -0.06   -0.33   -0.75   -1.23   -1.72   -2.20   -2.69   -3.17   -3.54   -3.66   -3.41   -2.74   -1.73   -0.57    0.60    1.88    3.66    6.58
+   155.0    0.00   -0.06   -0.33   -0.75   -1.23   -1.72   -2.21   -2.69   -3.16   -3.51   -3.63   -3.37   -2.70   -1.69   -0.52    0.67    1.96    3.74    6.65
+   160.0    0.00   -0.06   -0.34   -0.75   -1.24   -1.73   -2.21   -2.70   -3.15   -3.50   -3.60   -3.34   -2.67   -1.66   -0.50    0.69    1.98    3.76    6.65
+   165.0    0.00   -0.06   -0.34   -0.76   -1.24   -1.74   -2.22   -2.70   -3.15   -3.49   -3.58   -3.32   -2.65   -1.66   -0.52    0.66    1.95    3.71    6.57
+   170.0    0.00   -0.07   -0.34   -0.76   -1.25   -1.75   -2.24   -2.72   -3.16   -3.48   -3.57   -3.31   -2.65   -1.69   -0.56    0.60    1.87    3.61    6.43
+   175.0    0.00   -0.07   -0.35   -0.77   -1.26   -1.76   -2.25   -2.74   -3.17   -3.49   -3.57   -3.31   -2.68   -1.73   -0.63    0.52    1.77    3.49    6.25
+   180.0    0.00   -0.07   -0.35   -0.77   -1.26   -1.77   -2.27   -2.76   -3.19   -3.51   -3.59   -3.34   -2.71   -1.79   -0.70    0.43    1.67    3.36    6.06
+   185.0    0.00   -0.08   -0.36   -0.78   -1.27   -1.79   -2.29   -2.78   -3.22   -3.54   -3.63   -3.38   -2.77   -1.86   -0.79    0.34    1.58    3.24    5.87
+   190.0    0.00   -0.08   -0.36   -0.79   -1.28   -1.80   -2.32   -2.81   -3.26   -3.58   -3.68   -3.44   -2.84   -1.94   -0.87    0.27    1.52    3.16    5.72
+   195.0    0.00   -0.08   -0.37   -0.79   -1.30   -1.82   -2.34   -2.84   -3.30   -3.63   -3.74   -3.51   -2.92   -2.03   -0.95    0.21    1.48    3.13    5.63
+   200.0    0.00   -0.09   -0.37   -0.80   -1.31   -1.83   -2.36   -2.88   -3.34   -3.69   -3.81   -3.59   -3.01   -2.11   -1.02    0.17    1.48    3.13    5.59
+   205.0    0.00   -0.09   -0.38   -0.81   -1.32   -1.85   -2.39   -2.91   -3.39   -3.75   -3.88   -3.68   -3.10   -2.19   -1.07    0.15    1.49    3.18    5.61
+   210.0    0.00   -0.10   -0.39   -0.82   -1.33   -1.87   -2.41   -2.95   -3.44   -3.81   -3.95   -3.76   -3.18   -2.26   -1.12    0.14    1.53    3.26    5.68
+   215.0    0.00   -0.10   -0.40   -0.83   -1.35   -1.89   -2.44   -2.98   -3.49   -3.87   -4.02   -3.83   -3.25   -2.32   -1.16    0.13    1.57    3.35    5.79
+   220.0    0.00   -0.11   -0.41   -0.85   -1.36   -1.91   -2.46   -3.02   -3.53   -3.92   -4.08   -3.88   -3.30   -2.36   -1.19    0.13    1.62    3.45    5.93
+   225.0    0.00   -0.11   -0.42   -0.86   -1.37   -1.92   -2.49   -3.05   -3.57   -3.97   -4.12   -3.92   -3.33   -2.39   -1.20    0.13    1.65    3.54    6.08
+   230.0    0.00   -0.12   -0.42   -0.87   -1.39   -1.94   -2.51   -3.08   -3.61   -4.01   -4.15   -3.94   -3.33   -2.39   -1.21    0.13    1.68    3.62    6.21
+   235.0    0.00   -0.12   -0.43   -0.88   -1.40   -1.96   -2.53   -3.11   -3.64   -4.03   -4.17   -3.94   -3.32   -2.37   -1.20    0.14    1.69    3.67    6.33
+   240.0    0.00   -0.13   -0.44   -0.89   -1.42   -1.97   -2.55   -3.13   -3.66   -4.05   -4.17   -3.93   -3.29   -2.34   -1.17    0.14    1.70    3.71    6.43
+   245.0    0.00   -0.13   -0.45   -0.90   -1.43   -1.99   -2.56   -3.15   -3.68   -4.06   -4.17   -3.90   -3.25   -2.29   -1.14    0.16    1.70    3.73    6.49
+   250.0    0.00   -0.14   -0.46   -0.91   -1.44   -2.00   -2.57   -3.16   -3.69   -4.07   -4.15   -3.86   -3.19   -2.23   -1.10    0.17    1.70    3.74    6.53
+   255.0    0.00   -0.14   -0.47   -0.92   -1.45   -2.00   -2.58   -3.16   -3.69   -4.06   -4.13   -3.82   -3.14   -2.17   -1.05    0.20    1.70    3.74    6.53
+   260.0    0.00   -0.15   -0.48   -0.93   -1.45   -2.00   -2.58   -3.16   -3.69   -4.05   -4.11   -3.78   -3.08   -2.11   -1.00    0.22    1.70    3.73    6.51
+   265.0    0.00   -0.15   -0.48   -0.94   -1.46   -2.00   -2.57   -3.15   -3.68   -4.04   -4.09   -3.75   -3.03   -2.06   -0.96    0.24    1.70    3.71    6.46
+   270.0    0.00   -0.15   -0.49   -0.95   -1.46   -2.00   -2.56   -3.14   -3.67   -4.02   -4.07   -3.71   -2.99   -2.01   -0.92    0.26    1.69    3.67    6.39
+   275.0    0.00   -0.16   -0.50   -0.95   -1.46   -1.99   -2.55   -3.12   -3.65   -4.00   -4.04   -3.69   -2.95   -1.98   -0.89    0.27    1.67    3.62    6.28
+   280.0    0.00   -0.16   -0.50   -0.96   -1.46   -1.98   -2.53   -3.10   -3.62   -3.98   -4.02   -3.66   -2.93   -1.95   -0.88    0.26    1.63    3.54    6.16
+   285.0    0.00   -0.16   -0.51   -0.96   -1.46   -1.98   -2.52   -3.08   -3.60   -3.96   -4.00   -3.64   -2.91   -1.94   -0.88    0.23    1.58    3.45    6.01
+   290.0    0.00   -0.17   -0.51   -0.96   -1.46   -1.97   -2.50   -3.06   -3.58   -3.93   -3.97   -3.62   -2.89   -1.93   -0.89    0.20    1.51    3.35    5.86
+   295.0    0.00   -0.17   -0.52   -0.97   -1.46   -1.96   -2.49   -3.04   -3.55   -3.91   -3.95   -3.60   -2.88   -1.93   -0.91    0.15    1.43    3.23    5.71
+   300.0    0.00   -0.17   -0.52   -0.97   -1.46   -1.96   -2.48   -3.02   -3.53   -3.88   -3.92   -3.58   -2.86   -1.93   -0.93    0.11    1.36    3.13    5.58
+   305.0    0.00   -0.17   -0.52   -0.97   -1.46   -1.96   -2.47   -3.01   -3.51   -3.86   -3.90   -3.55   -2.85   -1.93   -0.95    0.07    1.30    3.05    5.48
+   310.0    0.00   -0.17   -0.52   -0.98   -1.46   -1.96   -2.47   -3.00   -3.50   -3.83   -3.87   -3.53   -2.84   -1.93   -0.96    0.04    1.26    3.00    5.42
+   315.0    0.00   -0.17   -0.52   -0.98   -1.46   -1.96   -2.47   -3.00   -3.48   -3.81   -3.85   -3.51   -2.83   -1.93   -0.97    0.04    1.26    3.00    5.43
+   320.0    0.00   -0.17   -0.52   -0.98   -1.47   -1.96   -2.47   -2.99   -3.47   -3.79   -3.83   -3.49   -2.82   -1.93   -0.96    0.06    1.30    3.05    5.50
+   325.0    0.00   -0.17   -0.52   -0.98   -1.47   -1.97   -2.48   -2.99   -3.46   -3.78   -3.81   -3.48   -2.81   -1.92   -0.94    0.10    1.37    3.15    5.63
+   330.0    0.00   -0.17   -0.52   -0.98   -1.47   -1.98   -2.48   -2.99   -3.45   -3.76   -3.80   -3.47   -2.81   -1.92   -0.92    0.17    1.48    3.30    5.81
+   335.0    0.00   -0.17   -0.52   -0.98   -1.48   -1.98   -2.49   -2.99   -3.45   -3.75   -3.79   -3.47   -2.81   -1.91   -0.89    0.24    1.61    3.47    6.02
+   340.0    0.00   -0.16   -0.51   -0.98   -1.48   -1.99   -2.49   -2.99   -3.44   -3.74   -3.78   -3.47   -2.82   -1.92   -0.86    0.32    1.74    3.65    6.24
+   345.0    0.00   -0.16   -0.51   -0.97   -1.48   -1.99   -2.50   -3.00   -3.44   -3.74   -3.78   -3.48   -2.84   -1.92   -0.83    0.39    1.87    3.82    6.44
+   350.0    0.00   -0.16   -0.50   -0.97   -1.47   -1.99   -2.50   -3.00   -3.44   -3.74   -3.79   -3.50   -2.86   -1.93   -0.82    0.45    1.97    3.94    6.60
+   355.0    0.00   -0.15   -0.50   -0.96   -1.47   -1.99   -2.50   -3.00   -3.44   -3.74   -3.79   -3.51   -2.88   -1.94   -0.80    0.50    2.04    4.02    6.70
+   360.0    0.00   -0.15   -0.49   -0.95   -1.46   -1.99   -2.50   -3.01   -3.45   -3.75   -3.81   -3.53   -2.90   -1.95   -0.80    0.52    2.06    4.04    6.72
+   G02                                                      END OF FREQUENCY    
+   R01                                                      START OF FREQUENCY  
+      1.11     -0.32     66.77                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.06   -0.26   -0.53   -0.89   -1.28   -1.73   -2.20   -2.65   -3.04   -3.30   -3.38   -3.23   -2.87   -2.28   -1.40   -0.12    1.72    4.21
+     0.0    0.00   -0.04   -0.19   -0.45   -0.78   -1.17   -1.62   -2.11   -2.62   -3.08   -3.44   -3.61   -3.55   -3.25   -2.73   -1.94   -0.81    0.79    3.03
+     5.0    0.00   -0.04   -0.20   -0.46   -0.80   -1.20   -1.63   -2.11   -2.61   -3.07   -3.44   -3.62   -3.58   -3.28   -2.76   -1.96   -0.82    0.80    2.98
+    10.0    0.00   -0.04   -0.22   -0.48   -0.83   -1.21   -1.64   -2.11   -2.61   -3.06   -3.43   -3.61   -3.57   -3.30   -2.75   -1.94   -0.78    0.85    3.01
+    15.0    0.00   -0.04   -0.22   -0.49   -0.85   -1.24   -1.66   -2.13   -2.60   -3.04   -3.39   -3.57   -3.54   -3.26   -2.71   -1.90   -0.69    0.96    3.14
+    20.0    0.00   -0.04   -0.23   -0.51   -0.87   -1.26   -1.68   -2.13   -2.58   -3.02   -3.35   -3.52   -3.48   -3.19   -2.65   -1.81   -0.59    1.12    3.35
+    25.0    0.00   -0.05   -0.24   -0.52   -0.89   -1.28   -1.71   -2.15   -2.59   -2.99   -3.30   -3.45   -3.40   -3.12   -2.57   -1.71   -0.44    1.33    3.65
+    30.0    0.00   -0.05   -0.25   -0.53   -0.90   -1.30   -1.72   -2.15   -2.58   -2.97   -3.25   -3.38   -3.32   -3.02   -2.46   -1.60   -0.30    1.54    3.98
+    35.0    0.00   -0.05   -0.25   -0.55   -0.92   -1.32   -1.73   -2.16   -2.57   -2.94   -3.22   -3.32   -3.23   -2.92   -2.36   -1.48   -0.15    1.75    4.31
+    40.0    0.00   -0.05   -0.26   -0.55   -0.93   -1.34   -1.75   -2.17   -2.57   -2.94   -3.18   -3.26   -3.16   -2.83   -2.27   -1.37   -0.02    1.94    4.60
+    45.0    0.00   -0.06   -0.25   -0.57   -0.93   -1.35   -1.75   -2.17   -2.58   -2.92   -3.15   -3.23   -3.09   -2.75   -2.18   -1.29    0.07    2.06    4.81
+    50.0    0.00   -0.06   -0.26   -0.58   -0.94   -1.34   -1.75   -2.18   -2.57   -2.91   -3.13   -3.19   -3.04   -2.69   -2.11   -1.23    0.13    2.13    4.93
+    55.0    0.00   -0.06   -0.26   -0.57   -0.94   -1.35   -1.76   -2.17   -2.57   -2.91   -3.13   -3.17   -3.00   -2.64   -2.06   -1.19    0.14    2.14    4.94
+    60.0    0.00   -0.06   -0.26   -0.57   -0.93   -1.34   -1.75   -2.17   -2.58   -2.91   -3.12   -3.17   -3.00   -2.62   -2.03   -1.18    0.12    2.07    4.85
+    65.0    0.00   -0.05   -0.26   -0.57   -0.92   -1.33   -1.74   -2.15   -2.57   -2.91   -3.13   -3.16   -2.98   -2.59   -2.01   -1.17    0.07    1.96    4.68
+    70.0    0.00   -0.05   -0.26   -0.56   -0.91   -1.31   -1.72   -2.15   -2.56   -2.92   -3.13   -3.17   -2.98   -2.59   -2.00   -1.19   -1.33    1.80    4.44
+    75.0    0.00   -0.05   -0.25   -0.56   -0.90   -1.29   -1.71   -2.14   -2.56   -2.92   -3.14   -3.18   -2.99   -2.58   -2.01   -1.21   -0.08    1.65    4.20
+    80.0    0.00   -0.05   -0.25   -0.54   -0.90   -1.27   -1.70   -2.12   -2.55   -2.92   -3.15   -3.18   -2.99   -2.58   -2.01   -1.24   -0.15    1.52    3.97
+    85.0    0.00   -0.05   -0.25   -0.52   -0.89   -1.27   -1.67   -2.12   -2.55   -2.92   -3.14   -3.18   -2.97   -2.58   -2.02   -1.25   -0.20    1.43    3.81
+    90.0    0.00   -0.05   -0.24   -0.52   -0.86   -1.25   -1.66   -2.10   -2.54   -2.91   -3.14   -3.18   -2.96   -2.57   -2.00   -1.25   -0.20    1.40    3.75
+    95.0    0.00   -0.05   -0.24   -0.51   -0.85   -1.24   -1.66   -2.10   -2.54   -2.90   -3.13   -3.15   -2.95   -2.56   -1.98   -1.23   -0.17    1.44    3.79
+   100.0    0.00   -0.05   -0.24   -0.50   -0.85   -1.23   -1.65   -2.09   -2.53   -2.89   -3.12   -3.13   -2.93   -2.54   -1.96   -1.19   -0.10    1.56    3.96
+   105.0    0.00   -0.06   -0.23   -0.50   -0.84   -1.23   -1.65   -2.09   -2.53   -2.88   -3.10   -3.11   -2.92   -2.52   -1.94   -1.14    0.02    1.75    4.22
+   110.0    0.00   -0.06   -0.23   -0.50   -0.85   -1.23   -1.65   -2.10   -2.53   -2.88   -3.08   -3.10   -2.91   -2.52   -1.91   -1.08    0.16    1.98    4.54
+   115.0    0.00   -0.06   -0.24   -0.50   -0.85   -1.24   -1.67   -2.11   -2.53   -2.88   -3.07   -3.09   -2.90   -2.51   -1.90   -1.01    0.31    2.24    4.87
+   120.0    0.00   -0.06   -0.24   -0.50   -0.84   -1.24   -1.68   -2.12   -2.55   -2.88   -3.08   -3.10   -2.92   -2.52   -1.89   -0.95    0.46    2.48    5.20
+   125.0    0.00   -0.06   -0.24   -0.51   -0.86   -1.26   -1.69   -2.14   -2.57   -2.89   -3.09   -3.12   -2.94   -2.55   -1.90   -0.91    0.57    2.69    5.45
+   130.0    0.00   -0.06   -0.25   -0.51   -0.87   -1.27   -1.71   -2.17   -2.59   -2.92   -3.12   -3.16   -2.99   -2.60   -1.93   -0.90    0.65    2.81    5.60
+   135.0    0.00   -0.07   -0.24   -0.52   -0.88   -1.29   -1.74   -2.20   -2.63   -2.96   -3.18   -3.22   -3.06   -2.67   -1.98   -0.93    0.65    2.85    5.62
+   140.0    0.00   -0.07   -0.25   -0.53   -0.89   -1.31   -1.77   -2.24   -2.67   -3.01   -3.24   -3.29   -3.15   -2.75   -2.07   -1.00    0.58    2.78    5.53
+   145.0    0.00   -0.07   -0.26   -0.54   -0.91   -1.34   -1.81   -2.28   -2.71   -3.07   -3.32   -3.39   -3.24   -2.86   -2.19   -1.12    0.46    2.63    5.30
+   150.0    0.00   -0.08   -0.27   -0.55   -0.93   -1.36   -1.84   -2.32   -2.78   -3.16   -3.41   -3.49   -3.35   -2.98   -2.31   -1.27    0.28    2.39    5.00
+   155.0    0.00   -0.08   -0.28   -0.57   -0.95   -1.39   -1.88   -2.37   -2.84   -3.23   -3.49   -3.58   -3.47   -3.11   -2.46   -1.45    0.05    2.08    4.64
+   160.0    0.00   -0.08   -0.29   -0.58   -0.97   -1.44   -1.91   -2.42   -2.90   -3.30   -3.59   -3.68   -3.58   -3.24   -2.61   -1.64   -0.21    1.76    4.25
+   165.0    0.00   -0.09   -0.30   -0.59   -1.00   -1.46   -1.96   -2.47   -2.95   -3.38   -3.67   -3.78   -3.69   -3.36   -2.77   -1.84   -0.46    1.43    3.90
+   170.0    0.00   -0.09   -0.30   -0.62   -1.02   -1.49   -1.98   -2.51   -3.01   -3.45   -3.74   -3.87   -3.79   -3.48   -2.90   -2.01   -0.71    1.16    3.62
+   175.0    0.00   -0.09   -0.31   -0.63   -1.05   -1.51   -2.02   -2.55   -3.05   -3.49   -3.80   -3.94   -3.86   -3.57   -3.02   -2.16   -0.89    0.94    3.42
+   180.0    0.00   -0.10   -0.32   -0.65   -1.06   -1.53   -2.04   -2.57   -3.09   -3.52   -3.85   -3.99   -3.92   -3.62   -3.09   -2.27   -1.02    0.80    3.31
+   185.0    0.00   -0.10   -0.34   -0.66   -1.08   -1.56   -2.06   -2.59   -3.11   -3.55   -3.87   -4.00   -3.95   -3.65   -3.13   -2.31   -1.08    0.74    3.30
+   190.0    0.00   -0.10   -0.34   -0.68   -1.10   -1.57   -2.07   -2.59   -3.11   -3.54   -3.87   -4.02   -3.95   -3.65   -3.12   -2.30   -1.06    0.77    3.36
+   195.0    0.00   -0.10   -0.35   -0.69   -1.11   -1.58   -2.07   -2.59   -3.09   -3.53   -3.86   -3.99   -3.92   -3.62   -3.07   -2.23   -0.98    0.88    3.50
+   200.0    0.00   -0.10   -0.35   -0.69   -1.12   -1.59   -2.07   -2.57   -3.07   -3.50   -3.82   -3.95   -3.87   -3.55   -2.99   -2.12   -0.84    1.04    3.67
+   205.0    0.00   -0.10   -0.36   -0.70   -1.12   -1.58   -2.06   -2.56   -3.03   -3.46   -3.77   -3.90   -3.81   -3.46   -2.86   -1.97   -0.68    1.21    3.85
+   210.0    0.00   -0.10   -0.36   -0.70   -1.13   -1.58   -2.05   -2.53   -3.00   -3.41   -3.71   -3.83   -3.72   -3.34   -2.72   -1.80   -0.49    1.39    3.99
+   215.0    0.00   -0.10   -0.35   -0.71   -1.12   -1.57   -2.02   -2.49   -2.96   -3.37   -3.65   -3.75   -3.62   -3.22   -2.57   -1.64   -0.31    1.56    4.11
+   220.0    0.00   -0.11   -0.36   -0.70   -1.12   -1.55   -2.00   -2.45   -2.91   -3.31   -3.59   -3.67   -3.51   -3.10   -2.42   -1.47   -0.15    1.69    4.19
+   225.0    0.00   -0.11   -0.36   -0.70   -1.10   -1.53   -1.97   -2.42   -2.87   -3.27   -3.53   -3.59   -3.41   -2.97   -2.29   -1.34   -0.04    1.78    4.23
+   230.0    0.00   -0.11   -0.35   -0.68   -1.08   -1.51   -1.94   -2.39   -2.83   -3.20   -3.46   -3.52   -3.31   -2.87   -2.18   -1.24    0.04    1.83    4.22
+   235.0    0.00   -0.10   -0.34   -0.67   -1.06   -1.47   -1.90   -2.34   -2.79   -3.16   -3.41   -3.45   -3.24   -2.79   -2.11   -1.18    0.09    1.84    4.20
+   240.0    0.00   -0.10   -0.33   -0.66   -1.04   -1.43   -1.87   -2.31   -2.75   -3.12   -3.36   -3.39   -3.18   -2.73   -2.07   -1.16    0.08    1.83    4.17
+   245.0    0.00   -0.09   -0.33   -0.64   -1.01   -1.40   -1.82   -2.27   -2.71   -3.08   -3.32   -3.34   -3.14   -2.69   -2.05   -1.17    0.06    1.80    4.15
+   250.0    0.00   -0.09   -0.32   -0.61   -0.98   -1.37   -1.78   -2.23   -2.67   -3.05   -3.28   -3.31   -3.11   -2.67   -2.05   -1.20    0.02    1.76    4.16
+   255.0    0.00   -0.08   -0.29   -0.60   -0.94   -1.33   -1.73   -2.17   -2.62   -3.00   -3.25   -3.28   -3.09   -2.68   -2.07   -1.24   -0.02    1.75    4.18
+   260.0    0.00   -0.08   -0.28   -0.57   -0.90   -1.29   -1.69   -2.13   -2.58   -2.97   -3.21   -3.26   -3.07   -2.69   -2.09   -1.27   -0.04    1.77    4.24
+   265.0    0.00   -0.08   -0.27   -0.55   -0.87   -1.23   -1.65   -2.09   -2.53   -2.92   -3.18   -3.23   -3.06   -2.69   -2.11   -1.29   -0.05    1.80    4.33
+   270.0    0.00   -0.08   -0.25   -0.53   -0.83   -1.19   -1.59   -2.04   -2.49   -2.89   -3.14   -3.20   -3.05   -2.69   -2.13   -1.29   -0.02    1.86    4.43
+   275.0    0.00   -0.06   -0.24   -0.50   -0.81   -1.15   -1.55   -1.99   -2.44   -2.85   -3.11   -3.18   -3.03   -2.67   -2.12   -1.27    0.02    1.94    4.54
+   280.0    0.00   -0.06   -0.23   -0.47   -0.77   -1.12   -1.51   -1.95   -2.41   -2.80   -3.06   -3.14   -3.00   -2.65   -2.09   -1.23    0.10    2.04    4.67
+   285.0    0.00   -0.06   -0.21   -0.46   -0.75   -1.09   -1.48   -1.92   -2.37   -2.76   -3.03   -3.11   -2.97   -2.62   -2.04   -1.16    0.18    2.14    4.78
+   290.0    0.00   -0.06   -0.21   -0.43   -0.72   -1.06   -1.46   -1.90   -2.34   -2.75   -3.00   -3.08   -2.93   -2.56   -1.98   -1.09    0.27    2.23    4.88
+   295.0    0.00   -0.05   -0.19   -0.41   -0.70   -1.05   -1.45   -1.89   -2.33   -2.73   -2.98   -3.04   -2.88   -2.51   -1.91   -1.01    0.33    2.31    4.96
+   300.0    0.00   -0.05   -0.18   -0.40   -0.69   -1.03   -1.44   -1.89   -2.33   -2.73   -2.97   -3.01   -2.84   -2.46   -1.87   -0.96    0.39    2.36    5.01
+   305.0    0.00   -0.05   -0.18   -0.39   -0.69   -1.03   -1.44   -1.90   -2.36   -2.74   -2.96   -2.99   -2.81   -2.42   -1.81   -0.92    0.41    2.37    5.02
+   310.0    0.00   -0.04   -0.17   -0.38   -0.68   -1.04   -1.45   -1.92   -2.38   -2.75   -2.97   -3.00   -2.80   -2.40   -1.79   -0.92    0.40    2.34    4.99
+   315.0    0.00   -0.03   -0.17   -0.37   -0.68   -1.04   -1.47   -1.95   -2.42   -2.79   -3.01   -3.01   -2.81   -2.40   -1.81   -0.95    0.33    2.25    4.93
+   320.0    0.00   -0.04   -0.16   -0.38   -0.68   -1.04   -1.50   -1.98   -2.45   -2.82   -3.05   -3.05   -2.85   -2.44   -1.86   -1.01    0.24    2.12    4.81
+   325.0    0.00   -0.04   -0.16   -0.38   -0.68   -1.06   -1.51   -2.01   -2.49   -2.87   -3.11   -3.11   -2.91   -2.50   -1.93   -1.12    0.11    1.97    4.64
+   330.0    0.00   -0.04   -0.17   -0.39   -0.69   -1.08   -1.53   -2.04   -2.52   -2.92   -3.16   -3.19   -3.00   -2.60   -2.03   -1.24   -0.04    1.77    4.43
+   335.0    0.00   -0.03   -0.17   -0.39   -0.70   -1.08   -1.56   -2.06   -2.56   -2.97   -3.23   -3.26   -3.10   -2.72   -2.17   -1.38   -0.22    1.57    4.19
+   340.0    0.00   -0.03   -0.16   -0.40   -0.72   -1.10   -1.57   -2.07   -2.58   -3.00   -3.29   -3.36   -3.20   -2.85   -2.31   -1.53   -0.39    1.36    3.91
+   345.0    0.00   -0.03   -0.17   -0.42   -0.73   -1.11   -1.58   -2.09   -2.61   -3.04   -3.35   -3.44   -3.31   -2.98   -2.44   -1.67   -0.55    1.16    3.64
+   350.0    0.00   -0.04   -0.18   -0.43   -0.75   -1.13   -1.59   -2.11   -2.61   -3.07   -3.40   -3.52   -3.41   -3.09   -2.56   -1.80   -0.67    0.99    3.40
+   355.0    0.00   -0.04   -0.18   -0.44   -0.76   -1.16   -1.61   -2.11   -2.62   -3.08   -3.42   -3.58   -3.49   -3.19   -2.66   -1.89   -0.77    0.87    3.18
+   360.0    0.00   -0.04   -0.19   -0.45   -0.78   -1.17   -1.62   -2.11   -2.62   -3.08   -3.44   -3.61   -3.55   -3.25   -2.73   -1.94   -0.81    0.79    3.03
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+      0.07      0.66     57.79                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.10   -0.38   -0.78   -1.24   -1.72   -2.24   -2.79   -3.36   -3.83   -4.06   -3.91   -3.31   -2.35   -1.16    0.15    1.62    3.47    6.00
+     0.0    0.00   -0.13   -0.42   -0.83   -1.29   -1.79   -2.30   -2.85   -3.36   -3.76   -3.95   -3.79   -3.25   -2.34   -1.17    0.23    1.87    3.94    6.64
+     5.0    0.00   -0.13   -0.42   -0.84   -1.30   -1.80   -2.33   -2.86   -3.37   -3.78   -3.97   -3.82   -3.30   -2.40   -1.23    0.14    1.76    3.77    6.40
+    10.0    0.00   -0.13   -0.43   -0.84   -1.31   -1.83   -2.36   -2.88   -3.40   -3.80   -4.00   -3.85   -3.33   -2.44   -1.28    0.08    1.63    3.55    6.08
+    15.0    0.00   -0.13   -0.42   -0.84   -1.33   -1.84   -2.38   -2.91   -3.43   -3.85   -4.04   -3.90   -3.36   -2.47   -1.32   -0.49    1.49    3.31    5.74
+    20.0    0.00   -0.12   -0.42   -0.85   -1.35   -1.86   -2.40   -2.95   -3.48   -3.90   -4.09   -3.93   -3.40   -2.50   -1.34   -0.06    1.37    3.09    5.41
+    25.0    0.00   -0.12   -0.43   -0.86   -1.35   -1.88   -2.43   -2.98   -3.53   -3.97   -4.15   -4.00   -3.43   -2.51   -1.37   -0.10    1.28    2.90    5.16
+    30.0    0.00   -0.12   -0.42   -0.86   -1.36   -1.90   -2.45   -3.03   -3.59   -4.03   -4.24   -4.07   -3.49   -2.54   -1.38   -0.11    1.22    2.81    5.03
+    35.0    0.00   -0.11   -0.42   -0.86   -1.36   -1.90   -2.48   -3.07   -3.64   -4.10   -4.31   -4.15   -3.55   -2.58   -1.38   -0.11    1.21    2.80    5.04
+    40.0    0.00   -0.12   -0.42   -0.85   -1.37   -1.91   -2.48   -3.08   -3.68   -4.16   -4.40   -4.24   -3.63   -2.62   -1.40   -0.10    1.26    2.88    5.18
+    45.0    0.00   -0.11   -0.41   -0.85   -1.36   -1.90   -2.48   -3.10   -3.72   -4.22   -4.48   -4.32   -3.70   -2.68   -1.42   -0.07    1.34    3.03    5.44
+    50.0    0.00   -0.11   -0.41   -0.85   -1.35   -1.90   -2.48   -3.10   -3.74   -4.27   -4.54   -4.40   -3.78   -2.74   -1.45   -0.04    1.44    3.24    5.79
+    55.0    0.00   -0.10   -0.41   -0.84   -1.35   -1.89   -2.47   -3.09   -3.75   -4.30   -4.59   -4.48   -3.86   -2.81   -1.49   -0.04    1.54    3.45    6.15
+    60.0    0.00   -0.10   -0.40   -0.83   -1.34   -1.87   -2.46   -3.08   -3.74   -4.31   -4.63   -4.53   -3.93   -2.88   -1.53   -0.05    1.59    3.64    6.48
+    65.0    0.00   -0.09   -0.40   -0.83   -1.33   -1.85   -2.43   -3.05   -3.72   -4.30   -4.63   -4.56   -3.98   -2.94   -1.59   -0.09    1.61    3.76    6.73
+    70.0    0.00   -0.10   -0.40   -0.82   -1.32   -1.84   -2.40   -3.02   -3.69   -4.28   -4.64   -4.56   -4.01   -2.99   -1.66   -0.16    1.57    3.77    6.84
+    75.0    0.00   -0.10   -0.39   -0.81   -1.30   -1.82   -2.39   -3.00   -3.65   -4.25   -4.59   -4.55   -3.99   -3.02   -1.73   -0.26    1.45    3.69    6.82
+    80.0    0.00   -0.09   -0.39   -0.81   -1.29   -1.80   -2.36   -2.97   -3.62   -4.20   -4.54   -4.50   -3.97   -3.03   -1.79   -0.38    1.29    3.50    6.65
+    85.0    0.00   -0.09   -0.38   -0.80   -1.28   -1.78   -2.34   -2.94   -3.58   -4.15   -4.49   -4.43   -3.92   -3.01   -1.85   -0.53    1.07    3.24    6.37
+    90.0    0.00   -0.09   -0.37   -0.79   -1.26   -1.78   -2.32   -2.92   -3.54   -4.10   -4.42   -4.35   -3.85   -2.99   -1.90   -0.65    0.84    2.94    6.03
+    95.0    0.00   -0.08   -0.37   -0.77   -1.25   -1.77   -2.30   -2.89   -3.50   -4.04   -4.33   -4.27   -3.77   -2.94   -1.91   -0.77    0.63    2.63    5.65
+   100.0    0.00   -0.08   -0.35   -0.76   -1.24   -1.74   -2.28   -2.86   -3.46   -3.97   -4.26   -4.18   -3.69   -2.88   -1.92   -0.85    0.44    2.36    5.31
+   105.0    0.00   -0.08   -0.35   -0.76   -1.23   -1.72   -2.25   -2.82   -3.41   -3.92   -4.19   -4.09   -3.61   -2.83   -1.89   -0.89    0.34    2.17    5.05
+   110.0    0.00   -0.07   -0.34   -0.74   -1.21   -1.70   -2.23   -2.79   -3.36   -3.86   -4.12   -4.02   -3.53   -2.75   -1.85   -0.86    0.30    2.08    4.90
+   115.0    0.00   -0.07   -0.34   -0.74   -1.20   -1.68   -2.19   -2.75   -3.31   -3.80   -4.06   -3.95   -3.46   -2.67   -1.76   -0.79    0.36    2.11    4.88
+   120.0    0.00   -0.07   -0.34   -0.73   -1.17   -1.65   -2.15   -2.70   -3.26   -3.74   -4.00   -3.90   -3.40   -2.60   -1.65   -0.67    0.51    2.24    4.99
+   125.0    0.00   -0.07   -0.33   -0.71   -1.16   -1.62   -2.12   -2.65   -3.20   -3.68   -3.95   -3.85   -3.35   -2.52   -1.53   -0.49    0.71    2.46    5.18
+   130.0    0.00   -0.07   -0.32   -0.71   -1.14   -1.60   -2.07   -2.60   -3.15   -3.63   -3.91   -3.82   -3.30   -2.45   -1.40   -0.29    0.96    2.72    5.44
+   135.0    0.00   -0.07   -0.32   -0.70   -1.13   -1.57   -2.03   -2.55   -3.10   -3.60   -3.87   -3.79   -3.26   -2.37   -1.26   -0.09    1.23    3.00    5.70
+   140.0    0.00   -0.07   -0.32   -0.69   -1.11   -1.55   -2.01   -2.52   -3.07   -3.56   -3.85   -3.77   -3.23   -2.30   -1.12    0.12    1.49    3.27    5.94
+   145.0    0.00   -0.07   -0.32   -0.68   -1.10   -1.54   -1.99   -2.49   -3.03   -3.53   -3.83   -3.74   -3.19   -2.22   -1.00    0.30    1.70    3.47    6.09
+   150.0    0.00   -0.07   -0.31   -0.68   -1.09   -1.53   -1.97   -2.48   -3.03   -3.53   -3.81   -3.72   -3.16   -2.16   -0.89    0.45    1.86    3.60    6.18
+   155.0    0.00   -0.07   -0.31   -0.68   -1.09   -1.52   -1.98   -2.48   -3.03   -3.52   -3.81   -3.71   -3.13   -2.11   -0.82    0.54    1.95    3.64    6.15
+   160.0    0.00   -0.06   -0.32   -0.67   -1.09   -1.53   -1.98   -2.50   -3.04   -3.54   -3.81   -3.70   -3.11   -2.06   -0.77    0.59    1.97    3.62    6.05
+   165.0    0.00   -0.06   -0.31   -0.68   -1.09   -1.54   -2.00   -2.52   -3.06   -3.56   -3.82   -3.70   -3.09   -2.05   -0.76    0.59    1.95    3.53    5.88
+   170.0    0.00   -0.07   -0.31   -0.68   -1.11   -1.56   -2.03   -2.55   -3.10   -3.58   -3.83   -3.71   -3.10   -2.07   -0.77    0.56    1.87    3.40    5.69
+   175.0    0.00   -0.07   -0.32   -0.69   -1.12   -1.58   -2.05   -2.59   -3.13   -3.61   -3.86   -3.72   -3.13   -2.09   -0.83    0.48    1.78    3.28    5.51
+   180.0    0.00   -0.07   -0.32   -0.70   -1.13   -1.59   -2.09   -2.63   -3.17   -3.64   -3.88   -3.76   -3.15   -2.15   -0.90    0.39    1.68    3.17    5.37
+   185.0    0.00   -0.08   -0.33   -0.71   -1.14   -1.62   -2.11   -2.65   -3.20   -3.67   -3.92   -3.79   -3.21   -2.22   -1.00    0.29    1.58    3.08    5.27
+   190.0    0.00   -0.08   -0.33   -0.72   -1.15   -1.63   -2.14   -2.68   -3.23   -3.70   -3.96   -3.84   -3.27   -2.31   -1.10    0.20    1.51    3.04    5.26
+   195.0    0.00   -0.07   -0.34   -0.72   -1.17   -1.66   -2.16   -2.70   -3.26   -3.73   -3.99   -3.88   -3.34   -2.41   -1.20    0.10    1.46    3.06    5.32
+   200.0    0.00   -0.08   -0.34   -0.73   -1.19   -1.67   -2.18   -2.73   -3.27   -3.76   -4.02   -3.93   -3.41   -2.49   -1.29    0.03    1.44    3.10    5.42
+   205.0    0.00   -0.08   -0.35   -0.74   -1.20   -1.68   -2.20   -2.74   -3.30   -3.78   -4.05   -3.97   -3.47   -2.56   -1.36   -0.02    1.43    3.17    5.56
+   210.0    0.00   -0.09   -0.36   -0.75   -1.21   -1.70   -2.21   -2.77   -3.32   -3.81   -4.08   -4.02   -3.51   -2.61   -1.41   -0.04    1.46    3.26    5.71
+   215.0    0.00   -0.09   -0.37   -0.76   -1.22   -1.71   -2.23   -2.78   -3.35   -3.84   -4.12   -4.04   -3.54   -2.63   -1.42   -0.05    1.48    3.34    5.85
+   220.0    0.00   -0.10   -0.38   -0.78   -1.23   -1.73   -2.25   -2.81   -3.38   -3.87   -4.15   -4.06   -3.54   -2.62   -1.42   -0.04    1.52    3.43    5.98
+   225.0    0.00   -0.10   -0.38   -0.79   -1.24   -1.74   -2.27   -2.84   -3.41   -3.91   -4.17   -4.07   -3.53   -2.60   -1.38   -0.13    1.56    3.50    6.09
+   230.0    0.00   -0.11   -0.38   -0.80   -1.26   -1.75   -2.28   -2.86   -3.45   -3.95   -4.19   -4.07   -3.49   -2.54   -1.31    0.06    1.62    3.55    6.17
+   235.0    0.00   -0.11   -0.39   -0.80   -1.26   -1.76   -2.30   -2.89   -3.49   -3.98   -4.22   -4.06   -3.45   -2.46   -1.23    0.14    1.68    3.61    6.24
+   240.0    0.00   -0.12   -0.40   -0.80   -1.27   -1.76   -2.31   -2.91   -3.51   -4.01   -4.22   -4.04   -3.39   -2.38   -1.13    0.22    1.75    3.68    6.33
+   245.0    0.00   -0.11   -0.41   -0.81   -1.28   -1.78   -2.32   -2.92   -3.53   -4.02   -4.23   -4.01   -3.33   -2.28   -1.03    0.32    1.84    3.76    6.41
+   250.0    0.00   -0.12   -0.41   -0.81   -1.28   -1.78   -2.31   -2.92   -3.54   -4.03   -4.22   -3.97   -3.26   -2.20   -0.94    0.41    1.94    3.87    6.51
+   255.0    0.00   -0.12   -0.41   -0.82   -1.28   -1.76   -2.31   -2.91   -3.52   -4.01   -4.19   -3.93   -3.21   -2.13   -0.85    0.52    2.05    4.00    6.61
+   260.0    0.00   -0.13   -0.42   -0.82   -1.27   -1.75   -2.29   -2.89   -3.49   -3.97   -4.15   -3.88   -3.15   -2.06   -0.77    0.61    2.16    4.13    6.72
+   265.0    0.00   -0.12   -0.41   -0.81   -1.27   -1.74   -2.26   -2.85   -3.44   -3.92   -4.10   -3.83   -3.10   -2.01   -0.72    0.68    2.27    4.26    6.82
+   270.0    0.00   -0.12   -0.42   -0.82   -1.25   -1.72   -2.23   -2.80   -3.39   -3.85   -4.03   -3.77   -3.06   -1.97   -0.67    0.75    2.36    4.37    6.88
+   275.0    0.00   -0.13   -0.43   -0.81   -1.25   -1.70   -2.20   -2.75   -3.33   -3.78   -3.95   -3.71   -3.00   -1.94   -0.64    0.79    2.43    4.44    6.88
+   280.0    0.00   -0.12   -0.42   -0.81   -1.23   -1.67   -2.15   -2.70   -3.25   -3.71   -3.88   -3.64   -2.96   -1.91   -0.62    0.81    2.45    4.45    6.83
+   285.0    0.00   -0.12   -0.42   -0.81   -1.22   -1.66   -2.13   -2.65   -3.20   -3.64   -3.81   -3.58   -2.91   -1.88   -0.62    0.80    2.45    4.41    6.69
+   290.0    0.00   -0.13   -0.41   -0.80   -1.22   -1.65   -2.10   -2.62   -3.15   -3.58   -3.74   -3.52   -2.85   -1.85   -0.61    0.79    2.39    4.33    6.52
+   295.0    0.00   -0.13   -0.42   -0.80   -1.21   -1.63   -2.09   -2.60   -3.12   -3.54   -3.69   -3.47   -2.81   -1.82   -0.61    0.75    2.31    4.18    6.30
+   300.0    0.00   -0.13   -0.42   -0.79   -1.21   -1.63   -2.09   -2.59   -3.11   -3.52   -3.66   -3.43   -2.76   -1.79   -0.61    0.71    2.21    4.02    6.07
+   305.0    0.00   -0.13   -0.42   -0.79   -1.20   -1.64   -2.09   -2.61   -3.12   -3.52   -3.65   -3.39   -2.74   -1.77   -0.62    0.65    2.10    3.86    5.87
+   310.0    0.00   -0.13   -0.42   -0.80   -1.20   -1.64   -2.11   -2.62   -3.15   -3.54   -3.65   -3.38   -2.72   -1.75   -0.63    0.59    2.00    3.72    5.73
+   315.0    0.00   -0.13   -0.42   -0.80   -1.20   -1.65   -2.13   -2.66   -3.18   -3.57   -3.67   -3.39   -2.73   -1.76   -0.65    0.56    1.92    3.63    5.67
+   320.0    0.00   -0.13   -0.42   -0.80   -1.22   -1.66   -2.15   -2.69   -3.22   -3.60   -3.71   -3.42   -2.74   -1.78   -0.67    0.52    1.88    3.59    5.72
+   325.0    0.00   -0.13   -0.42   -0.80   -1.22   -1.68   -2.19   -2.73   -3.25   -3.65   -3.74   -3.46   -2.77   -1.82   -0.70    0.48    1.86    3.62    5.85
+   330.0    0.00   -0.13   -0.42   -0.80   -1.23   -1.70   -2.21   -2.75   -3.29   -3.68   -3.79   -3.50   -2.83   -1.88   -0.76    0.46    1.88    3.70    6.05
+   335.0    0.00   -0.13   -0.42   -0.81   -1.24   -1.72   -2.23   -2.78   -3.32   -3.71   -3.83   -3.56   -2.90   -1.94   -0.82    0.44    1.92    3.82    6.28
+   340.0    0.00   -0.12   -0.41   -0.82   -1.25   -1.73   -2.24   -2.80   -3.33   -3.73   -3.86   -3.61   -2.97   -2.03   -0.88    0.42    1.95    3.94    6.52
+   345.0    0.00   -0.12   -0.42   -0.82   -1.27   -1.75   -2.26   -2.82   -3.34   -3.75   -3.89   -3.66   -3.05   -2.11   -0.95    0.38    1.98    4.03    6.70
+   350.0    0.00   -0.13   -0.42   -0.82   -1.27   -1.75   -2.27   -2.82   -3.35   -3.75   -3.92   -3.72   -3.12   -2.19   -1.03    0.34    1.98    4.07    6.80
+   355.0    0.00   -0.12   -0.43   -0.83   -1.29   -1.78   -2.29   -2.83   -3.35   -3.75   -3.92   -3.75   -3.19   -2.27   -1.09    0.29    1.95    4.04    6.78
+   360.0    0.00   -0.13   -0.42   -0.83   -1.29   -1.79   -2.30   -2.85   -3.36   -3.76   -3.95   -3.79   -3.25   -2.34   -1.17    0.23    1.87    3.94    6.64
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TRM5800         NONE                                        TYPE / SERIAL NO    
+FIELD               NGS                      3    25-MAR-11 METH / BY / # / DATE
+     0.0                                                    DAZI                
+     0.0  80.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     2                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+CONVERTED FROM RELATIVE NGS ANTENNA CALIBRATIONS            COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.78      1.13     74.85                              NORTH / EAST / UP   
+   NOAZI    0.00    1.37    2.50    3.07    3.28    3.28    3.14    2.91    2.73    2.69    2.74    2.91    3.17    3.65    4.22    5.19    6.57
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.12     -2.19     77.25                              NORTH / EAST / UP   
+   NOAZI    0.00   -1.03   -1.11   -0.68    0.01    0.82    1.41    1.93    2.19    2.09    1.95    1.74    1.37    0.97    0.67    0.49    0.85
+   G02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TRM59800.00     NONE                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH              25    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     4                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+Number of Calibrated Antennas GPS:      025                 COMMENT             
+Number of Individual Calibrations GPS:  050                 COMMENT             
+Number of Calibrated Antennas GLO:      023                 COMMENT             
+Number of Individual Calibrations GLO:  064                 COMMENT             
+# GLONASS PCV                                               COMMENT             
+#  derived from Delta PCV per 25.0 MHz                      COMMENT             
+#  for frequency channel number k=0                         COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.45      1.02     89.81                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.24   -0.95   -2.03   -3.39   -4.85   -6.25   -7.42   -8.24   -8.60   -8.48   -7.87   -6.75   -5.08   -2.73    0.43    4.51    9.44   14.88
+     0.0    0.00   -0.24   -0.95   -2.05   -3.40   -4.85   -6.23   -7.38   -8.16   -8.49   -8.32   -7.66   -6.52   -4.87   -2.62    0.40    4.30    9.08   14.40
+     5.0    0.00   -0.25   -0.96   -2.05   -3.40   -4.85   -6.24   -7.40   -8.19   -8.52   -8.34   -7.67   -6.52   -4.86   -2.62    0.36    4.23    9.01   14.39
+    10.0    0.00   -0.25   -0.96   -2.06   -3.41   -4.86   -6.26   -7.42   -8.22   -8.55   -8.37   -7.69   -6.52   -4.86   -2.63    0.33    4.19    8.97   14.41
+    15.0    0.00   -0.25   -0.97   -2.06   -3.41   -4.87   -6.27   -7.45   -8.25   -8.59   -8.40   -7.71   -6.54   -4.87   -2.64    0.32    4.17    8.97   14.46
+    20.0    0.00   -0.26   -0.97   -2.07   -3.42   -4.88   -6.29   -7.47   -8.29   -8.63   -8.45   -7.75   -6.56   -4.89   -2.64    0.32    4.19    9.02   14.55
+    25.0    0.00   -0.26   -0.98   -2.07   -3.42   -4.89   -6.31   -7.50   -8.32   -8.67   -8.49   -7.79   -6.59   -4.91   -2.64    0.35    4.25    9.11   14.67
+    30.0    0.00   -0.26   -0.98   -2.07   -3.43   -4.90   -6.32   -7.52   -8.36   -8.71   -8.53   -7.83   -6.63   -4.93   -2.64    0.39    4.33    9.23   14.80
+    35.0    0.00   -0.26   -0.98   -2.08   -3.43   -4.91   -6.33   -7.54   -8.38   -8.74   -8.58   -7.88   -6.67   -4.95   -2.63    0.44    4.44    9.37   14.94
+    40.0    0.00   -0.26   -0.98   -2.08   -3.44   -4.91   -6.34   -7.55   -8.40   -8.77   -8.61   -7.92   -6.71   -4.98   -2.63    0.50    4.55    9.52   15.07
+    45.0    0.00   -0.27   -0.99   -2.08   -3.44   -4.91   -6.35   -7.56   -8.41   -8.78   -8.63   -7.95   -6.75   -5.00   -2.62    0.55    4.66    9.66   15.19
+    50.0    0.00   -0.27   -0.99   -2.08   -3.44   -4.92   -6.35   -7.56   -8.41   -8.79   -8.64   -7.97   -6.78   -5.03   -2.62    0.60    4.76    9.79   15.29
+    55.0    0.00   -0.27   -0.99   -2.08   -3.44   -4.91   -6.34   -7.56   -8.40   -8.78   -8.64   -7.98   -6.79   -5.04   -2.62    0.64    4.83    9.88   15.37
+    60.0    0.00   -0.27   -0.99   -2.08   -3.44   -4.91   -6.34   -7.55   -8.39   -8.77   -8.63   -7.98   -6.80   -5.05   -2.62    0.66    4.88    9.94   15.41
+    65.0    0.00   -0.27   -0.99   -2.08   -3.44   -4.91   -6.33   -7.53   -8.37   -8.75   -8.61   -7.97   -6.80   -5.05   -2.62    0.66    4.90    9.97   15.43
+    70.0    0.00   -0.27   -0.99   -2.09   -3.44   -4.91   -6.32   -7.52   -8.35   -8.72   -8.59   -7.95   -6.79   -5.05   -2.62    0.66    4.89    9.97   15.43
+    75.0    0.00   -0.27   -0.99   -2.09   -3.44   -4.90   -6.31   -7.50   -8.33   -8.70   -8.57   -7.93   -6.78   -5.05   -2.63    0.64    4.87    9.94   15.41
+    80.0    0.00   -0.27   -0.99   -2.09   -3.44   -4.90   -6.31   -7.49   -8.31   -8.67   -8.54   -7.91   -6.76   -5.05   -2.64    0.62    4.83    9.90   15.38
+    85.0    0.00   -0.27   -1.00   -2.09   -3.44   -4.90   -6.30   -7.48   -8.30   -8.66   -8.52   -7.89   -6.75   -5.05   -2.65    0.60    4.79    9.85   15.35
+    90.0    0.00   -0.27   -1.00   -2.09   -3.44   -4.90   -6.30   -7.48   -8.29   -8.64   -8.51   -7.88   -6.75   -5.05   -2.66    0.57    4.75    9.80   15.32
+    95.0    0.00   -0.27   -1.00   -2.09   -3.45   -4.90   -6.30   -7.48   -8.28   -8.64   -8.51   -7.88   -6.75   -5.06   -2.68    0.54    4.71    9.76   15.29
+   100.0    0.00   -0.27   -1.00   -2.09   -3.45   -4.91   -6.31   -7.48   -8.29   -8.64   -8.51   -7.89   -6.76   -5.07   -2.70    0.51    4.68    9.72   15.27
+   105.0    0.00   -0.27   -1.00   -2.10   -3.45   -4.92   -6.32   -7.49   -8.30   -8.65   -8.52   -7.90   -6.78   -5.10   -2.73    0.49    4.65    9.69   15.26
+   110.0    0.00   -0.27   -1.00   -2.10   -3.46   -4.93   -6.33   -7.50   -8.31   -8.66   -8.54   -7.92   -6.81   -5.13   -2.76    0.45    4.62    9.66   15.25
+   115.0    0.00   -0.27   -1.00   -2.10   -3.47   -4.93   -6.34   -7.51   -8.32   -8.68   -8.55   -7.94   -6.83   -5.16   -2.79    0.42    4.59    9.64   15.23
+   120.0    0.00   -0.27   -1.00   -2.10   -3.47   -4.94   -6.35   -7.52   -8.33   -8.69   -8.56   -7.96   -6.85   -5.19   -2.82    0.39    4.56    9.62   15.22
+   125.0    0.00   -0.27   -1.00   -2.11   -3.47   -4.95   -6.35   -7.53   -8.33   -8.69   -8.57   -7.97   -6.87   -5.21   -2.85    0.36    4.53    9.59   15.19
+   130.0    0.00   -0.27   -1.00   -2.11   -3.48   -4.95   -6.36   -7.53   -8.33   -8.69   -8.57   -7.97   -6.88   -5.22   -2.88    0.33    4.50    9.56   15.16
+   135.0    0.00   -0.27   -1.00   -2.11   -3.48   -4.95   -6.36   -7.53   -8.33   -8.68   -8.56   -7.96   -6.88   -5.23   -2.89    0.31    4.47    9.53   15.11
+   140.0    0.00   -0.27   -0.99   -2.10   -3.47   -4.95   -6.35   -7.52   -8.32   -8.67   -8.55   -7.95   -6.86   -5.22   -2.88    0.30    4.45    9.49   15.06
+   145.0    0.00   -0.27   -0.99   -2.10   -3.47   -4.94   -6.34   -7.50   -8.30   -8.65   -8.52   -7.93   -6.84   -5.19   -2.87    0.31    4.44    9.45   14.99
+   150.0    0.00   -0.26   -0.99   -2.10   -3.46   -4.93   -6.33   -7.49   -8.28   -8.63   -8.50   -7.90   -6.81   -5.16   -2.84    0.33    4.43    9.42   14.93
+   155.0    0.00   -0.26   -0.99   -2.09   -3.46   -4.92   -6.31   -7.46   -8.25   -8.60   -8.47   -7.87   -6.77   -5.12   -2.79    0.36    4.44    9.39   14.86
+   160.0    0.00   -0.26   -0.98   -2.09   -3.45   -4.90   -6.29   -7.44   -8.23   -8.58   -8.45   -7.84   -6.74   -5.08   -2.75    0.39    4.45    9.36   14.80
+   165.0    0.00   -0.26   -0.98   -2.08   -3.44   -4.89   -6.27   -7.42   -8.21   -8.56   -8.43   -7.82   -6.71   -5.04   -2.70    0.43    4.46    9.34   14.75
+   170.0    0.00   -0.25   -0.97   -2.07   -3.43   -4.87   -6.25   -7.40   -8.19   -8.54   -8.42   -7.81   -6.69   -5.01   -2.67    0.46    4.47    9.32   14.70
+   175.0    0.00   -0.25   -0.97   -2.07   -3.42   -4.86   -6.23   -7.38   -8.17   -8.53   -8.42   -7.81   -6.68   -4.99   -2.64    0.48    4.48    9.30   14.68
+   180.0    0.00   -0.25   -0.96   -2.06   -3.41   -4.85   -6.22   -7.37   -8.16   -8.53   -8.42   -7.81   -6.68   -4.98   -2.63    0.49    4.47    9.29   14.67
+   185.0    0.00   -0.25   -0.96   -2.05   -3.40   -4.84   -6.21   -7.36   -8.16   -8.53   -8.42   -7.82   -6.69   -4.99   -2.64    0.48    4.46    9.28   14.69
+   190.0    0.00   -0.24   -0.95   -2.05   -3.39   -4.84   -6.21   -7.36   -8.16   -8.53   -8.43   -7.83   -6.71   -5.02   -2.67    0.45    4.43    9.27   14.72
+   195.0    0.00   -0.24   -0.95   -2.04   -3.39   -4.83   -6.21   -7.36   -8.16   -8.54   -8.44   -7.85   -6.74   -5.05   -2.71    0.41    4.41    9.28   14.77
+   200.0    0.00   -0.24   -0.94   -2.03   -3.38   -4.83   -6.21   -7.36   -8.16   -8.54   -8.45   -7.86   -6.76   -5.09   -2.76    0.36    4.38    9.29   14.84
+   205.0    0.00   -0.23   -0.93   -2.03   -3.38   -4.83   -6.21   -7.36   -8.17   -8.54   -8.45   -7.88   -6.79   -5.14   -2.81    0.31    4.36    9.33   14.93
+   210.0    0.00   -0.23   -0.93   -2.02   -3.37   -4.83   -6.21   -7.37   -8.17   -8.54   -8.45   -7.88   -6.81   -5.17   -2.86    0.28    4.36    9.38   15.02
+   215.0    0.00   -0.23   -0.92   -2.01   -3.37   -4.83   -6.21   -7.37   -8.17   -8.54   -8.45   -7.88   -6.82   -5.20   -2.89    0.27    4.39    9.45   15.12
+   220.0    0.00   -0.22   -0.92   -2.00   -3.36   -4.82   -6.21   -7.37   -8.16   -8.53   -8.44   -7.88   -6.83   -5.22   -2.90    0.28    4.44    9.54   15.22
+   225.0    0.00   -0.22   -0.91   -2.00   -3.35   -4.82   -6.21   -7.36   -8.16   -8.52   -8.43   -7.88   -6.84   -5.22   -2.90    0.31    4.52    9.64   15.30
+   230.0    0.00   -0.22   -0.90   -1.99   -3.34   -4.81   -6.20   -7.35   -8.15   -8.51   -8.42   -7.87   -6.83   -5.21   -2.87    0.37    4.61    9.75   15.36
+   235.0    0.00   -0.21   -0.90   -1.98   -3.33   -4.79   -6.19   -7.34   -8.14   -8.50   -8.41   -7.87   -6.82   -5.19   -2.83    0.45    4.72    9.85   15.40
+   240.0    0.00   -0.21   -0.89   -1.97   -3.32   -4.78   -6.17   -7.33   -8.13   -8.50   -8.41   -7.86   -6.82   -5.17   -2.77    0.53    4.82    9.93   15.40
+   245.0    0.00   -0.21   -0.88   -1.96   -3.30   -4.76   -6.16   -7.32   -8.12   -8.49   -8.41   -7.87   -6.81   -5.14   -2.72    0.61    4.90    9.99   15.37
+   250.0    0.00   -0.21   -0.88   -1.95   -3.29   -4.75   -6.14   -7.31   -8.12   -8.50   -8.42   -7.87   -6.80   -5.12   -2.67    0.67    4.95   10.00   15.30
+   255.0    0.00   -0.21   -0.88   -1.94   -3.28   -4.74   -6.13   -7.30   -8.12   -8.51   -8.44   -7.88   -6.80   -5.10   -2.64    0.70    4.96    9.96   15.21
+   260.0    0.00   -0.20   -0.87   -1.93   -3.27   -4.72   -6.12   -7.30   -8.13   -8.52   -8.46   -7.90   -6.80   -5.09   -2.63    0.70    4.92    9.87   15.09
+   265.0    0.00   -0.20   -0.87   -1.93   -3.26   -4.72   -6.12   -7.30   -8.14   -8.54   -8.48   -7.91   -6.81   -5.09   -2.64    0.66    4.84    9.75   14.95
+   270.0    0.00   -0.20   -0.87   -1.92   -3.26   -4.71   -6.12   -7.31   -8.16   -8.57   -8.50   -7.92   -6.81   -5.10   -2.66    0.60    4.73    9.59   14.81
+   275.0    0.00   -0.20   -0.87   -1.92   -3.26   -4.71   -6.13   -7.33   -8.18   -8.59   -8.52   -7.94   -6.82   -5.11   -2.71    0.51    4.58    9.42   14.68
+   280.0    0.00   -0.20   -0.87   -1.92   -3.26   -4.72   -6.14   -7.34   -8.20   -8.61   -8.53   -7.95   -6.83   -5.14   -2.76    0.40    4.43    9.25   14.57
+   285.0    0.00   -0.20   -0.87   -1.93   -3.26   -4.73   -6.15   -7.36   -8.22   -8.63   -8.54   -7.95   -6.84   -5.16   -2.82    0.30    4.28    9.10   14.49
+   290.0    0.00   -0.21   -0.87   -1.93   -3.27   -4.74   -6.17   -7.38   -8.23   -8.64   -8.55   -7.95   -6.84   -5.18   -2.87    0.21    4.17    8.99   14.43
+   295.0    0.00   -0.21   -0.88   -1.94   -3.28   -4.75   -6.18   -7.39   -8.25   -8.64   -8.55   -7.95   -6.84   -5.19   -2.91    0.14    4.08    8.92   14.42
+   300.0    0.00   -0.21   -0.88   -1.95   -3.29   -4.77   -6.20   -7.41   -8.25   -8.64   -8.54   -7.94   -6.84   -5.20   -2.93    0.11    4.05    8.90   14.43
+   305.0    0.00   -0.21   -0.88   -1.95   -3.30   -4.78   -6.21   -7.41   -8.25   -8.63   -8.52   -7.92   -6.82   -5.20   -2.94    0.11    4.06    8.92   14.46
+   310.0    0.00   -0.21   -0.89   -1.96   -3.32   -4.79   -6.22   -7.42   -8.25   -8.62   -8.50   -7.90   -6.81   -5.18   -2.92    0.14    4.11    8.99   14.51
+   315.0    0.00   -0.22   -0.90   -1.97   -3.33   -4.80   -6.22   -7.41   -8.23   -8.60   -8.48   -7.88   -6.79   -5.16   -2.88    0.19    4.19    9.08   14.57
+   320.0    0.00   -0.22   -0.90   -1.98   -3.34   -4.81   -6.22   -7.41   -8.22   -8.57   -8.45   -7.85   -6.76   -5.13   -2.84    0.27    4.29    9.18   14.61
+   325.0    0.00   -0.22   -0.91   -1.99   -3.35   -4.82   -6.22   -7.40   -8.20   -8.55   -8.42   -7.82   -6.73   -5.09   -2.79    0.34    4.38    9.27   14.64
+   330.0    0.00   -0.23   -0.92   -2.00   -3.36   -4.82   -6.22   -7.38   -8.18   -8.52   -8.39   -7.79   -6.70   -5.05   -2.74    0.41    4.46    9.34   14.65
+   335.0    0.00   -0.23   -0.92   -2.01   -3.36   -4.83   -6.22   -7.37   -8.16   -8.50   -8.37   -7.76   -6.66   -5.01   -2.69    0.46    4.51    9.37   14.63
+   340.0    0.00   -0.23   -0.93   -2.02   -3.37   -4.83   -6.22   -7.36   -8.15   -8.48   -8.34   -7.73   -6.63   -4.97   -2.65    0.48    4.52    9.37   14.60
+   345.0    0.00   -0.24   -0.94   -2.03   -3.38   -4.83   -6.21   -7.36   -8.14   -8.47   -8.33   -7.70   -6.59   -4.94   -2.63    0.49    4.50    9.32   14.54
+   350.0    0.00   -0.24   -0.94   -2.03   -3.38   -4.84   -6.22   -7.36   -8.14   -8.47   -8.32   -7.68   -6.56   -4.91   -2.61    0.47    4.45    9.25   14.49
+   355.0    0.00   -0.24   -0.95   -2.04   -3.39   -4.84   -6.22   -7.37   -8.15   -8.48   -8.32   -7.67   -6.54   -4.89   -2.61    0.44    4.38    9.16   14.43
+   360.0    0.00   -0.24   -0.95   -2.05   -3.40   -4.85   -6.23   -7.38   -8.16   -8.49   -8.32   -7.66   -6.52   -4.87   -2.62    0.40    4.30    9.08   14.40
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.04     -0.35    120.03                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.14   -0.54   -1.15   -1.89   -2.72   -3.57   -4.38   -5.05   -5.45   -5.47   -5.03   -4.17   -2.96   -1.51    0.22    2.44    5.52    9.74
+     0.0    0.00   -0.14   -0.54   -1.14   -1.88   -2.68   -3.50   -4.30   -4.98   -5.44   -5.54   -5.19   -4.38   -3.20   -1.76   -0.07    2.04    4.97    9.14
+     5.0    0.00   -0.14   -0.54   -1.14   -1.88   -2.68   -3.51   -4.30   -4.98   -5.44   -5.54   -5.18   -4.38   -3.20   -1.77   -0.08    2.05    5.00    9.18
+    10.0    0.00   -0.14   -0.54   -1.14   -1.88   -2.69   -3.51   -4.31   -4.99   -5.44   -5.53   -5.17   -4.37   -3.20   -1.76   -0.06    2.11    5.10    9.28
+    15.0    0.00   -0.14   -0.53   -1.14   -1.88   -2.69   -3.52   -4.31   -4.99   -5.43   -5.51   -5.14   -4.34   -3.17   -1.73   -0.01    2.19    5.23    9.46
+    20.0    0.00   -0.14   -0.53   -1.14   -1.88   -2.69   -3.53   -4.32   -4.99   -5.42   -5.48   -5.10   -4.29   -3.12   -1.68    0.05    2.30    5.41    9.69
+    25.0    0.00   -0.13   -0.53   -1.14   -1.88   -2.70   -3.53   -4.33   -4.99   -5.41   -5.45   -5.06   -4.23   -3.06   -1.62    0.13    2.43    5.61    9.96
+    30.0    0.00   -0.13   -0.53   -1.14   -1.88   -2.70   -3.54   -4.34   -5.00   -5.40   -5.42   -5.01   -4.17   -3.00   -1.55    0.22    2.56    5.82   10.25
+    35.0    0.00   -0.13   -0.53   -1.13   -1.88   -2.70   -3.55   -4.35   -5.00   -5.38   -5.39   -4.95   -4.11   -2.93   -1.48    0.31    2.69    6.03   10.54
+    40.0    0.00   -0.13   -0.53   -1.13   -1.88   -2.71   -3.55   -4.35   -5.00   -5.37   -5.36   -4.91   -4.05   -2.86   -1.41    0.39    2.81    6.21   10.78
+    45.0    0.00   -0.13   -0.53   -1.13   -1.88   -2.71   -3.56   -4.36   -5.00   -5.37   -5.34   -4.88   -4.00   -2.81   -1.35    0.46    2.90    6.34   10.97
+    50.0    0.00   -0.13   -0.53   -1.13   -1.88   -2.71   -3.56   -4.36   -5.00   -5.36   -5.33   -4.85   -3.97   -2.78   -1.31    0.51    2.97    6.43   11.08
+    55.0    0.00   -0.14   -0.53   -1.13   -1.87   -2.70   -3.56   -4.36   -5.00   -5.36   -5.33   -4.85   -3.96   -2.76   -1.29    0.53    3.00    6.46   11.11
+    60.0    0.00   -0.14   -0.53   -1.13   -1.87   -2.70   -3.56   -4.36   -5.00   -5.36   -5.33   -4.86   -3.97   -2.76   -1.29    0.54    2.99    6.42   11.04
+    65.0    0.00   -0.14   -0.53   -1.13   -1.87   -2.70   -3.55   -4.35   -5.00   -5.37   -5.35   -4.88   -4.00   -2.79   -1.31    0.52    2.94    6.33   10.89
+    70.0    0.00   -0.14   -0.53   -1.13   -1.87   -2.70   -3.55   -4.35   -5.00   -5.38   -5.37   -4.91   -4.03   -2.82   -1.34    0.47    2.87    6.20   10.68
+    75.0    0.00   -0.14   -0.53   -1.13   -1.88   -2.70   -3.55   -4.35   -5.00   -5.39   -5.39   -4.94   -4.07   -2.87   -1.39    0.42    2.78    6.03   10.42
+    80.0    0.00   -0.14   -0.53   -1.14   -1.88   -2.71   -3.55   -4.35   -5.00   -5.40   -5.41   -4.98   -4.12   -2.91   -1.43    0.35    2.67    5.85   10.16
+    85.0    0.00   -0.14   -0.54   -1.14   -1.89   -2.71   -3.56   -4.35   -5.01   -5.41   -5.43   -5.01   -4.16   -2.96   -1.48    0.29    2.56    5.67    9.90
+    90.0    0.00   -0.14   -0.54   -1.15   -1.90   -2.72   -3.56   -4.36   -5.02   -5.42   -5.45   -5.03   -4.19   -2.99   -1.53    0.22    2.46    5.51    9.68
+    95.0    0.00   -0.14   -0.54   -1.15   -1.90   -2.73   -3.58   -4.37   -5.03   -5.43   -5.46   -5.05   -4.21   -3.02   -1.56    0.17    2.37    5.38    9.51
+   100.0    0.00   -0.14   -0.55   -1.16   -1.91   -2.75   -3.59   -4.39   -5.04   -5.44   -5.47   -5.06   -4.22   -3.03   -1.58    0.13    2.30    5.28    9.41
+   105.0    0.00   -0.14   -0.55   -1.17   -1.92   -2.76   -3.61   -4.40   -5.05   -5.45   -5.47   -5.06   -4.21   -3.03   -1.59    0.11    2.26    5.22    9.36
+   110.0    0.00   -0.14   -0.55   -1.17   -1.93   -2.77   -3.62   -4.42   -5.07   -5.46   -5.48   -5.05   -4.21   -3.02   -1.59    0.10    2.24    5.21    9.37
+   115.0    0.00   -0.15   -0.55   -1.18   -1.94   -2.78   -3.64   -4.44   -5.08   -5.47   -5.48   -5.05   -4.20   -3.01   -1.58    0.11    2.25    5.23    9.42
+   120.0    0.00   -0.15   -0.56   -1.18   -1.95   -2.79   -3.65   -4.45   -5.10   -5.48   -5.48   -5.05   -4.19   -3.00   -1.57    0.12    2.28    5.27    9.49
+   125.0    0.00   -0.15   -0.56   -1.18   -1.95   -2.80   -3.66   -4.46   -5.11   -5.49   -5.49   -5.05   -4.18   -2.99   -1.55    0.15    2.31    5.32    9.55
+   130.0    0.00   -0.15   -0.56   -1.19   -1.96   -2.80   -3.66   -4.47   -5.12   -5.50   -5.50   -5.06   -4.19   -2.98   -1.54    0.17    2.35    5.37    9.59
+   135.0    0.00   -0.15   -0.56   -1.19   -1.96   -2.80   -3.66   -4.47   -5.13   -5.51   -5.52   -5.07   -4.20   -2.99   -1.53    0.19    2.39    5.41    9.59
+   140.0    0.00   -0.15   -0.56   -1.19   -1.95   -2.80   -3.66   -4.47   -5.13   -5.53   -5.54   -5.09   -4.22   -3.00   -1.53    0.21    2.41    5.42    9.55
+   145.0    0.00   -0.15   -0.56   -1.19   -1.95   -2.79   -3.65   -4.46   -5.13   -5.54   -5.56   -5.12   -4.24   -3.02   -1.54    0.20    2.41    5.40    9.46
+   150.0    0.00   -0.15   -0.56   -1.18   -1.94   -2.78   -3.64   -4.45   -5.13   -5.55   -5.57   -5.14   -4.27   -3.04   -1.56    0.19    2.39    5.35    9.33
+   155.0    0.00   -0.15   -0.56   -1.18   -1.94   -2.77   -3.62   -4.44   -5.13   -5.55   -5.59   -5.17   -4.30   -3.07   -1.59    0.16    2.35    5.28    9.18
+   160.0    0.00   -0.15   -0.56   -1.18   -1.93   -2.76   -3.61   -4.43   -5.12   -5.55   -5.60   -5.18   -4.32   -3.10   -1.62    0.12    2.30    5.19    9.02
+   165.0    0.00   -0.15   -0.56   -1.18   -1.92   -2.75   -3.60   -4.42   -5.12   -5.55   -5.60   -5.19   -4.33   -3.12   -1.65    0.08    2.23    5.10    8.88
+   170.0    0.00   -0.15   -0.56   -1.17   -1.92   -2.74   -3.59   -4.41   -5.11   -5.55   -5.60   -5.19   -4.33   -3.13   -1.67    0.03    2.17    5.01    8.77
+   175.0    0.00   -0.15   -0.56   -1.17   -1.91   -2.73   -3.58   -4.40   -5.10   -5.54   -5.59   -5.18   -4.33   -3.13   -1.69    0.00    2.12    4.96    8.72
+   180.0    0.00   -0.15   -0.56   -1.17   -1.91   -2.73   -3.58   -4.40   -5.09   -5.53   -5.58   -5.16   -4.31   -3.12   -1.69   -0.02    2.09    4.93    8.73
+   185.0    0.00   -0.15   -0.56   -1.17   -1.91   -2.73   -3.58   -4.39   -5.09   -5.52   -5.56   -5.14   -4.28   -3.09   -1.68   -0.01    2.09    4.96    8.81
+   190.0    0.00   -0.15   -0.56   -1.17   -1.91   -2.73   -3.58   -4.39   -5.08   -5.50   -5.53   -5.11   -4.24   -3.06   -1.64    0.02    2.13    5.03    8.95
+   195.0    0.00   -0.15   -0.56   -1.17   -1.91   -2.73   -3.58   -4.39   -5.07   -5.49   -5.51   -5.07   -4.20   -3.01   -1.59    0.08    2.21    5.15    9.15
+   200.0    0.00   -0.15   -0.56   -1.16   -1.91   -2.73   -3.58   -4.39   -5.07   -5.47   -5.49   -5.04   -4.16   -2.95   -1.52    0.17    2.33    5.31    9.39
+   205.0    0.00   -0.15   -0.55   -1.16   -1.91   -2.73   -3.58   -4.39   -5.06   -5.46   -5.47   -5.01   -4.12   -2.89   -1.43    0.28    2.47    5.49    9.64
+   210.0    0.00   -0.15   -0.55   -1.16   -1.91   -2.73   -3.58   -4.39   -5.06   -5.45   -5.45   -4.98   -4.07   -2.82   -1.34    0.41    2.63    5.69    9.88
+   215.0    0.00   -0.15   -0.55   -1.16   -1.91   -2.73   -3.58   -4.39   -5.06   -5.45   -5.44   -4.96   -4.03   -2.76   -1.24    0.54    2.79    5.88   10.10
+   220.0    0.00   -0.15   -0.55   -1.16   -1.91   -2.73   -3.58   -4.39   -5.06   -5.44   -5.43   -4.94   -4.00   -2.70   -1.15    0.66    2.94    6.04   10.28
+   225.0    0.00   -0.14   -0.55   -1.16   -1.90   -2.73   -3.58   -4.39   -5.06   -5.45   -5.43   -4.93   -3.97   -2.65   -1.07    0.76    3.05    6.16   10.40
+   230.0    0.00   -0.14   -0.55   -1.15   -1.90   -2.73   -3.59   -4.40   -5.06   -5.45   -5.43   -4.92   -3.94   -2.61   -1.02    0.83    3.12    6.23   10.46
+   235.0    0.00   -0.14   -0.54   -1.15   -1.90   -2.73   -3.59   -4.40   -5.07   -5.45   -5.43   -4.91   -3.93   -2.58   -0.99    0.85    3.15    6.24   10.46
+   240.0    0.00   -0.14   -0.54   -1.15   -1.89   -2.73   -3.59   -4.41   -5.08   -5.46   -5.43   -4.91   -3.92   -2.58   -0.99    0.84    3.11    6.20   10.40
+   245.0    0.00   -0.14   -0.54   -1.14   -1.89   -2.73   -3.59   -4.41   -5.09   -5.47   -5.43   -4.91   -3.92   -2.59   -1.02    0.78    3.03    6.10   10.30
+   250.0    0.00   -0.14   -0.54   -1.14   -1.89   -2.72   -3.59   -4.42   -5.09   -5.48   -5.44   -4.91   -3.93   -2.62   -1.08    0.69    2.91    5.96   10.17
+   255.0    0.00   -0.14   -0.54   -1.14   -1.88   -2.72   -3.59   -4.42   -5.10   -5.49   -5.45   -4.92   -3.96   -2.67   -1.17    0.56    2.75    5.80   10.01
+   260.0    0.00   -0.14   -0.53   -1.13   -1.88   -2.72   -3.59   -4.43   -5.11   -5.49   -5.45   -4.94   -3.99   -2.73   -1.27    0.41    2.58    5.63    9.86
+   265.0    0.00   -0.14   -0.53   -1.13   -1.88   -2.72   -3.59   -4.43   -5.11   -5.50   -5.46   -4.95   -4.03   -2.80   -1.39    0.26    2.41    5.47    9.73
+   270.0    0.00   -0.14   -0.53   -1.13   -1.87   -2.71   -3.59   -4.43   -5.11   -5.50   -5.47   -4.97   -4.07   -2.88   -1.50    0.12    2.26    5.33    9.62
+   275.0    0.00   -0.14   -0.53   -1.13   -1.87   -2.71   -3.59   -4.43   -5.11   -5.50   -5.47   -4.99   -4.11   -2.96   -1.61    0.00    2.14    5.23    9.55
+   280.0    0.00   -0.14   -0.53   -1.12   -1.87   -2.71   -3.58   -4.42   -5.10   -5.49   -5.47   -5.01   -4.16   -3.02   -1.69   -0.09    2.06    5.17    9.51
+   285.0    0.00   -0.14   -0.53   -1.12   -1.87   -2.70   -3.58   -4.41   -5.09   -5.48   -5.48   -5.03   -4.19   -3.08   -1.76   -0.15    2.02    5.16    9.51
+   290.0    0.00   -0.14   -0.53   -1.12   -1.87   -2.70   -3.57   -4.40   -5.08   -5.47   -5.48   -5.04   -4.22   -3.12   -1.80   -0.18    2.02    5.18    9.55
+   295.0    0.00   -0.14   -0.53   -1.12   -1.87   -2.70   -3.56   -4.38   -5.06   -5.46   -5.47   -5.05   -4.24   -3.14   -1.81   -0.17    2.05    5.23    9.61
+   300.0    0.00   -0.14   -0.53   -1.12   -1.87   -2.69   -3.55   -4.37   -5.04   -5.45   -5.47   -5.06   -4.26   -3.15   -1.80   -0.13    2.11    5.30    9.69
+   305.0    0.00   -0.14   -0.53   -1.13   -1.87   -2.69   -3.54   -4.36   -5.03   -5.44   -5.47   -5.06   -4.26   -3.14   -1.77   -0.08    2.18    5.37    9.76
+   310.0    0.00   -0.14   -0.53   -1.13   -1.87   -2.69   -3.54   -4.34   -5.01   -5.42   -5.46   -5.06   -4.26   -3.12   -1.73   -0.02    2.24    5.43    9.81
+   315.0    0.00   -0.14   -0.53   -1.13   -1.87   -2.68   -3.53   -4.33   -5.00   -5.42   -5.46   -5.06   -4.25   -3.10   -1.69    0.03    2.30    5.47    9.85
+   320.0    0.00   -0.14   -0.53   -1.13   -1.87   -2.68   -3.52   -4.32   -4.99   -5.41   -5.46   -5.07   -4.25   -3.08   -1.65    0.08    2.33    5.47    9.84
+   325.0    0.00   -0.14   -0.53   -1.13   -1.87   -2.68   -3.52   -4.31   -4.98   -5.41   -5.46   -5.07   -4.25   -3.07   -1.63    0.10    2.33    5.44    9.80
+   330.0    0.00   -0.14   -0.53   -1.14   -1.87   -2.68   -3.51   -4.31   -4.98   -5.41   -5.47   -5.08   -4.25   -3.06   -1.61    0.11    2.31    5.38    9.72
+   335.0    0.00   -0.14   -0.53   -1.14   -1.87   -2.68   -3.51   -4.30   -4.98   -5.41   -5.48   -5.10   -4.26   -3.07   -1.62    0.09    2.27    5.30    9.61
+   340.0    0.00   -0.14   -0.54   -1.14   -1.87   -2.68   -3.50   -4.30   -4.97   -5.42   -5.49   -5.12   -4.29   -3.09   -1.64    0.06    2.21    5.20    9.49
+   345.0    0.00   -0.14   -0.54   -1.14   -1.88   -2.68   -3.50   -4.29   -4.97   -5.42   -5.51   -5.14   -4.31   -3.12   -1.67    0.02    2.15    5.10    9.36
+   350.0    0.00   -0.14   -0.54   -1.14   -1.88   -2.68   -3.50   -4.29   -4.98   -5.43   -5.52   -5.16   -4.34   -3.15   -1.70   -0.02    2.09    5.02    9.24
+   355.0    0.00   -0.14   -0.54   -1.14   -1.88   -2.68   -3.50   -4.29   -4.98   -5.44   -5.53   -5.18   -4.36   -3.18   -1.73   -0.05    2.05    4.97    9.17
+   360.0    0.00   -0.14   -0.54   -1.14   -1.88   -2.68   -3.50   -4.30   -4.98   -5.44   -5.54   -5.19   -4.38   -3.20   -1.76   -0.07    2.04    4.97    9.14
+   G02                                                      END OF FREQUENCY    
+   R01                                                      START OF FREQUENCY  
+      0.45      1.02     89.81                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.25   -1.00   -2.15   -3.58   -5.12   -6.60   -7.86   -8.76   -9.20   -9.14   -8.57   -7.50   -5.89   -3.62   -0.57    3.38    8.23   13.67
+     0.0    0.00   -0.25   -0.99   -2.15   -3.58   -5.12   -6.60   -7.86   -8.73   -9.15   -9.05   -8.46   -7.37   -5.79   -3.62   -0.70    3.11    7.80   13.05
+     5.0    0.00   -0.26   -1.00   -2.15   -3.57   -5.12   -6.60   -7.87   -8.77   -9.20   -9.12   -8.52   -7.42   -5.83   -3.65   -0.75    3.02    7.70   13.00
+    10.0    0.00   -0.26   -1.00   -2.16   -3.58   -5.12   -6.61   -7.89   -8.80   -9.25   -9.19   -8.59   -7.49   -5.87   -3.68   -0.80    2.96    7.62   12.99
+    15.0    0.00   -0.26   -1.01   -2.16   -3.58   -5.13   -6.62   -7.91   -8.83   -9.31   -9.26   -8.67   -7.56   -5.92   -3.72   -0.83    2.92    7.58   12.99
+    20.0    0.00   -0.27   -1.01   -2.17   -3.59   -5.12   -6.63   -7.93   -8.89   -9.37   -9.34   -8.76   -7.63   -5.99   -3.75   -0.85    2.90    7.58   13.04
+    25.0    0.00   -0.27   -1.02   -2.17   -3.59   -5.13   -6.65   -7.96   -8.92   -9.44   -9.41   -8.84   -7.70   -6.04   -3.77   -0.83    2.93    7.63   13.13
+    30.0    0.00   -0.26   -1.02   -2.17   -3.60   -5.14   -6.66   -7.98   -8.97   -9.49   -9.48   -8.90   -7.77   -6.07   -3.78   -0.81    2.99    7.71   13.23
+    35.0    0.00   -0.26   -1.02   -2.19   -3.60   -5.17   -6.68   -8.01   -9.00   -9.53   -9.54   -8.96   -7.81   -6.10   -3.78   -0.77    3.08    7.83   13.35
+    40.0    0.00   -0.26   -1.02   -2.19   -3.62   -5.18   -6.70   -8.03   -9.02   -9.56   -9.57   -8.99   -7.85   -6.12   -3.78   -0.72    3.18    7.97   13.48
+    45.0    0.00   -0.27   -1.03   -2.19   -3.63   -5.19   -6.72   -8.05   -9.04   -9.57   -9.57   -9.00   -7.86   -6.13   -3.77   -0.67    3.28    8.11   13.62
+    50.0    0.00   -0.27   -1.03   -2.20   -3.64   -5.22   -6.74   -8.06   -9.04   -9.56   -9.54   -8.98   -7.84   -6.13   -3.75   -0.62    3.39    8.26   13.75
+    55.0    0.00   -0.27   -1.03   -2.20   -3.65   -5.22   -6.75   -8.08   -9.03   -9.53   -9.50   -8.94   -7.81   -6.09   -3.73   -0.56    3.48    8.39   13.88
+    60.0    0.00   -0.27   -1.03   -2.20   -3.66   -5.24   -6.77   -8.08   -9.02   -9.50   -9.45   -8.88   -7.76   -6.07   -3.70   -0.53    3.56    8.50   14.00
+    65.0    0.00   -0.27   -1.03   -2.21   -3.66   -5.25   -6.78   -8.07   -9.00   -9.45   -9.39   -8.81   -7.70   -6.02   -3.67   -0.51    3.61    8.60   14.10
+    70.0    0.00   -0.27   -1.03   -2.22   -3.67   -5.25   -6.78   -8.06   -8.97   -9.40   -9.32   -8.74   -7.64   -5.97   -3.65   -0.48    3.65    8.67   14.19
+    75.0    0.00   -0.27   -1.03   -2.22   -3.67   -5.25   -6.77   -8.04   -8.94   -9.35   -9.26   -8.66   -7.58   -5.94   -3.63   -0.48    3.67    8.71   14.24
+    80.0    0.00   -0.27   -1.03   -2.21   -3.67   -5.25   -6.77   -8.03   -8.91   -9.30   -9.20   -8.61   -7.53   -5.91   -3.61   -0.46    3.67    8.72   14.28
+    85.0    0.00   -0.27   -1.04   -2.21   -3.66   -5.24   -6.75   -8.01   -8.88   -9.28   -9.16   -8.56   -7.48   -5.88   -3.60   -0.45    3.66    8.72   14.31
+    90.0    0.00   -0.27   -1.03   -2.21   -3.65   -5.23   -6.74   -7.99   -8.86   -9.24   -9.14   -8.53   -7.46   -5.85   -3.57   -0.46    3.64    8.69   14.32
+    95.0    0.00   -0.27   -1.03   -2.20   -3.65   -5.21   -6.71   -7.98   -8.83   -9.24   -9.13   -8.52   -7.44   -5.84   -3.57   -0.47    3.61    8.66   14.30
+   100.0    0.00   -0.27   -1.03   -2.19   -3.64   -5.21   -6.70   -7.96   -8.83   -9.22   -9.12   -8.53   -7.44   -5.82   -3.56   -0.48    3.60    8.62   14.29
+   105.0    0.00   -0.27   -1.03   -2.20   -3.63   -5.20   -6.69   -7.95   -8.83   -9.22   -9.13   -8.53   -7.44   -5.83   -3.56   -0.48    3.58    8.58   14.27
+   110.0    0.00   -0.27   -1.02   -2.19   -3.62   -5.19   -6.68   -7.95   -8.82   -9.22   -9.14   -8.54   -7.46   -5.83   -3.57   -0.49    3.55    8.54   14.24
+   115.0    0.00   -0.27   -1.02   -2.17   -3.62   -5.17   -6.67   -7.94   -8.82   -9.23   -9.15   -8.55   -7.46   -5.83   -3.56   -0.49    3.53    8.51   14.21
+   120.0    0.00   -0.27   -1.02   -2.17   -3.61   -5.16   -6.67   -7.92   -8.82   -9.23   -9.13   -8.54   -7.45   -5.83   -3.55   -0.49    3.51    8.48   14.19
+   125.0    0.00   -0.27   -1.02   -2.17   -3.61   -5.16   -6.66   -7.92   -8.80   -9.21   -9.12   -8.53   -7.44   -5.82   -3.55   -0.50    3.50    8.46   14.16
+   130.0    0.00   -0.27   -1.02   -2.17   -3.61   -5.16   -6.66   -7.91   -8.78   -9.19   -9.10   -8.50   -7.42   -5.79   -3.55   -0.50    3.50    8.45   14.13
+   135.0    0.00   -0.27   -1.02   -2.17   -3.61   -5.15   -6.65   -7.90   -8.77   -9.16   -9.06   -8.46   -7.39   -5.77   -3.53   -0.49    3.50    8.46   14.10
+   140.0    0.00   -0.27   -1.01   -2.16   -3.60   -5.15   -6.64   -7.88   -8.75   -9.13   -9.03   -8.43   -7.35   -5.75   -3.50   -0.47    3.53    8.46   14.06
+   145.0    0.00   -0.27   -1.01   -2.16   -3.60   -5.15   -6.63   -7.86   -8.71   -9.10   -8.98   -8.39   -7.31   -5.70   -3.48   -0.43    3.55    8.46   14.01
+   150.0    0.00   -0.26   -1.01   -2.16   -3.60   -5.14   -6.63   -7.85   -8.69   -9.07   -8.95   -8.35   -7.28   -5.67   -3.45   -0.40    3.57    8.46   13.96
+   155.0    0.00   -0.26   -1.01   -2.16   -3.60   -5.14   -6.62   -7.83   -8.66   -9.04   -8.91   -8.32   -7.24   -5.64   -3.41   -0.37    3.60    8.47   13.89
+   160.0    0.00   -0.26   -1.01   -2.16   -3.60   -5.13   -6.61   -7.82   -8.66   -9.03   -8.90   -8.30   -7.23   -5.63   -3.39   -0.35    3.61    8.44   13.81
+   165.0    0.00   -0.26   -1.01   -2.17   -3.59   -5.12   -6.59   -7.81   -8.65   -9.03   -8.91   -8.31   -7.23   -5.61   -3.37   -0.34    3.60    8.40   13.73
+   170.0    0.00   -0.26   -1.00   -2.16   -3.59   -5.11   -6.58   -7.80   -8.65   -9.03   -8.93   -8.33   -7.24   -5.63   -3.37   -0.34    3.58    8.34   13.63
+   175.0    0.00   -0.26   -1.01   -2.16   -3.58   -5.10   -6.57   -7.79   -8.65   -9.05   -8.96   -8.37   -7.28   -5.65   -3.38   -0.36    3.53    8.26   13.54
+   180.0    0.00   -0.26   -1.00   -2.16   -3.57   -5.09   -6.56   -7.80   -8.66   -9.08   -9.00   -8.43   -7.33   -5.68   -3.42   -0.40    3.45    8.16   13.46
+   185.0    0.00   -0.26   -1.00   -2.15   -3.56   -5.08   -6.55   -7.79   -8.67   -9.11   -9.05   -8.48   -7.38   -5.72   -3.46   -0.47    3.36    8.06   13.40
+   190.0    0.00   -0.25   -1.00   -2.16   -3.56   -5.08   -6.54   -7.79   -8.69   -9.14   -9.10   -8.53   -7.43   -5.79   -3.53   -0.55    3.26    7.95   13.36
+   195.0    0.00   -0.26   -1.00   -2.15   -3.56   -5.06   -6.54   -7.79   -8.69   -9.17   -9.14   -8.58   -7.49   -5.85   -3.60   -0.64    3.17    7.88   13.35
+   200.0    0.00   -0.26   -1.00   -2.14   -3.55   -5.06   -6.53   -7.77   -8.69   -9.18   -9.16   -8.61   -7.54   -5.91   -3.67   -0.74    3.07    7.81   13.36
+   205.0    0.00   -0.25   -0.99   -2.15   -3.55   -5.06   -6.52   -7.77   -8.70   -9.18   -9.17   -8.65   -7.58   -5.97   -3.75   -0.82    3.00    7.80   13.43
+   210.0    0.00   -0.25   -1.00   -2.14   -3.54   -5.06   -6.52   -7.77   -8.69   -9.18   -9.17   -8.65   -7.60   -6.00   -3.81   -0.87    2.98    7.82   13.50
+   215.0    0.00   -0.26   -0.99   -2.14   -3.55   -5.06   -6.51   -7.76   -8.68   -9.16   -9.16   -8.63   -7.61   -6.04   -3.85   -0.89    3.00    7.88   13.61
+   220.0    0.00   -0.25   -1.01   -2.14   -3.55   -5.05   -6.51   -7.76   -8.66   -9.14   -9.13   -8.62   -7.61   -6.06   -3.86   -0.88    3.05    7.99   13.72
+   225.0    0.00   -0.25   -1.00   -2.15   -3.55   -5.06   -6.52   -7.75   -8.65   -9.10   -9.10   -8.61   -7.62   -6.05   -3.86   -0.84    3.15    8.12   13.83
+   230.0    0.00   -0.25   -1.00   -2.14   -3.55   -5.08   -6.52   -7.74   -8.63   -9.08   -9.07   -8.58   -7.60   -6.04   -3.83   -0.77    3.28    8.28   13.92
+   235.0    0.00   -0.24   -1.00   -2.14   -3.55   -5.07   -6.53   -7.74   -8.62   -9.06   -9.05   -8.57   -7.57   -6.02   -3.78   -0.67    3.43    8.45   14.00
+   240.0    0.00   -0.25   -0.99   -2.14   -3.55   -5.08   -6.53   -7.76   -8.62   -9.06   -9.04   -8.54   -7.56   -6.00   -3.72   -0.57    3.58    8.58   14.03
+   245.0    0.00   -0.25   -0.99   -2.14   -3.56   -5.08   -6.54   -7.76   -8.62   -9.05   -9.03   -8.55   -7.55   -5.97   -3.66   -0.46    3.70    8.70   14.03
+   250.0    0.00   -0.25   -0.99   -2.13   -3.56   -5.08   -6.53   -7.77   -8.63   -9.06   -9.04   -8.54   -7.54   -5.95   -3.61   -0.37    3.80    8.77   13.99
+   255.0    0.00   -0.25   -0.99   -2.13   -3.55   -5.09   -6.54   -7.77   -8.64   -9.08   -9.06   -8.56   -7.54   -5.93   -3.56   -0.32    3.84    8.77   13.93
+   260.0    0.00   -0.24   -0.98   -2.12   -3.55   -5.07   -6.55   -7.79   -8.66   -9.10   -9.09   -8.58   -7.54   -5.91   -3.53   -0.30    3.84    8.71   13.85
+   265.0    0.00   -0.24   -0.98   -2.12   -3.54   -5.08   -6.55   -7.79   -8.68   -9.12   -9.12   -8.59   -7.55   -5.91   -3.53   -0.32    3.79    8.62   13.74
+   270.0    0.00   -0.24   -0.98   -2.11   -3.54   -5.06   -6.55   -7.80   -8.70   -9.17   -9.14   -8.61   -7.55   -5.91   -3.54   -0.36    3.70    8.49   13.64
+   275.0    0.00   -0.24   -0.98   -2.10   -3.53   -5.06   -6.54   -7.81   -8.72   -9.19   -9.17   -8.63   -7.56   -5.91   -3.57   -0.43    3.57    8.34   13.55
+   280.0    0.00   -0.24   -0.98   -2.10   -3.52   -5.05   -6.54   -7.81   -8.73   -9.21   -9.18   -8.64   -7.57   -5.93   -3.60   -0.51    3.43    8.19   13.49
+   285.0    0.00   -0.24   -0.97   -2.10   -3.50   -5.05   -6.53   -7.81   -8.74   -9.21   -9.19   -8.64   -7.57   -5.94   -3.65   -0.60    3.29    8.05   13.45
+   290.0    0.00   -0.24   -0.97   -2.09   -3.50   -5.04   -6.53   -7.81   -8.73   -9.21   -9.19   -8.64   -7.57   -5.95   -3.69   -0.68    3.18    7.95   13.43
+   295.0    0.00   -0.24   -0.98   -2.10   -3.50   -5.04   -6.52   -7.79   -8.73   -9.20   -9.18   -8.64   -7.56   -5.96   -3.72   -0.75    3.10    7.89   13.45
+   300.0    0.00   -0.24   -0.97   -2.10   -3.50   -5.04   -6.53   -7.80   -8.72   -9.19   -9.17   -8.62   -7.56   -5.95   -3.74   -0.78    3.06    7.87   13.48
+   305.0    0.00   -0.24   -0.97   -2.09   -3.50   -5.04   -6.53   -7.79   -8.71   -9.17   -9.14   -8.59   -7.53   -5.95   -3.75   -0.78    3.07    7.89   13.52
+   310.0    0.00   -0.24   -0.96   -2.09   -3.51   -5.03   -6.53   -7.80   -8.71   -9.15   -9.11   -8.56   -7.51   -5.93   -3.74   -0.76    3.11    7.95   13.56
+   315.0    0.00   -0.25   -0.97   -2.10   -3.51   -5.04   -6.53   -7.79   -8.69   -9.13   -9.08   -8.53   -7.48   -5.91   -3.71   -0.73    3.17    8.03   13.60
+   320.0    0.00   -0.24   -0.96   -2.10   -3.52   -5.05   -6.54   -7.80   -8.69   -9.10   -9.03   -8.49   -7.45   -5.88   -3.68   -0.68    3.26    8.11   13.61
+   325.0    0.00   -0.24   -0.97   -2.11   -3.53   -5.08   -6.55   -7.80   -8.68   -9.09   -9.00   -8.46   -7.41   -5.84   -3.64   -0.63    3.33    8.17   13.60
+   330.0    0.00   -0.25   -0.98   -2.12   -3.54   -5.08   -6.56   -7.81   -8.67   -9.07   -8.99   -8.42   -7.39   -5.82   -3.61   -0.58    3.39    8.22   13.57
+   335.0    0.00   -0.25   -0.97   -2.12   -3.54   -5.10   -6.58   -7.82   -8.67   -9.06   -8.97   -8.40   -7.35   -5.79   -3.58   -0.55    3.41    8.23   13.49
+   340.0    0.00   -0.25   -0.98   -2.13   -3.55   -5.11   -6.59   -7.82   -8.68   -9.05   -8.96   -8.38   -7.33   -5.77   -3.56   -0.54    3.40    8.21   13.42
+   345.0    0.00   -0.25   -0.99   -2.14   -3.56   -5.11   -6.58   -7.83   -8.68   -9.07   -8.97   -8.37   -7.32   -5.76   -3.57   -0.55    3.37    8.14   13.32
+   350.0    0.00   -0.25   -0.99   -2.14   -3.56   -5.12   -6.60   -7.84   -8.69   -9.09   -8.98   -8.38   -7.33   -5.76   -3.57   -0.59    3.30    8.04   13.22
+   355.0    0.00   -0.25   -0.99   -2.15   -3.57   -5.12   -6.60   -7.85   -8.71   -9.12   -9.01   -8.41   -7.35   -5.77   -3.59   -0.63    3.21    7.92   13.12
+   360.0    0.00   -0.25   -0.99   -2.15   -3.58   -5.12   -6.60   -7.86   -8.73   -9.15   -9.05   -8.46   -7.37   -5.79   -3.62   -0.70    3.11    7.80   13.05
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+     -0.04     -0.35    120.03                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.15   -0.60   -1.28   -2.12   -3.07   -4.06   -5.04   -5.88   -6.47   -6.68   -6.40   -5.68   -4.59   -3.24   -1.63    0.43    3.30    7.28
+     0.0    0.00   -0.15   -0.58   -1.24   -2.09   -3.02   -4.01   -5.01   -5.89   -6.57   -6.86   -6.68   -6.01   -4.94   -3.59   -1.99   -0.04    2.64    6.41
+     5.0    0.00   -0.15   -0.58   -1.24   -2.06   -3.00   -4.00   -4.99   -5.89   -6.56   -6.86   -6.67   -6.01   -4.94   -3.60   -2.02   -0.04    2.66    6.46
+    10.0    0.00   -0.15   -0.57   -1.22   -2.05   -2.99   -3.98   -4.99   -5.89   -6.56   -6.85   -6.66   -6.00   -4.93   -3.59   -2.01   -2.11    2.74    6.59
+    15.0    0.00   -0.14   -0.55   -1.21   -2.04   -2.98   -3.98   -4.98   -5.88   -6.54   -6.83   -6.63   -5.96   -4.91   -3.57   -1.98    0.06    2.87    6.80
+    20.0    0.00   -0.14   -0.55   -1.21   -2.03   -2.97   -3.98   -4.98   -5.88   -6.54   -6.80   -6.59   -5.92   -4.86   -3.53   -1.94    0.14    3.03    7.08
+    25.0    0.00   -0.13   -0.55   -1.21   -2.03   -2.97   -3.98   -4.99   -5.89   -6.54   -6.77   -6.55   -5.86   -4.80   -3.48   -1.87    0.25    3.23    7.38
+    30.0    0.00   -0.13   -0.54   -1.21   -2.03   -2.97   -4.00   -5.01   -5.91   -6.53   -6.75   -6.51   -5.80   -4.74   -3.42   -1.79    0.37    3.44    7.70
+    35.0    0.00   -0.13   -0.54   -1.20   -2.03   -2.98   -4.01   -5.03   -5.91   -6.52   -6.73   -6.45   -5.74   -4.68   -3.36   -1.71    0.50    3.67    8.01
+    40.0    0.00   -0.13   -0.54   -1.20   -2.03   -3.00   -4.02   -5.03   -5.92   -6.52   -6.71   -6.42   -5.69   -4.62   -3.29   -1.63    0.64    3.86    8.26
+    45.0    0.00   -0.13   -0.55   -1.20   -2.04   -3.01   -4.05   -5.06   -5.93   -6.52   -6.69   -6.39   -5.64   -4.57   -3.23   -1.55    0.74    4.01    8.46
+    50.0    0.00   -0.13   -0.55   -1.21   -2.06   -3.03   -4.06   -5.07   -5.93   -6.51   -6.67   -6.35   -5.61   -4.55   -3.19   -1.48    0.84    4.12    8.57
+    55.0    0.00   -0.14   -0.56   -1.22   -2.06   -3.03   -4.07   -5.07   -5.93   -6.49   -6.65   -6.34   -5.60   -4.52   -3.17   -1.46    0.88    4.17    8.60
+    60.0    0.00   -0.14   -0.56   -1.23   -2.07   -3.05   -4.08   -5.07   -5.92   -6.49   -6.64   -6.34   -5.60   -4.52   -3.16   -1.44    0.89    4.15    8.53
+    65.0    0.00   -0.14   -0.57   -1.23   -2.08   -3.06   -4.08   -5.06   -5.91   -6.47   -6.65   -6.34   -5.62   -4.55   -3.18   -1.45    0.84    4.07    8.38
+    70.0    0.00   -0.14   -0.57   -1.25   -2.10   -3.07   -4.09   -5.06   -5.90   -6.47   -6.64   -6.36   -5.64   -4.57   -3.21   -1.51    0.77    3.94    8.17
+    75.0    0.00   -0.14   -0.57   -1.26   -2.12   -3.08   -4.09   -5.06   -5.88   -6.46   -6.64   -6.38   -5.67   -4.62   -3.27   -1.57    0.68    3.76    7.91
+    80.0    0.00   -0.14   -0.57   -1.27   -2.12   -3.09   -4.09   -5.05   -5.88   -6.45   -6.65   -6.40   -5.71   -4.65   -3.31   -1.64    0.54    3.55    7.65
+    85.0    0.00   -0.15   -0.59   -1.28   -2.14   -3.10   -4.10   -5.05   -5.88   -6.46   -6.67   -6.42   -5.74   -4.70   -3.35   -1.71    0.40    3.34    7.38
+    90.0    0.00   -0.15   -0.59   -1.29   -2.16   -3.11   -4.10   -5.05   -5.88   -6.47   -6.69   -6.44   -5.77   -4.71   -3.39   -1.79    0.27    3.14    7.15
+    95.0    0.00   -0.15   -0.60   -1.30   -2.16   -3.12   -4.12   -5.06   -5.90   -6.48   -6.70   -6.47   -5.79   -4.73   -3.41   -1.84    0.16    2.97    6.96
+   100.0    0.00   -0.15   -0.61   -1.31   -2.17   -3.14   -4.12   -5.08   -5.91   -6.51   -6.73   -6.49   -5.80   -4.72   -3.41   -1.87    0.08    2.83    6.82
+   105.0    0.00   -0.15   -0.61   -1.32   -2.18   -3.15   -4.14   -5.09   -5.93   -6.53   -6.74   -6.50   -5.78   -4.71   -3.39   -1.87    0.04    2.74    6.74
+   110.0    0.00   -0.15   -0.61   -1.32   -2.19   -3.15   -4.15   -5.11   -5.96   -6.56   -6.77   -6.50   -5.77   -4.67   -3.36   -1.85    0.02    2.71    6.72
+   115.0    0.00   -0.16   -0.61   -1.33   -2.20   -3.16   -4.16   -5.14   -5.98   -6.58   -6.78   -6.50   -5.75   -4.64   -3.31   -1.80    0.06    2.73    6.76
+   120.0    0.00   -0.16   -0.62   -1.33   -2.20   -3.17   -4.17   -5.15   -6.01   -6.60   -6.79   -6.50   -5.73   -4.60   -3.26   -1.75    0.12    2.79    6.82
+   125.0    0.00   -0.16   -0.62   -1.33   -2.20   -3.17   -4.18   -5.16   -6.02   -6.61   -6.80   -6.49   -5.70   -4.56   -3.20   -1.68    0.19    2.87    6.89
+   130.0    0.00   -0.16   -0.62   -1.33   -2.20   -3.17   -4.18   -5.16   -6.02   -6.61   -6.80   -6.49   -5.69   -4.53   -3.16   -1.62    0.27    2.97    6.97
+   135.0    0.00   -0.16   -0.62   -1.32   -2.20   -3.16   -4.17   -5.16   -6.02   -6.61   -6.80   -6.48   -5.68   -4.51   -3.13   -1.57    0.36    3.06    7.02
+   140.0    0.00   -0.16   -0.62   -1.32   -2.18   -3.15   -4.16   -5.15   -6.01   -6.62   -6.80   -6.47   -5.68   -4.51   -3.11   -1.53    0.42    3.13    7.05
+   145.0    0.00   -0.16   -0.61   -1.32   -2.18   -3.14   -4.15   -5.14   -6.00   -6.61   -6.80   -6.48   -5.68   -4.51   -3.12   -1.53    0.44    3.16    7.02
+   150.0    0.00   -0.16   -0.61   -1.31   -2.16   -3.12   -4.13   -5.12   -5.99   -6.60   -6.78   -6.48   -5.70   -4.53   -3.15   -1.55    0.44    3.16    6.95
+   155.0    0.00   -0.16   -0.61   -1.30   -2.15   -3.11   -4.11   -5.10   -5.98   -6.58   -6.78   -6.49   -5.71   -4.57   -3.19   -1.58    0.41    3.12    6.85
+   160.0    0.00   -0.16   -0.61   -1.30   -2.14   -3.09   -4.10   -5.09   -5.96   -6.57   -6.78   -6.49   -5.73   -4.61   -3.24   -1.65    0.35    3.04    6.70
+   165.0    0.00   -0.16   -0.60   -1.29   -2.13   -3.08   -4.08   -5.08   -5.96   -6.56   -6.77   -6.49   -5.74   -4.64   -3.29   -1.71    0.26    2.94    6.55
+   170.0    0.00   -0.16   -0.60   -1.28   -2.12   -3.06   -4.07   -5.07   -5.94   -6.56   -6.76   -6.49   -5.75   -4.66   -3.33   -1.78    0.18    2.83    6.41
+   175.0    0.00   -0.16   -0.60   -1.28   -2.11   -3.05   -4.06   -5.05   -5.93   -6.54   -6.75   -6.48   -5.76   -4.68   -3.36   -1.83    0.12    2.75    6.30
+   180.0    0.00   -0.16   -0.60   -1.27   -2.11   -3.05   -4.05   -5.05   -5.91   -6.53   -6.74   -6.46   -5.75   -4.67   -3.38   -1.85    0.07    2.69    6.23
+   185.0    0.00   -0.16   -0.60   -1.27   -2.11   -3.05   -4.04   -5.03   -5.91   -6.51   -6.72   -6.44   -5.72   -4.65   -3.37   -1.85    0.06    2.69    6.24
+   190.0    0.00   -0.16   -0.60   -1.27   -2.11   -3.05   -4.04   -5.02   -5.89   -6.49   -6.68   -6.41   -5.68   -4.62   -3.33   -1.81    0.10    2.74    6.32
+   195.0    0.00   -0.16   -0.61   -1.28   -2.11   -3.05   -4.04   -5.01   -5.86   -6.46   -6.65   -6.37   -5.64   -4.57   -3.28   -1.75    0.19    2.85    6.49
+   200.0    0.00   -0.16   -0.61   -1.27   -2.11   -3.05   -4.03   -4.99   -5.84   -6.41   -6.61   -6.32   -5.59   -4.50   -3.20   -1.65    0.33    3.04    6.73
+   205.0    0.00   -0.16   -0.60   -1.28   -2.11   -3.05   -4.03   -4.99   -5.81   -6.38   -6.56   -6.27   -5.53   -4.44   -3.11   -1.52    0.50    3.26    7.02
+   210.0    0.00   -0.17   -0.61   -1.28   -2.12   -3.05   -4.02   -4.97   -5.79   -6.34   -6.51   -6.21   -5.47   -4.37   -3.02   -1.39    0.69    3.52    7.35
+   215.0    0.00   -0.17   -0.61   -1.29   -2.12   -3.05   -4.02   -4.96   -5.77   -6.30   -6.46   -6.17   -5.41   -4.31   -2.92   -1.25    0.88    3.79    7.69
+   220.0    0.00   -0.17   -0.62   -1.29   -2.13   -3.05   -4.02   -4.95   -5.74   -6.27   -6.42   -6.12   -5.38   -4.25   -2.84   -1.12    1.08    4.04    8.01
+   225.0    0.00   -0.16   -0.62   -1.30   -2.13   -3.06   -4.02   -4.94   -5.73   -6.26   -6.40   -6.09   -5.34   -4.21   -2.77   -1.02    1.22    4.25    8.27
+   230.0    0.00   -0.17   -0.62   -1.30   -2.14   -3.07   -4.03   -4.95   -5.72   -6.24   -6.39   -6.08   -5.31   -4.18   -2.73   -0.95    1.32    4.40    8.47
+   235.0    0.00   -0.17   -0.62   -1.30   -2.15   -3.08   -4.04   -4.95   -5.73   -6.24   -6.39   -6.07   -5.31   -4.16   -2.71   -0.92    1.39    4.48    8.58
+   240.0    0.00   -0.17   -0.62   -1.31   -2.15   -3.08   -4.05   -4.97   -5.75   -6.26   -6.39   -6.08   -5.30   -4.17   -2.71   -0.93    1.38    4.49    8.58
+   245.0    0.00   -0.17   -0.63   -1.31   -2.15   -3.09   -4.05   -4.98   -5.77   -6.29   -6.42   -6.09   -5.32   -4.18   -2.73   -0.96    1.32    4.41    8.50
+   250.0    0.00   -0.17   -0.64   -1.32   -2.15   -3.09   -4.06   -5.00   -5.79   -6.32   -6.46   -6.12   -5.35   -4.22   -2.78   -1.04    1.22    4.27    8.35
+   255.0    0.00   -0.18   -0.64   -1.32   -2.15   -3.10   -4.07   -5.01   -5.81   -6.36   -6.50   -6.16   -5.40   -4.26   -2.85   -1.14    1.06    4.09    8.12
+   260.0    0.00   -0.18   -0.63   -1.31   -2.16   -3.10   -4.07   -5.03   -5.85   -6.39   -6.53   -6.21   -5.44   -4.31   -2.93   -1.27    0.89    3.87    7.87
+   265.0    0.00   -0.18   -0.63   -1.31   -2.16   -3.10   -4.07   -5.03   -5.86   -6.42   -6.57   -6.25   -5.49   -4.37   -3.02   -1.39    0.72    3.64    7.62
+   270.0    0.00   -0.18   -0.63   -1.32   -2.15   -3.09   -4.07   -5.03   -5.87   -6.44   -6.61   -6.29   -5.53   -4.43   -3.10   -1.51    0.55    3.43    7.38
+   275.0    0.00   -0.18   -0.63   -1.32   -2.15   -3.08   -4.06   -5.03   -5.88   -6.46   -6.63   -6.33   -5.57   -4.49   -3.18   -1.62    0.40    3.25    7.19
+   280.0    0.00   -0.18   -0.64   -1.31   -2.15   -3.08   -4.05   -5.02   -5.87   -6.46   -6.64   -6.36   -5.62   -4.54   -3.24   -1.71    0.28    3.11    7.06
+   285.0    0.00   -0.18   -0.64   -1.31   -2.15   -3.07   -4.05   -5.01   -5.86   -6.46   -6.66   -6.38   -5.65   -4.59   -3.31   -1.79    0.19    3.03    6.99
+   290.0    0.00   -0.18   -0.64   -1.31   -2.15   -3.07   -4.04   -5.00   -5.86   -6.45   -6.66   -6.39   -5.67   -4.63   -3.36   -1.84    0.14    2.99    7.00
+   295.0    0.00   -0.18   -0.64   -1.31   -2.15   -3.07   -4.03   -4.99   -5.84   -6.45   -6.65   -6.40   -5.69   -4.66   -3.39   -1.88    0.12    2.99    7.05
+   300.0    0.00   -0.18   -0.63   -1.31   -2.16   -3.07   -4.03   -4.99   -5.83   -6.44   -6.65   -6.41   -5.72   -4.68   -3.40   -1.88    0.13    3.02    7.14
+   305.0    0.00   -0.18   -0.63   -1.32   -2.16   -3.07   -4.03   -4.99   -5.83   -6.44   -6.66   -6.41   -5.72   -4.69   -3.41   -1.88    0.15    3.07    7.24
+   310.0    0.00   -0.17   -0.63   -1.32   -2.16   -3.08   -4.05   -4.99   -5.83   -6.44   -6.66   -6.42   -5.74   -4.70   -3.42   -1.86    0.17    3.11    7.31
+   315.0    0.00   -0.17   -0.63   -1.31   -2.16   -3.08   -4.05   -5.00   -5.85   -6.45   -6.67   -6.44   -5.75   -4.70   -3.41   -1.85    0.21    3.14    7.36
+   320.0    0.00   -0.17   -0.63   -1.31   -2.16   -3.08   -4.06   -5.01   -5.86   -6.46   -6.70   -6.47   -5.77   -4.72   -3.41   -1.83    0.23    3.15    7.35
+   325.0    0.00   -0.17   -0.62   -1.31   -2.16   -3.09   -4.07   -5.02   -5.87   -6.48   -6.72   -6.48   -5.80   -4.74   -3.42   -1.83    0.22    3.12    7.30
+   330.0    0.00   -0.16   -0.61   -1.31   -2.15   -3.09   -4.07   -5.04   -5.89   -6.51   -6.74   -6.52   -5.83   -4.75   -3.42   -1.83    0.21    3.07    7.18
+   335.0    0.00   -0.16   -0.60   -1.30   -2.14   -3.09   -4.08   -5.04   -5.91   -6.52   -6.78   -6.56   -5.86   -4.78   -3.44   -1.85    0.17    3.00    7.03
+   340.0    0.00   -0.16   -0.61   -1.29   -2.13   -3.08   -4.07   -5.04   -5.90   -6.55   -6.80   -6.59   -5.90   -4.82   -3.47   -1.88    0.13    2.90    6.86
+   345.0    0.00   -0.15   -0.61   -1.28   -2.13   -3.07   -4.06   -5.03   -5.90   -6.55   -6.83   -6.63   -5.93   -4.86   -3.50   -1.91    0.08    2.80    6.69
+   350.0    0.00   -0.15   -0.60   -1.27   -2.12   -3.06   -4.04   -5.03   -5.91   -6.56   -6.84   -6.65   -5.97   -4.89   -3.53   -1.94    0.03    2.71    6.53
+   355.0    0.00   -0.15   -0.59   -1.26   -2.10   -3.04   -4.03   -5.01   -5.91   -6.57   -6.85   -6.67   -5.99   -4.92   -3.56   -1.97   -0.02    2.65    6.44
+   360.0    0.00   -0.15   -0.58   -1.24   -2.09   -3.02   -4.01   -5.01   -5.89   -6.57   -6.86   -6.68   -6.01   -4.94   -3.59   -1.99   -0.04    2.64    6.41
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TRM59800.00     SCIS                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH              10    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     4                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+Number of Calibrated Antennas GPS:      010                 COMMENT             
+Number of Individual Calibrations GPS:  020                 COMMENT             
+Number of Calibrated Antennas GLO:      010                 COMMENT             
+Number of Individual Calibrations GLO:  026                 COMMENT             
+# GLONASS PCV                                               COMMENT             
+#  derived from Delta PCV per 25.0 MHz                      COMMENT             
+#  for frequency channel number k=0                         COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.32      0.71     86.70                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.33   -1.27   -2.67   -4.33   -6.04   -7.62   -8.89   -9.75  -10.09   -9.85   -9.01   -7.58   -5.56   -2.91    0.47    4.80   10.24   16.72
+     0.0    0.00   -0.30   -1.21   -2.59   -4.24   -5.96   -7.57   -8.88   -9.76  -10.09   -9.81   -8.91   -7.42   -5.40   -2.81    0.48    4.71   10.08   16.46
+     5.0    0.00   -0.31   -1.22   -2.59   -4.25   -5.97   -7.57   -8.89   -9.77  -10.11   -9.83   -8.91   -7.40   -5.36   -2.78    0.48    4.67   10.01   16.44
+    10.0    0.00   -0.31   -1.23   -2.60   -4.25   -5.97   -7.57   -8.89   -9.79  -10.13   -9.85   -8.92   -7.40   -5.35   -2.76    0.48    4.64    9.96   16.43
+    15.0    0.00   -0.32   -1.24   -2.62   -4.26   -5.97   -7.57   -8.90   -9.80  -10.15   -9.87   -8.95   -7.42   -5.35   -2.75    0.49    4.62    9.93   16.44
+    20.0    0.00   -0.33   -1.25   -2.63   -4.27   -5.98   -7.58   -8.90   -9.81  -10.17   -9.90   -8.98   -7.45   -5.36   -2.75    0.50    4.64    9.94   16.48
+    25.0    0.00   -0.33   -1.26   -2.64   -4.28   -5.99   -7.58   -8.90   -9.81  -10.18   -9.93   -9.03   -7.49   -5.39   -2.75    0.53    4.68    9.99   16.56
+    30.0    0.00   -0.34   -1.27   -2.66   -4.29   -5.99   -7.58   -8.89   -9.80  -10.19   -9.95   -9.07   -7.54   -5.43   -2.76    0.56    4.75   10.08   16.66
+    35.0    0.00   -0.35   -1.29   -2.67   -4.31   -6.00   -7.57   -8.88   -9.79  -10.18   -9.97   -9.10   -7.59   -5.47   -2.77    0.60    4.84   10.20   16.78
+    40.0    0.00   -0.35   -1.30   -2.69   -4.33   -6.01   -7.57   -8.87   -9.77  -10.16   -9.97   -9.12   -7.63   -5.51   -2.78    0.64    4.94   10.33   16.91
+    45.0    0.00   -0.36   -1.31   -2.71   -4.34   -6.02   -7.58   -8.85   -9.74  -10.14   -9.95   -9.13   -7.65   -5.54   -2.78    0.69    5.04   10.47   17.05
+    50.0    0.00   -0.37   -1.33   -2.72   -4.36   -6.04   -7.58   -8.84   -9.72  -10.11   -9.93   -9.12   -7.66   -5.55   -2.78    0.73    5.14   10.60   17.18
+    55.0    0.00   -0.37   -1.34   -2.74   -4.38   -6.06   -7.59   -8.84   -9.70  -10.07   -9.89   -9.09   -7.65   -5.55   -2.77    0.77    5.22   10.72   17.30
+    60.0    0.00   -0.38   -1.35   -2.76   -4.40   -6.08   -7.60   -8.84   -9.68  -10.04   -9.84   -9.05   -7.62   -5.53   -2.75    0.80    5.27   10.81   17.40
+    65.0    0.00   -0.39   -1.36   -2.78   -4.43   -6.10   -7.62   -8.84   -9.66  -10.01   -9.80   -9.00   -7.57   -5.50   -2.73    0.82    5.31   10.86   17.48
+    70.0    0.00   -0.39   -1.37   -2.79   -4.45   -6.12   -7.64   -8.85   -9.66   -9.98   -9.76   -8.95   -7.53   -5.46   -2.71    0.84    5.32   10.90   17.53
+    75.0    0.00   -0.40   -1.38   -2.81   -4.47   -6.14   -7.66   -8.86   -9.66   -9.97   -9.73   -8.91   -7.48   -5.43   -2.69    0.84    5.32   10.90   17.56
+    80.0    0.00   -0.40   -1.39   -2.82   -4.48   -6.16   -7.68   -8.88   -9.67   -9.97   -9.72   -8.88   -7.45   -5.40   -2.68    0.83    5.30   10.89   17.57
+    85.0    0.00   -0.40   -1.40   -2.84   -4.50   -6.18   -7.70   -8.90   -9.69   -9.98   -9.72   -8.87   -7.44   -5.39   -2.69    0.81    5.27   10.86   17.56
+    90.0    0.00   -0.41   -1.41   -2.85   -4.51   -6.20   -7.72   -8.92   -9.71  -10.00   -9.73   -8.88   -7.45   -5.40   -2.70    0.78    5.24   10.83   17.52
+    95.0    0.00   -0.41   -1.41   -2.85   -4.52   -6.21   -7.73   -8.95   -9.74  -10.03   -9.76   -8.92   -7.48   -5.43   -2.73    0.75    5.20   10.78   17.47
+   100.0    0.00   -0.41   -1.42   -2.86   -4.53   -6.22   -7.75   -8.96   -9.76  -10.06   -9.80   -8.96   -7.52   -5.48   -2.78    0.70    5.15   10.73   17.41
+   105.0    0.00   -0.41   -1.42   -2.87   -4.54   -6.23   -7.76   -8.98   -9.79  -10.10   -9.85   -9.02   -7.58   -5.54   -2.84    0.64    5.09   10.67   17.33
+   110.0    0.00   -0.41   -1.42   -2.87   -4.54   -6.24   -7.77   -9.00   -9.81  -10.14   -9.90   -9.07   -7.65   -5.61   -2.91    0.57    5.02   10.61   17.25
+   115.0    0.00   -0.41   -1.42   -2.87   -4.54   -6.24   -7.78   -9.01   -9.84  -10.17   -9.94   -9.13   -7.71   -5.67   -2.98    0.50    4.95   10.53   17.15
+   120.0    0.00   -0.41   -1.42   -2.87   -4.54   -6.24   -7.79   -9.03   -9.86  -10.19   -9.98   -9.16   -7.75   -5.73   -3.05    0.42    4.86   10.44   17.05
+   125.0    0.00   -0.41   -1.42   -2.86   -4.54   -6.25   -7.79   -9.04   -9.87  -10.21  -10.00   -9.19   -7.78   -5.77   -3.11    0.34    4.77   10.34   16.95
+   130.0    0.00   -0.41   -1.41   -2.86   -4.54   -6.25   -7.80   -9.05   -9.88  -10.22  -10.00   -9.19   -7.79   -5.80   -3.16    0.26    4.67   10.23   16.85
+   135.0    0.00   -0.41   -1.41   -2.85   -4.53   -6.24   -7.80   -9.05   -9.89  -10.22   -9.99   -9.18   -7.78   -5.80   -3.19    0.20    4.58   10.13   16.76
+   140.0    0.00   -0.40   -1.40   -2.84   -4.53   -6.24   -7.80   -9.05   -9.88  -10.21   -9.97   -9.15   -7.75   -5.78   -3.20    0.15    4.50   10.03   16.67
+   145.0    0.00   -0.40   -1.39   -2.83   -4.52   -6.23   -7.79   -9.04   -9.88  -10.19   -9.95   -9.11   -7.71   -5.75   -3.19    0.13    4.44    9.95   16.59
+   150.0    0.00   -0.39   -1.39   -2.82   -4.50   -6.22   -7.78   -9.03   -9.86  -10.17   -9.91   -9.07   -7.67   -5.72   -3.17    0.12    4.40    9.89   16.52
+   155.0    0.00   -0.39   -1.38   -2.81   -4.49   -6.20   -7.76   -9.01   -9.84  -10.15   -9.88   -9.04   -7.63   -5.68   -3.14    0.14    4.39    9.86   16.47
+   160.0    0.00   -0.38   -1.36   -2.79   -4.47   -6.18   -7.74   -8.99   -9.81  -10.12   -9.86   -9.01   -7.59   -5.64   -3.10    0.17    4.41    9.85   16.43
+   165.0    0.00   -0.38   -1.35   -2.78   -4.45   -6.15   -7.71   -8.96   -9.79  -10.10   -9.84   -8.99   -7.57   -5.61   -3.06    0.21    4.45    9.86   16.40
+   170.0    0.00   -0.37   -1.34   -2.76   -4.43   -6.13   -7.68   -8.93   -9.76  -10.08   -9.83   -8.98   -7.57   -5.59   -3.02    0.27    4.50    9.88   16.38
+   175.0    0.00   -0.36   -1.33   -2.74   -4.40   -6.10   -7.65   -8.90   -9.73  -10.06   -9.82   -8.99   -7.57   -5.58   -2.99    0.32    4.56    9.92   16.37
+   180.0    0.00   -0.36   -1.31   -2.72   -4.38   -6.07   -7.62   -8.87   -9.71  -10.05   -9.82   -9.00   -7.58   -5.58   -2.97    0.36    4.61    9.96   16.38
+   185.0    0.00   -0.35   -1.30   -2.71   -4.36   -6.05   -7.59   -8.84   -9.69  -10.04   -9.83   -9.02   -7.60   -5.58   -2.95    0.40    4.65   10.00   16.41
+   190.0    0.00   -0.34   -1.29   -2.69   -4.34   -6.03   -7.57   -8.82   -9.68  -10.03   -9.83   -9.03   -7.61   -5.59   -2.95    0.42    4.68   10.03   16.45
+   195.0    0.00   -0.34   -1.27   -2.67   -4.32   -6.01   -7.56   -8.81   -9.67  -10.03   -9.83   -9.03   -7.62   -5.59   -2.95    0.42    4.70   10.06   16.51
+   200.0    0.00   -0.33   -1.26   -2.65   -4.30   -6.00   -7.55   -8.81   -9.67  -10.03   -9.83   -9.03   -7.61   -5.59   -2.95    0.42    4.70   10.09   16.59
+   205.0    0.00   -0.32   -1.25   -2.64   -4.29   -5.99   -7.55   -8.82   -9.67  -10.03   -9.82   -9.01   -7.59   -5.58   -2.95    0.41    4.70   10.13   16.70
+   210.0    0.00   -0.31   -1.24   -2.62   -4.28   -5.98   -7.55   -8.82   -9.68  -10.03   -9.80   -8.98   -7.56   -5.56   -2.94    0.41    4.71   10.18   16.82
+   215.0    0.00   -0.31   -1.22   -2.61   -4.27   -5.98   -7.56   -8.83   -9.68  -10.02   -9.78   -8.95   -7.53   -5.54   -2.93    0.41    4.73   10.25   16.96
+   220.0    0.00   -0.30   -1.21   -2.60   -4.26   -5.98   -7.56   -8.84   -9.68  -10.01   -9.75   -8.91   -7.49   -5.51   -2.92    0.43    4.78   10.34   17.11
+   225.0    0.00   -0.29   -1.20   -2.59   -4.25   -5.97   -7.56   -8.84   -9.68   -9.99   -9.72   -8.87   -7.45   -5.48   -2.89    0.46    4.84   10.46   17.26
+   230.0    0.00   -0.29   -1.19   -2.57   -4.24   -5.97   -7.56   -8.83   -9.67   -9.97   -9.70   -8.84   -7.43   -5.46   -2.87    0.52    4.94   10.59   17.39
+   235.0    0.00   -0.28   -1.18   -2.56   -4.23   -5.96   -7.55   -8.82   -9.65   -9.95   -9.67   -8.82   -7.41   -5.44   -2.83    0.59    5.05   10.73   17.50
+   240.0    0.00   -0.28   -1.17   -2.55   -4.21   -5.94   -7.53   -8.81   -9.63   -9.93   -9.66   -8.81   -7.41   -5.43   -2.80    0.66    5.17   10.86   17.56
+   245.0    0.00   -0.27   -1.16   -2.54   -4.20   -5.93   -7.51   -8.78   -9.61   -9.91   -9.65   -8.82   -7.42   -5.44   -2.78    0.73    5.28   10.97   17.58
+   250.0    0.00   -0.27   -1.15   -2.53   -4.19   -5.91   -7.49   -8.76   -9.59   -9.90   -9.66   -8.84   -7.45   -5.45   -2.76    0.79    5.37   11.03   17.53
+   255.0    0.00   -0.26   -1.15   -2.52   -4.17   -5.90   -7.48   -8.75   -9.58   -9.90   -9.67   -8.87   -7.48   -5.47   -2.75    0.83    5.42   11.04   17.43
+   260.0    0.00   -0.26   -1.14   -2.51   -4.16   -5.88   -7.46   -8.73   -9.58   -9.91   -9.69   -8.90   -7.51   -5.49   -2.75    0.84    5.42   10.99   17.27
+   265.0    0.00   -0.26   -1.14   -2.50   -4.16   -5.87   -7.46   -8.73   -9.58   -9.93   -9.72   -8.94   -7.55   -5.52   -2.77    0.82    5.37   10.88   17.07
+   270.0    0.00   -0.25   -1.13   -2.50   -4.15   -5.87   -7.46   -8.74   -9.60   -9.96   -9.76   -8.97   -7.58   -5.54   -2.79    0.77    5.27   10.70   16.84
+   275.0    0.00   -0.25   -1.13   -2.50   -4.15   -5.87   -7.47   -8.76   -9.63  -10.00   -9.80   -9.01   -7.60   -5.56   -2.83    0.69    5.12   10.49   16.60
+   280.0    0.00   -0.25   -1.13   -2.49   -4.15   -5.88   -7.48   -8.79   -9.68  -10.05   -9.84   -9.04   -7.62   -5.58   -2.87    0.59    4.94   10.25   16.36
+   285.0    0.00   -0.25   -1.13   -2.50   -4.16   -5.90   -7.51   -8.83   -9.72  -10.10   -9.88   -9.06   -7.63   -5.59   -2.92    0.48    4.75   10.01   16.16
+   290.0    0.00   -0.25   -1.13   -2.50   -4.17   -5.91   -7.54   -8.87   -9.77  -10.14   -9.92   -9.08   -7.63   -5.60   -2.97    0.37    4.58    9.80   16.00
+   295.0    0.00   -0.25   -1.13   -2.50   -4.17   -5.93   -7.56   -8.91   -9.82  -10.19   -9.95   -9.09   -7.64   -5.61   -3.01    0.27    4.42    9.64   15.89
+   300.0    0.00   -0.25   -1.13   -2.51   -4.18   -5.95   -7.59   -8.94   -9.85  -10.22   -9.97   -9.10   -7.64   -5.62   -3.05    0.19    4.32    9.53   15.84
+   305.0    0.00   -0.25   -1.14   -2.51   -4.19   -5.96   -7.61   -8.97   -9.88  -10.24   -9.99   -9.11   -7.64   -5.64   -3.08    0.14    4.26    9.49   15.85
+   310.0    0.00   -0.26   -1.14   -2.52   -4.20   -5.97   -7.63   -8.98   -9.89  -10.25   -9.99   -9.11   -7.65   -5.65   -3.10    0.13    4.25    9.52   15.91
+   315.0    0.00   -0.26   -1.14   -2.53   -4.21   -5.98   -7.63   -8.99   -9.89  -10.25   -9.99   -9.11   -7.65   -5.65   -3.10    0.13    4.30    9.60   16.00
+   320.0    0.00   -0.26   -1.15   -2.53   -4.22   -5.99   -7.63   -8.98   -9.88  -10.23   -9.97   -9.10   -7.65   -5.66   -3.10    0.17    4.37    9.72   16.12
+   325.0    0.00   -0.26   -1.16   -2.54   -4.22   -5.99   -7.63   -8.97   -9.86  -10.21   -9.95   -9.08   -7.64   -5.65   -3.08    0.22    4.47    9.85   16.23
+   330.0    0.00   -0.27   -1.16   -2.54   -4.22   -5.98   -7.62   -8.95   -9.83  -10.18   -9.92   -9.06   -7.63   -5.64   -3.06    0.28    4.57    9.98   16.34
+   335.0    0.00   -0.27   -1.17   -2.55   -4.23   -5.98   -7.60   -8.93   -9.81  -10.15   -9.89   -9.04   -7.61   -5.62   -3.02    0.34    4.66   10.09   16.42
+   340.0    0.00   -0.28   -1.18   -2.56   -4.23   -5.97   -7.59   -8.91   -9.78  -10.12   -9.86   -9.01   -7.57   -5.58   -2.98    0.39    4.73   10.17   16.48
+   345.0    0.00   -0.28   -1.18   -2.56   -4.23   -5.97   -7.58   -8.89   -9.77  -10.10   -9.84   -8.97   -7.54   -5.54   -2.93    0.43    4.76   10.20   16.50
+   350.0    0.00   -0.29   -1.19   -2.57   -4.23   -5.97   -7.57   -8.88   -9.76  -10.09   -9.82   -8.95   -7.49   -5.49   -2.89    0.46    4.77   10.18   16.50
+   355.0    0.00   -0.29   -1.20   -2.58   -4.24   -5.96   -7.57   -8.88   -9.76  -10.09   -9.81   -8.92   -7.45   -5.44   -2.85    0.47    4.75   10.14   16.49
+   360.0    0.00   -0.30   -1.21   -2.59   -4.24   -5.96   -7.57   -8.88   -9.76  -10.09   -9.81   -8.91   -7.42   -5.40   -2.81    0.48    4.71   10.08   16.46
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.15     -0.21    119.42                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.16   -0.60   -1.27   -2.08   -2.98   -3.90   -4.78   -5.51   -5.97   -6.02   -5.56   -4.59   -3.22   -1.54    0.41    2.76    5.81    9.80
+     0.0    0.00   -0.16   -0.61   -1.27   -2.08   -2.96   -3.85   -4.71   -5.44   -5.92   -6.00   -5.61   -4.74   -3.46   -1.88   -0.03    2.21    5.08    8.76
+     5.0    0.00   -0.16   -0.61   -1.27   -2.08   -2.96   -3.86   -4.72   -5.45   -5.92   -6.00   -5.59   -4.71   -3.44   -1.88   -0.04    2.21    5.10    8.83
+    10.0    0.00   -0.16   -0.61   -1.27   -2.08   -2.96   -3.87   -4.73   -5.46   -5.92   -5.99   -5.57   -4.68   -3.40   -1.85   -0.01    2.25    5.19    9.00
+    15.0    0.00   -0.16   -0.61   -1.27   -2.07   -2.96   -3.87   -4.74   -5.47   -5.93   -5.97   -5.54   -4.63   -3.35   -1.79    0.05    2.34    5.35    9.28
+    20.0    0.00   -0.16   -0.61   -1.27   -2.07   -2.96   -3.88   -4.75   -5.48   -5.93   -5.96   -5.51   -4.59   -3.29   -1.72    0.15    2.48    5.57    9.62
+    25.0    0.00   -0.16   -0.60   -1.27   -2.07   -2.96   -3.88   -4.76   -5.48   -5.93   -5.95   -5.48   -4.54   -3.23   -1.63    0.27    2.65    5.83   10.01
+    30.0    0.00   -0.16   -0.60   -1.26   -2.07   -2.96   -3.88   -4.76   -5.48   -5.92   -5.94   -5.46   -4.50   -3.16   -1.53    0.41    2.85    6.12   10.41
+    35.0    0.00   -0.16   -0.60   -1.26   -2.07   -2.96   -3.88   -4.76   -5.48   -5.92   -5.92   -5.43   -4.46   -3.10   -1.44    0.55    3.06    6.40   10.77
+    40.0    0.00   -0.16   -0.60   -1.26   -2.07   -2.96   -3.88   -4.75   -5.48   -5.91   -5.91   -5.42   -4.43   -3.05   -1.36    0.68    3.25    6.65   11.08
+    45.0    0.00   -0.16   -0.60   -1.26   -2.07   -2.96   -3.88   -4.75   -5.47   -5.90   -5.91   -5.41   -4.42   -3.02   -1.29    0.79    3.41    6.85   11.29
+    50.0    0.00   -0.16   -0.61   -1.27   -2.07   -2.96   -3.88   -4.75   -5.46   -5.89   -5.90   -5.41   -4.42   -3.01   -1.25    0.87    3.53    6.99   11.40
+    55.0    0.00   -0.16   -0.61   -1.27   -2.08   -2.97   -3.88   -4.75   -5.46   -5.89   -5.90   -5.41   -4.43   -3.01   -1.24    0.91    3.59    7.04   11.40
+    60.0    0.00   -0.16   -0.61   -1.27   -2.08   -2.97   -3.89   -4.75   -5.46   -5.88   -5.90   -5.42   -4.45   -3.04   -1.26    0.90    3.59    7.01   11.29
+    65.0    0.00   -0.16   -0.61   -1.27   -2.09   -2.98   -3.89   -4.75   -5.45   -5.88   -5.90   -5.44   -4.48   -3.08   -1.31    0.86    3.53    6.92   11.10
+    70.0    0.00   -0.16   -0.61   -1.28   -2.09   -2.99   -3.90   -4.75   -5.45   -5.88   -5.91   -5.46   -4.52   -3.14   -1.37    0.78    3.43    6.76   10.84
+    75.0    0.00   -0.16   -0.61   -1.28   -2.10   -3.00   -3.91   -4.76   -5.46   -5.88   -5.92   -5.48   -4.56   -3.20   -1.46    0.67    3.29    6.57   10.56
+    80.0    0.00   -0.16   -0.61   -1.28   -2.11   -3.00   -3.91   -4.76   -5.46   -5.89   -5.93   -5.51   -4.60   -3.26   -1.54    0.56    3.14    6.36   10.26
+    85.0    0.00   -0.16   -0.61   -1.29   -2.11   -3.01   -3.92   -4.77   -5.46   -5.89   -5.94   -5.53   -4.64   -3.32   -1.62    0.44    2.98    6.15    9.99
+    90.0    0.00   -0.16   -0.61   -1.29   -2.11   -3.01   -3.92   -4.77   -5.47   -5.90   -5.95   -5.55   -4.67   -3.36   -1.69    0.34    2.84    5.96    9.76
+    95.0    0.00   -0.16   -0.62   -1.29   -2.12   -3.02   -3.93   -4.78   -5.48   -5.91   -5.97   -5.56   -4.69   -3.39   -1.74    0.27    2.73    5.81    9.59
+   100.0    0.00   -0.16   -0.62   -1.29   -2.12   -3.02   -3.93   -4.78   -5.49   -5.93   -5.98   -5.58   -4.70   -3.40   -1.76    0.23    2.65    5.71    9.48
+   105.0    0.00   -0.16   -0.62   -1.29   -2.12   -3.02   -3.93   -4.79   -5.50   -5.94   -6.00   -5.58   -4.70   -3.39   -1.75    0.21    2.61    5.65    9.43
+   110.0    0.00   -0.16   -0.62   -1.29   -2.12   -3.02   -3.93   -4.79   -5.51   -5.96   -6.01   -5.59   -4.69   -3.37   -1.73    0.23    2.61    5.63    9.42
+   115.0    0.00   -0.16   -0.62   -1.29   -2.11   -3.01   -3.93   -4.80   -5.52   -5.97   -6.03   -5.60   -4.67   -3.34   -1.68    0.27    2.63    5.64    9.45
+   120.0    0.00   -0.16   -0.62   -1.29   -2.11   -3.01   -3.93   -4.80   -5.53   -5.99   -6.05   -5.60   -4.66   -3.30   -1.63    0.32    2.67    5.67    9.50
+   125.0    0.00   -0.16   -0.62   -1.29   -2.11   -3.01   -3.93   -4.81   -5.55   -6.01   -6.06   -5.61   -4.64   -3.26   -1.58    0.37    2.71    5.70    9.55
+   130.0    0.00   -0.16   -0.61   -1.29   -2.11   -3.01   -3.93   -4.82   -5.56   -6.03   -6.08   -5.62   -4.64   -3.24   -1.54    0.41    2.74    5.73    9.59
+   135.0    0.00   -0.16   -0.61   -1.29   -2.11   -3.01   -3.93   -4.82   -5.58   -6.05   -6.10   -5.63   -4.63   -3.22   -1.52    0.43    2.76    5.74    9.60
+   140.0    0.00   -0.16   -0.61   -1.29   -2.11   -3.01   -3.94   -4.83   -5.59   -6.07   -6.12   -5.64   -4.64   -3.22   -1.52    0.43    2.75    5.73    9.59
+   145.0    0.00   -0.16   -0.61   -1.29   -2.10   -3.01   -3.94   -4.84   -5.60   -6.08   -6.14   -5.66   -4.66   -3.24   -1.54    0.40    2.72    5.69    9.55
+   150.0    0.00   -0.16   -0.61   -1.28   -2.10   -3.01   -3.94   -4.84   -5.61   -6.09   -6.15   -5.68   -4.69   -3.28   -1.59    0.35    2.66    5.63    9.49
+   155.0    0.00   -0.16   -0.61   -1.28   -2.10   -3.01   -3.94   -4.84   -5.61   -6.10   -6.16   -5.70   -4.72   -3.33   -1.65    0.28    2.59    5.55    9.41
+   160.0    0.00   -0.16   -0.61   -1.28   -2.10   -3.01   -3.94   -4.84   -5.61   -6.10   -6.17   -5.72   -4.76   -3.39   -1.72    0.20    2.50    5.46    9.34
+   165.0    0.00   -0.16   -0.61   -1.28   -2.10   -3.01   -3.94   -4.84   -5.60   -6.09   -6.17   -5.74   -4.80   -3.44   -1.79    0.11    2.41    5.38    9.27
+   170.0    0.00   -0.16   -0.60   -1.28   -2.10   -3.01   -3.94   -4.83   -5.59   -6.08   -6.17   -5.75   -4.83   -3.49   -1.86    0.04    2.34    5.32    9.23
+   175.0    0.00   -0.16   -0.60   -1.28   -2.10   -3.00   -3.93   -4.82   -5.58   -6.07   -6.16   -5.76   -4.85   -3.52   -1.90   -0.01    2.29    5.28    9.23
+   180.0    0.00   -0.15   -0.60   -1.27   -2.10   -3.00   -3.93   -4.81   -5.56   -6.06   -6.15   -5.75   -4.85   -3.54   -1.92   -0.02    2.28    5.28    9.27
+   185.0    0.00   -0.15   -0.60   -1.27   -2.09   -3.00   -3.92   -4.80   -5.55   -6.04   -6.14   -5.74   -4.84   -3.52   -1.90    0.00    2.30    5.32    9.35
+   190.0    0.00   -0.15   -0.60   -1.27   -2.09   -2.99   -3.91   -4.79   -5.54   -6.03   -6.12   -5.72   -4.81   -3.48   -1.85    0.06    2.37    5.40    9.49
+   195.0    0.00   -0.15   -0.59   -1.26   -2.08   -2.99   -3.91   -4.78   -5.53   -6.02   -6.11   -5.69   -4.77   -3.42   -1.76    0.15    2.48    5.53    9.68
+   200.0    0.00   -0.15   -0.59   -1.26   -2.08   -2.98   -3.90   -4.78   -5.53   -6.01   -6.09   -5.66   -4.71   -3.33   -1.65    0.28    2.62    5.69    9.89
+   205.0    0.00   -0.15   -0.59   -1.25   -2.07   -2.97   -3.89   -4.78   -5.52   -6.00   -6.07   -5.62   -4.65   -3.24   -1.53    0.43    2.78    5.88   10.13
+   210.0    0.00   -0.15   -0.58   -1.25   -2.07   -2.97   -3.89   -4.77   -5.52   -6.00   -6.05   -5.58   -4.58   -3.14   -1.39    0.59    2.96    6.07   10.37
+   215.0    0.00   -0.15   -0.58   -1.24   -2.06   -2.96   -3.89   -4.77   -5.52   -5.99   -6.04   -5.54   -4.51   -3.04   -1.26    0.75    3.14    6.27   10.59
+   220.0    0.00   -0.14   -0.58   -1.24   -2.05   -2.96   -3.89   -4.78   -5.52   -5.99   -6.02   -5.51   -4.45   -2.95   -1.15    0.89    3.30    6.45   10.77
+   225.0    0.00   -0.14   -0.57   -1.23   -2.05   -2.95   -3.88   -4.78   -5.53   -5.99   -6.01   -5.48   -4.40   -2.88   -1.05    1.00    3.43    6.59   10.89
+   230.0    0.00   -0.14   -0.57   -1.23   -2.04   -2.95   -3.88   -4.78   -5.53   -5.99   -6.00   -5.46   -4.37   -2.83   -0.99    1.08    3.52    6.68   10.94
+   235.0    0.00   -0.14   -0.57   -1.23   -2.04   -2.95   -3.88   -4.78   -5.53   -5.98   -5.99   -5.45   -4.35   -2.81   -0.97    1.12    3.57    6.71   10.91
+   240.0    0.00   -0.14   -0.57   -1.22   -2.04   -2.95   -3.89   -4.78   -5.53   -5.98   -5.98   -5.44   -4.35   -2.81   -0.98    1.11    3.56    6.67   10.79
+   245.0    0.00   -0.14   -0.57   -1.22   -2.04   -2.95   -3.89   -4.78   -5.53   -5.98   -5.98   -5.44   -4.36   -2.84   -1.02    1.06    3.49    6.57   10.60
+   250.0    0.00   -0.14   -0.57   -1.22   -2.04   -2.95   -3.89   -4.79   -5.53   -5.97   -5.98   -5.44   -4.38   -2.88   -1.08    0.97    3.38    6.42   10.34
+   255.0    0.00   -0.14   -0.57   -1.22   -2.04   -2.95   -3.89   -4.79   -5.53   -5.97   -5.97   -5.45   -4.40   -2.93   -1.17    0.85    3.22    6.21   10.05
+   260.0    0.00   -0.14   -0.57   -1.22   -2.04   -2.95   -3.90   -4.79   -5.53   -5.97   -5.97   -5.46   -4.43   -2.99   -1.27    0.71    3.04    5.98    9.74
+   265.0    0.00   -0.14   -0.57   -1.23   -2.04   -2.96   -3.90   -4.80   -5.53   -5.97   -5.98   -5.47   -4.46   -3.05   -1.36    0.56    2.85    5.74    9.45
+   270.0    0.00   -0.14   -0.57   -1.23   -2.05   -2.96   -3.91   -4.80   -5.54   -5.97   -5.98   -5.47   -4.48   -3.10   -1.45    0.42    2.66    5.51    9.20
+   275.0    0.00   -0.14   -0.57   -1.23   -2.05   -2.97   -3.91   -4.81   -5.54   -5.98   -5.98   -5.48   -4.50   -3.14   -1.53    0.30    2.48    5.31    9.01
+   280.0    0.00   -0.14   -0.58   -1.24   -2.06   -2.97   -3.92   -4.81   -5.55   -5.98   -5.99   -5.49   -4.51   -3.17   -1.59    0.20    2.34    5.15    8.90
+   285.0    0.00   -0.15   -0.58   -1.24   -2.06   -2.98   -3.92   -4.82   -5.55   -5.99   -5.99   -5.49   -4.52   -3.19   -1.63    0.12    2.24    5.06    8.88
+   290.0    0.00   -0.15   -0.58   -1.25   -2.07   -2.98   -3.92   -4.82   -5.55   -5.99   -5.99   -5.50   -4.52   -3.20   -1.65    0.08    2.19    5.02    8.94
+   295.0    0.00   -0.15   -0.58   -1.25   -2.07   -2.98   -3.92   -4.81   -5.55   -5.99   -6.00   -5.50   -4.53   -3.20   -1.66    0.07    2.18    5.04    9.06
+   300.0    0.00   -0.15   -0.59   -1.26   -2.08   -2.98   -3.92   -4.81   -5.54   -5.99   -6.00   -5.51   -4.53   -3.20   -1.65    0.09    2.21    5.11    9.23
+   305.0    0.00   -0.15   -0.59   -1.26   -2.08   -2.98   -3.91   -4.79   -5.53   -5.98   -6.01   -5.52   -4.54   -3.20   -1.64    0.12    2.26    5.21    9.40
+   310.0    0.00   -0.15   -0.59   -1.26   -2.08   -2.98   -3.90   -4.78   -5.52   -5.98   -6.01   -5.53   -4.56   -3.21   -1.62    0.16    2.34    5.32    9.56
+   315.0    0.00   -0.15   -0.60   -1.27   -2.08   -2.97   -3.89   -4.76   -5.50   -5.97   -6.01   -5.55   -4.58   -3.22   -1.62    0.20    2.41    5.42    9.68
+   320.0    0.00   -0.15   -0.60   -1.27   -2.08   -2.97   -3.88   -4.75   -5.48   -5.95   -6.01   -5.56   -4.61   -3.24   -1.62    0.23    2.48    5.50    9.73
+   325.0    0.00   -0.16   -0.60   -1.27   -2.08   -2.96   -3.87   -4.73   -5.46   -5.94   -6.02   -5.58   -4.64   -3.28   -1.63    0.25    2.52    5.53    9.71
+   330.0    0.00   -0.16   -0.60   -1.27   -2.08   -2.96   -3.85   -4.71   -5.45   -5.93   -6.02   -5.60   -4.67   -3.31   -1.66    0.24    2.53    5.53    9.61
+   335.0    0.00   -0.16   -0.60   -1.27   -2.08   -2.96   -3.85   -4.70   -5.44   -5.92   -6.02   -5.61   -4.70   -3.35   -1.70    0.21    2.51    5.48    9.46
+   340.0    0.00   -0.16   -0.61   -1.27   -2.08   -2.95   -3.84   -4.70   -5.43   -5.92   -6.02   -5.63   -4.72   -3.39   -1.74    0.17    2.46    5.40    9.27
+   345.0    0.00   -0.16   -0.61   -1.27   -2.08   -2.95   -3.84   -4.69   -5.42   -5.91   -6.02   -5.63   -4.74   -3.43   -1.79    0.11    2.39    5.29    9.07
+   350.0    0.00   -0.16   -0.61   -1.27   -2.08   -2.95   -3.84   -4.70   -5.43   -5.91   -6.01   -5.63   -4.75   -3.45   -1.83    0.05    2.31    5.19    8.90
+   355.0    0.00   -0.16   -0.61   -1.27   -2.08   -2.95   -3.85   -4.70   -5.43   -5.91   -6.01   -5.62   -4.75   -3.46   -1.87    0.00    2.25    5.11    8.79
+   360.0    0.00   -0.16   -0.61   -1.27   -2.08   -2.96   -3.85   -4.71   -5.44   -5.92   -6.00   -5.61   -4.74   -3.46   -1.88   -0.03    2.21    5.08    8.76
+   G02                                                      END OF FREQUENCY    
+   R01                                                      START OF FREQUENCY  
+      0.32      0.71     86.70                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.35   -1.33   -2.81   -4.54   -6.33   -7.98   -9.33  -10.26  -10.69  -10.55   -9.82   -8.49   -6.58   -4.02   -0.71    3.60    9.08   15.69
+     0.0    0.00   -0.32   -1.30   -2.75   -4.47   -6.26   -7.91   -9.26  -10.21  -10.64  -10.50   -9.77   -8.44   -6.56   -4.06   -0.85    3.32    8.66   15.05
+     5.0    0.00   -0.33   -1.31   -2.76   -4.51   -6.29   -7.94   -9.30  -10.26  -10.71  -10.57   -9.82   -8.47   -6.56   -4.08   -0.88    3.26    8.53   14.95
+    10.0    0.00   -0.33   -1.33   -2.78   -4.53   -6.32   -7.97   -9.35  -10.31  -10.77  -10.64   -9.88   -8.53   -6.59   -4.09   -0.91    3.18    8.43   14.86
+    15.0    0.00   -0.34   -1.34   -2.81   -4.55   -6.34   -8.01   -9.39  -10.36  -10.83  -10.71   -9.96   -8.59   -6.64   -4.11   -0.93    3.12    8.35   14.80
+    20.0    0.00   -0.36   -1.35   -2.83   -4.58   -6.37   -8.05   -9.42  -10.42  -10.89  -10.78  -10.03   -8.66   -6.68   -4.13   -0.95    3.11    8.31   14.81
+    25.0    0.00   -0.36   -1.37   -2.85   -4.60   -6.40   -8.07   -9.45  -10.45  -10.95  -10.85  -10.13   -8.73   -6.73   -4.15   -0.94    3.12    8.33   14.89
+    30.0    0.00   -0.37   -1.38   -2.87   -4.62   -6.43   -8.09   -9.47  -10.47  -10.99  -10.91  -10.19   -8.81   -6.79   -4.18   -0.93    3.18    8.42   15.02
+    35.0    0.00   -0.38   -1.40   -2.89   -4.65   -6.46   -8.11   -9.50  -10.49  -11.00  -10.94  -10.24   -8.87   -6.84   -4.21   -0.90    3.26    8.56   15.23
+    40.0    0.00   -0.38   -1.41   -2.91   -4.68   -6.48   -8.12   -9.50  -10.48  -10.99  -10.95  -10.26   -8.91   -6.88   -4.23   -0.86    3.38    8.74   15.46
+    45.0    0.00   -0.39   -1.42   -2.94   -4.70   -6.50   -8.15   -9.50  -10.46  -10.97  -10.93  -10.26   -8.93   -6.92   -4.23   -0.81    3.50    8.94   15.73
+    50.0    0.00   -0.40   -1.44   -2.95   -4.73   -6.53   -8.16   -9.50  -10.45  -10.94  -10.90  -10.24   -8.93   -6.92   -4.23   -0.76    3.63    9.15   15.98
+    55.0    0.00   -0.40   -1.45   -2.97   -4.75   -6.56   -8.19   -9.50  -10.42  -10.89  -10.84  -10.19   -8.89   -6.92   -4.22   -0.71    3.75    9.35   16.20
+    60.0    0.00   -0.41   -1.46   -2.99   -4.77   -6.59   -8.21   -9.51  -10.40  -10.84  -10.76  -10.12   -8.85   -6.89   -4.19   -0.66    3.86    9.50   16.37
+    65.0    0.00   -0.41   -1.47   -3.01   -4.80   -6.61   -8.23   -9.51  -10.37  -10.80  -10.69  -10.05   -8.78   -6.85   -4.15   -0.62    3.94    9.61   16.47
+    70.0    0.00   -0.41   -1.48   -3.02   -4.82   -6.63   -8.25   -9.52  -10.37  -10.75  -10.63   -9.97   -8.72   -6.79   -4.11   -0.56    3.98    9.68   16.49
+    75.0    0.00   -0.42   -1.48   -3.03   -4.84   -6.65   -8.27   -9.53  -10.36  -10.72  -10.58   -9.91   -8.65   -6.75   -4.08   -0.54    4.01    9.69   16.44
+    80.0    0.00   -0.42   -1.49   -3.04   -4.85   -6.67   -8.29   -9.54  -10.36  -10.70  -10.55   -9.85   -8.59   -6.69   -4.05   -0.52    4.01    9.67   16.35
+    85.0    0.00   -0.42   -1.50   -3.05   -4.86   -6.68   -8.31   -9.56  -10.37  -10.70  -10.53   -9.82   -8.56   -6.66   -4.03   -0.52    4.00    9.62   16.22
+    90.0    0.00   -0.43   -1.51   -3.06   -4.86   -6.69   -8.32   -9.57  -10.39  -10.71  -10.52   -9.79   -8.53   -6.63   -4.01   -0.53    3.99    9.56   16.08
+    95.0    0.00   -0.43   -1.50   -3.05   -4.86   -6.69   -8.31   -9.59  -10.41  -10.72  -10.53   -9.81   -8.53   -6.63   -4.01   -0.54    3.95    9.49   15.96
+   100.0    0.00   -0.43   -1.51   -3.05   -4.86   -6.69   -8.31   -9.59  -10.41  -10.74  -10.54   -9.82   -8.54   -6.64   -4.02   -0.55    3.91    9.43   15.88
+   105.0    0.00   -0.43   -1.49   -3.05   -4.86   -6.68   -8.31   -9.59  -10.43  -10.77  -10.57   -9.86   -8.56   -6.66   -4.05   -0.59    3.86    9.38   15.82
+   110.0    0.00   -0.43   -1.49   -3.04   -4.84   -6.67   -8.29   -9.58  -10.43  -10.79  -10.61   -9.88   -8.60   -6.68   -4.08   -0.64    3.81    9.36   15.81
+   115.0    0.00   -0.42   -1.49   -3.03   -4.83   -6.64   -8.28   -9.57  -10.44  -10.80  -10.63   -9.92   -8.62   -6.71   -4.12   -0.68    3.77    9.33   15.84
+   120.0    0.00   -0.42   -1.48   -3.03   -4.81   -6.62   -8.26   -9.56  -10.43  -10.80  -10.65   -9.91   -8.62   -6.73   -4.15   -0.72    3.71    9.30   15.88
+   125.0    0.00   -0.42   -1.48   -3.01   -4.80   -6.60   -8.24   -9.55  -10.42  -10.81  -10.65   -9.92   -8.62   -6.73   -4.16   -0.77    3.66    9.27   15.93
+   130.0    0.00   -0.42   -1.47   -3.00   -4.77   -6.58   -8.21   -9.53  -10.41  -10.79  -10.63   -9.90   -8.60   -6.71   -4.17   -0.80    3.61    9.22   15.97
+   135.0    0.00   -0.42   -1.46   -2.98   -4.75   -6.55   -8.19   -9.51  -10.39  -10.77  -10.61   -9.87   -8.57   -6.68   -4.16   -0.82    3.56    9.17   15.97
+   140.0    0.00   -0.41   -1.45   -2.97   -4.73   -6.53   -8.16   -9.48  -10.37  -10.75  -10.58   -9.83   -8.50   -6.62   -4.12   -0.83    3.51    9.12   15.95
+   145.0    0.00   -0.41   -1.44   -2.95   -4.71   -6.50   -8.13   -9.44  -10.35  -10.72  -10.55   -9.77   -8.44   -6.56   -4.07   -0.81    3.48    9.06   15.89
+   150.0    0.00   -0.40   -1.44   -2.94   -4.68   -6.48   -8.10   -9.41  -10.31  -10.69  -10.49   -9.72   -8.38   -6.50   -4.01   -0.78    3.46    8.99   15.79
+   155.0    0.00   -0.40   -1.43   -2.92   -4.66   -6.44   -8.07   -9.38  -10.28  -10.66  -10.46   -9.68   -8.33   -6.43   -3.96   -0.74    3.45    8.94   15.69
+   160.0    0.00   -0.39   -1.41   -2.90   -4.64   -6.40   -8.03   -9.35  -10.25  -10.63  -10.43   -9.65   -8.27   -6.37   -3.90   -0.70    3.47    8.89   15.59
+   165.0    0.00   -0.39   -1.40   -2.89   -4.61   -6.37   -7.99   -9.31  -10.22  -10.61  -10.41   -9.63   -8.25   -6.33   -3.85   -0.66    3.49    8.87   15.50
+   170.0    0.00   -0.38   -1.39   -2.87   -4.59   -6.34   -7.95   -9.27  -10.19  -10.59  -10.41   -9.62   -8.25   -6.31   -3.81   -0.61    3.51    8.85   15.44
+   175.0    0.00   -0.37   -1.38   -2.84   -4.55   -6.30   -7.92   -9.24  -10.16  -10.57  -10.40   -9.63   -8.25   -6.30   -3.79   -0.59    3.54    8.86   15.42
+   180.0    0.00   -0.37   -1.36   -2.82   -4.53   -6.27   -7.88   -9.20  -10.14  -10.56  -10.42   -9.65   -8.27   -6.32   -3.80   -0.59    3.55    8.86   15.46
+   185.0    0.00   -0.36   -1.35   -2.81   -4.51   -6.24   -7.85   -9.17  -10.12  -10.56  -10.44   -9.69   -8.31   -6.36   -3.81   -0.59    3.54    8.89   15.54
+   190.0    0.00   -0.35   -1.34   -2.79   -4.49   -6.22   -7.81   -9.15  -10.11  -10.56  -10.46   -9.72   -8.35   -6.40   -3.85   -0.62    3.53    8.91   15.65
+   195.0    0.00   -0.35   -1.32   -2.77   -4.46   -6.19   -7.80   -9.14  -10.11  -10.57  -10.48   -9.74   -8.40   -6.43   -3.91   -0.68    3.51    8.94   15.79
+   200.0    0.00   -0.34   -1.31   -2.75   -4.44   -6.18   -7.79   -9.14  -10.12  -10.59  -10.50   -9.77   -8.42   -6.47   -3.95   -0.72    3.48    8.97   15.92
+   205.0    0.00   -0.33   -1.30   -2.74   -4.43   -6.17   -7.79   -9.15  -10.13  -10.61  -10.52   -9.79   -8.43   -6.50   -3.98   -0.76    3.45    9.00   16.07
+   210.0    0.00   -0.32   -1.29   -2.72   -4.42   -6.16   -7.79   -9.16  -10.15  -10.64  -10.52   -9.79   -8.43   -6.52   -4.00   -0.79    3.44    9.05   16.19
+   215.0    0.00   -0.33   -1.27   -2.71   -4.41   -6.16   -7.80   -9.18  -10.17  -10.65  -10.53   -9.79   -8.43   -6.52   -4.01   -0.80    3.45    9.10   16.30
+   220.0    0.00   -0.32   -1.26   -2.70   -4.40   -6.16   -7.82   -9.20  -10.18  -10.66  -10.53   -9.77   -8.40   -6.50   -4.00   -0.77    3.50    9.18   16.40
+   225.0    0.00   -0.31   -1.25   -2.69   -4.39   -6.16   -7.83   -9.21  -10.20  -10.66  -10.51   -9.74   -8.37   -6.47   -3.96   -0.73    3.59    9.30   16.46
+   230.0    0.00   -0.31   -1.24   -2.67   -4.38   -6.16   -7.84   -9.21  -10.20  -10.64  -10.49   -9.71   -8.34   -6.44   -3.92   -0.64    3.71    9.43   16.51
+   235.0    0.00   -0.30   -1.23   -2.66   -4.38   -6.16   -7.83   -9.21  -10.18  -10.62  -10.46   -9.68   -8.31   -6.40   -3.86   -0.54    3.86    9.58   16.55
+   240.0    0.00   -0.30   -1.22   -2.65   -4.36   -6.14   -7.82   -9.21  -10.17  -10.60  -10.43   -9.65   -8.29   -6.35   -3.80   -0.42    4.03    9.75   16.57
+   245.0    0.00   -0.29   -1.21   -2.64   -4.35   -6.14   -7.81   -9.18  -10.14  -10.56  -10.39   -9.63   -8.27   -6.34   -3.75   -0.31    4.20    9.92   16.59
+   250.0    0.00   -0.29   -1.20   -2.63   -4.34   -6.12   -7.79   -9.16  -10.11  -10.53  -10.37   -9.61   -8.27   -6.33   -3.71   -0.22    4.35   10.05   16.59
+   255.0    0.00   -0.27   -1.20   -2.62   -4.32   -6.11   -7.78   -9.14  -10.09  -10.50  -10.34   -9.60   -8.27   -6.33   -3.69   -0.15    4.46   10.15   16.58
+   260.0    0.00   -0.27   -1.19   -2.61   -4.31   -6.09   -7.75   -9.12  -10.07  -10.48  -10.33   -9.60   -8.28   -6.34   -3.67   -0.12    4.52   10.19   16.53
+   265.0    0.00   -0.27   -1.19   -2.60   -4.30   -6.07   -7.75   -9.10  -10.05  -10.47  -10.33   -9.61   -8.29   -6.36   -3.69   -0.13    4.51   10.17   16.44
+   270.0    0.00   -0.26   -1.18   -2.59   -4.29   -6.07   -7.74   -9.10  -10.05  -10.47  -10.33   -9.62   -8.32   -6.39   -3.73   -0.18    4.43   10.05   16.33
+   275.0    0.00   -0.26   -1.17   -2.59   -4.29   -6.06   -7.74   -9.10  -10.06  -10.49  -10.36   -9.65   -8.34   -6.42   -3.78   -0.27    4.29    9.88   16.17
+   280.0    0.00   -0.26   -1.17   -2.58   -4.28   -6.06   -7.74   -9.12  -10.08  -10.53  -10.39   -9.68   -8.37   -6.45   -3.84   -0.38    4.10    9.64   15.98
+   285.0    0.00   -0.26   -1.17   -2.59   -4.29   -6.07   -7.74   -9.14  -10.11  -10.57  -10.43   -9.71   -8.40   -6.48   -3.91   -0.52    3.88    9.38   15.78
+   290.0    0.00   -0.26   -1.17   -2.57   -4.29   -6.08   -7.76   -9.17  -10.15  -10.61  -10.47   -9.74   -8.41   -6.51   -3.98   -0.65    3.67    9.11   15.55
+   295.0    0.00   -0.26   -1.17   -2.57   -4.29   -6.09   -7.77   -9.20  -10.19  -10.66  -10.51   -9.76   -8.44   -6.53   -4.03   -0.78    3.44    8.85   15.35
+   300.0    0.00   -0.26   -1.17   -2.58   -4.29   -6.10   -7.80   -9.23  -10.22  -10.69  -10.54   -9.79   -8.45   -6.56   -4.09   -0.89    3.28    8.64   15.17
+   305.0    0.00   -0.26   -1.18   -2.58   -4.30   -6.11   -7.81   -9.25  -10.25  -10.71  -10.57   -9.81   -8.46   -6.59   -4.12   -0.98    3.14    8.48   15.03
+   310.0    0.00   -0.27   -1.18   -2.59   -4.31   -6.12   -7.83   -9.26  -10.25  -10.73  -10.59   -9.82   -8.48   -6.60   -4.15   -1.01    3.08    8.39   14.95
+   315.0    0.00   -0.27   -1.18   -2.62   -4.33   -6.13   -7.83   -9.27  -10.25  -10.73  -10.59   -9.82   -8.48   -6.60   -4.15   -1.03    3.07    8.38   14.92
+   320.0    0.00   -0.27   -1.19   -2.62   -4.34   -6.15   -7.83   -9.26  -10.24  -10.71  -10.57   -9.81   -8.48   -6.61   -4.16   -1.01    3.10    8.42   14.94
+   325.0    0.00   -0.28   -1.21   -2.64   -4.35   -6.16   -7.84   -9.25  -10.22  -10.68  -10.55   -9.79   -8.47   -6.60   -4.14   -0.97    3.17    8.51   15.00
+   330.0    0.00   -0.29   -1.21   -2.64   -4.36   -6.16   -7.84   -9.23  -10.19  -10.65  -10.50   -9.77   -8.47   -6.60   -4.13   -0.92    3.25    8.61   15.07
+   335.0    0.00   -0.29   -1.22   -2.66   -4.38   -6.17   -7.83   -9.22  -10.17  -10.62  -10.47   -9.76   -8.46   -6.59   -4.12   -0.88    3.33    8.72   15.13
+   340.0    0.00   -0.30   -1.24   -2.68   -4.40   -6.18   -7.83   -9.21  -10.14  -10.59  -10.46   -9.74   -8.44   -6.58   -4.10   -0.84    3.40    8.80   15.19
+   345.0    0.00   -0.30   -1.24   -2.69   -4.41   -6.20   -7.85   -9.20  -10.14  -10.58  -10.45   -9.71   -8.43   -6.57   -4.08   -0.82    3.42    8.83   15.20
+   350.0    0.00   -0.31   -1.26   -2.71   -4.43   -6.23   -7.86   -9.21  -10.15  -10.58  -10.45   -9.73   -8.41   -6.55   -4.07   -0.82    3.42    8.80   15.18
+   355.0    0.00   -0.31   -1.27   -2.73   -4.46   -6.24   -7.89   -9.24  -10.17  -10.61  -10.47   -9.74   -8.43   -6.56   -4.07   -0.83    3.39    8.75   15.13
+   360.0    0.00   -0.32   -1.30   -2.75   -4.47   -6.26   -7.91   -9.26  -10.21  -10.64  -10.50   -9.77   -8.44   -6.56   -4.06   -0.85    3.32    8.66   15.05
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+      0.15     -0.21    119.42                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.19   -0.72   -1.52   -2.48   -3.52   -4.57   -5.57   -6.42   -7.00   -7.19   -6.88   -6.07   -4.84   -3.27   -1.42    0.85    3.79    7.61
+     0.0    0.00   -0.17   -0.68   -1.47   -2.44   -3.49   -4.55   -5.56   -6.41   -7.00   -7.19   -6.94   -6.24   -5.15   -3.76   -2.05    0.09    2.87    6.39
+     5.0    0.00   -0.17   -0.68   -1.47   -2.44   -3.50   -4.57   -5.58   -6.43   -7.00   -7.19   -6.91   -6.19   -5.11   -3.73   -2.04    0.11    2.93    6.53
+    10.0    0.00   -0.17   -0.68   -1.47   -2.44   -3.50   -4.58   -5.60   -6.45   -7.01   -7.17   -6.88   -6.14   -5.04   -3.68   -1.98    0.18    3.06    6.78
+    15.0    0.00   -0.16   -0.68   -1.47   -2.43   -3.50   -4.58   -5.61   -6.46   -7.01   -7.15   -6.84   -6.07   -4.96   -3.58   -1.89    0.31    3.27    7.13
+    20.0    0.00   -0.16   -0.68   -1.46   -2.43   -3.50   -4.59   -5.61   -6.46   -7.00   -7.13   -6.79   -6.01   -4.88   -3.47   -1.74    0.50    3.55    7.54
+    25.0    0.00   -0.16   -0.67   -1.46   -2.42   -3.49   -4.58   -5.61   -6.45   -7.00   -7.11   -6.75   -5.95   -4.79   -3.35   -1.58    0.72    3.86    7.99
+    30.0    0.00   -0.16   -0.67   -1.45   -2.42   -3.48   -4.57   -5.60   -6.44   -6.98   -7.10   -6.73   -5.90   -4.71   -3.22   -1.39    0.97    4.20    8.45
+    35.0    0.00   -0.16   -0.67   -1.45   -2.42   -3.48   -4.56   -5.58   -6.42   -6.97   -7.08   -6.70   -5.86   -4.63   -3.10   -1.22    1.22    4.52    8.87
+    40.0    0.00   -0.16   -0.67   -1.45   -2.42   -3.47   -4.54   -5.55   -6.41   -6.96   -7.07   -6.69   -5.83   -4.58   -3.01   -1.06    1.44    4.80    9.23
+    45.0    0.00   -0.16   -0.67   -1.45   -2.41   -3.46   -4.54   -5.54   -6.39   -6.94   -7.07   -6.69   -5.83   -4.55   -2.94   -0.95    1.61    5.02    9.47
+    50.0    0.00   -0.16   -0.68   -1.45   -2.41   -3.45   -4.53   -5.53   -6.37   -6.93   -7.07   -6.71   -5.84   -4.56   -2.90   -0.87    1.73    5.16    9.60
+    55.0    0.00   -0.16   -0.68   -1.46   -2.42   -3.46   -4.52   -5.53   -6.37   -6.94   -7.08   -6.72   -5.87   -4.56   -2.90   -0.84    1.76    5.19    9.60
+    60.0    0.00   -0.16   -0.68   -1.46   -2.42   -3.46   -4.53   -5.53   -6.37   -6.93   -7.08   -6.74   -5.90   -4.61   -2.94   -0.87    1.74    5.11    9.46
+    65.0    0.00   -0.16   -0.68   -1.46   -2.43   -3.47   -4.53   -5.53   -6.37   -6.94   -7.10   -6.77   -5.94   -4.66   -3.00   -0.94    1.63    4.96    9.21
+    70.0    0.00   -0.16   -0.68   -1.47   -2.43   -3.48   -4.54   -5.53   -6.37   -6.95   -7.12   -6.80   -5.99   -4.73   -3.08   -1.05    1.48    4.74    8.87
+    75.0    0.00   -0.16   -0.68   -1.47   -2.44   -3.49   -4.56   -5.55   -6.39   -6.95   -7.13   -6.83   -6.03   -4.80   -3.18   -1.18    1.29    4.47    8.48
+    80.0    0.00   -0.16   -0.68   -1.48   -2.46   -3.50   -4.56   -5.55   -6.39   -6.96   -7.14   -6.86   -6.07   -4.86   -3.27   -1.32    1.10    4.19    8.08
+    85.0    0.00   -0.17   -0.68   -1.49   -2.46   -3.51   -4.58   -5.56   -6.39   -6.96   -7.15   -6.88   -6.11   -4.92   -3.35   -1.45    0.91    3.92    7.71
+    90.0    0.00   -0.17   -0.69   -1.49   -2.46   -3.52   -4.58   -5.56   -6.40   -6.97   -7.16   -6.90   -6.14   -4.96   -3.43   -1.56    0.75    3.69    7.38
+    95.0    0.00   -0.17   -0.70   -1.50   -2.47   -3.53   -4.59   -5.57   -6.41   -6.98   -7.18   -6.91   -6.16   -4.99   -3.48   -1.63    0.64    3.52    7.15
+   100.0    0.00   -0.17   -0.70   -1.50   -2.47   -3.53   -4.58   -5.57   -6.41   -6.99   -7.18   -6.92   -6.18   -5.00   -3.50   -1.66    0.57    3.42    7.01
+   105.0    0.00   -0.17   -0.71   -1.50   -2.47   -3.52   -4.58   -5.57   -6.41   -6.99   -7.19   -6.92   -6.18   -5.00   -3.49   -1.67    0.55    3.39    6.96
+   110.0    0.00   -0.17   -0.71   -1.50   -2.47   -3.52   -4.57   -5.56   -6.42   -7.00   -7.19   -6.93   -6.18   -4.99   -3.47   -1.65    0.58    3.41    7.00
+   115.0    0.00   -0.17   -0.71   -1.50   -2.46   -3.51   -4.56   -5.57   -6.41   -7.00   -7.21   -6.94   -6.16   -4.97   -3.43   -1.60    0.64    3.48    7.09
+   120.0    0.00   -0.17   -0.72   -1.50   -2.46   -3.50   -4.56   -5.56   -6.41   -7.01   -7.22   -6.94   -6.15   -4.94   -3.39   -1.53    0.70    3.57    7.22
+   125.0    0.00   -0.18   -0.72   -1.50   -2.46   -3.50   -4.56   -5.56   -6.43   -7.03   -7.23   -6.94   -6.13   -4.90   -3.34   -1.48    0.77    3.65    7.35
+   130.0    0.00   -0.18   -0.71   -1.51   -2.46   -3.50   -4.56   -5.56   -6.43   -7.04   -7.24   -6.94   -6.13   -4.88   -3.29   -1.43    0.83    3.72    7.44
+   135.0    0.00   -0.18   -0.71   -1.51   -2.47   -3.50   -4.56   -5.56   -6.45   -7.05   -7.26   -6.95   -6.12   -4.85   -3.26   -1.40    0.85    3.75    7.48
+   140.0    0.00   -0.19   -0.72   -1.52   -2.47   -3.50   -4.57   -5.57   -6.46   -7.07   -7.27   -6.95   -6.11   -4.83   -3.25   -1.39    0.85    3.74    7.46
+   145.0    0.00   -0.19   -0.72   -1.52   -2.47   -3.51   -4.57   -5.59   -6.47   -7.08   -7.28   -6.96   -6.11   -4.83   -3.25   -1.40    0.82    3.67    7.37
+   150.0    0.00   -0.20   -0.73   -1.52   -2.47   -3.52   -4.57   -5.59   -6.48   -7.08   -7.28   -6.96   -6.12   -4.84   -3.27   -1.44    0.75    3.56    7.22
+   155.0    0.00   -0.20   -0.74   -1.52   -2.48   -3.52   -4.57   -5.59   -6.48   -7.09   -7.29   -6.97   -6.13   -4.87   -3.31   -1.49    0.67    3.43    7.03
+   160.0    0.00   -0.20   -0.74   -1.53   -2.48   -3.53   -4.58   -5.60   -6.48   -7.09   -7.30   -6.99   -6.16   -4.91   -3.35   -1.56    0.57    3.28    6.83
+   165.0    0.00   -0.20   -0.74   -1.54   -2.49   -3.53   -4.59   -5.60   -6.47   -7.08   -7.30   -7.00   -6.19   -4.95   -3.41   -1.63    0.47    3.15    6.64
+   170.0    0.00   -0.20   -0.74   -1.54   -2.50   -3.54   -4.59   -5.59   -6.46   -7.07   -7.30   -7.02   -6.23   -5.00   -3.48   -1.70    0.40    3.06    6.51
+   175.0    0.00   -0.21   -0.75   -1.55   -2.50   -3.54   -4.59   -5.58   -6.45   -7.06   -7.29   -7.03   -6.26   -5.04   -3.53   -1.75    0.35    3.01    6.46
+   180.0    0.00   -0.20   -0.75   -1.55   -2.52   -3.54   -4.59   -5.57   -6.42   -7.05   -7.28   -7.04   -6.29   -5.09   -3.57   -1.77    0.34    3.01    6.48
+   185.0    0.00   -0.20   -0.75   -1.56   -2.52   -3.55   -4.58   -5.55   -6.40   -7.02   -7.27   -7.04   -6.30   -5.11   -3.58   -1.77    0.38    3.08    6.60
+   190.0    0.00   -0.21   -0.76   -1.56   -2.52   -3.55   -4.57   -5.54   -6.39   -7.01   -7.26   -7.04   -6.31   -5.11   -3.56   -1.72    0.46    3.22    6.82
+   195.0    0.00   -0.21   -0.76   -1.56   -2.52   -3.56   -4.57   -5.52   -6.37   -6.99   -7.25   -7.03   -6.30   -5.09   -3.51   -1.65    0.60    3.42    7.12
+   200.0    0.00   -0.21   -0.77   -1.58   -2.53   -3.55   -4.56   -5.52   -6.37   -6.97   -7.24   -7.01   -6.27   -5.04   -3.43   -1.53    0.77    3.65    7.45
+   205.0    0.00   -0.22   -0.77   -1.57   -2.53   -3.54   -4.55   -5.52   -6.35   -6.96   -7.22   -6.98   -6.23   -4.98   -3.33   -1.38    0.95    3.91    7.81
+   210.0    0.00   -0.22   -0.76   -1.58   -2.54   -3.55   -4.56   -5.51   -6.34   -6.96   -7.19   -6.95   -6.16   -4.88   -3.20   -1.21    1.16    4.17    8.15
+   215.0    0.00   -0.22   -0.77   -1.57   -2.54   -3.55   -4.56   -5.51   -6.34   -6.94   -7.17   -6.90   -6.09   -4.78   -3.06   -1.04    1.38    4.43    8.44
+   220.0    0.00   -0.21   -0.77   -1.58   -2.53   -3.56   -4.57   -5.52   -6.34   -6.94   -7.15   -6.86   -6.01   -4.66   -2.93   -0.87    1.57    4.65    8.66
+   225.0    0.00   -0.21   -0.76   -1.58   -2.54   -3.55   -4.56   -5.52   -6.35   -6.93   -7.13   -6.81   -5.94   -4.57   -2.79   -0.71    1.74    4.80    8.77
+   230.0    0.00   -0.21   -0.77   -1.58   -2.53   -3.55   -4.56   -5.53   -6.35   -6.93   -7.11   -6.77   -5.87   -4.47   -2.68   -0.59    1.86    4.90    8.79
+   235.0    0.00   -0.21   -0.77   -1.58   -2.53   -3.56   -4.57   -5.54   -6.36   -6.92   -7.09   -6.75   -5.82   -4.41   -2.61   -0.51    1.93    4.92    8.72
+   240.0    0.00   -0.21   -0.77   -1.57   -2.53   -3.56   -4.59   -5.55   -6.37   -6.93   -7.08   -6.72   -5.79   -4.36   -2.57   -0.48    1.94    4.87    8.55
+   245.0    0.00   -0.21   -0.77   -1.57   -2.53   -3.57   -4.60   -5.55   -6.38   -6.94   -7.08   -6.71   -5.78   -4.36   -2.57   -0.50    1.88    4.76    8.33
+   250.0    0.00   -0.21   -0.76   -1.57   -2.53   -3.57   -4.60   -5.58   -6.40   -6.95   -7.09   -6.71   -5.79   -4.37   -2.61   -0.58    1.77    4.59    8.07
+   255.0    0.00   -0.21   -0.76   -1.57   -2.53   -3.57   -4.60   -5.59   -6.41   -6.96   -7.10   -6.72   -5.80   -4.42   -2.69   -0.70    1.59    4.38    7.81
+   260.0    0.00   -0.21   -0.76   -1.56   -2.53   -3.57   -4.62   -5.60   -6.44   -6.99   -7.12   -6.74   -5.84   -4.48   -2.81   -0.87    1.39    4.15    7.56
+   265.0    0.00   -0.21   -0.75   -1.56   -2.53   -3.58   -4.63   -5.62   -6.45   -7.01   -7.14   -6.77   -5.88   -4.56   -2.93   -1.05    1.16    3.91    7.37
+   270.0    0.00   -0.20   -0.75   -1.55   -2.53   -3.58   -4.64   -5.64   -6.48   -7.02   -7.16   -6.79   -5.92   -4.64   -3.05   -1.24    0.94    3.69    7.23
+   275.0    0.00   -0.20   -0.75   -1.55   -2.52   -3.58   -4.65   -5.66   -6.49   -7.05   -7.18   -6.81   -5.96   -4.71   -3.19   -1.42    0.71    3.49    7.16
+   280.0    0.00   -0.20   -0.75   -1.55   -2.52   -3.57   -4.65   -5.66   -6.51   -7.06   -7.20   -6.84   -5.99   -4.77   -3.29   -1.58    0.51    3.33    7.16
+   285.0    0.00   -0.20   -0.74   -1.54   -2.51   -3.58   -4.65   -5.67   -6.51   -7.08   -7.21   -6.85   -6.02   -4.82   -3.38   -1.71    0.37    3.23    7.22
+   290.0    0.00   -0.20   -0.73   -1.54   -2.51   -3.56   -4.63   -5.66   -6.51   -7.08   -7.21   -6.87   -6.04   -4.86   -3.44   -1.80    0.27    3.17    7.32
+   295.0    0.00   -0.19   -0.73   -1.53   -2.50   -3.55   -4.63   -5.64   -6.51   -7.07   -7.22   -6.87   -6.05   -4.88   -3.48   -1.85    0.22    3.16    7.43
+   300.0    0.00   -0.19   -0.73   -1.53   -2.49   -3.54   -4.61   -5.63   -6.48   -7.06   -7.21   -6.88   -6.05   -4.89   -3.48   -1.85    0.22    3.19    7.54
+   305.0    0.00   -0.19   -0.72   -1.52   -2.48   -3.52   -4.59   -5.59   -6.46   -7.04   -7.22   -6.88   -6.06   -4.89   -3.48   -1.84    0.24    3.24    7.62
+   310.0    0.00   -0.19   -0.72   -1.51   -2.47   -3.51   -4.56   -5.57   -6.43   -7.03   -7.20   -6.88   -6.08   -4.90   -3.47   -1.81    0.31    3.30    7.65
+   315.0    0.00   -0.19   -0.72   -1.51   -2.46   -3.49   -4.54   -5.53   -6.40   -7.01   -7.19   -6.90   -6.10   -4.91   -3.47   -1.77    0.36    3.34    7.63
+   320.0    0.00   -0.18   -0.71   -1.50   -2.45   -3.48   -4.52   -5.52   -6.37   -6.97   -7.19   -6.91   -6.13   -4.93   -3.47   -1.74    0.42    3.37    7.54
+   325.0    0.00   -0.19   -0.70   -1.49   -2.44   -3.46   -4.50   -5.49   -6.34   -6.96   -7.19   -6.93   -6.16   -4.98   -3.48   -1.72    0.45    3.36    7.40
+   330.0    0.00   -0.18   -0.70   -1.48   -2.43   -3.46   -4.48   -5.47   -6.33   -6.95   -7.19   -6.95   -6.20   -5.02   -3.51   -1.74    0.45    3.32    7.20
+   335.0    0.00   -0.18   -0.70   -1.48   -2.43   -3.46   -4.49   -5.47   -6.33   -6.94   -7.19   -6.96   -6.23   -5.06   -3.56   -1.78    0.41    3.24    6.98
+   340.0    0.00   -0.17   -0.70   -1.48   -2.43   -3.45   -4.49   -5.48   -6.34   -6.95   -7.20   -6.98   -6.25   -5.10   -3.62   -1.83    0.36    3.15    6.75
+   345.0    0.00   -0.17   -0.70   -1.48   -2.43   -3.46   -4.50   -5.48   -6.34   -6.96   -7.20   -6.98   -6.27   -5.14   -3.67   -1.90    0.27    3.03    6.56
+   350.0    0.00   -0.17   -0.69   -1.48   -2.43   -3.47   -4.52   -5.51   -6.36   -6.96   -7.19   -6.98   -6.27   -5.16   -3.72   -1.97    0.18    2.94    6.41
+   355.0    0.00   -0.17   -0.69   -1.47   -2.43   -3.47   -4.53   -5.53   -6.39   -6.98   -7.20   -6.96   -6.27   -5.17   -3.75   -2.02    0.12    2.88    6.35
+   360.0    0.00   -0.17   -0.68   -1.47   -2.44   -3.49   -4.55   -5.56   -6.41   -7.00   -7.19   -6.94   -6.24   -5.15   -3.76   -2.05    0.09    2.87    6.39
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TRM59800.00     SCIT                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               5    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     4                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+Number of Calibrated Antennas GPS:      005                 COMMENT             
+Number of Individual Calibrations GPS:  010                 COMMENT             
+Number of Calibrated Antennas GLO:      005                 COMMENT             
+Number of Individual Calibrations GLO:  010                 COMMENT             
+# GLONASS PCV                                               COMMENT             
+#  derived from Delta PCV per 25.0 MHz                      COMMENT             
+#  for frequency channel number k=0                         COMMENT             
+   G01                                                      START OF FREQUENCY  
+      1.32      0.88     84.85                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.40   -1.51   -3.05   -4.69   -6.17   -7.38   -8.27   -8.85   -9.07   -8.82   -7.97   -6.45   -4.33   -1.74    1.26    4.82    9.34   15.24
+     0.0    0.00   -0.36   -1.43   -2.94   -4.55   -6.00   -7.17   -8.04   -8.62   -8.86   -8.62   -7.77   -6.24   -4.13   -1.63    1.14    4.35    8.52   14.41
+     5.0    0.00   -0.37   -1.45   -2.96   -4.58   -6.04   -7.20   -8.07   -8.64   -8.88   -8.64   -7.79   -6.27   -4.16   -1.66    1.13    4.36    8.54   14.41
+    10.0    0.00   -0.38   -1.46   -2.99   -4.61   -6.08   -7.24   -8.10   -8.67   -8.90   -8.67   -7.83   -6.31   -4.21   -1.69    1.12    4.37    8.56   14.41
+    15.0    0.00   -0.38   -1.48   -3.01   -4.65   -6.12   -7.29   -8.14   -8.70   -8.92   -8.69   -7.86   -6.36   -4.26   -1.72    1.11    4.38    8.58   14.42
+    20.0    0.00   -0.39   -1.50   -3.04   -4.69   -6.16   -7.33   -8.18   -8.73   -8.95   -8.73   -7.90   -6.41   -4.30   -1.75    1.11    4.41    8.62   14.43
+    25.0    0.00   -0.40   -1.51   -3.07   -4.73   -6.21   -7.38   -8.23   -8.77   -8.99   -8.76   -7.94   -6.44   -4.33   -1.77    1.12    4.44    8.66   14.46
+    30.0    0.00   -0.40   -1.53   -3.09   -4.76   -6.25   -7.43   -8.27   -8.81   -9.02   -8.79   -7.97   -6.47   -4.35   -1.77    1.15    4.49    8.72   14.49
+    35.0    0.00   -0.41   -1.54   -3.12   -4.80   -6.30   -7.48   -8.32   -8.86   -9.06   -8.83   -8.00   -6.49   -4.35   -1.75    1.19    4.56    8.80   14.55
+    40.0    0.00   -0.42   -1.56   -3.14   -4.83   -6.34   -7.53   -8.37   -8.91   -9.10   -8.86   -8.01   -6.49   -4.34   -1.71    1.26    4.65    8.89   14.63
+    45.0    0.00   -0.42   -1.57   -3.16   -4.86   -6.38   -7.57   -8.42   -8.95   -9.14   -8.88   -8.03   -6.48   -4.31   -1.65    1.34    4.75    9.01   14.74
+    50.0    0.00   -0.43   -1.58   -3.18   -4.88   -6.41   -7.61   -8.46   -8.99   -9.17   -8.90   -8.03   -6.47   -4.27   -1.59    1.42    4.86    9.14   14.88
+    55.0    0.00   -0.43   -1.59   -3.19   -4.90   -6.43   -7.64   -8.50   -9.02   -9.20   -8.92   -8.03   -6.45   -4.22   -1.52    1.52    4.98    9.28   15.04
+    60.0    0.00   -0.44   -1.60   -3.20   -4.91   -6.45   -7.66   -8.52   -9.05   -9.22   -8.93   -8.03   -6.43   -4.18   -1.46    1.61    5.10    9.44   15.21
+    65.0    0.00   -0.44   -1.60   -3.21   -4.92   -6.46   -7.67   -8.53   -9.06   -9.24   -8.94   -8.02   -6.41   -4.15   -1.40    1.69    5.21    9.59   15.38
+    70.0    0.00   -0.45   -1.61   -3.21   -4.92   -6.45   -7.67   -8.53   -9.06   -9.24   -8.94   -8.02   -6.40   -4.12   -1.37    1.75    5.31    9.73   15.54
+    75.0    0.00   -0.45   -1.61   -3.21   -4.92   -6.45   -7.65   -8.52   -9.06   -9.24   -8.94   -8.02   -6.40   -4.12   -1.35    1.79    5.39    9.85   15.68
+    80.0    0.00   -0.45   -1.61   -3.21   -4.91   -6.43   -7.63   -8.50   -9.04   -9.23   -8.94   -8.03   -6.41   -4.13   -1.36    1.81    5.45    9.95   15.79
+    85.0    0.00   -0.46   -1.62   -3.21   -4.90   -6.41   -7.61   -8.47   -9.02   -9.21   -8.94   -8.04   -6.43   -4.16   -1.38    1.80    5.48   10.03   15.87
+    90.0    0.00   -0.46   -1.62   -3.20   -4.88   -6.39   -7.58   -8.45   -9.00   -9.20   -8.94   -8.05   -6.46   -4.21   -1.43    1.77    5.49   10.08   15.92
+    95.0    0.00   -0.46   -1.62   -3.20   -4.87   -6.37   -7.55   -8.42   -8.98   -9.19   -8.94   -8.07   -6.50   -4.26   -1.49    1.72    5.48   10.10   15.94
+   100.0    0.00   -0.46   -1.62   -3.19   -4.86   -6.35   -7.53   -8.40   -8.96   -9.18   -8.95   -8.10   -6.55   -4.33   -1.56    1.66    5.45   10.11   15.94
+   105.0    0.00   -0.46   -1.62   -3.19   -4.85   -6.33   -7.51   -8.38   -8.95   -9.18   -8.96   -8.12   -6.59   -4.39   -1.63    1.59    5.41   10.10   15.94
+   110.0    0.00   -0.46   -1.62   -3.18   -4.84   -6.32   -7.50   -8.38   -8.95   -9.19   -8.97   -8.15   -6.63   -4.44   -1.70    1.53    5.37   10.09   15.93
+   115.0    0.00   -0.47   -1.62   -3.18   -4.83   -6.31   -7.50   -8.38   -8.96   -9.21   -9.00   -8.18   -6.67   -4.49   -1.76    1.48    5.33   10.08   15.94
+   120.0    0.00   -0.47   -1.62   -3.18   -4.83   -6.31   -7.50   -8.39   -8.98   -9.23   -9.02   -8.20   -6.70   -4.53   -1.80    1.44    5.31   10.08   15.97
+   125.0    0.00   -0.47   -1.62   -3.18   -4.83   -6.32   -7.51   -8.40   -9.00   -9.25   -9.04   -8.22   -6.72   -4.55   -1.82    1.42    5.30   10.10   16.01
+   130.0    0.00   -0.47   -1.62   -3.18   -4.83   -6.32   -7.52   -8.42   -9.01   -9.27   -9.06   -8.23   -6.73   -4.56   -1.83    1.41    5.30   10.13   16.06
+   135.0    0.00   -0.47   -1.62   -3.18   -4.83   -6.33   -7.53   -8.43   -9.03   -9.28   -9.07   -8.24   -6.73   -4.56   -1.83    1.42    5.32   10.16   16.13
+   140.0    0.00   -0.47   -1.62   -3.18   -4.84   -6.33   -7.54   -8.44   -9.04   -9.29   -9.07   -8.24   -6.73   -4.55   -1.82    1.44    5.35   10.20   16.18
+   145.0    0.00   -0.46   -1.62   -3.18   -4.84   -6.33   -7.54   -8.44   -9.04   -9.29   -9.07   -8.24   -6.72   -4.54   -1.80    1.46    5.38   10.23   16.21
+   150.0    0.00   -0.46   -1.62   -3.18   -4.84   -6.33   -7.53   -8.43   -9.02   -9.27   -9.05   -8.23   -6.71   -4.54   -1.79    1.48    5.39   10.24   16.21
+   155.0    0.00   -0.46   -1.61   -3.18   -4.84   -6.33   -7.52   -8.41   -9.00   -9.25   -9.03   -8.21   -6.70   -4.53   -1.78    1.49    5.40   10.22   16.16
+   160.0    0.00   -0.46   -1.61   -3.18   -4.83   -6.32   -7.51   -8.38   -8.97   -9.21   -9.00   -8.19   -6.70   -4.53   -1.79    1.48    5.39   10.18   16.07
+   165.0    0.00   -0.46   -1.61   -3.17   -4.83   -6.30   -7.48   -8.35   -8.93   -9.17   -8.97   -8.17   -6.69   -4.54   -1.80    1.46    5.35   10.10   15.94
+   170.0    0.00   -0.46   -1.61   -3.17   -4.82   -6.29   -7.46   -8.32   -8.88   -9.12   -8.93   -8.15   -6.69   -4.55   -1.83    1.42    5.28    9.99   15.77
+   175.0    0.00   -0.45   -1.60   -3.16   -4.81   -6.27   -7.43   -8.28   -8.84   -9.08   -8.89   -8.13   -6.68   -4.56   -1.86    1.37    5.20    9.86   15.58
+   180.0    0.00   -0.45   -1.60   -3.16   -4.80   -6.26   -7.41   -8.25   -8.81   -9.05   -8.86   -8.10   -6.68   -4.58   -1.90    1.30    5.10    9.72   15.39
+   185.0    0.00   -0.45   -1.59   -3.15   -4.79   -6.25   -7.40   -8.23   -8.78   -9.02   -8.83   -8.08   -6.67   -4.59   -1.94    1.23    4.99    9.58   15.22
+   190.0    0.00   -0.44   -1.58   -3.14   -4.78   -6.24   -7.39   -8.22   -8.77   -9.00   -8.81   -8.06   -6.65   -4.60   -1.98    1.15    4.88    9.45   15.09
+   195.0    0.00   -0.44   -1.58   -3.13   -4.77   -6.23   -7.38   -8.22   -8.77   -8.99   -8.79   -8.03   -6.63   -4.59   -2.01    1.09    4.78    9.34   15.00
+   200.0    0.00   -0.43   -1.57   -3.12   -4.76   -6.22   -7.39   -8.23   -8.78   -8.99   -8.78   -8.00   -6.60   -4.57   -2.02    1.04    4.71    9.27   14.97
+   205.0    0.00   -0.43   -1.56   -3.11   -4.75   -6.22   -7.39   -8.25   -8.80   -9.00   -8.77   -7.98   -6.56   -4.54   -2.01    1.01    4.65    9.23   15.00
+   210.0    0.00   -0.42   -1.55   -3.10   -4.74   -6.22   -7.41   -8.27   -8.82   -9.02   -8.76   -7.94   -6.50   -4.49   -1.98    1.00    4.63    9.23   15.08
+   215.0    0.00   -0.41   -1.54   -3.08   -4.73   -6.22   -7.42   -8.30   -8.85   -9.04   -8.76   -7.91   -6.45   -4.43   -1.94    1.02    4.64    9.27   15.20
+   220.0    0.00   -0.41   -1.52   -3.07   -4.72   -6.22   -7.43   -8.32   -8.88   -9.06   -8.75   -7.87   -6.38   -4.36   -1.88    1.06    4.67    9.33   15.34
+   225.0    0.00   -0.40   -1.51   -3.05   -4.70   -6.21   -7.44   -8.34   -8.91   -9.08   -8.75   -7.83   -6.32   -4.28   -1.81    1.12    4.72    9.41   15.48
+   230.0    0.00   -0.40   -1.50   -3.04   -4.69   -6.20   -7.44   -8.36   -8.93   -9.09   -8.74   -7.80   -6.26   -4.20   -1.73    1.18    4.79    9.50   15.61
+   235.0    0.00   -0.39   -1.49   -3.02   -4.67   -6.19   -7.44   -8.36   -8.94   -9.10   -8.74   -7.77   -6.20   -4.13   -1.66    1.25    4.85    9.57   15.71
+   240.0    0.00   -0.38   -1.47   -3.00   -4.65   -6.17   -7.43   -8.36   -8.95   -9.11   -8.73   -7.75   -6.16   -4.07   -1.59    1.31    4.91    9.63   15.78
+   245.0    0.00   -0.38   -1.46   -2.98   -4.62   -6.15   -7.41   -8.35   -8.95   -9.11   -8.73   -7.74   -6.14   -4.03   -1.54    1.36    4.95    9.67   15.80
+   250.0    0.00   -0.37   -1.45   -2.96   -4.60   -6.12   -7.39   -8.34   -8.94   -9.11   -8.74   -7.74   -6.13   -4.02   -1.52    1.39    4.97    9.67   15.79
+   255.0    0.00   -0.36   -1.43   -2.94   -4.57   -6.09   -7.36   -8.32   -8.93   -9.11   -8.74   -7.75   -6.14   -4.02   -1.52    1.39    4.96    9.65   15.74
+   260.0    0.00   -0.36   -1.42   -2.92   -4.55   -6.06   -7.33   -8.29   -8.91   -9.10   -8.76   -7.78   -6.17   -4.05   -1.55    1.36    4.93    9.59   15.66
+   265.0    0.00   -0.35   -1.41   -2.90   -4.52   -6.03   -7.29   -8.26   -8.89   -9.10   -8.77   -7.81   -6.22   -4.10   -1.60    1.31    4.87    9.52   15.57
+   270.0    0.00   -0.35   -1.40   -2.88   -4.50   -6.00   -7.26   -8.23   -8.87   -9.10   -8.79   -7.86   -6.28   -4.17   -1.67    1.23    4.79    9.43   15.47
+   275.0    0.00   -0.34   -1.38   -2.86   -4.47   -5.97   -7.23   -8.19   -8.84   -9.09   -8.82   -7.90   -6.35   -4.25   -1.75    1.15    4.69    9.33   15.37
+   280.0    0.00   -0.34   -1.38   -2.85   -4.45   -5.94   -7.19   -8.16   -8.82   -9.09   -8.84   -7.95   -6.42   -4.34   -1.84    1.05    4.59    9.22   15.28
+   285.0    0.00   -0.34   -1.37   -2.84   -4.43   -5.92   -7.16   -8.13   -8.80   -9.08   -8.85   -7.99   -6.48   -4.42   -1.93    0.96    4.49    9.12   15.20
+   290.0    0.00   -0.33   -1.36   -2.82   -4.42   -5.90   -7.14   -8.10   -8.77   -9.07   -8.86   -8.03   -6.54   -4.49   -2.01    0.88    4.40    9.02   15.12
+   295.0    0.00   -0.33   -1.36   -2.82   -4.40   -5.88   -7.11   -8.07   -8.75   -9.06   -8.87   -8.05   -6.58   -4.54   -2.07    0.81    4.32    8.93   15.05
+   300.0    0.00   -0.33   -1.35   -2.81   -4.39   -5.86   -7.09   -8.05   -8.72   -9.04   -8.86   -8.06   -6.60   -4.57   -2.10    0.77    4.26    8.85   14.99
+   305.0    0.00   -0.33   -1.35   -2.81   -4.39   -5.85   -7.07   -8.03   -8.70   -9.01   -8.84   -8.05   -6.60   -4.57   -2.11    0.74    4.21    8.78   14.92
+   310.0    0.00   -0.33   -1.35   -2.81   -4.39   -5.84   -7.06   -8.01   -8.67   -8.99   -8.82   -8.03   -6.58   -4.55   -2.09    0.75    4.19    8.72   14.85
+   315.0    0.00   -0.33   -1.35   -2.81   -4.39   -5.84   -7.05   -7.99   -8.65   -8.96   -8.79   -8.00   -6.54   -4.51   -2.05    0.77    4.18    8.66   14.77
+   320.0    0.00   -0.33   -1.35   -2.81   -4.39   -5.84   -7.05   -7.98   -8.63   -8.94   -8.76   -7.96   -6.49   -4.45   -1.99    0.82    4.18    8.62   14.70
+   325.0    0.00   -0.33   -1.36   -2.82   -4.40   -5.85   -7.05   -7.97   -8.61   -8.91   -8.72   -7.91   -6.43   -4.38   -1.92    0.87    4.20    8.58   14.63
+   330.0    0.00   -0.33   -1.36   -2.83   -4.41   -5.86   -7.05   -7.97   -8.60   -8.89   -8.69   -7.87   -6.37   -4.30   -1.84    0.94    4.22    8.55   14.57
+   335.0    0.00   -0.34   -1.37   -2.84   -4.42   -5.87   -7.06   -7.97   -8.59   -8.87   -8.66   -7.82   -6.31   -4.23   -1.76    1.00    4.25    8.53   14.51
+   340.0    0.00   -0.34   -1.38   -2.86   -4.44   -5.89   -7.07   -7.98   -8.59   -8.86   -8.64   -7.79   -6.27   -4.17   -1.70    1.05    4.27    8.51   14.47
+   345.0    0.00   -0.35   -1.39   -2.87   -4.46   -5.91   -7.09   -7.99   -8.59   -8.85   -8.62   -7.76   -6.23   -4.13   -1.65    1.09    4.30    8.51   14.44
+   350.0    0.00   -0.35   -1.41   -2.89   -4.49   -5.94   -7.11   -8.00   -8.60   -8.85   -8.61   -7.75   -6.22   -4.11   -1.63    1.12    4.32    8.51   14.42
+   355.0    0.00   -0.36   -1.42   -2.91   -4.51   -5.97   -7.14   -8.02   -8.61   -8.85   -8.62   -7.75   -6.22   -4.11   -1.62    1.14    4.33    8.51   14.41
+   360.0    0.00   -0.36   -1.43   -2.94   -4.55   -6.00   -7.17   -8.04   -8.62   -8.86   -8.62   -7.77   -6.24   -4.13   -1.63    1.14    4.35    8.52   14.41
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      1.02     -0.32    118.08                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.13   -0.52   -1.11   -1.83   -2.62   -3.44   -4.22   -4.92   -5.46   -5.72   -5.60   -4.99   -3.83   -2.07    0.32    3.33    6.88   10.76
+     0.0    0.00   -0.10   -0.48   -1.07   -1.81   -2.62   -3.43   -4.19   -4.87   -5.41   -5.72   -5.68   -5.16   -4.05   -2.32   -0.03    2.78    6.08    9.97
+     5.0    0.00   -0.11   -0.48   -1.08   -1.82   -2.62   -3.42   -4.18   -4.86   -5.41   -5.73   -5.70   -5.17   -4.05   -2.32   -0.01    2.81    6.13   10.06
+    10.0    0.00   -0.11   -0.48   -1.08   -1.81   -2.61   -3.41   -4.17   -4.85   -5.40   -5.73   -5.70   -5.17   -4.04   -2.29    0.04    2.89    6.25   10.21
+    15.0    0.00   -0.11   -0.49   -1.08   -1.81   -2.61   -3.40   -4.16   -4.84   -5.40   -5.73   -5.69   -5.15   -4.01   -2.23    0.14    3.02    6.42   10.40
+    20.0    0.00   -0.11   -0.49   -1.08   -1.81   -2.60   -3.39   -4.15   -4.83   -5.39   -5.71   -5.67   -5.12   -3.95   -2.14    0.26    3.19    6.63   10.62
+    25.0    0.00   -0.12   -0.49   -1.09   -1.81   -2.60   -3.39   -4.14   -4.83   -5.38   -5.70   -5.64   -5.07   -3.88   -2.04    0.41    3.39    6.87   10.88
+    30.0    0.00   -0.12   -0.50   -1.09   -1.81   -2.60   -3.39   -4.14   -4.83   -5.37   -5.68   -5.60   -5.01   -3.79   -1.92    0.57    3.60    7.13   11.14
+    35.0    0.00   -0.12   -0.50   -1.09   -1.82   -2.60   -3.39   -4.15   -4.83   -5.37   -5.66   -5.56   -4.94   -3.70   -1.80    0.72    3.80    7.38   11.40
+    40.0    0.00   -0.12   -0.51   -1.10   -1.82   -2.61   -3.40   -4.16   -4.84   -5.37   -5.64   -5.52   -4.88   -3.61   -1.70    0.85    3.97    7.60   11.65
+    45.0    0.00   -0.13   -0.51   -1.10   -1.83   -2.62   -3.42   -4.18   -4.86   -5.37   -5.63   -5.49   -4.82   -3.54   -1.61    0.95    4.10    7.78   11.87
+    50.0    0.00   -0.13   -0.51   -1.11   -1.84   -2.63   -3.44   -4.20   -4.87   -5.38   -5.62   -5.46   -4.78   -3.49   -1.56    1.00    4.18    7.90   12.04
+    55.0    0.00   -0.13   -0.52   -1.12   -1.85   -2.65   -3.45   -4.22   -4.89   -5.39   -5.61   -5.44   -4.75   -3.47   -1.55    1.01    4.19    7.95   12.15
+    60.0    0.00   -0.13   -0.52   -1.12   -1.86   -2.66   -3.47   -4.24   -4.90   -5.39   -5.61   -5.43   -4.75   -3.48   -1.58    0.96    4.14    7.93   12.20
+    65.0    0.00   -0.14   -0.53   -1.13   -1.87   -2.67   -3.48   -4.25   -4.91   -5.40   -5.61   -5.44   -4.77   -3.52   -1.65    0.86    4.03    7.84   12.18
+    70.0    0.00   -0.14   -0.54   -1.14   -1.88   -2.68   -3.49   -4.25   -4.91   -5.40   -5.62   -5.46   -4.80   -3.58   -1.75    0.72    3.87    7.69   12.09
+    75.0    0.00   -0.14   -0.54   -1.14   -1.88   -2.69   -3.49   -4.25   -4.91   -5.40   -5.63   -5.48   -4.85   -3.67   -1.88    0.55    3.67    7.49   11.93
+    80.0    0.00   -0.15   -0.54   -1.15   -1.89   -2.69   -3.49   -4.24   -4.90   -5.40   -5.64   -5.51   -4.91   -3.76   -2.01    0.37    3.45    7.26   11.72
+    85.0    0.00   -0.15   -0.55   -1.16   -1.89   -2.69   -3.48   -4.23   -4.89   -5.39   -5.64   -5.54   -4.97   -3.86   -2.15    0.20    3.23    7.01   11.48
+    90.0    0.00   -0.15   -0.55   -1.16   -1.90   -2.69   -3.47   -4.21   -4.87   -5.38   -5.65   -5.57   -5.03   -3.94   -2.27    0.04    3.03    6.76   11.22
+    95.0    0.00   -0.15   -0.56   -1.16   -1.90   -2.68   -3.46   -4.20   -4.86   -5.37   -5.66   -5.59   -5.07   -4.01   -2.36   -0.09    2.85    6.55   10.98
+   100.0    0.00   -0.16   -0.56   -1.17   -1.90   -2.68   -3.46   -4.19   -4.85   -5.37   -5.66   -5.61   -5.10   -4.06   -2.43   -0.19    2.72    6.37   10.76
+   105.0    0.00   -0.16   -0.56   -1.17   -1.90   -2.68   -3.45   -4.19   -4.84   -5.37   -5.66   -5.62   -5.11   -4.08   -2.46   -0.24    2.64    6.25   10.59
+   110.0    0.00   -0.16   -0.57   -1.17   -1.90   -2.68   -3.45   -4.19   -4.85   -5.37   -5.66   -5.61   -5.11   -4.07   -2.46   -0.25    2.61    6.19   10.48
+   115.0    0.00   -0.16   -0.57   -1.17   -1.90   -2.68   -3.46   -4.20   -4.86   -5.38   -5.67   -5.60   -5.08   -4.04   -2.43   -0.22    2.62    6.18   10.42
+   120.0    0.00   -0.16   -0.57   -1.17   -1.90   -2.68   -3.47   -4.22   -4.88   -5.40   -5.67   -5.58   -5.05   -3.99   -2.38   -0.17    2.68    6.22   10.41
+   125.0    0.00   -0.17   -0.57   -1.18   -1.90   -2.69   -3.48   -4.24   -4.91   -5.42   -5.67   -5.56   -5.01   -3.94   -2.31   -0.09    2.76    6.29   10.42
+   130.0    0.00   -0.17   -0.58   -1.18   -1.90   -2.70   -3.50   -4.27   -4.94   -5.44   -5.67   -5.55   -4.97   -3.88   -2.24   -0.01    2.86    6.38   10.45
+   135.0    0.00   -0.17   -0.58   -1.18   -1.91   -2.70   -3.52   -4.29   -4.97   -5.46   -5.68   -5.53   -4.93   -3.83   -2.18    0.07    2.96    6.48   10.47
+   140.0    0.00   -0.17   -0.58   -1.18   -1.91   -2.71   -3.53   -4.32   -4.99   -5.48   -5.69   -5.52   -4.90   -3.79   -2.12    0.14    3.04    6.55   10.45
+   145.0    0.00   -0.17   -0.58   -1.18   -1.91   -2.72   -3.54   -4.34   -5.02   -5.50   -5.70   -5.51   -4.89   -3.76   -2.09    0.19    3.11    6.59   10.39
+   150.0    0.00   -0.17   -0.58   -1.18   -1.91   -2.72   -3.55   -4.35   -5.04   -5.52   -5.71   -5.52   -4.88   -3.75   -2.07    0.22    3.14    6.59   10.26
+   155.0    0.00   -0.17   -0.58   -1.18   -1.91   -2.72   -3.56   -4.36   -5.05   -5.53   -5.72   -5.52   -4.89   -3.75   -2.06    0.24    3.15    6.55   10.09
+   160.0    0.00   -0.17   -0.58   -1.18   -1.91   -2.72   -3.56   -4.37   -5.06   -5.54   -5.73   -5.54   -4.90   -3.76   -2.07    0.23    3.13    6.47    9.88
+   165.0    0.00   -0.17   -0.58   -1.18   -1.91   -2.72   -3.56   -4.37   -5.06   -5.55   -5.74   -5.55   -4.91   -3.78   -2.08    0.22    3.10    6.38    9.66
+   170.0    0.00   -0.17   -0.58   -1.18   -1.90   -2.72   -3.56   -4.37   -5.06   -5.56   -5.75   -5.56   -4.93   -3.79   -2.09    0.20    3.06    6.29    9.47
+   175.0    0.00   -0.17   -0.58   -1.17   -1.90   -2.71   -3.56   -4.37   -5.07   -5.56   -5.76   -5.58   -4.94   -3.79   -2.09    0.20    3.03    6.21    9.33
+   180.0    0.00   -0.17   -0.58   -1.17   -1.90   -2.71   -3.55   -4.36   -5.07   -5.57   -5.77   -5.58   -4.94   -3.79   -2.08    0.21    3.03    6.19    9.28
+   185.0    0.00   -0.17   -0.58   -1.17   -1.90   -2.71   -3.55   -4.36   -5.07   -5.57   -5.77   -5.59   -4.94   -3.78   -2.05    0.25    3.07    6.22    9.33
+   190.0    0.00   -0.17   -0.57   -1.17   -1.90   -2.71   -3.55   -4.36   -5.07   -5.57   -5.78   -5.59   -4.93   -3.75   -2.01    0.31    3.14    6.33    9.50
+   195.0    0.00   -0.16   -0.57   -1.17   -1.90   -2.71   -3.54   -4.36   -5.06   -5.57   -5.78   -5.59   -4.92   -3.72   -1.95    0.40    3.27    6.51    9.79
+   200.0    0.00   -0.16   -0.57   -1.16   -1.89   -2.70   -3.54   -4.35   -5.06   -5.57   -5.78   -5.58   -4.90   -3.68   -1.88    0.51    3.44    6.76   10.17
+   205.0    0.00   -0.16   -0.56   -1.16   -1.89   -2.69   -3.53   -4.34   -5.05   -5.57   -5.78   -5.58   -4.89   -3.64   -1.80    0.64    3.64    7.06   10.61
+   210.0    0.00   -0.16   -0.56   -1.15   -1.88   -2.68   -3.52   -4.33   -5.04   -5.57   -5.78   -5.58   -4.88   -3.61   -1.73    0.78    3.86    7.38   11.08
+   215.0    0.00   -0.15   -0.55   -1.14   -1.87   -2.67   -3.50   -4.32   -5.03   -5.56   -5.78   -5.59   -4.88   -3.59   -1.66    0.91    4.08    7.71   11.53
+   220.0    0.00   -0.15   -0.54   -1.13   -1.85   -2.65   -3.48   -4.29   -5.01   -5.55   -5.78   -5.60   -4.89   -3.58   -1.62    1.02    4.27    8.00   11.91
+   225.0    0.00   -0.15   -0.54   -1.12   -1.84   -2.63   -3.46   -4.27   -5.00   -5.54   -5.79   -5.61   -4.91   -3.59   -1.60    1.09    4.42    8.23   12.19
+   230.0    0.00   -0.14   -0.53   -1.10   -1.82   -2.61   -3.43   -4.24   -4.98   -5.53   -5.79   -5.63   -4.94   -3.62   -1.60    1.13    4.52    8.38   12.34
+   235.0    0.00   -0.14   -0.52   -1.09   -1.79   -2.58   -3.40   -4.22   -4.96   -5.52   -5.80   -5.66   -4.98   -3.66   -1.64    1.11    4.54    8.42   12.37
+   240.0    0.00   -0.13   -0.51   -1.07   -1.77   -2.55   -3.38   -4.19   -4.94   -5.52   -5.81   -5.68   -5.02   -3.72   -1.70    1.05    4.48    8.37   12.26
+   245.0    0.00   -0.13   -0.50   -1.05   -1.75   -2.52   -3.35   -4.17   -4.93   -5.52   -5.82   -5.71   -5.06   -3.78   -1.79    0.94    4.35    8.22   12.05
+   250.0    0.00   -0.12   -0.49   -1.04   -1.72   -2.50   -3.32   -4.16   -4.92   -5.52   -5.83   -5.72   -5.10   -3.85   -1.90    0.79    4.16    7.99   11.76
+   255.0    0.00   -0.12   -0.48   -1.02   -1.70   -2.47   -3.30   -4.14   -4.92   -5.52   -5.83   -5.74   -5.13   -3.91   -2.01    0.61    3.92    7.71   11.43
+   260.0    0.00   -0.12   -0.47   -1.00   -1.68   -2.45   -3.29   -4.13   -4.92   -5.52   -5.84   -5.74   -5.15   -3.97   -2.13    0.41    3.66    7.40   11.10
+   265.0    0.00   -0.11   -0.46   -0.99   -1.66   -2.43   -3.28   -4.13   -4.92   -5.53   -5.84   -5.74   -5.16   -4.01   -2.25    0.22    3.39    7.10   10.80
+   270.0    0.00   -0.11   -0.45   -0.98   -1.65   -2.42   -3.27   -4.13   -4.92   -5.53   -5.83   -5.73   -5.15   -4.05   -2.34    0.04    3.15    6.83   10.56
+   275.0    0.00   -0.11   -0.44   -0.97   -1.63   -2.41   -3.26   -4.13   -4.92   -5.53   -5.82   -5.71   -5.14   -4.07   -2.42   -0.10    2.95    6.61   10.40
+   280.0    0.00   -0.10   -0.44   -0.96   -1.63   -2.41   -3.26   -4.13   -4.92   -5.52   -5.80   -5.69   -5.12   -4.07   -2.47   -0.21    2.80    6.46   10.32
+   285.0    0.00   -0.10   -0.43   -0.95   -1.62   -2.41   -3.26   -4.13   -4.92   -5.50   -5.78   -5.66   -5.09   -4.06   -2.49   -0.27    2.71    6.38   10.31
+   290.0    0.00   -0.10   -0.43   -0.95   -1.63   -2.41   -3.26   -4.13   -4.91   -5.48   -5.75   -5.62   -5.06   -4.04   -2.48   -0.28    2.68    6.37   10.35
+   295.0    0.00   -0.10   -0.43   -0.96   -1.63   -2.42   -3.27   -4.13   -4.89   -5.46   -5.72   -5.59   -5.03   -4.00   -2.45   -0.25    2.71    6.40   10.42
+   300.0    0.00   -0.09   -0.43   -0.96   -1.64   -2.43   -3.28   -4.12   -4.88   -5.43   -5.68   -5.55   -4.99   -3.97   -2.40   -0.19    2.78    6.46   10.51
+   305.0    0.00   -0.09   -0.43   -0.97   -1.65   -2.44   -3.29   -4.12   -4.86   -5.41   -5.66   -5.53   -4.97   -3.93   -2.34   -0.11    2.86    6.54   10.57
+   310.0    0.00   -0.09   -0.43   -0.98   -1.67   -2.46   -3.30   -4.12   -4.85   -5.38   -5.63   -5.51   -4.95   -3.89   -2.28   -0.02    2.96    6.61   10.61
+   315.0    0.00   -0.09   -0.44   -0.99   -1.69   -2.48   -3.32   -4.13   -4.84   -5.36   -5.61   -5.49   -4.93   -3.86   -2.22    0.07    3.04    6.65   10.60
+   320.0    0.00   -0.09   -0.44   -1.00   -1.71   -2.51   -3.34   -4.13   -4.83   -5.35   -5.60   -5.49   -4.93   -3.84   -2.18    0.13    3.09    6.65   10.56
+   325.0    0.00   -0.09   -0.44   -1.01   -1.73   -2.53   -3.35   -4.14   -4.83   -5.35   -5.60   -5.50   -4.94   -3.84   -2.15    0.17    3.12    6.62   10.47
+   330.0    0.00   -0.10   -0.45   -1.02   -1.75   -2.55   -3.37   -4.15   -4.83   -5.35   -5.61   -5.51   -4.96   -3.85   -2.14    0.18    3.10    6.54   10.35
+   335.0    0.00   -0.10   -0.45   -1.03   -1.77   -2.58   -3.39   -4.17   -4.84   -5.36   -5.63   -5.54   -4.98   -3.87   -2.16    0.17    3.06    6.44   10.22
+   340.0    0.00   -0.10   -0.46   -1.04   -1.78   -2.59   -3.41   -4.18   -4.85   -5.37   -5.65   -5.57   -5.02   -3.91   -2.19    0.13    2.99    6.33   10.10
+   345.0    0.00   -0.10   -0.46   -1.05   -1.80   -2.61   -3.42   -4.19   -4.86   -5.38   -5.67   -5.60   -5.06   -3.94   -2.23    0.08    2.91    6.22   10.01
+   350.0    0.00   -0.10   -0.47   -1.06   -1.80   -2.62   -3.43   -4.19   -4.87   -5.39   -5.69   -5.63   -5.10   -3.99   -2.27    0.03    2.84    6.13    9.94
+   355.0    0.00   -0.10   -0.47   -1.07   -1.81   -2.62   -3.43   -4.19   -4.87   -5.40   -5.71   -5.66   -5.13   -4.02   -2.30   -0.01    2.79    6.08    9.93
+   360.0    0.00   -0.10   -0.48   -1.07   -1.81   -2.62   -3.43   -4.19   -4.87   -5.41   -5.72   -5.68   -5.16   -4.05   -2.32   -0.03    2.78    6.08    9.97
+   G02                                                      END OF FREQUENCY    
+   R01                                                      START OF FREQUENCY  
+      1.32      0.88     84.85                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.43   -1.64   -3.32   -5.08   -6.69   -8.01   -9.00   -9.70  -10.04   -9.89   -9.12   -7.64   -5.54   -2.98   -0.06    3.42    7.96   14.18
+     0.0    0.00   -0.40   -1.58   -3.23   -4.99   -6.55   -7.83   -8.79   -9.49   -9.85   -9.74   -8.98   -7.51   -5.36   -2.80   -1.14    3.15    7.07   12.56
+     5.0    0.00   -0.41   -1.60   -3.26   -5.03   -6.64   -7.92   -8.90   -9.59   -9.94   -9.83   -9.08   -7.60   -5.46   -2.87   -0.02    3.17    7.08   12.45
+    10.0    0.00   -0.41   -1.60   -3.29   -5.08   -6.72   -8.03   -9.01   -9.70  -10.05   -9.94   -9.19   -7.70   -5.56   -2.94   -0.06    3.15    7.06   12.37
+    15.0    0.00   -0.41   -1.61   -3.31   -5.14   -6.80   -8.13   -9.12   -9.81  -10.15  -10.03   -9.28   -7.82   -5.67   -3.04   -0.13    3.08    7.01   12.31
+    20.0    0.00   -0.41   -1.63   -3.33   -5.19   -6.86   -8.22   -9.22   -9.91  -10.26  -10.14   -9.38   -7.91   -5.76   -3.12   -0.22    3.01    6.95   12.30
+    25.0    0.00   -0.41   -1.63   -3.36   -5.23   -6.93   -8.30   -9.33  -10.00  -10.35  -10.22   -9.46   -7.97   -5.82   -3.21   -0.30    2.90    6.87   12.33
+    30.0    0.00   -0.41   -1.64   -3.37   -5.26   -6.97   -8.37   -9.39  -10.08  -10.41  -10.27   -9.50   -8.00   -5.86   -3.26   -0.38    2.81    6.82   12.41
+    35.0    0.00   -0.41   -1.64   -3.39   -5.29   -7.02   -8.42   -9.44  -10.14  -10.45  -10.31   -9.52   -8.01   -5.86   -3.28   -0.44    2.74    6.79   12.54
+    40.0    0.00   -0.42   -1.65   -3.38   -5.30   -7.04   -8.44   -9.47  -10.16  -10.48  -10.32   -9.51   -7.99   -5.84   -3.26   -0.45    2.71    6.80   12.72
+    45.0    0.00   -0.41   -1.64   -3.39   -5.31   -7.05   -8.44   -9.48  -10.16  -10.48  -10.30   -9.49   -7.94   -5.79   -3.21   -0.41    2.74    6.87   12.94
+    50.0    0.00   -0.41   -1.63   -3.39   -5.29   -7.04   -8.44   -9.47  -10.15  -10.46  -10.27   -9.44   -7.88   -5.72   -3.14   -0.34    2.82    7.00   13.20
+    55.0    0.00   -0.41   -1.63   -3.38   -5.28   -7.01   -8.42   -9.45  -10.12  -10.42  -10.24   -9.39   -7.82   -5.62   -3.04   -0.22    2.96    7.19   13.47
+    60.0    0.00   -0.41   -1.63   -3.38   -5.27   -6.99   -8.38   -9.40  -10.09  -10.39  -10.20   -9.35   -7.77   -5.55   -2.94   -0.09    3.14    7.42   13.73
+    65.0    0.00   -0.41   -1.62   -3.37   -5.25   -6.97   -8.35   -9.37  -10.05  -10.37  -10.17   -9.31   -7.72   -5.48   -2.82    0.07    3.35    7.68   13.98
+    70.0    0.00   -0.42   -1.63   -3.36   -5.23   -6.94   -8.32   -9.34  -10.02  -10.34  -10.14   -9.29   -7.69   -5.42   -2.73    0.22    3.58    7.94   14.19
+    75.0    0.00   -0.41   -1.62   -3.34   -5.22   -6.92   -8.29   -9.31  -10.01  -10.32  -10.13   -9.27   -7.68   -5.39   -2.66    0.35    3.78    8.18   14.36
+    80.0    0.00   -0.41   -1.61   -3.34   -5.20   -6.90   -8.27   -9.30   -9.99  -10.31  -10.14   -9.28   -7.68   -5.37   -2.61    0.47    3.96    8.40   14.48
+    85.0    0.00   -0.42   -1.62   -3.33   -5.19   -6.88   -8.26   -9.29   -9.99  -10.32  -10.15   -9.29   -7.68   -5.38   -2.60    0.52    4.10    8.58   14.57
+    90.0    0.00   -0.42   -1.62   -3.32   -5.18   -6.88   -8.25   -9.30  -10.00  -10.33  -10.16   -9.30   -7.70   -5.42   -2.62    0.55    4.18    8.71   14.64
+    95.0    0.00   -0.42   -1.62   -3.32   -5.17   -6.88   -8.25   -9.30  -10.01  -10.34  -10.16   -9.31   -7.73   -5.45   -2.66    0.53    4.23    8.79   14.70
+   100.0    0.00   -0.42   -1.62   -3.32   -5.18   -6.88   -8.26   -9.31  -10.02  -10.34  -10.16   -9.33   -7.76   -5.51   -2.73    0.47    4.22    8.86   14.75
+   105.0    0.00   -0.42   -1.62   -3.32   -5.18   -6.88   -8.28   -9.33  -10.02  -10.34  -10.15   -9.31   -7.77   -5.55   -2.80    0.39    4.18    8.88   14.83
+   110.0    0.00   -0.42   -1.62   -3.32   -5.18   -6.88   -8.28   -9.34  -10.02  -10.33  -10.13   -9.30   -7.77   -5.59   -2.87    0.32    4.14    8.91   14.93
+   115.0    0.00   -0.43   -1.63   -3.33   -5.18   -6.88   -8.29   -9.33  -10.01  -10.31  -10.11   -9.28   -7.77   -5.62   -2.94    0.25    4.09    8.94   15.09
+   120.0    0.00   -0.43   -1.63   -3.34   -5.19   -6.89   -8.29   -9.31   -9.99  -10.27  -10.06   -9.23   -7.75   -5.64   -2.98    0.19    4.07    9.00   15.28
+   125.0    0.00   -0.43   -1.64   -3.34   -5.19   -6.90   -8.28   -9.29   -9.96  -10.22  -10.01   -9.19   -7.72   -5.62   -3.00    0.17    4.07    9.08   15.49
+   130.0    0.00   -0.44   -1.64   -3.35   -5.20   -6.89   -8.26   -9.27   -9.90  -10.16   -9.95   -9.13   -7.69   -5.61   -3.00    0.16    4.09    9.17   15.71
+   135.0    0.00   -0.44   -1.65   -3.36   -5.20   -6.89   -8.24   -9.23   -9.86  -10.10   -9.89   -9.08   -7.64   -5.59   -2.98    0.19    4.13    9.28   15.92
+   140.0    0.00   -0.45   -1.66   -3.37   -5.21   -6.88   -8.22   -9.19   -9.81  -10.04   -9.82   -9.03   -7.60   -5.55   -2.95    0.23    4.20    9.37   16.08
+   145.0    0.00   -0.44   -1.67   -3.37   -5.21   -6.87   -8.20   -9.15   -9.75   -9.99   -9.77   -8.98   -7.56   -5.52   -2.91    0.27    4.25    9.44   16.18
+   150.0    0.00   -0.45   -1.67   -3.38   -5.21   -6.86   -8.17   -9.11   -9.70   -9.93   -9.72   -8.94   -7.53   -5.49   -2.87    0.31    4.28    9.47   16.20
+   155.0    0.00   -0.45   -1.67   -3.39   -5.22   -6.86   -8.15   -9.07   -9.66   -9.89   -9.68   -8.90   -7.50   -5.45   -2.84    0.33    4.29    9.44   16.13
+   160.0    0.00   -0.46   -1.68   -3.39   -5.21   -6.85   -8.14   -9.04   -9.62   -9.85   -9.64   -8.87   -7.48   -5.44   -2.84    0.32    4.27    9.37   15.97
+   165.0    0.00   -0.46   -1.70   -3.39   -5.21   -6.83   -8.11   -9.01   -9.59   -9.81   -9.61   -8.85   -7.46   -5.44   -2.85    0.29    4.20    9.23   15.75
+   170.0    0.00   -0.47   -1.71   -3.40   -5.21   -6.82   -8.09   -8.99   -9.55   -9.78   -9.58   -8.83   -7.46   -5.45   -2.89    0.23    4.09    9.05   15.46
+   175.0    0.00   -0.47   -1.71   -3.39   -5.20   -6.80   -8.06   -8.96   -9.53   -9.75   -9.56   -8.82   -7.45   -5.46   -2.93    0.15    3.96    8.85   15.15
+   180.0    0.00   -0.47   -1.71   -3.40   -5.19   -6.78   -8.04   -8.93   -9.51   -9.74   -9.55   -8.81   -7.47   -5.50   -3.01    0.05    3.81    8.65   14.85
+   185.0    0.00   -0.48   -1.71   -3.39   -5.18   -6.77   -8.02   -8.91   -9.49   -9.73   -9.54   -8.82   -7.49   -5.55   -3.07   -0.06    3.67    8.45   14.59
+   190.0    0.00   -0.47   -1.71   -3.40   -5.16   -6.74   -7.99   -8.89   -9.48   -9.73   -9.55   -8.84   -7.51   -5.59   -3.14   -0.16    3.54    8.29   14.40
+   195.0    0.00   -0.48   -1.72   -3.39   -5.15   -6.72   -7.95   -8.87   -9.47   -9.73   -9.57   -8.86   -7.54   -5.63   -3.20   -0.23    3.44    8.17   14.27
+   200.0    0.00   -0.48   -1.72   -3.39   -5.13   -6.69   -7.93   -8.85   -9.47   -9.74   -9.60   -8.88   -7.57   -5.65   -3.23   -0.28    3.38    8.12   14.24
+   205.0    0.00   -0.48   -1.72   -3.38   -5.11   -6.66   -7.90   -8.83   -9.47   -9.77   -9.63   -8.94   -7.60   -5.68   -3.24   -0.30    3.34    8.10   14.29
+   210.0    0.00   -0.48   -1.72   -3.37   -5.09   -6.63   -7.89   -8.82   -9.48   -9.81   -9.67   -8.96   -7.61   -5.67   -3.22   -0.30    3.35    8.13   14.40
+   215.0    0.00   -0.48   -1.71   -3.36   -5.08   -6.61   -7.87   -8.82   -9.50   -9.84   -9.72   -8.99   -7.62   -5.64   -3.18   -0.26    3.40    8.20   14.56
+   220.0    0.00   -0.48   -1.70   -3.35   -5.06   -6.60   -7.84   -8.82   -9.52   -9.88   -9.75   -9.01   -7.59   -5.59   -3.12   -0.19    3.44    8.27   14.74
+   225.0    0.00   -0.49   -1.70   -3.34   -5.04   -6.58   -7.84   -8.83   -9.55   -9.92   -9.79   -9.02   -7.57   -5.52   -3.04   -0.11    3.49    8.33   14.93
+   230.0    0.00   -0.49   -1.70   -3.34   -5.04   -6.56   -7.83   -8.84   -9.58   -9.95   -9.81   -9.02   -7.53   -5.44   -2.94   -0.04    3.55    8.38   15.08
+   235.0    0.00   -0.49   -1.70   -3.33   -5.03   -6.56   -7.83   -8.84   -9.59   -9.98   -9.84   -9.00   -7.47   -5.35   -2.85    0.03    3.56    8.40   15.18
+   240.0    0.00   -0.48   -1.69   -3.32   -5.02   -6.55   -7.83   -8.85   -9.61  -10.00   -9.83   -8.97   -7.40   -5.27   -2.77    0.08    3.58    8.40   15.24
+   245.0    0.00   -0.49   -1.69   -3.31   -5.00   -6.55   -7.84   -8.86   -9.62  -10.00   -9.83   -8.95   -7.36   -5.20   -2.70    0.11    3.57    8.36   15.23
+   250.0    0.00   -0.48   -1.69   -3.31   -5.00   -6.55   -7.84   -8.87   -9.62  -10.00   -9.81   -8.92   -7.31   -5.16   -2.67    0.12    3.53    8.30   15.16
+   255.0    0.00   -0.47   -1.67   -3.30   -5.00   -6.54   -7.83   -8.86   -9.62   -9.99   -9.79   -8.90   -7.29   -5.14   -2.66    0.11    3.49    8.23   15.06
+   260.0    0.00   -0.48   -1.68   -3.29   -5.00   -6.53   -7.83   -8.85   -9.60   -9.97   -9.79   -8.90   -7.30   -5.16   -2.69    0.07    3.45    8.14   14.93
+   265.0    0.00   -0.47   -1.67   -3.28   -4.98   -6.52   -7.81   -8.83   -9.59   -9.96   -9.78   -8.91   -7.34   -5.21   -2.75    0.02    3.39    8.06   14.78
+   270.0    0.00   -0.47   -1.67   -3.27   -4.97   -6.51   -7.79   -8.83   -9.57   -9.95   -9.78   -8.94   -7.40   -5.29   -2.82   -0.06    3.34    7.99   14.63
+   275.0    0.00   -0.46   -1.65   -3.25   -4.95   -6.49   -7.77   -8.79   -9.54   -9.94   -9.81   -9.00   -7.49   -5.39   -2.92   -0.12    3.28    7.93   14.49
+   280.0    0.00   -0.46   -1.65   -3.24   -4.93   -6.47   -7.74   -8.77   -9.52   -9.94   -9.84   -9.07   -7.59   -5.51   -3.02   -0.20    3.23    7.87   14.37
+   285.0    0.00   -0.46   -1.64   -3.23   -4.91   -6.45   -7.71   -8.74   -9.51   -9.94   -9.87   -9.14   -7.68   -5.63   -3.13   -0.28    3.17    7.80   14.26
+   290.0    0.00   -0.45   -1.62   -3.21   -4.90   -6.42   -7.69   -8.72   -9.49   -9.95   -9.91   -9.22   -7.78   -5.73   -3.23   -0.35    3.10    7.73   14.16
+   295.0    0.00   -0.45   -1.62   -3.20   -4.87   -6.39   -7.66   -8.69   -9.48   -9.96   -9.95   -9.27   -7.87   -5.82   -3.30   -0.42    3.03    7.65   14.08
+   300.0    0.00   -0.44   -1.59   -3.18   -4.85   -6.36   -7.63   -8.67   -9.46   -9.96   -9.98   -9.31   -7.91   -5.86   -3.34   -0.47    2.96    7.56   14.01
+   305.0    0.00   -0.44   -1.59   -3.17   -4.83   -6.33   -7.60   -8.64   -9.45   -9.96   -9.98   -9.32   -7.92   -5.87   -3.36   -0.53    2.89    7.46   13.93
+   310.0    0.00   -0.44   -1.58   -3.16   -4.82   -6.31   -7.57   -8.62   -9.42   -9.95   -9.96   -9.30   -7.89   -5.84   -3.34   -0.54    2.82    7.35   13.84
+   315.0    0.00   -0.43   -1.57   -3.14   -4.79   -6.29   -7.55   -8.59   -9.40   -9.92   -9.93   -9.25   -7.83   -5.78   -3.29   -0.54    2.76    7.22   13.73
+   320.0    0.00   -0.43   -1.56   -3.13   -4.78   -6.28   -7.54   -8.56   -9.37   -9.89   -9.88   -9.18   -7.74   -5.68   -3.22   -0.51    2.71    7.13   13.63
+   325.0    0.00   -0.42   -1.56   -3.13   -4.78   -6.28   -7.53   -8.54   -9.34   -9.83   -9.80   -9.10   -7.64   -5.57   -3.14   -0.46    2.70    7.04   13.50
+   330.0    0.00   -0.42   -1.56   -3.13   -4.78   -6.27   -7.53   -8.54   -9.32   -9.79   -9.74   -9.02   -7.54   -5.46   -3.03   -0.38    2.71    6.99   13.37
+   335.0    0.00   -0.41   -1.56   -3.14   -4.79   -6.30   -7.54   -8.54   -9.30   -9.75   -9.69   -8.94   -7.45   -5.37   -2.93   -0.30    2.76    6.96   13.23
+   340.0    0.00   -0.41   -1.56   -3.15   -4.81   -6.33   -7.56   -8.56   -9.30   -9.72   -9.65   -8.89   -7.40   -5.30   -2.86   -0.22    2.82    6.96   13.09
+   345.0    0.00   -0.41   -1.56   -3.16   -4.84   -6.36   -7.61   -8.60   -9.31   -9.72   -9.62   -8.86   -7.36   -5.26   -2.80   -0.13    2.92    6.98   12.95
+   350.0    0.00   -0.41   -1.58   -3.18   -4.88   -6.42   -7.66   -8.64   -9.35   -9.74   -9.63   -8.87   -7.38   -5.26   -2.77   -0.06    3.01    7.02   12.81
+   355.0    0.00   -0.41   -1.58   -3.20   -4.92   -6.48   -7.75   -8.71   -9.41   -9.79   -9.68   -8.91   -7.42   -5.30   -2.77   -0.01    3.09    7.05   12.68
+   360.0    0.00   -0.40   -1.58   -3.23   -4.99   -6.55   -7.83   -8.79   -9.49   -9.85   -9.74   -8.98   -7.51   -5.36   -2.80   -1.14    3.15    7.07   12.56
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+      1.02     -0.32    118.08                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.13   -0.53   -1.15   -1.93   -2.79   -3.70   -4.59   -5.38   -6.02   -6.36   -6.34   -5.84   -4.82   -3.22   -0.98    1.93    5.46    9.44
+     0.0    0.00   -0.09   -0.48   -1.11   -1.91   -2.80   -3.70   -4.54   -5.30   -5.93   -6.35   -6.45   -6.09   -5.12   -3.49   -1.26    1.48    4.61    8.09
+     5.0    0.00   -0.10   -0.47   -1.10   -1.91   -2.80   -3.70   -4.56   -5.32   -5.96   -6.39   -6.49   -6.10   -5.11   -3.46   -1.20    1.54    4.65    8.07
+    10.0    0.00   -0.09   -0.46   -1.09   -1.88   -2.79   -3.70   -4.57   -5.34   -5.98   -6.41   -6.51   -6.10   -5.09   -3.42   -1.14    1.63    4.74    8.13
+    15.0    0.00   -0.08   -0.45   -1.07   -1.88   -2.79   -3.71   -4.59   -5.37   -6.02   -6.44   -6.51   -6.08   -5.06   -3.36   -1.04    1.73    4.87    8.26
+    20.0    0.00   -0.08   -0.44   -1.06   -1.87   -2.78   -3.71   -4.61   -5.40   -6.04   -6.43   -6.48   -6.04   -4.98   -3.27   -0.95    1.85    5.02    8.46
+    25.0    0.00   -0.08   -0.43   -1.05   -1.85   -2.78   -3.72   -4.62   -5.42   -6.04   -6.42   -6.43   -5.96   -4.90   -3.18   -0.86    1.98    5.21    8.73
+    30.0    0.00   -0.08   -0.43   -1.04   -1.84   -2.77   -3.72   -4.63   -5.43   -6.03   -6.39   -6.36   -5.86   -4.78   -3.07   -0.75    2.11    5.42    9.06
+    35.0    0.00   -0.08   -0.43   -1.03   -1.83   -2.75   -3.71   -4.62   -5.41   -6.01   -6.33   -6.27   -5.75   -4.66   -2.96   -0.64    2.24    5.63    9.41
+    40.0    0.00   -0.07   -0.42   -1.03   -1.82   -2.74   -3.69   -4.61   -5.39   -5.97   -6.27   -6.18   -5.64   -4.54   -2.86   -0.55    2.37    5.84    9.79
+    45.0    0.00   -0.08   -0.42   -1.01   -1.82   -2.73   -3.68   -4.58   -5.37   -5.92   -6.20   -6.09   -5.53   -4.43   -2.75   -0.46    2.47    6.04   10.15
+    50.0    0.00   -0.07   -0.41   -1.01   -1.80   -2.71   -3.66   -4.55   -5.32   -5.87   -6.14   -6.02   -5.44   -4.35   -2.69   -0.40    2.57    6.21   10.46
+    55.0    0.00   -0.07   -0.42   -1.02   -1.80   -2.70   -3.63   -4.52   -5.28   -5.82   -6.08   -5.96   -5.38   -4.30   -2.65   -0.36    2.62    6.35   10.71
+    60.0    0.00   -0.07   -0.42   -1.01   -1.79   -2.68   -3.60   -4.49   -5.23   -5.78   -6.04   -5.93   -5.37   -4.30   -2.65   -0.36    2.65    6.42   10.87
+    65.0    0.00   -0.08   -0.43   -1.02   -1.80   -2.67   -3.58   -4.46   -5.20   -5.76   -6.02   -5.93   -5.39   -4.33   -2.69   -0.40    2.62    6.43   10.92
+    70.0    0.00   -0.08   -0.44   -1.04   -1.81   -2.67   -3.58   -4.43   -5.18   -5.75   -6.04   -5.97   -5.44   -4.39   -2.77   -0.47    2.56    6.37   10.85
+    75.0    0.00   -0.08   -0.44   -1.04   -1.81   -2.69   -3.58   -4.43   -5.18   -5.75   -6.07   -6.02   -5.52   -4.49   -2.87   -0.58    2.45    6.24   10.68
+    80.0    0.00   -0.09   -0.45   -1.06   -1.84   -2.70   -3.59   -4.44   -5.19   -5.78   -6.12   -6.09   -5.61   -4.60   -2.99   -0.72    2.29    6.05   10.40
+    85.0    0.00   -0.10   -0.47   -1.09   -1.86   -2.73   -3.62   -4.47   -5.23   -5.82   -6.16   -6.17   -5.71   -4.72   -3.12   -0.85    2.12    5.83   10.07
+    90.0    0.00   -0.10   -0.48   -1.10   -1.90   -2.77   -3.66   -4.50   -5.27   -5.87   -6.22   -6.24   -5.80   -4.82   -3.25   -1.00    1.94    5.57    9.70
+    95.0    0.00   -0.10   -0.49   -1.12   -1.93   -2.81   -3.71   -4.57   -5.33   -5.92   -6.29   -6.30   -5.87   -4.91   -3.35   -1.14    1.76    5.33    9.35
+   100.0    0.00   -0.12   -0.50   -1.15   -1.97   -2.86   -3.77   -4.62   -5.39   -5.98   -6.33   -6.35   -5.92   -4.97   -3.42   -1.24    1.61    5.11    9.03
+   105.0    0.00   -0.12   -0.52   -1.17   -2.00   -2.91   -3.83   -4.69   -5.44   -6.03   -6.37   -6.37   -5.93   -4.99   -3.47   -1.32    1.50    4.95    8.79
+   110.0    0.00   -0.12   -0.53   -1.18   -2.03   -2.94   -3.87   -4.75   -5.50   -6.07   -6.38   -6.37   -5.93   -4.99   -3.48   -1.36    1.43    4.86    8.67
+   115.0    0.00   -0.12   -0.54   -1.20   -2.05   -2.98   -3.92   -4.80   -5.54   -6.10   -6.40   -6.35   -5.89   -4.96   -3.47   -1.36    1.41    4.83    8.64
+   120.0    0.00   -0.13   -0.55   -1.21   -2.06   -3.00   -3.95   -4.83   -5.57   -6.12   -6.39   -6.32   -5.85   -4.91   -3.44   -1.34    1.44    4.87    8.71
+   125.0    0.00   -0.14   -0.56   -1.23   -2.07   -3.01   -3.96   -4.84   -5.59   -6.13   -6.38   -6.28   -5.80   -4.86   -3.38   -1.29    1.49    4.95    8.84
+   130.0    0.00   -0.15   -0.57   -1.24   -2.07   -3.02   -3.96   -4.85   -5.60   -6.12   -6.35   -6.26   -5.76   -4.81   -3.33   -1.24    1.56    5.06    9.03
+   135.0    0.00   -0.15   -0.57   -1.23   -2.07   -2.99   -3.95   -4.83   -5.58   -6.10   -6.34   -6.23   -5.72   -4.77   -3.29   -1.19    1.64    5.18    9.21
+   140.0    0.00   -0.16   -0.58   -1.23   -2.06   -2.97   -3.91   -4.81   -5.55   -6.08   -6.32   -6.21   -5.69   -4.74   -3.26   -1.16    1.68    5.25    9.35
+   145.0    0.00   -0.16   -0.58   -1.22   -2.04   -2.94   -3.87   -4.77   -5.53   -6.07   -6.32   -6.19   -5.69   -4.73   -3.25   -1.15    1.70    5.29    9.43
+   150.0    0.00   -0.16   -0.58   -1.22   -2.01   -2.90   -3.83   -4.73   -5.50   -6.05   -6.31   -6.20   -5.69   -4.74   -3.26   -1.16    1.67    5.26    9.41
+   155.0    0.00   -0.16   -0.58   -1.21   -1.98   -2.86   -3.79   -4.68   -5.47   -6.04   -6.31   -6.20   -5.71   -4.74   -3.28   -1.20    1.60    5.16    9.30
+   160.0    0.00   -0.16   -0.58   -1.19   -1.96   -2.82   -3.74   -4.65   -5.44   -6.03   -6.31   -6.23   -5.72   -4.77   -3.31   -1.26    1.51    5.01    9.10
+   165.0    0.00   -0.17   -0.58   -1.19   -1.94   -2.79   -3.71   -4.62   -5.42   -6.02   -6.32   -6.23   -5.73   -4.79   -3.34   -1.31    1.41    4.84    8.85
+   170.0    0.00   -0.17   -0.58   -1.19   -1.91   -2.77   -3.69   -4.59   -5.41   -6.02   -6.32   -6.24   -5.74   -4.79   -3.36   -1.37    1.31    4.68    8.60
+   175.0    0.00   -0.18   -0.59   -1.17   -1.91   -2.75   -3.66   -4.58   -5.41   -6.02   -6.33   -6.25   -5.74   -4.78   -3.36   -1.38    1.24    4.54    8.39
+   180.0    0.00   -0.18   -0.59   -1.17   -1.90   -2.74   -3.65   -4.57   -5.40   -6.03   -6.33   -6.24   -5.73   -4.78   -3.35   -1.37    1.23    4.50    8.26
+   185.0    0.00   -0.18   -0.59   -1.17   -1.90   -2.74   -3.65   -4.57   -5.40   -6.02   -6.32   -6.24   -5.72   -4.76   -3.31   -1.32    1.30    4.56    8.26
+   190.0    0.00   -0.18   -0.58   -1.18   -1.91   -2.74   -3.65   -4.57   -5.40   -6.01   -6.32   -6.22   -5.70   -4.73   -3.25   -1.21    1.45    4.73    8.42
+   195.0    0.00   -0.18   -0.59   -1.18   -1.91   -2.75   -3.65   -4.57   -5.39   -6.00   -6.31   -6.22   -5.69   -4.70   -3.19   -1.07    1.67    5.02    8.73
+   200.0    0.00   -0.18   -0.60   -1.18   -1.91   -2.75   -3.67   -4.57   -5.38   -6.00   -6.30   -6.21   -5.69   -4.67   -3.10   -0.91    1.96    5.41    9.18
+   205.0    0.00   -0.19   -0.60   -1.19   -1.93   -2.76   -3.66   -4.57   -5.37   -5.99   -6.30   -6.22   -5.69   -4.65   -3.02   -0.72    2.28    5.88    9.73
+   210.0    0.00   -0.19   -0.60   -1.19   -1.93   -2.76   -3.67   -4.56   -5.36   -5.98   -6.30   -6.23   -5.70   -4.64   -2.95   -0.53    2.61    6.35   10.32
+   215.0    0.00   -0.19   -0.60   -1.20   -1.94   -2.77   -3.65   -4.56   -5.35   -5.96   -6.30   -6.25   -5.73   -4.65   -2.89   -0.37    2.92    6.81   10.91
+   220.0    0.00   -0.19   -0.60   -1.20   -1.93   -2.76   -3.65   -4.53   -5.33   -5.95   -6.30   -6.28   -5.77   -4.66   -2.86   -0.24    3.17    7.19   11.42
+   225.0    0.00   -0.19   -0.61   -1.20   -1.94   -2.76   -3.64   -4.51   -5.32   -5.94   -6.32   -6.30   -5.81   -4.69   -2.84   -0.17    3.33    7.47   11.81
+   230.0    0.00   -0.19   -0.61   -1.20   -1.93   -2.75   -3.61   -4.48   -5.30   -5.94   -6.33   -6.34   -5.85   -4.72   -2.85   -0.14    3.41    7.61   12.02
+   235.0    0.00   -0.19   -0.61   -1.20   -1.92   -2.73   -3.59   -4.46   -5.28   -5.94   -6.34   -6.37   -5.88   -4.76   -2.88   -0.18    3.38    7.59   12.07
+   240.0    0.00   -0.18   -0.61   -1.20   -1.91   -2.71   -3.58   -4.44   -5.26   -5.95   -6.36   -6.39   -5.90   -4.79   -2.93   -0.26    3.24    7.44   11.91
+   245.0    0.00   -0.19   -0.60   -1.18   -1.90   -2.70   -3.56   -4.43   -5.27   -5.96   -6.38   -6.41   -5.92   -4.81   -2.99   -0.38    3.03    7.15   11.62
+   250.0    0.00   -0.18   -0.60   -1.19   -1.89   -2.68   -3.54   -4.43   -5.27   -5.98   -6.40   -6.41   -5.93   -4.83   -3.06   -0.53    2.78    6.78   11.19
+   255.0    0.00   -0.19   -0.60   -1.17   -1.88   -2.67   -3.54   -4.43   -5.29   -5.99   -6.41   -6.43   -5.93   -4.84   -3.11   -0.69    2.48    6.36   10.68
+   260.0    0.00   -0.19   -0.60   -1.17   -1.88   -2.67   -3.54   -4.44   -5.32   -6.02   -6.44   -6.44   -5.93   -4.85   -3.17   -0.85    2.20    5.94   10.17
+   265.0    0.00   -0.18   -0.59   -1.17   -1.87   -2.67   -3.55   -4.46   -5.34   -6.06   -6.47   -6.45   -5.93   -4.85   -3.23   -0.99    1.93    5.55    9.68
+   270.0    0.00   -0.18   -0.58   -1.16   -1.88   -2.68   -3.56   -4.49   -5.38   -6.10   -6.50   -6.47   -5.92   -4.87   -3.27   -1.11    1.72    5.23    9.27
+   275.0    0.00   -0.18   -0.58   -1.17   -1.87   -2.69   -3.58   -4.53   -5.42   -6.14   -6.53   -6.49   -5.94   -4.89   -3.31   -1.19    1.57    5.00    8.97
+   280.0    0.00   -0.17   -0.58   -1.16   -1.88   -2.71   -3.61   -4.56   -5.46   -6.18   -6.57   -6.51   -5.96   -4.90   -3.35   -1.26    1.47    4.86    8.80
+   285.0    0.00   -0.17   -0.57   -1.16   -1.88   -2.73   -3.65   -4.61   -5.51   -6.21   -6.60   -6.54   -5.97   -4.93   -3.38   -1.29    1.42    4.81    8.73
+   290.0    0.00   -0.17   -0.57   -1.16   -1.91   -2.76   -3.68   -4.65   -5.54   -6.24   -6.62   -6.55   -6.00   -4.96   -3.41   -1.31    1.42    4.85    8.75
+   295.0    0.00   -0.17   -0.57   -1.17   -1.92   -2.78   -3.72   -4.68   -5.56   -6.26   -6.63   -6.57   -6.02   -4.98   -3.43   -1.31    1.46    4.91    8.84
+   300.0    0.00   -0.15   -0.56   -1.17   -1.93   -2.81   -3.75   -4.70   -5.58   -6.26   -6.62   -6.57   -6.04   -5.02   -3.45   -1.31    1.51    5.00    8.99
+   305.0    0.00   -0.15   -0.56   -1.18   -1.94   -2.82   -3.78   -4.72   -5.58   -6.26   -6.61   -6.56   -6.05   -5.03   -3.47   -1.31    1.54    5.08    9.11
+   310.0    0.00   -0.14   -0.55   -1.18   -1.96   -2.84   -3.79   -4.72   -5.57   -6.22   -6.57   -6.54   -6.05   -5.05   -3.49   -1.32    1.57    5.15    9.22
+   315.0    0.00   -0.14   -0.55   -1.18   -1.97   -2.86   -3.80   -4.73   -5.55   -6.18   -6.53   -6.51   -6.03   -5.04   -3.50   -1.31    1.57    5.16    9.27
+   320.0    0.00   -0.13   -0.54   -1.18   -1.97   -2.87   -3.80   -4.70   -5.51   -6.13   -6.48   -6.47   -6.01   -5.05   -3.51   -1.33    1.55    5.14    9.27
+   325.0    0.00   -0.13   -0.54   -1.17   -1.97   -2.87   -3.79   -4.68   -5.47   -6.08   -6.42   -6.43   -6.00   -5.05   -3.52   -1.34    1.53    5.09    9.20
+   330.0    0.00   -0.13   -0.53   -1.17   -1.97   -2.87   -3.77   -4.65   -5.42   -6.03   -6.38   -6.39   -5.98   -5.04   -3.52   -1.36    1.49    4.99    9.07
+   335.0    0.00   -0.12   -0.52   -1.16   -1.97   -2.87   -3.76   -4.63   -5.38   -5.98   -6.34   -6.38   -5.97   -5.05   -3.53   -1.35    1.46    4.89    8.90
+   340.0    0.00   -0.12   -0.51   -1.15   -1.96   -2.85   -3.75   -4.59   -5.34   -5.94   -6.32   -6.36   -5.98   -5.06   -3.53   -1.36    1.42    4.79    8.70
+   345.0    0.00   -0.11   -0.50   -1.14   -1.95   -2.84   -3.73   -4.57   -5.31   -5.91   -6.30   -6.37   -5.99   -5.06   -3.53   -1.35    1.40    4.70    8.51
+   350.0    0.00   -0.11   -0.50   -1.13   -1.93   -2.83   -3.72   -4.54   -5.30   -5.90   -6.31   -6.39   -6.03   -5.09   -3.52   -1.33    1.40    4.64    8.32
+   355.0    0.00   -0.10   -0.48   -1.12   -1.93   -2.81   -3.70   -4.54   -5.29   -5.91   -6.33   -6.43   -6.05   -5.10   -3.51   -1.30    1.43    4.60    8.19
+   360.0    0.00   -0.09   -0.48   -1.11   -1.91   -2.80   -3.70   -4.54   -5.30   -5.93   -6.35   -6.45   -6.09   -5.12   -3.49   -1.26    1.48    4.61    8.09
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TRM59800.80     NONE                                        TYPE / SERIAL NO    
+COPIED              Geo++ GmbH              25    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     4                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+COPIED FROM TRM59800.00     NONE                            COMMENT             
+ATTENTION! COPIED WITHOUT VERIFICATION BY CALIBRATION!      COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.45      1.02     89.81                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.24   -0.95   -2.03   -3.39   -4.85   -6.25   -7.42   -8.24   -8.60   -8.48   -7.87   -6.75   -5.08   -2.73    0.43    4.51    9.44   14.88
+     0.0    0.00   -0.24   -0.95   -2.05   -3.40   -4.85   -6.23   -7.38   -8.16   -8.49   -8.32   -7.66   -6.52   -4.87   -2.62    0.40    4.30    9.08   14.40
+     5.0    0.00   -0.25   -0.96   -2.05   -3.40   -4.85   -6.24   -7.40   -8.19   -8.52   -8.34   -7.67   -6.52   -4.86   -2.62    0.36    4.23    9.01   14.39
+    10.0    0.00   -0.25   -0.96   -2.06   -3.41   -4.86   -6.26   -7.42   -8.22   -8.55   -8.37   -7.69   -6.52   -4.86   -2.63    0.33    4.19    8.97   14.41
+    15.0    0.00   -0.25   -0.97   -2.06   -3.41   -4.87   -6.27   -7.45   -8.25   -8.59   -8.40   -7.71   -6.54   -4.87   -2.64    0.32    4.17    8.97   14.46
+    20.0    0.00   -0.26   -0.97   -2.07   -3.42   -4.88   -6.29   -7.47   -8.29   -8.63   -8.45   -7.75   -6.56   -4.89   -2.64    0.32    4.19    9.02   14.55
+    25.0    0.00   -0.26   -0.98   -2.07   -3.42   -4.89   -6.31   -7.50   -8.32   -8.67   -8.49   -7.79   -6.59   -4.91   -2.64    0.35    4.25    9.11   14.67
+    30.0    0.00   -0.26   -0.98   -2.07   -3.43   -4.90   -6.32   -7.52   -8.36   -8.71   -8.53   -7.83   -6.63   -4.93   -2.64    0.39    4.33    9.23   14.80
+    35.0    0.00   -0.26   -0.98   -2.08   -3.43   -4.91   -6.33   -7.54   -8.38   -8.74   -8.58   -7.88   -6.67   -4.95   -2.63    0.44    4.44    9.37   14.94
+    40.0    0.00   -0.26   -0.98   -2.08   -3.44   -4.91   -6.34   -7.55   -8.40   -8.77   -8.61   -7.92   -6.71   -4.98   -2.63    0.50    4.55    9.52   15.07
+    45.0    0.00   -0.27   -0.99   -2.08   -3.44   -4.91   -6.35   -7.56   -8.41   -8.78   -8.63   -7.95   -6.75   -5.00   -2.62    0.55    4.66    9.66   15.19
+    50.0    0.00   -0.27   -0.99   -2.08   -3.44   -4.92   -6.35   -7.56   -8.41   -8.79   -8.64   -7.97   -6.78   -5.03   -2.62    0.60    4.76    9.79   15.29
+    55.0    0.00   -0.27   -0.99   -2.08   -3.44   -4.91   -6.34   -7.56   -8.40   -8.78   -8.64   -7.98   -6.79   -5.04   -2.62    0.64    4.83    9.88   15.37
+    60.0    0.00   -0.27   -0.99   -2.08   -3.44   -4.91   -6.34   -7.55   -8.39   -8.77   -8.63   -7.98   -6.80   -5.05   -2.62    0.66    4.88    9.94   15.41
+    65.0    0.00   -0.27   -0.99   -2.08   -3.44   -4.91   -6.33   -7.53   -8.37   -8.75   -8.61   -7.97   -6.80   -5.05   -2.62    0.66    4.90    9.97   15.43
+    70.0    0.00   -0.27   -0.99   -2.09   -3.44   -4.91   -6.32   -7.52   -8.35   -8.72   -8.59   -7.95   -6.79   -5.05   -2.62    0.66    4.89    9.97   15.43
+    75.0    0.00   -0.27   -0.99   -2.09   -3.44   -4.90   -6.31   -7.50   -8.33   -8.70   -8.57   -7.93   -6.78   -5.05   -2.63    0.64    4.87    9.94   15.41
+    80.0    0.00   -0.27   -0.99   -2.09   -3.44   -4.90   -6.31   -7.49   -8.31   -8.67   -8.54   -7.91   -6.76   -5.05   -2.64    0.62    4.83    9.90   15.38
+    85.0    0.00   -0.27   -1.00   -2.09   -3.44   -4.90   -6.30   -7.48   -8.30   -8.66   -8.52   -7.89   -6.75   -5.05   -2.65    0.60    4.79    9.85   15.35
+    90.0    0.00   -0.27   -1.00   -2.09   -3.44   -4.90   -6.30   -7.48   -8.29   -8.64   -8.51   -7.88   -6.75   -5.05   -2.66    0.57    4.75    9.80   15.32
+    95.0    0.00   -0.27   -1.00   -2.09   -3.45   -4.90   -6.30   -7.48   -8.28   -8.64   -8.51   -7.88   -6.75   -5.06   -2.68    0.54    4.71    9.76   15.29
+   100.0    0.00   -0.27   -1.00   -2.09   -3.45   -4.91   -6.31   -7.48   -8.29   -8.64   -8.51   -7.89   -6.76   -5.07   -2.70    0.51    4.68    9.72   15.27
+   105.0    0.00   -0.27   -1.00   -2.10   -3.45   -4.92   -6.32   -7.49   -8.30   -8.65   -8.52   -7.90   -6.78   -5.10   -2.73    0.49    4.65    9.69   15.26
+   110.0    0.00   -0.27   -1.00   -2.10   -3.46   -4.93   -6.33   -7.50   -8.31   -8.66   -8.54   -7.92   -6.81   -5.13   -2.76    0.45    4.62    9.66   15.25
+   115.0    0.00   -0.27   -1.00   -2.10   -3.47   -4.93   -6.34   -7.51   -8.32   -8.68   -8.55   -7.94   -6.83   -5.16   -2.79    0.42    4.59    9.64   15.23
+   120.0    0.00   -0.27   -1.00   -2.10   -3.47   -4.94   -6.35   -7.52   -8.33   -8.69   -8.56   -7.96   -6.85   -5.19   -2.82    0.39    4.56    9.62   15.22
+   125.0    0.00   -0.27   -1.00   -2.11   -3.47   -4.95   -6.35   -7.53   -8.33   -8.69   -8.57   -7.97   -6.87   -5.21   -2.85    0.36    4.53    9.59   15.19
+   130.0    0.00   -0.27   -1.00   -2.11   -3.48   -4.95   -6.36   -7.53   -8.33   -8.69   -8.57   -7.97   -6.88   -5.22   -2.88    0.33    4.50    9.56   15.16
+   135.0    0.00   -0.27   -1.00   -2.11   -3.48   -4.95   -6.36   -7.53   -8.33   -8.68   -8.56   -7.96   -6.88   -5.23   -2.89    0.31    4.47    9.53   15.11
+   140.0    0.00   -0.27   -0.99   -2.10   -3.47   -4.95   -6.35   -7.52   -8.32   -8.67   -8.55   -7.95   -6.86   -5.22   -2.88    0.30    4.45    9.49   15.06
+   145.0    0.00   -0.27   -0.99   -2.10   -3.47   -4.94   -6.34   -7.50   -8.30   -8.65   -8.52   -7.93   -6.84   -5.19   -2.87    0.31    4.44    9.45   14.99
+   150.0    0.00   -0.26   -0.99   -2.10   -3.46   -4.93   -6.33   -7.49   -8.28   -8.63   -8.50   -7.90   -6.81   -5.16   -2.84    0.33    4.43    9.42   14.93
+   155.0    0.00   -0.26   -0.99   -2.09   -3.46   -4.92   -6.31   -7.46   -8.25   -8.60   -8.47   -7.87   -6.77   -5.12   -2.79    0.36    4.44    9.39   14.86
+   160.0    0.00   -0.26   -0.98   -2.09   -3.45   -4.90   -6.29   -7.44   -8.23   -8.58   -8.45   -7.84   -6.74   -5.08   -2.75    0.39    4.45    9.36   14.80
+   165.0    0.00   -0.26   -0.98   -2.08   -3.44   -4.89   -6.27   -7.42   -8.21   -8.56   -8.43   -7.82   -6.71   -5.04   -2.70    0.43    4.46    9.34   14.75
+   170.0    0.00   -0.25   -0.97   -2.07   -3.43   -4.87   -6.25   -7.40   -8.19   -8.54   -8.42   -7.81   -6.69   -5.01   -2.67    0.46    4.47    9.32   14.70
+   175.0    0.00   -0.25   -0.97   -2.07   -3.42   -4.86   -6.23   -7.38   -8.17   -8.53   -8.42   -7.81   -6.68   -4.99   -2.64    0.48    4.48    9.30   14.68
+   180.0    0.00   -0.25   -0.96   -2.06   -3.41   -4.85   -6.22   -7.37   -8.16   -8.53   -8.42   -7.81   -6.68   -4.98   -2.63    0.49    4.47    9.29   14.67
+   185.0    0.00   -0.25   -0.96   -2.05   -3.40   -4.84   -6.21   -7.36   -8.16   -8.53   -8.42   -7.82   -6.69   -4.99   -2.64    0.48    4.46    9.28   14.69
+   190.0    0.00   -0.24   -0.95   -2.05   -3.39   -4.84   -6.21   -7.36   -8.16   -8.53   -8.43   -7.83   -6.71   -5.02   -2.67    0.45    4.43    9.27   14.72
+   195.0    0.00   -0.24   -0.95   -2.04   -3.39   -4.83   -6.21   -7.36   -8.16   -8.54   -8.44   -7.85   -6.74   -5.05   -2.71    0.41    4.41    9.28   14.77
+   200.0    0.00   -0.24   -0.94   -2.03   -3.38   -4.83   -6.21   -7.36   -8.16   -8.54   -8.45   -7.86   -6.76   -5.09   -2.76    0.36    4.38    9.29   14.84
+   205.0    0.00   -0.23   -0.93   -2.03   -3.38   -4.83   -6.21   -7.36   -8.17   -8.54   -8.45   -7.88   -6.79   -5.14   -2.81    0.31    4.36    9.33   14.93
+   210.0    0.00   -0.23   -0.93   -2.02   -3.37   -4.83   -6.21   -7.37   -8.17   -8.54   -8.45   -7.88   -6.81   -5.17   -2.86    0.28    4.36    9.38   15.02
+   215.0    0.00   -0.23   -0.92   -2.01   -3.37   -4.83   -6.21   -7.37   -8.17   -8.54   -8.45   -7.88   -6.82   -5.20   -2.89    0.27    4.39    9.45   15.12
+   220.0    0.00   -0.22   -0.92   -2.00   -3.36   -4.82   -6.21   -7.37   -8.16   -8.53   -8.44   -7.88   -6.83   -5.22   -2.90    0.28    4.44    9.54   15.22
+   225.0    0.00   -0.22   -0.91   -2.00   -3.35   -4.82   -6.21   -7.36   -8.16   -8.52   -8.43   -7.88   -6.84   -5.22   -2.90    0.31    4.52    9.64   15.30
+   230.0    0.00   -0.22   -0.90   -1.99   -3.34   -4.81   -6.20   -7.35   -8.15   -8.51   -8.42   -7.87   -6.83   -5.21   -2.87    0.37    4.61    9.75   15.36
+   235.0    0.00   -0.21   -0.90   -1.98   -3.33   -4.79   -6.19   -7.34   -8.14   -8.50   -8.41   -7.87   -6.82   -5.19   -2.83    0.45    4.72    9.85   15.40
+   240.0    0.00   -0.21   -0.89   -1.97   -3.32   -4.78   -6.17   -7.33   -8.13   -8.50   -8.41   -7.86   -6.82   -5.17   -2.77    0.53    4.82    9.93   15.40
+   245.0    0.00   -0.21   -0.88   -1.96   -3.30   -4.76   -6.16   -7.32   -8.12   -8.49   -8.41   -7.87   -6.81   -5.14   -2.72    0.61    4.90    9.99   15.37
+   250.0    0.00   -0.21   -0.88   -1.95   -3.29   -4.75   -6.14   -7.31   -8.12   -8.50   -8.42   -7.87   -6.80   -5.12   -2.67    0.67    4.95   10.00   15.30
+   255.0    0.00   -0.21   -0.88   -1.94   -3.28   -4.74   -6.13   -7.30   -8.12   -8.51   -8.44   -7.88   -6.80   -5.10   -2.64    0.70    4.96    9.96   15.21
+   260.0    0.00   -0.20   -0.87   -1.93   -3.27   -4.72   -6.12   -7.30   -8.13   -8.52   -8.46   -7.90   -6.80   -5.09   -2.63    0.70    4.92    9.87   15.09
+   265.0    0.00   -0.20   -0.87   -1.93   -3.26   -4.72   -6.12   -7.30   -8.14   -8.54   -8.48   -7.91   -6.81   -5.09   -2.64    0.66    4.84    9.75   14.95
+   270.0    0.00   -0.20   -0.87   -1.92   -3.26   -4.71   -6.12   -7.31   -8.16   -8.57   -8.50   -7.92   -6.81   -5.10   -2.66    0.60    4.73    9.59   14.81
+   275.0    0.00   -0.20   -0.87   -1.92   -3.26   -4.71   -6.13   -7.33   -8.18   -8.59   -8.52   -7.94   -6.82   -5.11   -2.71    0.51    4.58    9.42   14.68
+   280.0    0.00   -0.20   -0.87   -1.92   -3.26   -4.72   -6.14   -7.34   -8.20   -8.61   -8.53   -7.95   -6.83   -5.14   -2.76    0.40    4.43    9.25   14.57
+   285.0    0.00   -0.20   -0.87   -1.93   -3.26   -4.73   -6.15   -7.36   -8.22   -8.63   -8.54   -7.95   -6.84   -5.16   -2.82    0.30    4.28    9.10   14.49
+   290.0    0.00   -0.21   -0.87   -1.93   -3.27   -4.74   -6.17   -7.38   -8.23   -8.64   -8.55   -7.95   -6.84   -5.18   -2.87    0.21    4.17    8.99   14.43
+   295.0    0.00   -0.21   -0.88   -1.94   -3.28   -4.75   -6.18   -7.39   -8.25   -8.64   -8.55   -7.95   -6.84   -5.19   -2.91    0.14    4.08    8.92   14.42
+   300.0    0.00   -0.21   -0.88   -1.95   -3.29   -4.77   -6.20   -7.41   -8.25   -8.64   -8.54   -7.94   -6.84   -5.20   -2.93    0.11    4.05    8.90   14.43
+   305.0    0.00   -0.21   -0.88   -1.95   -3.30   -4.78   -6.21   -7.41   -8.25   -8.63   -8.52   -7.92   -6.82   -5.20   -2.94    0.11    4.06    8.92   14.46
+   310.0    0.00   -0.21   -0.89   -1.96   -3.32   -4.79   -6.22   -7.42   -8.25   -8.62   -8.50   -7.90   -6.81   -5.18   -2.92    0.14    4.11    8.99   14.51
+   315.0    0.00   -0.22   -0.90   -1.97   -3.33   -4.80   -6.22   -7.41   -8.23   -8.60   -8.48   -7.88   -6.79   -5.16   -2.88    0.19    4.19    9.08   14.57
+   320.0    0.00   -0.22   -0.90   -1.98   -3.34   -4.81   -6.22   -7.41   -8.22   -8.57   -8.45   -7.85   -6.76   -5.13   -2.84    0.27    4.29    9.18   14.61
+   325.0    0.00   -0.22   -0.91   -1.99   -3.35   -4.82   -6.22   -7.40   -8.20   -8.55   -8.42   -7.82   -6.73   -5.09   -2.79    0.34    4.38    9.27   14.64
+   330.0    0.00   -0.23   -0.92   -2.00   -3.36   -4.82   -6.22   -7.38   -8.18   -8.52   -8.39   -7.79   -6.70   -5.05   -2.74    0.41    4.46    9.34   14.65
+   335.0    0.00   -0.23   -0.92   -2.01   -3.36   -4.83   -6.22   -7.37   -8.16   -8.50   -8.37   -7.76   -6.66   -5.01   -2.69    0.46    4.51    9.37   14.63
+   340.0    0.00   -0.23   -0.93   -2.02   -3.37   -4.83   -6.22   -7.36   -8.15   -8.48   -8.34   -7.73   -6.63   -4.97   -2.65    0.48    4.52    9.37   14.60
+   345.0    0.00   -0.24   -0.94   -2.03   -3.38   -4.83   -6.21   -7.36   -8.14   -8.47   -8.33   -7.70   -6.59   -4.94   -2.63    0.49    4.50    9.32   14.54
+   350.0    0.00   -0.24   -0.94   -2.03   -3.38   -4.84   -6.22   -7.36   -8.14   -8.47   -8.32   -7.68   -6.56   -4.91   -2.61    0.47    4.45    9.25   14.49
+   355.0    0.00   -0.24   -0.95   -2.04   -3.39   -4.84   -6.22   -7.37   -8.15   -8.48   -8.32   -7.67   -6.54   -4.89   -2.61    0.44    4.38    9.16   14.43
+   360.0    0.00   -0.24   -0.95   -2.05   -3.40   -4.85   -6.23   -7.38   -8.16   -8.49   -8.32   -7.66   -6.52   -4.87   -2.62    0.40    4.30    9.08   14.40
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.04     -0.35    120.03                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.14   -0.54   -1.15   -1.89   -2.72   -3.57   -4.38   -5.05   -5.45   -5.47   -5.03   -4.17   -2.96   -1.51    0.22    2.44    5.52    9.74
+     0.0    0.00   -0.14   -0.54   -1.14   -1.88   -2.68   -3.50   -4.30   -4.98   -5.44   -5.54   -5.19   -4.38   -3.20   -1.76   -0.07    2.04    4.97    9.14
+     5.0    0.00   -0.14   -0.54   -1.14   -1.88   -2.68   -3.51   -4.30   -4.98   -5.44   -5.54   -5.18   -4.38   -3.20   -1.77   -0.08    2.05    5.00    9.18
+    10.0    0.00   -0.14   -0.54   -1.14   -1.88   -2.69   -3.51   -4.31   -4.99   -5.44   -5.53   -5.17   -4.37   -3.20   -1.76   -0.06    2.11    5.10    9.28
+    15.0    0.00   -0.14   -0.53   -1.14   -1.88   -2.69   -3.52   -4.31   -4.99   -5.43   -5.51   -5.14   -4.34   -3.17   -1.73   -0.01    2.19    5.23    9.46
+    20.0    0.00   -0.14   -0.53   -1.14   -1.88   -2.69   -3.53   -4.32   -4.99   -5.42   -5.48   -5.10   -4.29   -3.12   -1.68    0.05    2.30    5.41    9.69
+    25.0    0.00   -0.13   -0.53   -1.14   -1.88   -2.70   -3.53   -4.33   -4.99   -5.41   -5.45   -5.06   -4.23   -3.06   -1.62    0.13    2.43    5.61    9.96
+    30.0    0.00   -0.13   -0.53   -1.14   -1.88   -2.70   -3.54   -4.34   -5.00   -5.40   -5.42   -5.01   -4.17   -3.00   -1.55    0.22    2.56    5.82   10.25
+    35.0    0.00   -0.13   -0.53   -1.13   -1.88   -2.70   -3.55   -4.35   -5.00   -5.38   -5.39   -4.95   -4.11   -2.93   -1.48    0.31    2.69    6.03   10.54
+    40.0    0.00   -0.13   -0.53   -1.13   -1.88   -2.71   -3.55   -4.35   -5.00   -5.37   -5.36   -4.91   -4.05   -2.86   -1.41    0.39    2.81    6.21   10.78
+    45.0    0.00   -0.13   -0.53   -1.13   -1.88   -2.71   -3.56   -4.36   -5.00   -5.37   -5.34   -4.88   -4.00   -2.81   -1.35    0.46    2.90    6.34   10.97
+    50.0    0.00   -0.13   -0.53   -1.13   -1.88   -2.71   -3.56   -4.36   -5.00   -5.36   -5.33   -4.85   -3.97   -2.78   -1.31    0.51    2.97    6.43   11.08
+    55.0    0.00   -0.14   -0.53   -1.13   -1.87   -2.70   -3.56   -4.36   -5.00   -5.36   -5.33   -4.85   -3.96   -2.76   -1.29    0.53    3.00    6.46   11.11
+    60.0    0.00   -0.14   -0.53   -1.13   -1.87   -2.70   -3.56   -4.36   -5.00   -5.36   -5.33   -4.86   -3.97   -2.76   -1.29    0.54    2.99    6.42   11.04
+    65.0    0.00   -0.14   -0.53   -1.13   -1.87   -2.70   -3.55   -4.35   -5.00   -5.37   -5.35   -4.88   -4.00   -2.79   -1.31    0.52    2.94    6.33   10.89
+    70.0    0.00   -0.14   -0.53   -1.13   -1.87   -2.70   -3.55   -4.35   -5.00   -5.38   -5.37   -4.91   -4.03   -2.82   -1.34    0.47    2.87    6.20   10.68
+    75.0    0.00   -0.14   -0.53   -1.13   -1.88   -2.70   -3.55   -4.35   -5.00   -5.39   -5.39   -4.94   -4.07   -2.87   -1.39    0.42    2.78    6.03   10.42
+    80.0    0.00   -0.14   -0.53   -1.14   -1.88   -2.71   -3.55   -4.35   -5.00   -5.40   -5.41   -4.98   -4.12   -2.91   -1.43    0.35    2.67    5.85   10.16
+    85.0    0.00   -0.14   -0.54   -1.14   -1.89   -2.71   -3.56   -4.35   -5.01   -5.41   -5.43   -5.01   -4.16   -2.96   -1.48    0.29    2.56    5.67    9.90
+    90.0    0.00   -0.14   -0.54   -1.15   -1.90   -2.72   -3.56   -4.36   -5.02   -5.42   -5.45   -5.03   -4.19   -2.99   -1.53    0.22    2.46    5.51    9.68
+    95.0    0.00   -0.14   -0.54   -1.15   -1.90   -2.73   -3.58   -4.37   -5.03   -5.43   -5.46   -5.05   -4.21   -3.02   -1.56    0.17    2.37    5.38    9.51
+   100.0    0.00   -0.14   -0.55   -1.16   -1.91   -2.75   -3.59   -4.39   -5.04   -5.44   -5.47   -5.06   -4.22   -3.03   -1.58    0.13    2.30    5.28    9.41
+   105.0    0.00   -0.14   -0.55   -1.17   -1.92   -2.76   -3.61   -4.40   -5.05   -5.45   -5.47   -5.06   -4.21   -3.03   -1.59    0.11    2.26    5.22    9.36
+   110.0    0.00   -0.14   -0.55   -1.17   -1.93   -2.77   -3.62   -4.42   -5.07   -5.46   -5.48   -5.05   -4.21   -3.02   -1.59    0.10    2.24    5.21    9.37
+   115.0    0.00   -0.15   -0.55   -1.18   -1.94   -2.78   -3.64   -4.44   -5.08   -5.47   -5.48   -5.05   -4.20   -3.01   -1.58    0.11    2.25    5.23    9.42
+   120.0    0.00   -0.15   -0.56   -1.18   -1.95   -2.79   -3.65   -4.45   -5.10   -5.48   -5.48   -5.05   -4.19   -3.00   -1.57    0.12    2.28    5.27    9.49
+   125.0    0.00   -0.15   -0.56   -1.18   -1.95   -2.80   -3.66   -4.46   -5.11   -5.49   -5.49   -5.05   -4.18   -2.99   -1.55    0.15    2.31    5.32    9.55
+   130.0    0.00   -0.15   -0.56   -1.19   -1.96   -2.80   -3.66   -4.47   -5.12   -5.50   -5.50   -5.06   -4.19   -2.98   -1.54    0.17    2.35    5.37    9.59
+   135.0    0.00   -0.15   -0.56   -1.19   -1.96   -2.80   -3.66   -4.47   -5.13   -5.51   -5.52   -5.07   -4.20   -2.99   -1.53    0.19    2.39    5.41    9.59
+   140.0    0.00   -0.15   -0.56   -1.19   -1.95   -2.80   -3.66   -4.47   -5.13   -5.53   -5.54   -5.09   -4.22   -3.00   -1.53    0.21    2.41    5.42    9.55
+   145.0    0.00   -0.15   -0.56   -1.19   -1.95   -2.79   -3.65   -4.46   -5.13   -5.54   -5.56   -5.12   -4.24   -3.02   -1.54    0.20    2.41    5.40    9.46
+   150.0    0.00   -0.15   -0.56   -1.18   -1.94   -2.78   -3.64   -4.45   -5.13   -5.55   -5.57   -5.14   -4.27   -3.04   -1.56    0.19    2.39    5.35    9.33
+   155.0    0.00   -0.15   -0.56   -1.18   -1.94   -2.77   -3.62   -4.44   -5.13   -5.55   -5.59   -5.17   -4.30   -3.07   -1.59    0.16    2.35    5.28    9.18
+   160.0    0.00   -0.15   -0.56   -1.18   -1.93   -2.76   -3.61   -4.43   -5.12   -5.55   -5.60   -5.18   -4.32   -3.10   -1.62    0.12    2.30    5.19    9.02
+   165.0    0.00   -0.15   -0.56   -1.18   -1.92   -2.75   -3.60   -4.42   -5.12   -5.55   -5.60   -5.19   -4.33   -3.12   -1.65    0.08    2.23    5.10    8.88
+   170.0    0.00   -0.15   -0.56   -1.17   -1.92   -2.74   -3.59   -4.41   -5.11   -5.55   -5.60   -5.19   -4.33   -3.13   -1.67    0.03    2.17    5.01    8.77
+   175.0    0.00   -0.15   -0.56   -1.17   -1.91   -2.73   -3.58   -4.40   -5.10   -5.54   -5.59   -5.18   -4.33   -3.13   -1.69    0.00    2.12    4.96    8.72
+   180.0    0.00   -0.15   -0.56   -1.17   -1.91   -2.73   -3.58   -4.40   -5.09   -5.53   -5.58   -5.16   -4.31   -3.12   -1.69   -0.02    2.09    4.93    8.73
+   185.0    0.00   -0.15   -0.56   -1.17   -1.91   -2.73   -3.58   -4.39   -5.09   -5.52   -5.56   -5.14   -4.28   -3.09   -1.68   -0.01    2.09    4.96    8.81
+   190.0    0.00   -0.15   -0.56   -1.17   -1.91   -2.73   -3.58   -4.39   -5.08   -5.50   -5.53   -5.11   -4.24   -3.06   -1.64    0.02    2.13    5.03    8.95
+   195.0    0.00   -0.15   -0.56   -1.17   -1.91   -2.73   -3.58   -4.39   -5.07   -5.49   -5.51   -5.07   -4.20   -3.01   -1.59    0.08    2.21    5.15    9.15
+   200.0    0.00   -0.15   -0.56   -1.16   -1.91   -2.73   -3.58   -4.39   -5.07   -5.47   -5.49   -5.04   -4.16   -2.95   -1.52    0.17    2.33    5.31    9.39
+   205.0    0.00   -0.15   -0.55   -1.16   -1.91   -2.73   -3.58   -4.39   -5.06   -5.46   -5.47   -5.01   -4.12   -2.89   -1.43    0.28    2.47    5.49    9.64
+   210.0    0.00   -0.15   -0.55   -1.16   -1.91   -2.73   -3.58   -4.39   -5.06   -5.45   -5.45   -4.98   -4.07   -2.82   -1.34    0.41    2.63    5.69    9.88
+   215.0    0.00   -0.15   -0.55   -1.16   -1.91   -2.73   -3.58   -4.39   -5.06   -5.45   -5.44   -4.96   -4.03   -2.76   -1.24    0.54    2.79    5.88   10.10
+   220.0    0.00   -0.15   -0.55   -1.16   -1.91   -2.73   -3.58   -4.39   -5.06   -5.44   -5.43   -4.94   -4.00   -2.70   -1.15    0.66    2.94    6.04   10.28
+   225.0    0.00   -0.14   -0.55   -1.16   -1.90   -2.73   -3.58   -4.39   -5.06   -5.45   -5.43   -4.93   -3.97   -2.65   -1.07    0.76    3.05    6.16   10.40
+   230.0    0.00   -0.14   -0.55   -1.15   -1.90   -2.73   -3.59   -4.40   -5.06   -5.45   -5.43   -4.92   -3.94   -2.61   -1.02    0.83    3.12    6.23   10.46
+   235.0    0.00   -0.14   -0.54   -1.15   -1.90   -2.73   -3.59   -4.40   -5.07   -5.45   -5.43   -4.91   -3.93   -2.58   -0.99    0.85    3.15    6.24   10.46
+   240.0    0.00   -0.14   -0.54   -1.15   -1.89   -2.73   -3.59   -4.41   -5.08   -5.46   -5.43   -4.91   -3.92   -2.58   -0.99    0.84    3.11    6.20   10.40
+   245.0    0.00   -0.14   -0.54   -1.14   -1.89   -2.73   -3.59   -4.41   -5.09   -5.47   -5.43   -4.91   -3.92   -2.59   -1.02    0.78    3.03    6.10   10.30
+   250.0    0.00   -0.14   -0.54   -1.14   -1.89   -2.72   -3.59   -4.42   -5.09   -5.48   -5.44   -4.91   -3.93   -2.62   -1.08    0.69    2.91    5.96   10.17
+   255.0    0.00   -0.14   -0.54   -1.14   -1.88   -2.72   -3.59   -4.42   -5.10   -5.49   -5.45   -4.92   -3.96   -2.67   -1.17    0.56    2.75    5.80   10.01
+   260.0    0.00   -0.14   -0.53   -1.13   -1.88   -2.72   -3.59   -4.43   -5.11   -5.49   -5.45   -4.94   -3.99   -2.73   -1.27    0.41    2.58    5.63    9.86
+   265.0    0.00   -0.14   -0.53   -1.13   -1.88   -2.72   -3.59   -4.43   -5.11   -5.50   -5.46   -4.95   -4.03   -2.80   -1.39    0.26    2.41    5.47    9.73
+   270.0    0.00   -0.14   -0.53   -1.13   -1.87   -2.71   -3.59   -4.43   -5.11   -5.50   -5.47   -4.97   -4.07   -2.88   -1.50    0.12    2.26    5.33    9.62
+   275.0    0.00   -0.14   -0.53   -1.13   -1.87   -2.71   -3.59   -4.43   -5.11   -5.50   -5.47   -4.99   -4.11   -2.96   -1.61    0.00    2.14    5.23    9.55
+   280.0    0.00   -0.14   -0.53   -1.12   -1.87   -2.71   -3.58   -4.42   -5.10   -5.49   -5.47   -5.01   -4.16   -3.02   -1.69   -0.09    2.06    5.17    9.51
+   285.0    0.00   -0.14   -0.53   -1.12   -1.87   -2.70   -3.58   -4.41   -5.09   -5.48   -5.48   -5.03   -4.19   -3.08   -1.76   -0.15    2.02    5.16    9.51
+   290.0    0.00   -0.14   -0.53   -1.12   -1.87   -2.70   -3.57   -4.40   -5.08   -5.47   -5.48   -5.04   -4.22   -3.12   -1.80   -0.18    2.02    5.18    9.55
+   295.0    0.00   -0.14   -0.53   -1.12   -1.87   -2.70   -3.56   -4.38   -5.06   -5.46   -5.47   -5.05   -4.24   -3.14   -1.81   -0.17    2.05    5.23    9.61
+   300.0    0.00   -0.14   -0.53   -1.12   -1.87   -2.69   -3.55   -4.37   -5.04   -5.45   -5.47   -5.06   -4.26   -3.15   -1.80   -0.13    2.11    5.30    9.69
+   305.0    0.00   -0.14   -0.53   -1.13   -1.87   -2.69   -3.54   -4.36   -5.03   -5.44   -5.47   -5.06   -4.26   -3.14   -1.77   -0.08    2.18    5.37    9.76
+   310.0    0.00   -0.14   -0.53   -1.13   -1.87   -2.69   -3.54   -4.34   -5.01   -5.42   -5.46   -5.06   -4.26   -3.12   -1.73   -0.02    2.24    5.43    9.81
+   315.0    0.00   -0.14   -0.53   -1.13   -1.87   -2.68   -3.53   -4.33   -5.00   -5.42   -5.46   -5.06   -4.25   -3.10   -1.69    0.03    2.30    5.47    9.85
+   320.0    0.00   -0.14   -0.53   -1.13   -1.87   -2.68   -3.52   -4.32   -4.99   -5.41   -5.46   -5.07   -4.25   -3.08   -1.65    0.08    2.33    5.47    9.84
+   325.0    0.00   -0.14   -0.53   -1.13   -1.87   -2.68   -3.52   -4.31   -4.98   -5.41   -5.46   -5.07   -4.25   -3.07   -1.63    0.10    2.33    5.44    9.80
+   330.0    0.00   -0.14   -0.53   -1.14   -1.87   -2.68   -3.51   -4.31   -4.98   -5.41   -5.47   -5.08   -4.25   -3.06   -1.61    0.11    2.31    5.38    9.72
+   335.0    0.00   -0.14   -0.53   -1.14   -1.87   -2.68   -3.51   -4.30   -4.98   -5.41   -5.48   -5.10   -4.26   -3.07   -1.62    0.09    2.27    5.30    9.61
+   340.0    0.00   -0.14   -0.54   -1.14   -1.87   -2.68   -3.50   -4.30   -4.97   -5.42   -5.49   -5.12   -4.29   -3.09   -1.64    0.06    2.21    5.20    9.49
+   345.0    0.00   -0.14   -0.54   -1.14   -1.88   -2.68   -3.50   -4.29   -4.97   -5.42   -5.51   -5.14   -4.31   -3.12   -1.67    0.02    2.15    5.10    9.36
+   350.0    0.00   -0.14   -0.54   -1.14   -1.88   -2.68   -3.50   -4.29   -4.98   -5.43   -5.52   -5.16   -4.34   -3.15   -1.70   -0.02    2.09    5.02    9.24
+   355.0    0.00   -0.14   -0.54   -1.14   -1.88   -2.68   -3.50   -4.29   -4.98   -5.44   -5.53   -5.18   -4.36   -3.18   -1.73   -0.05    2.05    4.97    9.17
+   360.0    0.00   -0.14   -0.54   -1.14   -1.88   -2.68   -3.50   -4.30   -4.98   -5.44   -5.54   -5.19   -4.38   -3.20   -1.76   -0.07    2.04    4.97    9.14
+   G02                                                      END OF FREQUENCY    
+   R01                                                      START OF FREQUENCY  
+      0.45      1.02     89.81                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.25   -1.00   -2.15   -3.58   -5.12   -6.60   -7.86   -8.76   -9.20   -9.14   -8.57   -7.50   -5.89   -3.62   -0.57    3.38    8.23   13.67
+     0.0    0.00   -0.25   -0.99   -2.15   -3.58   -5.12   -6.60   -7.86   -8.73   -9.15   -9.05   -8.46   -7.37   -5.79   -3.62   -0.70    3.11    7.80   13.05
+     5.0    0.00   -0.26   -1.00   -2.15   -3.57   -5.12   -6.60   -7.87   -8.77   -9.20   -9.12   -8.52   -7.42   -5.83   -3.65   -0.75    3.02    7.70   13.00
+    10.0    0.00   -0.26   -1.00   -2.16   -3.58   -5.12   -6.61   -7.89   -8.80   -9.25   -9.19   -8.59   -7.49   -5.87   -3.68   -0.80    2.96    7.62   12.99
+    15.0    0.00   -0.26   -1.01   -2.16   -3.58   -5.13   -6.62   -7.91   -8.83   -9.31   -9.26   -8.67   -7.56   -5.92   -3.72   -0.83    2.92    7.58   12.99
+    20.0    0.00   -0.27   -1.01   -2.17   -3.59   -5.12   -6.63   -7.93   -8.89   -9.37   -9.34   -8.76   -7.63   -5.99   -3.75   -0.85    2.90    7.58   13.04
+    25.0    0.00   -0.27   -1.02   -2.17   -3.59   -5.13   -6.65   -7.96   -8.92   -9.44   -9.41   -8.84   -7.70   -6.04   -3.77   -0.83    2.93    7.63   13.13
+    30.0    0.00   -0.26   -1.02   -2.17   -3.60   -5.14   -6.66   -7.98   -8.97   -9.49   -9.48   -8.90   -7.77   -6.07   -3.78   -0.81    2.99    7.71   13.23
+    35.0    0.00   -0.26   -1.02   -2.19   -3.60   -5.17   -6.68   -8.01   -9.00   -9.53   -9.54   -8.96   -7.81   -6.10   -3.78   -0.77    3.08    7.83   13.35
+    40.0    0.00   -0.26   -1.02   -2.19   -3.62   -5.18   -6.70   -8.03   -9.02   -9.56   -9.57   -8.99   -7.85   -6.12   -3.78   -0.72    3.18    7.97   13.48
+    45.0    0.00   -0.27   -1.03   -2.19   -3.63   -5.19   -6.72   -8.05   -9.04   -9.57   -9.57   -9.00   -7.86   -6.13   -3.77   -0.67    3.28    8.11   13.62
+    50.0    0.00   -0.27   -1.03   -2.20   -3.64   -5.22   -6.74   -8.06   -9.04   -9.56   -9.54   -8.98   -7.84   -6.13   -3.75   -0.62    3.39    8.26   13.75
+    55.0    0.00   -0.27   -1.03   -2.20   -3.65   -5.22   -6.75   -8.08   -9.03   -9.53   -9.50   -8.94   -7.81   -6.09   -3.73   -0.56    3.48    8.39   13.88
+    60.0    0.00   -0.27   -1.03   -2.20   -3.66   -5.24   -6.77   -8.08   -9.02   -9.50   -9.45   -8.88   -7.76   -6.07   -3.70   -0.53    3.56    8.50   14.00
+    65.0    0.00   -0.27   -1.03   -2.21   -3.66   -5.25   -6.78   -8.07   -9.00   -9.45   -9.39   -8.81   -7.70   -6.02   -3.67   -0.51    3.61    8.60   14.10
+    70.0    0.00   -0.27   -1.03   -2.22   -3.67   -5.25   -6.78   -8.06   -8.97   -9.40   -9.32   -8.74   -7.64   -5.97   -3.65   -0.48    3.65    8.67   14.19
+    75.0    0.00   -0.27   -1.03   -2.22   -3.67   -5.25   -6.77   -8.04   -8.94   -9.35   -9.26   -8.66   -7.58   -5.94   -3.63   -0.48    3.67    8.71   14.24
+    80.0    0.00   -0.27   -1.03   -2.21   -3.67   -5.25   -6.77   -8.03   -8.91   -9.30   -9.20   -8.61   -7.53   -5.91   -3.61   -0.46    3.67    8.72   14.28
+    85.0    0.00   -0.27   -1.04   -2.21   -3.66   -5.24   -6.75   -8.01   -8.88   -9.28   -9.16   -8.56   -7.48   -5.88   -3.60   -0.45    3.66    8.72   14.31
+    90.0    0.00   -0.27   -1.03   -2.21   -3.65   -5.23   -6.74   -7.99   -8.86   -9.24   -9.14   -8.53   -7.46   -5.85   -3.57   -0.46    3.64    8.69   14.32
+    95.0    0.00   -0.27   -1.03   -2.20   -3.65   -5.21   -6.71   -7.98   -8.83   -9.24   -9.13   -8.52   -7.44   -5.84   -3.57   -0.47    3.61    8.66   14.30
+   100.0    0.00   -0.27   -1.03   -2.19   -3.64   -5.21   -6.70   -7.96   -8.83   -9.22   -9.12   -8.53   -7.44   -5.82   -3.56   -0.48    3.60    8.62   14.29
+   105.0    0.00   -0.27   -1.03   -2.20   -3.63   -5.20   -6.69   -7.95   -8.83   -9.22   -9.13   -8.53   -7.44   -5.83   -3.56   -0.48    3.58    8.58   14.27
+   110.0    0.00   -0.27   -1.02   -2.19   -3.62   -5.19   -6.68   -7.95   -8.82   -9.22   -9.14   -8.54   -7.46   -5.83   -3.57   -0.49    3.55    8.54   14.24
+   115.0    0.00   -0.27   -1.02   -2.17   -3.62   -5.17   -6.67   -7.94   -8.82   -9.23   -9.15   -8.55   -7.46   -5.83   -3.56   -0.49    3.53    8.51   14.21
+   120.0    0.00   -0.27   -1.02   -2.17   -3.61   -5.16   -6.67   -7.92   -8.82   -9.23   -9.13   -8.54   -7.45   -5.83   -3.55   -0.49    3.51    8.48   14.19
+   125.0    0.00   -0.27   -1.02   -2.17   -3.61   -5.16   -6.66   -7.92   -8.80   -9.21   -9.12   -8.53   -7.44   -5.82   -3.55   -0.50    3.50    8.46   14.16
+   130.0    0.00   -0.27   -1.02   -2.17   -3.61   -5.16   -6.66   -7.91   -8.78   -9.19   -9.10   -8.50   -7.42   -5.79   -3.55   -0.50    3.50    8.45   14.13
+   135.0    0.00   -0.27   -1.02   -2.17   -3.61   -5.15   -6.65   -7.90   -8.77   -9.16   -9.06   -8.46   -7.39   -5.77   -3.53   -0.49    3.50    8.46   14.10
+   140.0    0.00   -0.27   -1.01   -2.16   -3.60   -5.15   -6.64   -7.88   -8.75   -9.13   -9.03   -8.43   -7.35   -5.75   -3.50   -0.47    3.53    8.46   14.06
+   145.0    0.00   -0.27   -1.01   -2.16   -3.60   -5.15   -6.63   -7.86   -8.71   -9.10   -8.98   -8.39   -7.31   -5.70   -3.48   -0.43    3.55    8.46   14.01
+   150.0    0.00   -0.26   -1.01   -2.16   -3.60   -5.14   -6.63   -7.85   -8.69   -9.07   -8.95   -8.35   -7.28   -5.67   -3.45   -0.40    3.57    8.46   13.96
+   155.0    0.00   -0.26   -1.01   -2.16   -3.60   -5.14   -6.62   -7.83   -8.66   -9.04   -8.91   -8.32   -7.24   -5.64   -3.41   -0.37    3.60    8.47   13.89
+   160.0    0.00   -0.26   -1.01   -2.16   -3.60   -5.13   -6.61   -7.82   -8.66   -9.03   -8.90   -8.30   -7.23   -5.63   -3.39   -0.35    3.61    8.44   13.81
+   165.0    0.00   -0.26   -1.01   -2.17   -3.59   -5.12   -6.59   -7.81   -8.65   -9.03   -8.91   -8.31   -7.23   -5.61   -3.37   -0.34    3.60    8.40   13.73
+   170.0    0.00   -0.26   -1.00   -2.16   -3.59   -5.11   -6.58   -7.80   -8.65   -9.03   -8.93   -8.33   -7.24   -5.63   -3.37   -0.34    3.58    8.34   13.63
+   175.0    0.00   -0.26   -1.01   -2.16   -3.58   -5.10   -6.57   -7.79   -8.65   -9.05   -8.96   -8.37   -7.28   -5.65   -3.38   -0.36    3.53    8.26   13.54
+   180.0    0.00   -0.26   -1.00   -2.16   -3.57   -5.09   -6.56   -7.80   -8.66   -9.08   -9.00   -8.43   -7.33   -5.68   -3.42   -0.40    3.45    8.16   13.46
+   185.0    0.00   -0.26   -1.00   -2.15   -3.56   -5.08   -6.55   -7.79   -8.67   -9.11   -9.05   -8.48   -7.38   -5.72   -3.46   -0.47    3.36    8.06   13.40
+   190.0    0.00   -0.25   -1.00   -2.16   -3.56   -5.08   -6.54   -7.79   -8.69   -9.14   -9.10   -8.53   -7.43   -5.79   -3.53   -0.55    3.26    7.95   13.36
+   195.0    0.00   -0.26   -1.00   -2.15   -3.56   -5.06   -6.54   -7.79   -8.69   -9.17   -9.14   -8.58   -7.49   -5.85   -3.60   -0.64    3.17    7.88   13.35
+   200.0    0.00   -0.26   -1.00   -2.14   -3.55   -5.06   -6.53   -7.77   -8.69   -9.18   -9.16   -8.61   -7.54   -5.91   -3.67   -0.74    3.07    7.81   13.36
+   205.0    0.00   -0.25   -0.99   -2.15   -3.55   -5.06   -6.52   -7.77   -8.70   -9.18   -9.17   -8.65   -7.58   -5.97   -3.75   -0.82    3.00    7.80   13.43
+   210.0    0.00   -0.25   -1.00   -2.14   -3.54   -5.06   -6.52   -7.77   -8.69   -9.18   -9.17   -8.65   -7.60   -6.00   -3.81   -0.87    2.98    7.82   13.50
+   215.0    0.00   -0.26   -0.99   -2.14   -3.55   -5.06   -6.51   -7.76   -8.68   -9.16   -9.16   -8.63   -7.61   -6.04   -3.85   -0.89    3.00    7.88   13.61
+   220.0    0.00   -0.25   -1.01   -2.14   -3.55   -5.05   -6.51   -7.76   -8.66   -9.14   -9.13   -8.62   -7.61   -6.06   -3.86   -0.88    3.05    7.99   13.72
+   225.0    0.00   -0.25   -1.00   -2.15   -3.55   -5.06   -6.52   -7.75   -8.65   -9.10   -9.10   -8.61   -7.62   -6.05   -3.86   -0.84    3.15    8.12   13.83
+   230.0    0.00   -0.25   -1.00   -2.14   -3.55   -5.08   -6.52   -7.74   -8.63   -9.08   -9.07   -8.58   -7.60   -6.04   -3.83   -0.77    3.28    8.28   13.92
+   235.0    0.00   -0.24   -1.00   -2.14   -3.55   -5.07   -6.53   -7.74   -8.62   -9.06   -9.05   -8.57   -7.57   -6.02   -3.78   -0.67    3.43    8.45   14.00
+   240.0    0.00   -0.25   -0.99   -2.14   -3.55   -5.08   -6.53   -7.76   -8.62   -9.06   -9.04   -8.54   -7.56   -6.00   -3.72   -0.57    3.58    8.58   14.03
+   245.0    0.00   -0.25   -0.99   -2.14   -3.56   -5.08   -6.54   -7.76   -8.62   -9.05   -9.03   -8.55   -7.55   -5.97   -3.66   -0.46    3.70    8.70   14.03
+   250.0    0.00   -0.25   -0.99   -2.13   -3.56   -5.08   -6.53   -7.77   -8.63   -9.06   -9.04   -8.54   -7.54   -5.95   -3.61   -0.37    3.80    8.77   13.99
+   255.0    0.00   -0.25   -0.99   -2.13   -3.55   -5.09   -6.54   -7.77   -8.64   -9.08   -9.06   -8.56   -7.54   -5.93   -3.56   -0.32    3.84    8.77   13.93
+   260.0    0.00   -0.24   -0.98   -2.12   -3.55   -5.07   -6.55   -7.79   -8.66   -9.10   -9.09   -8.58   -7.54   -5.91   -3.53   -0.30    3.84    8.71   13.85
+   265.0    0.00   -0.24   -0.98   -2.12   -3.54   -5.08   -6.55   -7.79   -8.68   -9.12   -9.12   -8.59   -7.55   -5.91   -3.53   -0.32    3.79    8.62   13.74
+   270.0    0.00   -0.24   -0.98   -2.11   -3.54   -5.06   -6.55   -7.80   -8.70   -9.17   -9.14   -8.61   -7.55   -5.91   -3.54   -0.36    3.70    8.49   13.64
+   275.0    0.00   -0.24   -0.98   -2.10   -3.53   -5.06   -6.54   -7.81   -8.72   -9.19   -9.17   -8.63   -7.56   -5.91   -3.57   -0.43    3.57    8.34   13.55
+   280.0    0.00   -0.24   -0.98   -2.10   -3.52   -5.05   -6.54   -7.81   -8.73   -9.21   -9.18   -8.64   -7.57   -5.93   -3.60   -0.51    3.43    8.19   13.49
+   285.0    0.00   -0.24   -0.97   -2.10   -3.50   -5.05   -6.53   -7.81   -8.74   -9.21   -9.19   -8.64   -7.57   -5.94   -3.65   -0.60    3.29    8.05   13.45
+   290.0    0.00   -0.24   -0.97   -2.09   -3.50   -5.04   -6.53   -7.81   -8.73   -9.21   -9.19   -8.64   -7.57   -5.95   -3.69   -0.68    3.18    7.95   13.43
+   295.0    0.00   -0.24   -0.98   -2.10   -3.50   -5.04   -6.52   -7.79   -8.73   -9.20   -9.18   -8.64   -7.56   -5.96   -3.72   -0.75    3.10    7.89   13.45
+   300.0    0.00   -0.24   -0.97   -2.10   -3.50   -5.04   -6.53   -7.80   -8.72   -9.19   -9.17   -8.62   -7.56   -5.95   -3.74   -0.78    3.06    7.87   13.48
+   305.0    0.00   -0.24   -0.97   -2.09   -3.50   -5.04   -6.53   -7.79   -8.71   -9.17   -9.14   -8.59   -7.53   -5.95   -3.75   -0.78    3.07    7.89   13.52
+   310.0    0.00   -0.24   -0.96   -2.09   -3.51   -5.03   -6.53   -7.80   -8.71   -9.15   -9.11   -8.56   -7.51   -5.93   -3.74   -0.76    3.11    7.95   13.56
+   315.0    0.00   -0.25   -0.97   -2.10   -3.51   -5.04   -6.53   -7.79   -8.69   -9.13   -9.08   -8.53   -7.48   -5.91   -3.71   -0.73    3.17    8.03   13.60
+   320.0    0.00   -0.24   -0.96   -2.10   -3.52   -5.05   -6.54   -7.80   -8.69   -9.10   -9.03   -8.49   -7.45   -5.88   -3.68   -0.68    3.26    8.11   13.61
+   325.0    0.00   -0.24   -0.97   -2.11   -3.53   -5.08   -6.55   -7.80   -8.68   -9.09   -9.00   -8.46   -7.41   -5.84   -3.64   -0.63    3.33    8.17   13.60
+   330.0    0.00   -0.25   -0.98   -2.12   -3.54   -5.08   -6.56   -7.81   -8.67   -9.07   -8.99   -8.42   -7.39   -5.82   -3.61   -0.58    3.39    8.22   13.57
+   335.0    0.00   -0.25   -0.97   -2.12   -3.54   -5.10   -6.58   -7.82   -8.67   -9.06   -8.97   -8.40   -7.35   -5.79   -3.58   -0.55    3.41    8.23   13.49
+   340.0    0.00   -0.25   -0.98   -2.13   -3.55   -5.11   -6.59   -7.82   -8.68   -9.05   -8.96   -8.38   -7.33   -5.77   -3.56   -0.54    3.40    8.21   13.42
+   345.0    0.00   -0.25   -0.99   -2.14   -3.56   -5.11   -6.58   -7.83   -8.68   -9.07   -8.97   -8.37   -7.32   -5.76   -3.57   -0.55    3.37    8.14   13.32
+   350.0    0.00   -0.25   -0.99   -2.14   -3.56   -5.12   -6.60   -7.84   -8.69   -9.09   -8.98   -8.38   -7.33   -5.76   -3.57   -0.59    3.30    8.04   13.22
+   355.0    0.00   -0.25   -0.99   -2.15   -3.57   -5.12   -6.60   -7.85   -8.71   -9.12   -9.01   -8.41   -7.35   -5.77   -3.59   -0.63    3.21    7.92   13.12
+   360.0    0.00   -0.25   -0.99   -2.15   -3.58   -5.12   -6.60   -7.86   -8.73   -9.15   -9.05   -8.46   -7.37   -5.79   -3.62   -0.70    3.11    7.80   13.05
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+     -0.04     -0.35    120.03                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.15   -0.60   -1.28   -2.12   -3.07   -4.06   -5.04   -5.88   -6.47   -6.68   -6.40   -5.68   -4.59   -3.24   -1.63    0.43    3.30    7.28
+     0.0    0.00   -0.15   -0.58   -1.24   -2.09   -3.02   -4.01   -5.01   -5.89   -6.57   -6.86   -6.68   -6.01   -4.94   -3.59   -1.99   -0.04    2.64    6.41
+     5.0    0.00   -0.15   -0.58   -1.24   -2.06   -3.00   -4.00   -4.99   -5.89   -6.56   -6.86   -6.67   -6.01   -4.94   -3.60   -2.02   -0.04    2.66    6.46
+    10.0    0.00   -0.15   -0.57   -1.22   -2.05   -2.99   -3.98   -4.99   -5.89   -6.56   -6.85   -6.66   -6.00   -4.93   -3.59   -2.01   -2.11    2.74    6.59
+    15.0    0.00   -0.14   -0.55   -1.21   -2.04   -2.98   -3.98   -4.98   -5.88   -6.54   -6.83   -6.63   -5.96   -4.91   -3.57   -1.98    0.06    2.87    6.80
+    20.0    0.00   -0.14   -0.55   -1.21   -2.03   -2.97   -3.98   -4.98   -5.88   -6.54   -6.80   -6.59   -5.92   -4.86   -3.53   -1.94    0.14    3.03    7.08
+    25.0    0.00   -0.13   -0.55   -1.21   -2.03   -2.97   -3.98   -4.99   -5.89   -6.54   -6.77   -6.55   -5.86   -4.80   -3.48   -1.87    0.25    3.23    7.38
+    30.0    0.00   -0.13   -0.54   -1.21   -2.03   -2.97   -4.00   -5.01   -5.91   -6.53   -6.75   -6.51   -5.80   -4.74   -3.42   -1.79    0.37    3.44    7.70
+    35.0    0.00   -0.13   -0.54   -1.20   -2.03   -2.98   -4.01   -5.03   -5.91   -6.52   -6.73   -6.45   -5.74   -4.68   -3.36   -1.71    0.50    3.67    8.01
+    40.0    0.00   -0.13   -0.54   -1.20   -2.03   -3.00   -4.02   -5.03   -5.92   -6.52   -6.71   -6.42   -5.69   -4.62   -3.29   -1.63    0.64    3.86    8.26
+    45.0    0.00   -0.13   -0.55   -1.20   -2.04   -3.01   -4.05   -5.06   -5.93   -6.52   -6.69   -6.39   -5.64   -4.57   -3.23   -1.55    0.74    4.01    8.46
+    50.0    0.00   -0.13   -0.55   -1.21   -2.06   -3.03   -4.06   -5.07   -5.93   -6.51   -6.67   -6.35   -5.61   -4.55   -3.19   -1.48    0.84    4.12    8.57
+    55.0    0.00   -0.14   -0.56   -1.22   -2.06   -3.03   -4.07   -5.07   -5.93   -6.49   -6.65   -6.34   -5.60   -4.52   -3.17   -1.46    0.88    4.17    8.60
+    60.0    0.00   -0.14   -0.56   -1.23   -2.07   -3.05   -4.08   -5.07   -5.92   -6.49   -6.64   -6.34   -5.60   -4.52   -3.16   -1.44    0.89    4.15    8.53
+    65.0    0.00   -0.14   -0.57   -1.23   -2.08   -3.06   -4.08   -5.06   -5.91   -6.47   -6.65   -6.34   -5.62   -4.55   -3.18   -1.45    0.84    4.07    8.38
+    70.0    0.00   -0.14   -0.57   -1.25   -2.10   -3.07   -4.09   -5.06   -5.90   -6.47   -6.64   -6.36   -5.64   -4.57   -3.21   -1.51    0.77    3.94    8.17
+    75.0    0.00   -0.14   -0.57   -1.26   -2.12   -3.08   -4.09   -5.06   -5.88   -6.46   -6.64   -6.38   -5.67   -4.62   -3.27   -1.57    0.68    3.76    7.91
+    80.0    0.00   -0.14   -0.57   -1.27   -2.12   -3.09   -4.09   -5.05   -5.88   -6.45   -6.65   -6.40   -5.71   -4.65   -3.31   -1.64    0.54    3.55    7.65
+    85.0    0.00   -0.15   -0.59   -1.28   -2.14   -3.10   -4.10   -5.05   -5.88   -6.46   -6.67   -6.42   -5.74   -4.70   -3.35   -1.71    0.40    3.34    7.38
+    90.0    0.00   -0.15   -0.59   -1.29   -2.16   -3.11   -4.10   -5.05   -5.88   -6.47   -6.69   -6.44   -5.77   -4.71   -3.39   -1.79    0.27    3.14    7.15
+    95.0    0.00   -0.15   -0.60   -1.30   -2.16   -3.12   -4.12   -5.06   -5.90   -6.48   -6.70   -6.47   -5.79   -4.73   -3.41   -1.84    0.16    2.97    6.96
+   100.0    0.00   -0.15   -0.61   -1.31   -2.17   -3.14   -4.12   -5.08   -5.91   -6.51   -6.73   -6.49   -5.80   -4.72   -3.41   -1.87    0.08    2.83    6.82
+   105.0    0.00   -0.15   -0.61   -1.32   -2.18   -3.15   -4.14   -5.09   -5.93   -6.53   -6.74   -6.50   -5.78   -4.71   -3.39   -1.87    0.04    2.74    6.74
+   110.0    0.00   -0.15   -0.61   -1.32   -2.19   -3.15   -4.15   -5.11   -5.96   -6.56   -6.77   -6.50   -5.77   -4.67   -3.36   -1.85    0.02    2.71    6.72
+   115.0    0.00   -0.16   -0.61   -1.33   -2.20   -3.16   -4.16   -5.14   -5.98   -6.58   -6.78   -6.50   -5.75   -4.64   -3.31   -1.80    0.06    2.73    6.76
+   120.0    0.00   -0.16   -0.62   -1.33   -2.20   -3.17   -4.17   -5.15   -6.01   -6.60   -6.79   -6.50   -5.73   -4.60   -3.26   -1.75    0.12    2.79    6.82
+   125.0    0.00   -0.16   -0.62   -1.33   -2.20   -3.17   -4.18   -5.16   -6.02   -6.61   -6.80   -6.49   -5.70   -4.56   -3.20   -1.68    0.19    2.87    6.89
+   130.0    0.00   -0.16   -0.62   -1.33   -2.20   -3.17   -4.18   -5.16   -6.02   -6.61   -6.80   -6.49   -5.69   -4.53   -3.16   -1.62    0.27    2.97    6.97
+   135.0    0.00   -0.16   -0.62   -1.32   -2.20   -3.16   -4.17   -5.16   -6.02   -6.61   -6.80   -6.48   -5.68   -4.51   -3.13   -1.57    0.36    3.06    7.02
+   140.0    0.00   -0.16   -0.62   -1.32   -2.18   -3.15   -4.16   -5.15   -6.01   -6.62   -6.80   -6.47   -5.68   -4.51   -3.11   -1.53    0.42    3.13    7.05
+   145.0    0.00   -0.16   -0.61   -1.32   -2.18   -3.14   -4.15   -5.14   -6.00   -6.61   -6.80   -6.48   -5.68   -4.51   -3.12   -1.53    0.44    3.16    7.02
+   150.0    0.00   -0.16   -0.61   -1.31   -2.16   -3.12   -4.13   -5.12   -5.99   -6.60   -6.78   -6.48   -5.70   -4.53   -3.15   -1.55    0.44    3.16    6.95
+   155.0    0.00   -0.16   -0.61   -1.30   -2.15   -3.11   -4.11   -5.10   -5.98   -6.58   -6.78   -6.49   -5.71   -4.57   -3.19   -1.58    0.41    3.12    6.85
+   160.0    0.00   -0.16   -0.61   -1.30   -2.14   -3.09   -4.10   -5.09   -5.96   -6.57   -6.78   -6.49   -5.73   -4.61   -3.24   -1.65    0.35    3.04    6.70
+   165.0    0.00   -0.16   -0.60   -1.29   -2.13   -3.08   -4.08   -5.08   -5.96   -6.56   -6.77   -6.49   -5.74   -4.64   -3.29   -1.71    0.26    2.94    6.55
+   170.0    0.00   -0.16   -0.60   -1.28   -2.12   -3.06   -4.07   -5.07   -5.94   -6.56   -6.76   -6.49   -5.75   -4.66   -3.33   -1.78    0.18    2.83    6.41
+   175.0    0.00   -0.16   -0.60   -1.28   -2.11   -3.05   -4.06   -5.05   -5.93   -6.54   -6.75   -6.48   -5.76   -4.68   -3.36   -1.83    0.12    2.75    6.30
+   180.0    0.00   -0.16   -0.60   -1.27   -2.11   -3.05   -4.05   -5.05   -5.91   -6.53   -6.74   -6.46   -5.75   -4.67   -3.38   -1.85    0.07    2.69    6.23
+   185.0    0.00   -0.16   -0.60   -1.27   -2.11   -3.05   -4.04   -5.03   -5.91   -6.51   -6.72   -6.44   -5.72   -4.65   -3.37   -1.85    0.06    2.69    6.24
+   190.0    0.00   -0.16   -0.60   -1.27   -2.11   -3.05   -4.04   -5.02   -5.89   -6.49   -6.68   -6.41   -5.68   -4.62   -3.33   -1.81    0.10    2.74    6.32
+   195.0    0.00   -0.16   -0.61   -1.28   -2.11   -3.05   -4.04   -5.01   -5.86   -6.46   -6.65   -6.37   -5.64   -4.57   -3.28   -1.75    0.19    2.85    6.49
+   200.0    0.00   -0.16   -0.61   -1.27   -2.11   -3.05   -4.03   -4.99   -5.84   -6.41   -6.61   -6.32   -5.59   -4.50   -3.20   -1.65    0.33    3.04    6.73
+   205.0    0.00   -0.16   -0.60   -1.28   -2.11   -3.05   -4.03   -4.99   -5.81   -6.38   -6.56   -6.27   -5.53   -4.44   -3.11   -1.52    0.50    3.26    7.02
+   210.0    0.00   -0.17   -0.61   -1.28   -2.12   -3.05   -4.02   -4.97   -5.79   -6.34   -6.51   -6.21   -5.47   -4.37   -3.02   -1.39    0.69    3.52    7.35
+   215.0    0.00   -0.17   -0.61   -1.29   -2.12   -3.05   -4.02   -4.96   -5.77   -6.30   -6.46   -6.17   -5.41   -4.31   -2.92   -1.25    0.88    3.79    7.69
+   220.0    0.00   -0.17   -0.62   -1.29   -2.13   -3.05   -4.02   -4.95   -5.74   -6.27   -6.42   -6.12   -5.38   -4.25   -2.84   -1.12    1.08    4.04    8.01
+   225.0    0.00   -0.16   -0.62   -1.30   -2.13   -3.06   -4.02   -4.94   -5.73   -6.26   -6.40   -6.09   -5.34   -4.21   -2.77   -1.02    1.22    4.25    8.27
+   230.0    0.00   -0.17   -0.62   -1.30   -2.14   -3.07   -4.03   -4.95   -5.72   -6.24   -6.39   -6.08   -5.31   -4.18   -2.73   -0.95    1.32    4.40    8.47
+   235.0    0.00   -0.17   -0.62   -1.30   -2.15   -3.08   -4.04   -4.95   -5.73   -6.24   -6.39   -6.07   -5.31   -4.16   -2.71   -0.92    1.39    4.48    8.58
+   240.0    0.00   -0.17   -0.62   -1.31   -2.15   -3.08   -4.05   -4.97   -5.75   -6.26   -6.39   -6.08   -5.30   -4.17   -2.71   -0.93    1.38    4.49    8.58
+   245.0    0.00   -0.17   -0.63   -1.31   -2.15   -3.09   -4.05   -4.98   -5.77   -6.29   -6.42   -6.09   -5.32   -4.18   -2.73   -0.96    1.32    4.41    8.50
+   250.0    0.00   -0.17   -0.64   -1.32   -2.15   -3.09   -4.06   -5.00   -5.79   -6.32   -6.46   -6.12   -5.35   -4.22   -2.78   -1.04    1.22    4.27    8.35
+   255.0    0.00   -0.18   -0.64   -1.32   -2.15   -3.10   -4.07   -5.01   -5.81   -6.36   -6.50   -6.16   -5.40   -4.26   -2.85   -1.14    1.06    4.09    8.12
+   260.0    0.00   -0.18   -0.63   -1.31   -2.16   -3.10   -4.07   -5.03   -5.85   -6.39   -6.53   -6.21   -5.44   -4.31   -2.93   -1.27    0.89    3.87    7.87
+   265.0    0.00   -0.18   -0.63   -1.31   -2.16   -3.10   -4.07   -5.03   -5.86   -6.42   -6.57   -6.25   -5.49   -4.37   -3.02   -1.39    0.72    3.64    7.62
+   270.0    0.00   -0.18   -0.63   -1.32   -2.15   -3.09   -4.07   -5.03   -5.87   -6.44   -6.61   -6.29   -5.53   -4.43   -3.10   -1.51    0.55    3.43    7.38
+   275.0    0.00   -0.18   -0.63   -1.32   -2.15   -3.08   -4.06   -5.03   -5.88   -6.46   -6.63   -6.33   -5.57   -4.49   -3.18   -1.62    0.40    3.25    7.19
+   280.0    0.00   -0.18   -0.64   -1.31   -2.15   -3.08   -4.05   -5.02   -5.87   -6.46   -6.64   -6.36   -5.62   -4.54   -3.24   -1.71    0.28    3.11    7.06
+   285.0    0.00   -0.18   -0.64   -1.31   -2.15   -3.07   -4.05   -5.01   -5.86   -6.46   -6.66   -6.38   -5.65   -4.59   -3.31   -1.79    0.19    3.03    6.99
+   290.0    0.00   -0.18   -0.64   -1.31   -2.15   -3.07   -4.04   -5.00   -5.86   -6.45   -6.66   -6.39   -5.67   -4.63   -3.36   -1.84    0.14    2.99    7.00
+   295.0    0.00   -0.18   -0.64   -1.31   -2.15   -3.07   -4.03   -4.99   -5.84   -6.45   -6.65   -6.40   -5.69   -4.66   -3.39   -1.88    0.12    2.99    7.05
+   300.0    0.00   -0.18   -0.63   -1.31   -2.16   -3.07   -4.03   -4.99   -5.83   -6.44   -6.65   -6.41   -5.72   -4.68   -3.40   -1.88    0.13    3.02    7.14
+   305.0    0.00   -0.18   -0.63   -1.32   -2.16   -3.07   -4.03   -4.99   -5.83   -6.44   -6.66   -6.41   -5.72   -4.69   -3.41   -1.88    0.15    3.07    7.24
+   310.0    0.00   -0.17   -0.63   -1.32   -2.16   -3.08   -4.05   -4.99   -5.83   -6.44   -6.66   -6.42   -5.74   -4.70   -3.42   -1.86    0.17    3.11    7.31
+   315.0    0.00   -0.17   -0.63   -1.31   -2.16   -3.08   -4.05   -5.00   -5.85   -6.45   -6.67   -6.44   -5.75   -4.70   -3.41   -1.85    0.21    3.14    7.36
+   320.0    0.00   -0.17   -0.63   -1.31   -2.16   -3.08   -4.06   -5.01   -5.86   -6.46   -6.70   -6.47   -5.77   -4.72   -3.41   -1.83    0.23    3.15    7.35
+   325.0    0.00   -0.17   -0.62   -1.31   -2.16   -3.09   -4.07   -5.02   -5.87   -6.48   -6.72   -6.48   -5.80   -4.74   -3.42   -1.83    0.22    3.12    7.30
+   330.0    0.00   -0.16   -0.61   -1.31   -2.15   -3.09   -4.07   -5.04   -5.89   -6.51   -6.74   -6.52   -5.83   -4.75   -3.42   -1.83    0.21    3.07    7.18
+   335.0    0.00   -0.16   -0.60   -1.30   -2.14   -3.09   -4.08   -5.04   -5.91   -6.52   -6.78   -6.56   -5.86   -4.78   -3.44   -1.85    0.17    3.00    7.03
+   340.0    0.00   -0.16   -0.61   -1.29   -2.13   -3.08   -4.07   -5.04   -5.90   -6.55   -6.80   -6.59   -5.90   -4.82   -3.47   -1.88    0.13    2.90    6.86
+   345.0    0.00   -0.15   -0.61   -1.28   -2.13   -3.07   -4.06   -5.03   -5.90   -6.55   -6.83   -6.63   -5.93   -4.86   -3.50   -1.91    0.08    2.80    6.69
+   350.0    0.00   -0.15   -0.60   -1.27   -2.12   -3.06   -4.04   -5.03   -5.91   -6.56   -6.84   -6.65   -5.97   -4.89   -3.53   -1.94    0.03    2.71    6.53
+   355.0    0.00   -0.15   -0.59   -1.26   -2.10   -3.04   -4.03   -5.01   -5.91   -6.57   -6.85   -6.67   -5.99   -4.92   -3.56   -1.97   -0.02    2.65    6.44
+   360.0    0.00   -0.15   -0.58   -1.24   -2.09   -3.02   -4.01   -5.01   -5.89   -6.57   -6.86   -6.68   -6.01   -4.94   -3.59   -1.99   -0.04    2.64    6.41
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TRM59800.80     SCIS                                        TYPE / SERIAL NO    
+COPIED              Geo++ GmbH              10    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     4                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+COPIED FROM TRM59800.00     SCIS                            COMMENT             
+ATTENTION! COPIED WITHOUT VERIFICATION BY CALIBRATION!      COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.32      0.71     86.70                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.33   -1.27   -2.67   -4.33   -6.04   -7.62   -8.89   -9.75  -10.09   -9.85   -9.01   -7.58   -5.56   -2.91    0.47    4.80   10.24   16.72
+     0.0    0.00   -0.30   -1.21   -2.59   -4.24   -5.96   -7.57   -8.88   -9.76  -10.09   -9.81   -8.91   -7.42   -5.40   -2.81    0.48    4.71   10.08   16.46
+     5.0    0.00   -0.31   -1.22   -2.59   -4.25   -5.97   -7.57   -8.89   -9.77  -10.11   -9.83   -8.91   -7.40   -5.36   -2.78    0.48    4.67   10.01   16.44
+    10.0    0.00   -0.31   -1.23   -2.60   -4.25   -5.97   -7.57   -8.89   -9.79  -10.13   -9.85   -8.92   -7.40   -5.35   -2.76    0.48    4.64    9.96   16.43
+    15.0    0.00   -0.32   -1.24   -2.62   -4.26   -5.97   -7.57   -8.90   -9.80  -10.15   -9.87   -8.95   -7.42   -5.35   -2.75    0.49    4.62    9.93   16.44
+    20.0    0.00   -0.33   -1.25   -2.63   -4.27   -5.98   -7.58   -8.90   -9.81  -10.17   -9.90   -8.98   -7.45   -5.36   -2.75    0.50    4.64    9.94   16.48
+    25.0    0.00   -0.33   -1.26   -2.64   -4.28   -5.99   -7.58   -8.90   -9.81  -10.18   -9.93   -9.03   -7.49   -5.39   -2.75    0.53    4.68    9.99   16.56
+    30.0    0.00   -0.34   -1.27   -2.66   -4.29   -5.99   -7.58   -8.89   -9.80  -10.19   -9.95   -9.07   -7.54   -5.43   -2.76    0.56    4.75   10.08   16.66
+    35.0    0.00   -0.35   -1.29   -2.67   -4.31   -6.00   -7.57   -8.88   -9.79  -10.18   -9.97   -9.10   -7.59   -5.47   -2.77    0.60    4.84   10.20   16.78
+    40.0    0.00   -0.35   -1.30   -2.69   -4.33   -6.01   -7.57   -8.87   -9.77  -10.16   -9.97   -9.12   -7.63   -5.51   -2.78    0.64    4.94   10.33   16.91
+    45.0    0.00   -0.36   -1.31   -2.71   -4.34   -6.02   -7.58   -8.85   -9.74  -10.14   -9.95   -9.13   -7.65   -5.54   -2.78    0.69    5.04   10.47   17.05
+    50.0    0.00   -0.37   -1.33   -2.72   -4.36   -6.04   -7.58   -8.84   -9.72  -10.11   -9.93   -9.12   -7.66   -5.55   -2.78    0.73    5.14   10.60   17.18
+    55.0    0.00   -0.37   -1.34   -2.74   -4.38   -6.06   -7.59   -8.84   -9.70  -10.07   -9.89   -9.09   -7.65   -5.55   -2.77    0.77    5.22   10.72   17.30
+    60.0    0.00   -0.38   -1.35   -2.76   -4.40   -6.08   -7.60   -8.84   -9.68  -10.04   -9.84   -9.05   -7.62   -5.53   -2.75    0.80    5.27   10.81   17.40
+    65.0    0.00   -0.39   -1.36   -2.78   -4.43   -6.10   -7.62   -8.84   -9.66  -10.01   -9.80   -9.00   -7.57   -5.50   -2.73    0.82    5.31   10.86   17.48
+    70.0    0.00   -0.39   -1.37   -2.79   -4.45   -6.12   -7.64   -8.85   -9.66   -9.98   -9.76   -8.95   -7.53   -5.46   -2.71    0.84    5.32   10.90   17.53
+    75.0    0.00   -0.40   -1.38   -2.81   -4.47   -6.14   -7.66   -8.86   -9.66   -9.97   -9.73   -8.91   -7.48   -5.43   -2.69    0.84    5.32   10.90   17.56
+    80.0    0.00   -0.40   -1.39   -2.82   -4.48   -6.16   -7.68   -8.88   -9.67   -9.97   -9.72   -8.88   -7.45   -5.40   -2.68    0.83    5.30   10.89   17.57
+    85.0    0.00   -0.40   -1.40   -2.84   -4.50   -6.18   -7.70   -8.90   -9.69   -9.98   -9.72   -8.87   -7.44   -5.39   -2.69    0.81    5.27   10.86   17.56
+    90.0    0.00   -0.41   -1.41   -2.85   -4.51   -6.20   -7.72   -8.92   -9.71  -10.00   -9.73   -8.88   -7.45   -5.40   -2.70    0.78    5.24   10.83   17.52
+    95.0    0.00   -0.41   -1.41   -2.85   -4.52   -6.21   -7.73   -8.95   -9.74  -10.03   -9.76   -8.92   -7.48   -5.43   -2.73    0.75    5.20   10.78   17.47
+   100.0    0.00   -0.41   -1.42   -2.86   -4.53   -6.22   -7.75   -8.96   -9.76  -10.06   -9.80   -8.96   -7.52   -5.48   -2.78    0.70    5.15   10.73   17.41
+   105.0    0.00   -0.41   -1.42   -2.87   -4.54   -6.23   -7.76   -8.98   -9.79  -10.10   -9.85   -9.02   -7.58   -5.54   -2.84    0.64    5.09   10.67   17.33
+   110.0    0.00   -0.41   -1.42   -2.87   -4.54   -6.24   -7.77   -9.00   -9.81  -10.14   -9.90   -9.07   -7.65   -5.61   -2.91    0.57    5.02   10.61   17.25
+   115.0    0.00   -0.41   -1.42   -2.87   -4.54   -6.24   -7.78   -9.01   -9.84  -10.17   -9.94   -9.13   -7.71   -5.67   -2.98    0.50    4.95   10.53   17.15
+   120.0    0.00   -0.41   -1.42   -2.87   -4.54   -6.24   -7.79   -9.03   -9.86  -10.19   -9.98   -9.16   -7.75   -5.73   -3.05    0.42    4.86   10.44   17.05
+   125.0    0.00   -0.41   -1.42   -2.86   -4.54   -6.25   -7.79   -9.04   -9.87  -10.21  -10.00   -9.19   -7.78   -5.77   -3.11    0.34    4.77   10.34   16.95
+   130.0    0.00   -0.41   -1.41   -2.86   -4.54   -6.25   -7.80   -9.05   -9.88  -10.22  -10.00   -9.19   -7.79   -5.80   -3.16    0.26    4.67   10.23   16.85
+   135.0    0.00   -0.41   -1.41   -2.85   -4.53   -6.24   -7.80   -9.05   -9.89  -10.22   -9.99   -9.18   -7.78   -5.80   -3.19    0.20    4.58   10.13   16.76
+   140.0    0.00   -0.40   -1.40   -2.84   -4.53   -6.24   -7.80   -9.05   -9.88  -10.21   -9.97   -9.15   -7.75   -5.78   -3.20    0.15    4.50   10.03   16.67
+   145.0    0.00   -0.40   -1.39   -2.83   -4.52   -6.23   -7.79   -9.04   -9.88  -10.19   -9.95   -9.11   -7.71   -5.75   -3.19    0.13    4.44    9.95   16.59
+   150.0    0.00   -0.39   -1.39   -2.82   -4.50   -6.22   -7.78   -9.03   -9.86  -10.17   -9.91   -9.07   -7.67   -5.72   -3.17    0.12    4.40    9.89   16.52
+   155.0    0.00   -0.39   -1.38   -2.81   -4.49   -6.20   -7.76   -9.01   -9.84  -10.15   -9.88   -9.04   -7.63   -5.68   -3.14    0.14    4.39    9.86   16.47
+   160.0    0.00   -0.38   -1.36   -2.79   -4.47   -6.18   -7.74   -8.99   -9.81  -10.12   -9.86   -9.01   -7.59   -5.64   -3.10    0.17    4.41    9.85   16.43
+   165.0    0.00   -0.38   -1.35   -2.78   -4.45   -6.15   -7.71   -8.96   -9.79  -10.10   -9.84   -8.99   -7.57   -5.61   -3.06    0.21    4.45    9.86   16.40
+   170.0    0.00   -0.37   -1.34   -2.76   -4.43   -6.13   -7.68   -8.93   -9.76  -10.08   -9.83   -8.98   -7.57   -5.59   -3.02    0.27    4.50    9.88   16.38
+   175.0    0.00   -0.36   -1.33   -2.74   -4.40   -6.10   -7.65   -8.90   -9.73  -10.06   -9.82   -8.99   -7.57   -5.58   -2.99    0.32    4.56    9.92   16.37
+   180.0    0.00   -0.36   -1.31   -2.72   -4.38   -6.07   -7.62   -8.87   -9.71  -10.05   -9.82   -9.00   -7.58   -5.58   -2.97    0.36    4.61    9.96   16.38
+   185.0    0.00   -0.35   -1.30   -2.71   -4.36   -6.05   -7.59   -8.84   -9.69  -10.04   -9.83   -9.02   -7.60   -5.58   -2.95    0.40    4.65   10.00   16.41
+   190.0    0.00   -0.34   -1.29   -2.69   -4.34   -6.03   -7.57   -8.82   -9.68  -10.03   -9.83   -9.03   -7.61   -5.59   -2.95    0.42    4.68   10.03   16.45
+   195.0    0.00   -0.34   -1.27   -2.67   -4.32   -6.01   -7.56   -8.81   -9.67  -10.03   -9.83   -9.03   -7.62   -5.59   -2.95    0.42    4.70   10.06   16.51
+   200.0    0.00   -0.33   -1.26   -2.65   -4.30   -6.00   -7.55   -8.81   -9.67  -10.03   -9.83   -9.03   -7.61   -5.59   -2.95    0.42    4.70   10.09   16.59
+   205.0    0.00   -0.32   -1.25   -2.64   -4.29   -5.99   -7.55   -8.82   -9.67  -10.03   -9.82   -9.01   -7.59   -5.58   -2.95    0.41    4.70   10.13   16.70
+   210.0    0.00   -0.31   -1.24   -2.62   -4.28   -5.98   -7.55   -8.82   -9.68  -10.03   -9.80   -8.98   -7.56   -5.56   -2.94    0.41    4.71   10.18   16.82
+   215.0    0.00   -0.31   -1.22   -2.61   -4.27   -5.98   -7.56   -8.83   -9.68  -10.02   -9.78   -8.95   -7.53   -5.54   -2.93    0.41    4.73   10.25   16.96
+   220.0    0.00   -0.30   -1.21   -2.60   -4.26   -5.98   -7.56   -8.84   -9.68  -10.01   -9.75   -8.91   -7.49   -5.51   -2.92    0.43    4.78   10.34   17.11
+   225.0    0.00   -0.29   -1.20   -2.59   -4.25   -5.97   -7.56   -8.84   -9.68   -9.99   -9.72   -8.87   -7.45   -5.48   -2.89    0.46    4.84   10.46   17.26
+   230.0    0.00   -0.29   -1.19   -2.57   -4.24   -5.97   -7.56   -8.83   -9.67   -9.97   -9.70   -8.84   -7.43   -5.46   -2.87    0.52    4.94   10.59   17.39
+   235.0    0.00   -0.28   -1.18   -2.56   -4.23   -5.96   -7.55   -8.82   -9.65   -9.95   -9.67   -8.82   -7.41   -5.44   -2.83    0.59    5.05   10.73   17.50
+   240.0    0.00   -0.28   -1.17   -2.55   -4.21   -5.94   -7.53   -8.81   -9.63   -9.93   -9.66   -8.81   -7.41   -5.43   -2.80    0.66    5.17   10.86   17.56
+   245.0    0.00   -0.27   -1.16   -2.54   -4.20   -5.93   -7.51   -8.78   -9.61   -9.91   -9.65   -8.82   -7.42   -5.44   -2.78    0.73    5.28   10.97   17.58
+   250.0    0.00   -0.27   -1.15   -2.53   -4.19   -5.91   -7.49   -8.76   -9.59   -9.90   -9.66   -8.84   -7.45   -5.45   -2.76    0.79    5.37   11.03   17.53
+   255.0    0.00   -0.26   -1.15   -2.52   -4.17   -5.90   -7.48   -8.75   -9.58   -9.90   -9.67   -8.87   -7.48   -5.47   -2.75    0.83    5.42   11.04   17.43
+   260.0    0.00   -0.26   -1.14   -2.51   -4.16   -5.88   -7.46   -8.73   -9.58   -9.91   -9.69   -8.90   -7.51   -5.49   -2.75    0.84    5.42   10.99   17.27
+   265.0    0.00   -0.26   -1.14   -2.50   -4.16   -5.87   -7.46   -8.73   -9.58   -9.93   -9.72   -8.94   -7.55   -5.52   -2.77    0.82    5.37   10.88   17.07
+   270.0    0.00   -0.25   -1.13   -2.50   -4.15   -5.87   -7.46   -8.74   -9.60   -9.96   -9.76   -8.97   -7.58   -5.54   -2.79    0.77    5.27   10.70   16.84
+   275.0    0.00   -0.25   -1.13   -2.50   -4.15   -5.87   -7.47   -8.76   -9.63  -10.00   -9.80   -9.01   -7.60   -5.56   -2.83    0.69    5.12   10.49   16.60
+   280.0    0.00   -0.25   -1.13   -2.49   -4.15   -5.88   -7.48   -8.79   -9.68  -10.05   -9.84   -9.04   -7.62   -5.58   -2.87    0.59    4.94   10.25   16.36
+   285.0    0.00   -0.25   -1.13   -2.50   -4.16   -5.90   -7.51   -8.83   -9.72  -10.10   -9.88   -9.06   -7.63   -5.59   -2.92    0.48    4.75   10.01   16.16
+   290.0    0.00   -0.25   -1.13   -2.50   -4.17   -5.91   -7.54   -8.87   -9.77  -10.14   -9.92   -9.08   -7.63   -5.60   -2.97    0.37    4.58    9.80   16.00
+   295.0    0.00   -0.25   -1.13   -2.50   -4.17   -5.93   -7.56   -8.91   -9.82  -10.19   -9.95   -9.09   -7.64   -5.61   -3.01    0.27    4.42    9.64   15.89
+   300.0    0.00   -0.25   -1.13   -2.51   -4.18   -5.95   -7.59   -8.94   -9.85  -10.22   -9.97   -9.10   -7.64   -5.62   -3.05    0.19    4.32    9.53   15.84
+   305.0    0.00   -0.25   -1.14   -2.51   -4.19   -5.96   -7.61   -8.97   -9.88  -10.24   -9.99   -9.11   -7.64   -5.64   -3.08    0.14    4.26    9.49   15.85
+   310.0    0.00   -0.26   -1.14   -2.52   -4.20   -5.97   -7.63   -8.98   -9.89  -10.25   -9.99   -9.11   -7.65   -5.65   -3.10    0.13    4.25    9.52   15.91
+   315.0    0.00   -0.26   -1.14   -2.53   -4.21   -5.98   -7.63   -8.99   -9.89  -10.25   -9.99   -9.11   -7.65   -5.65   -3.10    0.13    4.30    9.60   16.00
+   320.0    0.00   -0.26   -1.15   -2.53   -4.22   -5.99   -7.63   -8.98   -9.88  -10.23   -9.97   -9.10   -7.65   -5.66   -3.10    0.17    4.37    9.72   16.12
+   325.0    0.00   -0.26   -1.16   -2.54   -4.22   -5.99   -7.63   -8.97   -9.86  -10.21   -9.95   -9.08   -7.64   -5.65   -3.08    0.22    4.47    9.85   16.23
+   330.0    0.00   -0.27   -1.16   -2.54   -4.22   -5.98   -7.62   -8.95   -9.83  -10.18   -9.92   -9.06   -7.63   -5.64   -3.06    0.28    4.57    9.98   16.34
+   335.0    0.00   -0.27   -1.17   -2.55   -4.23   -5.98   -7.60   -8.93   -9.81  -10.15   -9.89   -9.04   -7.61   -5.62   -3.02    0.34    4.66   10.09   16.42
+   340.0    0.00   -0.28   -1.18   -2.56   -4.23   -5.97   -7.59   -8.91   -9.78  -10.12   -9.86   -9.01   -7.57   -5.58   -2.98    0.39    4.73   10.17   16.48
+   345.0    0.00   -0.28   -1.18   -2.56   -4.23   -5.97   -7.58   -8.89   -9.77  -10.10   -9.84   -8.97   -7.54   -5.54   -2.93    0.43    4.76   10.20   16.50
+   350.0    0.00   -0.29   -1.19   -2.57   -4.23   -5.97   -7.57   -8.88   -9.76  -10.09   -9.82   -8.95   -7.49   -5.49   -2.89    0.46    4.77   10.18   16.50
+   355.0    0.00   -0.29   -1.20   -2.58   -4.24   -5.96   -7.57   -8.88   -9.76  -10.09   -9.81   -8.92   -7.45   -5.44   -2.85    0.47    4.75   10.14   16.49
+   360.0    0.00   -0.30   -1.21   -2.59   -4.24   -5.96   -7.57   -8.88   -9.76  -10.09   -9.81   -8.91   -7.42   -5.40   -2.81    0.48    4.71   10.08   16.46
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.15     -0.21    119.42                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.16   -0.60   -1.27   -2.08   -2.98   -3.90   -4.78   -5.51   -5.97   -6.02   -5.56   -4.59   -3.22   -1.54    0.41    2.76    5.81    9.80
+     0.0    0.00   -0.16   -0.61   -1.27   -2.08   -2.96   -3.85   -4.71   -5.44   -5.92   -6.00   -5.61   -4.74   -3.46   -1.88   -0.03    2.21    5.08    8.76
+     5.0    0.00   -0.16   -0.61   -1.27   -2.08   -2.96   -3.86   -4.72   -5.45   -5.92   -6.00   -5.59   -4.71   -3.44   -1.88   -0.04    2.21    5.10    8.83
+    10.0    0.00   -0.16   -0.61   -1.27   -2.08   -2.96   -3.87   -4.73   -5.46   -5.92   -5.99   -5.57   -4.68   -3.40   -1.85   -0.01    2.25    5.19    9.00
+    15.0    0.00   -0.16   -0.61   -1.27   -2.07   -2.96   -3.87   -4.74   -5.47   -5.93   -5.97   -5.54   -4.63   -3.35   -1.79    0.05    2.34    5.35    9.28
+    20.0    0.00   -0.16   -0.61   -1.27   -2.07   -2.96   -3.88   -4.75   -5.48   -5.93   -5.96   -5.51   -4.59   -3.29   -1.72    0.15    2.48    5.57    9.62
+    25.0    0.00   -0.16   -0.60   -1.27   -2.07   -2.96   -3.88   -4.76   -5.48   -5.93   -5.95   -5.48   -4.54   -3.23   -1.63    0.27    2.65    5.83   10.01
+    30.0    0.00   -0.16   -0.60   -1.26   -2.07   -2.96   -3.88   -4.76   -5.48   -5.92   -5.94   -5.46   -4.50   -3.16   -1.53    0.41    2.85    6.12   10.41
+    35.0    0.00   -0.16   -0.60   -1.26   -2.07   -2.96   -3.88   -4.76   -5.48   -5.92   -5.92   -5.43   -4.46   -3.10   -1.44    0.55    3.06    6.40   10.77
+    40.0    0.00   -0.16   -0.60   -1.26   -2.07   -2.96   -3.88   -4.75   -5.48   -5.91   -5.91   -5.42   -4.43   -3.05   -1.36    0.68    3.25    6.65   11.08
+    45.0    0.00   -0.16   -0.60   -1.26   -2.07   -2.96   -3.88   -4.75   -5.47   -5.90   -5.91   -5.41   -4.42   -3.02   -1.29    0.79    3.41    6.85   11.29
+    50.0    0.00   -0.16   -0.61   -1.27   -2.07   -2.96   -3.88   -4.75   -5.46   -5.89   -5.90   -5.41   -4.42   -3.01   -1.25    0.87    3.53    6.99   11.40
+    55.0    0.00   -0.16   -0.61   -1.27   -2.08   -2.97   -3.88   -4.75   -5.46   -5.89   -5.90   -5.41   -4.43   -3.01   -1.24    0.91    3.59    7.04   11.40
+    60.0    0.00   -0.16   -0.61   -1.27   -2.08   -2.97   -3.89   -4.75   -5.46   -5.88   -5.90   -5.42   -4.45   -3.04   -1.26    0.90    3.59    7.01   11.29
+    65.0    0.00   -0.16   -0.61   -1.27   -2.09   -2.98   -3.89   -4.75   -5.45   -5.88   -5.90   -5.44   -4.48   -3.08   -1.31    0.86    3.53    6.92   11.10
+    70.0    0.00   -0.16   -0.61   -1.28   -2.09   -2.99   -3.90   -4.75   -5.45   -5.88   -5.91   -5.46   -4.52   -3.14   -1.37    0.78    3.43    6.76   10.84
+    75.0    0.00   -0.16   -0.61   -1.28   -2.10   -3.00   -3.91   -4.76   -5.46   -5.88   -5.92   -5.48   -4.56   -3.20   -1.46    0.67    3.29    6.57   10.56
+    80.0    0.00   -0.16   -0.61   -1.28   -2.11   -3.00   -3.91   -4.76   -5.46   -5.89   -5.93   -5.51   -4.60   -3.26   -1.54    0.56    3.14    6.36   10.26
+    85.0    0.00   -0.16   -0.61   -1.29   -2.11   -3.01   -3.92   -4.77   -5.46   -5.89   -5.94   -5.53   -4.64   -3.32   -1.62    0.44    2.98    6.15    9.99
+    90.0    0.00   -0.16   -0.61   -1.29   -2.11   -3.01   -3.92   -4.77   -5.47   -5.90   -5.95   -5.55   -4.67   -3.36   -1.69    0.34    2.84    5.96    9.76
+    95.0    0.00   -0.16   -0.62   -1.29   -2.12   -3.02   -3.93   -4.78   -5.48   -5.91   -5.97   -5.56   -4.69   -3.39   -1.74    0.27    2.73    5.81    9.59
+   100.0    0.00   -0.16   -0.62   -1.29   -2.12   -3.02   -3.93   -4.78   -5.49   -5.93   -5.98   -5.58   -4.70   -3.40   -1.76    0.23    2.65    5.71    9.48
+   105.0    0.00   -0.16   -0.62   -1.29   -2.12   -3.02   -3.93   -4.79   -5.50   -5.94   -6.00   -5.58   -4.70   -3.39   -1.75    0.21    2.61    5.65    9.43
+   110.0    0.00   -0.16   -0.62   -1.29   -2.12   -3.02   -3.93   -4.79   -5.51   -5.96   -6.01   -5.59   -4.69   -3.37   -1.73    0.23    2.61    5.63    9.42
+   115.0    0.00   -0.16   -0.62   -1.29   -2.11   -3.01   -3.93   -4.80   -5.52   -5.97   -6.03   -5.60   -4.67   -3.34   -1.68    0.27    2.63    5.64    9.45
+   120.0    0.00   -0.16   -0.62   -1.29   -2.11   -3.01   -3.93   -4.80   -5.53   -5.99   -6.05   -5.60   -4.66   -3.30   -1.63    0.32    2.67    5.67    9.50
+   125.0    0.00   -0.16   -0.62   -1.29   -2.11   -3.01   -3.93   -4.81   -5.55   -6.01   -6.06   -5.61   -4.64   -3.26   -1.58    0.37    2.71    5.70    9.55
+   130.0    0.00   -0.16   -0.61   -1.29   -2.11   -3.01   -3.93   -4.82   -5.56   -6.03   -6.08   -5.62   -4.64   -3.24   -1.54    0.41    2.74    5.73    9.59
+   135.0    0.00   -0.16   -0.61   -1.29   -2.11   -3.01   -3.93   -4.82   -5.58   -6.05   -6.10   -5.63   -4.63   -3.22   -1.52    0.43    2.76    5.74    9.60
+   140.0    0.00   -0.16   -0.61   -1.29   -2.11   -3.01   -3.94   -4.83   -5.59   -6.07   -6.12   -5.64   -4.64   -3.22   -1.52    0.43    2.75    5.73    9.59
+   145.0    0.00   -0.16   -0.61   -1.29   -2.10   -3.01   -3.94   -4.84   -5.60   -6.08   -6.14   -5.66   -4.66   -3.24   -1.54    0.40    2.72    5.69    9.55
+   150.0    0.00   -0.16   -0.61   -1.28   -2.10   -3.01   -3.94   -4.84   -5.61   -6.09   -6.15   -5.68   -4.69   -3.28   -1.59    0.35    2.66    5.63    9.49
+   155.0    0.00   -0.16   -0.61   -1.28   -2.10   -3.01   -3.94   -4.84   -5.61   -6.10   -6.16   -5.70   -4.72   -3.33   -1.65    0.28    2.59    5.55    9.41
+   160.0    0.00   -0.16   -0.61   -1.28   -2.10   -3.01   -3.94   -4.84   -5.61   -6.10   -6.17   -5.72   -4.76   -3.39   -1.72    0.20    2.50    5.46    9.34
+   165.0    0.00   -0.16   -0.61   -1.28   -2.10   -3.01   -3.94   -4.84   -5.60   -6.09   -6.17   -5.74   -4.80   -3.44   -1.79    0.11    2.41    5.38    9.27
+   170.0    0.00   -0.16   -0.60   -1.28   -2.10   -3.01   -3.94   -4.83   -5.59   -6.08   -6.17   -5.75   -4.83   -3.49   -1.86    0.04    2.34    5.32    9.23
+   175.0    0.00   -0.16   -0.60   -1.28   -2.10   -3.00   -3.93   -4.82   -5.58   -6.07   -6.16   -5.76   -4.85   -3.52   -1.90   -0.01    2.29    5.28    9.23
+   180.0    0.00   -0.15   -0.60   -1.27   -2.10   -3.00   -3.93   -4.81   -5.56   -6.06   -6.15   -5.75   -4.85   -3.54   -1.92   -0.02    2.28    5.28    9.27
+   185.0    0.00   -0.15   -0.60   -1.27   -2.09   -3.00   -3.92   -4.80   -5.55   -6.04   -6.14   -5.74   -4.84   -3.52   -1.90    0.00    2.30    5.32    9.35
+   190.0    0.00   -0.15   -0.60   -1.27   -2.09   -2.99   -3.91   -4.79   -5.54   -6.03   -6.12   -5.72   -4.81   -3.48   -1.85    0.06    2.37    5.40    9.49
+   195.0    0.00   -0.15   -0.59   -1.26   -2.08   -2.99   -3.91   -4.78   -5.53   -6.02   -6.11   -5.69   -4.77   -3.42   -1.76    0.15    2.48    5.53    9.68
+   200.0    0.00   -0.15   -0.59   -1.26   -2.08   -2.98   -3.90   -4.78   -5.53   -6.01   -6.09   -5.66   -4.71   -3.33   -1.65    0.28    2.62    5.69    9.89
+   205.0    0.00   -0.15   -0.59   -1.25   -2.07   -2.97   -3.89   -4.78   -5.52   -6.00   -6.07   -5.62   -4.65   -3.24   -1.53    0.43    2.78    5.88   10.13
+   210.0    0.00   -0.15   -0.58   -1.25   -2.07   -2.97   -3.89   -4.77   -5.52   -6.00   -6.05   -5.58   -4.58   -3.14   -1.39    0.59    2.96    6.07   10.37
+   215.0    0.00   -0.15   -0.58   -1.24   -2.06   -2.96   -3.89   -4.77   -5.52   -5.99   -6.04   -5.54   -4.51   -3.04   -1.26    0.75    3.14    6.27   10.59
+   220.0    0.00   -0.14   -0.58   -1.24   -2.05   -2.96   -3.89   -4.78   -5.52   -5.99   -6.02   -5.51   -4.45   -2.95   -1.15    0.89    3.30    6.45   10.77
+   225.0    0.00   -0.14   -0.57   -1.23   -2.05   -2.95   -3.88   -4.78   -5.53   -5.99   -6.01   -5.48   -4.40   -2.88   -1.05    1.00    3.43    6.59   10.89
+   230.0    0.00   -0.14   -0.57   -1.23   -2.04   -2.95   -3.88   -4.78   -5.53   -5.99   -6.00   -5.46   -4.37   -2.83   -0.99    1.08    3.52    6.68   10.94
+   235.0    0.00   -0.14   -0.57   -1.23   -2.04   -2.95   -3.88   -4.78   -5.53   -5.98   -5.99   -5.45   -4.35   -2.81   -0.97    1.12    3.57    6.71   10.91
+   240.0    0.00   -0.14   -0.57   -1.22   -2.04   -2.95   -3.89   -4.78   -5.53   -5.98   -5.98   -5.44   -4.35   -2.81   -0.98    1.11    3.56    6.67   10.79
+   245.0    0.00   -0.14   -0.57   -1.22   -2.04   -2.95   -3.89   -4.78   -5.53   -5.98   -5.98   -5.44   -4.36   -2.84   -1.02    1.06    3.49    6.57   10.60
+   250.0    0.00   -0.14   -0.57   -1.22   -2.04   -2.95   -3.89   -4.79   -5.53   -5.97   -5.98   -5.44   -4.38   -2.88   -1.08    0.97    3.38    6.42   10.34
+   255.0    0.00   -0.14   -0.57   -1.22   -2.04   -2.95   -3.89   -4.79   -5.53   -5.97   -5.97   -5.45   -4.40   -2.93   -1.17    0.85    3.22    6.21   10.05
+   260.0    0.00   -0.14   -0.57   -1.22   -2.04   -2.95   -3.90   -4.79   -5.53   -5.97   -5.97   -5.46   -4.43   -2.99   -1.27    0.71    3.04    5.98    9.74
+   265.0    0.00   -0.14   -0.57   -1.23   -2.04   -2.96   -3.90   -4.80   -5.53   -5.97   -5.98   -5.47   -4.46   -3.05   -1.36    0.56    2.85    5.74    9.45
+   270.0    0.00   -0.14   -0.57   -1.23   -2.05   -2.96   -3.91   -4.80   -5.54   -5.97   -5.98   -5.47   -4.48   -3.10   -1.45    0.42    2.66    5.51    9.20
+   275.0    0.00   -0.14   -0.57   -1.23   -2.05   -2.97   -3.91   -4.81   -5.54   -5.98   -5.98   -5.48   -4.50   -3.14   -1.53    0.30    2.48    5.31    9.01
+   280.0    0.00   -0.14   -0.58   -1.24   -2.06   -2.97   -3.92   -4.81   -5.55   -5.98   -5.99   -5.49   -4.51   -3.17   -1.59    0.20    2.34    5.15    8.90
+   285.0    0.00   -0.15   -0.58   -1.24   -2.06   -2.98   -3.92   -4.82   -5.55   -5.99   -5.99   -5.49   -4.52   -3.19   -1.63    0.12    2.24    5.06    8.88
+   290.0    0.00   -0.15   -0.58   -1.25   -2.07   -2.98   -3.92   -4.82   -5.55   -5.99   -5.99   -5.50   -4.52   -3.20   -1.65    0.08    2.19    5.02    8.94
+   295.0    0.00   -0.15   -0.58   -1.25   -2.07   -2.98   -3.92   -4.81   -5.55   -5.99   -6.00   -5.50   -4.53   -3.20   -1.66    0.07    2.18    5.04    9.06
+   300.0    0.00   -0.15   -0.59   -1.26   -2.08   -2.98   -3.92   -4.81   -5.54   -5.99   -6.00   -5.51   -4.53   -3.20   -1.65    0.09    2.21    5.11    9.23
+   305.0    0.00   -0.15   -0.59   -1.26   -2.08   -2.98   -3.91   -4.79   -5.53   -5.98   -6.01   -5.52   -4.54   -3.20   -1.64    0.12    2.26    5.21    9.40
+   310.0    0.00   -0.15   -0.59   -1.26   -2.08   -2.98   -3.90   -4.78   -5.52   -5.98   -6.01   -5.53   -4.56   -3.21   -1.62    0.16    2.34    5.32    9.56
+   315.0    0.00   -0.15   -0.60   -1.27   -2.08   -2.97   -3.89   -4.76   -5.50   -5.97   -6.01   -5.55   -4.58   -3.22   -1.62    0.20    2.41    5.42    9.68
+   320.0    0.00   -0.15   -0.60   -1.27   -2.08   -2.97   -3.88   -4.75   -5.48   -5.95   -6.01   -5.56   -4.61   -3.24   -1.62    0.23    2.48    5.50    9.73
+   325.0    0.00   -0.16   -0.60   -1.27   -2.08   -2.96   -3.87   -4.73   -5.46   -5.94   -6.02   -5.58   -4.64   -3.28   -1.63    0.25    2.52    5.53    9.71
+   330.0    0.00   -0.16   -0.60   -1.27   -2.08   -2.96   -3.85   -4.71   -5.45   -5.93   -6.02   -5.60   -4.67   -3.31   -1.66    0.24    2.53    5.53    9.61
+   335.0    0.00   -0.16   -0.60   -1.27   -2.08   -2.96   -3.85   -4.70   -5.44   -5.92   -6.02   -5.61   -4.70   -3.35   -1.70    0.21    2.51    5.48    9.46
+   340.0    0.00   -0.16   -0.61   -1.27   -2.08   -2.95   -3.84   -4.70   -5.43   -5.92   -6.02   -5.63   -4.72   -3.39   -1.74    0.17    2.46    5.40    9.27
+   345.0    0.00   -0.16   -0.61   -1.27   -2.08   -2.95   -3.84   -4.69   -5.42   -5.91   -6.02   -5.63   -4.74   -3.43   -1.79    0.11    2.39    5.29    9.07
+   350.0    0.00   -0.16   -0.61   -1.27   -2.08   -2.95   -3.84   -4.70   -5.43   -5.91   -6.01   -5.63   -4.75   -3.45   -1.83    0.05    2.31    5.19    8.90
+   355.0    0.00   -0.16   -0.61   -1.27   -2.08   -2.95   -3.85   -4.70   -5.43   -5.91   -6.01   -5.62   -4.75   -3.46   -1.87    0.00    2.25    5.11    8.79
+   360.0    0.00   -0.16   -0.61   -1.27   -2.08   -2.96   -3.85   -4.71   -5.44   -5.92   -6.00   -5.61   -4.74   -3.46   -1.88   -0.03    2.21    5.08    8.76
+   G02                                                      END OF FREQUENCY    
+   R01                                                      START OF FREQUENCY  
+      0.32      0.71     86.70                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.35   -1.33   -2.81   -4.54   -6.33   -7.98   -9.33  -10.26  -10.69  -10.55   -9.82   -8.49   -6.58   -4.02   -0.71    3.60    9.08   15.69
+     0.0    0.00   -0.32   -1.30   -2.75   -4.47   -6.26   -7.91   -9.26  -10.21  -10.64  -10.50   -9.77   -8.44   -6.56   -4.06   -0.85    3.32    8.66   15.05
+     5.0    0.00   -0.33   -1.31   -2.76   -4.51   -6.29   -7.94   -9.30  -10.26  -10.71  -10.57   -9.82   -8.47   -6.56   -4.08   -0.88    3.26    8.53   14.95
+    10.0    0.00   -0.33   -1.33   -2.78   -4.53   -6.32   -7.97   -9.35  -10.31  -10.77  -10.64   -9.88   -8.53   -6.59   -4.09   -0.91    3.18    8.43   14.86
+    15.0    0.00   -0.34   -1.34   -2.81   -4.55   -6.34   -8.01   -9.39  -10.36  -10.83  -10.71   -9.96   -8.59   -6.64   -4.11   -0.93    3.12    8.35   14.80
+    20.0    0.00   -0.36   -1.35   -2.83   -4.58   -6.37   -8.05   -9.42  -10.42  -10.89  -10.78  -10.03   -8.66   -6.68   -4.13   -0.95    3.11    8.31   14.81
+    25.0    0.00   -0.36   -1.37   -2.85   -4.60   -6.40   -8.07   -9.45  -10.45  -10.95  -10.85  -10.13   -8.73   -6.73   -4.15   -0.94    3.12    8.33   14.89
+    30.0    0.00   -0.37   -1.38   -2.87   -4.62   -6.43   -8.09   -9.47  -10.47  -10.99  -10.91  -10.19   -8.81   -6.79   -4.18   -0.93    3.18    8.42   15.02
+    35.0    0.00   -0.38   -1.40   -2.89   -4.65   -6.46   -8.11   -9.50  -10.49  -11.00  -10.94  -10.24   -8.87   -6.84   -4.21   -0.90    3.26    8.56   15.23
+    40.0    0.00   -0.38   -1.41   -2.91   -4.68   -6.48   -8.12   -9.50  -10.48  -10.99  -10.95  -10.26   -8.91   -6.88   -4.23   -0.86    3.38    8.74   15.46
+    45.0    0.00   -0.39   -1.42   -2.94   -4.70   -6.50   -8.15   -9.50  -10.46  -10.97  -10.93  -10.26   -8.93   -6.92   -4.23   -0.81    3.50    8.94   15.73
+    50.0    0.00   -0.40   -1.44   -2.95   -4.73   -6.53   -8.16   -9.50  -10.45  -10.94  -10.90  -10.24   -8.93   -6.92   -4.23   -0.76    3.63    9.15   15.98
+    55.0    0.00   -0.40   -1.45   -2.97   -4.75   -6.56   -8.19   -9.50  -10.42  -10.89  -10.84  -10.19   -8.89   -6.92   -4.22   -0.71    3.75    9.35   16.20
+    60.0    0.00   -0.41   -1.46   -2.99   -4.77   -6.59   -8.21   -9.51  -10.40  -10.84  -10.76  -10.12   -8.85   -6.89   -4.19   -0.66    3.86    9.50   16.37
+    65.0    0.00   -0.41   -1.47   -3.01   -4.80   -6.61   -8.23   -9.51  -10.37  -10.80  -10.69  -10.05   -8.78   -6.85   -4.15   -0.62    3.94    9.61   16.47
+    70.0    0.00   -0.41   -1.48   -3.02   -4.82   -6.63   -8.25   -9.52  -10.37  -10.75  -10.63   -9.97   -8.72   -6.79   -4.11   -0.56    3.98    9.68   16.49
+    75.0    0.00   -0.42   -1.48   -3.03   -4.84   -6.65   -8.27   -9.53  -10.36  -10.72  -10.58   -9.91   -8.65   -6.75   -4.08   -0.54    4.01    9.69   16.44
+    80.0    0.00   -0.42   -1.49   -3.04   -4.85   -6.67   -8.29   -9.54  -10.36  -10.70  -10.55   -9.85   -8.59   -6.69   -4.05   -0.52    4.01    9.67   16.35
+    85.0    0.00   -0.42   -1.50   -3.05   -4.86   -6.68   -8.31   -9.56  -10.37  -10.70  -10.53   -9.82   -8.56   -6.66   -4.03   -0.52    4.00    9.62   16.22
+    90.0    0.00   -0.43   -1.51   -3.06   -4.86   -6.69   -8.32   -9.57  -10.39  -10.71  -10.52   -9.79   -8.53   -6.63   -4.01   -0.53    3.99    9.56   16.08
+    95.0    0.00   -0.43   -1.50   -3.05   -4.86   -6.69   -8.31   -9.59  -10.41  -10.72  -10.53   -9.81   -8.53   -6.63   -4.01   -0.54    3.95    9.49   15.96
+   100.0    0.00   -0.43   -1.51   -3.05   -4.86   -6.69   -8.31   -9.59  -10.41  -10.74  -10.54   -9.82   -8.54   -6.64   -4.02   -0.55    3.91    9.43   15.88
+   105.0    0.00   -0.43   -1.49   -3.05   -4.86   -6.68   -8.31   -9.59  -10.43  -10.77  -10.57   -9.86   -8.56   -6.66   -4.05   -0.59    3.86    9.38   15.82
+   110.0    0.00   -0.43   -1.49   -3.04   -4.84   -6.67   -8.29   -9.58  -10.43  -10.79  -10.61   -9.88   -8.60   -6.68   -4.08   -0.64    3.81    9.36   15.81
+   115.0    0.00   -0.42   -1.49   -3.03   -4.83   -6.64   -8.28   -9.57  -10.44  -10.80  -10.63   -9.92   -8.62   -6.71   -4.12   -0.68    3.77    9.33   15.84
+   120.0    0.00   -0.42   -1.48   -3.03   -4.81   -6.62   -8.26   -9.56  -10.43  -10.80  -10.65   -9.91   -8.62   -6.73   -4.15   -0.72    3.71    9.30   15.88
+   125.0    0.00   -0.42   -1.48   -3.01   -4.80   -6.60   -8.24   -9.55  -10.42  -10.81  -10.65   -9.92   -8.62   -6.73   -4.16   -0.77    3.66    9.27   15.93
+   130.0    0.00   -0.42   -1.47   -3.00   -4.77   -6.58   -8.21   -9.53  -10.41  -10.79  -10.63   -9.90   -8.60   -6.71   -4.17   -0.80    3.61    9.22   15.97
+   135.0    0.00   -0.42   -1.46   -2.98   -4.75   -6.55   -8.19   -9.51  -10.39  -10.77  -10.61   -9.87   -8.57   -6.68   -4.16   -0.82    3.56    9.17   15.97
+   140.0    0.00   -0.41   -1.45   -2.97   -4.73   -6.53   -8.16   -9.48  -10.37  -10.75  -10.58   -9.83   -8.50   -6.62   -4.12   -0.83    3.51    9.12   15.95
+   145.0    0.00   -0.41   -1.44   -2.95   -4.71   -6.50   -8.13   -9.44  -10.35  -10.72  -10.55   -9.77   -8.44   -6.56   -4.07   -0.81    3.48    9.06   15.89
+   150.0    0.00   -0.40   -1.44   -2.94   -4.68   -6.48   -8.10   -9.41  -10.31  -10.69  -10.49   -9.72   -8.38   -6.50   -4.01   -0.78    3.46    8.99   15.79
+   155.0    0.00   -0.40   -1.43   -2.92   -4.66   -6.44   -8.07   -9.38  -10.28  -10.66  -10.46   -9.68   -8.33   -6.43   -3.96   -0.74    3.45    8.94   15.69
+   160.0    0.00   -0.39   -1.41   -2.90   -4.64   -6.40   -8.03   -9.35  -10.25  -10.63  -10.43   -9.65   -8.27   -6.37   -3.90   -0.70    3.47    8.89   15.59
+   165.0    0.00   -0.39   -1.40   -2.89   -4.61   -6.37   -7.99   -9.31  -10.22  -10.61  -10.41   -9.63   -8.25   -6.33   -3.85   -0.66    3.49    8.87   15.50
+   170.0    0.00   -0.38   -1.39   -2.87   -4.59   -6.34   -7.95   -9.27  -10.19  -10.59  -10.41   -9.62   -8.25   -6.31   -3.81   -0.61    3.51    8.85   15.44
+   175.0    0.00   -0.37   -1.38   -2.84   -4.55   -6.30   -7.92   -9.24  -10.16  -10.57  -10.40   -9.63   -8.25   -6.30   -3.79   -0.59    3.54    8.86   15.42
+   180.0    0.00   -0.37   -1.36   -2.82   -4.53   -6.27   -7.88   -9.20  -10.14  -10.56  -10.42   -9.65   -8.27   -6.32   -3.80   -0.59    3.55    8.86   15.46
+   185.0    0.00   -0.36   -1.35   -2.81   -4.51   -6.24   -7.85   -9.17  -10.12  -10.56  -10.44   -9.69   -8.31   -6.36   -3.81   -0.59    3.54    8.89   15.54
+   190.0    0.00   -0.35   -1.34   -2.79   -4.49   -6.22   -7.81   -9.15  -10.11  -10.56  -10.46   -9.72   -8.35   -6.40   -3.85   -0.62    3.53    8.91   15.65
+   195.0    0.00   -0.35   -1.32   -2.77   -4.46   -6.19   -7.80   -9.14  -10.11  -10.57  -10.48   -9.74   -8.40   -6.43   -3.91   -0.68    3.51    8.94   15.79
+   200.0    0.00   -0.34   -1.31   -2.75   -4.44   -6.18   -7.79   -9.14  -10.12  -10.59  -10.50   -9.77   -8.42   -6.47   -3.95   -0.72    3.48    8.97   15.92
+   205.0    0.00   -0.33   -1.30   -2.74   -4.43   -6.17   -7.79   -9.15  -10.13  -10.61  -10.52   -9.79   -8.43   -6.50   -3.98   -0.76    3.45    9.00   16.07
+   210.0    0.00   -0.32   -1.29   -2.72   -4.42   -6.16   -7.79   -9.16  -10.15  -10.64  -10.52   -9.79   -8.43   -6.52   -4.00   -0.79    3.44    9.05   16.19
+   215.0    0.00   -0.33   -1.27   -2.71   -4.41   -6.16   -7.80   -9.18  -10.17  -10.65  -10.53   -9.79   -8.43   -6.52   -4.01   -0.80    3.45    9.10   16.30
+   220.0    0.00   -0.32   -1.26   -2.70   -4.40   -6.16   -7.82   -9.20  -10.18  -10.66  -10.53   -9.77   -8.40   -6.50   -4.00   -0.77    3.50    9.18   16.40
+   225.0    0.00   -0.31   -1.25   -2.69   -4.39   -6.16   -7.83   -9.21  -10.20  -10.66  -10.51   -9.74   -8.37   -6.47   -3.96   -0.73    3.59    9.30   16.46
+   230.0    0.00   -0.31   -1.24   -2.67   -4.38   -6.16   -7.84   -9.21  -10.20  -10.64  -10.49   -9.71   -8.34   -6.44   -3.92   -0.64    3.71    9.43   16.51
+   235.0    0.00   -0.30   -1.23   -2.66   -4.38   -6.16   -7.83   -9.21  -10.18  -10.62  -10.46   -9.68   -8.31   -6.40   -3.86   -0.54    3.86    9.58   16.55
+   240.0    0.00   -0.30   -1.22   -2.65   -4.36   -6.14   -7.82   -9.21  -10.17  -10.60  -10.43   -9.65   -8.29   -6.35   -3.80   -0.42    4.03    9.75   16.57
+   245.0    0.00   -0.29   -1.21   -2.64   -4.35   -6.14   -7.81   -9.18  -10.14  -10.56  -10.39   -9.63   -8.27   -6.34   -3.75   -0.31    4.20    9.92   16.59
+   250.0    0.00   -0.29   -1.20   -2.63   -4.34   -6.12   -7.79   -9.16  -10.11  -10.53  -10.37   -9.61   -8.27   -6.33   -3.71   -0.22    4.35   10.05   16.59
+   255.0    0.00   -0.27   -1.20   -2.62   -4.32   -6.11   -7.78   -9.14  -10.09  -10.50  -10.34   -9.60   -8.27   -6.33   -3.69   -0.15    4.46   10.15   16.58
+   260.0    0.00   -0.27   -1.19   -2.61   -4.31   -6.09   -7.75   -9.12  -10.07  -10.48  -10.33   -9.60   -8.28   -6.34   -3.67   -0.12    4.52   10.19   16.53
+   265.0    0.00   -0.27   -1.19   -2.60   -4.30   -6.07   -7.75   -9.10  -10.05  -10.47  -10.33   -9.61   -8.29   -6.36   -3.69   -0.13    4.51   10.17   16.44
+   270.0    0.00   -0.26   -1.18   -2.59   -4.29   -6.07   -7.74   -9.10  -10.05  -10.47  -10.33   -9.62   -8.32   -6.39   -3.73   -0.18    4.43   10.05   16.33
+   275.0    0.00   -0.26   -1.17   -2.59   -4.29   -6.06   -7.74   -9.10  -10.06  -10.49  -10.36   -9.65   -8.34   -6.42   -3.78   -0.27    4.29    9.88   16.17
+   280.0    0.00   -0.26   -1.17   -2.58   -4.28   -6.06   -7.74   -9.12  -10.08  -10.53  -10.39   -9.68   -8.37   -6.45   -3.84   -0.38    4.10    9.64   15.98
+   285.0    0.00   -0.26   -1.17   -2.59   -4.29   -6.07   -7.74   -9.14  -10.11  -10.57  -10.43   -9.71   -8.40   -6.48   -3.91   -0.52    3.88    9.38   15.78
+   290.0    0.00   -0.26   -1.17   -2.57   -4.29   -6.08   -7.76   -9.17  -10.15  -10.61  -10.47   -9.74   -8.41   -6.51   -3.98   -0.65    3.67    9.11   15.55
+   295.0    0.00   -0.26   -1.17   -2.57   -4.29   -6.09   -7.77   -9.20  -10.19  -10.66  -10.51   -9.76   -8.44   -6.53   -4.03   -0.78    3.44    8.85   15.35
+   300.0    0.00   -0.26   -1.17   -2.58   -4.29   -6.10   -7.80   -9.23  -10.22  -10.69  -10.54   -9.79   -8.45   -6.56   -4.09   -0.89    3.28    8.64   15.17
+   305.0    0.00   -0.26   -1.18   -2.58   -4.30   -6.11   -7.81   -9.25  -10.25  -10.71  -10.57   -9.81   -8.46   -6.59   -4.12   -0.98    3.14    8.48   15.03
+   310.0    0.00   -0.27   -1.18   -2.59   -4.31   -6.12   -7.83   -9.26  -10.25  -10.73  -10.59   -9.82   -8.48   -6.60   -4.15   -1.01    3.08    8.39   14.95
+   315.0    0.00   -0.27   -1.18   -2.62   -4.33   -6.13   -7.83   -9.27  -10.25  -10.73  -10.59   -9.82   -8.48   -6.60   -4.15   -1.03    3.07    8.38   14.92
+   320.0    0.00   -0.27   -1.19   -2.62   -4.34   -6.15   -7.83   -9.26  -10.24  -10.71  -10.57   -9.81   -8.48   -6.61   -4.16   -1.01    3.10    8.42   14.94
+   325.0    0.00   -0.28   -1.21   -2.64   -4.35   -6.16   -7.84   -9.25  -10.22  -10.68  -10.55   -9.79   -8.47   -6.60   -4.14   -0.97    3.17    8.51   15.00
+   330.0    0.00   -0.29   -1.21   -2.64   -4.36   -6.16   -7.84   -9.23  -10.19  -10.65  -10.50   -9.77   -8.47   -6.60   -4.13   -0.92    3.25    8.61   15.07
+   335.0    0.00   -0.29   -1.22   -2.66   -4.38   -6.17   -7.83   -9.22  -10.17  -10.62  -10.47   -9.76   -8.46   -6.59   -4.12   -0.88    3.33    8.72   15.13
+   340.0    0.00   -0.30   -1.24   -2.68   -4.40   -6.18   -7.83   -9.21  -10.14  -10.59  -10.46   -9.74   -8.44   -6.58   -4.10   -0.84    3.40    8.80   15.19
+   345.0    0.00   -0.30   -1.24   -2.69   -4.41   -6.20   -7.85   -9.20  -10.14  -10.58  -10.45   -9.71   -8.43   -6.57   -4.08   -0.82    3.42    8.83   15.20
+   350.0    0.00   -0.31   -1.26   -2.71   -4.43   -6.23   -7.86   -9.21  -10.15  -10.58  -10.45   -9.73   -8.41   -6.55   -4.07   -0.82    3.42    8.80   15.18
+   355.0    0.00   -0.31   -1.27   -2.73   -4.46   -6.24   -7.89   -9.24  -10.17  -10.61  -10.47   -9.74   -8.43   -6.56   -4.07   -0.83    3.39    8.75   15.13
+   360.0    0.00   -0.32   -1.30   -2.75   -4.47   -6.26   -7.91   -9.26  -10.21  -10.64  -10.50   -9.77   -8.44   -6.56   -4.06   -0.85    3.32    8.66   15.05
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+      0.15     -0.21    119.42                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.19   -0.72   -1.52   -2.48   -3.52   -4.57   -5.57   -6.42   -7.00   -7.19   -6.88   -6.07   -4.84   -3.27   -1.42    0.85    3.79    7.61
+     0.0    0.00   -0.17   -0.68   -1.47   -2.44   -3.49   -4.55   -5.56   -6.41   -7.00   -7.19   -6.94   -6.24   -5.15   -3.76   -2.05    0.09    2.87    6.39
+     5.0    0.00   -0.17   -0.68   -1.47   -2.44   -3.50   -4.57   -5.58   -6.43   -7.00   -7.19   -6.91   -6.19   -5.11   -3.73   -2.04    0.11    2.93    6.53
+    10.0    0.00   -0.17   -0.68   -1.47   -2.44   -3.50   -4.58   -5.60   -6.45   -7.01   -7.17   -6.88   -6.14   -5.04   -3.68   -1.98    0.18    3.06    6.78
+    15.0    0.00   -0.16   -0.68   -1.47   -2.43   -3.50   -4.58   -5.61   -6.46   -7.01   -7.15   -6.84   -6.07   -4.96   -3.58   -1.89    0.31    3.27    7.13
+    20.0    0.00   -0.16   -0.68   -1.46   -2.43   -3.50   -4.59   -5.61   -6.46   -7.00   -7.13   -6.79   -6.01   -4.88   -3.47   -1.74    0.50    3.55    7.54
+    25.0    0.00   -0.16   -0.67   -1.46   -2.42   -3.49   -4.58   -5.61   -6.45   -7.00   -7.11   -6.75   -5.95   -4.79   -3.35   -1.58    0.72    3.86    7.99
+    30.0    0.00   -0.16   -0.67   -1.45   -2.42   -3.48   -4.57   -5.60   -6.44   -6.98   -7.10   -6.73   -5.90   -4.71   -3.22   -1.39    0.97    4.20    8.45
+    35.0    0.00   -0.16   -0.67   -1.45   -2.42   -3.48   -4.56   -5.58   -6.42   -6.97   -7.08   -6.70   -5.86   -4.63   -3.10   -1.22    1.22    4.52    8.87
+    40.0    0.00   -0.16   -0.67   -1.45   -2.42   -3.47   -4.54   -5.55   -6.41   -6.96   -7.07   -6.69   -5.83   -4.58   -3.01   -1.06    1.44    4.80    9.23
+    45.0    0.00   -0.16   -0.67   -1.45   -2.41   -3.46   -4.54   -5.54   -6.39   -6.94   -7.07   -6.69   -5.83   -4.55   -2.94   -0.95    1.61    5.02    9.47
+    50.0    0.00   -0.16   -0.68   -1.45   -2.41   -3.45   -4.53   -5.53   -6.37   -6.93   -7.07   -6.71   -5.84   -4.56   -2.90   -0.87    1.73    5.16    9.60
+    55.0    0.00   -0.16   -0.68   -1.46   -2.42   -3.46   -4.52   -5.53   -6.37   -6.94   -7.08   -6.72   -5.87   -4.56   -2.90   -0.84    1.76    5.19    9.60
+    60.0    0.00   -0.16   -0.68   -1.46   -2.42   -3.46   -4.53   -5.53   -6.37   -6.93   -7.08   -6.74   -5.90   -4.61   -2.94   -0.87    1.74    5.11    9.46
+    65.0    0.00   -0.16   -0.68   -1.46   -2.43   -3.47   -4.53   -5.53   -6.37   -6.94   -7.10   -6.77   -5.94   -4.66   -3.00   -0.94    1.63    4.96    9.21
+    70.0    0.00   -0.16   -0.68   -1.47   -2.43   -3.48   -4.54   -5.53   -6.37   -6.95   -7.12   -6.80   -5.99   -4.73   -3.08   -1.05    1.48    4.74    8.87
+    75.0    0.00   -0.16   -0.68   -1.47   -2.44   -3.49   -4.56   -5.55   -6.39   -6.95   -7.13   -6.83   -6.03   -4.80   -3.18   -1.18    1.29    4.47    8.48
+    80.0    0.00   -0.16   -0.68   -1.48   -2.46   -3.50   -4.56   -5.55   -6.39   -6.96   -7.14   -6.86   -6.07   -4.86   -3.27   -1.32    1.10    4.19    8.08
+    85.0    0.00   -0.17   -0.68   -1.49   -2.46   -3.51   -4.58   -5.56   -6.39   -6.96   -7.15   -6.88   -6.11   -4.92   -3.35   -1.45    0.91    3.92    7.71
+    90.0    0.00   -0.17   -0.69   -1.49   -2.46   -3.52   -4.58   -5.56   -6.40   -6.97   -7.16   -6.90   -6.14   -4.96   -3.43   -1.56    0.75    3.69    7.38
+    95.0    0.00   -0.17   -0.70   -1.50   -2.47   -3.53   -4.59   -5.57   -6.41   -6.98   -7.18   -6.91   -6.16   -4.99   -3.48   -1.63    0.64    3.52    7.15
+   100.0    0.00   -0.17   -0.70   -1.50   -2.47   -3.53   -4.58   -5.57   -6.41   -6.99   -7.18   -6.92   -6.18   -5.00   -3.50   -1.66    0.57    3.42    7.01
+   105.0    0.00   -0.17   -0.71   -1.50   -2.47   -3.52   -4.58   -5.57   -6.41   -6.99   -7.19   -6.92   -6.18   -5.00   -3.49   -1.67    0.55    3.39    6.96
+   110.0    0.00   -0.17   -0.71   -1.50   -2.47   -3.52   -4.57   -5.56   -6.42   -7.00   -7.19   -6.93   -6.18   -4.99   -3.47   -1.65    0.58    3.41    7.00
+   115.0    0.00   -0.17   -0.71   -1.50   -2.46   -3.51   -4.56   -5.57   -6.41   -7.00   -7.21   -6.94   -6.16   -4.97   -3.43   -1.60    0.64    3.48    7.09
+   120.0    0.00   -0.17   -0.72   -1.50   -2.46   -3.50   -4.56   -5.56   -6.41   -7.01   -7.22   -6.94   -6.15   -4.94   -3.39   -1.53    0.70    3.57    7.22
+   125.0    0.00   -0.18   -0.72   -1.50   -2.46   -3.50   -4.56   -5.56   -6.43   -7.03   -7.23   -6.94   -6.13   -4.90   -3.34   -1.48    0.77    3.65    7.35
+   130.0    0.00   -0.18   -0.71   -1.51   -2.46   -3.50   -4.56   -5.56   -6.43   -7.04   -7.24   -6.94   -6.13   -4.88   -3.29   -1.43    0.83    3.72    7.44
+   135.0    0.00   -0.18   -0.71   -1.51   -2.47   -3.50   -4.56   -5.56   -6.45   -7.05   -7.26   -6.95   -6.12   -4.85   -3.26   -1.40    0.85    3.75    7.48
+   140.0    0.00   -0.19   -0.72   -1.52   -2.47   -3.50   -4.57   -5.57   -6.46   -7.07   -7.27   -6.95   -6.11   -4.83   -3.25   -1.39    0.85    3.74    7.46
+   145.0    0.00   -0.19   -0.72   -1.52   -2.47   -3.51   -4.57   -5.59   -6.47   -7.08   -7.28   -6.96   -6.11   -4.83   -3.25   -1.40    0.82    3.67    7.37
+   150.0    0.00   -0.20   -0.73   -1.52   -2.47   -3.52   -4.57   -5.59   -6.48   -7.08   -7.28   -6.96   -6.12   -4.84   -3.27   -1.44    0.75    3.56    7.22
+   155.0    0.00   -0.20   -0.74   -1.52   -2.48   -3.52   -4.57   -5.59   -6.48   -7.09   -7.29   -6.97   -6.13   -4.87   -3.31   -1.49    0.67    3.43    7.03
+   160.0    0.00   -0.20   -0.74   -1.53   -2.48   -3.53   -4.58   -5.60   -6.48   -7.09   -7.30   -6.99   -6.16   -4.91   -3.35   -1.56    0.57    3.28    6.83
+   165.0    0.00   -0.20   -0.74   -1.54   -2.49   -3.53   -4.59   -5.60   -6.47   -7.08   -7.30   -7.00   -6.19   -4.95   -3.41   -1.63    0.47    3.15    6.64
+   170.0    0.00   -0.20   -0.74   -1.54   -2.50   -3.54   -4.59   -5.59   -6.46   -7.07   -7.30   -7.02   -6.23   -5.00   -3.48   -1.70    0.40    3.06    6.51
+   175.0    0.00   -0.21   -0.75   -1.55   -2.50   -3.54   -4.59   -5.58   -6.45   -7.06   -7.29   -7.03   -6.26   -5.04   -3.53   -1.75    0.35    3.01    6.46
+   180.0    0.00   -0.20   -0.75   -1.55   -2.52   -3.54   -4.59   -5.57   -6.42   -7.05   -7.28   -7.04   -6.29   -5.09   -3.57   -1.77    0.34    3.01    6.48
+   185.0    0.00   -0.20   -0.75   -1.56   -2.52   -3.55   -4.58   -5.55   -6.40   -7.02   -7.27   -7.04   -6.30   -5.11   -3.58   -1.77    0.38    3.08    6.60
+   190.0    0.00   -0.21   -0.76   -1.56   -2.52   -3.55   -4.57   -5.54   -6.39   -7.01   -7.26   -7.04   -6.31   -5.11   -3.56   -1.72    0.46    3.22    6.82
+   195.0    0.00   -0.21   -0.76   -1.56   -2.52   -3.56   -4.57   -5.52   -6.37   -6.99   -7.25   -7.03   -6.30   -5.09   -3.51   -1.65    0.60    3.42    7.12
+   200.0    0.00   -0.21   -0.77   -1.58   -2.53   -3.55   -4.56   -5.52   -6.37   -6.97   -7.24   -7.01   -6.27   -5.04   -3.43   -1.53    0.77    3.65    7.45
+   205.0    0.00   -0.22   -0.77   -1.57   -2.53   -3.54   -4.55   -5.52   -6.35   -6.96   -7.22   -6.98   -6.23   -4.98   -3.33   -1.38    0.95    3.91    7.81
+   210.0    0.00   -0.22   -0.76   -1.58   -2.54   -3.55   -4.56   -5.51   -6.34   -6.96   -7.19   -6.95   -6.16   -4.88   -3.20   -1.21    1.16    4.17    8.15
+   215.0    0.00   -0.22   -0.77   -1.57   -2.54   -3.55   -4.56   -5.51   -6.34   -6.94   -7.17   -6.90   -6.09   -4.78   -3.06   -1.04    1.38    4.43    8.44
+   220.0    0.00   -0.21   -0.77   -1.58   -2.53   -3.56   -4.57   -5.52   -6.34   -6.94   -7.15   -6.86   -6.01   -4.66   -2.93   -0.87    1.57    4.65    8.66
+   225.0    0.00   -0.21   -0.76   -1.58   -2.54   -3.55   -4.56   -5.52   -6.35   -6.93   -7.13   -6.81   -5.94   -4.57   -2.79   -0.71    1.74    4.80    8.77
+   230.0    0.00   -0.21   -0.77   -1.58   -2.53   -3.55   -4.56   -5.53   -6.35   -6.93   -7.11   -6.77   -5.87   -4.47   -2.68   -0.59    1.86    4.90    8.79
+   235.0    0.00   -0.21   -0.77   -1.58   -2.53   -3.56   -4.57   -5.54   -6.36   -6.92   -7.09   -6.75   -5.82   -4.41   -2.61   -0.51    1.93    4.92    8.72
+   240.0    0.00   -0.21   -0.77   -1.57   -2.53   -3.56   -4.59   -5.55   -6.37   -6.93   -7.08   -6.72   -5.79   -4.36   -2.57   -0.48    1.94    4.87    8.55
+   245.0    0.00   -0.21   -0.77   -1.57   -2.53   -3.57   -4.60   -5.55   -6.38   -6.94   -7.08   -6.71   -5.78   -4.36   -2.57   -0.50    1.88    4.76    8.33
+   250.0    0.00   -0.21   -0.76   -1.57   -2.53   -3.57   -4.60   -5.58   -6.40   -6.95   -7.09   -6.71   -5.79   -4.37   -2.61   -0.58    1.77    4.59    8.07
+   255.0    0.00   -0.21   -0.76   -1.57   -2.53   -3.57   -4.60   -5.59   -6.41   -6.96   -7.10   -6.72   -5.80   -4.42   -2.69   -0.70    1.59    4.38    7.81
+   260.0    0.00   -0.21   -0.76   -1.56   -2.53   -3.57   -4.62   -5.60   -6.44   -6.99   -7.12   -6.74   -5.84   -4.48   -2.81   -0.87    1.39    4.15    7.56
+   265.0    0.00   -0.21   -0.75   -1.56   -2.53   -3.58   -4.63   -5.62   -6.45   -7.01   -7.14   -6.77   -5.88   -4.56   -2.93   -1.05    1.16    3.91    7.37
+   270.0    0.00   -0.20   -0.75   -1.55   -2.53   -3.58   -4.64   -5.64   -6.48   -7.02   -7.16   -6.79   -5.92   -4.64   -3.05   -1.24    0.94    3.69    7.23
+   275.0    0.00   -0.20   -0.75   -1.55   -2.52   -3.58   -4.65   -5.66   -6.49   -7.05   -7.18   -6.81   -5.96   -4.71   -3.19   -1.42    0.71    3.49    7.16
+   280.0    0.00   -0.20   -0.75   -1.55   -2.52   -3.57   -4.65   -5.66   -6.51   -7.06   -7.20   -6.84   -5.99   -4.77   -3.29   -1.58    0.51    3.33    7.16
+   285.0    0.00   -0.20   -0.74   -1.54   -2.51   -3.58   -4.65   -5.67   -6.51   -7.08   -7.21   -6.85   -6.02   -4.82   -3.38   -1.71    0.37    3.23    7.22
+   290.0    0.00   -0.20   -0.73   -1.54   -2.51   -3.56   -4.63   -5.66   -6.51   -7.08   -7.21   -6.87   -6.04   -4.86   -3.44   -1.80    0.27    3.17    7.32
+   295.0    0.00   -0.19   -0.73   -1.53   -2.50   -3.55   -4.63   -5.64   -6.51   -7.07   -7.22   -6.87   -6.05   -4.88   -3.48   -1.85    0.22    3.16    7.43
+   300.0    0.00   -0.19   -0.73   -1.53   -2.49   -3.54   -4.61   -5.63   -6.48   -7.06   -7.21   -6.88   -6.05   -4.89   -3.48   -1.85    0.22    3.19    7.54
+   305.0    0.00   -0.19   -0.72   -1.52   -2.48   -3.52   -4.59   -5.59   -6.46   -7.04   -7.22   -6.88   -6.06   -4.89   -3.48   -1.84    0.24    3.24    7.62
+   310.0    0.00   -0.19   -0.72   -1.51   -2.47   -3.51   -4.56   -5.57   -6.43   -7.03   -7.20   -6.88   -6.08   -4.90   -3.47   -1.81    0.31    3.30    7.65
+   315.0    0.00   -0.19   -0.72   -1.51   -2.46   -3.49   -4.54   -5.53   -6.40   -7.01   -7.19   -6.90   -6.10   -4.91   -3.47   -1.77    0.36    3.34    7.63
+   320.0    0.00   -0.18   -0.71   -1.50   -2.45   -3.48   -4.52   -5.52   -6.37   -6.97   -7.19   -6.91   -6.13   -4.93   -3.47   -1.74    0.42    3.37    7.54
+   325.0    0.00   -0.19   -0.70   -1.49   -2.44   -3.46   -4.50   -5.49   -6.34   -6.96   -7.19   -6.93   -6.16   -4.98   -3.48   -1.72    0.45    3.36    7.40
+   330.0    0.00   -0.18   -0.70   -1.48   -2.43   -3.46   -4.48   -5.47   -6.33   -6.95   -7.19   -6.95   -6.20   -5.02   -3.51   -1.74    0.45    3.32    7.20
+   335.0    0.00   -0.18   -0.70   -1.48   -2.43   -3.46   -4.49   -5.47   -6.33   -6.94   -7.19   -6.96   -6.23   -5.06   -3.56   -1.78    0.41    3.24    6.98
+   340.0    0.00   -0.17   -0.70   -1.48   -2.43   -3.45   -4.49   -5.48   -6.34   -6.95   -7.20   -6.98   -6.25   -5.10   -3.62   -1.83    0.36    3.15    6.75
+   345.0    0.00   -0.17   -0.70   -1.48   -2.43   -3.46   -4.50   -5.48   -6.34   -6.96   -7.20   -6.98   -6.27   -5.14   -3.67   -1.90    0.27    3.03    6.56
+   350.0    0.00   -0.17   -0.69   -1.48   -2.43   -3.47   -4.52   -5.51   -6.36   -6.96   -7.19   -6.98   -6.27   -5.16   -3.72   -1.97    0.18    2.94    6.41
+   355.0    0.00   -0.17   -0.69   -1.47   -2.43   -3.47   -4.53   -5.53   -6.39   -6.98   -7.20   -6.96   -6.27   -5.17   -3.75   -2.02    0.12    2.88    6.35
+   360.0    0.00   -0.17   -0.68   -1.47   -2.44   -3.49   -4.55   -5.56   -6.41   -7.00   -7.19   -6.94   -6.24   -5.15   -3.76   -2.05    0.09    2.87    6.39
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TRM59800.80     SCIT                                        TYPE / SERIAL NO    
+COPIED              Geo++ GmbH               5    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     4                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+COPIED FROM TRM59800.00     SCIT                            COMMENT             
+ATTENTION! COPIED WITHOUT VERIFICATION BY CALIBRATION!      COMMENT             
+   G01                                                      START OF FREQUENCY  
+      1.32      0.88     84.85                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.40   -1.51   -3.05   -4.69   -6.17   -7.38   -8.27   -8.85   -9.07   -8.82   -7.97   -6.45   -4.33   -1.74    1.26    4.82    9.34   15.24
+     0.0    0.00   -0.36   -1.43   -2.94   -4.55   -6.00   -7.17   -8.04   -8.62   -8.86   -8.62   -7.77   -6.24   -4.13   -1.63    1.14    4.35    8.52   14.41
+     5.0    0.00   -0.37   -1.45   -2.96   -4.58   -6.04   -7.20   -8.07   -8.64   -8.88   -8.64   -7.79   -6.27   -4.16   -1.66    1.13    4.36    8.54   14.41
+    10.0    0.00   -0.38   -1.46   -2.99   -4.61   -6.08   -7.24   -8.10   -8.67   -8.90   -8.67   -7.83   -6.31   -4.21   -1.69    1.12    4.37    8.56   14.41
+    15.0    0.00   -0.38   -1.48   -3.01   -4.65   -6.12   -7.29   -8.14   -8.70   -8.92   -8.69   -7.86   -6.36   -4.26   -1.72    1.11    4.38    8.58   14.42
+    20.0    0.00   -0.39   -1.50   -3.04   -4.69   -6.16   -7.33   -8.18   -8.73   -8.95   -8.73   -7.90   -6.41   -4.30   -1.75    1.11    4.41    8.62   14.43
+    25.0    0.00   -0.40   -1.51   -3.07   -4.73   -6.21   -7.38   -8.23   -8.77   -8.99   -8.76   -7.94   -6.44   -4.33   -1.77    1.12    4.44    8.66   14.46
+    30.0    0.00   -0.40   -1.53   -3.09   -4.76   -6.25   -7.43   -8.27   -8.81   -9.02   -8.79   -7.97   -6.47   -4.35   -1.77    1.15    4.49    8.72   14.49
+    35.0    0.00   -0.41   -1.54   -3.12   -4.80   -6.30   -7.48   -8.32   -8.86   -9.06   -8.83   -8.00   -6.49   -4.35   -1.75    1.19    4.56    8.80   14.55
+    40.0    0.00   -0.42   -1.56   -3.14   -4.83   -6.34   -7.53   -8.37   -8.91   -9.10   -8.86   -8.01   -6.49   -4.34   -1.71    1.26    4.65    8.89   14.63
+    45.0    0.00   -0.42   -1.57   -3.16   -4.86   -6.38   -7.57   -8.42   -8.95   -9.14   -8.88   -8.03   -6.48   -4.31   -1.65    1.34    4.75    9.01   14.74
+    50.0    0.00   -0.43   -1.58   -3.18   -4.88   -6.41   -7.61   -8.46   -8.99   -9.17   -8.90   -8.03   -6.47   -4.27   -1.59    1.42    4.86    9.14   14.88
+    55.0    0.00   -0.43   -1.59   -3.19   -4.90   -6.43   -7.64   -8.50   -9.02   -9.20   -8.92   -8.03   -6.45   -4.22   -1.52    1.52    4.98    9.28   15.04
+    60.0    0.00   -0.44   -1.60   -3.20   -4.91   -6.45   -7.66   -8.52   -9.05   -9.22   -8.93   -8.03   -6.43   -4.18   -1.46    1.61    5.10    9.44   15.21
+    65.0    0.00   -0.44   -1.60   -3.21   -4.92   -6.46   -7.67   -8.53   -9.06   -9.24   -8.94   -8.02   -6.41   -4.15   -1.40    1.69    5.21    9.59   15.38
+    70.0    0.00   -0.45   -1.61   -3.21   -4.92   -6.45   -7.67   -8.53   -9.06   -9.24   -8.94   -8.02   -6.40   -4.12   -1.37    1.75    5.31    9.73   15.54
+    75.0    0.00   -0.45   -1.61   -3.21   -4.92   -6.45   -7.65   -8.52   -9.06   -9.24   -8.94   -8.02   -6.40   -4.12   -1.35    1.79    5.39    9.85   15.68
+    80.0    0.00   -0.45   -1.61   -3.21   -4.91   -6.43   -7.63   -8.50   -9.04   -9.23   -8.94   -8.03   -6.41   -4.13   -1.36    1.81    5.45    9.95   15.79
+    85.0    0.00   -0.46   -1.62   -3.21   -4.90   -6.41   -7.61   -8.47   -9.02   -9.21   -8.94   -8.04   -6.43   -4.16   -1.38    1.80    5.48   10.03   15.87
+    90.0    0.00   -0.46   -1.62   -3.20   -4.88   -6.39   -7.58   -8.45   -9.00   -9.20   -8.94   -8.05   -6.46   -4.21   -1.43    1.77    5.49   10.08   15.92
+    95.0    0.00   -0.46   -1.62   -3.20   -4.87   -6.37   -7.55   -8.42   -8.98   -9.19   -8.94   -8.07   -6.50   -4.26   -1.49    1.72    5.48   10.10   15.94
+   100.0    0.00   -0.46   -1.62   -3.19   -4.86   -6.35   -7.53   -8.40   -8.96   -9.18   -8.95   -8.10   -6.55   -4.33   -1.56    1.66    5.45   10.11   15.94
+   105.0    0.00   -0.46   -1.62   -3.19   -4.85   -6.33   -7.51   -8.38   -8.95   -9.18   -8.96   -8.12   -6.59   -4.39   -1.63    1.59    5.41   10.10   15.94
+   110.0    0.00   -0.46   -1.62   -3.18   -4.84   -6.32   -7.50   -8.38   -8.95   -9.19   -8.97   -8.15   -6.63   -4.44   -1.70    1.53    5.37   10.09   15.93
+   115.0    0.00   -0.47   -1.62   -3.18   -4.83   -6.31   -7.50   -8.38   -8.96   -9.21   -9.00   -8.18   -6.67   -4.49   -1.76    1.48    5.33   10.08   15.94
+   120.0    0.00   -0.47   -1.62   -3.18   -4.83   -6.31   -7.50   -8.39   -8.98   -9.23   -9.02   -8.20   -6.70   -4.53   -1.80    1.44    5.31   10.08   15.97
+   125.0    0.00   -0.47   -1.62   -3.18   -4.83   -6.32   -7.51   -8.40   -9.00   -9.25   -9.04   -8.22   -6.72   -4.55   -1.82    1.42    5.30   10.10   16.01
+   130.0    0.00   -0.47   -1.62   -3.18   -4.83   -6.32   -7.52   -8.42   -9.01   -9.27   -9.06   -8.23   -6.73   -4.56   -1.83    1.41    5.30   10.13   16.06
+   135.0    0.00   -0.47   -1.62   -3.18   -4.83   -6.33   -7.53   -8.43   -9.03   -9.28   -9.07   -8.24   -6.73   -4.56   -1.83    1.42    5.32   10.16   16.13
+   140.0    0.00   -0.47   -1.62   -3.18   -4.84   -6.33   -7.54   -8.44   -9.04   -9.29   -9.07   -8.24   -6.73   -4.55   -1.82    1.44    5.35   10.20   16.18
+   145.0    0.00   -0.46   -1.62   -3.18   -4.84   -6.33   -7.54   -8.44   -9.04   -9.29   -9.07   -8.24   -6.72   -4.54   -1.80    1.46    5.38   10.23   16.21
+   150.0    0.00   -0.46   -1.62   -3.18   -4.84   -6.33   -7.53   -8.43   -9.02   -9.27   -9.05   -8.23   -6.71   -4.54   -1.79    1.48    5.39   10.24   16.21
+   155.0    0.00   -0.46   -1.61   -3.18   -4.84   -6.33   -7.52   -8.41   -9.00   -9.25   -9.03   -8.21   -6.70   -4.53   -1.78    1.49    5.40   10.22   16.16
+   160.0    0.00   -0.46   -1.61   -3.18   -4.83   -6.32   -7.51   -8.38   -8.97   -9.21   -9.00   -8.19   -6.70   -4.53   -1.79    1.48    5.39   10.18   16.07
+   165.0    0.00   -0.46   -1.61   -3.17   -4.83   -6.30   -7.48   -8.35   -8.93   -9.17   -8.97   -8.17   -6.69   -4.54   -1.80    1.46    5.35   10.10   15.94
+   170.0    0.00   -0.46   -1.61   -3.17   -4.82   -6.29   -7.46   -8.32   -8.88   -9.12   -8.93   -8.15   -6.69   -4.55   -1.83    1.42    5.28    9.99   15.77
+   175.0    0.00   -0.45   -1.60   -3.16   -4.81   -6.27   -7.43   -8.28   -8.84   -9.08   -8.89   -8.13   -6.68   -4.56   -1.86    1.37    5.20    9.86   15.58
+   180.0    0.00   -0.45   -1.60   -3.16   -4.80   -6.26   -7.41   -8.25   -8.81   -9.05   -8.86   -8.10   -6.68   -4.58   -1.90    1.30    5.10    9.72   15.39
+   185.0    0.00   -0.45   -1.59   -3.15   -4.79   -6.25   -7.40   -8.23   -8.78   -9.02   -8.83   -8.08   -6.67   -4.59   -1.94    1.23    4.99    9.58   15.22
+   190.0    0.00   -0.44   -1.58   -3.14   -4.78   -6.24   -7.39   -8.22   -8.77   -9.00   -8.81   -8.06   -6.65   -4.60   -1.98    1.15    4.88    9.45   15.09
+   195.0    0.00   -0.44   -1.58   -3.13   -4.77   -6.23   -7.38   -8.22   -8.77   -8.99   -8.79   -8.03   -6.63   -4.59   -2.01    1.09    4.78    9.34   15.00
+   200.0    0.00   -0.43   -1.57   -3.12   -4.76   -6.22   -7.39   -8.23   -8.78   -8.99   -8.78   -8.00   -6.60   -4.57   -2.02    1.04    4.71    9.27   14.97
+   205.0    0.00   -0.43   -1.56   -3.11   -4.75   -6.22   -7.39   -8.25   -8.80   -9.00   -8.77   -7.98   -6.56   -4.54   -2.01    1.01    4.65    9.23   15.00
+   210.0    0.00   -0.42   -1.55   -3.10   -4.74   -6.22   -7.41   -8.27   -8.82   -9.02   -8.76   -7.94   -6.50   -4.49   -1.98    1.00    4.63    9.23   15.08
+   215.0    0.00   -0.41   -1.54   -3.08   -4.73   -6.22   -7.42   -8.30   -8.85   -9.04   -8.76   -7.91   -6.45   -4.43   -1.94    1.02    4.64    9.27   15.20
+   220.0    0.00   -0.41   -1.52   -3.07   -4.72   -6.22   -7.43   -8.32   -8.88   -9.06   -8.75   -7.87   -6.38   -4.36   -1.88    1.06    4.67    9.33   15.34
+   225.0    0.00   -0.40   -1.51   -3.05   -4.70   -6.21   -7.44   -8.34   -8.91   -9.08   -8.75   -7.83   -6.32   -4.28   -1.81    1.12    4.72    9.41   15.48
+   230.0    0.00   -0.40   -1.50   -3.04   -4.69   -6.20   -7.44   -8.36   -8.93   -9.09   -8.74   -7.80   -6.26   -4.20   -1.73    1.18    4.79    9.50   15.61
+   235.0    0.00   -0.39   -1.49   -3.02   -4.67   -6.19   -7.44   -8.36   -8.94   -9.10   -8.74   -7.77   -6.20   -4.13   -1.66    1.25    4.85    9.57   15.71
+   240.0    0.00   -0.38   -1.47   -3.00   -4.65   -6.17   -7.43   -8.36   -8.95   -9.11   -8.73   -7.75   -6.16   -4.07   -1.59    1.31    4.91    9.63   15.78
+   245.0    0.00   -0.38   -1.46   -2.98   -4.62   -6.15   -7.41   -8.35   -8.95   -9.11   -8.73   -7.74   -6.14   -4.03   -1.54    1.36    4.95    9.67   15.80
+   250.0    0.00   -0.37   -1.45   -2.96   -4.60   -6.12   -7.39   -8.34   -8.94   -9.11   -8.74   -7.74   -6.13   -4.02   -1.52    1.39    4.97    9.67   15.79
+   255.0    0.00   -0.36   -1.43   -2.94   -4.57   -6.09   -7.36   -8.32   -8.93   -9.11   -8.74   -7.75   -6.14   -4.02   -1.52    1.39    4.96    9.65   15.74
+   260.0    0.00   -0.36   -1.42   -2.92   -4.55   -6.06   -7.33   -8.29   -8.91   -9.10   -8.76   -7.78   -6.17   -4.05   -1.55    1.36    4.93    9.59   15.66
+   265.0    0.00   -0.35   -1.41   -2.90   -4.52   -6.03   -7.29   -8.26   -8.89   -9.10   -8.77   -7.81   -6.22   -4.10   -1.60    1.31    4.87    9.52   15.57
+   270.0    0.00   -0.35   -1.40   -2.88   -4.50   -6.00   -7.26   -8.23   -8.87   -9.10   -8.79   -7.86   -6.28   -4.17   -1.67    1.23    4.79    9.43   15.47
+   275.0    0.00   -0.34   -1.38   -2.86   -4.47   -5.97   -7.23   -8.19   -8.84   -9.09   -8.82   -7.90   -6.35   -4.25   -1.75    1.15    4.69    9.33   15.37
+   280.0    0.00   -0.34   -1.38   -2.85   -4.45   -5.94   -7.19   -8.16   -8.82   -9.09   -8.84   -7.95   -6.42   -4.34   -1.84    1.05    4.59    9.22   15.28
+   285.0    0.00   -0.34   -1.37   -2.84   -4.43   -5.92   -7.16   -8.13   -8.80   -9.08   -8.85   -7.99   -6.48   -4.42   -1.93    0.96    4.49    9.12   15.20
+   290.0    0.00   -0.33   -1.36   -2.82   -4.42   -5.90   -7.14   -8.10   -8.77   -9.07   -8.86   -8.03   -6.54   -4.49   -2.01    0.88    4.40    9.02   15.12
+   295.0    0.00   -0.33   -1.36   -2.82   -4.40   -5.88   -7.11   -8.07   -8.75   -9.06   -8.87   -8.05   -6.58   -4.54   -2.07    0.81    4.32    8.93   15.05
+   300.0    0.00   -0.33   -1.35   -2.81   -4.39   -5.86   -7.09   -8.05   -8.72   -9.04   -8.86   -8.06   -6.60   -4.57   -2.10    0.77    4.26    8.85   14.99
+   305.0    0.00   -0.33   -1.35   -2.81   -4.39   -5.85   -7.07   -8.03   -8.70   -9.01   -8.84   -8.05   -6.60   -4.57   -2.11    0.74    4.21    8.78   14.92
+   310.0    0.00   -0.33   -1.35   -2.81   -4.39   -5.84   -7.06   -8.01   -8.67   -8.99   -8.82   -8.03   -6.58   -4.55   -2.09    0.75    4.19    8.72   14.85
+   315.0    0.00   -0.33   -1.35   -2.81   -4.39   -5.84   -7.05   -7.99   -8.65   -8.96   -8.79   -8.00   -6.54   -4.51   -2.05    0.77    4.18    8.66   14.77
+   320.0    0.00   -0.33   -1.35   -2.81   -4.39   -5.84   -7.05   -7.98   -8.63   -8.94   -8.76   -7.96   -6.49   -4.45   -1.99    0.82    4.18    8.62   14.70
+   325.0    0.00   -0.33   -1.36   -2.82   -4.40   -5.85   -7.05   -7.97   -8.61   -8.91   -8.72   -7.91   -6.43   -4.38   -1.92    0.87    4.20    8.58   14.63
+   330.0    0.00   -0.33   -1.36   -2.83   -4.41   -5.86   -7.05   -7.97   -8.60   -8.89   -8.69   -7.87   -6.37   -4.30   -1.84    0.94    4.22    8.55   14.57
+   335.0    0.00   -0.34   -1.37   -2.84   -4.42   -5.87   -7.06   -7.97   -8.59   -8.87   -8.66   -7.82   -6.31   -4.23   -1.76    1.00    4.25    8.53   14.51
+   340.0    0.00   -0.34   -1.38   -2.86   -4.44   -5.89   -7.07   -7.98   -8.59   -8.86   -8.64   -7.79   -6.27   -4.17   -1.70    1.05    4.27    8.51   14.47
+   345.0    0.00   -0.35   -1.39   -2.87   -4.46   -5.91   -7.09   -7.99   -8.59   -8.85   -8.62   -7.76   -6.23   -4.13   -1.65    1.09    4.30    8.51   14.44
+   350.0    0.00   -0.35   -1.41   -2.89   -4.49   -5.94   -7.11   -8.00   -8.60   -8.85   -8.61   -7.75   -6.22   -4.11   -1.63    1.12    4.32    8.51   14.42
+   355.0    0.00   -0.36   -1.42   -2.91   -4.51   -5.97   -7.14   -8.02   -8.61   -8.85   -8.62   -7.75   -6.22   -4.11   -1.62    1.14    4.33    8.51   14.41
+   360.0    0.00   -0.36   -1.43   -2.94   -4.55   -6.00   -7.17   -8.04   -8.62   -8.86   -8.62   -7.77   -6.24   -4.13   -1.63    1.14    4.35    8.52   14.41
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      1.02     -0.32    118.08                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.13   -0.52   -1.11   -1.83   -2.62   -3.44   -4.22   -4.92   -5.46   -5.72   -5.60   -4.99   -3.83   -2.07    0.32    3.33    6.88   10.76
+     0.0    0.00   -0.10   -0.48   -1.07   -1.81   -2.62   -3.43   -4.19   -4.87   -5.41   -5.72   -5.68   -5.16   -4.05   -2.32   -0.03    2.78    6.08    9.97
+     5.0    0.00   -0.11   -0.48   -1.08   -1.82   -2.62   -3.42   -4.18   -4.86   -5.41   -5.73   -5.70   -5.17   -4.05   -2.32   -0.01    2.81    6.13   10.06
+    10.0    0.00   -0.11   -0.48   -1.08   -1.81   -2.61   -3.41   -4.17   -4.85   -5.40   -5.73   -5.70   -5.17   -4.04   -2.29    0.04    2.89    6.25   10.21
+    15.0    0.00   -0.11   -0.49   -1.08   -1.81   -2.61   -3.40   -4.16   -4.84   -5.40   -5.73   -5.69   -5.15   -4.01   -2.23    0.14    3.02    6.42   10.40
+    20.0    0.00   -0.11   -0.49   -1.08   -1.81   -2.60   -3.39   -4.15   -4.83   -5.39   -5.71   -5.67   -5.12   -3.95   -2.14    0.26    3.19    6.63   10.62
+    25.0    0.00   -0.12   -0.49   -1.09   -1.81   -2.60   -3.39   -4.14   -4.83   -5.38   -5.70   -5.64   -5.07   -3.88   -2.04    0.41    3.39    6.87   10.88
+    30.0    0.00   -0.12   -0.50   -1.09   -1.81   -2.60   -3.39   -4.14   -4.83   -5.37   -5.68   -5.60   -5.01   -3.79   -1.92    0.57    3.60    7.13   11.14
+    35.0    0.00   -0.12   -0.50   -1.09   -1.82   -2.60   -3.39   -4.15   -4.83   -5.37   -5.66   -5.56   -4.94   -3.70   -1.80    0.72    3.80    7.38   11.40
+    40.0    0.00   -0.12   -0.51   -1.10   -1.82   -2.61   -3.40   -4.16   -4.84   -5.37   -5.64   -5.52   -4.88   -3.61   -1.70    0.85    3.97    7.60   11.65
+    45.0    0.00   -0.13   -0.51   -1.10   -1.83   -2.62   -3.42   -4.18   -4.86   -5.37   -5.63   -5.49   -4.82   -3.54   -1.61    0.95    4.10    7.78   11.87
+    50.0    0.00   -0.13   -0.51   -1.11   -1.84   -2.63   -3.44   -4.20   -4.87   -5.38   -5.62   -5.46   -4.78   -3.49   -1.56    1.00    4.18    7.90   12.04
+    55.0    0.00   -0.13   -0.52   -1.12   -1.85   -2.65   -3.45   -4.22   -4.89   -5.39   -5.61   -5.44   -4.75   -3.47   -1.55    1.01    4.19    7.95   12.15
+    60.0    0.00   -0.13   -0.52   -1.12   -1.86   -2.66   -3.47   -4.24   -4.90   -5.39   -5.61   -5.43   -4.75   -3.48   -1.58    0.96    4.14    7.93   12.20
+    65.0    0.00   -0.14   -0.53   -1.13   -1.87   -2.67   -3.48   -4.25   -4.91   -5.40   -5.61   -5.44   -4.77   -3.52   -1.65    0.86    4.03    7.84   12.18
+    70.0    0.00   -0.14   -0.54   -1.14   -1.88   -2.68   -3.49   -4.25   -4.91   -5.40   -5.62   -5.46   -4.80   -3.58   -1.75    0.72    3.87    7.69   12.09
+    75.0    0.00   -0.14   -0.54   -1.14   -1.88   -2.69   -3.49   -4.25   -4.91   -5.40   -5.63   -5.48   -4.85   -3.67   -1.88    0.55    3.67    7.49   11.93
+    80.0    0.00   -0.15   -0.54   -1.15   -1.89   -2.69   -3.49   -4.24   -4.90   -5.40   -5.64   -5.51   -4.91   -3.76   -2.01    0.37    3.45    7.26   11.72
+    85.0    0.00   -0.15   -0.55   -1.16   -1.89   -2.69   -3.48   -4.23   -4.89   -5.39   -5.64   -5.54   -4.97   -3.86   -2.15    0.20    3.23    7.01   11.48
+    90.0    0.00   -0.15   -0.55   -1.16   -1.90   -2.69   -3.47   -4.21   -4.87   -5.38   -5.65   -5.57   -5.03   -3.94   -2.27    0.04    3.03    6.76   11.22
+    95.0    0.00   -0.15   -0.56   -1.16   -1.90   -2.68   -3.46   -4.20   -4.86   -5.37   -5.66   -5.59   -5.07   -4.01   -2.36   -0.09    2.85    6.55   10.98
+   100.0    0.00   -0.16   -0.56   -1.17   -1.90   -2.68   -3.46   -4.19   -4.85   -5.37   -5.66   -5.61   -5.10   -4.06   -2.43   -0.19    2.72    6.37   10.76
+   105.0    0.00   -0.16   -0.56   -1.17   -1.90   -2.68   -3.45   -4.19   -4.84   -5.37   -5.66   -5.62   -5.11   -4.08   -2.46   -0.24    2.64    6.25   10.59
+   110.0    0.00   -0.16   -0.57   -1.17   -1.90   -2.68   -3.45   -4.19   -4.85   -5.37   -5.66   -5.61   -5.11   -4.07   -2.46   -0.25    2.61    6.19   10.48
+   115.0    0.00   -0.16   -0.57   -1.17   -1.90   -2.68   -3.46   -4.20   -4.86   -5.38   -5.67   -5.60   -5.08   -4.04   -2.43   -0.22    2.62    6.18   10.42
+   120.0    0.00   -0.16   -0.57   -1.17   -1.90   -2.68   -3.47   -4.22   -4.88   -5.40   -5.67   -5.58   -5.05   -3.99   -2.38   -0.17    2.68    6.22   10.41
+   125.0    0.00   -0.17   -0.57   -1.18   -1.90   -2.69   -3.48   -4.24   -4.91   -5.42   -5.67   -5.56   -5.01   -3.94   -2.31   -0.09    2.76    6.29   10.42
+   130.0    0.00   -0.17   -0.58   -1.18   -1.90   -2.70   -3.50   -4.27   -4.94   -5.44   -5.67   -5.55   -4.97   -3.88   -2.24   -0.01    2.86    6.38   10.45
+   135.0    0.00   -0.17   -0.58   -1.18   -1.91   -2.70   -3.52   -4.29   -4.97   -5.46   -5.68   -5.53   -4.93   -3.83   -2.18    0.07    2.96    6.48   10.47
+   140.0    0.00   -0.17   -0.58   -1.18   -1.91   -2.71   -3.53   -4.32   -4.99   -5.48   -5.69   -5.52   -4.90   -3.79   -2.12    0.14    3.04    6.55   10.45
+   145.0    0.00   -0.17   -0.58   -1.18   -1.91   -2.72   -3.54   -4.34   -5.02   -5.50   -5.70   -5.51   -4.89   -3.76   -2.09    0.19    3.11    6.59   10.39
+   150.0    0.00   -0.17   -0.58   -1.18   -1.91   -2.72   -3.55   -4.35   -5.04   -5.52   -5.71   -5.52   -4.88   -3.75   -2.07    0.22    3.14    6.59   10.26
+   155.0    0.00   -0.17   -0.58   -1.18   -1.91   -2.72   -3.56   -4.36   -5.05   -5.53   -5.72   -5.52   -4.89   -3.75   -2.06    0.24    3.15    6.55   10.09
+   160.0    0.00   -0.17   -0.58   -1.18   -1.91   -2.72   -3.56   -4.37   -5.06   -5.54   -5.73   -5.54   -4.90   -3.76   -2.07    0.23    3.13    6.47    9.88
+   165.0    0.00   -0.17   -0.58   -1.18   -1.91   -2.72   -3.56   -4.37   -5.06   -5.55   -5.74   -5.55   -4.91   -3.78   -2.08    0.22    3.10    6.38    9.66
+   170.0    0.00   -0.17   -0.58   -1.18   -1.90   -2.72   -3.56   -4.37   -5.06   -5.56   -5.75   -5.56   -4.93   -3.79   -2.09    0.20    3.06    6.29    9.47
+   175.0    0.00   -0.17   -0.58   -1.17   -1.90   -2.71   -3.56   -4.37   -5.07   -5.56   -5.76   -5.58   -4.94   -3.79   -2.09    0.20    3.03    6.21    9.33
+   180.0    0.00   -0.17   -0.58   -1.17   -1.90   -2.71   -3.55   -4.36   -5.07   -5.57   -5.77   -5.58   -4.94   -3.79   -2.08    0.21    3.03    6.19    9.28
+   185.0    0.00   -0.17   -0.58   -1.17   -1.90   -2.71   -3.55   -4.36   -5.07   -5.57   -5.77   -5.59   -4.94   -3.78   -2.05    0.25    3.07    6.22    9.33
+   190.0    0.00   -0.17   -0.57   -1.17   -1.90   -2.71   -3.55   -4.36   -5.07   -5.57   -5.78   -5.59   -4.93   -3.75   -2.01    0.31    3.14    6.33    9.50
+   195.0    0.00   -0.16   -0.57   -1.17   -1.90   -2.71   -3.54   -4.36   -5.06   -5.57   -5.78   -5.59   -4.92   -3.72   -1.95    0.40    3.27    6.51    9.79
+   200.0    0.00   -0.16   -0.57   -1.16   -1.89   -2.70   -3.54   -4.35   -5.06   -5.57   -5.78   -5.58   -4.90   -3.68   -1.88    0.51    3.44    6.76   10.17
+   205.0    0.00   -0.16   -0.56   -1.16   -1.89   -2.69   -3.53   -4.34   -5.05   -5.57   -5.78   -5.58   -4.89   -3.64   -1.80    0.64    3.64    7.06   10.61
+   210.0    0.00   -0.16   -0.56   -1.15   -1.88   -2.68   -3.52   -4.33   -5.04   -5.57   -5.78   -5.58   -4.88   -3.61   -1.73    0.78    3.86    7.38   11.08
+   215.0    0.00   -0.15   -0.55   -1.14   -1.87   -2.67   -3.50   -4.32   -5.03   -5.56   -5.78   -5.59   -4.88   -3.59   -1.66    0.91    4.08    7.71   11.53
+   220.0    0.00   -0.15   -0.54   -1.13   -1.85   -2.65   -3.48   -4.29   -5.01   -5.55   -5.78   -5.60   -4.89   -3.58   -1.62    1.02    4.27    8.00   11.91
+   225.0    0.00   -0.15   -0.54   -1.12   -1.84   -2.63   -3.46   -4.27   -5.00   -5.54   -5.79   -5.61   -4.91   -3.59   -1.60    1.09    4.42    8.23   12.19
+   230.0    0.00   -0.14   -0.53   -1.10   -1.82   -2.61   -3.43   -4.24   -4.98   -5.53   -5.79   -5.63   -4.94   -3.62   -1.60    1.13    4.52    8.38   12.34
+   235.0    0.00   -0.14   -0.52   -1.09   -1.79   -2.58   -3.40   -4.22   -4.96   -5.52   -5.80   -5.66   -4.98   -3.66   -1.64    1.11    4.54    8.42   12.37
+   240.0    0.00   -0.13   -0.51   -1.07   -1.77   -2.55   -3.38   -4.19   -4.94   -5.52   -5.81   -5.68   -5.02   -3.72   -1.70    1.05    4.48    8.37   12.26
+   245.0    0.00   -0.13   -0.50   -1.05   -1.75   -2.52   -3.35   -4.17   -4.93   -5.52   -5.82   -5.71   -5.06   -3.78   -1.79    0.94    4.35    8.22   12.05
+   250.0    0.00   -0.12   -0.49   -1.04   -1.72   -2.50   -3.32   -4.16   -4.92   -5.52   -5.83   -5.72   -5.10   -3.85   -1.90    0.79    4.16    7.99   11.76
+   255.0    0.00   -0.12   -0.48   -1.02   -1.70   -2.47   -3.30   -4.14   -4.92   -5.52   -5.83   -5.74   -5.13   -3.91   -2.01    0.61    3.92    7.71   11.43
+   260.0    0.00   -0.12   -0.47   -1.00   -1.68   -2.45   -3.29   -4.13   -4.92   -5.52   -5.84   -5.74   -5.15   -3.97   -2.13    0.41    3.66    7.40   11.10
+   265.0    0.00   -0.11   -0.46   -0.99   -1.66   -2.43   -3.28   -4.13   -4.92   -5.53   -5.84   -5.74   -5.16   -4.01   -2.25    0.22    3.39    7.10   10.80
+   270.0    0.00   -0.11   -0.45   -0.98   -1.65   -2.42   -3.27   -4.13   -4.92   -5.53   -5.83   -5.73   -5.15   -4.05   -2.34    0.04    3.15    6.83   10.56
+   275.0    0.00   -0.11   -0.44   -0.97   -1.63   -2.41   -3.26   -4.13   -4.92   -5.53   -5.82   -5.71   -5.14   -4.07   -2.42   -0.10    2.95    6.61   10.40
+   280.0    0.00   -0.10   -0.44   -0.96   -1.63   -2.41   -3.26   -4.13   -4.92   -5.52   -5.80   -5.69   -5.12   -4.07   -2.47   -0.21    2.80    6.46   10.32
+   285.0    0.00   -0.10   -0.43   -0.95   -1.62   -2.41   -3.26   -4.13   -4.92   -5.50   -5.78   -5.66   -5.09   -4.06   -2.49   -0.27    2.71    6.38   10.31
+   290.0    0.00   -0.10   -0.43   -0.95   -1.63   -2.41   -3.26   -4.13   -4.91   -5.48   -5.75   -5.62   -5.06   -4.04   -2.48   -0.28    2.68    6.37   10.35
+   295.0    0.00   -0.10   -0.43   -0.96   -1.63   -2.42   -3.27   -4.13   -4.89   -5.46   -5.72   -5.59   -5.03   -4.00   -2.45   -0.25    2.71    6.40   10.42
+   300.0    0.00   -0.09   -0.43   -0.96   -1.64   -2.43   -3.28   -4.12   -4.88   -5.43   -5.68   -5.55   -4.99   -3.97   -2.40   -0.19    2.78    6.46   10.51
+   305.0    0.00   -0.09   -0.43   -0.97   -1.65   -2.44   -3.29   -4.12   -4.86   -5.41   -5.66   -5.53   -4.97   -3.93   -2.34   -0.11    2.86    6.54   10.57
+   310.0    0.00   -0.09   -0.43   -0.98   -1.67   -2.46   -3.30   -4.12   -4.85   -5.38   -5.63   -5.51   -4.95   -3.89   -2.28   -0.02    2.96    6.61   10.61
+   315.0    0.00   -0.09   -0.44   -0.99   -1.69   -2.48   -3.32   -4.13   -4.84   -5.36   -5.61   -5.49   -4.93   -3.86   -2.22    0.07    3.04    6.65   10.60
+   320.0    0.00   -0.09   -0.44   -1.00   -1.71   -2.51   -3.34   -4.13   -4.83   -5.35   -5.60   -5.49   -4.93   -3.84   -2.18    0.13    3.09    6.65   10.56
+   325.0    0.00   -0.09   -0.44   -1.01   -1.73   -2.53   -3.35   -4.14   -4.83   -5.35   -5.60   -5.50   -4.94   -3.84   -2.15    0.17    3.12    6.62   10.47
+   330.0    0.00   -0.10   -0.45   -1.02   -1.75   -2.55   -3.37   -4.15   -4.83   -5.35   -5.61   -5.51   -4.96   -3.85   -2.14    0.18    3.10    6.54   10.35
+   335.0    0.00   -0.10   -0.45   -1.03   -1.77   -2.58   -3.39   -4.17   -4.84   -5.36   -5.63   -5.54   -4.98   -3.87   -2.16    0.17    3.06    6.44   10.22
+   340.0    0.00   -0.10   -0.46   -1.04   -1.78   -2.59   -3.41   -4.18   -4.85   -5.37   -5.65   -5.57   -5.02   -3.91   -2.19    0.13    2.99    6.33   10.10
+   345.0    0.00   -0.10   -0.46   -1.05   -1.80   -2.61   -3.42   -4.19   -4.86   -5.38   -5.67   -5.60   -5.06   -3.94   -2.23    0.08    2.91    6.22   10.01
+   350.0    0.00   -0.10   -0.47   -1.06   -1.80   -2.62   -3.43   -4.19   -4.87   -5.39   -5.69   -5.63   -5.10   -3.99   -2.27    0.03    2.84    6.13    9.94
+   355.0    0.00   -0.10   -0.47   -1.07   -1.81   -2.62   -3.43   -4.19   -4.87   -5.40   -5.71   -5.66   -5.13   -4.02   -2.30   -0.01    2.79    6.08    9.93
+   360.0    0.00   -0.10   -0.48   -1.07   -1.81   -2.62   -3.43   -4.19   -4.87   -5.41   -5.72   -5.68   -5.16   -4.05   -2.32   -0.03    2.78    6.08    9.97
+   G02                                                      END OF FREQUENCY    
+   R01                                                      START OF FREQUENCY  
+      1.32      0.88     84.85                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.43   -1.64   -3.32   -5.08   -6.69   -8.01   -9.00   -9.70  -10.04   -9.89   -9.12   -7.64   -5.54   -2.98   -0.06    3.42    7.96   14.18
+     0.0    0.00   -0.40   -1.58   -3.23   -4.99   -6.55   -7.83   -8.79   -9.49   -9.85   -9.74   -8.98   -7.51   -5.36   -2.80   -1.14    3.15    7.07   12.56
+     5.0    0.00   -0.41   -1.60   -3.26   -5.03   -6.64   -7.92   -8.90   -9.59   -9.94   -9.83   -9.08   -7.60   -5.46   -2.87   -0.02    3.17    7.08   12.45
+    10.0    0.00   -0.41   -1.60   -3.29   -5.08   -6.72   -8.03   -9.01   -9.70  -10.05   -9.94   -9.19   -7.70   -5.56   -2.94   -0.06    3.15    7.06   12.37
+    15.0    0.00   -0.41   -1.61   -3.31   -5.14   -6.80   -8.13   -9.12   -9.81  -10.15  -10.03   -9.28   -7.82   -5.67   -3.04   -0.13    3.08    7.01   12.31
+    20.0    0.00   -0.41   -1.63   -3.33   -5.19   -6.86   -8.22   -9.22   -9.91  -10.26  -10.14   -9.38   -7.91   -5.76   -3.12   -0.22    3.01    6.95   12.30
+    25.0    0.00   -0.41   -1.63   -3.36   -5.23   -6.93   -8.30   -9.33  -10.00  -10.35  -10.22   -9.46   -7.97   -5.82   -3.21   -0.30    2.90    6.87   12.33
+    30.0    0.00   -0.41   -1.64   -3.37   -5.26   -6.97   -8.37   -9.39  -10.08  -10.41  -10.27   -9.50   -8.00   -5.86   -3.26   -0.38    2.81    6.82   12.41
+    35.0    0.00   -0.41   -1.64   -3.39   -5.29   -7.02   -8.42   -9.44  -10.14  -10.45  -10.31   -9.52   -8.01   -5.86   -3.28   -0.44    2.74    6.79   12.54
+    40.0    0.00   -0.42   -1.65   -3.38   -5.30   -7.04   -8.44   -9.47  -10.16  -10.48  -10.32   -9.51   -7.99   -5.84   -3.26   -0.45    2.71    6.80   12.72
+    45.0    0.00   -0.41   -1.64   -3.39   -5.31   -7.05   -8.44   -9.48  -10.16  -10.48  -10.30   -9.49   -7.94   -5.79   -3.21   -0.41    2.74    6.87   12.94
+    50.0    0.00   -0.41   -1.63   -3.39   -5.29   -7.04   -8.44   -9.47  -10.15  -10.46  -10.27   -9.44   -7.88   -5.72   -3.14   -0.34    2.82    7.00   13.20
+    55.0    0.00   -0.41   -1.63   -3.38   -5.28   -7.01   -8.42   -9.45  -10.12  -10.42  -10.24   -9.39   -7.82   -5.62   -3.04   -0.22    2.96    7.19   13.47
+    60.0    0.00   -0.41   -1.63   -3.38   -5.27   -6.99   -8.38   -9.40  -10.09  -10.39  -10.20   -9.35   -7.77   -5.55   -2.94   -0.09    3.14    7.42   13.73
+    65.0    0.00   -0.41   -1.62   -3.37   -5.25   -6.97   -8.35   -9.37  -10.05  -10.37  -10.17   -9.31   -7.72   -5.48   -2.82    0.07    3.35    7.68   13.98
+    70.0    0.00   -0.42   -1.63   -3.36   -5.23   -6.94   -8.32   -9.34  -10.02  -10.34  -10.14   -9.29   -7.69   -5.42   -2.73    0.22    3.58    7.94   14.19
+    75.0    0.00   -0.41   -1.62   -3.34   -5.22   -6.92   -8.29   -9.31  -10.01  -10.32  -10.13   -9.27   -7.68   -5.39   -2.66    0.35    3.78    8.18   14.36
+    80.0    0.00   -0.41   -1.61   -3.34   -5.20   -6.90   -8.27   -9.30   -9.99  -10.31  -10.14   -9.28   -7.68   -5.37   -2.61    0.47    3.96    8.40   14.48
+    85.0    0.00   -0.42   -1.62   -3.33   -5.19   -6.88   -8.26   -9.29   -9.99  -10.32  -10.15   -9.29   -7.68   -5.38   -2.60    0.52    4.10    8.58   14.57
+    90.0    0.00   -0.42   -1.62   -3.32   -5.18   -6.88   -8.25   -9.30  -10.00  -10.33  -10.16   -9.30   -7.70   -5.42   -2.62    0.55    4.18    8.71   14.64
+    95.0    0.00   -0.42   -1.62   -3.32   -5.17   -6.88   -8.25   -9.30  -10.01  -10.34  -10.16   -9.31   -7.73   -5.45   -2.66    0.53    4.23    8.79   14.70
+   100.0    0.00   -0.42   -1.62   -3.32   -5.18   -6.88   -8.26   -9.31  -10.02  -10.34  -10.16   -9.33   -7.76   -5.51   -2.73    0.47    4.22    8.86   14.75
+   105.0    0.00   -0.42   -1.62   -3.32   -5.18   -6.88   -8.28   -9.33  -10.02  -10.34  -10.15   -9.31   -7.77   -5.55   -2.80    0.39    4.18    8.88   14.83
+   110.0    0.00   -0.42   -1.62   -3.32   -5.18   -6.88   -8.28   -9.34  -10.02  -10.33  -10.13   -9.30   -7.77   -5.59   -2.87    0.32    4.14    8.91   14.93
+   115.0    0.00   -0.43   -1.63   -3.33   -5.18   -6.88   -8.29   -9.33  -10.01  -10.31  -10.11   -9.28   -7.77   -5.62   -2.94    0.25    4.09    8.94   15.09
+   120.0    0.00   -0.43   -1.63   -3.34   -5.19   -6.89   -8.29   -9.31   -9.99  -10.27  -10.06   -9.23   -7.75   -5.64   -2.98    0.19    4.07    9.00   15.28
+   125.0    0.00   -0.43   -1.64   -3.34   -5.19   -6.90   -8.28   -9.29   -9.96  -10.22  -10.01   -9.19   -7.72   -5.62   -3.00    0.17    4.07    9.08   15.49
+   130.0    0.00   -0.44   -1.64   -3.35   -5.20   -6.89   -8.26   -9.27   -9.90  -10.16   -9.95   -9.13   -7.69   -5.61   -3.00    0.16    4.09    9.17   15.71
+   135.0    0.00   -0.44   -1.65   -3.36   -5.20   -6.89   -8.24   -9.23   -9.86  -10.10   -9.89   -9.08   -7.64   -5.59   -2.98    0.19    4.13    9.28   15.92
+   140.0    0.00   -0.45   -1.66   -3.37   -5.21   -6.88   -8.22   -9.19   -9.81  -10.04   -9.82   -9.03   -7.60   -5.55   -2.95    0.23    4.20    9.37   16.08
+   145.0    0.00   -0.44   -1.67   -3.37   -5.21   -6.87   -8.20   -9.15   -9.75   -9.99   -9.77   -8.98   -7.56   -5.52   -2.91    0.27    4.25    9.44   16.18
+   150.0    0.00   -0.45   -1.67   -3.38   -5.21   -6.86   -8.17   -9.11   -9.70   -9.93   -9.72   -8.94   -7.53   -5.49   -2.87    0.31    4.28    9.47   16.20
+   155.0    0.00   -0.45   -1.67   -3.39   -5.22   -6.86   -8.15   -9.07   -9.66   -9.89   -9.68   -8.90   -7.50   -5.45   -2.84    0.33    4.29    9.44   16.13
+   160.0    0.00   -0.46   -1.68   -3.39   -5.21   -6.85   -8.14   -9.04   -9.62   -9.85   -9.64   -8.87   -7.48   -5.44   -2.84    0.32    4.27    9.37   15.97
+   165.0    0.00   -0.46   -1.70   -3.39   -5.21   -6.83   -8.11   -9.01   -9.59   -9.81   -9.61   -8.85   -7.46   -5.44   -2.85    0.29    4.20    9.23   15.75
+   170.0    0.00   -0.47   -1.71   -3.40   -5.21   -6.82   -8.09   -8.99   -9.55   -9.78   -9.58   -8.83   -7.46   -5.45   -2.89    0.23    4.09    9.05   15.46
+   175.0    0.00   -0.47   -1.71   -3.39   -5.20   -6.80   -8.06   -8.96   -9.53   -9.75   -9.56   -8.82   -7.45   -5.46   -2.93    0.15    3.96    8.85   15.15
+   180.0    0.00   -0.47   -1.71   -3.40   -5.19   -6.78   -8.04   -8.93   -9.51   -9.74   -9.55   -8.81   -7.47   -5.50   -3.01    0.05    3.81    8.65   14.85
+   185.0    0.00   -0.48   -1.71   -3.39   -5.18   -6.77   -8.02   -8.91   -9.49   -9.73   -9.54   -8.82   -7.49   -5.55   -3.07   -0.06    3.67    8.45   14.59
+   190.0    0.00   -0.47   -1.71   -3.40   -5.16   -6.74   -7.99   -8.89   -9.48   -9.73   -9.55   -8.84   -7.51   -5.59   -3.14   -0.16    3.54    8.29   14.40
+   195.0    0.00   -0.48   -1.72   -3.39   -5.15   -6.72   -7.95   -8.87   -9.47   -9.73   -9.57   -8.86   -7.54   -5.63   -3.20   -0.23    3.44    8.17   14.27
+   200.0    0.00   -0.48   -1.72   -3.39   -5.13   -6.69   -7.93   -8.85   -9.47   -9.74   -9.60   -8.88   -7.57   -5.65   -3.23   -0.28    3.38    8.12   14.24
+   205.0    0.00   -0.48   -1.72   -3.38   -5.11   -6.66   -7.90   -8.83   -9.47   -9.77   -9.63   -8.94   -7.60   -5.68   -3.24   -0.30    3.34    8.10   14.29
+   210.0    0.00   -0.48   -1.72   -3.37   -5.09   -6.63   -7.89   -8.82   -9.48   -9.81   -9.67   -8.96   -7.61   -5.67   -3.22   -0.30    3.35    8.13   14.40
+   215.0    0.00   -0.48   -1.71   -3.36   -5.08   -6.61   -7.87   -8.82   -9.50   -9.84   -9.72   -8.99   -7.62   -5.64   -3.18   -0.26    3.40    8.20   14.56
+   220.0    0.00   -0.48   -1.70   -3.35   -5.06   -6.60   -7.84   -8.82   -9.52   -9.88   -9.75   -9.01   -7.59   -5.59   -3.12   -0.19    3.44    8.27   14.74
+   225.0    0.00   -0.49   -1.70   -3.34   -5.04   -6.58   -7.84   -8.83   -9.55   -9.92   -9.79   -9.02   -7.57   -5.52   -3.04   -0.11    3.49    8.33   14.93
+   230.0    0.00   -0.49   -1.70   -3.34   -5.04   -6.56   -7.83   -8.84   -9.58   -9.95   -9.81   -9.02   -7.53   -5.44   -2.94   -0.04    3.55    8.38   15.08
+   235.0    0.00   -0.49   -1.70   -3.33   -5.03   -6.56   -7.83   -8.84   -9.59   -9.98   -9.84   -9.00   -7.47   -5.35   -2.85    0.03    3.56    8.40   15.18
+   240.0    0.00   -0.48   -1.69   -3.32   -5.02   -6.55   -7.83   -8.85   -9.61  -10.00   -9.83   -8.97   -7.40   -5.27   -2.77    0.08    3.58    8.40   15.24
+   245.0    0.00   -0.49   -1.69   -3.31   -5.00   -6.55   -7.84   -8.86   -9.62  -10.00   -9.83   -8.95   -7.36   -5.20   -2.70    0.11    3.57    8.36   15.23
+   250.0    0.00   -0.48   -1.69   -3.31   -5.00   -6.55   -7.84   -8.87   -9.62  -10.00   -9.81   -8.92   -7.31   -5.16   -2.67    0.12    3.53    8.30   15.16
+   255.0    0.00   -0.47   -1.67   -3.30   -5.00   -6.54   -7.83   -8.86   -9.62   -9.99   -9.79   -8.90   -7.29   -5.14   -2.66    0.11    3.49    8.23   15.06
+   260.0    0.00   -0.48   -1.68   -3.29   -5.00   -6.53   -7.83   -8.85   -9.60   -9.97   -9.79   -8.90   -7.30   -5.16   -2.69    0.07    3.45    8.14   14.93
+   265.0    0.00   -0.47   -1.67   -3.28   -4.98   -6.52   -7.81   -8.83   -9.59   -9.96   -9.78   -8.91   -7.34   -5.21   -2.75    0.02    3.39    8.06   14.78
+   270.0    0.00   -0.47   -1.67   -3.27   -4.97   -6.51   -7.79   -8.83   -9.57   -9.95   -9.78   -8.94   -7.40   -5.29   -2.82   -0.06    3.34    7.99   14.63
+   275.0    0.00   -0.46   -1.65   -3.25   -4.95   -6.49   -7.77   -8.79   -9.54   -9.94   -9.81   -9.00   -7.49   -5.39   -2.92   -0.12    3.28    7.93   14.49
+   280.0    0.00   -0.46   -1.65   -3.24   -4.93   -6.47   -7.74   -8.77   -9.52   -9.94   -9.84   -9.07   -7.59   -5.51   -3.02   -0.20    3.23    7.87   14.37
+   285.0    0.00   -0.46   -1.64   -3.23   -4.91   -6.45   -7.71   -8.74   -9.51   -9.94   -9.87   -9.14   -7.68   -5.63   -3.13   -0.28    3.17    7.80   14.26
+   290.0    0.00   -0.45   -1.62   -3.21   -4.90   -6.42   -7.69   -8.72   -9.49   -9.95   -9.91   -9.22   -7.78   -5.73   -3.23   -0.35    3.10    7.73   14.16
+   295.0    0.00   -0.45   -1.62   -3.20   -4.87   -6.39   -7.66   -8.69   -9.48   -9.96   -9.95   -9.27   -7.87   -5.82   -3.30   -0.42    3.03    7.65   14.08
+   300.0    0.00   -0.44   -1.59   -3.18   -4.85   -6.36   -7.63   -8.67   -9.46   -9.96   -9.98   -9.31   -7.91   -5.86   -3.34   -0.47    2.96    7.56   14.01
+   305.0    0.00   -0.44   -1.59   -3.17   -4.83   -6.33   -7.60   -8.64   -9.45   -9.96   -9.98   -9.32   -7.92   -5.87   -3.36   -0.53    2.89    7.46   13.93
+   310.0    0.00   -0.44   -1.58   -3.16   -4.82   -6.31   -7.57   -8.62   -9.42   -9.95   -9.96   -9.30   -7.89   -5.84   -3.34   -0.54    2.82    7.35   13.84
+   315.0    0.00   -0.43   -1.57   -3.14   -4.79   -6.29   -7.55   -8.59   -9.40   -9.92   -9.93   -9.25   -7.83   -5.78   -3.29   -0.54    2.76    7.22   13.73
+   320.0    0.00   -0.43   -1.56   -3.13   -4.78   -6.28   -7.54   -8.56   -9.37   -9.89   -9.88   -9.18   -7.74   -5.68   -3.22   -0.51    2.71    7.13   13.63
+   325.0    0.00   -0.42   -1.56   -3.13   -4.78   -6.28   -7.53   -8.54   -9.34   -9.83   -9.80   -9.10   -7.64   -5.57   -3.14   -0.46    2.70    7.04   13.50
+   330.0    0.00   -0.42   -1.56   -3.13   -4.78   -6.27   -7.53   -8.54   -9.32   -9.79   -9.74   -9.02   -7.54   -5.46   -3.03   -0.38    2.71    6.99   13.37
+   335.0    0.00   -0.41   -1.56   -3.14   -4.79   -6.30   -7.54   -8.54   -9.30   -9.75   -9.69   -8.94   -7.45   -5.37   -2.93   -0.30    2.76    6.96   13.23
+   340.0    0.00   -0.41   -1.56   -3.15   -4.81   -6.33   -7.56   -8.56   -9.30   -9.72   -9.65   -8.89   -7.40   -5.30   -2.86   -0.22    2.82    6.96   13.09
+   345.0    0.00   -0.41   -1.56   -3.16   -4.84   -6.36   -7.61   -8.60   -9.31   -9.72   -9.62   -8.86   -7.36   -5.26   -2.80   -0.13    2.92    6.98   12.95
+   350.0    0.00   -0.41   -1.58   -3.18   -4.88   -6.42   -7.66   -8.64   -9.35   -9.74   -9.63   -8.87   -7.38   -5.26   -2.77   -0.06    3.01    7.02   12.81
+   355.0    0.00   -0.41   -1.58   -3.20   -4.92   -6.48   -7.75   -8.71   -9.41   -9.79   -9.68   -8.91   -7.42   -5.30   -2.77   -0.01    3.09    7.05   12.68
+   360.0    0.00   -0.40   -1.58   -3.23   -4.99   -6.55   -7.83   -8.79   -9.49   -9.85   -9.74   -8.98   -7.51   -5.36   -2.80   -1.14    3.15    7.07   12.56
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+      1.02     -0.32    118.08                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.13   -0.53   -1.15   -1.93   -2.79   -3.70   -4.59   -5.38   -6.02   -6.36   -6.34   -5.84   -4.82   -3.22   -0.98    1.93    5.46    9.44
+     0.0    0.00   -0.09   -0.48   -1.11   -1.91   -2.80   -3.70   -4.54   -5.30   -5.93   -6.35   -6.45   -6.09   -5.12   -3.49   -1.26    1.48    4.61    8.09
+     5.0    0.00   -0.10   -0.47   -1.10   -1.91   -2.80   -3.70   -4.56   -5.32   -5.96   -6.39   -6.49   -6.10   -5.11   -3.46   -1.20    1.54    4.65    8.07
+    10.0    0.00   -0.09   -0.46   -1.09   -1.88   -2.79   -3.70   -4.57   -5.34   -5.98   -6.41   -6.51   -6.10   -5.09   -3.42   -1.14    1.63    4.74    8.13
+    15.0    0.00   -0.08   -0.45   -1.07   -1.88   -2.79   -3.71   -4.59   -5.37   -6.02   -6.44   -6.51   -6.08   -5.06   -3.36   -1.04    1.73    4.87    8.26
+    20.0    0.00   -0.08   -0.44   -1.06   -1.87   -2.78   -3.71   -4.61   -5.40   -6.04   -6.43   -6.48   -6.04   -4.98   -3.27   -0.95    1.85    5.02    8.46
+    25.0    0.00   -0.08   -0.43   -1.05   -1.85   -2.78   -3.72   -4.62   -5.42   -6.04   -6.42   -6.43   -5.96   -4.90   -3.18   -0.86    1.98    5.21    8.73
+    30.0    0.00   -0.08   -0.43   -1.04   -1.84   -2.77   -3.72   -4.63   -5.43   -6.03   -6.39   -6.36   -5.86   -4.78   -3.07   -0.75    2.11    5.42    9.06
+    35.0    0.00   -0.08   -0.43   -1.03   -1.83   -2.75   -3.71   -4.62   -5.41   -6.01   -6.33   -6.27   -5.75   -4.66   -2.96   -0.64    2.24    5.63    9.41
+    40.0    0.00   -0.07   -0.42   -1.03   -1.82   -2.74   -3.69   -4.61   -5.39   -5.97   -6.27   -6.18   -5.64   -4.54   -2.86   -0.55    2.37    5.84    9.79
+    45.0    0.00   -0.08   -0.42   -1.01   -1.82   -2.73   -3.68   -4.58   -5.37   -5.92   -6.20   -6.09   -5.53   -4.43   -2.75   -0.46    2.47    6.04   10.15
+    50.0    0.00   -0.07   -0.41   -1.01   -1.80   -2.71   -3.66   -4.55   -5.32   -5.87   -6.14   -6.02   -5.44   -4.35   -2.69   -0.40    2.57    6.21   10.46
+    55.0    0.00   -0.07   -0.42   -1.02   -1.80   -2.70   -3.63   -4.52   -5.28   -5.82   -6.08   -5.96   -5.38   -4.30   -2.65   -0.36    2.62    6.35   10.71
+    60.0    0.00   -0.07   -0.42   -1.01   -1.79   -2.68   -3.60   -4.49   -5.23   -5.78   -6.04   -5.93   -5.37   -4.30   -2.65   -0.36    2.65    6.42   10.87
+    65.0    0.00   -0.08   -0.43   -1.02   -1.80   -2.67   -3.58   -4.46   -5.20   -5.76   -6.02   -5.93   -5.39   -4.33   -2.69   -0.40    2.62    6.43   10.92
+    70.0    0.00   -0.08   -0.44   -1.04   -1.81   -2.67   -3.58   -4.43   -5.18   -5.75   -6.04   -5.97   -5.44   -4.39   -2.77   -0.47    2.56    6.37   10.85
+    75.0    0.00   -0.08   -0.44   -1.04   -1.81   -2.69   -3.58   -4.43   -5.18   -5.75   -6.07   -6.02   -5.52   -4.49   -2.87   -0.58    2.45    6.24   10.68
+    80.0    0.00   -0.09   -0.45   -1.06   -1.84   -2.70   -3.59   -4.44   -5.19   -5.78   -6.12   -6.09   -5.61   -4.60   -2.99   -0.72    2.29    6.05   10.40
+    85.0    0.00   -0.10   -0.47   -1.09   -1.86   -2.73   -3.62   -4.47   -5.23   -5.82   -6.16   -6.17   -5.71   -4.72   -3.12   -0.85    2.12    5.83   10.07
+    90.0    0.00   -0.10   -0.48   -1.10   -1.90   -2.77   -3.66   -4.50   -5.27   -5.87   -6.22   -6.24   -5.80   -4.82   -3.25   -1.00    1.94    5.57    9.70
+    95.0    0.00   -0.10   -0.49   -1.12   -1.93   -2.81   -3.71   -4.57   -5.33   -5.92   -6.29   -6.30   -5.87   -4.91   -3.35   -1.14    1.76    5.33    9.35
+   100.0    0.00   -0.12   -0.50   -1.15   -1.97   -2.86   -3.77   -4.62   -5.39   -5.98   -6.33   -6.35   -5.92   -4.97   -3.42   -1.24    1.61    5.11    9.03
+   105.0    0.00   -0.12   -0.52   -1.17   -2.00   -2.91   -3.83   -4.69   -5.44   -6.03   -6.37   -6.37   -5.93   -4.99   -3.47   -1.32    1.50    4.95    8.79
+   110.0    0.00   -0.12   -0.53   -1.18   -2.03   -2.94   -3.87   -4.75   -5.50   -6.07   -6.38   -6.37   -5.93   -4.99   -3.48   -1.36    1.43    4.86    8.67
+   115.0    0.00   -0.12   -0.54   -1.20   -2.05   -2.98   -3.92   -4.80   -5.54   -6.10   -6.40   -6.35   -5.89   -4.96   -3.47   -1.36    1.41    4.83    8.64
+   120.0    0.00   -0.13   -0.55   -1.21   -2.06   -3.00   -3.95   -4.83   -5.57   -6.12   -6.39   -6.32   -5.85   -4.91   -3.44   -1.34    1.44    4.87    8.71
+   125.0    0.00   -0.14   -0.56   -1.23   -2.07   -3.01   -3.96   -4.84   -5.59   -6.13   -6.38   -6.28   -5.80   -4.86   -3.38   -1.29    1.49    4.95    8.84
+   130.0    0.00   -0.15   -0.57   -1.24   -2.07   -3.02   -3.96   -4.85   -5.60   -6.12   -6.35   -6.26   -5.76   -4.81   -3.33   -1.24    1.56    5.06    9.03
+   135.0    0.00   -0.15   -0.57   -1.23   -2.07   -2.99   -3.95   -4.83   -5.58   -6.10   -6.34   -6.23   -5.72   -4.77   -3.29   -1.19    1.64    5.18    9.21
+   140.0    0.00   -0.16   -0.58   -1.23   -2.06   -2.97   -3.91   -4.81   -5.55   -6.08   -6.32   -6.21   -5.69   -4.74   -3.26   -1.16    1.68    5.25    9.35
+   145.0    0.00   -0.16   -0.58   -1.22   -2.04   -2.94   -3.87   -4.77   -5.53   -6.07   -6.32   -6.19   -5.69   -4.73   -3.25   -1.15    1.70    5.29    9.43
+   150.0    0.00   -0.16   -0.58   -1.22   -2.01   -2.90   -3.83   -4.73   -5.50   -6.05   -6.31   -6.20   -5.69   -4.74   -3.26   -1.16    1.67    5.26    9.41
+   155.0    0.00   -0.16   -0.58   -1.21   -1.98   -2.86   -3.79   -4.68   -5.47   -6.04   -6.31   -6.20   -5.71   -4.74   -3.28   -1.20    1.60    5.16    9.30
+   160.0    0.00   -0.16   -0.58   -1.19   -1.96   -2.82   -3.74   -4.65   -5.44   -6.03   -6.31   -6.23   -5.72   -4.77   -3.31   -1.26    1.51    5.01    9.10
+   165.0    0.00   -0.17   -0.58   -1.19   -1.94   -2.79   -3.71   -4.62   -5.42   -6.02   -6.32   -6.23   -5.73   -4.79   -3.34   -1.31    1.41    4.84    8.85
+   170.0    0.00   -0.17   -0.58   -1.19   -1.91   -2.77   -3.69   -4.59   -5.41   -6.02   -6.32   -6.24   -5.74   -4.79   -3.36   -1.37    1.31    4.68    8.60
+   175.0    0.00   -0.18   -0.59   -1.17   -1.91   -2.75   -3.66   -4.58   -5.41   -6.02   -6.33   -6.25   -5.74   -4.78   -3.36   -1.38    1.24    4.54    8.39
+   180.0    0.00   -0.18   -0.59   -1.17   -1.90   -2.74   -3.65   -4.57   -5.40   -6.03   -6.33   -6.24   -5.73   -4.78   -3.35   -1.37    1.23    4.50    8.26
+   185.0    0.00   -0.18   -0.59   -1.17   -1.90   -2.74   -3.65   -4.57   -5.40   -6.02   -6.32   -6.24   -5.72   -4.76   -3.31   -1.32    1.30    4.56    8.26
+   190.0    0.00   -0.18   -0.58   -1.18   -1.91   -2.74   -3.65   -4.57   -5.40   -6.01   -6.32   -6.22   -5.70   -4.73   -3.25   -1.21    1.45    4.73    8.42
+   195.0    0.00   -0.18   -0.59   -1.18   -1.91   -2.75   -3.65   -4.57   -5.39   -6.00   -6.31   -6.22   -5.69   -4.70   -3.19   -1.07    1.67    5.02    8.73
+   200.0    0.00   -0.18   -0.60   -1.18   -1.91   -2.75   -3.67   -4.57   -5.38   -6.00   -6.30   -6.21   -5.69   -4.67   -3.10   -0.91    1.96    5.41    9.18
+   205.0    0.00   -0.19   -0.60   -1.19   -1.93   -2.76   -3.66   -4.57   -5.37   -5.99   -6.30   -6.22   -5.69   -4.65   -3.02   -0.72    2.28    5.88    9.73
+   210.0    0.00   -0.19   -0.60   -1.19   -1.93   -2.76   -3.67   -4.56   -5.36   -5.98   -6.30   -6.23   -5.70   -4.64   -2.95   -0.53    2.61    6.35   10.32
+   215.0    0.00   -0.19   -0.60   -1.20   -1.94   -2.77   -3.65   -4.56   -5.35   -5.96   -6.30   -6.25   -5.73   -4.65   -2.89   -0.37    2.92    6.81   10.91
+   220.0    0.00   -0.19   -0.60   -1.20   -1.93   -2.76   -3.65   -4.53   -5.33   -5.95   -6.30   -6.28   -5.77   -4.66   -2.86   -0.24    3.17    7.19   11.42
+   225.0    0.00   -0.19   -0.61   -1.20   -1.94   -2.76   -3.64   -4.51   -5.32   -5.94   -6.32   -6.30   -5.81   -4.69   -2.84   -0.17    3.33    7.47   11.81
+   230.0    0.00   -0.19   -0.61   -1.20   -1.93   -2.75   -3.61   -4.48   -5.30   -5.94   -6.33   -6.34   -5.85   -4.72   -2.85   -0.14    3.41    7.61   12.02
+   235.0    0.00   -0.19   -0.61   -1.20   -1.92   -2.73   -3.59   -4.46   -5.28   -5.94   -6.34   -6.37   -5.88   -4.76   -2.88   -0.18    3.38    7.59   12.07
+   240.0    0.00   -0.18   -0.61   -1.20   -1.91   -2.71   -3.58   -4.44   -5.26   -5.95   -6.36   -6.39   -5.90   -4.79   -2.93   -0.26    3.24    7.44   11.91
+   245.0    0.00   -0.19   -0.60   -1.18   -1.90   -2.70   -3.56   -4.43   -5.27   -5.96   -6.38   -6.41   -5.92   -4.81   -2.99   -0.38    3.03    7.15   11.62
+   250.0    0.00   -0.18   -0.60   -1.19   -1.89   -2.68   -3.54   -4.43   -5.27   -5.98   -6.40   -6.41   -5.93   -4.83   -3.06   -0.53    2.78    6.78   11.19
+   255.0    0.00   -0.19   -0.60   -1.17   -1.88   -2.67   -3.54   -4.43   -5.29   -5.99   -6.41   -6.43   -5.93   -4.84   -3.11   -0.69    2.48    6.36   10.68
+   260.0    0.00   -0.19   -0.60   -1.17   -1.88   -2.67   -3.54   -4.44   -5.32   -6.02   -6.44   -6.44   -5.93   -4.85   -3.17   -0.85    2.20    5.94   10.17
+   265.0    0.00   -0.18   -0.59   -1.17   -1.87   -2.67   -3.55   -4.46   -5.34   -6.06   -6.47   -6.45   -5.93   -4.85   -3.23   -0.99    1.93    5.55    9.68
+   270.0    0.00   -0.18   -0.58   -1.16   -1.88   -2.68   -3.56   -4.49   -5.38   -6.10   -6.50   -6.47   -5.92   -4.87   -3.27   -1.11    1.72    5.23    9.27
+   275.0    0.00   -0.18   -0.58   -1.17   -1.87   -2.69   -3.58   -4.53   -5.42   -6.14   -6.53   -6.49   -5.94   -4.89   -3.31   -1.19    1.57    5.00    8.97
+   280.0    0.00   -0.17   -0.58   -1.16   -1.88   -2.71   -3.61   -4.56   -5.46   -6.18   -6.57   -6.51   -5.96   -4.90   -3.35   -1.26    1.47    4.86    8.80
+   285.0    0.00   -0.17   -0.57   -1.16   -1.88   -2.73   -3.65   -4.61   -5.51   -6.21   -6.60   -6.54   -5.97   -4.93   -3.38   -1.29    1.42    4.81    8.73
+   290.0    0.00   -0.17   -0.57   -1.16   -1.91   -2.76   -3.68   -4.65   -5.54   -6.24   -6.62   -6.55   -6.00   -4.96   -3.41   -1.31    1.42    4.85    8.75
+   295.0    0.00   -0.17   -0.57   -1.17   -1.92   -2.78   -3.72   -4.68   -5.56   -6.26   -6.63   -6.57   -6.02   -4.98   -3.43   -1.31    1.46    4.91    8.84
+   300.0    0.00   -0.15   -0.56   -1.17   -1.93   -2.81   -3.75   -4.70   -5.58   -6.26   -6.62   -6.57   -6.04   -5.02   -3.45   -1.31    1.51    5.00    8.99
+   305.0    0.00   -0.15   -0.56   -1.18   -1.94   -2.82   -3.78   -4.72   -5.58   -6.26   -6.61   -6.56   -6.05   -5.03   -3.47   -1.31    1.54    5.08    9.11
+   310.0    0.00   -0.14   -0.55   -1.18   -1.96   -2.84   -3.79   -4.72   -5.57   -6.22   -6.57   -6.54   -6.05   -5.05   -3.49   -1.32    1.57    5.15    9.22
+   315.0    0.00   -0.14   -0.55   -1.18   -1.97   -2.86   -3.80   -4.73   -5.55   -6.18   -6.53   -6.51   -6.03   -5.04   -3.50   -1.31    1.57    5.16    9.27
+   320.0    0.00   -0.13   -0.54   -1.18   -1.97   -2.87   -3.80   -4.70   -5.51   -6.13   -6.48   -6.47   -6.01   -5.05   -3.51   -1.33    1.55    5.14    9.27
+   325.0    0.00   -0.13   -0.54   -1.17   -1.97   -2.87   -3.79   -4.68   -5.47   -6.08   -6.42   -6.43   -6.00   -5.05   -3.52   -1.34    1.53    5.09    9.20
+   330.0    0.00   -0.13   -0.53   -1.17   -1.97   -2.87   -3.77   -4.65   -5.42   -6.03   -6.38   -6.39   -5.98   -5.04   -3.52   -1.36    1.49    4.99    9.07
+   335.0    0.00   -0.12   -0.52   -1.16   -1.97   -2.87   -3.76   -4.63   -5.38   -5.98   -6.34   -6.38   -5.97   -5.05   -3.53   -1.35    1.46    4.89    8.90
+   340.0    0.00   -0.12   -0.51   -1.15   -1.96   -2.85   -3.75   -4.59   -5.34   -5.94   -6.32   -6.36   -5.98   -5.06   -3.53   -1.36    1.42    4.79    8.70
+   345.0    0.00   -0.11   -0.50   -1.14   -1.95   -2.84   -3.73   -4.57   -5.31   -5.91   -6.30   -6.37   -5.99   -5.06   -3.53   -1.35    1.40    4.70    8.51
+   350.0    0.00   -0.11   -0.50   -1.13   -1.93   -2.83   -3.72   -4.54   -5.30   -5.90   -6.31   -6.39   -6.03   -5.09   -3.52   -1.33    1.40    4.64    8.32
+   355.0    0.00   -0.10   -0.48   -1.12   -1.93   -2.81   -3.70   -4.54   -5.29   -5.91   -6.33   -6.43   -6.05   -5.10   -3.51   -1.30    1.43    4.60    8.19
+   360.0    0.00   -0.09   -0.48   -1.11   -1.91   -2.80   -3.70   -4.54   -5.30   -5.93   -6.35   -6.45   -6.09   -5.12   -3.49   -1.26    1.48    4.61    8.09
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TRM59900.00     NONE                                        TYPE / SERIAL NO    
+ROBOT               IfE, Univ. Hannover      5    20-JUN-11 METH / BY / # / DATE 
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     4                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+# Number of Calibrated Antennas:             005            COMMENT             
+# Number of Individual Calibrations (GPS):   031            COMMENT             
+# Number of Individual Calibrations (GLO):   031            COMMENT             
+# GLONASS PCV                                               COMMENT             
+#  derived directly from GLONASS observables                COMMENT             
+#  for frequency channel number k=0                         COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.95     -0.40    113.50                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.14   -0.53   -1.16   -1.96   -2.86   -3.76   -4.54   -5.11   -5.41   -5.42   -5.12   -4.47   -3.44   -1.91    0.20    2.94    6.19    9.64
+     0.0    0.00   -0.13   -0.52   -1.15   -1.98   -2.93   -3.90   -4.76   -5.40   -5.72   -5.70   -5.33   -4.63   -3.58   -2.09   -0.06    2.59    5.76    9.09
+     5.0    0.00   -0.12   -0.51   -1.14   -1.96   -2.90   -3.87   -4.73   -5.37   -5.69   -5.67   -5.29   -4.57   -3.49   -1.99    0.05    2.68    5.81    9.13
+    10.0    0.00   -0.12   -0.50   -1.12   -1.93   -2.87   -3.83   -4.69   -5.33   -5.66   -5.64   -5.26   -4.53   -3.42   -1.89    0.16    2.77    5.88    9.17
+    15.0    0.00   -0.11   -0.49   -1.10   -1.91   -2.84   -3.79   -4.64   -5.29   -5.63   -5.62   -5.24   -4.50   -3.38   -1.82    0.25    2.88    5.96    9.22
+    20.0    0.00   -0.11   -0.48   -1.09   -1.89   -2.80   -3.75   -4.60   -5.24   -5.60   -5.60   -5.24   -4.50   -3.36   -1.77    0.34    2.98    6.05    9.28
+    25.0    0.00   -0.11   -0.47   -1.07   -1.86   -2.77   -3.70   -4.54   -5.19   -5.55   -5.58   -5.24   -4.51   -3.36   -1.74    0.40    3.07    6.16    9.36
+    30.0    0.00   -0.10   -0.47   -1.06   -1.84   -2.74   -3.65   -4.49   -5.14   -5.51   -5.55   -5.24   -4.53   -3.38   -1.74    0.44    3.16    6.27    9.47
+    35.0    0.00   -0.10   -0.46   -1.05   -1.82   -2.71   -3.61   -4.44   -5.08   -5.46   -5.52   -5.23   -4.55   -3.41   -1.76    0.46    3.23    6.38    9.60
+    40.0    0.00   -0.10   -0.45   -1.04   -1.80   -2.68   -3.57   -4.38   -5.02   -5.40   -5.48   -5.21   -4.55   -3.44   -1.78    0.46    3.28    6.49    9.75
+    45.0    0.00   -0.10   -0.45   -1.03   -1.79   -2.66   -3.54   -4.34   -4.96   -5.34   -5.42   -5.17   -4.54   -3.45   -1.81    0.46    3.32    6.59    9.91
+    50.0    0.00   -0.09   -0.44   -1.02   -1.78   -2.64   -3.51   -4.30   -4.90   -5.27   -5.35   -5.11   -4.51   -3.44   -1.82    0.45    3.34    6.68   10.06
+    55.0    0.00   -0.09   -0.44   -1.01   -1.77   -2.63   -3.49   -4.26   -4.85   -5.20   -5.27   -5.04   -4.45   -3.41   -1.81    0.44    3.36    6.75   10.20
+    60.0    0.00   -0.09   -0.44   -1.01   -1.77   -2.62   -3.48   -4.24   -4.81   -5.13   -5.19   -4.94   -4.36   -3.35   -1.78    0.45    3.37    6.79   10.31
+    65.0    0.00   -0.09   -0.44   -1.01   -1.77   -2.62   -3.47   -4.22   -4.77   -5.08   -5.10   -4.84   -4.26   -3.27   -1.73    0.48    3.38    6.83   10.38
+    70.0    0.00   -0.09   -0.44   -1.01   -1.77   -2.62   -3.47   -4.21   -4.75   -5.03   -5.03   -4.75   -4.16   -3.17   -1.66    0.51    3.40    6.84   10.42
+    75.0    0.00   -0.09   -0.44   -1.02   -1.78   -2.63   -3.48   -4.21   -4.74   -4.99   -4.97   -4.67   -4.06   -3.07   -1.58    0.56    3.41    6.84   10.42
+    80.0    0.00   -0.09   -0.44   -1.02   -1.78   -2.64   -3.49   -4.22   -4.73   -4.98   -4.93   -4.61   -3.98   -2.99   -1.51    0.61    3.43    6.83   10.38
+    85.0    0.00   -0.09   -0.45   -1.03   -1.80   -2.66   -3.51   -4.24   -4.75   -4.98   -4.92   -4.58   -3.94   -2.93   -1.45    0.65    3.44    6.80   10.31
+    90.0    0.00   -0.10   -0.45   -1.04   -1.81   -2.68   -3.53   -4.26   -4.77   -5.00   -4.94   -4.59   -3.93   -2.92   -1.43    0.67    3.44    6.77   10.23
+    95.0    0.00   -0.10   -0.46   -1.05   -1.83   -2.70   -3.56   -4.29   -4.81   -5.05   -4.99   -4.63   -3.97   -2.94   -1.44    0.66    3.42    6.72   10.13
+   100.0    0.00   -0.10   -0.46   -1.07   -1.85   -2.73   -3.59   -4.33   -4.86   -5.10   -5.05   -4.71   -4.05   -3.01   -1.50    0.62    3.38    6.65   10.02
+   105.0    0.00   -0.10   -0.47   -1.08   -1.87   -2.75   -3.62   -4.37   -4.91   -5.17   -5.14   -4.81   -4.16   -3.12   -1.60    0.53    3.30    6.56    9.91
+   110.0    0.00   -0.11   -0.48   -1.09   -1.89   -2.78   -3.66   -4.42   -4.97   -5.25   -5.24   -4.93   -4.30   -3.27   -1.73    0.41    3.19    6.45    9.81
+   115.0    0.00   -0.11   -0.49   -1.11   -1.92   -2.81   -3.70   -4.47   -5.02   -5.32   -5.34   -5.06   -4.45   -3.43   -1.90    0.25    3.05    6.33    9.70
+   120.0    0.00   -0.11   -0.50   -1.13   -1.94   -2.85   -3.74   -4.51   -5.08   -5.40   -5.44   -5.18   -4.59   -3.60   -2.07    0.08    2.89    6.20    9.61
+   125.0    0.00   -0.12   -0.51   -1.14   -1.97   -2.88   -3.78   -4.56   -5.13   -5.46   -5.52   -5.29   -4.73   -3.75   -2.24   -0.09    2.72    6.05    9.52
+   130.0    0.00   -0.12   -0.52   -1.16   -1.99   -2.91   -3.81   -4.60   -5.18   -5.51   -5.58   -5.38   -4.84   -3.89   -2.40   -0.25    2.56    5.92    9.44
+   135.0    0.00   -0.12   -0.53   -1.18   -2.01   -2.94   -3.85   -4.63   -5.21   -5.55   -5.63   -5.44   -4.92   -3.99   -2.52   -0.39    2.43    5.79    9.36
+   140.0    0.00   -0.13   -0.53   -1.19   -2.03   -2.96   -3.87   -4.66   -5.24   -5.58   -5.66   -5.48   -4.97   -4.06   -2.60   -0.48    2.33    5.70    9.30
+   145.0    0.00   -0.13   -0.54   -1.20   -2.05   -2.98   -3.89   -4.68   -5.26   -5.59   -5.68   -5.50   -5.00   -4.09   -2.63   -0.52    2.27    5.63    9.26
+   150.0    0.00   -0.13   -0.55   -1.21   -2.06   -3.00   -3.91   -4.69   -5.26   -5.60   -5.68   -5.50   -5.00   -4.08   -2.62   -0.52    2.27    5.61    9.23
+   155.0    0.00   -0.14   -0.55   -1.22   -2.07   -3.01   -3.92   -4.69   -5.27   -5.60   -5.68   -5.49   -4.98   -4.05   -2.58   -0.47    2.30    5.62    9.23
+   160.0    0.00   -0.14   -0.56   -1.23   -2.08   -3.01   -3.92   -4.69   -5.26   -5.59   -5.67   -5.47   -4.95   -3.99   -2.50   -0.38    2.38    5.67    9.26
+   165.0    0.00   -0.14   -0.56   -1.23   -2.08   -3.01   -3.91   -4.68   -5.26   -5.59   -5.66   -5.45   -4.91   -3.93   -2.41   -0.28    2.48    5.75    9.30
+   170.0    0.00   -0.15   -0.57   -1.23   -2.08   -3.01   -3.90   -4.68   -5.25   -5.58   -5.65   -5.44   -4.87   -3.86   -2.32   -0.17    2.59    5.83    9.36
+   175.0    0.00   -0.15   -0.57   -1.24   -2.08   -3.00   -3.89   -4.67   -5.24   -5.58   -5.65   -5.42   -4.83   -3.80   -2.22   -0.06    2.69    5.92    9.43
+   180.0    0.00   -0.15   -0.57   -1.24   -2.07   -2.99   -3.88   -4.65   -5.23   -5.57   -5.64   -5.40   -4.79   -3.73   -2.14    0.03    2.78    5.99    9.50
+   185.0    0.00   -0.15   -0.58   -1.24   -2.07   -2.98   -3.87   -4.65   -5.23   -5.57   -5.63   -5.38   -4.75   -3.68   -2.08    0.10    2.83    6.05    9.56
+   190.0    0.00   -0.16   -0.58   -1.23   -2.06   -2.97   -3.86   -4.64   -5.22   -5.56   -5.61   -5.35   -4.71   -3.63   -2.03    0.14    2.86    6.07    9.61
+   195.0    0.00   -0.16   -0.58   -1.23   -2.06   -2.96   -3.85   -4.63   -5.21   -5.55   -5.59   -5.31   -4.66   -3.58   -1.99    0.15    2.86    6.07    9.63
+   200.0    0.00   -0.16   -0.58   -1.23   -2.05   -2.96   -3.85   -4.62   -5.20   -5.53   -5.56   -5.26   -4.60   -3.53   -1.96    0.15    2.84    6.05    9.64
+   205.0    0.00   -0.16   -0.58   -1.23   -2.05   -2.95   -3.84   -4.61   -5.19   -5.50   -5.51   -5.20   -4.54   -3.47   -1.93    0.15    2.81    6.02    9.62
+   210.0    0.00   -0.16   -0.58   -1.23   -2.04   -2.94   -3.83   -4.60   -5.16   -5.46   -5.46   -5.13   -4.47   -3.41   -1.90    0.15    2.79    6.00    9.60
+   215.0    0.00   -0.16   -0.58   -1.22   -2.04   -2.94   -3.82   -4.58   -5.14   -5.42   -5.39   -5.06   -4.39   -3.35   -1.86    0.16    2.79    5.99    9.59
+   220.0    0.00   -0.16   -0.58   -1.22   -2.03   -2.93   -3.80   -4.56   -5.10   -5.36   -5.32   -4.98   -4.31   -3.28   -1.82    0.19    2.82    6.02    9.59
+   225.0    0.00   -0.17   -0.58   -1.22   -2.03   -2.92   -3.79   -4.53   -5.06   -5.31   -5.26   -4.90   -4.24   -3.22   -1.76    0.25    2.88    6.09    9.62
+   230.0    0.00   -0.17   -0.58   -1.22   -2.02   -2.90   -3.77   -4.50   -5.01   -5.25   -5.19   -4.83   -4.17   -3.15   -1.69    0.33    2.98    6.20    9.69
+   235.0    0.00   -0.17   -0.58   -1.22   -2.01   -2.89   -3.74   -4.46   -4.97   -5.19   -5.13   -4.77   -4.11   -3.09   -1.62    0.43    3.11    6.34    9.80
+   240.0    0.00   -0.17   -0.58   -1.21   -2.01   -2.87   -3.72   -4.43   -4.92   -5.14   -5.08   -4.73   -4.07   -3.05   -1.55    0.54    3.26    6.51    9.95
+   245.0    0.00   -0.17   -0.58   -1.21   -2.00   -2.86   -3.69   -4.40   -4.88   -5.10   -5.04   -4.70   -4.04   -3.01   -1.48    0.64    3.41    6.69   10.12
+   250.0    0.00   -0.17   -0.58   -1.21   -1.99   -2.85   -3.67   -4.37   -4.85   -5.07   -5.02   -4.68   -4.02   -2.98   -1.43    0.74    3.54    6.86   10.30
+   255.0    0.00   -0.17   -0.58   -1.21   -1.99   -2.84   -3.65   -4.35   -4.83   -5.06   -5.01   -4.68   -4.02   -2.96   -1.38    0.81    3.65    6.99   10.46
+   260.0    0.00   -0.17   -0.58   -1.21   -1.98   -2.83   -3.64   -4.34   -4.82   -5.06   -5.02   -4.69   -4.02   -2.95   -1.36    0.86    3.71    7.08   10.59
+   265.0    0.00   -0.17   -0.58   -1.21   -1.98   -2.82   -3.64   -4.34   -4.83   -5.08   -5.04   -4.71   -4.04   -2.95   -1.35    0.87    3.72    7.10   10.67
+   270.0    0.00   -0.17   -0.58   -1.21   -1.98   -2.83   -3.65   -4.35   -4.85   -5.11   -5.08   -4.74   -4.06   -2.96   -1.36    0.84    3.68    7.06   10.68
+   275.0    0.00   -0.17   -0.58   -1.21   -1.98   -2.83   -3.66   -4.37   -4.89   -5.15   -5.12   -4.78   -4.09   -2.99   -1.39    0.79    3.59    6.95   10.61
+   280.0    0.00   -0.17   -0.58   -1.21   -1.99   -2.84   -3.68   -4.41   -4.94   -5.21   -5.18   -4.83   -4.12   -3.02   -1.44    0.70    3.46    6.79   10.47
+   285.0    0.00   -0.17   -0.58   -1.21   -1.99   -2.86   -3.71   -4.45   -4.99   -5.27   -5.24   -4.88   -4.17   -3.07   -1.51    0.59    3.30    6.58   10.26
+   290.0    0.00   -0.16   -0.58   -1.21   -2.00   -2.87   -3.74   -4.50   -5.06   -5.34   -5.31   -4.95   -4.23   -3.13   -1.60    0.47    3.12    6.36   10.01
+   295.0    0.00   -0.16   -0.58   -1.21   -2.01   -2.89   -3.77   -4.55   -5.12   -5.42   -5.39   -5.02   -4.30   -3.21   -1.70    0.33    2.94    6.13    9.73
+   300.0    0.00   -0.16   -0.58   -1.22   -2.02   -2.91   -3.81   -4.60   -5.18   -5.49   -5.47   -5.10   -4.39   -3.31   -1.81    0.20    2.78    5.92    9.45
+   305.0    0.00   -0.16   -0.58   -1.22   -2.03   -2.93   -3.84   -4.64   -5.24   -5.56   -5.54   -5.18   -4.48   -3.41   -1.92    0.07    2.64    5.74    9.19
+   310.0    0.00   -0.16   -0.58   -1.22   -2.03   -2.95   -3.87   -4.69   -5.30   -5.62   -5.61   -5.27   -4.58   -3.52   -2.04   -0.05    2.52    5.61    8.97
+   315.0    0.00   -0.16   -0.57   -1.22   -2.04   -2.97   -3.90   -4.73   -5.34   -5.67   -5.68   -5.34   -4.67   -3.63   -2.15   -0.15    2.43    5.51    8.81
+   320.0    0.00   -0.15   -0.57   -1.22   -2.05   -2.98   -3.92   -4.76   -5.38   -5.72   -5.73   -5.41   -4.75   -3.72   -2.25   -0.24    2.37    5.46    8.71
+   325.0    0.00   -0.15   -0.57   -1.21   -2.05   -2.99   -3.94   -4.78   -5.41   -5.75   -5.77   -5.46   -4.81   -3.80   -2.33   -0.30    2.33    5.45    8.68
+   330.0    0.00   -0.15   -0.56   -1.21   -2.05   -2.99   -3.95   -4.80   -5.43   -5.78   -5.79   -5.49   -4.85   -3.85   -2.39   -0.35    2.32    5.47    8.69
+   335.0    0.00   -0.14   -0.56   -1.20   -2.04   -3.00   -3.96   -4.81   -5.45   -5.79   -5.80   -5.50   -4.87   -3.87   -2.41   -0.36    2.33    5.51    8.74
+   340.0    0.00   -0.14   -0.55   -1.20   -2.04   -2.99   -3.96   -4.82   -5.45   -5.79   -5.80   -5.49   -4.85   -3.86   -2.40   -0.35    2.35    5.55    8.82
+   345.0    0.00   -0.14   -0.54   -1.19   -2.03   -2.98   -3.95   -4.81   -5.45   -5.78   -5.78   -5.46   -4.82   -3.82   -2.36   -0.31    2.39    5.60    8.90
+   350.0    0.00   -0.13   -0.54   -1.18   -2.01   -2.97   -3.94   -4.80   -5.44   -5.77   -5.76   -5.42   -4.76   -3.75   -2.29   -0.25    2.44    5.65    8.97
+   355.0    0.00   -0.13   -0.53   -1.16   -2.00   -2.95   -3.92   -4.79   -5.42   -5.75   -5.73   -5.37   -4.69   -3.66   -2.19   -0.16    2.51    5.70    9.04
+   360.0    0.00   -0.13   -0.52   -1.15   -1.98   -2.93   -3.90   -4.76   -5.40   -5.72   -5.70   -5.33   -4.63   -3.58   -2.09   -0.06    2.59    5.76    9.09
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.41      0.45    124.54                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.10   -0.39   -0.85   -1.45   -2.16   -2.90   -3.59   -4.13   -4.44   -4.45   -4.11   -3.45   -2.49   -1.25    0.31    2.26    4.71    7.65
+     0.0    0.00   -0.10   -0.39   -0.83   -1.42   -2.11   -2.85   -3.56   -4.16   -4.52   -4.57   -4.25   -3.57   -2.58   -1.31    0.24    2.17    4.67    7.89
+     5.0    0.00   -0.10   -0.38   -0.83   -1.42   -2.10   -2.84   -3.55   -4.14   -4.50   -4.55   -4.24   -3.56   -2.57   -1.30    0.26    2.19    4.64    7.75
+    10.0    0.00   -0.10   -0.38   -0.83   -1.42   -2.10   -2.83   -3.53   -4.11   -4.47   -4.53   -4.23   -3.56   -2.57   -1.28    0.29    2.22    4.61    7.58
+    15.0    0.00   -0.10   -0.38   -0.83   -1.41   -2.09   -2.82   -3.51   -4.08   -4.45   -4.51   -4.22   -3.57   -2.58   -1.28    0.31    2.24    4.57    7.39
+    20.0    0.00   -0.10   -0.38   -0.83   -1.41   -2.09   -2.81   -3.49   -4.06   -4.41   -4.48   -4.21   -3.57   -2.59   -1.28    0.32    2.25    4.53    7.19
+    25.0    0.00   -0.10   -0.38   -0.83   -1.41   -2.09   -2.80   -3.47   -4.03   -4.38   -4.45   -4.19   -3.57   -2.60   -1.30    0.32    2.24    4.48    6.99
+    30.0    0.00   -0.09   -0.37   -0.82   -1.41   -2.08   -2.79   -3.46   -4.01   -4.35   -4.42   -4.16   -3.56   -2.60   -1.31    0.30    2.22    4.42    6.82
+    35.0    0.00   -0.09   -0.37   -0.82   -1.41   -2.08   -2.79   -3.45   -3.99   -4.32   -4.39   -4.13   -3.54   -2.61   -1.33    0.27    2.18    4.35    6.68
+    40.0    0.00   -0.09   -0.37   -0.82   -1.41   -2.09   -2.79   -3.45   -3.98   -4.30   -4.35   -4.09   -3.51   -2.60   -1.36    0.22    2.12    4.29    6.60
+    45.0    0.00   -0.09   -0.37   -0.82   -1.41   -2.09   -2.80   -3.46   -3.98   -4.28   -4.31   -4.04   -3.47   -2.58   -1.37    0.17    2.05    4.24    6.58
+    50.0    0.00   -0.09   -0.37   -0.82   -1.41   -2.10   -2.81   -3.47   -3.98   -4.27   -4.28   -3.99   -3.41   -2.55   -1.38    0.12    1.99    4.21    6.62
+    55.0    0.00   -0.09   -0.37   -0.82   -1.41   -2.11   -2.83   -3.48   -3.99   -4.26   -4.24   -3.93   -3.35   -2.50   -1.38    0.08    1.93    4.19    6.72
+    60.0    0.00   -0.09   -0.36   -0.82   -1.41   -2.11   -2.84   -3.50   -4.00   -4.25   -4.21   -3.88   -3.29   -2.45   -1.36    0.05    1.90    4.21    6.86
+    65.0    0.00   -0.09   -0.36   -0.81   -1.42   -2.12   -2.85   -3.52   -4.01   -4.25   -4.19   -3.84   -3.23   -2.40   -1.33    0.05    1.89    4.25    7.03
+    70.0    0.00   -0.09   -0.36   -0.81   -1.42   -2.12   -2.86   -3.53   -4.03   -4.26   -4.18   -3.80   -3.18   -2.34   -1.29    0.07    1.91    4.32    7.21
+    75.0    0.00   -0.09   -0.36   -0.81   -1.42   -2.13   -2.87   -3.54   -4.04   -4.27   -4.18   -3.78   -3.14   -2.30   -1.25    0.12    1.97    4.42    7.38
+    80.0    0.00   -0.09   -0.36   -0.81   -1.42   -2.13   -2.87   -3.55   -4.05   -4.28   -4.18   -3.78   -3.12   -2.26   -1.20    0.18    2.05    4.53    7.53
+    85.0    0.00   -0.09   -0.36   -0.82   -1.42   -2.13   -2.88   -3.56   -4.06   -4.29   -4.20   -3.79   -3.11   -2.24   -1.15    0.25    2.14    4.64    7.65
+    90.0    0.00   -0.09   -0.36   -0.82   -1.42   -2.13   -2.88   -3.56   -4.07   -4.31   -4.22   -3.81   -3.13   -2.23   -1.11    0.33    2.25    4.75    7.72
+    95.0    0.00   -0.09   -0.36   -0.82   -1.43   -2.14   -2.88   -3.57   -4.08   -4.33   -4.25   -3.85   -3.16   -2.24   -1.09    0.39    2.34    4.84    7.75
+   100.0    0.00   -0.09   -0.37   -0.82   -1.43   -2.14   -2.89   -3.57   -4.09   -4.35   -4.28   -3.89   -3.20   -2.26   -1.08    0.44    2.41    4.91    7.74
+   105.0    0.00   -0.09   -0.37   -0.83   -1.44   -2.15   -2.90   -3.58   -4.11   -4.37   -4.31   -3.93   -3.24   -2.30   -1.08    0.46    2.46    4.94    7.70
+   110.0    0.00   -0.09   -0.37   -0.83   -1.45   -2.17   -2.91   -3.60   -4.12   -4.39   -4.34   -3.97   -3.29   -2.34   -1.11    0.46    2.47    4.94    7.64
+   115.0    0.00   -0.09   -0.37   -0.84   -1.46   -2.18   -2.93   -3.62   -4.14   -4.41   -4.37   -4.00   -3.33   -2.38   -1.14    0.44    2.45    4.91    7.58
+   120.0    0.00   -0.09   -0.38   -0.85   -1.47   -2.20   -2.95   -3.63   -4.16   -4.43   -4.39   -4.02   -3.36   -2.41   -1.19    0.39    2.40    4.85    7.51
+   125.0    0.00   -0.09   -0.38   -0.85   -1.48   -2.21   -2.97   -3.66   -4.18   -4.44   -4.40   -4.04   -3.38   -2.44   -1.23    0.33    2.33    4.78    7.45
+   130.0    0.00   -0.09   -0.38   -0.86   -1.49   -2.23   -2.99   -3.67   -4.19   -4.45   -4.41   -4.04   -3.39   -2.46   -1.27    0.28    2.25    4.69    7.40
+   135.0    0.00   -0.09   -0.38   -0.86   -1.50   -2.24   -3.00   -3.69   -4.20   -4.46   -4.41   -4.04   -3.39   -2.47   -1.29    0.23    2.18    4.62    7.37
+   140.0    0.00   -0.09   -0.38   -0.87   -1.51   -2.25   -3.01   -3.70   -4.21   -4.46   -4.41   -4.04   -3.38   -2.47   -1.30    0.19    2.13    4.55    7.35
+   145.0    0.00   -0.09   -0.39   -0.87   -1.51   -2.25   -3.01   -3.70   -4.21   -4.46   -4.41   -4.04   -3.38   -2.46   -1.30    0.18    2.09    4.51    7.33
+   150.0    0.00   -0.09   -0.39   -0.87   -1.51   -2.25   -3.01   -3.69   -4.21   -4.46   -4.41   -4.03   -3.37   -2.45   -1.28    0.20    2.09    4.48    7.33
+   155.0    0.00   -0.09   -0.39   -0.87   -1.51   -2.24   -3.00   -3.68   -4.20   -4.46   -4.41   -4.04   -3.37   -2.44   -1.25    0.23    2.11    4.48    7.32
+   160.0    0.00   -0.09   -0.39   -0.87   -1.50   -2.23   -2.98   -3.67   -4.19   -4.46   -4.42   -4.05   -3.38   -2.42   -1.22    0.28    2.15    4.49    7.32
+   165.0    0.00   -0.09   -0.39   -0.87   -1.49   -2.22   -2.97   -3.65   -4.18   -4.46   -4.44   -4.08   -3.39   -2.42   -1.18    0.33    2.20    4.52    7.31
+   170.0    0.00   -0.09   -0.39   -0.86   -1.49   -2.21   -2.95   -3.64   -4.18   -4.47   -4.46   -4.11   -3.41   -2.41   -1.15    0.39    2.26    4.54    7.30
+   175.0    0.00   -0.10   -0.39   -0.86   -1.48   -2.20   -2.94   -3.63   -4.18   -4.49   -4.49   -4.14   -3.44   -2.42   -1.13    0.43    2.31    4.57    7.29
+   180.0    0.00   -0.10   -0.39   -0.86   -1.48   -2.19   -2.93   -3.63   -4.19   -4.51   -4.52   -4.18   -3.47   -2.43   -1.11    0.47    2.34    4.59    7.28
+   185.0    0.00   -0.10   -0.39   -0.86   -1.47   -2.18   -2.93   -3.63   -4.20   -4.54   -4.56   -4.21   -3.50   -2.45   -1.12    0.48    2.36    4.60    7.27
+   190.0    0.00   -0.10   -0.39   -0.86   -1.47   -2.19   -2.94   -3.65   -4.22   -4.57   -4.59   -4.25   -3.53   -2.47   -1.13    0.47    2.36    4.60    7.27
+   195.0    0.00   -0.10   -0.39   -0.86   -1.47   -2.19   -2.95   -3.67   -4.25   -4.59   -4.62   -4.27   -3.55   -2.49   -1.15    0.45    2.34    4.58    7.26
+   200.0    0.00   -0.10   -0.39   -0.86   -1.48   -2.20   -2.96   -3.69   -4.27   -4.62   -4.64   -4.29   -3.57   -2.51   -1.17    0.43    2.31    4.56    7.26
+   205.0    0.00   -0.10   -0.39   -0.86   -1.49   -2.21   -2.98   -3.71   -4.29   -4.63   -4.65   -4.30   -3.57   -2.53   -1.20    0.39    2.28    4.55    7.26
+   210.0    0.00   -0.10   -0.39   -0.87   -1.49   -2.22   -3.00   -3.73   -4.31   -4.64   -4.65   -4.29   -3.57   -2.54   -1.22    0.36    2.26    4.53    7.26
+   215.0    0.00   -0.10   -0.40   -0.87   -1.50   -2.23   -3.01   -3.74   -4.31   -4.64   -4.64   -4.28   -3.56   -2.54   -1.23    0.35    2.24    4.53    7.26
+   220.0    0.00   -0.10   -0.40   -0.87   -1.50   -2.24   -3.01   -3.74   -4.31   -4.62   -4.62   -4.26   -3.55   -2.53   -1.24    0.34    2.24    4.54    7.27
+   225.0    0.00   -0.10   -0.40   -0.88   -1.51   -2.24   -3.01   -3.73   -4.29   -4.60   -4.59   -4.23   -3.53   -2.52   -1.23    0.35    2.26    4.58    7.29
+   230.0    0.00   -0.10   -0.40   -0.88   -1.51   -2.24   -3.00   -3.71   -4.26   -4.56   -4.55   -4.20   -3.51   -2.50   -1.21    0.37    2.30    4.62    7.33
+   235.0    0.00   -0.11   -0.40   -0.88   -1.51   -2.23   -2.99   -3.68   -4.22   -4.52   -4.51   -4.16   -3.48   -2.48   -1.19    0.40    2.35    4.68    7.39
+   240.0    0.00   -0.11   -0.41   -0.88   -1.51   -2.22   -2.97   -3.65   -4.18   -4.48   -4.47   -4.13   -3.46   -2.46   -1.17    0.44    2.40    4.75    7.48
+   245.0    0.00   -0.11   -0.41   -0.88   -1.50   -2.21   -2.94   -3.62   -4.14   -4.43   -4.43   -4.10   -3.43   -2.44   -1.15    0.47    2.45    4.83    7.59
+   250.0    0.00   -0.11   -0.41   -0.88   -1.49   -2.20   -2.92   -3.58   -4.10   -4.40   -4.40   -4.08   -3.41   -2.43   -1.13    0.49    2.49    4.90    7.73
+   255.0    0.00   -0.11   -0.41   -0.88   -1.49   -2.18   -2.90   -3.55   -4.07   -4.37   -4.38   -4.05   -3.40   -2.41   -1.12    0.50    2.51    4.98    7.90
+   260.0    0.00   -0.11   -0.41   -0.88   -1.48   -2.17   -2.88   -3.53   -4.05   -4.35   -4.36   -4.04   -3.38   -2.41   -1.12    0.50    2.52    5.04    8.08
+   265.0    0.00   -0.11   -0.41   -0.87   -1.47   -2.16   -2.86   -3.51   -4.04   -4.34   -4.35   -4.03   -3.38   -2.40   -1.13    0.48    2.52    5.10    8.27
+   270.0    0.00   -0.11   -0.41   -0.87   -1.47   -2.14   -2.85   -3.51   -4.03   -4.34   -4.36   -4.04   -3.38   -2.41   -1.14    0.45    2.50    5.14    8.46
+   275.0    0.00   -0.11   -0.41   -0.87   -1.46   -2.14   -2.84   -3.50   -4.04   -4.35   -4.37   -4.05   -3.39   -2.42   -1.17    0.42    2.47    5.18    8.62
+   280.0    0.00   -0.11   -0.41   -0.86   -1.45   -2.13   -2.84   -3.51   -4.05   -4.37   -4.39   -4.06   -3.40   -2.44   -1.20    0.38    2.44    5.20    8.75
+   285.0    0.00   -0.11   -0.40   -0.86   -1.45   -2.13   -2.84   -3.51   -4.06   -4.39   -4.41   -4.09   -3.43   -2.47   -1.23    0.34    2.42    5.21    8.84
+   290.0    0.00   -0.11   -0.40   -0.86   -1.44   -2.12   -2.84   -3.52   -4.08   -4.42   -4.44   -4.12   -3.45   -2.50   -1.26    0.31    2.39    5.21    8.89
+   295.0    0.00   -0.11   -0.40   -0.86   -1.44   -2.12   -2.84   -3.53   -4.10   -4.44   -4.47   -4.15   -3.49   -2.53   -1.29    0.28    2.38    5.21    8.89
+   300.0    0.00   -0.11   -0.40   -0.85   -1.44   -2.12   -2.84   -3.54   -4.12   -4.47   -4.50   -4.19   -3.53   -2.57   -1.32    0.26    2.37    5.19    8.84
+   305.0    0.00   -0.11   -0.40   -0.85   -1.43   -2.11   -2.84   -3.55   -4.13   -4.49   -4.53   -4.22   -3.56   -2.60   -1.35    0.25    2.36    5.17    8.77
+   310.0    0.00   -0.11   -0.40   -0.85   -1.43   -2.11   -2.84   -3.55   -4.14   -4.51   -4.56   -4.25   -3.60   -2.63   -1.37    0.24    2.35    5.14    8.67
+   315.0    0.00   -0.11   -0.40   -0.85   -1.43   -2.11   -2.84   -3.56   -4.15   -4.52   -4.58   -4.28   -3.62   -2.65   -1.38    0.23    2.34    5.10    8.56
+   320.0    0.00   -0.11   -0.40   -0.84   -1.43   -2.11   -2.85   -3.56   -4.16   -4.54   -4.60   -4.30   -3.64   -2.67   -1.39    0.22    2.32    5.05    8.46
+   325.0    0.00   -0.11   -0.40   -0.84   -1.43   -2.11   -2.85   -3.57   -4.17   -4.55   -4.61   -4.31   -3.65   -2.67   -1.40    0.22    2.29    5.00    8.37
+   330.0    0.00   -0.11   -0.39   -0.84   -1.43   -2.11   -2.85   -3.57   -4.17   -4.55   -4.62   -4.31   -3.65   -2.67   -1.40    0.21    2.27    4.94    8.29
+   335.0    0.00   -0.11   -0.39   -0.84   -1.42   -2.11   -2.85   -3.57   -4.18   -4.56   -4.62   -4.31   -3.64   -2.66   -1.39    0.20    2.23    4.88    8.23
+   340.0    0.00   -0.10   -0.39   -0.84   -1.42   -2.11   -2.86   -3.58   -4.18   -4.56   -4.61   -4.30   -3.63   -2.65   -1.38    0.19    2.20    4.83    8.18
+   345.0    0.00   -0.10   -0.39   -0.84   -1.42   -2.11   -2.86   -3.58   -4.18   -4.56   -4.61   -4.29   -3.61   -2.63   -1.37    0.19    2.18    4.78    8.13
+   350.0    0.00   -0.10   -0.39   -0.84   -1.42   -2.11   -2.86   -3.58   -4.18   -4.55   -4.60   -4.28   -3.60   -2.61   -1.35    0.20    2.17    4.74    8.08
+   355.0    0.00   -0.10   -0.39   -0.84   -1.42   -2.11   -2.85   -3.57   -4.17   -4.54   -4.58   -4.26   -3.58   -2.59   -1.33    0.21    2.16    4.71    8.00
+   360.0    0.00   -0.10   -0.39   -0.83   -1.42   -2.11   -2.85   -3.56   -4.16   -4.52   -4.57   -4.25   -3.57   -2.58   -1.31    0.24    2.17    4.67    7.89
+   G02                                                      END OF FREQUENCY    
+   R01                                                      START OF FREQUENCY  
+      0.95     -0.40    113.50                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.13   -0.51   -1.10   -1.87   -2.72   -3.56   -4.31   -4.86   -5.16   -5.16   -4.86   -4.22   -3.21   -1.74    0.30    2.97    6.23    9.83
+     0.0    0.00   -0.13   -0.51   -1.11   -1.89   -2.75   -3.64   -4.44   -5.05   -5.38   -5.37   -5.03   -4.33   -3.27   -1.81    0.15    2.73    5.98    9.79
+     5.0    0.00   -0.14   -0.52   -1.12   -1.88   -2.74   -3.63   -4.43   -5.03   -5.37   -5.37   -5.02   -4.30   -3.22   -1.72    0.27    2.85    6.07    9.81
+    10.0    0.00   -0.14   -0.53   -1.13   -1.88   -2.73   -3.61   -4.40   -5.01   -5.35   -5.35   -5.00   -4.28   -3.18   -1.64    0.37    2.96    6.15    9.82
+    15.0    0.00   -0.14   -0.53   -1.13   -1.88   -2.72   -3.59   -4.38   -4.99   -5.33   -5.35   -5.00   -4.28   -3.15   -1.60    0.46    3.07    6.23    9.82
+    20.0    0.00   -0.15   -0.54   -1.13   -1.87   -2.71   -3.57   -4.34   -4.96   -5.31   -5.34   -5.01   -4.29   -3.16   -1.57    0.52    3.14    6.29    9.81
+    25.0    0.00   -0.15   -0.54   -1.13   -1.88   -2.70   -3.55   -4.32   -4.92   -5.29   -5.34   -5.02   -4.32   -3.18   -1.58    0.54    3.19    6.35    9.83
+    30.0    0.00   -0.16   -0.55   -1.13   -1.87   -2.70   -3.53   -4.29   -4.90   -5.27   -5.32   -5.03   -4.34   -3.22   -1.62    0.53    3.21    6.39    9.86
+    35.0    0.00   -0.16   -0.55   -1.14   -1.87   -2.69   -3.52   -4.27   -4.87   -5.23   -5.31   -5.04   -4.38   -3.27   -1.66    0.49    3.20    6.41    9.90
+    40.0    0.00   -0.16   -0.55   -1.14   -1.88   -2.69   -3.51   -4.26   -4.84   -5.21   -5.28   -5.03   -4.39   -3.31   -1.73    0.43    3.17    6.42    9.96
+    45.0    0.00   -0.17   -0.56   -1.15   -1.88   -2.69   -3.51   -4.24   -4.82   -5.18   -5.26   -5.02   -4.40   -3.34   -1.78    0.37    3.13    6.41   10.00
+    50.0    0.00   -0.17   -0.56   -1.16   -1.89   -2.70   -3.51   -4.24   -4.81   -5.16   -5.23   -4.99   -4.39   -3.36   -1.83    0.30    3.07    6.38   10.04
+    55.0    0.00   -0.17   -0.58   -1.16   -1.90   -2.72   -3.52   -4.25   -4.81   -5.14   -5.20   -4.96   -4.37   -3.36   -1.85    0.26    3.01    6.36   10.05
+    60.0    0.00   -0.17   -0.58   -1.18   -1.91   -2.74   -3.54   -4.27   -4.81   -5.14   -5.18   -4.93   -4.33   -3.35   -1.85    0.23    2.97    6.31   10.02
+    65.0    0.00   -0.17   -0.59   -1.18   -1.93   -2.75   -3.57   -4.29   -4.83   -5.13   -5.17   -4.90   -4.29   -3.30   -1.84    0.22    2.94    6.26    9.97
+    70.0    0.00   -0.19   -0.59   -1.20   -1.96   -2.78   -3.60   -4.32   -4.85   -5.14   -5.16   -4.87   -4.25   -3.27   -1.80    0.23    2.92    6.22    9.88
+    75.0    0.00   -0.19   -0.60   -1.21   -1.97   -2.82   -3.64   -4.36   -4.89   -5.17   -5.16   -4.85   -4.22   -3.23   -1.77    0.25    2.91    6.17    9.77
+    80.0    0.00   -0.19   -0.60   -1.22   -1.99   -2.84   -3.67   -4.40   -4.92   -5.19   -5.18   -4.85   -4.21   -3.20   -1.75    0.27    2.91    6.12    9.63
+    85.0    0.00   -0.19   -0.61   -1.23   -2.01   -2.87   -3.71   -4.44   -4.98   -5.24   -5.21   -4.88   -4.22   -3.21   -1.74    0.26    2.89    6.07    9.49
+    90.0    0.00   -0.19   -0.61   -1.25   -2.03   -2.90   -3.75   -4.49   -5.03   -5.30   -5.26   -4.92   -4.26   -3.24   -1.77    0.24    2.85    6.00    9.35
+    95.0    0.00   -0.19   -0.62   -1.26   -2.06   -2.94   -3.79   -4.54   -5.07   -5.35   -5.33   -4.99   -4.34   -3.32   -1.85    0.18    2.80    5.93    9.22
+   100.0    0.00   -0.19   -0.62   -1.27   -2.08   -2.96   -3.83   -4.58   -5.13   -5.41   -5.40   -5.08   -4.44   -3.42   -1.95    0.08    2.71    5.84    9.10
+   105.0    0.00   -0.18   -0.63   -1.28   -2.09   -2.99   -3.87   -4.62   -5.18   -5.48   -5.48   -5.17   -4.56   -3.56   -2.09   -0.07    2.58    5.73    9.01
+   110.0    0.00   -0.19   -0.62   -1.28   -2.11   -3.01   -3.90   -4.66   -5.23   -5.53   -5.56   -5.28   -4.68   -3.71   -2.27   -0.24    2.43    5.62    8.93
+   115.0    0.00   -0.19   -0.63   -1.30   -2.12   -3.03   -3.93   -4.70   -5.28   -5.60   -5.63   -5.38   -4.81   -3.87   -2.45   -0.42    2.26    5.49    8.88
+   120.0    0.00   -0.19   -0.63   -1.29   -2.13   -3.05   -3.94   -4.73   -5.31   -5.65   -5.70   -5.47   -4.93   -4.02   -2.61   -0.61    2.09    5.36    8.83
+   125.0    0.00   -0.19   -0.63   -1.29   -2.13   -3.06   -3.96   -4.75   -5.35   -5.69   -5.76   -5.54   -5.03   -4.14   -2.77   -0.77    1.94    5.25    8.80
+   130.0    0.00   -0.18   -0.62   -1.29   -2.13   -3.06   -3.97   -4.77   -5.37   -5.72   -5.79   -5.60   -5.10   -4.23   -2.88   -0.90    1.82    5.16    8.78
+   135.0    0.00   -0.18   -0.62   -1.28   -2.13   -3.06   -3.98   -4.77   -5.37   -5.73   -5.82   -5.63   -5.14   -4.28   -2.93   -0.96    1.74    5.10    8.79
+   140.0    0.00   -0.18   -0.61   -1.28   -2.12   -3.04   -3.97   -4.76   -5.37   -5.73   -5.82   -5.63   -5.14   -4.29   -2.95   -0.98    1.72    5.09    8.81
+   145.0    0.00   -0.17   -0.61   -1.26   -2.10   -3.03   -3.95   -4.75   -5.35   -5.71   -5.80   -5.60   -5.11   -4.24   -2.89   -0.92    1.77    5.13    8.85
+   150.0    0.00   -0.17   -0.60   -1.25   -2.09   -3.01   -3.92   -4.71   -5.32   -5.68   -5.75   -5.56   -5.05   -4.16   -2.79   -0.81    1.87    5.21    8.92
+   155.0    0.00   -0.16   -0.58   -1.24   -2.06   -2.98   -3.87   -4.67   -5.27   -5.63   -5.70   -5.49   -4.96   -4.05   -2.66   -0.65    2.03    5.34    9.02
+   160.0    0.00   -0.15   -0.57   -1.22   -2.04   -2.94   -3.83   -4.61   -5.21   -5.55   -5.64   -5.42   -4.87   -3.92   -2.49   -0.46    2.22    5.51    9.16
+   165.0    0.00   -0.15   -0.56   -1.20   -2.01   -2.90   -3.78   -4.54   -5.14   -5.48   -5.56   -5.33   -4.75   -3.78   -2.31   -0.25    2.43    5.70    9.34
+   170.0    0.00   -0.14   -0.55   -1.18   -1.97   -2.85   -3.72   -4.48   -5.06   -5.40   -5.46   -5.23   -4.64   -3.65   -2.14   -0.06    2.65    5.92    9.52
+   175.0    0.00   -0.14   -0.53   -1.15   -1.94   -2.81   -3.66   -4.41   -4.98   -5.31   -5.38   -5.13   -4.53   -3.50   -1.97    0.14    2.86    6.12    9.73
+   180.0    0.00   -0.13   -0.52   -1.13   -1.91   -2.76   -3.61   -4.34   -4.90   -5.23   -5.28   -5.03   -4.41   -3.38   -1.83    0.29    3.04    6.31    9.93
+   185.0    0.00   -0.12   -0.50   -1.11   -1.87   -2.72   -3.55   -4.27   -4.83   -5.13   -5.18   -4.92   -4.30   -3.26   -1.70    0.44    3.18    6.47   10.11
+   190.0    0.00   -0.12   -0.49   -1.09   -1.84   -2.68   -3.50   -4.22   -4.75   -5.06   -5.09   -4.81   -4.19   -3.14   -1.59    0.55    3.30    6.59   10.25
+   195.0    0.00   -0.11   -0.47   -1.06   -1.81   -2.64   -3.46   -4.16   -4.69   -4.98   -5.00   -4.72   -4.08   -3.03   -1.49    0.64    3.38    6.69   10.36
+   200.0    0.00   -0.11   -0.47   -1.04   -1.79   -2.61   -3.41   -4.12   -4.63   -4.91   -4.91   -4.61   -3.97   -2.93   -1.39    0.71    3.45    6.75   10.43
+   205.0    0.00   -0.10   -0.45   -1.02   -1.76   -2.58   -3.38   -4.07   -4.58   -4.84   -4.82   -4.51   -3.86   -2.82   -1.30    0.79    3.51    6.80   10.46
+   210.0    0.00   -0.09   -0.44   -1.00   -1.74   -2.56   -3.35   -4.04   -4.53   -4.78   -4.74   -4.41   -3.76   -2.72   -1.20    0.87    3.57    6.84   10.46
+   215.0    0.00   -0.09   -0.43   -0.99   -1.72   -2.53   -3.32   -4.01   -4.49   -4.72   -4.66   -4.32   -3.65   -2.61   -1.11    0.96    3.64    6.88   10.45
+   220.0    0.00   -0.09   -0.42   -0.97   -1.69   -2.50   -3.29   -3.97   -4.44   -4.67   -4.60   -4.23   -3.55   -2.51   -1.00    1.06    3.72    6.93   10.43
+   225.0    0.00   -0.08   -0.40   -0.95   -1.67   -2.48   -3.27   -3.95   -4.40   -4.61   -4.53   -4.15   -3.46   -2.41   -0.89    1.17    3.82    7.00   10.45
+   230.0    0.00   -0.08   -0.40   -0.95   -1.66   -2.46   -3.24   -3.91   -4.36   -4.56   -4.47   -4.08   -3.38   -2.32   -0.80    1.27    3.93    7.10   10.50
+   235.0    0.00   -0.07   -0.39   -0.94   -1.64   -2.45   -3.22   -3.88   -4.34   -4.52   -4.42   -4.03   -3.31   -2.25   -0.71    1.36    4.04    7.21   10.57
+   240.0    0.00   -0.07   -0.39   -0.92   -1.64   -2.43   -3.21   -3.86   -4.30   -4.49   -4.38   -3.98   -3.27   -2.19   -0.65    1.44    4.15    7.33   10.70
+   245.0    0.00   -0.06   -0.39   -0.92   -1.63   -2.42   -3.19   -3.84   -4.28   -4.45   -4.35   -3.95   -3.24   -2.16   -0.61    1.50    4.22    7.44   10.84
+   250.0    0.00   -0.06   -0.37   -0.91   -1.61   -2.40   -3.17   -3.82   -4.26   -4.44   -4.33   -3.94   -3.24   -2.15   -0.61    1.52    4.27    7.54   10.98
+   255.0    0.00   -0.06   -0.38   -0.91   -1.61   -2.40   -3.17   -3.81   -4.26   -4.44   -4.34   -3.95   -3.25   -2.17   -0.64    1.50    4.27    7.59   11.11
+   260.0    0.00   -0.06   -0.38   -0.91   -1.62   -2.40   -3.17   -3.82   -4.27   -4.46   -4.36   -3.97   -3.28   -2.22   -0.69    1.45    4.23    7.59   11.21
+   265.0    0.00   -0.06   -0.38   -0.91   -1.62   -2.40   -3.18   -3.84   -4.30   -4.49   -4.40   -4.02   -3.34   -2.29   -0.77    1.35    4.14    7.55   11.24
+   270.0    0.00   -0.06   -0.38   -0.92   -1.63   -2.41   -3.20   -3.87   -4.34   -4.54   -4.46   -4.09   -3.41   -2.38   -0.87    1.23    4.01    7.44   11.20
+   275.0    0.00   -0.07   -0.38   -0.92   -1.64   -2.44   -3.22   -3.91   -4.39   -4.60   -4.53   -4.17   -3.50   -2.47   -0.99    1.08    3.84    7.27   11.08
+   280.0    0.00   -0.07   -0.39   -0.93   -1.65   -2.46   -3.26   -3.96   -4.45   -4.68   -4.62   -4.27   -3.60   -2.59   -1.12    0.92    3.65    7.06   10.88
+   285.0    0.00   -0.07   -0.40   -0.95   -1.67   -2.49   -3.31   -4.02   -4.53   -4.77   -4.72   -4.37   -3.71   -2.70   -1.26    0.76    3.45    6.83   10.62
+   290.0    0.00   -0.08   -0.40   -0.96   -1.68   -2.51   -3.34   -4.07   -4.60   -4.86   -4.83   -4.48   -3.83   -2.83   -1.40    0.59    3.24    6.57   10.32
+   295.0    0.00   -0.08   -0.41   -0.97   -1.71   -2.54   -3.39   -4.13   -4.68   -4.96   -4.93   -4.60   -3.95   -2.95   -1.53    0.43    3.05    6.32   10.00
+   300.0    0.00   -0.08   -0.42   -0.98   -1.73   -2.57   -3.43   -4.19   -4.75   -5.04   -5.03   -4.71   -4.07   -3.08   -1.67    0.28    2.87    6.08    9.71
+   305.0    0.00   -0.08   -0.43   -1.00   -1.75   -2.61   -3.47   -4.24   -4.82   -5.13   -5.13   -4.81   -4.17   -3.20   -1.79    0.14    2.70    5.88    9.45
+   310.0    0.00   -0.08   -0.44   -1.02   -1.77   -2.64   -3.51   -4.30   -4.88   -5.21   -5.22   -4.91   -4.28   -3.31   -1.91    0.02    2.57    5.72    9.25
+   315.0    0.00   -0.10   -0.44   -1.03   -1.79   -2.66   -3.55   -4.34   -4.93   -5.26   -5.28   -4.99   -4.37   -3.40   -2.01   -0.09    2.45    5.61    9.12
+   320.0    0.00   -0.10   -0.46   -1.05   -1.81   -2.69   -3.58   -4.37   -4.97   -5.31   -5.34   -5.05   -4.44   -3.47   -2.09   -0.17    2.37    5.54    9.08
+   325.0    0.00   -0.10   -0.47   -1.06   -1.83   -2.71   -3.61   -4.40   -5.01   -5.35   -5.38   -5.09   -4.48   -3.53   -2.15   -0.23    2.32    5.51    9.10
+   330.0    0.00   -0.11   -0.47   -1.07   -1.84   -2.72   -3.63   -4.43   -5.04   -5.38   -5.41   -5.12   -4.51   -3.55   -2.18   -0.26    2.30    5.52    9.18
+   335.0    0.00   -0.11   -0.48   -1.08   -1.86   -2.74   -3.64   -4.44   -5.05   -5.39   -5.42   -5.12   -4.51   -3.55   -2.17   -0.27    2.31    5.56    9.30
+   340.0    0.00   -0.12   -0.49   -1.09   -1.87   -2.75   -3.65   -4.45   -5.06   -5.40   -5.42   -5.11   -4.48   -3.52   -2.14   -0.23    2.34    5.63    9.43
+   345.0    0.00   -0.12   -0.50   -1.09   -1.88   -2.76   -3.65   -4.46   -5.06   -5.39   -5.41   -5.10   -4.46   -3.47   -2.09   -0.16    2.41    5.71    9.55
+   350.0    0.00   -0.12   -0.51   -1.11   -1.89   -2.76   -3.66   -4.45   -5.07   -5.40   -5.40   -5.07   -4.42   -3.41   -2.00   -0.08    2.50    5.79    9.67
+   355.0    0.00   -0.13   -0.51   -1.11   -1.88   -2.76   -3.65   -4.45   -5.06   -5.39   -5.38   -5.05   -4.37   -3.34   -1.91    0.03    2.61    5.89    9.74
+   360.0    0.00   -0.13   -0.51   -1.11   -1.89   -2.75   -3.64   -4.44   -5.05   -5.38   -5.37   -5.03   -4.33   -3.27   -1.81    0.15    2.73    5.98    9.79
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+      0.41      0.45    124.54                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.11   -0.44   -0.95   -1.58   -2.29   -3.03   -3.73   -4.32   -4.69   -4.75   -4.45   -3.78   -2.78   -1.51    0.03    1.92    4.32    7.32
+     0.0    0.00   -0.11   -0.42   -0.90   -1.49   -2.15   -2.87   -3.58   -4.21   -4.63   -4.75   -4.46   -3.77   -2.73   -1.42    0.12    2.04    4.61    8.12
+     5.0    0.00   -0.11   -0.42   -0.90   -1.48   -2.14   -2.86   -3.57   -4.19   -4.63   -4.75   -4.47   -3.77   -2.73   -1.42    0.14    2.05    4.56    7.99
+    10.0    0.00   -0.11   -0.42   -0.90   -1.48   -2.14   -2.84   -3.55   -4.17   -4.61   -4.74   -4.46   -3.78   -2.73   -1.42    0.15    2.04    4.51    7.82
+    15.0    0.00   -0.11   -0.42   -0.89   -1.48   -2.14   -2.83   -3.53   -4.16   -4.59   -4.72   -4.47   -3.79   -2.75   -1.43    0.13    2.02    4.44    7.63
+    20.0    0.00   -0.11   -0.43   -0.90   -1.49   -2.14   -2.84   -3.53   -4.14   -4.57   -4.71   -4.45   -3.79   -2.77   -1.46    0.10    1.98    4.35    7.45
+    25.0    0.00   -0.11   -0.43   -0.91   -1.49   -2.14   -2.83   -3.52   -4.13   -4.55   -4.68   -4.44   -3.79   -2.78   -1.49    0.05    1.91    4.26    7.27
+    30.0    0.00   -0.11   -0.43   -0.91   -1.49   -2.15   -2.84   -3.52   -4.11   -4.52   -4.65   -4.41   -3.78   -2.80   -1.53    0.00    1.83    4.15    7.11
+    35.0    0.00   -0.11   -0.44   -0.91   -1.50   -2.16   -2.85   -3.52   -4.11   -4.51   -4.62   -4.37   -3.76   -2.81   -1.57   -0.07    1.74    4.05    6.98
+    40.0    0.00   -0.11   -0.44   -0.91   -1.51   -2.17   -2.87   -3.53   -4.11   -4.49   -4.59   -4.34   -3.73   -2.80   -1.60   -0.14    1.66    3.95    6.87
+    45.0    0.00   -0.12   -0.44   -0.93   -1.52   -2.19   -2.88   -3.55   -4.10   -4.47   -4.56   -4.30   -3.70   -2.79   -1.62   -0.19    1.58    3.87    6.79
+    50.0    0.00   -0.13   -0.45   -0.93   -1.54   -2.20   -2.91   -3.56   -4.11   -4.46   -4.52   -4.26   -3.66   -2.76   -1.62   -0.22    1.53    3.81    6.73
+    55.0    0.00   -0.13   -0.45   -0.94   -1.55   -2.23   -2.93   -3.59   -4.13   -4.46   -4.50   -4.22   -3.61   -2.73   -1.61   -0.24    1.50    3.76    6.69
+    60.0    0.00   -0.13   -0.45   -0.95   -1.56   -2.24   -2.95   -3.62   -4.15   -4.47   -4.49   -4.19   -3.57   -2.68   -1.57   -0.22    1.51    3.76    6.66
+    65.0    0.00   -0.13   -0.45   -0.95   -1.57   -2.26   -2.97   -3.64   -4.17   -4.49   -4.49   -4.17   -3.54   -2.64   -1.52   -0.17    1.55    3.78    6.64
+    70.0    0.00   -0.13   -0.45   -0.96   -1.58   -2.27   -2.99   -3.66   -4.20   -4.51   -4.51   -4.17   -3.51   -2.59   -1.47   -0.09    1.61    3.84    6.64
+    75.0    0.00   -0.13   -0.46   -0.96   -1.59   -2.29   -3.02   -3.69   -4.23   -4.53   -4.53   -4.18   -3.50   -2.56   -1.40   -0.01    1.70    3.90    6.65
+    80.0    0.00   -0.13   -0.46   -0.97   -1.60   -2.31   -3.03   -3.71   -4.26   -4.56   -4.56   -4.20   -3.51   -2.54   -1.35    0.06    1.80    3.98    6.66
+    85.0    0.00   -0.13   -0.46   -0.97   -1.60   -2.31   -3.05   -3.73   -4.29   -4.60   -4.60   -4.24   -3.52   -2.53   -1.31    0.14    1.89    4.07    6.69
+    90.0    0.00   -0.14   -0.46   -0.97   -1.61   -2.33   -3.07   -3.76   -4.31   -4.64   -4.65   -4.28   -3.55   -2.54   -1.29    0.19    1.96    4.15    6.74
+    95.0    0.00   -0.13   -0.47   -0.98   -1.61   -2.33   -3.07   -3.78   -4.34   -4.68   -4.69   -4.32   -3.60   -2.56   -1.30    0.21    2.00    4.20    6.80
+   100.0    0.00   -0.13   -0.47   -0.98   -1.63   -2.35   -3.09   -3.79   -4.37   -4.72   -4.73   -4.37   -3.64   -2.60   -1.33    0.19    2.02    4.25    6.87
+   105.0    0.00   -0.13   -0.47   -0.99   -1.63   -2.35   -3.10   -3.82   -4.40   -4.75   -4.77   -4.41   -3.68   -2.65   -1.38    0.15    2.00    4.27    6.95
+   110.0    0.00   -0.13   -0.47   -1.00   -1.63   -2.37   -3.12   -3.83   -4.42   -4.77   -4.80   -4.44   -3.73   -2.71   -1.45    0.07    1.94    4.27    7.03
+   115.0    0.00   -0.13   -0.47   -1.00   -1.65   -2.37   -3.13   -3.85   -4.44   -4.79   -4.82   -4.48   -3.77   -2.78   -1.54   -0.02    1.87    4.25    7.10
+   120.0    0.00   -0.13   -0.47   -1.00   -1.65   -2.38   -3.15   -3.87   -4.46   -4.81   -4.84   -4.49   -3.81   -2.84   -1.61   -0.12    1.78    4.21    7.18
+   125.0    0.00   -0.13   -0.48   -1.00   -1.65   -2.40   -3.16   -3.88   -4.47   -4.82   -4.85   -4.51   -3.84   -2.88   -1.68   -0.21    1.69    4.16    7.22
+   130.0    0.00   -0.13   -0.48   -1.01   -1.67   -2.40   -3.17   -3.89   -4.48   -4.83   -4.85   -4.53   -3.86   -2.92   -1.75   -0.28    1.61    4.12    7.24
+   135.0    0.00   -0.13   -0.48   -1.01   -1.67   -2.41   -3.18   -3.90   -4.48   -4.83   -4.86   -4.53   -3.88   -2.95   -1.79   -0.33    1.57    4.08    7.23
+   140.0    0.00   -0.13   -0.48   -1.01   -1.67   -2.42   -3.18   -3.90   -4.48   -4.84   -4.86   -4.54   -3.89   -2.96   -1.80   -0.35    1.53    4.04    7.21
+   145.0    0.00   -0.13   -0.48   -1.01   -1.68   -2.42   -3.19   -3.90   -4.49   -4.83   -4.87   -4.55   -3.90   -2.97   -1.80   -0.34    1.54    4.02    7.16
+   150.0    0.00   -0.13   -0.48   -1.01   -1.68   -2.42   -3.19   -3.91   -4.49   -4.84   -4.88   -4.56   -3.90   -2.96   -1.77   -0.31    1.56    4.02    7.10
+   155.0    0.00   -0.12   -0.48   -1.01   -1.68   -2.42   -3.19   -3.90   -4.48   -4.84   -4.89   -4.58   -3.91   -2.95   -1.73   -0.25    1.61    4.01    7.04
+   160.0    0.00   -0.12   -0.48   -1.01   -1.68   -2.42   -3.19   -3.90   -4.48   -4.85   -4.90   -4.59   -3.92   -2.93   -1.68   -0.18    1.68    4.03    6.97
+   165.0    0.00   -0.12   -0.47   -1.01   -1.68   -2.42   -3.18   -3.90   -4.49   -4.86   -4.92   -4.61   -3.93   -2.91   -1.64   -0.11    1.75    4.06    6.92
+   170.0    0.00   -0.12   -0.47   -1.01   -1.67   -2.42   -3.18   -3.90   -4.49   -4.88   -4.94   -4.63   -3.94   -2.90   -1.59   -0.04    1.81    4.09    6.89
+   175.0    0.00   -0.12   -0.47   -1.00   -1.67   -2.42   -3.18   -3.90   -4.50   -4.88   -4.96   -4.65   -3.94   -2.89   -1.56    0.02    1.87    4.12    6.87
+   180.0    0.00   -0.12   -0.47   -1.00   -1.67   -2.42   -3.19   -3.91   -4.51   -4.89   -4.98   -4.66   -3.95   -2.89   -1.53    0.06    1.93    4.16    6.85
+   185.0    0.00   -0.12   -0.46   -1.00   -1.67   -2.42   -3.18   -3.91   -4.52   -4.91   -4.98   -4.68   -3.97   -2.89   -1.51    0.10    1.97    4.18    6.85
+   190.0    0.00   -0.12   -0.46   -1.00   -1.66   -2.41   -3.18   -3.91   -4.52   -4.92   -5.00   -4.69   -3.97   -2.89   -1.51    0.12    1.99    4.22    6.85
+   195.0    0.00   -0.11   -0.46   -0.99   -1.66   -2.41   -3.19   -3.92   -4.53   -4.93   -5.01   -4.70   -3.98   -2.90   -1.50    0.14    2.03    4.24    6.86
+   200.0    0.00   -0.11   -0.46   -0.98   -1.66   -2.41   -3.19   -3.92   -4.53   -4.93   -5.01   -4.70   -3.98   -2.89   -1.50    0.15    2.05    4.27    6.85
+   205.0    0.00   -0.11   -0.45   -0.98   -1.65   -2.41   -3.18   -3.92   -4.54   -4.93   -5.00   -4.70   -3.99   -2.89   -1.49    0.16    2.07    4.30    6.85
+   210.0    0.00   -0.11   -0.44   -0.97   -1.64   -2.40   -3.19   -3.92   -4.53   -4.92   -5.00   -4.68   -3.98   -2.88   -1.49    0.18    2.10    4.33    6.84
+   215.0    0.00   -0.11   -0.44   -0.97   -1.64   -2.40   -3.18   -3.92   -4.53   -4.91   -4.98   -4.66   -3.96   -2.88   -1.47    0.20    2.13    4.36    6.84
+   220.0    0.00   -0.11   -0.44   -0.97   -1.63   -2.39   -3.18   -3.90   -4.51   -4.89   -4.95   -4.64   -3.93   -2.86   -1.46    0.21    2.16    4.40    6.85
+   225.0    0.00   -0.11   -0.43   -0.95   -1.62   -2.38   -3.16   -3.90   -4.49   -4.86   -4.92   -4.61   -3.90   -2.84   -1.44    0.23    2.19    4.43    6.88
+   230.0    0.00   -0.11   -0.43   -0.95   -1.62   -2.37   -3.16   -3.88   -4.47   -4.83   -4.89   -4.57   -3.87   -2.81   -1.43    0.24    2.20    4.47    6.93
+   235.0    0.00   -0.11   -0.42   -0.95   -1.61   -2.36   -3.14   -3.86   -4.45   -4.80   -4.85   -4.52   -3.83   -2.79   -1.42    0.24    2.22    4.50    7.01
+   240.0    0.00   -0.10   -0.42   -0.93   -1.60   -2.35   -3.12   -3.85   -4.42   -4.77   -4.80   -4.48   -3.78   -2.75   -1.41    0.23    2.21    4.53    7.12
+   245.0    0.00   -0.10   -0.42   -0.93   -1.59   -2.34   -3.12   -3.83   -4.39   -4.73   -4.76   -4.43   -3.74   -2.72   -1.41    0.22    2.19    4.55    7.26
+   250.0    0.00   -0.10   -0.42   -0.93   -1.59   -2.33   -3.10   -3.80   -4.36   -4.70   -4.71   -4.38   -3.69   -2.69   -1.41    0.19    2.15    4.58    7.41
+   255.0    0.00   -0.10   -0.42   -0.92   -1.57   -2.32   -3.09   -3.78   -4.35   -4.66   -4.67   -4.34   -3.66   -2.67   -1.41    0.15    2.12    4.59    7.56
+   260.0    0.00   -0.10   -0.41   -0.92   -1.57   -2.30   -3.07   -3.77   -4.32   -4.63   -4.64   -4.30   -3.63   -2.66   -1.42    0.11    2.08    4.60    7.72
+   265.0    0.00   -0.10   -0.41   -0.92   -1.57   -2.30   -3.04   -3.74   -4.29   -4.61   -4.62   -4.28   -3.61   -2.66   -1.44    0.08    2.03    4.60    7.84
+   270.0    0.00   -0.10   -0.41   -0.91   -1.55   -2.28   -3.03   -3.72   -4.27   -4.59   -4.60   -4.27   -3.61   -2.66   -1.46    0.05    2.00    4.61    7.94
+   275.0    0.00   -0.10   -0.41   -0.91   -1.55   -2.27   -3.01   -3.70   -4.25   -4.58   -4.60   -4.27   -3.61   -2.67   -1.48    0.02    1.98    4.61    8.01
+   280.0    0.00   -0.10   -0.41   -0.91   -1.53   -2.25   -2.98   -3.68   -4.24   -4.57   -4.60   -4.29   -3.63   -2.68   -1.49    0.01    1.98    4.62    8.04
+   285.0    0.00   -0.10   -0.40   -0.90   -1.53   -2.24   -2.97   -3.65   -4.22   -4.56   -4.61   -4.31   -3.67   -2.71   -1.51    0.01    1.99    4.62    8.04
+   290.0    0.00   -0.09   -0.41   -0.90   -1.53   -2.22   -2.95   -3.64   -4.20   -4.56   -4.62   -4.34   -3.70   -2.75   -1.52    0.02    2.01    4.63    8.02
+   295.0    0.00   -0.09   -0.41   -0.90   -1.52   -2.21   -2.93   -3.62   -4.20   -4.57   -4.65   -4.38   -3.74   -2.78   -1.52    0.04    2.03    4.63    7.98
+   300.0    0.00   -0.09   -0.41   -0.90   -1.51   -2.21   -2.91   -3.61   -4.18   -4.57   -4.67   -4.41   -3.78   -2.81   -1.53    0.05    2.06    4.64    7.94
+   305.0    0.00   -0.10   -0.41   -0.90   -1.51   -2.19   -2.91   -3.59   -4.19   -4.58   -4.69   -4.45   -3.81   -2.83   -1.54    0.07    2.07    4.65    7.92
+   310.0    0.00   -0.10   -0.42   -0.89   -1.50   -2.19   -2.90   -3.59   -4.18   -4.59   -4.72   -4.47   -3.85   -2.84   -1.54    0.08    2.08    4.66    7.92
+   315.0    0.00   -0.10   -0.41   -0.90   -1.50   -2.19   -2.89   -3.58   -4.19   -4.60   -4.73   -4.49   -3.86   -2.86   -1.55    0.07    2.08    4.66    7.94
+   320.0    0.00   -0.10   -0.41   -0.90   -1.50   -2.18   -2.89   -3.58   -4.19   -4.61   -4.74   -4.50   -3.86   -2.86   -1.55    0.07    2.07    4.66    7.99
+   325.0    0.00   -0.10   -0.41   -0.90   -1.50   -2.18   -2.89   -3.59   -4.20   -4.62   -4.75   -4.51   -3.86   -2.86   -1.55    0.05    2.06    4.66    8.06
+   330.0    0.00   -0.10   -0.41   -0.90   -1.50   -2.18   -2.90   -3.59   -4.21   -4.63   -4.75   -4.50   -3.85   -2.84   -1.54    0.05    2.04    4.67    8.13
+   335.0    0.00   -0.10   -0.41   -0.90   -1.50   -2.18   -2.89   -3.59   -4.22   -4.64   -4.76   -4.49   -3.84   -2.82   -1.53    0.04    2.02    4.66    8.20
+   340.0    0.00   -0.10   -0.42   -0.90   -1.50   -2.18   -2.89   -3.60   -4.21   -4.64   -4.76   -4.48   -3.81   -2.80   -1.51    0.05    2.02    4.66    8.27
+   345.0    0.00   -0.11   -0.42   -0.90   -1.50   -2.17   -2.89   -3.60   -4.22   -4.65   -4.76   -4.47   -3.79   -2.78   -1.49    0.06    2.01    4.66    8.29
+   350.0    0.00   -0.11   -0.42   -0.90   -1.50   -2.17   -2.88   -3.59   -4.23   -4.65   -4.76   -4.47   -3.78   -2.75   -1.47    0.07    2.02    4.65    8.27
+   355.0    0.00   -0.11   -0.42   -0.90   -1.49   -2.16   -2.87   -3.58   -4.22   -4.64   -4.75   -4.46   -3.78   -2.74   -1.44    0.10    2.02    4.63    8.22
+   360.0    0.00   -0.11   -0.42   -0.90   -1.49   -2.15   -2.87   -3.58   -4.21   -4.63   -4.75   -4.46   -3.77   -2.73   -1.42    0.12    2.04    4.61    8.12
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TRM59900.00     SCIS                                        TYPE / SERIAL NO    
+ROBOT               IfE, Univ. Hannover      5    20-JUN-11 METH / BY / # / DATE 
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     4                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+# Number of Calibrated Antennas:             005            COMMENT             
+# Number of Individual Calibrations (GPS):   030            COMMENT             
+# Number of Individual Calibrations (GLO):   030            COMMENT             
+# GLONASS PCV                                               COMMENT             
+#  derived directly from GLONASS observables                COMMENT             
+#  for frequency channel number k=0                         COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.82     -0.35    111.19                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.18   -0.71   -1.51   -2.50   -3.57   -4.60   -5.47   -6.10   -6.41   -6.34   -5.89   -5.03   -3.75   -2.00    0.33    3.34    7.07   11.36
+     0.0    0.00   -0.21   -0.74   -1.54   -2.53   -3.62   -4.71   -5.66   -6.37   -6.71   -6.64   -6.14   -5.24   -3.95   -2.21    0.08    3.07    6.79   11.02
+     5.0    0.00   -0.20   -0.73   -1.53   -2.51   -3.60   -4.68   -5.64   -6.34   -6.69   -6.61   -6.11   -5.19   -3.88   -2.13    0.17    3.14    6.85   11.09
+    10.0    0.00   -0.20   -0.72   -1.51   -2.49   -3.57   -4.65   -5.60   -6.30   -6.65   -6.58   -6.07   -5.15   -3.82   -2.05    0.26    3.22    6.91   11.17
+    15.0    0.00   -0.20   -0.71   -1.50   -2.47   -3.54   -4.61   -5.56   -6.26   -6.61   -6.55   -6.05   -5.12   -3.78   -1.98    0.34    3.31    6.98   11.26
+    20.0    0.00   -0.19   -0.71   -1.48   -2.45   -3.51   -4.57   -5.51   -6.21   -6.57   -6.52   -6.04   -5.11   -3.75   -1.94    0.41    3.39    7.07   11.36
+    25.0    0.00   -0.19   -0.70   -1.47   -2.43   -3.48   -4.53   -5.45   -6.15   -6.52   -6.49   -6.02   -5.11   -3.75   -1.91    0.47    3.47    7.16   11.48
+    30.0    0.00   -0.18   -0.69   -1.46   -2.41   -3.45   -4.48   -5.40   -6.09   -6.46   -6.45   -6.01   -5.12   -3.76   -1.90    0.51    3.54    7.25   11.59
+    35.0    0.00   -0.18   -0.68   -1.45   -2.39   -3.43   -4.44   -5.34   -6.02   -6.40   -6.41   -6.00   -5.13   -3.78   -1.90    0.54    3.60    7.34   11.71
+    40.0    0.00   -0.17   -0.67   -1.44   -2.38   -3.40   -4.40   -5.28   -5.95   -6.34   -6.36   -5.97   -5.13   -3.79   -1.91    0.55    3.65    7.41   11.81
+    45.0    0.00   -0.17   -0.67   -1.43   -2.37   -3.39   -4.38   -5.24   -5.89   -6.27   -6.30   -5.94   -5.12   -3.79   -1.92    0.56    3.68    7.47   11.89
+    50.0    0.00   -0.17   -0.66   -1.43   -2.37   -3.38   -4.35   -5.20   -5.84   -6.21   -6.24   -5.89   -5.09   -3.78   -1.92    0.56    3.70    7.51   11.95
+    55.0    0.00   -0.16   -0.66   -1.42   -2.37   -3.38   -4.35   -5.18   -5.80   -6.15   -6.17   -5.82   -5.03   -3.75   -1.90    0.57    3.71    7.53   11.98
+    60.0    0.00   -0.16   -0.66   -1.42   -2.37   -3.38   -4.35   -5.17   -5.77   -6.10   -6.11   -5.75   -4.97   -3.70   -1.87    0.58    3.71    7.54   11.99
+    65.0    0.00   -0.16   -0.65   -1.43   -2.38   -3.39   -4.36   -5.17   -5.76   -6.07   -6.05   -5.68   -4.89   -3.62   -1.82    0.61    3.72    7.54   11.99
+    70.0    0.00   -0.15   -0.65   -1.43   -2.39   -3.41   -4.38   -5.19   -5.77   -6.05   -6.01   -5.60   -4.80   -3.54   -1.76    0.64    3.73    7.53   11.97
+    75.0    0.00   -0.15   -0.65   -1.43   -2.40   -3.43   -4.41   -5.22   -5.78   -6.05   -5.98   -5.54   -4.72   -3.46   -1.70    0.67    3.74    7.53   11.95
+    80.0    0.00   -0.15   -0.65   -1.44   -2.41   -3.46   -4.44   -5.25   -5.81   -6.06   -5.96   -5.50   -4.66   -3.39   -1.64    0.71    3.75    7.54   11.93
+    85.0    0.00   -0.15   -0.65   -1.44   -2.43   -3.48   -4.47   -5.29   -5.85   -6.08   -5.97   -5.48   -4.62   -3.35   -1.60    0.74    3.77    7.54   11.93
+    90.0    0.00   -0.15   -0.65   -1.45   -2.44   -3.50   -4.50   -5.33   -5.89   -6.12   -5.99   -5.49   -4.61   -3.33   -1.58    0.74    3.77    7.55   11.93
+    95.0    0.00   -0.15   -0.65   -1.45   -2.45   -3.52   -4.53   -5.36   -5.93   -6.16   -6.02   -5.51   -4.63   -3.34   -1.60    0.73    3.76    7.56   11.94
+   100.0    0.00   -0.14   -0.65   -1.46   -2.46   -3.53   -4.55   -5.39   -5.97   -6.20   -6.07   -5.56   -4.68   -3.39   -1.65    0.68    3.73    7.55   11.95
+   105.0    0.00   -0.14   -0.65   -1.46   -2.47   -3.55   -4.57   -5.42   -6.00   -6.25   -6.13   -5.63   -4.75   -3.47   -1.73    0.60    3.67    7.52   11.94
+   110.0    0.00   -0.14   -0.65   -1.46   -2.47   -3.56   -4.58   -5.44   -6.03   -6.29   -6.19   -5.71   -4.84   -3.58   -1.84    0.50    3.58    7.46   11.91
+   115.0    0.00   -0.14   -0.65   -1.46   -2.48   -3.56   -4.60   -5.46   -6.06   -6.33   -6.25   -5.79   -4.95   -3.70   -1.97    0.36    3.46    7.37   11.86
+   120.0    0.00   -0.14   -0.65   -1.47   -2.48   -3.57   -4.61   -5.47   -6.08   -6.37   -6.30   -5.87   -5.05   -3.83   -2.12    0.21    3.32    7.25   11.77
+   125.0    0.00   -0.14   -0.65   -1.47   -2.49   -3.58   -4.62   -5.49   -6.10   -6.40   -6.35   -5.94   -5.14   -3.95   -2.26    0.06    3.16    7.10   11.65
+   130.0    0.00   -0.14   -0.65   -1.47   -2.49   -3.59   -4.63   -5.50   -6.12   -6.43   -6.40   -6.00   -5.23   -4.05   -2.39   -0.09    3.00    6.94   11.51
+   135.0    0.00   -0.14   -0.65   -1.47   -2.50   -3.60   -4.64   -5.52   -6.15   -6.46   -6.43   -6.05   -5.30   -4.14   -2.49   -0.21    2.86    6.79   11.36
+   140.0    0.00   -0.14   -0.65   -1.48   -2.50   -3.61   -4.66   -5.54   -6.17   -6.49   -6.47   -6.09   -5.35   -4.21   -2.57   -0.31    2.74    6.65   11.21
+   145.0    0.00   -0.14   -0.65   -1.48   -2.51   -3.62   -4.67   -5.56   -6.19   -6.51   -6.49   -6.12   -5.39   -4.25   -2.62   -0.37    2.66    6.54   11.08
+   150.0    0.00   -0.14   -0.66   -1.48   -2.51   -3.63   -4.69   -5.58   -6.21   -6.54   -6.52   -6.15   -5.41   -4.27   -2.64   -0.39    2.63    6.47   10.98
+   155.0    0.00   -0.14   -0.66   -1.48   -2.52   -3.64   -4.70   -5.60   -6.24   -6.56   -6.54   -6.17   -5.43   -4.27   -2.63   -0.37    2.64    6.46   10.93
+   160.0    0.00   -0.15   -0.66   -1.48   -2.52   -3.64   -4.71   -5.61   -6.25   -6.58   -6.56   -6.19   -5.44   -4.27   -2.60   -0.32    2.70    6.49   10.92
+   165.0    0.00   -0.15   -0.66   -1.48   -2.52   -3.65   -4.72   -5.62   -6.26   -6.59   -6.58   -6.20   -5.44   -4.25   -2.55   -0.24    2.79    6.56   10.95
+   170.0    0.00   -0.15   -0.66   -1.48   -2.52   -3.65   -4.72   -5.62   -6.27   -6.60   -6.59   -6.21   -5.44   -4.22   -2.48   -0.14    2.91    6.66   11.01
+   175.0    0.00   -0.15   -0.66   -1.48   -2.52   -3.64   -4.71   -5.62   -6.27   -6.60   -6.60   -6.22   -5.43   -4.19   -2.42   -0.03    3.03    6.78   11.09
+   180.0    0.00   -0.15   -0.66   -1.48   -2.52   -3.64   -4.70   -5.61   -6.26   -6.60   -6.59   -6.21   -5.41   -4.15   -2.34    0.07    3.15    6.89   11.16
+   185.0    0.00   -0.15   -0.67   -1.48   -2.51   -3.63   -4.69   -5.59   -6.24   -6.58   -6.57   -6.19   -5.38   -4.10   -2.27    0.16    3.25    6.98   11.23
+   190.0    0.00   -0.16   -0.67   -1.48   -2.51   -3.61   -4.68   -5.57   -6.22   -6.56   -6.55   -6.15   -5.34   -4.04   -2.20    0.24    3.32    7.03   11.27
+   195.0    0.00   -0.16   -0.67   -1.48   -2.50   -3.60   -4.66   -5.55   -6.20   -6.53   -6.51   -6.11   -5.28   -3.97   -2.13    0.31    3.37    7.06   11.27
+   200.0    0.00   -0.16   -0.67   -1.48   -2.50   -3.59   -4.64   -5.53   -6.17   -6.50   -6.46   -6.04   -5.20   -3.89   -2.06    0.35    3.39    7.05   11.25
+   205.0    0.00   -0.17   -0.68   -1.48   -2.49   -3.58   -4.63   -5.52   -6.15   -6.46   -6.41   -5.97   -5.11   -3.80   -1.99    0.39    3.39    7.01   11.19
+   210.0    0.00   -0.17   -0.68   -1.49   -2.49   -3.57   -4.62   -5.50   -6.12   -6.42   -6.35   -5.89   -5.02   -3.71   -1.92    0.42    3.37    6.96   11.13
+   215.0    0.00   -0.17   -0.69   -1.49   -2.49   -3.57   -4.61   -5.48   -6.10   -6.39   -6.30   -5.81   -4.93   -3.62   -1.85    0.45    3.36    6.92   11.07
+   220.0    0.00   -0.18   -0.69   -1.49   -2.49   -3.56   -4.60   -5.47   -6.08   -6.35   -6.24   -5.74   -4.84   -3.53   -1.78    0.49    3.36    6.89   11.04
+   225.0    0.00   -0.18   -0.70   -1.50   -2.49   -3.56   -4.59   -5.46   -6.06   -6.32   -6.19   -5.67   -4.76   -3.45   -1.72    0.52    3.38    6.90   11.04
+   230.0    0.00   -0.19   -0.71   -1.51   -2.49   -3.56   -4.58   -5.44   -6.04   -6.28   -6.14   -5.61   -4.69   -3.39   -1.67    0.57    3.42    6.94   11.08
+   235.0    0.00   -0.19   -0.71   -1.51   -2.50   -3.56   -4.57   -5.43   -6.01   -6.25   -6.11   -5.56   -4.64   -3.34   -1.62    0.62    3.48    7.03   11.17
+   240.0    0.00   -0.20   -0.72   -1.52   -2.50   -3.55   -4.56   -5.41   -5.99   -6.23   -6.07   -5.53   -4.61   -3.31   -1.58    0.67    3.56    7.14   11.31
+   245.0    0.00   -0.20   -0.73   -1.53   -2.51   -3.55   -4.55   -5.39   -5.97   -6.20   -6.05   -5.51   -4.59   -3.29   -1.55    0.72    3.65    7.28   11.46
+   250.0    0.00   -0.20   -0.74   -1.54   -2.51   -3.55   -4.54   -5.37   -5.94   -6.18   -6.03   -5.50   -4.59   -3.29   -1.54    0.77    3.74    7.42   11.63
+   255.0    0.00   -0.21   -0.75   -1.55   -2.52   -3.55   -4.53   -5.36   -5.92   -6.16   -6.02   -5.50   -4.59   -3.29   -1.53    0.81    3.82    7.54   11.78
+   260.0    0.00   -0.21   -0.76   -1.56   -2.53   -3.55   -4.53   -5.34   -5.91   -6.15   -6.01   -5.50   -4.60   -3.30   -1.52    0.83    3.87    7.63   11.89
+   265.0    0.00   -0.22   -0.76   -1.57   -2.53   -3.56   -4.52   -5.34   -5.90   -6.14   -6.02   -5.51   -4.61   -3.31   -1.53    0.83    3.89    7.67   11.95
+   270.0    0.00   -0.22   -0.77   -1.58   -2.54   -3.56   -4.53   -5.34   -5.90   -6.15   -6.03   -5.52   -4.63   -3.32   -1.54    0.82    3.87    7.65   11.94
+   275.0    0.00   -0.22   -0.78   -1.59   -2.55   -3.57   -4.53   -5.34   -5.91   -6.17   -6.05   -5.54   -4.64   -3.33   -1.56    0.78    3.82    7.59   11.86
+   280.0    0.00   -0.23   -0.78   -1.59   -2.56   -3.58   -4.55   -5.36   -5.94   -6.20   -6.08   -5.57   -4.66   -3.35   -1.59    0.73    3.73    7.47   11.73
+   285.0    0.00   -0.23   -0.79   -1.60   -2.57   -3.59   -4.56   -5.39   -5.97   -6.24   -6.13   -5.61   -4.70   -3.38   -1.63    0.66    3.62    7.32   11.55
+   290.0    0.00   -0.23   -0.79   -1.61   -2.58   -3.61   -4.59   -5.42   -6.02   -6.29   -6.18   -5.66   -4.74   -3.42   -1.68    0.58    3.50    7.14   11.34
+   295.0    0.00   -0.23   -0.80   -1.62   -2.59   -3.62   -4.61   -5.46   -6.07   -6.36   -6.25   -5.72   -4.79   -3.48   -1.75    0.48    3.36    6.97   11.12
+   300.0    0.00   -0.23   -0.80   -1.62   -2.60   -3.64   -4.64   -5.50   -6.13   -6.42   -6.32   -5.80   -4.86   -3.55   -1.83    0.38    3.24    6.81   10.92
+   305.0    0.00   -0.23   -0.80   -1.62   -2.60   -3.65   -4.66   -5.54   -6.19   -6.49   -6.40   -5.88   -4.95   -3.64   -1.92    0.28    3.12    6.68   10.75
+   310.0    0.00   -0.23   -0.80   -1.62   -2.61   -3.66   -4.69   -5.58   -6.24   -6.56   -6.48   -5.96   -5.04   -3.73   -2.02    0.18    3.03    6.58   10.63
+   315.0    0.00   -0.23   -0.80   -1.62   -2.61   -3.67   -4.71   -5.62   -6.29   -6.62   -6.55   -6.05   -5.13   -3.83   -2.13    0.09    2.95    6.52   10.56
+   320.0    0.00   -0.23   -0.80   -1.62   -2.61   -3.68   -4.73   -5.65   -6.33   -6.68   -6.61   -6.12   -5.22   -3.93   -2.22    0.01    2.90    6.50   10.53
+   325.0    0.00   -0.23   -0.80   -1.62   -2.61   -3.69   -4.74   -5.67   -6.36   -6.72   -6.67   -6.19   -5.30   -4.02   -2.31   -0.06    2.87    6.50   10.55
+   330.0    0.00   -0.23   -0.79   -1.61   -2.61   -3.69   -4.75   -5.69   -6.39   -6.75   -6.70   -6.23   -5.36   -4.09   -2.38   -0.11    2.86    6.53   10.59
+   335.0    0.00   -0.23   -0.79   -1.60   -2.60   -3.68   -4.75   -5.70   -6.40   -6.76   -6.72   -6.26   -5.39   -4.13   -2.41   -0.13    2.86    6.57   10.66
+   340.0    0.00   -0.22   -0.78   -1.59   -2.59   -3.68   -4.75   -5.70   -6.41   -6.77   -6.72   -6.26   -5.40   -4.14   -2.43   -0.13    2.88    6.61   10.73
+   345.0    0.00   -0.22   -0.77   -1.58   -2.58   -3.67   -4.75   -5.70   -6.41   -6.77   -6.72   -6.25   -5.38   -4.12   -2.41   -0.11    2.91    6.66   10.81
+   350.0    0.00   -0.22   -0.76   -1.57   -2.57   -3.66   -4.74   -5.69   -6.40   -6.75   -6.70   -6.22   -5.34   -4.08   -2.36   -0.06    2.95    6.70   10.88
+   355.0    0.00   -0.21   -0.75   -1.56   -2.55   -3.64   -4.73   -5.68   -6.39   -6.74   -6.67   -6.18   -5.29   -4.02   -2.29    0.00    3.01    6.75   10.95
+   360.0    0.00   -0.21   -0.74   -1.54   -2.53   -3.62   -4.71   -5.66   -6.37   -6.71   -6.64   -6.14   -5.24   -3.95   -2.21    0.08    3.07    6.79   11.02
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+      0.38      0.48    124.76                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.12   -0.46   -0.98   -1.63   -2.35   -3.09   -3.79   -4.36   -4.70   -4.72   -4.36   -3.63   -2.56   -1.23    0.38    2.36    4.89    8.06
+     0.0    0.00   -0.12   -0.46   -0.97   -1.60   -2.30   -3.04   -3.75   -4.36   -4.75   -4.81   -4.48   -3.75   -2.68   -1.34    0.26    2.22    4.80    8.29
+     5.0    0.00   -0.13   -0.46   -0.97   -1.59   -2.30   -3.03   -3.74   -4.34   -4.73   -4.80   -4.47   -3.74   -2.66   -1.32    0.28    2.23    4.77    8.18
+    10.0    0.00   -0.13   -0.46   -0.97   -1.59   -2.29   -3.02   -3.73   -4.33   -4.71   -4.78   -4.46   -3.74   -2.66   -1.31    0.30    2.25    4.76    8.07
+    15.0    0.00   -0.13   -0.46   -0.97   -1.59   -2.29   -3.02   -3.71   -4.31   -4.69   -4.76   -4.45   -3.74   -2.66   -1.30    0.32    2.27    4.74    7.94
+    20.0    0.00   -0.13   -0.47   -0.97   -1.60   -2.29   -3.01   -3.70   -4.28   -4.67   -4.74   -4.44   -3.74   -2.67   -1.31    0.32    2.29    4.72    7.82
+    25.0    0.00   -0.13   -0.47   -0.97   -1.60   -2.29   -3.00   -3.68   -4.26   -4.64   -4.72   -4.42   -3.74   -2.69   -1.33    0.32    2.29    4.70    7.69
+    30.0    0.00   -0.13   -0.47   -0.97   -1.60   -2.29   -3.00   -3.67   -4.24   -4.61   -4.69   -4.40   -3.73   -2.69   -1.34    0.30    2.27    4.67    7.59
+    35.0    0.00   -0.13   -0.47   -0.97   -1.60   -2.29   -2.99   -3.66   -4.22   -4.58   -4.65   -4.37   -3.71   -2.69   -1.36    0.27    2.25    4.64    7.50
+    40.0    0.00   -0.13   -0.47   -0.97   -1.60   -2.29   -2.99   -3.65   -4.20   -4.55   -4.62   -4.33   -3.68   -2.68   -1.37    0.24    2.21    4.60    7.43
+    45.0    0.00   -0.13   -0.47   -0.97   -1.60   -2.29   -2.99   -3.65   -4.19   -4.53   -4.58   -4.29   -3.64   -2.66   -1.38    0.21    2.16    4.56    7.39
+    50.0    0.00   -0.13   -0.47   -0.97   -1.60   -2.29   -2.99   -3.65   -4.19   -4.52   -4.55   -4.23   -3.58   -2.61   -1.37    0.19    2.12    4.53    7.39
+    55.0    0.00   -0.13   -0.47   -0.97   -1.60   -2.29   -3.00   -3.66   -4.20   -4.51   -4.52   -4.18   -3.52   -2.56   -1.34    0.17    2.09    4.51    7.42
+    60.0    0.00   -0.13   -0.47   -0.97   -1.60   -2.29   -3.01   -3.67   -4.21   -4.51   -4.49   -4.13   -3.45   -2.50   -1.30    0.18    2.07    4.51    7.48
+    65.0    0.00   -0.13   -0.47   -0.97   -1.60   -2.30   -3.02   -3.69   -4.22   -4.51   -4.48   -4.09   -3.39   -2.43   -1.25    0.19    2.07    4.53    7.56
+    70.0    0.00   -0.13   -0.47   -0.97   -1.60   -2.30   -3.03   -3.71   -4.24   -4.53   -4.48   -4.06   -3.33   -2.36   -1.20    0.23    2.09    4.58    7.66
+    75.0    0.00   -0.13   -0.47   -0.97   -1.60   -2.31   -3.04   -3.73   -4.27   -4.55   -4.48   -4.05   -3.29   -2.31   -1.14    0.28    2.14    4.65    7.78
+    80.0    0.00   -0.13   -0.47   -0.97   -1.60   -2.31   -3.05   -3.75   -4.30   -4.58   -4.50   -4.05   -3.27   -2.27   -1.10    0.33    2.21    4.75    7.90
+    85.0    0.00   -0.13   -0.47   -0.97   -1.61   -2.32   -3.07   -3.77   -4.32   -4.60   -4.53   -4.06   -3.27   -2.26   -1.06    0.39    2.30    4.86    8.01
+    90.0    0.00   -0.13   -0.47   -0.97   -1.61   -2.33   -3.08   -3.79   -4.35   -4.63   -4.56   -4.09   -3.29   -2.26   -1.04    0.44    2.38    4.97    8.10
+    95.0    0.00   -0.13   -0.47   -0.98   -1.61   -2.34   -3.09   -3.80   -4.37   -4.66   -4.59   -4.13   -3.33   -2.29   -1.04    0.48    2.46    5.07    8.17
+   100.0    0.00   -0.12   -0.47   -0.98   -1.62   -2.35   -3.10   -3.82   -4.38   -4.68   -4.62   -4.17   -3.38   -2.33   -1.06    0.50    2.53    5.15    8.21
+   105.0    0.00   -0.12   -0.47   -0.98   -1.63   -2.36   -3.12   -3.83   -4.40   -4.70   -4.65   -4.21   -3.43   -2.38   -1.10    0.50    2.57    5.20    8.22
+   110.0    0.00   -0.12   -0.47   -0.99   -1.64   -2.37   -3.13   -3.84   -4.41   -4.71   -4.67   -4.25   -3.49   -2.44   -1.14    0.48    2.58    5.22    8.18
+   115.0    0.00   -0.12   -0.47   -0.99   -1.65   -2.38   -3.14   -3.85   -4.42   -4.72   -4.69   -4.28   -3.54   -2.50   -1.19    0.45    2.56    5.19    8.12
+   120.0    0.00   -0.12   -0.47   -0.99   -1.65   -2.40   -3.16   -3.86   -4.42   -4.73   -4.70   -4.31   -3.57   -2.55   -1.24    0.40    2.51    5.13    8.02
+   125.0    0.00   -0.12   -0.47   -1.00   -1.66   -2.41   -3.17   -3.87   -4.43   -4.73   -4.70   -4.32   -3.60   -2.58   -1.28    0.36    2.45    5.04    7.90
+   130.0    0.00   -0.12   -0.47   -1.00   -1.67   -2.42   -3.18   -3.88   -4.43   -4.73   -4.70   -4.32   -3.61   -2.60   -1.31    0.31    2.37    4.92    7.77
+   135.0    0.00   -0.12   -0.47   -1.00   -1.68   -2.43   -3.19   -3.89   -4.43   -4.73   -4.70   -4.32   -3.61   -2.61   -1.33    0.27    2.29    4.79    7.63
+   140.0    0.00   -0.12   -0.46   -1.00   -1.68   -2.43   -3.20   -3.89   -4.43   -4.73   -4.70   -4.32   -3.60   -2.60   -1.32    0.25    2.22    4.67    7.51
+   145.0    0.00   -0.12   -0.46   -1.00   -1.68   -2.43   -3.20   -3.89   -4.44   -4.73   -4.70   -4.32   -3.59   -2.58   -1.30    0.25    2.17    4.56    7.42
+   150.0    0.00   -0.12   -0.46   -1.00   -1.68   -2.43   -3.20   -3.89   -4.44   -4.73   -4.71   -4.32   -3.59   -2.55   -1.27    0.27    2.14    4.48    7.35
+   155.0    0.00   -0.12   -0.46   -1.00   -1.67   -2.43   -3.19   -3.89   -4.44   -4.74   -4.72   -4.33   -3.58   -2.53   -1.23    0.30    2.14    4.44    7.32
+   160.0    0.00   -0.11   -0.46   -0.99   -1.67   -2.42   -3.18   -3.88   -4.43   -4.75   -4.74   -4.35   -3.59   -2.51   -1.19    0.35    2.17    4.43    7.32
+   165.0    0.00   -0.11   -0.46   -0.99   -1.66   -2.41   -3.17   -3.87   -4.43   -4.76   -4.76   -4.37   -3.60   -2.50   -1.15    0.41    2.21    4.45    7.36
+   170.0    0.00   -0.11   -0.45   -0.98   -1.65   -2.40   -3.15   -3.86   -4.43   -4.77   -4.79   -4.41   -3.62   -2.49   -1.11    0.47    2.28    4.51    7.43
+   175.0    0.00   -0.11   -0.45   -0.98   -1.64   -2.38   -3.14   -3.85   -4.43   -4.79   -4.81   -4.44   -3.65   -2.50   -1.08    0.52    2.36    4.59    7.52
+   180.0    0.00   -0.11   -0.45   -0.98   -1.64   -2.38   -3.13   -3.85   -4.43   -4.80   -4.84   -4.47   -3.68   -2.51   -1.07    0.57    2.43    4.68    7.61
+   185.0    0.00   -0.11   -0.45   -0.97   -1.63   -2.37   -3.13   -3.84   -4.44   -4.82   -4.86   -4.50   -3.71   -2.53   -1.06    0.61    2.51    4.78    7.70
+   190.0    0.00   -0.11   -0.44   -0.97   -1.63   -2.37   -3.13   -3.85   -4.45   -4.83   -4.88   -4.53   -3.74   -2.55   -1.07    0.64    2.57    4.86    7.77
+   195.0    0.00   -0.11   -0.44   -0.97   -1.63   -2.37   -3.14   -3.86   -4.46   -4.84   -4.90   -4.54   -3.76   -2.57   -1.07    0.65    2.62    4.93    7.82
+   200.0    0.00   -0.11   -0.44   -0.97   -1.64   -2.38   -3.15   -3.87   -4.47   -4.85   -4.90   -4.55   -3.77   -2.58   -1.09    0.66    2.65    4.99    7.84
+   205.0    0.00   -0.11   -0.44   -0.97   -1.64   -2.39   -3.16   -3.89   -4.48   -4.86   -4.90   -4.55   -3.77   -2.59   -1.10    0.66    2.67    5.02    7.84
+   210.0    0.00   -0.11   -0.44   -0.97   -1.65   -2.40   -3.18   -3.90   -4.49   -4.86   -4.90   -4.54   -3.76   -2.60   -1.11    0.65    2.67    5.03    7.82
+   215.0    0.00   -0.11   -0.44   -0.98   -1.65   -2.41   -3.19   -3.91   -4.50   -4.86   -4.89   -4.52   -3.75   -2.59   -1.12    0.63    2.66    5.03    7.78
+   220.0    0.00   -0.11   -0.45   -0.98   -1.66   -2.42   -3.20   -3.92   -4.50   -4.85   -4.87   -4.50   -3.73   -2.58   -1.12    0.62    2.64    5.01    7.74
+   225.0    0.00   -0.11   -0.45   -0.98   -1.66   -2.43   -3.20   -3.92   -4.50   -4.84   -4.85   -4.48   -3.70   -2.57   -1.12    0.60    2.62    4.99    7.72
+   230.0    0.00   -0.11   -0.45   -0.99   -1.67   -2.43   -3.20   -3.92   -4.48   -4.82   -4.82   -4.45   -3.68   -2.55   -1.12    0.58    2.60    4.98    7.72
+   235.0    0.00   -0.11   -0.45   -0.99   -1.67   -2.43   -3.20   -3.90   -4.46   -4.79   -4.79   -4.42   -3.65   -2.54   -1.12    0.56    2.57    4.96    7.75
+   240.0    0.00   -0.11   -0.45   -0.99   -1.67   -2.42   -3.18   -3.88   -4.44   -4.76   -4.76   -4.39   -3.63   -2.52   -1.13    0.55    2.54    4.96    7.82
+   245.0    0.00   -0.11   -0.45   -0.99   -1.66   -2.41   -3.16   -3.86   -4.41   -4.73   -4.73   -4.36   -3.61   -2.51   -1.13    0.53    2.51    4.96    7.93
+   250.0    0.00   -0.11   -0.45   -0.99   -1.66   -2.40   -3.14   -3.82   -4.37   -4.70   -4.70   -4.34   -3.59   -2.50   -1.13    0.50    2.49    4.98    8.07
+   255.0    0.00   -0.11   -0.45   -0.99   -1.65   -2.38   -3.12   -3.79   -4.34   -4.66   -4.68   -4.32   -3.57   -2.49   -1.14    0.48    2.46    5.00    8.24
+   260.0    0.00   -0.11   -0.45   -0.99   -1.65   -2.37   -3.10   -3.76   -4.31   -4.64   -4.65   -4.30   -3.56   -2.49   -1.14    0.46    2.44    5.03    8.42
+   265.0    0.00   -0.11   -0.45   -0.98   -1.64   -2.36   -3.07   -3.74   -4.28   -4.61   -4.64   -4.29   -3.55   -2.48   -1.15    0.43    2.42    5.07    8.61
+   270.0    0.00   -0.11   -0.45   -0.98   -1.63   -2.34   -3.06   -3.72   -4.26   -4.60   -4.63   -4.28   -3.55   -2.48   -1.17    0.41    2.41    5.10    8.78
+   275.0    0.00   -0.11   -0.46   -0.98   -1.63   -2.33   -3.04   -3.71   -4.25   -4.59   -4.62   -4.28   -3.55   -2.49   -1.18    0.40    2.40    5.14    8.93
+   280.0    0.00   -0.11   -0.46   -0.98   -1.62   -2.33   -3.04   -3.70   -4.25   -4.59   -4.63   -4.29   -3.56   -2.50   -1.19    0.38    2.39    5.17    9.05
+   285.0    0.00   -0.11   -0.46   -0.98   -1.62   -2.32   -3.03   -3.70   -4.25   -4.60   -4.64   -4.30   -3.58   -2.52   -1.21    0.37    2.39    5.20    9.13
+   290.0    0.00   -0.12   -0.46   -0.98   -1.62   -2.32   -3.03   -3.71   -4.27   -4.62   -4.66   -4.33   -3.60   -2.55   -1.23    0.35    2.40    5.23    9.17
+   295.0    0.00   -0.12   -0.46   -0.98   -1.62   -2.32   -3.04   -3.72   -4.28   -4.64   -4.69   -4.36   -3.63   -2.58   -1.26    0.34    2.40    5.24    9.18
+   300.0    0.00   -0.12   -0.46   -0.98   -1.62   -2.32   -3.04   -3.73   -4.30   -4.66   -4.72   -4.39   -3.67   -2.62   -1.29    0.33    2.41    5.25    9.15
+   305.0    0.00   -0.12   -0.46   -0.97   -1.61   -2.32   -3.05   -3.74   -4.32   -4.69   -4.75   -4.43   -3.71   -2.66   -1.32    0.32    2.41    5.24    9.09
+   310.0    0.00   -0.12   -0.46   -0.97   -1.61   -2.32   -3.05   -3.75   -4.34   -4.71   -4.78   -4.46   -3.75   -2.69   -1.35    0.30    2.40    5.23    9.03
+   315.0    0.00   -0.12   -0.46   -0.97   -1.61   -2.32   -3.06   -3.76   -4.35   -4.74   -4.81   -4.49   -3.79   -2.73   -1.38    0.28    2.39    5.20    8.95
+   320.0    0.00   -0.12   -0.46   -0.97   -1.61   -2.32   -3.06   -3.77   -4.36   -4.75   -4.83   -4.52   -3.81   -2.76   -1.41    0.26    2.37    5.16    8.87
+   325.0    0.00   -0.12   -0.46   -0.97   -1.61   -2.32   -3.06   -3.77   -4.37   -4.77   -4.84   -4.54   -3.83   -2.78   -1.43    0.24    2.34    5.12    8.80
+   330.0    0.00   -0.12   -0.46   -0.97   -1.60   -2.32   -3.06   -3.77   -4.38   -4.77   -4.85   -4.54   -3.84   -2.79   -1.44    0.22    2.30    5.07    8.73
+   335.0    0.00   -0.12   -0.46   -0.97   -1.60   -2.31   -3.06   -3.77   -4.38   -4.78   -4.86   -4.54   -3.84   -2.78   -1.44    0.20    2.27    5.01    8.66
+   340.0    0.00   -0.12   -0.46   -0.97   -1.60   -2.31   -3.05   -3.77   -4.38   -4.78   -4.85   -4.54   -3.82   -2.77   -1.43    0.20    2.24    4.96    8.60
+   345.0    0.00   -0.12   -0.46   -0.97   -1.60   -2.31   -3.05   -3.77   -4.38   -4.78   -4.85   -4.52   -3.81   -2.75   -1.41    0.20    2.22    4.91    8.53
+   350.0    0.00   -0.12   -0.46   -0.97   -1.60   -2.30   -3.05   -3.77   -4.38   -4.77   -4.84   -4.51   -3.79   -2.72   -1.39    0.21    2.21    4.86    8.46
+   355.0    0.00   -0.12   -0.46   -0.97   -1.60   -2.30   -3.04   -3.76   -4.37   -4.76   -4.83   -4.50   -3.77   -2.70   -1.36    0.23    2.21    4.82    8.38
+   360.0    0.00   -0.12   -0.46   -0.97   -1.60   -2.30   -3.04   -3.75   -4.36   -4.75   -4.81   -4.48   -3.75   -2.68   -1.34    0.26    2.22    4.80    8.29
+   G02                                                      END OF FREQUENCY    
+   R01                                                      START OF FREQUENCY  
+      0.82     -0.35    111.19                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.19   -0.74   -1.54   -2.50   -3.50   -4.45   -5.27   -5.88   -6.21   -6.20   -5.77   -4.93   -3.66   -1.95    0.27    3.14    6.82   11.32
+     0.0    0.00   -0.22   -0.76   -1.58   -2.55   -3.56   -4.55   -5.42   -6.09   -6.47   -6.46   -6.01   -5.12   -3.79   -2.09    0.08    2.85    6.44   10.92
+     5.0    0.00   -0.21   -0.77   -1.58   -2.54   -3.55   -4.53   -5.40   -6.08   -6.46   -6.46   -6.00   -5.08   -3.75   -2.02    0.15    2.91    6.49   10.98
+    10.0    0.00   -0.21   -0.77   -1.58   -2.53   -3.55   -4.52   -5.38   -6.06   -6.44   -6.45   -6.00   -5.08   -3.72   -1.96    0.22    2.98    6.54   11.04
+    15.0    0.00   -0.22   -0.77   -1.58   -2.54   -3.53   -4.50   -5.36   -6.02   -6.42   -6.43   -6.00   -5.08   -3.72   -1.94    0.27    3.04    6.60   11.09
+    20.0    0.00   -0.22   -0.77   -1.58   -2.53   -3.52   -4.48   -5.33   -6.00   -6.39   -6.42   -6.00   -5.11   -3.74   -1.95    0.29    3.10    6.65   11.13
+    25.0    0.00   -0.21   -0.78   -1.58   -2.53   -3.52   -4.46   -5.30   -5.95   -6.36   -6.41   -6.01   -5.14   -3.78   -1.97    0.30    3.13    6.69   11.17
+    30.0    0.00   -0.22   -0.77   -1.58   -2.53   -3.51   -4.45   -5.27   -5.92   -6.32   -6.38   -6.01   -5.16   -3.82   -2.02    0.28    3.14    6.74   11.20
+    35.0    0.00   -0.22   -0.78   -1.59   -2.53   -3.51   -4.43   -5.24   -5.88   -6.28   -6.35   -6.01   -5.19   -3.87   -2.07    0.25    3.15    6.78   11.24
+    40.0    0.00   -0.22   -0.77   -1.59   -2.54   -3.51   -4.43   -5.23   -5.85   -6.25   -6.32   -5.99   -5.19   -3.90   -2.11    0.21    3.14    6.81   11.28
+    45.0    0.00   -0.22   -0.78   -1.59   -2.55   -3.52   -4.43   -5.22   -5.83   -6.22   -6.28   -5.96   -5.19   -3.92   -2.14    0.19    3.14    6.83   11.31
+    50.0    0.00   -0.22   -0.78   -1.60   -2.56   -3.53   -4.44   -5.23   -5.83   -6.19   -6.24   -5.93   -5.16   -3.91   -2.15    0.17    3.13    6.84   11.34
+    55.0    0.00   -0.22   -0.79   -1.61   -2.56   -3.55   -4.46   -5.24   -5.83   -6.18   -6.22   -5.87   -5.12   -3.88   -2.13    0.17    3.13    6.85   11.37
+    60.0    0.00   -0.22   -0.79   -1.61   -2.58   -3.57   -4.48   -5.27   -5.85   -6.17   -6.19   -5.83   -5.05   -3.82   -2.10    0.18    3.13    6.87   11.40
+    65.0    0.00   -0.22   -0.79   -1.61   -2.58   -3.59   -4.52   -5.31   -5.88   -6.19   -6.18   -5.79   -5.00   -3.76   -2.04    0.22    3.15    6.88   11.42
+    70.0    0.00   -0.22   -0.79   -1.63   -2.60   -3.61   -4.55   -5.34   -5.92   -6.22   -6.18   -5.76   -4.93   -3.69   -1.98    0.26    3.18    6.89   11.44
+    75.0    0.00   -0.22   -0.80   -1.63   -2.61   -3.63   -4.58   -5.39   -5.96   -6.26   -6.20   -5.75   -4.89   -3.62   -1.92    0.31    3.20    6.90   11.45
+    80.0    0.00   -0.22   -0.80   -1.63   -2.62   -3.65   -4.61   -5.42   -6.01   -6.30   -6.22   -5.75   -4.87   -3.59   -1.87    0.35    3.22    6.90   11.45
+    85.0    0.00   -0.22   -0.80   -1.64   -2.63   -3.66   -4.63   -5.46   -6.05   -6.34   -6.26   -5.78   -4.87   -3.57   -1.84    0.36    3.22    6.89   11.44
+    90.0    0.00   -0.22   -0.80   -1.64   -2.64   -3.68   -4.66   -5.49   -6.09   -6.39   -6.31   -5.81   -4.90   -3.58   -1.86    0.34    3.19    6.85   11.41
+    95.0    0.00   -0.22   -0.79   -1.65   -2.65   -3.69   -4.67   -5.50   -6.12   -6.43   -6.36   -5.87   -4.95   -3.63   -1.90    0.30    3.14    6.80   11.36
+   100.0    0.00   -0.22   -0.79   -1.64   -2.65   -3.69   -4.68   -5.53   -6.15   -6.47   -6.41   -5.93   -5.02   -3.70   -1.98    0.21    3.05    6.72   11.29
+   105.0    0.00   -0.22   -0.80   -1.65   -2.65   -3.70   -4.68   -5.53   -6.16   -6.50   -6.46   -6.01   -5.11   -3.81   -2.11    0.09    2.93    6.61   11.20
+   110.0    0.00   -0.22   -0.80   -1.64   -2.65   -3.70   -4.68   -5.54   -6.18   -6.53   -6.51   -6.07   -5.21   -3.93   -2.24   -0.06    2.78    6.48   11.09
+   115.0    0.00   -0.22   -0.79   -1.64   -2.65   -3.70   -4.69   -5.54   -6.18   -6.54   -6.55   -6.14   -5.30   -4.06   -2.40   -0.23    2.61    6.32   10.98
+   120.0    0.00   -0.21   -0.79   -1.64   -2.65   -3.70   -4.69   -5.55   -6.20   -6.56   -6.58   -6.19   -5.39   -4.18   -2.55   -0.40    2.43    6.16   10.84
+   125.0    0.00   -0.21   -0.78   -1.63   -2.65   -3.70   -4.69   -5.55   -6.20   -6.57   -6.61   -6.25   -5.47   -4.29   -2.69   -0.56    2.28    6.02   10.72
+   130.0    0.00   -0.21   -0.78   -1.64   -2.64   -3.70   -4.70   -5.55   -6.21   -6.59   -6.62   -6.28   -5.53   -4.39   -2.80   -0.69    2.14    5.90   10.62
+   135.0    0.00   -0.21   -0.77   -1.63   -2.64   -3.70   -4.70   -5.56   -6.22   -6.60   -6.64   -6.31   -5.58   -4.45   -2.89   -0.79    2.05    5.83   10.55
+   140.0    0.00   -0.20   -0.77   -1.62   -2.63   -3.69   -4.69   -5.57   -6.23   -6.60   -6.65   -6.33   -5.60   -4.48   -2.94   -0.83    2.01    5.79   10.53
+   145.0    0.00   -0.20   -0.76   -1.61   -2.63   -3.69   -4.70   -5.56   -6.22   -6.61   -6.65   -6.33   -5.61   -4.49   -2.94   -0.83    2.02    5.82   10.55
+   150.0    0.00   -0.20   -0.75   -1.60   -2.61   -3.67   -4.69   -5.55   -6.22   -6.60   -6.65   -6.32   -5.59   -4.47   -2.91   -0.78    2.09    5.91   10.63
+   155.0    0.00   -0.19   -0.75   -1.59   -2.60   -3.65   -4.67   -5.54   -6.20   -6.58   -6.63   -6.30   -5.57   -4.44   -2.84   -0.69    2.21    6.05   10.76
+   160.0    0.00   -0.19   -0.74   -1.57   -2.58   -3.64   -4.63   -5.51   -6.17   -6.56   -6.61   -6.27   -5.52   -4.37   -2.76   -0.57    2.37    6.23   10.93
+   165.0    0.00   -0.19   -0.72   -1.56   -2.55   -3.60   -4.60   -5.47   -6.14   -6.52   -6.57   -6.22   -5.47   -4.29   -2.65   -0.42    2.57    6.43   11.12
+   170.0    0.00   -0.18   -0.71   -1.54   -2.53   -3.57   -4.56   -5.42   -6.09   -6.47   -6.51   -6.17   -5.40   -4.20   -2.52   -0.26    2.76    6.66   11.32
+   175.0    0.00   -0.18   -0.71   -1.51   -2.49   -3.52   -4.51   -5.37   -6.02   -6.41   -6.44   -6.09   -5.31   -4.09   -2.39   -0.10    2.94    6.86   11.52
+   180.0    0.00   -0.17   -0.70   -1.49   -2.47   -3.48   -4.46   -5.31   -5.96   -6.33   -6.37   -6.00   -5.21   -3.97   -2.25    0.06    3.11    7.03   11.69
+   185.0    0.00   -0.17   -0.68   -1.48   -2.43   -3.45   -4.41   -5.25   -5.88   -6.26   -6.27   -5.90   -5.10   -3.86   -2.11    0.21    3.27    7.17   11.82
+   190.0    0.00   -0.17   -0.67   -1.46   -2.41   -3.41   -4.36   -5.19   -5.82   -6.18   -6.18   -5.80   -4.98   -3.72   -1.99    0.34    3.39    7.28   11.89
+   195.0    0.00   -0.16   -0.67   -1.44   -2.39   -3.37   -4.32   -5.13   -5.75   -6.10   -6.09   -5.68   -4.86   -3.59   -1.86    0.45    3.48    7.34   11.92
+   200.0    0.00   -0.16   -0.66   -1.43   -2.36   -3.33   -4.28   -5.09   -5.70   -6.02   -6.00   -5.57   -4.73   -3.47   -1.74    0.54    3.54    7.37   11.91
+   205.0    0.00   -0.16   -0.65   -1.42   -2.34   -3.32   -4.25   -5.05   -5.65   -5.96   -5.91   -5.47   -4.61   -3.33   -1.62    0.64    3.59    7.36   11.86
+   210.0    0.00   -0.15   -0.65   -1.41   -2.33   -3.29   -4.22   -5.02   -5.61   -5.90   -5.84   -5.37   -4.50   -3.22   -1.51    0.72    3.64    7.35   11.80
+   215.0    0.00   -0.15   -0.65   -1.40   -2.32   -3.28   -4.20   -4.99   -5.57   -5.85   -5.77   -5.29   -4.40   -3.11   -1.41    0.80    3.68    7.34   11.74
+   220.0    0.00   -0.15   -0.65   -1.40   -2.32   -3.28   -4.19   -4.97   -5.54   -5.81   -5.71   -5.21   -4.32   -3.02   -1.32    0.88    3.73    7.35   11.70
+   225.0    0.00   -0.16   -0.64   -1.40   -2.31   -3.27   -4.18   -4.96   -5.51   -5.77   -5.66   -5.15   -4.24   -2.95   -1.24    0.96    3.79    7.38   11.70
+   230.0    0.00   -0.15   -0.65   -1.40   -2.31   -3.27   -4.17   -4.93   -5.49   -5.73   -5.62   -5.11   -4.19   -2.89   -1.17    1.03    3.86    7.43   11.73
+   235.0    0.00   -0.15   -0.64   -1.40   -2.31   -3.27   -4.16   -4.92   -5.45   -5.70   -5.58   -5.06   -4.15   -2.84   -1.11    1.10    3.94    7.51   11.81
+   240.0    0.00   -0.15   -0.65   -1.40   -2.31   -3.26   -4.15   -4.90   -5.43   -5.66   -5.55   -5.04   -4.12   -2.80   -1.07    1.16    4.02    7.60   11.93
+   245.0    0.00   -0.15   -0.65   -1.41   -2.32   -3.26   -4.15   -4.88   -5.40   -5.63   -5.52   -5.01   -4.10   -2.78   -1.03    1.22    4.08    7.69   12.07
+   250.0    0.00   -0.16   -0.66   -1.42   -2.33   -3.27   -4.14   -4.87   -5.38   -5.61   -5.49   -5.00   -4.09   -2.77   -1.00    1.26    4.14    7.78   12.21
+   255.0    0.00   -0.16   -0.67   -1.42   -2.33   -3.27   -4.13   -4.85   -5.35   -5.58   -5.47   -4.98   -4.08   -2.76   -1.00    1.27    4.17    7.84   12.34
+   260.0    0.00   -0.16   -0.66   -1.43   -2.34   -3.27   -4.14   -4.84   -5.34   -5.57   -5.46   -4.98   -4.08   -2.76   -0.99    1.28    4.17    7.87   12.42
+   265.0    0.00   -0.17   -0.67   -1.44   -2.35   -3.28   -4.14   -4.84   -5.35   -5.58   -5.47   -4.99   -4.09   -2.77   -1.01    1.26    4.14    7.84   12.46
+   270.0    0.00   -0.17   -0.68   -1.45   -2.36   -3.30   -4.15   -4.85   -5.36   -5.59   -5.50   -5.01   -4.11   -2.79   -1.04    1.20    4.09    7.79   12.43
+   275.0    0.00   -0.17   -0.69   -1.47   -2.38   -3.31   -4.16   -4.88   -5.40   -5.64   -5.54   -5.05   -4.15   -2.83   -1.09    1.13    4.00    7.68   12.34
+   280.0    0.00   -0.17   -0.70   -1.48   -2.39   -3.32   -4.20   -4.92   -5.44   -5.70   -5.60   -5.12   -4.21   -2.89   -1.16    1.05    3.88    7.55   12.18
+   285.0    0.00   -0.17   -0.70   -1.48   -2.41   -3.35   -4.23   -4.96   -5.50   -5.77   -5.68   -5.20   -4.29   -2.97   -1.25    0.94    3.74    7.39   11.97
+   290.0    0.00   -0.18   -0.70   -1.50   -2.42   -3.38   -4.27   -5.02   -5.58   -5.85   -5.78   -5.31   -4.40   -3.08   -1.37    0.81    3.61    7.21   11.72
+   295.0    0.00   -0.18   -0.72   -1.50   -2.44   -3.40   -4.31   -5.08   -5.65   -5.95   -5.89   -5.42   -4.53   -3.21   -1.50    0.67    3.45    7.03   11.45
+   300.0    0.00   -0.19   -0.72   -1.52   -2.46   -3.43   -4.35   -5.13   -5.73   -6.04   -6.00   -5.54   -4.66   -3.35   -1.64    0.52    3.30    6.85   11.20
+   305.0    0.00   -0.19   -0.73   -1.53   -2.48   -3.45   -4.38   -5.19   -5.80   -6.14   -6.12   -5.68   -4.80   -3.51   -1.80    0.38    3.16    6.70   10.97
+   310.0    0.00   -0.19   -0.73   -1.54   -2.49   -3.48   -4.42   -5.25   -5.87   -6.24   -6.23   -5.80   -4.94   -3.66   -1.96    0.23    3.03    6.57   10.77
+   315.0    0.00   -0.19   -0.74   -1.54   -2.50   -3.50   -4.46   -5.30   -5.94   -6.31   -6.31   -5.91   -5.07   -3.80   -2.10    0.09    2.92    6.47   10.63
+   320.0    0.00   -0.20   -0.75   -1.55   -2.51   -3.52   -4.48   -5.34   -5.99   -6.37   -6.39   -6.00   -5.17   -3.91   -2.22   -0.02    2.82    6.39   10.54
+   325.0    0.00   -0.20   -0.75   -1.56   -2.53   -3.54   -4.51   -5.37   -6.03   -6.42   -6.45   -6.06   -5.24   -3.99   -2.31   -0.11    2.75    6.35   10.49
+   330.0    0.00   -0.20   -0.75   -1.56   -2.53   -3.54   -4.53   -5.39   -6.06   -6.45   -6.48   -6.10   -5.29   -4.05   -2.37   -0.16    2.70    6.32   10.50
+   335.0    0.00   -0.20   -0.76   -1.57   -2.54   -3.56   -4.54   -5.41   -6.08   -6.48   -6.50   -6.12   -5.30   -4.06   -2.38   -0.19    2.68    6.31   10.54
+   340.0    0.00   -0.20   -0.76   -1.57   -2.55   -3.57   -4.55   -5.43   -6.10   -6.49   -6.50   -6.11   -5.28   -4.04   -2.36   -0.18    2.68    6.31   10.60
+   345.0    0.00   -0.20   -0.76   -1.58   -2.54   -3.57   -4.55   -5.43   -6.11   -6.49   -6.51   -6.09   -5.24   -3.99   -2.31   -0.15    2.69    6.33   10.68
+   350.0    0.00   -0.21   -0.77   -1.58   -2.55   -3.57   -4.56   -5.44   -6.11   -6.49   -6.49   -6.06   -5.20   -3.92   -2.24   -0.09    2.73    6.36   10.77
+   355.0    0.00   -0.21   -0.77   -1.58   -2.55   -3.56   -4.56   -5.43   -6.10   -6.48   -6.48   -6.03   -5.15   -3.86   -2.17   -0.01    2.78    6.40   10.84
+   360.0    0.00   -0.22   -0.76   -1.58   -2.55   -3.56   -4.55   -5.42   -6.09   -6.47   -6.46   -6.01   -5.12   -3.79   -2.09    0.08    2.85    6.44   10.92
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+      0.38      0.48    124.76                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.14   -0.55   -1.15   -1.86   -2.63   -3.40   -4.12   -4.72   -5.11   -5.19   -4.86   -4.11   -2.99   -1.58    0.09    2.08    4.56    7.66
+     0.0    0.00   -0.12   -0.49   -1.06   -1.75   -2.50   -3.26   -3.98   -4.59   -5.01   -5.12   -4.81   -4.06   -2.93   -1.49    0.22    2.25    4.82    8.12
+     5.0    0.00   -0.12   -0.49   -1.06   -1.75   -2.50   -3.25   -3.98   -4.59   -5.00   -5.11   -4.80   -4.06   -2.92   -1.48    0.23    2.27    4.82    8.08
+    10.0    0.00   -0.12   -0.49   -1.06   -1.75   -2.50   -3.25   -3.97   -4.58   -4.99   -5.10   -4.80   -4.07   -2.93   -1.48    0.23    2.27    4.80    8.02
+    15.0    0.00   -0.12   -0.49   -1.06   -1.76   -2.50   -3.26   -3.96   -4.56   -4.98   -5.08   -4.79   -4.08   -2.96   -1.51    0.21    2.24    4.77    7.96
+    20.0    0.00   -0.11   -0.49   -1.06   -1.76   -2.51   -3.26   -3.95   -4.55   -4.96   -5.08   -4.80   -4.08   -2.98   -1.54    0.16    2.20    4.71    7.88
+    25.0    0.00   -0.11   -0.49   -1.07   -1.76   -2.51   -3.26   -3.96   -4.55   -4.94   -5.06   -4.78   -4.09   -3.01   -1.59    0.11    2.13    4.64    7.79
+    30.0    0.00   -0.11   -0.49   -1.07   -1.77   -2.52   -3.27   -3.96   -4.54   -4.93   -5.04   -4.77   -4.10   -3.02   -1.64    0.03    2.05    4.54    7.67
+    35.0    0.00   -0.11   -0.49   -1.07   -1.78   -2.54   -3.28   -3.97   -4.54   -4.92   -5.01   -4.75   -4.08   -3.04   -1.68   -0.04    1.96    4.43    7.55
+    40.0    0.00   -0.11   -0.49   -1.08   -1.79   -2.54   -3.29   -3.97   -4.54   -4.91   -4.99   -4.73   -4.06   -3.04   -1.71   -0.10    1.86    4.32    7.43
+    45.0    0.00   -0.11   -0.50   -1.09   -1.79   -2.55   -3.31   -3.99   -4.54   -4.90   -4.97   -4.69   -4.03   -3.02   -1.72   -0.15    1.79    4.22    7.31
+    50.0    0.00   -0.12   -0.50   -1.09   -1.81   -2.58   -3.32   -4.00   -4.56   -4.90   -4.95   -4.65   -3.99   -2.99   -1.70   -0.16    1.74    4.14    7.21
+    55.0    0.00   -0.12   -0.51   -1.10   -1.82   -2.59   -3.34   -4.02   -4.57   -4.90   -4.94   -4.62   -3.94   -2.94   -1.67   -0.15    1.72    4.09    7.13
+    60.0    0.00   -0.12   -0.51   -1.10   -1.83   -2.61   -3.37   -4.05   -4.59   -4.91   -4.94   -4.60   -3.90   -2.88   -1.61   -0.11    1.73    4.08    7.09
+    65.0    0.00   -0.13   -0.51   -1.11   -1.84   -2.62   -3.38   -4.08   -4.61   -4.93   -4.95   -4.58   -3.85   -2.81   -1.54   -0.03    1.78    4.09    7.08
+    70.0    0.00   -0.13   -0.52   -1.12   -1.85   -2.64   -3.40   -4.09   -4.64   -4.96   -4.96   -4.57   -3.82   -2.75   -1.46    0.06    1.86    4.14    7.09
+    75.0    0.00   -0.13   -0.53   -1.12   -1.86   -2.64   -3.42   -4.12   -4.67   -4.99   -4.98   -4.58   -3.80   -2.71   -1.37    0.14    1.95    4.22    7.15
+    80.0    0.00   -0.13   -0.53   -1.14   -1.87   -2.66   -3.43   -4.14   -4.70   -5.02   -5.02   -4.60   -3.79   -2.67   -1.31    0.23    2.04    4.31    7.23
+    85.0    0.00   -0.13   -0.53   -1.14   -1.88   -2.67   -3.45   -4.16   -4.73   -5.06   -5.05   -4.63   -3.81   -2.65   -1.26    0.31    2.13    4.39    7.31
+    90.0    0.00   -0.13   -0.54   -1.15   -1.89   -2.68   -3.46   -4.17   -4.75   -5.09   -5.10   -4.68   -3.84   -2.66   -1.25    0.36    2.19    4.47    7.40
+    95.0    0.00   -0.14   -0.54   -1.16   -1.90   -2.69   -3.47   -4.19   -4.77   -5.12   -5.14   -4.73   -3.88   -2.69   -1.26    0.36    2.21    4.52    7.48
+   100.0    0.00   -0.14   -0.55   -1.17   -1.91   -2.69   -3.48   -4.20   -4.79   -5.15   -5.18   -4.77   -3.94   -2.74   -1.29    0.33    2.21    4.53    7.53
+   105.0    0.00   -0.15   -0.56   -1.17   -1.91   -2.71   -3.48   -4.20   -4.80   -5.18   -5.20   -4.82   -4.00   -2.81   -1.36    0.28    2.17    4.52    7.56
+   110.0    0.00   -0.15   -0.56   -1.19   -1.93   -2.71   -3.49   -4.21   -4.81   -5.18   -5.23   -4.87   -4.06   -2.89   -1.44    0.20    2.10    4.48    7.56
+   115.0    0.00   -0.15   -0.57   -1.19   -1.94   -2.73   -3.51   -4.22   -4.81   -5.20   -5.26   -4.91   -4.12   -2.97   -1.55    0.10    2.01    4.41    7.53
+   120.0    0.00   -0.15   -0.57   -1.20   -1.95   -2.73   -3.51   -4.22   -4.82   -5.21   -5.28   -4.94   -4.18   -3.05   -1.64    0.00    1.91    4.33    7.48
+   125.0    0.00   -0.15   -0.58   -1.21   -1.96   -2.75   -3.53   -4.24   -4.84   -5.22   -5.30   -4.97   -4.23   -3.11   -1.71   -0.10    1.82    4.24    7.41
+   130.0    0.00   -0.15   -0.58   -1.22   -1.96   -2.76   -3.53   -4.25   -4.84   -5.23   -5.31   -4.99   -4.27   -3.16   -1.78   -0.17    1.74    4.17    7.34
+   135.0    0.00   -0.15   -0.59   -1.22   -1.97   -2.76   -3.55   -4.26   -4.85   -5.24   -5.32   -5.01   -4.29   -3.20   -1.83   -0.22    1.69    4.11    7.27
+   140.0    0.00   -0.16   -0.59   -1.22   -1.98   -2.78   -3.56   -4.27   -4.86   -5.25   -5.33   -5.02   -4.31   -3.22   -1.85   -0.25    1.67    4.09    7.21
+   145.0    0.00   -0.16   -0.59   -1.23   -1.99   -2.78   -3.56   -4.28   -4.88   -5.26   -5.34   -5.04   -4.32   -3.23   -1.85   -0.23    1.68    4.09    7.18
+   150.0    0.00   -0.16   -0.59   -1.24   -1.99   -2.79   -3.57   -4.29   -4.89   -5.27   -5.36   -5.04   -4.31   -3.22   -1.83   -0.20    1.73    4.13    7.16
+   155.0    0.00   -0.16   -0.59   -1.23   -1.98   -2.79   -3.58   -4.29   -4.89   -5.29   -5.36   -5.05   -4.31   -3.19   -1.79   -0.14    1.80    4.18    7.17
+   160.0    0.00   -0.17   -0.59   -1.23   -1.98   -2.78   -3.58   -4.31   -4.91   -5.30   -5.37   -5.05   -4.30   -3.18   -1.75   -0.08    1.87    4.25    7.18
+   165.0    0.00   -0.17   -0.59   -1.23   -1.98   -2.78   -3.57   -4.30   -4.91   -5.30   -5.37   -5.05   -4.29   -3.15   -1.71   -0.02    1.96    4.33    7.21
+   170.0    0.00   -0.17   -0.59   -1.22   -1.98   -2.77   -3.56   -4.30   -4.91   -5.31   -5.39   -5.05   -4.28   -3.13   -1.67    0.05    2.03    4.40    7.25
+   175.0    0.00   -0.17   -0.59   -1.22   -1.97   -2.76   -3.55   -4.29   -4.91   -5.31   -5.39   -5.05   -4.28   -3.11   -1.63    0.10    2.10    4.47    7.27
+   180.0    0.00   -0.17   -0.59   -1.21   -1.96   -2.75   -3.54   -4.29   -4.91   -5.31   -5.38   -5.05   -4.27   -3.10   -1.61    0.13    2.14    4.51    7.29
+   185.0    0.00   -0.17   -0.58   -1.21   -1.94   -2.73   -3.53   -4.28   -4.91   -5.31   -5.39   -5.05   -4.28   -3.10   -1.60    0.15    2.17    4.54    7.30
+   190.0    0.00   -0.16   -0.58   -1.20   -1.93   -2.71   -3.51   -4.26   -4.89   -5.31   -5.39   -5.06   -4.27   -3.09   -1.59    0.17    2.20    4.57    7.30
+   195.0    0.00   -0.16   -0.58   -1.20   -1.92   -2.70   -3.49   -4.25   -4.89   -5.31   -5.40   -5.06   -4.28   -3.10   -1.60    0.17    2.20    4.57    7.28
+   200.0    0.00   -0.16   -0.58   -1.18   -1.91   -2.69   -3.49   -4.24   -4.89   -5.31   -5.39   -5.06   -4.28   -3.09   -1.59    0.17    2.20    4.57    7.27
+   205.0    0.00   -0.16   -0.58   -1.18   -1.91   -2.69   -3.48   -4.23   -4.88   -5.30   -5.40   -5.06   -4.28   -3.10   -1.60    0.16    2.19    4.56    7.25
+   210.0    0.00   -0.16   -0.58   -1.18   -1.89   -2.67   -3.47   -4.23   -4.88   -5.31   -5.39   -5.07   -4.28   -3.10   -1.60    0.16    2.20    4.56    7.24
+   215.0    0.00   -0.16   -0.58   -1.18   -1.89   -2.67   -3.47   -4.23   -4.87   -5.30   -5.40   -5.06   -4.28   -3.10   -1.60    0.16    2.20    4.56    7.25
+   220.0    0.00   -0.16   -0.58   -1.18   -1.89   -2.67   -3.47   -4.23   -4.88   -5.30   -5.39   -5.05   -4.27   -3.09   -1.59    0.17    2.20    4.57    7.28
+   225.0    0.00   -0.16   -0.57   -1.17   -1.89   -2.67   -3.46   -4.22   -4.87   -5.29   -5.37   -5.03   -4.25   -3.08   -1.58    0.17    2.20    4.58    7.32
+   230.0    0.00   -0.16   -0.57   -1.17   -1.89   -2.67   -3.47   -4.22   -4.86   -5.27   -5.35   -5.01   -4.22   -3.05   -1.56    0.18    2.20    4.60    7.38
+   235.0    0.00   -0.16   -0.57   -1.17   -1.89   -2.67   -3.46   -4.21   -4.85   -5.25   -5.32   -4.98   -4.19   -3.03   -1.55    0.18    2.20    4.61    7.46
+   240.0    0.00   -0.16   -0.57   -1.17   -1.89   -2.67   -3.46   -4.20   -4.83   -5.22   -5.28   -4.94   -4.15   -2.99   -1.53    0.17    2.19    4.63    7.56
+   245.0    0.00   -0.16   -0.57   -1.17   -1.89   -2.67   -3.46   -4.19   -4.81   -5.20   -5.24   -4.89   -4.10   -2.95   -1.52    0.17    2.17    4.64    7.66
+   250.0    0.00   -0.15   -0.57   -1.17   -1.89   -2.67   -3.44   -4.18   -4.78   -5.16   -5.20   -4.84   -4.06   -2.92   -1.51    0.15    2.16    4.66    7.77
+   255.0    0.00   -0.15   -0.57   -1.17   -1.89   -2.66   -3.43   -4.15   -4.75   -5.12   -5.15   -4.79   -4.02   -2.89   -1.50    0.15    2.14    4.67    7.87
+   260.0    0.00   -0.15   -0.57   -1.17   -1.89   -2.66   -3.42   -4.13   -4.73   -5.09   -5.11   -4.74   -3.98   -2.87   -1.49    0.14    2.12    4.68    7.97
+   265.0    0.00   -0.15   -0.57   -1.17   -1.88   -2.64   -3.40   -4.11   -4.70   -5.05   -5.08   -4.71   -3.95   -2.86   -1.49    0.12    2.11    4.70    8.06
+   270.0    0.00   -0.15   -0.57   -1.16   -1.88   -2.63   -3.39   -4.09   -4.67   -5.02   -5.05   -4.69   -3.94   -2.85   -1.50    0.11    2.11    4.72    8.14
+   275.0    0.00   -0.15   -0.56   -1.16   -1.86   -2.62   -3.37   -4.07   -4.65   -5.00   -5.04   -4.69   -3.94   -2.85   -1.51    0.11    2.12    4.75    8.20
+   280.0    0.00   -0.15   -0.56   -1.16   -1.86   -2.60   -3.35   -4.05   -4.63   -4.99   -5.04   -4.70   -3.95   -2.87   -1.52    0.11    2.13    4.79    8.27
+   285.0    0.00   -0.15   -0.56   -1.14   -1.85   -2.60   -3.34   -4.03   -4.61   -4.99   -5.05   -4.72   -3.98   -2.90   -1.53    0.11    2.16    4.84    8.32
+   290.0    0.00   -0.15   -0.55   -1.14   -1.84   -2.58   -3.32   -4.02   -4.61   -4.99   -5.07   -4.75   -4.02   -2.94   -1.55    0.11    2.20    4.89    8.36
+   295.0    0.00   -0.15   -0.54   -1.14   -1.84   -2.57   -3.31   -4.00   -4.61   -5.01   -5.10   -4.79   -4.07   -2.98   -1.58    0.11    2.22    4.93    8.38
+   300.0    0.00   -0.14   -0.54   -1.13   -1.82   -2.56   -3.30   -4.01   -4.61   -5.02   -5.12   -4.82   -4.11   -3.02   -1.61    0.10    2.24    4.97    8.40
+   305.0    0.00   -0.14   -0.54   -1.12   -1.81   -2.55   -3.29   -4.00   -4.62   -5.03   -5.15   -4.86   -4.15   -3.06   -1.64    0.10    2.26    4.99    8.42
+   310.0    0.00   -0.14   -0.53   -1.12   -1.81   -2.55   -3.29   -4.00   -4.62   -5.05   -5.17   -4.90   -4.19   -3.09   -1.66    0.09    2.26    5.00    8.42
+   315.0    0.00   -0.13   -0.53   -1.11   -1.79   -2.53   -3.28   -4.00   -4.62   -5.06   -5.19   -4.91   -4.22   -3.11   -1.69    0.07    2.25    5.00    8.41
+   320.0    0.00   -0.13   -0.53   -1.11   -1.79   -2.53   -3.28   -4.00   -4.63   -5.06   -5.19   -4.92   -4.22   -3.13   -1.70    0.06    2.23    4.98    8.39
+   325.0    0.00   -0.13   -0.52   -1.09   -1.79   -2.53   -3.28   -4.00   -4.63   -5.07   -5.20   -4.92   -4.21   -3.12   -1.69    0.05    2.21    4.95    8.36
+   330.0    0.00   -0.13   -0.51   -1.09   -1.78   -2.52   -3.28   -4.00   -4.63   -5.07   -5.19   -4.91   -4.20   -3.11   -1.68    0.05    2.20    4.92    8.34
+   335.0    0.00   -0.13   -0.51   -1.08   -1.77   -2.52   -3.27   -4.00   -4.63   -5.06   -5.18   -4.89   -4.17   -3.07   -1.65    0.06    2.18    4.88    8.30
+   340.0    0.00   -0.13   -0.50   -1.08   -1.77   -2.51   -3.27   -4.00   -4.63   -5.06   -5.17   -4.87   -4.14   -3.04   -1.62    0.09    2.18    4.86    8.27
+   345.0    0.00   -0.12   -0.50   -1.07   -1.76   -2.51   -3.27   -4.00   -4.62   -5.05   -5.15   -4.85   -4.11   -3.00   -1.59    0.12    2.20    4.84    8.23
+   350.0    0.00   -0.12   -0.50   -1.07   -1.76   -2.51   -3.27   -3.99   -4.61   -5.04   -5.13   -4.82   -4.09   -2.97   -1.55    0.15    2.21    4.83    8.19
+   355.0    0.00   -0.12   -0.49   -1.07   -1.76   -2.51   -3.26   -3.98   -4.60   -5.03   -5.12   -4.81   -4.07   -2.94   -1.51    0.19    2.24    4.82    8.16
+   360.0    0.00   -0.12   -0.49   -1.06   -1.75   -2.50   -3.26   -3.98   -4.59   -5.01   -5.12   -4.81   -4.06   -2.93   -1.49    0.22    2.25    4.82    8.12
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TRMR8_GNSS      NONE                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               4    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     4                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+Number of Calibrated Antennas GPS:      004                 COMMENT             
+Number of Individual Calibrations GPS:  008                 COMMENT             
+Number of Calibrated Antennas GLO:      004                 COMMENT             
+Number of Individual Calibrations GLO:  009                 COMMENT             
+# GLONASS PCV                                               COMMENT             
+#  derived from Delta PCV per 25.0 MHz                      COMMENT             
+#  for frequency channel number k=0                         COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.57     -0.16     83.67                              NORTH / EAST / UP   
+   NOAZI    0.00    0.05    0.14    0.10   -0.18   -0.70   -1.27   -1.65   -1.65   -1.28   -0.77   -0.40   -0.36   -0.56   -0.65   -0.23    0.80    2.03    2.53
+     0.0    0.00   -0.01    0.02   -0.08   -0.45   -1.08   -1.77   -2.21   -2.14   -1.55   -0.65    0.21    0.75    0.93    0.98    1.23    1.83    2.54    2.82
+     5.0    0.00   -0.01    0.02   -0.08   -0.46   -1.11   -1.82   -2.30   -2.29   -1.76   -0.91   -0.08    0.46    0.67    0.78    1.12    1.83    2.65    2.98
+    10.0    0.00   -0.01    0.02   -0.09   -0.47   -1.13   -1.86   -2.38   -2.43   -1.97   -1.18   -0.40    0.12    0.35    0.52    0.96    1.80    2.75    3.11
+    15.0    0.00   -0.01    0.01   -0.09   -0.48   -1.14   -1.90   -2.45   -2.56   -2.16   -1.45   -0.73   -0.25   -0.02    0.21    0.76    1.74    2.83    3.24
+    20.0    0.00   -0.01    0.01   -0.10   -0.49   -1.15   -1.92   -2.50   -2.65   -2.33   -1.70   -1.06   -0.63   -0.42   -0.15    0.50    1.65    2.90    3.36
+    25.0    0.00   -0.01    0.01   -0.10   -0.49   -1.16   -1.93   -2.53   -2.72   -2.46   -1.91   -1.36   -1.01   -0.84   -0.55    0.20    1.51    2.94    3.48
+    30.0    0.00    0.00    0.01   -0.11   -0.50   -1.16   -1.93   -2.54   -2.76   -2.54   -2.07   -1.62   -1.37   -1.26   -0.97   -0.13    1.34    2.95    3.60
+    35.0    0.00    0.00    0.01   -0.11   -0.50   -1.16   -1.93   -2.53   -2.76   -2.58   -2.18   -1.82   -1.67   -1.64   -1.38   -0.49    1.13    2.93    3.71
+    40.0    0.00    0.00    0.01   -0.11   -0.51   -1.16   -1.91   -2.49   -2.72   -2.57   -2.22   -1.95   -1.91   -1.98   -1.77   -0.84    0.89    2.87    3.79
+    45.0    0.00    0.01    0.02   -0.12   -0.51   -1.15   -1.88   -2.45   -2.65   -2.50   -2.20   -2.00   -2.07   -2.24   -2.10   -1.18    0.64    2.76    3.83
+    50.0    0.00    0.01    0.02   -0.11   -0.51   -1.14   -1.85   -2.38   -2.56   -2.40   -2.11   -1.98   -2.14   -2.42   -2.36   -1.47    0.38    2.62    3.83
+    55.0    0.00    0.02    0.03   -0.11   -0.50   -1.13   -1.81   -2.31   -2.45   -2.26   -1.98   -1.88   -2.12   -2.49   -2.53   -1.71    0.14    2.44    3.76
+    60.0    0.00    0.02    0.04   -0.10   -0.49   -1.11   -1.77   -2.23   -2.32   -2.10   -1.80   -1.72   -2.01   -2.47   -2.61   -1.87   -0.07    2.24    3.63
+    65.0    0.00    0.03    0.05   -0.09   -0.47   -1.08   -1.72   -2.14   -2.19   -1.92   -1.59   -1.51   -1.83   -2.35   -2.58   -1.94   -0.23    2.03    3.45
+    70.0    0.00    0.04    0.06   -0.07   -0.45   -1.04   -1.66   -2.05   -2.05   -1.74   -1.37   -1.27   -1.59   -2.15   -2.46   -1.92   -0.33    1.83    3.22
+    75.0    0.00    0.04    0.08   -0.04   -0.41   -1.00   -1.59   -1.95   -1.92   -1.56   -1.14   -1.00   -1.31   -1.88   -2.24   -1.81   -0.36    1.66    2.98
+    80.0    0.00    0.05    0.10   -0.01   -0.37   -0.94   -1.52   -1.85   -1.79   -1.39   -0.93   -0.74   -1.01   -1.57   -1.96   -1.62   -0.31    1.55    2.75
+    85.0    0.00    0.06    0.12    0.03   -0.32   -0.87   -1.44   -1.75   -1.67   -1.23   -0.73   -0.49   -0.70   -1.23   -1.63   -1.36   -0.19    1.50    2.55
+    90.0    0.00    0.07    0.15    0.07   -0.26   -0.80   -1.35   -1.65   -1.55   -1.10   -0.55   -0.26   -0.41   -0.89   -1.27   -1.05    0.01    1.52    2.43
+    95.0    0.00    0.08    0.17    0.12   -0.19   -0.71   -1.25   -1.55   -1.44   -0.97   -0.40   -0.06   -0.14   -0.56   -0.91   -0.71    0.25    1.62    2.39
+   100.0    0.00    0.09    0.20    0.17   -0.11   -0.62   -1.15   -1.44   -1.34   -0.86   -0.27    0.12    0.09   -0.27   -0.57   -0.38    0.53    1.78    2.44
+   105.0    0.00    0.10    0.23    0.22   -0.03   -0.52   -1.04   -1.34   -1.24   -0.76   -0.16    0.26    0.28   -0.01   -0.27   -0.06    0.81    2.00    2.58
+   110.0    0.00    0.11    0.26    0.28    0.05   -0.42   -0.93   -1.23   -1.14   -0.68   -0.06    0.37    0.43    0.18   -0.03    0.20    1.07    2.23    2.79
+   115.0    0.00    0.12    0.29    0.33    0.13   -0.32   -0.82   -1.13   -1.05   -0.59    0.02    0.47    0.55    0.33    0.14    0.40    1.28    2.45    3.04
+   120.0    0.00    0.13    0.31    0.38    0.21   -0.22   -0.72   -1.03   -0.95   -0.51    0.09    0.54    0.62    0.41    0.24    0.52    1.43    2.63    3.28
+   125.0    0.00    0.14    0.34    0.43    0.28   -0.13   -0.62   -0.93   -0.87   -0.43    0.16    0.59    0.67    0.45    0.27    0.56    1.50    2.74    3.46
+   130.0    0.00    0.15    0.36    0.47    0.34   -0.05   -0.53   -0.84   -0.78   -0.36    0.22    0.63    0.68    0.43    0.24    0.52    1.47    2.76    3.55
+   135.0    0.00    0.15    0.38    0.51    0.39    0.02   -0.45   -0.76   -0.70   -0.29    0.27    0.66    0.67    0.38    0.14    0.41    1.35    2.67    3.52
+   140.0    0.00    0.16    0.39    0.54    0.43    0.07   -0.39   -0.69   -0.64   -0.23    0.31    0.67    0.63    0.29    0.00    0.23    1.16    2.47    3.34
+   145.0    0.00    0.16    0.40    0.55    0.46    0.11   -0.34   -0.64   -0.58   -0.18    0.34    0.66    0.57    0.17   -0.17    0.00    0.89    2.17    3.02
+   150.0    0.00    0.16    0.41    0.56    0.48    0.13   -0.31   -0.60   -0.54   -0.14    0.35    0.63    0.50    0.03   -0.36   -0.24    0.58    1.79    2.57
+   155.0    0.00    0.16    0.41    0.56    0.48    0.14   -0.30   -0.58   -0.52   -0.13    0.35    0.59    0.40   -0.11   -0.56   -0.50    0.26    1.37    2.03
+   160.0    0.00    0.16    0.40    0.55    0.47    0.13   -0.31   -0.58   -0.51   -0.13    0.32    0.52    0.30   -0.26   -0.74   -0.73   -0.05    0.93    1.45
+   165.0    0.00    0.16    0.39    0.54    0.44    0.10   -0.33   -0.60   -0.53   -0.16    0.27    0.44    0.18   -0.40   -0.91   -0.93   -0.33    0.53    0.89
+   170.0    0.00    0.15    0.38    0.51    0.40    0.06   -0.37   -0.63   -0.56   -0.21    0.20    0.34    0.06   -0.52   -1.04   -1.09   -0.55    0.19    0.40
+   175.0    0.00    0.15    0.36    0.48    0.36    0.00   -0.42   -0.68   -0.62   -0.27    0.11    0.23   -0.06   -0.64   -1.14   -1.19   -0.70   -0.05    0.03
+   180.0    0.00    0.14    0.34    0.44    0.30   -0.06   -0.49   -0.75   -0.69   -0.36    0.01    0.12   -0.17   -0.73   -1.21   -1.24   -0.76   -0.17   -0.16
+   185.0    0.00    0.13    0.32    0.40    0.24   -0.13   -0.57   -0.83   -0.78   -0.46   -0.10    0.00   -0.28   -0.81   -1.24   -1.23   -0.73   -0.16   -0.18
+   190.0    0.00    0.12    0.29    0.35    0.18   -0.21   -0.65   -0.92   -0.87   -0.56   -0.23   -0.13   -0.39   -0.88   -1.25   -1.18   -0.63   -0.02   -0.01
+   195.0    0.00    0.12    0.27    0.31    0.11   -0.29   -0.74   -1.02   -0.98   -0.68   -0.35   -0.25   -0.49   -0.93   -1.24   -1.09   -0.46    0.23    0.33
+   200.0    0.00    0.11    0.24    0.26    0.05   -0.37   -0.84   -1.12   -1.09   -0.80   -0.48   -0.37   -0.59   -0.98   -1.22   -0.98   -0.25    0.58    0.81
+   205.0    0.00    0.10    0.22    0.22   -0.02   -0.45   -0.92   -1.22   -1.20   -0.92   -0.60   -0.49   -0.69   -1.04   -1.20   -0.87    0.00    0.98    1.38
+   210.0    0.00    0.09    0.20    0.18   -0.07   -0.52   -1.01   -1.31   -1.31   -1.04   -0.73   -0.62   -0.79   -1.10   -1.20   -0.76    0.25    1.42    2.00
+   215.0    0.00    0.08    0.17    0.14   -0.12   -0.59   -1.08   -1.40   -1.41   -1.16   -0.86   -0.74   -0.90   -1.18   -1.22   -0.67    0.49    1.84    2.60
+   220.0    0.00    0.07    0.15    0.11   -0.17   -0.64   -1.15   -1.48   -1.51   -1.27   -0.98   -0.86   -1.02   -1.27   -1.26   -0.62    0.70    2.24    3.15
+   225.0    0.00    0.06    0.13    0.08   -0.20   -0.68   -1.21   -1.55   -1.60   -1.38   -1.10   -0.99   -1.14   -1.38   -1.32   -0.59    0.86    2.57    3.60
+   230.0    0.00    0.06    0.12    0.06   -0.23   -0.72   -1.25   -1.61   -1.68   -1.47   -1.21   -1.11   -1.26   -1.49   -1.40   -0.60    0.97    2.82    3.93
+   235.0    0.00    0.05    0.10    0.04   -0.25   -0.74   -1.28   -1.66   -1.74   -1.56   -1.31   -1.22   -1.38   -1.60   -1.48   -0.63    1.03    2.98    4.13
+   240.0    0.00    0.04    0.09    0.03   -0.26   -0.75   -1.31   -1.70   -1.80   -1.64   -1.40   -1.32   -1.48   -1.70   -1.57   -0.68    1.04    3.06    4.20
+   245.0    0.00    0.03    0.08    0.02   -0.26   -0.76   -1.32   -1.73   -1.85   -1.70   -1.47   -1.39   -1.55   -1.77   -1.63   -0.73    1.01    3.04    4.14
+   250.0    0.00    0.03    0.08    0.02   -0.26   -0.76   -1.33   -1.76   -1.89   -1.75   -1.52   -1.44   -1.59   -1.80   -1.67   -0.78    0.94    2.95    3.97
+   255.0    0.00    0.02    0.07    0.02   -0.26   -0.76   -1.33   -1.77   -1.92   -1.79   -1.55   -1.45   -1.58   -1.79   -1.67   -0.82    0.85    2.79    3.72
+   260.0    0.00    0.02    0.07    0.02   -0.26   -0.75   -1.33   -1.78   -1.94   -1.80   -1.55   -1.41   -1.52   -1.72   -1.63   -0.83    0.76    2.59    3.40
+   265.0    0.00    0.02    0.07    0.02   -0.25   -0.75   -1.33   -1.79   -1.95   -1.80   -1.51   -1.34   -1.41   -1.59   -1.53   -0.80    0.67    2.36    3.04
+   270.0    0.00    0.01    0.06    0.02   -0.25   -0.74   -1.33   -1.79   -1.94   -1.77   -1.45   -1.23   -1.25   -1.41   -1.38   -0.74    0.59    2.12    2.66
+   275.0    0.00    0.01    0.06    0.02   -0.24   -0.74   -1.33   -1.79   -1.93   -1.72   -1.35   -1.07   -1.04   -1.19   -1.18   -0.64    0.54    1.88    2.28
+   280.0    0.00    0.01    0.06    0.02   -0.24   -0.74   -1.34   -1.78   -1.90   -1.66   -1.23   -0.89   -0.80   -0.92   -0.94   -0.50    0.51    1.66    1.92
+   285.0    0.00    0.00    0.06    0.02   -0.24   -0.75   -1.34   -1.77   -1.86   -1.57   -1.09   -0.68   -0.54   -0.64   -0.68   -0.34    0.51    1.48    1.60
+   290.0    0.00    0.00    0.06    0.02   -0.25   -0.75   -1.34   -1.76   -1.81   -1.47   -0.92   -0.45   -0.26   -0.34   -0.41   -0.15    0.55    1.33    1.32
+   295.0    0.00    0.00    0.06    0.02   -0.26   -0.76   -1.35   -1.74   -1.75   -1.36   -0.75   -0.22    0.01   -0.04   -0.14    0.04    0.61    1.23    1.10
+   300.0    0.00    0.00    0.06    0.01   -0.27   -0.78   -1.35   -1.72   -1.69   -1.24   -0.57    0.01    0.28    0.24    0.12    0.24    0.70    1.17    0.94
+   305.0    0.00    0.00    0.05    0.01   -0.28   -0.79   -1.36   -1.71   -1.63   -1.13   -0.40    0.23    0.53    0.50    0.37    0.43    0.80    1.16    0.86
+   310.0    0.00   -0.01    0.05    0.00   -0.29   -0.81   -1.37   -1.69   -1.57   -1.02   -0.24    0.43    0.75    0.73    0.58    0.61    0.91    1.20    0.86
+   315.0    0.00   -0.01    0.05   -0.01   -0.31   -0.83   -1.39   -1.69   -1.53   -0.92   -0.10    0.61    0.95    0.92    0.77    0.78    1.04    1.27    0.92
+   320.0    0.00   -0.01    0.05   -0.02   -0.32   -0.86   -1.41   -1.69   -1.50   -0.85    0.01    0.75    1.11    1.09    0.93    0.92    1.16    1.38    1.06
+   325.0    0.00   -0.01    0.04   -0.02   -0.34   -0.88   -1.43   -1.71   -1.49   -0.81    0.09    0.85    1.23    1.22    1.05    1.04    1.28    1.51    1.24
+   330.0    0.00   -0.01    0.04   -0.03   -0.36   -0.91   -1.47   -1.74   -1.51   -0.80    0.13    0.92    1.31    1.31    1.15    1.14    1.40    1.66    1.47
+   335.0    0.00   -0.01    0.04   -0.04   -0.38   -0.94   -1.51   -1.79   -1.56   -0.84    0.12    0.93    1.35    1.36    1.21    1.22    1.50    1.82    1.72
+   340.0    0.00   -0.01    0.03   -0.05   -0.39   -0.97   -1.56   -1.85   -1.63   -0.91    0.06    0.90    1.34    1.38    1.25    1.28    1.60    1.98    1.97
+   345.0    0.00   -0.01    0.03   -0.06   -0.41   -1.00   -1.61   -1.93   -1.73   -1.02   -0.05    0.81    1.28    1.35    1.25    1.31    1.68    2.13    2.22
+   350.0    0.00   -0.01    0.03   -0.06   -0.42   -1.03   -1.66   -2.02   -1.86   -1.17   -0.21    0.66    1.16    1.26    1.21    1.32    1.75    2.28    2.45
+   355.0    0.00   -0.01    0.02   -0.07   -0.44   -1.06   -1.72   -2.11   -2.00   -1.35   -0.41    0.46    0.98    1.13    1.12    1.29    1.80    2.41    2.65
+   360.0    0.00   -0.01    0.02   -0.08   -0.45   -1.08   -1.77   -2.21   -2.14   -1.55   -0.65    0.21    0.75    0.93    0.98    1.23    1.83    2.54    2.82
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.69     -0.25     72.09                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.04   -0.14   -0.25   -0.36   -0.49   -0.69   -0.96   -1.23   -1.28   -0.93   -0.11    0.96    1.81    1.91    1.02   -0.50   -1.59   -0.78
+     0.0    0.00   -0.03   -0.08   -0.07    0.01    0.13    0.21    0.17    0.01   -0.16   -0.18    0.05    0.42    0.57    0.04   -1.43   -3.57   -5.30   -4.81
+     5.0    0.00   -0.02   -0.06   -0.04    0.05    0.20    0.31    0.32    0.24    0.16    0.23    0.54    0.94    1.09    0.54   -0.94   -3.07   -4.76   -4.30
+    10.0    0.00   -0.01   -0.04   -0.02    0.09    0.25    0.38    0.44    0.43    0.45    0.63    1.02    1.49    1.65    1.10   -0.40   -2.50   -4.13   -3.71
+    15.0    0.00   -0.01   -0.03    0.00    0.11    0.27    0.43    0.53    0.59    0.70    1.00    1.50    2.04    2.24    1.68    0.19   -1.87   -3.46   -3.04
+    20.0    0.00    0.00   -0.01    0.01    0.11    0.27    0.44    0.57    0.69    0.90    1.32    1.94    2.57    2.84    2.30    0.82   -1.21   -2.74   -2.34
+    25.0    0.00    0.01   -0.01    0.01    0.11    0.26    0.42    0.57    0.74    1.04    1.57    2.32    3.08    3.42    2.93    1.48   -0.52   -2.01   -1.61
+    30.0    0.00    0.01    0.00    0.01    0.08    0.22    0.37    0.53    0.74    1.11    1.75    2.64    3.53    3.98    3.56    2.14    0.16   -1.28   -0.87
+    35.0    0.00    0.02    0.00    0.00    0.05    0.16    0.29    0.44    0.67    1.10    1.85    2.87    3.90    4.48    4.15    2.78    0.83   -0.58   -0.14
+    40.0    0.00    0.02    0.00   -0.02    0.01    0.09    0.19    0.32    0.55    1.02    1.85    3.00    4.18    4.91    4.68    3.37    1.46    0.07    0.56
+    45.0    0.00    0.03    0.00   -0.04   -0.04    0.00    0.06    0.16    0.37    0.86    1.75    3.01    4.35    5.23    5.12    3.88    2.00    0.64    1.21
+    50.0    0.00    0.03   -0.01   -0.06   -0.09   -0.09   -0.07   -0.02    0.16    0.64    1.57    2.92    4.39    5.42    5.44    4.28    2.43    1.11    1.77
+    55.0    0.00    0.03   -0.01   -0.08   -0.14   -0.18   -0.21   -0.22   -0.09    0.36    1.30    2.71    4.29    5.46    5.61    4.53    2.72    1.44    2.22
+    60.0    0.00    0.03   -0.01   -0.10   -0.19   -0.27   -0.36   -0.42   -0.36    0.04    0.96    2.40    4.07    5.35    5.61    4.61    2.84    1.61    2.53
+    65.0    0.00    0.04   -0.02   -0.13   -0.24   -0.36   -0.49   -0.63   -0.64   -0.31    0.56    2.00    3.71    5.08    5.44    4.51    2.78    1.60    2.67
+    70.0    0.00    0.04   -0.02   -0.15   -0.28   -0.44   -0.62   -0.82   -0.91   -0.67    0.13    1.54    3.25    4.66    5.09    4.21    2.52    1.39    2.61
+    75.0    0.00    0.04   -0.03   -0.16   -0.32   -0.50   -0.73   -1.00   -1.17   -1.03   -0.32    1.02    2.71    4.13    4.58    3.74    2.07    0.99    2.36
+    80.0    0.00    0.04   -0.03   -0.17   -0.35   -0.56   -0.83   -1.16   -1.42   -1.37   -0.76    0.48    2.11    3.50    3.95    3.11    1.46    0.41    1.89
+    85.0    0.00    0.04   -0.03   -0.18   -0.37   -0.60   -0.91   -1.29   -1.63   -1.69   -1.19   -0.05    1.49    2.82    3.23    2.38    0.71   -0.33    1.25
+    90.0    0.00    0.04   -0.03   -0.18   -0.38   -0.63   -0.97   -1.41   -1.82   -1.97   -1.58   -0.55    0.88    2.13    2.48    1.57   -0.13   -1.18    0.45
+    95.0    0.00    0.04   -0.03   -0.18   -0.39   -0.65   -1.02   -1.50   -1.98   -2.21   -1.92   -1.00    0.32    1.46    1.73    0.76   -1.00   -2.09   -0.45
+   100.0    0.00    0.04   -0.03   -0.18   -0.39   -0.66   -1.06   -1.57   -2.10   -2.40   -2.20   -1.38   -0.17    0.87    1.03   -0.02   -1.85   -3.01   -1.41
+   105.0    0.00    0.04   -0.03   -0.18   -0.38   -0.67   -1.08   -1.63   -2.20   -2.56   -2.42   -1.69   -0.57    0.36    0.43   -0.71   -2.62   -3.87   -2.35
+   110.0    0.00    0.04   -0.02   -0.17   -0.37   -0.66   -1.09   -1.67   -2.27   -2.67   -2.59   -1.91   -0.87   -0.03   -0.04   -1.27   -3.27   -4.62   -3.22
+   115.0    0.00    0.04   -0.02   -0.16   -0.36   -0.65   -1.10   -1.69   -2.32   -2.75   -2.69   -2.06   -1.08   -0.30   -0.38   -1.68   -3.76   -5.22   -3.95
+   120.0    0.00    0.04   -0.02   -0.15   -0.34   -0.64   -1.09   -1.71   -2.35   -2.79   -2.76   -2.15   -1.19   -0.45   -0.58   -1.93   -4.07   -5.62   -4.52
+   125.0    0.00    0.04   -0.02   -0.14   -0.33   -0.63   -1.09   -1.71   -2.37   -2.81   -2.78   -2.17   -1.22   -0.49   -0.64   -2.01   -4.19   -5.82   -4.88
+   130.0    0.00    0.04   -0.01   -0.13   -0.32   -0.61   -1.07   -1.70   -2.36   -2.80   -2.76   -2.15   -1.19   -0.45   -0.59   -1.94   -4.12   -5.81   -5.04
+   135.0    0.00    0.03   -0.01   -0.13   -0.30   -0.60   -1.06   -1.69   -2.35   -2.78   -2.72   -2.09   -1.11   -0.34   -0.43   -1.73   -3.88   -5.61   -4.98
+   140.0    0.00    0.03   -0.02   -0.12   -0.30   -0.58   -1.05   -1.67   -2.32   -2.74   -2.66   -2.01   -1.00   -0.19   -0.21   -1.42   -3.50   -5.22   -4.73
+   145.0    0.00    0.03   -0.02   -0.12   -0.29   -0.58   -1.03   -1.64   -2.28   -2.68   -2.59   -1.91   -0.88   -0.01    0.06   -1.04   -3.01   -4.69   -4.31
+   150.0    0.00    0.02   -0.03   -0.13   -0.29   -0.57   -1.02   -1.61   -2.23   -2.61   -2.50   -1.81   -0.74    0.18    0.35   -0.62   -2.44   -4.05   -3.77
+   155.0    0.00    0.02   -0.04   -0.14   -0.30   -0.57   -1.00   -1.58   -2.17   -2.53   -2.40   -1.69   -0.60    0.38    0.65   -0.17   -1.82   -3.34   -3.13
+   160.0    0.00    0.01   -0.05   -0.15   -0.32   -0.58   -0.99   -1.55   -2.10   -2.43   -2.28   -1.56   -0.45    0.58    0.94    0.29   -1.19   -2.59   -2.42
+   165.0    0.00    0.00   -0.06   -0.17   -0.33   -0.59   -0.99   -1.51   -2.03   -2.32   -2.15   -1.42   -0.29    0.77    1.24    0.74   -0.56   -1.82   -1.68
+   170.0    0.00   -0.01   -0.07   -0.19   -0.36   -0.61   -0.99   -1.48   -1.96   -2.21   -2.01   -1.26   -0.13    0.98    1.52    1.17    0.06   -1.05   -0.93
+   175.0    0.00   -0.01   -0.09   -0.22   -0.39   -0.64   -0.99   -1.45   -1.88   -2.09   -1.85   -1.09    0.06    1.19    1.80    1.59    0.65   -0.31   -0.18
+   180.0    0.00   -0.02   -0.11   -0.24   -0.42   -0.66   -1.00   -1.42   -1.81   -1.96   -1.69   -0.90    0.25    1.41    2.09    1.99    1.21    0.39    0.55
+   185.0    0.00   -0.03   -0.13   -0.27   -0.45   -0.69   -1.01   -1.40   -1.73   -1.84   -1.52   -0.71    0.47    1.64    2.37    2.37    1.73    1.06    1.26
+   190.0    0.00   -0.04   -0.14   -0.30   -0.49   -0.72   -1.03   -1.38   -1.67   -1.72   -1.36   -0.51    0.69    1.89    2.66    2.73    2.21    1.67    1.94
+   195.0    0.00   -0.05   -0.16   -0.32   -0.52   -0.75   -1.04   -1.36   -1.61   -1.62   -1.20   -0.31    0.92    2.14    2.94    3.07    2.65    2.22    2.58
+   200.0    0.00   -0.06   -0.18   -0.35   -0.54   -0.78   -1.05   -1.35   -1.56   -1.52   -1.06   -0.11    1.15    2.40    3.21    3.38    3.02    2.71    3.16
+   205.0    0.00   -0.07   -0.20   -0.37   -0.57   -0.79   -1.06   -1.34   -1.53   -1.45   -0.93    0.07    1.38    2.65    3.47    3.65    3.34    3.12    3.68
+   210.0    0.00   -0.08   -0.22   -0.39   -0.59   -0.81   -1.06   -1.33   -1.50   -1.38   -0.82    0.22    1.58    2.88    3.71    3.88    3.58    3.43    4.13
+   215.0    0.00   -0.09   -0.23   -0.41   -0.60   -0.81   -1.06   -1.32   -1.48   -1.34   -0.74    0.36    1.76    3.09    3.91    4.05    3.75    3.65    4.48
+   220.0    0.00   -0.09   -0.25   -0.43   -0.61   -0.81   -1.05   -1.31   -1.46   -1.32   -0.68    0.46    1.92    3.27    4.07    4.17    3.83    3.77    4.72
+   225.0    0.00   -0.10   -0.26   -0.44   -0.61   -0.81   -1.04   -1.30   -1.46   -1.30   -0.65    0.54    2.04    3.41    4.19    4.22    3.83    3.79    4.86
+   230.0    0.00   -0.11   -0.28   -0.45   -0.61   -0.80   -1.03   -1.29   -1.46   -1.30   -0.63    0.60    2.14    3.52    4.26    4.21    3.75    3.70    4.88
+   235.0    0.00   -0.12   -0.29   -0.46   -0.61   -0.79   -1.02   -1.29   -1.46   -1.31   -0.62    0.64    2.20    3.58    4.28    4.14    3.59    3.52    4.81
+   240.0    0.00   -0.12   -0.30   -0.47   -0.61   -0.78   -1.00   -1.28   -1.47   -1.33   -0.63    0.65    2.24    3.61    4.24    4.01    3.36    3.27    4.64
+   245.0    0.00   -0.13   -0.31   -0.47   -0.61   -0.77   -0.99   -1.28   -1.48   -1.35   -0.65    0.65    2.24    3.59    4.16    3.82    3.07    2.95    4.39
+   250.0    0.00   -0.14   -0.32   -0.48   -0.62   -0.76   -0.99   -1.28   -1.50   -1.37   -0.67    0.62    2.21    3.52    4.02    3.58    2.74    2.58    4.09
+   255.0    0.00   -0.14   -0.33   -0.49   -0.62   -0.77   -0.99   -1.29   -1.51   -1.40   -0.71    0.58    2.14    3.41    3.83    3.29    2.37    2.18    3.75
+   260.0    0.00   -0.14   -0.33   -0.50   -0.63   -0.77   -1.00   -1.30   -1.53   -1.42   -0.75    0.51    2.04    3.24    3.58    2.96    1.96    1.75    3.38
+   265.0    0.00   -0.15   -0.34   -0.51   -0.64   -0.78   -1.01   -1.31   -1.55   -1.46   -0.81    0.41    1.88    3.02    3.28    2.58    1.53    1.31    2.99
+   270.0    0.00   -0.15   -0.35   -0.52   -0.66   -0.80   -1.03   -1.33   -1.57   -1.50   -0.88    0.28    1.68    2.74    2.92    2.16    1.07    0.84    2.58
+   275.0    0.00   -0.15   -0.35   -0.53   -0.67   -0.82   -1.04   -1.35   -1.60   -1.54   -0.98    0.12    1.43    2.40    2.51    1.70    0.59    0.35    2.14
+   280.0    0.00   -0.15   -0.35   -0.54   -0.68   -0.84   -1.06   -1.37   -1.62   -1.60   -1.09   -0.08    1.13    2.01    2.06    1.21    0.08   -0.16    1.66
+   285.0    0.00   -0.15   -0.35   -0.54   -0.69   -0.85   -1.08   -1.38   -1.65   -1.66   -1.22   -0.31    0.79    1.57    1.56    0.69   -0.46   -0.72    1.14
+   290.0    0.00   -0.15   -0.35   -0.54   -0.70   -0.86   -1.08   -1.39   -1.67   -1.73   -1.37   -0.56    0.42    1.11    1.05    0.15   -1.02   -1.31    0.55
+   295.0    0.00   -0.14   -0.34   -0.54   -0.70   -0.86   -1.08   -1.39   -1.69   -1.80   -1.52   -0.83    0.04    0.64    0.53   -0.40   -1.60   -1.94   -0.10
+   300.0    0.00   -0.14   -0.33   -0.53   -0.69   -0.84   -1.06   -1.37   -1.70   -1.86   -1.68   -1.10   -0.34    0.18    0.02   -0.93   -2.18   -2.60   -0.80
+   305.0    0.00   -0.13   -0.32   -0.51   -0.67   -0.82   -1.03   -1.34   -1.69   -1.91   -1.82   -1.35   -0.69   -0.24   -0.44   -1.42   -2.74   -3.27   -1.55
+   310.0    0.00   -0.13   -0.31   -0.49   -0.63   -0.78   -0.98   -1.29   -1.66   -1.94   -1.94   -1.57   -1.01   -0.62   -0.84   -1.87   -3.27   -3.94   -2.32
+   315.0    0.00   -0.12   -0.29   -0.46   -0.59   -0.72   -0.91   -1.22   -1.61   -1.94   -2.02   -1.75   -1.25   -0.91   -1.17   -2.24   -3.75   -4.58   -3.08
+   320.0    0.00   -0.11   -0.27   -0.42   -0.54   -0.65   -0.83   -1.13   -1.54   -1.91   -2.05   -1.85   -1.42   -1.12   -1.41   -2.53   -4.15   -5.16   -3.79
+   325.0    0.00   -0.10   -0.25   -0.39   -0.48   -0.57   -0.72   -1.01   -1.43   -1.83   -2.03   -1.89   -1.51   -1.23   -1.55   -2.72   -4.46   -5.64   -4.42
+   330.0    0.00   -0.09   -0.23   -0.34   -0.41   -0.47   -0.60   -0.88   -1.29   -1.71   -1.94   -1.84   -1.49   -1.24   -1.58   -2.81   -4.66   -6.01   -4.94
+   335.0    0.00   -0.08   -0.20   -0.29   -0.34   -0.37   -0.47   -0.72   -1.12   -1.54   -1.79   -1.70   -1.38   -1.15   -1.52   -2.81   -4.76   -6.25   -5.32
+   340.0    0.00   -0.07   -0.17   -0.25   -0.26   -0.26   -0.33   -0.55   -0.92   -1.33   -1.56   -1.49   -1.17   -0.96   -1.36   -2.70   -4.73   -6.34   -5.54
+   345.0    0.00   -0.06   -0.15   -0.20   -0.19   -0.15   -0.18   -0.37   -0.70   -1.07   -1.28   -1.19   -0.88   -0.69   -1.12   -2.50   -4.59   -6.28   -5.59
+   350.0    0.00   -0.05   -0.12   -0.15   -0.12   -0.05   -0.04   -0.18   -0.47   -0.79   -0.95   -0.83   -0.51   -0.33   -0.80   -2.22   -4.35   -6.08   -5.47
+   355.0    0.00   -0.04   -0.10   -0.11   -0.05    0.05    0.09    0.00   -0.22   -0.48   -0.57   -0.41   -0.07    0.09   -0.41   -1.86   -4.00   -5.75   -5.21
+   360.0    0.00   -0.03   -0.08   -0.07    0.01    0.13    0.21    0.17    0.01   -0.16   -0.18    0.05    0.42    0.57    0.04   -1.43   -3.57   -5.30   -4.81
+   G02                                                      END OF FREQUENCY    
+   R01                                                      START OF FREQUENCY  
+      0.57     -0.16     83.67                              NORTH / EAST / UP   
+   NOAZI    0.00    0.05    0.16    0.15   -0.09   -0.58   -1.16   -1.60   -1.70   -1.43   -0.98   -0.61   -0.53   -0.68   -0.80   -0.52    0.37    1.66    2.70
+     0.0    0.00   -0.02    0.01   -0.06   -0.36   -0.93   -1.58   -2.03   -2.04   -1.58   -0.82   -0.03    0.52    0.77    0.91    1.20    1.82    2.60    3.23
+     5.0    0.00   -0.02    0.01   -0.05   -0.36   -0.94   -1.60   -2.09   -2.15   -1.75   -1.03   -0.28    0.26    0.53    0.71    1.06    1.73    2.62    3.33
+    10.0    0.00   -0.02    0.02   -0.05   -0.36   -0.94   -1.60   -2.12   -2.25   -1.91   -1.24   -0.55   -0.04    0.22    0.42    0.83    1.61    2.61    3.43
+    15.0    0.00   -0.02    0.01   -0.05   -0.36   -0.93   -1.62   -2.16   -2.34   -2.05   -1.47   -0.84   -0.38   -0.14    0.08    0.55    1.42    2.57    3.55
+    20.0    0.00   -0.02    0.01   -0.05   -0.35   -0.93   -1.62   -2.19   -2.39   -2.19   -1.68   -1.12   -0.73   -0.53   -0.32    0.19    1.20    2.54    3.67
+    25.0    0.00   -0.02    0.02   -0.04   -0.34   -0.92   -1.62   -2.20   -2.44   -2.29   -1.86   -1.38   -1.07   -0.95   -0.75   -0.19    0.94    2.47    3.81
+    30.0    0.00   -0.01    0.02   -0.05   -0.34   -0.90   -1.61   -2.21   -2.48   -2.37   -2.00   -1.62   -1.40   -1.36   -1.20   -0.61    0.65    2.39    3.95
+    35.0    0.00   -0.01    0.02   -0.04   -0.34   -0.90   -1.61   -2.20   -2.49   -2.41   -2.11   -1.80   -1.68   -1.71   -1.62   -1.02    0.35    2.29    4.05
+    40.0    0.00   -0.01    0.02   -0.04   -0.34   -0.89   -1.59   -2.18   -2.48   -2.42   -2.15   -1.92   -1.89   -2.03   -2.01   -1.39    0.06    2.17    4.10
+    45.0    0.00   -0.01    0.04   -0.03   -0.34   -0.88   -1.57   -2.16   -2.44   -2.38   -2.15   -1.96   -2.03   -2.25   -2.31   -1.72   -0.20    2.02    4.06
+    50.0    0.00   -0.01    0.04   -0.02   -0.33   -0.88   -1.55   -2.11   -2.38   -2.31   -2.08   -1.94   -2.07   -2.39   -2.52   -1.97   -0.44    1.84    3.94
+    55.0    0.00    0.01    0.05   -0.02   -0.32   -0.87   -1.53   -2.08   -2.31   -2.22   -1.98   -1.85   -2.02   -2.40   -2.62   -2.14   -0.64    1.64    3.71
+    60.0    0.00    0.01    0.06   -0.01   -0.31   -0.85   -1.50   -2.02   -2.21   -2.10   -1.83   -1.70   -1.90   -2.33   -2.61   -2.20   -0.77    1.43    3.39
+    65.0    0.00    0.02    0.07    0.09   -0.29   -0.84   -1.46   -1.95   -2.12   -1.95   -1.65   -1.51   -1.71   -2.17   -2.51   -2.16   -0.85    1.22    3.01
+    70.0    0.00    0.03    0.08    0.02   -0.28   -0.81   -1.42   -1.88   -2.00   -1.79   -1.46   -1.28   -1.46   -1.94   -2.31   -2.06   -0.86    1.03    2.60
+    75.0    0.00    0.03    0.10    0.05   -0.24   -0.77   -1.36   -1.79   -1.88   -1.63   -1.26   -1.03   -1.19   -1.65   -2.05   -1.87   -0.83    0.87    2.23
+    80.0    0.00    0.04    0.12    0.06   -0.21   -0.72   -1.29   -1.69   -1.76   -1.48   -1.06   -0.80   -0.91   -1.35   -1.76   -1.65   -0.72    0.77    1.90
+    85.0    0.00    0.05    0.13    0.10   -0.17   -0.66   -1.22   -1.60   -1.64   -1.33   -0.88   -0.58   -0.65   -1.04   -1.45   -1.38   -0.58    0.75    1.66
+    90.0    0.00    0.06    0.16    0.13   -0.12   -0.60   -1.14   -1.50   -1.53   -1.21   -0.71   -0.38   -0.40   -0.76   -1.14   -1.10   -0.39    0.78    1.57
+    95.0    0.00    0.07    0.18    0.17   -0.06   -0.52   -1.05   -1.41   -1.42   -1.08   -0.58   -0.22   -0.19   -0.51   -0.86   -0.84   -0.19    0.90    1.60
+   100.0    0.00    0.08    0.20    0.21    0.11   -0.45   -0.97   -1.31   -1.32   -0.98   -0.47   -0.07   -0.03   -0.30   -0.61   -0.59    0.05    1.07    1.76
+   105.0    0.00    0.09    0.23    0.25    0.06   -0.37   -0.88   -1.22   -1.23   -0.88   -0.37    0.03    0.10   -0.14   -0.42   -0.37    0.27    1.30    2.03
+   110.0    0.00    0.10    0.26    0.30    0.11   -0.30   -0.79   -1.13   -1.15   -0.82   -0.29    0.10    0.19   -0.03   -0.27   -0.19    0.46    1.54    2.35
+   115.0    0.00    0.12    0.29    0.34    0.17   -0.23   -0.71   -1.07   -1.08   -0.74   -0.24    0.17    0.26    0.05   -0.19   -0.08    0.62    1.76    2.70
+   120.0    0.00    0.13    0.30    0.38    0.23   -0.17   -0.66   -1.00   -1.00   -0.68   -0.18    0.22    0.30    0.09   -0.14   -0.01    0.74    1.94    2.99
+   125.0    0.00    0.14    0.33    0.42    0.29   -0.11   -0.59   -0.94   -0.96   -0.62   -0.12    0.26    0.33    0.11   -0.13    0.01    0.80    2.05    3.19
+   130.0    0.00    0.15    0.35    0.46    0.33   -0.05   -0.54   -0.88   -0.90   -0.56   -0.07    0.31    0.35    0.10   -0.15   -0.02    0.77    2.07    3.26
+   135.0    0.00    0.15    0.37    0.49    0.37   -0.02   -0.49   -0.83   -0.84   -0.50   -0.01    0.35    0.37    0.08   -0.22   -0.10    0.68    1.98    3.19
+   140.0    0.00    0.16    0.38    0.52    0.40    0.03   -0.45   -0.80   -0.80   -0.45    0.04    0.39    0.37    0.05   -0.31   -0.22    0.54    1.80    2.96
+   145.0    0.00    0.16    0.40    0.53    0.43    0.06   -0.43   -0.77   -0.76   -0.40    0.10    0.43    0.37   -0.01   -0.40   -0.38    0.33    1.53    2.61
+   150.0    0.00    0.17    0.41    0.55    0.45    0.07   -0.41   -0.74   -0.73   -0.36    0.13    0.44    0.36   -0.09   -0.52   -0.55    0.09    1.21    2.17
+   155.0    0.00    0.17    0.42    0.56    0.45    0.08   -0.40   -0.73   -0.71   -0.34    0.15    0.44    0.31   -0.15   -0.66   -0.73   -0.15    0.87    1.69
+   160.0    0.00    0.17    0.42    0.56    0.46    0.08   -0.41   -0.73   -0.70   -0.34    0.14    0.40    0.27   -0.25   -0.78   -0.91   -0.39    0.53    1.23
+   165.0    0.00    0.18    0.41    0.56    0.44    0.07   -0.42   -0.75   -0.72   -0.37    0.10    0.34    0.18   -0.35   -0.91   -1.06   -0.61    0.23    0.84
+   170.0    0.00    0.17    0.41    0.55    0.42    0.05   -0.43   -0.77   -0.75   -0.42    0.03    0.27    0.08   -0.45   -1.02   -1.20   -0.77    0.01    0.56
+   175.0    0.00    0.17    0.40    0.53    0.40    0.01   -0.47   -0.81   -0.81   -0.49   -0.07    0.14   -0.04   -0.57   -1.11   -1.28   -0.87   -0.11    0.42
+   180.0    0.00    0.16    0.39    0.51    0.37   -0.02   -0.52   -0.87   -0.89   -0.59   -0.19    0.02   -0.16   -0.66   -1.18   -1.33   -0.90   -0.13    0.46
+   185.0    0.00    0.16    0.38    0.49    0.34   -0.07   -0.58   -0.94   -0.99   -0.72   -0.32   -0.13   -0.29   -0.76   -1.23   -1.32   -0.85   -0.03    0.63
+   190.0    0.00    0.15    0.35    0.46    0.30   -0.12   -0.64   -1.03   -1.09   -0.85   -0.50   -0.29   -0.43   -0.85   -1.25   -1.28   -0.74    0.16    0.94
+   195.0    0.00    0.15    0.34    0.43    0.24   -0.18   -0.72   -1.13   -1.21   -0.99   -0.65   -0.45   -0.56   -0.93   -1.26   -1.20   -0.58    0.42    1.34
+   200.0    0.00    0.14    0.31    0.39    0.19   -0.25   -0.81   -1.22   -1.33   -1.14   -0.82   -0.61   -0.70   -1.00   -1.25   -1.10   -0.39    0.75    1.81
+   205.0    0.00    0.13    0.31    0.35    0.13   -0.32   -0.88   -1.33   -1.46   -1.28   -0.97   -0.77   -0.83   -1.08   -1.24   -1.01   -0.17    1.09    2.29
+   210.0    0.00    0.12    0.29    0.31    0.08   -0.39   -0.97   -1.42   -1.58   -1.41   -1.12   -0.93   -0.96   -1.16   -1.26   -0.92    0.03    1.42    2.77
+   215.0    0.00    0.11    0.26    0.27    0.03   -0.46   -1.05   -1.51   -1.68   -1.54   -1.27   -1.07   -1.08   -1.25   -1.29   -0.86    0.20    1.72    3.17
+   220.0    0.00    0.10    0.24    0.24   -0.02   -0.52   -1.12   -1.60   -1.78   -1.65   -1.39   -1.20   -1.22   -1.37   -1.37   -0.85    0.34    1.98    3.52
+   225.0    0.00    0.09    0.22    0.20   -0.06   -0.57   -1.19   -1.67   -1.87   -1.76   -1.50   -1.33   -1.35   -1.50   -1.45   -0.88    0.41    2.18    3.78
+   230.0    0.00    0.09    0.19    0.17   -0.11   -0.63   -1.24   -1.73   -1.94   -1.84   -1.60   -1.44   -1.48   -1.63   -1.57   -0.94    0.43    2.30    3.95
+   235.0    0.00    0.08    0.17    0.14   -0.14   -0.67   -1.28   -1.78   -1.98   -1.91   -1.69   -1.55   -1.60   -1.76   -1.69   -1.02    0.41    2.35    4.03
+   240.0    0.00    0.07    0.15    0.12   -0.17   -0.70   -1.33   -1.82   -2.03   -1.97   -1.76   -1.64   -1.72   -1.89   -1.83   -1.14    0.35    2.36    4.03
+   245.0    0.00    0.06    0.13    0.09   -0.19   -0.72   -1.34   -1.85   -2.07   -2.01   -1.82   -1.71   -1.81   -1.99   -1.93   -1.24    0.28    2.29    3.95
+   250.0    0.00    0.05    0.13    0.08   -0.21   -0.74   -1.36   -1.88   -2.10   -2.05   -1.85   -1.76   -1.87   -2.06   -2.01   -1.32    0.17    2.18    3.79
+   255.0    0.00    0.04    0.11    0.07   -0.22   -0.74   -1.36   -1.88   -2.11   -2.07   -1.88   -1.78   -1.87   -2.08   -2.04   -1.38    0.07    2.04    3.58
+   260.0    0.00    0.04    0.11    0.06   -0.23   -0.74   -1.36   -1.88   -2.12   -2.07   -1.87   -1.74   -1.83   -2.03   -2.01   -1.39    0.01    1.88    3.33
+   265.0    0.00    0.04    0.10    0.05   -0.22   -0.74   -1.35   -1.86   -2.11   -2.06   -1.83   -1.69   -1.74   -1.91   -1.91   -1.34   -0.04    1.70    3.02
+   270.0    0.00    0.02    0.08    0.05   -0.23   -0.72   -1.33   -1.84   -2.08   -2.01   -1.78   -1.59   -1.59   -1.74   -1.75   -1.25   -0.07    1.51    2.69
+   275.0    0.00    0.02    0.08    0.04   -0.22   -0.71   -1.32   -1.82   -2.06   -1.95   -1.68   -1.44   -1.39   -1.52   -1.53   -1.10   -0.06    1.34    2.34
+   280.0    0.00    0.02    0.07    0.04   -0.21   -0.70   -1.31   -1.79   -2.01   -1.88   -1.56   -1.27   -1.16   -1.24   -1.26   -0.90   -0.01    1.19    2.02
+   285.0    0.00    0.01    0.07    0.04   -0.21   -0.70   -1.29   -1.76   -1.95   -1.78   -1.42   -1.06   -0.90   -0.95   -0.97   -0.69    0.05    1.07    1.72
+   290.0    0.00    0.00    0.07    0.03   -0.21   -0.69   -1.27   -1.73   -1.87   -1.67   -1.25   -0.83   -0.62   -0.64   -0.67   -0.46    0.16    0.98    1.47
+   295.0    0.00    0.00    0.06    0.03   -0.22   -0.69   -1.26   -1.69   -1.80   -1.55   -1.07   -0.60   -0.35   -0.33   -0.38   -0.23    0.27    0.94    1.29
+   300.0    0.00    0.00    0.06    0.02   -0.23   -0.69   -1.24   -1.66   -1.73   -1.43   -0.89   -0.37   -0.08   -0.05   -0.10   -0.24    0.40    0.95    1.18
+   305.0    0.00    0.00    0.05    0.02   -0.23   -0.69   -1.25   -1.64   -1.66   -1.31   -0.72   -0.15    0.17    0.21    0.15    0.20    0.53    1.00    1.18
+   310.0    0.00   -0.02    0.04    0.01   -0.24   -0.71   -1.25   -1.62   -1.60   -1.20   -0.55    0.06    0.39    0.44    0.36    0.39    0.69    1.10    1.26
+   315.0    0.00   -0.02    0.04    0.01   -0.26   -0.73   -1.27   -1.62   -1.56   -1.10   -0.41    0.24    0.59    0.63    0.54    0.57    0.85    1.25    1.42
+   320.0    0.00   -0.02    0.04   -0.01   -0.27   -0.76   -1.29   -1.63   -1.54   -1.03   -0.30    0.38    0.75    0.79    0.70    0.72    1.00    1.42    1.66
+   325.0    0.00   -0.02    0.03   -0.01   -0.29   -0.78   -1.32   -1.65   -1.53   -0.99   -0.22    0.48    0.87    0.92    0.82    0.86    1.16    1.63    1.91
+   330.0    0.00   -0.02    0.03   -0.02   -0.31   -0.81   -1.36   -1.68   -1.55   -0.98   -0.18    0.55    0.95    1.01    0.93    0.98    1.34    1.83    2.18
+   335.0    0.00   -0.02    0.03   -0.03   -0.33   -0.84   -1.40   -1.73   -1.60   -1.02   -0.19    0.56    1.00    1.07    1.01    1.09    1.48    2.03    2.45
+   340.0    0.00   -0.02    0.02   -0.04   -0.34   -0.87   -1.44   -1.78   -1.66   -1.08   -0.24    0.54    1.00    1.11    1.08    1.19    1.61    2.21    2.68
+   345.0    0.00   -0.02    0.02   -0.05   -0.35   -0.89   -1.48   -1.84   -1.74   -1.17   -0.33    0.47    0.95    1.11    1.11    1.26    1.72    2.36    2.88
+   350.0    0.00   -0.02    0.02   -0.05   -0.36   -0.91   -1.52   -1.91   -1.84   -1.29   -0.45    0.34    0.86    1.05    1.10    1.30    1.80    2.48    3.03
+   355.0    0.00   -0.02    0.01   -0.05   -0.37   -0.92   -1.55   -1.97   -1.95   -1.44   -0.62    0.17    0.70    0.94    1.03    1.28    1.83    2.56    3.15
+   360.0    0.00   -0.02    0.01   -0.06   -0.36   -0.93   -1.58   -2.03   -2.04   -1.58   -0.82   -0.03    0.52    0.77    0.91    1.20    1.82    2.60    3.23
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+     -0.69     -0.25     72.09                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.03   -0.08   -0.11   -0.11   -0.11   -0.22   -0.47   -0.80   -0.98   -0.78   -0.04    1.04    2.01    2.29    1.57    0.21   -0.68    0.49
+     0.0    0.00   -0.01   -0.02    0.03    0.18    0.38    0.54    0.57    0.42    0.22    0.16    0.40    0.88    1.25    1.00   -0.23   -2.25   -3.95   -3.32
+     5.0    0.00    0.01    0.01    0.07    0.22    0.44    0.62    0.68    0.61    0.49    0.53    0.88    1.43    1.83    1.57    0.31   -1.74   -3.42   -2.78
+    10.0    0.00    0.02    0.03    0.10    0.26    0.48    0.67    0.76    0.75    0.74    0.89    1.34    1.99    2.43    2.17    0.87   -1.18   -2.82   -2.16
+    15.0    0.00    0.03    0.05    0.13    0.29    0.50    0.70    0.82    0.86    0.94    1.23    1.80    2.55    3.03    2.76    1.43   -0.61   -2.20   -1.44
+    20.0    0.00    0.04    0.08    0.15    0.30    0.51    0.70    0.84    0.93    1.10    1.51    2.22    3.06    3.63    3.35    1.99   -0.05   -1.56   -0.70
+    25.0    0.00    0.05    0.09    0.16    0.32    0.50    0.69    0.83    0.95    1.20    1.72    2.57    3.54    4.16    3.90    2.54    0.50   -0.93    0.08
+    30.0    0.00    0.06    0.11    0.18    0.30    0.48    0.66    0.79    0.95    1.24    1.87    2.85    3.94    4.64    4.42    3.05    1.03   -0.30    0.84
+    35.0    0.00    0.07    0.12    0.18    0.29    0.45    0.60    0.72    0.88    1.22    1.93    3.02    4.23    5.04    4.86    3.52    1.53    0.29    1.59
+    40.0    0.00    0.07    0.13    0.18    0.27    0.41    0.53    0.62    0.76    1.13    1.90    3.09    4.42    5.34    5.23    3.93    1.99    0.83    2.28
+    45.0    0.00    0.09    0.13    0.17    0.25    0.35    0.44    0.50    0.61    0.97    1.77    3.03    4.48    5.51    5.50    4.26    2.38    1.30    2.90
+    50.0    0.00    0.09    0.12    0.16    0.22    0.29    0.34    0.36    0.42    0.76    1.56    2.88    4.41    5.55    5.65    4.50    2.68    1.68    3.38
+    55.0    0.00    0.09    0.13    0.15    0.18    0.23    0.24    0.19    0.20    0.49    1.27    2.61    4.20    5.45    5.67    4.62    2.87    1.93    3.73
+    60.0    0.00    0.09    0.13    0.14    0.15    0.16    0.13    0.04   -0.03    0.19    0.92    2.25    3.89    5.22    5.55    4.59    2.91    2.02    3.90
+    65.0    0.00    0.11    0.12    0.11    0.11    0.09    0.02   -0.14   -0.27   -0.13    0.52    1.82    3.47    4.87    5.29    4.42    2.79    1.95    3.86
+    70.0    0.00    0.11    0.12    0.09    0.07    0.02   -0.09   -0.30   -0.51   -0.46    0.11    1.34    2.97    4.39    4.88    4.08    2.51    1.66    3.60
+    75.0    0.00    0.10    0.11    0.07    0.02   -0.04   -0.19   -0.46   -0.73   -0.79   -0.31    0.84    2.42    3.84    4.36    3.60    2.04    1.19    3.14
+    80.0    0.00    0.10    0.10    0.05   -0.03   -0.12   -0.29   -0.61   -0.95   -1.08   -0.71    0.33    1.84    3.22    3.74    2.98    1.42    0.54    2.44
+    85.0    0.00    0.10    0.10    0.03   -0.06   -0.17   -0.39   -0.73   -1.14   -1.36   -1.09   -0.15    1.26    2.57    3.05    2.28    0.68   -0.26    1.58
+    90.0    0.00    0.10    0.09    0.01   -0.09   -0.23   -0.46   -0.85   -1.30   -1.59   -1.41   -0.59    0.70    1.93    2.35    1.52   -0.14   -1.17    0.58
+    95.0    0.00    0.10    0.08    0.18   -0.13   -0.27   -0.53   -0.94   -1.44   -1.79   -1.69   -0.97    0.21    1.32    1.65    0.76   -0.98   -2.11   -0.49
+   100.0    0.00    0.09    0.07   -0.02   -0.15   -0.31   -0.60   -1.02   -1.54   -1.93   -1.91   -1.29   -0.22    0.78    1.00    0.04   -1.78   -3.02   -1.56
+   105.0    0.00    0.09    0.07   -0.03   -0.17   -0.35   -0.64   -1.08   -1.62   -2.05   -2.07   -1.54   -0.57    0.32    0.46   -0.58   -2.47   -3.84   -2.57
+   110.0    0.00    0.09    0.07   -0.04   -0.18   -0.37   -0.66   -1.13   -1.67   -2.13   -2.20   -1.72   -0.83   -0.03    0.03   -1.06   -3.01   -4.50   -3.44
+   115.0    0.00    0.08    0.06   -0.04   -0.18   -0.37   -0.68   -1.15   -1.71   -2.18   -2.27   -1.84   -1.02   -0.28   -0.26   -1.39   -3.37   -4.96   -4.11
+   120.0    0.00    0.08    0.06   -0.04   -0.17   -0.37   -0.68   -1.16   -1.72   -2.19   -2.32   -1.91   -1.12   -0.42   -0.42   -1.55   -3.53   -5.17   -4.56
+   125.0    0.00    0.08    0.05   -0.03   -0.16   -0.36   -0.68   -1.15   -1.73   -2.20   -2.32   -1.93   -1.16   -0.45   -0.44   -1.52   -3.48   -5.16   -4.75
+   130.0    0.00    0.08    0.06   -0.02   -0.15   -0.33   -0.64   -1.13   -1.70   -2.18   -2.30   -1.92   -1.14   -0.41   -0.35   -1.36   -3.23   -4.91   -4.69
+   135.0    0.00    0.07    0.06   -0.01   -0.12   -0.30   -0.61   -1.10   -1.69   -2.16   -2.27   -1.87   -1.07   -0.30   -0.16   -1.05   -2.82   -4.48   -4.39
+   140.0    0.00    0.07    0.05    0.01   -0.09   -0.26   -0.57   -1.06   -1.64   -2.12   -2.22   -1.80   -0.96   -0.14    0.10   -0.66   -2.30   -3.89   -3.90
+   145.0    0.00    0.06    0.05    0.02   -0.06   -0.22   -0.52   -1.01   -1.60   -2.07   -2.16   -1.71   -0.84    0.06    0.41   -0.22   -1.70   -3.19   -3.25
+   150.0    0.00    0.05    0.05    0.02   -0.03   -0.17   -0.48   -0.95   -1.55   -2.01   -2.08   -1.61   -0.68    0.28    0.73    0.24   -1.08   -2.45   -2.50
+   155.0    0.00    0.05    0.04    0.03   -0.01   -0.13   -0.41   -0.90   -1.49   -1.94   -2.00   -1.49   -0.52    0.51    1.06    0.70   -0.46   -1.69   -1.70
+   160.0    0.00    0.04    0.04    0.04    0.01   -0.09   -0.36   -0.85   -1.42   -1.86   -1.90   -1.35   -0.34    0.75    1.37    1.14    0.12   -0.96   -0.88
+   165.0    0.00    0.02    0.03    0.04    0.03   -0.06   -0.33   -0.79   -1.35   -1.78   -1.79   -1.22   -0.16    0.98    1.68    1.54    0.65   -0.27   -0.08
+   170.0    0.00    0.01    0.03    0.03    0.04   -0.04   -0.29   -0.75   -1.30   -1.71   -1.69   -1.07    0.02    1.22    1.97    1.91    1.15    0.37    0.68
+   175.0    0.00    0.01    0.01    0.02    0.04   -0.03   -0.26   -0.71   -1.25   -1.63   -1.57   -0.92    0.22    1.45    2.24    2.27    1.59    0.95    1.40
+   180.0    0.00   -0.01   -0.01    0.01    0.03   -0.02   -0.25   -0.68   -1.20   -1.56   -1.47   -0.77    0.40    1.68    2.52    2.59    2.01    1.47    2.07
+   185.0    0.00   -0.02   -0.03   -0.01    0.01   -0.03   -0.24   -0.66   -1.16   -1.49   -1.37   -0.63    0.60    1.91    2.80    2.91    2.40    1.97    2.70
+   190.0    0.00   -0.03   -0.04   -0.04   -0.02   -0.05   -0.26   -0.66   -1.14   -1.43   -1.28   -0.50    0.78    2.15    3.07    3.23    2.77    2.44    3.28
+   195.0    0.00   -0.04   -0.07   -0.07   -0.05   -0.08   -0.27   -0.66   -1.12   -1.40   -1.19   -0.37    0.96    2.37    3.34    3.54    3.14    2.87    3.82
+   200.0    0.00   -0.06   -0.10   -0.11   -0.08   -0.12   -0.30   -0.67   -1.11   -1.37   -1.13   -0.25    1.13    2.60    3.60    3.84    3.46    3.28    4.32
+   205.0    0.00   -0.07   -0.13   -0.13   -0.12   -0.14   -0.33   -0.69   -1.12   -1.35   -1.07   -0.14    1.30    2.81    3.85    4.11    3.77    3.64    4.78
+   210.0    0.00   -0.09   -0.16   -0.18   -0.16   -0.19   -0.35   -0.71   -1.12   -1.32   -1.01   -0.04    1.45    3.01    4.08    4.34    4.01    3.94    5.18
+   215.0    0.00   -0.10   -0.18   -0.22   -0.20   -0.23   -0.39   -0.73   -1.13   -1.31   -0.97    0.05    1.58    3.18    4.26    4.51    4.20    4.16    5.50
+   220.0    0.00   -0.10   -0.21   -0.26   -0.25   -0.27   -0.42   -0.75   -1.14   -1.31   -0.92    0.13    1.71    3.33    4.39    4.63    4.29    4.29    5.74
+   225.0    0.00   -0.12   -0.24   -0.30   -0.29   -0.31   -0.45   -0.77   -1.14   -1.29   -0.89    0.20    1.81    3.44    4.48    4.66    4.29    4.32    5.88
+   230.0    0.00   -0.13   -0.27   -0.33   -0.32   -0.34   -0.48   -0.78   -1.15   -1.27   -0.84    0.28    1.90    3.52    4.52    4.61    4.20    4.24    5.90
+   235.0    0.00   -0.15   -0.30   -0.37   -0.37   -0.38   -0.51   -0.80   -1.14   -1.25   -0.80    0.35    1.97    3.56    4.49    4.50    4.01    4.06    5.84
+   240.0    0.00   -0.16   -0.31   -0.40   -0.40   -0.41   -0.52   -0.82   -1.15   -1.23   -0.76    0.40    2.03    3.57    4.39    4.31    3.74    3.80    5.68
+   245.0    0.00   -0.17   -0.34   -0.43   -0.43   -0.44   -0.55   -0.83   -1.15   -1.22   -0.73    0.44    2.04    3.52    4.26    4.06    3.41    3.47    5.44
+   250.0    0.00   -0.18   -0.36   -0.45   -0.47   -0.46   -0.57   -0.84   -1.15   -1.21   -0.71    0.45    2.03    3.43    4.08    3.77    3.04    3.10    5.14
+   255.0    0.00   -0.18   -0.37   -0.48   -0.49   -0.49   -0.59   -0.86   -1.16   -1.22   -0.72    0.44    1.97    3.31    3.86    3.44    2.66    2.71    4.80
+   260.0    0.00   -0.18   -0.38   -0.49   -0.51   -0.51   -0.62   -0.88   -1.18   -1.22   -0.74    0.39    1.89    3.14    3.59    3.11    2.25    2.30    4.44
+   265.0    0.00   -0.19   -0.39   -0.51   -0.53   -0.53   -0.63   -0.90   -1.20   -1.25   -0.78    0.31    1.73    2.93    3.30    2.74    1.86    1.91    4.06
+   270.0    0.00   -0.19   -0.40   -0.53   -0.55   -0.55   -0.66   -0.93   -1.22   -1.30   -0.85    0.18    1.55    2.67    2.97    2.37    1.47    1.50    3.68
+   275.0    0.00   -0.19   -0.40   -0.53   -0.56   -0.57   -0.68   -0.95   -1.26   -1.35   -0.96    0.03    1.32    2.36    2.62    1.98    1.08    1.09    3.27
+   280.0    0.00   -0.19   -0.40   -0.54   -0.56   -0.58   -0.69   -0.97   -1.30   -1.42   -1.07   -0.16    1.04    2.02    2.24    1.58    0.66    0.68    2.84
+   285.0    0.00   -0.19   -0.39   -0.53   -0.56   -0.59   -0.71   -0.99   -1.33   -1.49   -1.20   -0.38    0.74    1.64    1.82    1.15    0.22    0.21    2.38
+   290.0    0.00   -0.19   -0.39   -0.52   -0.56   -0.59   -0.70   -1.00   -1.36   -1.56   -1.35   -0.60    0.41    1.24    1.39    0.71   -0.24   -0.29    1.86
+   295.0    0.00   -0.18   -0.38   -0.51   -0.55   -0.57   -0.70   -0.99   -1.37   -1.62   -1.48   -0.84    0.08    0.84    0.94    0.24   -0.74   -0.84    1.28
+   300.0    0.00   -0.18   -0.36   -0.49   -0.53   -0.55   -0.67   -0.97   -1.38   -1.67   -1.61   -1.06   -0.24    0.44    0.50   -0.23   -1.26   -1.44    0.64
+   305.0    0.00   -0.16   -0.34   -0.46   -0.50   -0.51   -0.63   -0.92   -1.34   -1.68   -1.70   -1.26   -0.53    0.08    0.09   -0.68   -1.79   -2.08   -0.05
+   310.0    0.00   -0.16   -0.32   -0.43   -0.45   -0.46   -0.57   -0.86   -1.28   -1.68   -1.76   -1.42   -0.79   -0.25   -0.28   -1.11   -2.31   -2.73   -0.77
+   315.0    0.00   -0.14   -0.30   -0.39   -0.40   -0.40   -0.48   -0.76   -1.21   -1.62   -1.79   -1.54   -0.99   -0.51   -0.59   -1.47   -2.79   -3.37   -1.51
+   320.0    0.00   -0.12   -0.27   -0.35   -0.35   -0.33   -0.40   -0.66   -1.10   -1.55   -1.76   -1.59   -1.11   -0.69   -0.82   -1.76   -3.19   -3.95   -2.21
+   325.0    0.00   -0.11   -0.24   -0.31   -0.28   -0.25   -0.29   -0.52   -0.96   -1.42   -1.69   -1.58   -1.17   -0.78   -0.95   -1.95   -3.50   -4.43   -2.84
+   330.0    0.00   -0.10   -0.22   -0.25   -0.21   -0.15   -0.17   -0.38   -0.79   -1.26   -1.56   -1.50   -1.13   -0.78   -0.97   -2.02   -3.69   -4.80   -3.37
+   335.0    0.00   -0.08   -0.18   -0.20   -0.15   -0.05   -0.04   -0.22   -0.60   -1.07   -1.39   -1.34   -1.00   -0.67   -0.89   -1.99   -3.75   -5.03   -3.77
+   340.0    0.00   -0.07   -0.14   -0.15   -0.07    0.05    0.09   -0.05   -0.40   -0.84   -1.14   -1.11   -0.78   -0.46   -0.68   -1.82   -3.67   -5.10   -4.02
+   345.0    0.00   -0.05   -0.11   -0.10   -0.01    0.14    0.22    0.12   -0.19   -0.59   -0.87   -0.81   -0.48   -0.15   -0.38   -1.55   -3.46   -5.01   -4.09
+   350.0    0.00   -0.04   -0.08   -0.05    0.06    0.23    0.34    0.28    0.02   -0.33   -0.55   -0.46   -0.09    0.25    0.01   -1.18   -3.15   -4.78   -3.98
+   355.0    0.00   -0.03   -0.05   -0.01    0.12    0.31    0.45    0.43    0.24   -0.05   -0.19   -0.05    0.37    0.72    0.48   -0.73   -2.73   -4.42   -3.72
+   360.0    0.00   -0.01   -0.02    0.03    0.18    0.38    0.54    0.57    0.42    0.22    0.16    0.40    0.88    1.25    1.00   -0.23   -2.25   -3.95   -3.32
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
+                                                            START OF ANTENNA    
+TRMR8_GNSS3     NONE                                        TYPE / SERIAL NO    
+ROBOT               Geo++ GmbH               5    25-MAR-11 METH / BY / # / DATE
+     5.0                                                    DAZI                
+     0.0  90.0   5.0                                        ZEN1 / ZEN2 / DZEN  
+     4                                                      # OF FREQUENCIES    
+IGS08_1645                                                  SINEX CODE          
+Number of Calibrated Antennas GPS:      005                 COMMENT             
+Number of Individual Calibrations GPS:  010                 COMMENT             
+Number of Calibrated Antennas GLO:      005                 COMMENT             
+Number of Individual Calibrations GLO:  012                 COMMENT             
+# GLONASS PCV                                               COMMENT             
+#  derived from Delta PCV per 25.0 MHz                      COMMENT             
+#  for frequency channel number k=0                         COMMENT             
+   G01                                                      START OF FREQUENCY  
+      0.93     -0.40     84.66                              NORTH / EAST / UP   
+   NOAZI    0.00    0.06    0.17    0.19   -0.03   -0.49   -1.03   -1.41   -1.47   -1.19   -0.75   -0.41   -0.35   -0.50   -0.58   -0.23    0.69    1.85    2.51
+     0.0    0.00   -0.01    0.02   -0.08   -0.42   -0.99   -1.59   -1.96   -1.89   -1.34   -0.50    0.33    0.86    1.04    1.06    1.19    1.63    2.22    2.44
+     5.0    0.00   -0.01    0.01   -0.09   -0.44   -1.01   -1.64   -2.05   -2.03   -1.54   -0.75    0.04    0.57    0.78    0.86    1.07    1.61    2.30    2.60
+    10.0    0.00   -0.02    0.00   -0.10   -0.45   -1.03   -1.68   -2.14   -2.17   -1.75   -1.03   -0.28    0.23    0.47    0.60    0.91    1.56    2.37    2.76
+    15.0    0.00   -0.02    0.00   -0.11   -0.45   -1.04   -1.71   -2.20   -2.30   -1.95   -1.30   -0.62   -0.13    0.10    0.28    0.68    1.47    2.42    2.93
+    20.0    0.00   -0.02    0.00   -0.11   -0.45   -1.04   -1.73   -2.25   -2.41   -2.13   -1.56   -0.95   -0.52   -0.30   -0.08    0.41    1.34    2.46    3.10
+    25.0    0.00   -0.02   -0.01   -0.11   -0.45   -1.04   -1.73   -2.28   -2.48   -2.27   -1.78   -1.26   -0.91   -0.72   -0.48    0.10    1.18    2.48    3.27
+    30.0    0.00   -0.02   -0.01   -0.10   -0.44   -1.02   -1.72   -2.28   -2.52   -2.37   -1.96   -1.54   -1.26   -1.13   -0.90   -0.24    0.98    2.47    3.43
+    35.0    0.00   -0.02    0.00   -0.09   -0.42   -1.00   -1.69   -2.26   -2.52   -2.42   -2.08   -1.75   -1.57   -1.52   -1.31   -0.60    0.75    2.43    3.57
+    40.0    0.00   -0.02    0.00   -0.08   -0.40   -0.97   -1.65   -2.22   -2.48   -2.41   -2.14   -1.89   -1.82   -1.85   -1.69   -0.95    0.50    2.35    3.67
+    45.0    0.00   -0.02    0.01   -0.07   -0.38   -0.94   -1.60   -2.15   -2.41   -2.36   -2.13   -1.95   -1.98   -2.11   -2.01   -1.28    0.24    2.23    3.72
+    50.0    0.00   -0.01    0.01   -0.06   -0.36   -0.90   -1.54   -2.07   -2.31   -2.25   -2.05   -1.93   -2.04   -2.27   -2.26   -1.57   -0.01    2.07    3.70
+    55.0    0.00   -0.01    0.02   -0.05   -0.34   -0.86   -1.48   -1.98   -2.20   -2.12   -1.91   -1.83   -2.01   -2.33   -2.41   -1.79   -0.25    1.88    3.62
+    60.0    0.00   -0.01    0.03   -0.03   -0.31   -0.82   -1.42   -1.89   -2.07   -1.95   -1.74   -1.67   -1.89   -2.29   -2.46   -1.93   -0.45    1.67    3.48
+    65.0    0.00    0.00    0.04   -0.01   -0.29   -0.78   -1.36   -1.80   -1.93   -1.78   -1.53   -1.45   -1.70   -2.15   -2.41   -1.97   -0.59    1.47    3.30
+    70.0    0.00    0.00    0.05    0.00   -0.26   -0.74   -1.30   -1.71   -1.81   -1.61   -1.31   -1.21   -1.45   -1.93   -2.26   -1.93   -0.66    1.30    3.10
+    75.0    0.00    0.01    0.06    0.02   -0.23   -0.70   -1.24   -1.63   -1.69   -1.45   -1.10   -0.95   -1.16   -1.65   -2.02   -1.79   -0.66    1.18    2.91
+    80.0    0.00    0.01    0.08    0.04   -0.20   -0.67   -1.19   -1.55   -1.59   -1.30   -0.91   -0.70   -0.86   -1.32   -1.72   -1.56   -0.56    1.12    2.76
+    85.0    0.00    0.02    0.09    0.07   -0.17   -0.62   -1.14   -1.49   -1.50   -1.18   -0.74   -0.46   -0.57   -0.98   -1.37   -1.28   -0.39    1.15    2.68
+    90.0    0.00    0.03    0.10    0.09   -0.14   -0.58   -1.09   -1.43   -1.42   -1.08   -0.59   -0.27   -0.30   -0.66   -1.02   -0.94   -0.15    1.26    2.67
+    95.0    0.00    0.03    0.12    0.12   -0.10   -0.53   -1.03   -1.37   -1.35   -1.00   -0.48   -0.11   -0.07   -0.36   -0.67   -0.59    0.15    1.44    2.75
+   100.0    0.00    0.04    0.14    0.15   -0.06   -0.48   -0.97   -1.30   -1.29   -0.93   -0.40    0.02    0.11   -0.10   -0.35   -0.25    0.47    1.68    2.90
+   105.0    0.00    0.05    0.15    0.18   -0.02   -0.43   -0.91   -1.24   -1.23   -0.86   -0.33    0.11    0.24    0.09   -0.09    0.06    0.78    1.96    3.10
+   110.0    0.00    0.05    0.17    0.21    0.03   -0.37   -0.84   -1.16   -1.16   -0.80   -0.27    0.17    0.34    0.23    0.11    0.32    1.06    2.22    3.32
+   115.0    0.00    0.06    0.19    0.24    0.08   -0.30   -0.76   -1.08   -1.08   -0.73   -0.22    0.22    0.39    0.32    0.24    0.50    1.28    2.45    3.53
+   120.0    0.00    0.07    0.21    0.27    0.12   -0.24   -0.69   -1.00   -0.99   -0.66   -0.16    0.26    0.42    0.35    0.30    0.59    1.40    2.59    3.67
+   125.0    0.00    0.08    0.22    0.30    0.17   -0.18   -0.61   -0.91   -0.90   -0.58   -0.09    0.30    0.43    0.34    0.29    0.59    1.43    2.64    3.72
+   130.0    0.00    0.08    0.24    0.33    0.21   -0.12   -0.53   -0.82   -0.81   -0.49   -0.02    0.34    0.43    0.31    0.22    0.50    1.35    2.57    3.65
+   135.0    0.00    0.09    0.25    0.35    0.25   -0.06   -0.46   -0.73   -0.71   -0.40    0.05    0.38    0.43    0.25    0.10    0.35    1.16    2.37    3.44
+   140.0    0.00    0.09    0.27    0.38    0.29   -0.01   -0.39   -0.65   -0.63   -0.32    0.12    0.42    0.42    0.17   -0.05    0.13    0.89    2.06    3.11
+   145.0    0.00    0.10    0.28    0.40    0.32    0.03   -0.34   -0.59   -0.56   -0.24    0.18    0.45    0.40    0.09   -0.21   -0.12    0.55    1.66    2.67
+   150.0    0.00    0.11    0.29    0.42    0.35    0.07   -0.30   -0.54   -0.50   -0.19    0.22    0.47    0.38    0.00   -0.38   -0.39    0.19    1.21    2.16
+   155.0    0.00    0.11    0.30    0.43    0.37    0.09   -0.27   -0.51   -0.47   -0.16    0.24    0.48    0.35   -0.08   -0.54   -0.64   -0.17    0.75    1.61
+   160.0    0.00    0.11    0.31    0.44    0.38    0.11   -0.25   -0.49   -0.46   -0.15    0.24    0.46    0.31   -0.16   -0.68   -0.87   -0.49    0.32    1.08
+   165.0    0.00    0.12    0.31    0.44    0.39    0.12   -0.24   -0.49   -0.46   -0.17    0.21    0.41    0.25   -0.24   -0.80   -1.04   -0.76   -0.05    0.62
+   170.0    0.00    0.12    0.31    0.44    0.38    0.11   -0.25   -0.50   -0.49   -0.22    0.15    0.34    0.18   -0.32   -0.88   -1.16   -0.94   -0.31    0.26
+   175.0    0.00    0.12    0.31    0.44    0.38    0.10   -0.27   -0.53   -0.54   -0.28    0.07    0.25    0.09   -0.39   -0.94   -1.22   -1.02   -0.45    0.03
+   180.0    0.00    0.12    0.31    0.44    0.36    0.08   -0.29   -0.57   -0.59   -0.36   -0.03    0.15    0.00   -0.46   -0.97   -1.22   -1.01   -0.47   -0.04
+   185.0    0.00    0.12    0.31    0.43    0.35    0.06   -0.33   -0.62   -0.66   -0.44   -0.13    0.03   -0.11   -0.52   -0.98   -1.16   -0.91   -0.35    0.04
+   190.0    0.00    0.12    0.31    0.41    0.32    0.02   -0.38   -0.68   -0.73   -0.54   -0.25   -0.09   -0.21   -0.59   -0.97   -1.07   -0.74   -0.13    0.26
+   195.0    0.00    0.12    0.30    0.40    0.30   -0.02   -0.43   -0.74   -0.81   -0.64   -0.36   -0.21   -0.33   -0.66   -0.97   -0.96   -0.51    0.18    0.61
+   200.0    0.00    0.12    0.29    0.38    0.27   -0.06   -0.49   -0.81   -0.90   -0.73   -0.48   -0.34   -0.44   -0.73   -0.96   -0.85   -0.26    0.56    1.04
+   205.0    0.00    0.12    0.29    0.36    0.23   -0.11   -0.55   -0.89   -0.98   -0.83   -0.59   -0.46   -0.56   -0.82   -0.98   -0.74   -0.01    0.96    1.53
+   210.0    0.00    0.12    0.28    0.34    0.20   -0.17   -0.62   -0.97   -1.07   -0.93   -0.70   -0.58   -0.68   -0.92   -1.01   -0.66    0.23    1.36    2.05
+   215.0    0.00    0.12    0.27    0.32    0.16   -0.22   -0.69   -1.05   -1.16   -1.03   -0.81   -0.70   -0.81   -1.04   -1.08   -0.62    0.43    1.74    2.55
+   220.0    0.00    0.12    0.26    0.31    0.13   -0.27   -0.76   -1.14   -1.26   -1.13   -0.92   -0.83   -0.95   -1.17   -1.17   -0.61    0.59    2.08    3.02
+   225.0    0.00    0.11    0.26    0.29    0.09   -0.32   -0.83   -1.22   -1.35   -1.24   -1.03   -0.96   -1.10   -1.33   -1.29   -0.64    0.71    2.36    3.42
+   230.0    0.00    0.11    0.25    0.27    0.07   -0.37   -0.90   -1.30   -1.45   -1.34   -1.15   -1.09   -1.25   -1.49   -1.43   -0.71    0.77    2.58    3.75
+   235.0    0.00    0.11    0.25    0.26    0.04   -0.41   -0.96   -1.38   -1.54   -1.44   -1.27   -1.23   -1.41   -1.65   -1.58   -0.79    0.80    2.73    3.98
+   240.0    0.00    0.11    0.24    0.25    0.02   -0.45   -1.01   -1.45   -1.62   -1.54   -1.38   -1.36   -1.55   -1.81   -1.72   -0.88    0.79    2.82    4.12
+   245.0    0.00    0.10    0.24    0.24    0.01   -0.47   -1.05   -1.51   -1.70   -1.63   -1.48   -1.47   -1.68   -1.94   -1.84   -0.97    0.76    2.84    4.16
+   250.0    0.00    0.10    0.23    0.24    0.00   -0.49   -1.08   -1.56   -1.76   -1.71   -1.57   -1.56   -1.77   -2.03   -1.92   -1.03    0.72    2.81    4.11
+   255.0    0.00    0.10    0.23    0.23   -0.01   -0.50   -1.10   -1.59   -1.81   -1.76   -1.63   -1.62   -1.82   -2.07   -1.95   -1.07    0.67    2.72    3.96
+   260.0    0.00    0.09    0.22    0.23   -0.01   -0.50   -1.11   -1.61   -1.83   -1.79   -1.65   -1.63   -1.82   -2.05   -1.93   -1.06    0.62    2.59    3.73
+   265.0    0.00    0.09    0.22    0.23   -0.01   -0.50   -1.11   -1.61   -1.84   -1.80   -1.64   -1.60   -1.75   -1.96   -1.84   -1.01    0.58    2.43    3.42
+   270.0    0.00    0.09    0.22    0.23   -0.01   -0.50   -1.10   -1.60   -1.83   -1.78   -1.60   -1.51   -1.62   -1.80   -1.68   -0.92    0.55    2.23    3.06
+   275.0    0.00    0.08    0.21    0.23    0.00   -0.49   -1.09   -1.59   -1.80   -1.73   -1.51   -1.37   -1.43   -1.57   -1.47   -0.78    0.54    2.02    2.66
+   280.0    0.00    0.08    0.21    0.22    0.00   -0.49   -1.08   -1.57   -1.76   -1.65   -1.38   -1.19   -1.19   -1.29   -1.21   -0.62    0.54    1.81    2.25
+   285.0    0.00    0.07    0.20    0.22   -0.01   -0.48   -1.07   -1.54   -1.71   -1.56   -1.23   -0.96   -0.90   -0.97   -0.91   -0.42    0.55    1.60    1.85
+   290.0    0.00    0.07    0.19    0.21   -0.01   -0.49   -1.06   -1.51   -1.65   -1.44   -1.05   -0.71   -0.58   -0.63   -0.60   -0.22    0.58    1.41    1.49
+   295.0    0.00    0.06    0.18    0.20   -0.03   -0.50   -1.06   -1.49   -1.58   -1.32   -0.85   -0.44   -0.25   -0.27   -0.28    0.00    0.62    1.26    1.18
+   300.0    0.00    0.06    0.17    0.18   -0.05   -0.51   -1.07   -1.47   -1.52   -1.19   -0.65   -0.16    0.08    0.07    0.03    0.20    0.68    1.15    0.94
+   305.0    0.00    0.05    0.16    0.16   -0.07   -0.54   -1.08   -1.45   -1.46   -1.07   -0.46    0.10    0.39    0.40    0.31    0.40    0.75    1.09    0.80
+   310.0    0.00    0.05    0.15    0.14   -0.10   -0.57   -1.10   -1.44   -1.40   -0.95   -0.27    0.35    0.68    0.69    0.57    0.58    0.83    1.08    0.74
+   315.0    0.00    0.04    0.13    0.12   -0.13   -0.60   -1.13   -1.44   -1.36   -0.85   -0.11    0.57    0.93    0.94    0.79    0.74    0.93    1.12    0.77
+   320.0    0.00    0.04    0.12    0.09   -0.16   -0.64   -1.16   -1.46   -1.33   -0.77    0.03    0.75    1.13    1.14    0.97    0.89    1.03    1.20    0.88
+   325.0    0.00    0.03    0.10    0.07   -0.20   -0.69   -1.20   -1.48   -1.32   -0.72    0.12    0.88    1.29    1.30    1.11    1.01    1.14    1.32    1.04
+   330.0    0.00    0.02    0.09    0.04   -0.24   -0.73   -1.25   -1.52   -1.33   -0.70    0.18    0.97    1.40    1.41    1.22    1.11    1.25    1.46    1.24
+   335.0    0.00    0.02    0.08    0.02   -0.28   -0.78   -1.30   -1.56   -1.37   -0.71    0.19    1.00    1.45    1.48    1.29    1.19    1.35    1.61    1.47
+   340.0    0.00    0.01    0.06   -0.01   -0.31   -0.83   -1.36   -1.63   -1.43   -0.77    0.15    0.98    1.45    1.50    1.33    1.25    1.45    1.76    1.69
+   345.0    0.00    0.01    0.05   -0.03   -0.35   -0.87   -1.42   -1.70   -1.52   -0.86    0.06    0.90    1.39    1.47    1.33    1.29    1.53    1.90    1.90
+   350.0    0.00    0.00    0.04   -0.05   -0.38   -0.92   -1.48   -1.78   -1.62   -0.99   -0.08    0.76    1.27    1.38    1.29    1.29    1.59    2.02    2.10
+   355.0    0.00    0.00    0.02   -0.07   -0.40   -0.96   -1.54   -1.87   -1.75   -1.15   -0.27    0.57    1.10    1.24    1.20    1.26    1.62    2.13    2.28
+   360.0    0.00   -0.01    0.02   -0.08   -0.42   -0.99   -1.59   -1.96   -1.89   -1.34   -0.50    0.33    0.86    1.04    1.06    1.19    1.63    2.22    2.44
+   G01                                                      END OF FREQUENCY    
+   G02                                                      START OF FREQUENCY  
+     -0.92     -0.37     73.39                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.03   -0.10   -0.18   -0.27   -0.38   -0.57   -0.84   -1.11   -1.19   -0.89   -0.18    0.75    1.49    1.55    0.78   -0.44   -1.07    0.23
+     0.0    0.00   -0.05   -0.12   -0.15   -0.09    0.04    0.15    0.12   -0.09   -0.38   -0.59   -0.55   -0.29   -0.08   -0.34   -1.40   -3.09   -4.45   -3.72
+     5.0    0.00   -0.04   -0.10   -0.11   -0.02    0.14    0.28    0.30    0.15   -0.07   -0.21   -0.11    0.19    0.42    0.14   -0.97   -2.73   -4.16   -3.49
+    10.0    0.00   -0.03   -0.08   -0.07    0.04    0.23    0.40    0.46    0.37    0.23    0.18    0.36    0.73    0.98    0.67   -0.48   -2.28   -3.74   -3.08
+    15.0    0.00   -0.02   -0.05   -0.03    0.09    0.29    0.49    0.59    0.56    0.50    0.56    0.85    1.29    1.58    1.26    0.07   -1.76   -3.20   -2.50
+    20.0    0.00   -0.01   -0.03    0.00    0.14    0.34    0.55    0.68    0.71    0.74    0.92    1.33    1.87    2.20    1.88    0.66   -1.17   -2.56   -1.79
+    25.0    0.00    0.00   -0.01    0.03    0.17    0.37    0.58    0.72    0.80    0.93    1.23    1.77    2.42    2.81    2.51    1.28   -0.53   -1.84   -0.96
+    30.0    0.00    0.00    0.00    0.05    0.19    0.38    0.58    0.72    0.84    1.05    1.48    2.16    2.93    3.40    3.12    1.90    0.14   -1.07   -0.06
+    35.0    0.00    0.01    0.02    0.07    0.20    0.37    0.55    0.68    0.83    1.11    1.65    2.47    3.37    3.93    3.70    2.51    0.81   -0.27    0.87
+    40.0    0.00    0.02    0.03    0.08    0.19    0.35    0.49    0.61    0.76    1.09    1.73    2.68    3.71    4.37    4.20    3.07    1.45    0.51    1.77
+    45.0    0.00    0.02    0.04    0.09    0.18    0.31    0.41    0.49    0.64    1.00    1.72    2.78    3.92    4.68    4.60    3.54    2.03    1.22    2.60
+    50.0    0.00    0.03    0.05    0.09    0.17    0.26    0.32    0.36    0.47    0.84    1.61    2.75    4.00    4.86    4.87    3.90    2.50    1.83    3.31
+    55.0    0.00    0.03    0.05    0.08    0.14    0.20    0.21    0.20    0.27    0.62    1.40    2.60    3.93    4.88    4.98    4.12    2.83    2.28    3.85
+    60.0    0.00    0.04    0.05    0.08    0.12    0.14    0.10    0.03    0.05    0.35    1.11    2.33    3.71    4.74    4.93    4.16    2.98    2.55    4.19
+    65.0    0.00    0.04    0.05    0.07    0.09    0.07   -0.01   -0.14   -0.20    0.04    0.75    1.96    3.36    4.44    4.70    4.02    2.94    2.61    4.31
+    70.0    0.00    0.04    0.05    0.05    0.06    0.01   -0.12   -0.32   -0.46   -0.30    0.34    1.50    2.89    4.00    4.31    3.70    2.68    2.42    4.19
+    75.0    0.00    0.04    0.05    0.04    0.02   -0.05   -0.23   -0.49   -0.71   -0.65   -0.10    0.98    2.34    3.44    3.78    3.20    2.22    2.01    3.83
+    80.0    0.00    0.04    0.04    0.02   -0.01   -0.11   -0.33   -0.65   -0.96   -1.00   -0.56    0.44    1.73    2.80    3.13    2.55    1.58    1.38    3.25
+    85.0    0.00    0.04    0.03    0.00   -0.05   -0.17   -0.42   -0.80   -1.19   -1.34   -1.00   -0.11    1.10    2.12    2.41    1.79    0.78    0.56    2.47
+    90.0    0.00    0.04    0.03   -0.02   -0.08   -0.22   -0.51   -0.94   -1.40   -1.64   -1.41   -0.63    0.50    1.44    1.66    0.98   -0.12   -0.40    1.53
+    95.0    0.00    0.04    0.02   -0.04   -0.12   -0.28   -0.59   -1.06   -1.58   -1.91   -1.78   -1.09   -0.06    0.80    0.94    0.15   -1.05   -1.43    0.48
+   100.0    0.00    0.04    0.01   -0.06   -0.15   -0.33   -0.66   -1.17   -1.74   -2.13   -2.08   -1.48   -0.54    0.23    0.27   -0.63   -1.97   -2.48   -0.61
+   105.0    0.00    0.03    0.00   -0.08   -0.18   -0.37   -0.72   -1.25   -1.86   -2.31   -2.32   -1.79   -0.92   -0.23   -0.29   -1.32   -2.81   -3.47   -1.68
+   110.0    0.00    0.03   -0.01   -0.10   -0.21   -0.41   -0.78   -1.32   -1.95   -2.43   -2.48   -2.01   -1.20   -0.58   -0.72   -1.86   -3.51   -4.34   -2.67
+   115.0    0.00    0.03   -0.02   -0.11   -0.24   -0.45   -0.82   -1.37   -2.01   -2.51   -2.58   -2.14   -1.37   -0.80   -1.01   -2.25   -4.02   -5.03   -3.51
+   120.0    0.00    0.03   -0.03   -0.13   -0.27   -0.48   -0.85   -1.41   -2.04   -2.54   -2.62   -2.19   -1.45   -0.90   -1.15   -2.45   -4.34   -5.50   -4.16
+   125.0    0.00    0.02   -0.04   -0.15   -0.29   -0.51   -0.88   -1.42   -2.05   -2.53   -2.60   -2.17   -1.43   -0.89   -1.15   -2.47   -4.43   -5.73   -4.57
+   130.0    0.00    0.02   -0.05   -0.16   -0.31   -0.53   -0.89   -1.42   -2.03   -2.49   -2.55   -2.10   -1.35   -0.79   -1.02   -2.33   -4.31   -5.71   -4.73
+   135.0    0.00    0.01   -0.06   -0.17   -0.32   -0.54   -0.90   -1.41   -1.99   -2.43   -2.46   -1.99   -1.22   -0.62   -0.79   -2.04   -3.99   -5.44   -4.62
+   140.0    0.00    0.01   -0.06   -0.18   -0.33   -0.55   -0.89   -1.39   -1.95   -2.35   -2.36   -1.86   -1.05   -0.40   -0.49   -1.64   -3.51   -4.96   -4.25
+   145.0    0.00    0.01   -0.07   -0.19   -0.34   -0.55   -0.89   -1.36   -1.89   -2.27   -2.24   -1.72   -0.86   -0.14   -0.13   -1.15   -2.91   -4.31   -3.66
+   150.0    0.00    0.00   -0.08   -0.20   -0.34   -0.55   -0.87   -1.33   -1.84   -2.18   -2.13   -1.57   -0.67    0.12    0.24   -0.62   -2.23   -3.52   -2.89
+   155.0    0.00    0.00   -0.08   -0.20   -0.35   -0.55   -0.86   -1.30   -1.78   -2.10   -2.01   -1.42   -0.48    0.39    0.63   -0.08   -1.50   -2.66   -1.99
+   160.0    0.00    0.00   -0.09   -0.21   -0.35   -0.55   -0.85   -1.27   -1.73   -2.02   -1.90   -1.28   -0.29    0.64    1.00    0.45   -0.78   -1.76   -1.01
+   165.0    0.00   -0.01   -0.09   -0.21   -0.35   -0.54   -0.84   -1.25   -1.68   -1.94   -1.79   -1.14   -0.11    0.89    1.35    0.96   -0.08   -0.88   -0.02
+   170.0    0.00   -0.01   -0.10   -0.22   -0.36   -0.54   -0.83   -1.23   -1.64   -1.87   -1.69   -1.00    0.07    1.12    1.68    1.43    0.57   -0.05    0.94
+   175.0    0.00   -0.02   -0.10   -0.22   -0.36   -0.55   -0.83   -1.21   -1.60   -1.79   -1.58   -0.85    0.25    1.35    1.98    1.85    1.15    0.71    1.82
+   180.0    0.00   -0.02   -0.11   -0.23   -0.37   -0.56   -0.83   -1.20   -1.56   -1.72   -1.47   -0.71    0.43    1.56    2.25    2.22    1.66    1.37    2.58
+   185.0    0.00   -0.03   -0.12   -0.24   -0.38   -0.57   -0.84   -1.19   -1.53   -1.65   -1.35   -0.56    0.61    1.77    2.49    2.54    2.09    1.93    3.21
+   190.0    0.00   -0.03   -0.12   -0.25   -0.40   -0.59   -0.86   -1.19   -1.49   -1.57   -1.23   -0.40    0.79    1.97    2.72    2.81    2.45    2.38    3.70
+   195.0    0.00   -0.04   -0.13   -0.26   -0.41   -0.61   -0.87   -1.19   -1.46   -1.50   -1.11   -0.24    0.97    2.15    2.91    3.03    2.73    2.73    4.05
+   200.0    0.00   -0.04   -0.14   -0.28   -0.44   -0.63   -0.90   -1.20   -1.43   -1.43   -0.99   -0.09    1.14    2.33    3.08    3.21    2.94    2.98    4.27
+   205.0    0.00   -0.05   -0.15   -0.29   -0.46   -0.66   -0.92   -1.21   -1.41   -1.36   -0.88    0.07    1.31    2.49    3.22    3.34    3.08    3.14    4.38
+   210.0    0.00   -0.05   -0.16   -0.31   -0.48   -0.69   -0.95   -1.22   -1.39   -1.30   -0.77    0.21    1.46    2.63    3.33    3.42    3.16    3.21    4.40
+   215.0    0.00   -0.06   -0.17   -0.32   -0.51   -0.73   -0.99   -1.24   -1.39   -1.25   -0.67    0.34    1.60    2.75    3.42    3.46    3.16    3.21    4.36
+   220.0    0.00   -0.06   -0.18   -0.34   -0.53   -0.76   -1.02   -1.27   -1.39   -1.21   -0.59    0.45    1.73    2.85    3.47    3.45    3.11    3.14    4.26
+   225.0    0.00   -0.07   -0.19   -0.36   -0.56   -0.79   -1.05   -1.30   -1.40   -1.18   -0.53    0.55    1.83    2.93    3.49    3.40    3.00    3.01    4.13
+   230.0    0.00   -0.07   -0.20   -0.38   -0.58   -0.82   -1.09   -1.33   -1.41   -1.18   -0.49    0.62    1.92    2.99    3.48    3.30    2.84    2.83    3.97
+   235.0    0.00   -0.08   -0.21   -0.39   -0.60   -0.85   -1.12   -1.36   -1.44   -1.19   -0.47    0.68    1.98    3.03    3.45    3.18    2.63    2.60    3.81
+   240.0    0.00   -0.08   -0.22   -0.41   -0.62   -0.87   -1.15   -1.40   -1.47   -1.21   -0.46    0.71    2.02    3.05    3.40    3.03    2.39    2.34    3.64
+   245.0    0.00   -0.09   -0.23   -0.42   -0.64   -0.89   -1.17   -1.43   -1.51   -1.24   -0.48    0.71    2.04    3.05    3.33    2.85    2.12    2.06    3.46
+   250.0    0.00   -0.09   -0.24   -0.43   -0.65   -0.90   -1.19   -1.45   -1.55   -1.28   -0.51    0.70    2.04    3.02    3.23    2.66    1.84    1.76    3.29
+   255.0    0.00   -0.10   -0.25   -0.44   -0.66   -0.91   -1.20   -1.47   -1.58   -1.32   -0.56    0.65    2.00    2.96    3.11    2.44    1.54    1.46    3.11
+   260.0    0.00   -0.10   -0.26   -0.45   -0.66   -0.91   -1.20   -1.48   -1.61   -1.37   -0.62    0.59    1.92    2.86    2.97    2.22    1.24    1.15    2.93
+   265.0    0.00   -0.11   -0.27   -0.46   -0.67   -0.91   -1.19   -1.49   -1.63   -1.42   -0.70    0.49    1.81    2.73    2.78    1.97    0.94    0.85    2.76
+   270.0    0.00   -0.11   -0.28   -0.47   -0.67   -0.90   -1.18   -1.48   -1.65   -1.48   -0.79    0.37    1.66    2.54    2.56    1.70    0.62    0.55    2.58
+   275.0    0.00   -0.11   -0.28   -0.47   -0.67   -0.89   -1.17   -1.47   -1.66   -1.53   -0.89    0.21    1.46    2.30    2.29    1.40    0.31    0.25    2.39
+   280.0    0.00   -0.12   -0.29   -0.48   -0.67   -0.88   -1.15   -1.45   -1.67   -1.58   -1.01    0.03    1.21    2.02    1.97    1.07   -0.02   -0.05    2.19
+   285.0    0.00   -0.12   -0.29   -0.48   -0.66   -0.86   -1.12   -1.44   -1.68   -1.64   -1.14   -0.18    0.93    1.68    1.62    0.71   -0.37   -0.37    1.97
+   290.0    0.00   -0.12   -0.30   -0.49   -0.66   -0.85   -1.10   -1.41   -1.68   -1.69   -1.27   -0.41    0.61    1.31    1.22    0.32   -0.73   -0.69    1.72
+   295.0    0.00   -0.12   -0.30   -0.49   -0.66   -0.84   -1.08   -1.39   -1.68   -1.75   -1.41   -0.66    0.27    0.90    0.80   -0.09   -1.11   -1.04    1.43
+   300.0    0.00   -0.12   -0.30   -0.48   -0.65   -0.82   -1.05   -1.36   -1.68   -1.80   -1.56   -0.90   -0.08    0.49    0.36   -0.50   -1.50   -1.41    1.10
+   305.0    0.00   -0.12   -0.30   -0.48   -0.64   -0.80   -1.02   -1.33   -1.67   -1.85   -1.69   -1.15   -0.42    0.08   -0.07   -0.91   -1.89   -1.81    0.71
+   310.0    0.00   -0.12   -0.29   -0.47   -0.62   -0.77   -0.98   -1.29   -1.65   -1.88   -1.81   -1.37   -0.74   -0.31   -0.47   -1.30   -2.28   -2.23    0.26
+   315.0    0.00   -0.11   -0.29   -0.46   -0.60   -0.74   -0.93   -1.24   -1.61   -1.90   -1.91   -1.57   -1.03   -0.65   -0.83   -1.65   -2.64   -2.65   -0.24
+   320.0    0.00   -0.11   -0.28   -0.44   -0.57   -0.69   -0.87   -1.17   -1.56   -1.88   -1.97   -1.72   -1.26   -0.94   -1.12   -1.95   -2.97   -3.08   -0.79
+   325.0    0.00   -0.10   -0.26   -0.42   -0.54   -0.64   -0.79   -1.08   -1.47   -1.84   -1.99   -1.82   -1.44   -1.15   -1.34   -2.18   -3.25   -3.49   -1.36
+   330.0    0.00   -0.10   -0.25   -0.40   -0.49   -0.57   -0.70   -0.96   -1.36   -1.75   -1.96   -1.86   -1.53   -1.27   -1.48   -2.32   -3.47   -3.87   -1.94
+   335.0    0.00   -0.09   -0.23   -0.36   -0.44   -0.48   -0.58   -0.82   -1.21   -1.62   -1.87   -1.83   -1.55   -1.31   -1.52   -2.39   -3.62   -4.19   -2.48
+   340.0    0.00   -0.08   -0.21   -0.33   -0.38   -0.39   -0.45   -0.66   -1.03   -1.45   -1.73   -1.72   -1.47   -1.25   -1.46   -2.36   -3.69   -4.45   -2.97
+   345.0    0.00   -0.07   -0.19   -0.29   -0.31   -0.29   -0.31   -0.48   -0.82   -1.23   -1.52   -1.54   -1.31   -1.09   -1.31   -2.25   -3.67   -4.61   -3.37
+   350.0    0.00   -0.07   -0.17   -0.24   -0.24   -0.18   -0.16   -0.28   -0.59   -0.97   -1.26   -1.28   -1.05   -0.84   -1.07   -2.04   -3.57   -4.68   -3.64
+   355.0    0.00   -0.06   -0.15   -0.20   -0.16   -0.07    0.00   -0.08   -0.34   -0.69   -0.94   -0.95   -0.71   -0.50   -0.75   -1.76   -3.37   -4.63   -3.76
+   360.0    0.00   -0.05   -0.12   -0.15   -0.09    0.04    0.15    0.12   -0.09   -0.38   -0.59   -0.55   -0.29   -0.08   -0.34   -1.40   -3.09   -4.45   -3.72
+   G02                                                      END OF FREQUENCY    
+   R01                                                      START OF FREQUENCY  
+      0.93     -0.40     84.66                              NORTH / EAST / UP   
+   NOAZI    0.00    0.04    0.07    0.01   -0.27   -0.78   -1.34   -1.71   -1.76   -1.48   -1.03   -0.68   -0.61   -0.74   -0.84   -0.52    0.37    1.57    2.41
+     0.0    0.00    0.01    0.03   -0.09   -0.45   -1.05   -1.69   -2.09   -2.04   -1.50   -0.64    0.22    0.79    0.98    1.00    1.14    1.65    2.40    2.81
+     5.0    0.00    0.02    0.03   -0.08   -0.45   -1.04   -1.69   -2.12   -2.14   -1.66   -0.86   -0.05    0.51    0.72    0.79    1.00    1.59    2.42    2.88
+    10.0    0.00    0.01    0.03   -0.08   -0.44   -1.03   -1.69   -2.17   -2.22   -1.82   -1.10   -0.34    0.17    0.41    0.50    0.80    1.47    2.39    2.92
+    15.0    0.00    0.01    0.04   -0.08   -0.43   -1.02   -1.69   -2.20   -2.31   -1.98   -1.35   -0.67   -0.18    0.03    0.16    0.52    1.30    2.30    2.95
+    20.0    0.00    0.01    0.04   -0.08   -0.42   -1.00   -1.69   -2.22   -2.39   -2.14   -1.58   -0.98   -0.56   -0.37   -0.22    0.20    1.05    2.19    2.97
+    25.0    0.00    0.02    0.03   -0.07   -0.41   -0.99   -1.68   -2.23   -2.44   -2.25   -1.78   -1.28   -0.94   -0.78   -0.63   -0.18    0.79    2.05    3.00
+    30.0    0.00    0.02    0.03   -0.06   -0.40   -0.97   -1.66   -2.22   -2.47   -2.34   -1.95   -1.54   -1.27   -1.18   -1.06   -0.56    0.48    1.90    3.05
+    35.0    0.00    0.02    0.04   -0.05   -0.39   -0.96   -1.64   -2.21   -2.47   -2.39   -2.06   -1.73   -1.55   -1.54   -1.46   -0.96    0.17    1.74    3.09
+    40.0    0.00    0.02    0.04   -0.05   -0.38   -0.95   -1.62   -2.18   -2.45   -2.38   -2.11   -1.84   -1.76   -1.84   -1.82   -1.32   -0.15    1.57    3.13
+    45.0    0.00    0.02    0.05   -0.05   -0.38   -0.94   -1.59   -2.14   -2.40   -2.34   -2.09   -1.88   -1.88   -2.06   -2.11   -1.64   -0.43    1.41    3.15
+    50.0    0.00    0.03    0.04   -0.05   -0.38   -0.93   -1.57   -2.09   -2.32   -2.24   -2.01   -1.83   -1.91   -2.17   -2.32   -1.91   -0.67    1.25    3.13
+    55.0    0.00    0.02    0.05   -0.06   -0.38   -0.92   -1.54   -2.03   -2.24   -2.13   -1.87   -1.72   -1.86   -2.21   -2.44   -2.09   -0.86    1.10    3.06
+    60.0    0.00    0.02    0.05   -0.05   -0.37   -0.92   -1.53   -1.99   -2.13   -1.97   -1.70   -1.56   -1.73   -2.15   -2.46   -2.19   -0.99    0.97    2.94
+    65.0    0.00    0.03    0.05   -0.05   -0.39   -0.91   -1.50   -1.92   -2.02   -1.81   -1.50   -1.34   -1.55   -2.02   -2.40   -2.17   -1.04    0.86    2.78
+    70.0    0.00    0.03    0.05   -0.05   -0.38   -0.90   -1.47   -1.86   -1.92   -1.65   -1.28   -1.11   -1.32   -1.82   -2.26   -2.10   -1.02    0.80    2.59
+    75.0    0.00    0.03    0.05   -0.04   -0.37   -0.88   -1.43   -1.80   -1.81   -1.50   -1.09   -0.89   -1.07   -1.59   -2.04   -1.93   -0.94    0.79    2.40
+    80.0    0.00    0.03    0.07   -0.05   -0.36   -0.87   -1.40   -1.73   -1.72   -1.36   -0.92   -0.68   -0.84   -1.32   -1.78   -1.70   -0.77    0.80    2.24
+    85.0    0.00    0.04    0.07   -0.03   -0.34   -0.84   -1.37   -1.69   -1.65   -1.27   -0.78   -0.49   -0.61   -1.05   -1.48   -1.42   -0.56    0.88    2.13
+    90.0    0.00    0.04    0.07   -0.02   -0.33   -0.82   -1.33   -1.64   -1.58   -1.20   -0.68   -0.37   -0.42   -0.81   -1.19   -1.10   -0.31    1.02    2.07
+    95.0    0.00    0.04    0.08   -0.01   -0.30   -0.79   -1.30   -1.60   -1.54   -1.15   -0.62   -0.27   -0.26   -0.58   -0.89   -0.79   -0.02    1.20    2.12
+   100.0    0.00    0.04    0.09    0.01   -0.27   -0.75   -1.25   -1.56   -1.51   -1.13   -0.60   -0.21   -0.16   -0.39   -0.63   -0.48    0.27    1.40    2.24
+   105.0    0.00    0.05    0.09    0.03   -0.25   -0.72   -1.21   -1.53   -1.50   -1.13   -0.61   -0.19   -0.09   -0.25   -0.41   -0.22    0.52    1.63    2.43
+   110.0    0.00    0.04    0.11    0.05   -0.21   -0.67   -1.16   -1.48   -1.48   -1.13   -0.62   -0.20   -0.04   -0.15   -0.24   -0.32    0.75    1.84    2.66
+   115.0    0.00    0.05    0.12    0.07   -0.18   -0.62   -1.10   -1.44   -1.45   -1.12   -0.65   -0.22   -0.04   -0.08   -0.13    0.15    0.92    2.00    2.90
+   120.0    0.00    0.05    0.12    0.09   -0.15   -0.57   -1.06   -1.39   -1.42   -1.12   -0.65   -0.23   -0.05   -0.06   -0.07    0.22    0.99    2.10    3.10
+   125.0    0.00    0.06    0.12    0.11   -0.12   -0.53   -1.00   -1.35   -1.38   -1.10   -0.63   -0.24   -0.06   -0.07   -0.08    0.21    0.97    2.12    3.23
+   130.0    0.00    0.05    0.13    0.13   -0.09   -0.49   -0.94   -1.29   -1.32   -1.05   -0.60   -0.22   -0.07   -0.10   -0.14    0.12    0.87    2.04    3.26
+   135.0    0.00    0.06    0.13    0.13   -0.07   -0.45   -0.90   -1.22   -1.25   -0.98   -0.56   -0.20   -0.07   -0.15   -0.25   -0.03    0.68    1.86    3.14
+   140.0    0.00    0.05    0.14    0.15   -0.05   -0.41   -0.85   -1.15   -1.17   -0.90   -0.49   -0.16   -0.08   -0.23   -0.39   -0.24    0.43    1.58    2.92
+   145.0    0.00    0.06    0.14    0.16   -0.03   -0.40   -0.82   -1.10   -1.10   -0.81   -0.40   -0.11   -0.09   -0.30   -0.55   -0.47    0.12    1.25    2.57
+   150.0    0.00    0.06    0.14    0.15   -0.02   -0.38   -0.79   -1.04   -1.02   -0.73   -0.32   -0.06   -0.09   -0.39   -0.71   -0.72   -0.18    0.87    2.15
+   155.0    0.00    0.06    0.14    0.15   -0.02   -0.38   -0.77   -1.01   -0.96   -0.65   -0.25   -0.01   -0.10   -0.46   -0.87   -0.94   -0.48    0.51    1.66
+   160.0    0.00    0.06    0.15    0.14   -0.03   -0.38   -0.76   -0.98   -0.92   -0.59   -0.20    0.02   -0.10   -0.53   -0.99   -1.14   -0.71    0.17    1.19
+   165.0    0.00    0.06    0.14    0.13   -0.04   -0.38   -0.75   -0.97   -0.89   -0.55   -0.16    0.04   -0.12   -0.59   -1.10   -1.26   -0.90   -0.10    0.76
+   170.0    0.00    0.06    0.13    0.12   -0.07   -0.41   -0.77   -0.98   -0.88   -0.55   -0.16    0.02   -0.16   -0.64   -1.15   -1.33   -0.99   -0.26    0.42
+   175.0    0.00    0.05    0.12    0.11   -0.08   -0.43   -0.81   -1.01   -0.92   -0.58   -0.20   -0.03   -0.21   -0.68   -1.16   -1.33   -0.99   -0.31    0.20
+   180.0    0.00    0.05    0.12    0.10   -0.12   -0.47   -0.84   -1.05   -0.97   -0.65   -0.26   -0.08   -0.26   -0.70   -1.15   -1.26   -0.89   -0.26    0.13
+   185.0    0.00    0.05    0.11    0.08   -0.13   -0.50   -0.89   -1.12   -1.05   -0.73   -0.36   -0.19   -0.33   -0.73   -1.11   -1.14   -0.73   -0.07    0.21
+   190.0    0.00    0.05    0.11    0.06   -0.17   -0.55   -0.96   -1.20   -1.14   -0.85   -0.49   -0.31   -0.42   -0.76   -1.06   -1.00   -0.51    0.18    0.43
+   195.0    0.00    0.03    0.10    0.05   -0.19   -0.59   -1.03   -1.28   -1.26   -0.99   -0.64   -0.44   -0.53   -0.81   -1.01   -0.85   -0.25    0.50    0.77
+   200.0    0.00    0.03    0.08    0.02   -0.22   -0.63   -1.09   -1.36   -1.38   -1.12   -0.80   -0.61   -0.65   -0.87   -0.98   -0.73    0.26    0.86    1.19
+   205.0    0.00    0.03    0.08    0.01   -0.26   -0.68   -1.15   -1.46   -1.49   -1.28   -0.96   -0.78   -0.80   -0.97   -1.01   -0.63    0.20    1.20    1.65
+   210.0    0.00    0.03    0.07   -0.01   -0.28   -0.73   -1.20   -1.54   -1.60   -1.42   -1.14   -0.95   -0.97   -1.10   -1.07   -0.61    0.37    1.53    2.14
+   215.0    0.00    0.03    0.06   -0.02   -0.31   -0.76   -1.26   -1.62   -1.71   -1.55   -1.30   -1.13   -1.15   -1.27   -1.20   -0.64    0.46    1.80    2.60
+   220.0    0.00    0.03    0.06   -0.03   -0.32   -0.79   -1.31   -1.70   -1.81   -1.68   -1.45   -1.31   -1.35   -1.47   -1.37   -0.74    0.49    2.02    3.02
+   225.0    0.00    0.02    0.06   -0.04   -0.35   -0.82   -1.36   -1.76   -1.89   -1.79   -1.58   -1.48   -1.56   -1.70   -1.58   -0.90    0.47    2.16    3.37
+   230.0    0.00    0.02    0.05   -0.05   -0.34   -0.84   -1.40   -1.81   -1.97   -1.89   -1.71   -1.64   -1.75   -1.93   -1.82   -1.09    0.38    2.24    3.65
+   235.0    0.00    0.02    0.05   -0.05   -0.36   -0.86   -1.43   -1.86   -2.04   -1.97   -1.82   -1.79   -1.95   -2.15   -2.07   -1.30    0.26    2.26    3.83
+   240.0    0.00    0.02    0.05   -0.06   -0.36   -0.88   -1.45   -1.89   -2.08   -2.04   -1.91   -1.92   -2.11   -2.36   -2.29   -1.51    0.12    2.25    3.94
+   245.0    0.00    0.01    0.05   -0.06   -0.36   -0.87   -1.45   -1.91   -2.11   -2.09   -1.98   -2.01   -2.24   -2.52   -2.48   -1.68   -0.01    2.18    3.96
+   250.0    0.00    0.03    0.04   -0.05   -0.36   -0.88   -1.46   -1.93   -2.14   -2.12   -2.03   -2.07   -2.31   -2.63   -2.59   -1.80   -0.11    2.11    3.90
+   255.0    0.00    0.03    0.05   -0.06   -0.36   -0.88   -1.47   -1.94   -2.16   -2.13   -2.04   -2.09   -2.34   -2.65   -2.63   -1.86   -0.18    2.00    3.76
+   260.0    0.00    0.02    0.04   -0.05   -0.36   -0.87   -1.46   -1.94   -2.15   -2.12   -2.02   -2.06   -2.30   -2.60   -2.59   -1.84   -0.22    1.89    3.55
+   265.0    0.00    0.02    0.05   -0.05   -0.35   -0.86   -1.45   -1.93   -2.14   -2.11   -1.98   -1.98   -2.20   -2.48   -2.46   -1.74   -0.22    1.77    3.26
+   270.0    0.00    0.03    0.05   -0.04   -0.35   -0.85   -1.44   -1.91   -2.11   -2.07   -1.91   -1.86   -2.02   -2.27   -2.24   -1.59   -0.17    1.62    2.93
+   275.0    0.00    0.02    0.05   -0.04   -0.33   -0.84   -1.42   -1.89   -2.08   -2.01   -1.81   -1.70   -1.80   -2.00   -1.97   -1.38   -0.10    1.49    2.56
+   280.0    0.00    0.02    0.05   -0.04   -0.32   -0.83   -1.41   -1.86   -2.03   -1.92   -1.67   -1.51   -1.54   -1.68   -1.66   -1.14   -0.02    1.34    2.18
+   285.0    0.00    0.02    0.05   -0.02   -0.33   -0.82   -1.39   -1.83   -1.98   -1.83   -1.53   -1.28   -1.24   -1.33   -1.30   -0.87    0.06    1.20    1.80
+   290.0    0.00    0.02    0.05   -0.02   -0.32   -0.82   -1.37   -1.80   -1.92   -1.72   -1.36   -1.04   -0.92   -0.98   -0.96   -0.61    0.15    1.06    1.45
+   295.0    0.00    0.02    0.04   -0.02   -0.33   -0.82   -1.37   -1.77   -1.85   -1.61   -1.17   -0.78   -0.60   -0.61   -0.62   -0.36    0.24    0.94    1.14
+   300.0    0.00    0.02    0.04   -0.03   -0.34   -0.82   -1.37   -1.75   -1.80   -1.49   -0.98   -0.52   -0.28   -0.27   -0.30   -0.14    0.33    0.85    0.91
+   305.0    0.00    0.02    0.04   -0.04   -0.34   -0.84   -1.37   -1.73   -1.74   -1.38   -0.80   -0.27    0.03    0.06   -0.01    0.07    0.41    0.81    0.78
+   310.0    0.00    0.02    0.04   -0.05   -0.36   -0.85   -1.38   -1.72   -1.69   -1.27   -0.62   -0.02    0.32    0.35    0.25    0.26    0.50    0.81    0.74
+   315.0    0.00    0.02    0.03   -0.05   -0.36   -0.87   -1.40   -1.72   -1.65   -1.17   -0.46    0.20    0.58    0.61    0.48    0.42    0.61    0.89    0.81
+   320.0    0.00    0.02    0.03   -0.07   -0.37   -0.90   -1.43   -1.74   -1.63   -1.10   -0.32    0.40    0.80    0.83    0.67    0.58    0.73    1.00    0.98
+   325.0    0.00    0.02    0.04   -0.07   -0.40   -0.92   -1.46   -1.76   -1.62   -1.05   -0.22    0.55    0.99    1.02    0.84    0.72    0.86    1.17    1.20
+   330.0    0.00    0.01    0.04   -0.08   -0.42   -0.94   -1.49   -1.80   -1.63   -1.02   -0.14    0.67    1.13    1.18    0.99    0.85    1.03    1.37    1.47
+   335.0    0.00    0.02    0.04   -0.09   -0.44   -0.98   -1.53   -1.83   -1.67   -1.02   -0.11    0.73    1.23    1.29    1.10    0.98    1.18    1.60    1.79
+   340.0    0.00    0.01    0.03   -0.10   -0.45   -1.01   -1.57   -1.89   -1.71   -1.06   -0.13    0.76    1.27    1.35    1.17    1.09    1.34    1.82    2.07
+   345.0    0.00    0.02    0.03   -0.09   -0.46   -1.02   -1.61   -1.93   -1.78   -1.13   -0.18    0.71    1.25    1.35    1.21    1.17    1.48    2.04    2.33
+   350.0    0.00    0.01    0.03   -0.09   -0.47   -1.05   -1.64   -1.98   -1.85   -1.22   -0.28    0.60    1.16    1.29    1.20    1.20    1.58    2.20    2.55
+   355.0    0.00    0.02    0.02   -0.09   -0.46   -1.06   -1.67   -2.04   -1.94   -1.35   -0.44    0.44    1.01    1.18    1.14    1.21    1.64    2.33    2.71
+   360.0    0.00    0.01    0.03   -0.09   -0.45   -1.05   -1.69   -2.09   -2.04   -1.50   -0.64    0.22    0.79    0.98    1.00    1.14    1.65    2.40    2.81
+   R01                                                      END OF FREQUENCY    
+   R02                                                      START OF FREQUENCY  
+     -0.92     -0.37     73.39                              NORTH / EAST / UP   
+   NOAZI    0.00   -0.05   -0.17   -0.32   -0.45   -0.58   -0.76   -1.01   -1.27   -1.35   -1.06   -0.33    0.66    1.48    1.64    0.93   -0.24   -0.82    0.61
+     0.0    0.00   -0.01   -0.08   -0.14   -0.15   -0.08   -0.15   -0.01   -0.15   -0.33   -0.41   -0.26    0.12    0.44    0.27   -0.72   -2.42   -3.90   -3.44
+     5.0    0.00    0.04   -0.05   -0.09   -0.06    0.03    0.14    0.17    0.08   -0.03   -0.05    0.18    0.62    0.99    0.82   -0.22   -1.99   -3.56   -3.14
+    10.0    0.00    0.02   -0.02   -0.04    0.01    0.13    0.27    0.33    0.30    0.25    0.33    0.65    1.18    1.58    1.40    0.31   -1.51   -3.10   -2.63
+    15.0    0.00    0.03    0.02    0.01    0.07    0.20    0.36    0.46    0.48    0.51    0.69    1.14    1.75    2.20    2.00    0.87   -0.99   -2.54   -1.94
+    20.0    0.00    0.05    0.04    0.04    0.12    0.26    0.42    0.55    0.62    0.74    1.04    1.60    2.32    2.82    2.62    1.44   -0.45   -1.91   -1.12
+    25.0    0.00    0.07    0.06    0.07    0.15    0.28    0.45    0.59    0.70    0.92    1.33    2.03    2.85    3.41    3.22    2.00    0.13   -1.24   -0.20
+    30.0    0.00    0.07    0.08    0.09    0.16    0.28    0.44    0.57    0.73    1.01    1.56    2.40    3.34    3.97    3.78    2.55    0.70   -0.53    0.76
+    35.0    0.00    0.08    0.09    0.10    0.16    0.25    0.39    0.51    0.69    1.04    1.70    2.68    3.75    4.46    4.30    3.06    1.25    0.18    1.70
+    40.0    0.00    0.09    0.10    0.09    0.12    0.20    0.30    0.40    0.59    0.99    1.74    2.85    4.05    4.84    4.71    3.51    1.77    0.85    2.56
+    45.0    0.00    0.09    0.11    0.09    0.09    0.13    0.17    0.24    0.43    0.86    1.69    2.91    4.20    5.08    5.02    3.86    2.21    1.43    3.28
+    50.0    0.00    0.10    0.11    0.08    0.04    0.04    0.04    0.07    0.21    0.65    1.54    2.82    4.22    5.18    5.19    4.10    2.55    1.90    3.83
+    55.0    0.00    0.10    0.10    0.04   -0.01   -0.06   -0.12   -0.15   -0.05    0.38    1.28    2.62    4.08    5.11    5.19    4.21    2.76    2.19    4.14
+    60.0    0.00    0.10    0.09    0.02   -0.06   -0.17   -0.28   -0.37   -0.30    0.08    0.95    2.30    3.79    4.88    5.04    4.14    2.79    2.30    4.20
+    65.0    0.00    0.10    0.08   -0.07   -0.12   -0.28   -0.43   -0.57   -0.59   -0.26    0.56    1.88    3.37    4.49    4.71    3.90    2.65    2.21    4.01
+    70.0    0.00    0.10    0.07   -0.05   -0.18   -0.37   -0.57   -0.78   -0.86   -0.62    0.12    1.37    2.83    3.96    4.23    3.50    2.30    1.86    3.54
+    75.0    0.00    0.09    0.06   -0.07   -0.24   -0.44   -0.69   -0.95   -1.11   -0.97   -0.33    0.82    2.21    3.32    3.63    2.94    1.77    1.31    2.84
+    80.0    0.00    0.09    0.05   -0.10   -0.28   -0.51   -0.79   -1.09   -1.34   -1.29   -0.79    0.26    1.56    2.62    2.92    2.24    1.09    0.57    1.95
+    85.0    0.00    0.08    0.03   -0.13   -0.32   -0.56   -0.85   -1.20   -1.52   -1.60   -1.21   -0.31    0.89    1.89    2.15    1.47    0.27   -0.32    0.92
+    90.0    0.00    0.08    0.02   -0.15   -0.35   -0.60   -0.91   -1.29   -1.67   -1.85   -1.59   -0.83    0.26    1.18    1.38    0.66   -0.61   -1.32   -0.18
+    95.0    0.00    0.08    0.01   -0.17   -0.38   -0.63   -0.94   -1.35   -1.79   -2.06   -1.93   -1.28   -0.31    0.52    0.67   -0.14   -1.51   -2.33   -1.28
+   100.0    0.00    0.08   -0.01   -0.19   -0.39   -0.64   -0.96   -1.40   -1.89   -2.23   -2.20   -1.66   -0.79   -0.04    0.01   -0.88   -2.35   -3.30   -2.30
+   105.0    0.00    0.06   -0.02   -0.21   -0.41   -0.64   -0.96   -1.42   -1.95   -2.36   -2.41   -1.95   -1.16   -0.49   -0.50   -1.50   -3.10   -4.15   -3.16
+   110.0    0.00    0.06   -0.03   -0.22   -0.42   -0.65   -0.97   -1.43   -1.99   -2.44   -2.54   -2.16   -1.42   -0.81   -0.89   -1.96   -3.67   -4.82   -3.83
+   115.0    0.00    0.05   -0.04   -0.22   -0.42   -0.65   -0.97   -1.44   -2.01   -2.50   -2.62   -2.27   -1.56   -0.98   -1.12   -2.27   -4.05   -5.27   -4.24
+   120.0    0.00    0.04   -0.06   -0.23   -0.43   -0.65   -0.97   -1.45   -2.02   -2.52   -2.66   -2.31   -1.62   -1.05   -1.20   -2.38   -4.22   -5.48   -4.40
+   125.0    0.00    0.03   -0.07   -0.25   -0.43   -0.65   -0.98   -1.44   -2.03   -2.51   -2.64   -2.27   -1.57   -0.99   -1.15   -2.33   -4.18   -5.44   -4.30
+   130.0    0.00    0.03   -0.08   -0.25   -0.44   -0.66   -0.97   -1.44   -2.02   -2.48   -2.59   -2.20   -1.47   -0.86   -0.98   -2.12   -3.93   -5.16   -3.96
+   135.0    0.00    0.01   -0.10   -0.25   -0.44   -0.65   -0.97   -1.44   -2.00   -2.44   -2.51   -2.08   -1.32   -0.66   -0.71   -1.79   -3.51   -4.67   -3.44
+   140.0    0.00    0.01   -0.10   -0.26   -0.44   -0.65   -0.97   -1.43   -1.98   -2.39   -2.42   -1.94   -1.12   -0.42   -0.39   -1.37   -2.97   -4.03   -2.76
+   145.0    0.00   -0.01   -0.11   -0.27   -0.44   -0.65   -0.98   -1.43   -1.94   -2.33   -2.31   -1.80   -0.93   -0.15   -0.03   -0.87   -2.34   -3.29   -2.00
+   150.0    0.00   -0.01   -0.12   -0.28   -0.44   -0.65   -0.97   -1.41   -1.91   -2.25   -2.21   -1.64   -0.73    0.11    0.32   -0.36   -1.66   -2.48   -1.21
+   155.0    0.00   -0.02   -0.13   -0.28   -0.45   -0.65   -0.96   -1.40   -1.87   -2.19   -2.09   -1.49   -0.54    0.37    0.69    0.15   -0.97   -1.68   -0.44
+   160.0    0.00   -0.02   -0.15   -0.30   -0.45   -0.66   -0.96   -1.37   -1.83   -2.12   -1.99   -1.35   -0.35    0.61    1.04    0.64   -0.32   -0.90    0.30
+   165.0    0.00   -0.04   -0.16   -0.30   -0.45   -0.65   -0.95   -1.36   -1.79   -2.05   -1.89   -1.23   -0.18    0.85    1.36    1.11    0.30   -0.19    0.96
+   170.0    0.00   -0.05   -0.17   -0.32   -0.47   -0.65   -0.94   -1.35   -1.76   -2.00   -1.81   -1.10   -0.02    1.06    1.68    1.54    0.86    0.46    1.56
+   175.0    0.00   -0.06   -0.18   -0.33   -0.47   -0.66   -0.94   -1.33   -1.73   -1.93   -1.72   -0.98    0.14    1.28    1.97    1.94    1.37    1.03    2.08
+   180.0    0.00   -0.07   -0.21   -0.35   -0.49   -0.67   -0.94   -1.32   -1.71   -1.89   -1.65   -0.89    0.29    1.47    2.24    2.30    1.82    1.54    2.54
+   185.0    0.00   -0.09   -0.23   -0.37   -0.51   -0.68   -0.94   -1.32   -1.69   -1.86   -1.59   -0.79    0.43    1.67    2.49    2.62    2.22    1.98    2.97
+   190.0    0.00   -0.10   -0.24   -0.39   -0.53   -0.71   -0.97   -1.32   -1.67   -1.82   -1.52   -0.69    0.57    1.86    2.73    2.91    2.56    2.37    3.36
+   195.0    0.00   -0.11   -0.26   -0.41   -0.56   -0.73   -0.98   -1.33   -1.67   -1.81   -1.48   -0.60    0.70    2.03    2.95    3.17    2.86    2.71    3.73
+   200.0    0.00   -0.12   -0.29   -0.46   -0.60   -0.76   -1.02   -1.35   -1.68   -1.79   -1.43   -0.52    0.82    2.20    3.14    3.39    3.10    3.00    4.07
+   205.0    0.00   -0.14   -0.31   -0.48   -0.64   -0.80   -1.05   -1.38   -1.69   -1.77   -1.39   -0.43    0.94    2.34    3.30    3.55    3.29    3.24    4.38
+   210.0    0.00   -0.15   -0.34   -0.52   -0.67   -0.84   -1.08   -1.40   -1.69   -1.76   -1.34   -0.35    1.05    2.47    3.43    3.67    3.42    3.41    4.64
+   215.0    0.00   -0.16   -0.36   -0.55   -0.72   -0.90   -1.14   -1.44   -1.71   -1.74   -1.28   -0.27    1.14    2.57    3.52    3.73    3.47    3.50    4.82
+   220.0    0.00   -0.16   -0.38   -0.59   -0.77   -0.94   -1.18   -1.48   -1.72   -1.72   -1.23   -0.20    1.24    2.64    3.56    3.74    3.46    3.52    4.91
+   225.0    0.00   -0.18   -0.40   -0.63   -0.82   -1.00   -1.22   -1.51   -1.73   -1.69   -1.18   -0.11    1.32    2.70    3.56    3.68    3.36    3.44    4.89
+   230.0    0.00   -0.19   -0.43   -0.67   -0.86   -1.05   -1.27   -1.54   -1.73   -1.68   -1.13   -0.04    1.40    2.74    3.53    3.56    3.20    3.27    4.76
+   235.0    0.00   -0.20   -0.45   -0.70   -0.90   -1.09   -1.31   -1.57   -1.75   -1.66   -1.09    0.03    1.46    2.76    3.47    3.42    2.97    3.01    4.52
+   240.0    0.00   -0.20   -0.46   -0.73   -0.94   -1.13   -1.36   -1.61   -1.76   -1.65   -1.04    0.08    1.50    2.76    3.39    3.24    2.69    2.69    4.21
+   245.0    0.00   -0.22   -0.48   -0.76   -0.98   -1.18   -1.38   -1.63   -1.78   -1.65   -1.02    0.11    1.52    2.75    3.29    3.01    2.37    2.32    3.84
+   250.0    0.00   -0.22   -0.50   -0.78   -1.01   -1.20   -1.42   -1.65   -1.81   -1.66   -1.02    0.13    1.54    2.71    3.16    2.79    2.04    1.93    3.44
+   255.0    0.00   -0.23   -0.51   -0.79   -1.03   -1.23   -1.44   -1.67   -1.82   -1.67   -1.04    0.11    1.51    2.64    3.01    2.52    1.69    1.53    3.06
+   260.0    0.00   -0.23   -0.52   -0.81   -1.04   -1.23   -1.45   -1.69   -1.85   -1.70   -1.07    0.07    1.45    2.54    2.85    2.27    1.34    1.15    2.73
+   265.0    0.00   -0.23   -0.53   -0.82   -1.05   -1.24   -1.45   -1.70   -1.87   -1.74   -1.13   -0.49    1.35    2.41    2.64    1.98    0.99    0.80    2.48
+   270.0    0.00   -0.23   -0.54   -0.82   -1.05   -1.24   -1.44   -1.69   -1.89   -1.80   -1.21   -0.11    1.21    2.22    2.41    1.69    0.64    0.48    2.32
+   275.0    0.00   -0.22   -0.53   -0.82   -1.05   -1.22   -1.43   -1.69   -1.90   -1.85   -1.30   -0.25    1.02    1.97    2.11    1.35    0.30    0.19    2.22
+   280.0    0.00   -0.23   -0.53   -0.82   -1.04   -1.20   -1.41   -1.67   -1.91   -1.89   -1.41   -0.42    0.78    1.69    1.77    0.99   -0.05   -0.06    2.20
+   285.0    0.00   -0.22   -0.52   -0.80   -1.01   -1.18   -1.37   -1.65   -1.91   -1.93   -1.52   -0.61    0.52    1.35    1.41    0.59   -0.42   -0.33    2.21
+   290.0    0.00   -0.22   -0.51   -0.79   -0.99   -1.15   -1.34   -1.61   -1.89   -1.96   -1.62   -0.81    0.22    0.99    0.98    0.17   -0.80   -0.59    2.21
+   295.0    0.00   -0.21   -0.50   -0.78   -0.97   -1.12   -1.30   -1.57   -1.86   -1.99   -1.72   -1.02   -0.09    0.58    0.55   -0.28   -1.20   -0.88    2.16
+   300.0    0.00   -0.19   -0.48   -0.74   -0.94   -1.08   -1.25   -1.51   -1.83   -2.00   -1.82   -1.21   -0.40    0.20    0.10   -0.72   -1.60   -1.20    2.03
+   305.0    0.00   -0.19   -0.46   -0.72   -0.90   -1.04   -1.20   -1.46   -1.78   -1.99   -1.89   -1.40   -0.69   -0.19   -0.33   -1.15   -2.01   -1.56    1.78
+   310.0    0.00   -0.18   -0.43   -0.68   -0.86   -0.98   -1.13   -1.39   -1.72   -1.97   -1.94   -1.55   -0.95   -0.55   -0.72   -1.54   -2.41   -1.97    1.40
+   315.0    0.00   -0.16   -0.42   -0.65   -0.82   -0.94   -1.07   -1.31   -1.65   -1.93   -1.97   -1.67   -1.17   -0.83   -1.05   -1.88   -2.75   -2.38    0.89
+   320.0    0.00   -0.15   -0.38   -0.60   -0.77   -0.87   -1.00   -1.23   -1.57   -1.86   -1.96   -1.74   -1.33   -1.07   -1.29   -2.13   -3.06   -2.82    0.26
+   325.0    0.00   -0.13   -0.34   -0.56   -0.72   -0.81   -0.92   -1.13   -1.46   -1.78   -1.92   -1.77   -1.43   -1.20   -1.44   -2.30   -3.29   -3.23   -0.43
+   330.0    0.00   -0.11   -0.31   -0.52   -0.64   -0.73   -0.83   -1.02   -1.34   -1.66   -1.83   -1.74   -1.45   -1.24   -1.49   -2.35   -3.43   -3.60   -1.17
+   335.0    0.00   -0.10   -0.27   -0.46   -0.58   -0.63   -0.71   -0.89   -1.19   -1.52   -1.71   -1.65   -1.40   -1.19   -1.43   -2.31   -3.49   -3.90   -1.88
+   340.0    0.00   -0.08   -0.23   -0.40   -0.50   -0.54   -0.58   -0.74   -1.02   -1.34   -1.55   -1.50   -1.24   -1.04   -1.26   -2.16   -3.45   -4.13   -2.51
+   345.0    0.00   -0.06   -0.20   -0.34   -0.41   -0.44   -0.45   -0.58   -0.83   -1.13   -1.33   -1.28   -1.02   -0.79   -1.00   -1.92   -3.32   -4.25   -3.03
+   350.0    0.00   -0.05   -0.16   -0.27   -0.33   -0.32   -0.31   -0.39   -0.61   -0.88   -1.07   -1.00   -0.71   -0.46   -0.64   -1.58   -3.10   -4.26   -3.37
+   355.0    0.00   -0.03   -0.12   -0.21   -0.23   -0.20   -0.15   -0.20   -0.38   -0.62   -0.76   -0.66   -0.33   -0.04   -0.22   -1.18   -2.79   -4.14   -3.51
+   360.0    0.00   -0.01   -0.08   -0.14   -0.15   -0.08   -0.15   -0.01   -0.15   -0.33   -0.41   -0.26    0.12    0.44    0.27   -0.72   -2.42   -3.90   -3.44
+   R02                                                      END OF FREQUENCY    
+                                                            END OF ANTENNA      
Index: branches/BNC_LM/RTCM/GPSDecoder.h
===================================================================
--- branches/BNC_LM/RTCM/GPSDecoder.h	(revision 3570)
+++ branches/BNC_LM/RTCM/GPSDecoder.h	(revision 3570)
@@ -0,0 +1,152 @@
+// Part of BNC, a utility for retrieving decoding and
+// converting GNSS data streams from NTRIP broadcasters.
+//
+// Copyright (C) 2007
+// German Federal Agency for Cartography and Geodesy (BKG)
+// http://www.bkg.bund.de
+// Czech Technical University Prague, Department of Geodesy
+// http://www.fsv.cvut.cz
+//
+// Email: euref-ip@bkg.bund.de
+//
+// This program is free software; you can redistribute it and/or
+// modify it under the terms of the GNU General Public License
+// as published by the Free Software Foundation, version 2.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+#ifndef GPSDECODER_H
+#define GPSDECODER_H
+
+#include <iostream>
+#include <vector>
+#include <string>
+#include <QList>
+#include <QStringList>
+
+#include "bncconst.h"
+
+class t_obs {
+ public:
+  t_obs() {
+    StatID[0]   = '\x0';
+    satSys      = 'G';
+    satNum      = 0;
+    slotNum     = 0;
+    GPSWeek     = 0;
+    GPSWeeks    = 0.0;
+    C1          = 0.0;
+    P1          = 0.0;
+    L1C         = 0.0;
+    D1C         = 0.0;
+    S1C         = 0.0;
+    L1P         = 0.0;
+    D1P         = 0.0;
+    S1P         = 0.0;
+    C2          = 0.0;
+    P2          = 0.0;
+    L2C         = 0.0;
+    D2C         = 0.0;
+    S2C         = 0.0;
+    L2P         = 0.0;
+    D2P         = 0.0;
+    S2P         = 0.0;
+    C5          = 0.0;
+    L5          = 0.0;
+    D5          = 0.0;
+    S5          = 0.0;
+    slip_cnt_L1 = -1;
+    slip_cnt_L2 = -1;
+    slip_cnt_L5 = -1;
+  }
+
+  ~t_obs() {}
+
+  double L1() const {return (L1P != 0.0 ? L1P : L1C);}
+  double L2() const {return (L2P != 0.0 ? L2P : L2C);}
+  double S1() const {return (L1P != 0.0 ? S1P : S1C);}
+  double S2() const {return (L2P != 0.0 ? S2P : S2C);}
+
+  char   StatID[20+1]; // Station ID
+  char   satSys;       // Satellite System ('G' or 'R')
+  int    satNum;       // Satellite Number (PRN for GPS NAVSTAR)
+  int    slotNum;      // Slot Number (for Glonass)
+  int    GPSWeek;      // Week of GPS-Time
+  double GPSWeeks;     // Second of Week (GPS-Time)
+
+  double C1;           // CA-code pseudorange (meters)
+  double L1C;          // L1 carrier phase (cycles)
+  double D1C;          // Doppler L1
+  double S1C;          // raw L1 signal strength
+  bool has1C() const {return C1 != 0.0 || L1C != 0.0 || D1C != 0.0 || S1C != 0.0;}
+
+  double P1;           // P1-code pseudorange (meters)
+  double L1P;          // L1 carrier phase (cycles)
+  double D1P;          // Doppler L1
+  double S1P;          // raw L1 signal strength
+  bool has1P() const {return P1 != 0.0 || L1P != 0.0 || D1P != 0.0 || S1P != 0.0;}
+
+  double C2;           // CA-code pseudorange (meters)
+  double L2C;          // L2 carrier phase (cycles)
+  double D2C;          // Doppler L2
+  double S2C;          // raw L2 signal strength
+  bool has2C() const {return C2 != 0.0 || L2C != 0.0 || D2C != 0.0 || S2C != 0.0;}
+
+  double P2;           // P2-code pseudorange (meters)
+  double L2P;          // L2 carrier phase (cycles)
+  double D2P;          // Doppler L2
+  double S2P;          // raw L2 signal strength
+  bool has2P() const {return P2 != 0.0 || L2P != 0.0 || D2P != 0.0 || S2P != 0.0;}
+
+  double C5;           // Pseudorange (meters)
+  double L5;           // L5 carrier phase (cycles)
+  double D5;           // Doppler L5
+  double S5;           // raw L5 signal strength
+  bool has5C() const {return C5 != 0.0 || L5 != 0.0 || D5 != 0.0 || S5 != 0.0;}
+
+  int    slip_cnt_L1;  // L1 cumulative loss of continuity indicator (negative value = undefined)
+  int    slip_cnt_L2;  // L2 cumulative loss of continuity indicator (negative value = undefined)
+  int    slip_cnt_L5;  // L5 cumulative loss of continuity indicator (negative value = undefined)
+};
+
+class GPSDecoder {
+ public:
+  virtual t_irc Decode(char* buffer, int bufLen, std::vector<std::string>& errmsg) = 0;
+
+  virtual ~GPSDecoder() {}
+
+  virtual int corrGPSEpochTime() const {return -1;}
+
+  struct t_antInfo {
+    enum t_type { ARP, APC };
+
+    t_antInfo() {
+      xx = yy = zz = height = 0.0;
+      type = ARP;
+      height_f = false;
+      message  = 0;
+    };
+
+    double xx;
+    double yy;
+    double zz;
+    t_type type;
+    double height;
+    bool   height_f;
+    int    message;
+  };
+
+  QList<t_obs>     _obsList;
+  QList<int>       _typeList;  // RTCM   message types
+  QStringList      _antType;   // RTCM   antenna descriptor
+  QList<t_antInfo> _antList;   // RTCM   antenna XYZ
+};
+
+#endif
Index: branches/BNC_LM/RTCM/RTCM2.cpp
===================================================================
--- branches/BNC_LM/RTCM/RTCM2.cpp	(revision 3570)
+++ branches/BNC_LM/RTCM/RTCM2.cpp	(revision 3570)
@@ -0,0 +1,1360 @@
+//------------------------------------------------------------------------------
+//
+// RTCM2.cpp
+// 
+// Purpose: 
+//
+//   Module for extraction of RTCM2 messages
+//
+// References:
+//
+//   RTCM 10402.3 Recommended Standards for Differential GNSS (Global
+//     Navigation Satellite Systems) Service; RTCM Paper 136-2001/SC104-STD,
+//     Version 2.3, 20 Aug. 2001; Radio Technical Commission For Maritime 
+//     Services, Alexandria, Virgina (2001).
+//   ICD-GPS-200; Navstar GPS Space Segment / Navigation User Interfaces;
+//     Revison C; 25 Sept. 1997; Arinc Research Corp., El Segundo (1997).
+//   Jensen M.; RTCM2ASC Documentation;
+//     URL http://kom.aau.dk/~borre/masters/receiver/rtcm2asc.htm;
+//     last accessed 17 Sep. 2006
+//   Sager J.; Decoder for RTCM SC-104 data from a DGPS beacon receiver;
+//     URL http://www.wsrcc.com/wolfgang/ftp/rtcm-0.3.tar.gz;
+//     last accessed 17 Sep. 2006
+//
+// Notes: 
+//
+// - The host computer is assumed to use little endian (Intel) byte order
+//
+// Last modified:
+//
+//   2006/09/17  OMO  Created
+//   2006/09/19  OMO  Fixed getHeader() methods
+//   2006/09/21  OMO  Reduced phase ambiguity to 2^23 cycles
+//   2006/10/05  OMO  Specified const'ness of various member functions
+//   2006/10/13  LMV  Fixed resolvedPhase to handle missing C1 range
+//   2006/10/14  LMV  Fixed loop cunter in ThirtyBitWord
+//   2006/10/14  LMV  Exception handling
+//   2006/10/17  OMO  Removed obsolete check of multiple message indicator
+//   2006/10/17  OMO  Fixed parity handling 
+//   2006/10/18  OMO  Improved screening of bad data in RTCM2_Obs::extract
+//   2006/11/25  OMO  Revised check for presence of GLONASS data
+//   2007/05/25  GW   Round time tag to 100 ms
+//   2007/12/11  AHA  Changed handling of C/A- and P-Code on L1 
+//   2007/12/13  AHA  Changed epoch comparison in packet extraction 
+//   2008/03/01  OMO  Compilation flag for epoch rounding
+//   2008/03/04  AHA  Fixed problems with PRN 32
+//   2008/03/05  AHA  Implemeted fix for Trimble 4000SSI receivers
+//   2008/03/07  AHA  Major revision of input buffer handling 
+//   2008/03/07  AHA  Removed unnecessary failure flag
+//   2008/03/10  AHA  Corrected extraction of antenna serial number
+//   2008/03/10  AHA  Corrected buffer length check in getPacket()
+//   2008/03/11  AHA  isGPS-flag in RTCM2_Obs is now set to false on clear()
+//   2008/03/14  AHA  Added checks for data consistency in extraction routines
+//   2008/09/01  AHA  Harmonization with newest BNC version
+//
+// (c) DLR/GSOC
+//
+//------------------------------------------------------------------------------
+
+#include <bitset>
+#include <cmath>
+#include <fstream>
+#include <iomanip>
+#include <iostream>
+#include <string>
+#include <vector>
+
+#include "RTCM2.h"
+
+// Activate (1) or deactivate (0) debug output for tracing parity errors and
+// undersized packets in get(Unsigned)Bits
+
+#define DEBUG 0
+
+// Activate (1) or deactivate (0) rounding of measurement epochs to 100ms
+//
+// Note: A need to round the measurement epoch to integer tenths of a second was
+// noted by BKG in the processing of RTCM2 data from various receivers in NTRIP
+// real-time networks. It is unclear at present, whether this is due to an 
+// improper implementation of the RTCM2 standard in the respective receivers
+// or an unclear formulation of the standard. 
+
+#define ROUND_EPOCH  1
+
+// Fix for data streams originating from TRIMBLE_4000SSI receivers.
+// GPS PRN32 is erroneously flagged as GLONASS satellite in the C/A
+// pseudorange messages. We therefore use a majority voting to 
+// determine the true constellation for this message.
+// This fix is only required for Trimble4000SSI receivers but can also
+// be used with all other known receivers.
+
+#define FIX_TRIMBLE_4000SSI 1
+
+using namespace std;
+
+
+// GPS constants
+
+const double c_light   = 299792458.0;   // Speed of light  [m/s]; IAU 1976
+const double f_L1      = 1575.42e6;     // L1 frequency [Hz] (10.23MHz*154)
+const double f_L2      = 1227.60e6;     // L2 frequency [Hz] (10.23MHz*120)
+
+const double lambda_L1 = c_light/f_L1;  // L1 wavelength [m] (0.1903m)
+const double lambda_L2 = c_light/f_L2;  // L2 wavelength [m] 
+
+//
+// Bits for message availability checks
+//
+
+const int bit_L1rngGPS =  0; 
+const int bit_L2rngGPS =  1; 
+const int bit_L1cphGPS =  2; 
+const int bit_L2cphGPS =  3; 
+const int bit_L1rngGLO =  4; 
+const int bit_L2rngGLO =  5; 
+const int bit_L1cphGLO =  6; 
+const int bit_L2cphGLO =  7; 
+
+
+//
+// namespace rtcm2
+//
+
+namespace rtcm2 {
+  
+//------------------------------------------------------------------------------
+//
+// class ThirtyBitWord (implementation)
+//
+// Purpose:
+//  
+//   Handling of RTCM2 30bit words
+//
+//------------------------------------------------------------------------------
+
+// Constructor
+
+ThirtyBitWord::ThirtyBitWord() : W(0) {
+};
+
+// Clear entire 30-bit word and 2-bit parity from previous word
+
+void ThirtyBitWord::clear() {
+  W = 0;
+};
+
+// Parity check
+
+bool ThirtyBitWord::validParity() const {
+
+  // Parity stuff 
+
+  static const unsigned int  PARITY_25 = 0xBB1F3480;
+  static const unsigned int  PARITY_26 = 0x5D8F9A40;
+  static const unsigned int  PARITY_27 = 0xAEC7CD00;
+  static const unsigned int  PARITY_28 = 0x5763E680;
+  static const unsigned int  PARITY_29 = 0x6BB1F340;
+  static const unsigned int  PARITY_30 = 0x8B7A89C0;
+
+  // Look-up table for parity of eight bit bytes
+  // (parity=0 if the number of 0s and 1s is equal, else parity=1)
+  static unsigned char byteParity[] = {
+    0,1,1,0,1,0,0,1,1,0,0,1,0,1,1,0,1,0,0,1,0,1,1,0,0,1,1,0,1,0,0,1,
+    1,0,0,1,0,1,1,0,0,1,1,0,1,0,0,1,0,1,1,0,1,0,0,1,1,0,0,1,0,1,1,0,
+    1,0,0,1,0,1,1,0,0,1,1,0,1,0,0,1,0,1,1,0,1,0,0,1,1,0,0,1,0,1,1,0,
+    0,1,1,0,1,0,0,1,1,0,0,1,0,1,1,0,1,0,0,1,0,1,1,0,0,1,1,0,1,0,0,1,
+    1,0,0,1,0,1,1,0,0,1,1,0,1,0,0,1,0,1,1,0,1,0,0,1,1,0,0,1,0,1,1,0,
+    0,1,1,0,1,0,0,1,1,0,0,1,0,1,1,0,1,0,0,1,0,1,1,0,0,1,1,0,1,0,0,1,
+    0,1,1,0,1,0,0,1,1,0,0,1,0,1,1,0,1,0,0,1,0,1,1,0,0,1,1,0,1,0,0,1,
+    1,0,0,1,0,1,1,0,0,1,1,0,1,0,0,1,0,1,1,0,1,0,0,1,1,0,0,1,0,1,1,0
+  };
+
+  // Local variables
+
+  unsigned int t, w, p;
+  
+  // The sign of the data is determined by the D30* parity bit 
+  // of the previous data word. If  D30* is set, invert the data 
+  // bits D01..D24 to obtain the d01..d24 (but leave all other
+  // bits untouched).
+  
+  w = W;
+  if ( w & 0x40000000 )  w ^= 0x3FFFFFC0;
+
+  // Compute the parity of the sign corrected data bits d01..d24
+  // as described in the ICD-GPS-200
+
+  t = w & PARITY_25;
+  p = ( byteParity[t      &0xff] ^ byteParity[(t>> 8)&0xff] ^
+        byteParity[(t>>16)&0xff] ^ byteParity[(t>>24)     ]   );
+  
+  t = w & PARITY_26;
+  p = (p<<1) | 
+      ( byteParity[t      &0xff] ^ byteParity[(t>> 8)&0xff] ^
+        byteParity[(t>>16)&0xff] ^ byteParity[(t>>24)     ]   );
+  
+  t = w & PARITY_27;
+  p = (p<<1) | 
+      ( byteParity[t      &0xff] ^ byteParity[(t>> 8)&0xff] ^
+        byteParity[(t>>16)&0xff] ^ byteParity[(t>>24)     ]   );
+  
+  t = w & PARITY_28;
+  p = (p<<1) | 
+      ( byteParity[t      &0xff] ^ byteParity[(t>> 8)&0xff] ^
+        byteParity[(t>>16)&0xff] ^ byteParity[(t>>24)     ]   );
+  
+  t = w & PARITY_29;
+  p = (p<<1) | 
+      ( byteParity[t      &0xff] ^ byteParity[(t>> 8)&0xff] ^
+        byteParity[(t>>16)&0xff] ^ byteParity[(t>>24)     ]   );
+  
+  t = w & PARITY_30;
+  p = (p<<1) | 
+      ( byteParity[t      &0xff] ^ byteParity[(t>> 8)&0xff] ^
+        byteParity[(t>>16)&0xff] ^ byteParity[(t>>24)     ]   );
+
+  return ( (W & 0x3f) == p);
+
+};
+
+
+// Check preamble
+
+bool ThirtyBitWord::isHeader() const {
+
+  const unsigned char Preamble = 0x66;
+ 
+  unsigned char b = (value()>>22) & 0xFF;
+  
+  return ( b==Preamble );
+
+};
+
+
+// Return entire 32-bit (current word and previous parity)
+
+unsigned int ThirtyBitWord::all() const {
+  return W;
+};
+
+
+// Return sign-corrected 30-bit (or zero if parity mismatch)
+
+unsigned int ThirtyBitWord::value() const {
+
+  unsigned int w = W;
+   
+  if (validParity()) {
+    // Return data and current parity bits. Invert data bits if D30* 
+    // is set and discard old parity bits.
+    if ( w & 0x40000000 )  w ^= 0x3FFFFFC0;
+    return (w & 0x3FFFFFFF);
+  }
+  else {
+    // Error; invalid parity
+    return 0;
+  };
+  
+};
+
+
+// Append a byte with six data bits
+
+void ThirtyBitWord::append(unsigned char b) {
+  
+  // Look up table for swap (left-right) of 6 data bits
+  static const unsigned char 
+    swap[] = {                                
+      0,32,16,48, 8,40,24,56, 4,36,20,52,12,44,28,60,                         
+      2,34,18,50,10,42,26,58, 6,38,22,54,14,46,30,62,                         
+      1,33,17,49, 9,41,25,57, 5,37,21,53,13,45,29,61,                         
+      3,35,19,51,11,43,27,59, 7,39,23,55,15,47,31,63                          
+    };
+    
+  // Bits 7 and 6 (of 0..7) must be "01" for valid data bytes
+  if ( (b & 0x40) != 0x40 ) {
+    // We simply skip the invalid input byte and leave the word unchanged
+#if (DEBUG>0) 
+    cerr << "Error in append()" << bitset<32>(all()) << endl;
+#endif
+    return;
+  };
+  
+  // Swap bits 0..5 to restore proper bit order for 30bit words
+  b = swap[ b & 0x3f];
+
+  // Fill word
+  W = ( (W <<6) | (b & 0x3f) ) ; 
+  
+};
+
+
+// Get next 30bit word from string
+
+void ThirtyBitWord::get(const string& buf) {
+
+  // Check if string is long enough
+   
+  if (buf.size()<5) {
+    // Ignore; users should avoid this case prior to calling get()
+    
+#if ( DEBUG > 0 )    
+    cerr << "Error in get(): packet too short (" << buf.size() <<")" << endl;
+#endif
+        
+    return;
+  };
+  
+  // Process 5 bytes
+  
+  for (int i=0; i<5; i++) append(buf[i]);
+
+#if (DEBUG>0) 
+  if (!validParity()) {
+    cerr << "Parity error in get()" 
+         << bitset<32>(all()) << endl;
+  };
+#endif
+
+};
+
+// Get next 30bit word from file
+
+void ThirtyBitWord::get(istream& inp) {
+
+  unsigned char b;
+
+  for (int i=0; i<5; i++) {
+    inp >> b; 
+    if (inp.fail()) { clear(); return; };
+    append(b);
+  };
+
+#if (DEBUG>0) 
+  if (!validParity()) {
+    cerr << "Parity error in get()" 
+         << bitset<32>(all()) << endl;
+  };
+#endif
+
+};
+
+// Get next header word from string
+
+void ThirtyBitWord::getHeader(string& buf) {
+
+  const unsigned int wordLen = 5; // Number of bytes representing a 30-bit word
+  const unsigned int spare   = 1; // Number of spare words for resync of parity
+                                  // (same value as inRTCM2packet::getPacket()) 
+  unsigned int i;
+  
+  i=0;
+  // append spare word (to get correct parity) and first consecutive word  
+  while (i<(spare+1)*wordLen) {
+    // Process byte
+    append(buf[i]);
+    // Increment count
+    i++;
+  };
+  
+  // start searching for preamble in first word after spare word
+  while (!isHeader() && i<buf.size() ) {
+    // Process byte
+    append(buf[i]);
+    // Increment count
+    i++;
+  };
+
+  // Remove processed bytes from buffer. Retain also the previous word to
+  // allow a resync if getHeader() is called repeatedly on the same buffer.
+  if (i>=(1+spare)*wordLen) buf.erase(0,i-(1+spare)*wordLen);
+
+#if (DEBUG>0) 
+  if (!validParity()) {
+    cerr << "Parity error in getHeader()" 
+         << bitset<32>(all()) << endl;
+  };
+#endif
+  
+};
+
+// Get next header word from file
+
+void ThirtyBitWord::getHeader(istream& inp) {
+
+  unsigned char b;
+  unsigned int  i;
+
+  i=0;
+  while ( !isHeader() || i<5 ) {
+    inp >> b; 
+    if (inp.fail()) { clear(); return; };
+    append(b); i++;
+  };
+
+#if (DEBUG>0) 
+  if (!validParity()) {
+    cerr << "Parity error in getHeader()" 
+         << bitset<32>(all()) << endl;
+  };
+#endif
+
+};
+
+
+//------------------------------------------------------------------------------
+//
+// RTCM2packet (class implementation)
+//
+// Purpose:
+//
+//   A class for handling RTCM2 data packets
+//
+//------------------------------------------------------------------------------
+
+// Constructor
+
+RTCM2packet::RTCM2packet()  {
+  clear();
+};
+
+// Initialization
+
+void RTCM2packet::clear()  {
+  
+  W.clear();
+  
+  H1=0;
+  H2=0;
+  
+  DW.resize(0,0);
+  
+};
+
+// Complete packet, valid parity
+
+bool RTCM2packet::valid() const {
+  
+  // The methods for creating a packet (get,">>") ensure
+  // that a packet has a consistent number of data words 
+  // and a valid parity in all header and data words. 
+  // Therefore a packet is either empty or valid.
+  
+  return (H1!=0);
+    
+};
+
+
+//
+// Gets the next packet from the buffer
+//
+
+void RTCM2packet::getPacket(std::string& buf) {
+
+  const int wordLen = 5; // Number of bytes representing a 30-bit word
+  const int spare   = 1; // Number of spare words for resync of parity
+                         // (same value as used in ThirtyBitWord::getHeader)
+  unsigned int n;
+  
+  // Does the package content at least spare bytes and first header byte?
+  if (buf.size()<(spare+1)*wordLen) { 
+      clear();       
+      return;
+  };
+    
+  // Try to read a full packet. Processed bytes are removed from the input 
+  // buffer except for the latest spare*wordLen bytes to restore the parity 
+  // bytes upon subseqeunt calls of getPacket().
+  
+  // Locate and read the first header word
+  W.getHeader(buf);
+  if (!W.isHeader()) { 
+    // No header found; try again next time. buf retains only the spare
+    // words. The packet contents is cleared to indicate an unsuccessful
+    // termination of getPacket().
+    clear();
+    
+#if ( DEBUG > 0 )
+    cerr << "Error in getPacket(): W.isHeader() = false  for H1" << endl;
+#endif
+    
+    return; 
+  };
+  H1 = W.value();
+
+  // Do we have enough bytes to read the next word? If not, the packet 
+  // contents is cleared to indicate an unsuccessful termination. The
+  // previously read spare and header bytes are retained in the buffer
+  // for use in the next call of getPacket().
+  if (buf.size()<(spare+2)*wordLen) { 
+    clear(); 
+    
+#if ( DEBUG > 0 )    
+    cerr << "Error in getPacket(): buffer too short for complete H2" << endl;
+#endif
+    
+    return;
+  };
+  
+  // Read the second header word
+  W.get(buf.substr((spare+1)*wordLen,buf.size()-(spare+1)*wordLen));  
+  H2 = W.value();
+  if (!W.validParity()) { 
+    // Invalid H2 word; delete first buffer byte and try to resynch next time.
+    // The packet contents is cleared to indicate an unsuccessful termination.
+    clear(); 
+    buf.erase(0,1); 
+    
+#if ( DEBUG > 0 )    
+    cerr << "Error in getPacket(): W.validParity() = false for H2" << endl;
+#endif
+        
+    return; 
+  };
+
+  n = nDataWords();
+  
+  // Do we have enough bytes to read the next word? If not, the packet 
+  // contents is cleared to indicate an unsuccessful termination. The
+  // previously read spare and header bytes are retained in the buffer
+  // for use in the next call of getPacket().
+  if (buf.size()<(spare+2+n)*wordLen) { 
+    clear(); 
+    
+#if ( DEBUG > 0 )    
+    cerr << "Error in getPacket(): buffer too short for complete " << n
+         << " DWs" << endl;
+#endif
+    
+    return; 
+  };
+  
+  DW.resize(n);
+  for (unsigned int i=0; i<n; i++) {
+    W.get(buf.substr((spare+2+i)*wordLen,buf.size()-(spare+2+i)*wordLen)); 
+    DW[i] = W.value();
+    if (!W.validParity()) { 
+      // Invalid data word; delete first byte and try to resynch next time.
+      // The packet contents is cleared to indicate an unsuccessful termination.
+      clear(); 
+      buf.erase(0,1); 
+      
+#if ( DEBUG > 0 )    
+    cerr << "Error in getPacket(): W.validParity() = false for DW"
+         << i << endl;
+#endif
+        
+      return; 
+    };
+  };
+
+  // Successful packet extraction; delete total number of message bytes 
+  // from buffer. 
+  // Note: a total of "spare" words remain in the buffer to enable a
+  // parity resynchronization when searching the next header.
+  
+  buf.erase(0,(n+2)*wordLen);
+    
+  return;
+  
+};
+
+
+//
+// Gets the next packet from the input stream
+//
+
+void RTCM2packet::getPacket(std::istream& inp) {
+
+  int n;
+  
+  W.getHeader(inp); 
+  H1 = W.value(); 
+  if (inp.fail() || !W.isHeader()) { clear(); return; }
+  
+  W.get(inp);       
+  H2 = W.value(); 
+  if (inp.fail() || !W.validParity()) { clear(); return; }
+
+  n = nDataWords();
+  DW.resize(n);
+  for (int i=0; i<n; i++) {
+    W.get(inp); 
+    DW[i] = W.value(); 
+    if (inp.fail() || !W.validParity()) { clear(); return; }
+  };
+
+  return;
+  
+};
+
+//
+// Input operator
+//
+// Reads an RTCM2 packet from the input stream. 
+//
+
+istream& operator >> (istream& is, RTCM2packet& p) {
+
+  p.getPacket(is);
+  
+  return is;
+  
+};
+
+// Access methods
+
+unsigned int RTCM2packet::header1() const {
+  return H1;
+};
+
+unsigned int RTCM2packet::header2() const {
+  return H2;
+};
+
+unsigned int RTCM2packet::dataWord(int i) const {
+  if ( (unsigned int)i < DW.size() ) {
+    return DW[i];
+  }
+  else {
+    return 0;
+  }
+};
+
+unsigned int RTCM2packet::msgType()   const {
+  return ( H1>>16 & 0x003F );
+};
+
+unsigned int RTCM2packet::stationID() const {
+  return ( H1>> 6 & 0x03FF );
+};
+
+unsigned int RTCM2packet::modZCount() const {
+  return ( H2>>17 & 0x01FFF );
+};
+
+unsigned int RTCM2packet::seqNumber() const {
+  return ( H2>>14 & 0x0007 );
+};
+
+unsigned int RTCM2packet::nDataWords() const {
+  return ( H2>> 9 & 0x001F );
+};
+
+unsigned int RTCM2packet::staHealth() const {
+  return ( H2>> 6 & 0x0003 );
+};
+
+
+//
+// Get unsigned bit field
+//
+// Bits are numbered from left (msb) to right (lsb) starting at bit 0
+//
+
+unsigned int RTCM2packet::getUnsignedBits ( unsigned int start, 
+                                            unsigned int n      ) const {
+                                    
+  unsigned int  iFirst = start/24;       // Index of first data word
+  unsigned int  iLast  = (start+n-1)/24; // Index of last  data word
+  unsigned int  bitField = 0;
+  unsigned int  tmp;
+  
+  // Checks
+  
+  if (n>32) {
+    throw("Error: can't handle >32 bits in RTCM2packet::getUnsignedBits");
+  };
+  
+  if ( 24*DW.size() < start+n-1 ) {
+#if (DEBUG>0)
+    cerr << "Debug output RTCM2packet::getUnsignedBits" << endl
+         << "  P.msgType:    " << setw(5) << msgType()    << endl
+         << "  P.nDataWords: " << setw(5) << nDataWords() << endl
+         << "  start:        " << setw(5) << start        << endl
+         << "  n:            " << setw(5) << n            << endl
+         << "  P.H1:         " << setw(5) << bitset<32>(H1) << endl
+         << "  P.H2:         " << setw(5) << bitset<32>(H2) << endl
+         << endl
+         << flush;
+#endif
+    throw("Error: Packet too short in RTCM2packet::getUnsignedBits");
+  }
+
+  // Handle initial data word
+  // Get all data bits. Strip parity and unwanted leading bits. 
+  // Store result in 24 lsb bits of tmp. 
+  
+  tmp = (DW[iFirst]>>6) & 0xFFFFFF; 
+  tmp = ( ( tmp << start%24) & 0xFFFFFF ) >> start%24 ;
+
+  // Handle central data word
+  
+  if ( iFirst<iLast ) { 
+    bitField = tmp;
+    for (unsigned int iWord=iFirst+1; iWord<iLast; iWord++) {
+      tmp = (DW[iWord]>>6) & 0xFFFFFF;     
+      bitField = (bitField << 24) | tmp;
+    };
+    tmp = (DW[iLast]>>6) & 0xFFFFFF;     
+  };
+
+  // Handle last data word
+  
+  tmp = tmp >> (23-(start+n-1)%24);
+  bitField = (bitField << ((start+n-1)%24+1)) | tmp;
+
+  // Done
+  
+  return bitField;
+  
+};
+
+//
+// Get signed bit field
+//
+// Bits are numbered from left (msb) to right (lsb) starting at bit 0
+//
+
+int RTCM2packet::getBits ( unsigned int start, 
+                           unsigned int n      ) const {
+
+
+  // Checks
+  
+  if (n>32) {
+    throw("Error: can't handle >32 bits in RTCM2packet::getBits");
+  };
+  
+  if ( 24*DW.size() < start+n-1 ) {
+#if (DEBUG>0)
+    cerr << "Debug output RTCM2packet::getUnsignedBits" << endl
+         << "  P.msgType:    " << setw(5) << msgType()    << endl
+         << "  P.nDataWords: " << setw(5) << nDataWords() << endl
+         << "  start:        " << setw(5) << start        << endl
+         << "  n:            " << setw(5) << n            << endl
+         << "  P.H1:         " << setw(5) << bitset<32>(H1) << endl
+         << "  P.H2:         " << setw(5) << bitset<32>(H2) << endl
+         << endl
+         << flush;
+#endif
+    throw("Error: Packet too short in RTCM2packet::getBits");
+  }
+
+  return ((int)(getUnsignedBits(start,n)<<(32-n))>>(32-n));
+  
+};
+
+
+//------------------------------------------------------------------------------
+//
+// RTCM2_03 (class implementation)
+//
+// Purpose:
+//
+//   A class for handling RTCM 2 GPS Reference Station Parameters messages
+//
+//------------------------------------------------------------------------------
+
+// Constructor
+RTCM2_03::RTCM2_03(){
+  validMsg = false;
+  x = 0.0; 
+  y = 0.0; 
+  z=0.0;
+};
+
+void RTCM2_03::extract(const RTCM2packet& P) {
+
+  // Check validity, packet type and number of data words
+  
+  validMsg = (P.valid()); 
+  if (!validMsg) return;
+
+  validMsg = (P.ID()==03);  
+  if (!validMsg) return;
+  
+  validMsg = (P.nDataWords()==4);  
+  if (!validMsg) return;
+  
+  // Antenna reference point coordinates
+  
+  x  = P.getBits( 0,32)*0.01;    // X [m]
+  y  = P.getBits(32,32)*0.01;    // Y [m]
+  z  = P.getBits(64,32)*0.01;    // Z [m]
+
+};
+
+//------------------------------------------------------------------------------
+//
+// RTCM2_23 (class implementation)
+//
+// Purpose:
+//
+//   A class for handling RTCM 2 Antenna Type Definition messages
+//
+//------------------------------------------------------------------------------
+
+void RTCM2_23::extract(const RTCM2packet& P) {
+
+  unsigned int       nad, nas;
+  
+  const unsigned int nF1  = 8; // bits in first field (R,AF,SF,NAD)
+  const unsigned int nF2  =16; // bits in second field (SETUP ID,R,NAS)
+  const unsigned int nBits=24; // data bits in  30bit word
+  
+  // Check validity, packet type and number of data words
+  
+  validMsg = (P.valid()); 
+  if (!validMsg) return;
+
+  validMsg = (P.ID()==23);  
+  if (!validMsg) return;
+
+  // Check number of data words (can nad be read in?)
+  
+  validMsg = (P.nDataWords()>=1);  
+  if (!validMsg){
+    cerr << "RTCM2_23::extract: P.nDataWords()>=1" << endl;
+    return;
+  }
+
+  // Antenna descriptor 
+  antType = "";
+  nad = P.getUnsignedBits(3,5);
+  
+  // Check number of data words (can antenna description be read in?) 
+  validMsg = ( P.nDataWords() >= 
+               (unsigned int)ceil((nF1+nad*8)/(double)nBits) );
+
+  if (!validMsg) return;
+  
+  for (unsigned int i=0;i<nad;i++) 
+    antType += (char)P.getUnsignedBits(nF1+i*8,8);
+
+  // Optional antenna serial numbers
+  if (P.getUnsignedBits(2,1)==1) {
+
+    // Check number of data words (can nas be read in?)
+    
+    validMsg = ( P.nDataWords() >=
+                 (unsigned int)ceil((nF1+nad*8+nF2)/(double)nBits) );
+    if (!validMsg) return;
+    
+    nas = P.getUnsignedBits(19+8*nad,5);
+
+    // Check number of data words (can antenna serial number be read in?)
+    
+    validMsg = ( P.nDataWords() >=
+                 (unsigned int)ceil((nF1+nad*8+nF2+nas*8)/(double)nBits) );
+    if (!validMsg) return;
+
+    antSN = "";
+    for (unsigned int i=0;i<nas;i++) 
+      antSN += (char)P.getUnsignedBits(nF1+8*nad+nF2+i*8,8);
+  };
+
+};
+
+
+//------------------------------------------------------------------------------
+//
+// RTCM2_24 (class implementation)
+//
+// Purpose:
+//
+//   A class for handling RTCM 2 Reference Station Antenna 
+//   Reference Point Parameter messages
+//
+//------------------------------------------------------------------------------
+
+void RTCM2_24::extract(const RTCM2packet& P) {
+
+   double dx,dy,dz;
+
+  // Check validity, packet type and number of data words
+  
+  validMsg = (P.valid()); 
+  if (!validMsg) return;
+
+  validMsg = (P.ID()==24);  
+  if (!validMsg) return;
+  
+  validMsg = (P.nDataWords()==6);  
+  if (!validMsg) return;
+  
+  // System indicator
+  
+  isGPS     = (P.getUnsignedBits(118,1)==0);
+  isGLONASS = (P.getUnsignedBits(118,1)==1);
+  
+  // Antenna reference point coordinates
+
+  x  = 64.0*P.getBits( 0,32);
+  y  = 64.0*P.getBits(40,32);
+  z  = 64.0*P.getBits(80,32);
+  dx = P.getUnsignedBits( 32,6);
+  dy = P.getUnsignedBits( 72,6);
+  dz = P.getUnsignedBits(112,6);
+  x = 0.0001*( x + (x<0? -dx:+dx) );
+  y = 0.0001*( y + (y<0? -dy:+dy) );
+  z = 0.0001*( z + (z<0? -dz:+dz) );
+
+  // Antenna Height
+   
+  if (P.getUnsignedBits(119,1)==1) {
+    h= P.getUnsignedBits(120,18)*0.0001;
+  };
+
+
+};
+
+
+//------------------------------------------------------------------------------
+//
+// RTCM2_Obs (class definition)
+//
+// Purpose:
+//
+//   A class for handling blocks of RTCM2 18 & 19 packets that need to be 
+//   combined to get a complete set of measurements
+//
+// Notes:
+//
+//   The class collects L1/L2 code and phase measurements for GPS and GLONASS.
+//   Since the Multiple Message Indicator is inconsistently handled by various 
+//   receivers we simply require code and phase on L1 and L2 for a complete
+//   set ob observations at a given epoch. GLONASS observations are optional, 
+//   but all four types (code+phase,L1+L2) must be provided, if at least one 
+//   is given. Also, the GLONASS message must follow the corresponding GPS 
+//   message.
+//
+//------------------------------------------------------------------------------
+
+// Constructor
+
+RTCM2_Obs::RTCM2_Obs() {
+
+  clear();
+
+};
+
+// Reset entire block 
+
+void RTCM2_Obs::clear() {
+  
+  GPSonly = true;
+  
+  secs=0.0;                // Seconds of hour (GPS time)
+  nSat=0;                  // Number of space vehicles
+  PRN.resize(0);           // space vehicles
+  rng_C1.resize(0);        // Pseudorange [m]
+  rng_P1.resize(0);        // Pseudorange [m]
+  rng_P2.resize(0);        // Pseudorange [m]
+  cph_L1.resize(0);        // Carrier phase [m]
+  cph_L2.resize(0);        // Carrier phase [m]
+  slip_L1.resize(0);       // Slip counter
+  slip_L2.resize(0);       // Slip counter
+  
+  availability.reset();    // Message status flags
+  
+};
+
+// Availability checks
+
+bool RTCM2_Obs::anyGPS() const {
+
+  return  availability.test(bit_L1rngGPS) ||
+          availability.test(bit_L2rngGPS) ||
+          availability.test(bit_L1cphGPS) ||
+          availability.test(bit_L2cphGPS);
+    
+};
+
+bool RTCM2_Obs::anyGLONASS() const {
+
+  return  availability.test(bit_L1rngGLO) ||
+          availability.test(bit_L2rngGLO) ||
+          availability.test(bit_L1cphGLO) ||
+          availability.test(bit_L2cphGLO);
+    
+};
+
+bool RTCM2_Obs::allGPS() const {
+
+  return  availability.test(bit_L1rngGPS) &&
+          availability.test(bit_L2rngGPS) &&
+          availability.test(bit_L1cphGPS) &&
+          availability.test(bit_L2cphGPS);
+    
+};
+
+bool RTCM2_Obs::allGLONASS() const {
+
+  return  availability.test(bit_L1rngGLO) &&
+          availability.test(bit_L2rngGLO) &&
+          availability.test(bit_L1cphGLO) &&
+          availability.test(bit_L2cphGLO);
+    
+};
+
+// Validity
+
+bool RTCM2_Obs::valid() const {
+
+  return ( allGPS() && ( GPSonly || allGLONASS() ) );
+  
+};
+
+
+//
+// Extract RTCM2 18 & 19 messages and store relevant data for future use
+//
+
+void RTCM2_Obs::extract(const RTCM2packet& P) {
+
+  bool    isGPS,isCAcode,isL1,isOth;
+  int     NSat,idx;
+  int     sid,prn,slip_cnt;
+  double  t,rng,cph;
+
+  // Check validity and packet type
+  
+  if ( ! ( P.valid() && 
+           (P.ID()==18 || P.ID()==19) ) ) return;
+
+  // Check number of data words, message starts with 1 DW for epoch, then each 
+  // satellite brings 2 DW, 
+  // Do not start decoding if less than 3 DW are in package
+  
+  if ( P.nDataWords()<3 ) {
+#if ( DEBUG > 0 )
+    cerr << "Error in RTCM2_Obs::extract(): less than 3 DW ("
+         << P.nDataWords() << ") detected" << endl;
+#endif
+    
+    return;
+  };
+  
+  // Check if number of data words is odd number
+  
+  if ( P.nDataWords()%2==0 ){
+#if ( DEBUG > 0 )
+    cerr << "Error in RTCM2_Obs::extract(): odd number of DW ("
+         << P.nDataWords() << ") detected" << endl;
+#endif
+    
+    return;
+  };
+  
+  // Clear previous data if block was already complete
+
+  if (valid()) clear();
+  
+  // Process carrier phase message       
+  
+  if ( P.ID()==18 ) {   
+    
+    // Number of satellites in current message
+    NSat = (P.nDataWords()-1)/2;  
+
+    // Current epoch (mod 3600 sec) 
+    t = 0.6*P.modZCount() 
+        + P.getUnsignedBits(4,20)*1.0e-6;
+    
+#if (ROUND_EPOCH==1)
+    // SC-104 V2.3 4-42 Note 1 4. Assume measurements at hard edges
+    // of receiver clock with minimum divisions of 10ms
+    // and clock error less then recommended 1.1ms
+    // Hence, round time tag to 100 ms
+    t = floor(t*100.0+0.5)/100.0;
+#endif
+
+    // Frequency (exit if neither L1 nor L2)
+    isL1  = ( P.getUnsignedBits(0,1)==0 );
+    isOth = ( P.getUnsignedBits(1,1)==1 );
+    if (isOth) return;
+     
+    // Constellation (for first satellite in message)
+    isGPS = ( P.getUnsignedBits(26,1)==0 );
+    GPSonly = GPSonly && isGPS;
+    
+    // Multiple Message Indicator (only checked for first satellite)
+    // pendingMsg = ( P.getUnsignedBits(24,1)==1 );
+    
+    // Handle epoch: store epoch of first GPS message and 
+    // check consistency of subsequent messages. GLONASS time tags
+    // are different and have to be ignored
+    if (isGPS) {
+      if ( nSat==0 ) {
+        secs = t; // Store epoch 
+      }
+//    else if (t!=secs) {
+      else if (abs(t-secs)>1e-6) {
+        clear(); secs = t; // Clear all data, then store epoch 
+      };
+    };
+
+    // Discard GLONASS observations if no prior GPS observations 
+    // are available 
+    if (!isGPS && !anyGPS() ) return;
+        
+    // Set availability flags
+    
+    if ( isL1 &&  isGPS) availability.set(bit_L1cphGPS);
+    if (!isL1 &&  isGPS) availability.set(bit_L2cphGPS);
+    if ( isL1 && !isGPS) availability.set(bit_L1cphGLO);
+    if (!isL1 && !isGPS) availability.set(bit_L2cphGLO);
+    
+#if ( DEBUG > 0 )
+    cerr << "RTCM2_Obs::extract(): availability " 
+         << bitset<8>(availability) << endl;  
+#endif
+    
+    
+    // Process all satellites
+    
+    for (int iSat=0;iSat<NSat;iSat++){
+
+      // Code type
+      isCAcode = ( P.getUnsignedBits(iSat*48+25,1)==0 );
+      
+      // Satellite 
+      sid = P.getUnsignedBits(iSat*48+27,5);
+      if (sid==0) sid=32;
+      
+      prn = (isGPS? sid : sid+200 );
+      
+      // Carrier phase measurement (mod 2^23 [cy]; sign matched to range)
+      cph = -P.getBits(iSat*48+40,32)/256.0;
+
+      // Slip counter
+      slip_cnt = P.getUnsignedBits(iSat*48+35,5);
+
+      // Is this a new PRN?
+      idx=-1;
+      for (unsigned int i=0;i<PRN.size();i++) {
+        if (PRN[i]==prn) { idx=i; break; };
+      };
+      if (idx==-1) {
+        // Insert new sat at end of list
+        nSat++; idx = nSat-1;
+        PRN.push_back(prn);
+        rng_C1.push_back(0.0);
+        rng_P1.push_back(0.0);
+        rng_P2.push_back(0.0);
+        cph_L1.push_back(0.0);
+        cph_L2.push_back(0.0);
+        slip_L1.push_back(-1);
+        slip_L2.push_back(-1);
+      };
+      
+      // Store measurement
+      if (isL1) {
+        cph_L1[idx] = cph;
+        slip_L1[idx] = slip_cnt;
+      }
+      else {
+        cph_L2[idx] = cph;
+        slip_L2[idx] = slip_cnt;
+      };
+           
+    };
+  
+  };
+
+
+  // Process pseudorange message       
+  
+  if ( P.ID()==19 ) {   
+  
+    // Number of satellites in current message
+    NSat = (P.nDataWords()-1)/2;  
+
+    // Current epoch (mod 3600 sec) 
+    t = 0.6*P.modZCount() 
+        + P.getUnsignedBits(4,20)*1.0e-6;
+    
+#if (ROUND_EPOCH==1)
+    // SC-104 V2.3 4-42 Note 1 4. Assume measurements at hard edges
+    // of receiver clock with minimum divisions of 10ms
+    // and clock error less then recommended 1.1ms
+    // Hence, round time tag to 100 ms
+    t = floor(t*100.0+0.5)/100.0;
+#endif
+
+    // Frequency (exit if neither L1 nor L2)
+    isL1  = ( P.getUnsignedBits(0,1)==0 );
+    isOth = ( P.getUnsignedBits(1,1)==1 );
+    if (isOth) return;
+     
+#if (FIX_TRIMBLE_4000SSI==1)
+    // Fix for data streams originating from TRIMBLE_4000SSI receivers.
+    // GPS PRN32 is erroneously flagged as GLONASS satellite in the C/A
+    // pseudorange messages. We therefore use a majority voting to 
+    // determine the true constellation for this message.
+    // This fix is only required for Trimble4000SSI receivers but can also
+    // be used with all other known receivers.
+    int nGPS=0;
+    for(int iSat=0; iSat<NSat; iSat++){
+      // Constellation (for each satellite in message)
+      isGPS = ( P.getUnsignedBits(iSat*48+26,1)==0 );
+      if(isGPS) nGPS++;
+    };
+    isGPS = (2*nGPS>NSat);  
+#else
+    // Constellation (for first satellite in message)
+    isGPS = ( P.getUnsignedBits(26,1)==0 );
+#endif
+    GPSonly = GPSonly && isGPS;
+
+    // Multiple Message Indicator (only checked for first satellite)
+    // pendingMsg = ( P.getUnsignedBits(24,1)==1 );
+    
+    // Handle epoch: store epoch of first GPS message and 
+    // check consistency of subsequent messages. GLONASS time tags
+    // are different and have to be ignored
+    if (isGPS) {
+      if ( nSat==0 ) {
+        secs = t; // Store epoch 
+      }
+//    else if (t!=secs) {
+      else if (abs(t-secs)>1e-6) {
+        clear(); secs = t; // Clear all data, then store epoch 
+      };
+    };
+
+    // Discard GLONASS observations if no prior GPS observations 
+    // are available 
+    if (!isGPS && !anyGPS() ) return;
+        
+    // Set availability flags
+    if ( isL1 &&  isGPS) availability.set(bit_L1rngGPS);
+    if (!isL1 &&  isGPS) availability.set(bit_L2rngGPS);
+    if ( isL1 && !isGPS) availability.set(bit_L1rngGLO);
+    if (!isL1 && !isGPS) availability.set(bit_L2rngGLO);
+
+#if ( DEBUG > 0 )
+    cerr << "RTCM2_Obs::extract(): availability " 
+         << bitset<8>(availability) << endl;  
+#endif
+
+    // Process all satellites
+    
+    for (int iSat=0;iSat<NSat;iSat++){
+
+      // Code type
+      isCAcode = ( P.getUnsignedBits(iSat*48+25,1)==0 );
+      
+      // Satellite 
+      sid = P.getUnsignedBits(iSat*48+27,5);
+      if (sid==0) sid=32;
+      prn = (isGPS? sid : sid+200 );
+      
+      // Pseudorange measurement [m]
+      rng = P.getUnsignedBits(iSat*48+40,32)*0.02;
+
+      // Is this a new PRN?
+      idx=-1;
+      for (unsigned int i=0;i<PRN.size();i++) {
+        if (PRN[i]==prn) { idx=i; break; };
+      };
+      if (idx==-1) {
+        // Insert new sat at end of list
+        nSat++; idx = nSat-1;
+        PRN.push_back(prn);
+        rng_C1.push_back(0.0);
+        rng_P1.push_back(0.0);
+        rng_P2.push_back(0.0);
+        cph_L1.push_back(0.0);
+        cph_L2.push_back(0.0);
+        slip_L1.push_back(-1);
+	      slip_L2.push_back(-1);
+      };
+      
+      // Store measurement
+      if (isL1) {
+        if (isCAcode) {
+          rng_C1[idx] = rng;
+        }
+        else {
+          rng_P1[idx] = rng; 
+        }
+      }
+      else {
+        rng_P2[idx] = rng;
+      };
+           
+    };
+  
+  };
+
+};
+
+//
+//  Resolution of 2^24 cy carrier phase ambiguity 
+//  caused by 32-bit data field restrictions
+//  
+//  Note: the RTCM standard specifies an ambiguity of +/-2^23 cy.
+//  However, numerous receivers generate data in the +/-2^22 cy range.
+//  A reduced ambiguity of 2^23 cy appears compatible with both cases.
+//
+
+double RTCM2_Obs::resolvedPhase_L1(int i) const {
+
+//const double  ambig = pow(2.0,24);   // as per RTCM2 spec
+  const double  ambig = pow(2.0,23);   // used by many receivers 
+
+  double        rng;
+  double        n;
+ 
+  if (!valid() || i<0 || i>nSat-1) return 0.0;
+
+  rng = rng_C1[i]; 
+  if (rng==0.0) rng = rng_P1[i];
+  if (rng==0.0) return 0.0;
+  
+  n = floor( (rng/lambda_L1-cph_L1[i]) / ambig + 0.5 );
+  
+  return cph_L1[i] + n*ambig;
+  
+}; 
+
+double RTCM2_Obs::resolvedPhase_L2(int i) const {
+
+//const double  ambig = pow(2.0,24);   // as per RTCM2 spec
+  const double  ambig = pow(2.0,23);   // used by many receivers 
+
+  double        rng;
+  double        n;
+  
+  if (!valid() || i<0 || i>nSat-1) return 0.0;
+  
+  rng = rng_C1[i]; 
+  if (rng==0.0) rng = rng_P1[i];
+  if (rng==0.0) return 0.0;
+  
+  n = floor( (rng/lambda_L2-cph_L2[i]) / ambig + 0.5 );
+  
+  return cph_L2[i] + n*ambig;
+  
+}; 
+
+//
+//  Resolution of epoch using reference date (GPS week and secs)
+//  
+
+void RTCM2_Obs::resolveEpoch (int  refWeek,   double  refSecs,  
+                              int& epochWeek, double& epochSecs   ) const {
+
+  const double secsPerWeek = 604800.0;                            
+
+  epochWeek = refWeek;
+  epochSecs = secs + 3600.0*(floor((refSecs-secs)/3600.0+0.5));
+  
+  if (epochSecs<0          ) { epochWeek--; epochSecs+=secsPerWeek; };
+  if (epochSecs>secsPerWeek) { epochWeek++; epochSecs-=secsPerWeek; };
+                              
+};
+
+}; // End of namespace rtcm2
Index: branches/BNC_LM/RTCM/RTCM2.h
===================================================================
--- branches/BNC_LM/RTCM/RTCM2.h	(revision 3570)
+++ branches/BNC_LM/RTCM/RTCM2.h	(revision 3570)
@@ -0,0 +1,336 @@
+//------------------------------------------------------------------------------
+//
+// RTCM2.h
+// 
+// Purpose: 
+//
+//   Module for extraction of RTCM2 messages
+//
+// References:
+//
+//   RTCM 10402.3 Recommended Standards for Differential GNSS (Global
+//     Navigation Satellite Systems) Service; RTCM Paper 136-2001/SC104-STD,
+//     Version 2.3, 20 Aug. 2001; Radio Technical Commission For Maritime 
+//     Services, Alexandria, Virgina (2001).
+//   ICD-GPS-200; Navstar GPS Space Segment / Navigation User Interfaces;
+//     Revison C; 25 Sept. 1997; Arinc Research Corp., El Segundo (1997).
+//   Jensen M.; RTCM2ASC Documentation;
+//     URL http://kom.aau.dk/~borre/masters/receiver/rtcm2asc.htm;
+//     last accessed 17 Sep. 2006
+//   Sager J.; Decoder for RTCM SC-104 data from a DGPS beacon receiver;
+//     URL http://www.wsrcc.com/wolfgang/ftp/rtcm-0.3.tar.gz;
+//     last accessed 17 Sep. 2006
+//
+// Last modified:
+//
+//   2006/09/17  OMO  Created
+//   2006/10/05  OMO  Specified const'ness of various member functions
+//   2006/10/17  OMO  Removed obsolete check of multiple message indicator
+//   2006/11/25  OMO  Revised check for presence of GLONASS data
+//   2008/03/07  AHA  Removed unnecessary failure flag
+//   2008/09/01  AHA  Harmonization with newest BNC version
+//
+// (c) DLR/GSOC
+//
+//------------------------------------------------------------------------------
+
+#ifndef INC_RTCM2_H
+#define INC_RTCM2_H
+
+#include <bitset> 
+#include <fstream>
+#include <string>
+#include <vector>
+
+//
+// namespace rtcm2
+//
+
+namespace rtcm2 {
+
+
+//------------------------------------------------------------------------------
+//
+// class thirtyBitWord (specification)
+//
+// Purpose:
+//  
+//   Handling of RTCM2 30bit words
+//
+//------------------------------------------------------------------------------
+
+class ThirtyBitWord {
+
+  public:
+  
+    // Constructor and initialization
+    
+    ThirtyBitWord();
+    
+    void         clear();
+
+    // Status queries
+    
+    bool         fail() const;
+    bool         validParity() const;
+    bool         isHeader() const;
+
+    // Access methods
+    
+    unsigned int all() const;
+    unsigned int value() const;
+    
+    // Input
+    
+    void         get(const std::string& buf);
+    void         get(std::istream& inp);
+    void         getHeader(std::string& buf);
+    void         getHeader(std::istream& inp);
+  
+  private:
+     
+    // Input
+
+    void         append(unsigned char c);
+
+  private:
+
+//    bool         failure;
+
+    //
+    // A 32-bit integer is used to store the 30-bit RTCM word as well as 2
+    // parity bits retained from the previous word
+    //
+    // Bits 31..30 (from left to right) hold the parity bits D29*..D30* of 
+    //             the previous 30-bit word
+    // Bits 29..06 (from left to right) hold the current data bits D01..D24
+    // Bits 05..00 (from left to right) hold the current parity bits D25..D30
+    //
+
+    unsigned int W;         
+     
+};
+
+
+
+//------------------------------------------------------------------------------
+//
+// RTCM2packet (class definition)
+//
+// Purpose:
+//
+//   A class for handling RTCM2 data packets
+//
+//------------------------------------------------------------------------------
+
+class RTCM2packet {
+  
+  public:
+  
+    // Constructor and initialization
+    
+    RTCM2packet();
+   
+    void clear();
+    
+    // Status queries
+
+    bool valid() const;  
+    
+    // Input 
+
+    void                 getPacket(std::string&  buf);
+    void                 getPacket(std::istream& inp);
+    friend std::istream& operator >> (std::istream& is, RTCM2packet& p);
+    
+    //
+    // Access methods
+    //    
+    
+    // Header and data words contents (parity corrected)
+    
+    unsigned int  header1() const;
+    unsigned int  header2() const;
+    unsigned int  dataWord(int i) const;
+    
+    // Header information
+    
+    unsigned int  msgType()    const;
+    unsigned int  ID()         const { return msgType(); };
+    unsigned int  stationID()  const;
+    unsigned int  modZCount()  const;
+    unsigned int  seqNumber()  const;
+    unsigned int  nDataWords() const;
+    unsigned int  staHealth()  const;
+
+    // Data access
+
+    unsigned int  getUnsignedBits (unsigned int start,
+                                   unsigned int n     ) const;
+    int           getBits         (unsigned int start,
+                                   unsigned int n     ) const;
+
+  private:
+
+    // All input of RTCM data uses a single instance, W, of a 30-bit word
+    // to maintain parity bits between consecutive inputs. 
+    
+    ThirtyBitWord  W;
+
+    // Two 30-bit words make up the header of an RTCM2 message
+    // (parity corrected) 
+    
+    unsigned int  H1;
+    unsigned int  H2;
+
+    // Data words (parity corrected)
+
+    std::vector<unsigned int> DW;
+    
+}; 
+
+
+//------------------------------------------------------------------------------
+//
+// RTCM2_03 (class definition)
+//
+// Purpose:
+//
+//   A class for handling RTCM 2 GPS Reference Station Parameters messages
+//
+//------------------------------------------------------------------------------
+
+class RTCM2_03 {
+  
+  public:
+    // Constructor
+    RTCM2_03();
+
+    void extract(const RTCM2packet& P);
+
+  public:
+
+    bool    validMsg;          // Validity flag
+    double  x,y,z;             // Station coordinates
+
+};
+
+
+//------------------------------------------------------------------------------
+//
+// RTCM2_23 (class definition)
+//
+// Purpose:
+//
+//   A class for handling RTCM 2 Antenna Type Definition messages
+//
+//------------------------------------------------------------------------------
+
+class RTCM2_23 {
+
+  public:
+
+    void extract(const RTCM2packet& P);
+
+  public:
+
+    bool         validMsg;        // Validity flag
+    std::string  antType;         // Antenna descriptor
+    std::string  antSN  ;         // Antenna Serial Number
+
+};
+
+
+//------------------------------------------------------------------------------
+//
+// RTCM2_24 (class definition)
+//
+// Purpose:
+//
+//   A class for handling RTCM 2 Reference Station Antenna 
+//   Reference Point Parameter messages
+//
+//------------------------------------------------------------------------------
+
+class RTCM2_24 {
+
+  public:
+
+    void extract(const RTCM2packet& P);
+
+  public:
+
+    bool    validMsg;          // Validity flag
+    bool    isGPS;             // Flag for GPS supporting station
+    bool    isGLONASS;         // Flag for GLONASS supporting station
+    double  x,y,z;             // Station coordinates (ECEF,[m])
+    double  h;                 // Antenna height [m]
+
+};
+
+
+
+//------------------------------------------------------------------------------
+//
+// RTCM2_Obs (class definition)
+//
+// Purpose:
+//
+//   A class for handling blocks of RTCM2 18 & 19 packets that need to be 
+//   combined to get a complete set of measurements
+//
+//------------------------------------------------------------------------------
+
+class RTCM2_Obs {
+
+  public: 
+
+    RTCM2_Obs();                           // Constructor
+    
+    void   extract(const RTCM2packet& P);  // Packet handler
+    void   clear();                        // Initialization
+    bool   valid() const;                  // Check for complete obs block 
+
+    double resolvedPhase_L1(int i) const;  // L1 & L2 carrier phase of i-th sat
+    double resolvedPhase_L2(int i) const;  // with resolved 2^24 cy ambiguity 
+                                           // (based on rng_C1)
+
+    void   resolveEpoch (int     refWeek,  // Resolve epoch using reference
+                         double  refSecs,  // epoch (GPS week and secs)
+                         int&    epochWeek,
+                         double& epochSecs  ) const;
+    
+                                               
+  public: 
+
+    double               secs;             // Seconds of hour (GPS time)
+    int                  nSat;             // Number of space vehicles
+    std::vector<int>     PRN;              // PRN (satellite number)
+    std::vector<double>  rng_C1;           // C/A code pseudorange on L1 [m]
+    std::vector<double>  rng_P1;           // P(Y) code pseudorange on L1 [m]
+    std::vector<double>  rng_P2;           // Pseudorange on L2 [m]
+    std::vector<double>  cph_L1;           // Carrier phase on L1 [cy]
+    std::vector<double>  cph_L2;           // Carrier phase on L2 [cy]
+    std::vector<int>     slip_L1;          // Carrier phase slip counter, L1
+    std::vector<int>     slip_L2;          // Carrier phase slip counter, L1
+
+  private:
+
+    bool anyGPS() const;
+    bool anyGLONASS() const;
+    bool allGPS() const;
+    bool allGLONASS() const;
+
+  private:
+
+    typedef std::bitset<8> msgflags;
+    
+    msgflags             availability;      // Msg availability flags
+    bool                 GPSonly;           // Flag for GPS-only station
+
+}; 
+
+
+}; // End of namespace rtcm2
+
+#endif  // include blocker
Index: branches/BNC_LM/RTCM/RTCM2Decoder.cpp
===================================================================
--- branches/BNC_LM/RTCM/RTCM2Decoder.cpp	(revision 3570)
+++ branches/BNC_LM/RTCM/RTCM2Decoder.cpp	(revision 3570)
@@ -0,0 +1,442 @@
+// Part of BNC, a utility for retrieving decoding and
+// converting GNSS data streams from NTRIP broadcasters.
+//
+// Copyright (C) 2007
+// German Federal Agency for Cartography and Geodesy (BKG)
+// http://www.bkg.bund.de
+// Czech Technical University Prague, Department of Geodesy
+// http://www.fsv.cvut.cz
+//
+// Email: euref-ip@bkg.bund.de
+//
+// This program is free software; you can redistribute it and/or
+// modify it under the terms of the GNU General Public License
+// as published by the Free Software Foundation, version 2.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+/* -------------------------------------------------------------------------
+ * BKG NTRIP Client
+ * -------------------------------------------------------------------------
+ *
+ * Class:      RTCM2Decoder
+ *
+ * Purpose:    RTCM2 Decoder
+ *
+ * Author:     L. Mervart
+ *
+ * Created:    24-Aug-2006
+ *
+ * Changes:    
+ *
+ * -----------------------------------------------------------------------*/
+
+#include <math.h>
+#include <sstream>
+#include <iomanip>
+#include <set>
+
+#include "../bncutils.h"
+#include "rtcm_utils.h"
+#include "GPSDecoder.h"
+#include "RTCM2Decoder.h"
+
+using namespace std;
+using namespace rtcm2;
+
+// 
+// Constructor
+// 
+
+RTCM2Decoder::RTCM2Decoder(const std::string& ID) {
+  _ID = ID;
+}
+
+// 
+// Destructor
+// 
+
+RTCM2Decoder::~RTCM2Decoder() {
+  for (t_listMap::iterator ii = _ephList.begin(); ii != _ephList.end(); ii++) {
+    delete ii->second;
+  }
+}
+
+
+//
+t_irc RTCM2Decoder::getStaCrd(double& xx, double& yy, double& zz) {
+  if ( !_msg03.validMsg ) {
+    return failure;
+  }
+  
+  xx = _msg03.x + (_msg22.validMsg ? _msg22.dL1[0] : 0.0);
+  yy = _msg03.y + (_msg22.validMsg ? _msg22.dL1[1] : 0.0);
+  zz = _msg03.z + (_msg22.validMsg ? _msg22.dL1[2] : 0.0);
+
+  return success;
+}
+
+//
+t_irc RTCM2Decoder::getStaCrd(double& xx, double& yy, double& zz,
+                              double& dx1, double& dy1, double& dz1,
+                              double& dx2, double& dy2, double& dz2) {
+  xx = _msg03.x;
+  yy = _msg03.y;
+  zz = _msg03.z;
+
+  dx1 = (_msg22.validMsg ? _msg22.dL1[0] : 0.0);
+  dy1 = (_msg22.validMsg ? _msg22.dL1[1] : 0.0);
+  dz1 = (_msg22.validMsg ? _msg22.dL1[2] : 0.0);
+
+  dx2 = (_msg22.validMsg ? _msg22.dL2[0] : 0.0);
+  dy2 = (_msg22.validMsg ? _msg22.dL2[1] : 0.0);
+  dz2 = (_msg22.validMsg ? _msg22.dL2[2] : 0.0);
+
+  return success;
+}
+
+
+//
+t_irc RTCM2Decoder::Decode(char* buffer, int bufLen, vector<string>& errmsg) {
+
+  errmsg.clear();
+
+  _buffer.append(buffer, bufLen);
+  int    refWeek;
+  double refSecs;
+  currentGPSWeeks(refWeek, refSecs);
+  bool decoded = false;
+
+  while(true) {
+    _PP.getPacket(_buffer);
+    if (!_PP.valid()) {
+      if (decoded) {
+        return success;
+      } else {
+        return failure;
+      }
+    }
+    
+    // Store message number
+    _typeList.push_back(_PP.ID());
+
+    if ( _PP.ID()==18 || _PP.ID()==19 ) {   
+
+      _ObsBlock.extract(_PP);
+
+      if (_ObsBlock.valid()) {
+        decoded = true;
+
+        int    epochWeek;
+        double epochSecs;
+        _ObsBlock.resolveEpoch(refWeek, refSecs, epochWeek, epochSecs);
+          
+        for (int iSat=0; iSat < _ObsBlock.nSat; iSat++) {
+          t_obs obs;
+          if (_ObsBlock.PRN[iSat] > 100) {
+            obs.satNum      = _ObsBlock.PRN[iSat] % 100;
+            obs.satSys      = 'R';
+	  }		        
+	  else {	        
+            obs.satNum      = _ObsBlock.PRN[iSat];
+            obs.satSys      = 'G';
+	  }		        
+          obs.GPSWeek       = epochWeek;
+          obs.GPSWeeks      = epochSecs;
+          obs.C1            = _ObsBlock.rng_C1[iSat];
+          obs.P1            = _ObsBlock.rng_P1[iSat];
+          obs.P2            = _ObsBlock.rng_P2[iSat];
+          obs.L1P           = _ObsBlock.resolvedPhase_L1(iSat);
+          obs.L2P           = _ObsBlock.resolvedPhase_L2(iSat);
+	  obs.slip_cnt_L1   = _ObsBlock.slip_L1[iSat];
+	  obs.slip_cnt_L2   = _ObsBlock.slip_L2[iSat];
+
+          _obsList.push_back(obs);
+        }
+        _ObsBlock.clear();
+      }
+    }
+
+    else if ( _PP.ID() == 20 || _PP.ID() == 21 ) {
+      _msg2021.extract(_PP);
+
+      if (_msg2021.valid()) {
+        decoded = true;
+      	translateCorr2Obs(errmsg);
+      }	
+    }
+
+    else if ( _PP.ID() == 3 ) {
+      _msg03.extract(_PP);
+    }
+
+    else if ( _PP.ID() == 22 ) {
+      _msg22.extract(_PP);
+    }
+
+    else if ( _PP.ID() == 23 ) {
+      _msg23.extract(_PP);
+    }
+
+    else if ( _PP.ID() == 24 ) {
+      _msg24.extract(_PP);
+    }
+
+    // Output for RTCM scan
+    if     ( _PP.ID() == 3 ) {
+      if ( _msg03.validMsg ) {
+	_antList.push_back(t_antInfo());
+	
+	this->getStaCrd(_antList.back().xx, _antList.back().yy, _antList.back().zz);
+	
+	_antList.back().type     = t_antInfo::APC;
+	_antList.back().message  = _PP.ID();
+      }
+    }
+    else if ( _PP.ID() == 23 ) {
+      if ( _msg23.validMsg ) {
+	_antType.push_back(_msg23.antType.c_str());
+      }
+    }
+    else if ( _PP.ID() == 24 ) {
+      if ( _msg24.validMsg ) {
+	_antList.push_back(t_antInfo());
+	
+	_antList.back().xx = _msg24.x;
+	_antList.back().yy = _msg24.y;
+	_antList.back().zz = _msg24.z;
+	
+	_antList.back().type     = t_antInfo::ARP;
+	_antList.back().message  = _PP.ID();
+      }
+    }
+  }
+  return success;
+}
+
+
+
+bool RTCM2Decoder::storeEph(const gpsephemeris& gpseph, string& storedPRN, vector<int>& IODs) {
+  t_ephGPS eph; eph.set(&gpseph);
+
+  return storeEph(eph, storedPRN, IODs);
+}
+
+
+bool RTCM2Decoder::storeEph(const t_ephGPS& gpseph, string& storedPRN, vector<int>& IODs) {
+  t_ephGPS* eph = new t_ephGPS(gpseph);
+
+  string prn = eph->prn().toAscii().data();
+
+  t_listMap::iterator ip = _ephList.find(prn);
+  if (ip == _ephList.end() ) {
+    ip = _ephList.insert(pair<string, t_ephList*>(prn, new t_ephList)).first;
+  }
+  t_ephList* ephList = ip->second;
+
+  bool stored = ephList->store(eph);
+
+  if ( stored ) {
+    storedPRN = string(eph->prn().toAscii().data());
+    ephList->getIODs(IODs);
+    return true;
+  }
+
+  delete eph;
+
+  return false;
+}
+  
+  
+void RTCM2Decoder::translateCorr2Obs(vector<string>& errmsg) {
+
+  if ( !_msg03.validMsg || !_msg2021.valid() ) {
+    return;
+  }
+
+  double stax = _msg03.x + (_msg22.validMsg ? _msg22.dL1[0] : 0.0);
+  double stay = _msg03.y + (_msg22.validMsg ? _msg22.dL1[1] : 0.0);
+  double staz = _msg03.z + (_msg22.validMsg ? _msg22.dL1[2] : 0.0);
+
+  int    refWeek;
+  double refSecs;
+  currentGPSWeeks(refWeek, refSecs);
+
+  // Resolve receiver time of measurement (see RTCM 2.3, page 4-42, Message 18, Note 1)
+  // ----------------------------------------------------------------------------------
+  double hoursec_est  = _msg2021.hoursec();              // estimated time of measurement
+  double hoursec_rcv  = rint(hoursec_est * 1e2) / 1e2;   // receiver clock reading at hoursec_est  
+  double rcv_clk_bias = (hoursec_est - hoursec_rcv) * c_light;
+
+  int    GPSWeek;
+  double GPSWeeks;
+  resolveEpoch(hoursec_est, refWeek, refSecs,
+	       GPSWeek, GPSWeeks);
+
+  int    GPSWeek_rcv;
+  double GPSWeeks_rcv;
+  resolveEpoch(hoursec_rcv, refWeek, refSecs,
+	       GPSWeek_rcv, GPSWeeks_rcv);
+
+  // Loop over all satellites
+  // ------------------------
+  for (RTCM2_2021::data_iterator icorr = _msg2021.data.begin();
+       icorr != _msg2021.data.end(); icorr++) {
+    const RTCM2_2021::HiResCorr* corr = icorr->second;
+
+    // beg test
+    if ( corr->PRN >= 200 ) {
+      continue;
+    }
+    // end test
+
+
+    ostringstream oPRN; oPRN.fill('0');
+
+    oPRN <<            (corr->PRN < 200 ? 'G'       : 'R')
+	 << setw(2) << (corr->PRN < 200 ? corr->PRN : corr->PRN - 200);
+
+    string PRN(oPRN.str());
+
+    t_listMap::const_iterator ieph = _ephList.find(PRN);
+
+    double L1 = 0;
+    double L2 = 0;
+    double P1 = 0;
+    double P2 = 0;
+    string obsT = "";
+
+    // new observation
+    t_obs* new_obs = 0;
+
+    // missing IOD
+    vector<string> missingIOD;
+    vector<string>     hasIOD;
+    for (unsigned ii = 0; ii < 4; ii++) {
+      int          IODcorr = 0;
+      double       corrVal = 0;
+      const t_eph* eph     = 0;
+      double*      obsVal  = 0;
+
+      switch (ii) {
+      case 0: // --- L1 ---
+	IODcorr = corr->IODp1;
+	corrVal = corr->phase1 * LAMBDA_1;
+	obsVal  = &L1;
+	obsT    = "L1";
+	break;
+      case 1: // --- L2 ---
+	IODcorr = corr->IODp2;
+	corrVal = corr->phase2 * LAMBDA_2;
+	obsVal  = &L2;
+	obsT    = "L2";
+	break;
+      case 2: // --- P1 ---
+	IODcorr = corr->IODr1;
+	corrVal = corr->range1;
+	obsVal  = &P1;
+	obsT    = "P1";
+	break;
+      case 3: // --- P2 ---
+	IODcorr = corr->IODr2;
+	corrVal = corr->range2;
+	obsVal  = &P2;
+	obsT    = "P2";
+	break;
+      default:
+	continue;
+      }
+
+      // Select corresponding ephemerides
+      if ( ieph != _ephList.end() ) {
+	eph = ieph->second->getEph(IODcorr);
+      }
+
+      if ( eph ) {
+        ostringstream msg;
+        msg << obsT << ':' << setw(3) << eph->IOD();
+        hasIOD.push_back(msg.str());
+
+
+	int    GPSWeek_tot;
+	double GPSWeeks_tot;
+	double rho, xSat, ySat, zSat, clkSat;
+	cmpRho(eph, stax, stay, staz, 
+	       GPSWeek, GPSWeeks,
+	       rho, GPSWeek_tot, GPSWeeks_tot,
+	       xSat, ySat, zSat, clkSat);
+
+	*obsVal = rho - corrVal + rcv_clk_bias - clkSat;
+
+	if ( *obsVal == 0 )  *obsVal = ZEROVALUE;
+
+	// Allocate new memory
+	// -------------------
+	if ( !new_obs ) {
+	  new_obs = new t_obs();
+
+	  new_obs->StatID[0] = '\x0';
+	  new_obs->satSys    = (corr->PRN < 200 ? 'G'       : 'R');
+	  new_obs->satNum    = (corr->PRN < 200 ? corr->PRN : corr->PRN - 200);
+	  
+	  new_obs->GPSWeek   = GPSWeek_rcv;
+	  new_obs->GPSWeeks  = GPSWeeks_rcv;
+	}
+	
+	// Store estimated measurements
+	// ----------------------------
+	switch (ii) {
+	case 0: // --- L1 ---
+	  new_obs->L1P = *obsVal / LAMBDA_1;
+	  new_obs->slip_cnt_L1   = corr->lock1;
+	  break;
+	case 1: // --- L2 ---
+	  new_obs->L2P = *obsVal / LAMBDA_2;
+	  new_obs->slip_cnt_L2   = corr->lock2;
+	  break;
+	case 2: // --- C1 / P1 ---
+	  if ( corr->Pind1 )
+	    new_obs->P1 = *obsVal;
+	  else
+	    new_obs->C1 = *obsVal;
+	  break;
+	case 3: // --- C2 / P2 ---
+	  if ( corr->Pind2 )
+	    new_obs->P2 = *obsVal;
+	  else
+	    new_obs->C2 = *obsVal;
+	  break;
+	default:
+	  continue;
+	}
+      }
+      else if ( IODcorr != 0 ) {
+        ostringstream msg;
+        msg << obsT << ':' << setw(3) << IODcorr;
+        missingIOD.push_back(msg.str());
+      }
+    } // loop over frequencies
+   
+    // Error report
+    if ( missingIOD.size() ) {
+      ostringstream missingIODstr;
+
+      copy(missingIOD.begin(), missingIOD.end(), ostream_iterator<string>(missingIODstr, "   "));
+
+      errmsg.push_back("missing eph for " + PRN + " , IODs " + missingIODstr.str());
+    }
+
+    // Store new observation
+    if ( new_obs ) {
+      _obsList.push_back(*new_obs);
+      delete new_obs;
+    }
+  }
+}
Index: branches/BNC_LM/RTCM/RTCM2Decoder.h
===================================================================
--- branches/BNC_LM/RTCM/RTCM2Decoder.h	(revision 3570)
+++ branches/BNC_LM/RTCM/RTCM2Decoder.h	(revision 3570)
@@ -0,0 +1,143 @@
+// Part of BNC, a utility for retrieving decoding and
+// converting GNSS data streams from NTRIP broadcasters.
+//
+// Copyright (C) 2007
+// German Federal Agency for Cartography and Geodesy (BKG)
+// http://www.bkg.bund.de
+// Czech Technical University Prague, Department of Geodesy
+// http://www.fsv.cvut.cz
+//
+// Email: euref-ip@bkg.bund.de
+//
+// This program is free software; you can redistribute it and/or
+// modify it under the terms of the GNU General Public License
+// as published by the Free Software Foundation, version 2.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+#ifndef INC_RTCM2DECODER_H
+#define INC_RTCM2DECODER_H
+
+#include <map>
+#include <vector>
+#include <list>
+
+#include "GPSDecoder.h"
+#include "RTCM2.h"
+#include "RTCM2_2021.h"
+#include "rtcm3torinex.h"
+#include "ephemeris.h"
+
+class RTCM2Decoder: public GPSDecoder {
+
+  public:
+    RTCM2Decoder(const std::string& ID);
+    virtual ~RTCM2Decoder();
+    virtual t_irc Decode(char* buffer, int bufLen, std::vector<std::string>& errmsg);
+
+    bool  storeEph(const gpsephemeris& gpseph, std::string& storedPRN, std::vector<int>& IODs);
+    bool  storeEph(const t_ephGPS&     gpseph, std::string& storedPRN, std::vector<int>& IODs);
+
+    t_irc getStaCrd(double& xx, double& yy, double& zz);
+
+    t_irc getStaCrd(double& xx,  double& yy,  double& zz,
+                    double& dx1, double& dy1, double& dz1,
+                    double& dx2, double& dy2, double& dz2);
+
+    const rtcm2::RTCM2_2021& msg2021() const { return _msg2021; }
+
+    std::string ID() const { return _ID; }
+
+  private:
+
+    class t_ephList {
+    public:
+      t_ephList() {}
+      
+      ~t_ephList() {
+        for (std::list<t_eph*>::iterator ii = _eph.begin(); ii != _eph.end(); ii++) {
+          delete  (*ii);
+        }
+      }
+
+      bool store(t_eph* eph) {
+        if ( _eph.size() == 0 ) {
+          _eph.push_back(eph);
+          return true;
+        }
+          
+        std::list<t_eph*>::iterator ii = _eph.begin();
+        while (ii != _eph.end()) {
+          if ( eph->IOD() == (*ii)->IOD() ) {
+            return false;
+          }
+          if ( ! eph->isNewerThan(*ii) ) {
+            break;
+          }
+          ++ii;
+        }
+
+        if ( ii == _eph.begin() && _eph.size() == MAXSIZE) {
+          return false;
+        }
+
+        _eph.insert(ii, eph);
+
+        while ( _eph.size() > MAXSIZE ) {
+          delete _eph.front();
+          _eph.pop_front();
+        }
+
+        return true;
+      }
+      
+      const t_eph* getEph(int IOD) const {
+        for (std::list<t_eph*>::const_iterator ii = _eph.begin(); ii != _eph.end(); ii++) {
+          if ( (*ii)->IOD() == IOD ) {
+            return (*ii);
+          }
+        }
+        return 0;
+      }
+
+      void getIODs(std::vector<int>& IODs) const {
+        IODs.clear();
+        for (std::list<t_eph*>::const_iterator ii = _eph.begin(); ii != _eph.end(); ii++) {
+          IODs.push_back((*ii)->IOD());
+        }
+      }
+
+      static const unsigned MAXSIZE = 5;
+
+      std::list<t_eph*> _eph;
+    };
+
+    void translateCorr2Obs(std::vector<std::string>& errmsg);
+
+    std::string            _ID;
+
+    std::string            _buffer;
+    rtcm2::RTCM2packet     _PP;
+
+    // for messages 18, 19 decoding
+    rtcm2::RTCM2_Obs       _ObsBlock;
+
+    // for messages 20, 21 decoding
+    rtcm2::RTCM2_03           _msg03;
+    rtcm2::RTCM2_22           _msg22;
+    rtcm2::RTCM2_23           _msg23;
+    rtcm2::RTCM2_24           _msg24;
+    rtcm2::RTCM2_2021         _msg2021;
+    std::map<std::string, t_ephList*> _ephList;
+
+    typedef std::map<std::string, t_ephList*> t_listMap;
+};
+
+#endif  // include blocker
Index: branches/BNC_LM/RTCM/RTCM2_2021.cpp
===================================================================
--- branches/BNC_LM/RTCM/RTCM2_2021.cpp	(revision 3570)
+++ branches/BNC_LM/RTCM/RTCM2_2021.cpp	(revision 3570)
@@ -0,0 +1,235 @@
+#include <iostream>
+#include <iomanip>
+#include <algorithm>
+
+#include "RTCM2_2021.h"
+
+using namespace rtcm2;
+using namespace std;
+
+const double ZEROVALUE = 1e-100;
+
+RTCM2_2021::RTCM2_2021() { }
+
+
+void RTCM2_2021::extract(const RTCM2packet& P) {
+  if ( !P.valid() || (P.ID() != 20 && P.ID() != 21) ) {
+    return;
+  }
+
+  // Error: at least 4 data words 
+  if ( P.nDataWords()<5 ) {
+#if ( DEBUG > 0 )
+    cerr << "Error in RTCM2_Obs::extract(): less than 3 DW ("
+         << P.nDataWords() << ") detected" << endl;
+#endif
+    return;
+  };
+  
+  // Error: number of data words has to be odd number
+  if ( P.nDataWords()%2==0 ){
+#if ( DEBUG > 0 )
+    cerr << "Error in RTCM2_Obs::extract(): odd number of DW ("
+         << P.nDataWords() << ") detected" << endl;
+#endif
+    return;
+  };
+
+  // Current epoch (mod 3600 sec) 
+  double tt = 0.6*P.modZCount() 
+            + P.getUnsignedBits(4,20)*1.0e-6;
+
+  // Clear old epoch
+  if ( tt != tt_ || valid_ ) {
+    clear();
+    tt_    = tt;
+    valid_ = false;
+  }
+
+
+  // Frequency (exit if neither L1 nor L2)
+  bool isL1 = ( P.getUnsignedBits(0,1)==0 );
+  if ( P.getUnsignedBits(1,1)==1 ) {
+    return;
+  }
+
+  // Number of satellites
+  unsigned nSat = (P.nDataWords() - 1) / 2;
+
+  double multipleMsgInd = true;
+  for (unsigned iSat = 0; iSat < nSat; iSat++) {
+    bool     multInd   =   P.getBits        (iSat*48 + 24, 1); 
+    bool     isGPS     = ( P.getUnsignedBits(iSat*48 + 26, 1)==0 );
+    unsigned PRN       =   P.getUnsignedBits(iSat*48 + 27, 5);
+
+    multipleMsgInd = multipleMsgInd && multInd;
+
+    if ( !isGPS ) {
+      PRN += 200;
+    }
+    if ( PRN == 0 ) {
+      PRN = 32;
+    }
+    
+    HiResCorr* corr = 0;
+    if ( !(corr = find_i(PRN)) ) {
+      data_i_[PRN] = HiResCorr();
+      corr = &(data_i_[PRN]);
+    }
+    if ( !find(PRN) ) {
+      data[PRN] = corr;
+    }
+    
+    corr->PRN = PRN;
+    corr->tt  = tt_;
+
+    // Message number 20
+    if ( P.ID() == 20 ) {
+      unsigned lossLock  =   P.getUnsignedBits(iSat*48 + 35,  5);
+      unsigned IOD       =   P.getUnsignedBits(iSat*48 + 40,  8);
+      double   corrVal   =   P.getBits        (iSat*48 + 48, 24) / 256.0;
+
+      if ( isL1 ) {
+	corr->phase1 = (corrVal ? corrVal : ZEROVALUE);
+	corr->slip1  = (corr->lock1 != lossLock);
+	corr->lock1  = lossLock;
+	corr->IODp1  = IOD;
+      }
+      else {
+	corr->phase2 = (corrVal ? corrVal : ZEROVALUE);
+	corr->slip2  = (corr->lock2 != lossLock);
+	corr->lock2  = lossLock;
+	corr->IODp2  = IOD;
+      }
+    }
+
+    // Message number 21
+    else if ( P.ID() == 21 ) {
+      bool   P_CA_Ind  =   P.getBits        (iSat*48 + 25, 1); 
+      double dcorrUnit = ( P.getUnsignedBits(iSat*48 + 32, 1) ? 0.032 : 0.002);
+      double  corrUnit = ( P.getUnsignedBits(iSat*48 + 36, 1) ? 0.320 : 0.020);
+      unsigned    IOD  =   P.getUnsignedBits(iSat*48 + 40, 8);
+      double  corrVal  =   P.getBits        (iSat*48 + 48, 16) *  corrUnit;
+      double dcorrVal  =   P.getBits        (iSat*48 + 64,  8) * dcorrUnit;
+
+      if ( isL1 ) {
+	corr-> range1 = (corrVal ? corrVal : ZEROVALUE);
+	corr->drange1 = dcorrVal;
+	corr->IODr1   = IOD;
+        corr->Pind1   = P_CA_Ind;
+      }
+      else {
+	corr-> range2 = (corrVal ? corrVal : ZEROVALUE);
+	corr->drange2 = dcorrVal;
+	corr->IODr2   = IOD;
+        corr->Pind2   = P_CA_Ind;
+      }
+    }
+  }
+  
+  valid_ = !multipleMsgInd;
+}
+
+const RTCM2_2021::HiResCorr* RTCM2_2021::find(unsigned PRN) {
+  std::map<unsigned, const HiResCorr*>::const_iterator ii = data.find(PRN);
+  return (ii != data.end() ? ii->second : 0);
+}
+
+
+RTCM2_2021::HiResCorr* RTCM2_2021::find_i(unsigned PRN) {
+  std::map<unsigned, HiResCorr>::iterator ii = data_i_.find(PRN);
+  return (ii != data_i_.end() ? &(ii->second) : 0);
+}
+
+
+void RTCM2_2021::clear() {
+  tt_    = 0;
+  valid_ = false;
+  for (map<unsigned, HiResCorr>::iterator 
+	 ii = data_i_.begin(); ii != data_i_.end(); ii++) {
+    ii->second.reset();
+  }
+  data.clear();
+}
+
+
+RTCM2_2021::HiResCorr::HiResCorr() :
+  PRN(0), tt(0), 
+  phase1 (0),     phase2 (2),
+  lock1  (0),     lock2  (0),
+  slip1  (false), slip2  (false),
+  IODp1  (0),     IODp2  (0),
+  range1 (0),     range2 (0),
+  drange1(0),     drange2(0),
+  Pind1  (false), Pind2  (false),
+  IODr1  (0),     IODr2  (0) { 
+}
+
+void RTCM2_2021::HiResCorr::reset() {
+  // does not reset 'lock' indicators and PRN
+  tt      = 0;
+  phase1  = 0;
+  phase2  = 0;
+  slip1   = false;
+  slip2   = false;
+  IODp1   = 0;
+  IODp2   = 0;
+
+  range1  = 0;
+  range2  = 0;
+  drange1 = 0;
+  drange2 = 0;
+  IODr1   = 0;
+  IODr2   = 0;
+  Pind1   = false;
+  Pind2   = false;
+}
+
+std::ostream& operator << (std::ostream& out, const RTCM2_2021::HiResCorr& cc) {
+  out.setf(ios::fixed);
+  out << setw(8) << setprecision(8) << cc.tt
+      << ' ' << setw(2)  << cc.PRN
+      << " L1 "
+      << ' ' << setw(8)  << setprecision(3) << (cc.phase1 ? cc.phase1 : 9999.999)
+      << ' ' << setw(1)  		    << (cc.phase1 ? (cc.slip1 ? '1' : '0') : '.')
+      << ' ' << setw(2)                     << (cc.phase1 ? cc.lock1  : 99)
+      << ' ' << setw(3)                     << (cc.phase1 ? cc.IODp1  : 999)
+      << " L2 "
+      << ' ' << setw(8)  << setprecision(3) << (cc.phase2 ? cc.phase2 : 9999.999)
+      << ' ' << setw(1)  		    << (cc.phase2 ? (cc.slip2 ? '1' : '0') : '.')
+      << ' ' << setw(2)                     << (cc.phase2 ? cc.lock2  : 99)
+      << ' ' << setw(3)                     << (cc.phase2 ? cc.IODp2  : 999)
+      << " P1 "
+      << ' ' << setw(8)  << setprecision(3) << (cc.range1 ? cc.range1 : 9999.999)
+      << ' ' << setw(3)                     << (cc.range1 ? cc.IODr1  : 999)
+      << " P2 "
+      << ' ' << setw(8)  << setprecision(3) << (cc.range2 ? cc.range2 : 9999.999)
+      << ' ' << setw(3)                     << (cc.phase2 ? cc.IODr2  : 999);
+
+  return out;
+}
+
+
+//////////////////////////////////////////////////////////////////////////////////////////////////////////////
+
+
+void RTCM2_22::extract(const RTCM2packet& P) {
+  if ( P.ID() != 22 ) {
+    return;
+  }
+
+  const double dL1unit = 0.01 / 256;
+
+  validMsg = true;
+
+  dL1[0] = P.getBits( 0, 8) * dL1unit;
+  dL1[1] = P.getBits( 8, 8) * dL1unit;
+  dL1[2] = P.getBits(16, 8) * dL1unit;
+
+  dL2[0] = 0.0;
+  dL2[1] = 0.0;
+  dL2[2] = 0.0;
+}
+
+///////////////////////////////
+
Index: branches/BNC_LM/RTCM/RTCM2_2021.h
===================================================================
--- branches/BNC_LM/RTCM/RTCM2_2021.h	(revision 3570)
+++ branches/BNC_LM/RTCM/RTCM2_2021.h	(revision 3570)
@@ -0,0 +1,81 @@
+#include <iostream>
+#include <map>
+#include "RTCM2.h"
+
+namespace rtcm2 {
+
+class RTCM2_2021 {
+
+  public: 
+
+    RTCM2_2021();                           // Constructor
+    
+    void   extract(const RTCM2packet& P);  // Packet handler
+    void   clear();                        // Initialization
+    bool   valid() const { return valid_; }                  // Check for complete obs block 
+
+    double resolvedPhase_L1(int i) const;  // L1 & L2 carrier phase of i-th sat
+    double resolvedPhase_L2(int i) const;  // with resolved 2^24 cy ambiguity 
+                                           // (based on rng_C1)
+
+  public: 
+
+    struct HiResCorr {
+   
+      HiResCorr();
+      void reset();
+
+      unsigned PRN;
+      double   tt;
+      double   phase1;
+      double   phase2;
+      unsigned lock1;
+      unsigned lock2;
+      bool     slip1;
+      bool     slip2;
+      unsigned IODp1;
+      unsigned IODp2;
+
+      double   range1;
+      double   range2;
+      double   drange1;
+      double   drange2;
+      bool     Pind1;
+      bool     Pind2;
+      unsigned IODr1;
+      unsigned IODr2;
+
+      friend std::ostream& operator << (std::ostream& out, const HiResCorr& cc);
+    };
+
+    double hoursec() const { return tt_; }
+    std::map<unsigned, const HiResCorr*> data;
+
+    typedef std::map<unsigned, const HiResCorr*>::const_iterator c_data_iterator;
+    typedef std::map<unsigned, const HiResCorr*>::iterator         data_iterator;
+
+ private:
+    const HiResCorr* find  (unsigned PRN);
+          HiResCorr* find_i(unsigned PRN);
+
+    std::map<unsigned, HiResCorr> data_i_;
+    double                        tt_;
+    bool                          valid_;
+}; 
+
+class RTCM2_22 {
+ public:
+  RTCM2_22() { 
+    validMsg = false;
+  }
+  
+  void extract(const RTCM2packet& P);
+
+  bool   validMsg;
+  double dL1[3];
+  double dL2[3];
+};
+
+}; // end of namespace rtcm2
+
+
Index: branches/BNC_LM/RTCM/rtcm_utils.cpp
===================================================================
--- branches/BNC_LM/RTCM/rtcm_utils.cpp	(revision 3570)
+++ branches/BNC_LM/RTCM/rtcm_utils.cpp	(revision 3570)
@@ -0,0 +1,115 @@
+#include <iomanip>
+#include <iostream>
+#include <math.h>
+#include <stdio.h>
+#include <rtcm3torinex.h>
+#include <ephemeris.h>
+
+#include "rtcm_utils.h"
+
+using namespace std;
+
+void resolveEpoch (double secsHour,
+                   int  refWeek,   double  refSecs,  
+                   int& epochWeek, double& epochSecs) {
+
+  const double secsPerWeek = 604800.0;                            
+
+  epochWeek = refWeek;
+  epochSecs = secsHour + 3600.0*(floor((refSecs-secsHour)/3600.0+0.5));
+  
+  if (epochSecs<0          ) { epochWeek--; epochSecs+=secsPerWeek; };
+  if (epochSecs>secsPerWeek) { epochWeek++; epochSecs-=secsPerWeek; };
+};
+
+
+int cmpRho(const t_eph* eph,
+           double stax, double stay, double staz,
+           int GPSWeek, double GPSWeeks,
+           double& rho, int& GPSWeek_tot, double& GPSWeeks_tot,
+           double& xSat, double& ySat, double& zSat, double& clkSat) {
+
+  const double omega_earth = 7292115.1467e-11; 
+  const double secsPerWeek = 604800.0;                            
+
+  // Initial values
+  // --------------
+  rho = 0.0;
+  eph->position(GPSWeek, GPSWeeks, xSat, ySat, zSat, clkSat); 
+
+  ////cout << "----- cmpRho -----\n";
+  ////eph->print(cout);
+  ////cout << "  pos " << setw(4)  << GPSWeek 
+  ////     << " "      << setw(14) << setprecision(6) << GPSWeeks
+  ////     << " "      << setw(13) << setprecision(3) << xSat
+  ////     << " "      << setw(13) << setprecision(3) << ySat
+  ////     << " "      << setw(13) << setprecision(3) << zSat
+  ////     << endl;
+
+  // Loop until the correct Time Of Transmission is found
+  // ----------------------------------------------------
+  double rhoLast = 0;
+  do {
+    rhoLast = rho;
+    
+    // Correction station position due to Earth Rotation
+    // -------------------------------------------------
+    double dPhi = omega_earth * rho / c_light;
+    double xRec = stax * cos(dPhi) - stay * sin(dPhi); 
+    double yRec = stay * cos(dPhi) + stax * sin(dPhi); 
+    double zRec = staz;
+
+    double dx   = xRec - xSat;
+    double dy   = yRec - ySat;
+    double dz   = zRec - zSat;
+
+    rho = sqrt(dx*dx + dy*dy + dz*dz);
+
+    GPSWeek_tot  = GPSWeek;
+    GPSWeeks_tot = GPSWeeks - rho/c_light;
+    while ( GPSWeeks_tot < 0 ) {
+      GPSWeeks_tot += secsPerWeek;
+      GPSWeek_tot  -= 1;
+    }
+    while ( GPSWeeks_tot > secsPerWeek ) {
+      GPSWeeks_tot -= secsPerWeek;
+      GPSWeek_tot  += 1;
+    }
+      
+    eph->position(GPSWeek_tot, GPSWeeks_tot, xSat, ySat, zSat, clkSat); 
+
+    dx = xRec - xSat;
+    dy = yRec - ySat;
+    dz = zRec - zSat;
+
+    rho = sqrt(dx*dx + dy*dy + dz*dz);
+
+    ////cout << "  scrd "   << setw(4)  << GPSWeek_tot 
+    ////	 << " "         << setw(15) << setprecision(8) << GPSWeeks_tot
+    ////	 << " "         << setw(13) << setprecision(3) << xSat
+    ////	 << " "         << setw(13) << setprecision(3) << ySat
+    ////	 << " "         << setw(13) << setprecision(3) << zSat
+    ////	 << " rcv0 "    << setw(12) << setprecision(3) << stax
+    ////	 << " "         << setw(12) << setprecision(3) << stay
+    ////	 << " "         << setw(12) << setprecision(3) << staz
+    ////	 << " rcv  "    << setw(12) << setprecision(3) << xRec
+    ////	 << " "         << setw(12) << setprecision(3) << yRec
+    ////	 << " "         << setw(12) << setprecision(3) << zRec
+    ////	 << " dPhi "    << scientific << setw(13) << setprecision(10) << dPhi  << fixed
+    ////	 << " rho "     << setw(13) << setprecision(3) << rho
+    ////	 << endl;
+    
+
+    ////cout.setf(ios::fixed);
+    ////
+    ////cout << "niter " << setw(3) << ++niter 
+    ////         << " " << setw(14) << setprecision(3) << rhoLast
+    ////         << " " << setw(14) << setprecision(3) << rho
+    ////         << endl;
+
+  } while ( fabs(rho - rhoLast) > 1e-4);
+
+  clkSat *= c_light;  // satellite clock correction in meters
+
+  return 0;
+}
Index: branches/BNC_LM/RTCM/rtcm_utils.h
===================================================================
--- branches/BNC_LM/RTCM/rtcm_utils.h	(revision 3570)
+++ branches/BNC_LM/RTCM/rtcm_utils.h	(revision 3570)
@@ -0,0 +1,23 @@
+#ifndef RTCM_UTILS_H
+#define RTCM_UTILS_H
+
+class t_eph;
+
+const double c_light  = 299792458.0;
+const double FRQ_L1   = 1575420000.0;
+const double FRQ_L2   = 1227600000.0;
+const double LAMBDA_1 = c_light / FRQ_L1;
+const double LAMBDA_2 = c_light / FRQ_L2;
+const double ZEROVALUE = 1e-100;
+
+void resolveEpoch (double secsHour,
+		   int  refWeek,   double  refSecs,  
+		   int& epochWeek, double& epochSecs);
+
+int cmpRho(const t_eph* eph,
+	   double stax, double stay, double staz,
+	   int GPSWeek, double GPSWeeks,
+	   double& rho, int& GPSWeek_tot, double& GPSWeeks_tot,
+	   double& xSat, double& ySat, double& zSat, double& clkSat);
+
+#endif
Index: branches/BNC_LM/RTCM3/RTCM3Decoder.cpp
===================================================================
--- branches/BNC_LM/RTCM3/RTCM3Decoder.cpp	(revision 3570)
+++ branches/BNC_LM/RTCM3/RTCM3Decoder.cpp	(revision 3570)
@@ -0,0 +1,472 @@
+// Part of BNC, a utility for retrieving decoding and
+// converting GNSS data streams from NTRIP broadcasters.
+//
+// Copyright (C) 2007
+// German Federal Agency for Cartography and Geodesy (BKG)
+// http://www.bkg.bund.de
+// Czech Technical University Prague, Department of Geodesy
+// http://www.fsv.cvut.cz
+//
+// Email: euref-ip@bkg.bund.de
+//
+// This program is free software; you can redistribute it and/or
+// modify it under the terms of the GNU General Public License
+// as published by the Free Software Foundation, version 2.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+/* -------------------------------------------------------------------------
+ * BKG NTRIP Client
+ * -------------------------------------------------------------------------
+ *
+ * Class:      RTCM3Decoder
+ *
+ * Purpose:    RTCM3 Decoder
+ *
+ * Author:     L. Mervart
+ *
+ * Created:    24-Aug-2006
+ *
+ * Changes:    
+ *
+ * -----------------------------------------------------------------------*/
+
+#include <iostream>
+#include <iomanip>
+#include <sstream>
+#include <math.h>
+#include <string.h>
+
+#include "RTCM3Decoder.h"
+#include "../RTCM/rtcm_utils.h"
+#include "bncconst.h"
+#include "bncapp.h"
+#include "bncutils.h"
+#include "bncsettings.h" 
+
+using namespace std;
+
+#ifndef isinf
+#  define isinf(x) 0
+#endif
+
+// Error Handling
+////////////////////////////////////////////////////////////////////////////
+void RTCM3Error(const char*, ...) {
+}
+
+// Constructor
+////////////////////////////////////////////////////////////////////////////
+RTCM3Decoder::RTCM3Decoder(const QString& staID, bncRawFile* rawFile) : 
+                GPSDecoder() {
+
+  _staID   = staID;
+  _rawFile = rawFile;
+
+  bncSettings settings;
+  _checkMountPoint = settings.value("miscMount").toString();
+
+  connect(this, SIGNAL(newGPSEph(gpsephemeris*)), 
+          (bncApp*) qApp, SLOT(slotNewGPSEph(gpsephemeris*)));
+  connect(this, SIGNAL(newGlonassEph(glonassephemeris*)), 
+          (bncApp*) qApp, SLOT(slotNewGlonassEph(glonassephemeris*)));
+  connect(this, SIGNAL(newGalileoEph(galileoephemeris*)), 
+          (bncApp*) qApp, SLOT(slotNewGalileoEph(galileoephemeris*)));
+
+  // Mode can be either observations or corrections
+  // ----------------------------------------------
+  _mode = unknown;
+
+  // Antenna position (used for decoding of message 1003)
+  // ----------------------------------------------------
+  _antXYZ[0] = _antXYZ[1] = _antXYZ[2] = 0;
+
+}
+
+// Destructor
+////////////////////////////////////////////////////////////////////////////
+RTCM3Decoder::~RTCM3Decoder() {
+  QMapIterator<QByteArray, RTCM3coDecoder*> it(_coDecoders);
+  while (it.hasNext()) {
+    it.next();
+    delete it.value();
+  }
+}
+
+// 
+////////////////////////////////////////////////////////////////////////////
+t_irc RTCM3Decoder::Decode(char* buffer, int bufLen, vector<string>& errmsg) {
+
+  errmsg.clear();
+
+  bool decoded = false;
+
+  // If read from file, mode is always uknown
+  // ----------------------------------------
+  if (_rawFile) {
+    _mode  = unknown;
+    _staID = _rawFile->staID();
+  }
+
+  // Try to decode Clock and Orbit Corrections
+  // -----------------------------------------
+  if (_mode == unknown || _mode == corrections) {
+
+    // Find the corresponding coDecoder
+    // --------------------------------
+    if (!_coDecoders.contains(_staID.toAscii())) {
+      _coDecoders[_staID.toAscii()] = new RTCM3coDecoder(_staID); 
+    }
+    RTCM3coDecoder* coDecoder = _coDecoders[_staID.toAscii()];
+
+    if ( coDecoder->Decode(buffer, bufLen, errmsg) == success ) {
+      decoded = true;
+      if  (!_rawFile && _mode == unknown) {
+        _mode = corrections;
+      }
+    }
+  }
+
+  // Find the corresponding parser, initialize a new parser if necessary
+  // -------------------------------------------------------------------
+  bool newParser = !_parsers.contains(_staID.toAscii());
+  RTCM3ParserData& parser = _parsers[_staID.toAscii()];
+  if (newParser) {  
+    memset(&parser, 0, sizeof(parser));
+    parser.rinex3 = 0;
+    double secGPS;
+    currentGPSWeeks(parser.GPSWeek, secGPS);
+    parser.GPSTOW = int(secGPS);
+  }
+
+  // Get Glonass Slot Numbers from Global Array
+  // ------------------------------------------
+  bncApp* app = (bncApp*) qApp;
+  app->getGlonassSlotNums(parser.GLOFreq);
+
+  // Remaining part decodes the Observations
+  // ---------------------------------------
+  if (_mode == unknown || _mode == observations || 
+      _checkMountPoint == _staID || _checkMountPoint == "ALL") {
+
+    for (int iByte = 0; iByte < bufLen; iByte++) {
+
+      parser.Message[parser.MessageSize++] = buffer[iByte];
+
+      if (parser.MessageSize >= parser.NeedBytes) {
+
+        while (int rr = RTCM3Parser(&parser)) {
+
+          // RTCMv3 message types
+          // --------------------
+          _typeList.push_back(parser.blocktype);
+
+          // RTCMv3 antenna descriptor
+          // -------------------------
+          if (rr == 1007 || rr == 1008 || rr == 1033) {
+            _antType.push_back(parser.antenna);
+          }
+
+          // RTCMv3 antenna XYZ
+          // ------------------
+          else if (rr == 1005) {
+            _antList.push_back(t_antInfo());
+            _antList.back().type     = t_antInfo::ARP;
+            _antList.back().xx       = parser.antX * 1e-4;
+            _antList.back().yy       = parser.antY * 1e-4;
+            _antList.back().zz       = parser.antZ * 1e-4;
+            _antList.back().message  = rr;
+
+            // Remember station position for 1003 message decoding
+            _antXYZ[0] = parser.antX * 1e-4;
+            _antXYZ[1] = parser.antY * 1e-4;
+            _antXYZ[2] = parser.antZ * 1e-4;
+          }
+
+          // RTCMv3 antenna XYZ-H
+          // --------------------
+          else if(rr == 1006) {
+            _antList.push_back(t_antInfo());
+            _antList.back().type     = t_antInfo::ARP;
+            _antList.back().xx       = parser.antX * 1e-4;
+            _antList.back().yy       = parser.antY * 1e-4;
+            _antList.back().zz       = parser.antZ * 1e-4;
+            _antList.back().height   = parser.antH * 1e-4;
+            _antList.back().height_f = true;
+            _antList.back().message  = rr;
+
+            // Remember station position for 1003 message decoding
+            _antXYZ[0] = parser.antX * 1e-4;
+            _antXYZ[1] = parser.antY * 1e-4;
+            _antXYZ[2] = parser.antZ * 1e-4;
+          }
+
+          // GNSS Observations
+          // -----------------
+          else if (rr == 1 || rr == 2) {
+            decoded = true;
+    
+            if (!parser.init) {
+              HandleHeader(&parser);
+              parser.init = 1;
+            }
+            
+            if (rr == 2) {
+              emit(newMessage( (_staID + 
+               ": No valid RINEX! All values are modulo 299792.458!").toAscii(),
+               true));
+            }
+
+            gnssdata& gnssData = parser.Data;
+            
+            for (int iSat = 0; iSat < gnssData.numsats; iSat++) {
+
+              t_obs obs;
+              int   satID = gnssData.satellites[iSat];
+
+              // GPS
+              // ---
+              if      (satID >= PRN_GPS_START     && satID <= PRN_GPS_END) {
+                obs.satSys = 'G';
+                obs.satNum = satID;
+              }
+
+              // Glonass
+              // -------
+              else if (satID >= PRN_GLONASS_START && satID <= PRN_GLONASS_END) {
+                obs.satSys = 'R';
+                obs.satNum = satID - PRN_GLONASS_START + 1;
+                if (obs.satNum <= PRN_GLONASS_NUM && 
+                    parser.GLOFreq[obs.satNum-1] != 0) {
+                  obs.slotNum   = parser.GLOFreq[obs.satNum-1] - 100;
+                }
+                else { 
+                  continue;
+                }
+              }
+
+              // Galileo
+              // -------
+              else if (satID >= PRN_GALILEO_START && satID <= PRN_GALILEO_END) {
+                obs.satSys = 'E';
+                obs.satNum = satID - PRN_GALILEO_START + 1;
+              }
+
+              // WAAS
+              // ----
+              else if (satID >= PRN_WAAS_START && satID <= PRN_WAAS_END) {
+                obs.satSys = 'S';
+                obs.satNum = satID - PRN_WAAS_START + 20;
+              }
+
+              // Giove A and B
+              // -------------
+              else if (satID >= PRN_GIOVE_START && satID <= PRN_GIOVE_END) {
+                obs.satSys = 'E';
+                obs.satNum = satID - PRN_GIOVE_START + PRN_GIOVE_OFFSET;
+              }
+
+              // Unknown System
+              // --------------
+              else {
+                continue;
+              }
+
+              obs.GPSWeek  = gnssData.week;
+              obs.GPSWeeks = gnssData.timeofweek / 1000.0;
+
+              QString prn = QString("%1%2").arg(obs.satSys)
+                            .arg(obs.satNum, 2, 10, QChar('0'));
+
+              // Handle loss-of-lock flags
+              // -------------------------
+              const int maxSlipCnt = 100;
+              if (!_slip_cnt_L1.contains(prn)) {
+                _slip_cnt_L1[prn] = 0;
+                _slip_cnt_L2[prn] = 0;
+                _slip_cnt_L5[prn] = 0;
+              }
+              if (GNSSDF2_LOCKLOSSL1 & gnssData.dataflags2[iSat]) {
+                if (_slip_cnt_L1[prn] < maxSlipCnt) {
+                  ++_slip_cnt_L1[prn];
+                }
+                else {
+                  _slip_cnt_L1[prn] = 1;
+                }
+                obs.slip_cnt_L1 = _slip_cnt_L1[prn];
+              }
+              if (GNSSDF2_LOCKLOSSL2 & gnssData.dataflags2[iSat]) {
+                if (_slip_cnt_L2[prn] < maxSlipCnt) {
+                  ++_slip_cnt_L2[prn];
+                }
+                else {
+                  _slip_cnt_L2[prn] = 1;
+                }
+                obs.slip_cnt_L2 = _slip_cnt_L2[prn];
+              }
+              if (GNSSDF2_LOCKLOSSL5 & gnssData.dataflags2[iSat]) {
+                if (_slip_cnt_L5[prn] < maxSlipCnt) {
+                  ++_slip_cnt_L5[prn];
+                }
+                else {
+                  _slip_cnt_L5[prn] = 1;
+                }
+                obs.slip_cnt_L5 = _slip_cnt_L5[prn];
+              }
+
+              // Loop over all data types
+              // ------------------------
+              for (int iEntry = 0; iEntry < GNSSENTRY_NUMBER; ++iEntry) {
+ 
+                unsigned df = (1 << iEntry);
+
+                if (df & gnssData.dataflags[iSat]) {
+
+                  if      (iEntry == GNSSENTRY_C1DATA) {
+                    obs.C1  = gnssData.measdata[iSat][iEntry];
+                  }
+                  else if (iEntry == GNSSENTRY_C2DATA) {
+                    obs.C2  = gnssData.measdata[iSat][iEntry];
+                  }
+                  else if (iEntry == GNSSENTRY_P1DATA) {
+                    obs.P1  = gnssData.measdata[iSat][iEntry];
+                  }
+                  else if (iEntry == GNSSENTRY_P2DATA) {
+                    obs.P2  = gnssData.measdata[iSat][iEntry];
+                  }
+                  else if (iEntry == GNSSENTRY_L1CDATA) {
+                    obs.L1C = gnssData.measdata[iSat][iEntry];
+                  }
+                  else if (iEntry == GNSSENTRY_L1PDATA) {
+                    obs.L1P = gnssData.measdata[iSat][iEntry];
+                  }
+                  else if (iEntry == GNSSENTRY_L2CDATA) {
+                    obs.L2C = gnssData.measdata[iSat][iEntry];
+                  }
+                  else if (iEntry == GNSSENTRY_L2PDATA) {
+                    obs.L2P = gnssData.measdata[iSat][iEntry];
+                  }
+                  else if (iEntry == GNSSENTRY_D1CDATA) {
+                    obs.D1C = gnssData.measdata[iSat][iEntry];
+                  }
+                  else if (iEntry == GNSSENTRY_D1PDATA) {
+                    obs.D1P = gnssData.measdata[iSat][iEntry];
+                  }
+                  else if (iEntry == GNSSENTRY_S1CDATA) {
+                    obs.S1C = gnssData.measdata[iSat][iEntry];
+                  }
+                  else if (iEntry == GNSSENTRY_S1PDATA) {
+                    obs.S1P = gnssData.measdata[iSat][iEntry];
+                  }
+                  else if (iEntry == GNSSENTRY_D2CDATA) {
+                    obs.D2C = gnssData.measdata[iSat][iEntry];
+                  }
+                  else if (iEntry == GNSSENTRY_D2PDATA) {
+                    obs.D2P = gnssData.measdata[iSat][iEntry];
+                  }
+                  else if (iEntry == GNSSENTRY_S2CDATA) {
+                    obs.S2C = gnssData.measdata[iSat][iEntry];
+                  }
+                  else if (iEntry == GNSSENTRY_S2PDATA) {
+                    obs.S2P = gnssData.measdata[iSat][iEntry];
+                  }
+                  else if (iEntry == GNSSENTRY_C5DATA) {
+                    obs.C5  = gnssData.measdata[iSat][iEntry];
+                  }
+                  else if (iEntry == GNSSENTRY_L5DATA) {
+                    obs.L5  = gnssData.measdata[iSat][iEntry];
+                  }
+                  else if (iEntry == GNSSENTRY_D5DATA) {
+                    obs.D5  = gnssData.measdata[iSat][iEntry];
+                  }
+                  else if (iEntry == GNSSENTRY_S5DATA) {
+                    obs.S5  = gnssData.measdata[iSat][iEntry];
+                  }
+                }
+              }
+              _obsList.push_back(obs);
+            }
+          }
+    
+          // GPS Ephemeris
+          // -------------
+          else if (rr == 1019) {
+            decoded = true;
+            emit newGPSEph(new gpsephemeris(parser.ephemerisGPS));
+          }
+    
+          // GLONASS Ephemeris
+          // -----------------
+          else if (rr == 1020) {
+            decoded = true;
+            emit newGlonassEph(new glonassephemeris(parser.ephemerisGLONASS));
+          }
+
+          // Galileo Ephemeris
+          // -----------------
+          else if (rr == 1045) {
+            decoded = true;
+            emit newGalileoEph(new galileoephemeris(parser.ephemerisGALILEO));
+          }
+        }
+      }
+    }
+    if (!_rawFile && _mode == unknown && decoded) {
+      _mode = observations;
+    }
+  }
+
+  if (decoded) {
+    app->storeGlonassSlotNums(parser.GLOFreq);
+    return success;
+  }
+  else {
+    return failure;
+  }
+}
+
+// Store ephemerides
+//////////////////////////////////////////////////////////////////////////////
+bool RTCM3Decoder::storeEph(const gpsephemeris& gpseph) {
+  t_ephGPS eph; eph.set(&gpseph);
+
+  return storeEph(eph);
+}
+
+
+bool RTCM3Decoder::storeEph(const t_ephGPS& gpseph) {
+  const double secPerWeek = 7.0 * 24.0 * 3600.0;
+  double weekold = 0.0;
+  double weeknew = gpseph.GPSweek() + gpseph.GPSweeks() / secPerWeek;
+  string prn = gpseph.prn().toAscii().data();
+  if ( _ephList.find(prn) != _ephList.end() ) {
+    weekold = _ephList.find(prn)->second.GPSweek() 
+            + _ephList.find(prn)->second.GPSweeks() / secPerWeek; 
+  }
+
+  if ( weeknew - weekold > 1.0/secPerWeek ) {
+    _ephList[prn] = gpseph;
+
+    return true;
+  }
+
+  return false;
+}
+
+// Time of Corrections
+//////////////////////////////////////////////////////////////////////////////
+int RTCM3Decoder::corrGPSEpochTime() const {
+  if (_mode == corrections && _coDecoders.size() > 0) {
+    return _coDecoders.begin().value()->corrGPSEpochTime();
+  }
+  else {
+    return -1;
+  }
+}
Index: branches/BNC_LM/RTCM3/RTCM3Decoder.h
===================================================================
--- branches/BNC_LM/RTCM3/RTCM3Decoder.h	(revision 3570)
+++ branches/BNC_LM/RTCM3/RTCM3Decoder.h	(revision 3570)
@@ -0,0 +1,77 @@
+// Part of BNC, a utility for retrieving decoding and
+// converting GNSS data streams from NTRIP broadcasters.
+//
+// Copyright (C) 2007
+// German Federal Agency for Cartography and Geodesy (BKG)
+// http://www.bkg.bund.de
+// Czech Technical University Prague, Department of Geodesy
+// http://www.fsv.cvut.cz
+//
+// Email: euref-ip@bkg.bund.de
+//
+// This program is free software; you can redistribute it and/or
+// modify it under the terms of the GNU General Public License
+// as published by the Free Software Foundation, version 2.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+#ifndef RTCM3DECODER_H
+#define RTCM3DECODER_H
+
+#include <QtCore>
+#include <map>
+
+#include "../RTCM/GPSDecoder.h"
+#include "../RTCM/GPSDecoder.h"
+#include "RTCM3coDecoder.h"
+#include "ephemeris.h"
+#include "bncrawfile.h"
+
+extern "C" {
+#include "rtcm3torinex.h"
+}
+
+class RTCM3Decoder : public QObject, public GPSDecoder {
+Q_OBJECT
+ public:
+  RTCM3Decoder(const QString& staID, bncRawFile* rawFile);
+  virtual ~RTCM3Decoder();
+  virtual t_irc Decode(char* buffer, int bufLen, std::vector<std::string>& errmsg);
+  virtual int corrGPSEpochTime() const;
+
+  bool  storeEph(const gpsephemeris& gpseph);
+  bool  storeEph(const t_ephGPS&     gpseph);
+
+ signals:
+  void newMessage(QByteArray msg,bool showOnScreen);
+  void newGPSEph(gpsephemeris* gpseph);
+  void newGlonassEph(glonassephemeris* glonasseph);
+  void newGalileoEph(galileoephemeris* galileoeph);
+
+ private:
+  enum t_mode{unknown = 0, observations, corrections};
+
+  QString                _staID;
+  QString                _checkMountPoint;
+  QMap<QByteArray, RTCM3ParserData> _parsers;
+  QMap<QByteArray, RTCM3coDecoder*> _coDecoders; 
+  t_mode                 _mode;
+
+  std::map<std::string, t_ephGPS> _ephList;
+  double                 _antXYZ[3];
+  bncRawFile*            _rawFile;
+
+  QMap<QString, int>  _slip_cnt_L1;
+  QMap<QString, int>  _slip_cnt_L2;
+  QMap<QString, int>  _slip_cnt_L5;
+};
+
+#endif
+
Index: branches/BNC_LM/RTCM3/RTCM3coDecoder.cpp
===================================================================
--- branches/BNC_LM/RTCM3/RTCM3coDecoder.cpp	(revision 3570)
+++ branches/BNC_LM/RTCM3/RTCM3coDecoder.cpp	(revision 3570)
@@ -0,0 +1,396 @@
+// Part of BNC, a utility for retrieving decoding and
+// converting GNSS data streams from NTRIP broadcasters.
+//
+// Copyright (C) 2007
+// German Federal Agency for Cartography and Geodesy (BKG)
+// http://www.bkg.bund.de
+// Czech Technical University Prague, Department of Geodesy
+// http://www.fsv.cvut.cz
+//
+// Email: euref-ip@bkg.bund.de
+//
+// This program is free software; you can redistribute it and/or
+// modify it under the terms of the GNU General Public License
+// as published by the Free Software Foundation, version 2.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+/* -------------------------------------------------------------------------
+ * BKG NTRIP Client
+ * -------------------------------------------------------------------------
+ *
+ * Class:      RTCM3coDecoder
+ *
+ * Purpose:    RTCM3 Clock Orbit Decoder
+ *
+ * Author:     L. Mervart
+ *
+ * Created:    05-May-2008
+ *
+ * Changes:    
+ *
+ * -----------------------------------------------------------------------*/
+
+#include <stdio.h>
+#include <math.h>
+
+#include "RTCM3coDecoder.h"
+#include "bncutils.h"
+#include "bncrinex.h"
+#include "bncapp.h"
+#include "bncsettings.h"
+#include "rtcm3torinex.h"
+
+using namespace std;
+
+// Constructor
+////////////////////////////////////////////////////////////////////////////
+RTCM3coDecoder::RTCM3coDecoder(const QString& staID) {
+
+  _staID = staID;
+
+  // File Output
+  // -----------
+  bncSettings settings;
+  QString path = settings.value("corrPath").toString();
+  if (!path.isEmpty()) {
+    expandEnvVar(path);
+    if ( path.length() > 0 && path[path.length()-1] != QDir::separator() ) {
+      path += QDir::separator();
+    }
+    _fileNameSkl = path + staID;
+  }
+  _out      = 0;
+  _GPSweeks = -1.0;
+
+  connect(this, SIGNAL(newCorrLine(QString, QString, long)), 
+          (bncApp*) qApp, SLOT(slotNewCorrLine(QString, QString, long)));
+
+  memset(&_co, 0, sizeof(_co));
+  memset(&_bias, 0, sizeof(_bias));
+}
+
+// Destructor
+////////////////////////////////////////////////////////////////////////////
+RTCM3coDecoder::~RTCM3coDecoder() {
+  delete _out;
+}
+
+// Reopen Output File
+//////////////////////////////////////////////////////////////////////// 
+void RTCM3coDecoder::reopen(const QString& fileNameSkl, QString& fileName,
+                            ofstream*& out) {
+
+  if (!fileNameSkl.isEmpty()) {
+
+    bncSettings settings;
+
+    QDateTime datTim = currentDateAndTimeGPS();
+
+    QString hlpStr = bncRinex::nextEpochStr(datTim,
+                                      settings.value("corrIntr").toString());
+
+    QString fileNameHlp = fileNameSkl 
+      + QString("%1").arg(datTim.date().dayOfYear(), 3, 10, QChar('0'))
+      + hlpStr + datTim.toString(".yyC");
+
+    if (fileName == fileNameHlp) {
+      return;
+    }
+    else {
+      fileName = fileNameHlp;
+    }
+
+    delete out;
+    if ( Qt::CheckState(settings.value("rnxAppend").toInt()) == Qt::Checked) {
+      out = new ofstream( fileName.toAscii().data(),
+                           ios_base::out | ios_base::app );
+    }
+    else {
+      out = new ofstream( fileName.toAscii().data() );
+    }
+  }
+}
+
+// 
+////////////////////////////////////////////////////////////////////////////
+t_irc RTCM3coDecoder::Decode(char* buffer, int bufLen, vector<string>& errmsg) {
+
+  errmsg.clear();
+
+  _buffer.append(QByteArray(buffer,bufLen));
+
+  t_irc retCode = failure;
+
+  while(_buffer.size()) {
+
+    int bytesused = 0;
+    struct ClockOrbit co_sav;
+    memcpy(&co_sav, &_co, sizeof(co_sav)); // save state
+
+    GCOB_RETURN irc = GetClockOrbitBias(&_co, &_bias, _buffer.data(),
+                                        _buffer.size(), &bytesused);
+
+    if      (irc <= -30) { // not enough data - restore state and exit loop
+      memcpy(&_co, &co_sav, sizeof(co_sav));
+      break;
+    }
+
+    else if (irc < 0) {    // error  - skip 1 byte and retry
+      memset(&_co, 0, sizeof(_co));
+      memset(&_bias, 0, sizeof(_bias));
+      _buffer = _buffer.mid(bytesused ? bytesused : 1);
+    }
+
+    else {                 // OK or MESSAGEFOLLOWS
+      _buffer = _buffer.mid(bytesused);
+
+      if ( irc == GCOBR_OK && 
+           (_co.NumberOfGPSSat   > 0 || _co.NumberOfGLONASSSat   > 0 ||
+            _bias.NumberOfGPSSat > 0 || _bias.NumberOfGLONASSSat > 0) ) {
+
+        reopen(_fileNameSkl, _fileName, _out);
+
+        // Guess GPS week and sec using system time
+        // ----------------------------------------
+        int    GPSweek;
+        double GPSweeksHlp;
+        currentGPSWeeks(GPSweek, GPSweeksHlp);
+
+        // Correction Epoch from GPSEpochTime
+        // ----------------------------------
+        if (_co.NumberOfGPSSat > 0 || _bias.NumberOfGPSSat > 0) {
+          int GPSEpochTime = (_co.NumberOfGPSSat > 0) ? 
+                             _co.GPSEpochTime : _bias.GPSEpochTime;
+          if      (GPSweeksHlp > GPSEpochTime + 86400.0) {
+            GPSweek += 1;
+          }
+          else if (GPSweeksHlp < GPSEpochTime - 86400.0) {
+            GPSweek -= 1;
+          }
+          _GPSweeks = GPSEpochTime;
+        }
+
+        // Correction Epoch from Glonass Epoch
+        // -----------------------------------
+        else if (_co.NumberOfGLONASSSat > 0 || _bias.NumberOfGLONASSSat > 0){
+          int GLONASSEpochTime = (_co.NumberOfGLONASSSat > 0) ? 
+                              _co.GLONASSEpochTime : _bias.GLONASSEpochTime;
+
+          // Second of day (GPS time) from Glonass Epoch
+          // -------------------------------------------
+          QDate date = dateAndTimeFromGPSweek(GPSweek, GPSweeksHlp).date();
+          int leapSecond = gnumleap(date.year(), date.month(), date.day());
+          int GPSDaySec  = GLONASSEpochTime - 3 * 3600 + leapSecond;
+
+          int weekDay      = int(GPSweeksHlp/86400.0); 
+          int GPSDaySecHlp = int(GPSweeksHlp) - weekDay * 86400;
+
+          // Handle the difference between system clock and correction epoch
+          // ---------------------------------------------------------------
+          if      (GPSDaySec < GPSDaySecHlp - 3600) {
+            weekDay += 1;
+            if (weekDay > 6) {
+              weekDay = 0;
+              GPSweek += 1;
+            }
+          }
+          else if (GPSDaySec > GPSDaySecHlp + 3600) {
+            weekDay -= 1;
+            if (weekDay < 0) {
+              weekDay = 6;
+              GPSweek -= 1;
+            }
+          } 
+
+          _GPSweeks = weekDay * 86400.0 + GPSDaySec;
+        }
+
+        QStringList asciiLines = corrsToASCIIlines(GPSweek, _GPSweeks, 
+                                                   _co, &_bias);
+
+        long coTime = GPSweek * 7*24*3600 + long(floor(_GPSweeks+0.5));
+
+        QStringListIterator it(asciiLines);
+        while (it.hasNext()) {
+          QString line = it.next();
+          printLine(line, coTime);
+        }
+
+        retCode = success;
+        memset(&_co, 0, sizeof(_co));
+        memset(&_bias, 0, sizeof(_bias));
+      }
+    }
+  }
+
+  if (retCode != success) {
+    _GPSweeks = -1.0;
+  }
+  return retCode;
+}
+
+// 
+////////////////////////////////////////////////////////////////////////////
+void RTCM3coDecoder::printLine(const QString& line, long coTime) {
+  if (_out) {
+    *_out << line.toAscii().data() << endl;
+    _out->flush();
+  }
+
+  emit newCorrLine(line, _staID, coTime);
+}
+
+// 
+////////////////////////////////////////////////////////////////////////////
+QStringList RTCM3coDecoder::corrsToASCIIlines(int GPSweek, double GPSweeks,
+                                              const ClockOrbit& co,
+                                              const Bias* bias) {
+
+  QStringList retLines;
+
+  // Loop over all satellites (GPS and Glonass)
+  // ------------------------------------------
+  if (co.NumberOfGPSSat > 0 || co.NumberOfGLONASSSat > 0) {
+    QString line1;
+    line1.sprintf("! Orbits/Clocks: %d GPS %d Glonass",
+                  co.NumberOfGPSSat, co.NumberOfGLONASSSat);
+    retLines << line1;
+  }
+  for (int ii = 0; ii < CLOCKORBIT_NUMGPS+co.NumberOfGLONASSSat; ii++) {
+    char sysCh = ' ';
+    if      (ii < co.NumberOfGPSSat) {
+      sysCh = 'G';
+    }
+    else if (ii >= CLOCKORBIT_NUMGPS) {
+      sysCh = 'R';
+    }
+
+    if (sysCh != ' ') {
+
+      QString linePart;
+      linePart.sprintf("%d %d %d %.1f %c%2.2d",
+                       co.messageType, co.UpdateInterval, GPSweek, GPSweeks,
+                       sysCh, co.Sat[ii].ID);
+
+      // Combined message (orbit and clock)
+      // ----------------------------------
+      if ( co.messageType == COTYPE_GPSCOMBINED     || 
+           co.messageType == COTYPE_GLONASSCOMBINED ) {
+        QString line;
+        line.sprintf("   %3d"
+                     "   %8.3f %8.3f %8.3f %8.3f"
+                     "   %10.5f %10.5f %10.5f %10.5f"
+                     "   %10.5f",
+                     co.Sat[ii].IOD, 
+                     co.Sat[ii].Clock.DeltaA0,
+                     co.Sat[ii].Orbit.DeltaRadial, 
+                     co.Sat[ii].Orbit.DeltaAlongTrack,
+                     co.Sat[ii].Orbit.DeltaCrossTrack,
+                     co.Sat[ii].Clock.DeltaA1,
+                     co.Sat[ii].Orbit.DotDeltaRadial, 
+                     co.Sat[ii].Orbit.DotDeltaAlongTrack,
+                     co.Sat[ii].Orbit.DotDeltaCrossTrack,
+                     co.Sat[ii].Clock.DeltaA2);
+        retLines << linePart+line;
+      }
+
+      // Orbits only
+      // -----------
+      else if ( co.messageType == COTYPE_GPSORBIT     || 
+                co.messageType == COTYPE_GLONASSORBIT ) {
+        QString line;
+        line.sprintf("   %3d"
+                     "   %8.3f %8.3f %8.3f"
+                     "   %10.5f %10.5f %10.5f",
+                     co.Sat[ii].IOD, 
+                     co.Sat[ii].Orbit.DeltaRadial, 
+                     co.Sat[ii].Orbit.DeltaAlongTrack,
+                     co.Sat[ii].Orbit.DeltaCrossTrack,
+                     co.Sat[ii].Orbit.DotDeltaRadial, 
+                     co.Sat[ii].Orbit.DotDeltaAlongTrack,
+                     co.Sat[ii].Orbit.DotDeltaCrossTrack);
+        retLines << linePart+line;
+      }
+
+      // Clocks only
+      // -----------
+      else if ( co.messageType == COTYPE_GPSCLOCK     || 
+                co.messageType == COTYPE_GLONASSCLOCK ) {
+        QString line;
+        line.sprintf("   %3d   %8.3f   %10.5f   %10.5f",
+                     co.Sat[ii].IOD, 
+                     co.Sat[ii].Clock.DeltaA0,
+                     co.Sat[ii].Clock.DeltaA1,
+                     co.Sat[ii].Clock.DeltaA2);
+        retLines << linePart+line;
+      }
+
+      // User Range Accuracy
+      // -------------------
+      else if ( co.messageType == COTYPE_GPSURA     || 
+                co.messageType == COTYPE_GLONASSURA ) {
+        QString line;
+        line.sprintf("   %3d   %f",
+                     co.Sat[ii].IOD, co.Sat[ii].UserRangeAccuracy);
+        retLines << linePart+line;
+      }
+
+      // High-Resolution Clocks
+      // ----------------------
+      else if ( co.messageType == COTYPE_GPSHR     || 
+                co.messageType == COTYPE_GLONASSHR ) {
+        QString line;
+        line.sprintf("   %3d   %8.3f",
+                     co.Sat[ii].IOD, co.Sat[ii].hrclock);
+        retLines << linePart+line;
+      }
+    }
+  }
+
+  // Loop over all satellites (GPS and Glonass)
+  // ------------------------------------------
+  if (bias) {
+    if (bias->NumberOfGPSSat > 0 || bias->NumberOfGLONASSSat > 0) {
+      QString line1;
+      line1.sprintf("! Biases: %d GPS %d Glonass",
+                    bias->NumberOfGPSSat, bias->NumberOfGLONASSSat);
+      retLines << line1;
+    }
+    for (int ii = 0; ii < CLOCKORBIT_NUMGPS + bias->NumberOfGLONASSSat; ii++) {
+      char sysCh = ' ';
+      int messageType;
+      if      (ii < bias->NumberOfGPSSat) {
+        sysCh = 'G';
+        messageType = BTYPE_GPS;
+      }
+      else if (ii >= CLOCKORBIT_NUMGPS) {
+        sysCh = 'R';
+        messageType = BTYPE_GLONASS;
+      }
+      if (sysCh != ' ') {
+        QString line;
+        line.sprintf("%d %d %d %.1f %c%2.2d %d", 
+                     messageType, bias->UpdateInterval, GPSweek, GPSweeks, 
+                     sysCh, bias->Sat[ii].ID,
+                     bias->Sat[ii].NumberOfCodeBiases);
+        for (int jj = 0; jj < bias->Sat[ii].NumberOfCodeBiases; jj++) {
+          QString hlp;
+          hlp.sprintf(" %d %8.3f",  bias->Sat[ii].Biases[jj].Type,
+                      bias->Sat[ii].Biases[jj].Bias);
+          line += hlp;
+        }
+        retLines << line;
+      }
+    }
+  }
+
+  return retLines;
+}
Index: branches/BNC_LM/RTCM3/RTCM3coDecoder.h
===================================================================
--- branches/BNC_LM/RTCM3/RTCM3coDecoder.h	(revision 3570)
+++ branches/BNC_LM/RTCM3/RTCM3coDecoder.h	(revision 3570)
@@ -0,0 +1,68 @@
+// Part of BNC, a utility for retrieving decoding and
+// converting GNSS data streams from NTRIP broadcasters.
+//
+// Copyright (C) 2007
+// German Federal Agency for Cartography and Geodesy (BKG)
+// http://www.bkg.bund.de
+// Czech Technical University Prague, Department of Geodesy
+// http://www.fsv.cvut.cz
+//
+// Email: euref-ip@bkg.bund.de
+//
+// This program is free software; you can redistribute it and/or
+// modify it under the terms of the GNU General Public License
+// as published by the Free Software Foundation, version 2.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+#ifndef RTCM3CODECODER_H
+#define RTCM3CODECODER_H
+
+#include <fstream>
+
+#include <QtCore>
+#include <QtNetwork>
+
+#include "RTCM/GPSDecoder.h"
+
+extern "C" {
+#include "clock_orbit_rtcm.h"
+}
+
+class RTCM3coDecoder : public QObject, public GPSDecoder {
+Q_OBJECT
+ public:
+  RTCM3coDecoder(const QString& staID);
+  virtual ~RTCM3coDecoder();
+  virtual t_irc Decode(char* buffer, int bufLen, std::vector<std::string>& errmsg);
+  virtual int corrGPSEpochTime() const {return (int) _GPSweeks;}
+
+  static QStringList corrsToASCIIlines(int GPSweek, double GPSweeks, 
+                                       const ClockOrbit& co, const Bias* bias);
+  static void reopen(const QString& fileNameSkl, QString& fileName,
+                     std::ofstream*& out);
+ signals:
+  void newCorrLine(QString line, QString staID, long coTime);
+
+ protected:
+  void printLine(const QString& line, long coTime);
+  std::ofstream* _out;
+  QString        _staID;
+  QString        _fileNameSkl;
+  QString        _fileName;
+  QByteArray     _buffer;
+  double         _GPSweeks;
+
+ private:
+  ClockOrbit     _co;
+  Bias           _bias;
+};
+
+#endif
Index: branches/BNC_LM/RTCM3/ephemeris.cpp
===================================================================
--- branches/BNC_LM/RTCM3/ephemeris.cpp	(revision 3570)
+++ branches/BNC_LM/RTCM3/ephemeris.cpp	(revision 3570)
@@ -0,0 +1,801 @@
+#include <math.h>
+#include <sstream>
+#include <iostream>
+#include <iomanip>
+#include <cstring>
+
+#include <newmatio.h>
+
+#include "ephemeris.h"
+#include "bncutils.h"
+#include "timeutils.h"
+#include "bnctime.h"
+#include "bncapp.h"
+
+using namespace std;
+
+#define PI          3.1415926535898
+// Returns nearest integer value
+////////////////////////////////////////////////////////////////////////////
+static double NearestInt(double fl, double * remain)
+{
+  bool isneg = fl < 0.0;
+  double intval;
+  if(isneg) fl *= -1.0;
+  intval = (double)((unsigned long)(fl+0.5));
+  if(isneg) {fl *= -1.0; intval *= -1.0;}
+  if(remain)
+    *remain = fl-intval;
+  return intval;
+} /* NearestInt() */
+
+// Returns CRC24
+////////////////////////////////////////////////////////////////////////////
+static unsigned long CRC24(long size, const unsigned char *buf)
+{
+  unsigned long crc = 0;
+  int i;
+
+  while(size--)
+  {
+    crc ^= (*buf++) << (16);
+    for(i = 0; i < 8; i++)
+    {
+      crc <<= 1;
+      if(crc & 0x1000000)
+        crc ^= 0x01864cfb;
+    }
+  }
+  return crc;
+} /* CRC24 */
+
+// 
+////////////////////////////////////////////////////////////////////////////
+bool t_eph::isNewerThan(const t_eph* eph) const {
+  if (_GPSweek >  eph->_GPSweek ||
+      (_GPSweek == eph->_GPSweek && _GPSweeks > eph->_GPSweeks)) {
+    return true;
+  }
+  else {
+    return false;
+  }
+}
+
+// Set GPS Satellite Position
+////////////////////////////////////////////////////////////////////////////
+void t_ephGPS::set(const gpsephemeris* ee) {
+
+  _prn = QString("G%1").arg(ee->satellite, 2, 10, QChar('0'));
+
+  // TODO: check if following two lines are correct
+  _GPSweek  = ee->GPSweek;
+  _GPSweeks = ee->TOE;
+
+  _TOW  = ee->TOW;
+  _TOC  = ee->TOC;
+  _TOE  = ee->TOE;
+  _IODE = ee->IODE;             
+  _IODC = ee->IODC;             
+
+  _clock_bias      = ee->clock_bias     ;
+  _clock_drift     = ee->clock_drift    ;
+  _clock_driftrate = ee->clock_driftrate;
+
+  _Crs      = ee->Crs;
+  _Delta_n  = ee->Delta_n;
+  _M0       = ee->M0;
+  _Cuc      = ee->Cuc;
+  _e        = ee->e;
+  _Cus      = ee->Cus;
+  _sqrt_A   = ee->sqrt_A;
+  _Cic      = ee->Cic;
+  _OMEGA0   = ee->OMEGA0;
+  _Cis      = ee->Cis;
+  _i0       = ee->i0;
+  _Crc      = ee->Crc;
+  _omega    = ee->omega;
+  _OMEGADOT = ee->OMEGADOT;
+  _IDOT     = ee->IDOT;
+
+  _TGD      = ee->TGD;
+}
+
+// Compute GPS Satellite Position (virtual)
+////////////////////////////////////////////////////////////////////////////
+void t_ephGPS::position(int GPSweek, double GPSweeks, 
+			double* xc,
+			double* vv) const {
+
+  static const double secPerWeek = 7 * 86400.0;
+  static const double omegaEarth = 7292115.1467e-11;
+  static const double gmWGS      = 398.6005e12;
+
+  memset(xc, 0, 4*sizeof(double));
+  memset(vv, 0, 3*sizeof(double));
+
+  double a0 = _sqrt_A * _sqrt_A;
+  if (a0 == 0) {
+    return;
+  }
+
+  double n0 = sqrt(gmWGS/(a0*a0*a0));
+  double tk = GPSweeks - _TOE;
+  if (GPSweek != _GPSweek) {  
+    tk += (GPSweek - _GPSweek) * secPerWeek;
+  }
+  double n  = n0 + _Delta_n;
+  double M  = _M0 + n*tk;
+  double E  = M;
+  double E_last;
+  do {
+    E_last = E;
+    E = M + _e*sin(E);
+  } while ( fabs(E-E_last)*a0 > 0.001 );
+  double v      = 2.0*atan( sqrt( (1.0 + _e)/(1.0 - _e) )*tan( E/2 ) );
+  double u0     = v + _omega;
+  double sin2u0 = sin(2*u0);
+  double cos2u0 = cos(2*u0);
+  double r      = a0*(1 - _e*cos(E)) + _Crc*cos2u0 + _Crs*sin2u0;
+  double i      = _i0 + _IDOT*tk + _Cic*cos2u0 + _Cis*sin2u0;
+  double u      = u0 + _Cuc*cos2u0 + _Cus*sin2u0;
+  double xp     = r*cos(u);
+  double yp     = r*sin(u);
+  double OM     = _OMEGA0 + (_OMEGADOT - omegaEarth)*tk - 
+                   omegaEarth*_TOE;
+  
+  double sinom = sin(OM);
+  double cosom = cos(OM);
+  double sini  = sin(i);
+  double cosi  = cos(i);
+  xc[0] = xp*cosom - yp*cosi*sinom;
+  xc[1] = xp*sinom + yp*cosi*cosom;
+  xc[2] = yp*sini;                 
+  
+  double tc = GPSweeks - _TOC;
+  if (GPSweek != _GPSweek) {  
+    tc += (GPSweek - _GPSweek) * secPerWeek;
+  }
+  xc[3] = _clock_bias + _clock_drift*tc + _clock_driftrate*tc*tc;
+
+  // Velocity
+  // --------
+  double tanv2 = tan(v/2);
+  double dEdM  = 1 / (1 - _e*cos(E));
+  double dotv  = sqrt((1.0 + _e)/(1.0 - _e)) / cos(E/2)/cos(E/2) / (1 + tanv2*tanv2) 
+               * dEdM * n;
+  double dotu  = dotv + (-_Cuc*sin2u0 + _Cus*cos2u0)*2*dotv;
+  double dotom = _OMEGADOT - omegaEarth;
+  double doti  = _IDOT + (-_Cic*sin2u0 + _Cis*cos2u0)*2*dotv;
+  double dotr  = a0 * _e*sin(E) * dEdM * n 
+                + (-_Crc*sin2u0 + _Crs*cos2u0)*2*dotv;
+  double dotx  = dotr*cos(u) - r*sin(u)*dotu;
+  double doty  = dotr*sin(u) + r*cos(u)*dotu;
+
+  vv[0]  = cosom   *dotx  - cosi*sinom   *doty      // dX / dr
+           - xp*sinom*dotom - yp*cosi*cosom*dotom   // dX / dOMEGA
+                       + yp*sini*sinom*doti;        // dX / di
+
+  vv[1]  = sinom   *dotx  + cosi*cosom   *doty
+           + xp*cosom*dotom - yp*cosi*sinom*dotom
+                          - yp*sini*cosom*doti;
+
+  vv[2]  = sini    *doty  + yp*cosi      *doti;
+
+  // Relativistic Correction
+  // -----------------------
+  //  xc(4) -= 4.442807633e-10 * _e * sqrt(a0) *sin(E);
+  xc[3] -= 2.0 * (xc[0]*vv[0] + xc[1]*vv[1] + xc[2]*vv[2]) / t_CST::c / t_CST::c;
+}
+
+// build up RTCM3 for GPS
+////////////////////////////////////////////////////////////////////////////
+#define GPSTOINT(type, value) static_cast<type>(NearestInt(value,0))
+
+#define GPSADDBITS(a, b) {bitbuffer = (bitbuffer<<(a)) \
+                       |(GPSTOINT(long long,b)&((1ULL<<a)-1)); \
+                       numbits += (a); \
+                       while(numbits >= 8) { \
+                       buffer[size++] = bitbuffer>>(numbits-8);numbits -= 8;}}
+#define GPSADDBITSFLOAT(a,b,c) {long long i = GPSTOINT(long long,(b)/(c)); \
+                             GPSADDBITS(a,i)};
+
+int t_ephGPS::RTCM3(unsigned char *buffer)
+{
+
+  unsigned char *startbuffer = buffer;
+  buffer= buffer+3;
+  int size = 0;
+  int numbits = 0;
+  unsigned long long bitbuffer = 0;
+  if (_ura <= 2.40){
+    _ura = 0;
+  }
+  else if (_ura <= 3.40){
+    _ura = 1;
+  }
+  else if (_ura <= 6.85){
+    _ura = 2;
+  }
+  else if (_ura <= 9.65){
+    _ura = 3;
+  }
+  else if (_ura <= 13.65){
+    _ura = 4;
+  }
+  else if (_ura <= 24.00){
+    _ura = 5;
+  }
+  else if (_ura <= 48.00){
+    _ura = 6;
+  }
+  else if (_ura <= 96.00){
+    _ura = 7;
+  }
+  else if (_ura <= 192.00){
+    _ura = 8;
+  }
+  else if (_ura <= 384.00){
+    _ura = 9;
+  }
+  else if (_ura <= 768.00){
+    _ura = 10;
+  }
+  else if (_ura <= 1536.00){
+    _ura = 11;
+  }
+  else if (_ura <= 1536.00){
+    _ura = 12;
+  }
+  else if (_ura <= 2072.00){
+    _ura = 13;
+  }
+  else if (_ura <= 6144.00){
+    _ura = 14;
+  }
+  else{
+    _ura = 15;
+  }
+
+  GPSADDBITS(12, 1019)
+  GPSADDBITS(6,_prn.right((_prn.length()-1)).toInt())
+  GPSADDBITS(10, _GPSweek)
+  GPSADDBITS(4, _ura)
+  GPSADDBITS(2,_L2Codes)
+  GPSADDBITSFLOAT(14, _IDOT, PI/static_cast<double>(1<<30)
+  /static_cast<double>(1<<13))
+  GPSADDBITS(8, _IODE)
+  GPSADDBITS(16, static_cast<int>(_TOC)>>4)
+  GPSADDBITSFLOAT(8, _clock_driftrate, 1.0/static_cast<double>(1<<30)
+  /static_cast<double>(1<<25))
+  GPSADDBITSFLOAT(16, _clock_drift, 1.0/static_cast<double>(1<<30)
+  /static_cast<double>(1<<13))
+  GPSADDBITSFLOAT(22, _clock_bias, 1.0/static_cast<double>(1<<30)
+  /static_cast<double>(1<<1))
+  GPSADDBITS(10, _IODC)
+  GPSADDBITSFLOAT(16, _Crs, 1.0/static_cast<double>(1<<5))
+  GPSADDBITSFLOAT(16, _Delta_n, PI/static_cast<double>(1<<30)
+  /static_cast<double>(1<<13))
+  GPSADDBITSFLOAT(32, _M0, PI/static_cast<double>(1<<30)/static_cast<double>(1<<1))
+  GPSADDBITSFLOAT(16, _Cuc, 1.0/static_cast<double>(1<<29))
+  GPSADDBITSFLOAT(32, _e, 1.0/static_cast<double>(1<<30)/static_cast<double>(1<<3))
+  GPSADDBITSFLOAT(16, _Cus, 1.0/static_cast<double>(1<<29))
+  GPSADDBITSFLOAT(32, _sqrt_A, 1.0/static_cast<double>(1<<19))
+  GPSADDBITS(16, static_cast<int>(_TOE)>>4)
+  GPSADDBITSFLOAT(16, _Cic, 1.0/static_cast<double>(1<<29))
+  GPSADDBITSFLOAT(32, _OMEGA0, PI/static_cast<double>(1<<30)
+  /static_cast<double>(1<<1))
+  GPSADDBITSFLOAT(16, _Cis, 1.0/static_cast<double>(1<<29))
+  GPSADDBITSFLOAT(32, _i0, PI/static_cast<double>(1<<30)/static_cast<double>(1<<1))
+  GPSADDBITSFLOAT(16, _Crc, 1.0/static_cast<double>(1<<5))
+  GPSADDBITSFLOAT(32, _omega, PI/static_cast<double>(1<<30)
+  /static_cast<double>(1<<1))
+  GPSADDBITSFLOAT(24, _OMEGADOT, PI/static_cast<double>(1<<30)
+  /static_cast<double>(1<<13))
+  GPSADDBITSFLOAT(8, _TGD, 1.0/static_cast<double>(1<<30)/static_cast<double>(1<<1))
+  GPSADDBITS(6, _health) 
+  GPSADDBITS(1, _L2PFlag)
+  GPSADDBITS(1, 0) /* GPS fit interval */
+
+  startbuffer[0]=0xD3;
+  startbuffer[1]=(size >> 8);
+  startbuffer[2]=size;
+  unsigned long  i = CRC24(size+3, startbuffer);
+  buffer[size++] = i >> 16;
+  buffer[size++] = i >> 8;
+  buffer[size++] = i;
+  size += 3;
+  return size;
+}
+
+// Derivative of the state vector using a simple force model (static)
+////////////////////////////////////////////////////////////////////////////
+ColumnVector t_ephGlo::glo_deriv(double /* tt */, const ColumnVector& xv,
+                                 double* acc) {
+
+  // State vector components
+  // -----------------------
+  ColumnVector rr = xv.rows(1,3);
+  ColumnVector vv = xv.rows(4,6);
+
+  // Acceleration 
+  // ------------
+  static const double GM    = 398.60044e12;
+  static const double AE    = 6378136.0;
+  static const double OMEGA = 7292115.e-11;
+  static const double C20   = -1082.6257e-6;
+
+  double rho = rr.norm_Frobenius();
+  double t1  = -GM/(rho*rho*rho);
+  double t2  = 3.0/2.0 * C20 * (GM*AE*AE) / (rho*rho*rho*rho*rho);
+  double t3  = OMEGA * OMEGA;
+  double t4  = 2.0 * OMEGA;
+  double z2  = rr(3) * rr(3);
+
+  // Vector of derivatives
+  // ---------------------
+  ColumnVector va(6);
+  va(1) = vv(1);
+  va(2) = vv(2);
+  va(3) = vv(3);
+  va(4) = (t1 + t2*(1.0-5.0*z2/(rho*rho)) + t3) * rr(1) + t4*vv(2) + acc[0]; 
+  va(5) = (t1 + t2*(1.0-5.0*z2/(rho*rho)) + t3) * rr(2) - t4*vv(1) + acc[1]; 
+  va(6) = (t1 + t2*(3.0-5.0*z2/(rho*rho))     ) * rr(3)            + acc[2];
+
+  return va;
+}
+
+// Compute Glonass Satellite Position (virtual)
+////////////////////////////////////////////////////////////////////////////
+void t_ephGlo::position(int GPSweek, double GPSweeks, 
+                        double* xc, double* vv) const {
+
+  static const double secPerWeek  = 7 * 86400.0;
+  static const double nominalStep = 10.0;
+
+  memset(xc, 0, 4*sizeof(double));
+  memset(vv, 0, 3*sizeof(double));
+
+  double dtPos = GPSweeks - _tt;
+  if (GPSweek != _GPSweek) {  
+    dtPos += (GPSweek - _GPSweek) * secPerWeek;
+  }
+
+  int nSteps  = int(fabs(dtPos) / nominalStep) + 1;
+  double step = dtPos / nSteps;
+
+  double acc[3];
+  acc[0] = _x_acceleration * 1.e3;
+  acc[1] = _y_acceleration * 1.e3;
+  acc[2] = _z_acceleration * 1.e3;
+  for (int ii = 1; ii <= nSteps; ii++) { 
+    _xv = rungeKutta4(_tt, _xv, step, acc, glo_deriv);
+    _tt += step;
+  }
+
+  // Position and Velocity
+  // ---------------------
+  xc[0] = _xv(1);
+  xc[1] = _xv(2);
+  xc[2] = _xv(3);
+
+  vv[0] = _xv(4);
+  vv[1] = _xv(5);
+  vv[2] = _xv(6);
+
+  // Clock Correction
+  // ----------------
+  double dtClk = GPSweeks - _GPSweeks;
+  if (GPSweek != _GPSweek) {  
+    dtClk += (GPSweek - _GPSweek) * secPerWeek;
+  }
+  xc[3] = -_tau + _gamma * dtClk;
+}
+
+// IOD of Glonass Ephemeris (virtual)
+////////////////////////////////////////////////////////////////////////////
+int t_ephGlo::IOD() const {
+
+  bool old = false;
+
+  if (old) { // 5 LSBs of iod are equal to 5 LSBs of tb
+    unsigned int tb  = int(fmod(_GPSweeks,86400.0)); //sec of day
+    const int shift = sizeof(tb) * 8 - 5;
+    unsigned int iod = tb << shift;
+    return (iod >> shift);
+  }
+  else     {  
+    bncTime tGPS(_GPSweek, _GPSweeks);
+    int hlpWeek = _GPSweek;
+    int hlpSec  = int(_GPSweeks);
+    int hlpMsec = int(_GPSweeks * 1000);
+    updatetime(&hlpWeek, &hlpSec, hlpMsec, 0);
+    bncTime tHlp(hlpWeek, hlpSec);
+    double diffSec = tGPS - tHlp;
+    bncTime tMoscow = tGPS + diffSec;
+    return int(tMoscow.daysec() / 900);
+  }
+}
+
+// Set Glonass Ephemeris
+////////////////////////////////////////////////////////////////////////////
+void t_ephGlo::set(const glonassephemeris* ee) {
+
+  _prn = QString("R%1").arg(ee->almanac_number, 2, 10, QChar('0'));
+
+  int ww  = ee->GPSWeek;
+  int tow = ee->GPSTOW; 
+  updatetime(&ww, &tow, ee->tb*1000, 0);  // Moscow -> GPS
+
+  // Check the day once more 
+  // -----------------------
+  {
+    const double secPerDay  = 24 * 3600.0;
+    const double secPerWeek = 7 * secPerDay;
+    int ww_old  = ww;
+    int tow_old = tow;
+    int    currentWeek;
+    double currentSec;
+    currentGPSWeeks(currentWeek, currentSec);
+    bncTime currentTime(currentWeek, currentSec);
+    bncTime hTime(ww, (double) tow);
+
+    bool changed = false;
+    if      (hTime - currentTime >  secPerDay/2.0) {
+      changed = true;
+      tow -= secPerDay;
+      if (tow < 0) {
+        tow += secPerWeek;
+        ww  -= 1;
+      }
+    }
+    else if (hTime - currentTime < -secPerDay/2.0) {
+      changed = true;
+      tow += secPerDay;
+      if (tow > secPerWeek) {
+        tow -= secPerWeek;
+        ww  += 1;
+      }
+    }
+
+    if (changed && ((bncApp*) qApp)->mode() == bncApp::batchPostProcessing) {
+      bncTime newHTime(ww, (double) tow);
+      cout << "GLONASS " << ee->almanac_number <<  " Time Changed at " 
+           << currentTime.datestr()         << " " << currentTime.timestr() 
+           << endl
+           << "old: " << hTime.datestr()    << " " << hTime.timestr()       
+           << endl
+           << "new: " << newHTime.datestr() << " " << newHTime.timestr()    
+           << endl
+           << "eph: " << ee->GPSWeek << " " << ee->GPSTOW << " " << ee->tb 
+           << endl
+           << "ww, tow (old): " << ww_old << " " << tow_old 
+           << endl
+           << "ww, tow (new): " << ww     << " " << tow 
+           << endl << endl;
+    }
+  }
+
+  bncTime hlpTime(ww, (double) tow);
+  unsigned year, month, day;
+  hlpTime.civil_date(year, month, day);
+  _gps_utc = gnumleap(year, month, day);
+
+  _GPSweek           = ww;
+  _GPSweeks          = tow;
+  _E                 = ee->E;
+  _tau               = ee->tau;
+  _gamma             = ee->gamma;
+  _x_pos             = ee->x_pos;
+  _x_velocity        = ee->x_velocity;     
+  _x_acceleration    = ee->x_acceleration;
+  _y_pos             = ee->y_pos;         
+  _y_velocity        = ee->y_velocity;    
+  _y_acceleration    = ee->y_acceleration;
+  _z_pos             = ee->z_pos;         
+  _z_velocity        = ee->z_velocity;    
+  _z_acceleration    = ee->z_acceleration;
+  _health            = 0;
+  _frequency_number  = ee->frequency_number;
+  _tki               = ee->tk-3*60*60; if (_tki < 0) _tki += 86400;
+
+  // Initialize status vector
+  // ------------------------
+  _tt = _GPSweeks;
+
+  _xv(1) = _x_pos * 1.e3; 
+  _xv(2) = _y_pos * 1.e3; 
+  _xv(3) = _z_pos * 1.e3; 
+  _xv(4) = _x_velocity * 1.e3; 
+  _xv(5) = _y_velocity * 1.e3; 
+  _xv(6) = _z_velocity * 1.e3; 
+}
+
+// build up RTCM3 for GLONASS
+////////////////////////////////////////////////////////////////////////////
+#define GLONASSTOINT(type, value) static_cast<type>(NearestInt(value,0))
+
+#define GLONASSADDBITS(a, b) {bitbuffer = (bitbuffer<<(a)) \
+                       |(GLONASSTOINT(long long,b)&((1ULL<<(a))-1)); \
+                       numbits += (a); \
+                       while(numbits >= 8) { \
+                       buffer[size++] = bitbuffer>>(numbits-8);numbits -= 8;}}
+#define GLONASSADDBITSFLOATM(a,b,c) {int s; long long i; \
+                       if(b < 0.0) \
+                       { \
+                         s = 1; \
+                         i = GLONASSTOINT(long long,(-b)/(c)); \
+                         if(!i) s = 0; \
+                       } \
+                       else \
+                       { \
+                         s = 0; \
+                         i = GLONASSTOINT(long long,(b)/(c)); \
+                       } \
+                       GLONASSADDBITS(1,s) \
+                       GLONASSADDBITS(a-1,i)}
+
+int t_ephGlo::RTCM3(unsigned char *buffer)
+{
+
+  int size = 0;
+  int numbits = 0;
+  long long bitbuffer = 0;
+  unsigned char *startbuffer = buffer;
+  buffer= buffer+3;
+
+  GLONASSADDBITS(12, 1020)
+  GLONASSADDBITS(6, _prn.right((_prn.length()-1)).toInt())
+  GLONASSADDBITS(5, 7+_frequency_number)
+  GLONASSADDBITS(1, 0)
+  GLONASSADDBITS(1, 0)
+  GLONASSADDBITS(2, 0)
+  _tki=_tki+3*60*60;
+  GLONASSADDBITS(5, static_cast<int>(_tki)/(60*60))
+  GLONASSADDBITS(6, (static_cast<int>(_tki)/60)%60)
+  GLONASSADDBITS(1, (static_cast<int>(_tki)/30)%30)
+  GLONASSADDBITS(1, _health) 
+  GLONASSADDBITS(1, 0)
+  unsigned long long timeofday = (static_cast<int>(_tt+3*60*60-_gps_utc)%86400);
+  GLONASSADDBITS(7, timeofday/60/15)
+  GLONASSADDBITSFLOATM(24, _x_velocity*1000, 1000.0/static_cast<double>(1<<20))
+  GLONASSADDBITSFLOATM(27, _x_pos*1000, 1000.0/static_cast<double>(1<<11))
+  GLONASSADDBITSFLOATM(5, _x_acceleration*1000, 1000.0/static_cast<double>(1<<30))
+  GLONASSADDBITSFLOATM(24, _y_velocity*1000, 1000.0/static_cast<double>(1<<20))
+  GLONASSADDBITSFLOATM(27, _y_pos*1000, 1000.0/static_cast<double>(1<<11))
+  GLONASSADDBITSFLOATM(5, _y_acceleration*1000, 1000.0/static_cast<double>(1<<30))
+  GLONASSADDBITSFLOATM(24, _z_velocity*1000, 1000.0/static_cast<double>(1<<20))
+  GLONASSADDBITSFLOATM(27,_z_pos*1000, 1000.0/static_cast<double>(1<<11))
+  GLONASSADDBITSFLOATM(5, _z_acceleration*1000, 1000.0/static_cast<double>(1<<30))
+  GLONASSADDBITS(1, 0)
+  GLONASSADDBITSFLOATM(11, _gamma, 1.0/static_cast<double>(1<<30)
+  /static_cast<double>(1<<10))
+  GLONASSADDBITS(2, 0) /* GLONASS-M P */
+  GLONASSADDBITS(1, 0) /* GLONASS-M ln(3) */
+  GLONASSADDBITSFLOATM(22, _tau, 1.0/static_cast<double>(1<<30))
+  GLONASSADDBITS(5, 0) /* GLONASS-M delta tau */
+  GLONASSADDBITS(5, _E)
+  GLONASSADDBITS(1, 0) /* GLONASS-M P4 */
+  GLONASSADDBITS(4, 0) /* GLONASS-M FT */
+  GLONASSADDBITS(11, 0) /* GLONASS-M NT */
+  GLONASSADDBITS(2, 0) /* GLONASS-M active? */
+  GLONASSADDBITS(1, 0) /* GLONASS additional data */
+  GLONASSADDBITS(11, 0) /* GLONASS NA */
+  GLONASSADDBITS(32, 0) /* GLONASS tau C */
+  GLONASSADDBITS(5, 0) /* GLONASS-M N4 */
+  GLONASSADDBITS(22, 0) /* GLONASS-M tau GPS */
+  GLONASSADDBITS(1, 0) /* GLONASS-M ln(5) */
+  GLONASSADDBITS(7, 0) /* Reserved */
+
+  startbuffer[0]=0xD3;
+  startbuffer[1]=(size >> 8);
+  startbuffer[2]=size;
+  unsigned long i = CRC24(size+3, startbuffer);
+  buffer[size++] = i >> 16;
+  buffer[size++] = i >> 8;
+  buffer[size++] = i;
+  size += 3;
+  return size;
+}
+
+// Set Galileo Satellite Position
+////////////////////////////////////////////////////////////////////////////
+void t_ephGal::set(const galileoephemeris* ee) {
+
+  _prn = QString("E%1").arg(ee->satellite, 2, 10, QChar('0'));
+
+  _GPSweek  = ee->Week;
+  _GPSweeks = ee->TOE;
+
+  _TOC    = ee->TOC;
+  _TOE    = ee->TOE;
+  _IODnav = ee->IODnav;             
+
+  _clock_bias      = ee->clock_bias     ;
+  _clock_drift     = ee->clock_drift    ;
+  _clock_driftrate = ee->clock_driftrate;
+
+  _Crs      = ee->Crs;
+  _Delta_n  = ee->Delta_n;
+  _M0       = ee->M0;
+  _Cuc      = ee->Cuc;
+  _e        = ee->e;
+  _Cus      = ee->Cus;
+  _sqrt_A   = ee->sqrt_A;
+  _Cic      = ee->Cic;
+  _OMEGA0   = ee->OMEGA0;
+  _Cis      = ee->Cis;
+  _i0       = ee->i0;
+  _Crc      = ee->Crc;
+  _omega    = ee->omega;
+  _OMEGADOT = ee->OMEGADOT;
+  _IDOT     = ee->IDOT;
+}
+
+// Compute Galileo Satellite Position (virtual)
+////////////////////////////////////////////////////////////////////////////
+void t_ephGal::position(int GPSweek, double GPSweeks, 
+			double* xc,
+			double* vv) const {
+
+  static const double secPerWeek = 7 * 86400.0;
+  static const double omegaEarth = 7292115.1467e-11;
+  static const double gmWGS      = 398.6005e12;
+
+  memset(xc, 0, 4*sizeof(double));
+  memset(vv, 0, 3*sizeof(double));
+
+  double a0 = _sqrt_A * _sqrt_A;
+  if (a0 == 0) {
+    return;
+  }
+
+  double n0 = sqrt(gmWGS/(a0*a0*a0));
+  double tk = GPSweeks - _TOE;
+  if (GPSweek != _GPSweek) {  
+    tk += (GPSweek - _GPSweek) * secPerWeek;
+  }
+  double n  = n0 + _Delta_n;
+  double M  = _M0 + n*tk;
+  double E  = M;
+  double E_last;
+  do {
+    E_last = E;
+    E = M + _e*sin(E);
+  } while ( fabs(E-E_last)*a0 > 0.001 );
+  double v      = 2.0*atan( sqrt( (1.0 + _e)/(1.0 - _e) )*tan( E/2 ) );
+  double u0     = v + _omega;
+  double sin2u0 = sin(2*u0);
+  double cos2u0 = cos(2*u0);
+  double r      = a0*(1 - _e*cos(E)) + _Crc*cos2u0 + _Crs*sin2u0;
+  double i      = _i0 + _IDOT*tk + _Cic*cos2u0 + _Cis*sin2u0;
+  double u      = u0 + _Cuc*cos2u0 + _Cus*sin2u0;
+  double xp     = r*cos(u);
+  double yp     = r*sin(u);
+  double OM     = _OMEGA0 + (_OMEGADOT - omegaEarth)*tk - 
+                   omegaEarth*_TOE;
+  
+  double sinom = sin(OM);
+  double cosom = cos(OM);
+  double sini  = sin(i);
+  double cosi  = cos(i);
+  xc[0] = xp*cosom - yp*cosi*sinom;
+  xc[1] = xp*sinom + yp*cosi*cosom;
+  xc[2] = yp*sini;                 
+  
+  double tc = GPSweeks - _TOC;
+  if (GPSweek != _GPSweek) {  
+    tc += (GPSweek - _GPSweek) * secPerWeek;
+  }
+  xc[3] = _clock_bias + _clock_drift*tc + _clock_driftrate*tc*tc;
+
+  // Velocity
+  // --------
+  double tanv2 = tan(v/2);
+  double dEdM  = 1 / (1 - _e*cos(E));
+  double dotv  = sqrt((1.0 + _e)/(1.0 - _e)) / cos(E/2)/cos(E/2) / (1 + tanv2*tanv2) 
+               * dEdM * n;
+  double dotu  = dotv + (-_Cuc*sin2u0 + _Cus*cos2u0)*2*dotv;
+  double dotom = _OMEGADOT - omegaEarth;
+  double doti  = _IDOT + (-_Cic*sin2u0 + _Cis*cos2u0)*2*dotv;
+  double dotr  = a0 * _e*sin(E) * dEdM * n 
+                + (-_Crc*sin2u0 + _Crs*cos2u0)*2*dotv;
+  double dotx  = dotr*cos(u) - r*sin(u)*dotu;
+  double doty  = dotr*sin(u) + r*cos(u)*dotu;
+
+  vv[0]  = cosom   *dotx  - cosi*sinom   *doty      // dX / dr
+           - xp*sinom*dotom - yp*cosi*cosom*dotom   // dX / dOMEGA
+                       + yp*sini*sinom*doti;        // dX / di
+
+  vv[1]  = sinom   *dotx  + cosi*cosom   *doty
+           + xp*cosom*dotom - yp*cosi*sinom*dotom
+                          - yp*sini*cosom*doti;
+
+  vv[2]  = sini    *doty  + yp*cosi      *doti;
+
+  // Relativistic Correction
+  // -----------------------
+  //  xc(4) -= 4.442807633e-10 * _e * sqrt(a0) *sin(E);
+  xc[3] -= 2.0 * (xc[0]*vv[0] + xc[1]*vv[1] + xc[2]*vv[2]) / t_CST::c / t_CST::c;
+}
+
+// build up RTCM3 for Galileo
+////////////////////////////////////////////////////////////////////////////
+#define GALILEOTOINT(type, value) static_cast<type>(NearestInt(value, 0))
+
+#define GALILEOADDBITS(a, b) {bitbuffer = (bitbuffer<<(a)) \
+                       |(GALILEOTOINT(long long,b)&((1LL<<a)-1)); \
+                       numbits += (a); \
+                       while(numbits >= 8) { \
+                       buffer[size++] = bitbuffer>>(numbits-8);numbits -= 8;}}
+#define GALILEOADDBITSFLOAT(a,b,c) {long long i = GALILEOTOINT(long long,(b)/(c)); \
+                             GALILEOADDBITS(a,i)};
+
+int t_ephGal::RTCM3(unsigned char *buffer) {
+  int size = 0;
+  int numbits = 0;
+  long long bitbuffer = 0;
+  unsigned char *startbuffer = buffer;
+  buffer= buffer+3;
+
+  GALILEOADDBITS(12, /*inav ? 1046 :*/ 1045)
+  GALILEOADDBITS(6, _prn.right((_prn.length()-1)).toInt())
+  GALILEOADDBITS(12, _GPSweek)
+  GALILEOADDBITS(10, _IODnav)
+  GALILEOADDBITS(8, _SISA)
+  GALILEOADDBITSFLOAT(14, _IDOT, PI/static_cast<double>(1<<30)
+  /static_cast<double>(1<<13))
+  GALILEOADDBITS(14, _TOC/60)
+  GALILEOADDBITSFLOAT(6, _clock_driftrate, 1.0/static_cast<double>(1<<30)
+  /static_cast<double>(1<<29))
+  GALILEOADDBITSFLOAT(21, _clock_drift, 1.0/static_cast<double>(1<<30)
+  /static_cast<double>(1<<16))
+  GALILEOADDBITSFLOAT(31, _clock_bias, 1.0/static_cast<double>(1<<30)
+  /static_cast<double>(1<<4))
+  GALILEOADDBITSFLOAT(16, _Crs, 1.0/static_cast<double>(1<<5))
+  GALILEOADDBITSFLOAT(16, _Delta_n, PI/static_cast<double>(1<<30)
+  /static_cast<double>(1<<13))
+  GALILEOADDBITSFLOAT(32, _M0, PI/static_cast<double>(1<<30)/static_cast<double>(1<<1))
+  GALILEOADDBITSFLOAT(16, _Cuc, 1.0/static_cast<double>(1<<29))
+  GALILEOADDBITSFLOAT(32, _e, 1.0/static_cast<double>(1<<30)/static_cast<double>(1<<3))
+  GALILEOADDBITSFLOAT(16, _Cus, 1.0/static_cast<double>(1<<29))
+  GALILEOADDBITSFLOAT(32, _sqrt_A, 1.0/static_cast<double>(1<<19))
+  GALILEOADDBITS(14, _TOE/60)
+  GALILEOADDBITSFLOAT(16, _Cic, 1.0/static_cast<double>(1<<29))
+  GALILEOADDBITSFLOAT(32, _OMEGA0, PI/static_cast<double>(1<<30)
+  /static_cast<double>(1<<1))
+  GALILEOADDBITSFLOAT(16, _Cis, 1.0/static_cast<double>(1<<29))
+  GALILEOADDBITSFLOAT(32, _i0, PI/static_cast<double>(1<<30)/static_cast<double>(1<<1))
+  GALILEOADDBITSFLOAT(16, _Crc, 1.0/static_cast<double>(1<<5))
+  GALILEOADDBITSFLOAT(32, _omega, PI/static_cast<double>(1<<30)
+  /static_cast<double>(1<<1))
+  GALILEOADDBITSFLOAT(24, _OMEGADOT, PI/static_cast<double>(1<<30)
+  /static_cast<double>(1<<13))
+  GALILEOADDBITSFLOAT(10, _BGD_1_5A, 1.0/static_cast<double>(1<<30)
+  /static_cast<double>(1<<2))
+  /*if(inav)
+  {
+    GALILEOADDBITSFLOAT(10, _BGD_1_5B, 1.0/static_cast<double>(1<<30)
+    /static_cast<double>(1<<2))
+    GALILEOADDBITS(2, _E5bHS)
+    GALILEOADDBITS(1, flags & MNFGALEPHF_E5BDINVALID)
+  }
+  else*/
+  {
+    GALILEOADDBITS(2, _E5aHS)
+    GALILEOADDBITS(1, /*flags & MNFGALEPHF_E5ADINVALID*/0)
+  }
+  _TOE = 0.9999E9;
+  GALILEOADDBITS(20, _TOE)
+
+  GALILEOADDBITS(/*inav ? 1 :*/ 3, 0) /* fill up */
+
+  startbuffer[0]=0xD3;
+  startbuffer[1]=(size >> 8);
+  startbuffer[2]=size;
+  unsigned long i = CRC24(size+3, startbuffer);
+  buffer[size++] = i >> 16;
+  buffer[size++] = i >> 8;
+  buffer[size++] = i;
+  size += 3;
+  return size;
+}
Index: branches/BNC_LM/RTCM3/ephemeris.h
===================================================================
--- branches/BNC_LM/RTCM3/ephemeris.h	(revision 3570)
+++ branches/BNC_LM/RTCM3/ephemeris.h	(revision 3570)
@@ -0,0 +1,190 @@
+#ifndef EPHEMERIS_H
+#define EPHEMERIS_H
+
+#include <newmat.h>
+#include <QtCore>
+#include <stdio.h>
+#include <string>
+extern "C" {
+#include "rtcm3torinex.h"
+}
+
+class t_eph {
+ public:
+  virtual ~t_eph() {};
+
+  bool     isNewerThan(const t_eph* eph) const;
+  QString  prn() const {return _prn;}
+  void    setReceptDateTime(const QDateTime& dateTime) {
+    _receptDateTime = dateTime;
+  }
+  const QDateTime& receptDateTime() const {return _receptDateTime;}
+
+  int    GPSweek()  const { return _GPSweek; }
+  double GPSweeks() const { return _GPSweeks; }
+
+  virtual void position(int GPSweek, double GPSweeks, 
+                        double* xc, double* vv) const = 0;
+
+  void position(int GPSweek, double GPSweeks, 
+                double& xx, double& yy, double& zz, double& cc) const {
+    double tmp_xx[4];
+    double tmp_vv[4];
+
+    position(GPSweek, GPSweeks, tmp_xx, tmp_vv);
+
+    xx = tmp_xx[0];
+    yy = tmp_xx[1];
+    zz = tmp_xx[2];
+    cc = tmp_xx[3];
+  }
+
+  virtual int  IOD() const = 0;
+  
+  virtual int  RTCM3(unsigned char *) = 0;
+
+ protected:  
+  QString   _prn;
+  int       _GPSweek;
+  double    _GPSweeks;
+  QDateTime _receptDateTime;
+};
+
+
+class t_ephGPS : public t_eph {
+ public:
+  t_ephGPS() { }
+  virtual ~t_ephGPS() {}
+  double TOC() const {return _TOC;}
+
+  void set(const gpsephemeris* ee);
+
+  virtual void position(int GPSweek, double GPSweeks, 
+                        double* xc,
+                        double* vv) const;
+
+  virtual int  IOD() const { return static_cast<int>(_IODC); }
+
+  virtual int  RTCM3(unsigned char *);
+
+ private:
+  double  _TOW;              //  [s]    
+  double  _TOC;              //  [s]    
+  double  _TOE;              //  [s]    
+  double  _IODE;             
+  double  _IODC;             
+
+  double  _clock_bias;       //  [s]    
+  double  _clock_drift;      //  [s/s]  
+  double  _clock_driftrate;  //  [s/s^2]
+
+  double  _Crs;              //  [m]    
+  double  _Delta_n;          //  [rad/s]
+  double  _M0;               //  [rad]  
+  double  _Cuc;              //  [rad]  
+  double  _e;                //         
+  double  _Cus;              //  [rad]  
+  double  _sqrt_A;           //  [m^0.5]
+  double  _Cic;              //  [rad]  
+  double  _OMEGA0;           //  [rad]  
+  double  _Cis;              //  [rad]  
+  double  _i0;               //  [rad]  
+  double  _Crc;              //  [m]    
+  double  _omega;            //  [rad]  
+  double  _OMEGADOT;         //  [rad/s]
+  double  _IDOT;             //  [rad/s]
+
+  double  _TGD;              //  [s]    
+  double _health;            //  SV health
+  double _ura;               //  SV accuracy
+  double _L2PFlag;           //  L2 P data flag
+  double _L2Codes;           //  Codes on L2 channel 
+};
+
+class t_ephGlo : public t_eph {
+ public:
+  t_ephGlo() { _xv.ReSize(6); }
+
+  virtual ~t_ephGlo() {}
+
+  virtual void position(int GPSweek, double GPSweeks, 
+                        double* xc,
+                        double* vv) const;
+
+  virtual int  IOD() const;
+
+  virtual int  RTCM3(unsigned char *);
+
+  void set(const glonassephemeris* ee);
+
+ private:
+  static ColumnVector glo_deriv(double /* tt */, const ColumnVector& xv,
+                                double* acc);
+
+  mutable double       _tt;  // time in seconds of GPSweek
+  mutable ColumnVector _xv;  // status vector (position, velocity) at time _tt
+
+  double  _gps_utc;
+  double  _E;                // [days]   
+  double  _tau;              // [s]      
+  double  _gamma;            //          
+  double  _x_pos;            // [km]     
+  double  _x_velocity;       // [km/s]   
+  double  _x_acceleration;   // [km/s^2] 
+  double  _y_pos;            // [km]     
+  double  _y_velocity;       // [km/s]   
+  double  _y_acceleration;   // [km/s^2] 
+  double  _z_pos;            // [km]     
+  double  _z_velocity;       // [km/s]   
+  double  _z_acceleration;   // [km/s^2] 
+  double  _health;           // 0 = O.K. 
+  double  _frequency_number; // ICD-GLONASS data position 
+  double  _tki;              // message frame time
+};
+
+class t_ephGal : public t_eph {
+ public:
+  t_ephGal() { }
+  virtual ~t_ephGal() {}
+  double TOC() const {return _TOC;}
+
+  void set(const galileoephemeris* ee);
+
+  virtual void position(int GPSweek, double GPSweeks, 
+                        double* xc,
+                        double* vv) const;
+
+  virtual int  IOD() const { return static_cast<int>(_IODnav); }
+
+  virtual int  RTCM3(unsigned char *);
+
+ private:
+  double  _IODnav;             
+  double  _TOC;              //  [s]    
+  double  _TOE;              //  [s]    
+  double  _clock_bias;       //  [s]    
+  double  _clock_drift;      //  [s/s]  
+  double  _clock_driftrate;  //  [s/s^2]
+  double  _Crs;              //  [m]    
+  double  _Delta_n;          //  [rad/s]
+  double  _M0;               //  [rad]  
+  double  _Cuc;              //  [rad]  
+  double  _e;                //         
+  double  _Cus;              //  [rad]  
+  double  _sqrt_A;           //  [m^0.5]
+  double  _Cic;              //  [rad]  
+  double  _OMEGA0;           //  [rad]  
+  double  _Cis;              //  [rad]  
+  double  _i0;               //  [rad]  
+  double  _Crc;              //  [m]    
+  double  _omega;            //  [rad]  
+  double  _OMEGADOT;         //  [rad/s]
+  double  _IDOT;             //  [rad/s]
+  double  _BGD_1_5A;         //  group delay [s] 
+  double  _BGD_1_5B;         //  group delay [s] 
+  int     _SISA;             //  Signal In Space Accuracy
+  int     _E5aHS;            //  E5a Health Status
+
+};
+
+#endif
Index: branches/BNC_LM/RTCM3/timeutils.cpp
===================================================================
--- branches/BNC_LM/RTCM3/timeutils.cpp	(revision 3570)
+++ branches/BNC_LM/RTCM3/timeutils.cpp	(revision 3570)
@@ -0,0 +1,133 @@
+/* -----------------------------------------------------------------------------
+ *
+ * Function   :  djul
+ *
+ * Purpose    :  computes the modified julian date (mjd) from 
+ *               year, month and day
+ *
+ * Author     :  Z. Lukes
+ *
+ * Created    :  13-OCT-2001
+ *
+ * Changes    :
+ *
+ * ---------------------------------------------------------------------------*/
+
+#include <math.h>
+
+#ifndef NO_CVS_HEADER
+static const char *const cvsid = "$Header: /home/cvs/cvsroot/gpss_src/cpp/src/common/rtgnss/timeutils.cpp,v 1.1 2007/04/02 16:30:26 cvs Exp $";
+#endif
+
+double djul(long jj, long mm, double tt) {
+  long    ii, kk;
+  double  djul ;
+
+  if( mm <= 2 ) {
+    jj = jj - 1;
+    mm = mm + 12;
+  }  
+  
+  ii   = jj/100;
+  kk   = 2 - ii + ii/4;
+  djul = (365.25*jj - fmod( 365.25*jj, 1.0 )) - 679006.0;
+  djul = djul + floor( 30.6001*(mm + 1) ) + tt + kk;
+  return djul;
+} 
+
+/* -----------------------------------------------------------------------------
+ *
+ * Function   :  gpjd
+ *
+ * Purpose    :  computes the modified julian date (mjd) from 
+ *               gpsweek number and number of seconds past last
+ *               saturday/sunday midnight
+ *
+ * Author     :  Z. Lukes
+ *
+ * Created    :  13-OCT-2001
+ *
+ * Changes    :
+ *
+ * ---------------------------------------------------------------------------*/
+
+double gpjd(double second, int nweek) {
+  double deltat;
+
+  // days since starting epoch of gps weeks (sunday 06-jan-80)
+  
+  deltat = nweek*7.0 + second/86400.0 ;
+
+  // mod. julian date
+  
+  return( 44244.0 + deltat) ;
+} 
+
+/* -----------------------------------------------------------------------------
+ *
+ * Function   :  jdgp
+ *
+ * Purpose    :  compute number of seconds past midnight of last 
+ *               saturday/sunday and gps week number of current  
+ *		 date given in modified julian date
+ *
+ * Author     :  Z. Lukes
+ *
+ * Created    :  13-OCT-2001
+ *
+ * Changes    :
+ *
+ * ---------------------------------------------------------------------------*/
+
+void jdgp(double tjul, double & second, long & nweek) {
+  double      deltat;
+
+  deltat = tjul - 44244.0 ;
+
+  // current gps week
+
+  nweek = (long) floor(deltat/7.0);
+
+  // seconds past midnight of last weekend
+
+  second = (deltat - (nweek)*7.0)*86400.0;
+
+}
+
+/* -----------------------------------------------------------------------------
+ *
+ * Function   :  djul
+ *
+ * Purpose    :  compute year,month,day of month from          
+ *		 modified julian date (mjd=jul. date-2400000.5)
+ *
+ * Author     :  Z. Lukes
+ *
+ * Created    :  13-OCT-2001
+ *
+ * Changes    :
+ *
+ * ---------------------------------------------------------------------------*/
+
+void jmt(double djul, long& jj, long& mm, double& dd) {
+  long   ih, ih1, ih2 ;
+  double t1, t2,  t3, t4;
+
+  t1  = 1.0 + djul - fmod( djul, 1.0 ) + 2400000.0;
+  t4  = fmod( djul, 1.0 );
+  ih  = long( (t1 - 1867216.25)/36524.25 );
+  t2  = t1 + 1 + ih - ih/4;
+  t3  = t2 - 1720995.0;
+  ih1 = long( (t3 - 122.1)/365.25 );
+  t1  = 365.25*ih1 - fmod( 365.25*ih1, 1.0 );
+  ih2 = long( (t3 - t1)/30.6001 );
+  dd  = t3 - t1 - (int)( 30.6001*ih2 ) + t4;
+  mm  = ih2 - 1;
+  
+  if ( ih2 > 13 ) mm = ih2 - 13;
+  
+  jj  = ih1;
+  
+  if ( mm <= 2 ) jj = jj + 1;
+  
+} 
Index: branches/BNC_LM/RTCM3/timeutils.h
===================================================================
--- branches/BNC_LM/RTCM3/timeutils.h	(revision 3570)
+++ branches/BNC_LM/RTCM3/timeutils.h	(revision 3570)
@@ -0,0 +1,9 @@
+#ifndef TIMEUTILS_H
+#define TIMEUTILS_H
+
+double djul(long j1, long m1, double tt);
+double gpjd(double second, int nweek) ;
+void   jdgp(double tjul, double & second, long & nweek);
+void   jmt (double djul, long& jj, long& mm, double& dd);
+
+#endif
Index: branches/BNC_LM/bancroft.cpp
===================================================================
--- branches/BNC_LM/bancroft.cpp	(revision 3570)
+++ branches/BNC_LM/bancroft.cpp	(revision 3570)
@@ -0,0 +1,79 @@
+
+#include <cmath>
+
+#include "bancroft.h"
+#include "bncconst.h"
+
+void bancroft(const Matrix& BBpass, ColumnVector& pos) {
+
+  if (pos.Nrows() != 4) {
+    pos.ReSize(4);
+  }
+  pos = 0.0;
+
+  for (int iter = 1; iter <= 2; iter++) {
+    Matrix BB = BBpass;
+    int mm = BB.Nrows();
+    for (int ii = 1; ii <= mm; ii++) {
+      double xx = BB(ii,1);
+      double yy = BB(ii,2);
+      double traveltime = 0.072;
+      if (iter > 1) {
+        double zz  = BB(ii,3);
+        double rho = sqrt( (xx-pos(1)) * (xx-pos(1)) + 
+                           (yy-pos(2)) * (yy-pos(2)) + 
+                           (zz-pos(3)) * (zz-pos(3)) );
+        traveltime = rho / t_CST::c;
+      }
+      double angle = traveltime * t_CST::omega;
+      double cosa  = cos(angle);
+      double sina  = sin(angle);
+      BB(ii,1) =  cosa * xx + sina * yy;
+      BB(ii,2) = -sina * xx + cosa * yy;
+    }
+    
+    Matrix BBB;
+    if (mm > 4) {
+      SymmetricMatrix hlp; hlp << BB.t() * BB;
+      BBB = hlp.i() * BB.t();
+    }
+    else {
+      BBB = BB.i();
+    }
+    ColumnVector ee(mm); ee = 1.0;
+    ColumnVector alpha(mm); alpha = 0.0;
+    for (int ii = 1; ii <= mm; ii++) {
+      alpha(ii) = lorentz(BB.Row(ii).t(),BB.Row(ii).t())/2.0; 
+    }
+    ColumnVector BBBe     = BBB * ee;
+    ColumnVector BBBalpha = BBB * alpha;
+    double aa = lorentz(BBBe, BBBe);
+    double bb = lorentz(BBBe, BBBalpha)-1;
+    double cc = lorentz(BBBalpha, BBBalpha);
+    double root = sqrt(bb*bb-aa*cc);
+
+    Matrix hlpPos(4,2); 
+    hlpPos.Column(1) = (-bb-root)/aa * BBBe + BBBalpha;
+    hlpPos.Column(2) = (-bb+root)/aa * BBBe + BBBalpha;
+
+    ColumnVector omc(2);
+    for (int pp = 1; pp <= 2; pp++) {
+      hlpPos(4,pp)      = -hlpPos(4,pp);
+      omc(pp) = BB(1,4) - 
+                sqrt( (BB(1,1)-hlpPos(1,pp)) * (BB(1,1)-hlpPos(1,pp)) +
+                      (BB(1,2)-hlpPos(2,pp)) * (BB(1,2)-hlpPos(2,pp)) +
+                      (BB(1,3)-hlpPos(3,pp)) * (BB(1,3)-hlpPos(3,pp)) ) - 
+                hlpPos(4,pp);
+    }
+    if ( fabs(omc(1)) > fabs(omc(2)) ) {
+      pos = hlpPos.Column(2);
+    }
+    else {
+      pos = hlpPos.Column(1);
+    }
+  }
+}
+
+double lorentz(const ColumnVector& aa, const ColumnVector& bb) {
+  return aa(1)*bb(1) +  aa(2)*bb(2) +  aa(3)*bb(3) -  aa(4)*bb(4);
+}
Index: branches/BNC_LM/bancroft.h
===================================================================
--- branches/BNC_LM/bancroft.h	(revision 3570)
+++ branches/BNC_LM/bancroft.h	(revision 3570)
@@ -0,0 +1,12 @@
+
+#ifndef BANCROFT_H
+#define BANCROFT_H
+
+#include <newmatap.h> 
+
+void bancroft(const Matrix& BBpass, ColumnVector& pos);
+
+inline double lorentz(const ColumnVector& aa, const ColumnVector& bb);
+
+#endif
+
Index: branches/BNC_LM/bnc.pro
===================================================================
--- branches/BNC_LM/bnc.pro	(revision 3570)
+++ branches/BNC_LM/bnc.pro	(revision 3570)
@@ -0,0 +1,114 @@
+
+# Switch to debug configuration
+# -----------------------------
+CONFIG -= debug
+CONFIG += release
+
+
+DEFINES += NO_RTCM3_MAIN 
+###DEFINES += DEBUG_RTCM2_2021
+unix:DEFINES  += _TTY_POSIX_
+win32:DEFINES += _TTY_WIN_
+
+RESOURCES += bnc.qrc
+
+unix:QMAKE_CFLAGS_RELEASE   -= -O2
+unix:QMAKE_CXXFLAGS_RELEASE -= -O2
+
+# Get rid of mingwm10.dll and libgcc_s_dw2-1.dll
+# ----------------------------------------------
+win32 {
+  QMAKE_LFLAGS                 += -static-libgcc
+  QMAKE_LFLAGS                 -= -mthreads
+  QMAKE_CXXFLAGS_EXCEPTIONS_ON -= -mthreads
+  QMAKE_LFLAGS_EXCEPTIONS_ON   -= -mthreads
+}
+
+debug:OBJECTS_DIR=.obj/debug
+debug:MOC_DIR=.moc/debug
+release:OBJECTS_DIR=.obj/release
+release:MOC_DIR=.moc/release
+
+# Include Path
+# ------------
+INCLUDEPATH = . ./newmat ./RTCM3 ./RTCM3/clock_and_orbit ./RTCM3/rtcm3torinex
+
+HEADERS = bnchelp.html bncgetthread.h    bncwindow.h   bnctabledlg.h  \
+          bnccaster.h bncrinex.h bncapp.h bncutils.h   bnchlpdlg.h    \
+          bncconst.h bnchtml.h bnctableitem.h bnczerodecoder.h        \
+          bncnetquery.h bncnetqueryv1.h bncnetqueryv2.h               \
+          bncnetqueryrtp.h bncsettings.h latencychecker.h             \
+          bncipport.h bncnetqueryv0.h bncnetqueryudp.h                \ 
+          bncnetqueryudp0.h bncudpport.h bnctime.h                    \ 
+          bncserialport.h bncnetquerys.h bncfigure.h                  \ 
+          bncfigurelate.h bncpppclient.h bncversion.h                 \ 
+          bancroft.h bncmodel.h bncfigureppp.h bncrawfile.h           \ 
+          bnctides.h bncmap.h bncmapview.h bncantex.h                 \
+          bncephuser.h bncoutf.h bncclockrinex.h bncsp3.h             \
+          bncbytescounter.h bncsslconfig.h                            \
+          upload/bncrtnetdecoder.h upload/bncuploadcaster.h           \
+          upload/bncrtnetuploadcaster.h upload/bnccustomtrafo.h       \
+          upload/bncephuploadcaster.h bnccomb.h                       \
+          RTCM/GPSDecoder.h RTCM/RTCM2.h RTCM/RTCM2Decoder.h          \
+          RTCM/RTCM2_2021.h RTCM/rtcm_utils.h                         \
+          RTCM3/RTCM3Decoder.h RTCM3/rtcm3torinex/rtcm3torinex.h      \
+          RTCM3/RTCM3coDecoder.h                                      \
+          RTCM3/clock_and_orbit/clock_orbit_rtcm.h                    \
+          RTCM3/ephemeris.h RTCM3/timeutils.h                         \
+          GPSS/gpssDecoder.h GPSS/hassDecoder.h
+
+HEADERS       += serial/qextserialbase.h serial/qextserialport.h
+unix:HEADERS  += serial/posix_qextserialport.h
+win32:HEADERS += serial/win_qextserialport.h
+
+HEADERS += newmat/controlw.h newmat/include.h newmat/myexcept.h  \
+           newmat/newmatap.h newmat/newmat.h newmat/newmatio.h   \
+           newmat/newmatrc.h newmat/newmatrm.h newmat/precisio.h
+
+SOURCES = bncmain.cpp bncgetthread.cpp  bncwindow.cpp bnctabledlg.cpp \
+          bnccaster.cpp bncrinex.cpp bncapp.cpp bncutils.cpp          \
+          bncconst.cpp bnchtml.cpp bnchlpdlg.cpp bnctableitem.cpp     \
+          bnczerodecoder.cpp bncnetqueryv1.cpp bncnetqueryv2.cpp      \
+          bncnetqueryrtp.cpp bncsettings.cpp latencychecker.cpp       \
+          bncipport.cpp bncnetqueryv0.cpp bncnetqueryudp.cpp          \
+          bncnetqueryudp0.cpp bncudpport.cpp                          \
+          bncserialport.cpp bncnetquerys.cpp bncfigure.cpp            \
+          bncfigurelate.cpp bncpppclient.cpp bnctime.cpp              \
+          bancroft.cpp bncmodel.cpp bncfigureppp.cpp bncrawfile.cpp   \
+          bnctides.cpp bncmap.cpp bncmapview.cpp bncantex.cpp         \
+          bncephuser.cpp bncoutf.cpp bncclockrinex.cpp bncsp3.cpp     \
+          bncbytescounter.cpp bncsslconfig.cpp                        \
+          upload/bncrtnetdecoder.cpp upload/bncuploadcaster.cpp       \
+          upload/bncrtnetuploadcaster.cpp upload/bnccustomtrafo.cpp   \
+          upload/bncephuploadcaster.cpp                               \
+          RTCM/RTCM2.cpp RTCM/RTCM2Decoder.cpp                        \
+          RTCM/RTCM2_2021.cpp RTCM/rtcm_utils.cpp                     \
+          RTCM3/RTCM3Decoder.cpp RTCM3/rtcm3torinex/rtcm3torinex.c    \
+          RTCM3/RTCM3coDecoder.cpp                                    \
+          RTCM3/clock_and_orbit/clock_orbit_rtcm.c                    \
+          RTCM3/ephemeris.cpp RTCM3/timeutils.cpp                     \
+          GPSS/gpssDecoder.cpp GPSS/hassDecoder.cpp
+
+SOURCES       += serial/qextserialbase.cpp serial/qextserialport.cpp
+unix:SOURCES  += serial/posix_qextserialport.cpp
+win32:SOURCES += serial/win_qextserialport.cpp
+
+SOURCES += newmat/bandmat.cpp newmat/cholesky.cpp newmat/evalue.cpp  \
+           newmat/fft.cpp newmat/hholder.cpp newmat/jacobi.cpp       \
+           newmat/myexcept.cpp newmat/newfft.cpp newmat/newmat1.cpp  \
+           newmat/newmat2.cpp newmat/newmat3.cpp newmat/newmat4.cpp  \
+           newmat/newmat5.cpp newmat/newmat6.cpp newmat/newmat7.cpp  \
+           newmat/newmat8.cpp newmat/newmat9.cpp newmat/newmatex.cpp \
+           newmat/newmatrm.cpp newmat/nm_misc.cpp newmat/sort.cpp    \
+           newmat/submat.cpp newmat/svd.cpp
+
+RC_FILE = bnc.rc
+
+QT += network
+
+exists(combination/bnccomb.h) {
+  DEFINES += USE_COMBINATION
+  HEADERS += combination/bnccomb.h
+  SOURCES += combination/bnccomb.cpp
+}
+
Index: branches/BNC_LM/bnc.qrc
===================================================================
--- branches/BNC_LM/bnc.qrc	(revision 3570)
+++ branches/BNC_LM/bnc.qrc	(revision 3570)
@@ -0,0 +1,32 @@
+<!DOCTYPE RCC><RCC version="1.0">
+<qresource>
+    <file>ntrip-logo.png</file>
+    <file>bncflowchart.png</file>
+    <file>bnchelp.html</file>
+    <file>bncabout.html</file>
+    <file>worldmap.dat</file>
+</qresource>
+<qresource prefix="/bnchelp">
+    <file alias="screenshot01.png">IMG/screenshot01.png</file>
+    <file alias="screenshot02.png">IMG/screenshot02.png</file>
+    <file alias="screenshot03.png">IMG/screenshot03.png</file>
+    <file alias="screenshot04.png">IMG/screenshot04.png</file>
+    <file alias="screenshot05.png">IMG/screenshot05.png</file>
+    <file alias="screenshot06.png">IMG/screenshot06.png</file>
+    <file alias="screenshot07.png">IMG/screenshot07.png</file>
+    <file alias="screenshot08.png">IMG/screenshot08.png</file>
+    <file alias="screenshot09.png">IMG/screenshot09.png</file>
+    <file alias="screenshot10.png">IMG/screenshot10.png</file>
+    <file alias="screenshot11.png">IMG/screenshot11.png</file>
+    <file alias="screenshot12.png">IMG/screenshot12.png</file>
+    <file alias="screenshot13.png">IMG/screenshot13.png</file>
+    <file alias="screenshot14.png">IMG/screenshot14.png</file>
+    <file alias="screenshot15.png">IMG/screenshot15.png</file>
+    <file alias="screenshot16.png">IMG/screenshot16.png</file>
+    <file alias="screenshot17.png">IMG/screenshot17.png</file>
+    <file alias="screenshot18.png">IMG/screenshot18.png</file>
+    <file alias="screenshot19.png">IMG/screenshot19.png</file>
+    <file alias="screenshot20.png">IMG/screenshot20.png</file>
+    <file alias="screenshot21.png">IMG/screenshot21.png</file>
+</qresource>
+</RCC>
Index: branches/BNC_LM/bnc.rc
===================================================================
--- branches/BNC_LM/bnc.rc	(revision 3570)
+++ branches/BNC_LM/bnc.rc	(revision 3570)
@@ -0,0 +1,1 @@
+IDI_ICON1            ICON          DISCARDABLE     "ntrip-logo.ico"
Index: branches/BNC_LM/bncabout.html
===================================================================
--- branches/BNC_LM/bncabout.html	(revision 3570)
+++ branches/BNC_LM/bncabout.html	(revision 3570)
@@ -0,0 +1,26 @@
+<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
+Developed under GNU General Public License for 'Networked Transport of RTCM via Internet Protocol' (NTRIP) to receive GNSS streaming data over the Internet.<br>
+<u>http://igs.bkg.bund.de/ntrip/about</u><br>
+<br>
+Software by:<br>
+Czech Technical University, Prague<br>
+Faculty of Civil Engineering<br>
+Department of Geodesy<br>
+<u>http://www.fsv.cvut.cz</u><br>
+<br>
+For:<br>
+Federal Agency for Cartography and Geodesy (BKG)<br>
+Department of Geodesy<br>
+Frankfurt, Germany<br>
+<u>http://www.bkg.bund.de</u><br>
+<br>
+This software is provided 'as is'.<br>
+Make sure you installed the latest version available from<br>
+<u>http://igs.bkg.bund.de/ntrip/download</u><br>
+<br>
+Disclaimer:<br>
+The Bundesamt fuer Geodaesie und Kartographie (BKG) may not be held liable for damages of any kind, direct or consequential, which may result from the use of this software.<br>
+<br>
+BKG, Frankfurt, Germany, April 2011<br>
+E-Mail: <a><u>euref-ip@bkg.bund.de</u></a>.<br>
+</p>
Index: branches/BNC_LM/bncantex.cpp
===================================================================
--- branches/BNC_LM/bncantex.cpp	(revision 3570)
+++ branches/BNC_LM/bncantex.cpp	(revision 3570)
@@ -0,0 +1,270 @@
+// Part of BNC, a utility for retrieving decoding and
+// converting GNSS data streams from NTRIP broadcasters.
+//
+// Copyright (C) 2007
+// German Federal Agency for Cartography and Geodesy (BKG)
+// http://www.bkg.bund.de
+// Czech Technical University Prague, Department of Geodesy
+// http://www.fsv.cvut.cz
+//
+// Email: euref-ip@bkg.bund.de
+//
+// This program is free software; you can redistribute it and/or
+// modify it under the terms of the GNU General Public License
+// as published by the Free Software Foundation, version 2.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+/* -------------------------------------------------------------------------
+ * BKG NTRIP Client
+ * -------------------------------------------------------------------------
+ *
+ * Class:      bncAntex
+ *
+ * Purpose:    Antenna Phase Centers and Variations from ANTEX File
+ *
+ * Author:     L. Mervart
+ *
+ * Created:    26-Jan-2011
+ *
+ * Changes:    
+ *
+ * -----------------------------------------------------------------------*/
+
+#include <iostream>
+#include <newmatio.h>
+
+#include "bncantex.h"
+#include "bnctides.h"
+
+using namespace std;
+
+// Constructor
+////////////////////////////////////////////////////////////////////////////
+bncAntex::bncAntex() {
+}
+
+// Destructor
+////////////////////////////////////////////////////////////////////////////
+bncAntex::~bncAntex() {
+  QMapIterator<QString, t_antMap*> it(_maps);
+  while (it.hasNext()) {
+    it.next();
+    delete it.value();
+  }
+}
+
+// Print 
+////////////////////////////////////////////////////////////////////////////
+void bncAntex::print() const {
+  QMapIterator<QString, t_antMap*> it(_maps);
+  while (it.hasNext()) {
+    it.next();
+    t_antMap* map = it.value();
+    cout << map->antName.toAscii().data() << endl;
+    cout << "    " << map->zen1 << " " << map->zen2 << " " << map->dZen << endl;
+    if (map->frqMapL1) {
+      cout << "    " << map->frqMapL1->neu[0] << " "
+                     << map->frqMapL1->neu[1] << " "
+                     << map->frqMapL1->neu[2] << endl;
+      cout << "    " << map->frqMapL1->pattern.t();
+    }
+    if (map->frqMapL2) {
+      cout << "    " << map->frqMapL2->neu[0] << " "
+                     << map->frqMapL2->neu[1] << " "
+                     << map->frqMapL2->neu[2] << endl;
+      cout << "    " << map->frqMapL2->pattern.t();
+    }
+    cout << endl;
+  }
+}
+
+// Read ANTEX File
+////////////////////////////////////////////////////////////////////////////
+t_irc bncAntex::readFile(const QString& fileName) {
+
+  QFile inFile(fileName);
+  inFile.open(QIODevice::ReadOnly | QIODevice::Text);
+
+  QTextStream in(&inFile);
+
+  t_antMap* newAntMap = 0;
+  t_frqMap* newFrqMap = 0;
+
+  while ( !in.atEnd() ) {
+    QString line = in.readLine();
+  
+    // Start of Antenna
+    // ----------------
+    if      (line.indexOf("START OF ANTENNA") == 60) {
+      if (newAntMap) {
+        delete newAntMap;
+        return failure;
+      }
+      else {
+        delete newAntMap;
+        newAntMap = new t_antMap();
+      }
+    } 
+
+    // End of Antenna
+    // --------------
+    else if (line.indexOf("END OF ANTENNA") == 60) {
+      if (newAntMap) {
+        _maps[newAntMap->antName] = newAntMap;
+        newAntMap = 0;
+      }
+      else {
+        delete newAntMap;
+        return failure;
+      }
+    }
+
+    // Antenna Reading in Progress
+    // ---------------------------
+    else if (newAntMap) {
+      if      (line.indexOf("TYPE / SERIAL NO") == 60) {
+        if (line.indexOf("BLOCK I") == 0 ||
+            line.indexOf("GLONASS") == 0) {
+          newAntMap->antName = line.mid(20,3);
+        }
+        else {
+          newAntMap->antName = line.mid(0,20);
+        }
+      }
+      else if (line.indexOf("ZEN1 / ZEN2 / DZEN") == 60) {
+        QTextStream inLine(&line, QIODevice::ReadOnly);
+        inLine >> newAntMap->zen1 >> newAntMap->zen2 >> newAntMap->dZen;  
+      }
+
+      // Start of Frequency
+      // ------------------
+      else if (line.indexOf("START OF FREQUENCY") == 60) {
+        if (newFrqMap) {
+          delete newFrqMap;
+          delete newAntMap;
+          return failure;
+        }
+        else {
+          newFrqMap = new t_frqMap();
+        }
+      }
+
+      // End of Frequency
+      // ----------------
+      else if (line.indexOf("END OF FREQUENCY") == 60) {
+        if (newFrqMap) {
+          if      (line.indexOf("G01") == 3 || line.indexOf("R01") == 3) {
+            newAntMap->frqMapL1 = newFrqMap;
+          }
+          else if (line.indexOf("G02") == 3 || line.indexOf("R02") == 3) {
+            newAntMap->frqMapL2 = newFrqMap;
+          }
+          else {
+            delete newFrqMap;
+          }
+          newFrqMap = 0;
+        }
+        else {
+          delete newAntMap;
+          return failure;
+        }
+      }
+
+      // Frequency Reading in Progress
+      // -----------------------------
+      else if (newFrqMap) {
+        if      (line.indexOf("NORTH / EAST / UP") == 60) {
+          QTextStream inLine(&line, QIODevice::ReadOnly);
+          inLine >> newFrqMap->neu[0] >> newFrqMap->neu[1] >> newFrqMap->neu[2];
+          newFrqMap->neu[0] *= 1e-3;
+          newFrqMap->neu[1] *= 1e-3;
+          newFrqMap->neu[2] *= 1e-3;
+        }
+        else if (line.indexOf("NOAZI") == 3) {
+          QTextStream inLine(&line, QIODevice::ReadOnly);
+          int nPat = int((newAntMap->zen2-newAntMap->zen1)/newAntMap->dZen) + 1;
+          newFrqMap->pattern.ReSize(nPat);
+          QString dummy;
+          inLine >> dummy;
+          for (int ii = 0; ii < nPat; ii++) {
+            inLine >> newFrqMap->pattern[ii];
+          }
+          newFrqMap->pattern *= 1e-3;
+        }
+      }
+    }
+  }
+
+  delete newFrqMap;
+  delete newAntMap;
+
+  return success;
+}
+
+// Satellite Antenna Offset
+////////////////////////////////////////////////////////////////////////////
+t_irc bncAntex::satCoMcorrection(const QString& prn, double Mjd, 
+                                 const ColumnVector& xSat, ColumnVector& dx) {
+
+  QMap<QString, t_antMap*>::const_iterator it = _maps.find(prn);
+  if (it != _maps.end()) {
+    t_antMap* map = it.value();
+    double* neu = map->frqMapL1->neu;
+
+    // Unit Vectors sz, sy, sx
+    // -----------------------
+    ColumnVector sz = -xSat;
+    sz /= sqrt(DotProduct(sz,sz));
+
+    ColumnVector xSun = Sun(Mjd);
+    xSun /= sqrt(DotProduct(xSun,xSun));
+  
+    ColumnVector sy = crossproduct(sz, xSun);
+    sy /= sqrt(DotProduct(sy,sy));
+  
+    ColumnVector sx = crossproduct(sy, sz);
+
+    dx[0] = sx[0] * neu[0] + sy[0] * neu[1] + sz[0] * neu[2];
+    dx[1] = sx[1] * neu[0] + sy[1] * neu[1] + sz[1] * neu[2];
+    dx[2] = sx[2] * neu[0] + sy[2] * neu[1] + sz[2] * neu[2];
+
+    return success;
+  }
+  else {
+    return failure;
+  }
+}
+
+// Phase Center Offset (Receiver Antenna and GPS only)
+////////////////////////////////////////////////////////////////////////////
+double bncAntex::pco(const QString& antName, double eleSat, bool& found) {
+
+  static const double f1 = t_CST::freq1;
+  static const double f2 = t_CST::freq2;
+  static const double c1 =   f1 * f1 / (f1 * f1 - f2 * f2);
+  static const double c2 = - f2 * f2 / (f1 * f1 - f2 * f2);
+
+  QMap<QString, t_antMap*>::const_iterator it = _maps.find(antName);
+  if (it != _maps.end()) {
+    found = true;
+    t_antMap* map = it.value();
+    if (map->frqMapL1 && map->frqMapL2) {
+      double corr1 = -map->frqMapL1->neu[2] * sin(eleSat);
+      double corr2 = -map->frqMapL2->neu[2] * sin(eleSat);
+      return c1 * corr1 + c2 * corr2;
+    }
+  }
+  else {
+    found = false;
+  }
+
+  return 0.0;
+}
Index: branches/BNC_LM/bncantex.h
===================================================================
--- branches/BNC_LM/bncantex.h	(revision 3570)
+++ branches/BNC_LM/bncantex.h	(revision 3570)
@@ -0,0 +1,74 @@
+// Part of BNC, a utility for retrieving decoding and
+// converting GNSS data streams from NTRIP broadcasters.
+//
+// Copyright (C) 2007
+// German Federal Agency for Cartography and Geodesy (BKG)
+// http://www.bkg.bund.de
+// Czech Technical University Prague, Department of Geodesy
+// http://www.fsv.cvut.cz
+//
+// Email: euref-ip@bkg.bund.de
+//
+// This program is free software; you can redistribute it and/or
+// modify it under the terms of the GNU General Public License
+// as published by the Free Software Foundation, version 2.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+#ifndef BNCANTEX_H
+#define BNCANTEX_H
+
+#include <QtCore>
+#include <newmat.h>
+#include "bncconst.h"
+#include "bnctime.h"
+
+class bncAntex {
+ public:
+  bncAntex();
+  ~bncAntex();
+  t_irc readFile(const QString& fileName);  
+  void print() const;
+  double pco(const QString& antName, double eleSat, bool& found);
+  t_irc  satCoMcorrection(const QString& prn, double Mjd, 
+                          const ColumnVector& xSat, ColumnVector& dx);
+
+ private:
+
+  class t_frqMap {
+   public:
+    double       neu[3];
+    ColumnVector pattern;
+  };
+
+  class t_antMap {
+   public:
+    t_antMap() {
+      frqMapL1 = 0;
+      frqMapL2 = 0;
+    }
+    ~t_antMap() {
+      delete frqMapL1;
+      delete frqMapL2;
+    }
+    QString   antName;
+    double       zen1;
+    double       zen2;
+    double       dZen;
+    t_frqMap* frqMapL1;
+    t_frqMap* frqMapL2;
+    bncTime   validFrom;
+    bncTime   validTo;
+  };
+
+  QMap<QString, t_antMap*> _maps;
+};
+
+#endif
Index: branches/BNC_LM/bncapp.cpp
===================================================================
--- branches/BNC_LM/bncapp.cpp	(revision 3570)
+++ branches/BNC_LM/bncapp.cpp	(revision 3570)
@@ -0,0 +1,923 @@
+// Part of BNC, a utility for retrieving decoding and
+// converting GNSS data streams from NTRIP broadcasters.
+//
+// Copyright (C) 2007
+// German Federal Agency for Cartography and Geodesy (BKG)
+// http://www.bkg.bund.de
+// Czech Technical University Prague, Department of Geodesy
+// http://www.fsv.cvut.cz
+//
+// Email: euref-ip@bkg.bund.de
+//
+// This program is free software; you can redistribute it and/or
+// modify it under the terms of the GNU General Public License
+// as published by the Free Software Foundation, version 2.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+/* -------------------------------------------------------------------------
+ * BKG NTRIP Client
+ * -------------------------------------------------------------------------
+ *
+ * Class:      bncApp
+ *
+ * Purpose:    This class implements the main application
+ *
+ * Author:     L. Mervart
+ *
+ * Created:    29-Aug-2006
+ *
+ * Changes:    
+ *
+ * -----------------------------------------------------------------------*/
+
+#include <iostream>
+#include <QMessageBox>
+#include <cmath>
+
+#include "bncapp.h" 
+#include "bncutils.h" 
+#include "bncrinex.h" 
+#include "bncsettings.h" 
+#include "bncversion.h" 
+
+#ifdef USE_COMBINATION
+#include "combination/bnccomb.h" 
+#endif
+
+using namespace std;
+
+// Constructor
+////////////////////////////////////////////////////////////////////////////
+bncApp::bncApp(int& argc, char* argv[], bool GUIenabled) : 
+  QApplication(argc, argv, GUIenabled) {
+
+  _logFileFlag = 0;
+  _logFile     = 0;
+  _logStream   = 0;
+  _caster      = 0;
+  _rawFile     = 0;
+#ifdef USE_COMBINATION
+  _bncComb     = 0;
+#endif
+
+  // Lists of Ephemeris
+  // ------------------
+  for (int ii = PRN_GPS_START; ii <= PRN_GPS_END; ii++) {
+    _gpsEph[ii-PRN_GPS_START] = 0;
+  }
+  for (int ii = PRN_GLONASS_START; ii <= PRN_GLONASS_END; ii++) {
+    _glonassEph[ii-PRN_GLONASS_START] = 0;
+  }
+  for (int ii = PRN_GALILEO_START; ii <= PRN_GALILEO_END; ii++) {
+    _galileoEph[ii-PRN_GALILEO_START] = 0;
+  }
+
+  // Eph file(s)
+  // -----------
+  _rinexVers        = 0;
+  _ephFileGPS       = 0;
+  _ephStreamGPS     = 0;
+  _ephFileGlonass   = 0;
+  _ephStreamGlonass = 0;
+  _ephFileGalileo   = 0;
+  _ephStreamGalileo = 0;
+
+  _port    = 0;
+  _server  = 0;
+  _sockets = 0;
+
+  _portCorr    = 0;
+  _serverCorr  = 0;
+  _socketsCorr = 0;
+
+  _pgmName  = QString(BNCPGMNAME).leftJustified(20, ' ', true);
+#ifdef WIN32
+  _userName = QString("${USERNAME}");
+#else
+  _userName = QString("${USER}");
+#endif
+  expandEnvVar(_userName);
+  _userName = _userName.leftJustified(20, ' ', true);
+
+  _lastDumpCoSec = 0;
+
+  _corrs = new QMultiMap<long, QString>;
+
+  _currentDateAndTimeGPS = 0;
+
+  for (int ii = 0; ii < PRN_GLONASS_NUM; ++ii) {
+    _GLOFreq[ii] = 0;
+  }
+
+  _bncPPPclient = 0;
+}
+
+// Destructor
+////////////////////////////////////////////////////////////////////////////
+bncApp::~bncApp() {
+  delete _logStream;
+  delete _logFile;
+  delete _ephStreamGPS;
+  delete _ephFileGPS;
+  delete _server;
+  delete _sockets;
+  delete _serverCorr;
+  delete _socketsCorr;
+  if (_rinexVers == 2) {
+    delete _ephStreamGlonass;
+    delete _ephFileGlonass;
+  }
+  for (int ii = PRN_GPS_START; ii <= PRN_GPS_END; ii++) {
+    delete _gpsEph[ii-PRN_GPS_START];
+  }
+  for (int ii = PRN_GLONASS_START; ii <= PRN_GLONASS_END; ii++) {
+    delete _glonassEph[ii-PRN_GLONASS_START];
+  }
+  for (int ii = PRN_GALILEO_START; ii <= PRN_GALILEO_END; ii++) {
+    delete _galileoEph[ii-PRN_GALILEO_START];
+  }
+
+  delete _corrs;
+
+  delete _currentDateAndTimeGPS;
+
+  delete _rawFile;
+
+#ifdef USE_COMBINATION
+  delete _bncComb;
+#endif
+}
+
+// Write a Program Message
+////////////////////////////////////////////////////////////////////////////
+void bncApp::slotMessage(QByteArray msg, bool showOnScreen) {
+
+  QMutexLocker locker(&_mutexMessage);
+
+  messagePrivate(msg);
+  emit newMessage(msg, showOnScreen);
+}
+
+// Write a Program Message (private, no lock)
+////////////////////////////////////////////////////////////////////////////
+void bncApp::messagePrivate(const QByteArray& msg) {
+
+  // First time resolve the log file name
+  // ------------------------------------
+  QDate currDate = currentDateAndTimeGPS().date();
+  if (_logFileFlag == 0 || _fileDate != currDate) {
+    delete _logStream; _logStream = 0;
+    delete _logFile;   _logFile   = 0;
+    _logFileFlag = 1;
+    bncSettings settings;
+    QString logFileName = settings.value("logFile").toString();
+    if ( !logFileName.isEmpty() ) {
+      expandEnvVar(logFileName);
+      _logFile = new QFile(logFileName + "_" + 
+                          currDate.toString("yyMMdd").toAscii().data());
+      _fileDate = currDate;
+      if ( Qt::CheckState(settings.value("rnxAppend").toInt()) == Qt::Checked) {
+        _logFile->open(QIODevice::WriteOnly | QIODevice::Append);
+      }
+      else {
+        _logFile->open(QIODevice::WriteOnly);
+      }
+      _logStream = new QTextStream();
+      _logStream->setDevice(_logFile);
+    }
+  }
+
+  if (_logStream) {
+    QByteArray msgLocal = msg;
+    if (msg.indexOf('\n') == 0) {
+      *_logStream << endl;
+      msgLocal = msg.mid(1);
+    }
+    *_logStream << currentDateAndTimeGPS().toString("yy-MM-dd hh:mm:ss ").toAscii().data();
+    *_logStream << msgLocal.data() << endl;
+    _logStream->flush();
+  }
+}
+
+// New GPS Ephemeris 
+////////////////////////////////////////////////////////////////////////////
+void bncApp::slotNewGPSEph(gpsephemeris* gpseph) {
+
+  QMutexLocker locker(&_mutex);
+
+  gpsephemeris copy_gpseph = *gpseph;
+  emit newEphGPS(copy_gpseph);
+
+  printEphHeader();
+
+  gpsephemeris** ee = &_gpsEph[gpseph->satellite-1];
+
+  if ( *ee == 0                         || 
+       gpseph->GPSweek > (*ee)->GPSweek ||
+       (gpseph->GPSweek == (*ee)->GPSweek && gpseph->TOC > (*ee)->TOC) ) {
+    delete *ee;
+    *ee = gpseph;
+    printGPSEph(gpseph, true);
+  }
+  else {
+    printGPSEph(gpseph, false);
+    delete gpseph;
+  }
+}
+    
+// New Glonass Ephemeris
+////////////////////////////////////////////////////////////////////////////
+void bncApp::slotNewGlonassEph(glonassephemeris* glonasseph) {
+
+  QMutexLocker locker(&_mutex);
+
+  glonassephemeris copy_glonasseph = *glonasseph;
+  emit newEphGlonass(copy_glonasseph);
+
+  printEphHeader();
+
+  glonassephemeris** ee = &_glonassEph[glonasseph->almanac_number-1];
+
+  int wwOld, towOld, wwNew, towNew;
+  if (*ee != 0) {
+    wwOld  = (*ee)->GPSWeek;
+    towOld = (*ee)->GPSTOW; 
+    updatetime(&wwOld, &towOld, (*ee)->tb*1000, 0);  // Moscow -> GPS
+
+    wwNew  = glonasseph->GPSWeek;
+    towNew = glonasseph->GPSTOW; 
+    updatetime(&wwNew, &towNew, glonasseph->tb*1000, 0); // Moscow -> GPS
+  }
+
+  if ( *ee == 0      || 
+       wwNew > wwOld ||
+       (wwNew == wwOld && towNew > towOld) ) {
+    delete *ee;
+    *ee = glonasseph;
+    printGlonassEph(glonasseph, true);
+  }
+  else {
+    printGlonassEph(glonasseph, false);
+    delete glonasseph;
+  }
+}
+
+// New Galileo Ephemeris
+////////////////////////////////////////////////////////////////////////////
+void bncApp::slotNewGalileoEph(galileoephemeris* galileoeph) {
+
+  QMutexLocker locker(&_mutex);
+
+  galileoephemeris copy_galileoeph = *galileoeph;
+  emit newEphGalileo(copy_galileoeph);
+
+  printEphHeader();
+
+  int galIndex = galileoeph->satellite - 51;
+  if (galIndex < 0 || galIndex > PRN_GALILEO_END - PRN_GALILEO_START) {
+    emit( newMessage("Wrong Galileo Satellite Number", true) );
+    exit(1);
+  }
+
+  galileoephemeris** ee = &_galileoEph[galIndex];
+
+  if ( *ee == 0                       || 
+       galileoeph->Week > (*ee)->Week ||
+       (galileoeph->Week == (*ee)->Week && galileoeph->TOC > (*ee)->TOC) ) {
+    delete *ee;
+    *ee = galileoeph;
+    printGalileoEph(galileoeph, true);
+  }
+  else {
+    printGalileoEph(galileoeph, false);
+    delete galileoeph;
+  }
+}
+
+// Print Header of the output File(s)
+////////////////////////////////////////////////////////////////////////////
+void bncApp::printEphHeader() {
+
+  bncSettings settings;
+
+  // Initialization
+  // --------------
+  if (_rinexVers == 0) {
+
+    if ( Qt::CheckState(settings.value("ephV3").toInt()) == Qt::Checked) {
+      _rinexVers = 3;    
+    }
+    else {
+      _rinexVers = 2;
+    }
+
+    _ephPath = settings.value("ephPath").toString();
+
+    if ( !_ephPath.isEmpty() ) {
+      if ( _ephPath[_ephPath.length()-1] != QDir::separator() ) {
+        _ephPath += QDir::separator();
+      }
+      expandEnvVar(_ephPath);
+    }
+  }
+
+  // (Re-)Open output File(s)
+  // ------------------------
+  if (!_ephPath.isEmpty()) {
+
+    QDateTime datTim = currentDateAndTimeGPS();
+
+    QString ephFileNameGPS = _ephPath + "BRDC" + 
+               QString("%1").arg(datTim.date().dayOfYear(), 3, 10, QChar('0'));
+
+    QString hlpStr = bncRinex::nextEpochStr(datTim, 
+                         settings.value("ephIntr").toString());
+
+    if (_rinexVers == 3) {
+      ephFileNameGPS += hlpStr + datTim.toString(".yyP");
+    }
+    else {
+      ephFileNameGPS += hlpStr + datTim.toString(".yyN");
+    }
+
+    if (_ephFileNameGPS == ephFileNameGPS) {
+      return;
+    }
+    else {
+      _ephFileNameGPS = ephFileNameGPS;
+    }
+
+    for (int ii = PRN_GPS_START; ii <= PRN_GPS_END; ii++) {
+      delete _gpsEph[ii-PRN_GPS_START];
+      _gpsEph[ii-PRN_GPS_START] = 0;
+    }
+    for (int ii = PRN_GLONASS_START; ii <= PRN_GLONASS_END; ii++) {
+      delete _glonassEph[ii-PRN_GLONASS_START];
+      _glonassEph[ii-PRN_GLONASS_START] = 0;
+    }
+    for (int ii = PRN_GALILEO_START; ii <= PRN_GALILEO_END; ii++) {
+      delete _galileoEph[ii-PRN_GALILEO_START];
+      _galileoEph[ii-PRN_GALILEO_START] = 0;
+    }
+
+    delete _ephStreamGPS;
+    delete _ephFileGPS;
+
+    QFlags<QIODevice::OpenModeFlag> appendFlagGPS;
+    QFlags<QIODevice::OpenModeFlag> appendFlagGlonass;
+    QFlags<QIODevice::OpenModeFlag> appendFlagGalileo;
+
+    if ( Qt::CheckState(settings.value("rnxAppend").toInt()) == Qt::Checked &&
+         QFile::exists(ephFileNameGPS) ) {
+      appendFlagGPS = QIODevice::Append;
+    }
+
+    _ephFileGPS = new QFile(ephFileNameGPS);
+    _ephFileGPS->open(QIODevice::WriteOnly | appendFlagGPS);
+    _ephStreamGPS = new QTextStream();
+    _ephStreamGPS->setDevice(_ephFileGPS);
+
+    if      (_rinexVers == 3) {
+      _ephFileGlonass   = _ephFileGPS;
+      _ephStreamGlonass = _ephStreamGPS;
+      _ephFileGalileo   = _ephFileGPS;
+      _ephStreamGalileo = _ephStreamGPS;
+    }
+    else if (_rinexVers == 2) {
+      QString ephFileNameGlonass = _ephPath + "BRDC" +
+          QString("%1").arg(datTim.date().dayOfYear(), 3, 10, QChar('0')) +
+          hlpStr + datTim.toString(".yyG");
+
+      delete _ephStreamGlonass;
+      delete _ephFileGlonass;
+
+      if ( Qt::CheckState(settings.value("rnxAppend").toInt()) == Qt::Checked &&
+           QFile::exists(ephFileNameGlonass) ) {
+        appendFlagGlonass = QIODevice::Append;
+      }
+
+      _ephFileGlonass = new QFile(ephFileNameGlonass);
+      _ephFileGlonass->open(QIODevice::WriteOnly | appendFlagGlonass);
+      _ephStreamGlonass = new QTextStream();
+      _ephStreamGlonass->setDevice(_ephFileGlonass);
+    }
+
+    // Header - RINEX Version 3
+    // ------------------------
+    if (_rinexVers == 3) {
+      if ( ! (appendFlagGPS & QIODevice::Append)) {
+        QString line;
+        line.sprintf(
+          "%9.2f%11sN: GNSS NAV DATA    M: Mixed%12sRINEX VERSION / TYPE\n", 
+          3.0, "", "");
+        *_ephStreamGPS << line;
+        
+        QString hlp = currentDateAndTimeGPS().toString("yyyyMMdd hhmmss UTC").leftJustified(20, ' ', true);
+        *_ephStreamGPS << _pgmName.toAscii().data() 
+                       << _userName.toAscii().data() 
+                       << hlp.toAscii().data() 
+                       << "PGM / RUN BY / DATE" << endl;
+
+        line.sprintf("%60sEND OF HEADER\n", "");
+        *_ephStreamGPS << line;
+        
+        _ephStreamGPS->flush();
+      }
+    }
+
+    // Headers - RINEX Version 2
+    // -------------------------
+    else if (_rinexVers == 2) {
+      if (! (appendFlagGPS & QIODevice::Append)) {
+        QString line;
+        line.sprintf(
+          "%9.2f%11sN: GPS NAV DATA%25sRINEX VERSION / TYPE\n", 2.10, "", "");
+        *_ephStreamGPS << line;
+         
+        QString hlp = currentDateAndTimeGPS().date().toString("dd-MMM-yyyy").leftJustified(20, ' ', true);
+        *_ephStreamGPS << _pgmName.toAscii().data() 
+                       << _userName.toAscii().data() 
+                       << hlp.toAscii().data() 
+                       << "PGM / RUN BY / DATE" << endl;
+
+        line.sprintf("%60sEND OF HEADER\n", "");
+        *_ephStreamGPS << line;
+
+        _ephStreamGPS->flush();
+      }
+      if (! (appendFlagGlonass & QIODevice::Append)) {
+        QString line;
+        line.sprintf(
+          "%9.2f%11sG: GLONASS NAV DATA%21sRINEX VERSION / TYPE\n",2.10,"","");
+        *_ephStreamGlonass << line;
+        
+        QString hlp = currentDateAndTimeGPS().date().toString("dd-MMM-yyyy").leftJustified(20, ' ', true);
+        *_ephStreamGlonass << _pgmName.toAscii().data() 
+                           << _userName.toAscii().data() 
+                           << hlp.toAscii().data() 
+                           << "PGM / RUN BY / DATE" << endl;
+
+        line.sprintf("%60sEND OF HEADER\n", "");
+        *_ephStreamGlonass << line;
+
+        _ephStreamGlonass->flush();
+      }
+    }
+  }
+}
+
+// Print One GPS Ephemeris
+////////////////////////////////////////////////////////////////////////////
+void bncApp::printGPSEph(gpsephemeris* ep, bool printFile) {
+
+  QString lineV2;
+  QString lineV3;
+
+  struct converttimeinfo cti;
+  converttime(&cti, ep->GPSweek, ep->TOC);
+
+  lineV3.sprintf("G%02d %04d %02d %02d %02d %02d %02d%19.12e%19.12e%19.12e\n",
+                 ep->satellite, cti.year, cti.month, cti.day, cti.hour,
+                 cti.minute, cti.second, ep->clock_bias, ep->clock_drift,
+                 ep->clock_driftrate);
+
+  lineV2.sprintf("%02d %02d %02d %02d %02d %02d%5.1f%19.12e%19.12e%19.12e\n",
+                 ep->satellite, cti.year%100, cti.month, cti.day, cti.hour,
+                 cti.minute, (double) cti.second, ep->clock_bias, 
+                 ep->clock_drift, ep->clock_driftrate);
+
+  QString    line;
+  QByteArray allLines;
+
+  QByteArray fmt;
+  QByteArray fmt2;
+  if (_rinexVers == 2) {
+    fmt  = "   %19.12e%19.12e%19.12e%19.12e\n";
+    fmt2 = "   %19.12e%19.12e\n";
+  }
+  else {
+    fmt  = "    %19.12e%19.12e%19.12e%19.12e\n";
+    fmt2 = "    %19.12e%19.12e\n";
+  }
+
+  line.sprintf(fmt.data(), (double)ep->IODE, ep->Crs, ep->Delta_n, ep->M0);
+  allLines += line;
+  
+  line.sprintf(fmt.data(), ep->Cuc, ep->e, ep->Cus, ep->sqrt_A);
+  allLines += line;
+
+  line.sprintf(fmt.data(), (double) ep->TOE, ep->Cic, ep->OMEGA0, ep->Cis);
+  allLines += line;
+  
+  line.sprintf(fmt.data(), ep->i0, ep->Crc, ep->omega, ep->OMEGADOT);
+  allLines += line;
+
+  double dd = 0;
+  unsigned long ii = ep->flags;
+  if(ii & GPSEPHF_L2CACODE)
+    dd += 2.0;
+  if(ii & GPSEPHF_L2PCODE)
+    dd += 1.0;
+  line.sprintf(fmt.data(), ep->IDOT, dd, (double) ep->GPSweek, 
+               ii & GPSEPHF_L2PCODEDATA ? 1.0 : 0.0);
+  allLines += line;
+
+  if(ep->URAindex <= 6) /* URA index */
+    dd = ceil(10.0*pow(2.0, 1.0+((double)ep->URAindex)/2.0))/10.0;
+  else
+    dd = ceil(10.0*pow(2.0, ((double)ep->URAindex)/2.0))/10.0;
+  line.sprintf(fmt.data(), dd, ((double) ep->SVhealth), ep->TGD, 
+               ((double) ep->IODC));
+  allLines += line;
+
+  line.sprintf(fmt2.data(), ((double)ep->TOW), 0.0);
+  allLines += line;
+
+  printOutput(printFile, _ephStreamGPS, lineV2, lineV3, allLines);
+}
+
+// Print One Glonass Ephemeris
+////////////////////////////////////////////////////////////////////////////
+void bncApp::printGlonassEph(glonassephemeris* ep, bool printFile) {
+
+  int ww  = ep->GPSWeek;
+  int tow = ep->GPSTOW; 
+  struct converttimeinfo cti;
+
+  updatetime(&ww, &tow, ep->tb*1000, 1);  // Moscow -> UTC
+  converttime(&cti, ww, tow);
+
+  int tk = ep->tk-3*60*60; 
+  if (tk < 0) {
+    tk += 86400;
+  }
+
+  QString lineV2;
+  QString lineV3;
+
+  lineV3.sprintf("R%02d %04d %02d %02d %02d %02d %02d%19.12e%19.12e%19.12e\n",
+                 ep->almanac_number, cti.year, cti.month, cti.day, cti.hour, 
+                 cti.minute, cti.second, -ep->tau, ep->gamma, (double) tk);
+
+  lineV2.sprintf("%02d %02d %02d %02d %02d %02d%5.1f%19.12e%19.12e%19.12e\n",
+                 ep->almanac_number, cti.year%100, cti.month, cti.day, 
+                 cti.hour, cti.minute, (double) cti.second, -ep->tau, 
+                 ep->gamma, (double) tk);
+  
+  QString    line;
+  QByteArray allLines;
+
+  QByteArray fmt;
+  if (_rinexVers == 2) {
+    fmt = "   %19.12e%19.12e%19.12e%19.12e\n";
+  }
+  else {
+    fmt = "    %19.12e%19.12e%19.12e%19.12e\n";
+  }
+
+  line.sprintf(fmt.data(), ep->x_pos, ep->x_velocity, ep->x_acceleration, 
+               (ep->flags & GLOEPHF_UNHEALTHY) ? 1.0 : 0.0);
+  allLines += line;
+   
+  line.sprintf(fmt.data(), ep->y_pos, ep->y_velocity, ep->y_acceleration, 
+               (double) ep->frequency_number);
+  allLines += line;
+  
+  line.sprintf(fmt.data(), ep->z_pos, ep->z_velocity, ep->z_acceleration, 
+               (double) ep->E);
+  allLines += line;
+
+  printOutput(printFile, _ephStreamGlonass, lineV2, lineV3, allLines);
+}
+
+// Print One Galileo Ephemeris
+////////////////////////////////////////////////////////////////////////////
+void bncApp::printGalileoEph(galileoephemeris* ep, bool printFile) {
+
+  QString lineV2;
+  QString lineV3;
+
+  struct converttimeinfo cti;
+  converttime(&cti, ep->Week, ep->TOC);
+
+  lineV3.sprintf("E%02d %04d %02d %02d %02d %02d %02d%19.12e%19.12e%19.12e\n",
+                 ep->satellite, cti.year, cti.month, cti.day, cti.hour,
+                 cti.minute, cti.second, ep->clock_bias, ep->clock_drift,
+                 ep->clock_driftrate);
+
+  QString    line;
+  QByteArray allLines;
+
+  const QByteArray fmt4 = "    %19.12e%19.12e%19.12e%19.12e\n";
+  const QByteArray fmt3 = "    %19.12e%19.12e%19.12e\n";
+  const QByteArray fmt1 = "    %19.12e\n";
+
+  line.sprintf(fmt4.data(), (double)ep->IODnav, ep->Crs, ep->Delta_n, ep->M0);
+  allLines += line;
+  
+  line.sprintf(fmt4.data(), ep->Cuc, ep->e, ep->Cus, ep->sqrt_A);
+  allLines += line;
+
+  line.sprintf(fmt4.data(), (double) ep->TOE, ep->Cic, ep->OMEGA0, ep->Cis);
+  allLines += line;
+  
+  line.sprintf(fmt4.data(), ep->i0, ep->Crc, ep->omega, ep->OMEGADOT);
+  allLines += line;
+
+  double dataSources = 0.0;       // TODO
+  line.sprintf(fmt3.data(), ep->IDOT, dataSources, (double) ep->Week);
+  allLines += line;
+
+  double health   = 0.0;          // TODO
+  double BGD_1_5B = ep->BGD_1_5A; // TODO
+  line.sprintf(fmt4.data(), (double) ep->SISA, health, ep->BGD_1_5A, BGD_1_5B);
+  allLines += line;
+
+  double transmissionTimeOfMessage = 0.9999e9; // unknown (Rinex v3 standard)
+  line.sprintf(fmt1.data(), transmissionTimeOfMessage);
+  allLines += line;
+
+  printOutput(printFile, _ephStreamGalileo, lineV2, lineV3, allLines);
+}
+
+// Output
+////////////////////////////////////////////////////////////////////////////
+void bncApp::printOutput(bool printFile, QTextStream* stream,
+                         const QString& lineV2, 
+                         const QString& lineV3,
+                         const QByteArray& allLines) {
+  // Output into file
+  // ----------------
+  if (printFile && stream) {
+    if (_rinexVers == 2) {
+      *stream << lineV2.toAscii();
+    }
+    else {
+      *stream << lineV3.toAscii();
+    }
+    *stream << allLines;
+    stream->flush();
+  }
+
+  // Output into the socket
+  // ----------------------
+  if (_sockets) {
+    QMutableListIterator<QTcpSocket*> is(*_sockets);
+    while (is.hasNext()) {
+      QTcpSocket* sock = is.next();
+      if (sock->state() == QAbstractSocket::ConnectedState) {
+        if (sock->write(lineV3.toAscii())   == -1 ||
+            sock->write(allLines)           == -1) {
+          delete sock;
+          is.remove();
+        }
+      }
+      else if (sock->state() != QAbstractSocket::ConnectingState) {
+        delete sock;
+        is.remove();
+      }
+    }
+  }
+}
+
+// Set Port Number
+////////////////////////////////////////////////////////////////////////////
+void bncApp::setPort(int port) {
+  _port = port;
+  if (_port != 0) {
+    delete _server;
+    _server = new QTcpServer;
+    if ( !_server->listen(QHostAddress::Any, _port) ) {
+      slotMessage("bncApp: Cannot listen on ephemeris port", true);
+    }
+    connect(_server, SIGNAL(newConnection()), this, SLOT(slotNewConnection()));
+    delete _sockets;
+    _sockets = new QList<QTcpSocket*>;
+  }
+}
+
+// Set Port Number
+////////////////////////////////////////////////////////////////////////////
+void bncApp::setPortCorr(int port) {
+  _portCorr = port;
+  if (_portCorr != 0) {
+    delete _serverCorr;
+    _serverCorr = new QTcpServer;
+    if ( !_serverCorr->listen(QHostAddress::Any, _portCorr) ) {
+      slotMessage("bncApp: Cannot listen on correction port", true);
+    }
+    connect(_serverCorr, SIGNAL(newConnection()), this, SLOT(slotNewConnectionCorr()));
+    delete _socketsCorr;
+    _socketsCorr = new QList<QTcpSocket*>;
+  }
+}
+
+// New Connection
+////////////////////////////////////////////////////////////////////////////
+void bncApp::slotNewConnection() {
+  _sockets->push_back( _server->nextPendingConnection() );
+}
+
+// New Connection
+////////////////////////////////////////////////////////////////////////////
+void bncApp::slotNewConnectionCorr() {
+  _socketsCorr->push_back( _serverCorr->nextPendingConnection() );
+}
+
+// 
+////////////////////////////////////////////////////////////////////////////
+void bncApp::slotQuit() {
+  cout << "bncApp::slotQuit" << endl;
+  delete _caster;
+  quit();
+}
+
+// 
+////////////////////////////////////////////////////////////////////////////
+void bncApp::slotNewCorrLine(QString line, QString staID, long coTime) {
+
+  QMutexLocker locker(&_mutex);
+
+  // Combination of Corrections
+  // --------------------------
+#ifdef USE_COMBINATION
+  if (_bncComb) {
+    _bncComb->processCorrLine(staID, line);
+  }
+#endif
+
+  bncSettings settings;
+  _waitCoTime = settings.value("corrTime").toInt();
+  if (_waitCoTime < 0) {
+    _waitCoTime = 0;
+  }
+
+  // First time, set the _lastDumpSec immediately
+  // --------------------------------------------
+  if (_lastDumpCoSec == 0) {
+    _lastDumpCoSec = coTime - 1;
+  }
+
+  // An old correction - throw it away
+  // ---------------------------------
+  if (_waitCoTime > 0 && coTime <= _lastDumpCoSec) {
+    if (!_bncComb) {
+      QString line = staID + ": Correction for one sat neglected because overaged by " +
+                      QString().sprintf(" %ld sec",
+                      _lastDumpCoSec - coTime + _waitCoTime);
+      messagePrivate(line.toAscii());
+      emit( newMessage(line.toAscii(), true) );
+    }
+    return;
+  }
+
+  _corrs->insert(coTime, QString(line + " " + staID));
+
+  // Dump Corrections
+  // ----------------
+  if      (_waitCoTime == 0) {
+    dumpCorrs();
+  }
+  else if (coTime - _waitCoTime > _lastDumpCoSec) {
+    dumpCorrs(_lastDumpCoSec + 1, coTime - _waitCoTime);
+    _lastDumpCoSec = coTime - _waitCoTime;
+  }
+}
+
+// Dump Complete Correction Epochs
+////////////////////////////////////////////////////////////////////////////
+void bncApp::dumpCorrs(long minTime, long maxTime) {
+  for (long sec = minTime; sec <= maxTime; sec++) {
+    QList<QString> allCorrs = _corrs->values(sec);
+    dumpCorrs(allCorrs);
+    _corrs->remove(sec);
+  }
+}
+
+// Dump all corrections
+////////////////////////////////////////////////////////////////////////////
+void bncApp::dumpCorrs() {
+  QList<QString> allCorrs;
+  QMutableMapIterator<long, QString> it(*_corrs);
+  while (it.hasNext()) {
+    allCorrs << it.next().value();
+    it.remove();
+  }
+  dumpCorrs(allCorrs);
+}
+
+// Dump List of Corrections 
+////////////////////////////////////////////////////////////////////////////
+void bncApp::dumpCorrs(const QList<QString>& allCorrs) {
+  emit newCorrections(allCorrs);
+  if (_socketsCorr) {
+    QListIterator<QString> it(allCorrs);
+    while (it.hasNext()) {
+      QString corrLine = it.next() + "\n";
+    
+      QMutableListIterator<QTcpSocket*> is(*_socketsCorr);
+      while (is.hasNext()) {
+        QTcpSocket* sock = is.next();
+        if (sock->state() == QAbstractSocket::ConnectedState) {
+          if (sock->write(corrLine.toAscii()) == -1) {
+            delete sock;
+            is.remove();
+          }
+        }
+        else if (sock->state() != QAbstractSocket::ConnectingState) {
+          delete sock;
+          is.remove();
+        }
+      }
+    }
+  }
+}
+
+// 
+////////////////////////////////////////////////////////////////////////////
+void bncApp::setConfFileName(const QString& confFileName) {
+  if (confFileName.isEmpty()) {
+    _confFileName = QDir::homePath() + QDir::separator() 
+                  + ".config" + QDir::separator()
+                  + organizationName() + QDir::separator()
+                  + applicationName() + ".ini";
+  }
+  else {
+    _confFileName = confFileName;
+  }
+}
+
+// Raw Output
+////////////////////////////////////////////////////////////////////////////
+void bncApp::writeRawData(const QByteArray& data, const QByteArray& staID,
+                          const QByteArray& format) {
+
+  QMutexLocker locker(&_mutex);
+
+  if (!_rawFile) {
+    bncSettings settings;
+    QByteArray fileName = settings.value("rawOutFile").toByteArray();
+    if (!fileName.isEmpty()) {
+      _rawFile = new bncRawFile(fileName, staID, format, bncRawFile::output);
+    }
+  }
+
+  if (_rawFile) {
+    _rawFile->writeRawData(data, staID, format);
+  }
+}
+
+// Get Glonass Slot Numbers from Global Array
+////////////////////////////////////////////////////////////////////////////
+void bncApp::getGlonassSlotNums(int GLOFreq[]) {
+
+  QMutexLocker locker(&_mutex);
+
+  for (int ii = 0; ii < PRN_GLONASS_NUM; ++ii) {
+    if (_GLOFreq[ii] != 0) {
+      GLOFreq[ii] = _GLOFreq[ii];
+    }
+  }
+}
+
+// Store Glonass Slot Numbers to Global Array
+////////////////////////////////////////////////////////////////////////////
+void bncApp::storeGlonassSlotNums(const int GLOFreq[]) {
+
+  QMutexLocker locker(&_mutex);
+
+  for (int ii = 0; ii < PRN_GLONASS_NUM; ++ii) {
+    if (GLOFreq[ii] != 0) {
+      _GLOFreq[ii] = GLOFreq[ii];
+    }
+  }
+}
+
+// 
+////////////////////////////////////////////////////////////////////////////
+void bncApp::initCombination() {
+#ifdef USE_COMBINATION
+  _bncComb = new bncComb();
+  if (_bncComb->nStreams() < 1) {
+    delete _bncComb;
+    _bncComb = 0;
+  }
+#endif
+}
+
+// 
+////////////////////////////////////////////////////////////////////////////
+void bncApp::stopCombination() {
+#ifdef USE_COMBINATION
+  delete _bncComb;
+  _bncComb = 0;
+#endif
+}
Index: branches/BNC_LM/bncapp.h
===================================================================
--- branches/BNC_LM/bncapp.h	(revision 3570)
+++ branches/BNC_LM/bncapp.h	(revision 3570)
@@ -0,0 +1,135 @@
+// Part of BNC, a utility for retrieving decoding and
+// converting GNSS data streams from NTRIP broadcasters.
+//
+// Copyright (C) 2007
+// German Federal Agency for Cartography and Geodesy (BKG)
+// http://www.bkg.bund.de
+// Czech Technical University Prague, Department of Geodesy
+// http://www.fsv.cvut.cz
+//
+// Email: euref-ip@bkg.bund.de
+//
+// This program is free software; you can redistribute it and/or
+// modify it under the terms of the GNU General Public License
+// as published by the Free Software Foundation, version 2.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+#ifndef BNCAPP_H
+#define BNCAPP_H
+
+#include <QApplication>
+#include <QFile>
+#include <QTextStream>
+
+#include "bnccaster.h"
+#include "bncrawfile.h"
+#include "RTCM3/RTCM3Decoder.h"
+
+class bncComb;
+class bncPPPclient;
+class bncTableItem;
+
+class bncApp : public QApplication {
+  Q_OBJECT
+  public:
+    enum e_mode {interactive, nonInteractive, batchPostProcessing};
+    bncApp(int& argc, char* argv[], bool GUIenabled);
+    virtual ~bncApp();  
+    e_mode mode() const {return _mode;}
+    void   setMode(e_mode mode) {_mode = mode;}
+    void setPort(int port);
+    void setPortCorr(int port);
+    void setCaster(bncCaster* caster) {_caster = caster;}
+    QDateTime* _currentDateAndTimeGPS;
+    void setConfFileName(const QString& confFileName);
+    QString confFileName() const {return _confFileName;}
+    void writeRawData(const QByteArray& data, const QByteArray& staID,
+                      const QByteArray& format);
+    void storeGlonassSlotNums(const int GLOFreq[]);
+    void getGlonassSlotNums(int GLOFreq[]);
+    void initCombination();
+    void stopCombination();
+
+  public slots:
+    void slotMessage(QByteArray msg, bool showOnScreen);
+    void slotNewGPSEph(gpsephemeris* gpseph);
+    void slotNewGlonassEph(glonassephemeris* glonasseph);
+    void slotNewGalileoEph(galileoephemeris* galileoeph);
+    void slotNewCorrLine(QString line, QString staID, long coTime);
+    void slotQuit();
+
+  signals:
+    void newMessage(QByteArray msg, bool showOnScreen);
+    void newEphGPS(gpsephemeris gpseph);
+    void newEphGlonass(glonassephemeris glonasseph);
+    void newEphGalileo(galileoephemeris galileoeph);
+    void newCorrections(QList<QString>);
+    
+ private slots:
+   void slotNewConnection();
+   void slotNewConnectionCorr();
+  private:
+    void printEphHeader();
+    void printGPSEph(gpsephemeris* ep, bool printFile);
+    void printGlonassEph(glonassephemeris* ep, bool printFile);
+    void printGalileoEph(galileoephemeris* ep, bool printFile);
+    void printOutput(bool printFile, QTextStream* stream, 
+                     const QString& lineV2, 
+                     const QString& lineV3,
+                     const QByteArray& allLines);
+    void dumpCorrs(long minTime, long maxTime);
+    void dumpCorrs();
+    void dumpCorrs(const QList<QString>& allCorrs);
+    void messagePrivate(const QByteArray& msg);
+
+    QFile*            _logFile;
+    QTextStream*      _logStream;
+    int               _logFileFlag;
+    QMutex            _mutex;
+    QMutex            _mutexMessage;
+    QString           _ephPath;
+    QString           _ephFileNameGPS;
+    int               _rinexVers;
+    QFile*            _ephFileGPS;
+    QTextStream*      _ephStreamGPS;
+    QFile*            _ephFileGlonass;
+    QTextStream*      _ephStreamGlonass;
+    QFile*            _ephFileGalileo;
+    QTextStream*      _ephStreamGalileo;
+    gpsephemeris*     _gpsEph[PRN_GPS_END - PRN_GPS_START + 1];
+    glonassephemeris* _glonassEph[PRN_GLONASS_END - PRN_GLONASS_START + 1];
+    galileoephemeris* _galileoEph[PRN_GALILEO_END - PRN_GALILEO_START + 1];
+    QString           _userName;
+    QString           _pgmName;
+    int                 _port;
+    QTcpServer*         _server;
+    QList<QTcpSocket*>* _sockets;
+    int                 _portCorr;
+    QTcpServer*         _serverCorr;
+    QList<QTcpSocket*>* _socketsCorr;
+    int                 _portNMEA;
+    QTcpServer*         _serverNMEA;
+    QList<QTcpSocket*>* _socketsNMEA;
+    bncCaster*          _caster;
+    long                _lastDumpCoSec;
+    long                _waitCoTime;
+    QMultiMap<long, QString>* _corrs;
+    QString             _confFileName;
+    QDate               _fileDate;
+    bncRawFile*         _rawFile;
+    int                 _GLOFreq[PRN_GLONASS_NUM];
+    bncComb*            _bncComb;
+    e_mode              _mode;
+ public:
+    bncPPPclient*       _bncPPPclient;
+    QMap<int, bncTableItem*> _uploadTableItems;
+};
+#endif
Index: branches/BNC_LM/bncbytescounter.cpp
===================================================================
--- branches/BNC_LM/bncbytescounter.cpp	(revision 3570)
+++ branches/BNC_LM/bncbytescounter.cpp	(revision 3570)
@@ -0,0 +1,72 @@
+// Part of BNC, a utility for retrieving decoding and
+// converting GNSS data streams from NTRIP broadcasters.
+//
+// Copyright (C) 2007
+// German Federal Agency for Cartography and Geodesy (BKG)
+// http://www.bkg.bund.de
+// Czech Technical University Prague, Department of Geodesy
+// http://www.fsv.cvut.cz
+//
+// Email: euref-ip@bkg.bund.de
+//
+// This program is free software; you can redistribute it and/or
+// modify it under the terms of the GNU General Public License
+// as published by the Free Software Foundation, version 2.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+/* -------------------------------------------------------------------------
+ * BKG NTRIP Client
+ * -------------------------------------------------------------------------
+ *
+ * Class:      bncBytesCounter
+ *
+ * Purpose:    Re-Implements QLabel
+ *
+ * Author:     L. Mervart
+ *
+ * Created:    03-Apr-2011
+ *
+ * Changes:    
+ *
+ * -----------------------------------------------------------------------*/
+
+#include "bncbytescounter.h"
+
+// Constructor
+////////////////////////////////////////////////////////////////////////////
+bncBytesCounter::bncBytesCounter() : QLabel() {
+  _bytesRead = 0.0;
+  setText(QString("%1 byte(s)").arg(0));
+}
+
+// Destructor
+////////////////////////////////////////////////////////////////////////////
+bncBytesCounter::~bncBytesCounter() {
+}
+
+// 
+////////////////////////////////////////////////////////////////////////////
+void bncBytesCounter::slotNewBytes(const QByteArray, double nbyte) {
+
+  QMutexLocker locker(&_mutex);
+
+  _bytesRead += nbyte;
+
+  if      (_bytesRead < 1e3) {
+    setText(QString("%1 byte(s)").arg((int)_bytesRead));
+  }
+  else if (_bytesRead < 1e6) {
+    setText(QString("%1 kB").arg(_bytesRead/1.e3, 5));
+  }
+  else {
+    setText(QString("%1 MB").arg(_bytesRead/1.e6, 5));
+  }
+}
Index: branches/BNC_LM/bncbytescounter.h
===================================================================
--- branches/BNC_LM/bncbytescounter.h	(revision 3570)
+++ branches/BNC_LM/bncbytescounter.h	(revision 3570)
@@ -0,0 +1,45 @@
+// Part of BNC, a utility for retrieving decoding and
+// converting GNSS data streams from NTRIP broadcasters.
+//
+// Copyright (C) 2007
+// German Federal Agency for Cartography and Geodesy (BKG)
+// http://www.bkg.bund.de
+// Czech Technical University Prague, Department of Geodesy
+// http://www.fsv.cvut.cz
+//
+// Email: euref-ip@bkg.bund.de
+//
+// This program is free software; you can redistribute it and/or
+// modify it under the terms of the GNU General Public License
+// as published by the Free Software Foundation, version 2.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+#ifndef BNCBYTESCOUNTER_H
+#define BNCBYTESCOUNTER_H
+
+#include <QtGui>
+
+class bncBytesCounter : public QLabel {
+  Q_OBJECT
+
+  public:
+    bncBytesCounter();
+    ~bncBytesCounter();
+ 
+  public slots:
+    void slotNewBytes(const QByteArray staID, double nbyte);
+
+  private:
+    double _bytesRead;
+    QMutex _mutex;
+};
+
+#endif
Index: branches/BNC_LM/bnccaster.cpp
===================================================================
--- branches/BNC_LM/bnccaster.cpp	(revision 3570)
+++ branches/BNC_LM/bnccaster.cpp	(revision 3570)
@@ -0,0 +1,517 @@
+// Part of BNC, a utility for retrieving decoding and
+// converting GNSS data streams from NTRIP broadcasters.
+//
+// Copyright (C) 2007
+// German Federal Agency for Cartography and Geodesy (BKG)
+// http://www.bkg.bund.de
+// Czech Technical University Prague, Department of Geodesy
+// http://www.fsv.cvut.cz
+//
+// Email: euref-ip@bkg.bund.de
+//
+// This program is free software; you can redistribute it and/or
+// modify it under the terms of the GNU General Public License
+// as published by the Free Software Foundation, version 2.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+/* -------------------------------------------------------------------------
+ * BKG NTRIP Client
+ * -------------------------------------------------------------------------
+ *
+ * Class:      bncCaster
+ *
+ * Purpose:    buffers and disseminates the data
+ *
+ * Author:     L. Mervart
+ *
+ * Created:    24-Dec-2005
+ *
+ * Changes:    
+ *
+ * -----------------------------------------------------------------------*/
+
+#include <math.h>
+#include <unistd.h>
+#include <iostream>
+#include <iomanip>
+#include <sstream>
+
+#include "bnccaster.h"
+#include "bncrinex.h"
+#include "bncapp.h"
+#include "bncgetthread.h"
+#include "bncutils.h"
+#include "bncsettings.h"
+#include "RTCM/GPSDecoder.h"
+
+using namespace std;
+
+// Constructor
+////////////////////////////////////////////////////////////////////////////
+bncCaster::bncCaster(const QString& outFileName, int port) {
+
+  bncSettings settings;
+
+  connect(this, SIGNAL(newMessage(QByteArray,bool)), 
+          (bncApp*) qApp, SLOT(slotMessage(const QByteArray,bool)));
+
+  if ( !outFileName.isEmpty() ) {
+    QString lName = outFileName;
+    expandEnvVar(lName);
+    _outFile = new QFile(lName); 
+    if ( Qt::CheckState(settings.value("rnxAppend").toInt()) == Qt::Checked) {
+      _outFile->open(QIODevice::WriteOnly | QIODevice::Append);
+    }
+    else {
+      _outFile->open(QIODevice::WriteOnly);
+    }
+    _out = new QTextStream(_outFile);
+    _out->setRealNumberNotation(QTextStream::FixedNotation);
+  }
+  else {
+    _outFile = 0;
+    _out     = 0;
+  }
+
+  _port = port;
+
+  if (_port != 0) {
+    _server = new QTcpServer;
+    if ( !_server->listen(QHostAddress::Any, _port) ) {
+      emit newMessage("bncCaster: Cannot listen on sync port", true);
+    }
+    connect(_server, SIGNAL(newConnection()), this, SLOT(slotNewConnection()));
+    _sockets = new QList<QTcpSocket*>;
+  }
+  else {
+    _server  = 0;
+    _sockets = 0;
+  }
+
+  int uPort = settings.value("outUPort").toInt();
+  if (uPort != 0) {
+    _uServer = new QTcpServer;
+    if ( !_uServer->listen(QHostAddress::Any, uPort) ) {
+      emit newMessage("bncCaster: Cannot listen on usync port", true);
+    }
+    connect(_uServer, SIGNAL(newConnection()), this, SLOT(slotNewUConnection()));
+    _uSockets = new QList<QTcpSocket*>;
+  }
+  else {
+    _uServer  = 0;
+    _uSockets = 0;
+  }
+
+  int nmeaPort = settings.value("nmeaPort").toInt();
+  if (nmeaPort != 0) {
+    _nmeaServer = new QTcpServer;
+    if ( !_nmeaServer->listen(QHostAddress::Any, nmeaPort) ) {
+      emit newMessage("bncCaster: Cannot listen on port", true);
+    }
+    connect(_nmeaServer, SIGNAL(newConnection()), this, SLOT(slotNewNMEAConnection()));
+    _nmeaSockets = new QList<QTcpSocket*>;
+  }
+  else {
+    _nmeaServer  = 0;
+    _nmeaSockets = 0;
+  }
+
+  _epochs = new QMultiMap<long, t_obs>;
+
+  _lastDumpSec  = 0; 
+  _waitTime     = 0;
+  _confInterval = -1;
+}
+
+// Destructor
+////////////////////////////////////////////////////////////////////////////
+bncCaster::~bncCaster() {
+
+  QMutexLocker locker(&_mutex);
+
+  QListIterator<bncGetThread*> it(_threads);
+  while(it.hasNext()){
+    bncGetThread* thread = it.next();
+    thread->terminate();
+  }
+  delete _out;
+  delete _outFile;
+  delete _server;
+  delete _sockets;
+  delete _uServer;
+  delete _uSockets;
+  delete _nmeaServer;
+  delete _nmeaSockets;
+  delete _epochs;
+}
+
+// New Observations
+////////////////////////////////////////////////////////////////////////////
+void bncCaster::newObs(const QByteArray staID, bool firstObs, t_obs obs) {
+
+  QMutexLocker locker(&_mutex);
+
+  long iSec    = long(floor(obs.GPSWeeks+0.5));
+  long newTime = obs.GPSWeek * 7*24*3600 + iSec;
+
+  // Rename the Station
+  // ------------------
+  strncpy(obs.StatID, staID.constData(),sizeof(obs.StatID));
+  obs.StatID[sizeof(obs.StatID)-1] = '\0';
+
+  // Output into the socket
+  // ----------------------
+  if (_uSockets) {
+
+    ostringstream oStr;
+    oStr.setf(ios::showpoint | ios::fixed);
+    oStr << obs.StatID                                        << " " 
+         << obs.GPSWeek                                       << " "
+         << setprecision(7) << obs.GPSWeeks                   << " "
+         << bncRinex::asciiSatLine(obs) << endl;
+
+    string hlpStr = oStr.str();
+
+    QMutableListIterator<QTcpSocket*> is(*_uSockets);
+    while (is.hasNext()) {
+      QTcpSocket* sock = is.next();
+      if (sock->state() == QAbstractSocket::ConnectedState) {
+        int numBytes = hlpStr.length();
+        if (myWrite(sock, hlpStr.c_str(), numBytes) != numBytes) {
+          delete sock;
+          is.remove();
+        }
+      }
+      else if (sock->state() != QAbstractSocket::ConnectingState) {
+        delete sock;
+        is.remove();
+      }
+    }
+  }
+
+  // First time, set the _lastDumpSec immediately
+  // --------------------------------------------
+  if (_lastDumpSec == 0) {
+    _lastDumpSec = newTime - 1;
+  }
+
+  // An old observation - throw it away
+  // ----------------------------------
+  if (newTime <= _lastDumpSec) {
+    if (firstObs) {
+      bncSettings settings;
+      if ( !settings.value("outFile").toString().isEmpty() || 
+           !settings.value("outPort").toString().isEmpty() ) { 
+
+	QTime enomtime = QTime(0,0,0).addSecs(iSec);
+
+        emit( newMessage(QString("%1: Old epoch %2 (%3) thrown away")
+			 .arg(staID.data()).arg(iSec)
+			 .arg(enomtime.toString("HH:mm:ss"))
+			 .toAscii(), true) );
+      }
+    }
+    return;
+  }
+
+  // Save the observation
+  // --------------------
+  _epochs->insert(newTime, obs);
+
+  // Dump Epochs
+  // -----------
+  if (newTime - _waitTime > _lastDumpSec) {
+    dumpEpochs(_lastDumpSec + 1, newTime - _waitTime);
+    _lastDumpSec = newTime - _waitTime;
+  }
+}
+
+// New Connection
+////////////////////////////////////////////////////////////////////////////
+void bncCaster::slotNewConnection() {
+  _sockets->push_back( _server->nextPendingConnection() );
+  emit( newMessage(QString("New client connection on sync port: # %1")
+                   .arg(_sockets->size()).toAscii(), true) );
+}
+
+void bncCaster::slotNewUConnection() {
+  _uSockets->push_back( _uServer->nextPendingConnection() );
+  emit( newMessage(QString("New client connection on usync port: # %1")
+                   .arg(_uSockets->size()).toAscii(), true) );
+}
+
+void bncCaster::slotNewNMEAConnection() {
+  _nmeaSockets->push_back( _nmeaServer->nextPendingConnection() );
+  emit( newMessage(QString("New PPP client on port: # %1")
+                   .arg(_nmeaSockets->size()).toAscii(), true) );
+}
+
+// Add New Thread
+////////////////////////////////////////////////////////////////////////////
+void bncCaster::addGetThread(bncGetThread* getThread, bool noNewThread) {
+
+  qRegisterMetaType<t_obs>("t_obs");
+  qRegisterMetaType<gpsephemeris>("gpsephemeris");
+  qRegisterMetaType<glonassephemeris>("glonassephemeris");
+
+  connect(getThread, SIGNAL(newObs(QByteArray, bool, t_obs)),
+          this,      SLOT(newObs(QByteArray, bool, t_obs)));
+
+  connect(getThread, SIGNAL(getThreadFinished(QByteArray)), 
+          this, SLOT(slotGetThreadFinished(QByteArray)));
+
+  connect(getThread, SIGNAL(newNMEAstr(QByteArray)), 
+          this, SLOT(slotNewNMEAstr(QByteArray)));
+
+  connect(((bncApp*)qApp), SIGNAL(newEphGPS(gpsephemeris)),
+	  getThread, SLOT(slotNewEphGPS(gpsephemeris)));
+
+  _staIDs.push_back(getThread->staID());
+  _threads.push_back(getThread);
+
+  if (noNewThread) {
+    getThread->run();
+  }
+  else {
+    getThread->start();
+  }
+}
+
+// Get Thread destroyed
+////////////////////////////////////////////////////////////////////////////
+void bncCaster::slotGetThreadFinished(QByteArray staID) {
+  QMutexLocker locker(&_mutex);
+
+  QListIterator<bncGetThread*> it(_threads);
+  while (it.hasNext()) {
+    bncGetThread* thread = it.next();
+    if (thread->staID() == staID) {
+      _threads.removeOne(thread);
+    }
+  }
+
+  _staIDs.removeAll(staID);
+  emit( newMessage(
+           QString("Decoding %1 stream(s)").arg(_staIDs.size()).toAscii(), true) );
+  if (_staIDs.size() == 0) {
+    emit(newMessage("bncCaster: Last get thread terminated", true));
+    emit getThreadsFinished();
+  }
+}
+
+// Dump Complete Epochs
+////////////////////////////////////////////////////////////////////////////
+void bncCaster::dumpEpochs(long minTime, long maxTime) {
+
+  for (long sec = minTime; sec <= maxTime; sec++) {
+
+    bool first = true;
+    QList<t_obs> allObs = _epochs->values(sec);
+
+    QListIterator<t_obs> it(allObs);
+    while (it.hasNext()) {
+      const t_obs& obs = it.next();
+
+      if (_samplingRate == 0 || sec % _samplingRate == 0) {
+
+        if (_out || _sockets) {
+          ostringstream oStr;
+          oStr.setf(ios::showpoint | ios::fixed);
+          oStr << obs.StatID                                        << " " 
+               << obs.GPSWeek                                       << " "
+               << setprecision(7) << obs.GPSWeeks                   << " "
+               << bncRinex::asciiSatLine(obs) << endl;
+          if (!it.hasNext()) { 
+            oStr << endl;
+          }
+          string hlpStr = oStr.str();
+
+          // Output into the File
+          // --------------------
+          if (_out) {
+            *_out << hlpStr.c_str();
+            _out->flush();
+          }
+
+          // Output into the socket
+          // ----------------------
+          if (_sockets) {
+            QMutableListIterator<QTcpSocket*> is(*_sockets);
+            while (is.hasNext()) {
+              QTcpSocket* sock = is.next();
+              if (sock->state() == QAbstractSocket::ConnectedState) {
+                int numBytes = hlpStr.length(); 
+                if (myWrite(sock, hlpStr.c_str(), numBytes) != numBytes) {
+                  delete sock;
+                  is.remove();
+                }
+              }
+              else if (sock->state() != QAbstractSocket::ConnectingState) {
+                delete sock;
+                is.remove();
+              }
+            }
+          }
+        }
+      }
+
+      _epochs->remove(sec);
+      first = false;
+    }
+  }
+}
+
+// Reread configuration 
+////////////////////////////////////////////////////////////////////////////
+void bncCaster::slotReadMountPoints() {
+
+  bncSettings settings;
+
+  // Reread several options
+  // ----------------------
+  _samplingRate = settings.value("binSampl").toInt();
+  _waitTime     = settings.value("waitTime").toInt();
+  if (_waitTime < 1) {
+    _waitTime = 1;
+  }
+
+  // Add new mountpoints
+  // -------------------
+  int iMount = -1;
+  QListIterator<QString> it(settings.value("mountPoints").toStringList());
+  while (it.hasNext()) {
+    ++iMount;
+    QStringList hlp = it.next().split(" ");
+    if (hlp.size() <= 1) continue;
+    QUrl url(hlp[0]);
+
+    // Does it already exist?
+    // ----------------------
+    bool existFlg = false;
+    QListIterator<bncGetThread*> iTh(_threads);
+    while (iTh.hasNext()) {
+      bncGetThread* thread = iTh.next();
+      if (thread->mountPoint() == url) {
+        existFlg = true;
+        break;
+      }
+    }
+
+    // New bncGetThread
+    // ----------------
+    if (!existFlg) {
+      QByteArray format    = hlp[1].toAscii();
+      QByteArray latitude  = hlp[2].toAscii();
+      QByteArray longitude = hlp[3].toAscii();
+      QByteArray nmea      = hlp[4].toAscii();
+      QByteArray ntripVersion = hlp[5].toAscii();
+      
+      bncGetThread* getThread = new bncGetThread(url, format, latitude, 
+                                        longitude, nmea, ntripVersion);
+      addGetThread(getThread);
+    }
+  }
+
+  // Remove mountpoints
+  // ------------------
+  QListIterator<bncGetThread*> iTh(_threads);
+  while (iTh.hasNext()) {
+    bncGetThread* thread = iTh.next();
+
+    bool existFlg = false;
+    QListIterator<QString> it(settings.value("mountPoints").toStringList());
+    while (it.hasNext()) {
+      QStringList hlp = it.next().split(" ");
+      if (hlp.size() <= 1) continue;
+      QUrl url(hlp[0]);
+
+      if (thread->mountPoint() == url) {
+        existFlg = true;
+        break;
+      }
+    }
+
+    if (!existFlg) {
+      disconnect(thread, 0, 0, 0);
+      _staIDs.removeAll(thread->staID());
+      _threads.removeAll(thread);
+      thread->terminate();
+    }
+  }
+
+  emit mountPointsRead(_threads);
+  emit( newMessage(QString("Configuration read: "
+                           + ((bncApp*) qApp)->confFileName()
+                           + ", %1 stream(s)")
+                            .arg(_threads.count()).toAscii(), true) );
+
+  // (Re-) Start the configuration timer
+  // -----------------------------------
+  int ms = 0;
+
+  if (_confInterval != -1) {
+    ms = 1000 * _confInterval;
+  }
+  else {
+    QTime currTime = currentDateAndTimeGPS().time();
+    QTime nextShotTime;
+
+    if      (settings.value("onTheFlyInterval").toString() == "1 min") {
+      _confInterval = 60;
+      nextShotTime = QTime(currTime.hour(), currTime.minute()+1, 0);
+    }
+    else if (settings.value("onTheFlyInterval").toString() == "1 hour") {
+      _confInterval = 3600;
+      nextShotTime = QTime(currTime.hour()+1, 0, 0);
+    }
+    else {
+      _confInterval = 86400;
+      nextShotTime = QTime(23, 59, 59, 999);
+    }
+
+    ms = currTime.msecsTo(nextShotTime);
+    if (ms < 30000) {
+      ms = 30000;
+    }
+  }
+
+  QTimer::singleShot(ms, this, SLOT(slotReadMountPoints()));
+}
+
+// 
+////////////////////////////////////////////////////////////////////////////
+int bncCaster::myWrite(QTcpSocket* sock, const char* buf, int bufLen) {
+  sock->write(buf, bufLen);
+  for (int ii = 1; ii <= 10; ii++) {
+    if (sock->waitForBytesWritten(10)) {  // wait 10 ms
+      return bufLen;
+    }
+  }
+  return -1;
+}
+
+// 
+////////////////////////////////////////////////////////////////////////////
+void bncCaster::slotNewNMEAstr(QByteArray str) {
+  if (_nmeaSockets) {
+    QMutableListIterator<QTcpSocket*> is(*_nmeaSockets);
+    while (is.hasNext()) {
+      QTcpSocket* sock = is.next();
+      if (sock->state() == QAbstractSocket::ConnectedState) {
+	sock->write(str);
+      }
+      else if (sock->state() != QAbstractSocket::ConnectingState) {
+        delete sock;
+        is.remove();
+      }
+    }
+  }
+}
Index: branches/BNC_LM/bnccaster.h
===================================================================
--- branches/BNC_LM/bnccaster.h	(revision 3570)
+++ branches/BNC_LM/bnccaster.h	(revision 3570)
@@ -0,0 +1,84 @@
+// Part of BNC, a utility for retrieving decoding and
+// converting GNSS data streams from NTRIP broadcasters.
+//
+// Copyright (C) 2007
+// German Federal Agency for Cartography and Geodesy (BKG)
+// http://www.bkg.bund.de
+// Czech Technical University Prague, Department of Geodesy
+// http://www.fsv.cvut.cz
+//
+// Email: euref-ip@bkg.bund.de
+//
+// This program is free software; you can redistribute it and/or
+// modify it under the terms of the GNU General Public License
+// as published by the Free Software Foundation, version 2.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+#ifndef BNCCASTER_H
+#define BNCCASTER_H
+
+#include <QFile>
+#include <QtNetwork>
+#include <QMultiMap>
+
+#include "RTCM/GPSDecoder.h"
+
+class bncGetThread;
+
+class bncCaster : public QObject {
+ Q_OBJECT
+
+ public:
+   bncCaster(const QString& outFileName, int port);
+   ~bncCaster();
+   void addGetThread(bncGetThread* getThread, bool noNewThread = false);
+   int  numStations() const {return _staIDs.size();}
+
+ public slots:
+   void newObs(QByteArray staID, bool firstObs, t_obs obs);
+   void slotReadMountPoints();
+   void slotNewNMEAstr(QByteArray str);
+
+ signals:
+   void mountPointsRead(QList<bncGetThread*>);
+   void getThreadsFinished();   
+   void newMessage(QByteArray msg, bool showOnScreen);
+
+ private slots:
+   void slotNewConnection();
+   void slotNewUConnection();
+   void slotNewNMEAConnection();
+   void slotGetThreadFinished(QByteArray staID);
+
+ private:
+   void dumpEpochs(long minTime, long maxTime);
+   static int myWrite(QTcpSocket* sock, const char* buf, int bufLen);
+
+   QFile*                   _outFile;
+   int                      _port;
+   QTextStream*             _out;
+   QMultiMap<long, t_obs>*  _epochs;
+   long                     _lastDumpSec;
+   QTcpServer*              _server;
+   QTcpServer*              _uServer;
+   QTcpServer*              _nmeaServer;
+   QList<QTcpSocket*>*      _sockets;
+   QList<QTcpSocket*>*      _uSockets;
+   QList<QTcpSocket*>*      _nmeaSockets;
+   QList<QByteArray>        _staIDs;
+   QList<bncGetThread*>     _threads;
+   int                      _samplingRate;
+   long                     _waitTime;
+   QMutex                   _mutex;
+   int                      _confInterval;
+};
+
+#endif
Index: branches/BNC_LM/bncclockrinex.cpp
===================================================================
--- branches/BNC_LM/bncclockrinex.cpp	(revision 3570)
+++ branches/BNC_LM/bncclockrinex.cpp	(revision 3570)
@@ -0,0 +1,79 @@
+
+/* -------------------------------------------------------------------------
+ * BKG NTRIP Server
+ * -------------------------------------------------------------------------
+ *
+ * Class:      bncClockRinex
+ *
+ * Purpose:    writes RINEX Clock files
+ *
+ * Author:     L. Mervart
+ *
+ * Created:    29-Mar-2011
+ *
+ * Changes:    
+ *
+ * -----------------------------------------------------------------------*/
+
+#include <math.h>
+#include <iomanip>
+
+#include "bncclockrinex.h"
+#include "bncsettings.h"
+
+using namespace std;
+
+// Constructor
+////////////////////////////////////////////////////////////////////////////
+bncClockRinex::bncClockRinex(const QString& sklFileName, const QString& intr, 
+                             int sampl) 
+  : bncoutf(sklFileName, intr, sampl) {
+  bncSettings settings;
+}
+
+// Destructor
+////////////////////////////////////////////////////////////////////////////
+bncClockRinex::~bncClockRinex() {
+}
+
+// Write One Epoch
+////////////////////////////////////////////////////////////////////////////
+t_irc bncClockRinex::write(int GPSweek, double GPSweeks, const QString& prn, 
+                   const ColumnVector& xx) {
+
+  if (reopen(GPSweek, GPSweeks) == success) {
+
+      QDateTime datTim = dateAndTimeFromGPSweek(GPSweek, GPSweeks);
+      double sec = fmod(GPSweeks, 60.0);
+    
+      _out << "AS " << prn.toAscii().data()
+           << datTim.toString("  yyyy MM dd hh mm").toAscii().data()
+           << fixed      << setw(10) << setprecision(6)  << sec 
+           << "  1   "
+           << scientific << setw(19) << setprecision(12) << xx(4) << endl;
+
+    return success;
+  }
+  else {
+    return failure;
+  }
+}
+
+// Write Header
+////////////////////////////////////////////////////////////////////////////
+void bncClockRinex::writeHeader(const QDateTime& datTim) {
+
+  _out << "     3.00           C                                       "
+       << "RINEX VERSION / TYPE" << endl;
+
+  _out << "BNC                                     " 
+       << datTim.toString("yyyyMMdd hhmmss").leftJustified(20, ' ', true).toAscii().data()
+       << "PGM / RUN BY / DATE" << endl;
+
+  _out << "     1    AS                                                "
+       << "# / TYPES OF DATA" << endl;
+
+  _out << "                                                            "
+       << "END OF HEADER" << endl;
+}
+
Index: branches/BNC_LM/bncclockrinex.h
===================================================================
--- branches/BNC_LM/bncclockrinex.h	(revision 3570)
+++ branches/BNC_LM/bncclockrinex.h	(revision 3570)
@@ -0,0 +1,22 @@
+#ifndef BNCCLOCKRINEX_H
+#define BNCCLOCKRINEX_H
+
+#include <fstream>
+#include <newmat.h>
+#include <QtCore>
+
+#include "bncoutf.h"
+
+class bncClockRinex : public bncoutf {
+ public:
+  bncClockRinex(const QString& sklFileName, const QString& intr, int sampl);
+  virtual ~bncClockRinex();
+  virtual t_irc write(int GPSweek, double GPSweeks, const QString& prn, 
+                      const ColumnVector& xx);
+
+ private:
+  virtual void writeHeader(const QDateTime& datTim);
+  bool _append;
+};
+
+#endif
Index: branches/BNC_LM/bnccomb.h
===================================================================
--- branches/BNC_LM/bnccomb.h	(revision 3570)
+++ branches/BNC_LM/bnccomb.h	(revision 3570)
@@ -0,0 +1,63 @@
+
+#ifndef BNCCOMB_H
+#define BNCCOMB_H
+
+template <class BidIt>
+inline bool next_combination(BidIt n_begin, BidIt n_end, 
+                             BidIt r_begin, BidIt r_end) {
+  
+  bool boolmarked=false;
+  BidIt r_marked;
+  
+  BidIt n_it1=n_end;
+  --n_it1;
+  
+  
+  BidIt tmp_r_end=r_end;
+  --tmp_r_end;
+  
+  for(BidIt r_it1=tmp_r_end; r_it1!=r_begin || r_it1==r_begin; --r_it1,--n_it1)
+  {
+    if(*r_it1==*n_it1 )
+    {
+      if(r_it1!=r_begin) //to ensure not at the start of r sequence
+      {
+        boolmarked=true;
+        r_marked=(--r_it1);
+        ++r_it1;//add it back again 
+        continue;
+      }
+      else // it means it is at the start the sequence, so return false
+        return false;      
+    }
+    else //if(*r_it1!=*n_it1 )
+    {
+      //marked code
+      if(boolmarked==true)
+      {
+        //for loop to find which marked is in the first sequence
+        BidIt n_marked;//mark in first sequence
+        for (BidIt n_it2=n_begin;n_it2!=n_end;++n_it2)
+          if(*r_marked==*n_it2) {n_marked=n_it2;break;}
+      
+    
+        BidIt n_it3=++n_marked;    
+        for  (BidIt r_it2=r_marked;r_it2!=r_end;++r_it2,++n_it3)
+        {
+          *r_it2=*n_it3;
+        }
+        return true;
+      }
+      for(BidIt n_it4=n_begin; n_it4!=n_end; ++n_it4)
+        if(*r_it1==*n_it4)
+        {
+          *r_it1=*(++n_it4);
+          return true;           
+        }
+    }
+  }  
+
+  return true;//will never reach here    
+}
+
+#endif
Index: branches/BNC_LM/bncconst.cpp
===================================================================
--- branches/BNC_LM/bncconst.cpp	(revision 3570)
+++ branches/BNC_LM/bncconst.cpp	(revision 3570)
@@ -0,0 +1,36 @@
+// Part of BNC, a utility for retrieving decoding and
+// converting GNSS data streams from NTRIP broadcasters.
+//
+// Copyright (C) 2007
+// German Federal Agency for Cartography and Geodesy (BKG)
+// http://www.bkg.bund.de
+// Czech Technical University Prague, Department of Geodesy
+// http://www.fsv.cvut.cz
+//
+// Email: euref-ip@bkg.bund.de
+//
+// This program is free software; you can redistribute it and/or
+// modify it under the terms of the GNU General Public License
+// as published by the Free Software Foundation, version 2.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+#include "bncconst.h"
+
+const double t_CST::c       = 299792458.0;
+const double t_CST::freq1   = 1575420000.0; // GPS and Galileo E1
+const double t_CST::freq2   = 1227600000.0; // GPS only
+const double t_CST::freq5   = 1176450000.0; // GPS and Galileo E5a
+const double t_CST::lambda1 = c / freq1;
+const double t_CST::lambda2 = c / freq2;
+const double t_CST::lambda5 = c / freq5;
+const double t_CST::omega   = 7292115.1467e-11;
+const double t_CST::aell    = 6378137.000;
+const double t_CST::fInv    = 298.2572236;
Index: branches/BNC_LM/bncconst.h
===================================================================
--- branches/BNC_LM/bncconst.h	(revision 3570)
+++ branches/BNC_LM/bncconst.h	(revision 3570)
@@ -0,0 +1,45 @@
+// Part of BNC, a utility for retrieving decoding and
+// converting GNSS data streams from NTRIP broadcasters.
+//
+// Copyright (C) 2007
+// German Federal Agency for Cartography and Geodesy (BKG)
+// http://www.bkg.bund.de
+// Czech Technical University Prague, Department of Geodesy
+// http://www.fsv.cvut.cz
+//
+// Email: euref-ip@bkg.bund.de
+//
+// This program is free software; you can redistribute it and/or
+// modify it under the terms of the GNU General Public License
+// as published by the Free Software Foundation, version 2.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+#ifndef BNCCONST_H
+#define BNCCONST_H
+
+enum t_irc {failure = -1, success, fatal}; // return code
+
+class t_CST {
+  public:
+    static const double c;
+    static const double freq1; // GPS and Galileo E1 
+    static const double freq2; // GPS only           
+    static const double freq5; // GPS and Galileo E5a
+    static const double lambda1;
+    static const double lambda2;
+    static const double lambda5;
+    static const double omega;
+    static const double aell;
+    static const double fInv;
+};
+
+
+#endif
Index: branches/BNC_LM/bncephuser.cpp
===================================================================
--- branches/BNC_LM/bncephuser.cpp	(revision 3570)
+++ branches/BNC_LM/bncephuser.cpp	(revision 3570)
@@ -0,0 +1,229 @@
+// Part of BNC, a utility for retrieving decoding and
+// converting GNSS data streams from NTRIP broadcasters.
+//
+// Copyright (C) 2007
+// German Federal Agency for Cartography and Geodesy (BKG)
+// http://www.bkg.bund.de
+// Czech Technical University Prague, Department of Geodesy
+// http://www.fsv.cvut.cz
+//
+// Email: euref-ip@bkg.bund.de
+//
+// This program is free software; you can redistribute it and/or
+// modify it under the terms of the GNU General Public License
+// as published by the Free Software Foundation, version 2.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+/* -------------------------------------------------------------------------
+ * BKG NTRIP Client
+ * -------------------------------------------------------------------------
+ *
+ * Class:      bncEphUser
+ *
+ * Purpose:    Base for Classes that use Ephemerides
+ *
+ * Author:     L. Mervart
+ *
+ * Created:    27-Jan-2011
+ *
+ * Changes:    
+ *
+ * -----------------------------------------------------------------------*/
+
+#include <iostream>
+
+#include "bncephuser.h"
+#include "bncapp.h"
+
+using namespace std;
+
+// Constructor
+////////////////////////////////////////////////////////////////////////////
+bncEphUser::bncEphUser() {
+
+  connect(((bncApp*)qApp), SIGNAL(newEphGPS(gpsephemeris)),
+          this, SLOT(slotNewEphGPS(gpsephemeris)));
+
+  connect(((bncApp*)qApp), SIGNAL(newEphGlonass(glonassephemeris)),
+          this, SLOT(slotNewEphGlonass(glonassephemeris)));
+
+  connect(((bncApp*)qApp), SIGNAL(newEphGalileo(galileoephemeris)),
+          this, SLOT(slotNewEphGalileo(galileoephemeris)));
+}
+
+// Destructor
+////////////////////////////////////////////////////////////////////////////
+bncEphUser::~bncEphUser() {
+  QMapIterator<QString, t_ephPair*> it(_eph);
+  while (it.hasNext()) {
+    it.next();
+    delete it.value();
+  }
+}
+
+// 
+////////////////////////////////////////////////////////////////////////////
+void bncEphUser::slotNewEphGPS(gpsephemeris gpseph) {
+  QMutexLocker locker(&_mutex);
+
+  QString prn = QString("G%1").arg(gpseph.satellite, 2, 10, QChar('0'));
+
+  if (_eph.contains(prn)) {
+    t_ephGPS* eLast = static_cast<t_ephGPS*>(_eph.value(prn)->last);
+    if ( (eLast->GPSweek() <  gpseph.GPSweek) || 
+         (eLast->GPSweek() == gpseph.GPSweek &&  
+          eLast->TOC()     <  gpseph.TOC) ) {
+      delete static_cast<t_ephGPS*>(_eph.value(prn)->prev);
+      _eph.value(prn)->prev = _eph.value(prn)->last;
+      _eph.value(prn)->last = new t_ephGPS();
+      static_cast<t_ephGPS*>(_eph.value(prn)->last)->set(&gpseph);
+    }
+  }
+  else {
+    t_ephGPS* eLast = new t_ephGPS();
+    eLast->set(&gpseph);
+    _eph.insert(prn, new t_ephPair(eLast));
+  }
+  ephBufferChanged();
+}
+
+// 
+////////////////////////////////////////////////////////////////////////////
+void bncEphUser::slotNewEphGlonass(glonassephemeris gloeph) {
+  QMutexLocker locker(&_mutex);
+
+  QString prn = QString("R%1").arg(gloeph.almanac_number, 2, 10, QChar('0'));
+
+  if (_eph.contains(prn)) {
+    int ww  = gloeph.GPSWeek;
+    int tow = gloeph.GPSTOW; 
+    updatetime(&ww, &tow, gloeph.tb*1000, 0);  // Moscow -> GPS
+    t_ephGlo* eLast = static_cast<t_ephGlo*>(_eph.value(prn)->last);
+    if (eLast->GPSweek() < ww || 
+        (eLast->GPSweek()  == ww &&  eLast->GPSweeks() <  tow)) {  
+      delete static_cast<t_ephGlo*>(_eph.value(prn)->prev);
+      _eph.value(prn)->prev = _eph.value(prn)->last;
+      _eph.value(prn)->last = new t_ephGlo();
+      static_cast<t_ephGlo*>(_eph.value(prn)->last)->set(&gloeph);
+    }
+  }
+  else {
+    t_ephGlo* eLast = new t_ephGlo();
+    eLast->set(&gloeph);
+    _eph.insert(prn, new t_ephPair(eLast));
+  }
+  ephBufferChanged();
+}
+
+// 
+////////////////////////////////////////////////////////////////////////////
+void bncEphUser::slotNewEphGalileo(galileoephemeris galeph) {
+  QMutexLocker locker(&_mutex);
+
+  QString prn = QString("E%1").arg(galeph.satellite, 2, 10, QChar('0'));
+
+  if (_eph.contains(prn)) {
+    t_ephGal* eLast = static_cast<t_ephGal*>(_eph.value(prn)->last);
+    if ( (eLast->GPSweek() <  galeph.Week) || 
+         (eLast->GPSweek() == galeph.Week &&  
+          eLast->TOC()     <  galeph.TOC) ) {
+      delete static_cast<t_ephGal*>(_eph.value(prn)->prev);
+      _eph.value(prn)->prev = _eph.value(prn)->last;
+      _eph.value(prn)->last = new t_ephGal();
+      static_cast<t_ephGal*>(_eph.value(prn)->last)->set(&galeph);
+    }
+  }
+  else {
+    t_ephGal* eLast = new t_ephGal();
+    eLast->set(&galeph);
+    _eph.insert(prn, new t_ephPair(eLast));
+  }
+  ephBufferChanged();
+}
+
+// 
+////////////////////////////////////////////////////////////////////////////
+t_irc t_corr::readLine(const QString& line) {
+
+  if (line[0] == '!') {
+    return failure;
+  }
+
+  QTextStream in(line.toAscii());
+
+  int     messageType;
+  in >> messageType;
+
+  if (!relevantMessageType(messageType)) {
+    return failure;
+  }
+
+  if (messageType < 0) {
+    xyzCorr = true;  // correction in xyz instead of rao
+  }
+
+  int     updateInterval;
+  int     GPSweek;
+  double  GPSweeks;
+  in >> updateInterval >> GPSweek >> GPSweeks >> prn;
+
+  tt.set(GPSweek, GPSweeks);
+
+  if      ( messageType == COTYPE_GPSCOMBINED    || 
+            messageType == COTYPE_GLONASSCOMBINED ) {
+    rao.ReSize(3);       rao       = 0.0;
+    dotRao.ReSize(3);    dotRao    = 0.0;
+    dotDotRao.ReSize(3); dotDotRao = 0.0;
+    dClk       = 0.0;
+    dotDClk    = 0.0;
+    dotDotDClk = 0.0;
+    in >> iod 
+       >> dClk       >> rao[0]       >> rao[1]       >> rao[2]
+       >> dotDClk    >> dotRao[0]    >> dotRao[1]    >> dotRao[2]
+       >> dotDotDClk >> dotDotRao[0] >> dotDotRao[1] >> dotDotRao[2];
+    dClk       /= t_CST::c;
+    dotDClk    /= t_CST::c;
+    dotDotDClk /= t_CST::c;
+    raoSet  = true;
+    dClkSet = true;
+  }
+  else if ( messageType == COTYPE_GPSORBIT    || 
+            messageType == COTYPE_GLONASSORBIT ) {
+    rao.ReSize(3);       rao       = 0.0;
+    dotRao.ReSize(3);    dotRao    = 0.0;
+    dotDotRao.ReSize(3); dotDotRao = 0.0;
+    in >> iod 
+      >> rao[0]       >> rao[1]       >> rao[2]
+      >> dotRao[0]    >> dotRao[1]    >> dotRao[2]
+      >> dotDotRao[0] >> dotDotRao[1] >> dotDotRao[2];
+    raoSet  = true;
+  }
+  else if ( messageType == COTYPE_GPSCLOCK    || 
+            messageType == COTYPE_GLONASSCLOCK ) {
+    int dummyIOD;
+    dClk       = 0.0;
+    dotDClk    = 0.0;
+    dotDotDClk = 0.0;
+    in >> dummyIOD >> dClk >> dotDClk >> dotDotDClk;
+    dClk       /= t_CST::c;
+    dotDClk    /= t_CST::c;
+    dotDotDClk /= t_CST::c;
+    dClkSet = true;
+  }
+  else if ( messageType == COTYPE_GPSHR    ||
+            messageType == COTYPE_GLONASSHR ) {
+    int dummyIOD;
+    in >> dummyIOD >> hrClk;
+    hrClk /= t_CST::c; 
+  }
+
+  return success;
+}
Index: branches/BNC_LM/bncephuser.h
===================================================================
--- branches/BNC_LM/bncephuser.h	(revision 3570)
+++ branches/BNC_LM/bncephuser.h	(revision 3570)
@@ -0,0 +1,123 @@
+// Part of BNC, a utility for retrieving decoding and
+// converting GNSS data streams from NTRIP broadcasters.
+//
+// Copyright (C) 2007
+// German Federal Agency for Cartography and Geodesy (BKG)
+// http://www.bkg.bund.de
+// Czech Technical University Prague, Department of Geodesy
+// http://www.fsv.cvut.cz
+//
+// Email: euref-ip@bkg.bund.de
+//
+// This program is free software; you can redistribute it and/or
+// modify it under the terms of the GNU General Public License
+// as published by the Free Software Foundation, version 2.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+#ifndef BNCEPHUSER_H
+#define BNCEPHUSER_H
+
+#include <QtCore>
+#include <newmat.h>
+
+#include "bncconst.h"
+#include "bnctime.h"
+#include "RTCM3/ephemeris.h"
+
+extern "C" {
+#include "clock_orbit_rtcm.h"
+}
+
+class t_corr {
+ public:
+  t_corr() {
+    raoSet  = false;
+    dClkSet = false;
+    eph     = 0;
+    hrClk   = 0.0;
+    xyzCorr = false;
+  }
+  bool ready() {return raoSet && dClkSet;}
+
+  static bool relevantMessageType(int msgType) {
+    if (msgType < 0) {
+      msgType = -msgType;
+    }
+    return ( msgType == COTYPE_GPSCOMBINED     || 
+             msgType == COTYPE_GLONASSCOMBINED ||
+             msgType == COTYPE_GPSORBIT        ||
+             msgType == COTYPE_GPSCLOCK        ||
+             msgType == COTYPE_GLONASSORBIT    ||
+             msgType == COTYPE_GLONASSCLOCK    ||
+             msgType == COTYPE_GPSHR           ||
+             msgType == COTYPE_GLONASSHR );
+  }
+
+  t_irc readLine(const QString& line);
+
+  QString      prn;
+  bncTime      tt;
+  int          iod;
+  double       dClk;
+  double       dotDClk;
+  double       dotDotDClk;
+  double       hrClk;
+  ColumnVector rao;
+  ColumnVector dotRao;
+  ColumnVector dotDotRao;
+  bool         raoSet;
+  bool         dClkSet;
+  bool         xyzCorr;
+  const t_eph* eph;
+};
+
+class bncEphUser : public QObject {
+ Q_OBJECT
+
+ public:
+  bncEphUser();
+  virtual ~bncEphUser();
+
+  class t_ephPair {
+   public:
+    t_ephPair(t_eph* lastEph) {
+      last = lastEph;
+      prev = 0;
+    }
+    ~t_ephPair() {
+      delete last;
+      delete prev;
+    }
+    t_eph* last;
+    t_eph* prev;
+  };
+
+  const t_ephPair* ephPair(const QString& prn) {
+    if (_eph.contains(prn)) {
+      return _eph[prn];
+    }
+    else {
+      return 0;
+    }
+  }
+
+ public slots:
+  void slotNewEphGPS(gpsephemeris gpseph);
+  void slotNewEphGlonass(glonassephemeris gloeph);
+  void slotNewEphGalileo(galileoephemeris galeph);
+
+ protected:
+  virtual void ephBufferChanged() {}
+  QMutex                    _mutex;
+  QMap<QString, t_ephPair*> _eph;
+};
+
+#endif
Index: branches/BNC_LM/bncfigure.cpp
===================================================================
--- branches/BNC_LM/bncfigure.cpp	(revision 3570)
+++ branches/BNC_LM/bncfigure.cpp	(revision 3570)
@@ -0,0 +1,205 @@
+// Part of BNC, a utility for retrieving decoding and
+// converting GNSS data streams from NTRIP broadcasters.
+//
+// Copyright (C) 2007
+// German Federal Agency for Cartography and Geodesy (BKG)
+// http://www.bkg.bund.de
+// Czech Technical University Prague, Department of Geodesy
+// http://www.fsv.cvut.cz
+//
+// Email: euref-ip@bkg.bund.de
+//
+// This program is free software; you can redistribute it and/or
+// modify it under the terms of the GNU General Public License
+// as published by the Free Software Foundation, version 2.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+/* -------------------------------------------------------------------------
+ * BKG NTRIP Client
+ * -------------------------------------------------------------------------
+ *
+ * Class:      bncFigure
+ *
+ * Purpose:    
+ *
+ * Author:     Perlt, Mervart
+ *
+ * Created:    11-Nov-2009
+ *
+ * Changes:    
+ *
+ * -----------------------------------------------------------------------*/
+
+#include <iostream>
+
+#include "bncfigure.h" 
+#include "bncsettings.h"
+
+using namespace std;
+
+// Constructor
+////////////////////////////////////////////////////////////////////////////
+bncFigure::bncFigure(QWidget *parent) : QWidget(parent) {
+  updateMountPoints();
+  slotNextAnimationFrame();
+  for (int ii = 0; ii <= 1000; ii++) {
+    _ran[0][ii] = qrand() % 255;
+    _ran[1][ii] = qrand() % 255;
+    _ran[2][ii] = qrand() % 255;
+  }
+}
+
+// Destructor
+////////////////////////////////////////////////////////////////////////////
+bncFigure::~bncFigure() { 
+}
+
+// 
+////////////////////////////////////////////////////////////////////////////
+void bncFigure::updateMountPoints() {
+  QMutexLocker locker(&_mutex);
+
+  _counter = 0;
+  _maxRate = 0;
+
+  QMapIterator<QByteArray, sumAndMean*> it1(_bytes);
+  while (it1.hasNext()) {
+    it1.next();
+    delete it1.value();
+  }
+  _bytes.clear();
+
+  bncSettings settings;
+  QListIterator<QString> it(settings.value("mountPoints").toStringList());
+  while (it.hasNext()) {
+    QStringList hlp   = it.next().split(" ");
+    QUrl        url(hlp[0]);
+    QByteArray  staID = url.path().mid(1).toAscii();
+    _bytes[staID] = new sumAndMean();
+  }
+}
+
+// 
+////////////////////////////////////////////////////////////////////////////
+void bncFigure::slotNewData(const QByteArray staID, double nbyte) {
+  QMutexLocker locker(&_mutex);
+  QMap<QByteArray, sumAndMean*>::const_iterator it = _bytes.find(staID);
+  if (it != _bytes.end()) {
+    it.value()->_sum += nbyte*8.;
+  }
+}
+
+// 
+////////////////////////////////////////////////////////////////////////////
+void bncFigure::slotNextAnimationFrame() {
+  QMutexLocker locker(&_mutex);
+
+  const static int MAXCOUNTER = 10;
+
+  ++_counter;
+
+  // If counter reaches its maximal value, compute the mean rate
+  // -----------------------------------------------------------
+  if (_counter == MAXCOUNTER) {
+    _maxRate = 0.0;
+    QMapIterator<QByteArray, sumAndMean*> it(_bytes);
+    while (it.hasNext()) {
+      it.next();
+      it.value()->_mean = it.value()->_sum / _counter;
+      it.value()->_sum  = 0.0;
+      if (it.value()->_mean > _maxRate) {
+        _maxRate = it.value()->_mean;
+      }
+    }
+    _counter = 0;
+  }
+
+  update();
+
+  QTimer::singleShot(1000, this, SLOT(slotNextAnimationFrame()));
+}
+
+// 
+////////////////////////////////////////////////////////////////////////////
+void bncFigure::paintEvent(QPaintEvent *) {
+
+  int xMin =   0;
+  int xMax = 640;
+  int yMin =   0;
+  int yMax = 140;
+  float xLine = .60;
+
+  QPainter painter(this);
+
+  QFont font;
+  font.setPointSize(int(font.QFont::pointSize()*0.8));
+  painter.setFont(font);
+
+  // y-axis
+  // ------
+  int yLength = int((yMax-yMin)*xLine) - (yMin+10);
+  painter.drawLine(xMin+60, int((yMax-yMin)*xLine), xMin+60, yMin+10);
+
+  double maxRateRounded;
+  QString maxRateStr;
+  if (_maxRate < 1e3) {
+    maxRateRounded = int(_maxRate/200)*200 + 300;
+    maxRateStr = QString("%1 bps  ").arg(int(maxRateRounded/200)*200);
+    painter.drawText(0, int((yMax-yMin)*xLine)-5, xMin+60,15,Qt::AlignRight,tr("0 bps  "));
+  }
+  else if (_maxRate < 1e6) {
+    maxRateRounded = int(_maxRate/1.e3)*1.e3 + 1500;
+    maxRateStr = QString("%1 kbps  ").arg(int(maxRateRounded/1.e3));
+    painter.drawText(0, int((yMax-yMin)*xLine)-5, xMin+60,15,Qt::AlignRight,tr("0 kbps  "));
+  }
+  else {
+    maxRateRounded = int(_maxRate/1.e6)*1.e6 + 1500000;
+    maxRateStr = QString("%1 Mbps  ").arg(int(maxRateRounded/1.e6));
+    painter.drawText(0, int((yMax-yMin)*xLine)-5, xMin+60,15,Qt::AlignRight,tr("0 Mbps  "));
+  }
+
+  if(_maxRate > 0.0) {
+    painter.drawText(0, yMin+20-5, xMin+60,15,Qt::AlignRight,maxRateStr);
+  }
+
+  // x-axis
+  // ------
+  painter.drawLine(xMin+60, int((yMax-yMin)*xLine), xMax*3, int((yMax-yMin)*xLine));
+
+  int anchor = 0;
+  QMapIterator<QByteArray, sumAndMean*> it(_bytes);
+  while (it.hasNext()) {
+    it.next();
+    QByteArray staID = it.key();
+
+    int xx = xMin+80+anchor*12;
+
+    if(_maxRate > 0.0) {
+      int yy = int(yLength * (it.value()->_mean / maxRateRounded));
+      QColor color = QColor::fromRgb(_ran[0][anchor],_ran[1][anchor],_ran[2][anchor],150);
+      painter.fillRect(xx-13, int((yMax-yMin)*xLine)-yy, 9, yy, 
+                       QBrush(color,Qt::SolidPattern));
+      painter.setPen(Qt::black);
+      if(it.value()->_mean<=0) {
+        painter.setPen(Qt::red);
+      }
+    }
+
+    painter.save();
+    painter.translate(xx-13, int(yMax-yMin)*xLine+65);
+    painter.rotate(-90);
+    painter.drawText(0,0,65,50,Qt::AlignRight,staID.left(5) + "   ");
+    painter.restore();
+
+    anchor++;
+  }
+}
+
Index: branches/BNC_LM/bncfigure.h
===================================================================
--- branches/BNC_LM/bncfigure.h	(revision 3570)
+++ branches/BNC_LM/bncfigure.h	(revision 3570)
@@ -0,0 +1,57 @@
+// Part of BNC, a utility for retrieving decoding and
+// converting GNSS data streams from NTRIP broadcasters.
+//
+// Copyright (C) 2007
+// German Federal Agency for Cartography and Geodesy (BKG)
+// http://www.bkg.bund.de
+// Czech Technical University Prague, Department of Geodesy
+// http://www.fsv.cvut.cz
+//
+// Email: euref-ip@bkg.bund.de
+//
+// This program is free software; you can redistribute it and/or
+// modify it under the terms of the GNU General Public License
+// as published by the Free Software Foundation, version 2.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+#ifndef BNCFIGURE_H
+#define BNCFIGURE_H
+
+#include <QtGui>
+
+class bncFigure : public QWidget {
+  Q_OBJECT
+ public:
+  bncFigure(QWidget *parent);
+  ~bncFigure();
+  void updateMountPoints();
+ public slots:
+  void slotNewData(const QByteArray staID, double nbyte);
+ protected:
+  void paintEvent(QPaintEvent *event);
+ private slots:
+  void slotNextAnimationFrame();
+ private:
+  class sumAndMean {
+   public:
+    sumAndMean() {_mean = 0.0; _sum = 0.0;}
+    ~sumAndMean() {}
+    double _mean;
+    double _sum;
+  };
+  QMap<QByteArray, sumAndMean*> _bytes;
+  QMutex                        _mutex;
+  int                           _counter;
+  double                        _maxRate;
+  int                           _ran[3][1001];
+};
+
+#endif
Index: branches/BNC_LM/bncfigurelate.cpp
===================================================================
--- branches/BNC_LM/bncfigurelate.cpp	(revision 3570)
+++ branches/BNC_LM/bncfigurelate.cpp	(revision 3570)
@@ -0,0 +1,183 @@
+// Part of BNC, a utility for retrieving decoding and
+// converting GNSS data streams from NTRIP broadcasters.
+//
+// Copyright (C) 2007
+// German Federal Agency for Cartography and Geodesy (BKG)
+// http://www.bkg.bund.de
+// Czech Technical University Prague, Department of Geodesy
+// http://www.fsv.cvut.cz
+//
+// Email: euref-ip@bkg.bund.de
+//
+// This program is free software; you can redistribute it and/or
+// modify it under the terms of the GNU General Public License
+// as published by the Free Software Foundation, version 2.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+/* -------------------------------------------------------------------------
+ * BKG NTRIP Client
+ * -------------------------------------------------------------------------
+ *
+ * Class:      bncFigureLate
+ *
+ * Purpose:    
+ *
+ * Author:     Perlt, Mervart
+ *
+ * Created:    11-Nov-2009
+ *
+ * Changes:    
+ *
+ * -----------------------------------------------------------------------*/
+
+#include <iostream>
+
+#include "bncfigurelate.h" 
+#include "bncsettings.h"
+
+using namespace std;
+
+// Constructor
+////////////////////////////////////////////////////////////////////////////
+bncFigureLate::bncFigureLate(QWidget *parent) : QWidget(parent) {
+  updateMountPoints();
+  slotNextAnimationFrame();
+  for (int ii = 0; ii <= 1000; ii++) {
+    _ran[0][ii] = qrand() % 255;
+    _ran[1][ii] = qrand() % 255;
+    _ran[2][ii] = qrand() % 100;
+  }
+}
+
+// Destructor
+////////////////////////////////////////////////////////////////////////////
+bncFigureLate::~bncFigureLate() { 
+}
+
+// 
+////////////////////////////////////////////////////////////////////////////
+void bncFigureLate::updateMountPoints() {
+  QMutexLocker locker(&_mutex);
+
+  _latency.clear();
+
+  bncSettings settings;
+  QListIterator<QString> it(settings.value("mountPoints").toStringList());
+  while (it.hasNext()) {
+    QStringList hlp   = it.next().split(" ");
+    QUrl        url(hlp[0]);
+    QByteArray  staID = url.path().mid(1).toAscii();
+    _latency[staID] = 0.0;
+  }
+}
+
+// 
+////////////////////////////////////////////////////////////////////////////
+void bncFigureLate::slotNewLatency(const QByteArray staID, double clate) {
+  QMutexLocker locker(&_mutex);
+  if (_latency.find(staID) != _latency.end()) {
+    _latency[staID] = fabs(clate)*1000.0;
+  }
+}
+
+// 
+////////////////////////////////////////////////////////////////////////////
+void bncFigureLate::slotNextAnimationFrame() {
+  QMutexLocker locker(&_mutex);
+  update();
+  QTimer::singleShot(1000, this, SLOT(slotNextAnimationFrame()));
+}
+
+// 
+////////////////////////////////////////////////////////////////////////////
+void bncFigureLate::paintEvent(QPaintEvent *) {
+
+  int xMin =   0;
+  int xMax = 640;
+  int yMin =   0;
+  int yMax = 140;
+  float xLine = .60;
+
+  QPainter painter(this);
+
+  QFont font;
+  font.setPointSize(int(font.QFont::pointSize()*0.8));
+  painter.setFont(font);
+
+  // y-axis
+  // ------
+  int yLength = int((yMax-yMin)*xLine) - (yMin+10);
+  painter.drawLine(xMin+60, int((yMax-yMin)*xLine), xMin+60, yMin+10);
+
+  double maxLate = 0.0;
+  QMapIterator<QByteArray, double> it1(_latency);
+  while (it1.hasNext()) {
+    it1.next();
+    if (it1.value() > maxLate) {
+      maxLate = it1.value();
+    }
+  }
+
+  double maxLateRounded;
+  QString maxLateStr;
+  if(maxLate < 1e3) {
+    maxLateRounded = int(maxLate/200)*200 + 300;
+    maxLateStr = QString("%1 ms  ").arg(int(maxLateRounded/200)*200);
+    painter.drawText(0, int((yMax-yMin)*xLine)-5, xMin+60,15,Qt::AlignRight,tr("0 ms  "));
+  }
+  else if (maxLate < 6e4) {
+    maxLateRounded = int(maxLate/1.e3)*1.e3 + 1500;
+    maxLateStr = QString("%1 sec  ").arg(int(maxLateRounded/1.e3));
+    painter.drawText(0, int((yMax-yMin)*xLine)-5, xMin+60,15,Qt::AlignRight,tr("0 sec  "));
+  }
+  else {
+    maxLateRounded = int(maxLate / 6.e4)*6.e4 + 90000;
+    maxLateStr = QString("%1 min  ").arg(int(maxLateRounded/6.e4));
+    painter.drawText(0, int((yMax-yMin)*xLine)-5, xMin+60,15,Qt::AlignRight,tr("0 min  "));
+  }
+
+  if(maxLate > 0.0) {
+    painter.drawText(0, yMin+20-5, xMin+60,15,Qt::AlignRight,maxLateStr);
+  }
+
+  // x-axis
+  // ------
+  painter.drawLine(xMin+60, int((yMax-yMin)*xLine), xMax*3, int((yMax-yMin)*xLine));
+
+  int anchor = 0;
+  QMapIterator<QByteArray, double> it(_latency);
+  while (it.hasNext()) {
+    it.next();
+    QByteArray staID = it.key();
+
+    int xx = xMin+80+anchor*12;
+
+    if(maxLate > 0.0) {
+      int yy = int(yLength * (it.value() / maxLateRounded));
+      QColor color = QColor::fromHsv(180,200,120+_ran[2][anchor]);
+      painter.fillRect(xx-13, int((yMax-yMin)*xLine)-yy, 9, yy, 
+                       QBrush(color,Qt::SolidPattern));
+      painter.setPen(Qt::black);
+      if(it.value()<=0) {
+        painter.setPen(Qt::red);
+      }
+    }
+
+    painter.save();
+    painter.translate(xx-13, int(yMax-yMin)*xLine+65);
+    painter.rotate(-90);
+    painter.drawText(0,0,65,50,Qt::AlignRight,staID.left(5) + "   ");
+    painter.restore();
+
+    anchor++;
+  }
+}
+
Index: branches/BNC_LM/bncfigurelate.h
===================================================================
--- branches/BNC_LM/bncfigurelate.h	(revision 3570)
+++ branches/BNC_LM/bncfigurelate.h	(revision 3570)
@@ -0,0 +1,48 @@
+// Part of BNC, a utility for retrieving decoding and
+// converting GNSS data streams from NTRIP broadcasters.
+//
+// Copyright (C) 2007
+// German Federal Agency for Cartography and Geodesy (BKG)
+// http://www.bkg.bund.de
+// Czech Technical University Prague, Department of Geodesy
+// http://www.fsv.cvut.cz
+//
+// Email: euref-ip@bkg.bund.de
+//
+// This program is free software; you can redistribute it and/or
+// modify it under the terms of the GNU General Public License
+// as published by the Free Software Foundation, version 2.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+#ifndef BNCFIGURELATE_H
+#define BNCFIGURELATE_H
+
+#include <QtGui>
+
+class bncFigureLate : public QWidget {
+  Q_OBJECT
+ public:
+  bncFigureLate(QWidget *parent);
+  ~bncFigureLate();
+  void updateMountPoints();
+ public slots:
+  void slotNewLatency(const QByteArray staID, double clate);
+ protected:
+  void paintEvent(QPaintEvent *event);
+ private slots:
+  void slotNextAnimationFrame();
+ private:
+  QMap<QByteArray, double> _latency;
+  QMutex                   _mutex;
+  int                      _ran[3][1001];
+};
+
+#endif
Index: branches/BNC_LM/bncfigureppp.cpp
===================================================================
--- branches/BNC_LM/bncfigureppp.cpp	(revision 3570)
+++ branches/BNC_LM/bncfigureppp.cpp	(revision 3570)
@@ -0,0 +1,289 @@
+// Part of BNC, a utility for retrieving decoding and
+// converting GNSS data streams from NTRIP broadcasters.
+//
+// Copyright (C) 2007
+// German Federal Agency for Cartography and Geodesy (BKG)
+// http://www.bkg.bund.de
+// Czech Technical University Prague, Department of Geodesy
+// http://www.fsv.cvut.cz
+//
+// Email: euref-ip@bkg.bund.de
+//
+// This program is free software; you can redistribute it and/or
+// modify it under the terms of the GNU General Public License
+// as published by the Free Software Foundation, version 2.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+/* -------------------------------------------------------------------------
+ * BKG NTRIP Client
+ * -------------------------------------------------------------------------
+ *
+ * Class:      bncFigurePPP
+ *
+ * Purpose:    
+ *
+ * Author:     Mervart
+ *
+ * Created:    11-Nov-2009
+ *
+ * Changes:    
+ *
+ * -----------------------------------------------------------------------*/
+
+#include <iostream>
+
+#include "bncfigureppp.h" 
+#include "bncsettings.h"
+#include "bncutils.h"
+
+using namespace std;
+
+// Constructor
+////////////////////////////////////////////////////////////////////////////
+bncFigurePPP::bncFigurePPP(QWidget *parent) : QWidget(parent) {
+  reset();
+}
+
+
+// Destructor
+////////////////////////////////////////////////////////////////////////////
+bncFigurePPP::~bncFigurePPP() { 
+  for (int ii = 0; ii < _pos.size(); ++ii) {
+    delete _pos[ii];
+  }
+}
+
+// 
+////////////////////////////////////////////////////////////////////////////
+void bncFigurePPP::reset() {
+  QMutexLocker locker(&_mutex);
+
+  bncSettings settings;
+
+  if (settings.value("pppRefCrdX").toString() != "" &&
+      settings.value("pppRefCrdY").toString() != "" &&
+      settings.value("pppRefCrdZ").toString() != "") {
+    _xyzRef[0] = settings.value("pppRefCrdX").toDouble();
+    _xyzRef[1] = settings.value("pppRefCrdY").toDouble();
+    _xyzRef[2] = settings.value("pppRefCrdZ").toDouble();
+  }
+  else {
+    _xyzRef[0] = 0.0;
+    _xyzRef[1] = 0.0;
+    _xyzRef[2] = 0.0;
+  }
+
+  for (int ii = 0; ii < _pos.size(); ++ii) {
+    delete _pos[ii];
+  }
+  _pos.clear();
+
+  update();
+}
+
+// 
+////////////////////////////////////////////////////////////////////////////
+void bncFigurePPP::slotNewPosition(bncTime time, double x, double y, double z){
+
+  QMutexLocker locker(&_mutex);
+
+  pppPos* newPos = new pppPos;
+
+  newPos->time   = time;
+  newPos->xyz[0] = x;
+  newPos->xyz[1] = y;
+  newPos->xyz[2] = z;
+
+  _pos.push_back(newPos);
+
+  if (_pos.size() == 1) {
+    _startTime = time;
+  }
+
+  QMutableVectorIterator<pppPos*> it(_pos);
+  while (it.hasNext()) {
+    pppPos* pp = it.next();
+    if ( (time - pp->time) > _tRange ) {
+      delete pp;
+      it.remove();
+    }
+  }
+
+  update();
+}
+
+// Coordinate Transformation
+////////////////////////////////////////////////////////////////////////////
+QPoint bncFigurePPP::pltPoint(double tt, double yy) {
+
+  double tScale  = 0.90 * _width  / _tRange;
+  double yScale  = 0.90 * _height / (2.0 * _neuMax);
+  double tOffset = _tRange / 13.0;
+  double yOffset = _neuMax / 10.0;
+
+  int tNew = int( ( tt - _tMin   + tOffset) * tScale );
+  int yNew = int( (-yy + _neuMax + yOffset) * yScale );
+
+  return QPoint(tNew, yNew);
+}
+
+// 
+////////////////////////////////////////////////////////////////////////////
+void bncFigurePPP::paintEvent(QPaintEvent *) {
+
+  QPainter painter(this);
+
+  _width  = painter.viewport().width();
+  _height = painter.viewport().height();
+
+  QFont font = this->font();
+  font.setPointSize(int(this->font().pointSize()*0.9));
+  painter.setFont(font);
+
+  // Plot X-coordinates as a function of time (in seconds)
+  // -----------------------------------------------------
+  if (_pos.size() > 1) {
+    _tMin   = _pos[0]->time.gpssec();
+
+    // Reference Coordinates
+    // ---------------------
+    if (_xyzRef[0] == 0.0 && _xyzRef[1] == 0.0  && _xyzRef[2] == 0.0) {
+      _xyzRef[0] = _pos[0]->xyz[0];
+      _xyzRef[1] = _pos[0]->xyz[1];
+      _xyzRef[2] = _pos[0]->xyz[2];
+    }
+    double ellRef[3];
+    xyz2ell(_xyzRef, ellRef);
+
+    // North, East and Up differences wrt Reference Coordinates
+    // --------------------------------------------------------
+    _neuMax = 0.0;
+    double neu[_pos.size()][3];
+    for (int ii = 0; ii < _pos.size(); ++ii) {
+      double dXYZ[3];
+      for (int ic = 0; ic < 3; ++ic) {
+        dXYZ[ic] = _pos[ii]->xyz[ic] - _xyzRef[ic];
+      }
+      xyz2neu(ellRef, dXYZ, neu[ii]);
+      for (int ic = 0; ic < 3; ++ic) {
+        if (fabs(neu[ii][ic]) > _neuMax) {
+          _neuMax = fabs(neu[ii][ic]);
+        }
+      }
+    }
+
+    if (_neuMax > 0.0) {
+
+      if (_neuMax < 0.151) {
+        _neuMax = 0.151;
+      }
+      
+      unsigned hour, minute;
+      double   second;
+      int      ww = QFontMetrics(this->font()).width('w');
+
+      // neu components
+      // --------------
+      for (int ii = 1; ii < _pos.size(); ++ii) {
+        double t1 = _tMin + (_pos[ii-1]->time - _pos[0]->time);
+        double t2 = _tMin + (_pos[ii]->time   - _pos[0]->time);
+
+
+        // dots
+        // ----
+        painter.setPen(QColor(Qt::gray));
+        painter.drawLine(pltPoint(t1, neu[ii-1][0]), pltPoint(t2, neu[ii][0]));
+        painter.setPen(QColor(Qt::red));
+        painter.setBrush(QColor(Qt::red));
+        painter.drawEllipse(pltPoint(t1,neu[ii-1][0]), ww/6, ww/6);
+
+        painter.setPen(QColor(Qt::gray));
+        painter.drawLine(pltPoint(t1, neu[ii-1][1]), pltPoint(t2, neu[ii][1]));
+        painter.setPen(QColor(Qt::green));
+        painter.setBrush(QColor(Qt::green));
+        painter.drawEllipse(pltPoint(t1,neu[ii-1][1]), ww/6, ww/6);
+
+        painter.setPen(QColor(Qt::gray));
+        painter.drawLine(pltPoint(t1, neu[ii-1][2]), pltPoint(t2, neu[ii][2]));
+        painter.setPen(QColor(Qt::blue));
+        painter.setBrush(QColor(Qt::blue));
+        painter.drawEllipse(pltPoint(t1,neu[ii-1][2]), ww/6, ww/6);
+
+        // time-tics
+        // ---------
+        if ( fmod(_pos[ii-1]->time.daysec(), 60.0) == 0 ) {
+          _pos[ii-1]->time.civil_time(hour, minute, second);
+          QPoint pntTic = pltPoint(t1, 0.0);
+          QString strTic = QString("%1:%2").arg(hour,   2, 10, QChar('0'))
+                                           .arg(minute, 2, 10, QChar('0'));
+          double xFirstCharTic = pntTic.x() - ww * 1.2;
+          if ( xFirstCharTic > pltPoint(_tMin, 0.0).x()) {
+            painter.setPen(QColor(Qt::black));
+            painter.drawText(int(xFirstCharTic), int(pntTic.y() + ww * 1.7), 
+                             strTic);
+            painter.drawLine(pntTic.x(), pntTic.y(), 
+                             pntTic.x(), pntTic.y()+ww/2);
+          }
+        }
+      }
+
+      // time-axis
+      // ---------
+      painter.setPen(QColor(Qt::black));
+      painter.drawLine(pltPoint(_tMin, 0.0), pltPoint(_tMin+_tRange, 0.0));
+
+      // neu-axis
+      // --------
+      painter.drawLine(pltPoint(_tMin, -_neuMax), pltPoint(_tMin, _neuMax));
+
+      // neu-tics
+      // --------
+      double  tic  = floor(20.0 * (_neuMax - 0.05)) / 20.0;
+      QString strP = QString("%1 m").arg( tic,0,'f',2);
+      QString strM = QString("%1 m").arg(-tic,0,'f',2);
+      QString strZ = QString("%1 m").arg(0.0,0,'f',2);
+
+      QPoint pntP = pltPoint(_tMin, tic);
+      QPoint pntM = pltPoint(_tMin,-tic);
+      QPoint pntZ = pltPoint(_tMin, 0.0);
+
+      painter.setPen(QColor(Qt::red));
+      painter.drawText(0, ww, pntP.x() + 3*ww, pntP.x(), Qt::AlignRight, "N");
+      painter.setPen(QColor(Qt::green));
+      painter.drawText(0, ww, pntP.x() + 4*ww, pntP.x(), Qt::AlignRight, "E");
+      painter.setPen(QColor(Qt::blue));
+      painter.drawText(0, ww, pntP.x() + 5*ww, pntP.x(), Qt::AlignRight, "U");
+
+      painter.setPen(QColor(Qt::black));
+      painter.drawText(0, pntP.y()-ww/2, pntP.x()- ww/4, pntP.x(),
+                       Qt::AlignRight, strP);
+      painter.drawText(0, pntM.y()-ww/2, pntM.x()- ww/4, pntM.x(),
+                       Qt::AlignRight, strM);
+      painter.drawText(0, pntZ.y()-ww/2, pntZ.x()- ww/4, pntZ.x(),
+                       Qt::AlignRight, strZ);
+
+      painter.drawLine(pntP.x(), pntP.y(), pntP.x()+ww, pntP.y());
+      painter.drawLine(pntM.x(), pntM.y(), pntM.x()+ww, pntM.y());
+
+      // Start Time
+      // ----------
+      _startTime.civil_time(hour, minute, second);
+      QString startStr = QString("Start %1:%2:%3")
+                              .arg(hour,   2, 10, QChar('0'))
+                              .arg(minute, 2, 10, QChar('0'))
+                              .arg(int(second), 2, 10, QChar('0'));
+      painter.setPen(QColor(Qt::black));
+      painter.drawText(0, ww, pntP.x() + 16*ww, pntP.x(),
+                       Qt::AlignRight, startStr);
+    }
+  }
+}
+
Index: branches/BNC_LM/bncfigureppp.h
===================================================================
--- branches/BNC_LM/bncfigureppp.h	(revision 3570)
+++ branches/BNC_LM/bncfigureppp.h	(revision 3570)
@@ -0,0 +1,65 @@
+// Part of BNC, a utility for retrieving decoding and
+// converting GNSS data streams from NTRIP broadcasters.
+//
+// Copyright (C) 2007
+// German Federal Agency for Cartography and Geodesy (BKG)
+// http://www.bkg.bund.de
+// Czech Technical University Prague, Department of Geodesy
+// http://www.fsv.cvut.cz
+//
+// Email: euref-ip@bkg.bund.de
+//
+// This program is free software; you can redistribute it and/or
+// modify it under the terms of the GNU General Public License
+// as published by the Free Software Foundation, version 2.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+#ifndef BNCFIGUREPPP_H
+#define BNCFIGUREPPP_H
+
+#include <QtGui>
+#include "bnctime.h"
+
+class bncFigurePPP : public QWidget {
+  Q_OBJECT
+ public:
+  bncFigurePPP(QWidget *parent);
+  ~bncFigurePPP();
+  void reset();
+
+ public slots:
+  void slotNewPosition(bncTime time, double x, double y, double z);
+
+ protected:
+  void paintEvent(QPaintEvent *event);
+
+ private:
+  const static double _tRange = 300;
+
+  class pppPos {
+   public:
+    bncTime time;
+    double  xyz[3];
+  };
+
+  QPoint pltPoint(double tt, double yy);
+
+  QMutex           _mutex;
+  QVector<pppPos*> _pos;
+  bncTime          _startTime;
+  double           _neuMax;
+  double           _tMin;
+  int              _width;
+  int              _height;
+  double           _xyzRef[3];
+};
+
+#endif
Index: branches/BNC_LM/bncgetthread.cpp
===================================================================
--- branches/BNC_LM/bncgetthread.cpp	(revision 3570)
+++ branches/BNC_LM/bncgetthread.cpp	(revision 3570)
@@ -0,0 +1,743 @@
+// Part of BNC, a utility for retrieving decoding and
+// converting GNSS data streams from NTRIP broadcasters.
+//
+// Copyright (C) 2007
+// German Federal Agency for Cartography and Geodesy (BKG)
+// http://www.bkg.bund.de
+// Czech Technical University Prague, Department of Geodesy
+// http://www.fsv.cvut.cz
+//
+// Email: euref-ip@bkg.bund.de
+//
+// This program is free software; you can redistribute it and/or
+// modify it under the terms of the GNU General Public License
+// as published by the Free Software Foundation, version 2.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+/* -------------------------------------------------------------------------
+ * BKG NTRIP Client
+ * -------------------------------------------------------------------------
+ *
+ * Class:      bncGetThread
+ *
+ * Purpose:    Thread that retrieves data from NTRIP caster
+ *
+ * Author:     L. Mervart
+ *
+ * Created:    24-Dec-2005
+ *
+ * Changes:    
+ *
+ * -----------------------------------------------------------------------*/
+
+#include <stdlib.h>
+#include <iomanip>
+#include <sstream>
+
+#include <QFile>
+#include <QTextStream>
+#include <QtNetwork>
+#include <QTime>
+
+#include "bncgetthread.h"
+#include "bnctabledlg.h"
+#include "bncapp.h"
+#include "bncutils.h"
+#include "bncrinex.h"
+#include "bnczerodecoder.h"
+#include "bncnetqueryv0.h"
+#include "bncnetqueryv1.h"
+#include "bncnetqueryv2.h"
+#include "bncnetqueryrtp.h"
+#include "bncnetqueryudp.h"
+#include "bncnetqueryudp0.h"
+#include "bncnetquerys.h"
+#include "bncsettings.h"
+#include "latencychecker.h"
+#include "bncpppclient.h"
+#include "upload/bncrtnetdecoder.h"
+#include "RTCM/RTCM2Decoder.h"
+#include "RTCM3/RTCM3Decoder.h"
+#include "GPSS/gpssDecoder.h"
+#include "GPSS/hassDecoder.h"
+#include "serial/qextserialport.h"
+
+using namespace std;
+
+// Constructor 1
+////////////////////////////////////////////////////////////////////////////
+bncGetThread::bncGetThread(bncRawFile* rawFile) {
+
+  _rawFile      = rawFile;
+  _format       = rawFile->format();
+  _staID        = rawFile->staID();
+  _rawOutput    = false;
+  _ntripVersion = "N";
+
+  initialize();
+}
+
+// Constructor 2
+////////////////////////////////////////////////////////////////////////////
+bncGetThread::bncGetThread(const QUrl& mountPoint, 
+                           const QByteArray& format,
+                           const QByteArray& latitude,
+                           const QByteArray& longitude,
+                           const QByteArray& nmea, 
+                           const QByteArray& ntripVersion,
+                           const QByteArray& staIDextra) {
+  _rawFile      = 0;
+  _mountPoint   = mountPoint;
+  _staID        = mountPoint.path().mid(1).toAscii();
+  _staID_extra  = staIDextra;
+  _format       = format;
+  _latitude     = latitude;
+  _longitude    = longitude;
+  _nmea         = nmea;
+  _ntripVersion = ntripVersion;
+
+  bncSettings settings;
+  if (!settings.value("rawOutFile").toString().isEmpty()) {
+    _rawOutput = true;
+  }
+
+  initialize();
+}
+
+// Initialization (common part of the constructor)
+////////////////////////////////////////////////////////////////////////////
+void bncGetThread::initialize() {
+
+  setTerminationEnabled(true);
+
+  bncApp* app = (bncApp*) qApp;
+
+  connect(this, SIGNAL(newMessage(QByteArray,bool)), 
+          app, SLOT(slotMessage(const QByteArray,bool)));
+
+  _isToBeDeleted = false;
+  _decoder       = 0;
+  _query         = 0;
+  _nextSleep     = 0;
+  _PPPclient     = 0;
+
+  bncSettings settings;
+
+  _miscMount = settings.value("miscMount").toString();
+
+  // RINEX writer
+  // ------------
+  _samplingRate = settings.value("rnxSampl").toInt();
+  if ( settings.value("rnxPath").toString().isEmpty() ) { 
+    _rnx = 0;
+  }
+  else {
+    _rnx = new bncRinex(_staID, _mountPoint, _format, _latitude, 
+                        _longitude, _nmea, _ntripVersion);
+  }
+
+  // Serial Port
+  // -----------
+  _serialNMEA    = NO_NMEA;
+  _serialOutFile = 0;
+  _serialPort    = 0;
+
+  if (settings.value("serialMountPoint").toString() == _staID) {
+    _serialPort = new QextSerialPort(settings.value("serialPortName").toString() );
+    _serialPort->setTimeout(0,100);
+
+    // Baud Rate
+    // ---------
+    QString hlp = settings.value("serialBaudRate").toString();
+    if      (hlp == "110") {
+      _serialPort->setBaudRate(BAUD110);   
+    }
+    else if (hlp == "300") {
+      _serialPort->setBaudRate(BAUD300);   
+    }
+    else if (hlp == "600") {
+      _serialPort->setBaudRate(BAUD600);   
+    }
+    else if (hlp == "1200") {
+      _serialPort->setBaudRate(BAUD1200);   
+    }
+    else if (hlp == "2400") {
+      _serialPort->setBaudRate(BAUD2400);   
+    }
+    else if (hlp == "4800") {
+      _serialPort->setBaudRate(BAUD4800);   
+    }
+    else if (hlp == "9600") {
+      _serialPort->setBaudRate(BAUD9600);   
+    }
+    else if (hlp == "19200") {
+      _serialPort->setBaudRate(BAUD19200);   
+    }
+    else if (hlp == "38400") {
+      _serialPort->setBaudRate(BAUD38400);   
+    }
+    else if (hlp == "57600") {
+      _serialPort->setBaudRate(BAUD57600);   
+    }
+    else if (hlp == "115200") {
+      _serialPort->setBaudRate(BAUD115200);   
+    }
+
+    // Parity
+    // ------
+    hlp = settings.value("serialParity").toString();
+    if      (hlp == "NONE") {
+      _serialPort->setParity(PAR_NONE);    
+    }
+    else if (hlp == "ODD") {
+      _serialPort->setParity(PAR_ODD);    
+    }
+    else if (hlp == "EVEN") {
+      _serialPort->setParity(PAR_EVEN);    
+    }
+    else if (hlp == "SPACE") {
+      _serialPort->setParity(PAR_SPACE);    
+    }
+
+    // Data Bits
+    // ---------
+    hlp = settings.value("serialDataBits").toString();
+    if      (hlp == "5") {
+      _serialPort->setDataBits(DATA_5);   
+    }
+    else if (hlp == "6") {
+      _serialPort->setDataBits(DATA_6);   
+    }
+    else if (hlp == "7") {
+      _serialPort->setDataBits(DATA_7);   
+    }
+    else if (hlp == "8") {
+      _serialPort->setDataBits(DATA_8);   
+    }
+    hlp = settings.value("serialStopBits").toString();
+    if      (hlp == "1") {
+      _serialPort->setStopBits(STOP_1);    
+    }
+    else if (hlp == "2") {
+      _serialPort->setStopBits(STOP_2);    
+    }
+
+    // Flow Control
+    // ------------
+    hlp = settings.value("serialFlowControl").toString();
+    if (hlp == "XONXOFF") {
+      _serialPort->setFlowControl(FLOW_XONXOFF);    
+    }
+    else if (hlp == "HARDWARE") {
+      _serialPort->setFlowControl(FLOW_HARDWARE);    
+    }
+    else {
+      _serialPort->setFlowControl(FLOW_OFF);    
+    }
+
+    // Open Serial Port
+    // ----------------
+    _serialPort->open(QIODevice::ReadWrite|QIODevice::Unbuffered);
+    if (!_serialPort->isOpen()) {
+      delete _serialPort;
+      _serialPort = 0;
+      emit(newMessage((_staID + ": Cannot open serial port\n"), true));
+    }
+    connect(_serialPort, SIGNAL(readyRead()), 
+            this, SLOT(slotSerialReadyRead()));
+
+    // Automatic NMEA
+    // --------------
+    if (settings.value("serialAutoNMEA").toString() == "Auto") {
+      _serialNMEA = AUTO_NMEA;
+
+      QString fName = settings.value("serialFileNMEA").toString();
+      if (!fName.isEmpty()) {
+        _serialOutFile = new QFile(fName);
+        if ( Qt::CheckState(settings.value("rnxAppend").toInt()) == Qt::Checked) {
+          _serialOutFile->open(QIODevice::WriteOnly | QIODevice::Append);
+        }
+        else {
+          _serialOutFile->open(QIODevice::WriteOnly);
+        }
+      }
+    }
+
+    // Manual NMEA
+    // -----------
+    else {
+      _serialNMEA = MANUAL_NMEA;
+    }
+  }
+
+  // Initialize PPP Client?
+  // ----------------------
+#ifndef MLS_SOFTWARE
+  if (settings.value("pppMount").toString() == _staID) {
+    _PPPclient = new bncPPPclient(_staID);
+    app->_bncPPPclient = _PPPclient;
+    qRegisterMetaType<bncTime>("bncTime");
+    connect(_PPPclient, SIGNAL(newPosition(bncTime, double, double, double)), 
+            this, SIGNAL(newPosition(bncTime, double, double, double)));
+    connect(_PPPclient, SIGNAL(newNMEAstr(QByteArray)), 
+            this,       SIGNAL(newNMEAstr(QByteArray)));
+  }
+#endif
+
+  // Instantiate the decoder
+  // -----------------------
+  if      (_format.indexOf("RTCM_2") != -1 || _format.indexOf("RTCM2") != -1 ||
+           _format.indexOf("RTCM 2") != -1 ) {
+    emit(newMessage(_staID + ": Get data in RTCM 2.x format", true));
+    _decoder = new RTCM2Decoder(_staID.data());
+  }
+  else if (_format.indexOf("RTCM_3") != -1 || _format.indexOf("RTCM3") != -1 ||
+           _format.indexOf("RTCM 3") != -1 ) {
+    emit(newMessage(_staID + ": Get data in RTCM 3.x format", true));
+    _decoder = new RTCM3Decoder(_staID, _rawFile);
+    connect((RTCM3Decoder*) _decoder, SIGNAL(newMessage(QByteArray,bool)), 
+            this, SIGNAL(newMessage(QByteArray,bool)));
+  }
+  else if (_format.indexOf("GPSS") != -1 || _format.indexOf("BNC") != -1) {
+    emit(newMessage(_staID + ": Get Data in GPSS format", true));
+    _decoder = new gpssDecoder();
+  }
+  else if (_format.indexOf("ZERO") != -1) {
+    emit(newMessage(_staID + ": Get data in original format", true));
+    _decoder = new bncZeroDecoder(_staID);
+  }
+  else if (_format.indexOf("RTNET") != -1) {
+    emit(newMessage(_staID + ": Get data in RTNet format", true));
+    _decoder = new bncRtnetDecoder();
+  }
+  else if (_format.indexOf("HASS2ASCII") != -1) {
+    emit(newMessage(_staID + ": Get data in HASS format", true));
+    _decoder = new hassDecoder(_staID);
+  }
+  else {
+    emit(newMessage(_staID + ": Unknown data format " + _format, true));
+    _isToBeDeleted = true;
+  }
+
+  _latencyChecker = new latencyChecker(_staID);
+
+  msleep(100); //sleep 0.1 sec
+}
+
+// Destructor
+////////////////////////////////////////////////////////////////////////////
+bncGetThread::~bncGetThread() {
+  if (isRunning()) {
+    wait();
+  }
+  if (_query) {
+    _query->stop();
+    _query->deleteLater();
+  }
+  delete _PPPclient;
+  delete _decoder;
+  delete _rnx;
+  delete _rawFile;
+  delete _serialOutFile;
+  delete _serialPort;
+  delete _latencyChecker;
+  emit getThreadFinished(_staID);
+}
+
+// 
+////////////////////////////////////////////////////////////////////////////
+void bncGetThread::terminate() {
+  _isToBeDeleted = true;
+  if (!isRunning()) {
+    delete this;
+  }
+}
+
+// Run
+////////////////////////////////////////////////////////////////////////////
+void bncGetThread::run() {
+
+  while (true) {
+    try {
+      if (_isToBeDeleted) {
+        QThread::exit(0);
+        this->deleteLater();
+        return;
+      }
+
+      if (tryReconnect() != success) {
+        _latencyChecker->checkReconnect();
+        continue;
+      }
+
+      // Delete old observations
+      // -----------------------
+      _decoder->_obsList.clear();
+
+      // Read Data
+      // ---------
+      QByteArray data;
+      if      (_query) {
+        _query->waitForReadyRead(data);
+      }
+      else if (_rawFile) {
+        data = _rawFile->readChunk();
+
+        if (data.isEmpty()) {
+          cout << "no more data" << endl;
+          QThread::exit(0);
+          this->deleteLater();
+          return;
+        }
+      }
+      qint64 nBytes = data.size();
+
+      // Timeout, reconnect
+      // ------------------
+      if (nBytes == 0) {
+        _latencyChecker->checkReconnect();
+        emit(newMessage(_staID + ": Data timeout, reconnecting", true));
+        msleep(10000); //sleep 10 sec, G. Weber
+        continue;
+      }
+      else {
+        emit newBytes(_staID, nBytes);
+      }
+
+      // Output Data
+      // -----------
+      if (_rawOutput) {
+        bncApp* app = (bncApp*) qApp;
+        app->writeRawData(data, _staID, _format); 
+      }
+
+      if (_serialPort) {
+        slotSerialReadyRead();
+        _serialPort->write(data);
+      }
+      
+      // Decode Data
+      // -----------
+      vector<string> errmsg;
+      _decoder->_obsList.clear();
+      t_irc irc = _decoder->Decode(data.data(), data.size(), errmsg);
+
+      // Perform various scans and checks
+      // --------------------------------
+      _latencyChecker->checkOutage(irc == success);
+      _latencyChecker->checkObsLatency(_decoder->_obsList);
+      _latencyChecker->checkCorrLatency(_decoder->corrGPSEpochTime());
+
+      emit newLatency(_staID, _latencyChecker->currentLatency());
+
+      scanRTCM();            
+
+      // Loop over all observations (observations output)
+      // ------------------------------------------------
+      QListIterator<t_obs> it(_decoder->_obsList);
+      bool firstObs = true;
+      while (it.hasNext()) {
+        const t_obs& obs = it.next();
+
+        QString prn  = QString("%1%2").arg(obs.satSys)
+                                      .arg(obs.satNum, 2, 10, QChar('0'));
+        long iSec    = long(floor(obs.GPSWeeks+0.5));
+        long obsTime = obs.GPSWeek * 7*24*3600 + iSec;
+
+        // Check observation epoch
+        // -----------------------
+        if (!_rawFile && !dynamic_cast<gpssDecoder*>(_decoder)) {
+          int    week;
+          double sec;
+          currentGPSWeeks(week, sec);
+          long currTime = week * 7*24*3600 + long(sec);
+          const double maxDt = 600.0;
+          if (fabs(currTime - obsTime) > maxDt) {
+              emit( newMessage(_staID + ": Wrong observation epoch(s)", false) );
+            continue;
+          }
+        }
+      
+        // Check observations coming twice (e.g. KOUR0 Problem)
+        // ----------------------------------------------------
+        QMap<QString, long>::const_iterator it = _prnLastEpo.find(prn);
+        if (it != _prnLastEpo.end()) {
+          long oldTime = it.value();
+          if      (obsTime <  oldTime) {
+            emit( newMessage(_staID + 
+               ": old observation " + prn.toAscii(), false));
+            continue;
+          }
+          else if (obsTime == oldTime) {
+            emit( newMessage(_staID + 
+               ": observation coming more than once " + prn.toAscii(), false));
+            continue;
+          }
+        }
+        _prnLastEpo[prn] = obsTime;
+
+        // RINEX Output
+        // ------------
+        if (_rnx) {
+          if (_samplingRate == 0 || iSec % _samplingRate == 0) {
+            _rnx->deepCopy(obs);
+          }
+          _rnx->dumpEpoch(obsTime);
+        }
+      
+        // PPP Client
+        // ----------
+#ifndef MLS_SOFTWARE
+        if (_PPPclient) {
+          _PPPclient->putNewObs(obs);
+        }
+#endif
+
+        // Emit new observation signal
+        // ---------------------------
+        if (!_isToBeDeleted) {
+          emit newObs(_staID, firstObs, obs);
+        }
+        firstObs = false;
+      }
+      _decoder->_obsList.clear();
+    }
+    catch (Exception& exc) {
+      emit(newMessage(_staID + " " + exc.what(), true));
+      _isToBeDeleted = true;
+    }
+    catch (...) {
+      emit(newMessage(_staID + " bncGetThread exception", true));
+      _isToBeDeleted = true;
+    }
+  }
+}
+
+// Try Re-Connect 
+////////////////////////////////////////////////////////////////////////////
+t_irc bncGetThread::tryReconnect() {
+
+  // Easy Return
+  // -----------
+  if (_query && _query->status() == bncNetQuery::running) {
+    _nextSleep = 0;
+    if (_rnx) {
+      _rnx->setReconnectFlag(false);
+    }
+    return success;
+  }
+
+  // Start a new query
+  // -----------------
+  if (!_rawFile) {
+
+    sleep(_nextSleep);
+    if (_nextSleep == 0) {
+      _nextSleep = 1;
+    }
+    else {
+      _nextSleep = 2 * _nextSleep;
+      if (_nextSleep > 256) {
+        _nextSleep = 256;
+      }
+#ifdef MLS_SOFTWARE
+      if (_nextSleep > 4) {
+        _nextSleep = 4;
+      }
+#endif
+    }
+
+    delete _query;
+    if      (_ntripVersion == "U") {
+      _query = new bncNetQueryUdp();
+    }
+    else if (_ntripVersion == "R") {
+      _query = new bncNetQueryRtp();
+    }
+    else if (_ntripVersion == "S") {
+      _query = new bncNetQueryS();
+    }
+    else if (_ntripVersion == "N") {
+      _query = new bncNetQueryV0();
+    }
+    else if (_ntripVersion == "UN") {
+      _query = new bncNetQueryUdp0();
+    }
+    else if (_ntripVersion == "2") {
+      _query = new bncNetQueryV2(false);
+    }
+    else if (_ntripVersion == "2s") {
+      _query = new bncNetQueryV2(true);
+    }
+    else {
+      _query = new bncNetQueryV1();
+    }
+    if (_nmea == "yes" && _serialNMEA != AUTO_NMEA) {
+      QByteArray gga = ggaString(_latitude, _longitude, "100.0");
+      _query->startRequest(_mountPoint, gga);
+    }
+    else {
+      _query->startRequest(_mountPoint, "");
+    }
+    if (_query->status() != bncNetQuery::running) {
+      return failure;
+    }
+  }
+
+  if (_rnx) {
+    _rnx->setReconnectFlag(true);
+  }
+
+  return success;
+}
+
+// RTCM scan output
+//////////////////////////////////////////////////////////////////////////////
+void bncGetThread::scanRTCM() {
+
+  bncSettings settings;
+  if ( Qt::CheckState(settings.value("scanRTCM").toInt()) == Qt::Checked ) {
+
+    if ( _miscMount == _staID || _miscMount == "ALL" ) {
+
+      // RTCM message types
+      // ------------------
+      for (int ii = 0; ii <_decoder->_typeList.size(); ii++) {
+        QString type =  QString("%1 ").arg(_decoder->_typeList[ii]);
+        emit(newMessage(_staID + ": Received message type " + type.toAscii(), true));
+      }
+  
+      // RTCMv3 antenna descriptor
+      // -------------------------
+      for (int ii=0;ii<_decoder->_antType.size();ii++) {
+        QString ant1 =  QString("%1 ").arg(_decoder->_antType[ii]);
+        emit(newMessage(_staID + ": Antenna descriptor " + ant1.toAscii(), true));
+      }
+
+      // RTCM Antenna Coordinates
+      // ------------------------
+      for (int ii=0; ii <_decoder->_antList.size(); ii++) {
+        QByteArray antT;
+        if      (_decoder->_antList[ii].type == GPSDecoder::t_antInfo::ARP) {
+          antT = "ARP";
+        }
+        else if (_decoder->_antList[ii].type == GPSDecoder::t_antInfo::APC) {
+          antT = "APC";
+        }
+        QByteArray ant1, ant2, ant3;
+        ant1 = QString("%1 ").arg(_decoder->_antList[ii].xx,0,'f',4).toAscii();
+        ant2 = QString("%1 ").arg(_decoder->_antList[ii].yy,0,'f',4).toAscii();
+        ant3 = QString("%1 ").arg(_decoder->_antList[ii].zz,0,'f',4).toAscii();
+        emit(newMessage(_staID + ": " + antT + " (ITRF) X " + ant1 + "m", true));
+        emit(newMessage(_staID + ": " + antT + " (ITRF) Y " + ant2 + "m", true));
+        emit(newMessage(_staID + ": " + antT + " (ITRF) Z " + ant3 + "m", true));
+        if (_decoder->_antList[ii].height_f) {
+          QByteArray ant4 = QString("%1 ").arg(_decoder->_antList[ii].height,0,'f',4).toAscii();
+          emit(newMessage(_staID + ": Antenna height above marker "  + ant4 + "m", true));
+        }
+        emit(newAntCrd(_staID, _decoder->_antList[ii].xx, 
+                       _decoder->_antList[ii].yy, _decoder->_antList[ii].zz, 
+                       antT));
+      }
+    }
+  }
+
+#ifdef MLS_SOFTWARE
+  for (int ii=0; ii <_decoder->_antList.size(); ii++) {
+        QByteArray antT;
+        if      (_decoder->_antList[ii].type == GPSDecoder::t_antInfo::ARP) {
+          antT = "ARP";
+        }
+        else if (_decoder->_antList[ii].type == GPSDecoder::t_antInfo::APC) {
+          antT = "APC";
+        }
+        emit(newAntCrd(_staID, _decoder->_antList[ii].xx, 
+                       _decoder->_antList[ii].yy, _decoder->_antList[ii].zz, 
+                       antT));
+  }
+
+  for (int ii = 0; ii <_decoder->_typeList.size(); ii++) {
+    emit(newRTCMMessage(_staID, _decoder->_typeList[ii]));
+  }
+#endif
+
+
+
+
+  _decoder->_typeList.clear();
+  _decoder->_antType.clear();
+  _decoder->_antList.clear();
+}
+
+// Handle Data from Serial Port
+////////////////////////////////////////////////////////////////////////////
+void bncGetThread::slotSerialReadyRead() {
+  if (_serialPort) {
+    int nb = _serialPort->bytesAvailable();
+    if (nb > 0) {
+      QByteArray data = _serialPort->read(nb);
+
+      if (_serialNMEA == AUTO_NMEA) {
+        int i1 = data.indexOf("$GPGGA");
+        if (i1 != -1) {
+	  int i2 = data.indexOf("*", i1);
+          if (i2 != -1 && data.size() > i2 + 1) {
+            QByteArray gga = data.mid(i1,i2-i1+3);
+            _query->sendNMEA(gga);
+	  }
+	}
+      }
+
+      if (_serialOutFile) {
+        _serialOutFile->write(data);
+        _serialOutFile->flush();
+      }
+    }
+  }
+}
+
+//
+//////////////////////////////////////////////////////////////////////////////
+void bncGetThread::slotNewEphGPS(gpsephemeris gpseph) {
+  RTCM2Decoder* decoder2 = dynamic_cast<RTCM2Decoder*>(_decoder);
+  RTCM3Decoder* decoder3 = dynamic_cast<RTCM3Decoder*>(_decoder);
+
+  if ( decoder2 ) {
+    QMutexLocker locker(&_mutex);
+  
+    string storedPRN;
+    vector<int> IODs;
+    
+    if ( decoder2->storeEph(gpseph, storedPRN, IODs) ) {
+#ifdef DEBUG_RTCM2_2021
+      QString msg = _staID + QString(": stored eph %1 IODs").arg(storedPRN.c_str());
+      
+      for (unsigned ii = 0; ii < IODs.size(); ii++) {
+        msg += QString(" %1").arg(IODs[ii],4);
+      }
+      
+      emit(newMessage(msg.toAscii()));
+#endif
+    }
+  }
+
+  if ( decoder3 ) {
+    QMutexLocker locker(&_mutex);
+  
+    if ( decoder3->storeEph(gpseph) ) {
+#ifdef DEBUG_RTCM3
+      QString msg = _staID + QString(": RTCM3Decoder, stored eph for satellite %1").arg(gpseph.satellite);
+      emit(newMessage(msg.toAscii(),true));
+#endif
+    }
+  }
+}
+
Index: branches/BNC_LM/bncgetthread.h
===================================================================
--- branches/BNC_LM/bncgetthread.h	(revision 3570)
+++ branches/BNC_LM/bncgetthread.h	(revision 3570)
@@ -0,0 +1,135 @@
+// Part of BNC, a utility for retrieving decoding and
+// converting GNSS data streams from NTRIP broadcasters.
+//
+// Copyright (C) 2007
+// German Federal Agency for Cartography and Geodesy (BKG)
+// http://www.bkg.bund.de
+// Czech Technical University Prague, Department of Geodesy
+// http://www.fsv.cvut.cz
+//
+// Email: euref-ip@bkg.bund.de
+//
+// This program is free software; you can redistribute it and/or
+// modify it under the terms of the GNU General Public License
+// as published by the Free Software Foundation, version 2.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+#ifndef BNCGETTHREAD_H
+#define BNCGETTHREAD_H
+
+#include <QThread>
+#include <QtNetwork>
+#include <QDateTime>
+#include <QFile>
+
+#include "RTCM/GPSDecoder.h"
+#include "rtcm3torinex.h"
+#include "bncconst.h"
+#include "bncnetquery.h"
+#include "bnctime.h"
+#include "bncrawfile.h"
+
+class bncRinex;
+class QextSerialPort;
+class latencyChecker;
+class bncPPPclient;
+
+class bncGetThread : public QThread {
+ Q_OBJECT
+
+ public:
+   bncGetThread(bncRawFile* rawFile);
+   bncGetThread(const QUrl& mountPoint, 
+                const QByteArray& format,
+                const QByteArray& latitude,
+                const QByteArray& longitude,
+                const QByteArray& nmea, 
+                const QByteArray& ntripVersion,
+                const QByteArray& staIDextra = "");
+
+   bncNetQuery::queryStatus queryStatus() {
+     if (_query) {
+       return _query->status();
+     }
+     else {
+       return bncNetQuery::init;
+     }
+   }
+
+ protected:
+   ~bncGetThread();
+
+ public:
+   void terminate();
+
+   QByteArray staID() const {return _staID;}
+   QByteArray staIDextra() const {return _staID_extra;}
+   QUrl       mountPoint() const {return _mountPoint;}
+   QByteArray latitude() const {return _latitude;}
+   QByteArray longitude() const {return _longitude;}
+   QByteArray ntripVersion() const {return _ntripVersion;}
+
+ signals:
+   void newBytes(QByteArray staID, double nbyte);
+   void newLatency(QByteArray staID, double clate);
+   void newObs(QByteArray staID, bool firstObs, t_obs obs);
+   void newAntCrd(QByteArray staID, double xx, double yy, double zz, QByteArray antType);
+   void newMessage(QByteArray msg, bool showOnScreen);
+   void newRTCMMessage(QByteArray staID, int msgID);
+   void getThreadFinished(QByteArray staID);
+   void newPosition(bncTime time, double x, double y, double z);
+   void newNMEAstr(QByteArray str);
+
+ public:
+   virtual void run();
+
+ public slots:
+   void slotNewEphGPS(gpsephemeris gpseph);
+
+ private slots:
+   void slotSerialReadyRead();
+
+ private:
+   enum t_serialNMEA {NO_NMEA, MANUAL_NMEA, AUTO_NMEA};
+
+   void  initialize();
+   t_irc tryReconnect();
+   void  scanRTCM();
+
+   GPSDecoder*     _decoder;
+   bncNetQuery*    _query;
+   QUrl            _mountPoint;
+   QByteArray      _staID;
+   QByteArray      _staID_extra;
+   QByteArray      _format;
+   QByteArray      _latitude;
+   QByteArray      _longitude;
+   QByteArray      _height;
+   QByteArray      _nmea;
+   QByteArray      _ntripVersion;
+   int             _nextSleep;
+   int             _iMount;
+   int             _samplingRate;
+   bncRinex*       _rnx;
+   bncRawFile*     _rawFile;
+   QextSerialPort* _serialPort;
+   bool            _isToBeDeleted;
+   latencyChecker* _latencyChecker;
+   QString         _miscMount;
+   QFile*          _serialOutFile;
+   t_serialNMEA    _serialNMEA;
+   QMutex          _mutex;
+   bncPPPclient*   _PPPclient;
+   bool            _rawOutput;
+   QMap<QString, long> _prnLastEpo;
+};
+
+#endif
Index: branches/BNC_LM/bnchelp.html
===================================================================
--- branches/BNC_LM/bnchelp.html	(revision 3570)
+++ branches/BNC_LM/bnchelp.html	(revision 3570)
@@ -0,0 +1,2391 @@
+<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
+<h3>BKG Ntrip Client (BNC) Version 2.6 Manual</h3>
+
+<p>
+The BKG Ntrip Client (BNC) is a program for simultaneously retrieving, decoding and converting real-time GNSS data streams from NTRIP broadcasters like <u>http://www.euref-ip.net/home</u> or <u>http://www.igs-ip.net/home</u> or <u>http://products.igs-ip.net/home</u>.
+</p>
+
+<p>
+BNC has been developed for the Federal Agency for Cartography and Geodesy (BKG) within the framework of EUREF's Real-time GNSS Project (EUREF-IP, IP for Internet Protocol) and the Real-Time IGS Pilot Project (RTIGS).
+</p>
+
+<p>
+BNC has been written under GNU General Public License (GPL). Binaries for BNC are available for Windows, 32-bit Linux, 64-bit Linux (compiled under -m32 32-bit compatibility mode), Solaris, and Mac systems. We used the MinGW Version 5.1.3 compiler to create the Windows binary. It is likely that BNC can be compiled on other systems where a GNU compiler and Qt Version 4.5.2 are installed.
+</p>
+
+<p>
+Please ensure that you have installed the latest version of BNC available from <u>http://igs.bkg.bund.de/ntrip/download</u>. We are continuously working on the program and would appreciate if you could send any comments, suggestions, or bug reports to [euref-ip@bkg.bund.de] or [igs-ip@bkg.bund.de].
+</p>
+
+<h3>Contents</h3>
+<p>
+<h4>
+<a href=#purpose>1. Purpose</a><br>
+<a href=#resources>2. Modes &amp; Resources</a><br>
+<a href=#options>3. Settings &amp; Handling</a><br>
+<a href=#limits>4. Limitations &amp; Known Bugs</a><br>
+<a href=#authors>5. Authors</a><br>
+<a href=#annex>6. Annex</a><br>
+</h4>
+</p>
+
+<p><a name="purpose"><h3>1. Purpose</h3></p>
+
+<p> The purpose of BNC is to
+<ul>
+<li>retrieve real-time GNSS data streams available through NTRIP transport protocol,</li>
+<li>retrieve real-time GNSS data streams via TCP directly from an IP address without using the NTRIP transport protocol, and/or</li>
+<li>retrieve real-time GNSS data streams from a local UDP or serial port without using the NTRIP transport protocol, and/or</li>
+<li>generate high-rate RINEX Observation and Navigation files to support near real-time GNSS post-processing applications, and/or</li>
+<li>generate ephemeris and synchronized or unsynchronized observations epoch by epoch through an IP port to support real-time GNSS network engines, and/or</li>
+<li>generate clock and orbit corrections to broadcast ephemeris through an IP port to support real-time Precise Point Positioning on GNSS rovers, and/or</li>
+<li>generate synchronized or unsynchronized clock and orbit corrections to broadcast ephemeris epoch by epoch through an IP port to support the (outside) combination of such streams as coming simultaneously from various correction providers, and/or</li>
+<li>monitor the performance of a network of real-time GNSS data streams to generate advisory notes in case of outages or corrupted streams, and/or</li>
+<li>scan RTCM streams for incoming antenna information as well as message types and their repetition rates, and/or</li>
+<li>feed a stream into a GNSS receiver via serial communication link, and/or</li>
+<li>carry out a real-time Precise Point Positioning to determine a GNSS rover position, and/or</li>
+<li>simultaneously process several incoming orbit and clock corrections streams to produce, encode and upload a combination solution, and/or</li>
+<li>read GNSS clocks and orbits in a SP3-like format from an IP port - they can be produced by a real-time GNSS engine such as RTNet and should be referenced to the IGS Earth-Centered-Earth-Fixed (ECEF) reference system - and</li>
+<ul>
+<li>convert the IGS Earth-Centered-Earth-Fixed clocks and and orbits into corrections to Broadcast Ephemeris with radial, along-track and cross-track components.</li>
+<li>upload the clock and orbit corrections as an RTCM Version 3.x stream to an NTRIP Broadcaster.</li>
+<li>refer the clock and orbit corretions to a specific reference system.</li>
+<li>log the Broadcast Ephemeris clock corrections as files in Clock RINEX files for further processing using other tools than BNC.</li>
+<li>log the Broadcast Ephemeris orbit corrections as files in SP3 files for further processing using other tools than BNC.</li>
+</ul>
+</ul>
+</p>
+
+<p>
+BNC mainly supports decoding the following GNSS stream formats and message types:
+</p>
+<p>
+<ul>
+<li>RTCM Version 2.x containing message types 18 and 19 or 20 and 21 together with 3 and 22 (GPS and GLONASS), </li> 
+<li>RTCM Version 3.x containing message types</li>
+<ul>
+<li>1002, 1004 (GPS, SBAS, observations)</li>
+<li>1010, 1012 (GLONASS, observations)</li>
+<li>1019, 1020, 1045 (GPS, GLONASS, and proposed Galileo ephemeris)</li>
+<li>1057-1068 (proposed State Space Representation messages for GPS and GLONASS ephemeris correctors)</li>
+<li> 1071-1077, 1081-1087, 1091-1097 (proposed 'Multiple Signal Messages' (MSM) for GPS, GLONASS and Galileo observations).</li>
+</ul>
+<li>RTIGS containing GPS record types 200 (observations) and 300 (ephemeris).</li>
+</ul>
+BNC allows to by-pass its decoding and conversion algorithms, leave whatever is received untouched and save it in files.
+</p>
+
+<p>
+The first of the following figures shows a flow chart of BNC connected to a GNSS receiver via serial or TCP communication link for the pupose of Precise Point Positioning. The second figure shows the conversion of RTCM streams to RINEX batches. The third figure shows a flow chart of BNC feeding a real-time GNSS engine. The engine then estimates satellite orbit and clock correctors. The 'BKG Ntrip Server' (BNS) is used in this scenario to encode correctors to RTCMv3.
+</p>
+<p><img src=":bnchelp/screenshot10.png"/></p>
+<p><u>Figure:</u> Flowchart, BNC connected to a GNSS receiver for Precise Point Positioning.</p>
+
+<p>
+</p>
+<p><img src=":bnchelp/screenshot01.png"/></p>
+<p><u>Figure:</u> Flowchart, BNC converting RTCM streams to RINEX batches.</p>
+
+<p>
+</p>
+<p><img src=":bnchelp/screenshot02.png"/></p>
+<p><u>Figure:</u> Flowchart, BNC feeding a real-time GNSS engine.</p>
+
+<p>
+</p>
+<p><img src=":bnchelp/screenshot19.png"/></p>
+<p><u>Figure:</u> Flowchart, BNC combining orbit/clock correctors streams.</p>
+
+
+<p><a name="resources"><h3>2. Modes &amp; Resources</h3></p>
+<p>
+Although BNC is a real-time tool to be operated in online mode, it can be run offline for post-processing of data made availabe from a single file. Furthermore, apart from its regular window mode, BNC can be run as a batch/background job in a 'no window' mode using processing options from a previously saved configuration.
+</p>
+<p>
+Unless in offline mode, BNC
+</p>
+<ul>
+<li>requires access to the Internet with a minimum of about 2 to 6 kbits/sec per stream depending on the stream format and the number of visible satellites. You need to make sure that the connection can sustain the required bandwidth.</li>
+<li>requires the clock of the host computer to be properly synchronized.</li>
+<li>has the capacity to retrieve hundreds of GNSS data streams simultaneously. Please be aware that such usage may incur a heavy load on the NTRIP broadcaster side depending on the number of streams requested. We recommend limiting the number of streams where possible to avoid unnecessary workload.</li>
+</ul>
+</p>
+
+<p>
+The main window of BNC shows a top menu bar section, a sections for tabs to set processing options, a 'Streams' section and a section for 'Log' tabs, and a bottom menu bar section, see figure below.
+</p>
+<p><img src=":bnchelp/screenshot09.png"/></p>
+<p><u>Figure:</u> Sections on BNC's main window.</p>
+
+
+<p><a name="options"><h3>3. Settings &amp; Handling</h3></p>
+<p>
+This chapter describes BNC's settings and how to handle the program. It explains the top menu bar, the processing options, the 'Streams' and 'Log' sections, and the bottom menu bar.
+</p>
+
+<p>
+The usual handling of BNC is that you first select a number of streams ('Add Stream'). Any stream configured to BNC shows up on the 'Streams' canvas in the middle of BNC's main window. You then go through BNC's various configuration tabs to select a combination of input, processing and output options before you start the program ('Start'). Records of BNC's activities are shown in the 'Log' tab. The bandwidth consumption per stream, the latency of incoming observations and PPP time series for coordinate components are shown in the 'Throughput', 'Latency' and 'PPP Plot' tabs of the main window.
+</p>
+<p>
+As a default, configuration files for running BNC on Unix/Linux/Mac systems are saved in directory '${HOME}/.config/BKG'. On Windows systems, they are typically saved in directory 'C:/Documents and Settings/Username/.config/BKG'. The default configuration file name is 'BNC.ini'.</p>
+<p>
+The default file name 'BNC.ini' can be changed and the file contents can easily be edited. On graphical user interfaces it is possible to Drag &amp; Drop a configuration file icon to start BNC (not on Mac systems). Some configuration options can be changed on-the-fly. See annexed 'Configuration Example' for a complete set of configuration options.
+</p>
+<p>
+3.1. <a href=#topmenu>Top Menu Bar</a><br>
+3.1.1 <a href=#file>File</a><br>
+3.1.2 <a href=#help>Help</a><br><br>
+3.2. <a href=#proxy>Proxy</a><br>
+3.3. <a href=#general>General</a><br>
+&nbsp; &nbsp; &nbsp; 3.3.1. <a href=#genlog>Logfile</a><br>
+&nbsp; &nbsp; &nbsp; 3.3.2. <a href=#genapp>Append Files</a><br>
+&nbsp; &nbsp; &nbsp; 3.3.3. <a href=#genconf>Reread Configuration</a><br>
+&nbsp; &nbsp; &nbsp; 3.3.4. <a href=#genstart>Auto Start</a><br>
+&nbsp; &nbsp; &nbsp; 3.3.5. <a href=#rawout>Raw Output File</a><br>
+3.4. <a href=#rinex>RINEX Observations</a><br>
+&nbsp; &nbsp; &nbsp; 3.4.1. <a href=#rnxname>File Names</a><br>
+&nbsp; &nbsp; &nbsp; 3.4.2. <a href=#rnxdir>Directory</a><br>
+&nbsp; &nbsp; &nbsp; 3.4.3. <a href=#rnxinterval>File Interval</a><br>
+&nbsp; &nbsp; &nbsp; 3.4.4. <a href=#rnxsample>Sampling</a><br>
+&nbsp; &nbsp; &nbsp; 3.4.5. <a href=#rnxskl>Skeleton Extension</a><br>
+&nbsp; &nbsp; &nbsp; 3.4.6. <a href=#rnxscript>Script</a><br>
+&nbsp; &nbsp; &nbsp; 3.4.7. <a href=#rnxvers>Version</a><br>
+3.5. <a href=#ephemeris>RINEX Ephemeris</a><br>
+&nbsp; &nbsp; &nbsp; 3.5.1. <a href=#ephdir>Directory</a><br>
+&nbsp; &nbsp; &nbsp; 3.5.2. <a href=#ephint>Interval</a><br>
+&nbsp; &nbsp; &nbsp; 3.5.3. <a href=#ephport>Port</a><br>
+&nbsp; &nbsp; &nbsp; 3.5.4. <a href=#ephvers>Version</a><br>
+3.6. <a href=#correct>Broadcast Corrections</a><br>
+&nbsp; &nbsp; &nbsp; 3.6.1. <a href=#corrdir>Directory, ASCII</a><br>
+&nbsp; &nbsp; &nbsp; 3.6.2. <a href=#corrint>Interval</a><br>
+&nbsp; &nbsp; &nbsp; 3.6.3. <a href=#corrport>Port</a><br>
+&nbsp; &nbsp; &nbsp; 3.6.4. <a href=#corrwait>Wait for Full Epoch</a><br>
+3.7. <a href=#syncout>Feed Engine</a><br>
+&nbsp; &nbsp; &nbsp; 3.7.1. <a href=#syncport>Port</a><br>
+&nbsp; &nbsp; &nbsp; 3.7.2. <a href=#syncwait>Wait for Full Epoch</a><br>
+&nbsp; &nbsp; &nbsp; 3.7.3. <a href=#syncsample>Sampling</a><br>
+&nbsp; &nbsp; &nbsp; 3.7.4. <a href=#syncfile>File</a><br>
+&nbsp; &nbsp; &nbsp; 3.7.5. <a href=#syncuport>Port (unsynchronized)</a><br>
+3.8. <a href=#serial>Serial Output</a><br>
+&nbsp; &nbsp; &nbsp; 3.8.1. <a href=#sermount>Mountpoint</a><br>
+&nbsp; &nbsp; &nbsp; 3.8.2. <a href=#serport>Port Name</a><br>
+&nbsp; &nbsp; &nbsp; 3.8.3. <a href=#serbaud>Baud Rate</a><br>
+&nbsp; &nbsp; &nbsp; 3.8.4. <a href=#serflow>Flow Control</a><br>
+&nbsp; &nbsp; &nbsp; 3.8.5. <a href=#serparity>Parity</a><br>
+&nbsp; &nbsp; &nbsp; 3.8.6. <a href=#serdata>Data Bits</a><br>
+&nbsp; &nbsp; &nbsp; 3.8.7. <a href=#serstop>Stop Bits</a><br>
+&nbsp; &nbsp; &nbsp; 3.8.8. <a href=#serauto>NMEA</a><br>
+&nbsp; &nbsp; &nbsp; 3.8.9. <a href=#serfile>File</a><br>
+&nbsp; &nbsp; &nbsp; 3.8.10. <a href=#serheight>Height</a><br>
+3.9. <a href=#advnote>Outages</a><br>
+&nbsp; &nbsp; &nbsp; 3.9.1. <a href=#obsrate>Observation Rate</a><br>
+&nbsp; &nbsp; &nbsp; 3.9.2. <a href=#advfail>Failure Threshold</a><br>
+&nbsp; &nbsp; &nbsp; 3.9.3. <a href=#advreco>Recovery Threshold</a><br>
+&nbsp; &nbsp; &nbsp; 3.9.4. <a href=#advscript>Script</a><br>
+3.10. <a href=#misc>Miscellaneous</a><br>
+&nbsp; &nbsp; &nbsp; 3.10.1. <a href=#miscmount>Mountpoint</a><br>
+&nbsp; &nbsp; &nbsp; 3.10.2. <a href=#miscperf>Log Latency</a><br>
+&nbsp; &nbsp; &nbsp; 3.10.3. <a href=#miscscan>Scan RTCM</a><br>
+3.11. <a href=#pppclient>PPP Client</a><br>
+&nbsp; &nbsp; &nbsp; 3.11.1 <a href=#pppmount>Obs Mountpoint</a><br>
+&nbsp; &nbsp; &nbsp; 3.11.1.1 <a href=#pppxyz>XYZ</a><br>
+&nbsp; &nbsp; &nbsp; 3.11.2 <a href=#pppcorrmount>Corr Mountpoint</a><br>
+&nbsp; &nbsp; &nbsp; 3.11.3 <a href=#pppopt>Options</a><br>
+&nbsp; &nbsp; &nbsp; 3.11.3.1 <a href=#pppphase>Use Phase Obs</a><br>
+&nbsp; &nbsp; &nbsp; 3.11.3.2 <a href=#ppptropo>Estimate Tropo</a><br>
+&nbsp; &nbsp; &nbsp; 3.11.3.3 <a href=#pppglo>Use GLONASS</a><br>
+&nbsp; &nbsp; &nbsp; 3.11.3.4 <a href=#pppgal>Use Galileo</a><br>
+&nbsp; &nbsp; &nbsp; 3.11.4 <a href=#pppoptcont1>Options cont'd</a><br>
+&nbsp; &nbsp; &nbsp; 3.11.4.1 <a href=#pppsigxyzi>XYZ Init</a><br>
+&nbsp; &nbsp; &nbsp; 3.11.4.2 <a href=#pppsigxyzn>XYZ White Noise</a><br>
+&nbsp; &nbsp; &nbsp; 3.11.4.3 <a href=#pppquick>Quick-Start</a><br>
+&nbsp; &nbsp; &nbsp; 3.11.4.4 <a href=#pppgap>Max Solution Gap</a><br>
+&nbsp; &nbsp; &nbsp; 3.11.5 <a href=#pppoutput>Output</a><br>
+&nbsp; &nbsp; &nbsp; 3.11.5.1 <a href=#pppnmeafile>NMEA File</a><br>
+&nbsp; &nbsp; &nbsp; 3.11.5.2 <a href=#pppnmeaport>NMEA Port</a><br>
+&nbsp; &nbsp; &nbsp; 3.11.5.3 <a href=#pppplot>PPP Plot</a><br>
+&nbsp; &nbsp; &nbsp; 3.11.6 <a href=#ppprecant>Antennas</a><br>
+&nbsp; &nbsp; &nbsp; 3.11.6.1 <a href=#pppantex>ANTEX File</a><br>
+&nbsp; &nbsp; &nbsp; 3.11.6.2 <a href=#ppprecantenna>Receiver Antenna Name</a><br>
+&nbsp; &nbsp; &nbsp; 3.11.7 <a href=#pppsatant>Satellite Antenna</a><br>
+&nbsp; &nbsp; &nbsp; 3.11.7.1 <a href=#pppsatantignore>Ignore Offsets</a><br>
+&nbsp; &nbsp; &nbsp; 3.11.8 <a href=#pppsigmas>Sigmas</a><br>
+&nbsp; &nbsp; &nbsp; 3.11.8.1 <a href=#pppsigc>Code</a><br>
+&nbsp; &nbsp; &nbsp; 3.11.8.2 <a href=#pppsigp>Phase</a><br>
+&nbsp; &nbsp; &nbsp; 3.11.8.3 <a href=#pppsigtrpi>Tropo Init</a><br>
+&nbsp; &nbsp; &nbsp; 3.11.8.4 <a href=#pppsigtrpn>Tropo White Noise</a><br>
+&nbsp; &nbsp; &nbsp; 3.11.9 <a href=#pppoptcont2>Options cont'd</a><br>
+&nbsp; &nbsp; &nbsp; 3.11.9.1 <a href=#pppsync>Sync Corr</a><br>
+&nbsp; &nbsp; &nbsp; 3.11.9.2 <a href=#pppaverage>Averaging</a><br>
+3.12. <a href=#combi>Combination</a><br>
+&nbsp; &nbsp; &nbsp; 3.12.1 <a href=#combimounttab>Combination Table</a><br>
+&nbsp; &nbsp; &nbsp; 3.12.1.1 <a href=#combiadd>Add Row, Delete</a><br>
+3.13. <a href=#upclk>Upload (clk)</a><br>
+&nbsp; &nbsp; &nbsp; 3.13.1 <a href=#upmntp>Mountpoint</a><br>
+&nbsp; &nbsp; &nbsp; 3.13.2 <a href=#uphost>Host, Port, Password</a><br>
+&nbsp; &nbsp; &nbsp; 3.13.3 <a href=#upascii>Directory, ASCII</a><br>
+&nbsp; &nbsp; &nbsp; 3.13.4 <a href=#upsp3>Directory, SP3</a><br>
+3.14. <a href=#upeph>Upload (eph)</a><br><br>
+3.15. <a href=#streams>Streams</a><br>
+&nbsp; &nbsp; &nbsp; 3.15.1 <a href=#streamedit>Edit Streams</a><br>
+&nbsp; &nbsp; &nbsp; 3.15.2 <a href=#streamdelete>Delete Stream</a><br>
+&nbsp; &nbsp; &nbsp; 3.15.3 <a href=#streamconf>Reconfigure Streams On-the-fly</a><br><br>
+3.16. <a href=#logs>Logging</a><br>
+&nbsp; &nbsp; &nbsp; 3.16.1 <a href=#logfile>Log</a><br>
+&nbsp; &nbsp; &nbsp; 3.16.2 <a href=#throughput>Throughput</a><br>
+&nbsp; &nbsp; &nbsp; 3.16.3 <a href=#latency>Latency</a><br>
+&nbsp; &nbsp; &nbsp; 3.16.4 <a href=#ppptab>PPP Plot</a><br><br>
+3.17. <a href=#bottom>Bottom Menu Bar</a><br>
+&nbsp; &nbsp; &nbsp; 3.17.1. <a href=#streamadd>Add Stream - Coming from Caster</a><br>
+&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 3.17.1.1 <a href=#streamhost>Caster Host and Port</a><br>
+&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 3.17.1.2 <a href=#streamtable>Casters Table</a><br>
+&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 3.17.1.3 <a href=#streamuser>User and Password</a><br>
+&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 3.17.1.4 <a href=#gettable>Get Table</a><br>
+&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 3.17.1.5 <a href=#ntripv>NTRIP Version</a><br>
+&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 3.17.1.6 <a href=#map>Map</a><br>
+&nbsp; &nbsp; &nbsp; 3.17.2 <a href=#streamip>Add Stream - Coming from TCP/IP Port</a><br>
+&nbsp; &nbsp; &nbsp; 3.17.3 <a href=#streamudp>Add Stream - Coming from UDP Port</a><br>
+&nbsp; &nbsp; &nbsp; 3.17.4 <a href=#streamser>Add Stream - Coming from Serial Port</a><br>
+&nbsp; &nbsp; &nbsp; 3.17.5 <a href=#start>Start</a><br>
+&nbsp; &nbsp; &nbsp; 3.17.6 <a href=#stop>Stop</a><br><br>
+3.18. <a href=#cmd>Command Line Options</a><br>
+&nbsp; &nbsp; &nbsp; 3.18.1. <a href=#nw>No Window Mode</a><br>
+&nbsp; &nbsp; &nbsp; 3.18.2. <a href=#post>Offline Mode</a><br>
+&nbsp; &nbsp; &nbsp; 3.18.3. <a href=#conffile>Configuration File</a><br>
+</p>
+
+<p><a name="topmenu"><h4>3.1. Top Menu Bar</h4></p>
+<p>
+The top menu bar allows to select a font for the BNC windows, save configured options or quit the program execution. It also provides access to a program documentation.
+</p>
+
+<p><a name="file"><h4>3.1.1 File</h4></p>
+
+<p>
+The 'File' button lets you
+<ul>
+<li> select an appropriate font.<br>
+Use smaller font size if the BNC main window exceeds the size of your screen.
+</li> 
+<li> save selected options in configuration file.<br>
+When using 'Save &amp; Reread Configuration' while BNC is already processing data, some configuration options become immediately effective on-the-fly without interrupting uninvolved threads. See annexed section 'Configuration Example' for a list of on-the-fly changeable configuration options.
+</li>
+<li> quit the BNC program.
+</li> 
+</ul>
+</p>
+
+<p><a name="help"><h4>3.1.2 Help</h4></p>
+
+<p>
+The 'Help' button provides access to
+<ul>
+<li>
+help contents.<br>
+You may keep the 'Help Contents' window open while configuring BNC.
+</li> 
+<li>
+a 'Flow Chart' showing BNC linked to a real-time GNSS network engine such as RTNet.
+</li>
+<li>
+general information about BNC.<br>
+Close the 'About BNC' window to continue working with BNC.
+</li> 
+</ul>
+</p>
+<p>
+BNC comes with a help system providing online information about its functionality and usage. Short descriptions are available for any widget. Focus to the relevant widget and press Shift+F1 to request help information. A help text appears immediately; it disappears as soon as the user does something else. The dialogs on some operating systems may provide a &quot;?&quot; button that users can click; they then click the relevant widget to pop up the help text.
+</p>
+
+<p><a name="proxy"><h4>3.2. Proxy - for usage in a protected LAN</h4></p>
+
+<p>
+If you are running BNC within a protected Local Area Network (LAN), you might need to use a proxy server to access the Internet. Enter your proxy server IP and port number in case one is operated in front of BNC. If you don't know the IP and port of your proxy server, check the proxy server settings in your Internet browser or ask your network administrator.</p>
+<p>
+Note that IP streaming is often not allowed in a LAN. In this case you need to ask your network administrator for an appropriate modification of the local security policy or for the installation of a TCP relay to the NTRIP broadcasters. If these are not possible, you might need to run BNC outside your LAN on a host that has unobstructed connection to the Internet.
+</p>
+<p><a name="general"><h4>3.3. General</h4></p>
+<p>
+The following defines general settings for BNC's logfile, file handling, reconfiguration on-the-fly, and auto-start.
+</p>
+
+<p><a name="genlog"><h4>3.3.1 Logfile - optional</h4></p>
+<p>
+Records of BNC's activities are shown in the 'Log' tab on the bottom of the main window. These logs can be saved into a file when a valid path is specified in the 'Logfile (full path)' field. The logfile name will automatically be extended by a string '_YYMMDD' carrying the current date. This leads to series of daily logfiles when running BNC continuously for extended. Message logs cover the communication status between BNC and the NTRIP broadcaster as well as problems that may occur in the communication link, stream availability, stream delay, stream conversion etc. All times are given in UTC. The default value for 'Logfile (full path)' is an empty option field, meaning that BNC logs will not saved into a file.
+</p>
+
+<p><a name="genapp"><h4>3.3.2 Append Files - optional</h4></p>
+<p>
+When BNC is started, new files are created by default and any existing files with the same name will be overwritten. However, users might want to append existing files following a restart of BNC, a system crash or when BNC crashed. Tick 'Append files' to continue with existing files and keep what has been recorded so far. Note that option 'Append files' affects all types of files created by BNC.
+</p> 
+
+<p><a name="genconf"><h4>3.3.3 Reread Configuration - optional</h4></p>
+<p>
+When operating BNC online in 'no window' mode (command line option -nw), some configuration options can nevertheless be changed on-the-fly without interrupting the running process. For that you force the program to reread parts of its configuration in pre-defined intervals from the disk. Select '1 min', '1 hour', or '1 day' to let BNC reread on-the-fly changeable configuration options every full minute, hour, or day. This lets in between edited options become effective without interrupting uninvolved threads. See annexed section 'Configuration Example' for a configuration file example and a list of on-the-fly changeable options.
+</p> 
+
+<p><a name="genstart"><h4>3.3.4 Auto Start - optional</h4></p>
+<p>
+You may like to auto-start BNC at startup time in window mode with pre-assigned configuration options. This may be required i.e. immediately after booting your system. Tick 'Auto start' to supersede the usage of the 'Start' button. Make sure that you maintain a link to BNC for that in your Autostart directory (Windows systems) or call BNC in a script below directory /etc/init.d (Unix/Linux/Mac systems).
+</p>
+<p>
+ See BNC's command line option -nw for an auto-start of BNC in 'no window' mode.
+</p>
+
+<p><a name="rawout"><h4>3.3.5 Raw Output File - optional</h4></p>
+<p>
+BNC can save all data coming in through various streams in the received order and format together in one single daily file. This is of importance i.e. when using the PPP option in offline mode where the contents of different streams carrying observations, orbit/clock correctors, and broadcast ephemeris are to be read from one file. Data will be saved in blocks in the received format seperated by ASCII records like (example):
+<pre>
+2010-08-03T18:05:28 RTCM3EPH RTCM_3 67
+</pre>
+This example block header tells you that 67 bytes are saved in the data block following this record. The information in this block is encoded in RTCM Version 3.x format, comes from Mountpoint RTCM3EPH and was received at 18:05:29 UTC on 2010-08-03. BNC adds its own time stamps because a complete time reference may not be provided for all incoming observations and epochs.
+</p>
+<p>
+Note that streams in a 'Raw output file' which shall later be used in an offline PPP calculation must all be encoded in the same format.
+</p>
+<p>
+The default value for 'Raw output file (full path)' is an empty option field, meaning that BNC will not save raw data into a daily file.
+</p>
+
+<p><a name="rinex"><h4>3.4. RINEX Observations</h4></p>
+<p>
+Observations will be converted to RINEX if they come in either RTCM Version 2.x, RTCM Version 3.x, or RTIGS format. BNC's RINEX Version 2 observation files generally contain  C1, P1, L1, S1, C2, P2, L2 and S2 observations. RINEX Version 3 observation files generally contain the following observation types:
+<ul>
+<li>For GPS satellites, 'G': C1C L1C D1C S1C C1W L1W D1W S1W C2P L2P D2P S2P C2X L2X D2X S2X C5 L5 D5 S5</li>
+<li>For GLONASS satellites, 'R': C1C L1C D1C S1C C1P L1P D1P S1P C2P L2P D2P S2P C2C L2C D2C S2C</li>
+<li>For Geostationary signal payloads, 'S': C1C L1C D1C S1C C1W L1W D1W S1W</li>
+<li>For Galileo satellites, 'E': C1 L1 D1 S1 C5 L5 D5 S5</li>
+</ul>
+In case an observation is unavailable, its value is set to zero '0.000'. Note that the 'RINEX TYPE' field in the RINEX Observation file header is always set to 'M(MIXED)' even if the file only contains data from one system.
+</p> 
+
+<p>
+The screenshot below shows an example setup of BNC when converting streams to RINEX. Streams are coming in from various NTRIP broadcasters as well as via a plain UDP and a serial communication link. Decoder 'ZERO' has been selected for one stream to not convert its contents but save it in original format.
+</p>
+<p><img src=":bnchelp/screenshot16.png"/></p>
+<p><u>Figure:</u> BNC translating incoming streams to 15 min RINEX Version 3 files.</p>
+
+<p><a name="rnxname"><h4>3.4.1 RINEX File Names</h4></p>
+<p>
+RINEX file names are derived by BNC from the first 4 characters of the corresponding stream's mountpoint (4Char Station ID). For example, data from mountpoints FRANKFURT and WETTZELL will have hourly RINEX Observation files named</p>
+<p>
+FRAN{ddd}{h}.{yy}O<br>
+WETT{ddd}{h}.{yy}O
+</p>
+<p>
+where 'ddd' is the day of year, 'h' is a letter which corresponds to an hour long UTC time block and 'yy' is the year. 
+</p>
+<p>
+If there are more than one stream with identical 4Char Station ID (same first 4 characters for their mountpoints), the mountpoint strings are split into two sub-strings and both become part of the RINEX file name. For example, when simultaneously retrieving data from mountpoints FRANKFURT and FRANCE, their hourly RINEX Observation files are named as</p>
+<p>
+FRAN{ddd}{h}_KFURT.{yy}O<br>
+FRAN{ddd}{h}_CE.{yy}O.
+</p>
+<p>
+If several streams show exactly the same mountpoint name (example: BRUS0 from <u>www.euref-ip.net</u> and BRUS0 from <u>www.igs-ip.net</u>), BNC adds an integer number to the file name leading i.e. to hourly RINEX Observation files like</p>
+<p>
+BRUS{ddd}{h}_0.{yy}O<br>
+BRUS{ddd}{h}_1.{yy}O.
+</p>
+<p>
+Note that RINEX file names for all intervals less than 1 hour follow the file name convention for 15 minutes RINEX Observation files i.e.</p>
+<p>
+FRAN{ddd}{h}{mm}.{yy}O
+</p>
+<p>
+where 'mm' is the starting minute within the hour.
+</p>
+
+<p><a name="rnxdir"><h4>3.4.2 Directory - optional</h4></p>
+<p>
+Here you can specify the path to where the RINEX Observation files will be stored. If the specified directory does not exist, BNC will not create RINEX Observation files. Default value for 'Directory' is an empty option field, meaning that no RINEX Observation files will be written.
+</p> 
+
+<p><a name="rnxinterval"><h4>3.4.3 File Interval - mandatory if 'Directory' is set</h4></p>
+<p>
+Select the length of the RINEX Observation file generated. The default value is 15 minutes.
+</p> 
+
+<p><a name="rnxsample"><h4>3.4.4 Sampling - mandatory if 'Directory' is set </h4></p>
+<p>
+Select the RINEX Observation sampling interval in seconds. A value of zero '0' tells BNC to store all received epochs into RINEX. This is the default value.
+</p> 
+
+<p><a name="rnxskl"><h4>3.4.5 Skeleton Extension - optional</h4></p>
+<p>
+Whenever BNC starts generating RINEX Observation files (and then once every day at midnight), it first tries to retrieve information needed for RINEX headers from so-called public RINEX header skeleton files which are derived from sitelogs. A HTTP link to a directory containing these skeleton files may be available through data field number 7 of the affected NET record in the source-table. See <u>http://www.epncb.oma.be:80/stations/log/skl/brus.skl</u> for an example of a public RINEX header skeleton file for the Brussels EPN station. 
+</p>
+<p>
+However, sometimes public RINEX header skeleton files are not available, its contents is not up to date, or you need to put additional/optional records in the RINEX header. For that BNC allows using personal skeleton files that contain the header records you would like to include. You can derive a personal RINEX header skeleton file from the information given in an up to date sitelog. A file in the RINEX Observations 'Directory' with a 'Skeleton extension' suffix is interpreted by BNC as a personal RINEX header skeleton file for the corresponding stream.
+</p>
+<p>
+Examples for personal skeleton file name convention: RINEX Observation files for mountpoints WETTZELL, FRANKFURT and FRANCE (same 4Char Station ID), BRUS0 from <u>www.euref-ip.net</u> and BRUS0 from <u>www.igs-ip.net</u> (same 4Char Station ID, identical mountpoint stings) would accept personal skeleton files named</p>
+<p>
+WETT.skl<br>
+FRAN_KFURT.skl<br>
+FRAN_CE.skl<br>
+BRUS_0.skl<br>
+BRUS_1.skl</p>
+<p>
+if 'Skeleton extension' is set to 'skl'.
+</p> 
+<p> 
+Note the following regulations regarding personal RINEX header skeleton files:
+<ul>
+<li>If such a file exists in the 'RINEX directory', the corresponding public RINEX header skeleton file is ignored. The RINEX header is generated solely from the contents of the personal skeleton.</li>
+<li>Personal skeletons should contain a complete first header record of type</li>
+<br>- &nbsp; RINEX VERSION / TYPE
+<li>They should then contain an empty header record of type</li>
+<br>- &nbsp; PGM / RUN BY / DATE
+<br>BNC will complete this line and include it in the actual RINEX file header.
+<li>They should further contain complete header records of type</li>
+<br>- &nbsp; MARKER NAME
+<br>- &nbsp; OBSERVER / AGENCY
+<br>- &nbsp; REC # / TYPE / VERS
+<br>- &nbsp; ANT # / TYPE
+<br>- &nbsp; APPROX POSITION XYZ
+<br>- &nbsp; ANTENNA: DELTA H/E/N
+<br>- &nbsp; WAVELENGTH FACT L1/2
+<li>They may contain any other optional complete header record as defined in the RINEX documentation.</li>
+<li>They should then contain empty header records of type</li>
+<br>- &nbsp; # / TYPES OF OBSERV
+<br>- &nbsp; TIME OF FIRST OBS
+<br>BNC will include these lines in the final RINEX file header together with an additional
+<br>- &nbsp; COMMENT 
+<br>line describing the source of the stream.
+<li>They should finally contain an empty header record of type</li>
+<br>- &nbsp; END OF HEADER (last record)
+</ul>
+<p>
+If neither a public nor a personal RINEX header skeleton file is available for BNC, a default header will be used.
+</p>
+
+<p><a name="rnxscript"><h4>3.4.6 Script - optional</h4></p>
+<p>
+Whenever a RINEX Observation file is saved, you might want to compress, copy or upload it immediately via FTP. BNC allows you to execute a script/batch file to carry out these operations. To do that specify the full path of the script/batch file here. BNC will pass the RINEX Observation file path to the script as a command line parameter (%1 on Windows systems, $1 on Unix/Linux/Mac systems).
+</p> 
+<p> 
+The triggering event for calling the script or batch file is the end of a RINEX Observation  file 'Interval'. If that is overridden by a stream outage, the triggering event is the stream reconnection.
+</p> 
+<p> 
+As an alternative to initiating file uploads through BNC, you may like to call an upload script or batch file through your crontable or Task Scheduler (independent from BNC) once every 2 or 3 minutes after the end of each RINEX file 'Interval'.
+</p> 
+
+<p><a name="rnxvers"><h4>3.4.7 Version - optional</h4></p>
+<p>
+The default format for RINEX Observation files is RINEX Version 2.11. Select 'Version 3' if you would like to save observations in RINEX Version 3 format.
+</p> 
+
+<p><a name="ephemeris"><h4>3.5. RINEX Ephemeris</h4></p>
+<p>
+Broadcast ephemeris can be saved as RINEX Navigation files when received via RTCM Version 3.x as message types 1019 (GPS) or 1020 (GLONASS) or 1045 (proposed, Galileo) or via RTIGS records type 300. The file name convention follows the details given in section 'RINEX File Names' except that the first four characters are 'BRDC' and the last character is
+</p>
+<ul>
+<li>'N' or 'G' for GPS or GLONASS ephemeris in two separate RINEX Version 2.11 Navigation files, or</li>
+<li>'P' for GPS plus GLONASS plus Galileo ephemeris saved together in one RINEX Version 3 Navigation file.
+</ul> 
+
+<p>
+Note that streams dedicated to carry Broadacst Ephemeris messages in RTCM v3 format in high repetition rates are listed on <u>http://igs.bkg.bund.de/ntrip/ephemeris</u>.
+</p>
+
+<p><a name="ephdir"><h4>3.5.1 Directory - optional</h4></p>
+<p>
+Specify the path for saving broadcast ephemeris data as RINEX Navigation files. If the specified directory does not exist, BNC will not create RINEX Navigation files. Default value for Ephemeris 'Directory' is an empty option field, meaning that no RINEX Navigation files will be created.
+</p> 
+
+<p><a name="ephint"><h4>3.5.2 Interval - mandatory if 'Directory' is set</h4></p>
+<p>
+Select the length of the RINEX Navigation file generated. The default value is 1 day.
+</p> 
+
+<p><a name="ephport"><h4>3.5.3 Port - optional</h4></p>
+<p>
+BNC can output broadcast ephemeris in RINEX Version 3 ASCII format on your local host (IP 127.0.0.1) through an IP 'Port'. This function is introduced in order to support i.e. the 'BKG Ntrip Sate Space Server' (BNS) which transforms IGS clocks and orbits into corrections to broadcast ephemeris. Specify an IP port number to activate this function. The default is an empty option field, meaning that no ASCII ephemeris output via IP port is generated.
+</p>
+<p>
+The source code for BNC comes with an example perl script 'test_tcpip_client.pl' that allows you to read BNC's ASCII ephemeris output from the IP port.
+</p>
+
+<p><a name="ephvers"><h4>3.5.4 Version - optional</h4></p>
+<p>
+Default format for RINEX Navigation files containing broadcast ephemeris is RINEX Version 2.11. Select 'Version 3' if you want to save the ephemeris in RINEX Version 3 format.
+</p>
+<p>
+Note that this does not concern the broadcast ephemeris output through IP port which is always in RINEX Version 3 format.
+</p> 
+
+<p><a name="correct"><h4>3.6. Broadcast Corrections</h4></p>
+<p>
+Differential GNSS and RTK operation using RTCM streams is currently based on corrections and/or raw measurements from single or multiple reference stations. This approach to differential positioning is using 'observation space' information. The representation with the RTCM standard can be called 'ObservationSpace Representation' (OSR). 
+</p>
+<p>
+An alternative to the observation space approach is the so called 'sate space' approach. The principle here is to provide information on individual error sources and can be called 'State Space Representation' (SSR). For a rover position, state space information concerning precise satellite clocks, orbits, ionosphere, troposphere et cetera can be converted into observation space and used to correct the rover observables for more accurate positioning. Alternatively the state information can directly be used in the rover's processing or adjustment model. 
+</p>
+<p>
+RTCM is in the process of developing new Version 3 messages to transport satellite clock and orbit corrections in real-time. Based on the latest available proposal, the following premature 'State Space Representation' (SSR) messages currently under discussion have been implemented in BNC. The information below should not be misunderstood as a programmers guide. Programming efforts would definitely require access to the RTCM documentation of SSR messages. 
+<ul>
+<li>Message type 1057: GPS orbit corrections to Broadcast Ephemeris</li>
+<li>Message type 1058: GPS clock corrections to Broadcast Ephemeris</li>
+<li>Message type 1059: GPS code biases</li>
+<li>Message type 1060: Combined orbit and clock corrections to GPS Broadcast Ephemeris</li>
+<li>Message type 1061: GPS User Range Accuracy (URA)</li>
+<li>Message type 1062: High-rate GPS clock corrections to Broadcast Ephemeris</li>
+<li>Message type 1063: GLONASS orbit corrections to Broadcast Ephemeris</li>
+<li>Message type 1064: GLONASS clock corrections to Broadcast Ephemeris</li>
+<li>Message type 1065: GLONASS code biases</li>
+<li>Message type 1066: Combined orbit and clock corrections to GLONASS Broadcast Ephemeris</li>
+<li>Message type 1067: GLONASS User Range Accuracy (URA)</li>
+<li>Message type 1068: High-rate GLONASS clock corrections to Broadcast Ephemeris</li>
+</ul>
+<p>
+RTCM Version 3 streams carrying these messages may be used i.e. to support real-time Precise Point Positioning (PPP) applications. 
+</p>
+<p>
+When using clocks from Broadcast Ephemeris (with or without applied corrections) or clocks from SP3 files, it may be important to understand that they are not corrected for the conventional periodic relativistic effect. Chapter 10 of the IERS Conventions 2003 mentions that the conventional periodic relativistic correction to the satellite clock (to be added to the broadcast clock) is computed as dt =  -2 (R * V) / c^2 where R * V is the scalar product of the satellite position and velocity and c is the speed of light. This can also be found in the GPS Interface Specification, IS-GPS-200, Revision D, 7 March 2006.
+</p>
+
+<p>
+Orbit corrections are provided in along-track, cross-track and radial components. These components are defined in the Earth-centered, Earth-fixed reference frame of the broadcast ephemerides. For an observer in this frame, the along-track component is aligned in both direction and sign with the velocity vector, the cross-track component is perpendicular to the plane defined by the satellite position and velocity vectors, and the radial direction is perpendicular to the along track and cross-track ones. The three components form a right-handed orthogonal system.
+</p>
+
+<p>
+After applying corrections, the satellite position and clock is referred to the 'ionospheric free' phase center of the antenna which is compatible with the broadcast orbit reference.
+</p>
+
+<p>
+The orbit and clock corrections do not include local effects (like Ocean Loading or Solid Earth Tides) or atmospheric effects (Ionosphere and/or troposphere). Depending on the accuracy of your application you should correct for such effects by other means. There is currently no RTCM SSR message for ionospheric state parameters. Such messages are needed for accurate single frequency applications. The development of Iono messages will be the next step in the schedule of the RTCM State Space Representation Working Group.
+</p>
+
+<p>
+Broadcast Corrections can be saved by BNC in files. The file name convention for Broadcast Correction files follows the convention for RINEX files except for the last character of the file name suffix which is set to &quot;C&quot;.
+</p>
+
+<p>
+Saved files contain blocks of records in plain ASCII format where - separate for GPS, GLONASS, message types, streams, and epochs - the begin of a block is indicated by a line like (examples):
+</p>
+<p>
+! Orbits/Clocks: 30 GPS 0 Glonass CLK11<br>
+or<br>
+! Orbits/Clocks: 0 GPS 19 Glonass CLK11
+<p>
+Such line informs you about the number of records (here 30 and 19) carrying GPS or GLONASS related parameters you should receive next as part of a certain stream. 
+</p>
+<p>
+The first five parameters in each broadcast corrections record are:
+</p>
+<p>
+<ul>
+<li>RTCMv3 message type number</li>
+<li>SSR message update interval indicator</li>
+<ul>
+<li>0 = 1 sec</li>
+<li>1 = 2 sec</li>
+<li>2 = 5 sec</li>
+<li>3 = 10 sec</li>
+<li>4 = 15 sec</li>
+<li>5 = 30 sec</li>
+<li>6 = 60 sec</li>
+<li>7 = 120 sec</li>
+<li>8 = 240 sec</li>
+<li>9 = 300 sec</li>
+<li>10 = 600 sec</li>
+<li>11 = 900 sec</li>
+<li>12 = 1800 sec</li>
+<li>13 = 3600 sec</li>
+<li>14 = 7200 sec</li>
+<li>15 = 10800 sec</li>
+</ul>
+<li>GPS Week</li>
+<li>Second in GPS Week</li>
+<li>GNSS Indicator and Satellite Vehicle Pseudo Random Number</li>
+</ul>
+</p>
+<p>
+In case of RTCM message types 1057 or 1063 these parameters are followed by
+</p>
+<p>
+<ul>
+<li>IOD referring to Broadcast Ephemeris set</li>
+<li>Radial Component of Orbit Correction to Broadcast Ephemeris [m]</li>
+<li>Along-track Component of Orbit Correction to Broadcast Ephemeris [m]</li>
+<li>Cross-track Component of Orbit Correction to Broadcast Ephemeris [m]</li>
+<li>Velocity of Radial Component of Orbit Correction to Broadcast Ephemeris [m/s]</li>
+<li>Velocity of Along-track Component of Orbit Correction to Broadcast Ephemeris [m/s]</li>
+<li>Velocity of Cross-track Component of Orbit Correction to Broadcast Ephemeris [m/s]</li>
+<p>
+</ul>
+</p>
+<p>
+Undefined parameters are set to zero &quot;0.000&quot;.<br>Example:
+<pre>
+...
+1057 0 1538 211151.0 G18     1      0.034    0.011   -0.064      0.000    0.000    0.000
+1057 0 1538 211151.0 G16    33     -0.005    0.194   -0.091      0.000    0.000    0.000
+1057 0 1538 211151.0 G22    50      0.008   -0.082   -0.001      0.000    0.000    0.000
+...
+1063 0 1538 211151.0 R09   111     -0.011   -0.014    0.005      0.000    0.000    0.000
+1063 0 1538 211151.0 R10    43      0.000   -0.009   -0.002      0.000    0.000    0.000
+1063 0 1538 211151.0 R21    75     -0.029    0.108    0.107      0.000    0.000    0.000
+...
+</pre>
+<p>
+In case of RTCM message types 1058 or 1064 the first five parameters are followed by
+</p>
+<ul>
+<li>IOD set to zero &quot;0&quot;</li>
+<li>C0 polynomial coefficient for Clock Correction to Broadcast Ephemeris [m]</li>
+<li>C1 polynomial coefficient for Clock Correction to Broadcast Ephemeris [m/s]</li>
+<li>C2 polynomial coefficient for Clock Correction to Broadcast Ephemeris [m/s**2]</li>
+</ul>
+Example:
+</p>
+<pre>
+...
+1058 0 1538 211151.0 G18     0      1.846       0.000    0.000
+1058 0 1538 211151.0 G16     0      0.376       0.000    0.000
+1058 0 1538 211151.0 G22     0      2.727       0.000    0.000
+...
+1064 0 1538 211151.0 R08     0      8.956       0.000    0.000
+1064 0 1538 211151.0 R07     0     14.457       0.000    0.000
+1064 0 1538 211151.0 R23     0      6.436       0.000    0.000
+...
+</pre>
+</p>
+<p>
+In case of RTCM message types 1060 or 1066 the first five parameters are followed by
+<p>
+<ul>
+<li>IOD referring to Broadcast Ephemeris set</li>
+<li>C0 polynomial coefficient for Clock Correction to Broadcast Ephemeris [m]</li>
+<li>Radial Component of Orbit Correction to Broadcast Ephemeris [m]</li>
+<li>Along-track Component of Orbit Correction to Broadcast Ephemeris [m]</li>
+<li>Cross-track Component of Orbit Correction to Broadcast Ephemeris [m]</li>
+<li>C1 polynomial coefficient for Clock Correction to Broadcast Ephemeris [m]</li>
+<li>Velocity of Radial Component of Orbit Correction to Broadcast Ephemeris [m/s]</li>
+<li>Velocity of Along-track Component of Orbit Correction to Broadcast Ephemeris [m/s]</li>
+<li>Velocity of Cross-track Component of Orbit Correction to Broadcast Ephemeris [m/s]</li>
+<li>C2 polynomial coefficient for Clock Correction to Broadcast Ephemeris [m]</li>
+</ul>
+Example:
+</p>
+<pre>
+...
+1060 0 1538 211610.0 G30    82      2.533      0.635   -0.359   -0.598    0.000    0.000    0.000    0.000    0.000
+1060 0 1538 211610.0 G31     5     -4.218     -0.208    0.022    0.002    0.000    0.000    0.000    0.000    0.000
+1060 0 1538 211610.0 G32    28     -2.326      0.977   -0.576    0.142    0.000    0.000    0.000    0.000    0.000
+...
+1066 0 1538 211610.0 R22    27      1.585      2.024    2.615   -2.080    0.000    0.000    0.000    0.000    0.000
+1066 0 1538 211610.0 R23    27      6.277      2.853    4.181    1.304    0.000    0.000    0.000    0.000    0.000
+1066 0 1538 211610.0 R24    27      0.846      1.805   13.095    6.102    0.000    0.000    0.000    0.000    0.000
+...
+</pre>
+</p>
+<p>
+In case of RTCM message types 1059 or 1065 the first five parameters are followed by
+<ul>
+<li>Number of Code Biases</li>
+<li>Indicator to specify the signal and tracking mode</li>
+<li>Code Bias</li>
+<li>Indicator to specify the signal and tracking mode</li>
+<li>Code Bias</li>
+<li>etc.</li>
+</ul>
+Example:
+</p>
+<pre>
+...
+1059 0 1538 211151.0 G18 2 0   -0.010 11   -0.750 
+1059 0 1538 211151.0 G16 2 0   -0.040 11   -0.430
+1059 0 1538 211151.0 G22 2 0   -0.630 11   -2.400
+...
+</pre>
+
+<p><a name="corrdir"><h4>3.6.1 Directory, ASCII - optional</h4></p>
+<p>
+Specify a directory for saving Broadcast Corrections in files. If the specified directory does not exist, BNC will not create Broadcast Correction files. Default value for Broadcast Corrections 'Directory' is an empty option field, meaning that no Broadcast Correction files will be created.
+</p>
+
+<p><a name="corrint"><h4>3.6.2 Interval - mandatory if 'Directory, ASCII' is set</h4></p>
+<p>
+Select the length of the Broadcast Correction files. The default value is 1 day.
+</p>
+
+<p><a name="corrport"><h4>3.6.3 Port - optional</h4></p>
+<p>
+BNC can output epoch by epoch synchronized Broadcast Corrections in ASCII format on your local host (IP 127.0.0.1) through an IP 'Port'. Specify an IP port number to activate this function. The default is an empty option field, meaning that no Broadcast Correction output via IP port is generated.
+</p>
+<p>
+The output format equals the format used for saving Broadcast Corrections in a file with the exception that the Mountpoint is added at each line's end.
+</p>
+<p>
+The following is an example output for streams from Mountpoints RTCMSSR, CLK10 and CLK11:
+<pre>
+...
+1057 0 1538 211151.0 G18     1      0.034    0.011   -0.064    0.000    0.000    0.000 RTCMSSR
+1057 0 1538 211151.0 G16    33     -0.005    0.194   -0.091    0.000    0.000    0.000 RTCMSSR
+1057 0 1538 211151.0 G22    50      0.008   -0.082   -0.001    0.000    0.000    0.000 RTCMSSR
+...
+1058 0 1538 211151.0 G18     0      1.846    0.000 RTCMSSR
+1058 0 1538 211151.0 G16     0      0.376    0.000 RTCMSSR
+1058 0 1538 211151.0 G22     0      2.727    0.000 RTCMSSR
+...
+1059 0 1538 211151.0 G18 2 0   -0.010 11   -0.750 RTCMSSR
+1059 0 1538 211151.0 G16 2 0   -0.040 11   -0.430 RTCMSSR
+1059 0 1538 211151.0 G22 2 0   -0.630 11   -2.400 RTCMSSR
+...
+1063 0 1538 211151.0 R09   111     -0.011   -0.014    0.005    0.0000    0.000    0.000 RTCMSSR
+1063 0 1538 211151.0 R10    43      0.000   -0.009   -0.002    0.0000    0.000    0.000 RTCMSSR
+1063 0 1538 211151.0 R21    75     -0.029    0.108    0.107    0.0000    0.000    0.000 RTCMSSR
+...
+1064 0 1538 211151.0 R08     0      8.956    0.000 RTCMSSR
+1064 0 1538 211151.0 R07     0     14.457    0.000 RTCMSSR
+1064 0 1538 211151.0 R23     0      6.436    0.000 RTCMSSR
+...
+1066 0 1538 211610.0 R24    27      0.846      1.805   13.095    6.102    0.000    0.000    0.000    0.000    0.000 CLK11
+1066 0 1538 211610.0 R23    27      6.277      2.853    4.181    1.304    0.000    0.000    0.000    0.000    0.000 CLK11
+1066 0 1538 211610.0 R22    27      1.585      2.024    2.615   -2.080    0.000    0.000    0.000    0.000    0.000 CLK11
+...
+1060 0 1538 211610.0 G32    28     -2.326      0.977   -0.576    0.142    0.000    0.000    0.000    0.000    0.000 CLK10
+1060 0 1538 211610.0 G31     5     -4.218     -0.208    0.022    0.002    0.000    0.000    0.000    0.000    0.000 CLK10
+1060 0 1538 211610.0 G30    82      2.533      0.635   -0.359   -0.598    0.000    0.000    0.000    0.000    0.000 CLK10
+...
+</pre>
+</p>
+<p>
+The source code for BNC comes with an example perl script 'test_tcpip_client.pl' that allows you to read BNC's Broadcast Corrections from the IP port.
+</p>
+
+<p><a name="corrwait"><h4>3.6.4 Wait for Full Epoch - mandatory if 'Port' is set</h4></p>
+<p>
+When feeding a real-time GNSS network engine waiting epoch by epoch for synchronized Broadcast Corrections, BNC drops (only concerning IP port output) whatever is received later than 'Wait for full epoch' seconds. A value of 2 to 5 seconds could be an appropriate choice for that, depending on the latency of the incoming Broadcast Corrections stream and the delay acceptable by your application. A message such as &quot;COCK1: Correction overaged by 5 sec&quot; shows up in BNC's logfile if 'Wait for full epoch' is exceeded.
+</p>
+<p>
+Specifying a value of '0' means that BNC immediately outputs all incoming Broadcast Epemeris Corrections and does not drop any of them for latency reasons.
+</p>
+
+<p><a name="syncout"><h4>3.7. Feed Engine</h4></p>
+<p>
+BNC can generate synchronized or unsynchronized observations epoch by epoch from all stations and satellites to feed a real-time GNSS network engine. Observations can be streamed out through an IP port and/or saved in a local file. The output is always in plain ASCII format and comprises the following parameters:
+<ul>
+<li>For GPS satellites:<br>StationID GPSWeek GPSWeekSec 'G'PRN C1C L1C SlipCountL1 D1C S1C C1W L1W SlipCountL1 D1W S1W C2P L2P SlipCountL2 D2P S2P C2X L2X SlipCountL2 D2X S2X C5  L5 SlipCountL5 D5  S5</li>
+<li>For GLONASS satellites:<br>StationID GPSWeek GPSWeekSec 'R'PRN SlotNumber C1C L1C SlipCountL1 D1C S1C C1P L1P SlipCountL1 D1P S1P C2P L2P SlipCountL2 D2P S2P C2C L2C SlipCountL2 D2C S2C</li>
+<li>For Geostationary signal payloads:<br>StationID GPSWeek GPSWeekSec 'S'PRN C1C L1C SlipCountL1 D1C S1C C1W L1W SlipCountL1 D1W S1W</li>
+<li>For Galileo satellites:<br>StationID GPSWeek GPSWeekSec 'E'PRN C1  L1  SlipCountL1 D1  S1  C5  L5 SlipCountL5 D5  S5</li>
+</ul>
+In case an observation is not available, its value is set to zero '0.000'.
+</p>
+<p>Note on 'SlipCount':<br>
+It is the current understanding of BNC's authors that different slip counts could be referred to different phase measurements (i.e. L1C and L1P). The 'loss-of-lock' flags in RINEX are an example for making such kind of information available per phase measurement. However, it looks like we do have only one slip count in RTCM Version 3 for all phase measurements. As it could be that a receiver generates different slip counts for different phase measurements, we output one slip count per phase measurement to a listening real-time GNSS network engine.
+</p>
+
+<p>
+The following is an output example for GPS, GLONASS and Galileo observations and observations obtained from a geostationary payload signal:
+<pre>
+...
+WTZX3 1616 149732.0000000 E52  27089285.092   142354765.663 -1       2212.322          45.500    27089287.942   106304461.365 -1       2212.404          42.300
+...
+WTZX3 1616 149732.0000000 G10  22608910.719   118810687.059 -1       2965.339          49.300    22608909.593   118810311.312 -1       2965.339          36.000    22608915.003    92579465.057 -1       2966.012          36.000           0.000           0.000 -1          0.000           0.000           0.000           0.000 -1          0.000           0.000
+...
+WTZX3 1616 149732.0000000 G07  23633028.684   124192961.644 -1       3686.418          48.800    23633026.847   124192961.885 -1       3686.418          35.000    23633032.480    96773737.419 -1       3685.139          35.000    23633033.547    96773738.190 -1       3685.172          43.500           0.000           0.000 -1          0.000           0.000
+...
+WTZX3 1616 149732.0000000 R20 2   24149338.926   129137949.211 48       2950.111          42.800    24149340.305   129137949.481 48       2950.111          41.800    24149356.146   100440627.082 48       2949.895          39.500    24149356.702   100440626.859 48       2949.896          40.000
+...
+</pre>
+<p>
+The source code for BNC comes with a perl script called 'test_tcpip_client.pl' that allows you to read BNC's (synchronized or unsynchronized) ASCII observation output from the IP port and print it on standard output.
+</p>
+<p>
+Note that any socket connection of an application to BNC's synchronized or unsynchronized observations ports is recorded in the 'Log' tab on the bottom of the main window together with a connection counter, resulting in log records like 'New client connection on sync/usync port: # 1'.
+</p>
+
+<p>
+The following figure shows the screenshot of a BNC configuration where a number of streams is pulled from different NTRIP broadcasters to feed a GNSS engine via IP port output.
+</p>
+<p><img src=":bnchelp/screenshot12.png"/></p>
+<p><u>Figure:</u> Synchronized BNC output via IP port to feed a GNSS real-time engine.</p>
+
+<p><a name="syncport"><h4>3.7.1 Port - optional</h4></p>
+<p>
+BNC can produce synchronized observations in ASCII format on your local host (IP 127.0.0.1) through an IP 'Port'. Synchronized means that BNC collects all data for any specific epoch which become available within a certain number of latency seconds (see 'Wait for Full Epoch' option). It then - epoch by epoch - outputs whatever has been received. Specify an IP port number here to activate this function. The default is an empty option field, meaning that no binary synchronized output is generated.</p>
+</p>
+
+<p><a name="syncwait"><h4>3.7.2 Wait for Full Epoch - mandatory if 'Port' is set</h4></p>
+<p>
+When feeding a real-time GNSS network engine waiting for synchronized input epoch by epoch, BNC drops whatever is received later than 'Wait for full epoch' seconds. A value of 3 to 5 seconds could be an appropriate choice for that, depending on the latency of the incoming streams and the delay acceptable for your real-time GNSS product. Default value for 'Wait for full epoch' is 5 seconds.
+</p>
+<p>
+Note that 'Wait for full epoch' does not effect the RINEX Observation file content. Observations received later than 'Wait for full epoch' seconds will still be included in the RINEX Observation files.
+</p> 
+
+<p><a name="syncsample"><h4>3.7.3 Sampling - mandatory if 'File' or 'Port' is set</h4></p>
+<p>
+Select the synchronized observation output sampling interval in seconds. A value of zero '0' tells BNC to send/store all received epochs. This is the default value.
+</p>
+
+<p><a name="syncfile"><h4>3.7.4 File - optional</h4></p>
+<p>
+Specifies the full path to a 'File' where synchronized observations are saved in plain ASCII format. The default value is an empty option field, meaning that no ASCII output file is created.
+</p>
+<p>
+Beware that the size of this file can rapidly increase depending on the number of incoming streams. This option is primarily meant for testing and evaluation.
+</p>
+
+<p><a name="syncuport"><h4>3.7.5 Port (unsynchronized) - optional</h4></p>
+<p>
+BNC can produce unsynchronized observations from all configured streams in ASCII format on your local host (IP 127.0.0.1) through an IP 'Port'. Unsynchronized means that BNC immediately forwards any received observation to the port. Specify an IP port number here to activate this function. The default is an empty option field, meaning that no binary unsynchronized output is generated.</p>
+<p>
+
+<p><a name="serial"><h4>3.8. Serial Output</h4></p>
+<p>
+You may use BNC to feed a serial connected device like an GNSS receiver. For that one of the incoming streams can be forwarded to a serial port. The following figure shows the screenshot of an example situation where BNC pulls a VRS stream from an NTRIP broadcaster to feed a serial connected rover. 
+</p>
+<p><img src=":bnchelp/screenshot11.png"/></p>
+<p><u>Figure:</u> BNC pulling a VRS stream to feed a serial connected rover.</p>
+
+<p><a name="sermount"><h4>3.8.1 Mountpoint - optional</h4></p>
+<p>
+Enter a 'Mountpoint' to forward its corresponding stream to a serial connected GNSS receiver.
+</p>
+<p>
+When selecting the serial communication options listed below, make sure that you pick those configured to the serial connected receiver.
+</p>
+
+<p><a name="serport"><h4>3.8.2 Port Name - mandatory if 'Mountpoint' is set</h4></p>
+<p>
+Enter the serial 'Port name' selected on your host for communication with the serial connected receiver. Valid port names are
+</p>
+<pre>
+Windows:       COM1, COM2
+Linux:         /dev/ttyS0, /dev/ttyS1
+FreeBSD:       /dev/ttyd0, /dev/ttyd1
+Digital Unix:  /dev/tty01, /dev/tty02
+HP-UX:         /dev/tty1p0, /dev/tty2p0
+SGI/IRIX:      /dev/ttyf1, /dev/ttyf2
+SunOS/Solaris: /dev/ttya, /dev/ttyb
+</pre>
+<p>
+Note that you must plug a serial cable in the port defined here before you start BNC.
+</p>
+
+<p><a name="serbaud"><h4>3.8.3 Baud Rate - mandatory if 'Mountpoint' is set</h4></p>
+<p>
+Select a 'Baud rate' for the serial output link. Note that using a high baud rate is recommended.
+</p>
+
+<p><a name="serflow"><h4>3.8.4 Flow Control - mandatory if 'Mountpoint' is set</h4></p>
+<p>
+Select a 'Flow control' for the serial output link. Note that your selection must equal the flow control configured to the serial connected device. Select 'OFF' if you don't know better.
+</p>
+
+<p><a name="serparity"><h4>3.8.5 Parity - mandatory if 'Mountpoint' is set</h4></p>
+<p>
+Select the 'Parity' for the serial output link. Note that parity is often set to 'NONE'.
+</p>
+
+<p><a name="serdata"><h4>3.8.6 Data Bits - mandatory if 'Mountpoint' is set</h4></p>
+<p>
+Select the number of 'Data bits' for the serial output link. Note that often '8' data bits are used.
+</p>
+
+<p><a name="serstop"><h4>3.8.7 Stop Bits - mandatory if 'Mountpoint' is set</h4></p>
+<p>
+Select the number of 'Stop bits' for the serial output link. Note that often '1' stop bit is used.
+</p>
+
+<p><a name="serauto"><h4>3.8.8 NMEA - mandatory for VRS streams</h4></p>
+<p>
+Select 'Auto' to automatically forward all NMEA-GGA messages coming from your serial connected GNSS receiver to the NTRIP broadcaster and/or save them in a file.
+</p>
+<p>
+Forwarding valid NMEA-GGA messages to the NTRIP broadcaster is required for receiving 'Virtual Reference Station' (VRS) streams. Thus, in case your serial connected receiver is not capable to provide them, the alternative for VRS streams is a 'Manual' simulation of an initial NMEA-GGA message. Its contents is based on the approximate (editable) latitude/longitude from the broadcaster's source-table and an approximate VRS height to be specified.
+</p>
+<p>
+In summary: select 'Manual' only when handling a VRS stream and your serial connected GNSS receiver doesn't generate NMEA-GGA messages. Select 'Auto' otherwise.
+</p>
+
+<p><a name="serfile"><h4>3.8.9 File - optional if 'Auto' NMEA is set</h4></p>
+<p>Specify the full path to a file where NMEA messages coming from your serial connected receiver are saved.
+</p>
+<p><a name="serheight"><h4>3.8.10 Height - mandatory if 'Manual' NMEA is set</h4></p>
+<p>
+Specify an approximate 'Height' above mean sea level in meter for your VRS to simulate an initial NMEA-GGA message. Latitude and longitude for that (editable) are taken from the broadcaster's source-table.
+</p>
+<p>
+This option concerns only 'Virtual Reference Stations' (VRS). Its setting is ignored in case of streams coming from physical reference stations.
+</p>
+
+<p><a name="advnote"><h4>3.9. Outages</h4></p>
+
+<p>
+At various times, the incoming stream might become unavailable or corrupted. In such cases, it is important that the BNC operator and/or the stream providers become aware of the situation so that necessary measures can be taken to restore the stream. Furthermore, continuous attempts to decode corrupted stream(s) can generate unnecessary workload for BNC. Outages and corruptions are handled by BNC as follows:
+</p>
+<p>
+<u>Stream outages:</u> BNC considers a connection to be broken when there are no incoming data detected for more than 20 seconds. When this occurs, BNC will attempt to reconnect at a decreasing rate. It will first try to reconnect with 1 second delay, and again in 2 seconds if the previous attempt failed. If the attempt is still unsuccessful, it will try to reconnect within 4 seconds after the previous attempt and so on. The wait time doubles each time with a maximum wait time of 256 seconds.
+</p>
+<p>
+<u>Stream corruption:</u> Not all bits chunk transfers to BNC's internal decoders return valid observations. Sometimes several chunks might be needed before the next observation can be properly decoded. BNC buffers all the outputs (both valid and invalid) from the decoder for a short time span (size derived from the expected 'Observation rate') and then determines whether a stream is valid or corrupted.
+</p>
+<p>
+Outage and corruption events are reported in the 'Log' tab. They can also be passed on as parameters to a shell script or batch file to generate an advisory note to BNC operator or affected stream providers. This functionality lets users utilize BNC as a real-time performance monitor and alarm system for a network of GNSS reference stations.
+</p>
+
+<p><a name="obsrate"><h4>3.9.1 Observation Rate - mandatory if 'Failure threshold', 'Recovery threshold', and 'Script' is set</h4></p>
+<p>
+BNC can collect all returns (success or failure) coming from a decoder within a certain short time span to then decide whether a stream has an outage or its content is corrupted. This procedure needs a rough a priory estimate of the expected observation rate of the incoming streams.</p><p>An empty option field (default) means that you don't want an explicit information from BNC about stream outages and incoming streams that cannot be decoded.
+</p> 
+
+<p><a name="advfail"><h4>3.9.2 Failure Threshold - optional</h4></p>
+<p>
+Event 'Begin_Failure' will be reported if no data is received continuously for longer than the 'Failure threshold' time. Similarly, event 'Begin_Corrupted' will be reported when corrupted data is detected by the decoder continuously for longer than this 'Failure threshold' time. The default value is set to 15 minutes and is recommended so not to innundate user with too many event reports.
+</p>
+<p>
+Note that specifying a value of zero '0' for the 'Failure threshold' will force BNC to report any stream failure immediately. Note also that for using this function you need to specify the 'Observation rate'.
+</p>
+
+<p><a name="advreco"><h4>3.9.3 Recovery Threshold - optional</h4></p>
+<p>
+Once a 'Begin_Failure' or 'Begin_Corrupted' event has been reported, BNC will check for when the stream again becomes available or uncorrupted. Event 'End_Failure' or 'End_Corrupted' will be reported as soon as valid observations are again detected continuously throughout the 'Recovery threshold' time span. The default value is set to 5 minutes and is recommended so not to innundate users with too many event reports.  
+</p>
+<p>
+Note that specifying a value of zero '0' for the 'Recovery threshold' will force BNC to report any stream recovery immediately. Note also that for using this function you need to specify the 'Observation rate'.
+</p>
+
+<p><a name="advscript"><h4>3.9.4 Script - optional </h4></p>
+<p>
+As mentioned previously, BNC can trigger a shell script or a batch file to be executed when one of the events described are reported. This script can be used to email an advisory note to network operator or stream providers. To enable this feature, specify the full path to the script or batch file in the 'Script' field. The affected stream's mountpoint and type of event reported ('Begin_Outage', 'End_Outage', 'Begin_Corrupted' or 'End_Corrupted') will then be passed on to the script as command line parameters (%1 and %2 on Windows systems or $1 and $2 on Unix/Linux/Mac systems) together with date and time information.
+</p>
+<p>
+Leave the 'Script' field empty if you do not wish to use this option. An invalid path will also disable this option.
+</p> 
+<p>
+Examples for command line parameter strings passed on to the advisory 'Script' are:
+<pre>
+FFMJ0 Begin_Outage 08-02-21 09:25:59
+FFMJ0 End_Outage 08-02-21 11:36:02 Begin was 08-02-21 09:25:59
+</pre>
+Sample script for Unix/Linux/Mac systems:
+<pre>
+#!/bin/bash
+sleep $((60*RANDOM/32767))
+cat | mail -s &quot;NABU: $1&quot; email@address &lt;&lt;!
+Advisory Note to BNC User,
+Please note the following advisory received from BNC.
+Stream: $*
+Regards, BNC
+!
+</pre>
+</p> 
+<p> 
+Note the sleep command in this script which causes the system to wait for a random period of up to 60 seconds before sending the email. This should avoids overloading your mail server in case of a simultaneous failure of many streams.
+</p> 
+
+<p><a name="misc"><h4>3.10. Miscellaneous</h4></p>
+<p>
+This section describes a number of miscellaneous options which can be applied for a single stream (mountpoint) or for all configured streams.
+</p>
+
+<p>
+The following figure shows RTCM message numbers contained in stream 'CONZ0' and the message latencies recorded every 10 seconds.
+</p>
+<p><img src=":bnchelp/screenshot14.png"/></p>
+<p><u>Figure:</u> RTCM message numbers and latencies.</p>
+
+
+<p><a name="miscmount"><h4>3.10.1 Mountpoint - optional </h4></p>
+<p>
+Specify a mountpoint to apply one or several of the 'Miscellaneous' options to the corresponding stream. Enter 'ALL' if you want to apply these options to all configured streams. An empty option field (default) means that you don't want BNC to apply any of these options.
+</p>
+
+<p><a name="miscperf"><h4>3.10.2 Log Latency - optional </h4></p>
+<p>
+ BNC can average latencies per stream over a certain period of GPS time, the 'Log latency' interval. Mean latencies are calculated from the individual latencies of at most one (first incoming) observation or correction to Broadcast Ephemeris per second. The mean latencies are then saved in BNC's logfile. Note that computing correct latencies requires the clock of the host computer to be properly synchronized. Note further that the latencies available from the 'Latency' tab on the bottom of the main window represent individual latencies and not the mean latencies for the logfile.
+</p>
+<p>
+<u>Latency:</u> Latency is defined in BNC by the following equation:
+</p>
+<pre>
+    UTC time provided by BNC's host
+  - GPS time of currently processed epoch
+  + Leap seconds between UTC and GPS time
+  --------------
+  = Latency
+</pre>
+<p>
+<u>Statistics:</u> BNC counts the number of GPS seconds covered by at least one observation. It also estimates an observation rate (independent from the a priory specified 'Observation rate') from all observations received throughout the first full 'Log latency' interval. Based on this rate, BNC estimates the number of data gaps when appearing in subsequent intervals. 
+</p>
+<p>
+Latencies of observations or corrections to Broadcast Ephemeris and statistical information can be recorded in the 'Log' tab at the end of each 'Log latency' interval. A typical output from a 1 hour 'Log latency' interval would be:
+</p>
+<pre>
+08-03-17 15:59:47 BRUS0: Mean latency 1.47 sec, min 0.66, max 3.02, rms 0.35, 3585 epochs, 15 gaps
+</pre>
+<p>
+Select a 'Log latency' interval to activate this function or select the empty option field if you do not want BNC to log latencies and statistical information.
+</p>
+
+
+<p><a name="miscscan"><h4>3.10.3 Scan RTCM - optional</h4></p>
+<p>
+When configuring a GNSS receiver for RTCM stream generation, the setup interface may not provide details about RTCM message types. As reliable information concerning stream contents should be available i.e. for NTRIP broadcaster operators to maintain the broadcaster's source-table, BNC allows to scan RTCM streams for incoming message types and printout some of the contained meta-data. The idea for this option arose from 'InspectRTCM', a comprehensive stream analyzing tool written by D. Stoecker.
+</p>
+<p>
+Tick 'Scan RTCM' to scan RTCM Version 2.x or 3.x streams and log all contained
+</p>
+<ul>
+<li>numbers of incoming message types</li>
+<li>Antenna Reference Point (ARP) coordinates</li>
+<li>Antenna Phase Center (APC) coordinates</li>
+<li>antenna height above marker</li>
+<li>antenna descriptor.</li>
+</ul>
+</p>
+
+<p>
+Note that in RTCM Version 2.x the message types 18 and 19 carry only the observables of one frequency. Hence it needs two type 18 and 19 messages per epoch to transport the observations from dual frequency receivers.
+</p>
+<p>
+
+<p>Logged time stamps refer to message reception time and allow to understand repetition rates. Enter 'ALL' if you want to log this information from all configured streams. Beware that the size of the logfile can rapidly increase depending on the number of incoming RTCM streams. 
+</p>
+<p>This option is primarily meant for testing and evaluation. Use it to figure out what exactly is produced by a specific GNSS receiver's configuration. An empty option field (default) means that you don't want BNC to print the message type numbers and antenna information carried in RTCM streams. 
+</p>
+
+<p><a name="pppclient"><h4>3.11. PPP Client</h4></p>
+<p>
+BNC can derive coordinates for a rover position following the Precise Point Positioning (PPP) approach. It uses either code or code plus phase data in ionosphere free linear combinations P3 or L3. Besides pulling a stream of observations from a dual frequency receiver, this also
+<ul>
+<li>requires pulling in addition a stream carrying satellite orbit and clock corrections to Broadcast Ephemeris in the form of 'State Space Representation' (SSR) messages as proposed by RTCM (i.e. premature message type 1060). Note that for BNC these correctors need to be referred to the satellite's Antenna Phase Center (APC). Streams providing such messages are listed on <u>http://igs.bkg.bund.de/ntrip/orbits</u>. Stream products.igs-ip.net:2101/CLK11 is an example.</li>
+<li>may require pulling a stream carrying Broadcast Ephemeris available as RTCM Version 3 message types 1019, 1020, and (proposed) 1045. This is a must only when the stream coming from the receiver does not contain Broadcast Ephemeris or provides them only at very low repetition rate. Streams providing such messages are listed on <u>http://igs.bkg.bund.de/ntrip/ephemeris</u>. Stream RTCM3EPH on caster products.igs-ip.net:2101 is an example.</li>
+</ul>
+</p>
+<p>
+The following figure provides the screenshot of an example PPP session with BNC.
+</p>
+
+<p><img src=":bnchelp/screenshot03.png"/></p>
+<p><u>Figure:</u> Precise Point Positioning (PPP, tab 1) with BNC.</p>
+
+<p><img src=":bnchelp/screenshot18.png"/></p>
+<p><u>Figure:</u> Precise Point Positioning (PPP, tab 2) with BNC.</p>
+
+<p>
+PPP results are shown in the 'Log' tab on the bottom of BNC's main window. Depending on the processing options, the following values are shown about once per second (example):
+<pre>
+10-09-08 09:14:06 FFMJ1  PPP 09:14:04.0 12    4053457.429 +-  2.323     617730.551 +-  1.630    4869395.266 +-  2.951
+</pre>
+</p>
+<p>
+The 'PPP' string in that is followed by the selected mounpoint, a PPP time stamp in GPS Time, the number of processed satellites, and XYZ coordinates with their formal errors as derived from the implemented filter in [m]. The implemented algorithm includes an outlier and cycle slip detection. The maximum for accepted residuals is hard coded to 10 meters for code observations and 10 centimeters for phase observations.
+</p>
+
+<p>
+More detailed PPP results are saved in BNC's logfile. Depending on the selected processing options you find
+<ul>
+<li>code and phase residuals for GPS and GLONASS and Galileo in [m], </li>
+<li>receiver clock errors in [m], </li>
+<li>a-priori and correction values of tropospheric zenith delay in [m], 
+<li>time offset between GPS time and Galileo time in [m], 
+<li>L3 biases, also known as 'floated ambiguities', given per satellite.
+</ul>
+These parameters are saved together with their standard deviation. The following is an example extract from a log file when BNC was in 'Single Point Positioning' (SPP) mode:
+<pre>
+10-12-06 18:10:50 Single Point Positioning of Epoch 18:10:48.0
+--------------------------------------------------------------
+18:10:48.0 RES G04   L3    0.0165   P3   -0.1250
+18:10:48.0 RES G11   L3    0.0150   P3    0.7904
+18:10:48.0 RES G13   L3    0.0533   P3    0.4854
+18:10:48.0 RES G17   L3   -0.0277   P3    1.2920
+18:10:48.0 RES G20   L3   -0.0860   P3   -0.1186
+18:10:48.0 RES G23   L3    0.0491   P3   -0.1052
+18:10:48.0 RES G31   L3    0.0095   P3   -3.2929
+18:10:48.0 RES G32   L3    0.0183   P3   -3.8800
+18:10:48.0 RES R05   L3   -0.0077
+18:10:48.0 RES R06   L3    0.0223
+18:10:48.0 RES R15   L3   -0.0020
+18:10:48.0 RES R16   L3    0.0156
+18:10:48.0 RES R20   L3   -0.0247
+18:10:48.0 RES R21   L3    0.0014
+18:10:48.0 RES R22   L3   -0.0072
+18:10:48.0 RES E52   L3   -0.0475   P3   -0.1628
+18:10:48.0 RES G04   L3    0.0166   P3   -0.1250
+18:10:48.0 RES G11   L3    0.0154   P3    0.7910
+18:10:48.0 RES G13   L3    0.0535   P3    0.4855
+18:10:48.0 RES G17   L3   -0.0272   P3    1.2925
+18:10:48.0 RES G20   L3   -0.0861   P3   -0.1188
+18:10:48.0 RES G23   L3    0.0489   P3   -0.1055
+18:10:48.0 RES G31   L3    0.0094   P3   -3.2930
+18:10:48.0 RES G32   L3    0.0183   P3   -3.8800
+18:10:48.0 RES R05   L3   -0.0079
+18:10:48.0 RES R06   L3    0.0223
+18:10:48.0 RES R15   L3   -0.0020
+18:10:48.0 RES R16   L3    0.0160
+18:10:48.0 RES R20   L3   -0.0242
+18:10:48.0 RES R21   L3    0.0016
+18:10:48.0 RES R22   L3   -0.0072
+18:10:48.0 RES E52   L3   -0.0474   P3    0.1385
+
+    clk     =  64394.754 +-  0.045
+    trp     =   2.185 +0.391 +-  0.001
+    offset  =   -415.400 +-  0.137
+    amb G17 =     11.942 +-  0.045
+    amb G23 =    248.892 +-  0.044
+    amb G31 =    254.200 +-  0.045
+    amb G11 =    -12.098 +-  0.044
+    amb G20 =   -367.765 +-  0.044
+    amb G04 =    259.588 +-  0.044
+    amb E52 =      6.124 +-  0.130
+    amb G32 =    201.496 +-  0.045
+    amb G13 =   -265.658 +-  0.044
+    amb R22 =   -106.246 +-  0.044
+    amb R21 =   -119.605 +-  0.045
+    amb R06 =     41.328 +-  0.044
+    amb R15 =    163.453 +-  0.044
+    amb R20 =   -532.746 +-  0.045
+    amb R05 =   -106.603 +-  0.044
+    amb R16 =   -107.830 +-  0.044
+</pre>
+</p>
+
+<p>
+Note that BNC's 'PPP Client' option can also be used in 'Offline Mode'. Apply the 'Offline Mode' command line options for that to read a file containing synchronized observations, orbit and clock corretors, and broadcast ephemeris. Such a file can be generated using BNC's 'Raw output file' option. The first five characters of the file name read in 'Offline Mode' must then be the same as the specified PPP 'Mounpoint': If you produce a 'Raw output file' named 'FFMJ1' then the PPP 'Mountpoint' needs to be also specified as 'FFMJ1' and the command line to execute BNC on a Windows system in 'Offline Mode' could look like:
+</p>
+
+<p>
+bnc.exe --conf c:\temp\BNC.ppp --file c:\temp\FFMJ1 --format RTCM_3
+</p>
+
+<p>
+Streams in a 'Raw output file' which shall later be used in an offline PPP calculation must all be encoded in the same format.
+</p>
+
+<p>When using the PPP option, it is important to understand which effects are corrected by BNC.
+</p>
+<ul>
+<li>BNC does correct for Solid Earth Tides and Phase Windup.</li>
+<li>Satellite Antenna Phase Center Offsets are not corrected because applied orbit/clock correctors are referred to the satellite's antenna phase center.</li>
+<li>Satellite Antenna Phase Center Variations are neglected because this is a small effect usually less than 2 centimeters.</li>
+<li>Observations can be corrected for a Receiver Antenna Offset. Depending on whether or not this correction is applied, the estimated position is either that of the receiver's antenna phase center or that of the receiver's Antenna Reference Point.</li>
+<li>Receiver Antenna Phase Center Variations are not included in the model. The bias caused by this neglect depends on the receiver antenna type. For most antennas it is smaller than a few centimeters.</li>
+<li>Ocean and atmospheric loading is neglected. Atmospheric loading is pretty small. Ocean loading is usually also a small effect but may reach up to about 10 centimeters for coastal stations.</li>
+<li>Rotational deformation due to polar motion (Polar Tides) is not corrected because this is a small effect usually less than 2 centimeters.</li>
+</ul>
+</p>
+
+<p><a name="pppmount"><h4>3.11.1 Obs Mountpoint - optional</h4></p>
+<p>
+Specify an 'Observations Mountpoint' from the list of selected 'Streams' you are pulling if you want BNC to derive coordinates for the affected rover position through a Point Positioning solution. 
+</p>
+<p>
+Furthermore, specify the Point Positioning method you want to apply. Options are 
+<ul>
+<li> Precise Point Positioning (PPP, default), and </li>
+<li> Single Point Positioning (SPP).</li>
+</ul>
+</p>
+
+<p><a name="pppxyz"><h4>3.11.1.1 XYZ - optional</h4></p>
+<p>
+Enter the reference coordinate components X,Y,Z of the receiver's position in meters if known. Default are empty option fields, meaning that the antenna's XYZ position is unknown. 
+</p>
+<p>
+Once XYZ coordinate components are defined, the 'PPP' line in BNC's logfile is extended by Nort, East and Up displacements to (example):
+</p>
+<pre>
+10-08-09 06:01:56 FFMJ1  PPP 06:02:09.0 11    4053457.628 +-  2.639     617729.438 +-  1.180    4869396.447 +-  1.921  NEU   -0.908   -0.571    1.629
+</pre>
+<p>
+The parameters following the 'NEU' string provide Nort, East and Up components of the current coordinate displacement in meters.
+</p>
+
+<p><a name="pppcorrmount"><h4>3.11.2 Corr Mountpoint - optional</h4></p>
+Specify an orbit/clock 'Corrections Mountpoint' from the list of selected 'Streams' you are pulling if you want BNC to correct your positioning solution accordingly.
+</p>
+
+<p><a name="pppopt"><h4>3.11.3 Options</h4></p>
+BNC allows to use different Point Positioning processing options depending on the capability of the involved receiver and the application in mind.
+</p>
+
+<p><a name="pppphase"><h4>3.11.3.1 Use Phase Obs - optional</h4></p>
+<p>
+By default BNC applies a Point Positioning solution using an ionosphere free P3 linear combination of code observations. Tick 'Use phase obs' for an ionosphere free L3 linear combination of phase observations.
+</p>
+
+<p><a name="ppptropo"><h4>3.11.3.2 Estimate Tropo - optional</h4></p>
+<p>
+BNC estimates the tropospheric delay according to equation
+<pre>
+T(z) = T_apr(z) + dT / cos(z)
+</pre>
+where T_apr is the a-priori tropospheric delay derived from Saastamoinen model.
+</p>
+<p>
+By default BNC does not estimate troposphere parameters. Tick 'Estimate tropo' to estimate troposphere parameters together with the coordinates and save T_apr and dT in BNC's log file.
+</p>
+
+<p><a name="pppglo"><h4>3.11.3.3 Use GLONASS - optional</h4></p>
+<p>
+By default BNC does not process GLONASS but only GPS observations when in Point Positioning mode. Tick 'Use GLONASS' to use GLONASS observations in addition to GPS (and Galileo if specified) for estimating coordinates in Point Positioning mode.
+</p>
+
+<p><a name="pppgal"><h4>3.11.3.4 Use Galileo - optional</h4></p>
+<p>
+By default BNC does not process Galileo but only GPS observations when in Point Positioning mode. Tick 'Use Galileo' to use Galileo observations in addition to GPS (and GLONASS if specified) for estimating coordinates in Point Positioning mode.
+</p>
+
+<p><a name="pppoptcont1"><h4>3.11.4 Options cont'd</h4></p>
+<p>
+You may want to introduce specific sigmas for code and phase observations. You may also like to carry out your PPP solution in Quick-Start mode or output a time series of displacement compoments.
+</p>
+
+<p><a name="pppsigxyzi"><h4>3.11.4.1 XYZ Init - mandatory</h4></p>
+<p>
+Enter a sigma in meters for the initial XYZ coordinate componentes. A value of 100.0 (default) may be an appropriate choice. However, this value may be significantly smaller (i.e. 0.01) when starting for example from a station with known XZY position in Quick-Start mode.
+</p>
+
+<p><a name="pppsigxyzn"><h4>3.11.4.2 XYZ White Noise - mandatory</h4></p>
+<p>
+Enter a sigma in meters for the 'White Noise' of estimated XYZ coordinate components. A value of 100.0 (default) may be appropriate considering the potential movement of a rover.
+</p>
+
+<p><a name="pppquick"><h4>3.11.4.3 Quick-Start - optional if XYZ is set</h4></p>
+<p>
+Enter the lenght of a startup period in seconds for which you want to fix the PPP solution to a known XYZ coordinate. Constraining coordinate components is done in BNC through setting the 'XYZ White Noise' temporarily to zero.
+</p>
+<p>
+This so-called Quick-Start option allows the PPP solutions to rapidly converge after startup. It requires that the antenna remains unmoved on the know position throughout the defined period. A value of 120 (default) is likely to be an appropriate choice for 'Quick-Start'
+<p>
+You may need to create your own reference coordinate through running BNC for an hour in normal mode before applying the Quick-Start option. Don't forget to introduce a realistic sigma 'XYZ Ini' according to the coordinate's precision.
+</p>
+
+<p><img src=":bnchelp/screenshot17.png"/></p>
+<p><u>Figure:</u> BNC in 'Quick-Start' mode</p>
+
+<p><a name="pppgap"><h4>3.11.4.4 Max Solution Gap - optional if Quick-Start is set</h4></p>
+<p>
+Specify a 'Maximum Solution Gap' in seconds. Should the time span between two consecutive solutions exceed this limit, the algorithm returns into the Quick-Start mode and fixes the introduced reference coordinate for the specified Quick-Start period. A value of '120' seconds could be an appropriate choice.
+</p>
+<p>
+This option makes only sense for a stationary operated receiver where solution convergence can be enforced because a good approximation for the rover position is known. Default is an empty option field, meaning that you don't want BNC to return into the Quick-Start mode after failures caused i.e. by longer lasting outages.
+</p>
+
+<p><a name="pppoutput"><h4>3.11.5 Output</h4></p>
+<p>
+BNC allows to output results from Precise Point Positioning in NMEA format. It can also plot a time series of North, East and UP displacements of coordinate components.
+</p>
+
+<p><a name="pppnmeafile"><h4>3.11.5.1 NMEA File - optional</h4></p>
+<p>
+The NMEA sentences generated about once per second are pairs of 
+<ul>
+<li> GPGGA sentences which mainly carry the estimated latitude, longitude, and height values, plus</li>
+<li> GPRMC sentences which mainly carry date and time information.</li>
+</ul>
+</p>
+<p>
+Specify the full path to a file where Point Positioning results are saved as NMEA messages. The default value for 'NMEA file' is an empty option field, meaning that BNC will not saved NMEA messages into a file.
+</p>
+<p>
+Note that Tomoji Takasu has written a Windows program called RTKPlot for visualizing NMEA strings. It is available from <u>http://gpspp.sakura.ne.jp/rtklib/rtklib.htm</u> and compatible with the NMEA output of BNC's 'PPP Client' option.
+</p>
+
+<p><a name="pppnmeaport"><h4>3.11.5.2 NMEA Port - optional</h4></p>
+<p>
+Specify the IP port number of a local port where Point Positioning results become available as NMEA messages. The default value for 'NMEA Port' is an empty option field, meaning that BNC does not provide NMEA messages vi IP port. Note that the NMEA file output and the NMEA IP port output are the same. 
+</p>
+<p>
+NASA's 'World Wind' software (see <u>http://worldwindcentral.com/wiki/NASA_World_Wind_Download</u>) can be used for real-time visualization of positions provided through BNC's NMEA IP output port. You need the 'GPS Tracker' plug-in available from <u>http://worldwindcentral.com/wiki/GPS_Tracker</u> for that. The 'Word Wind' is not meant for showing centimeter level details.
+</p>
+
+<p><a name="pppplot"><h4>3.11.5.3 PPP Plot - optional</h4></p>
+<p>
+PPP time series of North (red), East(green) and Up (blue) coordinate components will be plotted in the 'PPP Plot' tab when this option is ticked. Values will be either referred to an XYZ reference coordinate (if specified) or referred to the first estimated XYZ coordinate. The sliding PPP time series window will cover the period of the latest 5 minutes.
+</p>
+<p>
+Note that a PPP time series makes only sense for a stationary operated receiver.
+</p>
+
+<p><a name="ppprecant"><h4>3.11.6 Antennas - optional</h4></p>
+<p>
+BNC allows to correct observations for antenna phase center offsets and variations.
+</p>
+
+<p><a name="pppantex"><h4>3.11.6.1 ANTEX File - optional</h4></p>
+<p>
+IGS provides a file containing absolute phase center corrections for GNSS satellite and receiver antennas in ANTEX format. Entering the full path to such an ANTEX file is required for correcting observations for antenna phase center offsets and variations. It allows you to specify the name of your receiver's antenna (as contained in the ANTEX file) to apply such corrections.
+</p>
+<p>
+Default is an empty option field meaning that you don't want to correct observations for antenna phase center offsets and variations.
+</p>
+
+<p><a name="ppprecantenna"><h4>3.11.6.2 Receiver Antenna Name - optional if 'ANTEX File' is set</h4></p>
+<p>
+Specify the receiver's antenna name as defined in your ANTEX file. Observations will be corrected for the antenna phase center's offset which may result in a reduction of a few centimeters at max. Corrections for phase center variations are not yet applied by BNC. The specified name must consist of 20 characters. Add trailing blanks if the antenna name has less then 20 characters. Examples:
+<pre>
+'JPSREGANT_SD_E      ' (no radome)
+'LEIAT504        NONE' (no radome)
+'LEIAR25.R3      LEIT' (radome)
+</pre>
+</p>
+<p>
+Default is an empty option field meaning that you don't want to correct observations for antenna phase center offsets.
+</p>
+
+<p><a name="pppsatant"><h4>3.11.7 Satellite Antenna - optional</h4></p>
+<p>
+BNC allows to correct observations for satellite antenna phase center offsets. (This option is not yet implemented.)
+</p>
+
+<p><a name="pppsatantapply"><h4>3.11.7.1 Apply Offsets - optional if 'ANTEX File' is set</h4></p>
+<p>
+Satellite orbit and clock corrections refer to the satellite's antenna phase centers and hence observations are <u>not</u> to be corrected for satellite antenna phase center offsets. Tick 'Ignore Offsets' to force BNC to not correct observations for satellite antenna phase center offsets. So far satellite antenna phase center variations remain unconsidered in BNC.
+</p>
+<p>
+Default is to <u>not</u> correct observations for satellite antenna phase center offsets.
+</p>
+
+<p><a name="pppsigmas"><h4>3.11.8 Parameter Sigmas</h4></p>
+<p>
+You may like to introduce specific sigmas for code and phase observations and for the estimation of troposphere parameters.
+</p>
+
+<p><a name="pppsigc"><h4>3.11.8.1 Code - mandatory if 'Use Phase Obs' is set</h4></p>
+<p>
+When 'Use phase obs' is set in BNC, the PPP solution will be carried out using both, code and phase observations. A sigma of 5.0 m for code observations and a sigma of 0.02 m for phase observations (defauls) is used to combine both types of observations. As the convergence characteristic of a PPP solution can be influenced by the ratio of the sigmas for code and phase, you may like to introduce you own sigmas for code and phase observations which differ from the default values.
+<ul>
+<li>Introducing a smaller sigma (higher accuracy) for code observations or a larger sigma for phase observations leads to better results shortly after program start. However, it may take more time till you finally get the best possible solutions.</li>
+<li>Introducing a larger sigma (lower accuracy) for code observations or a smaller sigma for phase observations may lead to less accurate results shortly after program start and thus a prolonged period of convergence but could provide better positions in the long run.</li>
+</ul>
+</p>
+<p>
+Specify a sigma for code observations. Default is 5.0 m.
+</p>
+
+<p><a name="pppsigp"><h4>3.11.8.2 Phase - mandatory if 'Use Phase Obs' is set</h4></p>
+<p>
+Specify a sigma for phase observations. Default is 0.02 m.
+</p>
+
+<p><a name="pppsigtrpi"><h4>3.11.8.3 Tropo Init - mandatory if 'Estimate tropo' is set</h4></p>
+<p>
+Enter a sigma in meters for the a-priory model based tropospheric delay estimation. A value of 0.1 (default) may be an appropriate choice.
+</p>
+
+<p><a name="pppsigtrpn"><h4>3.11.8.4 Tropo White Noise - mandatory if 'Estimate tropo' is set</h4></p>
+<p>
+Enter a sigma in meters per second to describe the expected variation of the tropospheric effect. Supposing 1Hz observation data, a value of 1e-6 (default) would mean that the tropospheric effect may vary for 3600 * 1e-6 = 0.0036 meters per hour.
+</p>
+
+<p><a name="pppoptcont2"><h4>3.11.9 Options cont'd - optional</h4></p>
+<p>
+You may like to introduce sigmas for code and phase observations and the estimation of troposphere parameters.
+</p>
+
+<p><a name="pppsync"><h4>3.11.9.1 Sync Corr - optional</h4></p>
+<p>
+Zero value (or empty field) means that BNC processes each epoch of data immediately after its arrival using satellite clock corrections available at that time. Non-zero value 'Sync Corr' means that the epochs of data are buffered and the processing of each epoch is postponed till the satellite clock corrections not older than 'Sync Corr' are available. Specifying a value of half the update rate of the clock corrections as 'Sync Corr' (i.e. 5 sec) may be appropriate. Note that this causes an additional delay of the PPP solutions in the amount of the update rate.
+</p>
+<p>
+Using observations in sync with the corrections can avoid a possible high frequency noise of PPP solutions. Such noise could result from processing observations regardless of how late after a clock correction they were received. Note that applying the 'Sync Corr' option significantly reduces the PPP computation effort for BNC.
+</p>
+<p>
+Default is an empty option field, meaning that you want BNC to process observations immediately after their arrival through applying the latest received clock correction.
+</p>
+
+<p><a name="pppaverage"><h4>3.11.9.2 Averaging - optional if XYZ is set</h4></p>
+<p>
+Enter the length of a sliding time window in minutes. BNC will continuously output moving average values ns and their RMS as computed from those individual values obtained most recently throughout this period. RMS values presented for XYZ coordinates and tropospheric zenit path delays are bias reduced while RMS values for Nort/East/Up (NEU) displacements are not. Averaged values for XYZ coordinates and their RMS are marked with string &quot;AVE-XYZ&quot; in BNC's log file and 'Log' section while averaged values for NEU displacements and their RMS are marked with string &quot;AVE-NEU&quot; and averaged values for the tropospheric delays and their RMS are marked with string &quot;AVE-TRP&quot;. Example:
+</p>
+<pre>
+10-09-08 09:13:05 FFMJ1  AVE-XYZ 09:13:04.0   4053455.948 +-  0.284     617730.422 +-  0.504    4869397.692 +-  0.089
+10-09-08 09:13:05 FFMJ1  AVE-NEU 09:13:04.0    1.043 +-  0.179    0.640 +-  0.456    1.624 +-  0.331
+10-09-08 09:13:05 FFMJ1  AVE-TRP 09:13:04.0         2.336 +-  0.002
+</pre>
+<p>
+Entering any positive value up to 1440 (24h mean value) is allowed. An empty option field (default) means that you don't want BNC to output moving average positions into the log file and the 'Log' section. Note that averaging positions makes only sense for a stationary receiver.
+</p>
+
+<p><a name="combi"><h4>3.12. Combination</h4></p>
+<p>
+BNC allows to process several orbit and clock corrections streams in real-time to produce, encode, upload and save a combination of correctors from various providers. It is so far only the satellite clock corrections which are combined while orbit correctors in the combination product as well as the product update rates are just taken over from one of the incoming corrections streams. Combining only clock corrections using a fixed orbit reference has the possibility to introduce some analysis inconsistencies. We may therefore eventually consider improvements on this approach.
+</p>
+<p>
+The clock combination is based on a Kalman Filter. Satellite clocks estimated by individual Analyses Centers (ACs) are used as pseudo observations within the adjustment process. Each observation is modeled as a linear function (actually a simple sum) of three estimated parameters: AC specific offset, satellite specific offset common to all ACs, and the actual satellite clock correction which represents the result of the combination. These three parameter types differ in their statistical properties. The satellite clock offsets are assumed to be static parameters while AC specific and satellite specific offsets are stochastic parameters with appropriate white noise.
+ The solution is regularized by a set of minimal constraints.
+</p>
+<p>
+Removing the AC-dependent biases as well as possible is a major issue with clock combinations. Since they vary in time, it can be tricky to do this. Otherwise, there will be artificial jumps in the combined clock stream if one or more AC contributions drop out for certain epochs. Here the Kalman Filter approach is expected to do better than other approaches.
+</p>
+<p>
+In view of IGS real-time products, the 'Combination' functionality has been integrated in BNC because
+<ul>
+<li>the software with its Graphic User Interface and wide range of supported Operation Systems represents a perfect platform to process many broadcast corrections streams in parallel;</li>
+<li>outages of single AC product streams can be mitigated through merging several incoming streams into a combined product;</li>
+<li>generating a combination product from several AC products allows detecting and rejecting outliers;</li> 
+<li>a Combination Center (CC) can operate BNC to globally disseminate a combination product via NTRIP broadcast;</li>
+<li>an individual AC could prefer to disseminate a stream combined from primary and backup IT resources to reduce outages;</li>
+<li>it enables a BNC PPP user to follow his own preference in combining streams from individual ACs for Precise Point Positioning;</li>
+<li>it allows an instantaneous quality control of the combination process not only in the time domain but also in the space domain; this can be done through direct application of the combination stream in a PPP solution even without prior stream upload to an NTRIP Broadcaster;</li>
+<li>it provides the means to output SP3 files containing precise orbit and clock information for further processing using other tools than BNC.</li>
+</ul>
+</p>
+<p>
+Note that the combination process requires real-time access to Broadcast Ephemeris. So, in addition to the orbit and clock corrections streams BNC must pull a stream carrying Broadcast Ephemeris in the form of RTCM Version 3 messages. Stream RTCM3EPH on caster <u>products.igs-ip.net</u> is an example for that.
+</p>
+<p>
+With respect to IGS, it is important to understand that a major effect in the combination of GNSS orbit and clock corrections streams is the selection of ACs to include. It is likely that a combination product could be improved in accuracy by using only the best two or three ACs. However, with only a few  ACs to depend on, the reliability of the combination product could suffer and the risk of total failures increases. So there is an important tradeoff here that must be considered when selecting streams for a combination. The major strength of a combination product is its reliability and stable median performance which can be much better than that of any single AC product.
+</p>
+<p>
+This comment applies in situations where we have a limited number of solutions to combine and their quality varies significantly. The situation may be different when the total number of ACs is larger and the range of AC variation is smaller. In that case, a standard full combination is probably the best. 
+</p>
+
+<p>
+The following recursive algorithm is used to detect orbit outliers in the combination when corrections are provided by several ACs:
+<br>
+Step 1: We don’t produce a combination for a certain satellite if only one AC provides corrections for it.
+<br>
+Step 2: A mean satellite position is calculated as the average of positions from all ACs.
+<br>
+Step 3: For each AC and satellite the 3D distance between individual and mean satellite position is calculated.
+<br>
+Step 4: We find the greatest difference between AC specific and mean satellite positions.
+<br>
+Step 5: If that is less than 0.2 m the conclusion is that we don’t have an outlier and can proceed to the next epoch.
+<br>
+Step 6: If that is greater 0.2 m then corrections of the affiliated AC are ignored for the affected epoch and the outlier detection restarts with step 1.
+</p>
+
+<p>
+The part of BNC which enables the combination of orbit and clock corrections streams is not intended for publication under GNU General Public License (GPL). However, copies of pre-compiled BNC binaries which support the 'Combination' option may be made available for personal usage. This would be done on request and only in exceptional cases.
+</p>
+
+<p><a name="combimounttab"><h4>3.12.1 Combination Table - optional</h4></p>
+<p>
+Hit the 'Add Row' button, double click on the 'Mountpoint' field, enter a Broadcast Ephemeris corrections mountpoint from the 'Streams' section and hit Enter. Then double click on the 'AC Name' field to enter your choice of an abbreviation for the Analysis Center (AC) providing the stream. Finally, double click on the 'Weight' field to enter a weight to be applied to this stream in the combination. The stream processing can already be startet whith only one corrections stream configured for combination.
+</p>
+<p>
+Note that an appropriate 'Wait for full epoch' value needs to be specified for the combination under the 'Broadcast Corrections' tab. To give an example: a value of '15' sec would make sense if the update rate of incoming clock corrections is 10 sec.
+</p>
+<p>
+Note further that the sequence of entries in the 'Combination Table' is of importance. BNC considers the first AC in the 'Combination Table' as the 'Master AC'. The orbit information in the final combination stream is then just copied from the 'Master AC' orbits. Moreover, the update rate of the combination product is defined by the update rate of the 'Master AC' stream. If incoming streams have different rates, only epochs that correspond to the 'Master AC' update rate are used. The skipped epochs will be stored in the binary (raw) BNC file. The plain ASCII formated files described below will contain only the combination. This means that the 'Master AC' is responsible for two things: the satellite positions and the combination rate. 
+</p>
+<p>
+Default is an empty 'Combination Table' meaning that you don't want BNC to combine orbit and clock corrections streams.
+</p>
+
+<p><a name="combiadd"><h4>3.12.1.1 Add Row, Delete - optional</h4></p>
+<p>
+Hit 'Add Row' button to add another row to the 'Combination Table' or hit the 'Delete' button to delete the highlighted row(s).
+</p>
+
+<br>
+<p><img src=":bnchelp/screenshot21.png"/></p>
+<p><u>Figure:</u> BNC combining orbit/clock correctors streams, part 1.</p>
+<p></p>
+<p><img src=":bnchelp/screenshot20.png"/></p>
+<p><u>Figure:</u> BNC combining orbit/clock correctors streams, part 2.</p>
+
+
+<p><a name="upclk"><h4>3.13. Upload (clk)</h4></p>
+<p>
+BNC can upload streams carrying orbit and clock corrections to Broadcaste Ephemeris in radial, along-track and cross-track components if they are either<ol type=a> 
+<li>
+generated by BNC as a combination of several individual correctors streams coming in from an number of real-time Analysis Centers (ACs), see section 'Combination', or </li>
+<li>
+generated by BNC because the program receives an ASCII stream of satellite orbits and clocks via IP port (no NTRIP transport protocol) from a connected real-time GNSS engine in an SP3-like format named 'RTNET'. </li>
+</ol>
+The procedures taken by BNC to generate the clock and orbit corrections to Broadcast Ephemeris and upload them to an NTRIP Broadcaster are as follow:
+<ul>
+<li>Continuously receive up-to-date Broadcast Ephemeris carrying approximate orbits and clocks for all satellites. Read new Broadcast Ephemeris immediately whenever they become available. This information may come via RTCM messages from Tools like the 'BKG Ntrip Client' (BNC) provide this information.</li>
+</ul>
+Then, epoch by epoch: 
+<ul>
+<li>Continuously receive the best available clock and orbit estimates for all satellites in X,Y,Z Earth-Centered-Earth-Fixed IGS05 reference system. Receive them every epoch in a SP3-like format as provided by a real-time GNSS engine such as RTNet. </li>
+<li>Calculate X,Y,Z coordinates from Broadcast Ephemeris orbits. </li>
+<li>Calculate differences dX,dY,dZ between Broadcast Ephemeris and IGS05 orbits. </li>
+<li>Tranform these differences into radial, along-track and cross-track corrections to Broadcast Ephemeris orbits. </li>
+<li>Calculate corrections to Broadcast Ephemeris clocks as differences between Broadcast Ephemeris and IGS05 clocks. </li>
+<li>Encode Broadcast Ephemeris clock and orbit corrections in RTCM Version 3.x format. </li>
+<li>Upload corrections stream to NTRIP Broadcaster. </li>
+</ul>
+Although it is not compulsory, because BNS puts a significant load on the communication link, it is recommended that BNS, the Broadcast Ephemeris server (i.e. BNC), and the server providing orbits and clocks (i.e. RTNet) are run on the same host. 
+</p>
+
+<p><a name="upmntp"><h4>3.13.1 Mountpoint - optional if 'Combination Table' entries are specified</h4></p>
+
+<p>Enter a mountpoint string for the combination stream. If 'Host', 'Port' and 'Password' are set, the combination stream will be encoded in RTCM's premature so-called 'State Space Representation' (SSR) messages and uploaded to the specified broadcaster following the NTRIP Version 1.0 transport protocol. 
+</p>
+<p>
+Note that the mountpoint defined here can be introduced as 'Obs Mountpoint' under the 'PPP (1)' tab to carry out a Precise Point Positioning through directly applying the combination stream without pulling it from the NTRIP Broadcaster. 
+</p>
+<p>
+Default is an empty option field meaning that you don't want BNC to upload combined orbit and clock corrections streams to an NTRIP Broadcaster and you also don't want to save correctors in plain ASCII formatted files. 
+</p>
+
+<p><a name="uphost"><h4>3.13.2 Host, Port, Password - optional if 'Mountpoint' is set</h4></p>
+
+<p>
+Specify the domain name or IP number of an NTRIP Broadcaster for uploading the combination stream. Furthermore, specify the caster's listening IP port and an upload password. 
+</p>
+
+
+<p><a name="upascii"><h4>3.13.3 Directory, ASCII - optional if 'Mountpoint' is set</h4></p>
+<p>
+Specify a directory for saving the combined Broadcast Ephemeris corrections in a plain ASCII format on disc, see also 'Directory, ASCII' option under 'Broadcast Corrections' tab. 
+</p>
+<p>
+The interval for saving the ASCII files (or: length of the files) is defined by option 'Interval' under the 'Broadcast Corrections' tab. File names are generated from the 'Mountpoint' string specified for the combination. They follow the RINEX observation file name convention. 
+</p>
+<p>
+Default is an empty option field meaning that you don't want BNC to save the combination product in a plain ASCII formatted files. 
+</p>
+
+<p><a name="upsp3"><h4>3.13.4 Directory, SP3 - optional if 'Mountpoint' is set</h4></p>
+<p>
+Specify a directory for saving the combination of Broadcast Ephemeris and Broadcast Ephemeris corrections in SP3 format on disc. Default is an empty option field meaning that you don't want BNC to save the combination product in daily SP3 files. Note that the SP3 file output already works with only one corrections stream specified for combination. 
+</p>
+<p>
+As an SP3 file contents should be referred to the satellites Center of Mass (CoM) while correctors are referred to the satellites Antenna Phase Center (APC), an offset has to be applied which is available from an IGS ANTEX file (see section 'ANTEX File'). You should therefore specify the 'ANTEX File' path under tab 'PPP (2)' if you want to save a combination product in SP3 format. If you don't specify an 'ANTEX File' path there, the SP3 file contents will be referred to the satellites APCs. 
+</p>
+<p>
+The file names for the daily SP3 files follow the convention for SP3 file names. The first three characters of each file name are set to 'BNC'. 
+</p>
+<p>
+The following screenshots describe an example setup of BNC when combining orbit and clock correctors streams. Note that it requires to specify options under the tabs 'Combination', 'Broadcast Corrections' and 'PPP (2)'. The example also uses the combination product to simultaneously carry out a PPP solution with options shown in tab 'PPP (1)' - which enables to monitor the quality of the combination product in the space domain. 
+</p>
+
+<p><a name="upeph"><h4>3.14. Upload (eph) </h4></p>
+
+<p><a name="streams"><h4>3.15. Streams</h4></p>
+<p>
+Each stream on an NTRIP broadcaster (and consequently on BNC) is defined using a unique source ID called mountpoint. An NTRIP client like BNC access the desired data stream by referring to its mountpoint. Information about streams and their mountpoints is available through the source-table maintained by the NTRIP broadcaster. Note that mountpoints could show up in BNC more than once when retrieving streams from several NTRIP broadcasters.
+</p>
+
+<p>
+Streams selected for retrieval are listed under the 'Streams' canvas section on BNC's main window. The list provides the following information either extracted from source-table(s) produced by the NTRIP broadcasters or introduced by BNC's user:
+</p>
+<p>
+<table>
+<tr><td>'resource loader'&nbsp; </td><td>NTRIP broadcaster URL and port, or<br>TCP/IP host and port, or<br>UDP port, or<br>Serial input port specification.</td></tr>
+<tr><td>'mountpoint' &nbsp;</td><td>Mountpoint introduced by NTRIP broadcaster, or<br>Mountpoint introduced by BNC's user.</td></tr>
+<tr><td>'decoder' &nbsp;</td><td>Type of decoder used to handle the incoming stream content according to its format; editable.</td></tr>
+<tr><td>'lat' &nbsp;</td><td>Approximate latitude of reference station, in degrees, north; editable if 'nmea' = 'yes'.</td></tr>
+<tr><td>'long' &nbsp;</td><td>Approximate longitude of reference station, in degrees, east; editable if 'nmea' = 'yes'.</td></tr>
+<tr><td>'nmea' &nbsp;</td><td>Indicates whether or not streaming needs to be initiated by BNC through sending NMEA-GGA message carrying position coordinates in 'lat' and 'long'.</td></tr>
+<tr><td>'ntrip' &nbsp;</td><td>Selected NTRIP transport protocol version (1, 2, R, or U), or<br>'N' for TCP/IP streams without NTRIP, or<br>'UN' for UDP streams without NTRIP, or<br>'S' for serial input streams without NTRIP.</td></tr>
+<tr><td>'bytes' &nbsp;</td><td>Number of bytes received.
+</table>
+</p>
+
+<p><a name="streamedit"><h4>3.15.1 Edit Streams</h4></p>
+<ul>
+<li>
+BNC automatically allocates one of its internal decoders to a stream based on the stream's 'format' and 'format-details' as given in the source-table. However, there might be cases where you need to override the automatic selection due to incorrect source-table for example. BNC allows users to manually select the required decoder by editing the decoder string. Double click on the 'decoder' field, enter your preferred decoder and then hit Enter. The accepted decoder strings are 'RTCM_2.x', 'RTCM_3.x', and 'RTIGS'.
+</li>
+<li>
+In case you need to log the raw data as is, BNC allows users to by-pass its decoders and directly save the input in daily log files. To do this specify the decoder string as 'ZERO'. The generated file names are created from the characters of the streams mountpoints plus two-digit numbers each for year, month, and day. Example: Setting the 'decoder' string for mountpoint WTZZ0 to 'ZERO' and running BNC on March 29, 2007 would save the raw data in a file named WTZZ0_070329.
+</li>
+<li>
+BNC can also retrieve streams from virtual reference stations (VRS). To initiate these streams, an approximate rover position needs to be sent in NMEA format to the NTRIP broadcaster. In return, a user-specific data stream is generated, typically by a Network-RTK software. VRS streams are indicated by a 'yes' in the source-table as well as in the 'nmea' column on the 'Streams' canvas in BNC's main window. They are customized exactly to the latitude and longitude transmitted to the NTRIP broadcaster via NMEA-GGA messages.
+<br>If NMEA-GGA messages are not coming from a serial connected GNSS rover, BNC simulates them from the default latitude and longitude of the source-table as shown in the 'lat' and 'long' columns on the 'Streams' canvas. However, in most cases you would probably want to change these defaults according to your requirement. Double-click on 'lat' and 'long' fields, enter the values you wish to send and then hit Enter. The format is in positive north latitude degrees (e.g. for northern hemisphere: 52.436, for southern hemisphere: -24.567) and eastern longitude degrees (example: 358.872 or -1.128). Only streams with a 'yes' in their 'nmea' column can be edited. The position must preferably be a point within the VRS service area of the network. RINEX files generated from these streams will contain an additional COMMENT line in the header beginning with 'NMEA' showing the 'lat' and 'long' used.
+<br>Note that when running BNC in a Local Area Network (LAN), NMEA strings may be blocked by a proxy server, firewall or virus scanner.
+</li>
+</ul> 
+
+<p><a name="streamdelete"><h4>3.15.2 Delete Stream</h4></p>
+<p>
+To remove a stream from the 'Streams' canvas in the main window, highlight it by clicking on it and hit the 'Delete Stream' button. You can also remove multiple streams simultaneously by highlighting them using +Shift and +Ctrl.</p>
+
+<p><a name="streamconf"><h4>3.15.3 Reconfigure Streams On-the-fly</h4></p>
+<p>
+The streams selection can be changed on-the-fly without interrupting uninvolved threads in the running BNC process.
+</p>
+<p>
+<u>Window mode:</u> Hit 'Save &amp; Reread Configuration' while BNC is in window mode and already processing data to let changes of your streams selection immediately become effective.
+<p>
+<u>No window mode:</u> When operating BNC online in 'no window' mode (command line option -nw), you force BNC to reread its 'mountPoints' configuration option from disk at pre-defined intervals. Select '1 min', '1 hour', or '1 day' as 'Reread configuration' option to reread the 'mountPoints' option every full minute, hour, or day. This lets a 'mountPoints' option edited in between in the configuration file become effective without terminating uninvolved threads. See annexed section 'Configuration Example' for a configuration file example and a list of other on-the-fly changeable options.
+</p>
+
+<p><a name="logs"><h4>3.16. Logging</h4></p>
+<p>
+A tabs section on the bottom of the main window provides online control of BNC's activities. Tabs are available to show the records saved in a logfile, for a plot to control the bandwidth consumtion, for a plot showing stream latencies, and for time series plots of PPP results.
+</p>
+<p><a name="logfile"><h4>3.16.1 Log</h4></p>
+<p>
+Records of BNC's activities are shown in the 'Log' tab. They can be saved into a file when a valid path is specified in the 'Logfile (full path)' field.
+</p>
+
+<p><a name="throughput"><h4>3.16.2 Throughput</h4></p>
+<p>
+The bandwidth consumption per stream is shown in the 'Throughput' tab in bits per second (bps) or kilo bits per second (kbps). The following figure shows the bandwidth comsumption of incoming streams.
+</p>
+
+<p><img src=":bnchelp/screenshot08.png"/></p>
+<p><u>Figure:</u> Bandwidth consumption of incoming streams.</p>
+
+<p><a name="latency"><h4>3.16.3 Latency</h4></p>
+<p>
+The latency of observations in each incoming stream is shown in the 'Latency' tab in milliseconds or seconds. Streams not carrying observations (i.e. those providing only broadcast ephemeris messages) or having an outage are not considered here and shown in red color. Note that the calculation of correct latencies requires the clock of the host computer to be properly synchronized. The next figure shows the latency of incoming streams.
+</p>
+
+<p><img src=":bnchelp/screenshot07.png"/></p>
+<p><u>Figure:</u> Latency of incoming streams.</p>
+
+<p><a name="ppptab"><h4>3.16.4 PPP Plot</h4></p>
+<p>
+Precise Point Positioning time series of North (red), East (green) and Up (blue) coordinate components are shown in the 'PPP Plot' tab when a 'Origin' option is defined. Values are either referred to reference coordinates (if specified) or referred to the first estimated set of coordinate components. The time as given in format [hh:mm] refers to GPS Time. The sliding PPP time series window covers a period of 5 minutes. Note that it may take up to 30 seconds or more till the first PPP solutions becomes available. The following figure shows the screenshot of a PPP time series plot of North, East and Up coordiate components.
+</p>
+
+<p><img src=":bnchelp/screenshot13.png"/></p>
+<p><u>Figure:</u> Time series plot of PPP session.</p>
+
+<p><a name="bottom"><h4>3.17. Bottom Menu Bar</h4></p>
+<p>
+The bottom menu bar allows to add or delete streams to BNC's configuration and to start or stop it. It also provides access to BNC's online help function. The 'Add Stream' button opens a window that allows user to select one of several input communication links, see figure below.
+</p>
+
+<p><img src=":bnchelp/screenshot06.png"/></p>
+<p><u>Figure:</u> Steam input communication links.</p>
+
+<p><a name="streamadd"><h4>3.17.1 Add Stream - Coming from Caster</h4></p>
+
+<p>
+Button 'Add Stream' &gt; 'Coming from Caster' then opens a window that allows user to select data streams from an NTRIP broadcaster according to their mountpoints and show a distribution map of offered streams.
+</p> 
+
+<p><a name="streamhost"><h4>3.17.1.1 Caster Host and Port - mandatory</h4></p>
+<p>
+Enter the NTRIP broadcaster host IP and port number. Note that EUREF and IGS operate NTRIP broadcasters at <u>http://www.euref-ip.net/home</u> and <u>http://www.igs-ip.net/home</u> and <u>http://www.products.igs-ip.net/home</u>.
+</p> 
+
+<p><a name="streamtable"><h4>3.17.1.2 Casters Table - optional</h4></p>
+<p>
+It may be that your are not sure about your NTRIP broadcasters host and port number or you are interested in other broadcaster installations operated elsewhere. Hit 'Show' for a table of known broadcasters maintained at <u>www.rtcm-ntrip.org/home</u>. A window opens which allows to select a broadcaster for stream retrieval, see figure below.
+</p> 
+</p>
+<p><img src=":bnchelp/screenshot04.png"/></p>
+
+<p><u>Figure:</u> Casters table.</p>
+
+<p><a name="streamuser"><h4>3.17.1.3 User and Password - mandatory for protected streams</h4></p>
+<p>
+Some streams on NTRIP broadcasters may be restricted. Enter a valid 'User' ID and 'Password' for access to protected streams. Accounts are usually provided per NTRIP broadcaster through a registration procedure. Register through <u>http://igs.bkg.bund.de/ntrip/registeruser</u> for access to protected streams on <u>www.euref-ip.net</u> or <u>www.igs-ip.net</u> or <u>products.igs-ip.net</u>.
+</p> 
+
+<p><a name="gettable"><h4>3.17.1.4 Get Table</h4></p>
+<p>
+Use the 'Get Table' button to download the source-table from the NTRIP broadcaster. Pay attention to data fields 'format' and 'format-details'. Keep in mind that BNC can only decode and convert streams that come in RTCM Version 2.x, RTCM Version 3.x, or RTIGS format. For access to observations, ephemeris or ephemris correctiors, an RTCM Version 2.x streams must contain message types 18 and 19 or 20 and 21 while an RTCM Version 3.x streams must contain
+<ul>
+<li>GPS or SBAS message types 1002 or 1004, or</li>
+<li>GLONASS message types 1010 or 1012, or</li>
+<li>proposed State Space Representation messages for GPS and GLONASS, types 1057-1068, or</li>
+<li>proposed 'Multiple Signal Messages' (MSM) for GPS, GLONASS, or Galileo, types 1071-1077, 1081-1087, or 1091-1097.</li>
+</ul>
+see data field 'format-details' for available message types and their repetition rates in brackets. Note that in order to produce RINEX Navigation files RTCM Version 3.x streams containing message types 1019 (GPS) and 1020 (GLONASS) and 1045 (Galileo) are required. Select your streams line by line, use +Shift and +Ctrl when necessary. The figure below provides an example source-table.
+</p> 
+<p>
+The contents of data field 'nmea' tells you whether a stream retrieval needs to be initiated by BNC through sending an NMEA-GGA message carrying approximate position coordinates (virtual reference station).
+</p>
+<p>
+Hit 'OK' to return to the main window. If you wish you can click on 'Add Stream' and repeat the process again to retrieve streams from different casters.
+</p> 
+<p><img src=":bnchelp/screenshot05.png"/></p>
+<p><u>Figure:</u> Broadcaster source-table.</p>
+
+<p><a name="ntripv"><h4>3.17.1.5 NTRIP Version - mandatory</h4></p>
+<p>
+Some limitations and deficiencies of the NTRIP version 1 stream transport protocol are solved in NTRIP version 2. Improvements mainly concern a full HTTP compatibility in view of requirements coming from proxy servers. Version 2 is backwards compatible to Version 1. Options implemented in BNC are:
+</p>
+<p>
+&nbsp; 1:&nbsp; NTRIP version 1, TCP/IP.<br>
+&nbsp; 2:&nbsp; NTRIP version 2 in TCP/IP mode.<br>
+&nbsp; R:&nbsp; NTRIP version 2 in RTSP/RTP mode.<br>
+&nbsp; U:&nbsp; NTRIP version 2 in UDP mode.
+</p>
+<p>
+If NTRIP version 2 is supported by the broadcaster:
+</p>
+<ul>
+<li>Try using option '2' if your streams are otherwise blocked by a proxy server operated in front of BNC.</li>
+<li>Option 'R' or 'U' may be selected if latency is more important than completeness for your application. Note that the latency reduction is likely to be in the order of 0.5 sec or less. Note further that options 'R' (RTSP/RTP mode) and 'U' (UDP mode) are not accepted by proxy servers and a mobile Internet Service Provider may not support it.</li>
+</ul>
+<p>
+Select option '1' if you are not sure whether the broadcaster supports NTRIP version 2.</li>
+</p>
+
+<p><a name="map"><h4>3.17.1.6 Map - optional</h4></p>
+<p>
+Button 'Map' opens a window to show a distribution map of the casters's streams. You may like to zoom in or out using option 'Zoom +' or 'Zoom -'. You may also like to 'Clean' or 'Reset' a map or let it 'Fit' exactly to the current size of the window. Option 'Close' shuts the window.
+</p>
+
+<p><a name="streamip"><h4>3.17.2 Add Stream - Coming from TCP/IP Port</h4></p>
+<p>
+Button 'Add Stream' &gt; 'Coming from TCP/IP Port' allows to retrieve streams via TCP directly from an IP address without using the NTRIP transport protocol. For that you:
+<ul>
+<li>Enter the IP address of the stream providing host.</li>
+<li>Enter the IP port number of the stream providing host.</li>
+<li>Specify a mountpoint. Recommended is a 4-character station ID. Example: FFMJ</li>
+<li>Specify the stream format. Available options are 'RTCM_2', 'RTCM_3', 'RTIGS', and 'ZERO'.</li>
+<li>Enter the approximate latitude of the stream providing rover in degrees. Example: 45.32.</li>
+<li>Enter the approximate longitude of the stream providing rover in degrees. Example: -15.20.</li>
+</ul>
+</p>
+<p>
+Streams directly received from a TCP/IP port show up with an 'N' for 'No NTRIP' in the 'Streams' canvas section on BNC's main window . Latitude and longitude are to be entered just for informal reasons.
+<p>
+</p>
+Note that this option works only if no proxy server is involved in the communication link.
+</p>
+
+<p><a name="streamudp"><h4>3.17.3 Add Stream - Coming from UDP Port</h4></p>
+<p>
+Button 'Add Stream' &gt; 'Coming from UDP Port' allows to pick up streams arriving directly at one of the local host's UDP ports without using the NTRIP transport protocol. For that you:
+<ul>
+<li>Enter the local port number where the UDP stream arrives.</li>
+<li>Specify a mountpoint. Recommended is a 4-character station ID. Example: FFMJ</li>
+<li>Specify the stream format. Available options are 'RTCM_2', 'RTCM_3', 'RTIGS', and 'ZERO'.</li>
+<li>Enter the approximate latitude of the stream providing rover in degrees. Example: 45.32.</li>
+<li>Enter the approximate longitude of the stream providing rover in degrees. Example: -15.20.</li>
+</ul>
+</p>
+<p>
+Streams directly received at a UDP port show up with a 'UN' for 'UDP, No NTRIP' in the 'Streams' canvas section on BNC's main window . Latitude and longitude are to be entered just for informal reasons.
+<p>
+
+<p><a name="streamser"><h4>3.17.4 Add Stream - Coming from Serial Port</h4></p>
+<p>
+Button 'Add Stream' &gt; 'Coming from Serial Port' allows to retrieve streams from a GNSS receiver via serial port without using the NTRIP transport protocol. For that you:
+<ul>
+<li>Specify a mountpoint. Recommended is a 4-character station ID. Example: FFMJ</li>
+<li>Specify the stream format. Available options are 'RTCM_2', 'RTCM_3', 'RTIGS', and 'ZERO'.</li>
+<li>Enter the approximate latitude of the stream providing receiver in degrees. Example: 45.32.</li>
+<li>Enter the approximate longitude of the stream providing receiver in degrees. Example: -15.20.</li>
+<li>Enter the serial 'Port name' selected on your host for communication with the receiver. Valid port names are
+<pre>
+Windows:       COM1, COM2
+Linux:         /dev/ttyS0, /dev/ttyS1
+FreeBSD:       /dev/ttyd0, /dev/ttyd1
+Digital Unix:  /dev/tty01, /dev/tty02
+HP-UX:         /dev/tty1p0, /dev/tty2p0
+SGI/IRIX:      /dev/ttyf1, /dev/ttyf2
+SunOS/Solaris: /dev/ttya, /dev/ttyb
+</pre>
+</li>
+<li>Select a 'Baud rate' for the serial input. Note that using a high baud rate is recommended.</li>
+<li>Select the number of 'Data bits' for the serial input. Note that often '8' data bits are used.</li>
+<li>Select the 'Parity' for the serial input. Note that parity is often set to 'NONE'.</li>
+<li>Select the number of 'Stop bits' for the serial input. Note that often '1' stop bit is used.</li>
+<li>Select a 'Flow control' for the serial link. Select 'OFF' if you don't know better.</li>
+</ul>
+</p>
+<p>
+When selecting the serial communication options listed above, make sure that you pick those configured to the serial connected GNSS receiver. 
+</p>
+
+<p>
+Streams received from a serial connected GNSS receiver show up with an 'S' (for <u>S</u>erial Port, no NTRIP) in the 'Streams' canvas section on BNC's main window . Latitude and longitude are to be entered just for informal reasons.
+<p>
+
+<p>
+The following figure shows a BNC example setup for pulling a stream via serial port on a Linux operating system.
+</p>
+<p><img src=":bnchelp/screenshot15.png"/></p>
+<p><u>Figure:</u> BNC setup for pulling a stream via serial port.</p>
+
+<p><a name="start"><h4>3.17.5 Start</h4></p>
+<p>
+Hit 'Start' to start retrieving, decoding, and converting GNSS data streams in real-time. Note that 'Start' generally forces BNC to begin with fresh RINEX which might overwrite existing files when necessary unless the option 'Append files' is ticked.
+</p> 
+
+<p><a name="stop"><h4>3.17.6 Stop</h4></p>
+<p>
+Hit the 'Stop' button in order to stop BNC. 
+</p> 
+
+<p><a name="cmd"><h4>3.18. Command Line Options</h4></p>
+<p> 
+Command line options are available to run BNC in 'no window' mode or let it read data from a file in offline mode. BNC will then use processing options from the configuration file. Note that the self-explaining contents of the configuration file can easily be edited. It is possible to introduce a specific configuration file name instead of using the default name 'BNC.ini'.
+</p> 
+
+<p><a name="nw"><h4>3.18.1 No Window Mode - optional</h4></p>
+<p>
+Apart from its regular windows mode, BNC can be started on all systems as a background/batch job with command line option '-nw'. BNC will then run in 'no window' mode, using processing options from its configuration file on disk. Terminate BNC using Windows Task Manager when running it in 'no window' mode on Windows systems.
+</p> 
+<p> 
+Example:<br><br>
+bnc.exe -nw
+</p>
+
+<p><a name="post"><h4>3.18.2 Offline Mode - optional</h4></p>
+<p>
+Although BNC is primarily a real-time online tool, it can be run in offline mode to read data from a previously saved file (see chapter on saving 'Raw Output File') for post-processing purposes. Enter the following command line options for that:
+</p>
+<p>
+<ul>
+<li>'--file &lt;<u>inputFileName</u>&gt;' to enter the full path to an input file containing data previously saved by BNC.</li>
+<li>'--format &lt;<u>format</u>&gt;' to enter one of the file format describing strings 'RTCM_2', 'RTCM_3' or 'RTIGS'.</li>
+<li>'--staID &lt;<u>stationID</u>&gt;' to enter the mountpoint of one of the streams contained in the input file. This allows you to</li>
+<ul>
+<li>carry out an offline PPP solution using one particular (of probably several) orbit/clock corrections stream contained in the input file.</li>
+<li>offline convert one specific stream (of probably several streams) contained in the input file into a RINEX file.</li>
+</ul>
+
+</ul>
+<p>
+Example:<br><br>
+./bnc --file raw.output_110301 --format RTCM_3 --staID FFMJ1
+</p>
+<p>
+Note that when running BNC in offline mode, it will use options for file saving, interval, sampling, PPP etc. from its configuration file. Note further that only those data in the file will be processd offline which are encoded as specified with the --format option. 
+</p> 
+
+<p><a name="conffile"><h4>3.18.3 Configuration File - optional</h4></p>
+The default configuration file name is 'BNC.ini'. You may change this name at startup time using the command line option '--conf &lt;<u>confFileName</u>&gt;'. This allows to run several BNC jobs in parallel on the same host using different sets of configuration options. <u>confFileName</u> stands either for the full path to a configuration file or just for a file name. If you introduce only a filename, the corresponding file will be saved in the current working directory from where BNC is started.
+</p>
+<p>
+Example:<br><br>
+./bnc --conf MyConfig.ini
+</p> 
+<p> 
+This leads to a BNC job using configuration file 'MyConfig.ini'. The configuration file will be saved in the current working directory.
+</p> 
+<p> 
+On a Mac-OS X v10.6 (or higher) system the command line would be
+<br><br> 
+open -a /Applications/bnc.app --args -conf /Users/tsyan/MyConfig.ini
+<br><br>
+if the program is in /Applications and the configuration file 'MyConfig.ini' in /Users/tsyan.
+</p> 
+
+<p><a name="limits"><h3>4. Limitations &amp; Known Bugs</h3></p>
+<ul>
+<li>
+In Qt-based desktop environments (like KDE) on Unix/Linux platforms it may happen that you experience a crash of BNC at startup even when running the program in the background using the '-nw' option. This is a known bug most likely resulting from an incompatibility of Qt libraries in the environment and in BNC. Entering the command 'unset SESSION_MANAGER' before running BNC may help as a work-around. 
+</li>
+<li>
+Currently BNC only handles GPS, SBAS, GLONASS and Galileo data.
+</li>
+<li>BNC currently will only handle the following observation types:<br>
+For GPS satellites, 'G': C1C L1C D1C S1C C1W L1W D1W S1W C2P L2P D2P S2P C2X L2X D2X S2X C5 L5 D5 S5<br>
+For GLONASS satellites, 'R': C1C L1C D1C S1C C1P L1P D1P S1P C2P L2P D2P S2P C2C L2C D2C S2C<br>
+For Geostationary signal payloads, 'S': C1C L1C D1C S1C C1W L1W D1W S1W<br>
+For Galileo satellites, 'E': C1 L1 D1 S1 C5 L5 D5 S5<br>
+Which observables and indicators are available on a particular stream will depend on the setup of source receiver and the data format used. RTCM Version 2.x streams do not carry signal-to-noise ratio 'S' values.
+</li>
+<li>
+Using RTCM Version 3.x to produce RINEX files, BNC will properly handle message types 1002, 1004, 1010, 1012, 1071-1077, 1081-1087, or 1091-1097. However, when handling message types 1001, 1003, 1009 and 1011 where the ambiguity field is not set, the output will be no valid RINEX. All values will be stored modulo 299792.458 (speed of light).
+</li>
+<li>Concerning the RTCM Version 3.x premature message types 1057-1068 (see RTCM document 091-2009-SC104-542 'Version 3 Proposed Messages - Set 10'), a final decision is not yet made. Note the what's implemented in BNC is just a temporary solution.</li>
+<li>Concerning the RTCM Version 3.x premature message types 1071-1077, 1081-1087, 1091-1097 (see RTCM document 086-2010-SC104-587 'New RTCM-3 Multiple Signal Message Proposal for GPS, GLONASS and Galileo'), a final decision is not yet made. Note that what is implemented in BNC is just a temporary solution.</li>
+<li>
+Using RTCM Version 2.x, BNC will only handle message types 18 and 19 or 20 and 21 together with position and the antenna offset information carried in types 3 and 22. Note that processing carrier phase corrections and pseudo-range corrections contained in message types 20 and 21 needs access to broadcast ephemeris. Hence, whenever dealing with message types 20 and 21, make sure that broadcast ephemeris become available for BNC through also retrieving at least one RTCM Version 3.x stream carrying message types 1019 (GPS ephemeris) and 1020 (GLONASS ephemeris).
+</li>
+<li>
+Streams coming in RTIGS format carry only GPS data.
+</li>
+<li>
+BNC's 'Get Table' function only shows the STR records of a source-table. You can use an Internet browser to download the full source-table contents of any NTRIP broadcaster by simply entering its URL in the form of <u>http://host:port</u>. Data field number 8 in the NET records may provide information about where to register for an NTRIP broadcaster account.
+</li>
+<li>
+EUREF as well as IGS adhere to an open data policy. Streams are made available through NTRIP broadcasters at <u>www.euref-ip.net</u>, <u>www.igs-ip.net</u> and <u>products.igs-ip.net</u> free of charge to anyone for any purpose. There is no indication up until now how many users will need to be supported simultaneously. The given situation may develop in such a way that it might become difficult to serve all registered users at the same times. In cases where limited resources on the NTRIP broadcaster side (software restrictions, bandwidth limitation etc.) dictates, first priority in stream provision will be given to stream providers followed by re-broadcasting activities and real-time analysis centers while access to others might be temporarily denied.
+</li>
+<li>
+We experienced a limitation of the Standard Version of Microsoft Windows related to socket communication where sockets are not always handled properly. Since BNC makes intensive use of communication through sockets, we recommend to use the Server Version of Microsoft Windows when running BNC continuously for extended on a Windows platform.
+</li>
+<li>
+The source code provided by NRCan for decoding RTIGS streams is 32-bit dependent. Hence the BNC executable generated for 64-bit Linux systems would only run when compiled using the -m32 compiler option. 
+</li>
+<li>
+Once BNC has been started, many of its configuration options cannot be changed as long as it is stopped. See chapter 'Reread Configuration' for on-the-fly configuration exceptions.
+</li>
+
+</ul>
+<p><a name="authors"><h3>5. Authors</h3></p>
+<p>
+The BKG Ntrip Client (BNC) Qt Graphic User Interface (GUI) has been developed for the Federal Agency for Cartography and Geodesy (BKG) by Leos Mervart, Czech Technical University Prague, Department of Geodesy. BNC includes the following GNU GPL software components: 
+<ul>
+<li> RTCM 2.x decoder, written by Oliver Montenbruck, German Space Operations Center, DLR, Oberpfaffenhofen</li> 
+<li> RTCM 3.x decoder, written for BKG by Dirk Stoecker, Alberding GmbH, Schoenefeld</li> 
+<li> RTIGS decoder, written by Ken MacLeod, Natural Resources, Canada.</li> 
+</ul>
+</p>
+<p>
+Georg Weber<br>
+Federal Agency for Cartography and Geodesy (BKG)<br>
+Frankfurt, Germany<br>
+[euref-ip@bkg.bund.de] or [igs-ip@bkg.bund.de]
+</p>
+<p>
+<b>Acknowledgements</b><br>
+BNC's Help Contents has been proofread by Thomas Yan, University of New South Wales, Australia.<br>
+Scott Glazier, OmniSTAR Australia, included the decoding of broadcast ephemeris from RTIGS streams and has been helpful in finding BNC's bugs.<br>
+James Perlt, BKG, helped fixing bugs and redesigned BNC's main window.<br>
+Andre Hauschild, German Space Operations Center, DLR, revised the RTCMv2 decoder.<br>
+Zdenek Lukes, Czech Technical University Prague, Department of Geodesy, extended the RTCMv2 decoder to handle message types 3, 20, 21, and 22 and added loss of lock indicator.<br>
+Jan Dousa, Geodetic Observatory Pecny, Czech Republic, provided a tool for drawing stream distribution maps and also helped with fixing bugs.<br>
+Denis Laurichesse, Centre National d'Etudes Spatiales (CNES), suggested to synchronize observations and clock corrections to reduce high frequency noise in PPP solutions.
+</p>
+
+<p><a name="annex"><h3>6. Annex</h3></p>
+<p>
+6.1. <a href=#history>Revision History</a><br>
+6.2. <a href=#rtcm>RTCM</a><br>
+&nbsp; &nbsp; &nbsp; 6.2.1 NTRIP <a href=#ntrip1>Version 1</a><br>
+&nbsp; &nbsp; &nbsp; 6.2.2 NTRIP <a href=#ntrip2>Version 2</a><br>
+&nbsp; &nbsp; &nbsp; 6.2.3 RTCM <a href=#rtcm2>Version 2.x</a><br>
+&nbsp; &nbsp; &nbsp; 6.2.4 RTCM <a href=#rtcm3>Version 3.x</a><br>
+6.3. <a href=#rtigs>RTIGS</a><br>
+&nbsp; &nbsp; &nbsp; 6.3.1 <a href=#soc>SOC</a><br>
+6.4. <a href=#config>Configuration Example</a><br>
+6.5. <a href=#links>Links</a><br>
+</p>
+
+<p><a name=history><h3>6.1 Revision History</h3></p>
+<table>
+<tr></tr>
+
+<tr>
+<td>Dec 2006 &nbsp;</td><td>Version 1.0b &nbsp;</td>
+<td>[Add] First Beta Binaries published based on Qt 4.2.3.</td>
+</tr>
+
+<tr>
+<td>Jan 2007 &nbsp;</td><td>Version 1.1b &nbsp;</td>
+<td>[Add] Observables C2, S1, and S2<br>[Add] Virtual reference station access<br>[Bug] RTCM2 decoder time tag fixed<br>[Mod] Small letters for public RINEX skeleton files<br>[Add] Online help through Shift+F1</td>
+</tr>
+
+<tr>
+<td>Apr 2007 &nbsp;</td><td>Version 1.2b &nbsp;</td>
+<td>[Bug] Output only through IP port<br>[Bug] Method 'reconnecting' now thread-save<br> [Add] ZERO decoder added<br> [Mod] Download public RINEX skeletons once per day<br> [Mod] Upgrade to Qt Version 4.2.3<br> [Mod] Replace 'system' call for RINEX script by 'QProcess'<br> [Add] HTTP Host directive for skeleton file download<br> [Add] Percent encoding for user IDs and passwords<br> [Bug] Exit execution of calling thread for RTCM3 streams<br> [Bug] Signal-slot mechanism for threads</td>
+</tr>
+
+<tr>
+<td>May 2007 &nbsp;</td><td>Version 1.3 &nbsp;</td>
+<td>[Add] Source code published.</td>
+</tr>
+
+<tr>
+<td>Jul 2007 &nbsp;</td><td>Version 1.4 &nbsp;</td>
+<td>[Bug] Skip messages from proxy server<br> [Bug] Call RINEX script through 'nohup'</td>
+</tr>
+
+<tr>
+<td>Apr 2008 &nbsp;</td><td>Version 1.5 &nbsp;</td>
+<td>[Add] Handle ephemeris from RTCM Version 3.x streams<br> [Add] Upgrade to Qt Version 4.3.2<br> [Add] Optional RINEX v3 output<br> [Add] SBAS support<br> [Bug] RINEX skeleton download following stream outage<br> [Add] Handle ephemeris from RTIGS streams<br> [Add] Monitor stream failure/recovery and latency<br> [Mod] Redesign of main window<br> [Bug] Freezing of About window on Mac systems<br> [Bug] Fixed problem with PRN 32 in RTCMv2 decoder<br> [Bug] Fix for Trimble 4000SSI receivers in RTCMv2 decoder<br> [Mod] Major revision of input buffer in RTCMv2 decoder</td>
+</tr>
+
+<tr>
+<td>Dec 2008 &nbsp;</td><td>Version 1.6 &nbsp;</td>
+<td>[Mod] Fill blanc columns in RINEXv3 with 0.000<br> [Add] RTCMv3 decoder for clock and orbit corrections<br>[Add] Check RTCMv3 streams for incoming message types<br> [Add] Decode RTCMv2 message types 3, 20, 21, and 22<br> [Add] Loss of lock and lock time indicator<br> [Bug] Rounding error in RTCMv3 decoder concerning GLONASS height<br> [Mod] Accept GLONASS in RTCMv3 when transmitted first<br> [Add] Leap second 1 January 2009<br> [Add] Offline mode, read data from file<br> [Add] Output antenna descriptor, coordinates and excentricities from RTCMv3<br> [Add] Reconfiguration on-the-fly<br> [Mod] Binary output of synchronized observations<br> [Add] Binary output of unsynchronized observations<br> [Bug] Fixed problem with joined RTCMv3 blocks</td>
+</tr>
+
+<tr>
+<td>Dec 2008 &nbsp;</td><td>Version 1.6.1 &nbsp;</td>
+<td>[Mod] HTTP GET when no proxy in front</td>
+</tr>
+
+<tr>
+<td>Nov 2009 &nbsp;</td><td>Version 1.7 &nbsp;</td>
+<td>[Bug] RINEX navigation file format<br> [Add] Upgrade to Qt Version 4.5.2<br> [Add] Support of NTRIP v2<br> [Add] Rover support via serial port<br> [Add] Show broadcaster table from www.rtcm-ntrip.org<br> [Add] Enable/disable tab widgets<br> [Add] User defined configuration file name<br> [Mod] Switch to configuration files in ini-Format<br> [Add] Daily logfile rotation<br> [Add] Read from TCP/IP port, by-pass NTRIP transport protocol<br> [Add] Save NMEA messages coming from rover<br> [Add] Auto start<br> [Add] Drag and drop ini files<br> [Add] Read from serial port, by-pass NTRIP transport protocol<br> [Mod] Update of SSR messages following RTCM 091-2009-SC104-542<br> [Add] Read from UPD port, by-pass NTRIP transport protocol<br> [Mod] Output format of Broadcast Corrections<br> [Add] Throughput plot<br> [Add] Latency plot</td>
+</tr>
+
+<tr>
+<td>Nov 2009 &nbsp;</td><td>Version 1.8 &nbsp;</td>
+<td>[Mod] On-the-fly reconfiguration of latency and throughput plots</td>
+</tr>
+
+<tr>
+<td>Feb 2010 &nbsp;</td><td>Version 2.0 &nbsp;</td>
+<td>[Mod] Change sign of Broadcast Ephemeris correctors<br> [Add] Real-time PPP option</td>
+</tr>
+
+<tr>
+<td>Jun 2010 &nbsp;</td><td>Version 2.1 &nbsp;</td>
+<td>[Bug] SSR GLONASS message generation<br> [Add] PPP in post-processing mode<br> [Mod] Update of SSR messages following draft dated 2010-04-12<br> [Mod] Generating error message when observation epoch is wrong</td>
+</tr>
+
+<tr>
+<td>Jul 2010 &nbsp;</td><td>Version 2.2 &nbsp;</td>
+<td>[Bug] GLONASS ephemeris time</td>
+</tr>
+
+<tr>
+<td>Aug 2010 &nbsp;</td><td>Version 2.3 &nbsp;</td>
+<td>[Mod] Internal format for saving raw streams<br> [Bug] Outlier detection in GLONASS ambiguity resolution<br> [Mod] Format of PPP logs in logfile<br> [Bug] Complete acceleration terms for GLONASS ephemeris<br> [Bug] Handling ephemeris IOD's in PPP mode</td>
+</tr>
+
+<tr>
+<td>Dec 2010 &nbsp;</td><td>Version 2.4 &nbsp;</td>
+<td>[Add] Output of averaged positions when in PPP mode<br> [Mod] Use always the latest received set of broadcast ephemeris<br> [Add] QuickStart PPP option<br> [Mod] Improvement of data sharing efficiency among different threads<br> [Mod] Design of PPP tab section<br> [Add] Sigmas for observations and parameters<br> [Add] Stream distribution map<br> [Bug] GPS Ephemeris in RINEX v3 format</td>
+</tr>
+
+<tr>
+<td>Feb 2011 &nbsp;</td><td>Version 2.5 &nbsp;</td>
+<td>[Add] PPP option for sync of clock observations and corrections<br> [Add] Drafted RTCMv3 Galileo ephemeris messages 1045<br> [Add] Drafted RTCMv3 Multipe Signal Messages<br> [Add] Optional specification of sigmas for coordinates and troposphere in PPP<br> [Add] Include Galileo in SPP<br> [Add] Include Galileo observations in output via IP port<br> [Add] Include Galileo observations in output via RINEXv3 files<br> [Mod] Interface format for feeding a real-time engine with observations<br> [Add] Correct observations for antenna phase center offsets<br> [Add] Combine orbit/clock correctors streams<br> [Add] Specify corrections mountpoint in PPP tab</td>
+</tr>
+
+<tr>
+<td>Apr 2011 &nbsp;</td><td>Version 2.6 &nbsp;</td>
+<td>[Add] SP3 output<br> [Mod] RTCMv3 Galileo Broadcast Ephemeris message 1045</td>
+</tr>
+
+</table>
+</p>
+
+<p><a name="rtcm"><h4>6.2. RTCM</h4></p>
+
+<p>
+The Radio Technical Commission for Maritime Services (RTCM) is an international non-profit scientific, professional and educational organization. Special Committees provide a forum in which governmental and non-governmental members work together to develop technical standards and consensus recommendations in regard to issues of particular concern. RTCM is engaged in the development of international standards for maritime radionavigation and radiocommunication systems. The output documents and reports prepared by RTCM Committees are published as RTCM Recommended Standards. Topics concerning Differential Global Navigation Satellite Systems (DGNSS) are handled by the Special Committee SC 104.
+<p>
+Personal copies of RTCM Recommended Standards can be ordered through <u>http://www.rtcm.org/orderinfo.php</u>.
+</p>
+
+<p><a name="ntrip1"><h4>6.2.1 NTRIP Version 1</h4></p>
+
+<p>
+'Networked Transport of RTCM via Internet Protocol' Version 1.0 (NTRIP) stands for an application-level protocol streaming Global Navigation Satellite System (GNSS) data over the Internet. NTRIP is a generic, stateless protocol based on the Hypertext Transfer Protocol HTTP/1.1. The HTTP objects are enhanced to GNSS data streams.
+</p>
+
+<p>
+NTRIP Version 1.0 is an RTCM standard designed for disseminating differential correction data (e.g. in the RTCM-104 format) or other kinds of GNSS streaming data to stationary or mobile users over the Internet, allowing simultaneous PC, Laptop, PDA, or receiver connections to a broadcasting host. NTRIP supports wireless Internet access through Mobile IP Networks like GSM, GPRS, EDGE, or UMTS.
+</p>
+
+<p>
+NTRIP is implemented in three system software components: NTRIP clients, NTRIP servers and NTRIP broadcasters. The NTRIP broadcaster is the actual HTTP server program whereas NTRIP client and NTRIP server are acting as HTTP clients.
+</p>
+
+<p>
+NTRIP is an open none-proprietary protocol. Major characteristics of NTRIP's dissemination technique are:
+<ul>
+<li>Based on the popular HTTP streaming standard; comparatively easy to implement when having limited client and server platform resources available.</li>
+<li>Application not limited to one particular plain or coded stream content; ability to distribute any kind of GNSS data.</li>
+<li>Potential to support mass usage; disseminating hundreds of streams simultaneously for thousands of users possible when applying modified Internet Radio broadcasting software.</li>
+<li>Considering security needs; stream providers and users don't necessarily get into contact, streams often not blocked by firewalls or proxy servers protecting Local Area Networks.</li>
+<li>Enables streaming over mobile IP networks because of using TCP/IP.</li>
+</ul>
+</p>
+
+<p>
+The NTRIP broadcaster maintains a source-table containing information on available NTRIP streams, networks of NTRIP streams and NTRIP broadcasters. The source-table is sent to an NTRIP client on request. Source-table records are dedicated to one of the following: Data Streams (record type STR), Casters (record type CAS), or Networks of streams (record type NET).
+</p>
+
+<p>
+Source-table records of type STR contain the following data fields: 'mountpoint', 'identifier', 'format', 'format-details', 'carrier', 'nav-system', 'network', 'country', 'latitude', 'longitude', 'nmea', 'solution', 'generator', 'compr-encryp', 'authentication', 'fee', 'bitrate', 'misc'.
+</p>
+<p>
+Source-table records of type NET contain the following data fields: 'identifiey', 'operator', 'authentication', 'fee', 'web-net', 'web-str', 'web-reg', 'misc'.
+</p>
+<p>
+Source-table records of type CAS contain the following data fields: 'host', 'port', 'identifier', 'operator', 'nmea', 'country', 'latitude', 'longitude', 'misc'.
+</p>
+
+<p><a name="ntrip2"><h4>6.2.1 NTRIP Version 2</h4></p>
+
+<p>
+The major changes of NTRIP version 2.0 compared to version 1.0 are:
+</p>
+
+<ul>
+<li>cleared and fixed design problems and HTTP protocol violations;</li>
+<li>replaced non standard directives;</li>
+<li>chunked transfer encoding;</li>
+<li>improvements in header records;</li>
+<li>source-table filtering; and</li>
+<li>RTSP communication.</li>
+</ul>
+
+<p>NTRIP version 2 allows to either communicate in TCP/IP mode or in RTSP/RTP mode or in UDP mode whereas version 1 is limited to TCP/IP only.
+</p>
+
+<p><a name="rtcm2"><h4>6.2.3 RTCM Version 2.x</h4></p>
+<p>
+Transmitting GNSS carrier phase data can be done through RTCM Version 2.x messages. Please note that only RTCM Version 2.2 and 2.3 streams may include GLONASS data. Messages that may be of some interest here are:
+</p>
+
+<ul>
+<li>
+Type 1 message is the range correction message and is the primary message in code-phase differential positioning (DGPS). It is computed in the base receiver by computing the error in the range measurement for each tracked SV.
+</li>
+<li>
+Type 2 message is automatically generated when a new set of satellite ephemeris is downloaded to the base receiver. It is the computed difference between the old ephemeris and the new ephemeris. Type 2 messages are used when the base station is transmitting Type 1 messages.
+</li>
+<li>
+Type 3 and 22 messages are the base station position and the antenna offset. Type 3 and 22 are used in RTK processing to perform antenna reduction.
+</li>
+<li>
+Type 6 message is a null frame filler message that is provided for data links that require continuous transmission of data, even if there are no corrections to send. As many Type 6 messages are sent as required to fill in the gap between two correction messages (type 1). Message 6 is not sent in burst mode.
+</li>
+<li>
+Type 9 message serves the same purpose as Type 1, but does not require a complete satellite set. As a result, Type 9 messages require a more stable clock than a station transmitting Type 1 's, because the satellite corrections have different time references.
+</li>
+<li>
+Type 16 message is simply a text message entered by the user that is transmitted from the base station to the rover. It is used with code-phase differential.
+</li>
+<li>
+Type 18 and 20 messages are RTK uncorrected carrier phase data and carrier phase corrections.
+</li>
+<li>
+Type 19 and 21 messages are the uncorrected pseudo-range measurements and pseudo-range corrections used in RTK.
+</li>
+<li>
+Type 23 message provides the information on the antenna type used on the reference station. 
+</li>
+<li>
+Type 24 message carries the coordinates of the installed antenna's ARP in the GNSS coordinate system coordinates.
+</li>
+</ul>
+
+<p><a name="rtcm3"><h4>6.2.4 RTCM Version 3.x</h4></p>
+<p>
+RTCM Version 3.x has been developed as a more efficient alternative to RTCM Version 2.x. Service providers and vendors have asked for a standard that would be more efficient, easy to use, and more easily adaptable to new situations. The main complaint was that the Version 2 parity scheme was wasteful of bandwidth. Another complaint was that the parity is not independent from word to word. Still another was that even with so many bits devoted to parity, the actual integrity of the message was not as high as it should be. Plus, 30-bit words are awkward to handle. The Version 3.x standard is intended to correct these weaknesses.
+</p>
+<p>
+RTCM Version 3.x defines a number of message types. Messages that may be of interest here are:
+<ul>
+<li>Type 1001, GPS L1 code and phase.</li>
+<li>Type 1002, GPS L1 code and phase and ambiguities and carrier to noise ratio.</li>
+<li>Type 1003, GPS L1 and L2 code and phase.</li>
+<li>Type 1004, GPS L1 and L2 code and phase and ambiguities and carrier to noise ratio.</li>
+<li>Type 1005, Station coordinates XYZ for antenna reference point.</li>
+<li>Type 1006, Station coordinates XYZ for antenna reference point and antenna height.</li>
+<li>Type 1007, Antenna descriptor and ID.</li>
+<li>Type 1008, Antenna serial number.</li>
+<li>Type 1009, GLONASS L1 code and phase.</li>
+<li>Type 1010, GLONASS L1 code and phase and ambiguities and carrier to noise ratio.</li>
+<li>Type 1011, GLONASS L1 and L2 code and phase.</li>
+<li>Type 1012, GLONASS L1 and L2 code and phase and ambiguities and carrier to noise ratio.</li>
+<li>Type 1013, Modified julian date, leap second, configured message types and interval.</li>
+<li>Type 1014 and 1017, Network RTK (MAK) messages (under development).</li>
+<li>Type 1019, GPS ephemeris.</li>
+<li>Type 1020, GLONASS ephemeris.</li>
+<li>Type 4088 and 4095, Proprietary messages (under development).
+</li>
+</ul>
+</p>
+
+<p>
+The following are proposed 'Multiple Signal Messages' (MSM) under discussion for standardization:
+<ul>
+<li>Type 1045, Galileo ephemeris.</li>
+<li>Type 1071, Compact GPS pseudo-ranges</li>
+<li>Type 1072, Compact GPS carrier phases</li>
+<li>Type 1073, Compact GPS pseudo-ranges and carrier phases</li>
+<li>Type 1074, Full GPS pseudo-ranges and carrier phases plus signal strength</li>
+<li>Type 1075, Full GPS pseudo-ranges, carrier phases, Doppler and signal strength</li>
+<li>Type 1076, Full GPS pseudo-ranges and carrier phases plus signal strength (high resolution)</li>
+<li>Type 1077, Full GPS pseudo-ranges, carrier phases, Doppler and signal strength (high resolution)<br></li>
+<li>Type 1081, Compact GLONASS pseudo-ranges</li>
+<li>Type 1082, Compact GLONASS carrier phases</li>
+<li>Type 1083, Compact GLONASS pseudo-ranges and carrier phases</li>
+<li>Type 1084, Full GLONASS pseudo-ranges and carrier phases plus signal strength</li>
+<li>Type 1085, Full GLONASS pseudo-ranges, carrier phases, Doppler and signal strength</li>
+<li>Type 1086, Full GLONASS pseudo-ranges and carrier phases plus signal strength (high resolution)</li>
+<li>Type 1087, Full GLONASS pseudo-ranges, carrier phases, Doppler and signal strength (high resolution)<br></li>
+<li>Type 1091, Compact Galileo pseudo-ranges</li>
+<li>Type 1092, Compact Galileo carrier phases</li>
+<li>Type 1093, Compact Galileo pseudo-ranges and carrier phases</li>
+<li>Type 1094, Full Galileo pseudo-ranges and carrier phases plus signal strength</li>
+<li>Type 1095, Full Galileo pseudo-ranges, carrier phases, Doppler and signal strength</li>
+<li>Type 1096, Full Galileo pseudo-ranges and carrier phases plus signal strength (high resolution)</li>
+<li>Type 1097, Full Galileo pseudo-ranges, carrier phases, Doppler and signal strength (high resolution)<br></li>
+</ul>
+</p>
+
+<p>
+The following are proposed 'State Space Representation' (SSR) messages under discussion for standardization:
+<ul>
+<li>Type 1057, GPS orbit corrections to Broadcast Ephemeris</li>
+<li>Type 1058, GPS clock corrections to Broadcast Ephemeris</li>
+<li>Type 1059, GPS code biases</li>
+<li>Type 1060, Combined orbit and clock corrections to GPS Broadcast Ephemeris</li>
+<li>Type 1061, GPS User Range Accuracy (URA)</li>
+<li>Type 1062, High-rate GPS clock corrections to Broadcast Ephemeris</li>
+<li>Type 1063, GLONASS orbit corrections to Broadcast Ephemeris</li>
+<li>Type 1064, GLONASS clock corrections to Broadcast Ephemeris</li>
+<li>Type 1065, GLONASS code biases</li>
+<li>Type 1066, Combined orbit and clock corrections to GLONASS Broadcast Ephemeris</li>
+<li>Type 1067, GLONASS User Range Accuracy (URA)</li>
+<li>Type 1068, High-rate GLONASS clock corrections to Broadcast Ephemeris</li>
+</ul>
+</p>
+
+<p><a name="rtigs"><h4>6.3. RTIGS</h4></p>
+<p>
+RTIGS stands for a data format and transport protocol for GPS observations. It was defined by the Real-Time IGS Working Group (RTIGS WG). Its definition is based on the SOC format. Every RTIGS record has one of the following numbers:
+</p>
+<p>
+Station record number 100<br>
+Observation record (O_T) number 200<br>
+Ephemeris record (E_T) number 300<br>
+Meteorological record (M_T) number 400
+</p>
+<p>
+Every station has one of the following unique numbers:
+</p>
+<p>
+1-99 reserved for JPL<br>
+100-199 reserved for NRCan<br>
+200-299 reserved for NGS<br>
+300-399 reserved for ESOC<br>
+400-499 reserved for GFZ<br>
+500-599 reserved for BKG<br>
+600-699 reserved for GEOSCIENCE AUS<br>
+700-799 others<br>
+etc
+</p>
+<p>
+The number of bytes in each real time message includes the header as well as the data content, but NOT the pointer. 
+</p>
+<p>
+For example:
+</p>
+<ul>
+<li>A station message is output once per hour and is 20 bytes.</li>
+<li>An observation message is output once per second. The header is 12 bytes long and the SOC data is 21 bytes per PRN. So a typical RTIGSO_T message will be 390 bytes if 8 sats are being tracked.</li>
+<li>An ephemeris message is output when the ephemeris is decoded by the GPS receiver. The time in the ephemeris header is the collected time. Only one ephemeris can be bundled in a RTIGSE_T message.<br>
+A RTIGSE_T message contains one eph. The message consists of 12 header bytes and 72 ephemeris bytes, for a total of 84 bytes.</li>
+<li>The RTIGSM_T (met) message should be issued once every 15 minutes. A basic met message consists of a 12 byte header and 3 longs (temp, press and relative humidity) for a total of 24 bytes.</li>
+</ul>
+<p>
+All records are related to a station configuration indicated by the Issue of Data Station (IODS). The IODS will enable the user to identify the equipment and software that was used to derive the observation data.
+</p>
+<p>
+Each record header contains the GPS Time in seconds which flows continuously from 6 Jan-1980 onwards.
+</p>
+<p>
+The data payload of each record consists of observations. The structures indicate a pointer to data but in fact the broadcast messages do not contain the pointer, only the data. Users will have to manage the data and the pointer is shown in order to illustrate where the data is located in the message and one possible data management option.
+</p>
+<p>
+All record data are in network byte order (Big Endian), i.e. IA32 users have to swap bytes.
+</p>
+<p>
+Visit <u>http://igscb.jpl.nasa.gov/mail/igs-rtwg/2004/msg00001.html</u> for further details.
+</p>
+
+<p><a name="soc"><h4>6.3.1 SOC</h4></p>
+<p>
+The SOC format has been designed in July 1999 by the Jet Propulsion Laboratory (JPL) and the California Institute of Technology (CalTech) to transport 1Hz GPS data with minimal bandwidth over the open Internet. SOC follows the 'little-endian' byte order meaning that the low-order byte of a number is stored in memory at the lowest address, and the high-order byte at the highest address. Because the transport layer is UDP, the format does not include sync bits, a checksum, or cyclic redundancy checksum (CRC). SOC allows to transport the GPS observable CA, P1, P2, L1, and L2, efficiently compressed down to 14 bytes with 1 mm range resolution and 0.02 mm phase resolution. SOC contains epochs for cycle slips, a stand-alone time-tag per epoch, a minimum representation of the receiver's clock solution, 3 SNR numbers, a unique site id, a modulo 12 hour sequence number and flags for receiver type and GPS health. SOC's simple structure comprises an 8 byte header, a 9 byte overhead for timetag, number of gps, etc., plus 21 data bytes per gps.
+</p>
+<p>
+Visit <u>http://gipsy.jpl.nasa.gov/igdg/papers/SOC_FORMAT.ppt</u> for further details.
+</p>
+<p>
+</p>
+<p><a name="config"><h4>6.4. Configuration Example</h4></p>
+<p>
+The following table's left column is an example for the contents of a configuration file 'BNC.ini'. It enables the retrieval of stream ACOR0 form www.euref-ip.net for the generation of 15 min RINEX files. RINEX files are uploaded to an archive using script 'up2archive' :
+</p>
+<table>
+<tr></tr>
+<tr><td><b>Option</b></td><td><b>Affiliation</b></td></tr>
+<tr><td>[General]</td><td>Settings: Group</td></tr>
+<tr><td>adviseFail=15</td><td>Outages: Failure threshold</td></tr>
+<tr><td>adviseReco=5</td><td>Outages: Recovery threshold</td></tr>
+<tr><td>adviseScript=</td><td>Outages: Script (full path)</td></tr>
+<tr><td>autoStart=0</td><td>General: Auto start</td></tr>
+<tr><td>binSample=0</td><td>Feed Engine: Sampling</td></tr>
+<tr><td>casterUrlList=http://user:pass@euref-ip:2101</td><td>Internal memory: Visited URLs</td></tr>
+<tr><td>corrIntr=1 day</td><td>Broadcast Corrections: Interval</td></tr>
+<tr><td>corrPath=</td><td>Broadcast Corrections: Directory, ASCII </td></tr>
+<tr><td>corrPort=</td><td>Broadcast Corrections: Port</td></tr>
+<tr><td>corrTime=5</td><td>Broadcast Corrections: Wait for full epoch</td></tr>
+<tr><td>ephIntr=15 min</td><td>RINEX Ephemeris: Interval</td></tr>
+<tr><td>ephPath=</td><td>RINEX Ephemeris: Directory</td></tr>
+<tr><td>ephV3=0</td><td>RINEX Ephemeris: Version 3</td></tr>
+<tr><td>font=</td><td>Internal memory: Used font</td></tr>
+<tr><td>logFile=/home/weber/bnc.log</td><td>General: Logfile (full path)</td></tr>
+<tr><td>rawOutFile=</td><td>General: Raw output file (full path)</td></tr>
+<tr><td>miscMount=</td><td>Miscellaneous: Mountpoint</td></tr>
+<tr><td>mountPoints=//user:pass@www.euref-ip.net:2101<br>/ACOR0 RTCM_2.3 43.36 351.60 no 1</td><td>Streams: broadcaster:port/mountpoint</td></tr>
+<tr><td>ntripVersion=1</td><td>Add Stream: NTRIP Version</td></tr>
+<tr><td>obsRate=</td><td>Outages: Observation rate</td></tr>
+<tr><td>onTheFlyInterval=1 day</td><td>General: Reread configuration</td></tr>
+<tr><td>outEphPort=</td><td>RINEX Ephemeris: Port</td></tr>
+<tr><td>outFile=</td><td>Feed Engine: File (full path)</td></tr>
+<tr><td>outPort=</td><td>Feed Engine: Port</td></tr>
+<tr><td>outUPort=</td><td>Feed Engine: Port (unsynchronized)</td></tr>
+<tr><td>perfIntr=</td><td>Miscellaneous: Log latency</td></tr>
+<tr><td>proxyHost=</td><td>Proxy: Proxy host</td></tr>
+<tr><td>proxyPort=</td><td>Proxy: Proxy port</td></tr>
+<tr><td>rnxAppend=2</td><td>General: Append files</td></tr>
+<tr><td>rnxIntr=15 min</td><td>RINEX Observations: Interval</td></tr>
+<tr><td>rnxPath=/home/user/rinex</td><td>RINEX Observations: Directory</td></tr>
+<tr><td>rnxSample=0</td><td>RINEX Observations: Sampling</td></tr>
+<tr><td>rnxScript=/home/user/rinex/up2archive</td><td>RINEX Observations: Script (full path)</td></tr>
+<tr><td>rnxSkel=</td><td>RINEX Observations: Skeleton extension</td></tr>
+<tr><td>rnxV3=0</td><td>RINEX Observation: Version 3</td></tr>
+<tr><td>scanRTCM=0</td><td>Miscellaneous: Scan RTCM</td></tr>
+<tr><td>serialAutoNMEA=Auto</td><td>Serial Output: NMEA</td></tr>
+<tr><td>serialBaudRate=9600</td><td>Serial Output: Baud rate</td></tr>
+<tr><td>serialDataBits=8</td><td>Serial Output: Data bits</td></tr>
+<tr><td>serialFileNMEA=</td><td>Serial Output: NMEA file name</td></tr>
+<tr><td>serialHeightNMEA=</td><td>Serial Output: Height</td></tr>
+<tr><td>serialMountPoint=</td><td>Serial Output: Mountpoint</td></tr>
+<tr><td>serialParity=NONE</td><td>Serial Output: Parity</td></tr>
+<tr><td>serialPortName=</td><td>Serial Output: Port name</td></tr>
+<tr><td>serialStopBits=1</td><td>Serial Output: Stop bits</td></tr>
+<tr><td>serialFlowControl=</td><td>Serial Output: Flow control</td></tr>
+<tr><td>startTab=0</td><td>Internal memory: Top tab index</td></tr>
+<tr><td>statusTab=0</td><td>Internal memory: Bottom tab index</td></tr>
+<tr><td>waitTime=5</td><td>Feed Engine: Wait for full epoch</td></tr>
+<tr><td>pppMount=</td><td>PPP Client: Observations Mountpoint</td></tr>
+<tr><td>pppCorrMount=</td><td>PPP Client: Corrections Mountpoint</td></tr>
+<tr><td>pppSPP=PPP</td><td>PPP Client: PPP/SPP</td></tr>
+<tr><td>pppSigmaCode=5.0</td><td>PPP Client: Sigma for Code observations</td></tr>
+<tr><td>pppSigmaPhase=0.02</td><td>PPP Client: Sigma for Phase observations</td></tr>
+<tr><td>pppQuickStart=200</td><td>PPP Client: Quick-Start period</td></tr>
+<tr><td>pppSigmaCrd0=100.0</td><td>PPP Client: Sigma for initial XYZ coordinate</td></tr>
+<tr><td>pppSigmaCrdP=100.0</td><td>PPP Client: White noise for XYZ</td></tr>
+<tr><td>pppSigmaTrp0=0.1</td><td>PPP Client: Sigma for initial tropospheric delay</td></tr>
+<tr><td>pppSigmaTrpP=1e-6</td><td>PPP Client: White noise for tropospheric delay</td></tr>
+<tr><td>pppAverage=</td><td>PPP Client: Lenght of time window for moving average</td></tr>
+<tr><td>pppUsePhase=0</td><td>PPP Client: Use phase data </td></tr>
+<tr><td>pppEstTropo=0</td><td>PPP Client: Estimate troposphere</td></tr>
+<tr><td>pppGLONASS=0</td><td>PPP Client: Use GLONASS</td></tr>
+<tr><td>pppGalileo=0</td><td>PPP Client: Use Galileo</td></tr>
+<tr><td>pppPlotCoordinates=0</td><td>PPP Client: Plot NEU time series</td></tr>
+<tr><td>pppRefCrdX=</td><td>PPP Client: X coordinate of plot origin</td></tr>
+<tr><td>pppRefCrdY=</td><td>PPP Client: Y coordinate of plot origin</td></tr>
+<tr><td>pppRefCrdZ=</td><td>PPP Client: Z coordinate of plot origin</td></tr>
+<tr><td>pppAntenna=</td><td>PPP Client: Antenna name</td></tr>
+<tr><td>pppAntex=</td><td>PPP Client: Path to ANTEX file</td></tr>
+<tr><td>pppApplySatAnt=</td><td>PPP Client: Apply sat antenna phase center Offset</td></tr>
+<tr><td>pppSync=</td><td>PPP Client: Sync observations and corrections</td></tr>
+<tr><td>nmeaFile=</td><td>PPP Client: NMEA outputfile</td></tr>
+<tr><td>nmeaPort=</td><td>PPP Client: NMEA IP output port</td></tr>
+<tr><td>combineStreams=</td><td>Combination: List of correctors streams</td></tr>
+<tr><td>cmbOutHost=</td><td>Combination: Ntrip caster for stream upload</td></tr>
+<tr><td>cmbOutPort=</td><td>Combination: Port of Ntrip caster</td></tr>
+<tr><td>cmbMountpoint=</td><td>Combination: Mountpoint on Ntrip caster</td></tr>
+<tr><td>cmbPassword=</td><td>Combination: Stream upload password</td></tr>
+<tr><td>cmbOutFile=</td><td>Combination: Directory, ASCII</td></tr>
+<tr><td>cmbSP3File=</td><td>Combination: Directory, SP3</td></tr>
+</table>
+</p>
+<p>
+Note that the following configuration options saved on disk can be changed/edited on-the-fly while BNC is already processing data:
+</p>
+<p>
+<ul>
+<li>'mountPoints' to change the selection of streams to be processed, see section 'Streams',</li>
+<li>'waitTime' to change the 'Wait for full epoch' option, see section 'Feed Engine', and</li>
+<li>'binSampl' to change the 'Sampling' option, see section 'Feed Engine'.</li>
+</ul>
+</p>
+
+<p><a name="links"><h3>6.5 Links</h3></p>
+<table>
+<tr></tr>
+<tr><td>NTRIP &nbsp;</td><td><u>http://igs.bkg.bund.de/ntrip/about</u></td></tr>
+<tr><td>EUREF-IP NTRIP broadcaster &nbsp;</td><td><u>http://www.euref-ip.net/home</u></td></tr>
+<tr><td>IGS-IP NTRIP broadcaster &nbsp;</td><td><u>http://www.igs-ip.net/home</u></td></tr>
+<tr><td>IGS products NTRIP broadcaster &nbsp;</td><td><u>http://products.igs-ip.net/home</u></td></tr>
+<tr><td>Distribution of IGS-IP streams &nbsp;</td><td><u>http://www.igs.oma.be/real_time/</u></td></tr>
+<tr><td>Completeness and latency of IGS-IP data &nbsp;</td><td><u>http://www.igs.oma.be/highrate/</u></td></tr>
+<tr><td>NTRIP broadcaster overview &nbsp;</td><td><u>http://www.rtcm-ntrip.org/home</u></td></tr>
+<tr><td>NTRIP Open Source software code &nbsp;</td><td><u>http://software.rtcm-ntrip.org</u></td></tr>
+<tr><td>EUREF-IP Project &nbsp;</td><td><u>http://www.epncb.oma.be/euref_IP</u></td></tr>
+<tr><td>Real-time IGS Pilot Project &nbsp;</td><td><u>http://www.rtigs.net/pilot</u></td></tr>
+<tr><td>Radio Technical Commission<br>for Maritime Services &nbsp;</td><td><u>http://www.rtcm.org</u>
+</table>
+
Index: branches/BNC_LM/bnchlpdlg.cpp
===================================================================
--- branches/BNC_LM/bnchlpdlg.cpp	(revision 3570)
+++ branches/BNC_LM/bnchlpdlg.cpp	(revision 3570)
@@ -0,0 +1,106 @@
+// Part of BNC, a utility for retrieving decoding and
+// converting GNSS data streams from NTRIP broadcasters.
+//
+// Copyright (C) 2007
+// German Federal Agency for Cartography and Geodesy (BKG)
+// http://www.bkg.bund.de
+// Czech Technical University Prague, Department of Geodesy
+// http://www.fsv.cvut.cz
+//
+// Email: euref-ip@bkg.bund.de
+//
+// This program is free software; you can redistribute it and/or
+// modify it under the terms of the GNU General Public License
+// as published by the Free Software Foundation, version 2.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+/* -------------------------------------------------------------------------
+ * BKG NTRIP Client
+ * -------------------------------------------------------------------------
+ *
+ * Class:      bncHlpDlg
+ *
+ * Purpose:    Displays the help
+ *
+ * Author:     L. Mervart
+ *
+ * Created:    24-Sep-2006
+ *
+ * Changes:    
+ *
+ * -----------------------------------------------------------------------*/
+
+#include "bnchlpdlg.h"
+#include "bnchtml.h"
+
+// Constructor
+////////////////////////////////////////////////////////////////////////////
+bncHlpDlg::bncHlpDlg(QWidget* parent, const QUrl& url) :
+                    QDialog(parent) {
+
+  const int ww = QFontMetrics(font()).width('w');
+
+  bncHtml* _tb = new bncHtml;
+  setWindowTitle("Help Contents");
+  _tb->setSource(url);
+  _tb->setReadOnly(true);
+  connect(_tb, SIGNAL(backwardAvailable(bool)),
+          this, SLOT(backwardAvailable(bool)));
+  connect(_tb, SIGNAL(forwardAvailable(bool)),
+          this, SLOT(forwardAvailable(bool)));
+
+  QVBoxLayout* dlgLayout = new QVBoxLayout;
+  dlgLayout->addWidget(_tb);
+
+  QHBoxLayout* butLayout = new QHBoxLayout;
+
+  _backButton = new QPushButton("Backward");
+  _backButton->setMaximumWidth(10*ww);
+  _backButton->setEnabled(false);
+  connect(_backButton, SIGNAL(clicked()), _tb, SLOT(backward()));
+  butLayout->addWidget(_backButton);
+
+  _forwButton = new QPushButton("Forward");
+  _forwButton->setMaximumWidth(10*ww);
+  _forwButton->setEnabled(false);
+  connect(_forwButton, SIGNAL(clicked()), _tb, SLOT(forward()));
+  butLayout->addWidget(_forwButton);
+
+  _closeButton = new QPushButton("Close");
+  _closeButton->setMaximumWidth(10*ww);
+  butLayout->addWidget(_closeButton);
+  connect(_closeButton, SIGNAL(clicked()), this, SLOT(close()));
+
+  dlgLayout->addLayout(butLayout);
+
+  setLayout(dlgLayout);
+  resize(60*ww, 60*ww);
+  show();
+}
+
+// Destructor
+////////////////////////////////////////////////////////////////////////////
+bncHlpDlg::~bncHlpDlg() {
+  delete _tb;
+  delete _backButton;
+  delete _forwButton;
+  delete _closeButton;
+}
+
+// Slots
+////////////////////////////////////////////////////////////////////////////
+void bncHlpDlg::backwardAvailable(bool avail) {
+  _backButton->setEnabled(avail);
+}
+
+void bncHlpDlg::forwardAvailable(bool avail) {
+  _forwButton->setEnabled(avail);
+}
Index: branches/BNC_LM/bnchlpdlg.h
===================================================================
--- branches/BNC_LM/bnchlpdlg.h	(revision 3570)
+++ branches/BNC_LM/bnchlpdlg.h	(revision 3570)
@@ -0,0 +1,53 @@
+// Part of BNC, a utility for retrieving decoding and
+// converting GNSS data streams from NTRIP broadcasters.
+//
+// Copyright (C) 2007
+// German Federal Agency for Cartography and Geodesy (BKG)
+// http://www.bkg.bund.de
+// Czech Technical University Prague, Department of Geodesy
+// http://www.fsv.cvut.cz
+//
+// Email: euref-ip@bkg.bund.de
+//
+// This program is free software; you can redistribute it and/or
+// modify it under the terms of the GNU General Public License
+// as published by the Free Software Foundation, version 2.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+#ifndef BNCHLPDLG_H
+#define BNCHLPDLG_H
+
+#include <QtCore>
+#include <QtGui>
+
+class bncHtml;
+
+class bncHlpDlg : public QDialog {
+  Q_OBJECT
+
+  public:
+    bncHlpDlg(QWidget* parent, const QUrl& url);
+    ~bncHlpDlg();
+
+  signals:
+ 
+  public slots:
+    void backwardAvailable(bool);
+    void forwardAvailable(bool);
+
+  private:
+    bncHtml*     _tb;
+    QPushButton* _backButton;
+    QPushButton* _forwButton;
+    QPushButton* _closeButton;
+};
+
+#endif
Index: branches/BNC_LM/bnchtml.cpp
===================================================================
--- branches/BNC_LM/bnchtml.cpp	(revision 3570)
+++ branches/BNC_LM/bnchtml.cpp	(revision 3570)
@@ -0,0 +1,69 @@
+// Part of BNC, a utility for retrieving decoding and
+// converting GNSS data streams from NTRIP broadcasters.
+//
+// Copyright (C) 2007
+// German Federal Agency for Cartography and Geodesy (BKG)
+// http://www.bkg.bund.de
+// Czech Technical University Prague, Department of Geodesy
+// http://www.fsv.cvut.cz
+//
+// Email: euref-ip@bkg.bund.de
+//
+// This program is free software; you can redistribute it and/or
+// modify it under the terms of the GNU General Public License
+// as published by the Free Software Foundation, version 2.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+/* -------------------------------------------------------------------------
+ * BKG NTRIP Client
+ * -------------------------------------------------------------------------
+ *
+ * Class:      bncHtml
+ *
+ * Purpose:    HTML Browser
+ *
+ * Author:     L. Mervart
+ *
+ * Created:    14-Sep-2006
+ *
+ * Changes:    
+ *
+ * -----------------------------------------------------------------------*/
+
+#include "bnchtml.h" 
+
+using namespace std;
+
+// Constructor
+////////////////////////////////////////////////////////////////////////////
+bncHtml::bncHtml() : QTextBrowser() {
+
+  connect(this,SIGNAL(anchorClicked(const QUrl&)),
+          this,SLOT(slotAnchorClicked(const QUrl&)));
+}
+
+// Destructor
+////////////////////////////////////////////////////////////////////////////
+bncHtml::~bncHtml() {
+
+}
+
+// 
+////////////////////////////////////////////////////////////////////////////
+void bncHtml::slotAnchorClicked(const QUrl& url) {
+
+ 
+  QString href = url.toString();
+  if (href.indexOf(':') != 0) {
+    QUrl urlNew; urlNew.setPath(":bnchelp.html" + href);
+    setSource(url);
+  }
+}
Index: branches/BNC_LM/bnchtml.h
===================================================================
--- branches/BNC_LM/bnchtml.h	(revision 3570)
+++ branches/BNC_LM/bnchtml.h	(revision 3570)
@@ -0,0 +1,40 @@
+// Part of BNC, a utility for retrieving decoding and
+// converting GNSS data streams from NTRIP broadcasters.
+//
+// Copyright (C) 2007
+// German Federal Agency for Cartography and Geodesy (BKG)
+// http://www.bkg.bund.de
+// Czech Technical University Prague, Department of Geodesy
+// http://www.fsv.cvut.cz
+//
+// Email: euref-ip@bkg.bund.de
+//
+// This program is free software; you can redistribute it and/or
+// modify it under the terms of the GNU General Public License
+// as published by the Free Software Foundation, version 2.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+#ifndef BNCHTML_H
+#define BNCHTML_H
+
+#include <QTextBrowser>
+
+class bncHtml : public QTextBrowser {
+  Q_OBJECT
+
+  public:
+    bncHtml();
+    ~bncHtml();
+
+  public slots:
+    void slotAnchorClicked(const QUrl& url);
+};
+#endif
Index: branches/BNC_LM/bncipport.cpp
===================================================================
--- branches/BNC_LM/bncipport.cpp	(revision 3570)
+++ branches/BNC_LM/bncipport.cpp	(revision 3570)
@@ -0,0 +1,159 @@
+// Part of BNC, a utility for retrieving decoding and
+// converting GNSS data streams from NTRIP broadcasters.
+//
+// Copyright (C) 2009
+// German Federal Agency for Cartography and Geodesy (BKG)
+// http://www.bkg.bund.de
+// Czech Technical University Prague, Department of Geodesy
+// http://www.fsv.cvut.cz
+//
+// Email: euref-ip@bkg.bund.de
+//
+// This program is free software; you can redistribute it and/or
+// modify it under the terms of the GNU General Public License
+// as published by the Free Software Foundation, version 2.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+/* -------------------------------------------------------------------------
+ * BKG NTRIP Client
+ * -------------------------------------------------------------------------
+ *
+ * Class:      bncIpPort
+ *
+ * Purpose:    Select host for stream retrieval without NTRIP
+ *
+ * Author:     G. Weber
+ *
+ * Created:    18-Feb-2009
+ *
+ * Changes:    
+ *
+ * -----------------------------------------------------------------------*/
+
+#include <iostream>
+
+#include "bncipport.h"
+
+using namespace std;
+
+// Constructor
+////////////////////////////////////////////////////////////////////////////
+bncIpPort::bncIpPort(QWidget* parent) : QDialog(parent) {
+
+  setMinimumSize(400,150);
+  QVBoxLayout* mainLayout = new QVBoxLayout(this);
+  QGridLayout* editLayout = new QGridLayout;
+
+  setWindowTitle(tr("Add Stream from TCP/IP Port"));
+
+  _ipHostLineEdit = new QLineEdit();
+  _ipPortLineEdit = new QLineEdit();
+  _ipMountLineEdit = new QLineEdit();
+  _ipFormatLineEdit = new QLineEdit();
+  _ipLatLineEdit = new QLineEdit();
+  _ipLonLineEdit = new QLineEdit();
+
+  int ww = QFontMetrics(font()).width('w');
+  _ipPortLineEdit->setMaximumWidth(9*ww);
+  _ipMountLineEdit->setMaximumWidth(9*ww);
+  _ipFormatLineEdit->setMaximumWidth(9*ww);
+  _ipLatLineEdit->setMaximumWidth(9*ww);
+  _ipLonLineEdit->setMaximumWidth(9*ww);
+
+  // WhatsThis
+  // ---------
+  _ipHostLineEdit->setWhatsThis(tr("<p>If no proxy server is involed in the communication, BNC allows to retrieve streams via TCP directly from an IP address without using the NTRIP transport protocol.</p><p>Enter the IP address of the stream providing host.</p>"));
+  _ipPortLineEdit->setWhatsThis(tr("<p>Enter the IP port number of the stream providing host.</p>"));
+  _ipMountLineEdit->setWhatsThis(tr("<p>Specify a mountpoint.</p><p>Recommended is a 4-character station ID.<br>Example: FFMJ</p>"));
+  _ipFormatLineEdit->setWhatsThis(tr("<p>Specify the stream format.</p><p>Available options are 'RTCM_2', 'RTCM_3', and 'ZERO'.</p>"));
+  _ipLatLineEdit->setWhatsThis(tr("<p>Enter the approximate latitude of the stream providing receiver in degrees.<p></p>Example: 45.32</p>"));
+  _ipLonLineEdit->setWhatsThis(tr("<p>Enter the approximate longitude of the stream providing receiver in degrees.<p></p>Example: -15.20</p>"));
+
+  editLayout->addWidget(new QLabel(tr("Host")),      0, 0, Qt::AlignRight);
+  editLayout->addWidget(_ipHostLineEdit,             0, 1);
+  editLayout->addWidget(new QLabel(tr("Port")),      0, 2, Qt::AlignRight);
+  editLayout->addWidget(_ipPortLineEdit,             0, 3);
+  editLayout->addWidget(new QLabel(tr("Mountpoint")),1, 0, Qt::AlignRight);
+  editLayout->addWidget(_ipMountLineEdit,            1, 1);
+  editLayout->addWidget(new QLabel(tr("Format")),    1, 2, Qt::AlignRight);
+  editLayout->addWidget(_ipFormatLineEdit,           1, 3);
+  editLayout->addWidget(new QLabel(tr("Latitude")),  2, 0, Qt::AlignRight);
+  editLayout->addWidget(_ipLatLineEdit,              2, 1);
+  editLayout->addWidget(new QLabel(tr("Longitude")), 2, 2, Qt::AlignRight);
+  editLayout->addWidget(_ipLonLineEdit,              2, 3);
+
+  mainLayout->addLayout(editLayout);
+
+  _buttonWhatsThis = new QPushButton(tr("Help=Shift+F1"), this);
+  connect(_buttonWhatsThis, SIGNAL(clicked()), this, SLOT(slotWhatsThis()));
+ 
+  _buttonCancel = new QPushButton(tr("Cancel"), this);
+  connect(_buttonCancel, SIGNAL(clicked()), this, SLOT(reject()));
+
+  _buttonOK = new QPushButton(tr("OK"), this);
+  connect(_buttonOK, SIGNAL(clicked()), this, SLOT(accept()));
+
+  _buttonOK->setDefault(true);
+
+  QHBoxLayout* buttonLayout = new QHBoxLayout;
+
+  buttonLayout->addWidget(_buttonWhatsThis);
+  buttonLayout->addStretch(1);
+  buttonLayout->addWidget(_buttonCancel);
+  buttonLayout->addWidget(_buttonOK);
+
+  mainLayout->addLayout(buttonLayout);
+}
+
+// Destructor
+////////////////////////////////////////////////////////////////////////////
+bncIpPort::~bncIpPort() {
+  delete _buttonCancel;
+  delete _buttonOK;
+  delete _buttonWhatsThis;
+}
+
+// Accept slot
+////////////////////////////////////////////////////////////////////////////
+void bncIpPort::accept() {
+
+  QStringList* mountPoints = new QStringList;
+
+  if ( !_ipHostLineEdit->text().isEmpty()   &&
+       !_ipPortLineEdit->text().isEmpty()   &&
+       !_ipMountLineEdit->text().isEmpty()  &&
+       !_ipFormatLineEdit->text().isEmpty() &&
+       !_ipLatLineEdit->text().isEmpty()    &&
+       !_ipLonLineEdit->text().isEmpty() ) {
+
+    mountPoints->push_back("//" + _ipHostLineEdit->text() + ":" 
+                                + _ipPortLineEdit->text() + "/" 
+                                + _ipMountLineEdit->text() + " "
+                                + _ipFormatLineEdit->text() + " "
+                                + _ipLatLineEdit->text() + " "
+                                + _ipLonLineEdit->text() + " "
+                                + "no N");
+  } else {
+   QMessageBox::warning(this, tr("Warning"),
+                               tr("Incomplete settings"),
+                               QMessageBox::Ok);
+  }
+
+  emit newMountPoints(mountPoints);
+
+  QDialog::accept();
+}
+
+// Whats This Help
+void bncIpPort::slotWhatsThis() {
+QWhatsThis::enterWhatsThisMode();
+}
+
Index: branches/BNC_LM/bncipport.h
===================================================================
--- branches/BNC_LM/bncipport.h	(revision 3570)
+++ branches/BNC_LM/bncipport.h	(revision 3570)
@@ -0,0 +1,60 @@
+// Part of BNC, a utility for retrieving decoding and
+// converting GNSS data streams from NTRIP broadcasters.
+//
+// Copyright (C) 2009
+// German Federal Agency for Cartography and Geodesy (BKG)
+// http://www.bkg.bund.de
+// Czech Technical University Prague, Department of Geodesy
+// http://www.fsv.cvut.cz
+//
+// Email: euref-ip@bkg.bund.de
+//
+// This program is free software; you can redistribute it and/or
+// modify it under the terms of the GNU General Public License
+// as published by the Free Software Foundation, version 2.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+#ifndef BNCIPPORT_H
+#define BNCIPPORT_H
+
+#include <QtCore>
+#include <QtGui>
+#include <QWhatsThis>
+
+class bncIpPort : public QDialog {
+  Q_OBJECT
+
+  public:
+    bncIpPort(QWidget* parent);
+    ~bncIpPort();
+
+  signals:
+    void newMountPoints(QStringList* mountPoints);
+
+  private slots:
+    virtual void accept();
+    void slotWhatsThis();
+
+  private:
+    QLineEdit*   _ipHostLineEdit;
+    QLineEdit*   _ipPortLineEdit;
+    QLineEdit*   _ipMountLineEdit;
+    QLineEdit*   _ipFormatLineEdit;
+    QLineEdit*   _ipLatLineEdit;
+    QLineEdit*   _ipLonLineEdit;
+
+    QPushButton* _buttonGet;
+    QPushButton* _buttonCancel;
+    QPushButton* _buttonOK;
+    QPushButton* _buttonWhatsThis;
+};
+
+#endif
Index: branches/BNC_LM/bncmain.cpp
===================================================================
--- branches/BNC_LM/bncmain.cpp	(revision 3570)
+++ branches/BNC_LM/bncmain.cpp	(revision 3570)
@@ -0,0 +1,182 @@
+// Part of BNC, a utility for retrieving decoding and
+// converting GNSS data streams from NTRIP broadcasters.
+//
+// Copyright (C) 2007
+// German Federal Agency for Cartography and Geodesy (BKG)
+// http://www.bkg.bund.de
+// Czech Technical University Prague, Department of Geodesy
+// http://www.fsv.cvut.cz
+//
+// Email: euref-ip@bkg.bund.de
+//
+// This program is free software; you can redistribute it and/or
+// modify it under the terms of the GNU General Public License
+// as published by the Free Software Foundation, version 2.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+/* -------------------------------------------------------------------------
+ * BKG NTRIP Client
+ * -------------------------------------------------------------------------
+ *
+ * Class:      main
+ *
+ * Purpose:    Application starts here
+ *
+ * Author:     L. Mervart
+ *
+ * Created:    24-Dec-2005
+ *
+ * Changes:    
+ *
+ * -----------------------------------------------------------------------*/
+
+#include <unistd.h>
+#include <signal.h>
+#include <QApplication>
+#include <QFile>
+#include <iostream>
+
+#include "bncapp.h"
+#include "bncwindow.h"
+#include "bncsettings.h"
+#include "bncversion.h"
+#include "upload/bncephuploadcaster.h"
+
+using namespace std;
+
+void catch_signal(int) {
+  cout << "Program Interrupted by Ctrl-C" << endl;
+  exit(0);
+}
+
+// Main Program
+/////////////////////////////////////////////////////////////////////////////
+int main(int argc, char *argv[]) {
+
+  bool       GUIenabled  = true;
+  QByteArray rawFileName;
+  QByteArray format; 
+  QByteArray staID; 
+  QString    confFileName;
+
+  for (int ii = 1; ii < argc; ii++) {
+    if (QByteArray(argv[ii]) == "-nw" || QByteArray(argv[ii]) == "--nw") {
+      GUIenabled = false;
+    }
+    if (ii + 1 < argc) {
+      if (QByteArray(argv[ii]).indexOf("-conf")   != -1) {
+        confFileName = QString(argv[ii+1]);
+      }
+      if (QByteArray(argv[ii]).indexOf("-file")   != -1) {
+        GUIenabled = false;
+        rawFileName = QByteArray(argv[ii+1]);
+      }
+      if (QByteArray(argv[ii]).indexOf("-format") != -1) {
+        format = QByteArray(argv[ii+1]);
+      }
+      if (QByteArray(argv[ii]).indexOf("-mountpoint") != -1) {
+        staID = QByteArray(argv[ii+1]);
+      }
+    }
+  }
+
+  if (argc == 2 && GUIenabled) {
+    confFileName = QString(argv[1]);
+  }
+
+  QString printHelp = "Usage: bnc --nw\n" 
+                      "           --conf       <confFileName>\n" 
+                      "           --file       <rawFileName>\n"
+                      "           --mountpoint <station>\n"
+                      "           --format     <RTCM_2 | RTCM_3>\n";
+
+  bncApp app(argc, argv, GUIenabled);
+
+  app.setApplicationName("BNC");
+  app.setOrganizationName("BKG");
+  app.setOrganizationDomain("www.bkg.bund.de");
+  app.setConfFileName( confFileName );
+
+  bncSettings settings;
+
+  // Interactive Mode - open the main window
+  // ---------------------------------------
+  if (GUIenabled) {
+
+    app.setMode(bncApp::interactive);
+
+    QString fontString = settings.value("font").toString();
+    if ( !fontString.isEmpty() ) {
+      QFont newFont;
+      if (newFont.fromString(fontString)) {
+        QApplication::setFont(newFont);
+      }
+    }
+   
+    app.setWindowIcon(QPixmap(":ntrip-logo.png"));
+
+    bncWindow* bncWin = new bncWindow();
+    bncWin->show();
+  }
+
+  // Non-Interactive (Batch) Mode
+  // ----------------------------
+  else {
+
+    signal(SIGINT, catch_signal);
+
+    bncEphUploadCaster* casterEph = new bncEphUploadCaster(); (void) casterEph;
+
+    bncCaster* caster = new bncCaster(settings.value("outFile").toString(),
+                                      settings.value("outPort").toInt());
+    
+    app.setCaster(caster);
+    app.setPort(settings.value("outEphPort").toInt());
+    app.setPortCorr(settings.value("corrPort").toInt());
+    app.initCombination();
+
+    app.connect(caster, SIGNAL(getThreadsFinished()), &app, SLOT(quit()));
+  
+    ((bncApp*)qApp)->slotMessage("========== Start BNC v" BNCVERSION " =========", true);
+
+    // Normal case - data from Internet
+    // --------------------------------
+    if ( rawFileName.isEmpty() ) {
+      app.setMode(bncApp::nonInteractive);
+      caster->slotReadMountPoints();
+      if (caster->numStations() == 0) {
+        exit(0);
+      }
+    }
+
+    // Special case - data from file
+    // -----------------------------
+    else {
+      app.setMode(bncApp::batchPostProcessing);
+
+      if ( format.isEmpty() || staID.isEmpty() ) {
+        cout << printHelp.toAscii().data() << endl;
+        exit(0);
+      }
+
+      bncRawFile* rawFile = new bncRawFile(rawFileName, staID, format, 
+                                           bncRawFile::input);
+
+      bncGetThread* getThread = new bncGetThread(rawFile);
+      caster->addGetThread(getThread, true);
+    }
+
+  }
+
+  // Start the application
+  // ---------------------
+  return app.exec();
+}
Index: branches/BNC_LM/bncmap.cpp
===================================================================
--- branches/BNC_LM/bncmap.cpp	(revision 3570)
+++ branches/BNC_LM/bncmap.cpp	(revision 3570)
@@ -0,0 +1,257 @@
+// ------------
+// author: jan dousa (jan.dousa@pecny.cz)
+// ------------
+ 
+#include <iostream>
+#include "bncmap.h"
+
+
+// ------------
+bncMap::bncMap(QWidget* parent) : QDialog(parent)
+{
+  _LaOff   = 25;   // shift longitude
+  _mapScen = new QGraphicsScene();
+  _mapView = new BncMapView();
+  _mapView->setScene(_mapScen);
+  _mapView->resetScale();
+  slotReadMap();
+  slotCreateMap();
+  _mapScen->setSceneRect(QRect(0,-90,360,180));
+
+  setWindowTitle(tr("Source-Table Map [*]"));
+ 
+  /* close button */
+  QPushButton* buttClose = new QPushButton("Close");
+  connect(buttClose, SIGNAL(clicked()), this, SLOT(close()));
+   
+  /* rescale button */
+//  QPushButton* buttClean = new QPushButton("Clean");
+//  connect(buttClean, SIGNAL(clicked()), this, SLOT(slotCleanMap()));
+
+  /* zoom button */
+  QPushButton* buttZoomIn = new QPushButton("Zoom +");
+  connect(buttZoomIn, SIGNAL(clicked()), this, SLOT(slotZoomIn()));
+
+  /* zoom button */
+  QPushButton* buttZoomOut = new QPushButton("Zoom -");
+  connect(buttZoomOut, SIGNAL(clicked()), this, SLOT(slotZoomOut()));
+
+  /* reset button */
+  QPushButton* buttReset = new QPushButton("World");
+  connect(buttReset, SIGNAL(clicked()), this, SLOT(slotResetMap()));
+
+  /* fit button */
+  QPushButton* buttFit = new QPushButton("Fit Map");
+  connect(buttFit, SIGNAL(clicked()), this, SLOT(slotFitMap()));
+
+  /* font reset button */
+  QPushButton* buttFont = new QPushButton("Fit Font");
+  connect(buttFont, SIGNAL(clicked()), this, SLOT(slotFitFont()));
+
+  /* layout */
+  QVBoxLayout* MapLayout = new QVBoxLayout;
+  QHBoxLayout* ButLayout = new QHBoxLayout;
+   
+  ButLayout->addWidget(buttZoomIn);
+  ButLayout->addWidget(buttZoomOut);
+//  ButLayout->addWidget(buttClean);
+  ButLayout->addWidget(buttReset);
+  ButLayout->addWidget(buttFit);
+  ButLayout->addWidget(buttFont);
+  ButLayout->addWidget(buttClose);
+   
+  MapLayout->addWidget(_mapView);
+  MapLayout->addLayout(ButLayout);
+   
+  setLayout(MapLayout);
+
+  this->show();
+}
+
+
+// ------------
+bncMap::~bncMap(){ 
+   delete _mapView;
+}
+
+
+// ------------
+void bncMap::slotReadMap()
+{   
+  QFile world(":worldmap.dat");
+  float fi, la;
+
+  world.open(QIODevice::ReadOnly | QIODevice::Text);
+     
+  QTextStream in(&world);
+  in.setRealNumberNotation(QTextStream::FixedNotation);
+
+  while( ! in.atEnd() ){
+
+    in >> la >> fi;
+
+    // la = 0-360
+    while( la <    0 ){ la += 360; }
+    while( la >= 360 ){ la -= 360; }
+     
+    // fi opposite
+    _worldMap << QPointF( la, -fi );
+	 
+  }
+  world.close();
+}
+
+
+// ------------
+void bncMap::slotCreateMap()
+{  
+  //  _mapScen->setForegroundBrush(QBrush(Qt::lightGray, Qt::CrossPattern));   // grid
+
+  int begIdx = 0;
+  int endIdx = 0;
+  for( int i=0; i < _worldMap.size(); i++ ){
+    if( _worldMap.at(i).x() == 0.0 and _worldMap.at(i).y() == 0.0 ){
+      if( i > 0 ){
+	 endIdx = i-1;
+        while( begIdx < endIdx ){
+
+ 	  int l1 = 0;
+	  int l2 = 0;
+
+          float la1 = _worldMap.at(begIdx+0).x() + _LaOff;
+          float fi1 = _worldMap.at(begIdx+0).y();
+          float la2 = _worldMap.at(begIdx+1).x() + _LaOff;
+          float fi2 = _worldMap.at(begIdx+1).y();
+          begIdx++;
+	    
+	  while( la1 <    0 ){ la1 += 360; l1++; }
+	  while( la1 >= 360 ){ la1 -= 360; l1--; }
+	  while( la2 <    0 ){ la2 += 360; l2++; }
+	  while( la2 >= 360 ){ la2 -= 360; l2--; }
+
+	  if( l1 != 0 and l2 == 0 ){ continue; } // break this line
+	  if( l2 != 0 and l1 == 0 ){ continue; } // break this line
+
+          _mapScen->addLine(la1, fi1, la2, fi2, QPen(QBrush(Qt::gray),0.3));
+        }
+      }
+      if( i+1 < _worldMap.size() ) begIdx = i+1;
+    }
+  }
+}
+
+
+// ------------
+void bncMap::slotCleanMap()
+{
+  QMutexLocker locker(&_mutexMap);
+  _mapScen->clear();
+  slotCreateMap();
+  slotResetMap();
+  slotFitFont();
+}
+
+
+// ------------
+void bncMap::slotResetMap()
+{
+  _mapView->resetScale();
+}
+
+
+// ------------
+void bncMap::slotFitMap()
+{  
+  QRectF reg = _allPoints.boundingRect().adjusted(-10,-10,10,10);
+   
+  _mapView->resetScale();
+  _mapView->updateSceneRect(reg);
+  _mapView->centerOn(reg.center());
+  _mapView->fitInView(reg,Qt::KeepAspectRatio);
+
+  slotFitFont();
+}
+
+
+// ------------
+void bncMap::slotFitFont()
+{  
+  _mapScen->clear();
+  slotCreateMap();
+
+  float fontsize  = _mapView->scale_rate();
+  float pointsize = _mapView->scale_rate();
+   
+  QMapIterator<QString, QList<QVariant> >  it(_allNames);
+  while( it.hasNext() ){  
+     
+     it.next();
+     QString name = it.key();     
+     QList<QVariant> tmp = it.value();
+       
+     double la    = tmp.at(0).toPointF().x();
+     double fi    = tmp.at(0).toPointF().y();
+     QPen   pen   = tmp.at(1).value<QPen>();
+     double basPT = tmp.at(2).toDouble();
+     double basFT = tmp.at(3).toDouble();
+     
+     float tmpPT = pointsize * basPT;
+     float tmpFT =  fontsize * basFT;
+     
+     QFont font(QFont("Arial", 2, 1));
+           font.setPointSizeF( tmpFT );
+
+     QGraphicsTextItem* nameItem = new QGraphicsTextItem( name );
+     nameItem->setFont( font );
+     
+     if( floor(fontsize) < 1 ){
+       nameItem->setPos( la - 4.0 - floor(fontsize), fi - 5.0 - floor(fontsize) );
+     }else{
+       nameItem->setPos( la - 1.0 - floor(fontsize), fi - 4.0 - floor(fontsize) );
+     }
+
+     if( tmpPT < 0.25 ) tmpPT = 0.25;
+     pen.setWidthF(tmpPT);
+
+    _mapScen->addItem( nameItem );
+    _mapScen->addEllipse( la, fi, tmpPT, tmpPT, pen );
+  }
+  _mapView->zoom( 1.0 );
+}
+
+
+// ------------
+void bncMap::slotZoomIn()
+{  
+  _mapView->zoom( 1.2 );
+}
+
+
+// ------------
+void bncMap::slotZoomOut()
+{  
+  _mapView->zoom( 1/1.2 );
+}
+
+
+// ------------
+void bncMap::slotNewPoint(QPointF point, QString name, QPen pen, double size)
+{
+  float la =   point.x() + _LaOff;
+  float fi = - point.y();
+   
+  while( la <    0 ){ la += 360; }
+  while( la >= 360 ){ la -= 360; }
+   
+  QPointF tmppoint(la,fi);
+  _allPoints << tmppoint;
+
+  if( ! name.isEmpty() ){
+
+    QList<QVariant> tmp;
+    tmp << tmppoint      // QPoint
+        << pen           // QPen
+        << size << 4.5;  // base pointsize, fontsize
+    _allNames.insert( name, tmp );
+  }
+}
Index: branches/BNC_LM/bncmap.h
===================================================================
--- branches/BNC_LM/bncmap.h	(revision 3570)
+++ branches/BNC_LM/bncmap.h	(revision 3570)
@@ -0,0 +1,43 @@
+// ------------
+// author: jan dousa (jan.dousa@pecny.cz)
+// ------------
+
+#ifndef BNCMAP_H
+#define BNCMAP_H
+
+#include <QtGui>
+#include "bncmapview.h"
+
+class bncMap : public QDialog
+{
+ Q_OBJECT
+     
+ public:
+    bncMap(QWidget* parent = 0 );
+   ~bncMap();
+   
+ public slots:
+   void slotNewPoint(QPointF, QString, QPen, double);
+   void slotResetMap();
+   void slotFitFont();
+   void slotFitMap();
+   void slotZoomIn();
+   void slotZoomOut();
+   void slotCreateMap();
+   void slotCleanMap();
+   void slotReadMap();
+   
+ private:
+   
+   double          _LaOff;
+
+   BncMapView*     _mapView;
+   QGraphicsScene* _mapScen;
+   QPolygonF       _worldMap;
+   QPolygonF       _allPoints;
+   QMutex          _mutexMap;
+   QMultiMap< QString, QList<QVariant> > _allNames;
+
+};
+
+#endif
Index: branches/BNC_LM/bncmapview.cpp
===================================================================
--- branches/BNC_LM/bncmapview.cpp	(revision 3570)
+++ branches/BNC_LM/bncmapview.cpp	(revision 3570)
@@ -0,0 +1,174 @@
+
+#include <QGraphicsScene>
+#include <QGraphicsTextItem>
+#include <QTextStream>
+#include <QScrollBar>
+#include <QMouseEvent>
+#include <QWheelEvent>
+#include <QDebug>
+#include <iostream>
+
+#include "bncmapview.h"
+
+
+// -------------
+BncMapView::BncMapView(QWidget* parent) : QGraphicsView(parent) 
+{
+  setCursor(Qt::OpenHandCursor);
+  setRenderHints(QPainter::Antialiasing | QPainter::SmoothPixmapTransform);
+  resetScale();
+}
+
+/* -------------
+ * Sets the current centerpoint.  Also updates the scene's center point.
+ * Unlike centerOn, which has no way of getting the floating point center
+ * back, SetCenter() stores the center point.  It also handles the special
+ * sidebar case.  This function will claim the centerPoint to sceneRec ie.
+ * the centerPoint must be within the sceneRec.
+ */
+void BncMapView::SetCenter(const QPointF& centerPoint) 
+{
+   // get the rectangle of the visible area in scene coords
+   QRectF visibleArea = mapToScene(rect()).boundingRect();
+   
+   // get the scene area
+   QRectF sceneBounds = sceneRect();
+   
+   double boundX      = + visibleArea.width()  / 2.0;
+   double boundY      = - visibleArea.height() / 2.0;  // opposite sign for latitude !
+
+   double boundWidth  = sceneBounds.width()  - boundX * 2.0;
+   double boundHeight = sceneBounds.height() - boundY * 2.0;
+ 
+   // the max boundary that the centerPoint can be to
+   QRectF bounds(boundX, boundY, boundWidth, boundHeight);
+   
+   if( bounds.contains(centerPoint) ){
+      // we are within the bounds
+      _currentCenterPoint = centerPoint;
+      
+   }else{
+	
+      // we need to clamp or use the center of the screen
+      if( visibleArea.contains(sceneBounds) ){
+	     
+         // use the center of scene ie. we can see the whole scene
+         _currentCenterPoint = sceneBounds.center();
+
+      }else{
+	 _currentCenterPoint = centerPoint;
+
+	 // we need to clamp the center. The centerPoint is too large
+	 if( centerPoint.x() > bounds.x() + bounds.width() ){
+	    _currentCenterPoint.setX(bounds.x() + bounds.width());
+	    
+	 }else if( centerPoint.x() < bounds.x() ){
+	    _currentCenterPoint.setX(bounds.x());
+	 }
+
+	 // opposite sign for latitude !
+	 if( centerPoint.y() < - bounds.y() - bounds.height() ){
+  	    _currentCenterPoint.setY( - bounds.y() - bounds.height());
+	    
+	 }else if( centerPoint.y() > - bounds.y() ){
+	    _currentCenterPoint.setY( - bounds.y());
+	 }
+      }
+   }
+   // update the scrollbars
+   centerOn(_currentCenterPoint);
+}
+
+
+// -------------
+void BncMapView::mousePressEvent(QMouseEvent* event) 
+{
+//   std::cout << " PRES " << event->pos().x() << " " << event->pos().y() << std::endl;
+   _lastPanPoint = event->pos();
+   setCursor(Qt::ClosedHandCursor);
+}
+
+
+// -------------
+void BncMapView::mouseReleaseEvent(QMouseEvent* /* event */) 
+{   
+   setCursor(Qt::OpenHandCursor);
+   _lastPanPoint = QPoint();
+}
+
+ 
+// -------------
+void BncMapView::mouseMoveEvent(QMouseEvent* event) 
+{    
+   if( !_lastPanPoint.isNull() ){
+	
+     // get how much we panned
+     QPointF delta = mapToScene(_lastPanPoint) - mapToScene(event->pos());
+     _lastPanPoint = event->pos();
+
+     // update the center ie. do the pan
+     SetCenter(GetCenter() + delta);
+   }
+}
+
+
+// -------------
+void BncMapView::wheelEvent(QWheelEvent* event) 
+{
+   // het the position of the mouse before scaling, in scene coords
+   QPointF pointBeforeScale(mapToScene(event->pos()));
+   
+   // get the original screen centerpoint
+   QPointF screenCenter = GetCenter();
+   
+   // scale the view ie. do the zoom
+   double scaleFactor = 1.10; // how fast we zoom
+   if( event->delta() > 0 ){
+
+     // zooming in
+     zoom( scaleFactor );
+      
+   }else{
+
+     // zooming out
+     zoom( 1.0/scaleFactor );
+   }
+   
+   // get the position after scaling, in scene coords
+   QPointF pointAfterScale(mapToScene(event->pos()));
+   
+   // get the offset of how the screen moved
+   QPointF offset = pointBeforeScale - pointAfterScale;
+   
+   // adjust to the new center for correct zooming
+   QPointF newCenter = screenCenter + offset;
+   SetCenter(newCenter);
+}
+
+ 
+// -------------
+void BncMapView::resizeEvent(QResizeEvent* event) 
+{
+   // get the rectangle of the visible area in scene coords
+   QRectF visibleArea = mapToScene(rect()).boundingRect();
+   SetCenter(visibleArea.center());
+   
+   // call the subclass resize so the scrollbars are updated correctly
+   QGraphicsView::resizeEvent(event);
+}
+
+
+// -------------
+void BncMapView::resetScale()
+{
+  _scale = _scCur = 2.0;
+  setMatrix(QMatrix(_scale,0,0,_scale,0,0));
+}
+
+
+// -------------
+void BncMapView::zoom(qreal scale)
+{
+   QGraphicsView::scale( scale, scale );
+  _scCur = _scCur * scale;
+}
Index: branches/BNC_LM/bncmapview.h
===================================================================
--- branches/BNC_LM/bncmapview.h	(revision 3570)
+++ branches/BNC_LM/bncmapview.h	(revision 3570)
@@ -0,0 +1,42 @@
+
+#ifndef BNCMAPVIEW_H
+#define BNCMAPVIEW_H
+ 
+#include <QGraphicsView>
+#include <QGraphicsRectItem>
+#include <iostream>
+ 
+class BncMapView : public QGraphicsView
+{
+ Q_OBJECT;
+   
+ public:
+    BncMapView(QWidget* parent = NULL);
+
+    virtual void resetScale();
+    virtual void zoom(qreal scale);
+
+    double scale(){ return _scale; }
+    double scale_curr(){ return _scCur; }
+    double scale_rate(){ return _scale/_scCur; }
+
+    
+ protected:    
+    QPointF _currentCenterPoint;                       // centerpoint for for panning and zooming
+    QPoint  _lastPanPoint;                             // from panning the view   
+    void    SetCenter(const QPointF& centerPoint);     // set the current centerpoint in the
+   
+    QPointF GetCenter(){ return _currentCenterPoint; }
+
+    virtual void mousePressEvent(QMouseEvent* event);
+    virtual void mouseReleaseEvent(QMouseEvent* event);
+    virtual void mouseMoveEvent(QMouseEvent* event);
+    virtual void wheelEvent(QWheelEvent* event);
+    virtual void resizeEvent(QResizeEvent* event);
+   
+  private:
+    double          _scale;  // scale
+    double          _scCur;  // current relative scale
+};
+ 
+#endif
Index: branches/BNC_LM/bncmodel.cpp
===================================================================
--- branches/BNC_LM/bncmodel.cpp	(revision 3570)
+++ branches/BNC_LM/bncmodel.cpp	(revision 3570)
@@ -0,0 +1,1442 @@
+// Part of BNC, a utility for retrieving decoding and
+// converting GNSS data streams from NTRIP broadcasters.
+//
+// Copyright (C) 2007
+// German Federal Agency for Cartography and Geodesy (BKG)
+// http://www.bkg.bund.de
+// Czech Technical University Prague, Department of Geodesy
+// http://www.fsv.cvut.cz
+//
+// Email: euref-ip@bkg.bund.de
+//
+// This program is free software; you can redistribute it and/or
+// modify it under the terms of the GNU General Public License
+// as published by the Free Software Foundation, version 2.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+/* -------------------------------------------------------------------------
+ * BKG NTRIP Client
+ * -------------------------------------------------------------------------
+ *
+ * Class:      bncParam, bncModel
+ *
+ * Purpose:    Model for PPP
+ *
+ * Author:     L. Mervart
+ *
+ * Created:    01-Dec-2009
+ *
+ * Changes:    
+ *
+ * -----------------------------------------------------------------------*/
+
+#include <iomanip>
+#include <cmath>
+#include <newmatio.h>
+#include <sstream>
+
+#include "bncmodel.h"
+#include "bncapp.h"
+#include "bncpppclient.h"
+#include "bancroft.h"
+#include "bncutils.h"
+#include "bncsettings.h"
+#include "bnctides.h"
+#include "bncantex.h"
+
+using namespace std;
+
+const unsigned MINOBS                = 5;
+const double   MINELE                = 10.0 * M_PI / 180.0;
+const double   MAXRES_CODE           = 10.0;
+const double   MAXRES_PHASE_GPS      = 0.04;
+const double   MAXRES_PHASE_GLONASS  = 0.08;
+const double   GLONASS_WEIGHT_FACTOR = 5.0;
+
+// Constructor
+////////////////////////////////////////////////////////////////////////////
+bncParam::bncParam(bncParam::parType typeIn, int indexIn, 
+                   const QString& prnIn) {
+  type      = typeIn;
+  index     = indexIn;
+  prn       = prnIn;
+  index_old = 0;
+  xx        = 0.0;
+  numEpo    = 0;
+}
+
+// Destructor
+////////////////////////////////////////////////////////////////////////////
+bncParam::~bncParam() {
+}
+
+// Partial
+////////////////////////////////////////////////////////////////////////////
+double bncParam::partial(t_satData* satData, bool phase) {
+
+  Tracer tracer("bncParam::partial");
+
+  // Coordinates
+  // -----------
+  if      (type == CRD_X) {
+    return (xx - satData->xx(1)) / satData->rho; 
+  }
+  else if (type == CRD_Y) {
+    return (xx - satData->xx(2)) / satData->rho; 
+  }
+  else if (type == CRD_Z) {
+    return (xx - satData->xx(3)) / satData->rho; 
+  }
+
+  // Receiver Clocks
+  // ---------------
+  else if (type == RECCLK) {
+    return 1.0;
+  }
+
+  // Troposphere
+  // -----------
+  else if (type == TROPO) {
+    return 1.0 / sin(satData->eleSat); 
+  }
+
+  // Galileo Offset
+  // --------------
+  else if (type == GALILEO_OFFSET) {
+    if (satData->prn[0] == 'E') {
+      return 1.0;
+    }
+    else {
+      return 0.0;
+    }
+  }
+
+  // Ambiguities
+  // -----------
+  else if (type == AMB_L3) {
+    if (phase && satData->prn == prn) {
+      return 1.0;
+    }
+    else {
+      return 0.0;
+    }
+  }
+
+  // Default return
+  // --------------
+  return 0.0;
+}
+
+// Constructor
+////////////////////////////////////////////////////////////////////////////
+bncModel::bncModel(QByteArray staID) {
+
+  _staID   = staID;
+
+  connect(this, SIGNAL(newMessage(QByteArray,bool)), 
+          ((bncApp*)qApp), SLOT(slotMessage(const QByteArray,bool)));
+
+  bncSettings settings;
+
+  // Observation Sigmas
+  // ------------------
+  _sigP3 = 5.0;
+  if (!settings.value("pppSigmaCode").toString().isEmpty()) {
+    _sigP3 = settings.value("pppSigmaCode").toDouble();
+  }
+  _sigL3 = 0.02;
+  if (!settings.value("pppSigmaPhase").toString().isEmpty()) {
+    _sigL3 = settings.value("pppSigmaPhase").toDouble();
+  }
+
+  // Parameter Sigmas
+  // ----------------
+  _sigCrd0 = 100.0;
+  if (!settings.value("pppSigCrd0").toString().isEmpty()) {
+    _sigCrd0 = settings.value("pppSigCrd0").toDouble();
+  }
+  _sigCrdP = 100.0;
+  if (!settings.value("pppSigCrdP").toString().isEmpty()) {
+    _sigCrdP = settings.value("pppSigCrdP").toDouble();
+  }
+  _sigTrp0 = 0.1;
+  if (!settings.value("pppSigTrp0").toString().isEmpty()) {
+    _sigTrp0 = settings.value("pppSigTrp0").toDouble();
+  }
+  _sigTrpP = 1e-6;
+  if (!settings.value("pppSigTrpP").toString().isEmpty()) {
+    _sigTrpP = settings.value("pppSigTrpP").toDouble();
+  }
+  _sigClk0           = 1000.0;
+  _sigAmb0           = 1000.0;
+  _sigGalileoOffset0 = 1000.0;
+  _sigGalileoOffsetP =    0.0;
+
+  // Quick-Start Mode
+  // ----------------
+  _quickStart = 0;
+  if (settings.value("pppRefCrdX").toString() != "" &&
+      settings.value("pppRefCrdY").toString() != "" &&
+      settings.value("pppRefCrdZ").toString() != "" &&
+      !settings.value("pppQuickStart").toString().isEmpty()) {
+    _quickStart = settings.value("pppQuickStart").toDouble();
+  }
+
+  // Several options
+  // ---------------
+  _usePhase = false;
+  if ( Qt::CheckState(settings.value("pppUsePhase").toInt()) == Qt::Checked) {
+    _usePhase = true;
+  }
+
+  _estTropo = false;
+  if ( Qt::CheckState(settings.value("pppEstTropo").toInt()) == Qt::Checked) {
+    _estTropo = true;
+  }
+
+  _useGalileo = false;
+  if ( Qt::CheckState(settings.value("pppGalileo").toInt()) == Qt::Checked) {
+    _useGalileo = true;
+  }
+
+  // NMEA Output
+  // -----------
+  QString nmeaFileName = settings.value("nmeaFile").toString();
+  if (nmeaFileName.isEmpty()) {
+    _nmeaFile   = 0;
+    _nmeaStream = 0;
+  }
+  else {
+    expandEnvVar(nmeaFileName);
+    _nmeaFile = new QFile(nmeaFileName);
+    if ( Qt::CheckState(settings.value("rnxAppend").toInt()) == Qt::Checked) {
+      _nmeaFile->open(QIODevice::WriteOnly | QIODevice::Append);
+    }
+    else {
+      _nmeaFile->open(QIODevice::WriteOnly);
+    }
+    _nmeaStream = new QTextStream();
+    _nmeaStream->setDevice(_nmeaFile);
+  }
+
+  // Antenna Name, ANTEX File
+  // ------------------------
+  _antex = 0;
+  QString antexFileName = settings.value("pppAntex").toString();
+  if (!antexFileName.isEmpty()) {
+    _antex = new bncAntex();
+    if (_antex->readFile(antexFileName) != success) {
+      emit newMessage("wrong ANTEX file", true);
+      delete _antex;
+      _antex = 0;
+    }
+    else {
+      _antennaName = settings.value("pppAntenna").toString();
+    }
+  }
+
+  // Antenna Eccentricities
+  // ----------------------
+  _dN = settings.value("pppRefdN").toDouble();
+  _dE = settings.value("pppRefdE").toDouble();
+  _dU = settings.value("pppRefdU").toDouble();
+
+  // Bancroft Coordinates
+  // --------------------
+  _xcBanc.ReSize(4);  _xcBanc  = 0.0;
+  _ellBanc.ReSize(3); _ellBanc = 0.0;
+
+  // Save copy of data (used in outlier detection)
+  // ---------------------------------------------
+  _epoData_sav = new t_epoData();
+}
+
+// Destructor
+////////////////////////////////////////////////////////////////////////////
+bncModel::~bncModel() {
+  delete _nmeaStream;
+  delete _nmeaFile;
+  for (int ii = 0; ii < _posAverage.size(); ++ii) { 
+    delete _posAverage[ii]; 
+  }
+  delete _antex;
+  for (int iPar = 1; iPar <= _params.size(); iPar++) {
+    delete _params[iPar-1];
+  }
+  delete _epoData_sav;
+}
+
+// Reset Parameters and Variance-Covariance Matrix
+////////////////////////////////////////////////////////////////////////////
+void bncModel::reset() {
+
+  Tracer tracer("bncModel::reset");
+
+  for (int iPar = 1; iPar <= _params.size(); iPar++) {
+    delete _params[iPar-1];
+  }
+  _params.clear();
+
+  int nextPar = 0;
+  _params.push_back(new bncParam(bncParam::CRD_X,  ++nextPar, ""));
+  _params.push_back(new bncParam(bncParam::CRD_Y,  ++nextPar, ""));
+  _params.push_back(new bncParam(bncParam::CRD_Z,  ++nextPar, ""));
+  _params.push_back(new bncParam(bncParam::RECCLK, ++nextPar, ""));
+  if (_estTropo) {
+    _params.push_back(new bncParam(bncParam::TROPO, ++nextPar, ""));
+  }
+  if (_useGalileo) {
+    _params.push_back(new bncParam(bncParam::GALILEO_OFFSET, ++nextPar, ""));
+  }
+
+  _QQ.ReSize(_params.size()); 
+  _QQ = 0.0;
+  for (int iPar = 1; iPar <= _params.size(); iPar++) {
+    bncParam* pp = _params[iPar-1];
+    pp->xx = 0.0;
+    if      (pp->isCrd()) {
+      _QQ(iPar,iPar) = _sigCrd0 * _sigCrd0; 
+    }
+    else if (pp->type == bncParam::RECCLK) {
+      _QQ(iPar,iPar) = _sigClk0 * _sigClk0; 
+    }
+    else if (pp->type == bncParam::TROPO) {
+      _QQ(iPar,iPar) = _sigTrp0 * _sigTrp0; 
+    }
+    else if (pp->type == bncParam::GALILEO_OFFSET) {
+      _QQ(iPar,iPar) = _sigGalileoOffset0 * _sigGalileoOffset0; 
+    }
+  }
+}
+
+// Bancroft Solution
+////////////////////////////////////////////////////////////////////////////
+t_irc bncModel::cmpBancroft(t_epoData* epoData) {
+
+  Tracer tracer("bncModel::cmpBancroft");
+
+  if (epoData->sizeSys('G') < MINOBS) {
+    _log += "bncModel::cmpBancroft: not enough data\n";
+    return failure;
+  }
+
+  Matrix BB(epoData->sizeSys('G'), 4);
+
+  QMapIterator<QString, t_satData*> it(epoData->satData);
+  int iObsBanc = 0;
+  while (it.hasNext()) {
+    it.next();
+    t_satData* satData = it.value();
+    if (satData->system() == 'G') {
+      ++iObsBanc;
+      QString    prn     = it.key();
+      BB(iObsBanc, 1) = satData->xx(1);
+      BB(iObsBanc, 2) = satData->xx(2);
+      BB(iObsBanc, 3) = satData->xx(3);
+      BB(iObsBanc, 4) = satData->P3 + satData->clk;
+    }
+  }
+
+  bancroft(BB, _xcBanc);
+
+  // Ellipsoidal Coordinates
+  // ------------------------
+  xyz2ell(_xcBanc.data(), _ellBanc.data());
+
+  // Compute Satellite Elevations
+  // ----------------------------
+  QMutableMapIterator<QString, t_satData*> im(epoData->satData);
+  while (im.hasNext()) {
+    im.next();
+    t_satData* satData = im.value();
+    cmpEle(satData);
+    if (satData->eleSat < MINELE) {
+      delete satData;
+      im.remove();
+    }
+  }
+
+  return success;
+}
+
+// Computed Value
+////////////////////////////////////////////////////////////////////////////
+double bncModel::cmpValue(t_satData* satData, bool phase) {
+
+  Tracer tracer("bncModel::cmpValue");
+
+  ColumnVector xRec(3);
+  xRec(1) = x();
+  xRec(2) = y();
+  xRec(3) = z();
+
+  double rho0 = (satData->xx - xRec).norm_Frobenius();
+  double dPhi = t_CST::omega * rho0 / t_CST::c; 
+
+  xRec(1) = x() * cos(dPhi) - y() * sin(dPhi); 
+  xRec(2) = y() * cos(dPhi) + x() * sin(dPhi); 
+  xRec(3) = z();
+
+  tides(_time, xRec);
+
+  satData->rho = (satData->xx - xRec).norm_Frobenius();
+
+  double tropDelay = delay_saast(satData->eleSat) + 
+                     trp() / sin(satData->eleSat);
+
+  double wind = 0.0;
+  if (phase) {
+    wind = windUp(satData->prn, satData->xx, xRec) * satData->lambda3;
+  }
+
+  double offset = 0.0;
+  if (satData->prn[0] == 'E') {
+    offset = Galileo_offset();
+  }
+
+  double phaseCenter = 0.0;
+  if (_antex) { 
+    bool found;
+    phaseCenter = _antex->pco(_antennaName, satData->eleSat, found);
+    if (!found) {
+      emit newMessage("ANTEX: antenna >" 
+                      + _antennaName.toAscii() + "< not found", true);
+    }
+  }
+
+  double antennaOffset = 0.0;
+  if (_dN != 0.0 || _dE != 0.0 || _dU != 0.0) {
+    double cosa = cos(satData->azSat);
+    double sina = sin(satData->azSat);
+    double cose = cos(satData->eleSat);
+    double sine = sin(satData->eleSat);
+    antennaOffset = -_dN * cosa*cose - _dE * sina*cose - _dU * sine;
+  }
+
+  return satData->rho + phaseCenter + antennaOffset + clk() 
+                      + offset - satData->clk + tropDelay + wind;
+}
+
+// Tropospheric Model (Saastamoinen)
+////////////////////////////////////////////////////////////////////////////
+double bncModel::delay_saast(double Ele) {
+
+  Tracer tracer("bncModel::delay_saast");
+
+  double xyz[3]; 
+  xyz[0] = x();
+  xyz[1] = y();
+  xyz[2] = z();
+  double ell[3]; 
+  xyz2ell(xyz, ell);
+  double height = ell[2];
+
+  double pp =  1013.25 * pow(1.0 - 2.26e-5 * height, 5.225);
+  double TT =  18.0 - height * 0.0065 + 273.15;
+  double hh =  50.0 * exp(-6.396e-4 * height);
+  double ee =  hh / 100.0 * exp(-37.2465 + 0.213166*TT - 0.000256908*TT*TT);
+
+  double h_km = height / 1000.0;
+  
+  if (h_km < 0.0) h_km = 0.0;
+  if (h_km > 5.0) h_km = 5.0;
+  int    ii   = int(h_km + 1);
+  double href = ii - 1;
+  
+  double bCor[6]; 
+  bCor[0] = 1.156;
+  bCor[1] = 1.006;
+  bCor[2] = 0.874;
+  bCor[3] = 0.757;
+  bCor[4] = 0.654;
+  bCor[5] = 0.563;
+  
+  double BB = bCor[ii-1] + (bCor[ii]-bCor[ii-1]) * (h_km - href);
+  
+  double zen  = M_PI/2.0 - Ele;
+
+  return (0.002277/cos(zen)) * (pp + ((1255.0/TT)+0.05)*ee - BB*(tan(zen)*tan(zen)));
+}
+
+// Prediction Step of the Filter
+////////////////////////////////////////////////////////////////////////////
+void bncModel::predict(int iPhase, t_epoData* epoData) {
+
+  Tracer tracer("bncModel::predict");
+
+  if (iPhase == 0) {
+
+    bncSettings settings;
+    
+    _time = epoData->tt; // current epoch time
+    
+    _maxSolGap = settings.value("pppMaxSolGap").toDouble();
+    
+    bool firstCrd = false;
+    if (!_lastTimeOK.valid() || (_maxSolGap > 0 && _time - _lastTimeOK > _maxSolGap)) {
+      firstCrd = true;
+      _startTime = epoData->tt;
+      reset();
+    }
+    
+    // Use different white noise for Quick-Start mode
+    // ----------------------------------------------
+    double sigCrdP_used   = _sigCrdP;
+    if ( _quickStart > 0.0 && _quickStart > (epoData->tt - _startTime) ) {
+      sigCrdP_used   = 0.0;
+    }
+
+    // Predict Parameter values, add white noise
+    // -----------------------------------------
+    for (int iPar = 1; iPar <= _params.size(); iPar++) {
+      bncParam* pp = _params[iPar-1];
+    
+      // Coordinates
+      // -----------
+      if      (pp->type == bncParam::CRD_X) {
+        if (firstCrd) {
+          if (settings.value("pppRefCrdX").toString() != "" &&
+              settings.value("pppRefCrdY").toString() != "" &&
+              settings.value("pppRefCrdZ").toString() != "") {
+            pp->xx = settings.value("pppRefCrdX").toDouble();
+          }
+          else {
+            pp->xx = _xcBanc(1);
+          }
+        }
+        _QQ(iPar,iPar) += sigCrdP_used * sigCrdP_used;
+      }
+      else if (pp->type == bncParam::CRD_Y) {
+        if (firstCrd) {
+          if (settings.value("pppRefCrdX").toString() != "" &&
+              settings.value("pppRefCrdY").toString() != "" &&
+              settings.value("pppRefCrdZ").toString() != "") {
+            pp->xx = settings.value("pppRefCrdY").toDouble();
+          }
+          else {
+            pp->xx = _xcBanc(2);
+          }
+        }
+        _QQ(iPar,iPar) += sigCrdP_used * sigCrdP_used;
+      }
+      else if (pp->type == bncParam::CRD_Z) {
+        if (firstCrd) {
+          if (settings.value("pppRefCrdX").toString() != "" &&
+              settings.value("pppRefCrdY").toString() != "" &&
+              settings.value("pppRefCrdZ").toString() != "") {
+            pp->xx = settings.value("pppRefCrdZ").toDouble();
+          }
+          else {
+            pp->xx = _xcBanc(3);
+          }
+        }
+        _QQ(iPar,iPar) += sigCrdP_used * sigCrdP_used;
+      }   
+    
+      // Receiver Clocks
+      // ---------------
+      else if (pp->type == bncParam::RECCLK) {
+        pp->xx = _xcBanc(4);
+        for (int jj = 1; jj <= _params.size(); jj++) {
+          _QQ(iPar, jj) = 0.0;
+        }
+        _QQ(iPar,iPar) = _sigClk0 * _sigClk0;
+      }
+    
+      // Tropospheric Delay
+      // ------------------
+      else if (pp->type == bncParam::TROPO) {
+        _QQ(iPar,iPar) += _sigTrpP * _sigTrpP;
+      }
+    
+      // Galileo Offset
+      // --------------
+      else if (pp->type == bncParam::GALILEO_OFFSET) {
+        _QQ(iPar,iPar) += _sigGalileoOffsetP * _sigGalileoOffsetP;
+      }
+    }
+  }
+
+  // Add New Ambiguities if necessary
+  // --------------------------------
+  if (_usePhase) {
+
+    // Make a copy of QQ and xx, set parameter indices
+    // -----------------------------------------------
+    SymmetricMatrix QQ_old = _QQ;
+    
+    for (int iPar = 1; iPar <= _params.size(); iPar++) {
+      _params[iPar-1]->index_old = _params[iPar-1]->index;
+      _params[iPar-1]->index     = 0;
+    }
+    
+    // Remove Ambiguity Parameters without observations
+    // ------------------------------------------------
+    int iPar = 0;
+    QMutableVectorIterator<bncParam*> im(_params);
+    while (im.hasNext()) {
+      bncParam* par = im.next();
+      bool removed = false;
+      if (par->type == bncParam::AMB_L3) {
+        if (epoData->satData.find(par->prn) == epoData->satData.end()) {
+          removed = true;
+          delete par;
+          im.remove();
+        }
+      }
+      if (! removed) {
+        ++iPar;
+        par->index = iPar;
+      }
+    }
+    
+    // Add new ambiguity parameters
+    // ----------------------------
+    QMapIterator<QString, t_satData*> it(epoData->satData);
+    while (it.hasNext()) {
+      it.next();
+      t_satData* satData = it.value();
+      addAmb(satData);
+    }
+    
+    int nPar = _params.size();
+    _QQ.ReSize(nPar); _QQ = 0.0;
+    for (int i1 = 1; i1 <= nPar; i1++) {
+      bncParam* p1 = _params[i1-1];
+      if (p1->index_old != 0) {
+        _QQ(p1->index, p1->index) = QQ_old(p1->index_old, p1->index_old);
+        for (int i2 = 1; i2 <= nPar; i2++) {
+          bncParam* p2 = _params[i2-1];
+          if (p2->index_old != 0) {
+            _QQ(p1->index, p2->index) = QQ_old(p1->index_old, p2->index_old);
+          }
+        }
+      }
+    }
+    
+    for (int ii = 1; ii <= nPar; ii++) {
+      bncParam* par = _params[ii-1];
+      if (par->index_old == 0) {
+        _QQ(par->index, par->index) = _sigAmb0 * _sigAmb0;
+      }
+      par->index_old = par->index;
+    }
+  }
+}
+
+// Update Step of the Filter (currently just a single-epoch solution)
+////////////////////////////////////////////////////////////////////////////
+t_irc bncModel::update(t_epoData* epoData) {
+
+  Tracer tracer("bncModel::update");
+
+  bncSettings settings;
+
+  _log.clear();  
+
+  if (settings.value("pppSPP").toString() == "PPP") {
+    _log += "Precise Point Positioning of Epoch " 
+          + QByteArray(_time.timestr(1).c_str()) +
+          "\n---------------------------------------------------------------\n";
+  }
+  else {
+    _log += "Single Point Positioning of Epoch " 
+          + QByteArray(_time.timestr(1).c_str()) +
+          "\n--------------------------------------------------------------\n";
+  }
+
+  // Outlier Detection Loop
+  // ----------------------
+  if (update_p(epoData) != success) {
+    emit newMessage(_log, false);
+    return failure;
+  }
+
+  // Remember the Epoch-specific Results for the computation of means
+  // ----------------------------------------------------------------
+  pppPos* newPos = new pppPos;
+  newPos->time   = epoData->tt;
+
+  // Set Solution Vector
+  // -------------------
+  ostringstream strB;
+  strB.setf(ios::fixed);
+  QVectorIterator<bncParam*> itPar(_params);
+  while (itPar.hasNext()) {
+    bncParam* par = itPar.next();
+
+    if      (par->type == bncParam::RECCLK) {
+      strB << "\n    clk     = " << setw(10) << setprecision(3) << par->xx 
+           << " +- " << setw(6) << setprecision(3) 
+           << sqrt(_QQ(par->index,par->index));
+    }
+    else if (par->type == bncParam::AMB_L3) {
+      ++par->numEpo;
+      strB << "\n    amb " << par->prn.toAscii().data() << " = "
+           << setw(10) << setprecision(3) << par->xx 
+           << " +- " << setw(6) << setprecision(3) 
+           << sqrt(_QQ(par->index,par->index))
+           << "   nEpo = " << par->numEpo;
+    }
+    else if (par->type == bncParam::TROPO) {
+      double aprTrp = delay_saast(M_PI/2.0);
+      strB << "\n    trp     = " << par->prn.toAscii().data()
+           << setw(7) << setprecision(3) << aprTrp << " "
+           << setw(6) << setprecision(3) << showpos << par->xx << noshowpos
+           << " +- " << setw(6) << setprecision(3) 
+           << sqrt(_QQ(par->index,par->index));
+      newPos->xnt[6] = aprTrp + par->xx;
+    }
+    else if (par->type == bncParam::GALILEO_OFFSET) {
+      strB << "\n    offset  = " << setw(10) << setprecision(3) << par->xx 
+           << " +- " << setw(6) << setprecision(3) 
+           << sqrt(_QQ(par->index,par->index));
+    }
+  }
+  strB << '\n';
+  _log += strB.str().c_str();
+  emit newMessage(_log, false);
+
+  // Final Message (both log file and screen)
+  // ----------------------------------------
+  ostringstream strC;
+  strC.setf(ios::fixed);
+  strC << _staID.data() << "  PPP " 
+       << epoData->tt.timestr(1) << " " << epoData->sizeAll() << " "
+       << setw(14) << setprecision(3) << x()                  << " +- "
+       << setw(6)  << setprecision(3) << sqrt(_QQ(1,1))       << " "
+       << setw(14) << setprecision(3) << y()                  << " +- "
+       << setw(6)  << setprecision(3) << sqrt(_QQ(2,2))       << " "
+       << setw(14) << setprecision(3) << z()                  << " +- "
+       << setw(6)  << setprecision(3) << sqrt(_QQ(3,3));
+
+  // NEU Output
+  // ----------
+  double xyzRef[3];
+
+  if (settings.value("pppRefCrdX").toString() != "" &&
+      settings.value("pppRefCrdY").toString() != "" &&
+      settings.value("pppRefCrdZ").toString() != "") {
+
+    xyzRef[0] = settings.value("pppRefCrdX").toDouble();
+    xyzRef[1] = settings.value("pppRefCrdY").toDouble();
+    xyzRef[2] = settings.value("pppRefCrdZ").toDouble();
+
+    newPos->xnt[0] = x() - xyzRef[0];
+    newPos->xnt[1] = y() - xyzRef[1];
+    newPos->xnt[2] = z() - xyzRef[2];
+
+    double ellRef[3];
+    xyz2ell(xyzRef, ellRef);
+    xyz2neu(ellRef, newPos->xnt, &newPos->xnt[3]);
+
+    strC << "  NEU "
+         << setw(8) << setprecision(3) << newPos->xnt[3] << " "
+         << setw(8) << setprecision(3) << newPos->xnt[4] << " "
+         << setw(8) << setprecision(3) << newPos->xnt[5] << endl;
+
+  }
+
+  emit newMessage(QByteArray(strC.str().c_str()), true);
+
+  if (settings.value("pppAverage").toString() == "") {
+    delete newPos;
+  }
+  else {
+  
+   _posAverage.push_back(newPos); 
+
+    // Time Span for Average Computation
+    // ---------------------------------
+    double tRangeAverage = settings.value("pppAverage").toDouble() * 60.;
+    if (tRangeAverage < 0) {
+      tRangeAverage = 0;
+    }
+    if (tRangeAverage > 86400) {
+      tRangeAverage = 86400;
+    }
+
+    // Compute the Mean
+    // ----------------
+    ColumnVector mean(7); mean = 0.0;
+
+    QMutableVectorIterator<pppPos*> it(_posAverage);
+    while (it.hasNext()) {
+      pppPos* pp = it.next();
+      if ( (epoData->tt - pp->time) >= tRangeAverage ) {
+        delete pp;
+        it.remove();
+      }
+      else {
+        for (int ii = 0; ii < 7; ++ii) {
+          mean[ii] += pp->xnt[ii];
+        }
+      }
+    }
+
+    int nn = _posAverage.size();
+
+    if (nn > 0) {
+
+      mean /= nn;
+      
+      // Compute the Deviation
+      // ---------------------
+      ColumnVector std(7); std = 0.0;
+      QVectorIterator<pppPos*> it2(_posAverage);
+      while (it2.hasNext()) {
+        pppPos* pp = it2.next();
+        for (int ii = 0; ii < 7; ++ii) {
+          std[ii] += (pp->xnt[ii] - mean[ii]) * (pp->xnt[ii] - mean[ii]);
+        }
+      }
+      for (int ii = 0; ii < 7; ++ii) {
+        std[ii] = sqrt(std[ii] / nn);
+      }
+
+      if (settings.value("pppRefCrdX").toString() != "" &&
+          settings.value("pppRefCrdY").toString() != "" &&
+          settings.value("pppRefCrdZ").toString() != "") {
+       
+        ostringstream strD; strD.setf(ios::fixed);
+        strD << _staID.data() << "  AVE-XYZ " 
+             << epoData->tt.timestr(1) << " "
+             << setw(13) << setprecision(3) << mean[0] + xyzRef[0] << " +- "
+             << setw(6)  << setprecision(3) << std[0]   << " "
+             << setw(14) << setprecision(3) << mean[1] + xyzRef[1] << " +- "
+             << setw(6)  << setprecision(3) << std[1]   << " "
+             << setw(14) << setprecision(3) << mean[2] + xyzRef[2] << " +- "
+             << setw(6)  << setprecision(3) << std[2];
+        emit newMessage(QByteArray(strD.str().c_str()), true);
+
+        ostringstream strE; strE.setf(ios::fixed);
+        strE << _staID.data() << "  AVE-NEU " 
+             << epoData->tt.timestr(1) << " "
+             << setw(13) << setprecision(3) << mean[3]  << " +- "
+             << setw(6)  << setprecision(3) << std[3]   << " "
+             << setw(14) << setprecision(3) << mean[4]  << " +- "
+             << setw(6)  << setprecision(3) << std[4]   << " "
+             << setw(14) << setprecision(3) << mean[5]  << " +- "
+             << setw(6)  << setprecision(3) << std[5];
+        emit newMessage(QByteArray(strE.str().c_str()), true);
+
+        if ( Qt::CheckState(settings.value("pppEstTropo").toInt()) == Qt::Checked) {
+          ostringstream strF; strF.setf(ios::fixed);
+          strF << _staID.data() << "  AVE-TRP " 
+               << epoData->tt.timestr(1) << " "
+               << setw(13) << setprecision(3) << mean[6]  << " +- "
+               << setw(6)  << setprecision(3) << std[6]   << endl;
+          emit newMessage(QByteArray(strF.str().c_str()), true);
+        }
+      }
+    }
+  }
+
+  // NMEA Output
+  // -----------
+  double xyz[3]; 
+  xyz[0] = x();
+  xyz[1] = y();
+  xyz[2] = z();
+  double ell[3]; 
+  xyz2ell(xyz, ell);
+  double phiDeg = ell[0] * 180 / M_PI;
+  double lamDeg = ell[1] * 180 / M_PI;
+
+  char phiCh = 'N';
+  if (phiDeg < 0) {
+    phiDeg = -phiDeg;
+    phiCh  =  'S';
+  }   
+  char lamCh = 'E';
+  if (lamDeg < 0) {
+    lamDeg = -lamDeg;
+    lamCh  =  'W';
+  }   
+
+  string datestr = epoData->tt.datestr(0); // yyyymmdd
+  ostringstream strRMC;
+  strRMC.setf(ios::fixed);
+  strRMC << "GPRMC," 
+         << epoData->tt.timestr(0,0) << ",A,"
+         << setw(2) << setfill('0') << int(phiDeg) 
+         << setw(6) << setprecision(3) << setfill('0') 
+         << fmod(60*phiDeg,60) << ',' << phiCh << ','
+         << setw(3) << setfill('0') << int(lamDeg) 
+         << setw(6) << setprecision(3) << setfill('0') 
+         << fmod(60*lamDeg,60) << ',' << lamCh << ",,,"
+         << datestr[6] << datestr[7] << datestr[4] << datestr[5]
+         << datestr[2] << datestr[3] << ",,";
+
+  writeNMEAstr(QString(strRMC.str().c_str()));
+
+  double dop = 2.0; // TODO 
+
+  ostringstream strGGA;
+  strGGA.setf(ios::fixed);
+  strGGA << "GPGGA," 
+         << epoData->tt.timestr(0,0) << ','
+         << setw(2) << setfill('0') << int(phiDeg) 
+         << setw(10) << setprecision(7) << setfill('0') 
+         << fmod(60*phiDeg,60) << ',' << phiCh << ','
+         << setw(3) << setfill('0') << int(lamDeg) 
+         << setw(10) << setprecision(7) << setfill('0') 
+         << fmod(60*lamDeg,60) << ',' << lamCh 
+         << ",1," << setw(2) << setfill('0') << epoData->sizeAll() << ','
+         << setw(3) << setprecision(1) << dop << ','
+         << setprecision(3) << ell[2] << ",M,0.0,M,,";
+                 
+  writeNMEAstr(QString(strGGA.str().c_str()));
+
+  _lastTimeOK = _time; // remember time of last successful update
+  return success;
+}
+
+// Outlier Detection
+////////////////////////////////////////////////////////////////////////////
+QString bncModel::outlierDetection(int iPhase, const ColumnVector& vv,
+                                   QMap<QString, t_satData*>& satData) {
+
+  Tracer tracer("bncModel::outlierDetection");
+
+  QString prnGPS;
+  QString prnGlo;
+  double  maxResGPS = 0.0;
+  double  maxResGlo = 0.0;
+  findMaxRes(vv, satData, prnGPS, prnGlo, maxResGPS, maxResGlo);
+
+  if      (iPhase == 1) {
+    if      (maxResGlo > MAXRES_PHASE_GLONASS) { 
+      _log += "Outlier Phase " + prnGlo + " " 
+            + QByteArray::number(maxResGlo, 'f', 3) + "\n"; 
+      return prnGlo;
+    }
+    else if (maxResGPS > MAXRES_PHASE_GPS) { 
+      _log += "Outlier Phase " + prnGPS + " " 
+            + QByteArray::number(maxResGPS, 'f', 3) + "\n"; 
+      return prnGPS;
+    }
+  }
+  else if (iPhase == 0 && maxResGPS > MAXRES_CODE) {
+    _log += "Outlier Code  " + prnGPS + " " 
+          + QByteArray::number(maxResGPS, 'f', 3) + "\n"; 
+    return prnGPS;
+  }
+
+  return QString();
+}
+
+// 
+////////////////////////////////////////////////////////////////////////////
+void bncModel::writeNMEAstr(const QString& nmStr) {
+
+  Tracer tracer("bncModel::writeNMEAstr");
+
+  unsigned char XOR = 0;
+  for (int ii = 0; ii < nmStr.length(); ii++) {
+    XOR ^= (unsigned char) nmStr[ii].toAscii();
+  }
+
+  QString outStr = '$' + nmStr 
+                       + QString("*%1\n").arg(int(XOR), 0, 16).toUpper();
+  
+  if (_nmeaStream) {
+    *_nmeaStream << outStr;
+    _nmeaStream->flush();
+  }
+
+  emit newNMEAstr(outStr.toAscii());
+}
+
+//
+//////////////////////////////////////////////////////////////////////////////
+void bncModel::kalman(const Matrix& AA, const ColumnVector& ll, 
+                      const DiagonalMatrix& PP, 
+                      SymmetricMatrix& QQ, ColumnVector& dx) {
+
+  Tracer tracer("bncModel::kalman");
+
+  int nObs = AA.Nrows();
+  int nPar = AA.Ncols();
+
+  UpperTriangularMatrix SS = Cholesky(QQ).t();
+
+  Matrix SA = SS*AA.t();
+  Matrix SRF(nObs+nPar, nObs+nPar); SRF = 0;
+  for (int ii = 1; ii <= nObs; ++ii) {
+    SRF(ii,ii) = 1.0 / sqrt(PP(ii,ii));
+  }
+
+  SRF.SubMatrix   (nObs+1, nObs+nPar, 1, nObs) = SA;
+  SRF.SymSubMatrix(nObs+1, nObs+nPar)          = SS;
+  
+  UpperTriangularMatrix UU;
+  QRZ(SRF, UU);
+  
+  SS = UU.SymSubMatrix(nObs+1, nObs+nPar);
+  UpperTriangularMatrix SH_rt = UU.SymSubMatrix(1, nObs);
+  Matrix YY  = UU.SubMatrix(1, nObs, nObs+1, nObs+nPar);
+  
+  UpperTriangularMatrix SHi = SH_rt.i();
+  
+  Matrix KT  = SHi * YY; 
+  SymmetricMatrix Hi; Hi << SHi * SHi.t();
+
+  dx = KT.t() * ll;
+  QQ << (SS.t() * SS);
+}
+
+// Phase Wind-Up Correction
+///////////////////////////////////////////////////////////////////////////
+double bncModel::windUp(const QString& prn, const ColumnVector& rSat,
+                        const ColumnVector& rRec) {
+
+  Tracer tracer("bncModel::windUp");
+
+  double Mjd = _time.mjd() + _time.daysec() / 86400.0;
+
+  // First time - initialize to zero
+  // -------------------------------
+  if (!_windUpTime.contains(prn)) {
+    _windUpSum[prn]  = 0.0;
+  }
+
+  // Compute the correction for new time
+  // -----------------------------------
+  if (!_windUpTime.contains(prn) || _windUpTime[prn] != Mjd) {
+    _windUpTime[prn] = Mjd; 
+
+    // Unit Vector GPS Satellite --> Receiver
+    // --------------------------------------
+    ColumnVector rho = rRec - rSat;
+    rho /= rho.norm_Frobenius();
+    
+    // GPS Satellite unit Vectors sz, sy, sx
+    // -------------------------------------
+    ColumnVector sz = -rSat / rSat.norm_Frobenius();
+
+    ColumnVector xSun = Sun(Mjd);
+    xSun /= xSun.norm_Frobenius();
+
+    ColumnVector sy = crossproduct(sz, xSun);
+    ColumnVector sx = crossproduct(sy, sz);
+
+    // Effective Dipole of the GPS Satellite Antenna
+    // ---------------------------------------------
+    ColumnVector dipSat = sx - rho * DotProduct(rho,sx) 
+                                                - crossproduct(rho, sy);
+    
+    // Receiver unit Vectors rx, ry
+    // ----------------------------
+    ColumnVector rx(3);
+    ColumnVector ry(3);
+
+    double recEll[3]; xyz2ell(rRec.data(), recEll) ;
+    double neu[3];
+    
+    neu[0] = 1.0;
+    neu[1] = 0.0;
+    neu[2] = 0.0;
+    neu2xyz(recEll, neu, rx.data());
+    
+    neu[0] =  0.0;
+    neu[1] = -1.0;
+    neu[2] =  0.0;
+    neu2xyz(recEll, neu, ry.data());
+    
+    // Effective Dipole of the Receiver Antenna
+    // ----------------------------------------
+    ColumnVector dipRec = rx - rho * DotProduct(rho,rx) 
+                                                   + crossproduct(rho, ry);
+    
+    // Resulting Effect
+    // ----------------
+    double alpha = DotProduct(dipSat,dipRec) / 
+                      (dipSat.norm_Frobenius() * dipRec.norm_Frobenius());
+    
+    if (alpha >  1.0) alpha =  1.0;
+    if (alpha < -1.0) alpha = -1.0;
+    
+    double dphi = acos(alpha) / 2.0 / M_PI;  // in cycles
+    
+    if ( DotProduct(rho, crossproduct(dipSat, dipRec)) < 0.0 ) {
+      dphi = -dphi;
+    }
+
+    _windUpSum[prn] = floor(_windUpSum[prn] - dphi + 0.5) + dphi;
+  }
+
+  return _windUpSum[prn];  
+}
+
+// 
+///////////////////////////////////////////////////////////////////////////
+void bncModel::cmpEle(t_satData* satData) {
+  Tracer tracer("bncModel::cmpEle");
+  ColumnVector rr = satData->xx - _xcBanc.Rows(1,3);
+  double       rho = rr.norm_Frobenius();
+
+  double neu[3];
+  xyz2neu(_ellBanc.data(), rr.data(), neu);
+
+  satData->eleSat = acos( sqrt(neu[0]*neu[0] + neu[1]*neu[1]) / rho );
+  if (neu[2] < 0) {
+    satData->eleSat *= -1.0;
+  }
+  satData->azSat  = atan2(neu[1], neu[0]);
+}
+
+// 
+///////////////////////////////////////////////////////////////////////////
+void bncModel::addAmb(t_satData* satData) {
+  Tracer tracer("bncModel::addAmb");
+  bool    found = false;
+  for (int iPar = 1; iPar <= _params.size(); iPar++) {
+    if (_params[iPar-1]->type == bncParam::AMB_L3 && 
+        _params[iPar-1]->prn == satData->prn) {
+      found = true;
+      break;
+    }
+  }
+  if (!found) {
+    bncParam* par = new bncParam(bncParam::AMB_L3, 
+                                 _params.size()+1, satData->prn);
+    _params.push_back(par);
+    par->xx = satData->L3 - cmpValue(satData, true);
+  }
+}
+
+// 
+///////////////////////////////////////////////////////////////////////////
+void bncModel::addObs(int iPhase, unsigned& iObs, t_satData* satData,
+                      Matrix& AA, ColumnVector& ll, DiagonalMatrix& PP) {
+
+  Tracer tracer("bncModel::addObs");
+
+  const double ELEWGHT = 20.0;
+  double ellWgtCoef = 1.0;
+  double eleD = satData->eleSat * 180.0 / M_PI; 
+  if (eleD < ELEWGHT) {
+    ellWgtCoef = 1.5 - 0.5 / (ELEWGHT - 10.0) * (eleD - 10.0);
+  }
+
+  // Remember Observation Index
+  // --------------------------
+  ++iObs;
+  satData->obsIndex = iObs;
+
+  // Phase Observations
+  // ------------------
+  if (iPhase == 1) {
+    ll(iObs)      = satData->L3 - cmpValue(satData, true);
+    double sigL3 = _sigL3;
+    if (satData->system() == 'R') {
+      sigL3 *= GLONASS_WEIGHT_FACTOR;
+    }
+    PP(iObs,iObs) = 1.0 / (sigL3 * sigL3) / (ellWgtCoef * ellWgtCoef);
+    for (int iPar = 1; iPar <= _params.size(); iPar++) {
+      if (_params[iPar-1]->type == bncParam::AMB_L3 &&
+          _params[iPar-1]->prn  == satData->prn) {
+        ll(iObs) -= _params[iPar-1]->xx;
+      } 
+      AA(iObs, iPar) = _params[iPar-1]->partial(satData, true);
+    }
+  }
+
+  // Code Observations
+  // -----------------
+  else {
+    ll(iObs)      = satData->P3 - cmpValue(satData, false);
+    PP(iObs,iObs) = 1.0 / (_sigP3 * _sigP3) / (ellWgtCoef * ellWgtCoef);
+    for (int iPar = 1; iPar <= _params.size(); iPar++) {
+      AA(iObs, iPar) = _params[iPar-1]->partial(satData, false);
+    }
+  }
+}
+
+// 
+///////////////////////////////////////////////////////////////////////////
+QByteArray bncModel::printRes(int iPhase, const ColumnVector& vv, 
+                              const QMap<QString, t_satData*>& satDataMap) {
+
+  Tracer tracer("bncModel::printRes");
+
+  ostringstream str;
+  str.setf(ios::fixed);
+        
+  QMapIterator<QString, t_satData*> it(satDataMap);
+  while (it.hasNext()) {
+    it.next();
+    t_satData* satData = it.value();
+    if (satData->obsIndex != 0) {
+      str << _time.timestr(1)
+          << " RES " << satData->prn.toAscii().data() 
+          << (iPhase ? "   L3 " : "   P3 ")
+          << setw(9) << setprecision(4) << vv(satData->obsIndex) << endl;
+    }
+  }
+
+  return QByteArray(str.str().c_str());
+}
+
+// 
+///////////////////////////////////////////////////////////////////////////
+void bncModel::findMaxRes(const ColumnVector& vv,
+                          const QMap<QString, t_satData*>& satData,
+                          QString& prnGPS, QString& prnGlo, 
+                          double& maxResGPS, double& maxResGlo) { 
+
+  Tracer tracer("bncModel::findMaxRes");
+
+  maxResGPS  = 0.0;
+  maxResGlo  = 0.0;
+
+  QMapIterator<QString, t_satData*> it(satData);
+  while (it.hasNext()) {
+    it.next();
+    t_satData* satData = it.value();
+    if (satData->obsIndex != 0) {
+      QString prn = satData->prn;
+      if (prn[0] == 'R') {
+        if (fabs(vv(satData->obsIndex)) > maxResGlo) {
+          maxResGlo = fabs(vv(satData->obsIndex));
+          prnGlo    = prn;
+        }
+      }
+      else {
+        if (fabs(vv(satData->obsIndex)) > maxResGPS) {
+          maxResGPS = fabs(vv(satData->obsIndex));
+          prnGPS    = prn;
+        }
+      }
+    }
+  }
+}
+ 
+// Update Step (private - loop over outliers)
+////////////////////////////////////////////////////////////////////////////
+t_irc bncModel::update_p(t_epoData* epoData) {
+
+  Tracer tracer("bncModel::update_p");
+
+  // Save Variance-Covariance Matrix, and Status Vector
+  // --------------------------------------------------
+  rememberState(epoData);
+
+  QString lastOutlierPrn;
+
+  // Try with all satellites, then with all minus one, etc.
+  // ------------------------------------------------------
+  while (selectSatellites(lastOutlierPrn, epoData->satData) == success) {
+
+    QByteArray strResCode;
+    QByteArray strResPhase;
+
+    // Bancroft Solution
+    // -----------------
+    if (cmpBancroft(epoData) != success) {
+      break;
+    }
+
+    // First update using code observations, then phase observations
+    // -------------------------------------------------------------      
+    for (int iPhase = 0; iPhase <= (_usePhase ? 1 : 0); iPhase++) {
+    
+      // Status Prediction
+      // -----------------
+      predict(iPhase, epoData);
+      
+      // Create First-Design Matrix
+      // --------------------------
+      unsigned nPar = _params.size();
+      unsigned nObs = 0;
+      if (iPhase == 0) {
+        nObs = epoData->sizeAll() - epoData->sizeSys('R'); // Glonass code not used
+      }
+      else {
+        nObs = epoData->sizeAll();
+      }
+      
+      // Prepare first-design Matrix, vector observed-computed
+      // -----------------------------------------------------
+      Matrix          AA(nObs, nPar);  // first design matrix
+      ColumnVector    ll(nObs);        // tems observed-computed
+      DiagonalMatrix  PP(nObs); PP = 0.0;
+      
+      unsigned iObs = 0;
+      QMapIterator<QString, t_satData*> it(epoData->satData);
+      while (it.hasNext()) {
+        it.next();
+        t_satData* satData = it.value();
+        if (iPhase == 1 || satData->system() != 'R') {
+          QString prn = satData->prn;
+          addObs(iPhase, iObs, satData, AA, ll, PP);
+        }
+      }
+
+      // Compute Filter Update
+      // ---------------------
+      ColumnVector dx;
+      kalman(AA, ll, PP, _QQ, dx);
+      ColumnVector vv = ll - AA * dx;
+      
+      // Print Residuals
+      // ---------------
+      if (iPhase == 0) {
+        strResCode  = printRes(iPhase, vv, epoData->satData);
+      }
+      else {
+        strResPhase = printRes(iPhase, vv, epoData->satData);
+      }
+
+      // Check the residuals
+      // -------------------
+      lastOutlierPrn = outlierDetection(iPhase, vv, epoData->satData);
+
+      // No Outlier Detected
+      // -------------------
+      if (lastOutlierPrn.isEmpty()) {
+
+        QVectorIterator<bncParam*> itPar(_params);
+        while (itPar.hasNext()) {
+          bncParam* par = itPar.next();
+          par->xx += dx(par->index);
+        }
+
+        if (!_usePhase || iPhase == 1) {
+          if (_outlierGPS.size() > 0 || _outlierGlo.size() > 0) {
+            _log += "Neglected PRNs: ";
+            if (!_outlierGPS.isEmpty()) {
+              _log += _outlierGPS.last() + ' ';
+            }
+            QStringListIterator itGlo(_outlierGlo);
+            while (itGlo.hasNext()) {
+              QString prn = itGlo.next();
+              _log += prn + ' ';
+            }
+          }
+          _log += '\n';
+
+          _log += strResCode + strResPhase;
+
+          return success;
+        }
+      }
+
+      // Outlier Found
+      // -------------
+      else {
+        restoreState(epoData);
+        break;
+      }
+
+    } // for iPhase
+
+  } // while selectSatellites
+
+  restoreState(epoData);
+  return failure;
+}
+
+// Remeber Original State Vector and Variance-Covariance Matrix
+////////////////////////////////////////////////////////////////////////////
+void bncModel::rememberState(t_epoData* epoData) {
+
+  _QQ_sav = _QQ;
+
+  QVectorIterator<bncParam*> itSav(_params_sav);
+  while (itSav.hasNext()) {
+    bncParam* par = itSav.next();
+    delete par;
+  }
+  _params_sav.clear();
+
+  QVectorIterator<bncParam*> it(_params);
+  while (it.hasNext()) {
+    bncParam* par = it.next();
+    _params_sav.push_back(new bncParam(*par));
+  }
+
+  _epoData_sav->deepCopy(epoData);
+}
+
+// Restore Original State Vector and Variance-Covariance Matrix
+////////////////////////////////////////////////////////////////////////////
+void bncModel::restoreState(t_epoData* epoData) {
+
+  _QQ = _QQ_sav;
+
+  QVectorIterator<bncParam*> it(_params);
+  while (it.hasNext()) {
+    bncParam* par = it.next();
+    delete par;
+  }
+  _params.clear();
+
+  QVectorIterator<bncParam*> itSav(_params_sav);
+  while (itSav.hasNext()) {
+    bncParam* par = itSav.next();
+    _params.push_back(new bncParam(*par));
+  }
+
+  epoData->deepCopy(_epoData_sav);
+}
+
+// 
+////////////////////////////////////////////////////////////////////////////
+t_irc bncModel::selectSatellites(const QString& lastOutlierPrn, 
+                                 QMap<QString, t_satData*>& satData) {
+
+  // First Call 
+  // ----------
+  if (lastOutlierPrn.isEmpty()) {
+    _outlierGPS.clear();
+    _outlierGlo.clear();
+    return success;
+  }
+
+  // Second and next trials
+  // ----------------------
+  else {
+
+    if (lastOutlierPrn[0] == 'R') {
+      _outlierGlo << lastOutlierPrn;
+    }
+
+    // Remove all Glonass Outliers
+    // ---------------------------
+    QStringListIterator it(_outlierGlo);
+    while (it.hasNext()) {
+      QString prn = it.next();
+      if (satData.contains(prn)) {
+        delete satData.take(prn);
+      }
+    }
+
+    if (lastOutlierPrn[0] == 'R') {
+      _outlierGPS.clear();
+      return success;
+    }
+
+    // GPS Outlier appeared for the first time - try to delete it
+    // ----------------------------------------------------------
+    if (_outlierGPS.indexOf(lastOutlierPrn) == -1) {
+      _outlierGPS << lastOutlierPrn;
+      if (satData.contains(lastOutlierPrn)) {
+        delete satData.take(lastOutlierPrn);
+      }
+      return success;
+    }
+
+  }
+
+  return failure;
+}
Index: branches/BNC_LM/bncmodel.h
===================================================================
--- branches/BNC_LM/bncmodel.h	(revision 3570)
+++ branches/BNC_LM/bncmodel.h	(revision 3570)
@@ -0,0 +1,177 @@
+// Part of BNC, a utility for retrieving decoding and
+// converting GNSS data streams from NTRIP broadcasters.
+//
+// Copyright (C) 2007
+// German Federal Agency for Cartography and Geodesy (BKG)
+// http://www.bkg.bund.de
+// Czech Technical University Prague, Department of Geodesy
+// http://www.fsv.cvut.cz
+//
+// Email: euref-ip@bkg.bund.de
+//
+// This program is free software; you can redistribute it and/or
+// modify it under the terms of the GNU General Public License
+// as published by the Free Software Foundation, version 2.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+#ifndef BNCMODEL_H
+#define BNCMODEL_H
+
+#include <QtCore>
+#include <QtNetwork>
+#include <newmat.h>
+
+#include "bncconst.h"
+#include "bnctime.h"
+
+class t_epoData;
+class t_satData;
+class bncAntex;
+
+class bncParam {
+ public:
+  enum parType {CRD_X, CRD_Y, CRD_Z, RECCLK, TROPO, AMB_L3, GALILEO_OFFSET};
+  bncParam(parType typeIn, int indexIn, const QString& prn);
+  ~bncParam();
+  double partial(t_satData* satData, bool phase);
+  bool isCrd() const {
+    return (type == CRD_X || type == CRD_Y || type == CRD_Z);
+  }
+  parType  type;
+  double   xx;
+  int      index;
+  int      index_old;
+  int      numEpo;
+  QString  prn;
+};
+
+class bncModel : public QObject {
+ Q_OBJECT
+ public:
+  bncModel(QByteArray staID);
+  ~bncModel();
+  t_irc update(t_epoData* epoData);
+  bncTime time()  const {return _time;}
+  double x()      const {return _params[0]->xx;}
+  double y()      const {return _params[1]->xx;}
+  double z()      const {return _params[2]->xx;}
+  double clk()    const {return _params[3]->xx;}
+  double trp() const {
+    for (int ii = 0; ii < _params.size(); ++ii) {
+      bncParam* pp = _params[ii];
+      if (pp->type == bncParam::TROPO) {
+        return pp->xx;
+      }
+    }
+    return 0.0;
+  }
+  double Galileo_offset() const {
+    for (int ii = 0; ii < _params.size(); ++ii) {
+      bncParam* pp = _params[ii];
+      if (pp->type == bncParam::GALILEO_OFFSET) {
+        return pp->xx;
+      }
+    }
+    return 0.0;
+  }
+
+  static void kalman(const Matrix& AA, const ColumnVector& ll, 
+                     const DiagonalMatrix& PP, 
+                     SymmetricMatrix& QQ, ColumnVector& dx);
+
+ signals:
+  void newMessage(QByteArray msg, bool showOnScreen);
+  void newNMEAstr(QByteArray str);
+
+ private:
+  t_irc cmpBancroft(t_epoData* epoData);
+  void   reset();
+  void   cmpEle(t_satData* satData);
+  void   addAmb(t_satData* satData);
+  void   addObs(int iPhase, unsigned& iObs, t_satData* satData,
+                Matrix& AA, ColumnVector& ll, DiagonalMatrix& PP);
+  QByteArray printRes(int iPhase, const ColumnVector& vv, 
+                      const QMap<QString, t_satData*>& satDataMap);
+  void   findMaxRes(const ColumnVector& vv,
+                    const QMap<QString, t_satData*>& satData,
+                    QString& prnGPS, QString& prnGlo,  
+                    double& maxResGPS, double& maxResGlo); 
+  double cmpValue(t_satData* satData, bool phase);
+  double delay_saast(double Ele);
+  void   predict(int iPhase, t_epoData* epoData);
+  t_irc  update_p(t_epoData* epoData);
+  QString outlierDetection(int iPhase, const ColumnVector& vv,
+                           QMap<QString, t_satData*>& satData);
+  void writeNMEAstr(const QString& nmStr);
+
+  double windUp(const QString& prn, const ColumnVector& rSat,
+                const ColumnVector& rRec);
+
+  bncTime  _startTime;
+
+  void rememberState(t_epoData* epoData);
+  void restoreState(t_epoData* epoData);
+  
+  t_irc selectSatellites(const QString& lastOutlierPrn, 
+                         QMap<QString, t_satData*>& satData);
+
+  class pppPos {
+   public:
+    pppPos() {
+      for (int ii = 0; ii < 7; ++ii) {
+        xnt[ii] = 0.0;
+      }
+    }
+    bncTime time;
+    double  xnt[7];
+  };
+
+  bncTime               _time;
+  bncTime               _lastTimeOK;
+  QByteArray            _staID;
+  QVector<bncParam*>    _params;
+  SymmetricMatrix       _QQ;
+  QVector<bncParam*>    _params_sav;
+  SymmetricMatrix       _QQ_sav;
+  t_epoData*            _epoData_sav;
+  ColumnVector          _xcBanc;
+  ColumnVector          _ellBanc;
+  bool                  _usePhase;
+  bool                  _estTropo;
+  bool                  _useGalileo;
+  QByteArray            _log;
+  QFile*                _nmeaFile;
+  QTextStream*          _nmeaStream;
+  QMap<QString, double> _windUpTime;
+  QMap<QString, double> _windUpSum;
+  QVector<pppPos*>      _posAverage;
+  double                _quickStart;
+  double                _maxSolGap;
+  double                _sigCrd0;
+  double                _sigCrdP;
+  double                _sigTrp0;
+  double                _sigTrpP;
+  double                _sigGalileoOffset0;
+  double                _sigGalileoOffsetP;
+  double                _sigL3;
+  double                _sigP3;
+  double                _sigAmb0;
+  double                _sigClk0;
+  double                _dN;
+  double                _dE;
+  double                _dU;
+  bncAntex*             _antex;
+  QString               _antennaName;
+  QStringList           _outlierGPS;
+  QStringList           _outlierGlo;
+};
+
+#endif
Index: branches/BNC_LM/bncnetquery.h
===================================================================
--- branches/BNC_LM/bncnetquery.h	(revision 3570)
+++ branches/BNC_LM/bncnetquery.h	(revision 3570)
@@ -0,0 +1,43 @@
+#ifndef BNCNETQUERY_H
+#define BNCNETQUERY_H
+
+#include <QtNetwork>
+#include "bncconst.h"
+#include "bncapp.h"
+
+class bncNetQuery : public QObject {
+ Q_OBJECT
+
+ public:
+  enum queryStatus {init, running, finished, error};
+
+  bncNetQuery() {
+    connect(this,           SIGNAL(newMessage(QByteArray,bool)), 
+            (bncApp*) qApp, SLOT(slotMessage(const QByteArray,bool)));
+  }
+  virtual ~bncNetQuery() {}
+  
+  virtual void stop() = 0;
+  virtual void waitForRequestResult(const QUrl& url, QByteArray& outData) = 0;
+  virtual void startRequest(const QUrl& url, const QByteArray& gga) = 0;
+  virtual void waitForReadyRead(QByteArray& outData) = 0;
+  
+  void sendNMEA(const QByteArray& gga) {
+    stop();
+    startRequest(_url, gga);
+  }
+
+  queryStatus status() const {return _status;}
+
+ signals:
+  void newMessage(QByteArray msg, bool showOnScreen);
+
+ private slots:
+
+ protected:
+  queryStatus _status;
+  int         _timeOut;
+  QUrl        _url;
+};
+
+#endif
Index: branches/BNC_LM/bncnetqueryrtp.cpp
===================================================================
--- branches/BNC_LM/bncnetqueryrtp.cpp	(revision 3570)
+++ branches/BNC_LM/bncnetqueryrtp.cpp	(revision 3570)
@@ -0,0 +1,238 @@
+/* -------------------------------------------------------------------------
+ * BKG NTRIP Client
+ * -------------------------------------------------------------------------
+ *
+ * Class:      bncNetQueryRtp
+ *
+ * Purpose:    Blocking Network Requests (NTRIP Version 2 with RTSP)
+ *
+ * Author:     L. Mervart
+ *
+ * Created:    27-Dec-2008
+ *
+ * Changes:    
+ *
+ * -----------------------------------------------------------------------*/
+
+#include <iostream>
+#include <iomanip>
+
+#include "bncnetqueryrtp.h"
+#include "bncsettings.h"
+#include "bncversion.h"
+
+using namespace std;
+
+// Constructor
+////////////////////////////////////////////////////////////////////////////
+bncNetQueryRtp::bncNetQueryRtp() {
+  _socket    = 0;
+  _udpSocket = 0;
+  _CSeq      = 0;
+  _eventLoop = new QEventLoop(this);
+}
+
+// Destructor
+////////////////////////////////////////////////////////////////////////////
+bncNetQueryRtp::~bncNetQueryRtp() {
+  delete _eventLoop;
+  delete _socket;
+  delete _udpSocket;
+}
+
+// 
+////////////////////////////////////////////////////////////////////////////
+void bncNetQueryRtp::stop() {
+  _eventLoop->quit();
+  _status = finished;
+  if (_socket) {
+    QByteArray reqStr = "TEARDOWN " + _url.toEncoded() + " RTSP/1.0\r\n"
+                      + "CSeq: " + QString("%1").arg(++_CSeq).toAscii() + "\r\n"
+                      + "Session: " + _session + "\r\n"
+                      + "\r\n";
+    _socket->write(reqStr, reqStr.length());
+  }
+}
+
+// 
+////////////////////////////////////////////////////////////////////////////
+void bncNetQueryRtp::slotKeepAlive() {
+  if (_socket) {
+    QByteArray reqStr = "GET_PARAMETER " + _url.toEncoded() + " RTSP/1.0\r\n"
+                      + "CSeq: " + QString("%1").arg(++_CSeq).toAscii() + "\r\n"
+                      + "Session: " + _session + "\r\n"
+                      + "\r\n";
+    _socket->write(reqStr, reqStr.length());
+  }
+  QTimer::singleShot(30000, this, SLOT(slotKeepAlive()));
+}
+
+// 
+////////////////////////////////////////////////////////////////////////////
+void bncNetQueryRtp::waitForRequestResult(const QUrl&, QByteArray&) {
+}
+
+// 
+////////////////////////////////////////////////////////////////////////////
+void bncNetQueryRtp::waitForReadyRead(QByteArray& outData) {
+
+  // Wait Loop
+  // ---------
+  if (!_udpSocket->hasPendingDatagrams()) {
+    _eventLoop->exec();
+  }
+
+  // Append Data
+  // -----------
+  QByteArray datagram;
+  datagram.resize(_udpSocket->pendingDatagramSize());
+  _udpSocket->readDatagram(datagram.data(), datagram.size());
+
+  if (datagram.size() > 12) {
+    outData.append(datagram.mid(12));
+  }
+}
+
+// Connect to Caster, send the Request
+////////////////////////////////////////////////////////////////////////////
+void bncNetQueryRtp::startRequest(const QUrl& url, const QByteArray& gga) {
+
+  const int timeOut = 5000;
+
+  _status = running;
+
+  delete _socket;
+  _socket = new QTcpSocket();
+
+  // Default scheme
+  // --------------
+  _url = url;
+  _url.setScheme("rtsp");
+
+  // Connect the Socket
+  // ------------------
+  bncSettings settings;
+  QString proxyHost = settings.value("proxyHost").toString();
+  int     proxyPort = settings.value("proxyPort").toInt();
+ 
+  if ( proxyHost.isEmpty() ) {
+    _socket->connectToHost(_url.host(), _url.port());
+  }
+  else {
+    _socket->connectToHost(proxyHost, proxyPort);
+  }
+
+  // Send Request 1
+  // --------------
+  if (_socket->waitForConnected(timeOut)) {
+    QString uName = QUrl::fromPercentEncoding(_url.userName().toAscii());
+    QString passW = QUrl::fromPercentEncoding(_url.password().toAscii());
+    QByteArray userAndPwd;
+    
+    if(!uName.isEmpty() || !passW.isEmpty()) {
+      userAndPwd = "Authorization: Basic " + (uName.toAscii() + ":" +
+      passW.toAscii()).toBase64() + "\r\n";
+    }
+
+    // Setup the RTSP Connection
+    // -------------------------
+    delete _udpSocket;
+    _udpSocket = new QUdpSocket();
+    _udpSocket->bind(0);
+    connect(_udpSocket, SIGNAL(readyRead()), _eventLoop, SLOT(quit()));
+    QByteArray clientPort = QString("%1").arg(_udpSocket->localPort()).toAscii();
+
+    QByteArray reqStr;
+    reqStr = "SETUP " + _url.toEncoded() + " RTSP/1.0\r\n"
+           + "CSeq: " + QString("%1").arg(++_CSeq).toAscii() + "\r\n"
+           + "Ntrip-Version: Ntrip/2.0\r\n"
+           + "Ntrip-Component: Ntripclient\r\n"
+           + "User-Agent: NTRIP BNC/" BNCVERSION "\r\n"
+           + "Transport: RTP/GNSS;unicast;client_port=" + clientPort + "\r\n"
+           + userAndPwd;
+    if (!gga.isEmpty()) {
+      reqStr += "Ntrip-GGA: " + gga + "\r\n";
+    }
+    reqStr += "\r\n";
+
+    _socket->write(reqStr, reqStr.length());
+    
+    // Read Server Answer 1
+    // --------------------
+    if (_socket->waitForBytesWritten(timeOut)) {
+      if (_socket->waitForReadyRead(timeOut)) {
+        QTextStream in(_socket);
+        QByteArray serverPort;
+        QString line = in.readLine();
+        while (!line.isEmpty()) {
+          if (line.indexOf("Session:") == 0) {
+            _session = line.mid(9).toAscii();
+          }
+          int iSrv = line.indexOf("server_port=");
+          if (iSrv != -1) {
+            serverPort = line.mid(iSrv+12).toAscii();
+          }
+          line = in.readLine();
+        }
+    
+        // Send Request 2
+        // --------------
+        if (!_session.isEmpty()) { 
+
+          // Send initial RTP packet for firewall handling
+          // ---------------------------------------------
+          if (!serverPort.isEmpty()) {
+            unsigned sessInt = _session.toInt();
+            char rtpbuffer[12];
+            rtpbuffer[0]  = 128;
+            rtpbuffer[1]  =  96;
+            rtpbuffer[2]  =   0;
+            rtpbuffer[3]  =   0;
+            rtpbuffer[4]  =   0;
+            rtpbuffer[5]  =   0;
+            rtpbuffer[6]  =   0;
+            rtpbuffer[7]  =   0;
+            rtpbuffer[8]  = (sessInt >> 24) & 0xFF;
+            rtpbuffer[9]  = (sessInt >> 16) & 0xFF;
+            rtpbuffer[10] = (sessInt >>  8) & 0xFF;
+            rtpbuffer[11] = (sessInt      ) & 0xFF;
+
+            _udpSocket->writeDatagram(rtpbuffer, 12, 
+                              _socket->peerAddress(), serverPort.toInt());
+          }
+
+          reqStr = "PLAY " + _url.toEncoded() + " RTSP/1.0\r\n"
+                 + "CSeq: " + QString("%1").arg(++_CSeq).toAscii() + "\r\n"
+                 + "Session: " + _session + "\r\n"
+                 + "\r\n";
+          _socket->write(reqStr, reqStr.length());
+    
+          // Read Server Answer 2
+          // --------------------
+          if (_socket->waitForBytesWritten(timeOut)) {
+            if (_socket->waitForReadyRead(timeOut)) {
+              QTextStream in(_socket);
+              line = in.readLine();
+              while (!line.isEmpty()) {
+                if (line.indexOf("200 OK") != -1) {
+                  emit newMessage(_url.encodedPath().replace(0,1,"")
+                            + ": UDP connection established", true);
+                  slotKeepAlive();
+                  return;
+                }
+                line = in.readLine();
+              }
+            }
+          }
+        }
+      }
+    }
+  }
+
+  delete _socket;
+  _socket = 0;
+  _status = error;
+  emit newMessage(_url.encodedPath().replace(0,1,"")
+                  + ": NetQuery, waiting for connect", true);
+}
+
Index: branches/BNC_LM/bncnetqueryrtp.h
===================================================================
--- branches/BNC_LM/bncnetqueryrtp.h	(revision 3570)
+++ branches/BNC_LM/bncnetqueryrtp.h	(revision 3570)
@@ -0,0 +1,28 @@
+#ifndef BNCNETQUERYRTP_H
+#define BNCNETQUERYRTP_H
+
+#include "bncnetquery.h"
+
+class bncNetQueryRtp : public bncNetQuery {
+ Q_OBJECT
+ public:
+  bncNetQueryRtp();
+  virtual ~bncNetQueryRtp();
+
+  virtual void stop();
+  virtual void waitForRequestResult(const QUrl& url, QByteArray& outData);
+  virtual void startRequest(const QUrl& url, const QByteArray& gga);
+  virtual void waitForReadyRead(QByteArray& outData);
+
+ private slots:
+  void slotKeepAlive();
+
+ private:
+  QTcpSocket* _socket;
+  QUdpSocket* _udpSocket;
+  QEventLoop* _eventLoop;
+  QByteArray  _session;
+  int         _CSeq;
+};
+
+#endif
Index: branches/BNC_LM/bncnetquerys.cpp
===================================================================
--- branches/BNC_LM/bncnetquerys.cpp	(revision 3570)
+++ branches/BNC_LM/bncnetquerys.cpp	(revision 3570)
@@ -0,0 +1,197 @@
+/* -------------------------------------------------------------------------
+ * BKG NTRIP Client
+ * -------------------------------------------------------------------------
+ *
+ * Class:      bncnetquerys
+ *
+ * Purpose:    Serial Communication Requests, no NTRIP
+ *
+ * Author:     G. Weber
+ *
+ * Created:    8-Mar-2009
+ *
+ * Changes:    
+ *
+ * -----------------------------------------------------------------------*/
+
+#include "bncnetquerys.h"
+#include "bncversion.h"
+
+using namespace std;
+
+// Constructor
+////////////////////////////////////////////////////////////////////////////
+bncNetQueryS::bncNetQueryS() {
+
+  _serialPort = 0;
+
+}
+
+// Destructor
+////////////////////////////////////////////////////////////////////////////
+bncNetQueryS::~bncNetQueryS() {
+  delete _serialPort;
+}
+
+// 
+////////////////////////////////////////////////////////////////////////////
+void bncNetQueryS::stop() {
+#ifndef sparc
+  if (_serialPort) {
+  }
+#endif
+  _status = finished;
+} 
+
+// 
+/////////////////////////////////////////////////////////////////////////////
+void bncNetQueryS::waitForRequestResult(const QUrl&, QByteArray&) {
+}
+
+// 
+////////////////////////////////////////////////////////////////////////////
+void bncNetQueryS::waitForReadyRead(QByteArray& outData) {
+  if (_serialPort) {
+    while (true) {
+      int nb = _serialPort->bytesAvailable();
+      if (nb > 0) {
+        outData = _serialPort->read(nb);
+        return;
+      }
+    }
+  }
+}
+
+// Connect to Serial Port
+////////////////////////////////////////////////////////////////////////////
+void bncNetQueryS::startRequest(const QUrl& url, const QByteArray& gga) {
+
+  QByteArray dummy_gga = gga;
+
+  _url = url;
+  if (_url.scheme().isEmpty()) {
+    _url.setScheme("http");
+  }
+  if (_url.path().isEmpty()) {
+    _url.setPath("/");
+  }
+
+  QString hlp;
+  QStringList hlpL;
+  hlp = _url.host().toAscii().replace("-"," ");
+  hlpL = hlp.split(" ");
+
+  // Serial Port
+  // -----------
+  QString _portString;
+  if (hlpL.size() == 6) {
+    _portString = hlpL[hlpL.size()-6].replace("com","COM");
+  } else {
+    _portString = "/" + hlpL[hlpL.size()-7] + "/" + hlpL[hlpL.size()-6].replace("ttys","ttyS");
+  }
+  _serialPort = new QextSerialPort(_portString);
+
+  // Baud Rate
+  // ---------
+  hlp = hlpL[hlpL.size()-1];
+  if      (hlp == "110") {
+    _serialPort->setBaudRate(BAUD110);
+  }
+  else if (hlp == "300") {
+    _serialPort->setBaudRate(BAUD300);
+  }
+  else if (hlp == "600") {
+    _serialPort->setBaudRate(BAUD600);
+  }
+  else if (hlp == "1200") {
+    _serialPort->setBaudRate(BAUD1200);
+  }
+  else if (hlp == "2400") {
+    _serialPort->setBaudRate(BAUD2400);
+  }
+  else if (hlp == "4800") {
+    _serialPort->setBaudRate(BAUD4800);
+  }
+  else if (hlp == "9600") {
+    _serialPort->setBaudRate(BAUD9600);
+  }
+  else if (hlp == "19200") {
+    _serialPort->setBaudRate(BAUD19200);
+  }
+  else if (hlp == "38400") {
+    _serialPort->setBaudRate(BAUD38400);
+  }
+  else if (hlp == "57600") {
+    _serialPort->setBaudRate(BAUD57600);
+  }
+  else if (hlp == "115200") {
+    _serialPort->setBaudRate(BAUD115200);
+  }
+
+  // Parity
+  // ------
+  hlp = hlpL[hlpL.size()-4].toUpper();
+  if      (hlp == "NONE") {
+    _serialPort->setParity(PAR_NONE);
+  }
+  else if (hlp == "ODD") {
+    _serialPort->setParity(PAR_ODD);
+  }
+  else if (hlp == "EVEN") {
+    _serialPort->setParity(PAR_EVEN);
+  }
+  else if (hlp == "SPACE") {
+    _serialPort->setParity(PAR_SPACE);
+  }
+
+  // Data Bits
+  // ---------
+  hlp = hlpL[hlpL.size()-5];
+  if      (hlp == "5") {
+    _serialPort->setDataBits(DATA_5);
+  }
+  else if (hlp == "6") {
+    _serialPort->setDataBits(DATA_6);
+  }
+  else if (hlp == "7") {
+    _serialPort->setDataBits(DATA_7);
+  }
+  else if (hlp == "8") {
+    _serialPort->setDataBits(DATA_8);
+  }
+
+  // Stop Bits
+  // ---------
+  hlp = hlpL[hlpL.size()-3];
+  if      (hlp == "1") {
+    _serialPort->setStopBits(STOP_1);
+  }
+  else if (hlp == "2") {
+    _serialPort->setStopBits(STOP_2);
+  }
+
+  // Flow Control
+  // ------------
+  hlp = hlpL[hlpL.size()-2].toUpper();
+  if (hlp == "XONXOFF") {
+    _serialPort->setFlowControl(FLOW_XONXOFF);
+  }
+  else if (hlp == "HARDWARE") {
+    _serialPort->setFlowControl(FLOW_HARDWARE);
+  }
+  else {
+    _serialPort->setFlowControl(FLOW_OFF);
+  }
+
+  _status = running;
+
+  _serialPort->open(QIODevice::ReadWrite|QIODevice::Unbuffered);
+  if (!_serialPort->isOpen()) {
+    delete _serialPort;
+    _serialPort = 0;
+    _status = error;
+    emit newMessage(_url.path().toAscii().replace(0,1,"") + ": Cannot open serial port " + _portString.toAscii(), true);
+    return;
+  }
+}
+
Index: branches/BNC_LM/bncnetquerys.h
===================================================================
--- branches/BNC_LM/bncnetquerys.h	(revision 3570)
+++ branches/BNC_LM/bncnetquerys.h	(revision 3570)
@@ -0,0 +1,21 @@
+#ifndef BNCSNETQUERYS_H
+#define BNCSNETQUERYS_H
+
+#include "bncnetquery.h"
+#include "serial/qextserialport.h"
+
+class bncNetQueryS : public bncNetQuery {
+ public:
+  bncNetQueryS();
+  virtual ~bncNetQueryS();
+
+  virtual void stop();
+  virtual void waitForRequestResult(const QUrl& url, QByteArray& outData);
+  virtual void startRequest(const QUrl& url, const QByteArray& gga);
+  virtual void waitForReadyRead(QByteArray& outData);
+
+ private:
+  QextSerialPort* _serialPort;
+};
+
+#endif
Index: branches/BNC_LM/bncnetqueryudp.cpp
===================================================================
--- branches/BNC_LM/bncnetqueryudp.cpp	(revision 3570)
+++ branches/BNC_LM/bncnetqueryudp.cpp	(revision 3570)
@@ -0,0 +1,178 @@
+/* -------------------------------------------------------------------------
+ * BKG NTRIP Client
+ * -------------------------------------------------------------------------
+ *
+ * Class:      bncNetQueryUdp
+ *
+ * Purpose:    Blocking Network Requests (NTRIP Version 2 with plain UDP)
+ *
+ * Author:     L. Mervart
+ *
+ * Created:    04-Feb-2009
+ *
+ * Changes:    
+ *
+ * -----------------------------------------------------------------------*/
+
+#include <iostream>
+#include <iomanip>
+#include <time.h>
+
+#include "bncnetqueryudp.h"
+#include "bncsettings.h"
+#include "bncversion.h"
+
+using namespace std;
+
+#define TIME_RESOLUTION 125
+
+// Constructor
+////////////////////////////////////////////////////////////////////////////
+bncNetQueryUdp::bncNetQueryUdp() {
+  _port      = 0;
+  _udpSocket = 0;
+  _eventLoop = new QEventLoop(this);
+
+  _keepAlive[ 0] = 128;
+  _keepAlive[ 1] =  96;
+  for (int ii = 2; ii <=11; ii++) {
+    _keepAlive[ii] = 0;
+  }
+}
+
+// Destructor
+////////////////////////////////////////////////////////////////////////////
+bncNetQueryUdp::~bncNetQueryUdp() {
+  delete _eventLoop;
+  delete _udpSocket;
+}
+
+// 
+////////////////////////////////////////////////////////////////////////////
+void bncNetQueryUdp::stop() {
+  _eventLoop->quit();
+  _status = finished;
+}
+
+// 
+////////////////////////////////////////////////////////////////////////////
+void bncNetQueryUdp::slotKeepAlive() {
+  if (_udpSocket) {
+    _udpSocket->writeDatagram(_keepAlive, 12, _address, _port);
+  }
+  QTimer::singleShot(15000, this, SLOT(slotKeepAlive()));
+}
+
+// 
+////////////////////////////////////////////////////////////////////////////
+void bncNetQueryUdp::waitForRequestResult(const QUrl&, QByteArray&) {
+}
+
+// 
+////////////////////////////////////////////////////////////////////////////
+void bncNetQueryUdp::waitForReadyRead(QByteArray& outData) {
+
+  // Wait Loop
+  // ---------
+  if (!_udpSocket->hasPendingDatagrams()) {
+    _eventLoop->exec();
+  }
+
+  // Append Data
+  // -----------
+  QByteArray datagram;
+  datagram.resize(_udpSocket->pendingDatagramSize());
+  _udpSocket->readDatagram(datagram.data(), datagram.size());
+
+  if (datagram.size() > 12) {
+    outData.append(datagram.mid(12));
+  }
+  else {
+    _status = error;
+  }
+}
+
+// Connect to Caster, send the Request
+////////////////////////////////////////////////////////////////////////////
+void bncNetQueryUdp::startRequest(const QUrl& url, const QByteArray& gga) {
+
+  _status = running;
+
+  // Default scheme and path
+  // -----------------------
+  _url = url;
+  if (_url.scheme().isEmpty()) {
+    _url.setScheme("http");
+  }
+  if (_url.path().isEmpty()) {
+    _url.setPath("/");
+  }
+
+  _port = _url.port();
+
+  delete _udpSocket;
+  _udpSocket = new QUdpSocket();
+  _udpSocket->bind(0);
+  connect(_udpSocket, SIGNAL(readyRead()), _eventLoop, SLOT(quit()));
+
+  QHostInfo hInfo = QHostInfo::fromName(url.host());
+
+  if (!hInfo.addresses().isEmpty()) {
+
+    _address = hInfo.addresses().first();
+
+    // Send Request
+    // ------------
+    QString uName = QUrl::fromPercentEncoding(_url.userName().toAscii());
+    QString passW = QUrl::fromPercentEncoding(_url.password().toAscii());
+    QByteArray userAndPwd;
+    
+    if(!uName.isEmpty() || !passW.isEmpty()) {
+      userAndPwd = "Authorization: Basic " + (uName.toAscii() + ":" +
+      passW.toAscii()).toBase64() + "\r\n";
+    }
+    
+    QByteArray reqStr = "GET " + _url.path().toAscii() + " HTTP/1.1\r\n"
+                      + "Host: " + _url.host().toAscii() + "\r\n"
+                      + "Ntrip-Version: Ntrip/2.0\r\n"
+                      + "User-Agent: NTRIP BNC/" BNCVERSION "\r\n";
+    if (!gga.isEmpty()) {
+      reqStr += "Ntrip-GGA: " + gga + "\r\n";
+    }
+    reqStr += userAndPwd + "Connection: close\r\n\r\n";
+    
+    char rtpbuffer[12 + reqStr.size()];
+    rtpbuffer[0]  = 128;
+    rtpbuffer[1]  =  97;
+    for (int jj = 2; jj <= 11; jj++) {
+      rtpbuffer[jj] = _keepAlive[jj];
+    }
+    for (int ii = 0; ii < reqStr.size(); ii++) {
+      rtpbuffer[12+ii] = reqStr[ii]; 
+    }
+
+    _udpSocket->writeDatagram(rtpbuffer, 12 + reqStr.size(), _address, _port);
+
+    // Wait for Reply, read Session Number
+    // -----------------------------------
+    QByteArray repl;
+    waitForReadyRead(repl);
+
+    QTextStream in(repl);
+    QString line = in.readLine();
+    while (!line.isEmpty()) {
+      if (line.indexOf("Session:") == 0) {
+        _session = line.mid(9).toUInt();
+        _keepAlive[ 8] = (_session >> 24) & 0xFF;
+        _keepAlive[ 9] = (_session >> 16) & 0xFF;
+        _keepAlive[10] = (_session >>  8) & 0xFF;
+        _keepAlive[11] = (_session)       & 0xFF;
+        break;
+      }
+      line = in.readLine();
+    }
+
+    QTimer::singleShot(15000, this, SLOT(slotKeepAlive()));
+  }
+}
+
Index: branches/BNC_LM/bncnetqueryudp.h
===================================================================
--- branches/BNC_LM/bncnetqueryudp.h	(revision 3570)
+++ branches/BNC_LM/bncnetqueryudp.h	(revision 3570)
@@ -0,0 +1,29 @@
+#ifndef BNCNETQUERYUDP_H
+#define BNCNETQUERYUDP_H
+
+#include "bncnetquery.h"
+
+class bncNetQueryUdp : public bncNetQuery {
+ Q_OBJECT
+ public:
+  bncNetQueryUdp();
+  virtual ~bncNetQueryUdp();
+
+  virtual void stop();
+  virtual void waitForRequestResult(const QUrl& url, QByteArray& outData);
+  virtual void startRequest(const QUrl& url, const QByteArray& gga);
+  virtual void waitForReadyRead(QByteArray& outData);
+
+ private slots:
+  void slotKeepAlive();
+
+ private:
+  QUdpSocket*  _udpSocket;
+  QEventLoop*  _eventLoop;
+  QHostAddress _address;
+  int          _port;
+  char         _keepAlive[12];
+  unsigned     _session;
+};
+
+#endif
Index: branches/BNC_LM/bncnetqueryudp0.cpp
===================================================================
--- branches/BNC_LM/bncnetqueryudp0.cpp	(revision 3570)
+++ branches/BNC_LM/bncnetqueryudp0.cpp	(revision 3570)
@@ -0,0 +1,76 @@
+/* -------------------------------------------------------------------------
+ * BKG NTRIP Client
+ * -------------------------------------------------------------------------
+ *
+ * Class:      bncNetQueryUdp0
+ *
+ * Purpose:    Blocking Network Requests (plain UDP, no NTRIP)
+ *
+ * Author:     L. Mervart
+ *
+ * Created:    04-Feb-2009
+ *
+ * Changes:    
+ *
+ * -----------------------------------------------------------------------*/
+
+#include "bncnetqueryudp0.h"
+
+// Constructor
+////////////////////////////////////////////////////////////////////////////
+bncNetQueryUdp0::bncNetQueryUdp0() {
+  _udpSocket = 0;
+  _eventLoop = new QEventLoop(this);
+}
+
+// Destructor
+////////////////////////////////////////////////////////////////////////////
+bncNetQueryUdp0::~bncNetQueryUdp0() {
+  delete _eventLoop;
+  delete _udpSocket;
+}
+
+// 
+////////////////////////////////////////////////////////////////////////////
+void bncNetQueryUdp0::stop() {
+  _eventLoop->quit();
+  _status = finished;
+}
+
+// 
+////////////////////////////////////////////////////////////////////////////
+void bncNetQueryUdp0::waitForRequestResult(const QUrl&, QByteArray&) {
+}
+
+// 
+////////////////////////////////////////////////////////////////////////////
+void bncNetQueryUdp0::waitForReadyRead(QByteArray& outData) {
+
+  // Wait Loop
+  // ---------
+  if (!_udpSocket->hasPendingDatagrams()) {
+    _eventLoop->exec();
+  }
+
+  // Append Data
+  // -----------
+  QByteArray datagram;
+  datagram.resize(_udpSocket->pendingDatagramSize());
+  _udpSocket->readDatagram(datagram.data(), datagram.size());
+
+  outData.append(datagram);
+}
+
+// Connect to Caster, send the Request
+////////////////////////////////////////////////////////////////////////////
+void bncNetQueryUdp0::startRequest(const QUrl& url, const QByteArray& /* gga */) {
+
+  _status = running;
+
+  delete _udpSocket;
+  _udpSocket = new QUdpSocket();
+  _udpSocket->bind(url.port());
+
+  connect(_udpSocket, SIGNAL(readyRead()), _eventLoop, SLOT(quit()));
+}
+
Index: branches/BNC_LM/bncnetqueryudp0.h
===================================================================
--- branches/BNC_LM/bncnetqueryudp0.h	(revision 3570)
+++ branches/BNC_LM/bncnetqueryudp0.h	(revision 3570)
@@ -0,0 +1,21 @@
+#ifndef BNCNETQUERYUDP0_H
+#define BNCNETQUERYUDP0_H
+
+#include "bncnetquery.h"
+
+class bncNetQueryUdp0 : public bncNetQuery {
+ Q_OBJECT
+ public:
+  bncNetQueryUdp0();
+  virtual ~bncNetQueryUdp0();
+
+  virtual void stop();
+  virtual void waitForRequestResult(const QUrl& url, QByteArray& outData);
+  virtual void startRequest(const QUrl& url, const QByteArray& gga);
+  virtual void waitForReadyRead(QByteArray& outData);
+ private:
+  QUdpSocket*  _udpSocket;
+  QEventLoop*  _eventLoop;
+};
+
+#endif
Index: branches/BNC_LM/bncnetqueryv0.cpp
===================================================================
--- branches/BNC_LM/bncnetqueryv0.cpp	(revision 3570)
+++ branches/BNC_LM/bncnetqueryv0.cpp	(revision 3570)
@@ -0,0 +1,129 @@
+/* -------------------------------------------------------------------------
+ * BKG NTRIP Client
+ * -------------------------------------------------------------------------
+ *
+ * Class:      bncNetQueryV0
+ *
+ * Purpose:    TCP/IP Network Requests, no NTRIP
+ *
+ * Author:     G. Weber
+ *
+ * Created:    19-Feb-2009
+ *
+ * Changes:    
+ *
+ * -----------------------------------------------------------------------*/
+
+#include <iostream>
+#include <iomanip>
+
+#include "bncnetqueryv0.h"
+#include "bncsettings.h"
+#include "bncversion.h"
+
+using namespace std;
+
+// Constructor
+////////////////////////////////////////////////////////////////////////////
+bncNetQueryV0::bncNetQueryV0() {
+  _socket  = 0;
+  _timeOut = 20000;
+}
+
+// Destructor
+////////////////////////////////////////////////////////////////////////////
+bncNetQueryV0::~bncNetQueryV0() {
+  delete _socket;
+}
+
+// 
+////////////////////////////////////////////////////////////////////////////
+void bncNetQueryV0::stop() {
+#ifndef sparc
+  if (_socket) {
+    _socket->abort();
+  }
+#endif
+  _status = finished;
+}
+
+// 
+////////////////////////////////////////////////////////////////////////////
+void bncNetQueryV0::waitForRequestResult(const QUrl&, QByteArray&) {
+}
+
+// 
+////////////////////////////////////////////////////////////////////////////
+void bncNetQueryV0::waitForReadyRead(QByteArray& outData) {
+  if (_socket && _socket->state() == QAbstractSocket::ConnectedState) {
+    while (true) {
+      int nBytes = _socket->bytesAvailable();
+      if (nBytes > 0) {
+        outData = _socket->readAll();
+        return;
+      }
+      else if (!_socket->waitForReadyRead(_timeOut)) {
+        delete _socket;
+        _socket = 0;
+        _status = error;
+        emit newMessage(_url.path().toAscii() + " read timeout", true);
+        return;
+      }
+    }
+  }
+}
+
+// Connect to Caster, send the Request
+////////////////////////////////////////////////////////////////////////////
+void bncNetQueryV0::startRequest(const QUrl& url, const QByteArray& /* gga */) {
+
+  _status = running;
+
+  delete _socket;
+  _socket = new QTcpSocket();
+
+  // Default scheme and path
+  // -----------------------
+  _url = url;
+  if (_url.scheme().isEmpty()) {
+    _url.setScheme("http");
+  }
+  if (_url.path().isEmpty()) {
+    _url.setPath("/");
+  }
+
+  // Connect the Socket
+  // ------------------
+  bncSettings settings;
+ 
+  _socket->connectToHost(_url.host(), _url.port());
+  if (!_socket->waitForConnected(_timeOut)) {
+    delete _socket; 
+    _socket = 0;
+    _status = error;
+      emit(newMessage(_url.path().toAscii().replace(0,1,"")
+                      + ": Connect timeout, reconnecting", true));
+    return;
+  }
+
+  // Read Caster Response
+  // --------------------
+  QStringList response;
+  while (true) {
+    if (!_socket->waitForReadyRead(_timeOut)) {
+      delete _socket;
+      _socket = 0;
+      _status = error;
+      emit newMessage(_url.path().toAscii().replace(0,1,"")
+                      + ": Read timeout", true);
+      return;
+    }
+    if (_socket->canReadLine()) {
+      QString line = _socket->readLine();
+      response.push_back(line);
+      response.clear();
+      break;
+    }
+  }
+}
+
Index: branches/BNC_LM/bncnetqueryv0.h
===================================================================
--- branches/BNC_LM/bncnetqueryv0.h	(revision 3570)
+++ branches/BNC_LM/bncnetqueryv0.h	(revision 3570)
@@ -0,0 +1,20 @@
+#ifndef BNCNETQUERYV0_H
+#define BNCNETQUERYV0_H
+
+#include "bncnetquery.h"
+
+class bncNetQueryV0 : public bncNetQuery {
+ public:
+  bncNetQueryV0();
+  virtual ~bncNetQueryV0();
+
+  virtual void stop();
+  virtual void waitForRequestResult(const QUrl& url, QByteArray& outData);
+  virtual void startRequest(const QUrl& url, const QByteArray& gga);
+  virtual void waitForReadyRead(QByteArray& outData);
+
+ private:
+  QTcpSocket* _socket;
+};
+
+#endif
Index: branches/BNC_LM/bncnetqueryv1.cpp
===================================================================
--- branches/BNC_LM/bncnetqueryv1.cpp	(revision 3570)
+++ branches/BNC_LM/bncnetqueryv1.cpp	(revision 3570)
@@ -0,0 +1,252 @@
+/* -------------------------------------------------------------------------
+ * BKG NTRIP Client
+ * -------------------------------------------------------------------------
+ *
+ * Class:      bncNetQueryV1
+ *
+ * Purpose:    Blocking Network Requests (NTRIP Version 1)
+ *
+ * Author:     L. Mervart
+ *
+ * Created:    27-Dec-2008
+ *
+ * Changes:    
+ *
+ * -----------------------------------------------------------------------*/
+
+#include <iostream>
+#include <iomanip>
+
+#include "bncnetqueryv1.h"
+#include "bncsettings.h"
+#include "bncversion.h"
+
+using namespace std;
+
+// Constructor
+////////////////////////////////////////////////////////////////////////////
+bncNetQueryV1::bncNetQueryV1() {
+  _socket    = 0;
+  _eventLoop = new QEventLoop(this);
+  _timeOut   = 20000;
+}
+
+// Destructor
+////////////////////////////////////////////////////////////////////////////
+bncNetQueryV1::~bncNetQueryV1() {
+  delete _socket;
+  delete _eventLoop;
+}
+
+// 
+////////////////////////////////////////////////////////////////////////////
+void bncNetQueryV1::stop() {
+  _eventLoop->quit();
+#ifndef sparc
+  if (_socket) {
+    _socket->abort();
+  }
+#endif
+  _status = finished;
+}
+
+// 
+////////////////////////////////////////////////////////////////////////////
+void bncNetQueryV1::waitForRequestResult(const QUrl& url, QByteArray& outData){
+
+  delete _socket;
+  _socket = new QTcpSocket();
+
+  connect(_socket, SIGNAL(disconnected()), _eventLoop, SLOT(quit()));
+
+  startRequestPrivate(url, "", true);
+
+  QTimer::singleShot(10000, _eventLoop, SLOT(quit()));
+
+  _eventLoop->exec();
+
+  if (_socket) {
+    outData = _socket->readAll();
+    delete _socket; _socket = 0;
+    _status = finished;
+  }
+}
+
+// 
+////////////////////////////////////////////////////////////////////////////
+void bncNetQueryV1::waitForReadyRead(QByteArray& outData) {
+  if (_socket && _socket->state() == QAbstractSocket::ConnectedState) {
+    while (true) {
+      int nBytes = _socket->bytesAvailable();
+      if (nBytes > 0) {
+        outData = _socket->readAll();
+        return;
+      }
+      else if (!_socket->waitForReadyRead(_timeOut)) {
+        QString errStr = _socket->errorString();
+        if (errStr.isEmpty()) {
+          errStr = "Read timeout";
+	}
+        delete _socket;
+        _socket = 0;
+        _status = error;
+        emit newMessage(_url.path().toAscii().replace(0,1,"")
+                        + ": " + errStr.toAscii(), true);
+        return;
+      }
+    }
+  }
+}
+
+// Connect to Caster, send the Request
+////////////////////////////////////////////////////////////////////////////
+void bncNetQueryV1::startRequest(const QUrl& url, const QByteArray& gga) {
+  startRequestPrivate(url, gga, false);
+}
+
+// Connect to Caster, send the Request
+////////////////////////////////////////////////////////////////////////////
+void bncNetQueryV1::startRequestPrivate(const QUrl& url, 
+                                        const QByteArray& gga, 
+                                        bool sendRequestOnly) {
+
+  _status = running;
+
+  if (!sendRequestOnly) {
+    delete _socket;
+    _socket = new QTcpSocket();
+  }
+
+  // Default scheme and path
+  // -----------------------
+  _url = url;
+  if (_url.scheme().isEmpty()) {
+    _url.setScheme("http");
+  }
+  if (_url.path().isEmpty()) {
+    _url.setPath("/");
+  }
+
+  // Connect the Socket
+  // ------------------
+  bncSettings settings;
+  QString proxyHost = settings.value("proxyHost").toString();
+  int     proxyPort = settings.value("proxyPort").toInt();
+ 
+  if ( proxyHost.isEmpty() ) {
+    _socket->connectToHost(_url.host(), _url.port());
+  }
+  else {
+    _socket->connectToHost(proxyHost, proxyPort);
+  }
+  if (!_socket->waitForConnected(_timeOut)) {
+    delete _socket; 
+    _socket = 0;
+    _status = error;
+    return;
+  }
+
+  // Send Request
+  // ------------
+  QString uName = QUrl::fromPercentEncoding(_url.userName().toAscii());
+  QString passW = QUrl::fromPercentEncoding(_url.password().toAscii());
+  QByteArray userAndPwd;
+
+  if(!uName.isEmpty() || !passW.isEmpty()) {
+    userAndPwd = "Authorization: Basic " + (uName.toAscii() + ":" +
+    passW.toAscii()).toBase64() + "\r\n";
+  }
+
+  QByteArray reqStr;
+  if ( proxyHost.isEmpty() ) {
+    if (_url.path().indexOf("/") != 0) _url.setPath("/");
+    reqStr = "GET " + _url.path().toAscii() + " HTTP/1.0\r\n"
+             + "User-Agent: NTRIP BNC/" BNCVERSION "\r\n"
+             + "Host: " + _url.host().toAscii() + "\r\n"
+             + userAndPwd + "\r\n";
+  } else {
+    reqStr = "GET " + _url.toEncoded() + " HTTP/1.0\r\n"
+             + "User-Agent: NTRIP BNC/" BNCVERSION "\r\n"
+             + "Host: " + _url.host().toAscii() + "\r\n"
+             + userAndPwd + "\r\n";
+  }
+
+  // NMEA string to handle VRS stream
+  // --------------------------------
+  if (!gga.isEmpty()) {
+    reqStr += gga + "\r\n";
+  }
+
+  _socket->write(reqStr, reqStr.length());
+
+  if (!_socket->waitForBytesWritten(_timeOut)) {
+    delete _socket;
+    _socket = 0;
+    _status = error;
+    emit newMessage(_url.path().toAscii().replace(0,1,"")
+                    + ": Write timeout", true);
+    return;
+  }
+
+  // Read Caster Response
+  // --------------------
+  if (!sendRequestOnly) {
+    bool proxyResponse = false;
+    QStringList response;
+    while (true) {
+      if (_socket->canReadLine()) {
+        QString line = _socket->readLine();
+    
+        if (line.indexOf("ICY 200 OK") == -1 && 
+            line.indexOf("HTTP")       != -1 && 
+            line.indexOf("200 OK")     != -1 ) {
+          proxyResponse = true;
+        }
+    
+        if (!proxyResponse && !line.trimmed().isEmpty()) {
+          response.push_back(line);
+        }
+    
+        if (line.trimmed().isEmpty()) {
+          if (proxyResponse) {
+            proxyResponse = false;
+    	}
+    	else {
+            break;
+    	}
+        }
+    
+        if (line.indexOf("Unauthorized") != -1) {
+          break;
+        }
+    
+        if (!proxyResponse                    &&
+            line.indexOf("200 OK")      != -1 &&
+            line.indexOf("SOURCETABLE") == -1) {
+          response.clear();
+          if (_socket->canReadLine()) {
+            _socket->readLine();
+    	}
+    	break;
+        }
+      }
+      else if (!_socket->waitForReadyRead(_timeOut)) {
+        delete _socket;
+        _socket = 0;
+        _status = error;
+        emit newMessage(_url.path().toAscii().replace(0,1,"") 
+                        + ": Response timeout", true);
+        return;
+      }
+    }
+    if (response.size() > 0) {
+      delete _socket;
+      _socket = 0;
+      _status = error;
+      emit newMessage(_url.path().toAscii().replace(0,1,"") 
+                      + ": Wrong caster response\n" 
+                      + response.join("").toAscii(), true);
+    }
+  }
+}
+
Index: branches/BNC_LM/bncnetqueryv1.h
===================================================================
--- branches/BNC_LM/bncnetqueryv1.h	(revision 3570)
+++ branches/BNC_LM/bncnetqueryv1.h	(revision 3570)
@@ -0,0 +1,23 @@
+#ifndef BNCNETQUERYV1_H
+#define BNCNETQUERYV1_H
+
+#include "bncnetquery.h"
+
+class bncNetQueryV1 : public bncNetQuery {
+ public:
+  bncNetQueryV1();
+  virtual ~bncNetQueryV1();
+
+  virtual void stop();
+  virtual void waitForRequestResult(const QUrl& url, QByteArray& outData);
+  virtual void startRequest(const QUrl& url, const QByteArray& gga);
+  virtual void waitForReadyRead(QByteArray& outData);
+
+ private:
+  void startRequestPrivate(const QUrl& url, const QByteArray& gga, 
+                           bool sendRequestOnly);
+  QEventLoop* _eventLoop;
+  QTcpSocket* _socket;
+};
+
+#endif
Index: branches/BNC_LM/bncnetqueryv2.cpp
===================================================================
--- branches/BNC_LM/bncnetqueryv2.cpp	(revision 3570)
+++ branches/BNC_LM/bncnetqueryv2.cpp	(revision 3570)
@@ -0,0 +1,229 @@
+/* -------------------------------------------------------------------------
+ * BKG NTRIP Client
+ * -------------------------------------------------------------------------
+ *
+ * Class:      bncNetQueryV2
+ *
+ * Purpose:    Blocking Network Requests (NTRIP Version 2)
+ *
+ * Author:     L. Mervart
+ *
+ * Created:    27-Dec-2008
+ *
+ * Changes:    
+ *
+ * -----------------------------------------------------------------------*/
+
+#include <iostream>
+
+#include "bncnetqueryv2.h"
+#include "bncsettings.h"
+#include "bncversion.h"
+#include "bncsslconfig.h"
+#include "bncsettings.h"
+
+// Constructor
+////////////////////////////////////////////////////////////////////////////
+bncNetQueryV2::bncNetQueryV2(bool secure) {
+  _secure    = secure;
+  _manager   = new QNetworkAccessManager(this);
+  connect(_manager, SIGNAL(proxyAuthenticationRequired(const QNetworkProxy&, 
+                                                       QAuthenticator*)),
+          this, SLOT(slotProxyAuthenticationRequired(const QNetworkProxy&, 
+                                                     QAuthenticator*)));
+  _reply     = 0;
+  _eventLoop = new QEventLoop(this);
+  _firstData = true;
+  _status    = init;
+
+  bncSettings settings;
+  _ignoreSslErrors = 
+     (Qt::CheckState(settings.value("ignoreSslErrors").toInt()) == Qt::Checked);
+
+  if (_secure && !QSslSocket::supportsSsl()) {
+    ((bncApp*)qApp)->slotMessage("No SSL support, install OpenSSL run-time libraries", true);
+    stop();
+  }
+}
+
+// Destructor
+////////////////////////////////////////////////////////////////////////////
+bncNetQueryV2::~bncNetQueryV2() {
+  delete _eventLoop;
+  delete _reply;
+  delete _manager;
+}
+
+// Stop (quit event loop)
+////////////////////////////////////////////////////////////////////////////
+void bncNetQueryV2::stop() {
+  if (_reply) {
+    _reply->abort();
+  }
+  _eventLoop->quit();
+  _status = finished;
+}
+
+// End of Request
+////////////////////////////////////////////////////////////////////////////
+void bncNetQueryV2::slotFinished() {
+  _eventLoop->quit();
+  if (_reply && _reply->error() != QNetworkReply::NoError) {
+    _status = error;
+    emit newMessage(_url.path().toAscii().replace(0,1,"")  +
+                    ": NetQueryV2: server replied: " + 
+                    _reply->attribute(QNetworkRequest::HttpReasonPhraseAttribute).toByteArray(),
+                    true);
+  }
+  else {
+    _status = finished;
+  }
+}
+
+// 
+////////////////////////////////////////////////////////////////////////////
+void bncNetQueryV2::slotProxyAuthenticationRequired(const QNetworkProxy&, 
+                                                    QAuthenticator*) {
+  emit newMessage("slotProxyAuthenticationRequired", true);
+}
+
+// Start request, block till the next read
+////////////////////////////////////////////////////////////////////////////
+void bncNetQueryV2::startRequest(const QUrl& url, const QByteArray& gga) {
+  startRequestPrivate(url, gga, false);
+}
+
+// Start Request (Private Method)
+////////////////////////////////////////////////////////////////////////////
+void bncNetQueryV2::startRequestPrivate(const QUrl& url, const QByteArray& gga,
+                                        bool full) {
+
+  _status = running;
+
+  // Default scheme and path
+  // -----------------------
+  _url = url;
+  if (_url.scheme().isEmpty()) {
+    if (_secure) {
+      _url.setScheme("https");
+    }
+    else {
+      _url.setScheme("http");
+    }
+  }
+  if (_url.path().isEmpty()) {
+    _url.setPath("/");
+  }
+
+  // Proxy Settings
+  // --------------
+  bncSettings settings;
+  QString proxyHost = settings.value("proxyHost").toString();
+  int     proxyPort = settings.value("proxyPort").toInt();
+
+  if (!proxyHost.isEmpty()) {
+    QNetworkProxy proxy(QNetworkProxy::HttpProxy, proxyHost, proxyPort);
+    _manager->setProxy(proxy);
+  }
+
+  // Network Request
+  // ---------------
+  QNetworkRequest request;
+  bncSslConfig sslConfig;
+  request.setSslConfiguration(sslConfig);
+  request.setUrl(_url);
+  request.setRawHeader("Host"         , _url.host().toAscii());
+  request.setRawHeader("Ntrip-Version", "Ntrip/2.0");
+  request.setRawHeader("User-Agent"   , "NTRIP BNC/"BNCVERSION);
+  if (!_url.userName().isEmpty()) {
+    QString uName = QUrl::fromPercentEncoding(_url.userName().toAscii());
+    QString passW = QUrl::fromPercentEncoding(_url.password().toAscii());
+    request.setRawHeader("Authorization", "Basic " + 
+                         (uName + ":" + passW).toAscii().toBase64());
+  } 
+  if (!gga.isEmpty()) {
+    request.setRawHeader("Ntrip-GGA", gga);
+  }
+  request.setRawHeader("Connection"   , "close");
+
+  delete _reply;
+  _reply = _manager->get(request);
+
+  // Connect Signals
+  // ---------------
+  connect(_reply, SIGNAL(finished()), this, SLOT(slotFinished()));
+  connect(_reply, SIGNAL(finished()), _eventLoop, SLOT(quit()));
+  connect(_reply, SIGNAL(sslErrors(QList<QSslError>)),
+          this, SLOT(slotSslErrors(QList<QSslError>)));
+  if (!full) {
+    connect(_reply, SIGNAL(readyRead()), _eventLoop, SLOT(quit()));
+  }
+}
+
+// Start Request, wait for its completion
+////////////////////////////////////////////////////////////////////////////
+void bncNetQueryV2::waitForRequestResult(const QUrl& url, QByteArray& outData) {
+
+  // Send Request
+  // ------------
+  startRequestPrivate(url, "", true);
+
+  // Wait Loop
+  // ---------
+  _eventLoop->exec();
+
+  // Copy Data and Return
+  // --------------------
+  outData = _reply->readAll();
+}
+
+// Wait for next data
+////////////////////////////////////////////////////////////////////////////
+void bncNetQueryV2::waitForReadyRead(QByteArray& outData) {
+
+  // Wait Loop
+  // ---------
+  if (!_reply->bytesAvailable()) {
+    _eventLoop->exec();
+  }
+
+  // Check NTRIPv2 error code
+  // ------------------------
+  if (_reply->attribute(QNetworkRequest::HttpStatusCodeAttribute).toInt() != 200) {
+    _reply->abort();
+  }
+
+  // Append Data
+  // -----------
+  else {
+    outData.append(_reply->readAll());
+  }
+}
+
+// TSL/SSL 
+////////////////////////////////////////////////////////////////////////////
+void bncNetQueryV2::slotSslErrors(QList<QSslError> errors) {
+
+  QString msg = "SSL Error\n";
+  QSslCertificate cert = _reply->sslConfiguration().peerCertificate();
+  if (!cert.isNull()) {
+    msg += QString("Server Certificate Issued by:\n"
+                   "%1\n%2\nCannot be verified\n")
+           .arg(cert.issuerInfo(QSslCertificate::OrganizationalUnitName))
+           .arg(cert.issuerInfo(QSslCertificate::Organization));
+  }
+  QListIterator<QSslError> it(errors);
+  while (it.hasNext()) {
+    const QSslError& err = it.next();
+    msg += "\n" + err.errorString();
+  }
+
+  ((bncApp*)qApp)->slotMessage(msg.toAscii(), true);
+
+  if (_ignoreSslErrors) {
+    _reply->ignoreSslErrors();
+  }
+  else {
+    stop();
+  }
+}
Index: branches/BNC_LM/bncnetqueryv2.h
===================================================================
--- branches/BNC_LM/bncnetqueryv2.h	(revision 3570)
+++ branches/BNC_LM/bncnetqueryv2.h	(revision 3570)
@@ -0,0 +1,34 @@
+#ifndef BNCNETQUERYV2_H
+#define BNCNETQUERYV2_H
+
+#include "bncnetquery.h"
+
+class bncNetQueryV2 : public bncNetQuery {
+ Q_OBJECT
+
+ public:
+  bncNetQueryV2(bool secure);
+  virtual ~bncNetQueryV2();
+
+  virtual void stop();
+  virtual void waitForRequestResult(const QUrl& url, QByteArray& outData);
+  virtual void startRequest(const QUrl& url, const QByteArray& gga);
+  virtual void waitForReadyRead(QByteArray& outData);
+
+ private slots:
+  void slotFinished();
+  void slotProxyAuthenticationRequired(const QNetworkProxy&, QAuthenticator*);
+  void slotSslErrors(QList<QSslError>);
+
+ private:
+  void startRequestPrivate(const QUrl& url, const QByteArray& gga, bool full);
+
+  QNetworkAccessManager* _manager;
+  QNetworkReply*         _reply;
+  QEventLoop*            _eventLoop;
+  bool                   _firstData;
+  bool                   _secure;
+  bool                   _ignoreSslErrors;
+};
+
+#endif
Index: branches/BNC_LM/bncoutf.cpp
===================================================================
--- branches/BNC_LM/bncoutf.cpp	(revision 3570)
+++ branches/BNC_LM/bncoutf.cpp	(revision 3570)
@@ -0,0 +1,155 @@
+
+/* -------------------------------------------------------------------------
+ * BKG NTRIP Server
+ * -------------------------------------------------------------------------
+ *
+ * Class:      bncoutf
+ *
+ * Purpose:    Basis Class for File-Writers
+ *
+ * Author:     L. Mervart
+ *
+ * Created:    25-Apr-2008
+ *
+ * Changes:    
+ *
+ * -----------------------------------------------------------------------*/
+
+#include <math.h>
+#include <iomanip>
+
+#include "bncoutf.h"
+#include "bncsettings.h"
+
+using namespace std;
+
+// Constructor
+////////////////////////////////////////////////////////////////////////////
+bncoutf::bncoutf(const QString& sklFileName, const QString& intr, int sampl) {
+
+  bncSettings settings;
+
+  _headerWritten = false;
+  _sampl         = sampl;
+  _intr          = intr;
+
+  QFileInfo fileInfo(sklFileName);
+  _path        = fileInfo.absolutePath() + QDir::separator();
+  _sklBaseName = fileInfo.baseName();
+  _extension   = fileInfo.completeSuffix(); 
+
+  expandEnvVar(_path);
+  if (!_extension.isEmpty()) {
+    _extension = "." + _extension;
+  }
+
+  _append = Qt::CheckState(settings.value("rnxAppend").toInt()) == Qt::Checked;
+}
+
+// Destructor
+////////////////////////////////////////////////////////////////////////////
+bncoutf::~bncoutf() {
+  closeFile();
+}
+
+// Close the Old RINEX File
+////////////////////////////////////////////////////////////////////////////
+void bncoutf::closeFile() {
+  _out.close();
+}
+
+// Epoch String
+////////////////////////////////////////////////////////////////////////////
+QString bncoutf::epochStr(const QDateTime& datTim, const QString& intStr) {
+
+  QString epoStr;
+
+  int indHlp = intStr.indexOf("min");
+
+  if ( indHlp != -1) {
+    int step = intStr.left(indHlp-1).toInt();
+    char ch = 'A' + datTim.time().hour();
+    epoStr = QString("_") + ch;
+    if (datTim.time().minute() >= 60-step) {
+      epoStr += QString("%1").arg(60-step, 2, 10, QChar('0'));
+    }
+    else {
+      for (int limit = step; limit <= 60-step; limit += step) {
+        if (datTim.time().minute() < limit) {
+          epoStr += QString("%1").arg(limit-step, 2, 10, QChar('0'));
+          break;
+        }
+      }
+    }
+  }
+  else if (intStr == "1 hour") {
+    char ch = 'A' + datTim.time().hour();
+    epoStr = QString("_") + ch;
+  }
+  else {
+    epoStr = "";
+  }
+
+  return epoStr;
+}
+
+// File Name according to RINEX Standards
+////////////////////////////////////////////////////////////////////////////
+QString bncoutf::resolveFileName(int GPSweek, const QDateTime& datTim) {
+
+  int dayOfWeek = datTim.date().dayOfWeek();
+  if (dayOfWeek == 7) {
+    dayOfWeek = 0;
+  }
+  QString gpswd    = QString("%1%2").arg(GPSweek).arg(dayOfWeek);
+  QString baseName = _sklBaseName; baseName.replace("${GPSWD}", gpswd);
+  QString epoStr   = epochStr(datTim, _intr);
+
+  return _path + baseName + epoStr + _extension;
+}
+
+// Re-Open Output File
+////////////////////////////////////////////////////////////////////////////
+t_irc bncoutf::reopen(int GPSweek, double GPSweeks) {
+
+  if (_sampl != 0 && fmod(GPSweeks, _sampl) != 0.0) {
+    return failure;
+  }
+
+  QDateTime datTim = dateAndTimeFromGPSweek(GPSweek, GPSweeks);
+
+  QString newFileName = resolveFileName(GPSweek, datTim);
+
+  // Close the file
+  // --------------
+  if (newFileName != _fName) {
+    closeFile();
+    _headerWritten = false;
+    _fName = newFileName;
+  }
+
+  // Re-Open File, Write Header
+  // --------------------------
+  if (!_headerWritten) {
+    _out.setf(ios::showpoint | ios::fixed);
+    if (_append && QFile::exists(_fName)) {
+      _out.open(_fName.toAscii().data(), ios::out | ios::app);
+    }
+    else {
+      _out.open(_fName.toAscii().data());
+      writeHeader(datTim);
+    }
+    _headerWritten = true;
+  }
+
+  return success;
+}
+
+// Write String
+////////////////////////////////////////////////////////////////////////////
+t_irc bncoutf::write(int GPSweek, double GPSweeks, const QString& str) {
+  reopen(GPSweek, GPSweeks);
+  _out << str.toAscii().data();
+  _out.flush();
+  return success;
+}
Index: branches/BNC_LM/bncoutf.h
===================================================================
--- branches/BNC_LM/bncoutf.h	(revision 3570)
+++ branches/BNC_LM/bncoutf.h	(revision 3570)
@@ -0,0 +1,36 @@
+#ifndef BNCOUTF_H
+#define BNCOUTF_H
+
+#include <fstream>
+#include <newmat.h>
+#include <QtCore>
+
+#include "bncutils.h"
+
+class bncoutf {
+ public:
+  bncoutf(const QString& sklFileName, const QString& intr, int sampl);
+  virtual ~bncoutf();
+  t_irc write(int GPSweek, double GPSweeks, const QString& str);
+
+ protected:
+  virtual t_irc reopen(int GPSweek, double GPSweeks);
+  virtual void  writeHeader(const QDateTime& /* datTim */) {}
+  virtual void  closeFile();
+  std::ofstream _out;
+  int           _sampl;
+
+ private:
+  QString epochStr(const QDateTime& datTim, const QString& intStr);
+  QString resolveFileName(int GPSweek, const QDateTime& datTim);
+
+  bool    _headerWritten;
+  QString _path;
+  QString _sklBaseName;
+  QString _extension;
+  QString _intr;
+  QString _fName;
+  bool    _append;
+};
+
+#endif
Index: branches/BNC_LM/bncpppclient.cpp
===================================================================
--- branches/BNC_LM/bncpppclient.cpp	(revision 3570)
+++ branches/BNC_LM/bncpppclient.cpp	(revision 3570)
@@ -0,0 +1,530 @@
+// Part of BNC, a utility for retrieving decoding and
+// converting GNSS data streams from NTRIP broadcasters.
+//
+// Copyright (C) 2007
+// German Federal Agency for Cartography and Geodesy (BKG)
+// http://www.bkg.bund.de
+// Czech Technical University Prague, Department of Geodesy
+// http://www.fsv.cvut.cz
+//
+// Email: euref-ip@bkg.bund.de
+//
+// This program is free software; you can redistribute it and/or
+// modify it under the terms of the GNU General Public License
+// as published by the Free Software Foundation, version 2.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+/* -------------------------------------------------------------------------
+ * BKG NTRIP Client
+ * -------------------------------------------------------------------------
+ *
+ * Class:      bncPPPclient
+ *
+ * Purpose:    Precise Point Positioning
+ *
+ * Author:     L. Mervart
+ *
+ * Created:    21-Nov-2009
+ *
+ * Changes:    
+ *
+ * -----------------------------------------------------------------------*/
+
+#include <newmatio.h>
+#include <iomanip>
+#include <sstream>
+
+#include "bncpppclient.h"
+#include "bncapp.h"
+#include "bncutils.h"
+#include "bncconst.h"
+#include "bncmodel.h"
+#include "bncsettings.h"
+
+using namespace std;
+
+// Constructor
+////////////////////////////////////////////////////////////////////////////
+bncPPPclient::bncPPPclient(QByteArray staID) {
+
+  bncSettings settings;
+
+  if ( Qt::CheckState(settings.value("pppGLONASS").toInt()) == Qt::Checked) {
+    _useGlonass = true;
+  }
+  else {
+    _useGlonass = false;
+  }
+
+  if ( Qt::CheckState(settings.value("pppGalileo").toInt()) == Qt::Checked) {
+    _useGalileo = true;
+  }
+  else {
+    _useGalileo = false;
+  }
+
+  if (settings.value("pppSPP").toString() == "PPP") {
+    _pppMode = true;
+  }
+  else {
+    _pppMode = false;
+  }
+
+  connect(this, SIGNAL(newMessage(QByteArray,bool)), 
+          ((bncApp*)qApp), SLOT(slotMessage(const QByteArray,bool)));
+
+  connect(((bncApp*)qApp), SIGNAL(newCorrections(QList<QString>)),
+          this, SLOT(slotNewCorrections(QList<QString>)));
+
+  _staID   = staID;
+  _model   = new bncModel(staID);
+  connect(_model, SIGNAL(newNMEAstr(QByteArray)), 
+          this,   SIGNAL(newNMEAstr(QByteArray)));
+
+  _pppCorrMount = settings.value("pppCorrMount").toString();
+}
+
+// Destructor
+////////////////////////////////////////////////////////////////////////////
+bncPPPclient::~bncPPPclient() {
+  delete _model;
+  while (!_epoData.empty()) {
+    delete _epoData.front();
+    _epoData.pop();
+  }
+  QMapIterator<QString, t_corr*> ic(_corr);
+  while (ic.hasNext()) {
+    ic.next();
+    delete ic.value();
+  }
+  QMapIterator<QString, t_bias*> ib(_bias);
+  while (ib.hasNext()) {
+    ib.next();
+    delete ib.value();
+  }
+}
+
+//
+////////////////////////////////////////////////////////////////////////////
+void bncPPPclient::putNewObs(const t_obs& obs) {
+  QMutexLocker locker(&_mutex);
+
+  if      (obs.satSys == 'R') {
+    if (!_useGlonass) return;
+  }
+  else if (obs.satSys == 'E') {
+    if (!_useGalileo) return;
+  }
+  else if (obs.satSys != 'G') {
+    return;
+  }
+
+  t_satData* satData = new t_satData();
+  satData->tt = bncTime(obs.GPSWeek, obs.GPSWeeks);
+
+  // Satellite Number
+  // ----------------
+  satData->prn = QString("%1%2").arg(obs.satSys).arg(obs.satNum,2,10,QChar('0'));
+
+  // Check Slips
+  // -----------
+  slipInfo& sInfo  = _slips[satData->prn];
+  if ( sInfo.slipCntL1 == obs.slip_cnt_L1  &&
+       sInfo.slipCntL2 == obs.slip_cnt_L2  &&
+       sInfo.slipCntL5 == obs.slip_cnt_L5 ) {
+    satData->slipFlag = false;
+  }
+  else {
+    satData->slipFlag = true;
+  }
+  sInfo.slipCntL1 = obs.slip_cnt_L1;
+  sInfo.slipCntL2 = obs.slip_cnt_L2;
+
+  // Handle Code Biases
+  // ------------------
+  t_bias* bb = 0;
+  if (_bias.contains(satData->prn)) {
+    bb = _bias.value(satData->prn); 
+  }
+
+  // Add new epoch, process the older ones
+  // -------------------------------------
+  if      (_epoData.size() == 0) {
+    _epoData.push(new t_epoData());
+    _epoData.back()->tt = satData->tt;
+  }
+  else if (satData->tt != _epoData.back()->tt) {
+    processEpochs();
+    _epoData.push(new t_epoData());
+    _epoData.back()->tt = satData->tt;
+  }
+
+  // Set Observations GPS
+  // --------------------
+  if      (obs.satSys == 'G') {
+    if ( (obs.P1 || obs.C1) && (obs.P2 || obs.C2) && obs.L1() && obs.L2() ) {
+      double f1 = t_CST::freq1;
+      double f2 = t_CST::freq2;
+      double c1 =   f1 * f1 / (f1 * f1 - f2 * f2);
+      double c2 = - f2 * f2 / (f1 * f1 - f2 * f2);
+      if (obs.P1) {
+        satData->P1 = obs.P1 + (bb ? bb->p1 : 0.0);
+      }
+      else {
+        satData->P1 = obs.C1 + (bb ? bb->c1 : 0.0);
+      }
+      if (obs.P2) {
+        satData->P2 = obs.P2 + (bb ? bb->p2 : 0.0);
+      }
+      else {
+        satData->P2 = obs.C2;
+      }
+      satData->L1      = obs.L1() * t_CST::c / f1;
+      satData->L2      = obs.L2() * t_CST::c / f2;
+      satData->P3      = c1 * satData->P1 + c2 * satData->P2;
+      satData->L3      = c1 * satData->L1 + c2 * satData->L2;
+      satData->lambda3 = c1 * t_CST::c / f1 + c2 * t_CST::c / f2;
+
+      _epoData.back()->satData[satData->prn] = satData;
+    }
+    else {
+      delete satData;
+    }
+  }
+
+  // Set Observations GLONASS
+  // ------------------------
+  else if (obs.satSys == 'R') {
+    if ( (obs.P1 || obs.C1) && (obs.P2 || obs.C2) && obs.L1() && obs.L2() ) {
+      double f1 = 1602000000.0 + 562500.0 * obs.slotNum; 
+      double f2 = 1246000000.0 + 437500.0 * obs.slotNum;
+      double c1 =   f1 * f1 / (f1 * f1 - f2 * f2);
+      double c2 = - f2 * f2 / (f1 * f1 - f2 * f2);
+      if (obs.P1) {
+        satData->P1 = obs.P1 + (bb ? bb->p1 : 0.0);
+      }
+      else {
+        satData->P1 = obs.C1 + (bb ? bb->c1 : 0.0);
+      }
+      if (obs.P2) {
+        satData->P2 = obs.P2 + (bb ? bb->p2 : 0.0);
+      }
+      else {
+        satData->P2 = obs.C2;
+      }
+      satData->L1      = obs.L1() * t_CST::c / f1;
+      satData->L2      = obs.L2() * t_CST::c / f2;
+      satData->P3      = c1 * satData->P1 + c2 * satData->P2;
+      satData->L3      = c1 * satData->L1 + c2 * satData->L2;
+      satData->lambda3 = c1 * t_CST::c / f1 + c2 * t_CST::c / f2;
+
+      _epoData.back()->satData[satData->prn] = satData;
+    }
+    else {
+      delete satData;
+    }
+  }
+
+  // Set Observations Galileo
+  // ------------------------
+  else if (obs.satSys == 'E') {
+    if ( obs.C1 && obs.C5 && obs.L1() && obs.L5) {
+      double f1 = t_CST::freq1;
+      double f5 = t_CST::freq5;
+      double c1 =   f1 * f1 / (f1 * f1 - f5 * f5);
+      double c5 = - f5 * f5 / (f1 * f1 - f5 * f5);
+
+      satData->P1      = obs.C1;
+      satData->P5      = obs.C5;
+      satData->L1      = obs.L1() * t_CST::c / f1;
+      satData->L5      = obs.L5 * t_CST::c / f5;
+      satData->P3      = c1 * satData->P1 + c5 * satData->P5;
+      satData->L3      = c1 * satData->L1 + c5 * satData->L5;
+      satData->lambda3 = c1 * t_CST::c / f1 + c5 * t_CST::c / f5;
+      _epoData.back()->satData[satData->prn] = satData;
+    }
+    else {
+      delete satData;
+    }
+  }
+}
+
+// 
+////////////////////////////////////////////////////////////////////////////
+void bncPPPclient::slotNewCorrections(QList<QString> corrList) {
+  QMutexLocker locker(&_mutex);
+
+  // Check the Mountpoint (source of corrections)
+  // --------------------------------------------
+  if (!_pppCorrMount.isEmpty()) {
+    QMutableListIterator<QString> itm(corrList);
+    while (itm.hasNext()) {
+      QStringList hlp = itm.next().split(" ");
+      if (hlp.size() > 0) {
+        QString mountpoint = hlp[hlp.size()-1];
+        if (mountpoint != _pppCorrMount) {
+          itm.remove();     
+        }
+      }
+    }
+  }
+
+  if (corrList.size() == 0) {
+    return;
+  }
+
+  // Remove All Corrections
+  // ----------------------
+  //  QMapIterator<QString, t_corr*> ic(_corr);
+  //  while (ic.hasNext()) {
+  //    ic.next();
+  //    delete ic.value();
+  //  }
+  //  _corr.clear();
+
+  QListIterator<QString> it(corrList);
+  while (it.hasNext()) {
+    QString line = it.next();
+
+    QTextStream in(&line);
+    int     messageType;
+    int     updateInterval;
+    int     GPSweek;
+    double  GPSweeks;
+    QString prn;
+    in >> messageType >> updateInterval >> GPSweek >> GPSweeks >> prn;
+
+    if ( t_corr::relevantMessageType(messageType) ) {
+      t_corr* cc = 0;
+      if (_corr.contains(prn)) {
+        cc = _corr.value(prn); 
+      }
+      else {
+        cc = new t_corr();
+        _corr[prn] = cc;
+      }
+
+      cc->readLine(line);
+      _corr_tt = cc->tt;
+    }
+    else if ( messageType == BTYPE_GPS ) { 
+
+      t_bias* bb = 0;
+      if (_bias.contains(prn)) {
+        bb = _bias.value(prn);
+      }
+      else {
+        bb = new t_bias();
+        _bias[prn] = bb;
+      }
+
+      bb->tt.set(GPSweek, GPSweeks);
+
+      int numBiases;
+      in >> numBiases;
+      for (int ii = 0; ii < numBiases; ++ii) {
+        int    bType;
+        double bValue;
+	in >> bType >> bValue;
+        if      (bType ==  CODETYPEGPS_L1_Z) {
+          bb->p1 = bValue;
+	}
+        else if (bType ==  CODETYPEGPS_L1_CA) {
+          bb->c1 = bValue;
+	}
+        else if (bType == CODETYPEGPS_L2_Z) {
+          bb->p2 = bValue;
+	}
+      }
+    }
+  }
+
+  QMutableMapIterator<QString, t_corr*> im(_corr);
+  while (im.hasNext()) {
+    im.next();
+    t_corr* cc = im.value();
+    if (!cc->ready()) {
+      delete cc;
+      im.remove();
+    }
+  }
+}
+
+// Satellite Position
+////////////////////////////////////////////////////////////////////////////
+t_irc bncPPPclient::getSatPos(const bncTime& tt, const QString& prn, 
+                              ColumnVector& xc, ColumnVector& vv) {
+
+  const double MAXAGE = 120.0;
+
+  if (_eph.contains(prn)) {
+
+    if (_pppMode) {
+      if (_corr.contains(prn)) {
+        t_corr* cc = _corr.value(prn);
+        if (tt - cc->tt < MAXAGE) {
+          t_eph*  eLast = _eph.value(prn)->last;
+          t_eph*  ePrev = _eph.value(prn)->prev;
+	  if      (eLast && eLast->IOD() == cc->iod) {
+            eLast->position(tt.gpsw(), tt.gpssec(), xc.data(), vv.data());
+            return applyCorr(tt, cc, xc, vv);
+          }
+	  else if (ePrev && ePrev->IOD() == cc->iod) {
+            ePrev->position(tt.gpsw(), tt.gpssec(), xc.data(), vv.data());
+            return applyCorr(tt, cc, xc, vv);
+          }
+	}
+      }
+    }
+
+    else {
+      t_eph* ee = _eph.value(prn)->last;
+      ee->position(tt.gpsw(), tt.gpssec(), xc.data(), vv.data());
+      return success;
+    }
+  }
+
+  return failure;
+}
+
+// 
+////////////////////////////////////////////////////////////////////////////
+t_irc bncPPPclient::applyCorr(const bncTime& tt, const t_corr* cc, 
+                             ColumnVector& xc, ColumnVector& vv) {
+  ColumnVector dx(3);
+
+  double dt = tt - cc->tt;
+  ColumnVector raoHlp = cc->rao + cc->dotRao * dt + cc->dotDotRao * dt * dt;
+
+  if (raoHlp.norm_Frobenius() > 20.0) {
+    return failure;
+  }
+
+  if (cc->xyzCorr) {
+    dx = raoHlp;
+  }
+  else {
+    RSW_to_XYZ(xc.Rows(1,3), vv, raoHlp, dx);
+  }
+
+  xc[0] -= dx[0];
+  xc[1] -= dx[1];
+  xc[2] -= dx[2];
+  xc[3] += cc->dClk + cc->dotDClk * dt + cc->dotDotDClk * dt * dt
+        + cc->hrClk;
+
+  return success;
+}
+
+// Correct Time of Transmission
+////////////////////////////////////////////////////////////////////////////
+t_irc bncPPPclient::cmpToT(t_satData* satData) {
+
+  double prange = satData->P3;
+  if (prange == 0.0) {
+    return failure;
+  }
+
+  double clkSat = 0.0;
+  for (int ii = 1; ii <= 10; ii++) {
+
+    bncTime ToT = satData->tt - prange / t_CST::c - clkSat;
+
+    ColumnVector xc(4);
+    ColumnVector vv(3);
+    if (getSatPos(ToT, satData->prn, xc, vv) != success) {
+      return failure;
+    }
+
+    double clkSatOld = clkSat;
+    clkSat = xc(4);
+
+    if ( fabs(clkSat-clkSatOld) * t_CST::c < 1.e-4 ) {
+      satData->xx      = xc.Rows(1,3);
+      satData->vv      = vv;
+      satData->clk     = clkSat * t_CST::c;
+      return success;
+    } 
+  }
+
+  return failure;
+}
+
+// 
+////////////////////////////////////////////////////////////////////////////
+void bncPPPclient::processFrontEpoch() {
+
+  // Data Pre-Processing
+  // -------------------
+  QMutableMapIterator<QString, t_satData*> it(_epoData.front()->satData);
+  while (it.hasNext()) {
+    it.next();
+    QString    prn     = it.key();
+    t_satData* satData = it.value();
+
+    if (cmpToT(satData) != success) {
+      delete satData;
+      it.remove();
+      continue;
+    }
+  }
+
+  // Filter Solution
+  // ---------------
+  if (_model->update(_epoData.front()) == success) {
+    emit newPosition(_model->time(), _model->x(), _model->y(), _model->z());
+  }
+}
+
+// 
+////////////////////////////////////////////////////////////////////////////
+void bncPPPclient::processEpochs() {
+
+  // Synchronization threshold (not used in SPP mode)
+  // ------------------------------------------------
+  bncSettings settings;
+  double maxDt = settings.value("pppSync").toDouble();
+  if (!_pppMode) {
+    maxDt = 0.0;
+  }
+
+  // Make sure the buffer does not grow beyond any limit
+  // ---------------------------------------------------
+  const unsigned MAX_EPODATA_SIZE = 120;
+  if (_epoData.size() > MAX_EPODATA_SIZE) {
+    delete _epoData.front();
+    _epoData.pop();
+  }
+
+  // Loop over all unprocessed epochs
+  // --------------------------------
+  while (!_epoData.empty()) {
+
+    t_epoData* frontEpoData = _epoData.front();
+
+    // No corrections yet, skip the epoch
+    // ----------------------------------
+    if (maxDt != 0.0 && !_corr_tt.valid()) {
+      return;
+    }
+
+    // Process the front epoch
+    // -----------------------
+    if (maxDt == 0 || frontEpoData->tt - _corr_tt < maxDt) {
+      processFrontEpoch();
+      delete _epoData.front();
+      _epoData.pop();
+    }
+    else {
+      return;
+    }
+  }
+}
Index: branches/BNC_LM/bncpppclient.h
===================================================================
--- branches/BNC_LM/bncpppclient.h	(revision 3570)
+++ branches/BNC_LM/bncpppclient.h	(revision 3570)
@@ -0,0 +1,170 @@
+// Part of BNC, a utility for retrieving decoding and
+// converting GNSS data streams from NTRIP broadcasters.
+//
+// Copyright (C) 2007
+// German Federal Agency for Cartography and Geodesy (BKG)
+// http://www.bkg.bund.de
+// Czech Technical University Prague, Department of Geodesy
+// http://www.fsv.cvut.cz
+//
+// Email: euref-ip@bkg.bund.de
+//
+// This program is free software; you can redistribute it and/or
+// modify it under the terms of the GNU General Public License
+// as published by the Free Software Foundation, version 2.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+#ifndef BNCPPPCLIENT_H
+#define BNCPPPCLIENT_H
+
+#include <queue>
+#include "bncephuser.h"
+#include "RTCM/GPSDecoder.h"
+
+class bncModel;
+
+class t_satData {
+ public:
+  t_satData() {
+    obsIndex = 0;
+  }
+  ~t_satData() {}
+  bncTime      tt;
+  QString      prn;
+  double       P1;
+  double       P2;
+  double       P5;
+  double       P3;
+  double       L1;
+  double       L2;
+  double       L5;
+  double       L3;
+  ColumnVector xx;
+  ColumnVector vv;
+  double       clk;
+  double       eleSat;
+  double       azSat;
+  double       rho;
+  bool         slipFlag;
+  double       lambda3;
+  unsigned     obsIndex;
+  char system() const {return prn.toAscii()[0];}
+};
+
+class t_epoData {
+ public:
+  t_epoData() {}
+
+  ~t_epoData() {
+    clear();
+  }
+
+  void clear() {
+    QMapIterator<QString, t_satData*> it(satData);
+    while (it.hasNext()) {
+      it.next();
+      delete it.value();
+    }
+    satData.clear();
+  }
+
+  void deepCopy(const t_epoData* from) {
+    clear();
+    tt = from->tt;
+    QMapIterator<QString, t_satData*> it(from->satData);
+    while (it.hasNext()) {
+      it.next();
+      satData[it.key()] = new t_satData(*it.value());
+    }
+  }
+
+  unsigned sizeSys(char system) const {
+    unsigned ans = 0;
+    QMapIterator<QString, t_satData*> it(satData);
+    while (it.hasNext()) {
+      it.next();
+      if (it.value()->system() == system) {
+        ++ans;
+      }
+    }
+    return ans;
+  }
+  unsigned sizeAll() const {return satData.size();}
+
+  bncTime                   tt;
+  QMap<QString, t_satData*> satData;
+};
+
+class t_bias {
+ public:
+  t_bias() {
+    p1 = 0.0;
+    p2 = 0.0;
+    c1 = 0.0;
+  }
+  bncTime tt;
+  double  p1;
+  double  p2;
+  double  c1;
+};
+
+class bncPPPclient : public bncEphUser {
+ Q_OBJECT
+
+ public:
+  bncPPPclient(QByteArray staID);
+  ~bncPPPclient();
+  void putNewObs(const t_obs& pp);
+  static t_irc applyCorr(const bncTime& tt, const t_corr* cc, ColumnVector& xc, 
+                         ColumnVector& vv);
+
+ public slots:
+  void slotNewCorrections(QList<QString> corrList);
+
+ signals:
+  void newMessage(QByteArray msg, bool showOnScreen);
+  void newPosition(bncTime time, double x, double y, double z);
+  void newNMEAstr(QByteArray str);
+
+ private:
+  class slipInfo {
+   public:
+    slipInfo() {
+      slipCntL1 = -1;
+      slipCntL2 = -1;
+      slipCntL5 = -1;
+    }
+    ~slipInfo(){}
+    int slipCntL1;
+    int slipCntL2;
+    int slipCntL5;
+  };
+
+  t_irc getSatPos(const bncTime& tt, const QString& prn, 
+                  ColumnVector& xc, ColumnVector& vv);
+  void processEpochs();
+  void processFrontEpoch();
+  t_irc cmpToT(t_satData* satData);
+
+  QByteArray              _staID;
+  QMap<QString, t_corr*>  _corr;
+  bncTime                 _corr_tt;
+  QMap<QString, t_bias*>  _bias;
+  std::queue<t_epoData*>  _epoData;
+  bncModel*               _model;
+  bool                    _useGlonass;
+  bool                    _useGalileo;
+  bool                    _pppMode;
+  QMap<QString, slipInfo> _slips;
+  QString                 _pppCorrMount;
+};
+
+#endif
Index: branches/BNC_LM/bncrawfile.cpp
===================================================================
--- branches/BNC_LM/bncrawfile.cpp	(revision 3570)
+++ branches/BNC_LM/bncrawfile.cpp	(revision 3570)
@@ -0,0 +1,155 @@
+// Part of BNC, a utility for retrieving decoding and
+// converting GNSS data streams from NTRIP broadcasters.
+//
+// Copyright (C) 2007
+// German Federal Agency for Cartography and Geodesy (BKG)
+// http://www.bkg.bund.de
+// Czech Technical University Prague, Department of Geodesy
+// http://www.fsv.cvut.cz
+//
+// Email: euref-ip@bkg.bund.de
+//
+// This program is free software; you can redistribute it and/or
+// modify it under the terms of the GNU General Public License
+// as published by the Free Software Foundation, version 2.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+/* -------------------------------------------------------------------------
+ * BKG NTRIP Client
+ * -------------------------------------------------------------------------
+ *
+ * Class:      bncRawFile
+ *
+ * Purpose:    This class stores/reads BNC raw file
+ *
+ * Author:     L. Mervart
+ *
+ * Created:    23-Aug-2010
+ *
+ * Changes:    
+ *
+ * -----------------------------------------------------------------------*/
+
+#include "bncrawfile.h" 
+#include "bncapp.h"
+#include "bncutils.h"
+#include "bncsettings.h"
+
+using namespace std;
+
+#define RAW_FILE_VERSION "1"
+
+// Constructor
+////////////////////////////////////////////////////////////////////////////
+bncRawFile::bncRawFile(const QByteArray& fileName, const QByteArray& staID,
+                       const QByteArray& format, inpOutFlag ioFlg) {
+
+  _fileName   = fileName; expandEnvVar(_fileName);
+  _staID      = staID;
+  _format     = format;
+  _inpFile    = 0;
+  _outFile    = 0;
+  _version    = 0;
+
+  // Initialize for Input
+  // --------------------
+  if (ioFlg == input) {
+    _inpFile = new QFile(_fileName);
+    _inpFile->open(QIODevice::ReadOnly);
+    QString     line = _inpFile->readLine();
+    QStringList lst  = line.split(' ');
+    _version = lst.value(0).toInt();
+  }
+
+  // Initialize for Output
+  // ---------------------
+  else {    
+    QDate currDate = currentDateAndTimeGPS().date();
+    _currentFileName = _fileName + "_" + currDate.toString("yyMMdd");
+    _outFile = new QFile(_currentFileName);     
+    bncSettings settings;
+    if ( Qt::CheckState(settings.value("rnxAppend").toInt()) == Qt::Checked &&
+         QFile::exists(_currentFileName) ) {
+      _outFile->open(QIODevice::WriteOnly | QIODevice::Append);
+    }
+    else {
+      _outFile->open(QIODevice::WriteOnly);
+      _outFile->write(RAW_FILE_VERSION " Version of BNC raw file");
+    }
+  }
+}
+
+// Destructor
+////////////////////////////////////////////////////////////////////////////
+bncRawFile::~bncRawFile() {
+  delete _inpFile;
+  delete _outFile;
+}
+
+// Raw Output
+////////////////////////////////////////////////////////////////////////////
+void bncRawFile::writeRawData(const QByteArray& data, const QByteArray& staID,
+                              const QByteArray& format) {
+  if (_outFile) {
+    QDate currDate = currentDateAndTimeGPS().date();
+    QString hlp = _fileName + "_" + currDate.toString("yyMMdd");
+    if (hlp != _currentFileName) {
+      _currentFileName = hlp;
+      delete _outFile;
+      _outFile = new QFile(_currentFileName);
+      _outFile->open(QIODevice::WriteOnly);
+      _outFile->write(RAW_FILE_VERSION " Version of BNC raw file");
+    }
+
+    QString chunkHeader = QString("\n%1 %2 %3 %4\n")
+                 .arg(currentDateAndTimeGPS().toString(Qt::ISODate))
+                 .arg(QString(staID))
+                 .arg(QString(format))
+                 .arg(data.size());
+    _outFile->write(chunkHeader.toAscii());
+    _outFile->write(data);
+    _outFile->flush();
+  }
+}
+
+
+// Raw Input
+////////////////////////////////////////////////////////////////////////////
+QByteArray bncRawFile::readChunk(){
+
+  QByteArray data;
+
+  if (_inpFile) {
+    QString     line = _inpFile->readLine();
+    if (line.indexOf("Version of BNC raw file") != -1) {
+      line = _inpFile->readLine();
+    }
+    if (!line.isEmpty()) {
+      QStringList lst  = line.split(' ');
+      
+      bncApp* app = (bncApp*) qApp;
+      delete app->_currentDateAndTimeGPS;
+      app->_currentDateAndTimeGPS = 
+        new QDateTime(QDateTime::fromString(lst.value(0), Qt::ISODate));
+      
+      _staID  = lst.value(1).toAscii();
+      _format = lst.value(2).toAscii();
+      int nBytes = lst.value(3).toInt();
+      
+      data = _inpFile->read(nBytes);
+      
+      _inpFile->read(1); // read '\n' character
+    }
+  }
+
+  return data;
+}
+
Index: branches/BNC_LM/bncrawfile.h
===================================================================
--- branches/BNC_LM/bncrawfile.h	(revision 3570)
+++ branches/BNC_LM/bncrawfile.h	(revision 3570)
@@ -0,0 +1,56 @@
+// Part of BNC, a utility for retrieving decoding and
+// converting GNSS data streams from NTRIP broadcasters.
+//
+// Copyright (C) 2007
+// German Federal Agency for Cartography and Geodesy (BKG)
+// http://www.bkg.bund.de
+// Czech Technical University Prague, Department of Geodesy
+// http://www.fsv.cvut.cz
+//
+// Email: euref-ip@bkg.bund.de
+//
+// This program is free software; you can redistribute it and/or
+// modify it under the terms of the GNU General Public License
+// as published by the Free Software Foundation, version 2.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+#ifndef BNCRAWFILE_H
+#define BNCRAWFILE_H
+
+#include <QFile>
+#include <QTextStream>
+
+#include "bnccaster.h"
+
+class bncRawFile {
+ public:
+
+  enum inpOutFlag {input, output};
+
+  bncRawFile(const QByteArray& fileName, const QByteArray& staID,
+             const QByteArray& format, inpOutFlag ioflg);
+
+  ~bncRawFile();  
+  QByteArray format() const {return _format;}
+  QByteArray staID() const {return _staID;}
+  QByteArray readChunk();
+  void writeRawData(const QByteArray& data, const QByteArray& staID,
+                    const QByteArray& format);
+ private:
+  QString    _fileName;
+  QString    _currentFileName;
+  QByteArray _format;
+  QByteArray _staID;
+  QFile*     _inpFile;
+  QFile*     _outFile;
+  int        _version;
+};
+#endif
Index: branches/BNC_LM/bncrinex.cpp
===================================================================
--- branches/BNC_LM/bncrinex.cpp	(revision 3570)
+++ branches/BNC_LM/bncrinex.cpp	(revision 3570)
@@ -0,0 +1,918 @@
+// Part of BNC, a utility for retrieving decoding and
+// converting GNSS data streams from NTRIP broadcasters.
+//
+// Copyright (C) 2007
+// German Federal Agency for Cartography and Geodesy (BKG)
+// http://www.bkg.bund.de
+// Czech Technical University Prague, Department of Geodesy
+// http://www.fsv.cvut.cz
+//
+// Email: euref-ip@bkg.bund.de
+//
+// This program is free software; you can redistribute it and/or
+// modify it under the terms of the GNU General Public License
+// as published by the Free Software Foundation, version 2.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+/* -------------------------------------------------------------------------
+ * BKG NTRIP Client
+ * -------------------------------------------------------------------------
+ *
+ * Class:      bncRinex
+ *
+ * Purpose:    writes RINEX files
+ *
+ * Author:     L. Mervart
+ *
+ * Created:    27-Aug-2006
+ *
+ * Changes:    
+ *
+ * -----------------------------------------------------------------------*/
+
+#include <stdlib.h>
+#include <iostream>
+#include <iomanip>
+#include <math.h>
+#include <sstream>
+
+#include <QtCore>
+#include <QUrl>
+#include <QString>
+
+#include "bncrinex.h"
+#include "bncapp.h"
+#include "bncutils.h"
+#include "bncconst.h"
+#include "bnctabledlg.h"
+#include "bncgetthread.h"
+#include "bncnetqueryv1.h"
+#include "bncnetqueryv2.h"
+#include "bncsettings.h"
+#include "bncversion.h"
+#include "rtcm3torinex.h"
+
+using namespace std;
+
+// Constructor
+////////////////////////////////////////////////////////////////////////////
+bncRinex::bncRinex(const QByteArray& statID, const QUrl& mountPoint, 
+                   const QByteArray& format, const QByteArray& latitude,
+                   const QByteArray& longitude, const QByteArray& nmea,
+                   const QByteArray& ntripVersion) {
+
+  _statID        = statID;
+  _mountPoint    = mountPoint;
+  _format        = format.left(6);
+  _latitude      = latitude;
+  _longitude     = longitude;
+  _nmea          = nmea;
+  _ntripVersion  = ntripVersion;
+  _headerWritten = false;
+  _reconnectFlag = false;
+  _reloadTable   = false;
+  _reloadDone    = false;
+
+  bncSettings settings;
+  _rnxScriptName = settings.value("rnxScript").toString();
+  expandEnvVar(_rnxScriptName);
+
+  _pgmName  = QString(BNCPGMNAME).leftJustified(20, ' ', true);
+#ifdef WIN32
+  _userName = QString("${USERNAME}");
+#else
+  _userName = QString("${USER}");
+#endif
+  expandEnvVar(_userName);
+  _userName = _userName.leftJustified(20, ' ', true);
+
+  if ( Qt::CheckState(settings.value("rnxV3").toInt()) == Qt::Checked) {
+    _rinexVers = 3;    
+  }
+  else {
+    _rinexVers = 2;
+  }
+
+  _approxPos[0] = _approxPos[1] = _approxPos[2] = 0.0;
+}
+
+// Destructor
+////////////////////////////////////////////////////////////////////////////
+bncRinex::~bncRinex() {
+  bncSettings settings;
+  if ((_rinexVers == 3) && ( Qt::CheckState(settings.value("rnxAppend").toInt()) != Qt::Checked) ) {
+    _out << ">                              4  1" << endl;
+    _out << "END OF FILE" << endl;
+  }
+  _out.close();
+}
+
+// Download Skeleton Header File
+////////////////////////////////////////////////////////////////////////////
+t_irc bncRinex::downloadSkeleton() {
+
+  t_irc irc = failure;
+
+  QStringList table;
+  bncTableDlg::getFullTable(_ntripVersion, _mountPoint.host(), 
+                            _mountPoint.port(), table, _reloadTable);
+  QString net;
+  QStringListIterator it(table);
+  while (it.hasNext()) {
+    QString line = it.next();
+    if (line.indexOf("STR") == 0) {
+      QStringList tags = line.split(";");
+      if (tags.size() > 7) {
+        if (tags.at(1) == _mountPoint.path().mid(1).toAscii()) {
+          net = tags.at(7);
+          break;
+        }
+      }
+    }
+  }
+  QString sklDir;
+  if (!net.isEmpty()) {
+    it.toFront();
+    while (it.hasNext()) {
+      QString line = it.next();
+      if (line.indexOf("NET") == 0) {
+        QStringList tags = line.split(";");
+        if (tags.size() > 6) {
+          if (tags.at(1) == net) {
+            sklDir = tags.at(6).trimmed();
+            break;
+          }
+        }          
+      }
+    }
+  }
+  if (!sklDir.isEmpty() && sklDir != "none") {
+    QUrl url(sklDir + "/" + _mountPoint.path().mid(1,4).toLower() + ".skl"); 
+    if (url.port() == -1) {
+      url.setPort(80);
+    }
+
+    bncNetQuery* query;
+    if      (_ntripVersion == "2s") {
+      query = new bncNetQueryV2(true);
+    }
+    else if (_ntripVersion == "2") {
+      query = new bncNetQueryV2(false);
+    }
+    else {
+      query = new bncNetQueryV1;
+    }
+
+    QByteArray outData;
+    query->waitForRequestResult(url, outData);
+    if (query->status() == bncNetQuery::finished) {
+      _headerLines.clear();
+      bool firstLineRead = false;
+      QTextStream in(outData);
+      QString line = in.readLine();
+      while ( !line.isNull() ) {
+        if (line.indexOf("MARKER NAME") != -1) {
+          irc = success;
+        }
+        if (line.indexOf("RINEX VERSION") != -1) {
+          if (_rinexVers == 3) {
+            _headerLines.append("     3.00           OBSERVATION DATA"
+                                "    M (MIXED)"
+                                "           RINEX VERSION / TYPE");
+          }
+          else {
+            _headerLines.append("     2.11           OBSERVATION DATA"
+                                "    M (MIXED)"
+                                "           RINEX VERSION / TYPE");
+          }
+          _headerLines.append("PGM / RUN BY / DATE");
+          firstLineRead = true;
+        }
+        else if (firstLineRead) {
+          if (line.indexOf("END OF HEADER") != -1) {
+            _headerLines.append("# / TYPES OF OBSERV");
+            if (_rinexVers == 2) {
+              _headerLines.append(
+                    QString("     1     1").leftJustified(60, ' ', true) +
+                    "WAVELENGTH FACT L1/2");
+            }
+            _headerLines.append("TIME OF FIRST OBS");
+            _headerLines.append( line );
+            break;
+          }
+          else {
+            _headerLines.append( line );
+          }
+        }
+        line = in.readLine();
+      }
+    } 
+    else {
+      delete query;
+      return failure;
+    }
+    delete query;
+  }
+
+  return irc;
+}
+
+// Read Skeleton Header File
+////////////////////////////////////////////////////////////////////////////
+void bncRinex::readSkeleton() {
+
+  // Read the local file
+  // -------------------
+  QFile skl(_sklName);
+  if ( skl.exists() && skl.open(QIODevice::ReadOnly) ) {
+    _headerLines.clear();
+    QTextStream in(&skl);
+    while ( !in.atEnd() ) {
+      _headerLines.append( in.readLine() );
+      if (_headerLines.last().indexOf("END OF HEADER") != -1) {
+        break;
+      }
+    }
+  }
+
+  // Read downloaded file
+  // --------------------
+  else if ( _ntripVersion != "N" && _ntripVersion != "UN" &&
+            _ntripVersion != "S" ) {
+    QDate currDate = currentDateAndTimeGPS().date();
+    if ( !_skeletonDate.isValid() || _skeletonDate != currDate ) {
+      if ( downloadSkeleton() == success) {
+        _skeletonDate = currDate;
+        _reloadDone = false;
+      }
+      else {
+        if(!_reloadDone) {
+          _reloadTable = true;
+          if ( downloadSkeleton() == success) {
+            _skeletonDate = currDate;
+          }
+          _reloadTable = false;
+          _reloadDone = true;
+        }
+      }
+    }
+  }
+}
+
+// Next File Epoch (static)
+////////////////////////////////////////////////////////////////////////////
+QString bncRinex::nextEpochStr(const QDateTime& datTim, 
+                               const QString& intStr, QDateTime* nextEpoch) {
+
+  QString epoStr;
+
+  QTime nextTime;
+  QDate nextDate;
+
+  int indHlp = intStr.indexOf("min");
+
+  if ( indHlp != -1) {
+    int step = intStr.left(indHlp-1).toInt();
+    char ch = 'A' + datTim.time().hour();
+    epoStr = ch;
+    if (datTim.time().minute() >= 60-step) {
+      epoStr += QString("%1").arg(60-step, 2, 10, QChar('0'));
+      if (datTim.time().hour() < 23) {
+        nextTime.setHMS(datTim.time().hour() + 1 , 0, 0);
+        nextDate = datTim.date();
+      }
+      else {
+        nextTime.setHMS(0, 0, 0);
+        nextDate = datTim.date().addDays(1);
+      }
+    }
+    else {
+      for (int limit = step; limit <= 60-step; limit += step) {
+        if (datTim.time().minute() < limit) {
+          epoStr += QString("%1").arg(limit-step, 2, 10, QChar('0'));
+          nextTime.setHMS(datTim.time().hour(), limit, 0);
+          nextDate = datTim.date();
+          break;
+        }
+      }
+    }
+  }
+  else if (intStr == "1 hour") {
+    char ch = 'A' + datTim.time().hour();
+    epoStr = ch;
+    if (datTim.time().hour() < 23) {
+      nextTime.setHMS(datTim.time().hour() + 1 , 0, 0);
+      nextDate = datTim.date();
+    }
+    else {
+      nextTime.setHMS(0, 0, 0);
+      nextDate = datTim.date().addDays(1);
+    }
+  }
+  else {
+    epoStr = "0";
+    nextTime.setHMS(0, 0, 0);
+    nextDate = datTim.date().addDays(1);
+  }
+
+  if (nextEpoch) {
+   *nextEpoch = QDateTime(nextDate, nextTime);
+  }
+
+  return epoStr;
+}
+
+// File Name according to RINEX Standards
+////////////////////////////////////////////////////////////////////////////
+void bncRinex::resolveFileName(const QDateTime& datTim) {
+
+  bncSettings settings;
+  QString path = settings.value("rnxPath").toString();
+  expandEnvVar(path);
+
+  if ( path.length() > 0 && path[path.length()-1] != QDir::separator() ) {
+    path += QDir::separator();
+  }
+
+  QString hlpStr = nextEpochStr(datTim, settings.value("rnxIntr").toString(), 
+                                &_nextCloseEpoch);
+
+  QString ID4 = _statID.left(4);
+
+  // Check name conflict
+  // -------------------
+  QString distStr;
+  int num = 0;
+  QListIterator<QString> it(settings.value("mountPoints").toStringList());
+  while (it.hasNext()) {
+    QString mp = it.next();
+    if (mp.indexOf(ID4) != -1) {
+      ++num;
+    }
+  }
+  if (num > 1) {
+    distStr = "_" + _statID.mid(4);
+  }
+
+  QString sklExt = settings.value("rnxSkel").toString();
+  if (!sklExt.isEmpty()) {
+    _sklName = path + ID4 + distStr + "." + sklExt;
+  }
+
+  path += ID4 +
+          QString("%1").arg(datTim.date().dayOfYear(), 3, 10, QChar('0')) +
+          hlpStr + distStr + datTim.toString(".yyO");
+
+  _fName = path.toAscii();
+}
+
+// Write RINEX Header
+////////////////////////////////////////////////////////////////////////////
+void bncRinex::writeHeader(const QDateTime& datTim, 
+                           const QDateTime& datTimNom) {
+
+  bncSettings settings;
+
+  // Open the Output File
+  // --------------------
+  resolveFileName(datTimNom);
+
+  // Append to existing file and return
+  // ----------------------------------
+  if ( QFile::exists(_fName) ) {
+    if (_reconnectFlag ||
+        Qt::CheckState(settings.value("rnxAppend").toInt()) == Qt::Checked) {
+      _out.open(_fName.data(), ios::app);
+      _out.setf(ios::showpoint | ios::fixed);
+      _headerWritten = true;
+      _reconnectFlag = false;
+      return;
+    }
+  }
+
+  _out.open(_fName.data());
+  _out.setf(ios::showpoint | ios::fixed);
+
+  // Copy Skeleton Header
+  // --------------------
+  readSkeleton();
+  if (_headerLines.size() > 0) {
+    QStringListIterator it(_headerLines);
+    while (it.hasNext()) {
+      QString line = it.next();
+      if      (line.indexOf("PGM / RUN BY / DATE") != -1) {
+        if (_rinexVers == 3) {
+          QString hlp = currentDateAndTimeGPS().toString("yyyyMMdd hhmmss UTC").leftJustified(20, ' ', true);
+          _out << _pgmName.toAscii().data() << _userName.toAscii().data() 
+               << hlp.toAscii().data() << "PGM / RUN BY / DATE" << endl;
+        }
+        else {
+          QString hlp = currentDateAndTimeGPS().date().toString("dd-MMM-yyyy").leftJustified(20, ' ', true);
+          _out << _pgmName.toAscii().data() << _userName.toAscii().data() 
+               << hlp.toAscii().data() << "PGM / RUN BY / DATE" << endl;
+        }
+      }
+      else if (line.indexOf("# / TYPES OF OBSERV") != -1) {
+        if (_rinexVers == 3) {
+          _out << "G   20 C1C L1C D1C S1C C1W L1W D1W S1W C2P L2P D2P S2P C2X  SYS / # / OBS TYPES" << endl;
+          _out << "       L2X D2X S2X C5  L5  D5  S5                           SYS / # / OBS TYPES" << endl;
+          _out << "R   16 C1C L1C D1C S1C C1P L1P D1P S1P C2P L2P D2P S2P C2C  SYS / # / OBS TYPES" << endl;
+          _out << "       L2C D2C S2C                                          SYS / # / OBS TYPES" << endl;
+          _out << "S    8 C1C L1C D1C S1C C1W L1W D1W S1W                      SYS / # / OBS TYPES" << endl;
+          _out << "E    8 C1  L1  D1  S1  C5  L5  D5  S5                       SYS / # / OBS TYPES" << endl;
+        }
+        else { 
+          _out << "     8    C1    P1    L1    S1    C2    P2    L2    S2"
+                  "      # / TYPES OF OBSERV"  << endl;
+        }
+      }
+      else if (line.indexOf("TIME OF FIRST OBS") != -1) {
+        _out << datTim.toString("  yyyy    MM    dd"
+                                "    hh    mm   ss.zzz0000").toAscii().data();
+        _out << "     GPS         TIME OF FIRST OBS"    << endl;
+        QString hlp = (_format + QString(" %1").arg(_mountPoint.host() + 
+                      _mountPoint.path())).leftJustified(60, ' ', true);
+        _out << hlp.toAscii().data() << "COMMENT" << endl;
+      }
+      else if (line.indexOf("MARKER NAME") != -1) {
+        if (_rinexVers == 3) {
+          _out << line.toAscii().data() << endl;
+          _out << setw(71) << "GEODETIC                                                    MARKER TYPE" << endl;
+        } 
+        else {
+          _out << line.toAscii().data() << endl;
+        }
+      }
+      else {
+        _out << line.toAscii().data() << endl;
+      }
+    }
+  }
+
+  // Write Dummy Header
+  // ------------------
+  else {
+    double antennaNEU[3]; antennaNEU[0] = antennaNEU[1] = antennaNEU[2] = 0.0;
+    
+    if (_rinexVers == 3) {
+      _out << "     3.00           OBSERVATION DATA    M (MIXED)           RINEX VERSION / TYPE" << endl;
+      QString hlp = currentDateAndTimeGPS().toString("yyyyMMdd hhmmss UTC").leftJustified(20, ' ', true);
+      _out << _pgmName.toAscii().data() << _userName.toAscii().data() 
+           << hlp.toAscii().data() << "PGM / RUN BY / DATE" << endl;
+    }
+    else {
+      _out << "     2.11           OBSERVATION DATA    M (MIXED)           RINEX VERSION / TYPE" << endl;
+      QString hlp = currentDateAndTimeGPS().date().toString("dd-MMM-yyyy").leftJustified(20, ' ', true);
+      _out << _pgmName.toAscii().data() << _userName.toAscii().data() 
+           << hlp.toAscii().data() << "PGM / RUN BY / DATE" << endl;
+    }
+    _out.setf(ios::left);
+    _out << setw(60) << _statID.data()                               << "MARKER NAME"          << endl;
+    if (_rinexVers == 3) {
+      _out << setw(60) << "unknown"                                  << "MARKER TYPE      "    << endl;
+    }
+    _out << setw(60) << "unknown             unknown"                << "OBSERVER / AGENCY"    << endl;
+    _out << setw(20) << "unknown"    
+         << setw(20) << "unknown"
+         << setw(20) << "unknown"                                    << "REC # / TYPE / VERS"  << endl;
+    _out << setw(20) << "unknown"
+         << setw(20) << "unknown"
+         << setw(20) << " "                                          << "ANT # / TYPE"         << endl;
+    _out.unsetf(ios::left);
+    _out << setw(14) << setprecision(4) << _approxPos[0]
+         << setw(14) << setprecision(4) << _approxPos[1]
+         << setw(14) << setprecision(4) << _approxPos[2] 
+         << "                  "                                     << "APPROX POSITION XYZ"  << endl;
+    _out << setw(14) << setprecision(4) << antennaNEU[0]
+         << setw(14) << setprecision(4) << antennaNEU[1]
+         << setw(14) << setprecision(4) << antennaNEU[2] 
+         << "                  "                                     << "ANTENNA: DELTA H/E/N" << endl;
+    if (_rinexVers == 3) {
+      _out << "G   20 C1C L1C D1C S1C C1W L1W D1W S1W C2P L2P D2P S2P C2X  SYS / # / OBS TYPES" << endl;
+      _out << "       L2X D2X S2X C5  L5  D5  S5                           SYS / # / OBS TYPES" << endl;
+      _out << "R   16 C1C L1C D1C S1C C1P L1P D1P S1P C2P L2P D2P S2P C2C  SYS / # / OBS TYPES" << endl;
+      _out << "       L2C D2C S2C                                          SYS / # / OBS TYPES" << endl;
+      _out << "S    8 C1C L1C D1C S1C C1W L1W D1W S1W                      SYS / # / OBS TYPES" << endl;
+      _out << "E    8 C1  L1  D1  S1  C5  L5  D5  S5                       SYS / # / OBS TYPES" << endl;
+    }
+    else {
+      _out << "     1     1                                                WAVELENGTH FACT L1/2" << endl;
+      _out << "     8    C1    P1    L1    S1    C2    P2    L2    S2      # / TYPES OF OBSERV"  << endl;
+    }
+    _out << datTim.toString("  yyyy    MM    dd"
+                                "    hh    mm   ss.zzz0000").toAscii().data();
+    _out << "     GPS         TIME OF FIRST OBS"    << endl;
+    QString hlp = (_format + QString(" %1").arg(_mountPoint.host() + 
+          _mountPoint.path())).leftJustified(60, ' ', true);
+    _out << hlp.toAscii().data() << "COMMENT" << endl;
+
+    if (_nmea == "yes") {
+    hlp = ("NMEA LAT=" + _latitude + " " + "LONG=" + _longitude).leftJustified(60, ' ',true);
+    _out << hlp.toAscii().data() << "COMMENT" << endl; }
+
+    _out << "                                                            END OF HEADER"        << endl;
+  }
+
+  _headerWritten = true;
+}
+
+// Stores Observation into Internal Array
+////////////////////////////////////////////////////////////////////////////
+void bncRinex::deepCopy(t_obs obs) {
+  _obs.push_back(obs);
+}
+
+// Write One Epoch into the RINEX File
+////////////////////////////////////////////////////////////////////////////
+void bncRinex::dumpEpoch(long maxTime) {
+
+  // Select observations older than maxTime
+  // --------------------------------------
+  QList<t_obs> dumpList;
+  QMutableListIterator<t_obs> mIt(_obs);
+  while (mIt.hasNext()) {
+    t_obs obs = mIt.next();
+    if (obs.GPSWeek * 7*24*3600 + obs.GPSWeeks < maxTime - 0.05) {
+      dumpList.push_back(obs);
+      mIt.remove();
+    }
+  }
+
+  // Easy Return
+  // -----------
+  if (dumpList.isEmpty()) {
+    return;
+  }
+
+  // Time of Epoch
+  // -------------
+  const t_obs& fObs   = dumpList.first();
+  QDateTime datTim    = dateAndTimeFromGPSweek(fObs.GPSWeek, fObs.GPSWeeks);
+  QDateTime datTimNom = dateAndTimeFromGPSweek(fObs.GPSWeek, 
+                                               floor(fObs.GPSWeeks+0.5));
+
+  // Close the file
+  // --------------
+  if (_nextCloseEpoch.isValid() && datTimNom >= _nextCloseEpoch) {
+    closeFile();
+    _headerWritten = false;
+  }
+
+  // Write RINEX Header
+  // ------------------
+  if (!_headerWritten) {
+    writeHeader(datTim, datTimNom);
+  }
+
+  double sec = double(datTim.time().second()) + fmod(fObs.GPSWeeks,1.0);
+
+  // Epoch header line: RINEX Version 3
+  // ----------------------------------
+  if (_rinexVers == 3) {
+    _out << datTim.toString("> yyyy MM dd hh mm ").toAscii().data()
+         << setw(10) << setprecision(7) << sec
+         << "  " << 0 << setw(3)  << dumpList.size() << endl;
+  }
+  // Epoch header line: RINEX Version 2
+  // ----------------------------------
+  else {
+    _out << datTim.toString(" yy MM dd hh mm ").toAscii().data()
+         << setw(10) << setprecision(7) << sec
+         << "  " << 0 << setw(3)  << dumpList.size();
+
+    QListIterator<t_obs> it(dumpList); int iSat = 0;
+    while (it.hasNext()) {
+      iSat++;
+      const t_obs& obs = it.next();
+      _out << obs.satSys << setw(2) << obs.satNum;
+      if (iSat == 12 && it.hasNext()) {
+        _out << endl << "                                ";
+        iSat = 0;
+      }
+    }
+    _out << endl;
+  }
+
+  QListIterator<t_obs> it(dumpList);
+  while (it.hasNext()) {
+    const t_obs& obs = it.next();
+
+    // Cycle slips detection
+    // ---------------------
+    QString prn = QString("%1%2").arg(obs.satSys)
+                            .arg(obs.satNum, 2, 10, QChar('0'));
+
+    char lli1 = ' ';
+    char lli2 = ' ';
+    char lli5 = ' ';
+    if      ( obs.slip_cnt_L1 >= 0 ) {
+      if ( _slip_cnt_L1.find(prn)         != _slip_cnt_L1.end() && 
+           _slip_cnt_L1.find(prn).value() != obs.slip_cnt_L1 ) {
+        lli1 = '1';
+      }
+    }
+
+    if ( obs.slip_cnt_L2 >= 0 ) {
+      if ( _slip_cnt_L2.find(prn)         != _slip_cnt_L2.end() && 
+           _slip_cnt_L2.find(prn).value() != obs.slip_cnt_L2 ) {
+        lli2 = '1';
+      }
+    }
+
+    if ( obs.slip_cnt_L5 >= 0 ) {
+      if ( _slip_cnt_L5.find(prn)         != _slip_cnt_L5.end() && 
+           _slip_cnt_L5.find(prn).value() != obs.slip_cnt_L5 ) {
+        lli5 = '1';
+      }
+    }
+
+    _slip_cnt_L1[prn]   = obs.slip_cnt_L1;
+    _slip_cnt_L2[prn]   = obs.slip_cnt_L2;
+    _slip_cnt_L5[prn]   = obs.slip_cnt_L5;
+
+    // RINEX Version 3
+    // ---------------
+    if (_rinexVers == 3) {
+      _out << rinexSatLine(obs, lli1, lli2, lli5); 
+      _out << endl;
+    }
+
+    // RINEX Version 2
+    // ---------------
+    else {
+      _out << setw(14) << setprecision(3) << obs.C1    << ' '  << ' '
+           << setw(14) << setprecision(3) << obs.P1    << ' '  << ' '
+           << setw(14) << setprecision(3) << obs.L1()  << lli1 << ' '
+           << setw(14) << setprecision(3) << obs.S1()  << ' '  << ' '
+           << setw(14) << setprecision(3) << obs.C2    << ' '  << ' ' << endl
+           << setw(14) << setprecision(3) << obs.P2    << ' '  << ' ' 
+           << setw(14) << setprecision(3) << obs.L2()  << lli2 << ' '
+           << setw(14) << setprecision(3) << obs.S2()  << endl;
+    }
+  }
+
+  _out.flush();
+}
+
+// Close the Old RINEX File
+////////////////////////////////////////////////////////////////////////////
+void bncRinex::closeFile() {
+  if (_rinexVers == 3) {
+    _out << ">                              4  1" << endl;
+    _out << "END OF FILE" << endl;
+  }
+  _out.close();
+  if (!_rnxScriptName.isEmpty()) {
+    qApp->thread()->wait(100);
+#ifdef WIN32
+    QProcess::startDetached(_rnxScriptName, QStringList() << _fName) ;
+#else
+    QProcess::startDetached("nohup", QStringList() << _rnxScriptName << _fName) ;
+#endif
+
+  }
+}
+
+// One Line in RINEX v3 (static)
+////////////////////////////////////////////////////////////////////////////
+string bncRinex::rinexSatLine(const t_obs& obs, char lli1, char lli2, 
+                              char lli5) {
+  ostringstream str;
+  str.setf(ios::showpoint | ios::fixed);
+
+  if      (obs.satSys == 'G') { // GPS
+    str << obs.satSys 
+        << setw(2) << setfill('0') << obs.satNum << setfill(' ')
+        << setw(14) << setprecision(3) << obs.C1  << ' '  << ' '  
+        << setw(14) << setprecision(3) << obs.L1C
+        << lli1 << ' ';
+    str << setw(14) << setprecision(3) << obs.D1C << ' '  << ' '
+        << setw(14) << setprecision(3) << obs.S1C << ' '  << ' ' 
+        << setw(14) << setprecision(3) << obs.P1  << ' '  << ' '  
+        << setw(14) << setprecision(3) << obs.L1P
+        << lli1 << ' ';
+    str << setw(14) << setprecision(3) << obs.D1P << ' '  << ' '
+        << setw(14) << setprecision(3) << obs.S1P << ' '  << ' ' 
+        << setw(14) << setprecision(3) << obs.P2  << ' '  << ' ' 
+        << setw(14) << setprecision(3) << obs.L2P
+        << lli2 << ' ';
+    str << setw(14) << setprecision(3) << obs.D2P << ' '  << ' '
+        << setw(14) << setprecision(3) << obs.S2P << ' '  << ' ' 
+        << setw(14) << setprecision(3) << obs.C2  << ' '  << ' '  
+        << setw(14) << setprecision(3) << obs.L2C
+        << lli2 << ' ';
+    str << setw(14) << setprecision(3) << obs.D2C << ' '  << ' ' 
+        << setw(14) << setprecision(3) << obs.S2C << ' '  << ' '
+        << setw(14) << setprecision(3) << obs.C5  << ' '  << ' '  
+        << setw(14) << setprecision(3) << obs.L5
+        << lli5 << ' ';
+    str << setw(14) << setprecision(3) << obs.D5  << ' '  << ' '  
+        << setw(14) << setprecision(3) << obs.S5;
+  }
+  else if (obs.satSys == 'R') { // Glonass
+    str << obs.satSys 
+        << setw(2) << setfill('0') << obs.satNum << setfill(' ');
+    str << setw(14) << setprecision(3) << obs.C1  << ' '  << ' '  
+        << setw(14) << setprecision(3) << obs.L1C
+        << lli1 << ' ';
+    str << setw(14) << setprecision(3) << obs.D1C << ' '  << ' '  
+        << setw(14) << setprecision(3) << obs.S1C << ' '  << ' ' 
+        << setw(14) << setprecision(3) << obs.P1  << ' '  << ' '  
+        << setw(14) << setprecision(3) << obs.L1P
+        << lli1 << ' ';
+    str << setw(14) << setprecision(3) << obs.D1P << ' '  << ' '  
+        << setw(14) << setprecision(3) << obs.S1P << ' '  << ' ' 
+        << setw(14) << setprecision(3) << obs.P2  << ' '  << ' '  
+        << setw(14) << setprecision(3) << obs.L2P
+        << lli2 << ' ';
+    str << setw(14) << setprecision(3) << obs.D2P << ' '  << ' '  
+        << setw(14) << setprecision(3) << obs.S2P << ' '  << ' '
+        << setw(14) << setprecision(3) << obs.C2  << ' '  << ' ' 
+        << setw(14) << setprecision(3) << obs.L2C
+        << lli2 << ' ';
+    str << setw(14) << setprecision(3) << obs.D2C << ' '  << ' '  
+        << setw(14) << setprecision(3) << obs.S2C;
+  }
+  else if (obs.satSys == 'S') { // SBAS
+    str << obs.satSys 
+        << setw(2) << setfill('0') << obs.satNum << setfill(' ')
+        << setw(14) << setprecision(3) << obs.C1  << ' '  << ' '  
+        << setw(14) << setprecision(3) << obs.L1C
+        << lli1 << ' ';
+    str << setw(14) << setprecision(3) << obs.D1C << ' '  << ' '  
+        << setw(14) << setprecision(3) << obs.S1C << ' '  << ' '
+        << setw(14) << setprecision(3) << obs.P1  << ' '  << ' '  
+        << setw(14) << setprecision(3) << obs.L1P
+        << lli1 << ' ';
+    str << setw(14) << setprecision(3) << obs.D1P << ' '  << ' '  
+        << setw(14) << setprecision(3) << obs.S1P;
+  }
+  else if (obs.satSys == 'E') { // Galileo
+    str << obs.satSys 
+        << setw(2) << setfill('0') << obs.satNum << setfill(' ')
+        << setw(14) << setprecision(3) << obs.C1  << ' '  << ' '  
+        << setw(14) << setprecision(3) << obs.L1C
+        << lli1 << ' ';
+    str << setw(14) << setprecision(3) << obs.D1C << ' '  << ' ' 
+        << setw(14) << setprecision(3) << obs.S1C << ' '  << ' ' 
+        << setw(14) << setprecision(3) << obs.C5  << ' '  << ' '  
+        << setw(14) << setprecision(3) << obs.L5
+        << lli5 << ' ';
+    str << setw(14) << setprecision(3) << obs.D5  << ' '  << ' '  
+        << setw(14) << setprecision(3) << obs.S5;
+  }
+  return str.str();
+}
+
+// 
+////////////////////////////////////////////////////////////////////////////
+string bncRinex::obsToStr(double val, int width, int precision) {
+  if (val != 0.0) {
+    ostringstream str;
+    str.setf(ios::showpoint | ios::fixed);
+    str << setw(width) << setprecision(precision) << val;
+    return str.str();
+  }
+  else {
+    return "0.0";
+  }
+}
+
+// One Line in ASCII (Internal) Format
+////////////////////////////////////////////////////////////////////////////
+string bncRinex::asciiSatLine(const t_obs& obs) {
+
+  ostringstream str;
+  str.setf(ios::showpoint | ios::fixed);
+
+  str << obs.satSys << setw(2) << setfill('0') << obs.satNum << setfill(' ');
+
+  if (obs.satSys == 'R') { // Glonass
+    str << ' ' << setw(2) << obs.slotNum;
+  }
+  else {
+    str << "   ";
+  }
+
+  if      (obs.satSys == 'G') { // GPS
+    if (obs.has1C()) {
+      str << "  1C " 
+          << obsToStr(obs.C1)  << ' '  
+          << obsToStr(obs.L1C) << ' '
+          << obsToStr(obs.D1C) << ' '
+          << obsToStr(obs.S1C, 8, 3) << ' '
+          << setw(2)  << obs.slip_cnt_L1;
+    }
+    if (obs.has1P()) {
+      str << "  1W "
+          << obsToStr(obs.P1)  << ' '  
+          << obsToStr(obs.L1P) << ' '
+          << obsToStr(obs.D1P) << ' '
+          << obsToStr(obs.S1P, 8, 3) << ' '
+          << setw(2)  << obs.slip_cnt_L1;
+    }
+    if (obs.has2P()) {
+      str << "  2P "
+          << obsToStr(obs.P2)  << ' '
+          << obsToStr(obs.L2P) << ' '
+          << obsToStr(obs.D2P) << ' '
+          << obsToStr(obs.S2P, 8, 3) << ' '
+          << setw(2)  << obs.slip_cnt_L2;
+    }
+    if (obs.has2C()) {
+      str << "  2X "
+          << obsToStr(obs.C2)  << ' '  
+          << obsToStr(obs.L2C) << ' '
+          << obsToStr(obs.D2C) << ' ' 
+          << obsToStr(obs.S2C, 8, 3) << ' '
+          << setw(2)  << obs.slip_cnt_L2;
+    }
+    if (obs.has5C()) {
+      str << "  5C "
+          << obsToStr(obs.C5)  << ' '
+          << obsToStr(obs.L5)  << ' '
+          << obsToStr(obs.D5)  << ' '
+          << obsToStr(obs.S5, 8, 3)  << ' '
+          << setw(2)  << obs.slip_cnt_L5;
+    }
+  }
+  else if (obs.satSys == 'R') { // Glonass
+    if (obs.has1C()) {
+      str << "  1C "
+          << obsToStr(obs.C1)  << ' '  
+          << obsToStr(obs.L1C) << ' '
+          << obsToStr(obs.D1C) << ' '
+          << obsToStr(obs.S1C, 8, 3) << ' '
+          << setw(2)  << obs.slip_cnt_L1;
+    }
+    if (obs.has1P()) {
+      str << "  1P "
+          << obsToStr(obs.P1)  << ' '  
+          << obsToStr(obs.L1P) << ' '
+          << obsToStr(obs.D1P) << ' '
+          << obsToStr(obs.S1P, 8, 3) << ' '
+          << setw(2)  << obs.slip_cnt_L1;
+    }
+    if (obs.has2P()) {
+      str << "  2P "
+          << obsToStr(obs.P2)  << ' '
+          << obsToStr(obs.L2P) << ' '
+          << obsToStr(obs.D2P) << ' '
+          << obsToStr(obs.S2P, 8, 3) << ' '
+          << setw(2)  << obs.slip_cnt_L2;
+    }
+    if (obs.has2C()) {
+      str << "  2C "
+          << obsToStr(obs.C2)  << ' '  
+          << obsToStr(obs.L2C) << ' '
+          << obsToStr(obs.D2C) << ' ' 
+          << obsToStr(obs.S2C, 8, 3) << ' '
+          << setw(2)  << obs.slip_cnt_L2;
+    }
+  }
+  else if (obs.satSys == 'S') { // SBAS
+    if (obs.has1C()) {
+      str << "  1C "
+          << obsToStr(obs.C1)  << ' '  
+          << obsToStr(obs.L1C) << ' '
+          << obsToStr(obs.D1C) << ' '
+          << obsToStr(obs.S1C, 8, 3) << ' '
+          << setw(2)  << obs.slip_cnt_L1;
+    }
+    if (obs.has1P()) {
+      str << "  1W "
+          << obsToStr(obs.P1)  << ' '  
+          << obsToStr(obs.L1P) << ' '
+          << obsToStr(obs.D1P) << ' '
+          << obsToStr(obs.S1P, 8, 3) << ' '
+          << setw(2)  << obs.slip_cnt_L1;
+    }
+  }
+  else if (obs.satSys == 'E') { // Galileo
+    if (obs.has1C()) {
+      str << " 1C "
+          << obsToStr(obs.C1)  << ' '  
+          << obsToStr(obs.L1C) << ' '
+          << obsToStr(obs.D1C) << ' '
+          << obsToStr(obs.S1C, 8, 3) << ' '
+          << setw(2)  << obs.slip_cnt_L1;
+    }
+    if (obs.has5C()) {
+      str << "  5C "
+          << obsToStr(obs.C5)  << ' '
+          << obsToStr(obs.L5)  << ' '
+          << obsToStr(obs.D5)  << ' '
+          << obsToStr(obs.S5, 8, 3)  << ' '
+          << setw(2)  << obs.slip_cnt_L5;
+    }
+  }
+  return str.str();
+}
Index: branches/BNC_LM/bncrinex.h
===================================================================
--- branches/BNC_LM/bncrinex.h	(revision 3570)
+++ branches/BNC_LM/bncrinex.h	(revision 3570)
@@ -0,0 +1,99 @@
+// Part of BNC, a utility for retrieving decoding and
+// converting GNSS data streams from NTRIP broadcasters.
+//
+// Copyright (C) 2007
+// German Federal Agency for Cartography and Geodesy (BKG)
+// http://www.bkg.bund.de
+// Czech Technical University Prague, Department of Geodesy
+// http://www.fsv.cvut.cz
+//
+// Email: euref-ip@bkg.bund.de
+//
+// This program is free software; you can redistribute it and/or
+// modify it under the terms of the GNU General Public License
+// as published by the Free Software Foundation, version 2.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+#ifndef BNCRINEX_H
+#define BNCRINEX_H
+
+#include <QByteArray>
+#include <QDateTime>
+#include <QList>
+
+#include <fstream>
+
+#include "bncconst.h"
+#include "RTCM/GPSDecoder.h"
+
+class bncRinex {
+ public:
+   bncRinex(const QByteArray& statID, const QUrl& mountPoint, 
+            const QByteArray& format, const QByteArray& latitude,
+            const QByteArray& longitude, const QByteArray& nmea,
+            const QByteArray& ntripVersion); 
+   ~bncRinex();
+   void deepCopy(t_obs obs);
+   void dumpEpoch(long maxTime);
+   void setReconnectFlag(bool flag){_reconnectFlag = flag;}
+   static QString nextEpochStr(const QDateTime& datTim,
+                               const QString& intStr, 
+                               QDateTime* nextEpoch = 0);
+
+   void setApproxPos(double stax, double stay, double staz) {
+     _approxPos[0] = stax;
+     _approxPos[1] = stay;
+     _approxPos[2] = staz;
+   }
+
+   static std::string rinexSatLine(const t_obs& obs, char lli1, char lli2,
+                                   char lli5);
+
+   static std::string asciiSatLine(const t_obs& obs);
+   static std::string obsToStr(double val, int width = 14, int precision = 3);
+
+ private:
+   void resolveFileName(const QDateTime& datTim);
+   void readSkeleton();
+   void writeHeader(const QDateTime& datTim, const QDateTime& datTimNom);
+   void closeFile();
+   t_irc downloadSkeleton();
+
+   QByteArray    _statID;
+   QByteArray    _fName;
+   QList<t_obs>  _obs;
+   std::ofstream _out;
+   QStringList   _headerLines;
+   bool          _headerWritten;
+   QDateTime     _nextCloseEpoch;
+   QString       _rnxScriptName;
+   QUrl          _mountPoint;
+   QString       _pgmName;
+   QString       _userName;
+   QString       _sklName;
+   QByteArray    _format;
+   QByteArray    _latitude;
+   QByteArray    _longitude;
+   QByteArray    _nmea;
+   QByteArray    _ntripVersion;
+   bool          _reconnectFlag;
+   QDate         _skeletonDate;
+   int           _rinexVers;
+   bool          _reloadTable;
+   bool          _reloadDone;
+   double        _approxPos[3];
+
+   QMap<QString, int>  _slip_cnt_L1;
+   QMap<QString, int>  _slip_cnt_L2;
+   QMap<QString, int>  _slip_cnt_L5;
+};
+
+#endif
Index: branches/BNC_LM/bncserialport.cpp
===================================================================
--- branches/BNC_LM/bncserialport.cpp	(revision 3570)
+++ branches/BNC_LM/bncserialport.cpp	(revision 3570)
@@ -0,0 +1,199 @@
+// Part of BNC, a utility for retrieving decoding and
+// converting GNSS data streams from NTRIP broadcasters.
+//
+// Copyright (C) 2009
+// German Federal Agency for Cartography and Geodesy (BKG)
+// http://www.bkg.bund.de
+// Czech Technical University Prague, Department of Geodesy
+// http://www.fsv.cvut.cz
+//
+// Email: euref-ip@bkg.bund.de
+//
+// This program is free software; you can redistribute it and/or
+// modify it under the terms of the GNU General Public License
+// as published by the Free Software Foundation, version 2.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+/* -------------------------------------------------------------------------
+ * BKG NTRIP Client
+ * -------------------------------------------------------------------------
+ *
+ * Class:      bncSerialPort
+ *
+ * Purpose:    Select serial port for stream retrieval
+ *
+ * Author:     G. Weber
+ *
+ * Created:    18-Feb-2009
+ *
+ * Changes:    
+ *
+ * -----------------------------------------------------------------------*/
+
+#include <iostream>
+
+#include "bncserialport.h"
+
+using namespace std;
+
+// Constructor
+////////////////////////////////////////////////////////////////////////////
+bncSerialPort::bncSerialPort(QWidget* parent) : QDialog(parent) {
+
+  setMinimumSize(400,150);
+  QVBoxLayout* mainLayout = new QVBoxLayout(this);
+  QGridLayout* editLayout = new QGridLayout;
+
+  setWindowTitle(tr("Add Stream from Serial Port"));
+
+  _serialMountpointLineEdit = new QLineEdit();
+  _serialPortLineEdit = new QLineEdit();
+  _serialFormatLineEdit = new QLineEdit();
+  _serialBaudRateComboBox = new QComboBox();
+  _serialFlowControlComboBox = new QComboBox();
+  _serialDataBitsComboBox = new QComboBox();
+  _serialParityComboBox = new QComboBox();
+  _serialStopBitsComboBox = new QComboBox();
+  _serialLatLineEdit = new QLineEdit();
+  _serialLonLineEdit = new QLineEdit();
+
+  _serialBaudRateComboBox->addItems(QString("110,300,600,"
+            "1200,2400,4800,9600,19200,38400,57600,115200").split(","));
+  _serialFlowControlComboBox->addItems(QString("OFF,XONXOFF,HARDWARE").split(","));
+  _serialDataBitsComboBox->addItems(QString("5,6,7,8").split(","));
+  _serialParityComboBox->addItems(QString("NONE,ODD,EVEN,SPACE").split(","));
+  _serialStopBitsComboBox->addItems(QString("1,2").split(","));
+
+  _serialBaudRateComboBox->setCurrentIndex(7);
+  _serialDataBitsComboBox->setCurrentIndex(3);
+
+  int ww = QFontMetrics(font()).width('w');
+  _serialMountpointLineEdit->setMaximumWidth(11*ww);
+  _serialPortLineEdit->setMaximumWidth(11*ww);
+  _serialBaudRateComboBox->setMaximumWidth(9*ww);
+  _serialFlowControlComboBox->setMaximumWidth(11*ww);
+  _serialDataBitsComboBox->setMaximumWidth(5*ww);
+  _serialParityComboBox->setMaximumWidth(9*ww);
+  _serialStopBitsComboBox->setMaximumWidth(5*ww);
+  _serialLatLineEdit->setMaximumWidth(9*ww);
+  _serialLonLineEdit->setMaximumWidth(9*ww);
+  _serialFormatLineEdit->setMaximumWidth(9*ww);
+
+  // WhatsThis
+  // ---------
+  _serialMountpointLineEdit->setWhatsThis(tr("<p>BNC allows to retrieve streams via serial port without using the NTRIP transport protocol.</p><p>Specify a mountpoint. Recommended is a 4-character station ID.<br>Example: FFMJ</p>"));
+  _serialPortLineEdit->setWhatsThis(tr("<p>Enter the serial 'Port name' selected for communication with your serial connected device. Valid port names are</p><pre>Windows:       COM1, COM2<br>Linux:         /dev/ttyS0, /dev/ttyS1<br>FreeBSD:       /dev/ttyd0, /dev/ttyd1<br>Digital Unix:  /dev/tty01, /dev/tty02<br>HP-UX:         /dev/tty1p0, /dev/tty2p0<br>SGI/IRIX:      /dev/ttyf1, /dev/ttyf2<br>SunOS/Solaris: /dev/ttya, /dev/ttyb</pre><p>Note that you must plug a serial cable in the port defined here before you start BNC.</p>"));
+  _serialFormatLineEdit->setWhatsThis(tr("<p>Specify the stream format.</p><p>Available options are 'RTCM_2', 'RTCM_3', and 'ZERO'.</p>"));
+  _serialBaudRateComboBox->setWhatsThis(tr("<p>Select a 'Baud rate' for the serial input link.</p><p>Note that your selection must equal the baud rate configured to the serial connected device. Note further that using a high baud rate is recommended.</p>"));
+  _serialFlowControlComboBox->setWhatsThis(tr("<p>Select a 'Flow control' for the serial input link.</p><p>Note that your selection must equal the flow control configured to the serial connected device. Select 'OFF' if you don't know better.</p>"));
+  _serialDataBitsComboBox->setWhatsThis(tr("<p>Select the number of 'Data bits' for the serial input link.</p><p>Note that your selection must equal the number of data bits configured to the serial connected device. Note further that often 8 data bits are used.</p>"));
+  _serialParityComboBox->setWhatsThis(tr("<p>Select the 'Parity' for the serial input link.</p><p>Note that your selection must equal the parity selection configured to the serial connected device. Note further that parity is often set to 'NONE'.</p>"));
+  _serialStopBitsComboBox->setWhatsThis(tr("<p>Select the number of 'Stop bits' for the serial input link.</p><p>Note that your selection must equal the number of stop bits configured to the serial connected device. Note further that often 1 stop bit is used.</p>"));
+  _serialLatLineEdit->setWhatsThis(tr("<p>Enter the approximate latitude of the stream providing receiver in degrees.<p></p>Example: 45.32</p>"));
+  _serialLonLineEdit->setWhatsThis(tr("<p>Enter the approximate latitude of the stream providing receiver in degrees.<p></p>Example: 45.32</p>"));
+
+  editLayout->addWidget(new QLabel(tr("Mountpoint")),  0, 0, Qt::AlignRight);
+  editLayout->addWidget(_serialMountpointLineEdit,     0, 1);
+  editLayout->addWidget(new QLabel(tr("Format")),      0, 2, Qt::AlignRight);
+  editLayout->addWidget(_serialFormatLineEdit,         0, 3);
+  editLayout->addWidget(new QLabel(tr("Latitude")),    1, 0, Qt::AlignRight);
+  editLayout->addWidget(_serialLatLineEdit,            1, 1);
+  editLayout->addWidget(new QLabel(tr("Longitude")),   1, 2, Qt::AlignRight);
+  editLayout->addWidget(_serialLonLineEdit,            1, 3);
+  editLayout->addWidget(new QLabel(tr("Port name")),   2, 0, Qt::AlignRight);
+  editLayout->addWidget(_serialPortLineEdit,           2, 1);
+  editLayout->addWidget(new QLabel(tr("Baud rate")),   2, 2, Qt::AlignRight);
+  editLayout->addWidget(_serialBaudRateComboBox,       2, 3);
+  editLayout->addWidget(new QLabel(tr("Data bits")),   3, 0, Qt::AlignRight);
+  editLayout->addWidget(_serialDataBitsComboBox,       3, 1);
+  editLayout->addWidget(new QLabel(tr("Parity")),      3, 2, Qt::AlignRight);
+  editLayout->addWidget(_serialParityComboBox,         3, 3);
+  editLayout->addWidget(new QLabel(tr("Stop bits")),   4, 0, Qt::AlignRight);
+  editLayout->addWidget(_serialStopBitsComboBox,       4, 1);
+  editLayout->addWidget(new QLabel(tr("Flow control")),4, 2, Qt::AlignRight);
+  editLayout->addWidget(_serialFlowControlComboBox,    4, 3);
+
+  mainLayout->addLayout(editLayout);
+
+  _buttonWhatsThis = new QPushButton(tr("Help=Shift+F1"), this);
+  connect(_buttonWhatsThis, SIGNAL(clicked()), this, SLOT(slotWhatsThis()));
+ 
+  _buttonCancel = new QPushButton(tr("Cancel"), this);
+  connect(_buttonCancel, SIGNAL(clicked()), this, SLOT(reject()));
+
+  _buttonOK = new QPushButton(tr("OK"), this);
+  connect(_buttonOK, SIGNAL(clicked()), this, SLOT(accept()));
+
+  _buttonOK->setDefault(true);
+
+  QHBoxLayout* buttonLayout = new QHBoxLayout;
+
+  buttonLayout->addWidget(_buttonWhatsThis);
+  buttonLayout->addStretch(1);
+  buttonLayout->addWidget(_buttonCancel);
+  buttonLayout->addWidget(_buttonOK);
+
+  mainLayout->addLayout(buttonLayout);
+}
+
+// Destructor
+////////////////////////////////////////////////////////////////////////////
+bncSerialPort::~bncSerialPort() {
+  delete _buttonCancel;
+  delete _buttonOK;
+  delete _buttonWhatsThis;
+}
+
+// Accept slot
+////////////////////////////////////////////////////////////////////////////
+void bncSerialPort::accept() {
+
+  QStringList* mountPoints = new QStringList;
+
+  QString _serialBaudRate    = _serialBaudRateComboBox->currentText(); 
+  QString _serialFlowControl = _serialFlowControlComboBox->currentText(); 
+  QString _serialDataBits    = _serialDataBitsComboBox->currentText(); 
+  QString _serialParity      = _serialParityComboBox->currentText(); 
+  QString _serialStopBits    = _serialStopBitsComboBox->currentText(); 
+
+  if ( !_serialMountpointLineEdit->text().isEmpty() &&
+       !_serialPortLineEdit->text().isEmpty() &&
+       !_serialFormatLineEdit->text().isEmpty() &&
+       !_serialLatLineEdit->text().isEmpty() &&
+       !_serialLonLineEdit->text().isEmpty() ) {
+    mountPoints->push_back("//" 
+      + _serialPortLineEdit->text().replace("/","-").replace(QRegExp("^[-]"), "") + "-"
+      + _serialDataBits + "-"
+      + _serialParity + "-"
+      + _serialStopBits + "-"
+      + _serialFlowControl + "-"
+      + _serialBaudRate + "/"
+      + _serialMountpointLineEdit->text() + " "
+      + _serialFormatLineEdit->text() + " "
+      + _serialLatLineEdit->text() + " "
+      + _serialLonLineEdit->text() + " "
+      + "no S");
+  } else {
+   QMessageBox::warning(this, tr("Warning"),
+                               tr("Incomplete settings"),
+                               QMessageBox::Ok);
+  }
+
+  emit newMountPoints(mountPoints);
+
+  QDialog::accept();
+}
+
+// Whats This Help
+void bncSerialPort::slotWhatsThis() {
+QWhatsThis::enterWhatsThisMode();
+}
+
Index: branches/BNC_LM/bncserialport.h
===================================================================
--- branches/BNC_LM/bncserialport.h	(revision 3570)
+++ branches/BNC_LM/bncserialport.h	(revision 3570)
@@ -0,0 +1,65 @@
+// Part of BNC, a utility for retrieving decoding and
+// converting GNSS data streams from NTRIP broadcasters.
+//
+// Copyright (C) 2009
+// German Federal Agency for Cartography and Geodesy (BKG)
+// http://www.bkg.bund.de
+// Czech Technical University Prague, Department of Geodesy
+// http://www.fsv.cvut.cz
+//
+// Email: euref-ip@bkg.bund.de
+//
+// This program is free software; you can redistribute it and/or
+// modify it under the terms of the GNU General Public License
+// as published by the Free Software Foundation, version 2.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+#ifndef BNCSERIALPORT_H
+#define BNCSERIALPORT_H
+
+#include <QtCore>
+#include <QtGui>
+#include <QWhatsThis>
+
+class bncSerialPort : public QDialog {
+  Q_OBJECT
+
+  public:
+    bncSerialPort(QWidget* parent);
+    ~bncSerialPort();
+    QString*   _serialPort1;
+
+  signals:
+    void newMountPoints(QStringList* mountPoints);
+
+  private slots:
+    virtual void accept();
+    void slotWhatsThis();
+
+  private:
+    QLineEdit*   _serialMountpointLineEdit;
+    QLineEdit*   _serialPortLineEdit;
+    QLineEdit*   _serialFormatLineEdit;
+    QLineEdit*   _serialLatLineEdit;
+    QLineEdit*   _serialLonLineEdit;
+    QComboBox*   _serialBaudRateComboBox;
+    QComboBox*   _serialFlowControlComboBox;
+    QComboBox*   _serialDataBitsComboBox;
+    QComboBox*   _serialParityComboBox;
+    QComboBox*   _serialStopBitsComboBox;
+
+    QPushButton* _buttonGet;
+    QPushButton* _buttonCancel;
+    QPushButton* _buttonOK;
+    QPushButton* _buttonWhatsThis;
+};
+
+#endif
Index: branches/BNC_LM/bncsettings.cpp
===================================================================
--- branches/BNC_LM/bncsettings.cpp	(revision 3570)
+++ branches/BNC_LM/bncsettings.cpp	(revision 3570)
@@ -0,0 +1,125 @@
+/* -------------------------------------------------------------------------
+ * BKG NTRIP Client
+ * -------------------------------------------------------------------------
+ *
+ * Class:      bncSettings
+ *
+ * Purpose:    Subclasses the QSettings
+ *
+ * Author:     L. Mervart
+ *
+ * Created:    25-Jan-2009
+ *
+ * Changes:    
+ *
+ * -----------------------------------------------------------------------*/
+
+#include <QCoreApplication>
+#include <QStringList>
+
+#include "bncsettings.h"
+#include "bncapp.h"
+
+// Constructor
+////////////////////////////////////////////////////////////////////////////
+bncSettings::bncSettings(bool noInit) : 
+  QSettings(((bncApp*) qApp)->confFileName(), QSettings::IniFormat) {
+
+  if (! noInit && allKeys().size() == 0) {
+    setValue("adviseFail",       "15");
+    setValue("adviseReco",       "5");
+    setValue("adviseScript",     "");
+    setValue("autoStart",        "0");
+    setValue("binSampl",         "0");
+    setValue("casterUrlList", (QStringList() 
+                               << "http://user:pass@www.euref-ip.net:2101" 
+                               << "http://user:pass@www.igs-ip.net:2101" 
+                               << "http://user:pass@products.igs-ip.net:2101"));
+    setValue("corrIntr",         "1 day");
+    setValue("corrPath",         "");
+    setValue("corrPort",         "");
+    setValue("corrTime",         "5");
+    setValue("ephIntr",          "1 day");
+    setValue("ephPath",          "");
+    setValue("ephV3",            "0");
+    setValue("logFile",          "");
+    setValue("rawOutFile",       "");
+    setValue("miscMount",        "");  
+    setValue("mountPoints",      "");
+    setValue("ntripVersion",     "1");
+    setValue("obsRate",          "");
+    setValue("onTheFlyInterval", "1 day");
+    setValue("outEphPort",       "");
+    setValue("outFile",          "");
+    setValue("outPort",          "");
+    setValue("outUPort",         "");
+    setValue("perfIntr",         "");
+    setValue("proxyHost",        "");
+    setValue("proxyPort",        "");
+    setValue("sslCaCertPath",    "");
+    setValue("ignoreSslErrors",  "0");
+    setValue("rnxAppend",        "0");
+    setValue("rnxIntr",          "1 day");
+    setValue("rnxPath",          "");
+    setValue("rnxSampl",         "0");
+    setValue("rnxScript",        "");
+    setValue("rnxSkel",          "SKL");
+    setValue("rnxV3",            "0");
+    setValue("scanRTCM",         "0");
+    setValue("serialAutoNMEA",   "Auto");
+    setValue("serialBaudRate",   "9600");
+    setValue("serialDataBits",   "8");
+    setValue("serialFileNMEA",   "");
+    setValue("serialHeightNMEA", "");
+    setValue("serialMountPoint", "");
+    setValue("serialParity",     "NONE");
+    setValue("serialPortName",   "");
+    setValue("serialStopBits",   "1");
+    setValue("serialFlowControl","OFF");
+    setValue("startTab",         "0");
+    setValue("statusTab",        "0");
+    setValue("waitTime",         "5");
+    setValue("pppMount",         "");
+    setValue("pppCorrMount",     "");
+    setValue("pppSPP",           "PPP");
+    setValue("pppSigmaCode",     "10.0");
+    setValue("pppSigmaPhase",    "0.02");
+    setValue("pppQuickStart",    "");
+    setValue("pppMaxSolGap",     "");
+    setValue("pppSigCrd0",       "100.0");
+    setValue("pppSigCrdP",       "100.0");
+    setValue("pppSigTrp0",       "0.1");
+    setValue("pppSigTrpP",       "5e-6");
+    setValue("pppAverage",       "");
+    setValue("pppUsePhase",      "");
+    setValue("pppEstTropo",      "");
+    setValue("pppGLONASS",       "");
+    setValue("pppGalileo",       "");
+    setValue("pppPlotCoordinates", "");
+    setValue("pppRefCrdX",       "");
+    setValue("pppRefCrdY",       "");
+    setValue("pppRefCrdZ",       "");
+    setValue("pppRefdN",       "");
+    setValue("pppRefdE",       "");
+    setValue("pppRefdU",       "");
+    setValue("pppAntenna",       "");
+    setValue("pppAntex",         "");
+    setValue("pppApplySatAnt",   "0");
+    setValue("pppSync",          "");
+    setValue("nmeaFile",         "");
+    setValue("nmeaPort",         "");
+    setValue("combineStreams",   "");
+    setValue("uploadMountpointsOut","");
+    setValue("uploadIntr",          "1 day");
+    setValue("uploadSampl",         "0");
+    setValue("uploadEphHost",       "");
+    setValue("uploadEphPort",       "");
+    setValue("uploadEphPassword",   "");
+    setValue("uploadEphMountpoint", "");
+    setValue("uploadEphSample",     "5");
+    setValue("cmbMaxres",           "");
+    sync();
+  }
+}
+
+
Index: branches/BNC_LM/bncsettings.h
===================================================================
--- branches/BNC_LM/bncsettings.h	(revision 3570)
+++ branches/BNC_LM/bncsettings.h	(revision 3570)
@@ -0,0 +1,13 @@
+#ifndef BNCSETTINGS_H
+#define BNCSETTINGS_H
+
+#include <QSettings>
+
+class bncSettings : public QSettings {
+ public:
+  bncSettings(bool noInit = false);
+  virtual ~bncSettings() {};
+ private:
+};
+
+#endif
Index: branches/BNC_LM/bncsp3.cpp
===================================================================
--- branches/BNC_LM/bncsp3.cpp	(revision 3570)
+++ branches/BNC_LM/bncsp3.cpp	(revision 3570)
@@ -0,0 +1,123 @@
+
+/* -------------------------------------------------------------------------
+ * BKG NTRIP Server
+ * -------------------------------------------------------------------------
+ *
+ * Class:      bncSP3
+ *
+ * Purpose:    writes SP3 files
+ *
+ * Author:     L. Mervart
+ *
+ * Created:    25-Apr-2008
+ *
+ * Changes:    
+ *
+ * -----------------------------------------------------------------------*/
+
+#include <iomanip>
+#include <math.h>
+
+#include "bncsp3.h"
+#include "bncutils.h"
+
+using namespace std;
+
+// Constructor
+////////////////////////////////////////////////////////////////////////////
+bncSP3::bncSP3(const QString& sklFileName, const QString& intr, int sampl) 
+  : bncoutf(sklFileName, intr, sampl) {
+
+  _lastGPSweek  = 0;
+  _lastGPSweeks = 0.0;
+}
+
+// Destructor
+////////////////////////////////////////////////////////////////////////////
+bncSP3::~bncSP3() {
+}
+
+// Write One Epoch
+////////////////////////////////////////////////////////////////////////////
+t_irc bncSP3::write(int GPSweek, double GPSweeks, const QString& prn, 
+                    const ColumnVector& xx) {
+
+  if (reopen(GPSweek, GPSweeks) == success) {
+
+    if (_lastGPSweek != GPSweek || _lastGPSweeks != GPSweeks) {
+      _lastGPSweek  = GPSweek;
+      _lastGPSweeks = GPSweeks;
+    
+      QDateTime datTim = dateAndTimeFromGPSweek(GPSweek, GPSweeks);
+      double sec = fmod(GPSweeks, 60.0);
+    
+      _out << datTim.toString("*  yyyy MM dd hh mm").toAscii().data()
+           << setw(12) << setprecision(8) << sec << endl; 
+    }
+    _out << "P" << prn.toAscii().data()
+         << setw(14) << setprecision(6) << xx(1) / 1000.0
+         << setw(14) << setprecision(6) << xx(2) / 1000.0
+         << setw(14) << setprecision(6) << xx(3) / 1000.0
+         << setw(14) << setprecision(6) << xx(4) * 1e6 << endl;
+    
+    return success;
+  }
+  else {
+    return failure;
+  }
+}
+
+// Close File (write last line)
+////////////////////////////////////////////////////////////////////////////
+void bncSP3::closeFile() {
+  _out << "EOF" << endl;
+  bncoutf::closeFile();
+}
+
+// Write Header
+////////////////////////////////////////////////////////////////////////////
+void bncSP3::writeHeader(const QDateTime& datTim) {
+
+  int    GPSWeek;
+  double GPSWeeks;
+  GPSweekFromDateAndTime(datTim, GPSWeek, GPSWeeks);
+
+  double sec = fmod(GPSWeeks, 60.0);
+
+  int    mjd;
+  double dayfrac;
+  mjdFromDateAndTime(datTim, mjd, dayfrac);
+
+  _out << "#aP" << datTim.toString("yyyy MM dd hh mm").toAscii().data() 
+       << setw(12) << setprecision(8) << sec
+       << "      96 ORBIT IGS05 HLM  IGS" << endl;
+
+  _out << "## " 
+       << setw(4)  << GPSWeek
+       << setw(16) << setprecision(8) << GPSWeeks
+       << setw(15) << setprecision(8) << double(_sampl)
+       << setw(6)  << mjd
+       << setw(16) << setprecision(13) << dayfrac << endl;
+
+  _out << "+   32   G01G02G03G04G05G06G07G08G09G10G11G12G13G14G15G16G17\n"
+       << "+        G18G19G20G21G22G23G24G25G26G27G28G29G30G31G32  0  0\n"
+       << "+          0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0\n"
+       << "+          0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0\n"
+       << "+          0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0\n"
+       << "++         0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0\n"
+       << "++         0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0\n"
+       << "++         0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0\n"
+       << "++         0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0\n"
+       << "++         0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0\n"
+       << "%c cc cc ccc ccc cccc cccc cccc cccc ccccc ccccc ccccc ccccc\n"
+       << "%c cc cc ccc ccc cccc cccc cccc cccc ccccc ccccc ccccc ccccc\n"
+       << "%f  0.0000000  0.000000000  0.00000000000  0.000000000000000\n"
+       << "%f  0.0000000  0.000000000  0.00000000000  0.000000000000000\n"
+       << "%i    0    0    0    0      0      0      0      0         0\n"
+       << "%i    0    0    0    0      0      0      0      0         0\n"
+       << "/*                                                          \n"
+       << "/*                                                          \n"
+       << "/*                                                          \n"
+       << "/*                                                          \n";
+}
+
Index: branches/BNC_LM/bncsp3.h
===================================================================
--- branches/BNC_LM/bncsp3.h	(revision 3570)
+++ branches/BNC_LM/bncsp3.h	(revision 3570)
@@ -0,0 +1,24 @@
+#ifndef BNCSP3_H
+#define BNCSP3_H
+
+#include <fstream>
+#include <newmat.h>
+#include <QtCore>
+
+#include "bncoutf.h"
+
+class bncSP3 : public bncoutf {
+ public:
+  bncSP3(const QString& sklFileName, const QString& intr, int sampl);
+  virtual ~bncSP3();
+  t_irc write(int GPSweek, double GPSweeks, const QString& prn, 
+              const ColumnVector& xx);
+
+ private:
+  virtual void writeHeader(const QDateTime& datTim);
+  virtual void closeFile();
+  int    _lastGPSweek;
+  double _lastGPSweeks;
+};
+
+#endif
Index: branches/BNC_LM/bncsslconfig.cpp
===================================================================
--- branches/BNC_LM/bncsslconfig.cpp	(revision 3570)
+++ branches/BNC_LM/bncsslconfig.cpp	(revision 3570)
@@ -0,0 +1,63 @@
+/* -------------------------------------------------------------------------
+ * BKG NTRIP Client
+ * -------------------------------------------------------------------------
+ *
+ * Class:      bncSslConfig
+ *
+ * Purpose:    Singleton Class that inherits QSslConfiguration class
+ *
+ * Author:     L. Mervart
+ *
+ * Created:    22-Aug-2011
+ *
+ * Changes:    
+ *
+ * -----------------------------------------------------------------------*/
+
+#include <iostream>
+
+#include "bncsslconfig.h"
+#include "bncsettings.h"
+
+// Constructor
+////////////////////////////////////////////////////////////////////////////
+bncSslConfig::bncSslConfig() : 
+  QSslConfiguration(QSslConfiguration::defaultConfiguration()) 
+{
+  
+  bncSettings settings;
+  QString dirName = settings.value("sslCaCertPath").toString();
+  if (dirName.isEmpty()) {
+    dirName =  defaultPath();
+  }
+
+  QList<QSslCertificate> caCerts = this->caCertificates();
+
+  // Bug in Qt: the wildcard does not work here:
+  // -------------------------------------------
+  // caCerts += QSslCertificate::fromPath(dirName + QDir::separator() + "*crt",
+  //                                      QSsl::Pem, QRegExp::Wildcard);
+  QDir dir(dirName);
+  QStringList nameFilters; nameFilters << "*.crt";
+  QStringList fileNames = dir.entryList(nameFilters, QDir::Files);
+  QStringListIterator it(fileNames);
+  while (it.hasNext()) {
+    QString fileName = it.next();
+    caCerts += QSslCertificate::fromPath(dirName+QDir::separator()+fileName);
+  }
+ 
+  this->setCaCertificates(caCerts);
+}
+
+// Destructor
+////////////////////////////////////////////////////////////////////////////
+bncSslConfig::~bncSslConfig() {
+}
+
+// Destructor
+////////////////////////////////////////////////////////////////////////////
+QString bncSslConfig::defaultPath() {
+  return QDir::homePath() + QDir::separator() 
+         + ".config" + QDir::separator() + qApp->organizationName();
+}
+
Index: branches/BNC_LM/bncsslconfig.h
===================================================================
--- branches/BNC_LM/bncsslconfig.h	(revision 3570)
+++ branches/BNC_LM/bncsslconfig.h	(revision 3570)
@@ -0,0 +1,16 @@
+#ifndef BNCSSLCONFIG_H
+#define BNCSSLCONFIG_H
+
+#include <QtNetwork>
+
+// Singleton Class
+// ---------------
+class bncSslConfig : public QSslConfiguration {
+ public:
+  bncSslConfig();
+  ~bncSslConfig();
+  static QString defaultPath();
+ private:
+};
+
+#endif
Index: branches/BNC_LM/bnctabledlg.cpp
===================================================================
--- branches/BNC_LM/bnctabledlg.cpp	(revision 3570)
+++ branches/BNC_LM/bnctabledlg.cpp	(revision 3570)
@@ -0,0 +1,688 @@
+// Part of BNC, a utility for retrieving decoding and
+// converting GNSS data streams from NTRIP broadcasters.
+//
+// Copyright (C) 2007
+// German Federal Agency for Cartography and Geodesy (BKG)
+// http://www.bkg.bund.de
+// Czech Technical University Prague, Department of Geodesy
+// http://www.fsv.cvut.cz
+//
+// Email: euref-ip@bkg.bund.de
+//
+// This program is free software; you can redistribute it and/or
+// modify it under the terms of the GNU General Public License
+// as published by the Free Software Foundation, version 2.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+/* -------------------------------------------------------------------------
+ * BKG NTRIP Client
+ * -------------------------------------------------------------------------
+ *
+ * Class:      bncTableDlg
+ *
+ * Purpose:    Displays the source table, allows mountpoints selection
+ *
+ * Author:     L. Mervart
+ *
+ * Created:    24-Dec-2005
+ *
+ * Changes:    
+ *
+ * -----------------------------------------------------------------------*/
+
+#include <iostream>
+
+#include "bnctabledlg.h"
+#include "bncgetthread.h"
+#include "bncnetqueryv1.h"
+#include "bncnetqueryv2.h"
+#include "bncsettings.h"
+#include "bncmap.h"
+
+using namespace std;
+
+// Constructor
+////////////////////////////////////////////////////////////////////////////
+bncTableDlg::bncTableDlg(QWidget* parent) : QDialog(parent) {
+
+  setMinimumSize(600,400);
+  setWindowTitle(tr("Add Streams from Caster"));
+
+  QVBoxLayout* mainLayout = new QVBoxLayout(this);
+
+  int ww = QFontMetrics(font()).width('w');
+
+  _casterPortLineEdit = new QLineEdit();
+  _casterPortLineEdit->setMaximumWidth(9*ww);
+
+  _casterUserLineEdit = new QLineEdit();
+  _casterUserLineEdit->setMaximumWidth(9*ww);
+
+  _casterPasswordLineEdit = new QLineEdit();
+  _casterPasswordLineEdit->setMaximumWidth(9*ww);
+  _casterPasswordLineEdit->setEchoMode(QLineEdit::PasswordEchoOnEdit);
+
+  _casterHostComboBox = new QComboBox();
+  _casterHostComboBox->setMaxCount(10);
+  _casterHostComboBox->setDuplicatesEnabled(false);
+  _casterHostComboBox->setEditable(true);
+  _casterHostComboBox->setMinimumWidth(20*ww);
+  _casterHostComboBox->setMaximumWidth(20*ww);
+  connect(_casterHostComboBox, SIGNAL(currentIndexChanged(const QString&)),
+          this, SLOT(slotCasterHostChanged(const QString&)));
+  bncSettings settings;
+  settings.remove("casterHostList");
+  settings.remove("casterHost");
+  settings.remove("casterPort");
+  settings.remove("casterUser");
+  settings.remove("casterPassword");
+  QStringList casterUrlList = settings.value("casterUrlList").toStringList();
+  for (int ii = 0; ii < casterUrlList.count(); ii++) {
+    QUrl url(casterUrlList[ii]);
+    _casterHostComboBox->addItem(url.host());
+  }
+
+  _ntripVersionComboBox = new QComboBox();
+  _ntripVersionComboBox->addItems(QString("1,2,2s,R,U").split(","));
+  int kk = _ntripVersionComboBox->findText(settings.value("ntripVersion").toString());
+  if (kk != -1) {
+    _ntripVersionComboBox->setCurrentIndex(kk);
+  }
+  _ntripVersionComboBox->setMaximumWidth(5*ww);
+
+  _buttonCasterTable = new QPushButton(tr("Show"), this);
+  connect(_buttonCasterTable, SIGNAL(clicked()), this, SLOT(slotCasterTable()));
+  _buttonCasterTable->setMaximumWidth(5*ww);
+
+  // WhatsThis
+  // ---------
+  _casterUserLineEdit->setWhatsThis(tr("<p>Access to some streams on NTRIP broadcasters may be restricted. You'll need to enter a valid 'User ID' and 'Password' for access to these protected streams.</p><p>Accounts are usually provided per NTRIP broadcaster through a registration process. Register through <u>http://igs.bkg.bund.de/index_ntrip_reg.htm</u> for access to protected streams on <u>www.euref-ip.net</u> and <u>www.igs-ip.net</u>.</p>"));
+  _casterHostComboBox->setWhatsThis(tr("<p>Enter the NTRIP broadcaster hostname or IP number.</p><p>Note that EUREF and IGS operate NTRIP broadcasters at <u>http://www.euref-ip.net/home</u> and <u>http://www.igs-ip.net/home</u>.</p>"));
+  _casterPortLineEdit->setWhatsThis(tr("Enter the NTRIP broadcaster port number."));
+  _casterPasswordLineEdit->setWhatsThis(tr("Access to some streams on NTRIP broadcasters may be restricted. You'll need to enter a valid 'Password' for access to these protected streams."));
+
+  QGridLayout* editLayout = new QGridLayout;
+  editLayout->addWidget(new QLabel(tr("Caster host")),    0, 0);
+  editLayout->addWidget(_casterHostComboBox,              0, 1);
+  editLayout->addWidget(new QLabel(tr("  Caster port")),  0, 2, Qt::AlignRight);
+  editLayout->addWidget(_casterPortLineEdit,              0, 3);
+  editLayout->addWidget(new QLabel(tr("Casters table")),  0, 4, Qt::AlignRight);
+  editLayout->addWidget(_buttonCasterTable,               0, 5);
+  editLayout->addWidget(new QLabel(tr("User")),           1, 0, Qt::AlignRight);
+  editLayout->addWidget(_casterUserLineEdit,              1, 1);
+  editLayout->addWidget(new QLabel(tr("Password")),       1, 2, Qt::AlignRight);
+  editLayout->addWidget(_casterPasswordLineEdit,          1, 3);
+  editLayout->addWidget(new QLabel(tr("  NTRIP Version")),1, 4, Qt::AlignRight);
+  editLayout->addWidget(_ntripVersionComboBox,            1, 5);
+
+  mainLayout->addLayout(editLayout);
+
+  _buttonCasterTable->setWhatsThis(tr("<p>Hit 'Show' for a table of known NTRIP broadcaster installations as maintained at <u>www.rtcm-ntrip.org/home.</u></p><p>A window opens which allows to select a broadcaster for stream retrieval.</p>"));
+  _ntripVersionComboBox->setWhatsThis(tr("<p>Select the NTRIP transport protocol version you want to use. Implemented options are:<br>&nbsp; 1:&nbsp; NTRIP version 1, TCP/IP<br>&nbsp; 2:&nbsp; NTRIP version 2, TCP/IP mode<br>&nbsp; R:&nbsp; NTRIP Version 2, RTSP/RTP mode<br>&nbsp; U:&nbsp; NTRIP Version 2, UDP mode<br>Select option '1' if you are not sure whether the NTRIP broadcaster supports NTRIP version 2.</p><p>Note that RTSP/RTP (option 'R') and UDP (option 'U') are not accepted by proxies and sometimes not supported by mobile Internet Service Providers.</p>"));
+
+  _table = new QTableWidget(this);
+  _table->setWhatsThis(tr("<p>Use the 'Get Table' button to download the sourcetable from the selected NTRIP broadcaster. Select the desired streams line by line, using +Shift and +Ctrl when necessary. Hit 'OK' to return to the main window.</p><p>Pay attention to data field 'format'. Keep in mind that BNC can only decode and convert streams that come in RTCM Version 2.x, or RTCM Version 3.x format. See data field 'format-details' for available message types and their repetition rates in brackets.</p><p>The content of data field 'nmea' tells you whether a stream comes from a virtual reference station (VRS).</p>"));
+  connect(_table, SIGNAL(itemSelectionChanged()),
+          this, SLOT(slotSelectionChanged()));
+  mainLayout->addWidget(_table);
+
+  _buttonWhatsThis = new QPushButton(tr("Help=Shift+F1"), this);
+  connect(_buttonWhatsThis, SIGNAL(clicked()), this, SLOT(slotWhatsThis()));
+
+  _buttonGet = new QPushButton(tr("Get table"), this);
+  _buttonGet->setDefault(true);
+  connect(_buttonGet, SIGNAL(clicked()), this, SLOT(slotGetTable()));
+ 
+  _buttonMap = new QPushButton(tr("Map"), this);
+  _buttonMap->setEnabled(false);
+  connect(_buttonMap, SIGNAL(clicked()), this, SLOT(slotShowMap()));
+ 
+  _buttonClose = new QPushButton(tr("Close"), this);
+  connect(_buttonClose, SIGNAL(clicked()), this, SLOT(close()));
+
+  _buttonSelect = new QPushButton(tr("Select"), this);
+  connect(_buttonSelect, SIGNAL(clicked()), this, SLOT(select()));
+
+  QHBoxLayout* buttonLayout = new QHBoxLayout;
+  buttonLayout->addWidget(_buttonWhatsThis);
+  buttonLayout->addStretch(1);
+  buttonLayout->addWidget(_buttonMap);
+  buttonLayout->addWidget(_buttonGet);
+  buttonLayout->addWidget(_buttonSelect);
+  buttonLayout->addWidget(_buttonClose);
+
+  mainLayout->addLayout(buttonLayout);
+}
+
+// Destructor
+////////////////////////////////////////////////////////////////////////////
+bncTableDlg::~bncTableDlg() {
+  delete _casterHostComboBox;
+  delete _casterPortLineEdit;
+  delete _casterUserLineEdit;
+  delete _casterPasswordLineEdit;
+  bncSettings settings;
+  settings.setValue("ntripVersion", _ntripVersionComboBox->currentText());
+  settings.sync();
+  delete _ntripVersionComboBox;
+  delete _buttonGet;
+  delete _buttonClose;
+  delete _buttonSelect;
+  delete _buttonWhatsThis;
+  delete _buttonCasterTable;
+  delete _table;
+}
+
+// Read full caster table (static)
+////////////////////////////////////////////////////////////////////////////
+t_irc bncTableDlg::getFullTable(const QString& ntripVersion, 
+                                const QString& casterHost, 
+                                int casterPort, QStringList& allLines, 
+                                bool alwaysRead) {
+
+  static QMutex mutex;
+  static QMap<QString, QStringList> allTables;
+
+  QMutexLocker locker(&mutex);
+
+  if (!alwaysRead && allTables.find(casterHost) != allTables.end()) {
+    allLines = allTables.find(casterHost).value();
+    return success;
+  }
+
+  allLines.clear();
+
+  bncNetQuery* query = 0;
+  if      (ntripVersion == "2") {
+    query = new bncNetQueryV2(false);
+  }
+  else if (ntripVersion == "2s") {
+    query = new bncNetQueryV2(true);
+  }
+  else {
+    query = new bncNetQueryV1();
+  }
+
+  QUrl url;
+  url.setHost(casterHost);
+  url.setPort(casterPort);
+  url.setPath("/");
+  if (ntripVersion == "2s") {
+    url.setScheme("https");
+  }
+  else {
+    url.setScheme("http");
+  }
+
+  QByteArray outData;
+  query->waitForRequestResult(url, outData);
+  if (query->status() == bncNetQuery::finished) {
+    QTextStream in(outData);
+    QString line = in.readLine();
+    while ( !line.isNull() ) {
+      allLines.append(line);
+      line = in.readLine();
+    } 
+    allTables.insert(casterHost, allLines);
+    delete query;
+    return success;
+  }
+  else {
+    delete query;
+    return failure;
+  }
+}
+
+// Read Table from Caster
+////////////////////////////////////////////////////////////////////////////
+void bncTableDlg::slotGetTable() {
+
+  _buttonGet->setEnabled(false);
+  _buttonMap->setEnabled(true);
+  _buttonCasterTable->setEnabled(false); 
+
+  if ( getFullTable(_ntripVersionComboBox->currentText(),
+                    _casterHostComboBox->currentText(),
+                    _casterPortLineEdit->text().toInt(),
+                    _allLines, true) != success ) {
+    QMessageBox::warning(0, "BNC", "Cannot retrieve table of data");
+    _buttonGet->setEnabled(true);
+    return;
+  }
+  
+  static const QStringList labels = QString("mountpoint,identifier,format,"
+    "format-details,carrier,system,network,country,lat,long,"
+    "nmea,solution,generator,compress.,auth.,fee,bitrate,"
+    "misc").split(",");
+
+  QStringList lines;
+  QStringListIterator it(_allLines);
+  while (it.hasNext()) {
+    QString line = it.next();
+    if (line.indexOf("STR") == 0) {
+      QStringList hlp = line.split(";");
+      if (hlp.size() > labels.size()) {
+        lines.push_back(line);
+      }
+    }
+  }
+
+  if (lines.size() > 0) {
+    _table->setSelectionMode(QAbstractItemView::ExtendedSelection);
+    _table->setSelectionBehavior(QAbstractItemView::SelectRows);
+    _table->setColumnCount(labels.size());
+    _table->setRowCount(lines.size());
+    for (int nRow = 0; nRow < lines.size(); nRow++) {
+      QStringList columns = lines[nRow].split(";");
+      for (int ic = 1; ic < columns.size(); ic++) {
+        if (ic == 11) { 
+          if (columns[ic] == "0") { 
+            columns[ic] = "no"; 
+          } else { 
+            columns[ic] = "yes"; 
+          }
+        }
+        QTableWidgetItem* item = new QTableWidgetItem(columns[ic]);
+        item->setFlags(item->flags() & ~Qt::ItemIsEditable);
+        _table->setItem(nRow, ic-1, item);
+      }
+    }
+    _table->setHorizontalHeaderLabels(labels);
+    _table->setSortingEnabled(true);
+    int ww = QFontMetrics(this->font()).width('w');
+    _table->horizontalHeader()->resizeSection( 0,10*ww);
+    _table->horizontalHeader()->resizeSection( 1,10*ww);
+    _table->horizontalHeader()->resizeSection( 2, 8*ww);
+    _table->horizontalHeader()->resizeSection( 3,22*ww);
+    _table->horizontalHeader()->resizeSection( 4, 5*ww);
+    _table->horizontalHeader()->resizeSection( 5, 8*ww);
+    _table->horizontalHeader()->resizeSection( 6, 8*ww);
+    _table->horizontalHeader()->resizeSection( 7, 7*ww);
+    _table->horizontalHeader()->resizeSection( 8, 6*ww);
+    _table->horizontalHeader()->resizeSection( 9, 6*ww);
+    _table->horizontalHeader()->resizeSection(10, 6*ww);
+    _table->horizontalHeader()->resizeSection(11, 6*ww);
+    _table->horizontalHeader()->resizeSection(12,15*ww);
+    _table->horizontalHeader()->resizeSection(13, 8*ww);
+    _table->horizontalHeader()->resizeSection(14, 5*ww);
+    _table->horizontalHeader()->resizeSection(15, 5*ww);
+    _table->horizontalHeader()->resizeSection(16, 7*ww);
+    _table->horizontalHeader()->resizeSection(17,15*ww);
+    _table->sortItems(0);
+  }
+}
+
+// Show world map
+////////////////////////////////////////////////////////////////////////////
+void bncTableDlg::slotShowMap() {
+
+  bncMap* winMap = new bncMap(this);
+  winMap->setGeometry( x(), int(y()+height()*1.3), 880, 440 );
+
+  connect(this, SIGNAL(newPoint(QPointF, QString, QPen, double)),
+	  winMap, SLOT(slotNewPoint(QPointF, QString, QPen, double)));
+      
+  connect(this, SIGNAL(fitMap()),
+	  winMap, SLOT(slotFitMap() ));
+   
+  connect(this, SIGNAL(fitFont()),
+	  winMap, SLOT(slotFitFont() ));
+      
+  _buttonMap->setEnabled(false);
+  showSourceTable();
+  winMap->exec();
+  _buttonMap->setEnabled(true);
+
+  disconnect(this, SIGNAL(newPoint(QPointF, QString, QPen, double)),
+	     winMap, SLOT(slotNewPoint(QPointF, QString, QPen, double)));
+   
+  disconnect(this, SIGNAL(fitMap()),
+ 	     winMap, SLOT(slotFitMap() ));
+   
+  disconnect(this, SIGNAL(fitFont()),
+  	     winMap, SLOT(slotFitFont() ));
+      
+  delete winMap;
+}
+
+// Show world map
+////////////////////////////////////////////////////////////////////////////
+void bncTableDlg::showSourceTable() {
+
+  for( int i = 0; i < _allLines.size(); i++ ){
+	
+    if( _allLines.at(i).startsWith("STR") == true ){
+	     
+       QStringList tmp = _allLines.at(i).split(';');
+       if( tmp.size() > 0 ){
+		  
+	 QPointF point;
+    	         point.setY( tmp.at(9).toDouble() );
+                 point.setX( tmp.at(10).toDouble() );
+
+	 QString site = tmp.at(1);
+	         site.resize(4);
+
+         emit newPoint(point, site, QPen(QBrush(QColor(0,0,255,200)), 1.5), 1.5 );
+       }
+     }
+   }
+   emit fitMap();
+}
+
+
+// Select slot
+////////////////////////////////////////////////////////////////////////////
+void bncTableDlg::select() {
+
+  QString ntripVersion = _ntripVersionComboBox->currentText();
+
+  QUrl url;
+  if (ntripVersion == "2s") {
+    url.setScheme("https");
+  }
+  else {
+    url.setScheme("http");
+  }
+  url.setHost(_casterHostComboBox->currentText());
+  url.setPort(_casterPortLineEdit->text().toInt());
+  url.setUserName(QUrl::toPercentEncoding(_casterUserLineEdit->text()));
+  url.setPassword(QUrl::toPercentEncoding(_casterPasswordLineEdit->text()));
+  addUrl(url);
+
+  QStringList* mountPoints = new QStringList;
+  if (_table) {
+    for (int ir = 0; ir < _table->rowCount(); ir++) {
+      QTableWidgetItem* item   = _table->item(ir,0);
+      QString             site = _table->item(ir,0)->text();
+      QString           format = _table->item(ir,2)->text();
+      QString         latitude = _table->item(ir,8)->text();
+      QString        longitude = _table->item(ir,9)->text();
+      QString             nmea = _table->item(ir,10)->text();
+      format.replace(" ", "_");
+      if (_table->isItemSelected(item)) {
+        url.setPath(item->text());
+        mountPoints->push_back(url.toString() + " " + format + " " + latitude
+                        + " " + longitude + " " + nmea + " " + ntripVersion);
+	 
+        site.resize(4);
+	emit newPoint(QPointF(longitude.toDouble(),latitude.toDouble()), site,
+		      QPen(QBrush(QColor(255,0,0,200)), 3.0), 3.0 );
+      }
+    }
+  }
+  emit newMountPoints(mountPoints);
+  emit fitFont();
+}
+
+// User changed the selection of mountPoints
+////////////////////////////////////////////////////////////////////////////
+void bncTableDlg::slotSelectionChanged() {
+  if (_table->selectedItems().isEmpty()) {
+  }
+}
+
+// Whats This Help
+void bncTableDlg::slotWhatsThis() {
+QWhatsThis::enterWhatsThisMode();
+}
+
+// Slot caster table
+////////////////////////////////////////////////////////////////////////////
+void bncTableDlg::slotCasterTable() {
+        
+  _buttonCasterTable->setEnabled(false);
+  _casterHostComboBox->setEnabled(false);
+  _casterPortLineEdit->setEnabled(false);
+  _casterUserLineEdit->setEnabled(false);
+  _casterPasswordLineEdit->setEnabled(false);
+  _ntripVersionComboBox->setEnabled(false);
+  _buttonWhatsThis->setEnabled(false);
+  _buttonGet->setEnabled(false);
+  _buttonClose->setEnabled(false);
+  _buttonSelect->setEnabled(false);
+
+  bncCasterTableDlg* dlg = 
+          new bncCasterTableDlg(_ntripVersionComboBox->currentText(), this);
+  dlg->move(this->pos().x()+50, this->pos().y()+50);
+  connect(dlg, SIGNAL(newCaster(QString, QString)),
+          this, SLOT(slotNewCaster(QString, QString)));
+  dlg->exec();
+  delete dlg;
+
+  _buttonCasterTable->setEnabled(true);
+  _casterHostComboBox->setEnabled(true);
+  _casterPortLineEdit->setEnabled(true);
+  _casterUserLineEdit->setEnabled(true);
+  _casterPasswordLineEdit->setEnabled(true);
+  _ntripVersionComboBox->setEnabled(true);
+  _buttonWhatsThis->setEnabled(true);
+  _buttonGet->setEnabled(true);
+  _buttonClose->setEnabled(true);
+  _buttonSelect->setEnabled(true);
+
+}
+
+// New caster selected
+////////////////////////////////////////////////////////////////////////////
+void bncTableDlg::slotNewCaster(QString newCasterHost, QString newCasterPort) {
+
+  _casterHostComboBox->insertItem(0, newCasterHost);
+  _casterHostComboBox->setCurrentIndex(0);
+  _casterUserLineEdit->setText("");
+  _casterPasswordLineEdit->setText("");
+  _casterPortLineEdit->setText(newCasterPort);
+
+  QString ntripVersion = _ntripVersionComboBox->currentText();
+
+  QUrl url;
+  if (ntripVersion == "2s") {
+    url.setScheme("https");
+  }
+  else {
+    url.setScheme("http");
+  }
+  url.setHost(newCasterHost);
+  url.setPort(newCasterPort.toInt());
+  addUrl(url);
+  
+  _casterHostComboBox->setCurrentIndex(0);
+}
+
+// New caster selected
+////////////////////////////////////////////////////////////////////////////
+void bncTableDlg::addUrl(const QUrl& url) {
+  bncSettings settings;
+  QStringList oldUrlList = settings.value("casterUrlList").toStringList();
+  QStringList newUrlList;
+  newUrlList << url.toString();
+  for (int ii = 0; ii < oldUrlList.count(); ii++) {
+    QUrl oldUrl(oldUrlList[ii]);
+    if (url.host() != oldUrl.host()) {
+      newUrlList << oldUrl.toString();
+    }
+  }
+  settings.setValue("casterUrlList", newUrlList);
+  settings.sync();
+}
+
+// New caster selected in combobox
+////////////////////////////////////////////////////////////////////////////
+void bncTableDlg::slotCasterHostChanged(const QString& newHost) {
+  bncSettings settings;
+  QStringList casterUrlList = settings.value("casterUrlList").toStringList();
+  for (int ii = 0; ii < casterUrlList.count(); ii++) {
+    QUrl url(casterUrlList[ii]);
+    if (url.host() == newHost) {
+      _casterUserLineEdit->setText(
+                QUrl::fromPercentEncoding(url.userName().toAscii()));
+      _casterPasswordLineEdit->setText(
+                QUrl::fromPercentEncoding(url.password().toAscii()));
+      if (url.port() > 0) {
+        _casterPortLineEdit->setText(QString("%1").arg(url.port()));
+      }
+      else {
+        _casterPortLineEdit->setText("");
+      }
+    }
+  }
+}
+
+// Caster table
+////////////////////////////////////////////////////////////////////////////
+bncCasterTableDlg::bncCasterTableDlg(const QString& ntripVersion,
+                                     QWidget* parent) : 
+   QDialog(parent) {
+
+  static const QStringList labels = QString("host,port,identifier,operator,nmea,country,lat,long,link").split(",");
+
+  _casterTable = new QTableWidget(this);
+
+  QUrl url;
+  url.setHost("www.rtcm-ntrip.org");
+  url.setPath("/");
+  if (ntripVersion == "2s") {
+    url.setPort(443);
+    url.setScheme("https");
+  }
+  else {
+    url.setPort(2101);
+    url.setScheme("http");
+  }
+
+  bncNetQuery* query = 0;
+  if (ntripVersion == "2") {
+    query = new bncNetQueryV2(false);
+  }
+  else if (ntripVersion == "2s") {
+    query = new bncNetQueryV2(true);
+  }
+  else {
+    query = new bncNetQueryV1();
+  }
+
+  QByteArray outData;
+  query->waitForRequestResult(url, outData);
+
+  QStringList lines;
+  if (query->status() == bncNetQuery::finished) {
+    QTextStream in(outData);
+    QString line = in.readLine();
+    while ( !line.isNull() ) {
+      line = in.readLine();
+      if (line.indexOf("CAS") == 0) {
+        QStringList hlp = line.split(";");
+        if (hlp.size() > labels.size()) {
+          lines.push_back(line);
+        }
+      }
+    }
+  }
+
+  delete query;
+
+  if (lines.size() > 0) {
+    _casterTable->setSelectionMode(QAbstractItemView::ExtendedSelection);
+    _casterTable->setSelectionBehavior(QAbstractItemView::SelectRows);
+
+    QStringList hlp = lines[0].split(";");
+    _casterTable->setColumnCount(labels.size());
+    _casterTable->setRowCount(lines.size());
+
+    for (int nRow = 0; nRow < lines.size(); nRow++) {
+      QStringList columns = lines[nRow].split(";");
+      for (int ic = 1; ic < columns.size(); ic++) {
+         if (ic == 5) { 
+           if (columns[ic] == "0") { 
+             columns[ic] = "no"; 
+           } else { 
+             columns[ic] = "yes"; 
+           }
+         }
+         QTableWidgetItem* item = new QTableWidgetItem(columns[ic]);
+        item->setFlags(item->flags() & ~Qt::ItemIsEditable);
+        _casterTable->setItem(nRow, ic-1, item);
+      }
+    }
+  } 
+  _casterTable->setHorizontalHeaderLabels(labels);
+  _casterTable->setSortingEnabled(true);
+  _casterTable->sortItems(0);
+   int ww = QFontMetrics(this->font()).width('w');
+  _casterTable->horizontalHeader()->resizeSection(0,15*ww);
+  _casterTable->horizontalHeader()->resizeSection(1, 5*ww);
+  _casterTable->horizontalHeader()->resizeSection(2,15*ww);
+  _casterTable->horizontalHeader()->resizeSection(3,15*ww);
+  _casterTable->horizontalHeader()->resizeSection(4, 5*ww);
+  _casterTable->horizontalHeader()->resizeSection(5, 7*ww);
+  _casterTable->horizontalHeader()->resizeSection(6, 7*ww);
+  _casterTable->horizontalHeader()->resizeSection(7, 7*ww);
+  _casterTable->horizontalHeader()->resizeSection(8,15*ww);
+
+  _closeButton = new QPushButton("Cancel");
+  connect(_closeButton, SIGNAL(clicked()), this, SLOT(close()));
+  _closeButton->setMinimumWidth(8*ww);
+  _closeButton->setMaximumWidth(8*ww);
+
+  _okButton = new QPushButton(tr("OK"), this);
+  connect(_okButton, SIGNAL(clicked()), this, SLOT(slotAcceptCasterTable()));
+  _okButton->setMinimumWidth(8*ww);
+  _okButton->setMaximumWidth(8*ww);
+
+  _whatsThisButton = new QPushButton(tr("Help=Shift+F1"), this);
+  connect(_whatsThisButton, SIGNAL(clicked()), this, SLOT(slotWhatsThis()));
+  _whatsThisButton->setMinimumWidth(12*ww);
+  _whatsThisButton->setMaximumWidth(12*ww);
+
+  _casterTable->setWhatsThis(tr("<p>Select an NTRIP broadcaster and hit 'OK'.</p><p>See <u>http://www.rtcm-ntrip.org/home</u> for further details on known NTRIP broadcaster installations.</u>."));
+
+  QGridLayout* dlgLayout = new QGridLayout();
+  dlgLayout->addWidget(new QLabel("  List of NTRIP Broadcasters from www.rtcm-ntrip.org"), 0,0,1,3,Qt::AlignLeft);
+  dlgLayout->addWidget(_casterTable,     1, 0, 1, 3);
+  dlgLayout->addWidget(_whatsThisButton, 2, 0);
+  dlgLayout->addWidget(_closeButton,     2, 1, Qt::AlignRight);  
+  dlgLayout->addWidget(_okButton,        2, 2);
+
+  setMinimumSize(600,400);
+  setWindowTitle(tr("Select Broadcaster"));
+  setLayout(dlgLayout);
+  resize(68*ww, 50*ww);
+  show();
+}
+
+// Caster table destructor
+////////////////////////////////////////////////////////////////////////////
+bncCasterTableDlg::~bncCasterTableDlg() {
+  delete _casterTable;
+  delete _okButton;
+  delete _closeButton;
+  delete _whatsThisButton;
+}
+
+// Caster table what's this
+////////////////////////////////////////////////////////////////////////////
+void bncCasterTableDlg:: slotWhatsThis() {
+  QWhatsThis::enterWhatsThisMode();
+}
+
+// Accept caster table
+////////////////////////////////////////////////////////////////////////////
+void bncCasterTableDlg::slotAcceptCasterTable() {
+  if (_casterTable) {
+    for (int ir = _casterTable->rowCount() - 1; ir >= 0 ; ir--) {
+      if (_casterTable->isItemSelected(_casterTable->item(ir,0))) {
+        emit newCaster(_casterTable->item(ir,0)->text(), 
+                       _casterTable->item(ir,1)->text());
+      }
+    }
+  }
+  QDialog::accept();
+}
Index: branches/BNC_LM/bnctabledlg.h
===================================================================
--- branches/BNC_LM/bnctabledlg.h	(revision 3570)
+++ branches/BNC_LM/bnctabledlg.h	(revision 3570)
@@ -0,0 +1,101 @@
+// Part of BNC, a utility for retrieving decoding and
+// converting GNSS data streams from NTRIP broadcasters.
+//
+// Copyright (C) 2007
+// German Federal Agency for Cartography and Geodesy (BKG)
+// http://www.bkg.bund.de
+// Czech Technical University Prague, Department of Geodesy
+// http://www.fsv.cvut.cz
+//
+// Email: euref-ip@bkg.bund.de
+//
+// This program is free software; you can redistribute it and/or
+// modify it under the terms of the GNU General Public License
+// as published by the Free Software Foundation, version 2.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+#ifndef BNCTABLEDLG_H
+#define BNCTABLEDLG_H
+
+#include <QtCore>
+#include <QtGui>
+#include <QWhatsThis>
+
+#include "bncconst.h"
+
+class bncCasterTableDlg : public QDialog {
+  Q_OBJECT
+
+  public:
+    bncCasterTableDlg(const QString& ntripVersion, QWidget* parent);
+    ~bncCasterTableDlg();
+
+  signals:
+    void newCaster(QString newCasterHost, QString newCasterPort);
+
+  private slots:
+    virtual void slotAcceptCasterTable();
+    virtual void slotWhatsThis();
+
+  private:
+    QTableWidget* _casterTable;
+    QPushButton*  _okButton;
+    QPushButton*  _closeButton;
+    QPushButton*  _whatsThisButton;
+};
+
+class bncTableDlg : public QDialog {
+  Q_OBJECT
+
+  public:
+    bncTableDlg(QWidget* parent);
+    ~bncTableDlg();
+    static t_irc getFullTable(const QString& ntripVersion, 
+                              const QString& casterHost, int casterPort,
+                              QStringList& allLines, bool alwaysRead = true);
+
+  signals:
+    void newMountPoints(QStringList* mountPoints);
+    void newPoint(QPointF, QString, QPen, double);
+    void fitMap();
+    void fitFont();
+
+  private slots:
+    virtual void select();
+    void slotGetTable();
+    void slotShowMap();
+    void slotSelectionChanged();
+    void slotWhatsThis();
+    void slotCasterTable();
+    void slotNewCaster(QString newCasterHost, QString newCasterPort);
+    void slotCasterHostChanged(const QString&);
+
+  private:
+    void addUrl(const QUrl& url);
+    void showSourceTable();
+    QComboBox*   _casterHostComboBox;
+    QLineEdit*   _casterPortLineEdit;
+    QLineEdit*   _casterUserLineEdit;
+    QLineEdit*   _casterPasswordLineEdit;
+    QComboBox*   _ntripVersionComboBox;
+
+    QPushButton* _buttonGet;
+    QPushButton* _buttonMap;
+    QPushButton* _buttonClose;
+    QPushButton* _buttonSelect;
+    QPushButton* _buttonWhatsThis;
+    QPushButton* _buttonCasterTable;
+
+    QTableWidget* _table;
+    QStringList   _allLines;
+};
+
+#endif
Index: branches/BNC_LM/bnctableitem.cpp
===================================================================
--- branches/BNC_LM/bnctableitem.cpp	(revision 3570)
+++ branches/BNC_LM/bnctableitem.cpp	(revision 3570)
@@ -0,0 +1,83 @@
+// Part of BNC, a utility for retrieving decoding and
+// converting GNSS data streams from NTRIP broadcasters.
+//
+// Copyright (C) 2007
+// German Federal Agency for Cartography and Geodesy (BKG)
+// http://www.bkg.bund.de
+// Czech Technical University Prague, Department of Geodesy
+// http://www.fsv.cvut.cz
+//
+// Email: euref-ip@bkg.bund.de
+//
+// This program is free software; you can redistribute it and/or
+// modify it under the terms of the GNU General Public License
+// as published by the Free Software Foundation, version 2.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+/* -------------------------------------------------------------------------
+ * BKG NTRIP Client
+ * -------------------------------------------------------------------------
+ *
+ * Class:      bncTableItem
+ *
+ * Purpose:    Re-Implements QTableWidgetItem
+ *
+ * Author:     L. Mervart
+ *
+ * Created:    24-Sep-2006
+ *
+ * Changes:    
+ *
+ * -----------------------------------------------------------------------*/
+
+#include "bnctableitem.h"
+#include "bncgetthread.h"
+#include "RTCM/GPSDecoder.h"
+
+// Constructor
+////////////////////////////////////////////////////////////////////////////
+bncTableItem::bncTableItem() : QTableWidgetItem() {
+  _bytesRead = 0.0;
+  setText(QString("%1 byte(s)").arg(0));
+  _getThread = 0;
+}
+
+// Destructor
+////////////////////////////////////////////////////////////////////////////
+bncTableItem::~bncTableItem() {
+}
+
+// 
+////////////////////////////////////////////////////////////////////////////
+void bncTableItem::slotNewBytes(const QByteArray, double nbyte) {
+
+  QMutexLocker locker(&_mutex);
+
+  _bytesRead += nbyte;
+
+  if      (_bytesRead < 1e3) {
+    setText(QString("%1 byte(s)").arg((int)_bytesRead));
+  }
+  else if (_bytesRead < 1e6) {
+    setText(QString("%1 kB").arg(_bytesRead/1.e3, 5));
+  }
+  else {
+    setText(QString("%1 MB").arg(_bytesRead/1.e6, 5));
+  }
+}
+
+// 
+////////////////////////////////////////////////////////////////////////////
+void bncTableItem::setGetThread(bncGetThread* getThread) {
+  _getThread = getThread;
+  connect(_getThread, SIGNAL(newBytes(QByteArray, double)),
+          this, SLOT(slotNewBytes(QByteArray, double)));
+}
Index: branches/BNC_LM/bnctableitem.h
===================================================================
--- branches/BNC_LM/bnctableitem.h	(revision 3570)
+++ branches/BNC_LM/bnctableitem.h	(revision 3570)
@@ -0,0 +1,54 @@
+// Part of BNC, a utility for retrieving decoding and
+// converting GNSS data streams from NTRIP broadcasters.
+//
+// Copyright (C) 2007
+// German Federal Agency for Cartography and Geodesy (BKG)
+// http://www.bkg.bund.de
+// Czech Technical University Prague, Department of Geodesy
+// http://www.fsv.cvut.cz
+//
+// Email: euref-ip@bkg.bund.de
+//
+// This program is free software; you can redistribute it and/or
+// modify it under the terms of the GNU General Public License
+// as published by the Free Software Foundation, version 2.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+#ifndef BNCTABLEITEM_H
+#define BNCTABLEITEM_H
+
+#include <QtCore>
+#include <QtGui>
+
+struct Observation;
+struct bncGetThread;
+
+class bncTableItem : public QObject, public QTableWidgetItem {
+  Q_OBJECT
+
+  public:
+    bncTableItem();
+    ~bncTableItem();
+    void setGetThread(bncGetThread* getThread);
+    bncGetThread* getThread() {return _getThread;}
+
+  signals:
+ 
+  public slots:
+    void slotNewBytes(const QByteArray staID, double nbyte);
+
+  private:
+    double _bytesRead;
+    QMutex _mutex;
+    bncGetThread* _getThread;
+};
+
+#endif
Index: branches/BNC_LM/bnctides.cpp
===================================================================
--- branches/BNC_LM/bnctides.cpp	(revision 3570)
+++ branches/BNC_LM/bnctides.cpp	(revision 3570)
@@ -0,0 +1,224 @@
+
+#include <cmath>
+
+#include "bnctides.h"
+#include "bncutils.h"
+
+using namespace std;
+
+// Auxiliary Functions
+///////////////////////////////////////////////////////////////////////////
+namespace { 
+
+  static const double RHO_DEG   = 180.0 / M_PI;
+  static const double RHO_SEC   = 3600.0 * RHO_DEG;
+  static const double MJD_J2000 = 51544.5;
+
+  double Frac (double x) { return x-floor(x); };
+  double Modulo (double x, double y) { return y*Frac(x/y); }
+
+  Matrix rotX(double Angle) {
+    const double C = cos(Angle);
+    const double S = sin(Angle);
+    Matrix UU(3,3);
+    UU[0][0] = 1.0;  UU[0][1] = 0.0;  UU[0][2] = 0.0;
+    UU[1][0] = 0.0;  UU[1][1] =  +C;  UU[1][2] =  +S;
+    UU[2][0] = 0.0;  UU[2][1] =  -S;  UU[2][2] =  +C;
+    return UU;
+  }
+  
+  Matrix rotY(double Angle) {
+    const double C = cos(Angle);
+    const double S = sin(Angle);
+    Matrix UU(3,3);
+    UU[0][0] =  +C;  UU[0][1] = 0.0;  UU[0][2] =  -S;
+    UU[1][0] = 0.0;  UU[1][1] = 1.0;  UU[1][2] = 0.0;
+    UU[2][0] =  +S;  UU[2][1] = 0.0;  UU[2][2] =  +C;
+    return UU;
+  }
+  
+  Matrix rotZ(double Angle) {
+    const double C = cos(Angle);
+    const double S = sin(Angle);
+    Matrix UU(3,3);
+    UU[0][0] =  +C;  UU[0][1] =  +S;  UU[0][2] = 0.0;
+    UU[1][0] =  -S;  UU[1][1] =  +C;  UU[1][2] = 0.0;
+    UU[2][0] = 0.0;  UU[2][1] = 0.0;  UU[2][2] = 1.0;
+    return UU;
+  }
+}
+
+// Greenwich Mean Sidereal Time
+///////////////////////////////////////////////////////////////////////////
+double GMST(double Mjd_UT1) {
+
+  const double Secs = 86400.0;
+
+  double Mjd_0 = floor(Mjd_UT1);
+  double UT1   = Secs*(Mjd_UT1-Mjd_0);
+  double T_0   = (Mjd_0  -MJD_J2000)/36525.0; 
+  double T     = (Mjd_UT1-MJD_J2000)/36525.0; 
+
+  double gmst  = 24110.54841 + 8640184.812866*T_0 + 1.002737909350795*UT1
+                 + (0.093104-6.2e-6*T)*T*T;
+
+  return  2.0*M_PI*Frac(gmst/Secs);
+}
+
+// Nutation Matrix
+///////////////////////////////////////////////////////////////////////////
+Matrix NutMatrix(double Mjd_TT) {
+
+  const double T  = (Mjd_TT-MJD_J2000)/36525.0;
+
+  double ls = 2.0*M_PI*Frac(0.993133+  99.997306*T);
+  double D  = 2.0*M_PI*Frac(0.827362+1236.853087*T);
+  double F  = 2.0*M_PI*Frac(0.259089+1342.227826*T);
+  double N  = 2.0*M_PI*Frac(0.347346-   5.372447*T);
+
+  double dpsi = ( -17.200*sin(N)   - 1.319*sin(2*(F-D+N)) - 0.227*sin(2*(F+N))
+                + 0.206*sin(2*N) + 0.143*sin(ls) ) / RHO_SEC;
+  double deps = ( + 9.203*cos(N)   + 0.574*cos(2*(F-D+N)) + 0.098*cos(2*(F+N))
+                - 0.090*cos(2*N)                 ) / RHO_SEC;
+
+  double eps  = 0.4090928-2.2696E-4*T;
+
+  return  rotX(-eps-deps)*rotZ(-dpsi)*rotX(+eps);
+}
+
+// Precession Matrix
+///////////////////////////////////////////////////////////////////////////
+Matrix PrecMatrix (double Mjd_1, double Mjd_2) {
+
+  const double T  = (Mjd_1-MJD_J2000)/36525.0;
+  const double dT = (Mjd_2-Mjd_1)/36525.0;
+  
+  double zeta  =  ( (2306.2181+(1.39656-0.000139*T)*T)+
+                        ((0.30188-0.000344*T)+0.017998*dT)*dT )*dT/RHO_SEC;
+  double z     =  zeta + ( (0.79280+0.000411*T)+0.000205*dT)*dT*dT/RHO_SEC;
+  double theta =  ( (2004.3109-(0.85330+0.000217*T)*T)-
+                        ((0.42665+0.000217*T)+0.041833*dT)*dT )*dT/RHO_SEC;
+
+  return rotZ(-z) * rotY(theta) * rotZ(-zeta);
+}    
+
+// Sun's position
+///////////////////////////////////////////////////////////////////////////
+ColumnVector Sun(double Mjd_TT) {
+
+  const double eps = 23.43929111/RHO_DEG;
+  const double T   = (Mjd_TT-MJD_J2000)/36525.0;
+
+  double M = 2.0*M_PI * Frac ( 0.9931267 + 99.9973583*T);
+  double L = 2.0*M_PI * Frac ( 0.7859444 + M/2.0/M_PI + 
+                        (6892.0*sin(M)+72.0*sin(2.0*M)) / 1296.0e3);
+  double r = 149.619e9 - 2.499e9*cos(M) - 0.021e9*cos(2*M);
+  
+  ColumnVector r_Sun(3); 
+  r_Sun << r*cos(L) << r*sin(L) << 0.0; r_Sun = rotX(-eps) * r_Sun;
+
+  return    rotZ(GMST(Mjd_TT))
+          * NutMatrix(Mjd_TT) 
+          * PrecMatrix(MJD_J2000, Mjd_TT)
+          * r_Sun;
+}
+
+// Moon's position
+///////////////////////////////////////////////////////////////////////////
+ColumnVector Moon(double Mjd_TT) {
+
+  const double eps = 23.43929111/RHO_DEG;
+  const double T   = (Mjd_TT-MJD_J2000)/36525.0;
+
+  double L_0 = Frac ( 0.606433 + 1336.851344*T );
+  double l   = 2.0*M_PI*Frac ( 0.374897 + 1325.552410*T );
+  double lp  = 2.0*M_PI*Frac ( 0.993133 +   99.997361*T );
+  double D   = 2.0*M_PI*Frac ( 0.827361 + 1236.853086*T );
+  double F   = 2.0*M_PI*Frac ( 0.259086 + 1342.227825*T );
+    
+  double dL = +22640*sin(l) - 4586*sin(l-2*D) + 2370*sin(2*D) +  769*sin(2*l) 
+              -668*sin(lp) - 412*sin(2*F) - 212*sin(2*l-2*D)- 206*sin(l+lp-2*D)
+              +192*sin(l+2*D) - 165*sin(lp-2*D) - 125*sin(D) - 110*sin(l+lp)
+              +148*sin(l-lp) - 55*sin(2*F-2*D);
+
+  double L = 2.0*M_PI * Frac( L_0 + dL/1296.0e3 );
+
+  double S  = F + (dL+412*sin(2*F)+541*sin(lp)) / RHO_SEC; 
+  double h  = F-2*D;
+  double N  = -526*sin(h) + 44*sin(l+h) - 31*sin(-l+h) - 23*sin(lp+h) 
+              +11*sin(-lp+h) - 25*sin(-2*l+F) + 21*sin(-l+F);
+
+  double B = ( 18520.0*sin(S) + N ) / RHO_SEC;
+    
+  double cosB = cos(B);
+
+  double R = 385000e3 - 20905e3*cos(l) - 3699e3*cos(2*D-l) - 2956e3*cos(2*D)
+      -570e3*cos(2*l) + 246e3*cos(2*l-2*D) - 205e3*cos(lp-2*D) 
+      -171e3*cos(l+2*D) - 152e3*cos(l+lp-2*D);   
+
+  ColumnVector r_Moon(3); 
+  r_Moon << R*cos(L)*cosB << R*sin(L)*cosB << R*sin(B);
+  r_Moon = rotX(-eps) * r_Moon;
+    
+  return    rotZ(GMST(Mjd_TT)) 
+          * NutMatrix(Mjd_TT) 
+          * PrecMatrix(MJD_J2000, Mjd_TT)
+          * r_Moon;
+}
+
+// Tidal Correction 
+////////////////////////////////////////////////////////////////////////////
+void tides(const bncTime& time, ColumnVector& xyz) {
+
+  static double       lastMjd = 0.0;
+  static ColumnVector xSun;
+  static ColumnVector xMoon;
+  static double       rSun;
+  static double       rMoon;
+
+  double Mjd = time.mjd() + time.daysec() / 86400.0;
+
+  if (Mjd != lastMjd) {
+    lastMjd = Mjd;
+    xSun = Sun(Mjd);
+    rSun = sqrt(DotProduct(xSun,xSun));
+    xSun /= rSun;
+    xMoon = Moon(Mjd);
+    rMoon = sqrt(DotProduct(xMoon,xMoon));
+    xMoon /= rMoon;
+  }
+
+  double       rRec    = sqrt(DotProduct(xyz, xyz));
+  ColumnVector xyzUnit = xyz / rRec;
+
+  // Love's Numbers
+  // --------------
+  const double H2 = 0.6090;
+  const double L2 = 0.0852;
+
+  // Tidal Displacement
+  // ------------------
+  double scSun  = DotProduct(xyzUnit, xSun);
+  double scMoon = DotProduct(xyzUnit, xMoon);
+
+  double p2Sun  = 3.0 * (H2/2.0-L2) * scSun  * scSun  - H2/2.0;
+  double p2Moon = 3.0 * (H2/2.0-L2) * scMoon * scMoon - H2/2.0;
+
+  double x2Sun  = 3.0 * L2 * scSun;
+  double x2Moon = 3.0 * L2 * scMoon;
+  
+  const double gmWGS = 398.6005e12;
+  const double gms   = 1.3271250e20;
+  const double gmm   = 4.9027890e12;
+
+  double facSun  = gms / gmWGS * 
+                   (rRec * rRec * rRec * rRec) / (rSun * rSun * rSun);
+
+  double facMoon = gmm / gmWGS * 
+                   (rRec * rRec * rRec * rRec) / (rMoon * rMoon * rMoon);
+
+  ColumnVector dX = facSun  * (x2Sun  * xSun  + p2Sun  * xyzUnit) + 
+                    facMoon * (x2Moon * xMoon + p2Moon * xyzUnit);
+
+  xyz += dX;
+}
Index: branches/BNC_LM/bnctides.h
===================================================================
--- branches/BNC_LM/bnctides.h	(revision 3570)
+++ branches/BNC_LM/bnctides.h	(revision 3570)
@@ -0,0 +1,11 @@
+#ifndef BNCTIDES_H
+#define BNCTIDES_H
+
+#include <newmat.h>
+#include "bnctime.h"
+
+ColumnVector Sun(double Mjd_TT);
+
+void         tides(const bncTime& time, ColumnVector& xyz);
+
+#endif
Index: branches/BNC_LM/bnctime.cpp
===================================================================
--- branches/BNC_LM/bnctime.cpp	(revision 3570)
+++ branches/BNC_LM/bnctime.cpp	(revision 3570)
@@ -0,0 +1,279 @@
+#include <time.h>
+#include <cmath>
+#include <cstdio>
+#include <sstream>
+#include <iomanip>
+
+#include "bnctime.h"
+#include "timeutils.h"
+
+using namespace std;
+
+// Constructor
+//////////////////////////////////////////////////////////////////////////////
+bncTime::bncTime(int gpsw, double gpssec) {
+  this->set(gpsw, gpssec);
+}
+  
+// 
+//////////////////////////////////////////////////////////////////////////////
+bncTime& bncTime::set(int gpsw, double gpssec) {
+  int  deltad;
+  int  dow = 0;
+  while ( gpssec >= 86400 ) {
+    gpssec-=86400;
+    dow++;
+  }
+  while ( gpssec <  0 ) {
+    gpssec+=86400;
+    dow--;
+  }
+  deltad = gpsw*7 + dow;
+  _mjd = 44244 + deltad;
+  _sec = gpssec;
+  return *this;
+}
+
+// 
+//////////////////////////////////////////////////////////////////////////////
+bncTime& bncTime::setmjd(double daysec, int mjd) {
+  _sec = daysec;
+  _mjd = mjd;
+  while ( _sec >= 86400 ) {
+    _sec-=86400;
+    _mjd++;
+  }
+  while ( _sec <  0 ) {
+    _sec+=86400;
+    _mjd--;
+  }
+  return *this;
+}
+
+// 
+//////////////////////////////////////////////////////////////////////////////
+unsigned int bncTime::mjd() const {
+  return _mjd;
+}
+ 
+//
+//////////////////////////////////////////////////////////////////////////////
+double bncTime::daysec() const {
+  return _sec;
+}
+
+//
+//////////////////////////////////////////////////////////////////////////////
+unsigned int bncTime::gpsw() const {
+  double   gsec;
+  long     gpsw;
+  jdgp(_mjd, gsec, gpsw);
+  return (int)gpsw;
+}
+
+// 
+//////////////////////////////////////////////////////////////////////////////
+double bncTime::gpssec() const {
+  double   gsec;
+  long     gpsw;
+  jdgp(_mjd, gsec, gpsw);
+  return gsec + _sec;
+}
+
+// 
+//////////////////////////////////////////////////////////////////////////////
+bool bncTime::operator!=(const bncTime &time1) const {
+  if ( ((*this) - time1) != 0.0 ) {
+    return true;
+  }
+  else {
+    return false;
+  }
+}
+
+// 
+//////////////////////////////////////////////////////////////////////////////
+bool bncTime::operator==(const bncTime &time1) const {
+  if ( ((*this) - time1) == 0.0 ) {
+    return true;
+  }
+  else {
+    return false;
+  }
+}
+
+// 
+//////////////////////////////////////////////////////////////////////////////
+bool bncTime::operator>(const bncTime &time1) const {
+  if ( ((*this) - time1) > 0.0 ) {
+    return true;
+  }
+  else {
+    return false;
+  }
+}
+
+// 
+//////////////////////////////////////////////////////////////////////////////
+bool bncTime::operator>=(const bncTime &time1) const {
+  if ( ((*this) - time1) >= 0.0 ) {
+    return true;
+  }
+  else {
+    return false;
+  }
+}
+
+// 
+//////////////////////////////////////////////////////////////////////////////
+bool bncTime::operator<(const bncTime &time1) const {
+  if ( ((*this) - time1) < 0.0 ) {
+    return true;
+  }
+  else {
+    return false;
+  }
+}
+
+// 
+//////////////////////////////////////////////////////////////////////////////
+bool bncTime::operator<=(const bncTime &time1) const {
+  if ( ((*this) - time1) <= 0.0 ) {
+    return true;
+  }
+  else {
+    return false;
+  }
+}
+
+// 
+//////////////////////////////////////////////////////////////////////////////
+bncTime bncTime::operator+(double sec) const {
+  int     mjd    = this->mjd();
+  double  daysec = this->daysec();
+  daysec+=sec;
+  return bncTime().setmjd(daysec, mjd);
+}
+
+// 
+//////////////////////////////////////////////////////////////////////////////
+bncTime bncTime::operator-(double sec) const {
+  return (*this) + (-sec);
+}
+
+// 
+//////////////////////////////////////////////////////////////////////////////
+double bncTime::operator-(const bncTime &time1) const {
+  int mjdDiff = this->_mjd - time1._mjd;
+  if ( mjdDiff != 0 ) {
+    return mjdDiff * 86400.0 + this->_sec - time1._sec;
+  }
+  else {
+    return this->_sec - time1._sec;
+  }
+}
+
+// 
+//////////////////////////////////////////////////////////////////////////////
+void bncTime::civil_date (unsigned int& year, unsigned int& month,
+                          unsigned int& day) const {
+  double day_d;
+  long int yy, mm;
+  jmt(_mjd, yy, mm, day_d);
+  year  = yy;
+  month = mm;
+  day   = static_cast<unsigned int>(day_d);
+}
+
+// 
+//////////////////////////////////////////////////////////////////////////////
+void bncTime::civil_time(unsigned int &hour, unsigned int &min, 
+                          double &sec) const {
+  hour = static_cast<unsigned int>(_sec/3600.0);
+  min  = static_cast<unsigned int>((_sec - hour*3600)/60.0);
+  sec  = _sec - min*60 - hour*3600;
+  if (sec==60.0) {
+    min++;
+    sec=0;
+  }
+  if (min==60) {
+    hour++;
+    min=0;
+  }
+}
+
+// 
+//////////////////////////////////////////////////////////////////////////////
+string bncTime::timestr(unsigned numdec, char sep) const {
+  ostringstream str;
+  unsigned int hour, minute;
+  double sec;
+  this->civil_time(hour, minute, sec);
+  unsigned sw;
+  if (numdec == 0) {
+    sw = 2;
+  }
+  else {
+    sw = numdec + 3;
+  }
+  double chk = 0.5;
+  for (unsigned int ii=0; ii<numdec; ii++) chk *= 0.1;
+  if (sec > (60.0-chk)) {
+    sec = 0;
+    minute++;
+    if (minute == 60) {
+      minute = 0;
+      hour++;
+    }
+  }
+  str.setf(ios::fixed);
+  str << setfill('0');
+  str << setw(2)  << hour;
+  if (sep) str << sep;
+  str << setw(2)  << minute;
+  if (sep) str << sep;
+  str << setw(sw) << setprecision(numdec) << sec;
+  return str.str();
+}
+
+// 
+//////////////////////////////////////////////////////////////////////////////
+string bncTime::datestr(char sep) const {
+  unsigned int year, month, day;
+  civil_date(year,month,day);
+  ostringstream str;
+  str.setf(ios::fixed);
+  str << setfill('0');
+  str << setw(4)  << year;
+  if (sep) str << sep;
+  str << setw(2)  << month;
+  if (sep) str << sep;
+  str << setw(2)  << day;
+  return str.str();
+}
+
+// 
+//////////////////////////////////////////////////////////////////////////////
+bncTime& bncTime::set(int year, int month, int day, 
+                      int hour, int min, double sec) {
+  return set(year, month, day, hour*3600 + min*60 + sec);
+}
+
+// 
+//////////////////////////////////////////////////////////////////////////////
+bncTime& bncTime::set(int year, int month, int day, double daysec) {
+  _sec = daysec;
+  
+  _mjd = (unsigned int)djul(year, month, day);
+  
+  while ( _sec >= 86400 ) {
+    _sec-=86400;
+    _mjd++;
+  }
+  while ( _sec <  0 ) {
+    _sec+=86400;
+    _mjd--;
+  }
+
+  return *this;
+}
Index: branches/BNC_LM/bnctime.h
===================================================================
--- branches/BNC_LM/bnctime.h	(revision 3570)
+++ branches/BNC_LM/bnctime.h	(revision 3570)
@@ -0,0 +1,47 @@
+
+#ifndef BNCTIME_H
+#define BNCTIME_H
+
+#include <string>
+
+class bncTime {
+ public:
+  bncTime() {this->reset();}
+  bncTime(int gpsw, double gpssec);
+
+  bncTime& set(int gpsw, double gpssec);
+  bncTime& set(int year, int month, int day, int hour, int min, double sec);
+  bncTime& set(int year, int month, int day, double daysec);
+  bncTime& setmjd(double daysec, int mjd);
+
+  unsigned int mjd()    const;
+  double       daysec() const;
+  unsigned int gpsw()   const;
+  double       gpssec() const;
+  void         civil_date (unsigned int& year, unsigned int& month,
+                           unsigned int& day) const;
+  void         civil_time (unsigned int& hour, unsigned int& min,
+                           double& sec) const;
+  bool         valid() const {return _mjd != 0 || _sec != 0.0;}
+  bool         operator==(const bncTime &time1) const;
+  bool         operator!=(const bncTime &time1) const;
+  bool         operator<(const bncTime &time1) const;
+  bool         operator>(const bncTime &time1) const;
+  bool         operator<=(const bncTime &time1) const;
+  bool         operator>=(const bncTime &time1) const;
+  double       operator-(const bncTime &time1) const;
+  bncTime      operator-(double sec) const;
+  bncTime      operator+(double sec) const;
+
+  std::string timestr(unsigned numdec = 3, char sep = ':') const;  
+  std::string datestr(char sep = '-') const;  
+
+ private:
+  void        reset() {_mjd = 0; _sec = 0;}
+
+  unsigned int _mjd;
+  double       _sec;
+};
+
+#endif
+
Index: branches/BNC_LM/bncudpport.cpp
===================================================================
--- branches/BNC_LM/bncudpport.cpp	(revision 3570)
+++ branches/BNC_LM/bncudpport.cpp	(revision 3570)
@@ -0,0 +1,154 @@
+// Part of BNC, a utility for retrieving decoding and
+// converting GNSS data streams from NTRIP broadcasters.
+//
+// Copyright (C) 2009
+// German Federal Agency for Cartography and Geodesy (BKG)
+// http://www.bkg.bund.de
+// Czech Technical University Prague, Department of Geodesy
+// http://www.fsv.cvut.cz
+//
+// Email: euref-ip@bkg.bund.de
+//
+// This program is free software; you can redistribute it and/or
+// modify it under the terms of the GNU General Public License
+// as published by the Free Software Foundation, version 2.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+/* -------------------------------------------------------------------------
+ * BKG NTRIP Client
+ * -------------------------------------------------------------------------
+ *
+ * Class:      bncUdpPort
+ *
+ * Purpose:    Select host for stream retrieval without NTRIP
+ *
+ * Author:     G. Weber
+ *
+ * Created:    18-Feb-2009
+ *
+ * Changes:    
+ *
+ * -----------------------------------------------------------------------*/
+
+#include <iostream>
+
+#include "bncudpport.h"
+
+using namespace std;
+
+// Constructor
+////////////////////////////////////////////////////////////////////////////
+bncUdpPort::bncUdpPort(QWidget* parent) : QDialog(parent) {
+
+  setMinimumSize(400,150);
+  QVBoxLayout* mainLayout = new QVBoxLayout(this);
+  QGridLayout* editLayout = new QGridLayout;
+
+  setWindowTitle(tr("Add Stream from UDP Port"));
+
+  _ipPortLineEdit = new QLineEdit();
+  _ipMountLineEdit = new QLineEdit();
+  _ipFormatLineEdit = new QLineEdit();
+  _ipLatLineEdit = new QLineEdit();
+  _ipLonLineEdit = new QLineEdit();
+
+  int ww = QFontMetrics(font()).width('w');
+  _ipPortLineEdit->setMaximumWidth(9*ww);
+  _ipMountLineEdit->setMaximumWidth(9*ww);
+  _ipFormatLineEdit->setMaximumWidth(9*ww);
+  _ipLatLineEdit->setMaximumWidth(9*ww);
+  _ipLonLineEdit->setMaximumWidth(9*ww);
+
+  // WhatsThis
+  // ---------
+  _ipPortLineEdit->setWhatsThis(tr("<p>BNC allows to pick up streams arriving directly at one of the local host's UDP ports without using the NTRIP transport protocol.</p><p>Enter the local port number where the UDP stream arrives.</p>"));
+  _ipMountLineEdit->setWhatsThis(tr("<p>Specify a mountpoint.</p><p>Recommended is a 4-character station ID.<br>Example: FFMJ</p>"));
+  _ipFormatLineEdit->setWhatsThis(tr("<p>Specify the stream format.</p><p>Available options are 'RTCM_2', 'RTCM_3', and 'ZERO'.</p>"));
+  _ipLatLineEdit->setWhatsThis(tr("<p>Enter the approximate latitude of the stream providing receiver in degrees.<p></p>Example: 45.32</p>"));
+  _ipLonLineEdit->setWhatsThis(tr("<p>Enter the approximate longitude of the stream providing receiver in degrees.<p></p>Example: -15.20</p>"));
+
+  editLayout->addWidget(new QLabel(tr("UDP Port")),  0, 0, Qt::AlignRight);
+  editLayout->addWidget(_ipPortLineEdit,             0, 1);
+  editLayout->addWidget(new QLabel(tr("Mountpoint")),1, 0, Qt::AlignRight);
+  editLayout->addWidget(_ipMountLineEdit,            1, 1);
+  editLayout->addWidget(new QLabel(tr("Format")),    1, 2, Qt::AlignRight);
+  editLayout->addWidget(_ipFormatLineEdit,           1, 3);
+  editLayout->addWidget(new QLabel(tr("Latitude")),  2, 0, Qt::AlignRight);
+  editLayout->addWidget(_ipLatLineEdit,              2, 1);
+  editLayout->addWidget(new QLabel(tr("Longitude")), 2, 2, Qt::AlignRight);
+  editLayout->addWidget(_ipLonLineEdit,              2, 3);
+
+  mainLayout->addLayout(editLayout);
+
+  _buttonWhatsThis = new QPushButton(tr("Help=Shift+F1"), this);
+  connect(_buttonWhatsThis, SIGNAL(clicked()), this, SLOT(slotWhatsThis()));
+ 
+  _buttonCancel = new QPushButton(tr("Cancel"), this);
+  connect(_buttonCancel, SIGNAL(clicked()), this, SLOT(reject()));
+
+  _buttonOK = new QPushButton(tr("OK"), this);
+  connect(_buttonOK, SIGNAL(clicked()), this, SLOT(accept()));
+
+  _buttonOK->setDefault(true);
+
+  QHBoxLayout* buttonLayout = new QHBoxLayout;
+
+  buttonLayout->addWidget(_buttonWhatsThis);
+  buttonLayout->addStretch(1);
+  buttonLayout->addWidget(_buttonCancel);
+  buttonLayout->addWidget(_buttonOK);
+
+  mainLayout->addLayout(buttonLayout);
+}
+
+// Destructor
+////////////////////////////////////////////////////////////////////////////
+bncUdpPort::~bncUdpPort() {
+  delete _buttonCancel;
+  delete _buttonOK;
+  delete _buttonWhatsThis;
+}
+
+// Accept slot
+////////////////////////////////////////////////////////////////////////////
+void bncUdpPort::accept() {
+
+  QStringList* mountPoints = new QStringList;
+
+  if ( !_ipPortLineEdit->text().isEmpty()   &&
+       !_ipMountLineEdit->text().isEmpty()  &&
+       !_ipFormatLineEdit->text().isEmpty() &&
+       !_ipLatLineEdit->text().isEmpty()    &&
+       !_ipLonLineEdit->text().isEmpty() ) {
+
+    mountPoints->push_back("//127.0.0.1:" 
+                                + _ipPortLineEdit->text() + "/" 
+                                + _ipMountLineEdit->text() + " "
+                                + _ipFormatLineEdit->text() + " "
+                                + _ipLatLineEdit->text() + " "
+                                + _ipLonLineEdit->text() + " "
+                                + "no UN");
+  } else {
+   QMessageBox::warning(this, tr("Warning"),
+                               tr("Incomplete settings"),
+                               QMessageBox::Ok);
+  }
+
+  emit newMountPoints(mountPoints);
+
+  QDialog::accept();
+}
+
+// Whats This Help
+void bncUdpPort::slotWhatsThis() {
+QWhatsThis::enterWhatsThisMode();
+}
+
Index: branches/BNC_LM/bncudpport.h
===================================================================
--- branches/BNC_LM/bncudpport.h	(revision 3570)
+++ branches/BNC_LM/bncudpport.h	(revision 3570)
@@ -0,0 +1,60 @@
+// Part of BNC, a utility for retrieving decoding and
+// converting GNSS data streams from NTRIP broadcasters.
+//
+// Copyright (C) 2009
+// German Federal Agency for Cartography and Geodesy (BKG)
+// http://www.bkg.bund.de
+// Czech Technical University Prague, Department of Geodesy
+// http://www.fsv.cvut.cz
+//
+// Email: euref-ip@bkg.bund.de
+//
+// This program is free software; you can redistribute it and/or
+// modify it under the terms of the GNU General Public License
+// as published by the Free Software Foundation, version 2.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+#ifndef BNCUDPPORT_H
+#define BNCUDPPORT_H
+
+#include <QtCore>
+#include <QtGui>
+#include <QWhatsThis>
+
+class bncUdpPort : public QDialog {
+  Q_OBJECT
+
+  public:
+    bncUdpPort(QWidget* parent);
+    ~bncUdpPort();
+
+  signals:
+    void newMountPoints(QStringList* mountPoints);
+
+  private slots:
+    virtual void accept();
+    void slotWhatsThis();
+
+  private:
+    QLineEdit*   _ipHostLineEdit;
+    QLineEdit*   _ipPortLineEdit;
+    QLineEdit*   _ipMountLineEdit;
+    QLineEdit*   _ipFormatLineEdit;
+    QLineEdit*   _ipLatLineEdit;
+    QLineEdit*   _ipLonLineEdit;
+
+    QPushButton* _buttonGet;
+    QPushButton* _buttonCancel;
+    QPushButton* _buttonOK;
+    QPushButton* _buttonWhatsThis;
+};
+
+#endif
Index: branches/BNC_LM/bncutils.cpp
===================================================================
--- branches/BNC_LM/bncutils.cpp	(revision 3570)
+++ branches/BNC_LM/bncutils.cpp	(revision 3570)
@@ -0,0 +1,388 @@
+// Part of BNC, a utility for retrieving decoding and
+// converting GNSS data streams from NTRIP broadcasters.
+//
+// Copyright (C) 2007
+// German Federal Agency for Cartography and Geodesy (BKG)
+// http://www.bkg.bund.de
+// Czech Technical University Prague, Department of Geodesy
+// http://www.fsv.cvut.cz
+//
+// Email: euref-ip@bkg.bund.de
+//
+// This program is free software; you can redistribute it and/or
+// modify it under the terms of the GNU General Public License
+// as published by the Free Software Foundation, version 2.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+/* -------------------------------------------------------------------------
+ * BKG NTRIP Client
+ * -------------------------------------------------------------------------
+ *
+ * Class:      bncutils
+ *
+ * Purpose:    Auxiliary Functions
+ *
+ * Author:     L. Mervart
+ *
+ * Created:    30-Aug-2006
+ *
+ * Changes:    
+ *
+ * -----------------------------------------------------------------------*/
+
+#include <iostream>
+#include <ctime>
+#include <math.h>
+
+#include <QRegExp>
+#include <QStringList>
+#include <QDateTime>
+
+#include "bncutils.h"
+#include "bncapp.h"
+
+using namespace std;
+
+// 
+////////////////////////////////////////////////////////////////////////////
+void expandEnvVar(QString& str) {
+
+  QRegExp rx("(\\$\\{.+\\})");
+
+  if (rx.indexIn(str) != -1) {
+    QStringListIterator it(rx.capturedTexts());
+    if (it.hasNext()) {
+      QString rxStr  = it.next();
+      QString envVar = rxStr.mid(2,rxStr.length()-3);
+      str.replace(rxStr, qgetenv(envVar.toAscii()));
+    }
+  }
+
+}
+
+// 
+////////////////////////////////////////////////////////////////////////////
+QDateTime dateAndTimeFromGPSweek(int GPSWeek, double GPSWeeks) {
+
+  static const QDate zeroEpoch(1980, 1, 6);
+ 
+  QDate date(zeroEpoch);
+  QTime time(0,0,0,0);
+
+  int weekDays = int(GPSWeeks) / 86400;
+  date = date.addDays( GPSWeek * 7 + weekDays );
+  time = time.addMSecs( int( (GPSWeeks - 86400 * weekDays) * 1e3 ) );
+
+  return QDateTime(date,time);
+}
+
+// 
+////////////////////////////////////////////////////////////////////////////
+void currentGPSWeeks(int& week, double& sec) {
+
+  QDateTime currDateTimeGPS;
+
+  if ( ((bncApp*) qApp)->_currentDateAndTimeGPS ) {
+    currDateTimeGPS = *(((bncApp*) qApp)->_currentDateAndTimeGPS);
+  }
+  else {
+    currDateTimeGPS = QDateTime::currentDateTime().toUTC();
+    QDate hlp       = currDateTimeGPS.date();
+    currDateTimeGPS = currDateTimeGPS.addSecs(gnumleap(hlp.year(), 
+                                                     hlp.month(), hlp.day()));
+  }
+
+  QDate currDateGPS = currDateTimeGPS.date();
+  QTime currTimeGPS = currDateTimeGPS.time();
+
+  week = int( (double(currDateGPS.toJulianDay()) - 2444244.5) / 7 );
+
+  sec = (currDateGPS.dayOfWeek() % 7) * 24.0 * 3600.0 + 
+        currTimeGPS.hour()                   * 3600.0 + 
+        currTimeGPS.minute()                 *   60.0 + 
+        currTimeGPS.second()                          +
+        currTimeGPS.msec()                   / 1000.0;
+}
+
+// 
+////////////////////////////////////////////////////////////////////////////
+QDateTime currentDateAndTimeGPS() {
+  if ( ((bncApp*) qApp)->_currentDateAndTimeGPS ) {
+    return *(((bncApp*) qApp)->_currentDateAndTimeGPS);
+  }
+  else {
+    int    GPSWeek;
+    double GPSWeeks;
+    currentGPSWeeks(GPSWeek, GPSWeeks);
+    return dateAndTimeFromGPSweek(GPSWeek, GPSWeeks);
+  }
+}
+
+// 
+////////////////////////////////////////////////////////////////////////////
+QByteArray ggaString(const QByteArray& latitude,
+                     const QByteArray& longitude,
+                     const QByteArray& height) {
+
+  double lat = strtod(latitude,NULL);
+  double lon = strtod(longitude,NULL);
+  double hei = strtod(height,NULL);
+
+  const char* flagN="N";
+  const char* flagE="E";
+  if (lon >180.) {lon=(lon-360.)*(-1.); flagE="W";}
+  if ((lon < 0.) && (lon >= -180.))  {lon=lon*(-1.); flagE="W";}
+  if (lon < -180.)  {lon=(lon+360.); flagE="E";}
+  if (lat < 0.)  {lat=lat*(-1.); flagN="S";}
+  QTime ttime(QDateTime::currentDateTime().toUTC().time());
+  int lat_deg = (int)lat;  
+  double lat_min=(lat-lat_deg)*60.;
+  int lon_deg = (int)lon;  
+  double lon_min=(lon-lon_deg)*60.;
+  int hh = 0 , mm = 0;
+  double ss = 0.0;
+  hh=ttime.hour();
+  mm=ttime.minute();
+  ss=(double)ttime.second()+0.001*ttime.msec();
+  QString gga;
+  gga += "GPGGA,";
+  gga += QString("%1%2%3,").arg((int)hh, 2, 10, QLatin1Char('0')).arg((int)mm, 2, 10, QLatin1Char('0')).arg((int)ss, 2, 10, QLatin1Char('0'));
+  gga += QString("%1%2,").arg((int)lat_deg,2, 10, QLatin1Char('0')).arg(lat_min, 7, 'f', 4, QLatin1Char('0'));
+  gga += flagN;
+  gga += QString(",%1%2,").arg((int)lon_deg,3, 10, QLatin1Char('0')).arg(lon_min, 7, 'f', 4, QLatin1Char('0'));
+  gga += flagE + QString(",1,05,1.00");
+  gga += QString(",%1,").arg(hei, 2, 'f', 1);
+  gga += QString("M,10.000,M,,");
+  int xori;
+  char XOR = 0;
+  char *Buff =gga.toAscii().data();
+  int iLen = strlen(Buff);
+  for (xori = 0; xori < iLen; xori++) {
+    XOR ^= (char)Buff[xori];
+  }
+  gga = "$" + gga + QString("*%1").arg(XOR, 2, 16, QLatin1Char('0'));
+
+  return gga.toAscii();
+}
+
+// 
+////////////////////////////////////////////////////////////////////////////
+void RSW_to_XYZ(const ColumnVector& rr, const ColumnVector& vv,
+                const ColumnVector& rsw, ColumnVector& xyz) {
+
+  ColumnVector along  = vv / vv.norm_Frobenius();
+  ColumnVector cross  = crossproduct(rr, vv); cross /= cross.norm_Frobenius();
+  ColumnVector radial = crossproduct(along, cross);
+
+  Matrix RR(3,3);
+  RR.Column(1) = radial;
+  RR.Column(2) = along;
+  RR.Column(3) = cross;
+
+  xyz = RR * rsw;
+}
+
+// Transformation xyz --> radial, along track, out-of-plane
+////////////////////////////////////////////////////////////////////////////
+void XYZ_to_RSW(const ColumnVector& rr, const ColumnVector& vv,
+                const ColumnVector& xyz, ColumnVector& rsw) {
+
+  ColumnVector along  = vv / vv.norm_Frobenius();
+  ColumnVector cross  = crossproduct(rr, vv); cross /= cross.norm_Frobenius();
+  ColumnVector radial = crossproduct(along, cross);
+
+  rsw.ReSize(3);
+  rsw(1) = DotProduct(xyz, radial);
+  rsw(2) = DotProduct(xyz, along);
+  rsw(3) = DotProduct(xyz, cross);
+}
+
+// Rectangular Coordinates -> Ellipsoidal Coordinates
+////////////////////////////////////////////////////////////////////////////
+t_irc xyz2ell(const double* XYZ, double* Ell) {
+
+  const double bell = t_CST::aell*(1.0-1.0/t_CST::fInv) ;
+  const double e2   = (t_CST::aell*t_CST::aell-bell*bell)/(t_CST::aell*t_CST::aell) ;
+  const double e2c  = (t_CST::aell*t_CST::aell-bell*bell)/(bell*bell) ;
+  
+  double nn, ss, zps, hOld, phiOld, theta, sin3, cos3;
+
+  ss    = sqrt(XYZ[0]*XYZ[0]+XYZ[1]*XYZ[1]) ;
+  zps   = XYZ[2]/ss ;
+  theta = atan( (XYZ[2]*t_CST::aell) / (ss*bell) );
+  sin3  = sin(theta) * sin(theta) * sin(theta);
+  cos3  = cos(theta) * cos(theta) * cos(theta);
+
+  // Closed formula
+  Ell[0] = atan( (XYZ[2] + e2c * bell * sin3) / (ss - e2 * t_CST::aell * cos3) );  
+  Ell[1] = atan2(XYZ[1],XYZ[0]) ;
+  nn = t_CST::aell/sqrt(1.0-e2*sin(Ell[0])*sin(Ell[0])) ;
+  Ell[2] = ss / cos(Ell[0]) - nn;
+
+  const int MAXITER = 100;
+  for (int ii = 1; ii <= MAXITER; ii++) {
+    nn     = t_CST::aell/sqrt(1.0-e2*sin(Ell[0])*sin(Ell[0])) ;
+    hOld   = Ell[2] ;
+    phiOld = Ell[0] ;
+    Ell[2] = ss/cos(Ell[0])-nn ;
+    Ell[0] = atan(zps/(1.0-e2*nn/(nn+Ell[2]))) ;
+    if ( fabs(phiOld-Ell[0]) <= 1.0e-11 && fabs(hOld-Ell[2]) <= 1.0e-5 ) {
+      return success;
+    }
+  }
+
+  return failure;
+}
+
+// Rectangular Coordinates -> North, East, Up Components
+////////////////////////////////////////////////////////////////////////////
+void xyz2neu(const double* Ell, const double* xyz, double* neu) {
+
+  double sinPhi = sin(Ell[0]);
+  double cosPhi = cos(Ell[0]);
+  double sinLam = sin(Ell[1]);
+  double cosLam = cos(Ell[1]);
+
+  neu[0] = - sinPhi*cosLam * xyz[0]
+           - sinPhi*sinLam * xyz[1]
+           + cosPhi        * xyz[2];
+
+  neu[1] = - sinLam * xyz[0]
+           + cosLam * xyz[1];
+
+  neu[2] = + cosPhi*cosLam * xyz[0]
+           + cosPhi*sinLam * xyz[1]
+           + sinPhi        * xyz[2];
+}
+
+// North, East, Up Components -> Rectangular Coordinates
+////////////////////////////////////////////////////////////////////////////
+void neu2xyz(const double* Ell, const double* neu, double* xyz) {
+
+  double sinPhi = sin(Ell[0]);
+  double cosPhi = cos(Ell[0]);
+  double sinLam = sin(Ell[1]);
+  double cosLam = cos(Ell[1]);
+
+  xyz[0] = - sinPhi*cosLam * neu[0]
+           - sinLam        * neu[1]
+           + cosPhi*cosLam * neu[2];
+
+  xyz[1] = - sinPhi*sinLam * neu[0]
+           + cosLam        * neu[1]
+           + cosPhi*sinLam * neu[2];
+
+  xyz[2] = + cosPhi        * neu[0]
+           + sinPhi        * neu[2];
+}
+
+// Fourth order Runge-Kutta numerical integrator for ODEs
+////////////////////////////////////////////////////////////////////////////
+ColumnVector rungeKutta4(
+  double xi,              // the initial x-value
+  const ColumnVector& yi, // vector of the initial y-values
+  double dx,              // the step size for the integration
+  double* acc,            // aditional acceleration
+  ColumnVector (*der)(double x, const ColumnVector& y, double* acc)
+                          // A pointer to a function that computes the 
+                          // derivative of a function at a point (x,y)
+                         ) {
+
+  ColumnVector k1 = der(xi       , yi       , acc) * dx;
+  ColumnVector k2 = der(xi+dx/2.0, yi+k1/2.0, acc) * dx;
+  ColumnVector k3 = der(xi+dx/2.0, yi+k2/2.0, acc) * dx;
+  ColumnVector k4 = der(xi+dx    , yi+k3    , acc) * dx;
+
+  ColumnVector yf = yi + k1/6.0 + k2/3.0 + k3/3.0 + k4/6.0;
+  
+  return yf;
+}
+
+// 
+////////////////////////////////////////////////////////////////////////////
+double djul(int jj, int mm, double tt) {
+  int    ii, kk;
+  double  djul ;
+  if( mm <= 2 ) {
+    jj = jj - 1;
+    mm = mm + 12;
+  }  
+  ii   = jj/100;
+  kk   = 2 - ii + ii/4;
+  djul = (365.25*jj - fmod( 365.25*jj, 1.0 )) - 679006.0;
+  djul = djul + floor( 30.6001*(mm + 1) ) + tt + kk;
+  return djul;
+} 
+
+// 
+////////////////////////////////////////////////////////////////////////////
+void jdgp(double tjul, double & second, int & nweek) {
+  double      deltat;
+  deltat = tjul - 44244.0 ;
+  // current gps week
+  nweek = (int) floor(deltat/7.0);
+  // seconds past midnight of last weekend
+  second = (deltat - (nweek)*7.0)*86400.0;
+}
+
+// 
+////////////////////////////////////////////////////////////////////////////
+void GPSweekFromDateAndTime(const QDateTime& dateTime, 
+                            int& GPSWeek, double& GPSWeeks) {
+
+  static const QDateTime zeroEpoch(QDate(1980, 1, 6),QTime(),Qt::UTC);
+ 
+  GPSWeek = zeroEpoch.daysTo(dateTime) / 7;
+
+  int weekDay = dateTime.date().dayOfWeek() + 1;  // Qt: Monday = 1
+  if (weekDay > 7) weekDay = 1;
+
+  GPSWeeks = (weekDay - 1) * 86400.0
+             - dateTime.time().msecsTo(QTime()) / 1e3; 
+}
+
+// 
+////////////////////////////////////////////////////////////////////////////
+void GPSweekFromYMDhms(int year, int month, int day, int hour, int min,
+                       double sec, int& GPSWeek, double& GPSWeeks) {
+
+  double mjd = djul(year, month, day);
+
+  jdgp(mjd, GPSWeeks, GPSWeek);
+  GPSWeeks += hour * 3600.0 + min * 60.0 + sec;  
+}
+
+// 
+////////////////////////////////////////////////////////////////////////////
+void mjdFromDateAndTime(const QDateTime& dateTime, int& mjd, double& dayfrac) {
+
+  static const QDate zeroDate(1858, 11, 17);
+
+  mjd     = zeroDate.daysTo(dateTime.date());
+
+  dayfrac = (dateTime.time().hour() +
+             (dateTime.time().minute() +
+              (dateTime.time().second() + 
+               dateTime.time().msec() / 1000.0) / 60.0) / 60.0) / 24.0;
+}
+
+// 
+////////////////////////////////////////////////////////////////////////////
+bool findInVector(const vector<QString>& vv, const QString& str) {
+  std::vector<QString>::const_iterator it;
+  for (it = vv.begin(); it != vv.end(); ++it) {
+    if ( (*it) == str) {
+      return true;
+    }
+  }
+  return false;
+}
+
Index: branches/BNC_LM/bncutils.h
===================================================================
--- branches/BNC_LM/bncutils.h	(revision 3570)
+++ branches/BNC_LM/bncutils.h	(revision 3570)
@@ -0,0 +1,74 @@
+// Part of BNC, a utility for retrieving decoding and
+// converting GNSS data streams from NTRIP broadcasters.
+//
+// Copyright (C) 2007
+// German Federal Agency for Cartography and Geodesy (BKG)
+// http://www.bkg.bund.de
+// Czech Technical University Prague, Department of Geodesy
+// http://www.fsv.cvut.cz
+//
+// Email: euref-ip@bkg.bund.de
+//
+// This program is free software; you can redistribute it and/or
+// modify it under the terms of the GNU General Public License
+// as published by the Free Software Foundation, version 2.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+#ifndef BNCUTILS_H
+#define BNCUTILS_H
+
+#include <vector>
+
+#include <QString>
+#include <QDateTime>
+
+#include <newmat.h>
+#include <bncconst.h>
+
+void expandEnvVar(QString& str);
+
+QDateTime dateAndTimeFromGPSweek(int GPSWeek, double GPSWeeks);
+
+void currentGPSWeeks(int& week, double& sec);
+
+QDateTime currentDateAndTimeGPS();
+
+QByteArray ggaString(const QByteArray& latitude, 
+                     const QByteArray& longitude,
+                     const QByteArray& height);
+
+void RSW_to_XYZ(const ColumnVector& rr, const ColumnVector& vv,
+                const ColumnVector& rsw, ColumnVector& xyz);
+
+void XYZ_to_RSW(const ColumnVector& rr, const ColumnVector& vv,
+                const ColumnVector& xyz, ColumnVector& rsw);
+
+t_irc xyz2ell(const double* XYZ, double* Ell);
+
+void xyz2neu(const double* Ell, const double* xyz, double* neu);
+
+void neu2xyz(const double* Ell, const double* neu, double* xyz);
+
+ColumnVector rungeKutta4(double xi, const ColumnVector& yi, double dx,
+                         double* acc,
+	    ColumnVector (*der)(double x, const ColumnVector& y, double* acc));
+
+void GPSweekFromDateAndTime(const QDateTime& dateTime, 
+                            int& GPSWeek, double& GPSWeeks);
+
+void GPSweekFromYMDhms(int year, int month, int day, int hour, int min,
+                       double sec, int& GPSWeek, double& GPSWeeks);
+
+void mjdFromDateAndTime(const QDateTime& dateTime, int& mjd, double& dayfrac);
+
+bool findInVector(const std::vector<QString>& vv, const QString& str);
+
+#endif
Index: branches/BNC_LM/bncversion.h
===================================================================
--- branches/BNC_LM/bncversion.h	(revision 3570)
+++ branches/BNC_LM/bncversion.h	(revision 3570)
@@ -0,0 +1,8 @@
+
+#ifndef BNCVERSION_H
+#define BNCVERSION_H
+
+#define BNCVERSION "2.6"
+#define BNCPGMNAME "BNC 2.6"
+
+#endif
Index: branches/BNC_LM/bncwindow.cpp
===================================================================
--- branches/BNC_LM/bncwindow.cpp	(revision 3570)
+++ branches/BNC_LM/bncwindow.cpp	(revision 3570)
@@ -0,0 +1,2391 @@
+// Part of BNC, a utility for retrieving decoding and
+// converting GNSS data streams from NTRIP broadcasters.
+//
+// Copyright (C) 2007
+// German Federal Agency for Cartography and Geodesy (BKG)
+// http://www.bkg.bund.de
+// Czech Technical University Prague, Department of Geodesy
+// http://www.fsv.cvut.cz
+//
+// Email: euref-ip@bkg.bund.de
+//
+// This program is free software; you can redistribute it and/or
+// modify it under the terms of the GNU General Public License
+// as published by the Free Software Foundation, version 2.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+/* -------------------------------------------------------------------------
+ * BKG NTRIP Client
+ * -------------------------------------------------------------------------
+ *
+ * Class:      bncWindow
+ *
+ * Purpose:    This class implements the main application window.
+ *
+ * Author:     L. Mervart
+ *
+ * Created:    24-Dec-2005
+ *
+ * Changes:    
+ *
+ * -----------------------------------------------------------------------*/
+
+#include <iostream>
+
+#include <unistd.h>
+#include "bncwindow.h" 
+#include "bncapp.h" 
+#include "bncgetthread.h" 
+#include "bnctabledlg.h" 
+#include "bncipport.h" 
+#include "bncudpport.h" 
+#include "bncserialport.h" 
+#include "bnchlpdlg.h" 
+#include "bnchtml.h" 
+#include "bnctableitem.h"
+#include "bncsettings.h"
+#include "bncfigure.h"
+#include "bncfigurelate.h"
+#include "bncfigureppp.h"
+#include "bncversion.h"
+#include "bncbytescounter.h"
+#include "bncsslconfig.h"
+#include "upload/bnccustomtrafo.h"
+#include "upload/bncephuploadcaster.h"
+
+using namespace std;
+
+// Constructor
+////////////////////////////////////////////////////////////////////////////
+bncWindow::bncWindow() {
+
+  _caster    = 0;
+  _casterEph = 0;
+
+  _bncFigure = new bncFigure(this);
+  _bncFigureLate = new bncFigureLate(this);
+  _bncFigurePPP = new bncFigurePPP(this);
+
+  int ww = QFontMetrics(this->font()).width('w');
+  
+  static const QStringList labels = QString("account, Streams:   resource loader / mountpoint, decoder, lat, long, nmea, ntrip, bytes").split(",");
+
+  setMinimumSize(85*ww, 65*ww);
+
+  setWindowTitle(tr("BKG Ntrip Client (BNC) Version " BNCVERSION));
+
+  connect((bncApp*)qApp, SIGNAL(newMessage(QByteArray,bool)), 
+           this, SLOT(slotWindowMessage(QByteArray,bool)));
+
+  // Create Actions
+  // --------------
+  _actHelp = new QAction(tr("&Help Contents"),this);
+  connect(_actHelp, SIGNAL(triggered()), SLOT(slotHelp()));
+
+  _actAbout = new QAction(tr("&About BNC"),this);
+  connect(_actAbout, SIGNAL(triggered()), SLOT(slotAbout()));
+
+  _actFlowchart = new QAction(tr("&Flow Chart"),this);
+  connect(_actFlowchart, SIGNAL(triggered()), SLOT(slotFlowchart()));
+
+  _actFontSel = new QAction(tr("Select &Font"),this);
+  connect(_actFontSel, SIGNAL(triggered()), SLOT(slotFontSel()));
+
+  _actSaveOpt = new QAction(tr("&Save && Reread Configuration"),this);
+  connect(_actSaveOpt, SIGNAL(triggered()), SLOT(slotSaveOptions()));
+
+  _actQuit  = new QAction(tr("&Quit"),this);
+  connect(_actQuit, SIGNAL(triggered()), SLOT(close()));
+
+  _actAddMountPoints = new QAction(tr("Add &Stream"),this);
+  connect(_actAddMountPoints, SIGNAL(triggered()), SLOT(slotAddMountPoints()));
+
+  _actDeleteMountPoints = new QAction(tr("&Delete Stream"),this);
+  connect(_actDeleteMountPoints, SIGNAL(triggered()), SLOT(slotDeleteMountPoints()));
+  _actDeleteMountPoints->setEnabled(false);
+
+  _actGetData = new QAction(tr("Sta&rt"),this);
+  connect(_actGetData, SIGNAL(triggered()), SLOT(slotGetData()));
+
+  _actStop = new QAction(tr("Sto&p"),this);
+  connect(_actStop, SIGNAL(triggered()), SLOT(slotStop()));
+  _actStop->setEnabled(false);
+
+  _actwhatsthis= new QAction(tr("Help ?=Shift+F1"),this);
+  connect(_actwhatsthis, SIGNAL(triggered()), SLOT(slotWhatsThis()));
+
+  CreateMenu();
+  AddToolbar();
+
+  bncSettings settings;
+
+  // Netowrk Options
+  // ---------------
+  _proxyHostLineEdit  = new QLineEdit(settings.value("proxyHost").toString());
+  _proxyPortLineEdit  = new QLineEdit(settings.value("proxyPort").toString());
+
+  connect(_proxyHostLineEdit, SIGNAL(textChanged(const QString &)), 
+          this, SLOT(slotBncTextChanged()));
+
+  _sslCaCertPathLineEdit   = new QLineEdit(settings.value("sslCaCertPath").toString());
+  _ignoreSslErrorsCheckBox = new QCheckBox();
+  _ignoreSslErrorsCheckBox->setCheckState(Qt::CheckState(
+                                          settings.value("ignoreSslErrors").toInt()));
+
+  // General Options
+  // ---------------
+  _logFileLineEdit    = new QLineEdit(settings.value("logFile").toString());
+  _rawOutFileLineEdit = new QLineEdit(settings.value("rawOutFile").toString());
+  _rnxAppendCheckBox  = new QCheckBox();
+  _rnxAppendCheckBox->setCheckState(Qt::CheckState(
+                                    settings.value("rnxAppend").toInt()));
+  _onTheFlyComboBox = new QComboBox();
+  _onTheFlyComboBox->setEditable(false);
+  _onTheFlyComboBox->addItems(QString("1 day,1 hour,1 min").split(","));
+  int ii = _onTheFlyComboBox->findText(settings.value("onTheFlyInterval").toString());
+  if (ii != -1) {
+    _onTheFlyComboBox->setCurrentIndex(ii);
+  }
+  _autoStartCheckBox  = new QCheckBox();
+  _autoStartCheckBox->setCheckState(Qt::CheckState(
+                                    settings.value("autoStart").toInt()));
+
+  // RINEX Observations Options
+  // --------------------------
+  _rnxPathLineEdit    = new QLineEdit(settings.value("rnxPath").toString());
+  _rnxIntrComboBox    = new QComboBox();
+  _rnxIntrComboBox->setEditable(false);
+  _rnxIntrComboBox->addItems(QString("1 min,2 min,5 min,10 min,15 min,30 min,1 hour,1 day").split(","));
+  ii = _rnxIntrComboBox->findText(settings.value("rnxIntr").toString());
+  if (ii != -1) {
+    _rnxIntrComboBox->setCurrentIndex(ii);
+  }
+  _rnxSamplSpinBox    = new QSpinBox();
+  _rnxSamplSpinBox->setMinimum(0);
+  _rnxSamplSpinBox->setMaximum(60);
+  _rnxSamplSpinBox->setSingleStep(5);
+  _rnxSamplSpinBox->setValue(settings.value("rnxSampl").toInt());
+  _rnxSamplSpinBox->setSuffix(" sec");
+  _rnxSkelLineEdit    = new QLineEdit(settings.value("rnxSkel").toString());
+  _rnxSkelLineEdit->setMaximumWidth(5*ww);
+  _rnxScrpLineEdit    = new QLineEdit(settings.value("rnxScript").toString());
+  _rnxV3CheckBox = new QCheckBox();
+  _rnxV3CheckBox->setCheckState(Qt::CheckState(settings.value("rnxV3").toInt()));
+
+  connect(_rnxPathLineEdit, SIGNAL(textChanged(const QString &)), 
+          this, SLOT(slotBncTextChanged()));
+
+  // RINEX Ephemeris Options
+  // -----------------------
+  _ephPathLineEdit    = new QLineEdit(settings.value("ephPath").toString());
+  _ephIntrComboBox    = new QComboBox();
+  _ephIntrComboBox->setEditable(false);
+  _ephIntrComboBox->addItems(QString("1 min,2 min,5 min,10 min,15 min,30 min,1 hour,1 day").split(","));
+  int jj = _ephIntrComboBox->findText(settings.value("ephIntr").toString());
+  if (jj != -1) {
+    _ephIntrComboBox->setCurrentIndex(jj);
+  }
+  _outEphPortLineEdit    = new QLineEdit(settings.value("outEphPort").toString());
+  _ephV3CheckBox = new QCheckBox();
+  _ephV3CheckBox->setCheckState(Qt::CheckState(settings.value("ephV3").toInt()));
+
+  connect(_outEphPortLineEdit, SIGNAL(textChanged(const QString &)),
+          this, SLOT(slotBncTextChanged()));
+
+  connect(_ephPathLineEdit, SIGNAL(textChanged(const QString &)),
+          this, SLOT(slotBncTextChanged()));
+
+  // Broadcast Corrections Options
+  // -----------------------------
+  _corrPathLineEdit    = new QLineEdit(settings.value("corrPath").toString());
+  _corrIntrComboBox    = new QComboBox();
+  _corrIntrComboBox->setEditable(false);
+  _corrIntrComboBox->addItems(QString("1 min,2 min,5 min,10 min,15 min,30 min,1 hour,1 day").split(","));
+  int mm = _corrIntrComboBox->findText(settings.value("corrIntr").toString());
+  if (mm != -1) {
+    _corrIntrComboBox->setCurrentIndex(mm);
+  }
+  _corrPortLineEdit    = new QLineEdit(settings.value("corrPort").toString());
+  _corrTimeSpinBox   = new QSpinBox();
+  _corrTimeSpinBox->setMinimum(0);
+  _corrTimeSpinBox->setMaximum(60);
+  _corrTimeSpinBox->setSingleStep(1);
+  _corrTimeSpinBox->setSuffix(" sec");
+  _corrTimeSpinBox->setValue(settings.value("corrTime").toInt());
+
+  connect(_corrPathLineEdit, SIGNAL(textChanged(const QString &)),
+          this, SLOT(slotBncTextChanged()));
+
+  connect(_corrPortLineEdit, SIGNAL(textChanged(const QString &)),
+          this, SLOT(slotBncTextChanged()));
+
+  // Feed Engine Options
+  // -------------------
+  _outPortLineEdit    = new QLineEdit(settings.value("outPort").toString());
+  _waitTimeSpinBox   = new QSpinBox();
+  _waitTimeSpinBox->setMinimum(1);
+  _waitTimeSpinBox->setMaximum(30);
+  _waitTimeSpinBox->setSingleStep(1);
+  _waitTimeSpinBox->setSuffix(" sec");
+  _waitTimeSpinBox->setValue(settings.value("waitTime").toInt());
+  _binSamplSpinBox    = new QSpinBox();
+  _binSamplSpinBox->setMinimum(0);
+  _binSamplSpinBox->setMaximum(60);
+  _binSamplSpinBox->setSingleStep(5);
+  _binSamplSpinBox->setValue(settings.value("binSampl").toInt());
+  _binSamplSpinBox->setSuffix(" sec");
+  _outFileLineEdit    = new QLineEdit(settings.value("outFile").toString());
+  _outUPortLineEdit   = new QLineEdit(settings.value("outUPort").toString());
+
+  connect(_outPortLineEdit, SIGNAL(textChanged(const QString &)),
+          this, SLOT(slotBncTextChanged()));
+
+  connect(_outFileLineEdit, SIGNAL(textChanged(const QString &)),
+          this, SLOT(slotBncTextChanged()));
+
+  // Serial Output Options
+  // ---------------------
+  _serialMountPointLineEdit = new QLineEdit(settings.value("serialMountPoint").toString());
+  _serialPortNameLineEdit = new QLineEdit(settings.value("serialPortName").toString());
+  _serialBaudRateComboBox = new QComboBox();
+  _serialBaudRateComboBox->addItems(QString("110,300,600,"
+            "1200,2400,4800,9600,19200,38400,57600,115200").split(","));
+  int kk = _serialBaudRateComboBox->findText(settings.value("serialBaudRate").toString());
+  if (kk != -1) {
+    _serialBaudRateComboBox->setCurrentIndex(kk);
+  }
+  _serialFlowControlComboBox = new QComboBox();
+  _serialFlowControlComboBox->addItems(QString("OFF,XONXOFF,HARDWARE").split(","));
+  kk = _serialFlowControlComboBox->findText(settings.value("serialFlowControl").toString());
+  if (kk != -1) {
+    _serialFlowControlComboBox->setCurrentIndex(kk);
+  }
+  _serialDataBitsComboBox = new QComboBox();
+  _serialDataBitsComboBox->addItems(QString("5,6,7,8").split(","));
+  kk = _serialDataBitsComboBox->findText(settings.value("serialDataBits").toString());
+  if (kk != -1) {
+    _serialDataBitsComboBox->setCurrentIndex(kk);
+  }
+  _serialParityComboBox   = new QComboBox();
+  _serialParityComboBox->addItems(QString("NONE,ODD,EVEN,SPACE").split(","));
+  kk = _serialParityComboBox->findText(settings.value("serialParity").toString());
+  if (kk != -1) {
+    _serialParityComboBox->setCurrentIndex(kk);
+  }
+  _serialStopBitsComboBox = new QComboBox();
+  _serialStopBitsComboBox->addItems(QString("1,2").split(","));
+  kk = _serialStopBitsComboBox->findText(settings.value("serialStopBits").toString());
+  if (kk != -1) {
+    _serialStopBitsComboBox->setCurrentIndex(kk);
+  }
+  _serialAutoNMEAComboBox  = new QComboBox();
+  _serialAutoNMEAComboBox->addItems(QString("Auto,Manual").split(","));
+  kk = _serialAutoNMEAComboBox->findText(settings.value("serialAutoNMEA").toString());
+  if (kk != -1) {
+    _serialAutoNMEAComboBox->setCurrentIndex(kk);
+  }
+  _serialFileNMEALineEdit    = new QLineEdit(settings.value("serialFileNMEA").toString());
+  _serialHeightNMEALineEdit  = new QLineEdit(settings.value("serialHeightNMEA").toString());
+
+  connect(_serialMountPointLineEdit, SIGNAL(textChanged(const QString &)),
+          this, SLOT(slotBncTextChanged()));
+
+  connect(_serialAutoNMEAComboBox, SIGNAL(currentIndexChanged(const QString &)),
+          this, SLOT(slotBncTextChanged()));
+
+  // Outages Options
+  // ---------------
+  _obsRateComboBox    = new QComboBox();
+  _obsRateComboBox->setEditable(false);
+  _obsRateComboBox->addItems(QString(",0.1 Hz,0.2 Hz,0.5 Hz,1 Hz,5 Hz").split(","));
+  kk = _obsRateComboBox->findText(settings.value("obsRate").toString());
+  if (kk != -1) {
+    _obsRateComboBox->setCurrentIndex(kk);
+  }
+  _adviseFailSpinBox = new QSpinBox();
+  _adviseFailSpinBox->setMinimum(0);
+  _adviseFailSpinBox->setMaximum(60);
+  _adviseFailSpinBox->setSingleStep(1);
+  _adviseFailSpinBox->setSuffix(" min");
+  _adviseFailSpinBox->setValue(settings.value("adviseFail").toInt());
+  _adviseRecoSpinBox = new QSpinBox();
+  _adviseRecoSpinBox->setMinimum(0);
+  _adviseRecoSpinBox->setMaximum(60);
+  _adviseRecoSpinBox->setSingleStep(1);
+  _adviseRecoSpinBox->setSuffix(" min");
+  _adviseRecoSpinBox->setValue(settings.value("adviseReco").toInt());
+  _adviseScriptLineEdit    = new QLineEdit(settings.value("adviseScript").toString());
+
+  connect(_obsRateComboBox, SIGNAL(currentIndexChanged(const QString &)),
+          this, SLOT(slotBncTextChanged()));
+
+  // Miscellaneous Options
+  // ---------------------
+  _miscMountLineEdit  = new QLineEdit(settings.value("miscMount").toString());
+  _perfIntrComboBox   = new QComboBox();
+  _perfIntrComboBox->setEditable(false);
+  _perfIntrComboBox->addItems(QString(",2 sec, 10 sec,1 min,5 min,15 min,1 hour,6 hours,1 day").split(","));
+  int ll = _perfIntrComboBox->findText(settings.value("perfIntr").toString());
+  if (ll != -1) {
+    _perfIntrComboBox->setCurrentIndex(ll);
+  }
+  _scanRTCMCheckBox  = new QCheckBox();
+  _scanRTCMCheckBox->setCheckState(Qt::CheckState(
+                                    settings.value("scanRTCM").toInt()));
+
+  connect(_miscMountLineEdit, SIGNAL(textChanged(const QString &)),
+          this, SLOT(slotBncTextChanged()));
+
+  // PPP Options
+  // -----------
+  _pppMountLineEdit      = new QLineEdit(settings.value("pppMount").toString());
+  _pppCorrMountLineEdit  = new QLineEdit(settings.value("pppCorrMount").toString());
+  _pppNMEALineEdit       = new QLineEdit(settings.value("nmeaFile").toString());
+  _pppNMEAPortLineEdit   = new QLineEdit(settings.value("nmeaPort").toString());
+  _pppSigCLineEdit       = new QLineEdit(settings.value("pppSigmaCode").toString());
+  _pppSigPLineEdit       = new QLineEdit(settings.value("pppSigmaPhase").toString());
+  _pppSigCrd0            = new QLineEdit(settings.value("pppSigCrd0").toString());
+  _pppSigCrdP            = new QLineEdit(settings.value("pppSigCrdP").toString());
+  _pppSigTrp0            = new QLineEdit(settings.value("pppSigTrp0").toString());
+  _pppSigTrpP            = new QLineEdit(settings.value("pppSigTrpP").toString());
+  _pppAverageLineEdit    = new QLineEdit(settings.value("pppAverage").toString());
+  _pppQuickStartLineEdit = new QLineEdit(settings.value("pppQuickStart").toString());
+  _pppMaxSolGapLineEdit  = new QLineEdit(settings.value("pppMaxSolGap").toString());
+  _pppRefCrdXLineEdit    = new QLineEdit(settings.value("pppRefCrdX").toString());
+  _pppRefCrdYLineEdit    = new QLineEdit(settings.value("pppRefCrdY").toString());
+  _pppRefCrdZLineEdit    = new QLineEdit(settings.value("pppRefCrdZ").toString());
+  _pppRefdNLineEdit      = new QLineEdit(settings.value("pppRefdN").toString());
+  _pppRefdELineEdit      = new QLineEdit(settings.value("pppRefdE").toString());
+  _pppRefdULineEdit      = new QLineEdit(settings.value("pppRefdU").toString());
+  _pppSync               = new QLineEdit(settings.value("pppSync").toString());
+  _pppAntennaLineEdit    = new QLineEdit(settings.value("pppAntenna").toString());
+  _pppAntexLineEdit      = new QLineEdit(settings.value("pppAntex").toString());
+
+
+  _pppSPPComboBox = new QComboBox();
+  _pppSPPComboBox->setEditable(false);
+  _pppSPPComboBox->addItems(QString("PPP,SPP").split(","));
+  int ik = _pppSPPComboBox->findText(settings.value("pppSPP").toString());
+  if (ik != -1) {
+    _pppSPPComboBox->setCurrentIndex(ik);
+  }
+  _pppUsePhaseCheckBox = new QCheckBox();
+  _pppUsePhaseCheckBox->setCheckState(Qt::CheckState(
+                                      settings.value("pppUsePhase").toInt()));
+  _pppEstTropoCheckBox = new QCheckBox();
+  _pppEstTropoCheckBox->setCheckState(Qt::CheckState(
+                                      settings.value("pppEstTropo").toInt()));
+  _pppGLONASSCheckBox = new QCheckBox();
+  _pppGLONASSCheckBox->setCheckState(Qt::CheckState(
+                                    settings.value("pppGLONASS").toInt()));
+  _pppGalileoCheckBox = new QCheckBox();
+  _pppGalileoCheckBox->setCheckState(Qt::CheckState(
+                                    settings.value("pppGalileo").toInt()));
+
+  _pppPlotCoordinates = new QCheckBox();
+  _pppPlotCoordinates->setCheckState(Qt::CheckState(
+                                settings.value("pppPlotCoordinates").toInt()));
+
+  _pppApplySatAntCheckBox = new QCheckBox();
+  _pppApplySatAntCheckBox->setCheckState(Qt::CheckState(
+                                settings.value("pppApplySatAnt").toInt()));
+
+  connect(_pppMountLineEdit, SIGNAL(textChanged(const QString &)),
+          this, SLOT(slotBncTextChanged()));
+
+  connect(_pppCorrMountLineEdit, SIGNAL(textChanged(const QString &)),
+          this, SLOT(slotBncTextChanged()));
+
+  connect(_pppUsePhaseCheckBox, SIGNAL(stateChanged(int)),
+          this, SLOT(slotBncTextChanged()));
+
+  connect(_pppRefCrdXLineEdit, SIGNAL(textChanged(const QString &)),
+          this, SLOT(slotBncTextChanged()));
+  connect(_pppRefCrdYLineEdit, SIGNAL(textChanged(const QString &)),
+          this, SLOT(slotBncTextChanged()));
+  connect(_pppRefCrdZLineEdit, SIGNAL(textChanged(const QString &)),
+          this, SLOT(slotBncTextChanged()));
+  connect(_pppRefdNLineEdit, SIGNAL(textChanged(const QString &)),
+          this, SLOT(slotBncTextChanged()));
+  connect(_pppRefdELineEdit, SIGNAL(textChanged(const QString &)),
+          this, SLOT(slotBncTextChanged()));
+  connect(_pppRefdULineEdit, SIGNAL(textChanged(const QString &)),
+          this, SLOT(slotBncTextChanged()));
+
+  connect(_pppEstTropoCheckBox, SIGNAL(stateChanged(int)),
+          this, SLOT(slotBncTextChanged()));
+
+  connect(_pppSync, SIGNAL(textChanged(const QString &)),
+          this, SLOT(slotBncTextChanged()));
+
+  connect(_pppSPPComboBox, SIGNAL(currentIndexChanged(const QString &)),
+          this, SLOT(slotBncTextChanged()));
+
+  connect(_pppAntexLineEdit, SIGNAL(textChanged(const QString &)),
+          this, SLOT(slotBncTextChanged()));
+
+  connect(_pppQuickStartLineEdit, SIGNAL(textChanged(const QString &)),
+          this, SLOT(slotBncTextChanged()));
+
+  // Streams
+  // -------
+  _mountPointsTable   = new QTableWidget(0,8);
+
+  _mountPointsTable->horizontalHeader()->resizeSection(1,34*ww);
+  _mountPointsTable->horizontalHeader()->resizeSection(2,9*ww);
+  _mountPointsTable->horizontalHeader()->resizeSection(3,7*ww); 
+  _mountPointsTable->horizontalHeader()->resizeSection(4,7*ww); 
+  _mountPointsTable->horizontalHeader()->resizeSection(5,5*ww); 
+  _mountPointsTable->horizontalHeader()->resizeSection(6,5*ww); 
+  _mountPointsTable->horizontalHeader()->setResizeMode(QHeaderView::Interactive);
+  _mountPointsTable->horizontalHeader()->setStretchLastSection(true);
+  _mountPointsTable->horizontalHeader()->setDefaultAlignment(Qt::AlignLeft);
+  _mountPointsTable->setHorizontalHeaderLabels(labels);
+  _mountPointsTable->setGridStyle(Qt::NoPen);
+  _mountPointsTable->setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
+  _mountPointsTable->setSelectionMode(QAbstractItemView::ExtendedSelection);
+  _mountPointsTable->setSelectionBehavior(QAbstractItemView::SelectRows);
+  _mountPointsTable->hideColumn(0);
+  connect(_mountPointsTable, SIGNAL(itemSelectionChanged()), 
+          SLOT(slotSelectionChanged()));
+  populateMountPointsTable();
+
+  _log = new QTextBrowser();
+  _log->setReadOnly(true);
+
+  // Combination
+  // -----------
+  _cmbTable = new QTableWidget(0,3);
+  _cmbTable->setHorizontalHeaderLabels(QString("Mountpoint, AC Name, Weight").split(","));
+  _cmbTable->setSelectionMode(QAbstractItemView::ExtendedSelection);
+  _cmbTable->setSelectionBehavior(QAbstractItemView::SelectRows);
+  _cmbTable->setMaximumWidth(30*ww);
+  _cmbTable->horizontalHeader()->resizeSection(0,10*ww); 
+  _cmbTable->horizontalHeader()->resizeSection(1,8*ww); 
+  _cmbTable->horizontalHeader()->resizeSection(2,8*ww); 
+  _cmbTable->horizontalHeader()->setResizeMode(QHeaderView::Interactive);
+  _cmbTable->horizontalHeader()->setStretchLastSection(true);
+  _cmbTable->horizontalHeader()->setDefaultAlignment(Qt::AlignLeft);
+  
+  _cmbMaxresLineEdit = new QLineEdit(settings.value("cmbMaxres").toString());
+
+  QPushButton* addCmbRowButton = new QPushButton("Add Row");
+  QPushButton* delCmbRowButton = new QPushButton("Delete");
+
+  connect(_cmbTable, SIGNAL(itemSelectionChanged()), 
+          SLOT(slotBncTextChanged()));
+
+  _cmbMethodComboBox = new QComboBox();
+  _cmbMethodComboBox->setEditable(false);
+  _cmbMethodComboBox->addItems(QString("Filter,Single-Epoch").split(","));
+  int im = _cmbMethodComboBox->findText(settings.value("cmbMethod").toString());
+  if (im != -1) {
+    _cmbMethodComboBox->setCurrentIndex(im);
+  }
+
+  // Upload Results
+  // -------------
+  _uploadTable = new QTableWidget(0,9);
+  _uploadTable->setHorizontalHeaderLabels(QString("Host, Port, Mount, Password, System, CoM, SP3 File, RNX File, bytes").split(","));
+  _uploadTable->setSelectionMode(QAbstractItemView::ExtendedSelection);
+  _uploadTable->setSelectionBehavior(QAbstractItemView::SelectRows);
+  _uploadTable->horizontalHeader()->resizeSection(0,13*ww); 
+  _uploadTable->horizontalHeader()->resizeSection(1,5*ww); 
+  _uploadTable->horizontalHeader()->resizeSection(2,6*ww); 
+  _uploadTable->horizontalHeader()->resizeSection(3,8*ww); 
+  _uploadTable->horizontalHeader()->resizeSection(4,11*ww); 
+  _uploadTable->horizontalHeader()->resizeSection(5,4*ww); 
+  _uploadTable->horizontalHeader()->resizeSection(6,15*ww); 
+  _uploadTable->horizontalHeader()->resizeSection(7,15*ww); 
+  _uploadTable->horizontalHeader()->resizeSection(8,10*ww); 
+  _uploadTable->horizontalHeader()->setResizeMode(QHeaderView::Interactive);
+  _uploadTable->horizontalHeader()->setStretchLastSection(true);
+  _uploadTable->horizontalHeader()->setDefaultAlignment(Qt::AlignLeft);
+
+  QPushButton* addUploadRowButton = new QPushButton("Add Row");
+  QPushButton* delUploadRowButton = new QPushButton("Del Row");
+  QPushButton* setUploadTrafoButton = new QPushButton("Custom Trafo");
+  _uploadIntrComboBox = new QComboBox;
+  _uploadSamplSpinBox = new QSpinBox; 
+  _uploadIntrComboBox->setEditable(false);
+  _uploadIntrComboBox->addItems(QString("1 day,1 hour, 30 min,15 min,10 min,5 min,2 min,1 min").split(","));
+  ii = _uploadIntrComboBox->findText(settings.value("uploadIntr").toString());
+  if (ii != -1) {
+    _uploadIntrComboBox->setCurrentIndex(ii);
+  }
+  _uploadSamplSpinBox = new QSpinBox;
+  _uploadSamplSpinBox->setMinimum(0);
+  _uploadSamplSpinBox->setMaximum(60);
+  _uploadSamplSpinBox->setSingleStep(5);
+  _uploadSamplSpinBox->setMaximumWidth(9*ww);
+  _uploadSamplSpinBox->setValue(settings.value("uploadSampl").toInt());
+  _uploadSamplSpinBox->setSuffix(" sec");
+
+  connect(_uploadTable, SIGNAL(itemSelectionChanged()), 
+          SLOT(slotBncTextChanged()));
+
+  // Upload RTCM3 Ephemeris
+  // ----------------------
+  _uploadEphHostLineEdit       = new QLineEdit(settings.value("uploadEphHost").toString());
+  _uploadEphPortLineEdit       = new QLineEdit(settings.value("uploadEphPort").toString());
+  _uploadEphPasswordLineEdit   = new QLineEdit(settings.value("uploadEphPassword").toString());
+  _uploadEphPasswordLineEdit->setEchoMode(QLineEdit::PasswordEchoOnEdit);
+  _uploadEphMountpointLineEdit = new QLineEdit(settings.value("uploadEphMountpoint").toString());
+  _uploadEphSampleSpinBox      = new QSpinBox;
+  _uploadEphSampleSpinBox->setMinimum(5);
+  _uploadEphSampleSpinBox->setMaximum(60);
+  _uploadEphSampleSpinBox->setSingleStep(5);
+  _uploadEphSampleSpinBox->setMaximumWidth(9*ww);
+  _uploadEphSampleSpinBox->setValue(settings.value("uploadEphSample").toInt());
+  _uploadEphSampleSpinBox->setSuffix(" sec");
+  _uploadEphBytesCounter       = new bncBytesCounter;
+
+  // WhatsThis
+  // ---------
+  _proxyHostLineEdit->setWhatsThis(tr("<p>If you are running BNC within a protected Local Area Network (LAN), you might need to use a proxy server to access the Internet. Enter your proxy server IP and port number in case one is operated in front of BNC. If you do not know the IP and port of your proxy server, check the proxy server settings in your Internet browser or ask your network administrator.</p><p>Note that IP streaming is sometimes not allowed in a LAN. In this case you need to ask your network administrator for an appropriate modification of the local security policy or for the installation of a TCP relay to the NTRIP broadcasters. If these are not possible, you might need to run BNC outside your LAN on a network that has unobstructed connection to the Internet.</p>"));
+  _proxyPortLineEdit->setWhatsThis(tr("<p>Enter your proxy server port number in case a proxy is operated in front of BNC.</p>"));
+  _waitTimeSpinBox->setWhatsThis(tr("<p>When feeding a real-time GNSS network engine waiting for synchronized input epoch by epoch, BNC drops whatever is received later than 'Wait for full epoch' seconds. A value of 3 to 5 seconds is recommended, depending on the latency of the incoming streams and the delay acceptable to your real-time GNSS network engine or products.</p>"));
+  _outFileLineEdit->setWhatsThis(tr("Specify the full path to a file where synchronized observations are saved in plain ASCII format. Beware that the size of this file can rapidly increase depending on the number of incoming streams."));
+  _outPortLineEdit->setWhatsThis(tr("BNC can produce synchronized observations in a plain ASCII format on your local host through an IP port. Specify a port number here to activate this function."));
+  _outUPortLineEdit->setWhatsThis(tr("BNC can produce unsynchronized observations in a plain ASCII format on your local host through an IP port. Specify a port number here to activate this function."));
+  _outEphPortLineEdit->setWhatsThis(tr("BNC can produce ephemeris data in RINEX ASCII format on your local host through an IP port. Specify a port number here to activate this function."));
+  _corrPortLineEdit->setWhatsThis(tr("BNC can produce Broadcast Ephemeris Corrections on your local host through an IP port. Specify a port number here to activate this function."));
+  _corrTimeSpinBox->setWhatsThis(tr("<p>Concerning output through IP port, BNC drops Broadcast Ephemeris Corrections received later than 'Wait for full epoch' seconds. A value of 2 to 5 seconds is recommended, depending on the latency of the incoming correction stream(s) and the delay acceptable to your real-time application.</p><p>Specifying a value of '0' means that BNC immediately outputs all incoming Broadcast Epemeris Corrections and does not drop any of them for latency reasons.</p>"));
+  _rnxPathLineEdit->setWhatsThis(tr("Here you specify the path to where the RINEX Observation files will be stored. If the specified directory does not exist, BNC will not create RINEX Observation files.")); 
+  _ephPathLineEdit->setWhatsThis(tr("Specify the path for saving Broadcast Ephemeris data as RINEX Navigation files. If the specified directory does not exist, BNC will not create RINEX Navigation files."));
+  _corrPathLineEdit->setWhatsThis(tr("Specify a directory for saving Broadcast Ephemeris Correction files. If the specified directory does not exist, BNC will not create the files."));
+  _rnxScrpLineEdit->setWhatsThis(tr("<p>Whenever a RINEX Observation file is saved, you might want to compress, copy or upload it immediately via FTP. BNC allows you to execute a script/batch file to carry out these operations. To do that specify the full path of the script/batch file here. BNC will pass the full RINEX Observation file path to the script as a command line parameter (%1 on Windows systems, $1 onUnix/Linux systems).</p>"));
+  _rnxSkelLineEdit->setWhatsThis(tr("<p>BNC allows using personal skeleton files that contain the header records you would like to include. You can derive a personal RINEX header skeleton file from the information given in an up to date sitelog.</p><p>A file in the RINEX Observations 'Directory' with a 'Skeleton extension' suffix is interpreted by BNC as a personal RINEX header skeleton file for the corresponding stream.</p>"));
+  _rnxAppendCheckBox->setWhatsThis(tr("<p>When BNC is started, new files are created by default and any existing files with the same name will be overwritten. However, users might want to append already existing files following a restart of BNC, a system crash or when BNC crashed. Tick 'Append files' to continue with existing files and keep what has been recorded so far.</p>"));
+  _autoStartCheckBox->setWhatsThis(tr("<p>Tick 'Auto start' for auto-start of BNC at startup time in window mode with preassigned processing options.</p>"));
+  _rawOutFileLineEdit->setWhatsThis(tr("<p>Save all data coming in through various streams in the received order and format in one file.</p>"));
+ 
+  _onTheFlyComboBox->setWhatsThis(tr("<p>When operating BNC online in 'no window' mode, some configuration parameters can be changed on-the-fly without interrupting the running process. For that BNC rereads parts of its configuration in pre-defined intervals.<p></p>Select '1 min', '1 hour', or '1 day' to force BNC to reread its configuration every full minute, hour, or day and let in between edited configuration options become effective on-the-fly without terminating uninvolved threads.</p><p>Note that when operating BNC in window mode, on-the-fly changeable configuration options become effective immediately through 'Save & Reread Configuration'.</p>"));
+  _rnxIntrComboBox->setWhatsThis(tr("<p>Select the length of the RINEX Observation file.</p>"));
+  _ephIntrComboBox->setWhatsThis(tr("<p>Select the length of the RINEX Navigation file.</p>"));
+  _corrIntrComboBox->setWhatsThis(tr("<p>Select the length of the Broadcast Ephemeris Correction files.</p>"));
+  _rnxSamplSpinBox->setWhatsThis(tr("<p>Select the RINEX Observation sampling interval in seconds. A value of zero '0' tells BNC to store all received epochs into RINEX.</p>"));
+  _binSamplSpinBox->setWhatsThis(tr("<p>Select the synchronized observation sampling interval in seconds. A value of zero '0' tells BNC to send/store all received epochs.</p>"));
+  _obsRateComboBox->setWhatsThis(tr("<p>BNC can collect all returns (success or failure) coming from a decoder within a certain short time span to then decide whether a stream has an outage or its content is corrupted. The procedure needs a rough estimate of the expected 'Observation rate' of the incoming streams. When a continuous problem is detected, BNC can inform its operator about this event through an advisory note.</p>"));
+  _adviseRecoSpinBox->setWhatsThis(tr("<p>Following a stream outage or a longer series of bad observations, an advisory note is generated when valid observations are received again throughout the 'Recovery threshold' time span. A value of about 5min (default) is recommended.</p><p>A value of zero '0' means that for any stream recovery, however short, BNC immediately generates an advisory note.</p>"));
+  _adviseFailSpinBox->setWhatsThis(tr("<p>An advisory note is generated when no (or only corrupted) observations are seen throughout the 'Failure threshold' time span. A value of 15 min (default) is recommended.</p><p>A value of zero '0' means that for any stream failure, however short, BNC immediately generates an advisory note.</p>"));
+  _logFileLineEdit->setWhatsThis(tr("<p>Records of BNC's activities are shown in the 'Log' tab on the bottom of this window. They can be saved into a file when a valid path is specified in the 'Logfile (full path)' field.</p><p>The logfile name will automatically be extended by a string '_YYMMDD' carrying the current date."));
+  _adviseScriptLineEdit->setWhatsThis(tr("<p>Specify the full path to a script or batch file to handle advisory notes generated in the event of corrupted streams or stream outages. The affected mountpoint and one of the comments 'Begin_Outage', 'End_Outage', 'Begin_Corrupted', or 'End_Corrupted' are passed on to the script as command line parameters.</p><p>The script may have the task to send the advisory notes by email to BNC's operator and/or to the affected stream provider. An empty option field (default) or invalid path means that you don't want to use this option.</p>"));
+  _perfIntrComboBox->setWhatsThis(tr("<p>BNC can average latencies per stream over a certain period of GPS time. The resulting mean latencies are recorded in the 'Log' tab at the end of each 'Log latency' interval together with results of a statistical evaluation (approximate number of covered epochs, data gaps).</p><p>Select a 'Log latency' interval or select the empty option field if you do not want BNC to log latencies and statistical information.</p>"));
+  _mountPointsTable->setWhatsThis(tr("<p>Streams selected for retrieval are listed in the 'Streams' section. Clicking on 'Add Stream' button will open a window that allows the user to select data streams from an NTRIP broadcaster according to their mountpoints. To remove a stream from the 'Streams' list, highlight it by clicking on it and hit the 'Delete Stream' button. You can also remove multiple streams by highlighting them using +Shift and +Ctrl.</p><p>BNC automatically allocates one of its internal decoders to a stream based on the stream's 'format' as given in the sourcetable. BNC allows users to change this selection by editing the decoder string. Double click on the 'decoder' field, enter your preferred decoder and then hit Enter. The accepted decoder strings are 'RTCM_2.x' and 'RTCM_3.x'.</p><p>In case you need to log the raw data as is, BNC allows users to by-pass its decoders and and directly save the input in daily log files. To do this specify the decoder string as 'ZERO'.</p><p>BNC can also retrieve streams from virtual reference stations (VRS). VRS streams are indicated by a 'yes' in the 'nmea' column. To initiate these streams, the approximate latitude/longitude rover position is sent to the NTRIP broadcaster. The default values can be change according to your requirement. Double click on 'lat' and 'long' fields, enter the values you wish to send and then hit Enter.</p>"));
+  _log->setWhatsThis(tr("Records of BNC's activities are shown in the 'Log' tab. The message log covers the communication status between BNC and the NTRIP broadcaster as well as any problems that occur in the communication link, stream availability, stream delay, stream conversion etc."));
+  _bncFigure->setWhatsThis(tr("The bandwidth consumtion per stream is shown in the 'Throughput' tab in bits per second (bps) or kilo bits per second (kbps)."));
+  _bncFigureLate->setWhatsThis(tr("The individual latency of observations in each incoming stream is shown in the 'Latency' tab. Streams not carrying observations (i.e. those providing only broadcast ephemeris messages) are not considered here. Note that the calculation of correct latencies requires the clock of the host computer to be properly synchronized."));
+  _ephV3CheckBox->setWhatsThis(tr("The default format for output of RINEX Navigation data containing Broadcast Ephemeris is RINEX Version 2.11. Select 'Version 3' if you want to output the ephemeris in RINEX Version 3 format."));
+  _rnxV3CheckBox->setWhatsThis(tr("The default format for RINEX Observation files is RINEX Version 2.11. Select 'Version 3' if you want to save the observations in RINEX Version 3 format."));
+  _miscMountLineEdit->setWhatsThis(tr("<p>Specify a mountpoint to apply any of the options shown below. Enter 'ALL' if you want to apply these options to all configured streams.</p><p>An empty option field (default) means that you don't want BNC to apply any of these options.</p>"));
+  _scanRTCMCheckBox->setWhatsThis(tr("<p>Tick 'Scan RTCM' to log the numbers of incomming message types as well as contained antenna coordinates, antenna heigt, and antenna descriptor.</p>"));
+  _serialMountPointLineEdit->setWhatsThis(tr("<p>Enter a 'Mountpoint' to forward the corresponding stream to a serial connected receiver.</p>"));
+  _serialPortNameLineEdit->setWhatsThis(tr("<p>Enter the serial 'Port name' selected for communication with your serial connected receiver. Valid port names are</p><pre>Windows:       COM1, COM2<br>Linux:         /dev/ttyS0, /dev/ttyS1<br>FreeBSD:       /dev/ttyd0, /dev/ttyd1<br>Digital Unix:  /dev/tty01, /dev/tty02<br>HP-UX:         /dev/tty1p0, /dev/tty2p0<br>SGI/IRIX:      /dev/ttyf1, /dev/ttyf2<br>SunOS/Solaris: /dev/ttya, /dev/ttyb</pre><p>Note that you must plug a serial cable in the port defined here before you start BNC.</p>"));
+  _serialBaudRateComboBox->setWhatsThis(tr("<p>Select a 'Baud rate' for the serial output link.</p><p>Note that your selection must equal the baud rate configured to the serial connected receiver. Note further that using a high baud rate is recommended.</p>"));
+  _serialParityComboBox->setWhatsThis(tr("<p>Select the 'Parity' for the serial output link.</p><p>Note that your selection must equal the parity selection configured to the serial connected receiver. Note further that parity is often set to 'NONE'.</p>"));
+  _serialDataBitsComboBox->setWhatsThis(tr("<p>Select the number of 'Data bits' for the serial output link.</p><p>Note that your selection must equal the number of data bits configured to the serial connected receiver. Note further that often 8 data bits are used.</p>"));
+  _serialStopBitsComboBox->setWhatsThis(tr("<p>Select the number of 'Stop bits' for the serial output link.</p><p>Note that your selection must equal the number of stop bits configured to the serial connected receiver. Note further that often 1 stop bit is used.</p>"));
+  _serialFlowControlComboBox->setWhatsThis(tr("<p>Select a 'Flow control' for the serial output link.</p><p>Note that your selection must equal the flow control configured to the serial connected receiver. Select 'OFF' if you don't know better.</p>"));
+  _serialAutoNMEAComboBox->setWhatsThis(tr("<p>Select 'Auto' to automatically forward NMEA-GGA messages coming from your serial connected receiver to the NTRIP broadcaster and/or save them in a file.</p><p>Select 'Manual' only when handling a VRS stream and your serial connected receiver doesn't generate NMEA-GGA messages.</p>"));
+  _serialFileNMEALineEdit->setWhatsThis(tr("<p>Specify the full path to a file where NMEA messages coming from your serial connected receiver are saved.</p>"));
+  _serialHeightNMEALineEdit->setWhatsThis(tr("<p>Specify an approximate 'Height' above mean sea level in meter for your VRS to simulate an inital NMEA-GGA message.</p><p>The setting of this option is ignored in case of streams coming from physical reference stations.</p>"));
+  _pppMountLineEdit->setWhatsThis(tr("<p>Specify an observations stream by its mountpoint from the 'Streams' list compiled below if you want BNC to estimate coordinates for the affected receiver position through a PPP solution. Example: 'FFMJ1'</p><p>Note that PPP in BNC requires to also pull a stream carrying RTCM Version 3 satellite orbit and clock corrections to Broadcast Ephemeris referring to the satellites' Antenna Phase Centers (APC). Stream CLK11 on NTRIP broadcaster products.igs-ip.net is an example.</p><p>Pulling in addition a third stream carrying Broadcast Ephemeris messages in high repetition rate is suggested if such messages are comeing from the receiver in low repetition rate or don't come at all from there.</p>"));
+  _pppCorrMountLineEdit->setWhatsThis(tr("<p>You must specify an orbit/clock corrections stream by its mountpoint from the 'Streams' list compiled below. Example: 'CLK10'</p>"));
+  _pppSPPComboBox->setWhatsThis(tr("<p>Choose between plain Single Point Positioning (SPP) and Precise Point Positioning (PPP).</p>"));
+  _pppUsePhaseCheckBox->setWhatsThis(tr("<p>By default BNC applies a PPP solution using an ionosphere free P3 linear combination of code observations.</p><p>Tick 'Use phase obs' for an ionosphere free L3 linear combination of phase observations.</p>"));
+  _pppEstTropoCheckBox->setWhatsThis(tr("<p>By default BNC does not introduce troposphere parameters when estimating coordinates.</p><p>Tick 'Estimate tropo' to introduce troposphere parameters when estimating coordinates.</p>"));
+  _pppGLONASSCheckBox->setWhatsThis(tr("<p>By default BNC does not use GLONASS observations in PPP mode.</p><p>Tick 'Use GLONASS' for a combined processing of both, GPS and GLONASS observations in PPP mode.</p>"));
+  _pppGalileoCheckBox->setWhatsThis(tr("<p>By default BNC does not use Galileo observations in PPP mode.</p><p>Tick 'Use Galileo' for a combined processing of both, GPS and Galileo observations in PPP mode.</p>"));
+  _pppPlotCoordinates->setWhatsThis(tr("<p>BNC will plot PPP results in the 'PPP Plot' tab as North (red), East (green) and Up (blue) displacements when this option is selected. Values will be either referred to an XYZ reference coordinate (if specified) or referred to the first estimated coordinate. The sliding PPP time series window will cover the period of the latest 5 minutes.</p><p>Note that a PPP time series makes only sense for a stationary operated receiver."));
+  _pppNMEALineEdit->setWhatsThis(tr("<p>Specify the full path to a file where PPP results are saved as NMEA messages.</p>"));
+  _pppNMEAPortLineEdit->setWhatsThis(tr("<p>Specify an IP port number to output PPP results as NMEA messages through an IP port.</p>"));
+  _pppSigCLineEdit->setWhatsThis(tr("<p>Enter a sigma for your code observations in meters.</p><p>The higher the sigma you enter, the less the contribution of code observations to a PPP solution based on a combination of code and phase data. 5.0 (default) is likely to be an appropriate choice.</p>"));
+  _pppQuickStartLineEdit->setWhatsThis(tr("<p>Enter the lenght of a startup period in seconds for which you want to fix the PPP solution to a known XYZ coordinate as introduced above and adjust a sigma 'XYZ Ini' according to the coordinate's precision. Fixing the coordinate is done in BNC through setting the 'Sigma XYZ Noise' you define below temporarily to zero.</p><p>This so-called Quick-Start option allows the PPP solution to rapidly converge. It requires that the antenna remains unmoved on the know position throughout the startup period.</p><p>A value of 120 is likely to be an appropriate choice for 'Quick-Start'. Default is an empty option field, meaning that you don't want BNC to operate in Quick-Start mode.</p>"));
+  _pppMaxSolGapLineEdit->setWhatsThis(tr("<p>Specify a 'Maximum Solution Gap' in seconds. Should the time span between two consecutive solutions exceed this limit, the algorithm returns into the Quick-Start mode and fixes the introduced reference coordinate for the specified Quick-Start period. A value of '120' seconds could be an appropriate choice.</p><p>This option makes only sense for a stationary operated receiver where solution convergence can be enforced because a good approximation for the rover position is known. Default is an empty option field, meaning that you don't want BNC to return into the Quick-Start mode after failures caused i.e. by longer lasting outages.</p>"));
+  _pppSigPLineEdit->setWhatsThis(tr("<p>Enter a sigma for your phase observations in meters.</p><p>The higher the sigma you enter, the less the contribution of phase observations to a PPP solutions based on a combination of code and phase data. 0.02 (default) is likely to be an appropriate choice.</p>"));
+  _pppAverageLineEdit->setWhatsThis(tr("<p>Enter the length of a sliding time window in minutes. BNC will continuously output moving average positions computed from those individual positions obtained most recently throughout this period.</p><p>An empty option field (default) means that you don't want BNC to output moving average positions.</p>"));
+  _pppSigCrd0->setWhatsThis(tr("<p>Enter a sigma in meters for the initial XYZ coordinate componentes. A value of 100.0 (default) may be an appropriate choice. However, this value may be significantly smaller (i.e. 0.01) when starting for example from a station with known XZY position in Quick-Start mode."));
+  _pppSigCrdP->setWhatsThis(tr("<p>Enter a sigma in meters for the white noise of estimated XYZ coordinate components. A value of 100.0 (default) may be appropriate considering the potential movement of a rover position.</p>"));
+  _pppSigTrp0->setWhatsThis(tr("<p>Enter a sigma in meters for the a-priory model based tropospheric delay estimation. A value of 0.1 (default) may be an appropriate choice.</p>"));
+  _pppSigTrpP->setWhatsThis(tr("<p>Enter a sigma in meters per second to describe the expected variation of the tropospheric effect.</p><p>Supposing 1Hz observation data, a value of 1e-6 (default) would mean that the tropospheric effect may vary for 3600 * 1e-6 = 0.0036 meters per hour.</p>"));
+  _pppRefCrdXLineEdit->setWhatsThis(tr("<p>Enter reference coordinate X of the receiver's position.</p>"));
+  _pppRefCrdYLineEdit->setWhatsThis(tr("<p>Enter reference coordinate Y of the receiver's position.</p>"));
+  _pppRefCrdZLineEdit->setWhatsThis(tr("<p>Enter reference coordinate Z of the receiver's position.</p>"));
+  _pppRefdNLineEdit->setWhatsThis(tr("<p>Enter north antenna excentricity.</p>"));
+  _pppRefdELineEdit->setWhatsThis(tr("<p>Enter east antenna excentricity.</p>"));
+  _pppRefdULineEdit->setWhatsThis(tr("<p>Enter up antenna excentricity.</p>"));
+  _bncFigurePPP->setWhatsThis(tr("PPP time series of North (red), East (green) and Up (blue) coordinate components are shown in the 'PPP Plot' tab when the corresponting option is selected above. Values are either referred to an XYZ reference coordinate (if specified) or referred to the first estimated set of coordinate compoments. The sliding PPP time series window covers the period of the latest 5 minutes."));
+  _pppSync->setWhatsThis(tr(
+    "<p> Zero value (or empty field, default) means that BNC processes each epoch of data "
+    "immediately after its arrival using satellite clock corrections available at "
+    "that time.</p><p> Non-zero value 'Sync Corr' (i.e. 5) means that the epochs of data "
+    "are buffered and the processing of each epoch is postponed till the satellite clock "
+    "corrections not older than 'Sync Corr' seconds are available.<p>"));
+  _pppAntexLineEdit->setWhatsThis(tr("<p>IGS provides a file containing absolute phase center corrections for GNSS satellite and receiver antennas in ANTEX format. Entering the full path to such an ANTEX file is required for correcting observations for antenna phase center offsets and variations. It allows you to specify the name of your receiver's antenna (as contained in the ANTEX file) to apply such corrections.</p><p>Default is an empty option field meaning that you don't want to correct observations for antenna phase center offsets and variations.</p>"));
+  _pppAntennaLineEdit->setWhatsThis(tr("<p>Specify the receiver's antenna name as defined in your ANTEX file. Observations will be corrected for the antenna phase center's offset which may result in a reduction of a few centimeters at max. Corrections for phase center variations are not yet applied by BNC. The specified name must consist of 20 characters. Add trailing blanks if the antenna name has less then 20 characters.</p><p>Default is an empty option field meaning that you don't want to correct observations for antenna phase center offsets.</p>"));
+  _pppApplySatAntCheckBox->setWhatsThis(tr("<p>This option is not yet working.</p><p>Satellite orbit and clock corrections refer to the satellite's antenna phase centers and hence observations are actually <u>not</u> to be corrected for satellite antenna phase center offsets. However, you may like to tick 'Apply Offsets' to force BNC to correct observations for satellite antenna phase center offsets.</p><p>Default is to <u>not</u> correct observations for satellite antenna phase center offsets."));
+  _cmbTable->setWhatsThis(tr("<p>BNC allows to process several orbit and clock corrections streams in real-time to produce, encode, upload and save a combination of correctors from various providers. Hit the 'Add Row' button, Double click on the 'Mountpoint' field to enter a Broadcast Ephemeris corrections mountpoint from the 'Streams' section below and hit Enter. Then double click on the 'AC Name' field to enter your choice of an abbreviation for the Analysis Center (AC) providing the stream. Finally, double click on the 'Weight' field to enter the weight to be applied for this stream in the combination.</p><p>Note that an appropriate 'Wait for full epoch' value needs to be specified for the combination under the 'Broadcast Corrections' tab. A value of 15 seconds would make sense there if the update rate of incoming clock corrections is i.e. 10 seconds.</p><p>Note further that the sequence of rows in the 'Combination Table' is of importance because the orbit information in the final combination stream is just copied from the stream listed in the first row. Hence the first line in the 'Combination Table' defines a kind of 'Master AC'. The update rate of the combination product follows the 'Master AC's update rate.</p><p>The combination process requires Broadcast Ephemeris. Besides the orbit and clock corrections stream(s) BNC must therefore pull a stream carrying Broadcast Ephemeris in the form of RTCM Version 3 messages.</p>"));
+  addCmbRowButton->setWhatsThis(tr("Hit 'Add Row' button to add another line to the mountpoints table."));
+  delCmbRowButton->setWhatsThis(tr("Hit 'Delete' button to delete the highlighted line from the mountpoints table."));
+
+  // Canvas with Editable Fields
+  // ---------------------------
+  _canvas = new QWidget;
+  setCentralWidget(_canvas);
+
+  _aogroup = new QTabWidget();
+  QWidget* pgroup = new QWidget();
+  QWidget* ggroup = new QWidget();
+  QWidget* sgroup = new QWidget();
+  QWidget* egroup = new QWidget();
+  QWidget* agroup = new QWidget();
+  QWidget* cgroup = new QWidget();
+  QWidget* ogroup = new QWidget();
+  QWidget* rgroup = new QWidget();
+  QWidget* sergroup = new QWidget();
+  QWidget* pppgroup = new QWidget();
+  QWidget* ppp2group = new QWidget();
+  QWidget* cmbgroup = new QWidget();
+  QWidget* uploadgroup = new QWidget();
+  QWidget* uploadEphgroup = new QWidget();
+  _aogroup->addTab(pgroup,tr("Network"));
+  _aogroup->addTab(ggroup,tr("General"));
+  _aogroup->addTab(ogroup,tr("RINEX Observations"));
+  _aogroup->addTab(egroup,tr("RINEX Ephemeris"));
+  _aogroup->addTab(cgroup,tr("Broadcast Corrections"));
+  _aogroup->addTab(sgroup,tr("Feed Engine"));
+  _aogroup->addTab(sergroup,tr("Serial Output"));
+  _aogroup->addTab(agroup,tr("Outages"));
+  _aogroup->addTab(rgroup,tr("Miscellaneous"));
+  _aogroup->addTab(pppgroup,tr("PPP (1)"));
+  _aogroup->addTab(ppp2group,tr("PPP (2)"));
+#ifdef USE_COMBINATION
+  _aogroup->addTab(cmbgroup,tr("Combination"));
+#endif
+  _aogroup->addTab(uploadgroup,tr("Upload (clk)"));
+  _aogroup->addTab(uploadEphgroup,tr("Upload (eph)"));
+
+  // Log Tab
+  // -------
+  _loggroup = new QTabWidget();
+  _loggroup->addTab(_log,tr("Log"));
+  _loggroup->addTab(_bncFigure,tr("Throughput"));
+  _loggroup->addTab(_bncFigureLate,tr("Latency"));
+  _loggroup->addTab(_bncFigurePPP,tr("PPP Plot"));
+
+  // Netowork (Proxy and SSL) Tab
+  // ----------------------------
+  QGridLayout* pLayout = new QGridLayout;
+  pLayout->setColumnMinimumWidth(0,13*ww);
+  _proxyPortLineEdit->setMaximumWidth(9*ww);
+
+  pLayout->addWidget(new QLabel("Proxy host"),                   0, 0);
+  pLayout->addWidget(_proxyHostLineEdit,                         0, 1, 1,10);
+  pLayout->addWidget(new QLabel("Proxy port"),                   1, 0);
+  pLayout->addWidget(_proxyPortLineEdit,                         1, 1);
+  pLayout->addWidget(new QLabel("Settings for proxy in protected networks, leave boxes blank if none."),2, 0, 1, 50, Qt::AlignLeft);
+  pLayout->addWidget(new QLabel("    "),3,0);
+  pLayout->addWidget(new QLabel("    "),4,0);
+  pLayout->addWidget(new QLabel("Path to SSL Certificates"),     5, 0);
+  pLayout->addWidget(_sslCaCertPathLineEdit,                     5, 1, 1,10);
+  pLayout->addWidget(new QLabel("default:  " + bncSslConfig::defaultPath()), 5, 12, 1,20);
+  pLayout->addWidget(new QLabel("Ignore SSL Authorization Errors"), 6,0);
+  pLayout->addWidget(_ignoreSslErrorsCheckBox,                     6, 1, 1,10);
+  pLayout->addWidget(new QLabel("Settings for SSL Authorization."),7, 0, 1, 50, Qt::AlignLeft);
+  pgroup->setLayout(pLayout);
+
+  // General Tab
+  // -----------
+  QGridLayout* gLayout = new QGridLayout;
+  gLayout->setColumnMinimumWidth(0,14*ww);
+  _onTheFlyComboBox->setMaximumWidth(9*ww);
+
+  gLayout->addWidget(new QLabel("Logfile (full path)"),          0, 0);
+  gLayout->addWidget(_logFileLineEdit,                           0, 1, 1,30); // 1
+  gLayout->addWidget(new QLabel("Append files"),                 1, 0);
+  gLayout->addWidget(_rnxAppendCheckBox,                         1, 1);
+  gLayout->addWidget(new QLabel("Reread configuration"),         2, 0);
+  gLayout->addWidget(_onTheFlyComboBox,                          2, 1);
+  gLayout->addWidget(new QLabel("Auto start"),                   3, 0);
+  gLayout->addWidget(_autoStartCheckBox,                         3, 1);
+  gLayout->addWidget(new QLabel("Raw output file (full path)"),  4, 0);
+  gLayout->addWidget(_rawOutFileLineEdit,                        4, 1, 1,30);
+  gLayout->addWidget(new QLabel("General settings for logfile, file handling, configuration on-the-fly, and auto-start."),5, 0, 1, 50, Qt::AlignLeft);
+  ggroup->setLayout(gLayout);
+
+  // RINEX Observations
+  // ------------------
+  QGridLayout* oLayout = new QGridLayout;
+  oLayout->setColumnMinimumWidth(0,14*ww);
+  _rnxIntrComboBox->setMaximumWidth(9*ww);
+  _rnxSamplSpinBox->setMaximumWidth(9*ww);
+
+  oLayout->addWidget(new QLabel("Directory"),                     0, 0);
+  oLayout->addWidget(_rnxPathLineEdit,                            0, 1,1,24);
+  oLayout->addWidget(new QLabel("Interval"),                      1, 0);
+  oLayout->addWidget(_rnxIntrComboBox,                            1, 1);
+  oLayout->addWidget(new QLabel("  Sampling"),                    1, 2, Qt::AlignRight);
+  oLayout->addWidget(_rnxSamplSpinBox,                            1, 3, Qt::AlignLeft);
+  oLayout->addWidget(new QLabel("Skeleton extension"),            2, 0);
+  oLayout->addWidget(_rnxSkelLineEdit,                            2, 1,1,1, Qt::AlignLeft);
+  oLayout->addWidget(new QLabel("Script (full path)"),            3, 0);
+  oLayout->addWidget(_rnxScrpLineEdit,                            3, 1,1,24);
+  oLayout->addWidget(new QLabel("Version 3"),                     4, 0);
+  oLayout->addWidget(_rnxV3CheckBox,                              4, 1);
+  oLayout->addWidget(new QLabel("Saving RINEX observation files."),5,0,1,50, Qt::AlignLeft);
+  ogroup->setLayout(oLayout);
+
+  // RINEX Ephemeris
+  // ---------------
+  QGridLayout* eLayout = new QGridLayout;
+  eLayout->setColumnMinimumWidth(0,14*ww);
+  _ephIntrComboBox->setMaximumWidth(9*ww);
+  _outEphPortLineEdit->setMaximumWidth(9*ww);
+
+  eLayout->addWidget(new QLabel("Directory"),                     0, 0);
+  eLayout->addWidget(_ephPathLineEdit,                            0, 1, 1,30);
+  eLayout->addWidget(new QLabel("Interval"),                      1, 0);
+  eLayout->addWidget(_ephIntrComboBox,                            1, 1);
+  eLayout->addWidget(new QLabel("Port"),                          2, 0);
+  eLayout->addWidget(_outEphPortLineEdit,                         2, 1);
+  eLayout->addWidget(new QLabel("Version 3"),                     3, 0);
+  eLayout->addWidget(_ephV3CheckBox,                              3, 1);
+  eLayout->addWidget(new QLabel("Saving RINEX ephemeris files and ephemeris output through IP port."),4,0,1,50,Qt::AlignLeft);
+  eLayout->addWidget(new QLabel("    "),5,0);
+  egroup->setLayout(eLayout);
+
+
+  // Broadcast Corrections
+  // ---------------------
+  QGridLayout* cLayout = new QGridLayout;
+  cLayout->setColumnMinimumWidth(0,14*ww);
+  _corrIntrComboBox->setMaximumWidth(9*ww);
+  _corrPortLineEdit->setMaximumWidth(9*ww);
+  _corrTimeSpinBox->setMaximumWidth(9*ww);
+
+  cLayout->addWidget(new QLabel("Directory, ASCII"),              0, 0);
+  cLayout->addWidget(_corrPathLineEdit,                           0, 1,1,20);
+  cLayout->addWidget(new QLabel("Interval"),                      1, 0);
+  cLayout->addWidget(_corrIntrComboBox,                           1, 1);
+  cLayout->addWidget(new QLabel("Port"),                          2, 0);
+  cLayout->addWidget(_corrPortLineEdit,                           2, 1);
+  cLayout->addWidget(new QLabel("  Wait for full epoch"),         2, 2, Qt::AlignRight);
+  cLayout->addWidget(_corrTimeSpinBox,                            2, 3, Qt::AlignLeft);
+  cLayout->addWidget(new QLabel("Saving Broadcast Ephemeris correction files and correction output through IP port."),3,0,1,50);
+  cLayout->addWidget(new QLabel("    "),4,0);
+  cLayout->addWidget(new QLabel("    "),5,0);
+  cgroup->setLayout(cLayout);
+
+  // Feed Engine
+  // -----------
+  QGridLayout* sLayout = new QGridLayout;
+  sLayout->setColumnMinimumWidth(0,14*ww);
+  _outPortLineEdit->setMaximumWidth(9*ww);
+  _waitTimeSpinBox->setMaximumWidth(9*ww);
+  _binSamplSpinBox->setMaximumWidth(9*ww);
+  _outUPortLineEdit->setMaximumWidth(9*ww);
+
+  sLayout->addWidget(new QLabel("Port"),                          0, 0);
+  sLayout->addWidget(_outPortLineEdit,                            0, 1);
+  sLayout->addWidget(new QLabel("Wait for full epoch"),           0, 2, Qt::AlignRight);
+  sLayout->addWidget(_waitTimeSpinBox,                            0, 3, Qt::AlignLeft);
+  sLayout->addWidget(new QLabel("Sampling"),                      1, 0);
+  sLayout->addWidget(_binSamplSpinBox,                            1, 1, Qt::AlignLeft);
+  sLayout->addWidget(new QLabel("File (full path)"),              2, 0);
+  sLayout->addWidget(_outFileLineEdit,                            2, 1, 1, 20);
+  sLayout->addWidget(new QLabel("Port (unsynchronized)"),         3, 0);
+  sLayout->addWidget(_outUPortLineEdit,                           3, 1);
+  sLayout->addWidget(new QLabel("Output decoded observations in a binary format to feed a real-time GNSS network engine."),4,0,1,50);
+  sLayout->addWidget(new QLabel("    "),5,0);
+  sgroup->setLayout(sLayout);
+
+  // Serial Output
+  // -------------
+  QGridLayout* serLayout = new QGridLayout;
+  serLayout->setColumnMinimumWidth(0,14*ww);
+  _serialBaudRateComboBox->setMaximumWidth(9*ww);
+  _serialFlowControlComboBox->setMaximumWidth(11*ww);
+  _serialDataBitsComboBox->setMaximumWidth(5*ww);
+  _serialParityComboBox->setMaximumWidth(9*ww);
+  _serialStopBitsComboBox->setMaximumWidth(5*ww);
+  _serialAutoNMEAComboBox->setMaximumWidth(9*ww);
+  _serialHeightNMEALineEdit->setMaximumWidth(8*ww);
+
+  serLayout->addWidget(new QLabel("Mountpoint"),                  0,0, Qt::AlignLeft);
+  serLayout->addWidget(_serialMountPointLineEdit,                 0,1,1,2);
+  serLayout->addWidget(new QLabel("Port name"),                   1,0, Qt::AlignLeft);
+  serLayout->addWidget(_serialPortNameLineEdit,                   1,1,1,2);
+  serLayout->addWidget(new QLabel("Baud rate"),                   2,0, Qt::AlignLeft);
+  serLayout->addWidget(_serialBaudRateComboBox,                   2,1);
+  serLayout->addWidget(new QLabel("Flow control"),                2,2, Qt::AlignRight);
+  serLayout->addWidget(_serialFlowControlComboBox,                2,3);
+  serLayout->addWidget(new QLabel("Data bits"),                   3,0, Qt::AlignLeft);
+  serLayout->addWidget(_serialDataBitsComboBox,                   3,1);
+  serLayout->addWidget(new QLabel("Parity"),                      3,2, Qt::AlignRight);
+  serLayout->addWidget(_serialParityComboBox,                     3,3);
+  serLayout->addWidget(new QLabel("   Stop bits"),                3,4, Qt::AlignRight);
+  serLayout->addWidget(_serialStopBitsComboBox,                   3,5);
+  serLayout->addWidget(new QLabel("NMEA"),                        4,0);
+  serLayout->addWidget(_serialAutoNMEAComboBox,                   4,1);
+  serLayout->addWidget(new QLabel("   File (full path)"),         4,2, Qt::AlignRight);
+  serLayout->addWidget(_serialFileNMEALineEdit,                   4,3,1,15);
+  serLayout->addWidget(new QLabel("Height"),                      4,20, Qt::AlignRight);
+  serLayout->addWidget(_serialHeightNMEALineEdit,                 4,21,1,11);
+  serLayout->addWidget(new QLabel("Port settings to feed a serial connected receiver."),5,0,1,30);
+
+  sergroup->setLayout(serLayout);
+
+  // Outages
+  // -------
+  QGridLayout* aLayout = new QGridLayout;
+  aLayout->setColumnMinimumWidth(0,14*ww);
+  _obsRateComboBox->setMaximumWidth(9*ww);
+  _adviseFailSpinBox->setMaximumWidth(9*ww);
+  _adviseRecoSpinBox->setMaximumWidth(9*ww);
+
+  aLayout->addWidget(new QLabel("Observation rate"),              0, 0);
+  aLayout->addWidget(_obsRateComboBox,                            0, 1);
+  aLayout->addWidget(new QLabel("Failure threshold"),             1, 0);
+  aLayout->addWidget(_adviseFailSpinBox,                          1, 1);
+  aLayout->addWidget(new QLabel("Recovery threshold"),            2, 0);
+  aLayout->addWidget(_adviseRecoSpinBox,                          2, 1);
+  aLayout->addWidget(new QLabel("Script (full path)"),            3, 0);
+  aLayout->addWidget(_adviseScriptLineEdit,                       3, 1,1,30);
+  aLayout->addWidget(new QLabel("Failure and recovery reports, advisory notes."),4,0,1,50,Qt::AlignLeft);
+  aLayout->addWidget(new QLabel("    "),                          5, 0);
+  agroup->setLayout(aLayout);
+
+  // Miscellaneous
+  // -------------
+  QGridLayout* rLayout = new QGridLayout;
+  rLayout->setColumnMinimumWidth(0,14*ww);
+  _perfIntrComboBox->setMaximumWidth(9*ww);
+
+  rLayout->addWidget(new QLabel("Mountpoint"),                    0, 0);
+  rLayout->addWidget(_miscMountLineEdit,                          0, 1, 1,7);
+  rLayout->addWidget(new QLabel("Log latency"),                   1, 0);
+  rLayout->addWidget(_perfIntrComboBox,                           1, 1);
+  rLayout->addWidget(new QLabel("Scan RTCM"),                     2, 0);
+  rLayout->addWidget(_scanRTCMCheckBox,                           2, 1);
+  rLayout->addWidget(new QLabel("Log latencies or scan RTCM streams for numbers of message types and antenna information."),3, 0,1,30);
+  rLayout->addWidget(new QLabel("    "),                          4, 0);
+  rLayout->addWidget(new QLabel("    "),                          5, 0);
+  rgroup->setLayout(rLayout);
+
+  // PPP Client
+  // ----------
+  QGridLayout* pppLayout = new QGridLayout;
+  _pppSigCLineEdit->setMaximumWidth(6*ww);
+  _pppSigPLineEdit->setMaximumWidth(6*ww);
+  _pppSigCrd0->setMaximumWidth(6*ww);
+  _pppSigCrdP->setMaximumWidth(6*ww);
+  _pppSigTrp0->setMaximumWidth(6*ww);
+  _pppSigTrpP->setMaximumWidth(6*ww);
+  _pppAverageLineEdit->setMaximumWidth(6*ww);
+  _pppQuickStartLineEdit->setMaximumWidth(6*ww);
+  _pppMaxSolGapLineEdit->setMaximumWidth(6*ww);
+  _pppRefCrdXLineEdit->setMaximumWidth(10*ww);
+  _pppRefCrdYLineEdit->setMaximumWidth(10*ww);
+  _pppRefCrdZLineEdit->setMaximumWidth(10*ww);
+  _pppRefdNLineEdit->setMaximumWidth(5*ww);
+  _pppRefdELineEdit->setMaximumWidth(5*ww);
+  _pppRefdULineEdit->setMaximumWidth(5*ww);
+  _pppSync->setMaximumWidth(6*ww);
+  _pppSPPComboBox->setMaximumWidth(8*ww);
+  _pppNMEAPortLineEdit->setMaximumWidth(6*ww);
+  pppLayout->addWidget(new QLabel("Obs Mountpoint"),         0, 0);
+  pppLayout->addWidget(_pppMountLineEdit,                    0, 1);
+  pppLayout->addWidget(_pppSPPComboBox,                      0, 2);
+  pppLayout->addWidget(new QLabel("          X   "),         0, 3, Qt::AlignRight);
+  pppLayout->addWidget(_pppRefCrdXLineEdit,                  0, 4);
+  pppLayout->addWidget(new QLabel("        Y   "),           0, 5, Qt::AlignRight);
+  pppLayout->addWidget(_pppRefCrdYLineEdit,                  0, 6);
+  pppLayout->addWidget(new QLabel("      Z   "),             0, 7, Qt::AlignRight);
+  pppLayout->addWidget(_pppRefCrdZLineEdit,                  0, 8);
+  pppLayout->addWidget(new QLabel("Corr Mountpoint "),       1, 0);
+  pppLayout->addWidget(_pppCorrMountLineEdit,                1, 1);
+  pppLayout->addWidget(new QLabel("         dN   "),         1, 3, Qt::AlignRight);
+  pppLayout->addWidget(_pppRefdNLineEdit,                    1, 4);
+  pppLayout->addWidget(new QLabel("       dE   "),           1, 5, Qt::AlignRight);
+  pppLayout->addWidget(_pppRefdELineEdit,                    1, 6);
+  pppLayout->addWidget(new QLabel("     dU   "),             1, 7, Qt::AlignRight);
+  pppLayout->addWidget(_pppRefdULineEdit,                    1, 8);
+  pppLayout->addWidget(new QLabel("Options"),                2, 0, 1, 5);
+  pppLayout->addWidget(_pppUsePhaseCheckBox,                 2, 1, Qt::AlignRight);
+  pppLayout->addWidget(new QLabel("Use phase obs"),          2, 2);
+  pppLayout->addWidget(_pppEstTropoCheckBox,                 2, 3, Qt::AlignRight);
+  pppLayout->addWidget(new QLabel("Estimate tropo"),         2, 4);
+  pppLayout->addWidget(_pppGLONASSCheckBox,                  2, 5, Qt::AlignRight);
+  pppLayout->addWidget(new QLabel("Use GLONASS"),            2, 6);
+  pppLayout->addWidget(_pppGalileoCheckBox,                  2, 7, Qt::AlignRight);
+  pppLayout->addWidget(new QLabel("Use Galileo     "),       2, 8);
+  pppLayout->addWidget(new QLabel("Options cont'd"),         3, 0);  
+  pppLayout->addWidget(_pppSigCrd0,                          3, 1, Qt::AlignRight);
+  pppLayout->addWidget(new QLabel("Sigma XYZ Init "),        3, 2);
+  pppLayout->addWidget(_pppSigCrdP,                          3, 3, Qt::AlignRight);
+  pppLayout->addWidget(new QLabel("Sigma XYZ Noise  "),      3, 4);
+  pppLayout->addWidget(_pppQuickStartLineEdit,               3, 5, Qt::AlignRight);
+  pppLayout->addWidget(new QLabel("Quick-Start (sec)  "),    3, 6);  
+  pppLayout->addWidget(_pppMaxSolGapLineEdit,                3, 7, Qt::AlignRight);
+  pppLayout->addWidget(new QLabel("Max Sol. Gap (sec)"),     3, 8);  
+  pppLayout->addWidget(new QLabel("Output"),                 4, 0); 
+  pppLayout->addWidget(_pppNMEALineEdit,                     4, 1, 1, 3);
+  pppLayout->addWidget(new QLabel("NMEA File"),              4, 4); 
+  pppLayout->addWidget(_pppNMEAPortLineEdit,                 4, 5, Qt::AlignRight);
+  pppLayout->addWidget(new QLabel("NMEA Port"),              4, 6);
+  pppLayout->addWidget(_pppPlotCoordinates,                  4, 7, Qt::AlignRight);
+  pppLayout->addWidget(new QLabel("PPP Plot"),               4, 8);
+
+
+  pppLayout->addWidget(new QLabel("Coordinates from Precise Point Positioning (PPP)."),5, 0,1,5);
+
+  pppgroup->setLayout(pppLayout);
+
+  // PPP Client (second panel)
+  // -------------------------
+  QGridLayout* ppp2Layout = new QGridLayout;
+
+  ppp2Layout->addWidget(new QLabel("Antennas"),                    0, 0);
+  ppp2Layout->addWidget(_pppAntexLineEdit,                         0, 1, 1, 3);
+  ppp2Layout->addWidget(new QLabel("ANTEX File   "),               0, 4);
+  ppp2Layout->addWidget(_pppAntennaLineEdit,                       0, 5, 1, 3);
+  ppp2Layout->addWidget(new QLabel("Rec. Ant. Name"),              0, 8);
+  ppp2Layout->addWidget(new QLabel("Satellite Antenna   "),        1, 0);
+  ppp2Layout->addWidget(_pppApplySatAntCheckBox,                   1, 1, Qt::AlignRight);
+  ppp2Layout->addWidget(new QLabel("Apply Offsets"),               1, 2, Qt::AlignLeft);
+  ppp2Layout->addWidget(new QLabel("Sigmas"),                      2, 0);
+  ppp2Layout->addWidget(_pppSigCLineEdit,                          2, 1, Qt::AlignRight);
+  ppp2Layout->addWidget(new QLabel("Code"),                        2, 2);
+  ppp2Layout->addWidget(_pppSigPLineEdit,                          2, 3);
+  ppp2Layout->addWidget(new QLabel("Phase"),                       2, 4);
+  ppp2Layout->addWidget(_pppSigTrp0,                               2, 5, Qt::AlignRight);
+  ppp2Layout->addWidget(new QLabel("Tropo Init        "),          2, 6);
+  ppp2Layout->addWidget(_pppSigTrpP,                               2, 7);
+  ppp2Layout->addWidget(new QLabel("Tropo White Noise"),           2, 8);
+  ppp2Layout->addWidget(new QLabel("Options cont'd"),              3, 0);
+  ppp2Layout->addWidget(_pppSync,                                  3, 1);
+  ppp2Layout->addWidget(new QLabel("Sync Corr (sec)   "),          3, 2);
+  ppp2Layout->addWidget(_pppAverageLineEdit,                       3, 3, Qt::AlignRight);
+  ppp2Layout->addWidget(new QLabel("Averaging (min)") ,            3, 4);  
+  ppp2Layout->addWidget(new QLabel("Coordinates from Precise Point Positioning (PPP), continued."), 4, 0, 1, 6);
+  ppp2Layout->addWidget(new QLabel("    "),                      5, 0);
+
+  ppp2group->setLayout(ppp2Layout);
+
+  // Combination
+  // -----------
+  QGridLayout* cmbLayout = new QGridLayout;
+
+  populateCmbTable();
+  cmbLayout->addWidget(_cmbTable,0,0,6,3);
+
+  cmbLayout->addWidget(addCmbRowButton,1,3);
+  connect(addCmbRowButton, SIGNAL(clicked()), this, SLOT(slotAddCmbRow()));
+  cmbLayout->addWidget(delCmbRowButton,2,3);
+  cmbLayout->addWidget(new QLabel("Method"), 3, 3);
+  cmbLayout->addWidget(_cmbMethodComboBox,             3, 4, Qt::AlignRight);
+  cmbLayout->addWidget(new QLabel("Maximal Residuum"), 4, 3);
+  cmbLayout->addWidget(_cmbMaxresLineEdit,             4, 4, Qt::AlignRight);
+  connect(delCmbRowButton, SIGNAL(clicked()), this, SLOT(slotDelCmbRow()));
+
+  cmbLayout->addWidget(new QLabel(" Combine Broadcast Ephemeris corrections streams."),5,3,1,3);
+
+  cmbgroup->setLayout(cmbLayout);
+
+  // Upload Layout (Clocks)
+  // ----------------------
+  QGridLayout* uploadHlpLayout = new QGridLayout();
+
+  uploadHlpLayout->addWidget(new QLabel("Upload RTNet or Combination Results"),0,0);
+
+  uploadHlpLayout->addWidget(addUploadRowButton,0,1);
+  connect(addUploadRowButton, SIGNAL(clicked()), this, SLOT(slotAddUploadRow()));
+
+  uploadHlpLayout->addWidget(delUploadRowButton,0,2);
+  connect(delUploadRowButton, SIGNAL(clicked()), this, SLOT(slotDelUploadRow()));
+
+  uploadHlpLayout->addWidget(setUploadTrafoButton,1,1);
+  connect(setUploadTrafoButton, SIGNAL(clicked()), this, SLOT(slotSetUploadTrafo()));
+
+  uploadHlpLayout->addWidget(new QLabel("Interval"),0,3, Qt::AlignRight);
+  uploadHlpLayout->addWidget(_uploadIntrComboBox,0,4);
+
+  uploadHlpLayout->addWidget(new QLabel("Sampling"),1,3, Qt::AlignRight);
+  uploadHlpLayout->addWidget(_uploadSamplSpinBox,1,4);
+
+
+  QBoxLayout* uploadLayout = new QBoxLayout(QBoxLayout::TopToBottom);
+  populateUploadTable();
+  uploadLayout->addWidget(_uploadTable);
+  uploadLayout->addLayout(uploadHlpLayout);
+
+  uploadgroup->setLayout(uploadLayout);
+
+  // Upload Layout (Ephemeris)
+  // -------------------------
+  QGridLayout* uploadLayoutEph = new QGridLayout;
+
+  uploadLayoutEph->setColumnMinimumWidth(0, 9*ww);
+  _uploadEphPortLineEdit->setMaximumWidth(9*ww);
+  _uploadEphPasswordLineEdit->setMaximumWidth(9*ww);
+  _uploadEphMountpointLineEdit->setMaximumWidth(12*ww);
+
+  uploadLayoutEph->addWidget(new QLabel("Host"),                  0, 0);
+  uploadLayoutEph->addWidget(_uploadEphHostLineEdit,              0, 1, 1, 3);
+  uploadLayoutEph->addWidget(new QLabel("  Port"),                0, 4, Qt::AlignRight);
+  uploadLayoutEph->addWidget(_uploadEphPortLineEdit,              0, 5, 1, 1);
+  uploadLayoutEph->addWidget(new QLabel("Mountpoint           "), 1, 0);
+  uploadLayoutEph->addWidget(_uploadEphMountpointLineEdit,        1, 1);
+  uploadLayoutEph->addWidget(new QLabel("          Password"),    1, 2, Qt::AlignRight);
+  uploadLayoutEph->addWidget(_uploadEphPasswordLineEdit,          1, 3);
+  uploadLayoutEph->addWidget(new QLabel("Sampling"),              2, 0);
+  uploadLayoutEph->addWidget(_uploadEphSampleSpinBox,             2, 1);
+  uploadLayoutEph->addWidget(new QLabel("Upload concatenated RTCMv3 Broadcast Ephemeris to caster."), 3, 0, 1, 5);
+  uploadLayoutEph->addWidget(_uploadEphBytesCounter, 3, 5); 
+
+  uploadEphgroup->setLayout(uploadLayoutEph);
+
+  connect(_uploadEphHostLineEdit, SIGNAL(textChanged(const QString &)),
+          this, SLOT(slotBncTextChanged()));
+
+  // Main Layout
+  // -----------
+  QGridLayout* mLayout = new QGridLayout;
+  _aogroup->setCurrentIndex(settings.value("startTab").toInt());
+  mLayout->addWidget(_aogroup,            0,0);
+  mLayout->addWidget(_mountPointsTable,   1,0);
+  _loggroup->setCurrentIndex(settings.value("statusTab").toInt());
+  mLayout->addWidget(_loggroup,           2,0);
+
+  _canvas->setLayout(mLayout);
+
+  // Enable/Disable all Widgets
+  // --------------------------
+  slotBncTextChanged();
+
+  // Auto start
+  // ----------
+  if ( Qt::CheckState(settings.value("autoStart").toInt()) == Qt::Checked) {
+    slotGetData();
+  }
+}
+
+// Destructor
+////////////////////////////////////////////////////////////////////////////
+bncWindow::~bncWindow() {
+  delete _caster;
+  delete _casterEph;
+}
+
+// 
+////////////////////////////////////////////////////////////////////////////
+void bncWindow::populateMountPointsTable() {
+
+  for (int iRow = _mountPointsTable->rowCount()-1; iRow >=0; iRow--) {
+    _mountPointsTable->removeRow(iRow);
+  }
+
+  bncSettings settings;
+
+  QListIterator<QString> it(settings.value("mountPoints").toStringList());
+  if (!it.hasNext()) {
+    _actGetData->setEnabled(false);
+  }
+  int iRow = 0;
+  while (it.hasNext()) {
+    QStringList hlp = it.next().split(" ");
+    if (hlp.size() < 5) continue;
+    _mountPointsTable->insertRow(iRow);
+
+    QUrl    url(hlp[0]);
+
+    QString fullPath = url.host() + QString(":%1").arg(url.port()) + url.path();
+    QString format(hlp[1]); QString latitude(hlp[2]); QString longitude(hlp[3]);
+    QString nmea(hlp[4]);
+    if (hlp[5] == "S") {
+      fullPath = hlp[0].replace(0,2,"");
+    }
+    QString ntripVersion = "2";
+    if (hlp.size() >= 6) {
+      ntripVersion = (hlp[5]);
+    }
+
+    QTableWidgetItem* it;
+    it = new QTableWidgetItem(url.userInfo());
+    it->setFlags(it->flags() & ~Qt::ItemIsEditable);
+    _mountPointsTable->setItem(iRow, 0, it);
+
+    it = new QTableWidgetItem(fullPath);
+    it->setFlags(it->flags() & ~Qt::ItemIsEditable);
+    _mountPointsTable->setItem(iRow, 1, it);
+
+    it = new QTableWidgetItem(format);
+    _mountPointsTable->setItem(iRow, 2, it);
+
+    if      (nmea == "yes") {
+    it = new QTableWidgetItem(latitude);
+    _mountPointsTable->setItem(iRow, 3, it);
+    it = new QTableWidgetItem(longitude);
+    _mountPointsTable->setItem(iRow, 4, it);
+    } else {
+    it = new QTableWidgetItem(latitude);
+    it->setFlags(it->flags() & ~Qt::ItemIsEditable);
+    _mountPointsTable->setItem(iRow, 3, it);
+    it = new QTableWidgetItem(longitude);
+    it->setFlags(it->flags() & ~Qt::ItemIsEditable);
+    _mountPointsTable->setItem(iRow, 4, it);
+    }
+
+    it = new QTableWidgetItem(nmea);
+    it->setFlags(it->flags() & ~Qt::ItemIsEditable);
+    _mountPointsTable->setItem(iRow, 5, it);
+
+    it = new QTableWidgetItem(ntripVersion);
+    ////    it->setFlags(it->flags() & ~Qt::ItemIsEditable);
+    _mountPointsTable->setItem(iRow, 6, it);
+
+    bncTableItem* bncIt = new bncTableItem();
+    bncIt->setFlags(bncIt->flags() & ~Qt::ItemIsEditable);
+    _mountPointsTable->setItem(iRow, 7, bncIt);
+
+    iRow++;
+  }
+
+  _mountPointsTable->sortItems(1);
+}
+
+// Retrieve Table
+////////////////////////////////////////////////////////////////////////////
+void bncWindow::slotAddMountPoints() {
+
+  bncSettings settings;
+  QString proxyHost = settings.value("proxyHost").toString();
+  int     proxyPort = settings.value("proxyPort").toInt();
+  if (proxyHost != _proxyHostLineEdit->text()         ||
+      proxyPort != _proxyPortLineEdit->text().toInt()) {
+    int iRet = QMessageBox::question(this, "Question", "Proxy options "
+                                     "changed. Use the new ones?", 
+                                     QMessageBox::Yes, QMessageBox::No,
+                                     QMessageBox::NoButton);
+    if      (iRet == QMessageBox::Yes) {
+      settings.setValue("proxyHost",   _proxyHostLineEdit->text());
+      settings.setValue("proxyPort",   _proxyPortLineEdit->text());
+      settings.sync();
+    }
+  }
+
+  settings.setValue("sslCaCertPath",   _sslCaCertPathLineEdit->text());
+  settings.setValue("ignoreSslErrors", _ignoreSslErrorsCheckBox->checkState());
+  settings.sync();
+
+  QMessageBox msgBox;
+  msgBox.setIcon(QMessageBox::Question);
+  msgBox.setWindowTitle("Add Stream");
+  msgBox.setText("Add stream(s) coming from:");
+
+  QPushButton* buttonNtrip  = msgBox.addButton(tr("Caster"), QMessageBox::ActionRole);
+  QPushButton* buttonIP     = msgBox.addButton(tr("TCP/IP port"), QMessageBox::ActionRole);
+  QPushButton* buttonUDP    = msgBox.addButton(tr("UDP port"), QMessageBox::ActionRole);
+  QPushButton* buttonSerial = msgBox.addButton(tr("Serial port"), QMessageBox::ActionRole);
+  QPushButton* buttonCancel = msgBox.addButton(tr("Cancel"), QMessageBox::ActionRole);
+
+  msgBox.exec();
+
+  if (msgBox.clickedButton() == buttonNtrip) {
+    bncTableDlg* dlg = new bncTableDlg(this);
+    dlg->move(this->pos().x()+50, this->pos().y()+50);
+    connect(dlg, SIGNAL(newMountPoints(QStringList*)),
+          this, SLOT(slotNewMountPoints(QStringList*)));
+    dlg->exec();
+    delete dlg;
+  } else if (msgBox.clickedButton() == buttonIP) {
+    bncIpPort* ipp = new bncIpPort(this);
+    connect(ipp, SIGNAL(newMountPoints(QStringList*)),
+          this, SLOT(slotNewMountPoints(QStringList*)));
+    ipp->exec();
+    delete ipp;
+  } else if (msgBox.clickedButton() == buttonUDP) {
+    bncUdpPort* udp = new bncUdpPort(this);
+    connect(udp, SIGNAL(newMountPoints(QStringList*)),
+          this, SLOT(slotNewMountPoints(QStringList*)));
+    udp->exec();
+    delete udp;
+  } else if (msgBox.clickedButton() == buttonSerial) {
+    bncSerialPort* sep = new bncSerialPort(this);
+    connect(sep, SIGNAL(newMountPoints(QStringList*)),
+          this, SLOT(slotNewMountPoints(QStringList*)));
+    sep->exec();
+    delete sep;
+  } else if (msgBox.clickedButton() == buttonCancel) {
+    // Cancel
+  }
+}
+
+// Delete Selected Mount Points
+////////////////////////////////////////////////////////////////////////////
+void bncWindow::slotDeleteMountPoints() {
+
+  int nRows = _mountPointsTable->rowCount();
+  bool flg[nRows];
+  for (int iRow = 0; iRow < nRows; iRow++) {
+    if (_mountPointsTable->isItemSelected(_mountPointsTable->item(iRow,1))) {
+      flg[iRow] = true;
+    }
+    else {
+      flg[iRow] = false;
+    }
+  }
+  for (int iRow = nRows-1; iRow >= 0; iRow--) {
+    if (flg[iRow]) {
+      _mountPointsTable->removeRow(iRow);
+    }
+  }
+  _actDeleteMountPoints->setEnabled(false);
+
+  if (_mountPointsTable->rowCount() == 0) {
+    _actGetData->setEnabled(false);
+  }
+}
+
+// New Mount Points Selected
+////////////////////////////////////////////////////////////////////////////
+void bncWindow::slotNewMountPoints(QStringList* mountPoints) {
+  int iRow = 0;
+  QListIterator<QString> it(*mountPoints);
+  while (it.hasNext()) {
+    QStringList hlp = it.next().split(" ");
+    QUrl    url(hlp[0]);
+    QString fullPath = url.host() + QString(":%1").arg(url.port()) + url.path();
+    QString format(hlp[1]); QString latitude(hlp[2]); QString longitude(hlp[3]);
+    QString nmea(hlp[4]);
+    if (hlp[5] == "S") {
+      fullPath = hlp[0].replace(0,2,"");
+    }
+    QString ntripVersion = "2";
+    if (hlp.size() >= 6) {
+      ntripVersion = (hlp[5]);
+    }
+
+    _mountPointsTable->insertRow(iRow);
+
+    QTableWidgetItem* it;
+    it = new QTableWidgetItem(url.userInfo());
+    it->setFlags(it->flags() & ~Qt::ItemIsEditable);
+    _mountPointsTable->setItem(iRow, 0, it);
+
+    it = new QTableWidgetItem(fullPath);
+    it->setFlags(it->flags() & ~Qt::ItemIsEditable);
+    _mountPointsTable->setItem(iRow, 1, it);
+
+    it = new QTableWidgetItem(format);
+    _mountPointsTable->setItem(iRow, 2, it);
+
+    if      (nmea == "yes") {
+    it = new QTableWidgetItem(latitude);
+    _mountPointsTable->setItem(iRow, 3, it);
+    it = new QTableWidgetItem(longitude);
+    _mountPointsTable->setItem(iRow, 4, it);
+    } else {
+    it = new QTableWidgetItem(latitude);
+    it->setFlags(it->flags() & ~Qt::ItemIsEditable);
+    _mountPointsTable->setItem(iRow, 3, it);
+    it = new QTableWidgetItem(longitude);
+    it->setFlags(it->flags() & ~Qt::ItemIsEditable);
+    _mountPointsTable->setItem(iRow, 4, it);
+    }
+
+    it = new QTableWidgetItem(nmea);
+    it->setFlags(it->flags() & ~Qt::ItemIsEditable);
+    _mountPointsTable->setItem(iRow, 5, it);
+
+    it = new QTableWidgetItem(ntripVersion);
+    it->setFlags(it->flags() & ~Qt::ItemIsEditable);
+    _mountPointsTable->setItem(iRow, 6, it);
+
+    bncTableItem* bncIt = new bncTableItem();
+    _mountPointsTable->setItem(iRow, 7, bncIt);
+
+    iRow++;
+  }
+  _mountPointsTable->hideColumn(0);
+  _mountPointsTable->sortItems(1);
+  if (mountPoints->count() > 0 && !_actStop->isEnabled()) {
+    _actGetData->setEnabled(true);
+  }
+  delete mountPoints;
+}
+
+// Save Options
+////////////////////////////////////////////////////////////////////////////
+void bncWindow::slotSaveOptions() {
+
+  QStringList mountPoints;
+  for (int iRow = 0; iRow < _mountPointsTable->rowCount(); iRow++) {
+
+    if (_mountPointsTable->item(iRow, 6)->text() != "S") {
+      QUrl url( "//" + _mountPointsTable->item(iRow, 0)->text() + 
+                "@"  + _mountPointsTable->item(iRow, 1)->text() );
+
+      mountPoints.append(url.toString() + " " + 
+                         _mountPointsTable->item(iRow, 2)->text()
+                 + " " + _mountPointsTable->item(iRow, 3)->text()
+                 + " " + _mountPointsTable->item(iRow, 4)->text()
+                 + " " + _mountPointsTable->item(iRow, 5)->text()
+                 + " " + _mountPointsTable->item(iRow, 6)->text());
+    } else {
+      mountPoints.append( 
+                  "//" + _mountPointsTable->item(iRow, 1)->text()
+                 + " " + _mountPointsTable->item(iRow, 2)->text()
+                 + " " + _mountPointsTable->item(iRow, 3)->text()
+                 + " " + _mountPointsTable->item(iRow, 4)->text()
+                 + " " + _mountPointsTable->item(iRow, 5)->text()
+                 + " " + _mountPointsTable->item(iRow, 6)->text());
+    }
+  }
+
+  QStringList combineStreams;
+  for (int iRow = 0; iRow < _cmbTable->rowCount(); iRow++) {
+    QString hlp;
+    for (int iCol = 0; iCol < _cmbTable->columnCount(); iCol++) {
+      if (_cmbTable->item(iRow, iCol)) {
+        hlp += _cmbTable->item(iRow, iCol)->text() + " ";
+      }
+    }
+    if (!hlp.isEmpty()) {
+      combineStreams << hlp;
+    }
+  }
+
+  QStringList uploadMountpointsOut;
+  for (int iRow = 0; iRow < _uploadTable->rowCount(); iRow++) {
+    QString hlp;
+    for (int iCol = 0; iCol < _uploadTable->columnCount(); iCol++) {
+      if (_uploadTable->cellWidget(iRow, iCol) && 
+          (iCol == 3 || iCol == 4 || iCol == 5)) {
+        if      (iCol == 3) {
+          QLineEdit* passwd = (QLineEdit*)(_uploadTable->cellWidget(iRow, iCol));
+          hlp += passwd->text() + ",";
+        }
+        else if (iCol == 4) {
+          QComboBox* system = (QComboBox*)(_uploadTable->cellWidget(iRow, iCol));
+          hlp += system->currentText() + ",";
+        }
+        else if (iCol == 5) {
+          QCheckBox* com    = (QCheckBox*)(_uploadTable->cellWidget(iRow, iCol));
+          QString state; state.setNum(com->checkState());
+          hlp +=  state + ",";
+        }
+      }
+      else if (_uploadTable->item(iRow, iCol)) {
+        hlp += _uploadTable->item(iRow, iCol)->text() + ",";
+      }
+    }
+    if (!hlp.isEmpty()) {
+      uploadMountpointsOut << hlp;
+    }
+  }
+
+  bncSettings settings;
+
+  settings.setValue("adviseFail",  _adviseFailSpinBox->value());
+  settings.setValue("adviseReco",  _adviseRecoSpinBox->value());
+  settings.setValue("adviseScript",_adviseScriptLineEdit->text());
+  settings.setValue("autoStart",   _autoStartCheckBox->checkState());
+  settings.setValue("binSampl",    _binSamplSpinBox->value());
+  settings.setValue("corrIntr",    _corrIntrComboBox->currentText());
+  settings.setValue("corrPath",    _corrPathLineEdit->text());
+  settings.setValue("corrPort",    _corrPortLineEdit->text());
+  settings.setValue("corrTime",    _corrTimeSpinBox->value());
+  settings.setValue("ephIntr",     _ephIntrComboBox->currentText());
+  settings.setValue("ephPath",     _ephPathLineEdit->text());
+  settings.setValue("ephV3",       _ephV3CheckBox->checkState());
+  settings.setValue("logFile",     _logFileLineEdit->text());
+  settings.setValue("rawOutFile",  _rawOutFileLineEdit->text());
+  settings.setValue("miscMount",   _miscMountLineEdit->text());
+  settings.setValue("pppMount",    _pppMountLineEdit->text());
+  settings.setValue("pppCorrMount",_pppCorrMountLineEdit->text());
+  settings.setValue("pppSPP",      _pppSPPComboBox->currentText());
+  settings.setValue("nmeaFile",    _pppNMEALineEdit->text());
+  settings.setValue("nmeaPort",    _pppNMEAPortLineEdit->text());
+  settings.setValue("pppSigmaCode",_pppSigCLineEdit->text());
+  settings.setValue("pppSigmaPhase",_pppSigPLineEdit->text());
+  settings.setValue("pppSigCrd0",_pppSigCrd0->text());
+  settings.setValue("pppSigCrdP",_pppSigCrdP->text());
+  settings.setValue("pppSigTrp0",_pppSigTrp0->text());
+  settings.setValue("pppSigTrpP",_pppSigTrpP->text());
+  settings.setValue("pppAverage",  _pppAverageLineEdit->text());
+  settings.setValue("pppQuickStart", _pppQuickStartLineEdit->text());
+  settings.setValue("pppMaxSolGap",  _pppMaxSolGapLineEdit->text());
+  settings.setValue("pppRefCrdX",  _pppRefCrdXLineEdit->text());
+  settings.setValue("pppRefCrdY",  _pppRefCrdYLineEdit->text());
+  settings.setValue("pppRefCrdZ",  _pppRefCrdZLineEdit->text());
+  settings.setValue("pppRefdN",  _pppRefdNLineEdit->text());
+  settings.setValue("pppRefdE",  _pppRefdELineEdit->text());
+  settings.setValue("pppRefdU",  _pppRefdULineEdit->text());
+  settings.setValue("pppSync",     _pppSync->text());
+  settings.setValue("pppUsePhase", _pppUsePhaseCheckBox->checkState());
+  settings.setValue("pppPlotCoordinates", _pppPlotCoordinates->checkState());
+  settings.setValue("pppEstTropo", _pppEstTropoCheckBox->checkState());
+  settings.setValue("pppGLONASS",  _pppGLONASSCheckBox->checkState());
+  settings.setValue("pppGalileo",  _pppGalileoCheckBox->checkState());
+  settings.setValue("pppAntenna",      _pppAntennaLineEdit->text());
+  settings.setValue("pppAntex",	       _pppAntexLineEdit->text());         
+  settings.setValue("pppApplySatAnt", _pppApplySatAntCheckBox->checkState());
+  settings.setValue("mountPoints", mountPoints);
+  settings.setValue("obsRate",     _obsRateComboBox->currentText());
+  settings.setValue("onTheFlyInterval", _onTheFlyComboBox->currentText());
+  settings.setValue("outEphPort",  _outEphPortLineEdit->text());
+  settings.setValue("outFile",     _outFileLineEdit->text());
+  settings.setValue("outPort",     _outPortLineEdit->text());
+  settings.setValue("outUPort",    _outUPortLineEdit->text());
+  settings.setValue("perfIntr",    _perfIntrComboBox->currentText());
+  settings.setValue("proxyHost",   _proxyHostLineEdit->text());
+  settings.setValue("proxyPort",   _proxyPortLineEdit->text());
+  settings.setValue("sslCaCertPath",   _sslCaCertPathLineEdit->text());
+  settings.setValue("ignoreSslErrors",  _ignoreSslErrorsCheckBox->checkState());
+  settings.setValue("rnxAppend",   _rnxAppendCheckBox->checkState());
+  settings.setValue("rnxIntr",     _rnxIntrComboBox->currentText());
+  settings.setValue("rnxPath",     _rnxPathLineEdit->text());
+  settings.setValue("rnxSampl",    _rnxSamplSpinBox->value());
+  settings.setValue("rnxScript",   _rnxScrpLineEdit->text());
+  settings.setValue("rnxSkel",     _rnxSkelLineEdit->text());
+  settings.setValue("rnxV3",       _rnxV3CheckBox->checkState());
+  settings.setValue("scanRTCM",    _scanRTCMCheckBox->checkState());
+  settings.setValue("serialFileNMEA",_serialFileNMEALineEdit->text());
+  settings.setValue("serialHeightNMEA",_serialHeightNMEALineEdit->text());
+  settings.setValue("serialAutoNMEA",  _serialAutoNMEAComboBox->currentText());
+  settings.setValue("serialBaudRate",  _serialBaudRateComboBox->currentText());
+  settings.setValue("serialDataBits",  _serialDataBitsComboBox->currentText());
+  settings.setValue("serialMountPoint",_serialMountPointLineEdit->text());
+  settings.setValue("serialParity",    _serialParityComboBox->currentText());
+  settings.setValue("serialPortName",  _serialPortNameLineEdit->text());
+  settings.setValue("serialStopBits",  _serialStopBitsComboBox->currentText());
+  settings.setValue("serialFlowControl",_serialFlowControlComboBox->currentText());
+  settings.setValue("startTab",    _aogroup->currentIndex());
+  settings.setValue("statusTab",   _loggroup->currentIndex());
+  settings.setValue("waitTime",    _waitTimeSpinBox->value());
+  if (!combineStreams.isEmpty()) {
+    settings.setValue("combineStreams", combineStreams);
+  }
+  else {
+    settings.setValue("combineStreams", "");
+  }
+  settings.setValue("cmbMaxres", _cmbMaxresLineEdit->text());
+  settings.setValue("cmbMethod", _cmbMethodComboBox->currentText());
+
+  if (!uploadMountpointsOut.isEmpty()) {
+    settings.setValue("uploadMountpointsOut", uploadMountpointsOut);
+  }
+  else {
+    settings.setValue("uploadMountpointsOut", "");
+  }
+  settings.setValue("uploadIntr",     _uploadIntrComboBox->currentText());
+  settings.setValue("uploadSampl",    _uploadSamplSpinBox->value());
+
+  settings.setValue("uploadEphHost",      _uploadEphHostLineEdit->text());
+  settings.setValue("uploadEphPort",      _uploadEphPortLineEdit->text());
+  settings.setValue("uploadEphPassword",  _uploadEphPasswordLineEdit->text());
+  settings.setValue("uploadEphMountpoint",_uploadEphMountpointLineEdit->text());
+  settings.setValue("uploadEphSample",    _uploadEphSampleSpinBox->value());
+
+  if (_caster) {
+    _caster->slotReadMountPoints();
+  }
+  settings.sync();
+}
+
+// All get slots terminated
+////////////////////////////////////////////////////////////////////////////
+void bncWindow::slotGetThreadsFinished() {
+  ((bncApp*)qApp)->slotMessage("All Get Threads Terminated", true);
+  delete _caster;    _caster    = 0;
+  delete _casterEph; _casterEph = 0;
+  _actGetData->setEnabled(true);
+  _actStop->setEnabled(false);
+}
+
+// Retrieve Data
+////////////////////////////////////////////////////////////////////////////
+void bncWindow::slotGetData() {
+  slotSaveOptions();
+
+  _bncFigurePPP->reset();
+
+  _actDeleteMountPoints->setEnabled(false);
+  _actGetData->setEnabled(false);
+  _actStop->setEnabled(true);
+
+  _caster = new bncCaster(_outFileLineEdit->text(), 
+                          _outPortLineEdit->text().toInt());
+
+  ((bncApp*)qApp)->setPort(_outEphPortLineEdit->text().toInt());
+  ((bncApp*)qApp)->setPortCorr(_corrPortLineEdit->text().toInt());
+  ((bncApp*)qApp)->initCombination();
+
+  connect(_caster, SIGNAL(getThreadsFinished()), 
+          this, SLOT(slotGetThreadsFinished()));
+
+  connect (_caster, SIGNAL(mountPointsRead(QList<bncGetThread*>)), 
+           this, SLOT(slotMountPointsRead(QList<bncGetThread*>)));
+
+  ((bncApp*)qApp)->slotMessage("========== Start BNC v" BNCVERSION " =========", true);
+
+  bncSettings settings;
+
+  QDir rnxdir(settings.value("rnxPath").toString());
+  if (!rnxdir.exists()) ((bncApp*)qApp)->slotMessage("Cannot find RINEX Observations directory", true);
+
+  QString rnx_file = settings.value("rnxScript").toString();
+  if ( !rnx_file.isEmpty() ) {
+    QFile rnxfile(settings.value("rnxScript").toString());
+    if (!rnxfile.exists()) ((bncApp*)qApp)->slotMessage("Cannot find RINEX Observations script", true);
+  }
+
+  QDir ephdir(settings.value("ephPath").toString());
+  if (!ephdir.exists()) ((bncApp*)qApp)->slotMessage("Cannot find RINEX Ephemeris directory", true);
+
+  QDir corrdir(settings.value("corrPath").toString());
+  if (!corrdir.exists()) ((bncApp*)qApp)->slotMessage("Cannot find Broadcast Corrections directory", true);
+
+  QString advise_file = settings.value("adviseScript").toString();
+  if ( !advise_file.isEmpty() ) {
+    QFile advisefile(settings.value("adviseScript").toString());
+    if (!advisefile.exists()) ((bncApp*)qApp)->slotMessage("Cannot find Outages script", true);
+  }
+
+  QString ant_file = settings.value("pppAntex").toString();
+  if ( !ant_file.isEmpty() ) {
+    QFile anxfile(settings.value("pppAntex").toString());
+    if (!anxfile.exists()) ((bncApp*)qApp)->slotMessage("Cannot find IGS ANTEX file", true);
+  }
+
+  _caster->slotReadMountPoints();
+
+  _casterEph = new bncEphUploadCaster();
+  connect(_casterEph, SIGNAL(newBytes(QByteArray,double)), 
+          _uploadEphBytesCounter, SLOT(slotNewBytes(QByteArray,double)));
+}
+
+// Retrieve Data
+////////////////////////////////////////////////////////////////////////////
+void bncWindow::slotStop() {
+  int iRet = QMessageBox::question(this, "Stop", "Stop retrieving data?", 
+                                   QMessageBox::Yes, QMessageBox::No,
+                                   QMessageBox::NoButton);
+  if (iRet == QMessageBox::Yes) {
+    ((bncApp*)qApp)->stopCombination();
+    delete _caster;    _caster    = 0;
+    delete _casterEph; _casterEph = 0;
+    _actGetData->setEnabled(true);
+    _actStop->setEnabled(false);
+  }
+}
+
+// Close Application gracefully
+////////////////////////////////////////////////////////////////////////////
+void bncWindow::closeEvent(QCloseEvent* event) {
+
+  int iRet = QMessageBox::question(this, "Close", "Save Options?", 
+                                   QMessageBox::Yes, QMessageBox::No,
+                                   QMessageBox::Cancel);
+
+  if      (iRet == QMessageBox::Cancel) {
+    event->ignore();
+    return;
+  }
+  else if (iRet == QMessageBox::Yes) {
+    slotSaveOptions();
+  }
+
+  QMainWindow::closeEvent(event);
+}
+
+// User changed the selection of mountPoints
+////////////////////////////////////////////////////////////////////////////
+void bncWindow::slotSelectionChanged() {
+  if (_mountPointsTable->selectedItems().isEmpty()) {
+    _actDeleteMountPoints->setEnabled(false);
+  }
+  else {
+    _actDeleteMountPoints->setEnabled(true);
+  }
+}
+
+// Display Program Messages 
+////////////////////////////////////////////////////////////////////////////
+void bncWindow::slotWindowMessage(const QByteArray msg, bool showOnScreen) {
+
+#ifdef DEBUG_RTCM2_2021  
+  const int maxBufferSize = 1000;
+#else
+  const int maxBufferSize = 10000;
+#endif
+
+  if (! showOnScreen ) {
+    return;
+  }
+ 
+  QString txt = _log->toPlainText() + "\n" + 
+     QDateTime::currentDateTime().toUTC().toString("yy-MM-dd hh:mm:ss ") + msg;
+  _log->clear();
+  _log->append(txt.right(maxBufferSize));
+}  
+
+// About Message
+////////////////////////////////////////////////////////////////////////////
+void bncWindow::slotAbout() {
+ new bncAboutDlg(0);
+}
+
+//Flowchart
+////////////////////////////////////////////////////////////////////////////
+void bncWindow::slotFlowchart() {
+ new bncFlowchartDlg(0);
+}
+
+// Help Window
+////////////////////////////////////////////////////////////////////////////
+void bncWindow::slotHelp() {
+  QUrl url; 
+  url.setPath(":bnchelp.html");
+  new bncHlpDlg(0, url);
+}
+
+// Select Fonts
+////////////////////////////////////////////////////////////////////////////
+void bncWindow::slotFontSel() {
+  bool ok;
+  QFont newFont = QFontDialog::getFont(&ok, this->font(), this); 
+  if (ok) {
+    bncSettings settings;
+    settings.setValue("font", newFont.toString());
+    QApplication::setFont(newFont);
+    int ww = QFontMetrics(newFont).width('w');
+    setMinimumSize(60*ww, 80*ww);
+    resize(60*ww, 80*ww);
+  }
+}
+
+// Whats This Help
+void bncWindow::slotWhatsThis() {
+  QWhatsThis::enterWhatsThisMode();
+}
+
+// 
+////////////////////////////////////////////////////////////////////////////
+void bncWindow::slotMountPointsRead(QList<bncGetThread*> threads) {
+  _bncFigure->updateMountPoints();
+  _bncFigureLate->updateMountPoints();
+
+  populateMountPointsTable();
+  bncSettings settings;
+  _binSamplSpinBox->setValue(settings.value("binSampl").toInt());
+  _waitTimeSpinBox->setValue(settings.value("waitTime").toInt());
+  QListIterator<bncGetThread*> iTh(threads);
+  while (iTh.hasNext()) {
+    bncGetThread* thread = iTh.next();
+    for (int iRow = 0; iRow < _mountPointsTable->rowCount(); iRow++) {
+      QUrl url( "//" + _mountPointsTable->item(iRow, 0)->text() + 
+                "@"  + _mountPointsTable->item(iRow, 1)->text() );
+      if (url                                      == thread->mountPoint() &&
+          _mountPointsTable->item(iRow, 3)->text() == thread->latitude()   &&
+          _mountPointsTable->item(iRow, 4)->text() == thread->longitude() ) {
+        ((bncTableItem*) _mountPointsTable->item(iRow, 7))->setGetThread(thread);
+        disconnect(thread, SIGNAL(newBytes(QByteArray, double)),
+                  _bncFigure, SLOT(slotNewData(QByteArray, double)));
+        connect(thread, SIGNAL(newBytes(QByteArray, double)),
+                _bncFigure, SLOT(slotNewData(QByteArray, double)));
+        disconnect(thread, SIGNAL(newLatency(QByteArray, double)),
+                   _bncFigureLate, SLOT(slotNewLatency(QByteArray, double)));
+        connect(thread, SIGNAL(newLatency(QByteArray, double)),
+                _bncFigureLate, SLOT(slotNewLatency(QByteArray, double)));
+        if ( Qt::CheckState(settings.value("pppPlotCoordinates").toInt()) == Qt::Checked) {
+          disconnect(thread, 
+                     SIGNAL(newPosition(bncTime, double, double, double)),
+                     _bncFigurePPP, 
+                     SLOT(slotNewPosition(bncTime, double, double, double)));
+          connect(thread, SIGNAL(newPosition(bncTime, double, double, double)),
+                  _bncFigurePPP, 
+                  SLOT(slotNewPosition(bncTime, double, double, double)));
+        }
+        break;
+      }
+    }
+  }
+}
+
+// 
+////////////////////////////////////////////////////////////////////////////
+void bncWindow::CreateMenu() {
+  // Create Menus
+  // ------------
+  _menuFile = menuBar()->addMenu(tr("&File"));
+  _menuFile->addAction(_actFontSel);
+  _menuFile->addSeparator();
+  _menuFile->addAction(_actSaveOpt);
+  _menuFile->addSeparator();
+  _menuFile->addAction(_actQuit);
+
+  _menuHlp = menuBar()->addMenu(tr("&Help"));
+  _menuHlp->addAction(_actHelp);
+  _menuHlp->addAction(_actFlowchart);
+  _menuHlp->addAction(_actAbout);
+}
+
+// Toolbar
+////////////////////////////////////////////////////////////////////////////
+void bncWindow::AddToolbar() {
+  // Tool (Command) Bar
+  // ------------------
+  QToolBar* toolBar = new QToolBar;
+  addToolBar(Qt::BottomToolBarArea, toolBar); 
+  toolBar->setMovable(false);
+  toolBar->addAction(_actAddMountPoints);
+  toolBar->addAction(_actDeleteMountPoints);
+  toolBar->addAction(_actGetData);
+  toolBar->addAction(_actStop);
+  toolBar->addWidget(new QLabel("                                   "));
+  toolBar->addAction(_actwhatsthis);
+} 
+
+// About
+////////////////////////////////////////////////////////////////////////////
+bncAboutDlg::bncAboutDlg(QWidget* parent) : 
+   QDialog(parent) {
+
+  QTextBrowser* tb = new QTextBrowser;
+  QUrl url; url.setPath(":bncabout.html");
+  tb->setSource(url);
+  tb->setReadOnly(true);
+
+  int ww = QFontMetrics(font()).width('w');
+  QPushButton* _closeButton = new QPushButton("Close");
+  _closeButton->setMaximumWidth(10*ww);
+  connect(_closeButton, SIGNAL(clicked()), this, SLOT(close()));
+
+  QGridLayout* dlgLayout = new QGridLayout();
+  QLabel* img = new QLabel();
+  img->setPixmap(QPixmap(":ntrip-logo.png"));
+  dlgLayout->addWidget(img, 0,0);
+  dlgLayout->addWidget(new QLabel("BKG Ntrip Client (BNC) Version "BNCVERSION), 0,1);
+  dlgLayout->addWidget(tb,1,0,1,2);
+  dlgLayout->addWidget(_closeButton,2,1,Qt::AlignRight);  
+
+  setLayout(dlgLayout);
+  resize(60*ww, 60*ww);
+  setWindowTitle("About BNC");
+  show();
+}
+
+// 
+////////////////////////////////////////////////////////////////////////////
+bncAboutDlg::~bncAboutDlg() {
+}; 
+
+// Flowchart 
+////////////////////////////////////////////////////////////////////////////
+bncFlowchartDlg::bncFlowchartDlg(QWidget* parent) :
+   QDialog(parent) {
+
+  int ww = QFontMetrics(font()).width('w');
+  QPushButton* _closeButton = new QPushButton("Close");
+  _closeButton->setMaximumWidth(10*ww);
+  connect(_closeButton, SIGNAL(clicked()), this, SLOT(close()));
+
+  QGridLayout* dlgLayout = new QGridLayout();
+  QLabel* img = new QLabel();
+  img->setPixmap(QPixmap(":bncflowchart.png"));
+  dlgLayout->addWidget(img, 0,0);
+  dlgLayout->addWidget(_closeButton,1,0,Qt::AlignLeft);
+
+  setLayout(dlgLayout);
+  setWindowTitle("Flow Chart");
+  show();
+}
+
+// 
+////////////////////////////////////////////////////////////////////////////
+bncFlowchartDlg::~bncFlowchartDlg() {
+};
+
+//  Bnc Text
+////////////////////////////////////////////////////////////////////////////
+void bncWindow::slotBncTextChanged(){
+
+  QPalette palette_white(QColor(255, 255, 255));
+  QPalette palette_gray(QColor(230, 230, 230));
+  bncSettings settings;
+
+  // Proxy
+  //------
+  if (sender() == 0 || sender() == _proxyHostLineEdit) {
+    if (!_proxyHostLineEdit->text().isEmpty()) {
+      _proxyPortLineEdit->setStyleSheet("background-color: white");
+      _proxyPortLineEdit->setEnabled(true);
+    } 
+    else {
+      _proxyPortLineEdit->setStyleSheet("background-color: lightGray");
+      _proxyPortLineEdit->setEnabled(false);
+    }
+  }
+
+  // RINEX Observations
+  // ------------------
+  if (sender() == 0 || sender() == _rnxPathLineEdit) {
+    if (!_rnxPathLineEdit->text().isEmpty()) {
+      _rnxSamplSpinBox->setStyleSheet("background-color: white");
+      _rnxSkelLineEdit->setStyleSheet("background-color: white");
+      _rnxScrpLineEdit->setStyleSheet("background-color: white");
+      _rnxV3CheckBox->setPalette(palette_white);
+      _rnxIntrComboBox->setStyleSheet("background-color: white");
+      _rnxSamplSpinBox->setEnabled(true);
+      _rnxSkelLineEdit->setEnabled(true);
+      _rnxScrpLineEdit->setEnabled(true);
+      _rnxV3CheckBox->setEnabled(true);
+      _rnxIntrComboBox->setEnabled(true);
+    } 
+    else {
+      _rnxSamplSpinBox->setStyleSheet("background-color: lightGray");
+      _rnxSkelLineEdit->setStyleSheet("background-color: lightGray");
+      _rnxScrpLineEdit->setStyleSheet("background-color: lightGray");
+      _rnxV3CheckBox->setPalette(palette_gray);
+      _rnxIntrComboBox->setStyleSheet("background-color: lightGray");
+      _rnxSamplSpinBox->setEnabled(false);
+      _rnxSkelLineEdit->setEnabled(false);
+      _rnxScrpLineEdit->setEnabled(false);
+      _rnxV3CheckBox->setEnabled(false);
+      _rnxIntrComboBox->setEnabled(false);
+    }
+  }
+
+  // RINEX Ephemeris
+  // ---------------
+  if (sender() == 0 || 
+      sender() == _ephPathLineEdit || sender() == _outEphPortLineEdit) {
+    if (!_ephPathLineEdit->text().isEmpty() || 
+        !_outEphPortLineEdit->text().isEmpty()) { 
+      _ephIntrComboBox->setStyleSheet("background-color: white");
+      _ephV3CheckBox->setPalette(palette_white);
+      _ephIntrComboBox->setEnabled(true);
+      _ephV3CheckBox->setEnabled(true);
+    }
+    else {
+      _ephIntrComboBox->setStyleSheet("background-color: lightGray");
+      _ephV3CheckBox->setPalette(palette_gray);
+      _ephIntrComboBox->setEnabled(false);
+      _ephV3CheckBox->setEnabled(false);
+    }
+  }
+
+  // Broadcast Corrections
+  // ---------------------
+  if (sender() == 0 || 
+      sender() == _corrPathLineEdit || sender() == _corrPortLineEdit) {
+    if (!_corrPathLineEdit->text().isEmpty() || 
+        !_corrPortLineEdit->text().isEmpty()) { 
+      _corrIntrComboBox->setStyleSheet("background-color: white");
+      _corrIntrComboBox->setEnabled(true);
+    } 
+    else {
+      _corrIntrComboBox->setStyleSheet("background-color: white");
+      _corrIntrComboBox->setEnabled(true); 
+    }
+  }
+
+  // Feed Engine
+  // -----------
+  if (sender() == 0 || 
+      sender() == _outPortLineEdit || sender() == _outFileLineEdit) {
+    if ( !_outPortLineEdit->text().isEmpty() || 
+         !_outFileLineEdit->text().isEmpty()) {
+      _waitTimeSpinBox->setStyleSheet("background-color: white");
+      _binSamplSpinBox->setStyleSheet("background-color: white");
+      _waitTimeSpinBox->setEnabled(true);
+      _binSamplSpinBox->setEnabled(true);
+    } 
+    else {
+      _waitTimeSpinBox->setStyleSheet("background-color: lightGray");
+      _binSamplSpinBox->setStyleSheet("background-color: lightGray");
+      _waitTimeSpinBox->setEnabled(false);
+      _binSamplSpinBox->setEnabled(false); 
+    }
+  }
+
+  // Serial Output
+  // -------------
+  if (sender() == 0 || sender() == _serialMountPointLineEdit || 
+      sender() == _serialAutoNMEAComboBox) {
+    if (!_serialMountPointLineEdit->text().isEmpty()) {
+      _serialPortNameLineEdit->setStyleSheet("background-color: white");
+      _serialBaudRateComboBox->setStyleSheet("background-color: white");
+      _serialParityComboBox->setStyleSheet("background-color: white");
+      _serialDataBitsComboBox->setStyleSheet("background-color: white");
+      _serialStopBitsComboBox->setStyleSheet("background-color: white");
+      _serialFlowControlComboBox->setStyleSheet("background-color: white");
+      _serialAutoNMEAComboBox->setStyleSheet("background-color: white");
+      _serialPortNameLineEdit->setEnabled(true);
+      _serialBaudRateComboBox->setEnabled(true);
+      _serialParityComboBox->setEnabled(true);
+      _serialDataBitsComboBox->setEnabled(true);
+      _serialStopBitsComboBox->setEnabled(true);
+      _serialFlowControlComboBox->setEnabled(true);
+      _serialAutoNMEAComboBox->setEnabled(true);
+      if (_serialAutoNMEAComboBox->currentText() != "Auto" ) {
+        _serialHeightNMEALineEdit->setStyleSheet("background-color: white");
+        _serialHeightNMEALineEdit->setEnabled(true);
+        _serialFileNMEALineEdit->setStyleSheet("background-color: lightGray");
+        _serialFileNMEALineEdit->setEnabled(false);
+      } 
+      else {
+        _serialHeightNMEALineEdit->setStyleSheet("background-color: lightGray");
+        _serialHeightNMEALineEdit->setEnabled(false);
+        _serialFileNMEALineEdit->setStyleSheet("background-color: white");
+        _serialFileNMEALineEdit->setEnabled(true);
+      }
+    } 
+    else {
+      _serialPortNameLineEdit->setStyleSheet("background-color: lightGray");
+      _serialBaudRateComboBox->setStyleSheet("background-color: lightGray");
+      _serialParityComboBox->setStyleSheet("background-color: lightGray");
+      _serialDataBitsComboBox->setStyleSheet("background-color: lightGray");
+      _serialStopBitsComboBox->setStyleSheet("background-color: lightGray");
+      _serialFlowControlComboBox->setStyleSheet("background-color: lightGray");
+      _serialAutoNMEAComboBox->setStyleSheet("background-color: lightGray");
+      _serialFileNMEALineEdit->setStyleSheet("background-color: lightGray");
+      _serialHeightNMEALineEdit->setStyleSheet("background-color: lightGray");
+      _serialPortNameLineEdit->setEnabled(false);
+      _serialBaudRateComboBox->setEnabled(false);
+      _serialParityComboBox->setEnabled(false);
+      _serialDataBitsComboBox->setEnabled(false);
+      _serialStopBitsComboBox->setEnabled(false);
+      _serialFlowControlComboBox->setEnabled(false);
+      _serialAutoNMEAComboBox->setEnabled(false);
+      _serialHeightNMEALineEdit->setEnabled(false);
+      _serialFileNMEALineEdit->setEnabled(false);
+    }
+  }
+
+  // Outages
+  // -------
+  if (sender() == 0 || sender() == _obsRateComboBox) {
+    if (!_obsRateComboBox->currentText().isEmpty()) {
+      _adviseScriptLineEdit->setStyleSheet("background-color: white");
+      _adviseFailSpinBox->setStyleSheet("background-color: white");
+      _adviseRecoSpinBox->setStyleSheet("background-color: white");
+      _adviseFailSpinBox->setEnabled(true);
+      _adviseRecoSpinBox->setEnabled(true);
+      _adviseScriptLineEdit->setEnabled(true);
+    } else {
+      _adviseScriptLineEdit->setStyleSheet("background-color: lightGray");
+      _adviseFailSpinBox->setStyleSheet("background-color: lightGray");
+      _adviseRecoSpinBox->setStyleSheet("background-color: lightGray");
+      _adviseFailSpinBox->setEnabled(false);
+      _adviseRecoSpinBox->setEnabled(false);
+      _adviseScriptLineEdit->setEnabled(false);
+    }
+  }
+
+  // Miscellaneous
+  // -------------
+  if (sender() == 0 || sender() == _miscMountLineEdit) {
+    if (!_miscMountLineEdit->text().isEmpty()) {
+      _perfIntrComboBox->setStyleSheet("background-color: white");
+      _scanRTCMCheckBox->setPalette(palette_white);
+      _perfIntrComboBox->setEnabled(true);
+      _scanRTCMCheckBox->setEnabled(true);
+    } else {
+      _perfIntrComboBox->setStyleSheet("background-color: lightGray");
+      _scanRTCMCheckBox->setPalette(palette_gray);
+      _perfIntrComboBox->setEnabled(false);
+      _scanRTCMCheckBox->setEnabled(false);
+    }
+  }
+
+  // PPP Client
+  // ----------
+  if (sender() == 0 
+     || sender() == _pppMountLineEdit 
+     || sender() == _pppCorrMountLineEdit 
+     || sender() == _pppRefCrdXLineEdit 
+     || sender() == _pppRefCrdYLineEdit 
+     || sender() == _pppRefCrdZLineEdit 
+     || sender() == _pppRefdNLineEdit 
+     || sender() == _pppRefdELineEdit 
+     || sender() == _pppRefdULineEdit 
+     || sender() == _pppSync 
+     || sender() == _pppSPPComboBox
+     || sender() == _pppQuickStartLineEdit
+     || sender() == _pppEstTropoCheckBox
+     || sender() == _pppUsePhaseCheckBox    
+     || sender() == _pppAntexLineEdit ) {
+    if ((!_pppMountLineEdit->text().isEmpty() &&
+         !_pppCorrMountLineEdit->text().isEmpty()) ||
+       ( !_pppMountLineEdit->text().isEmpty() &&
+        _pppSPPComboBox->currentText() == "SPP")) {
+      _pppSPPComboBox->setPalette(palette_white);
+      _pppNMEALineEdit->setPalette(palette_white);
+      _pppNMEAPortLineEdit->setPalette(palette_white);
+      _pppRefCrdXLineEdit->setPalette(palette_white);
+      _pppRefCrdYLineEdit->setPalette(palette_white);
+      _pppRefCrdZLineEdit->setPalette(palette_white);
+      _pppRefdNLineEdit->setPalette(palette_white);
+      _pppRefdELineEdit->setPalette(palette_white);
+      _pppRefdULineEdit->setPalette(palette_white);
+      _pppUsePhaseCheckBox->setPalette(palette_white);
+      _pppPlotCoordinates->setPalette(palette_white);
+      _pppEstTropoCheckBox->setPalette(palette_white);
+      _pppGLONASSCheckBox->setPalette(palette_white);
+      _pppGalileoCheckBox->setPalette(palette_white);
+      _pppAntexLineEdit->setPalette(palette_white);
+      _pppSPPComboBox->setEnabled(true);
+      _pppNMEALineEdit->setEnabled(true);
+      _pppNMEAPortLineEdit->setEnabled(true);
+      _pppRefCrdXLineEdit->setEnabled(true);
+      _pppRefCrdYLineEdit->setEnabled(true);
+      _pppRefCrdZLineEdit->setEnabled(true);
+      _pppRefdNLineEdit->setEnabled(true);
+      _pppRefdELineEdit->setEnabled(true);
+      _pppRefdULineEdit->setEnabled(true);
+      _pppUsePhaseCheckBox->setEnabled(true);
+      _pppPlotCoordinates->setEnabled(true);
+      _pppEstTropoCheckBox->setEnabled(true);
+      _pppGLONASSCheckBox->setEnabled(true);
+      _pppGalileoCheckBox->setEnabled(true);
+      _pppRefCrdXLineEdit->setPalette(palette_white);
+      _pppRefCrdYLineEdit->setPalette(palette_white);
+      _pppRefCrdZLineEdit->setPalette(palette_white);
+      _pppRefdNLineEdit->setPalette(palette_white);
+      _pppRefdELineEdit->setPalette(palette_white);
+      _pppRefdULineEdit->setPalette(palette_white);
+      _pppAntexLineEdit->setEnabled(true);
+      if (!_pppRefCrdXLineEdit->text().isEmpty() &&
+          !_pppRefCrdYLineEdit->text().isEmpty() &&
+          !_pppRefCrdZLineEdit->text().isEmpty()) {
+        _pppAverageLineEdit->setPalette(palette_white);
+        _pppQuickStartLineEdit->setPalette(palette_white);
+        _pppAverageLineEdit->setEnabled(true);
+        _pppQuickStartLineEdit->setEnabled(true);
+      }
+      else {
+        _pppAverageLineEdit->setPalette(palette_gray);
+        _pppQuickStartLineEdit->setPalette(palette_gray);
+        _pppAverageLineEdit->setEnabled(false);
+        _pppQuickStartLineEdit->setEnabled(false);
+      }
+      if (!_pppRefCrdXLineEdit->text().isEmpty() &&
+          !_pppRefCrdYLineEdit->text().isEmpty() &&
+          !_pppRefCrdZLineEdit->text().isEmpty() &&
+          !_pppQuickStartLineEdit->text().isEmpty()) {
+        _pppMaxSolGapLineEdit->setPalette(palette_white);
+        _pppMaxSolGapLineEdit->setEnabled(true);
+      }
+      else {
+        _pppMaxSolGapLineEdit->setPalette(palette_gray);
+        _pppMaxSolGapLineEdit->setEnabled(false);
+      }
+      if (!_pppAntexLineEdit->text().isEmpty() ) {
+        _pppAntennaLineEdit->setEnabled(true);
+        _pppApplySatAntCheckBox->setEnabled(true);
+        _pppAntennaLineEdit->setPalette(palette_white);
+        _pppApplySatAntCheckBox->setPalette(palette_white);
+      }
+      else {
+        _pppAntennaLineEdit->setEnabled(false);
+        _pppApplySatAntCheckBox->setEnabled(false);
+        _pppAntennaLineEdit->setPalette(palette_gray);
+        _pppApplySatAntCheckBox->setPalette(palette_gray);
+      }
+        _pppSigCLineEdit->setPalette(palette_white);
+        _pppSigCLineEdit->setEnabled(true);
+        _pppSigCrd0->setPalette(palette_white);
+        _pppSigCrd0->setEnabled(true);
+        _pppSigCrdP->setPalette(palette_white);
+        _pppSigCrdP->setEnabled(true);
+      if (_pppEstTropoCheckBox->isChecked()
+         && !_pppMountLineEdit->text().isEmpty()) {
+        _pppSigTrp0->setPalette(palette_white);
+        _pppSigTrp0->setEnabled(true);
+        _pppSigTrpP->setPalette(palette_white);
+        _pppSigTrpP->setEnabled(true);
+      }
+      else {
+        _pppSigTrp0->setPalette(palette_gray);
+        _pppSigTrp0->setEnabled(false);
+        _pppSigTrpP->setPalette(palette_gray);
+        _pppSigTrpP->setEnabled(false);
+      }
+      if (_pppUsePhaseCheckBox->isChecked() 
+         && !_pppMountLineEdit->text().isEmpty()) {
+        _pppSigPLineEdit->setPalette(palette_white);
+        _pppSigPLineEdit->setEnabled(true);
+      }
+      else {
+        _pppSigPLineEdit->setPalette(palette_gray);
+        _pppSigPLineEdit->setEnabled(false);
+      }
+      if (_pppSPPComboBox->currentText() == "PPP") {
+        _pppSync->setPalette(palette_white);
+        _pppSync->setEnabled(true);
+      }
+      else {
+        _pppSync->setPalette(palette_gray);
+        _pppSync->setEnabled(false);
+      }
+    } else {
+      _pppSPPComboBox->setPalette(palette_gray);
+      _pppNMEALineEdit->setPalette(palette_gray);
+      _pppNMEAPortLineEdit->setPalette(palette_gray);
+      _pppRefCrdXLineEdit->setPalette(palette_gray);
+      _pppRefCrdYLineEdit->setPalette(palette_gray);
+      _pppRefCrdZLineEdit->setPalette(palette_gray);
+      _pppRefdNLineEdit->setPalette(palette_gray);
+      _pppRefdELineEdit->setPalette(palette_gray);
+      _pppRefdULineEdit->setPalette(palette_gray);
+      _pppSync->setPalette(palette_gray);
+      _pppUsePhaseCheckBox->setPalette(palette_gray);
+      _pppPlotCoordinates->setPalette(palette_gray);
+      _pppEstTropoCheckBox->setPalette(palette_gray);
+      _pppGLONASSCheckBox->setPalette(palette_gray);
+      _pppGalileoCheckBox->setPalette(palette_gray);
+      _pppSigCLineEdit->setPalette(palette_gray);
+      _pppSigPLineEdit->setPalette(palette_gray);
+      _pppSigCrd0->setPalette(palette_gray);
+      _pppSigCrdP->setPalette(palette_gray);
+      _pppSigTrp0->setPalette(palette_gray);
+      _pppSigTrpP->setPalette(palette_gray);
+      _pppAverageLineEdit->setPalette(palette_gray);
+      _pppQuickStartLineEdit->setPalette(palette_gray);
+      _pppMaxSolGapLineEdit->setPalette(palette_gray);
+      _pppAntexLineEdit->setPalette(palette_white);
+      _pppAntennaLineEdit->setPalette(palette_gray);
+      _pppApplySatAntCheckBox->setPalette(palette_gray);
+      _pppSPPComboBox->setEnabled(false);
+      _pppNMEALineEdit->setEnabled(false);
+      _pppNMEAPortLineEdit->setEnabled(false);
+      _pppRefCrdXLineEdit->setEnabled(false);
+      _pppRefCrdYLineEdit->setEnabled(false);
+      _pppRefCrdZLineEdit->setEnabled(false);
+      _pppRefdNLineEdit->setEnabled(false);
+      _pppRefdELineEdit->setEnabled(false);
+      _pppRefdULineEdit->setEnabled(false);
+      _pppSync->setEnabled(false);
+      _pppUsePhaseCheckBox->setEnabled(false);
+      _pppPlotCoordinates->setEnabled(false);
+      _pppEstTropoCheckBox->setEnabled(false);
+      _pppGLONASSCheckBox->setEnabled(false);
+      _pppGalileoCheckBox->setEnabled(false);
+      _pppSigCLineEdit->setEnabled(false);
+      _pppSigPLineEdit->setEnabled(false);
+      _pppSigCrd0->setEnabled(false);
+      _pppSigCrdP->setEnabled(false);
+      _pppSigTrp0->setEnabled(false);
+      _pppSigTrpP->setEnabled(false);
+      _pppAverageLineEdit->setEnabled(false);
+      _pppQuickStartLineEdit->setEnabled(false);
+      _pppMaxSolGapLineEdit->setEnabled(false);
+      _pppAntexLineEdit->setEnabled(true);
+      _pppAntennaLineEdit->setEnabled(false);
+      _pppApplySatAntCheckBox->setEnabled(false);
+    }
+// 
+    if (_pppMountLineEdit->text().isEmpty()) {
+      _pppCorrMountLineEdit->setPalette(palette_gray);
+      _pppCorrMountLineEdit->setEnabled(false);
+    } else {
+      _pppCorrMountLineEdit->setPalette(palette_white);
+      _pppCorrMountLineEdit->setEnabled(true);
+      if (_pppCorrMountLineEdit->text().isEmpty()) {
+        _pppSPPComboBox->setPalette(palette_white);
+        _pppSPPComboBox->setEnabled(true);
+      }
+    }
+    if (_pppSPPComboBox->currentText() == "SPP") {
+      _pppCorrMountLineEdit->setPalette(palette_gray);
+      _pppCorrMountLineEdit->setEnabled(false);
+    } 
+  }
+}
+
+// 
+////////////////////////////////////////////////////////////////////////////
+void bncWindow::slotAddCmbRow() {
+  int iRow = _cmbTable->rowCount();
+  _cmbTable->insertRow(iRow);
+  for (int iCol = 0; iCol < _cmbTable->columnCount(); iCol++) {
+    _cmbTable->setItem(iRow, iCol, new QTableWidgetItem(""));
+  }
+}
+
+// 
+////////////////////////////////////////////////////////////////////////////
+void bncWindow::slotDelCmbRow() {
+  int nRows = _cmbTable->rowCount();
+  bool flg[nRows];
+  for (int iRow = 0; iRow < nRows; iRow++) {
+    if (_cmbTable->isItemSelected(_cmbTable->item(iRow,1))) {
+      flg[iRow] = true;
+    }
+    else {
+      flg[iRow] = false;
+    }
+  }
+  for (int iRow = nRows-1; iRow >= 0; iRow--) {
+    if (flg[iRow]) {
+      _cmbTable->removeRow(iRow);
+    }
+  }
+}
+
+// 
+////////////////////////////////////////////////////////////////////////////
+void bncWindow::populateCmbTable() {
+
+  for (int iRow = _cmbTable->rowCount()-1; iRow >=0; iRow--) {
+    _cmbTable->removeRow(iRow);
+  }
+
+  bncSettings settings;
+
+  int iRow = -1;
+  QListIterator<QString> it(settings.value("combineStreams").toStringList());
+  while (it.hasNext()) {
+    QStringList hlp = it.next().split(" ");
+    if (hlp.size() > 2) {
+      ++iRow;
+      _cmbTable->insertRow(iRow);
+    }
+    for (int iCol = 0; iCol < hlp.size(); iCol++) {
+      _cmbTable->setItem(iRow, iCol, new QTableWidgetItem(hlp[iCol]));
+    }
+  }
+}
+
+// 
+////////////////////////////////////////////////////////////////////////////
+void bncWindow::slotAddUploadRow() {
+  int iRow = _uploadTable->rowCount();
+  _uploadTable->insertRow(iRow);
+  for (int iCol = 0; iCol < _uploadTable->columnCount(); iCol++) {
+    if      (iCol == 3) {
+      QLineEdit* passwd = new QLineEdit();
+      passwd->setFrame(false);
+      passwd->setEchoMode(QLineEdit::PasswordEchoOnEdit);
+      _uploadTable->setCellWidget(iRow, iCol, passwd);
+    }
+    else if (iCol == 4) {
+      QComboBox* system = new QComboBox();
+      system->setEditable(false);
+      system->addItems(QString("IGS05,ETRF2000,NAD83,GDA94,SIRGAS95,SIRGAS2000,Custom").split(","));
+      system->setFrame(false);
+      _uploadTable->setCellWidget(iRow, iCol, system);
+    }
+    else if (iCol == 5) {
+      QCheckBox* com = new QCheckBox();
+      _uploadTable->setCellWidget(iRow, iCol, com);
+    }
+    else if (iCol == 8) {
+      bncTableItem* bncIt = new bncTableItem();
+      bncIt->setFlags(bncIt->flags() & ~Qt::ItemIsEditable);
+      _uploadTable->setItem(iRow, iCol, bncIt);
+      ((bncApp*)qApp)->_uploadTableItems[iRow] = bncIt;
+    }
+    else {
+      _uploadTable->setItem(iRow, iCol, new QTableWidgetItem(""));
+    }
+  }
+}
+
+// 
+////////////////////////////////////////////////////////////////////////////
+void bncWindow::slotDelUploadRow() {
+  ((bncApp*)qApp)->_uploadTableItems.clear();
+  int nRows = _uploadTable->rowCount();
+  bool flg[nRows];
+  for (int iRow = 0; iRow < nRows; iRow++) {
+    if (_uploadTable->isItemSelected(_uploadTable->item(iRow,1))) {
+      flg[iRow] = true;
+    }
+    else {
+      flg[iRow] = false;
+    }
+  }
+  for (int iRow = nRows-1; iRow >= 0; iRow--) {
+    if (flg[iRow]) {
+      _uploadTable->removeRow(iRow);
+    }
+  }
+  for (int iRow = 0; iRow < _uploadTable->rowCount(); iRow++) {
+    ((bncApp*)qApp)->_uploadTableItems[iRow] = 
+                                (bncTableItem*) _uploadTable->item(iRow, 8);
+  }
+}
+
+// 
+////////////////////////////////////////////////////////////////////////////
+void bncWindow::populateUploadTable() {
+  for (int iRow = _uploadTable->rowCount()-1; iRow >=0; iRow--) {
+    _uploadTable->removeRow(iRow);
+  }
+
+  bncSettings settings;
+
+  int iRow = -1;
+  QListIterator<QString> it(settings.value("uploadMountpointsOut").toStringList());
+  while (it.hasNext()) {
+    QStringList hlp = it.next().split(",");
+    if (hlp.size() > 6) {
+      ++iRow;
+      _uploadTable->insertRow(iRow);
+    }
+    for (int iCol = 0; iCol < hlp.size(); iCol++) {
+      if      (iCol == 3) {
+        QLineEdit* passwd = new QLineEdit();
+        passwd->setFrame(false);
+        passwd->setEchoMode(QLineEdit::PasswordEchoOnEdit);
+        passwd->setText(hlp[iCol]);
+        _uploadTable->setCellWidget(iRow, iCol, passwd);
+      }
+      else if (iCol == 4) {
+        QComboBox* system = new QComboBox();
+        system->setEditable(false);
+        system->addItems(QString("IGS05,ETRF2000,NAD83,GDA94,SIRGAS95,SIRGAS2000,Custom").split(","));
+        system->setFrame(false);
+        system->setCurrentIndex(system->findText(hlp[iCol]));
+        _uploadTable->setCellWidget(iRow, iCol, system);
+      }
+      else if (iCol == 5) {
+        QCheckBox* com = new QCheckBox();
+        if (hlp[iCol].toInt() == Qt::Checked) {
+          com->setCheckState(Qt::Checked);
+        }
+        _uploadTable->setCellWidget(iRow, iCol, com);
+      }
+      else if (iCol == 8) {
+        bncTableItem* bncIt = new bncTableItem();
+        bncIt->setFlags(bncIt->flags() & ~Qt::ItemIsEditable);
+        _uploadTable->setItem(iRow, iCol, bncIt);
+        ((bncApp*)qApp)->_uploadTableItems[iRow] = bncIt;
+      }
+      else {
+        _uploadTable->setItem(iRow, iCol, new QTableWidgetItem(hlp[iCol]));
+      }
+    }
+  }
+}
+
+// 
+////////////////////////////////////////////////////////////////////////////
+void bncWindow::slotSetUploadTrafo() {
+  bncCustomTrafo* dlg = new bncCustomTrafo(this);
+  dlg->exec();
+  delete dlg;
+}
Index: branches/BNC_LM/bncwindow.h
===================================================================
--- branches/BNC_LM/bncwindow.h	(revision 3570)
+++ branches/BNC_LM/bncwindow.h	(revision 3570)
@@ -0,0 +1,223 @@
+// Part of BNC, a utility for retrieving decoding and
+// converting GNSS data streams from NTRIP broadcasters.
+//
+// Copyright (C) 2007
+// German Federal Agency for Cartography and Geodesy (BKG)
+// http://www.bkg.bund.de
+// Czech Technical University Prague, Department of Geodesy
+// http://www.fsv.cvut.cz
+//
+// Email: euref-ip@bkg.bund.de
+//
+// This program is free software; you can redistribute it and/or
+// modify it under the terms of the GNU General Public License
+// as published by the Free Software Foundation, version 2.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+#ifndef BNCWINDOW_H
+#define BNCWINDOW_H
+
+#include <QtGui>
+#include <QWhatsThis>
+
+#include "bncgetthread.h"
+#include "bnccaster.h"
+
+class bncAboutDlg : public QDialog {
+  Q_OBJECT
+  public:
+    bncAboutDlg(QWidget* parent);
+    ~bncAboutDlg();
+};
+
+class bncFlowchartDlg : public QDialog {
+  Q_OBJECT
+
+  public:
+    bncFlowchartDlg(QWidget* parent);
+    ~bncFlowchartDlg();
+};
+
+class bncFigure;
+class bncFigureLate;
+class bncFigurePPP;
+class bncBytesCounter;
+class bncEphUploadCaster;
+
+class bncWindow : public QMainWindow {
+  Q_OBJECT
+
+  public:
+    bncWindow();
+    ~bncWindow();
+    void CreateMenu();
+    void AddToolbar();
+
+  public slots:  
+    void slotMountPointsRead(QList<bncGetThread*>);
+    void slotBncTextChanged();
+
+  private slots:
+    void slotWindowMessage(const QByteArray msg, bool showOnScreen);
+    void slotHelp();
+    void slotAbout();
+    void slotFlowchart();
+    void slotFontSel();
+    void slotSaveOptions();
+    void slotAddMountPoints();
+    void slotGetData();
+    void slotStop();
+    void slotNewMountPoints(QStringList* mountPoints);
+    void slotDeleteMountPoints();
+    void slotGetThreadsFinished();
+    void slotSelectionChanged();
+    void slotWhatsThis();
+    void slotAddCmbRow();
+    void slotDelCmbRow();
+    void slotAddUploadRow();
+    void slotDelUploadRow();
+    void slotSetUploadTrafo();
+
+  protected:
+    virtual void closeEvent(QCloseEvent *);
+
+  private:
+    void populateMountPointsTable();
+    void populateCmbTable();
+    void populateUploadTable();
+
+    QMenu*     _menuHlp;
+    QMenu*     _menuFile;
+
+    QAction*   _actHelp;
+    QAction*   _actAbout;
+    QAction*   _actFlowchart;
+    QAction*   _actFontSel;
+    QAction*   _actSaveOpt;
+    QAction*   _actQuit; 
+    QAction*   _actGetData;
+    QAction*   _actStop;
+    QAction*   _actAddMountPoints;
+    QAction*   _actDeleteMountPoints;
+    QAction*   _actwhatsthis;
+    QAction*   _actwhatsthismenu;
+
+    QLineEdit* _proxyHostLineEdit;
+    QLineEdit* _proxyPortLineEdit;
+    QLineEdit* _sslCaCertPathLineEdit;
+    QCheckBox* _ignoreSslErrorsCheckBox;
+    QLineEdit* _outFileLineEdit;
+    QLineEdit* _outPortLineEdit;
+    QLineEdit* _outUPortLineEdit;
+    QLineEdit* _outEphPortLineEdit;
+    QLineEdit* _corrPortLineEdit;
+    QLineEdit* _rnxPathLineEdit;
+    QLineEdit* _ephPathLineEdit;
+    QLineEdit* _corrPathLineEdit;
+    QLineEdit* _miscMountLineEdit;
+    QLineEdit* _pppMountLineEdit;
+    QLineEdit* _pppCorrMountLineEdit;
+    QLineEdit* _pppNMEALineEdit;
+    QLineEdit* _pppNMEAPortLineEdit;
+    QLineEdit* _pppSigCLineEdit;
+    QLineEdit* _pppSigPLineEdit;
+    QLineEdit* _pppSigCrd0;
+    QLineEdit* _pppSigCrdP;
+    QLineEdit* _pppSigTrp0;
+    QLineEdit* _pppSigTrpP;
+    QLineEdit* _pppSync;
+    QLineEdit* _pppAverageLineEdit;
+    QLineEdit* _pppQuickStartLineEdit;
+    QLineEdit* _pppMaxSolGapLineEdit;
+    QLineEdit* _pppRefCrdXLineEdit;
+    QLineEdit* _pppRefCrdYLineEdit;
+    QLineEdit* _pppRefCrdZLineEdit;
+    QLineEdit* _pppRefdNLineEdit;
+    QLineEdit* _pppRefdELineEdit;
+    QLineEdit* _pppRefdULineEdit;
+    QCheckBox* _pppPlotCoordinates;
+    QCheckBox* _pppUsePhaseCheckBox;
+    QCheckBox* _pppEstTropoCheckBox;
+    QCheckBox* _pppGLONASSCheckBox;
+    QCheckBox* _pppGalileoCheckBox;
+    QLineEdit* _pppAntennaLineEdit;
+    QLineEdit* _pppAntexLineEdit;
+    QCheckBox* _pppApplySatAntCheckBox;
+    QCheckBox* _rnxV3CheckBox;
+    QCheckBox* _ephV3CheckBox;
+    QLineEdit* _rnxSkelLineEdit;
+    QLineEdit* _rnxScrpLineEdit;
+    QLineEdit* _logFileLineEdit;
+    QLineEdit* _rawOutFileLineEdit;
+    QComboBox* _pppSPPComboBox;
+    QComboBox* _rnxIntrComboBox;
+    QComboBox* _ephIntrComboBox;
+    QComboBox* _corrIntrComboBox;
+    QSpinBox*  _rnxSamplSpinBox;
+    QSpinBox*  _binSamplSpinBox;
+    QCheckBox* _rnxAppendCheckBox;
+    QCheckBox* _autoStartCheckBox;
+    QCheckBox* _scanRTCMCheckBox;
+    QSpinBox*  _waitTimeSpinBox;
+    QSpinBox*  _corrTimeSpinBox;
+    QComboBox* _obsRateComboBox;
+    QSpinBox*  _adviseFailSpinBox;
+    QSpinBox*  _adviseRecoSpinBox;
+    QLineEdit* _adviseScriptLineEdit;
+    QComboBox* _perfIntrComboBox;
+    QTableWidget* _mountPointsTable;
+
+    QLineEdit* _serialPortNameLineEdit;
+    QLineEdit* _serialMountPointLineEdit;
+    QComboBox* _serialBaudRateComboBox;
+    QComboBox* _serialParityComboBox;
+    QComboBox* _serialDataBitsComboBox;
+    QComboBox* _serialStopBitsComboBox;
+    QComboBox* _serialFlowControlComboBox;
+    QLineEdit* _serialHeightNMEALineEdit;
+    QLineEdit* _serialFileNMEALineEdit;
+    QComboBox* _serialAutoNMEAComboBox;
+
+    QLineEdit*   _LatLineEdit;
+    QLineEdit*   _LonLineEdit;
+
+    QComboBox*  _onTheFlyComboBox;
+
+    QTextEdit*  _log;
+
+    QWidget*    _canvas;
+    QTabWidget* _aogroup;
+
+    QTabWidget* _loggroup;
+    bncFigure*  _bncFigure;
+    bncFigureLate*  _bncFigureLate;
+    bncFigurePPP*   _bncFigurePPP;
+
+    QTableWidget* _cmbTable;
+    QLineEdit*    _cmbMaxresLineEdit;
+    QComboBox*    _cmbMethodComboBox;
+
+    QTableWidget* _uploadTable;
+    QComboBox*    _uploadIntrComboBox;
+    QSpinBox*     _uploadSamplSpinBox;
+
+    QLineEdit*       _uploadEphHostLineEdit;
+    QLineEdit*       _uploadEphPortLineEdit;
+    QLineEdit*       _uploadEphPasswordLineEdit;
+    QLineEdit*       _uploadEphMountpointLineEdit;
+    QSpinBox*        _uploadEphSampleSpinBox;
+    bncBytesCounter* _uploadEphBytesCounter;
+
+    bncCaster* _caster;
+
+    bncEphUploadCaster* _casterEph;
+};
+#endif
Index: branches/BNC_LM/bnczerodecoder.cpp
===================================================================
--- branches/BNC_LM/bnczerodecoder.cpp	(revision 3570)
+++ branches/BNC_LM/bnczerodecoder.cpp	(revision 3570)
@@ -0,0 +1,99 @@
+// Part of BNC, a utility for retrieving decoding and
+// converting GNSS data streams from NTRIP broadcasters.
+//
+// Copyright (C) 2007
+// German Federal Agency for Cartography and Geodesy (BKG)
+// http://www.bkg.bund.de
+// Czech Technical University Prague, Department of Geodesy
+// http://www.fsv.cvut.cz
+//
+// Email: euref-ip@bkg.bund.de
+//
+// This program is free software; you can redistribute it and/or
+// modify it under the terms of the GNU General Public License
+// as published by the Free Software Foundation, version 2.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+/* -------------------------------------------------------------------------
+ * BKG NTRIP Client
+ * -------------------------------------------------------------------------
+ *
+ * Class:      bncZeroDecoder
+ *
+ * Purpose:    Implementation of zero decoder to by-pass decoding algorithm
+ *
+ * Author:     L. Mervart
+ *
+ * Created:    24-Apr-2007
+ *
+ * Changes:    
+ *
+ * -----------------------------------------------------------------------*/
+
+#include <iostream>
+#include "bnczerodecoder.h"
+#include "bncutils.h"
+#include "bncsettings.h"
+
+using namespace std;
+
+// Constructor
+//////////////////////////////////////////////////////////////////////// 
+bncZeroDecoder::bncZeroDecoder(const QString& fileName) {
+
+  bncSettings settings;
+  QString path = settings.value("rnxPath").toString();
+  expandEnvVar(path);
+
+  if ( path.length() > 0 && path[path.length()-1] != QDir::separator() ) {
+    path += QDir::separator();
+  }
+
+  _fileName = path + fileName;
+
+  _out = 0;
+}
+
+// Destructor
+//////////////////////////////////////////////////////////////////////// 
+bncZeroDecoder::~bncZeroDecoder() {
+  delete _out;
+}
+
+// Reopen Output File
+//////////////////////////////////////////////////////////////////////// 
+void bncZeroDecoder::reopen() {
+  QDate currDate = currentDateAndTimeGPS().date();
+  if (!_out || _fileDate != currDate) {
+    delete _out;
+    QByteArray fileName = 
+           (_fileName + "_" + currDate.toString("yyMMdd")).toAscii();
+    bncSettings settings;
+    if (Qt::CheckState(settings.value("rnxAppend").toInt()) == Qt::Checked) {
+      _out = new ofstream(fileName.data(), ios::out | ios::app);
+    }
+    else {
+      _out = new ofstream(fileName.data());
+    }
+    _fileDate = currDate;
+  }
+}
+
+// Decode Method
+//////////////////////////////////////////////////////////////////////// 
+t_irc bncZeroDecoder::Decode(char* buffer, int bufLen, vector<string>& errmsg) {
+  errmsg.clear();
+  reopen();
+  _out->write(buffer, bufLen);
+  _out->flush();
+  return success;
+}
+
Index: branches/BNC_LM/bnczerodecoder.h
===================================================================
--- branches/BNC_LM/bnczerodecoder.h	(revision 3570)
+++ branches/BNC_LM/bnczerodecoder.h	(revision 3570)
@@ -0,0 +1,44 @@
+// Part of BNC, a utility for retrieving decoding and
+// converting GNSS data streams from NTRIP broadcasters.
+//
+// Copyright (C) 2007
+// German Federal Agency for Cartography and Geodesy (BKG)
+// http://www.bkg.bund.de
+// Czech Technical University Prague, Department of Geodesy
+// http://www.fsv.cvut.cz
+//
+// Email: euref-ip@bkg.bund.de
+//
+// This program is free software; you can redistribute it and/or
+// modify it under the terms of the GNU General Public License
+// as published by the Free Software Foundation, version 2.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+#ifndef INC_BNCZERODECODER_H
+#define INC_BNCZERODECODER_H
+
+#include <fstream>
+#include <QtCore>
+#include "RTCM/GPSDecoder.h"
+
+class bncZeroDecoder: public GPSDecoder {
+ public:
+  bncZeroDecoder(const QString& fileName);
+  ~bncZeroDecoder();
+  virtual t_irc Decode(char* buffer, int bufLen, std::vector<std::string>& errmsg);
+ private:
+  void reopen();
+  QString        _fileName;
+  std::ofstream* _out;
+  QDate          _fileDate;
+};
+
+#endif  // include blocker
Index: branches/BNC_LM/combination/bnccomb.cpp
===================================================================
--- branches/BNC_LM/combination/bnccomb.cpp	(revision 3570)
+++ branches/BNC_LM/combination/bnccomb.cpp	(revision 3570)
@@ -0,0 +1,1112 @@
+/* -------------------------------------------------------------------------
+ * BKG NTRIP Client
+ * -------------------------------------------------------------------------
+ *
+ * Class:      bncComb
+ *
+ * Purpose:    Combinations of Orbit/Clock Corrections
+ *
+ * Author:     L. Mervart
+ *
+ * Created:    22-Jan-2011
+ *
+ * Changes:    
+ *
+ * -----------------------------------------------------------------------*/
+
+#include <newmatio.h>
+#include <iomanip>
+#include <sstream>
+
+#include "bnccomb.h"
+#include "bncapp.h"
+#include "upload/bncrtnetdecoder.h"
+#include "bncsettings.h"
+#include "bncmodel.h"
+#include "bncutils.h"
+#include "bncpppclient.h"
+#include "bncsp3.h"
+#include "bncantex.h"
+#include "bnctides.h"
+
+const int moduloTime = 10;
+
+const double sig0_offAC    = 1000.0;
+const double sig0_offACSat =  100.0;
+const double sigP_offACSat =   0.01;
+const double sig0_clkSat   =  100.0;
+
+const double sigObs        =   0.05;
+
+const int MAXPRN_GPS     = 32;
+const int MAXPRN_GLONASS = 24;
+
+using namespace std;
+
+// Constructor
+////////////////////////////////////////////////////////////////////////////
+cmbParam::cmbParam(parType type_, int index_,
+                   const QString& ac_, const QString& prn_) {
+
+  type   = type_;
+  index  = index_;
+  AC     = ac_;
+  prn    = prn_;
+  xx     = 0.0;
+  eph    = 0;
+
+  if      (type == offACgps) {
+    epoSpec = true;
+    sig0    = sig0_offAC;
+    sigP    = sig0;
+  }
+  else if (type == offACglo) {
+    epoSpec = true;
+    sig0    = sig0_offAC;
+    sigP    = sig0;
+  }
+  else if (type == offACSat) {
+    epoSpec = false;
+    sig0    = sig0_offACSat;
+    sigP    = sigP_offACSat;
+  }
+  else if (type == clkSat) {
+    epoSpec = true;
+    sig0    = sig0_clkSat;
+    sigP    = sig0;
+  }
+}
+
+// Destructor
+////////////////////////////////////////////////////////////////////////////
+cmbParam::~cmbParam() {
+}
+
+// Partial
+////////////////////////////////////////////////////////////////////////////
+double cmbParam::partial(const QString& AC_, const QString& prn_) {
+  
+  if      (type == offACgps) {
+    if (AC == AC_ && prn_[0] == 'G') {
+      return 1.0;
+    }
+  }
+  else if (type == offACglo) {
+    if (AC == AC_ && prn_[0] == 'R') {
+      return 1.0;
+    }
+  }
+  else if (type == offACSat) {
+    if (AC == AC_ && prn == prn_) {
+      return 1.0;
+    }
+  }
+  else if (type == clkSat) {
+    if (prn == prn_) {
+      return 1.0;
+    }
+  }
+
+  return 0.0;
+}
+
+// 
+////////////////////////////////////////////////////////////////////////////
+QString cmbParam::toString() const {
+
+  QString outStr;
+ 
+  if      (type == offACgps) {
+    outStr = "AC offset GPS " + AC;
+  }
+  else if (type == offACglo) {
+    outStr = "AC offset GLO " + AC;
+  }
+  else if (type == offACSat) {
+    outStr = "Sat Offset " + AC + " " + prn;
+  }
+  else if (type == clkSat) {
+    outStr = "Clk Corr " + prn;
+  }
+
+  return outStr;
+}
+
+// Constructor
+////////////////////////////////////////////////////////////////////////////
+bncComb::bncComb() {
+
+  bncSettings settings;
+
+  QStringList combineStreams = settings.value("combineStreams").toStringList();
+
+  _masterMissingEpochs = 0;
+
+  if (combineStreams.size() >= 1 && !combineStreams[0].isEmpty()) {
+    QListIterator<QString> it(combineStreams);
+    while (it.hasNext()) {
+      QStringList hlp = it.next().split(" ");
+      cmbAC* newAC = new cmbAC();
+      newAC->mountPoint = hlp[0];
+      newAC->name       = hlp[1];
+      newAC->weight     = hlp[2].toDouble();
+      if (_masterOrbitAC.isEmpty()) {
+        _masterOrbitAC = newAC->name;
+      }
+      _ACs.append(newAC);
+    }
+  }
+
+  _rtnetDecoder = 0;
+
+  connect(this, SIGNAL(newMessage(QByteArray,bool)), 
+          ((bncApp*)qApp), SLOT(slotMessage(const QByteArray,bool)));
+
+  // Combination Method
+  // ------------------
+  if (settings.value("cmbMethod").toString() == "Single-Epoch") {
+    _method = singleEpoch;
+  }
+  else {
+    _method = filter;
+  }
+
+  // Use Glonass
+  // -----------
+  if ( Qt::CheckState(settings.value("pppGLONASS").toInt()) == Qt::Checked) {
+    _useGlonass = true;
+  }
+  else {
+    _useGlonass = false;
+  }
+
+  // Initialize Parameters (model: Clk_Corr = AC_Offset + Sat_Offset + Clk)
+  // ----------------------------------------------------------------------
+  if (_method == filter) {
+    int nextPar = 0;
+    QListIterator<cmbAC*> it(_ACs);
+    while (it.hasNext()) {
+      cmbAC* AC = it.next();
+      _params.push_back(new cmbParam(cmbParam::offACgps, ++nextPar, AC->name, ""));
+      for (int iGps = 1; iGps <= MAXPRN_GPS; iGps++) {
+        QString prn = QString("G%1").arg(iGps, 2, 10, QChar('0'));
+        _params.push_back(new cmbParam(cmbParam::offACSat, ++nextPar, 
+                                       AC->name, prn));
+      }
+      if (_useGlonass) {
+        _params.push_back(new cmbParam(cmbParam::offACglo, ++nextPar, AC->name, ""));
+        for (int iGlo = 1; iGlo <= MAXPRN_GLONASS; iGlo++) {
+          QString prn = QString("R%1").arg(iGlo, 2, 10, QChar('0'));
+          _params.push_back(new cmbParam(cmbParam::offACSat, ++nextPar, 
+                                         AC->name, prn));
+        }
+      }
+    }
+    for (int iGps = 1; iGps <= MAXPRN_GPS; iGps++) {
+      QString prn = QString("G%1").arg(iGps, 2, 10, QChar('0'));
+      _params.push_back(new cmbParam(cmbParam::clkSat, ++nextPar, "", prn));
+    }
+    if (_useGlonass) {
+      for (int iGlo = 1; iGlo <= MAXPRN_GLONASS; iGlo++) {
+        QString prn = QString("R%1").arg(iGlo, 2, 10, QChar('0'));
+        _params.push_back(new cmbParam(cmbParam::clkSat, ++nextPar, "", prn));
+      }
+    }
+    
+    // Initialize Variance-Covariance Matrix
+    // -------------------------------------
+    _QQ.ReSize(_params.size());
+    _QQ = 0.0;
+    for (int iPar = 1; iPar <= _params.size(); iPar++) {
+      cmbParam* pp = _params[iPar-1];
+      _QQ(iPar,iPar) = pp->sig0 * pp->sig0;
+    }
+  }
+
+  // ANTEX File
+  // ----------
+  _antex = 0;
+  QString antexFileName = settings.value("pppAntex").toString();
+  if (!antexFileName.isEmpty()) {
+    _antex = new bncAntex();
+    if (_antex->readFile(antexFileName) != success) {
+      emit newMessage("wrong ANTEX file", true);
+      delete _antex;
+      _antex = 0;
+    }
+  }
+
+  // Maximal Residuum
+  // ----------------
+  _MAXRES = settings.value("cmbMaxres").toDouble();
+  if (_MAXRES <= 0.0) {
+    _MAXRES = 999.0;
+  }
+}
+
+// Destructor
+////////////////////////////////////////////////////////////////////////////
+bncComb::~bncComb() {
+  QListIterator<cmbAC*> icAC(_ACs);
+  while (icAC.hasNext()) {
+    delete icAC.next();
+  }
+  delete _rtnetDecoder;
+  delete _antex;
+  for (int iPar = 1; iPar <= _params.size(); iPar++) {
+    delete _params[iPar-1];
+  }
+  QVectorIterator<cmbCorr*> itCorr(corrs());
+  while (itCorr.hasNext()) {
+    delete itCorr.next();
+  }
+}
+
+// Read and store one correction line
+////////////////////////////////////////////////////////////////////////////
+void bncComb::processCorrLine(const QString& staID, const QString& line) {
+  QMutexLocker locker(&_mutex);
+
+  // Find the AC Name
+  // ----------------
+  QString acName;
+  QListIterator<cmbAC*> icAC(_ACs);
+  while (icAC.hasNext()) {
+    cmbAC* AC = icAC.next();
+    if (AC->mountPoint == staID) {
+      acName = AC->name;
+      break;
+    }
+  }
+  if (acName.isEmpty()) {
+    return;
+  }
+
+  // Read the Correction
+  // -------------------
+  cmbCorr* newCorr = new cmbCorr();
+  newCorr->acName = acName;
+  if (!newCorr->readLine(line) == success) {
+    delete newCorr;
+    return;
+  }
+
+  // Check Glonass
+  // -------------
+  if (!_useGlonass) {
+    if (newCorr->prn[0] == 'R') {
+      delete newCorr;
+      return;
+    }
+  }
+
+  // Check Modulo Time
+  // -----------------
+  if (int(newCorr->tt.gpssec()) % moduloTime != 0.0) {
+    delete newCorr;
+    return;
+  }
+
+  // Delete old corrections
+  // ----------------------
+  if (_resTime.valid() && newCorr->tt <= _resTime) {
+    delete newCorr;
+    return;
+  }
+
+  // Check the Ephemeris
+  //--------------------
+  if (_eph.find(newCorr->prn) == _eph.end()) {
+    delete newCorr;
+    return;
+  }
+  else {
+    t_eph* lastEph = _eph[newCorr->prn]->last;
+    t_eph* prevEph = _eph[newCorr->prn]->prev;
+    if      (lastEph && lastEph->IOD() == newCorr->iod) {
+      newCorr->eph = lastEph;
+    }
+    else if (lastEph && prevEph && prevEph->IOD() == newCorr->iod) {
+      newCorr->eph = prevEph;
+      switchToLastEph(lastEph, newCorr);
+    }
+    else {
+      delete newCorr;
+      return;
+    }
+  }
+
+  // Process previous Epoch(s)
+  // -------------------------
+  QListIterator<bncTime> itTime(_buffer.keys());
+  while (itTime.hasNext()) {
+    bncTime epoTime = itTime.next();
+    if (epoTime < newCorr->tt - moduloTime) {
+      _resTime = epoTime;
+      processEpoch();
+    }
+  }
+
+  // Merge or add the correction
+  // ---------------------------
+  QVector<cmbCorr*>& corrs = _buffer[newCorr->tt].corrs;
+  cmbCorr* existingCorr = 0;
+  QVectorIterator<cmbCorr*> itCorr(corrs);
+  while (itCorr.hasNext()) {
+    cmbCorr* hlp = itCorr.next();
+    if (hlp->prn == newCorr->prn && hlp->acName == newCorr->prn) {
+      existingCorr = hlp;
+      break;
+    }
+  }
+  if (existingCorr) {
+    delete newCorr;
+    existingCorr->readLine(line); // merge (multiple messages)
+  }
+  else {
+    corrs.append(newCorr);
+  }
+}
+
+// Change the correction so that it refers to last received ephemeris 
+////////////////////////////////////////////////////////////////////////////
+void bncComb::switchToLastEph(const t_eph* lastEph, t_corr* corr) {
+
+  if (corr->eph == lastEph) {
+    return;
+  }
+
+  ColumnVector oldXC(4);
+  ColumnVector oldVV(3);
+  corr->eph->position(corr->tt.gpsw(), corr->tt.gpssec(), 
+                      oldXC.data(), oldVV.data());
+
+  ColumnVector newXC(4);
+  ColumnVector newVV(3);
+  lastEph->position(corr->tt.gpsw(), corr->tt.gpssec(), 
+                    newXC.data(), newVV.data());
+
+  ColumnVector dX = newXC.Rows(1,3) - oldXC.Rows(1,3);
+  ColumnVector dV = newVV           - oldVV;
+  double       dC = newXC(4)        - oldXC(4);
+
+  ColumnVector dRAO(3);
+  XYZ_to_RSW(newXC.Rows(1,3), newVV, dX, dRAO);
+
+  ColumnVector dDotRAO(3);
+  XYZ_to_RSW(newXC.Rows(1,3), newVV, dV, dDotRAO);
+
+  QString msg = "switch corr " + corr->prn 
+    + QString(" %1 -> %2 %3").arg(corr->iod,3)
+    .arg(lastEph->IOD(),3).arg(dC*t_CST::c, 8, 'f', 4);
+
+  emit newMessage(msg.toAscii(), false);
+
+  corr->iod     = lastEph->IOD();
+  corr->eph     = lastEph;
+  corr->rao    += dRAO;
+  corr->dotRao += dDotRAO;
+  corr->dClk   -= dC;
+}
+
+// Process Epoch
+////////////////////////////////////////////////////////////////////////////
+void bncComb::processEpoch() {
+
+  _log.clear();
+
+  QTextStream out(&_log, QIODevice::WriteOnly);
+
+  out << endl <<           "Combination:" << endl 
+      << "------------------------------" << endl;
+
+  // Observation Statistics
+  // ----------------------
+  bool masterPresent = false;
+  QListIterator<cmbAC*> icAC(_ACs);
+  while (icAC.hasNext()) {
+    cmbAC* AC = icAC.next();
+    AC->numObs = 0;
+    QVectorIterator<cmbCorr*> itCorr(corrs());
+    while (itCorr.hasNext()) {
+      cmbCorr* corr = itCorr.next();
+      if (corr->acName == AC->name) {
+        AC->numObs += 1;
+        if (AC->name == _masterOrbitAC) {
+          masterPresent = true;
+        }
+      }
+    }
+    out << AC->name.toAscii().data() << ": " << AC->numObs << endl;
+  }
+
+  // If Master not present, switch to another one
+  // --------------------------------------------
+  if (masterPresent) {
+    _masterMissingEpochs = 0;
+  }
+  else {
+    ++_masterMissingEpochs;
+    if (_masterMissingEpochs < 10) {
+      out << "Missing Master, Epoch skipped" << endl;
+      _buffer.remove(_resTime);
+      emit newMessage(_log, false);
+      return;
+    }
+    else {
+      _masterMissingEpochs = 0;
+      QListIterator<cmbAC*> icAC(_ACs);
+      while (icAC.hasNext()) {
+        cmbAC* AC = icAC.next();
+        if (AC->numObs > 0) {
+          out << "Switching Master AC "
+              << _masterOrbitAC.toAscii().data() << " --> " 
+              << AC->name.toAscii().data()   << " " 
+              << _resTime.datestr().c_str()    << " " 
+              << _resTime.timestr().c_str()    << endl;
+          _masterOrbitAC = AC->name;
+          break;
+        }
+      }
+    }
+  }
+
+  QMap<QString, t_corr*> resCorr;
+
+  // Perform the actual Combination using selected Method
+  // ----------------------------------------------------
+  t_irc irc;
+  ColumnVector dx;
+  if (_method == filter) {
+    irc = processEpoch_filter(out, resCorr, dx);
+  }
+  else {
+    irc = processEpoch_singleEpoch(out, resCorr, dx);
+  }
+
+  // Update Parameter Values, Print Results
+  // --------------------------------------
+  if (irc == success) {
+    for (int iPar = 1; iPar <= _params.size(); iPar++) {
+      cmbParam* pp = _params[iPar-1];
+      pp->xx += dx(iPar);
+      if (pp->type == cmbParam::clkSat) {
+        if (resCorr.find(pp->prn) != resCorr.end()) {
+          resCorr[pp->prn]->dClk = pp->xx / t_CST::c;
+        }
+      }
+      out << _resTime.datestr().c_str() << " " 
+          << _resTime.timestr().c_str() << " ";
+      out.setRealNumberNotation(QTextStream::FixedNotation);
+      out.setFieldWidth(8);
+      out.setRealNumberPrecision(4);
+      out << pp->toString() << " "
+          << pp->xx << " +- " << sqrt(_QQ(pp->index,pp->index)) << endl;
+      out.setFieldWidth(0);
+    }
+    printResults(out, resCorr);
+    dumpResults(resCorr);
+  }
+
+  // Delete Data, emit Message
+  // -------------------------
+  _buffer.remove(_resTime);
+  emit newMessage(_log, false);
+}
+
+// Process Epoch - Filter Method
+////////////////////////////////////////////////////////////////////////////
+t_irc bncComb::processEpoch_filter(QTextStream& out,
+                                   QMap<QString, t_corr*>& resCorr,
+                                   ColumnVector& dx) {
+
+  // Prediction Step
+  // ---------------
+  int nPar = _params.size();
+  ColumnVector x0(nPar);
+  for (int iPar = 1; iPar <= _params.size(); iPar++) {
+    cmbParam* pp  = _params[iPar-1];
+    if (pp->epoSpec) {
+      pp->xx = 0.0;
+      _QQ.Row(iPar)    = 0.0;
+      _QQ.Column(iPar) = 0.0;
+      _QQ(iPar,iPar) = pp->sig0 * pp->sig0;
+    }
+    else {
+      _QQ(iPar,iPar) += pp->sigP * pp->sigP;
+    }
+    x0(iPar) = pp->xx;
+  }
+
+  // Check Satellite Positions for Outliers
+  // --------------------------------------
+  if (checkOrbits(out) != success) {
+    return failure;
+  }
+
+  // Update and outlier detection loop
+  // ---------------------------------
+  SymmetricMatrix QQ_sav = _QQ;
+  while (true) {
+
+    Matrix         AA;
+    ColumnVector   ll;
+    DiagonalMatrix PP;
+
+    if (createAmat(AA, ll, PP, x0, resCorr) != success) {
+      return failure;
+    }
+
+    bncModel::kalman(AA, ll, PP, _QQ, dx);
+    ColumnVector vv = ll - AA * dx;
+
+    int     maxResIndex;
+    double  maxRes = vv.maximum_absolute_value1(maxResIndex);   
+    out.setRealNumberNotation(QTextStream::FixedNotation);
+    out.setRealNumberPrecision(3);  
+    out << _resTime.datestr().c_str() << " " << _resTime.timestr().c_str()
+        << " Maximum Residuum " << maxRes << ' '
+        << corrs()[maxResIndex-1]->acName << ' ' << corrs()[maxResIndex-1]->prn;
+
+    if (maxRes > _MAXRES) {
+      for (int iPar = 1; iPar <= _params.size(); iPar++) {
+        cmbParam* pp = _params[iPar-1];
+        if (pp->type == cmbParam::offACSat            && 
+            pp->AC   == corrs()[maxResIndex-1]->acName &&
+            pp->prn  == corrs()[maxResIndex-1]->prn) { 
+          QQ_sav.Row(iPar)    = 0.0;
+          QQ_sav.Column(iPar) = 0.0;
+          QQ_sav(iPar,iPar)   = pp->sig0 * pp->sig0;
+        }
+      }
+
+      out << "  Outlier" << endl;
+      _QQ = QQ_sav;
+      corrs().remove(maxResIndex-1);
+    }
+    else {
+      out << "  OK" << endl;
+      break;
+    }
+  }
+
+  return success;
+}
+
+// Print results
+////////////////////////////////////////////////////////////////////////////
+void bncComb::printResults(QTextStream& out,
+                           const QMap<QString, t_corr*>& resCorr) {
+
+  QMapIterator<QString, t_corr*> it(resCorr);
+  while (it.hasNext()) {
+    it.next();
+    t_corr* corr = it.value();
+    const t_eph* eph = corr->eph;
+    if (eph) {
+      double xx, yy, zz, cc;
+      eph->position(_resTime.gpsw(), _resTime.gpssec(), xx, yy, zz, cc);
+
+      out << _resTime.datestr().c_str() << " " 
+          << _resTime.timestr().c_str() << " ";
+      out.setFieldWidth(3);
+      out << "Full Clock " << corr->prn << " " << corr->iod << " ";
+      out.setFieldWidth(14);
+      out << (cc + corr->dClk) * t_CST::c << endl;
+      out.setFieldWidth(0);
+    }
+    else {
+      out << "bncComb::printResuls bug" << endl;
+    }
+  }
+}
+
+// Send results to RTNet Decoder and directly to PPP Client
+////////////////////////////////////////////////////////////////////////////
+void bncComb::dumpResults(const QMap<QString, t_corr*>& resCorr) {
+
+  ostringstream out; out.setf(std::ios::fixed);
+  QStringList   corrLines;
+
+  unsigned year, month, day, hour, minute;
+  double   sec;
+  _resTime.civil_date(year, month, day);
+  _resTime.civil_time(hour, minute, sec);
+
+  out << "*  " 
+      << setw(4)  << year   << " " 
+      << setw(2)  << month  << " " 
+      << setw(2)  << day    << " " 
+      << setw(2)  << hour   << " " 
+      << setw(2)  << minute << " " 
+      << setw(12) << setprecision(8) << sec << " "
+      << endl; 
+
+  QMapIterator<QString, t_corr*> it(resCorr);
+  while (it.hasNext()) {
+    it.next();
+    t_corr* corr = it.value();
+
+    double dT = 60.0;
+
+    for (int iTime = 1; iTime <= 2; iTime++) {
+
+      bncTime time12 = (iTime == 1) ? _resTime : _resTime + dT;
+
+      ColumnVector xc(4);
+      ColumnVector vv(3);
+      corr->eph->position(time12.gpsw(), time12.gpssec(), 
+                          xc.data(), vv.data());
+      bncPPPclient::applyCorr(time12, corr, xc, vv);
+      
+      // Relativistic Correction
+      // -----------------------
+      double relCorr = - 2.0 * DotProduct(xc.Rows(1,3),vv) / t_CST::c / t_CST::c;
+      xc(4) -= relCorr;
+      
+      // Code Biases
+      // -----------
+      double dcbP1C1 = 0.0;
+      double dcbP1P2 = 0.0;
+      
+      // Correction Phase Center --> CoM
+      // -------------------------------
+      ColumnVector dx(3); dx = 0.0;
+      if (_antex) {
+        double Mjd = time12.mjd() + time12.daysec()/86400.0;
+        if (_antex->satCoMcorrection(corr->prn, Mjd, xc.Rows(1,3), dx) == success) {
+          xc(1) -= dx(1);
+          xc(2) -= dx(2);
+          xc(3) -= dx(3);
+        }
+        else {
+          cout << "antenna not found" << endl;
+        }
+      }
+      
+      if (iTime == 1) {
+        out << 'P' << corr->prn.toAscii().data()
+            << setw(14) << setprecision(6) << xc(1) / 1000.0
+            << setw(14) << setprecision(6) << xc(2) / 1000.0
+            << setw(14) << setprecision(6) << xc(3) / 1000.0
+            << setw(14) << setprecision(6) << xc(4) * 1e6
+            << setw(14) << setprecision(6) << relCorr * 1e6
+            << setw(8)  << setprecision(3) << dx(1)
+            << setw(8)  << setprecision(3) << dx(2)
+            << setw(8)  << setprecision(3) << dx(3)
+            << setw(8)  << setprecision(3) << dcbP1C1
+            << setw(8)  << setprecision(3) << dcbP1P2
+            << setw(6)  << setprecision(1) << dT;
+
+        QString line;
+        int messageType = COTYPE_GPSCOMBINED;
+        int updateInt   = 0;
+        line.sprintf("%d %d %d %.1f %s"
+                     "   %3d"
+                     "   %8.3f %8.3f %8.3f %8.3f"
+                     "   %10.5f %10.5f %10.5f %10.5f"
+                     "   %10.5f  %10.5f %10.5f %10.5f INTERNAL",
+                     messageType, updateInt, time12.gpsw(), time12.gpssec(),
+                     corr->prn.toAscii().data(),
+                     corr->iod,
+                     corr->dClk * t_CST::c,
+                     corr->rao[0],
+                     corr->rao[1],
+                     corr->rao[2],
+                     corr->dotDClk * t_CST::c,
+                     corr->dotRao[0],
+                     corr->dotRao[1],
+                     corr->dotRao[2],
+                     corr->dotDotDClk * t_CST::c,
+                     corr->dotDotRao[0],
+                     corr->dotDotRao[1],
+                     corr->dotDotRao[2]);
+        corrLines << line;
+      }
+      else {
+        out << setw(14) << setprecision(6) << xc(1) / 1000.0
+            << setw(14) << setprecision(6) << xc(2) / 1000.0
+            << setw(14) << setprecision(6) << xc(3) / 1000.0 << endl;
+      }
+    }
+
+    delete corr;
+  }
+  out << "EOE" << endl; // End Of Epoch flag
+
+  if (!_rtnetDecoder) {
+    _rtnetDecoder = new bncRtnetDecoder();
+  }
+
+  vector<string> errmsg;
+  _rtnetDecoder->Decode((char*) out.str().data(), out.str().size(), errmsg);
+
+  // Optionally send new Corrections to PPP
+  // --------------------------------------
+  bncApp* app = (bncApp*) qApp;
+  if (app->_bncPPPclient) {
+    app->_bncPPPclient->slotNewCorrections(corrLines);
+  }
+}
+
+// Create First Design Matrix and Vector of Measurements
+////////////////////////////////////////////////////////////////////////////
+t_irc bncComb::createAmat(Matrix& AA, ColumnVector& ll, DiagonalMatrix& PP,
+                          const ColumnVector& x0, 
+                          QMap<QString, t_corr*>& resCorr) {
+
+  unsigned nPar = _params.size();
+  unsigned nObs = corrs().size(); 
+
+  if (nObs == 0) {
+    return failure;
+  }
+
+  int MAXPRN = MAXPRN_GPS;
+//  if (_useGlonass) {
+//    MAXPRN = MAXPRN_GPS + MAXPRN_GLONASS;
+//  }
+
+  const int nCon = (_method == filter) ? 1 + MAXPRN : 0;
+
+  AA.ReSize(nObs+nCon, nPar);  AA = 0.0;
+  ll.ReSize(nObs+nCon);        ll = 0.0;
+  PP.ReSize(nObs+nCon);        PP = 1.0 / (sigObs * sigObs);
+
+  int iObs = 0;
+
+  QVectorIterator<cmbCorr*> itCorr(corrs());
+  while (itCorr.hasNext()) {
+    cmbCorr* corr = itCorr.next();
+    QString  prn  = corr->prn;
+
+    ++iObs;
+
+    if (corr->acName == _masterOrbitAC && resCorr.find(prn) == resCorr.end()) {
+      resCorr[prn] = new t_corr(*corr);
+    }
+
+    for (int iPar = 1; iPar <= _params.size(); iPar++) {
+      cmbParam* pp = _params[iPar-1];
+      AA(iObs, iPar) = pp->partial(corr->acName, prn);
+    }
+
+    ll(iObs) = corr->dClk * t_CST::c - DotProduct(AA.Row(iObs), x0);
+  }
+
+  // Regularization
+  // --------------
+  if (_method == filter) {
+    const double Ph = 1.e6;
+    PP(nObs+1) = Ph;
+    for (int iPar = 1; iPar <= _params.size(); iPar++) {
+      cmbParam* pp = _params[iPar-1];
+      if ( AA.Column(iPar).maximum_absolute_value() > 0.0 &&
+           pp->type == cmbParam::clkSat ) {
+        AA(nObs+1, iPar) = 1.0;
+      }
+    }
+    int iCond = 1;
+    for (int iGps = 1; iGps <= MAXPRN_GPS; iGps++) {
+      QString prn = QString("G%1").arg(iGps, 2, 10, QChar('0'));
+      ++iCond;
+      PP(nObs+iCond) = Ph;
+      for (int iPar = 1; iPar <= _params.size(); iPar++) {
+        cmbParam* pp = _params[iPar-1];
+        if ( AA.Column(iPar).maximum_absolute_value() > 0.0 &&
+             pp->type == cmbParam::offACSat                 && 
+             pp->prn == prn) {
+          AA(nObs+iCond, iPar) = 1.0;
+        }
+      }
+    }
+//    if (_useGlonass) {
+//      for (int iGlo = 1; iGlo <= MAXPRN_GLONASS; iGlo++) {
+//        QString prn = QString("R%1").arg(iGlo, 2, 10, QChar('0'));
+//        ++iCond;
+//        PP(nObs+iCond) = Ph;
+//        for (int iPar = 1; iPar <= _params.size(); iPar++) {
+//          cmbParam* pp = _params[iPar-1];
+//          if ( AA.Column(iPar).maximum_absolute_value() > 0.0 &&
+//               pp->type == cmbParam::offACSat                 && 
+//               pp->prn == prn) {
+//            AA(nObs+iCond, iPar) = 1.0;
+//          }
+//        }
+//      }
+//    }
+  }
+
+  return success;
+}
+
+// Process Epoch - Single-Epoch Method
+////////////////////////////////////////////////////////////////////////////
+t_irc bncComb::processEpoch_singleEpoch(QTextStream& out,
+                                        QMap<QString, t_corr*>& resCorr,
+                                        ColumnVector& dx) {
+
+  // Check Satellite Positions for Outliers
+  // --------------------------------------
+  if (checkOrbits(out) != success) {
+    return failure;
+  }
+
+  // Outlier Detection Loop
+  // ----------------------
+  while (true) {
+    
+    // Remove Satellites that are not in Master
+    // ----------------------------------------
+    QMutableVectorIterator<cmbCorr*> it(corrs());
+    while (it.hasNext()) {
+      cmbCorr* corr = it.next();
+      QString  prn  = corr->prn;
+      bool foundMaster = false;
+      QVectorIterator<cmbCorr*> itHlp(corrs());
+      while (itHlp.hasNext()) {
+        cmbCorr* corrHlp = itHlp.next();
+        QString  prnHlp  = corrHlp->prn;
+        QString  ACHlp   = corrHlp->acName;
+        if (ACHlp == _masterOrbitAC && prn == prnHlp) {
+          foundMaster = true;
+          break;
+        }
+      }
+      if (!foundMaster) {
+        it.remove();
+      }
+    }
+    
+    // Count Number of Observations per Satellite and per AC
+    // -----------------------------------------------------
+    QMap<QString, int> numObsPrn;
+    QMap<QString, int> numObsAC;
+    QVectorIterator<cmbCorr*> itCorr(corrs());
+    while (itCorr.hasNext()) {
+      cmbCorr* corr = itCorr.next();
+      QString  prn  = corr->prn;
+      QString  AC   = corr->acName;
+      if (numObsPrn.find(prn) == numObsPrn.end()) {
+        numObsPrn[prn]  = 1;
+      }
+      else {
+        numObsPrn[prn] += 1;
+      }
+      if (numObsAC.find(AC) == numObsAC.end()) {
+        numObsAC[AC]  = 1;
+      }
+      else {
+        numObsAC[AC] += 1;
+      }
+    }
+    
+    // Clean-Up the Paramters
+    // ----------------------
+    for (int iPar = 1; iPar <= _params.size(); iPar++) {
+      delete _params[iPar-1];
+    }
+    _params.clear();
+    
+    // Set new Parameters
+    // ------------------
+    int nextPar = 0;
+    
+    QMapIterator<QString, int> itAC(numObsAC);
+    while (itAC.hasNext()) {
+      itAC.next();
+      const QString& AC     = itAC.key();
+      int            numObs = itAC.value();
+      if (AC != _masterOrbitAC && numObs > 0) {
+        _params.push_back(new cmbParam(cmbParam::offACgps, ++nextPar, AC, ""));
+        if (_useGlonass) {
+          _params.push_back(new cmbParam(cmbParam::offACglo, ++nextPar, AC, ""));
+        }
+      }
+    } 
+    
+    QMapIterator<QString, int> itPrn(numObsPrn);
+    while (itPrn.hasNext()) {
+      itPrn.next();
+      const QString& prn    = itPrn.key();
+      int            numObs = itPrn.value();
+      if (numObs > 0) {
+        _params.push_back(new cmbParam(cmbParam::clkSat, ++nextPar, "", prn));
+      }
+    }  
+    
+    int nPar = _params.size();
+    ColumnVector x0(nPar); 
+    x0 = 0.0;
+    
+    // Create First-Design Matrix
+    // --------------------------
+    Matrix         AA;
+    ColumnVector   ll;
+    DiagonalMatrix PP;
+    if (createAmat(AA, ll, PP, x0, resCorr) != success) {
+      return failure;
+    }
+    
+    ColumnVector vv;
+    try {
+      Matrix          ATP = AA.t() * PP;
+      SymmetricMatrix NN; NN << ATP * AA;
+      ColumnVector    bb = ATP * ll;
+      _QQ = NN.i();
+      dx  = _QQ * bb;
+      vv  = ll - AA * dx;
+    }
+    catch (Exception& exc) {
+      out << exc.what() << endl;
+      return failure;
+    }
+
+    int     maxResIndex;
+    double  maxRes = vv.maximum_absolute_value1(maxResIndex);   
+    out.setRealNumberNotation(QTextStream::FixedNotation);
+    out.setRealNumberPrecision(3);  
+    out << _resTime.datestr().c_str() << " " << _resTime.timestr().c_str()
+        << " Maximum Residuum " << maxRes << ' '
+        << corrs()[maxResIndex-1]->acName << ' ' << corrs()[maxResIndex-1]->prn;
+
+    if (maxRes > _MAXRES) {
+      out << "  Outlier" << endl;
+      corrs().remove(maxResIndex-1);
+    }
+    else {
+      out << "  OK" << endl;
+      out.setRealNumberNotation(QTextStream::FixedNotation);
+      out.setRealNumberPrecision(3);  
+      for (int ii = 0; ii < vv.Nrows(); ii++) {
+        const cmbCorr* corr = corrs()[ii];
+        out << _resTime.datestr().c_str() << ' ' 
+            << _resTime.timestr().c_str() << " "
+            << corr->acName << ' ' << corr->prn;
+        out.setFieldWidth(6);
+        out << " dClk = " << corr->dClk * t_CST::c << " res = " << vv[ii] << endl;
+        out.setFieldWidth(0);
+      }
+      return success;
+    }
+
+  }
+
+  return failure;
+}
+
+// Check Satellite Positions for Outliers
+////////////////////////////////////////////////////////////////////////////
+t_irc bncComb::checkOrbits(QTextStream& out) {
+
+  const double MAX_DISPLACEMENT = 0.20;
+
+  // Switch to last ephemeris (if possible)
+  // --------------------------------------
+  QMutableVectorIterator<cmbCorr*> im(corrs());
+  while (im.hasNext()) {
+    cmbCorr* corr = im.next();
+    QString  prn  = corr->prn;
+    if      (_eph.find(prn) == _eph.end()) {
+      out << "checkOrbit: missing eph (not found) " << corr->prn << endl;
+      im.remove();
+    }
+    else if (corr->eph == 0) {
+      out << "checkOrbit: missing eph (zero) " << corr->prn << endl;
+      im.remove();
+    }
+    else {
+      if ( corr->eph == _eph[prn]->last || corr->eph == _eph[prn]->prev ) {
+        switchToLastEph(_eph[prn]->last, corr);
+      }
+      else {
+        out << "checkOrbit: missing eph (deleted) " << corr->prn << endl;
+        im.remove();
+      }
+    }
+  }
+
+  while (true) {
+
+    // Compute Mean Corrections for all Satellites
+    // -------------------------------------------
+    QMap<QString, int>          numCorr;
+    QMap<QString, ColumnVector> meanRao;
+    QVectorIterator<cmbCorr*> it(corrs());
+    while (it.hasNext()) {
+      cmbCorr* corr = it.next();
+      QString  prn  = corr->prn;
+      if (meanRao.find(prn) == meanRao.end()) {
+        meanRao[prn].ReSize(4);
+        meanRao[prn].Rows(1,3) = corr->rao;
+        meanRao[prn](4)        = 1; 
+      }
+      else {
+        meanRao[prn].Rows(1,3) += corr->rao;
+        meanRao[prn](4)        += 1; 
+      }
+      if (numCorr.find(prn) == numCorr.end()) {
+        numCorr[prn] = 1;
+      }
+      else {
+        numCorr[prn] += 1;
+      }
+    }
+    
+    // Compute Differences wrt Mean, find Maximum
+    // ------------------------------------------
+    QMap<QString, cmbCorr*> maxDiff;
+    it.toFront();
+    while (it.hasNext()) {
+      cmbCorr* corr = it.next();
+      QString  prn  = corr->prn;
+      if (meanRao[prn](4) != 0) {
+        meanRao[prn] /= meanRao[prn](4);
+        meanRao[prn](4) = 0;
+      }
+      corr->diffRao = corr->rao - meanRao[prn].Rows(1,3);
+      if (maxDiff.find(prn) == maxDiff.end()) {
+        maxDiff[prn] = corr;
+      }
+      else {
+        double normMax = maxDiff[prn]->diffRao.norm_Frobenius();
+        double norm    = corr->diffRao.norm_Frobenius();
+        if (norm > normMax) {
+          maxDiff[prn] = corr;
+        }
+      } 
+    }
+    
+    // Remove Outliers
+    // ---------------
+    bool removed = false;
+    QMutableVectorIterator<cmbCorr*> im(corrs());
+    while (im.hasNext()) {
+      cmbCorr* corr = im.next();
+      QString  prn  = corr->prn;
+      if      (numCorr[prn] < 2) {
+        im.remove();
+      }
+      else if (corr == maxDiff[prn]) {
+        double norm = corr->diffRao.norm_Frobenius();
+        if (norm > MAX_DISPLACEMENT) {
+          out << _resTime.datestr().c_str()    << " "
+              << _resTime.timestr().c_str()    << " "
+              << "Orbit Outlier: " 
+              << corr->acName.toAscii().data() << " " 
+              << prn.toAscii().data()          << " "
+              << corr->iod                     << " " 
+              << norm                          << endl;
+          im.remove();
+          removed = true;
+        }
+      }
+    }
+    
+    if (!removed) {
+      break;
+    }
+  }
+
+  return success;
+}
Index: branches/BNC_LM/combination/bnccomb.h
===================================================================
--- branches/BNC_LM/combination/bnccomb.h	(revision 3570)
+++ branches/BNC_LM/combination/bnccomb.h	(revision 3570)
@@ -0,0 +1,109 @@
+
+#ifndef BNCCOMB_H
+#define BNCCOMB_H
+
+#include <fstream>
+#include <newmat.h>
+#include "bncephuser.h"
+
+class bncRtnetDecoder;
+class bncSP3;
+class bncAntex;
+
+class cmbParam {
+ public:
+  enum parType {offACgps, offACglo, offACSat, clkSat};
+  cmbParam(parType type_, int index_, const QString& ac_, const QString& prn_);
+  ~cmbParam();
+  double partial(const QString& AC_, const QString& prn_);
+  QString toString() const;
+  parType type;
+  int     index;
+  QString AC;
+  QString prn;
+  double  xx;
+  double  sig0;
+  double  sigP;
+  bool    epoSpec;
+  const t_eph* eph;
+};
+
+class bncComb : public bncEphUser  {
+ Q_OBJECT
+
+ public:
+  bncComb();
+  virtual ~bncComb();
+  void processCorrLine(const QString& staID, const QString& line);
+  int  nStreams() const {return _ACs.size();}
+
+ signals:
+  void newMessage(QByteArray msg, bool showOnScreen);
+
+ private:
+
+  enum e_method{singleEpoch, filter};
+
+  class cmbAC {
+   public:
+    cmbAC() {
+      weight = 0.0;
+      numObs = 0;
+    }
+    ~cmbAC() {}
+    QString  mountPoint;
+    QString  name;
+    double   weight;
+    unsigned numObs;
+  };
+
+  class cmbCorr : public t_corr {
+   public:
+    QString      acName;
+    ColumnVector diffRao;
+  };
+
+  class cmbEpoch {
+   public:
+    cmbEpoch() {}
+    ~cmbEpoch() {
+      QVectorIterator<cmbCorr*> it(corrs);
+      while (it.hasNext()) {
+        delete it.next();
+      }
+    }
+    QVector<cmbCorr*> corrs;
+  };
+
+  void processEpoch();
+  t_irc processEpoch_filter(QTextStream& out,
+                            QMap<QString, t_corr*>& resCorr,
+                            ColumnVector& dx);
+  t_irc processEpoch_singleEpoch(QTextStream& out,
+                                 QMap<QString, t_corr*>& resCorr,
+                                 ColumnVector& dx);
+  t_irc createAmat(Matrix& AA, ColumnVector& ll, DiagonalMatrix& PP,
+                   const ColumnVector& x0, QMap<QString, t_corr*>& resCorr);
+  void dumpResults(const QMap<QString, t_corr*>& resCorr);
+  void printResults(QTextStream& out, const QMap<QString, t_corr*>& resCorr);
+  void switchToLastEph(const t_eph* lastEph, t_corr* corr);
+  t_irc checkOrbits(QTextStream& out);
+
+  QVector<cmbCorr*>& corrs() {return _buffer[_resTime].corrs;}
+
+  QList<cmbAC*>           _ACs;
+  bncTime                 _resTime;
+  QVector<cmbParam*>      _params;
+  QMap<bncTime, cmbEpoch> _buffer;
+  bncRtnetDecoder*        _rtnetDecoder;
+  SymmetricMatrix         _QQ;
+  QByteArray              _log;
+  bncAntex*               _antex;
+  double                  _MAXRES;
+  QString                 _masterOrbitAC;
+  unsigned                _masterMissingEpochs;
+  e_method                _method;
+  bool                    _useGlonass;
+};
+
+#endif
Index: branches/BNC_LM/gen_rtk_neu.pl
===================================================================
--- branches/BNC_LM/gen_rtk_neu.pl	(revision 3570)
+++ branches/BNC_LM/gen_rtk_neu.pl	(revision 3570)
@@ -0,0 +1,58 @@
+#!/usr/bin/perl -w
+
+use strict;
+
+use lib "$ENV{HOME}/gpss_src/perl";
+use geotools;
+
+my($inFile, $outFile) = @ARGV;
+if (!defined($outFile)) {
+  die "Usage: gen_rtk_neu.pl inFile outFile\n";
+}
+
+open(inFile , $inFile);
+open(outFile, ">$outFile");
+
+###my $xApr = 0.0;
+###my $yApr = 0.0;
+###my $zApr = 0.0;
+
+# JOS20
+#my $xApr = 3664880.4923;
+#my $yApr = 1409190.6728;
+#my $zApr = 5009618.5192;
+
+# FFMJ1
+my $xApr = 4053455.8174;
+my $yApr =  617729.7434;
+my $zApr = 4869395.7728;
+
+while ( my $line=<inFile> ) {
+
+  if ($line =~ /PPP/) {
+
+    my @p = split(/\s+/, $line);
+    
+    my $time = $p[4];
+    my $x    = $p[6];
+    my $y    = $p[9];
+    my $z    = $p[12];
+    
+    if ($xApr == 0.0 && $yApr == 0.0 && $zApr == 0.0) {
+        $xApr = $x;
+        $yApr = $y;
+        $zApr = $z;
+    }
+    
+    my $dx   = $x - $xApr;
+    my $dy   = $y - $yApr;
+    my $dz   = $z - $zApr;
+
+    my ($n, $e, $u) = get_neu($dx, $dy, $dz, $xApr, $yApr, $zApr);
+
+    printf(outFile "%s %8.4f %8.4f %8.4f\n", $time, $n, $e, $u);
+  }
+}
+
+close inFile;
+close outFile;
Index: branches/BNC_LM/latencychecker.cpp
===================================================================
--- branches/BNC_LM/latencychecker.cpp	(revision 3570)
+++ branches/BNC_LM/latencychecker.cpp	(revision 3570)
@@ -0,0 +1,492 @@
+// Part of BNC, a utility for retrieving decoding and
+// converting GNSS data streams from NTRIP broadcasters.
+//
+// Copyright (C) 2007
+// German Federal Agency for Cartography and Geodesy (BKG)
+// http://www.bkg.bund.de
+// Czech Technical University Prague, Department of Geodesy
+// http://www.fsv.cvut.cz
+//
+// Email: euref-ip@bkg.bund.de
+//
+// This program is free software; you can redistribute it and/or
+// modify it under the terms of the GNU General Public License
+// as published by the Free Software Foundation, version 2.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+/* -------------------------------------------------------------------------
+ * BKG NTRIP Client
+ * -------------------------------------------------------------------------
+ *
+ * Class:      latencyChecker
+ *
+ * Purpose:    Check incoming GNSS data for latencies, gaps etc.
+ *
+ * Author:     G. Weber
+ *
+ * Created:    02-Feb-2009
+ *
+ * Changes:    
+ *
+ * -----------------------------------------------------------------------*/
+
+#include <iostream>
+
+#ifdef WIN32
+#include <windows.h>
+#else
+#include <unistd.h>
+#endif
+
+#include "latencychecker.h"
+#include "bncapp.h"
+#include "bncutils.h"
+#include "bncsettings.h"
+
+using namespace std;
+
+// Constructor
+//////////////////////////////////////////////////////////////////////////////
+latencyChecker::latencyChecker(QByteArray staID) {
+
+  _staID = staID;
+
+  bncApp* app = (bncApp*) qApp;
+  connect(this, SIGNAL(newMessage(QByteArray,bool)), 
+          app, SLOT(slotMessage(const QByteArray,bool)));
+
+  bncSettings settings;
+
+  // Notice threshold
+  // ----------------
+  QString obsRate = settings.value("obsRate").toString();
+  _inspSegm = 0;
+  if      ( obsRate.isEmpty() ) { 
+    _inspSegm = 0; 
+  }
+  else if ( obsRate.indexOf("5 Hz")   != -1 ) { 
+    _inspSegm = 20; 
+  }
+  else if ( obsRate.indexOf("1 Hz")   != -1 ) { 
+    _inspSegm = 10; 
+  }
+  else if ( obsRate.indexOf("0.5 Hz") != -1 ) { 
+    _inspSegm = 20; 
+  }
+  else if ( obsRate.indexOf("0.2 Hz") != -1 ) { 
+    _inspSegm = 40; 
+  }
+  else if ( obsRate.indexOf("0.1 Hz") != -1 ) { 
+    _inspSegm = 50; 
+  }
+  _adviseFail = settings.value("adviseFail").toInt();
+  _adviseReco = settings.value("adviseReco").toInt();
+  _adviseScript = settings.value("adviseScript").toString();
+  expandEnvVar(_adviseScript);
+
+  // Latency interval/average
+  // ------------------------
+  _perfIntr = 1;
+  QString perfIntr = settings.value("perfIntr").toString();
+  if      ( perfIntr.isEmpty() ) { 
+    _perfIntr = 1; 
+  }
+  else if ( perfIntr.indexOf("2 sec")   != -1 ) { 
+    _perfIntr = 2; 
+  }
+  else if ( perfIntr.indexOf("10 sec")  != -1 ) { 
+    _perfIntr = 10; 
+  }
+  else if ( perfIntr.indexOf("1 min")   != -1 ) { 
+    _perfIntr = 60; 
+  }
+  else if ( perfIntr.left(5).indexOf("5 min")   != -1 ) { 
+    _perfIntr = 300; 
+  }
+  else if ( perfIntr.indexOf("15 min")  != -1 ) { 
+    _perfIntr = 900; 
+  }
+  else if ( perfIntr.indexOf("1 hour")  != -1 ) { 
+    _perfIntr = 3600; 
+  }
+  else if ( perfIntr.indexOf("6 hours") != -1 ) { 
+    _perfIntr = 21600; 
+  }
+  else if ( perfIntr.indexOf("1 day")   != -1 ) { 
+    _perfIntr = 86400; 
+  }
+
+  // RTCM message types
+  // ------------------
+  _checkMountPoint = settings.value("miscMount").toString();
+
+  // Initialize private members
+  // --------------------------
+  _maxDt      = 1000.0;
+  _wrongEpoch = false;
+  _checkSeg   = false;
+  _numSucc    = 0;
+  _secSucc    = 0;
+  _secFail    = 0;
+  _initPause  = 0;
+  _currPause  = 0;
+  _begCorrupt = false;
+  _endCorrupt = false;
+  _followSec  = false;
+  _oldSecGPS  = 0;
+  _newSecGPS  = 0;
+  _numGaps    = 0;
+  _diffSecGPS = 0;
+  _numLat     = 0;
+  _sumLat     = 0.0;
+  _sumLatQ    = 0.0;
+  _meanDiff   = 0.0;
+  _minLat     =  _maxDt;
+  _maxLat     = -_maxDt;
+  _curLat     = 0.0;
+
+  _checkTime = QDateTime::currentDateTime();
+  _decodeSucc = QDateTime::currentDateTime();
+
+  _decodeStop = QDateTime::currentDateTime();
+
+}
+
+// Destructor
+//////////////////////////////////////////////////////////////////////////////
+latencyChecker::~latencyChecker() {
+}
+
+// Perform 'Begin outage' check
+//////////////////////////////////////////////////////////////////////////////
+void latencyChecker::checkReconnect() {
+
+  // Begin outage threshold
+  // ----------------------
+  if ( _decodeStop.isValid() ) {
+    if ( _decodeStop.secsTo(QDateTime::currentDateTime()) >  _adviseFail * 60 ) {
+      _decodeStop.setDate(QDate());
+      _decodeStop.setTime(QTime());
+      _begDateOut = _checkTime.toUTC().date().toString("yy-MM-dd");
+      _begTimeOut = _checkTime.toUTC().time().toString("hh:mm:ss");
+      emit(newMessage((_staID
+                    + ": Failure threshold exceeded, outage since "
+                    + _begDateOut + " " + _begTimeOut).toAscii(), true));
+      callScript(("Begin_Outage "
+                    + _begDateOut + " " + _begTimeOut).toAscii());
+    }
+    _decodeStart = QDateTime::currentDateTime();
+  }
+
+}
+
+// Perform Corrupt and 'End outage' check
+//////////////////////////////////////////////////////////////////////////////
+void latencyChecker::checkOutage(bool decoded) {
+
+  if (_inspSegm == 0) { return;}
+
+  if (decoded) { _numSucc += 1; }
+
+  if (!_checkPause.isValid() || _checkPause.secsTo(QDateTime::currentDateTime()) >= _currPause )  {
+    if (!_checkSeg) {
+      if ( _checkTime.secsTo(QDateTime::currentDateTime()) > _inspSegm ) {
+        _checkSeg = true;
+      }
+    }
+
+    // Check - once per inspect segment
+    // --------------------------------
+    if (_checkSeg) {
+
+      _checkTime = QDateTime::currentDateTime();
+
+      if (_numSucc > 0) {
+        _secSucc += _inspSegm;
+        _decodeSucc = QDateTime::currentDateTime();
+        if (_secSucc > _adviseReco * 60) {
+          _secSucc = _adviseReco * 60 + 1;
+        }
+        _numSucc = 0;
+        _currPause = _initPause;
+        _checkPause.setDate(QDate());
+        _checkPause.setTime(QTime());
+      }
+      else {
+        _secFail += _inspSegm;
+        _secSucc = 0;
+        if (_secFail > _adviseFail * 60) { 
+          _secFail = _adviseFail * 60 + 1;
+        }
+        if (!_checkPause.isValid()) {
+          _checkPause = QDateTime::currentDateTime();
+        }
+        else {
+          _checkPause.setDate(QDate());
+          _checkPause.setTime(QTime());
+          _secFail = _secFail + _currPause - _inspSegm;
+          _currPause = _currPause * 2;
+          if (_currPause > 960) {
+            _currPause = 960;
+          }
+        }
+      }
+  
+      // End corrupt threshold
+      // ---------------------
+      if ( _begCorrupt && !_endCorrupt && _secSucc > _adviseReco * 60 ) {
+        _endDateCor = QDateTime::currentDateTime()
+                    .addSecs(- _adviseReco * 60)
+                    .toUTC().date().toString("yy-MM-dd");
+        _endTimeCor = QDateTime::currentDateTime()
+                    .addSecs(- _adviseReco * 60)
+                    .toUTC().time().toString("hh:mm:ss");
+        emit(newMessage((_staID 
+                    + ": Recovery threshold exceeded, corruption ended " 
+                    + _endDateCor + " " + _endTimeCor).toAscii(), true));
+        callScript(("End_Corrupted " 
+                    + _endDateCor + " " + _endTimeCor + " Begin was " 
+                    + _begDateCor + " " + _begTimeCor).toAscii());
+        _endCorrupt = true;
+        _begCorrupt = false;
+        _secFail = 0;
+      } 
+      else {
+
+        // Begin corrupt threshold
+        // -----------------------
+        if ( !_begCorrupt && _secFail > _adviseFail * 60 ) {
+          _begDateCor = _decodeSucc.toUTC().date().toString("yy-MM-dd");
+          _begTimeCor = _decodeSucc.toUTC().time().toString("hh:mm:ss");
+          emit(newMessage((_staID 
+                    + ": Failure threshold exceeded, corrupted since " 
+                    + _begDateCor + " " + _begTimeCor).toAscii(), true));
+          callScript(("Begin_Corrupted " 
+                    + _begDateCor + " " + _begTimeCor).toAscii());
+          _begCorrupt = true;
+          _endCorrupt = false;
+          _secSucc = 0;
+          _numSucc = 0;
+        }
+      }
+      _checkSeg = false;
+    }
+  }
+
+  // End outage threshold
+  // --------------------
+  if ( _decodeStart.isValid() ) {
+    if ( _decodeStart.secsTo(QDateTime::currentDateTime()) >  _adviseReco * 60 ) {
+      _decodeStart.setDate(QDate());
+      _decodeStart.setTime(QTime());
+      _endDateOut = QDateTime::currentDateTime()
+                    .addSecs(- _adviseReco * 60)
+                    .toUTC().date().toString("yy-MM-dd");
+      _endTimeOut = QDateTime::currentDateTime()
+                    .addSecs(- _adviseReco * 60)
+                    .toUTC().time().toString("hh:mm:ss");
+      emit(newMessage((_staID
+                    + ": Recovery threshold exceeded, outage ended "
+                    + _endDateOut + " " + _endTimeOut).toAscii(), true));
+      callScript(("End_Outage "
+                    + _endDateOut + " " + _endTimeOut + " Begin was "
+                    + _begDateOut + " " + _begTimeOut).toAscii());
+    _decodeStop = QDateTime::currentDateTime();
+    }
+  }
+}
+
+// Perform latency checks (observations)
+//////////////////////////////////////////////////////////////////////////////
+void latencyChecker::checkObsLatency(const QList<t_obs>& obsList) {
+
+  if (_perfIntr > 0 ) {
+
+    QListIterator<t_obs> it(obsList);
+    while (it.hasNext()) {
+      const t_obs& obs = it.next();
+      
+      _newSecGPS = static_cast<int>(obs.GPSWeeks);
+      if (_newSecGPS != _oldSecGPS) {
+        if (_newSecGPS % _perfIntr < _oldSecGPS % _perfIntr) {
+          if (_numLat > 0) {
+            if (_meanDiff > 0.0) {
+              if ( _checkMountPoint == _staID || _checkMountPoint == "ALL" ) {
+                emit( newMessage(QString("%1: Mean latency %2 sec, min %3, max %4, rms %5, %6 epochs, %7 gaps")
+                  .arg(_staID.data())
+                  .arg(int(_sumLat/_numLat*100)/100.)
+                  .arg(int(_minLat*100)/100.)
+                  .arg(int(_maxLat*100)/100.)
+                  .arg(int((sqrt((_sumLatQ - _sumLat * _sumLat / _numLat)/_numLat))*100)/100.)
+                  .arg(_numLat)
+                  .arg(_numGaps)
+                  .toAscii(), true) );
+              }
+            } else {
+              if ( _checkMountPoint == _staID || _checkMountPoint == "ALL" ) {
+                emit( newMessage(QString("%1: Mean latency %2 sec, min %3, max %4, rms %5, %6 epochs")
+                  .arg(_staID.data())
+                  .arg(int(_sumLat/_numLat*100)/100.)
+                  .arg(int(_minLat*100)/100.)
+                  .arg(int(_maxLat*100)/100.)
+                  .arg(int((sqrt((_sumLatQ - _sumLat * _sumLat / _numLat)/_numLat))*100)/100.)
+                  .arg(_numLat)
+                  .toAscii(), true) );
+              }
+            }
+          }
+          _meanDiff  = _diffSecGPS / _numLat;
+          _diffSecGPS = 0;
+          _numGaps    = 0;
+          _sumLat     = 0.0;
+          _sumLatQ    = 0.0;
+          _numLat     = 0;
+          _minLat     = _maxDt;
+          _maxLat     = -_maxDt;
+        }
+        if (_followSec) {
+          _diffSecGPS += _newSecGPS - _oldSecGPS;
+          if (_meanDiff>0.) {
+            if (_newSecGPS - _oldSecGPS > 1.5 * _meanDiff) {
+              _numGaps += 1;
+            }
+          }
+        }
+
+        // Compute the observations latency
+        // --------------------------------
+        int week;
+        double sec;
+        currentGPSWeeks(week, sec);
+        const double secPerWeek = 7.0 * 24.0 * 3600.0;
+        if (week < obs.GPSWeek) {
+          week += 1;
+          sec  -= secPerWeek;
+        }
+        if (week > obs.GPSWeek) {
+          week -= 1;
+          sec  += secPerWeek;
+        }
+         _curLat   = sec - obs.GPSWeeks;
+        _sumLat  += _curLat;
+        _sumLatQ += _curLat * _curLat;
+        if (_curLat < _minLat) {
+          _minLat = _curLat;
+        }
+        if (_curLat >= _maxLat) {
+          _maxLat = _curLat;
+        }
+        _numLat += 1;
+        _oldSecGPS = _newSecGPS;
+        _followSec = true;
+      }
+    }
+  }
+}
+
+// Perform latency checks (corrections)
+//////////////////////////////////////////////////////////////////////////////
+void latencyChecker::checkCorrLatency(int corrGPSEpochTime) {
+
+  if (corrGPSEpochTime < 0) {
+    return;
+  }
+
+  if (_perfIntr > 0) {
+
+    _newSecGPS = corrGPSEpochTime;
+
+    int week;
+    double sec;
+    currentGPSWeeks(week, sec);
+    double dt = fabs(sec - _newSecGPS);
+    const double secPerWeek = 7.0 * 24.0 * 3600.0;
+    if (dt > 0.5 * secPerWeek) {
+      if (sec > _newSecGPS) {
+        sec  -= secPerWeek;
+      } else {
+        sec  += secPerWeek;
+      }
+    }
+    if (_newSecGPS != _oldSecGPS) {
+      if (int(_newSecGPS) % _perfIntr < int(_oldSecGPS) % _perfIntr) {
+        if (_numLat>0) {
+          QString late;
+          if (_meanDiff>0.) {
+            late = QString(": Mean latency %1 sec, min %2, max %3, rms %4, %5 epochs, %6 gaps")
+            .arg(int(_sumLat/_numLat*100)/100.)
+            .arg(int(_minLat*100)/100.)
+            .arg(int(_maxLat*100)/100.)
+            .arg(int((sqrt((_sumLatQ - _sumLat * _sumLat / _numLat)/_numLat))*100)/100.)
+            .arg(_numLat)
+            .arg(_numGaps);
+            if ( _checkMountPoint == _staID || _checkMountPoint == "ALL" ) {
+              emit(newMessage(QString(_staID + late ).toAscii(), true) );
+            }
+          } 
+          else {
+            late = QString(": Mean latency %1 sec, min %2, max %3, rms %4, %5 epochs")
+            .arg(int(_sumLat/_numLat*100)/100.)
+            .arg(int(_minLat*100)/100.)
+            .arg(int(_maxLat*100)/100.)
+            .arg(int((sqrt((_sumLatQ - _sumLat * _sumLat / _numLat)/_numLat))*100)/100.)
+            .arg(_numLat);
+            if ( _checkMountPoint == _staID || _checkMountPoint == "ALL" ) {
+            emit(newMessage(QString(_staID + late ).toAscii(), true) );
+            }
+          }
+        }
+        _meanDiff = int(_diffSecGPS)/_numLat;
+        _diffSecGPS = 0;
+        _numGaps    = 0;
+        _sumLat     = 0.0;
+        _sumLatQ    = 0.0;
+        _numLat     = 0;
+        _minLat     = 1000.;
+        _maxLat     = -1000.;
+      }
+      if (_followSec) {
+        _diffSecGPS += _newSecGPS - _oldSecGPS;
+        if (_meanDiff>0.) {
+          if (_newSecGPS - _oldSecGPS > 1.5 * _meanDiff) {
+            _numGaps += 1;
+          }
+        }
+      }
+      _curLat   = sec - _newSecGPS;
+      _sumLat  += _curLat;
+      _sumLatQ += _curLat * _curLat;
+      if (_curLat < _minLat) {
+        _minLat = _curLat;
+      }
+      if (_curLat >= _maxLat) {
+        _maxLat = _curLat;
+      }
+      _numLat += 1;
+      _oldSecGPS = _newSecGPS;
+      _followSec = true;
+    }
+  }
+}
+
+// Call advisory notice script    
+////////////////////////////////////////////////////////////////////////////
+void latencyChecker::callScript(const char* comment) {
+  if (!_adviseScript.isEmpty()) {
+#ifdef WIN32
+    Sleep(1);
+    QProcess::startDetached(_adviseScript, QStringList() << _staID << comment) ;
+#else
+    sleep(1);
+    QProcess::startDetached("nohup", QStringList() << _adviseScript << _staID << comment) ;
+#endif
+  }
+}
Index: branches/BNC_LM/latencychecker.h
===================================================================
--- branches/BNC_LM/latencychecker.h	(revision 3570)
+++ branches/BNC_LM/latencychecker.h	(revision 3570)
@@ -0,0 +1,94 @@
+// Part of BNC, a utility for retrieving decoding and
+// converting GNSS data streams from NTRIP broadcasters.
+//
+// Copyright (C) 2007
+// German Federal Agency for Cartography and Geodesy (BKG)
+// http://www.bkg.bund.de
+// Czech Technical University Prague, Department of Geodesy
+// http://www.fsv.cvut.cz
+//
+// Email: euref-ip@bkg.bund.de
+//
+// This program is free software; you can redistribute it and/or
+// modify it under the terms of the GNU General Public License
+// as published by the Free Software Foundation, version 2.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+#ifndef LATENCYCHECKER_H
+#define LATENCYCHECKER_H
+
+#include <QDateTime>
+
+#include "RTCM/GPSDecoder.h"
+
+class latencyChecker : public QObject {
+Q_OBJECT
+
+ public:
+  latencyChecker(QByteArray staID);
+  ~latencyChecker();
+  void checkReconnect();
+  void checkOutage(bool decoded);
+  void checkObsLatency(const QList<t_obs>& obsList);
+  void checkCorrLatency(int corrGPSEpochTime);
+  double currentLatency() const {return _curLat;}
+
+ signals:
+  void newMessage(QByteArray msg, bool showOnScreen);
+
+ private:
+  void callScript(const char* comment);
+  int        _inspSegm;
+  int        _adviseFail;
+  int        _adviseReco;
+  int        _perfIntr;
+  int        _numSucc;
+  int        _secSucc;
+  int        _secFail;
+  int        _initPause;
+  int        _currPause;
+  int        _oldSecGPS;
+  int        _newSecGPS;
+  int        _numGaps;
+  int        _diffSecGPS;
+  int        _numLat;
+  bool       _wrongEpoch;
+  bool       _checkSeg;
+  bool       _begCorrupt;
+  bool       _endCorrupt;
+  bool       _followSec;
+  double     _maxDt;
+  double     _sumLat;
+  double     _sumLatQ;
+  double     _meanDiff;
+  double     _minLat;
+  double     _maxLat;
+  double     _curLat;
+  QByteArray _staID;
+  QString    _adviseScript;
+  QString    _checkMountPoint;
+  QString    _begDateCor;
+  QString    _begTimeCor;
+  QString    _begDateOut;
+  QString    _begTimeOut;
+  QString    _endDateCor;
+  QString    _endTimeCor;
+  QString    _endDateOut;
+  QString    _endTimeOut;
+  QDateTime  _checkTime;
+  QDateTime  _decodeSucc;
+  QDateTime  _decodeFailure;
+  QDateTime  _decodeStart;
+  QDateTime  _decodeStop;
+  QDateTime  _checkPause;
+};
+
+#endif
Index: branches/BNC_LM/newmat/bandmat.cpp
===================================================================
--- branches/BNC_LM/newmat/bandmat.cpp	(revision 3570)
+++ branches/BNC_LM/newmat/bandmat.cpp	(revision 3570)
@@ -0,0 +1,717 @@
+/// \ingroup newmat
+///@{
+
+/// \file bandmat.cpp
+/// Band-matrix member functions.
+
+
+// Copyright (C) 1991,2,3,4,9: R B Davies
+
+#define WANT_MATH                    // include.h will get math fns
+
+//#define WANT_STREAM
+
+#include "include.h"
+
+#include "newmat.h"
+#include "newmatrc.h"
+
+#ifdef use_namespace
+namespace NEWMAT {
+#endif
+
+
+
+#ifdef DO_REPORT
+#define REPORT { static ExeCounter ExeCount(__LINE__,10); ++ExeCount; }
+#else
+#define REPORT {}
+#endif
+
+static inline int my_min(int x, int y) { return x < y ? x : y; }
+static inline int my_max(int x, int y) { return x > y ? x : y; }
+
+
+BandMatrix::BandMatrix(const BaseMatrix& M)
+{
+   REPORT // CheckConversion(M);
+   // MatrixConversionCheck mcc;
+   GeneralMatrix* gmx=((BaseMatrix&)M).Evaluate(MatrixType::BM);
+   GetMatrix(gmx); CornerClear();
+}
+
+void BandMatrix::SetParameters(const GeneralMatrix* gmx)
+{
+   REPORT
+   MatrixBandWidth bw = gmx->bandwidth();
+   lower_val = bw.lower_val; upper_val = bw.upper_val;
+}
+
+void BandMatrix::resize(int n, int lb, int ub)
+{
+   REPORT
+   Tracer tr("BandMatrix::resize");
+   if (lb<0 || ub<0) Throw(ProgramException("Undefined bandwidth"));
+   lower_val = (lb<=n) ? lb : n-1; upper_val = (ub<=n) ? ub : n-1;
+   GeneralMatrix::resize(n,n,n*(lower_val+1+upper_val)); CornerClear();
+}
+
+// SimpleAddOK shows when we can add etc two matrices by a simple vector add
+// and when we can add one matrix into another
+//
+// *gm must be the same type as *this
+// - return 0 if simple add is OK
+// - return 1 if we can add into *gm only
+// - return 2 if we can add into *this only
+// - return 3 if we can't add either way
+//
+// For SP this will still be valid if we swap 1 and 2
+
+/// \brief can we add two band matrices with simple vector add
+///
+/// For band matrices the bandwidths must agree
+
+short BandMatrix::SimpleAddOK(const GeneralMatrix* gm)
+{
+   const BandMatrix* bm = (const BandMatrix*)gm;
+   if (bm->lower_val == lower_val && bm->upper_val == upper_val)
+      { REPORT return 0; }
+   else if (bm->lower_val >= lower_val && bm->upper_val >= upper_val)
+      { REPORT return 1; }
+   else if (bm->lower_val <= lower_val && bm->upper_val <= upper_val)
+      { REPORT return 2; }
+   else { REPORT return 3; }
+}
+
+/// \brief can we add two symmetric band matrices with simple vector add
+///
+/// Sufficient to check lower bandwidths agree
+
+short SymmetricBandMatrix::SimpleAddOK(const GeneralMatrix* gm)
+{
+   const SymmetricBandMatrix* bm = (const SymmetricBandMatrix*)gm;
+   if (bm->lower_val == lower_val) { REPORT return 0; }
+   else if (bm->lower_val > lower_val) { REPORT return 1; }
+   else { REPORT return 2; }
+}
+
+/// \brief resize UpperBandMatrix
+void UpperBandMatrix::resize(int n, int lb, int ub)
+{
+   REPORT
+   if (lb != 0)
+   {
+      Tracer tr("UpperBandMatrix::resize");
+      Throw(ProgramException("UpperBandMatrix with non-zero lower band" ));
+   }
+   BandMatrix::resize(n, lb, ub);
+}
+
+/// \brief resize LowerBandMatrix
+void LowerBandMatrix::resize(int n, int lb, int ub)
+{
+   REPORT
+   if (ub != 0)
+   {
+      Tracer tr("LowerBandMatrix::resize");
+      Throw(ProgramException("LowerBandMatrix with non-zero upper band" ));
+   }
+   BandMatrix::resize(n, lb, ub);
+}
+
+/// \brief resize BandMatrix
+void BandMatrix::resize(const GeneralMatrix& A)
+{
+   REPORT
+   int n = A.Nrows();
+   if (n != A.Ncols())
+   {
+      Tracer tr("BandMatrix::resize(GM)");
+      Throw(NotSquareException(*this));
+   }
+   MatrixBandWidth mbw = A.bandwidth();
+   resize(n, mbw.Lower(), mbw.Upper());
+}
+
+/*
+bool BandMatrix::SameStorageType(const GeneralMatrix& A) const
+{
+   if (type() != A.type()) { REPORT return false; }
+   REPORT
+   return bandwidth() == A.bandwidth();
+}
+
+void BandMatrix::resizeForAdd(const GeneralMatrix& A, const GeneralMatrix& B)
+{
+   REPORT
+   Tracer tr("BandMatrix::resizeForAdd");
+   MatrixBandWidth A_BW = A.bandwidth(); MatrixBandWidth B_BW = B.bandwidth();
+   if ((A_BW.Lower() < 0) | (A_BW.Upper() < 0) | (B_BW.Lower() < 0)
+      | (A_BW.Upper() < 0))
+         Throw(ProgramException("Can't resize to BandMatrix" ));
+   // already know A and B are square
+   resize(A.Nrows(), my_max(A_BW.Lower(), B_BW.Lower()),
+      my_max(A_BW.Upper(), B_BW.Upper()));
+}
+
+void BandMatrix::resizeForSP(const GeneralMatrix& A, const GeneralMatrix& B)
+{
+   REPORT
+   Tracer tr("BandMatrix::resizeForSP");
+   MatrixBandWidth A_BW = A.bandwidth(); MatrixBandWidth B_BW = B.bandwidth();
+   if ((A_BW.Lower() < 0) | (A_BW.Upper() < 0) | (B_BW.Lower() < 0)
+      | (A_BW.Upper() < 0))
+         Throw(ProgramException("Can't resize to BandMatrix" ));
+   // already know A and B are square
+   resize(A.Nrows(), my_min(A_BW.Lower(), B_BW.Lower()),
+      my_min(A_BW.Upper(), B_BW.Upper()));
+}
+*/
+
+/// \brief assignment operator for BandMatrix
+void BandMatrix::operator=(const BaseMatrix& X)
+{
+   REPORT // CheckConversion(X);
+   // MatrixConversionCheck mcc;
+   Eq(X,MatrixType::BM); CornerClear();
+}
+
+/// \brief set unused parts of BandMatrix to zero
+void BandMatrix::CornerClear() const
+{
+   REPORT
+   int i = lower_val; Real* s = store; int bw = lower_val + 1 + upper_val;
+   while (i)
+      { int j = i--; Real* sj = s; s += bw; while (j--) *sj++ = 0.0; }
+   i = upper_val; s = store + storage;
+   while (i)
+      { int j = i--; Real* sj = s; s -= bw; while (j--) *(--sj) = 0.0; }
+}
+
+MatrixBandWidth MatrixBandWidth::operator+(const MatrixBandWidth& bw) const
+{
+   REPORT
+   int l = bw.lower_val; int u = bw.upper_val;
+   l = (lower_val < 0 || l < 0) ? -1 : (lower_val > l) ? lower_val : l;
+   u = (upper_val < 0 || u < 0) ? -1 : (upper_val > u) ? upper_val : u;
+   return MatrixBandWidth(l,u);
+}
+
+MatrixBandWidth MatrixBandWidth::operator*(const MatrixBandWidth& bw) const
+{
+   REPORT
+   int l = bw.lower_val; int u = bw.upper_val;
+   l = (lower_val < 0 || l < 0) ? -1 : lower_val+l;
+   u = (upper_val < 0 || u < 0) ? -1 : upper_val+u;
+   return MatrixBandWidth(l,u);
+}
+
+MatrixBandWidth MatrixBandWidth::minimum(const MatrixBandWidth& bw) const
+{
+   REPORT
+   int l = bw.lower_val; int u = bw.upper_val;
+   if ((lower_val >= 0) && ( (l < 0) || (l > lower_val) )) l = lower_val;
+   if ((upper_val >= 0) && ( (u < 0) || (u > upper_val) )) u = upper_val;
+   return MatrixBandWidth(l,u);
+}
+
+UpperBandMatrix::UpperBandMatrix(const BaseMatrix& M)
+{
+   REPORT // CheckConversion(M);
+   // MatrixConversionCheck mcc;
+   GeneralMatrix* gmx=((BaseMatrix&)M).Evaluate(MatrixType::UB);
+   GetMatrix(gmx); CornerClear();
+}
+
+void UpperBandMatrix::operator=(const BaseMatrix& X)
+{
+   REPORT // CheckConversion(X);
+   // MatrixConversionCheck mcc;
+   Eq(X,MatrixType::UB); CornerClear();
+}
+
+LowerBandMatrix::LowerBandMatrix(const BaseMatrix& M)
+{
+   REPORT // CheckConversion(M);
+   // MatrixConversionCheck mcc;
+   GeneralMatrix* gmx=((BaseMatrix&)M).Evaluate(MatrixType::LB);
+   GetMatrix(gmx); CornerClear();
+}
+
+void LowerBandMatrix::operator=(const BaseMatrix& X)
+{
+   REPORT // CheckConversion(X);
+   // MatrixConversionCheck mcc;
+   Eq(X,MatrixType::LB); CornerClear();
+}
+
+BandLUMatrix::BandLUMatrix(const BaseMatrix& m)
+{
+   REPORT
+   Tracer tr("BandLUMatrix");
+   storage2 = 0; store2 = 0; indx = 0; // in event of exception during build
+   GeneralMatrix* gm = ((BaseMatrix&)m).Evaluate();
+   if (gm->nrows() != gm->ncols())
+      { gm->tDelete(); Throw(NotSquareException(*this)); }
+   if (gm->type() == MatrixType::BC)
+      { REPORT  ((BandLUMatrix*)gm)->get_aux(*this); GetMatrix(gm); }
+   else
+   {
+      REPORT
+      BandMatrix* gm1 = (BandMatrix*)(gm->Evaluate(MatrixType::BM));
+      m1 = gm1->lower_val; m2 = gm1->upper_val;
+      GetMatrix(gm1);
+      d = true; sing = false;
+      indx = new int [nrows_val]; MatrixErrorNoSpace(indx);
+      MONITOR_INT_NEW("Index (BndLUMat)",nrows_val,indx)
+      storage2 = nrows_val * m1;
+      store2 = new Real [storage2]; MatrixErrorNoSpace(store2);
+      MONITOR_REAL_NEW("Make (BandLUMat)",storage2,store2)
+      ludcmp();
+   }
+}
+
+GeneralMatrix* BandLUMatrix::Evaluate(MatrixType mt)
+{
+   if (Compare(this->Type(),mt)) { REPORT return this; }
+   REPORT
+   Tracer et("BandLUMatrix::Evaluate");
+   bool dummy = true;
+   if (dummy) Throw(ProgramException("Illegal use of BandLUMatrix", *this));
+   return this;
+}
+
+// could we use SetParameters instead of this
+void BandLUMatrix::get_aux(BandLUMatrix& X)
+{
+   X.d = d; X.sing = sing; X.storage2 = storage2; X.m1 = m1; X.m2 = m2;   
+   if (tag_val == 0 || tag_val == 1) // reuse the array 
+   {
+      REPORT
+      X.indx = indx; indx = 0;
+      X.store2 = store2; store2 = 0;
+      d = true; sing = true; storage2 = 0; m1 = 0; m2 = 0;
+      return;
+   }
+   else if (nrows_val == 0)
+   {
+      REPORT
+      indx = 0; store2 = 0; storage2 = 0;
+      d = true; sing = true; m1 = m2 = 0;
+      return;
+   }
+   else                              // copy the array
+   {
+      REPORT
+      Tracer tr("BandLUMatrix::get_aux");
+      int *ix = new int [nrows_val]; MatrixErrorNoSpace(ix);
+      MONITOR_INT_NEW("Index (BLUM::get_aux)", nrows_val, ix)
+      int n = nrows_val; int* i = ix; int* j = indx;
+      while(n--) *i++ = *j++;
+      X.indx = ix;
+      Real *rx = new Real [storage2]; MatrixErrorNoSpace(indx);
+      MONITOR_REAL_NEW("Index (BLUM::get_aux)", storage2, rx)
+      newmat_block_copy(storage2, store2, rx);
+      X.store2 = rx;
+   }
+}
+
+BandLUMatrix::BandLUMatrix(const BandLUMatrix& gm) : GeneralMatrix()
+{
+   REPORT
+   Tracer tr("BandLUMatrix(const BandLUMatrix&)");
+   ((BandLUMatrix&)gm).get_aux(*this);
+   GetMatrix(&gm);
+}
+
+void BandLUMatrix::operator=(const BandLUMatrix& gm)
+{
+   if (&gm == this) { REPORT tag_val = -1; return; }
+   REPORT
+   delete [] indx; indx = 0;
+   delete [] store2; store2 = 0; storage2 = 0;
+   ((BandLUMatrix&)gm).get_aux(*this);
+   Eq(gm);
+}
+   
+
+
+
+
+
+
+
+BandLUMatrix::~BandLUMatrix()
+{
+   REPORT
+   MONITOR_INT_DELETE("Index (BndLUMat)",nrows_val,indx)
+   MONITOR_REAL_DELETE("Delete (BndLUMt)",storage2,store2)
+   delete [] indx; delete [] store2;
+}
+
+MatrixType BandLUMatrix::type() const { REPORT return MatrixType::BC; }
+
+
+LogAndSign BandLUMatrix::log_determinant() const
+{
+   REPORT
+   if (sing) return 0.0;
+   Real* a = store; int w = m1+1+m2; LogAndSign sum; int i = nrows_val;
+   // while (i--) { sum *= *a; a += w; }
+   if (i) for (;;) { sum *= *a; if (!(--i)) break; a += w; }
+   if (!d) sum.ChangeSign(); return sum;
+}
+
+GeneralMatrix* BandMatrix::MakeSolver()
+{
+   REPORT
+   GeneralMatrix* gm = new BandLUMatrix(*this);
+   MatrixErrorNoSpace(gm); gm->ReleaseAndDelete(); return gm;
+}
+
+
+void BandLUMatrix::ludcmp()
+{
+   REPORT
+   Real* a = store2; int i = storage2;
+   // clear store2 - so unused locations are always zero -
+   // required by operator==
+   while (i--) *a++ = 0.0;
+   a = store;
+   i = m1; int j = m2; int k; int n = nrows_val; int w = m1 + 1 + m2;
+   while (i)
+   {
+      Real* ai = a + i;
+      k = ++j; while (k--) *a++ = *ai++;
+      k = i--; while (k--) *a++ = 0.0;
+   }
+
+   a = store; int l = m1;
+   for (k=0; k<n; k++)
+   {
+      Real x = *a; i = k; Real* aj = a;
+      if (l < n) l++;
+      for (j=k+1; j<l; j++)
+         { aj += w; if (fabs(x) < fabs(*aj)) { x = *aj; i = j; } }
+      indx[k] = i;
+      if (x==0) { sing = true; return; }
+      if (i!=k)
+      {
+         d = !d; Real* ak = a; Real* ai = store + i * w; j = w;
+         while (j--) { x = *ak; *ak++ = *ai; *ai++ = x; }
+      }
+      aj = a + w; Real* m = store2 + m1 * k;
+      for (j=k+1; j<l; j++)
+      {
+         *m++ = x = *aj / *a; i = w; Real* ak = a;
+         while (--i) { Real* aj1 = aj++; *aj1 = *aj - x * *(++ak); }
+         *aj++ = 0.0;
+      }
+      a += w;
+   }
+}
+
+void BandLUMatrix::lubksb(Real* B, int mini)
+{
+   REPORT
+   Tracer tr("BandLUMatrix::lubksb");
+   if (sing) Throw(SingularException(*this));
+   int n = nrows_val; int l = m1; int w = m1 + 1 + m2;
+
+   for (int k=0; k<n; k++)
+   {
+      int i = indx[k];
+      if (i!=k) { Real x=B[k]; B[k]=B[i]; B[i]=x; }
+      if (l<n) l++;
+      Real* m = store2 + k*m1; Real* b = B+k; Real* bi = b;
+      for (i=k+1; i<l; i++)  *(++bi) -= *m++ * *b;
+   }
+
+   l = -m1;
+   for (int i = n-1; i>=mini; i--)
+   {
+      Real* b = B + i; Real* bk = b; Real x = *bk;
+      Real* a = store + w*i; Real y = *a;
+      int k = l+m1; while (k--) x -=  *(++a) * *(++bk);
+      *b = x / y;
+      if (l < m2) l++;
+   }
+}
+
+void BandLUMatrix::Solver(MatrixColX& mcout, const MatrixColX& mcin)
+{
+   REPORT
+   int i = mcin.skip; Real* el = mcin.data-i; Real* el1=el;
+   while (i--) *el++ = 0.0;
+   el += mcin.storage; i = nrows_val - mcin.skip - mcin.storage;
+   while (i--) *el++ = 0.0;
+   lubksb(el1, mcout.skip);
+}
+
+// Do we need check for entirely zero output?
+
+
+void UpperBandMatrix::Solver(MatrixColX& mcout,
+   const MatrixColX& mcin)
+{
+   REPORT
+   int i = mcin.skip-mcout.skip; Real* elx = mcin.data-i;
+   while (i-- > 0) *elx++ = 0.0;
+   int nr = mcin.skip+mcin.storage;
+   elx = mcin.data+mcin.storage; Real* el = elx;
+   int j = mcout.skip+mcout.storage-nr; i = nr-mcout.skip;
+   while (j-- > 0) *elx++ = 0.0;
+
+   Real* Ael = store + (upper_val+1)*(i-1)+1; j = 0;
+   if (i > 0) for(;;)
+   {
+      elx = el; Real sum = 0.0; int jx = j;
+      while (jx--) sum += *(--Ael) * *(--elx);
+      elx--; *elx = (*elx - sum) / *(--Ael);
+      if (--i <= 0) break;
+      if (j<upper_val) Ael -= upper_val - (++j); else el--;
+   }
+}
+
+void LowerBandMatrix::Solver(MatrixColX& mcout,
+   const MatrixColX& mcin)
+{
+   REPORT
+   int i = mcin.skip-mcout.skip; Real* elx = mcin.data-i;
+   while (i-- > 0) *elx++ = 0.0;
+   int nc = mcin.skip; i = nc+mcin.storage; elx = mcin.data+mcin.storage;
+   int nr = mcout.skip+mcout.storage; int j = nr-i; i = nr-nc;
+   while (j-- > 0) *elx++ = 0.0;
+
+   Real* el = mcin.data;
+   Real* Ael = store + (lower_val+1)*nc + lower_val;
+   j = 0;
+   if (i > 0) for(;;)
+   {
+      elx = el; Real sum = 0.0; int jx = j;
+      while (jx--) sum += *Ael++ * *elx++;
+      *elx = (*elx - sum) / *Ael++;
+      if (--i <= 0) break;
+      if (j<lower_val) Ael += lower_val - (++j); else el++;
+   }
+}
+
+
+LogAndSign BandMatrix::log_determinant() const
+{
+   REPORT
+   BandLUMatrix C(*this); return C.log_determinant();
+}
+
+LogAndSign LowerBandMatrix::log_determinant() const
+{
+   REPORT
+   int i = nrows_val; LogAndSign sum;
+   Real* s = store + lower_val; int j = lower_val + 1;
+//   while (i--) { sum *= *s; s += j; }
+   if (i) for (;;) { sum *= *s; if (!(--i)) break; s += j; }
+   ((GeneralMatrix&)*this).tDelete(); return sum;
+}
+
+LogAndSign UpperBandMatrix::log_determinant() const
+{
+   REPORT
+   int i = nrows_val; LogAndSign sum; Real* s = store; int j = upper_val + 1;
+//   while (i--) { sum *= *s; s += j; }
+   if (i) for (;;) { sum *= *s; if (!(--i)) break; s += j; }
+   ((GeneralMatrix&)*this).tDelete(); return sum;
+}
+
+GeneralMatrix* SymmetricBandMatrix::MakeSolver()
+{
+   REPORT
+   GeneralMatrix* gm = new BandLUMatrix(*this);
+   MatrixErrorNoSpace(gm); gm->ReleaseAndDelete(); return gm;
+}
+
+SymmetricBandMatrix::SymmetricBandMatrix(const BaseMatrix& M)
+{
+   REPORT  // CheckConversion(M);
+   // MatrixConversionCheck mcc;
+   GeneralMatrix* gmx=((BaseMatrix&)M).Evaluate(MatrixType::SB);
+   GetMatrix(gmx);
+}
+
+GeneralMatrix* SymmetricBandMatrix::Transpose(TransposedMatrix*, MatrixType mt)
+{ REPORT  return Evaluate(mt); }
+
+LogAndSign SymmetricBandMatrix::log_determinant() const
+{
+   REPORT
+   BandLUMatrix C(*this); return C.log_determinant();
+}
+
+void SymmetricBandMatrix::SetParameters(const GeneralMatrix* gmx)
+{ REPORT lower_val = gmx->bandwidth().lower_val; }
+
+void SymmetricBandMatrix::resize(int n, int lb)
+{
+   REPORT
+   Tracer tr("SymmetricBandMatrix::resize");
+   if (lb<0) Throw(ProgramException("Undefined bandwidth"));
+   lower_val = (lb<=n) ? lb : n-1;
+   GeneralMatrix::resize(n,n,n*(lower_val+1));
+}
+
+void SymmetricBandMatrix::resize(const GeneralMatrix& A)
+{
+   REPORT
+   int n = A.Nrows();
+   if (n != A.Ncols())
+   {
+      Tracer tr("SymmetricBandMatrix::resize(GM)");
+      Throw(NotSquareException(*this));
+   }
+   MatrixBandWidth mbw = A.bandwidth(); int b = mbw.Lower();
+   if (b != mbw.Upper())
+   {
+      Tracer tr("SymmetricBandMatrix::resize(GM)");
+      Throw(ProgramException("Upper and lower band-widths not equal"));
+   }
+   resize(n, b);
+}
+/*
+bool SymmetricBandMatrix::SameStorageType(const GeneralMatrix& A) const
+{
+   if (type() != A.type()) { REPORT return false; }
+   REPORT
+   return bandwidth() == A.bandwidth();
+}
+
+void SymmetricBandMatrix::resizeForAdd(const GeneralMatrix& A,
+   const GeneralMatrix& B)
+{
+   REPORT
+   Tracer tr("SymmetricBandMatrix::resizeForAdd");
+   MatrixBandWidth A_BW = A.bandwidth(); MatrixBandWidth B_BW = B.bandwidth();
+   if ((A_BW.Lower() < 0) | (B_BW.Lower() < 0))
+         Throw(ProgramException("Can't resize to SymmetricBandMatrix" ));
+   // already know A and B are square
+   resize(A.Nrows(), my_max(A_BW.Lower(), B_BW.Lower()));
+}
+
+void SymmetricBandMatrix::resizeForSP(const GeneralMatrix& A,
+   const GeneralMatrix& B)
+{
+   REPORT
+   Tracer tr("SymmetricBandMatrix::resizeForSP");
+   MatrixBandWidth A_BW = A.bandwidth(); MatrixBandWidth B_BW = B.bandwidth();
+   if ((A_BW.Lower() < 0) | (B_BW.Lower() < 0))
+         Throw(ProgramException("Can't resize to SymmetricBandMatrix" ));
+   // already know A and B are square
+   resize(A.Nrows(), my_min(A_BW.Lower(), B_BW.Lower()));
+}
+*/
+
+void SymmetricBandMatrix::operator=(const BaseMatrix& X)
+{
+   REPORT // CheckConversion(X);
+   // MatrixConversionCheck mcc;
+   Eq(X,MatrixType::SB);
+}
+
+void SymmetricBandMatrix::CornerClear() const
+{
+   // set unused parts of BandMatrix to zero
+   REPORT
+   int i = lower_val; Real* s = store; int bw = lower_val + 1;
+   if (i) for(;;)
+   {
+      int j = i;
+      Real* sj = s;
+      while (j--) *sj++ = 0.0;
+      if (!(--i)) break;
+      s += bw;
+   }
+}
+
+MatrixBandWidth SymmetricBandMatrix::bandwidth() const
+   { REPORT return MatrixBandWidth(lower_val,lower_val); }
+
+GeneralMatrix* BandMatrix::Image() const
+{
+   REPORT
+   GeneralMatrix* gm = new BandMatrix(*this); MatrixErrorNoSpace(gm);
+   return gm;
+}
+
+GeneralMatrix* UpperBandMatrix::Image() const
+{
+   REPORT
+   GeneralMatrix* gm = new UpperBandMatrix(*this); MatrixErrorNoSpace(gm);
+   return gm;
+}
+
+GeneralMatrix* LowerBandMatrix::Image() const
+{
+   REPORT
+   GeneralMatrix* gm = new LowerBandMatrix(*this); MatrixErrorNoSpace(gm);
+   return gm;
+}
+
+GeneralMatrix* SymmetricBandMatrix::Image() const
+{
+   REPORT
+   GeneralMatrix* gm = new SymmetricBandMatrix(*this); MatrixErrorNoSpace(gm);
+   return gm;
+}
+
+GeneralMatrix* BandLUMatrix::Image() const
+{
+   REPORT
+   GeneralMatrix* gm = new BandLUMatrix(*this); MatrixErrorNoSpace(gm);
+   return gm;
+}
+
+
+inline Real square(Real x) { return x*x; }
+
+Real SymmetricBandMatrix::sum_square() const
+{
+   REPORT
+   CornerClear();
+   Real sum1=0.0; Real sum2=0.0; Real* s=store; int i=nrows_val;
+   int l=lower_val;
+   while (i--)
+      { int j = l; while (j--) sum2 += square(*s++); sum1 += square(*s++); }
+   ((GeneralMatrix&)*this).tDelete(); return sum1 + 2.0 * sum2;
+}
+
+Real SymmetricBandMatrix::sum_absolute_value() const
+{
+   REPORT
+   CornerClear();
+   Real sum1=0.0; Real sum2=0.0; Real* s=store; int i=nrows_val;
+   int l=lower_val;
+   while (i--)
+      { int j = l; while (j--) sum2 += fabs(*s++); sum1 += fabs(*s++); }
+   ((GeneralMatrix&)*this).tDelete(); return sum1 + 2.0 * sum2;
+}
+
+Real SymmetricBandMatrix::sum() const
+{
+   REPORT
+   CornerClear();
+   Real sum1=0.0; Real sum2=0.0; Real* s=store; int i=nrows_val;
+   int l=lower_val;
+   while (i--)
+      { int j = l; while (j--) sum2 += *s++; sum1 += *s++; }
+   ((GeneralMatrix&)*this).tDelete(); return sum1 + 2.0 * sum2;
+}
+
+
+
+
+
+#ifdef use_namespace
+}
+#endif
+
+///@}
+
+
Index: branches/BNC_LM/newmat/cholesky.cpp
===================================================================
--- branches/BNC_LM/newmat/cholesky.cpp	(revision 3570)
+++ branches/BNC_LM/newmat/cholesky.cpp	(revision 3570)
@@ -0,0 +1,289 @@
+/// \ingroup newmat
+///@{
+
+/// \file cholesky.cpp
+/// Cholesky decomposition.
+/// Cholesky decomposition of symmetric and band symmetric matrices,
+/// update, downdate, manipulate a Cholesky decomposition
+
+
+// Copyright (C) 1991,2,3,4: R B Davies
+
+#define WANT_MATH
+//#define WANT_STREAM
+
+#include "include.h"
+
+#include "newmat.h"
+#include "newmatrm.h"
+
+#ifdef use_namespace
+namespace NEWMAT {
+#endif
+
+#ifdef DO_REPORT
+#define REPORT { static ExeCounter ExeCount(__LINE__,14); ++ExeCount; }
+#else
+#define REPORT {}
+#endif
+
+/********* Cholesky decomposition of a positive definite matrix *************/
+
+// Suppose S is symmetrix and positive definite. Then there exists a unique
+// lower triangular matrix L such that L L.t() = S;
+
+
+ReturnMatrix Cholesky(const SymmetricMatrix& S)
+{
+   REPORT
+   Tracer trace("Cholesky");
+   int nr = S.Nrows();
+   LowerTriangularMatrix T(nr);
+   Real* s = S.Store(); Real* t = T.Store(); Real* ti = t;
+   for (int i=0; i<nr; i++)
+   {
+      Real* tj = t; Real sum; int k;
+      for (int j=0; j<i; j++)
+      {
+         Real* tk = ti; sum = 0.0; k = j;
+         while (k--) { sum += *tj++ * *tk++; }
+         *tk = (*s++ - sum) / *tj++;
+      }
+      sum = 0.0; k = i;
+      while (k--) { sum += square(*ti++); }
+      Real d = *s++ - sum;
+      if (d<=0.0)  Throw(NPDException(S));
+      *ti++ = sqrt(d);
+   }
+   T.release(); return T.for_return();
+}
+
+ReturnMatrix Cholesky(const SymmetricBandMatrix& S)
+{
+   REPORT
+   Tracer trace("Band-Cholesky");
+   int nr = S.Nrows(); int m = S.lower_val;
+   LowerBandMatrix T(nr,m);
+   Real* s = S.Store(); Real* t = T.Store(); Real* ti = t;
+
+   for (int i=0; i<nr; i++)
+   {
+      Real* tj = t; Real sum; int l;
+      if (i<m) { REPORT l = m-i; s += l; ti += l; l = i; }
+      else { REPORT t += (m+1); l = m; }
+
+      for (int j=0; j<l; j++)
+      {
+         Real* tk = ti; sum = 0.0; int k = j; tj += (m-j);
+         while (k--) { sum += *tj++ * *tk++; }
+         *tk = (*s++ - sum) / *tj++;
+      }
+      sum = 0.0;
+      while (l--) { sum += square(*ti++); }
+      Real d = *s++ - sum;
+      if (d<=0.0)  Throw(NPDException(S));
+      *ti++ = sqrt(d);
+   }
+
+   T.release(); return T.for_return();
+}
+
+
+
+
+// Contributed by Nick Bennett of Schlumberger-Doll Research; modified by RBD
+
+// The enclosed routines can be used to update the Cholesky decomposition of
+// a positive definite symmetric matrix.  A good reference for this routines
+// can be found in
+// LINPACK User's Guide, Chapter 10, Dongarra et. al., SIAM, Philadelphia, 1979
+
+// produces the Cholesky decomposition of A + x.t() * x where A = chol.t() * chol
+void update_Cholesky(UpperTriangularMatrix &chol, RowVector x)
+{
+   int nc = chol.Nrows();
+   ColumnVector cGivens(nc); cGivens = 0.0;
+   ColumnVector sGivens(nc); sGivens = 0.0;
+	
+   for(int j = 1; j <= nc; ++j) // process the jth column of chol
+   {
+      // apply the previous Givens rotations k = 1,...,j-1 to column j
+      for(int k = 1; k < j; ++k)
+         GivensRotation(cGivens(k), sGivens(k), chol(k,j), x(j));
+
+      // determine the jth Given's rotation
+      pythag(chol(j,j), x(j), cGivens(j), sGivens(j));
+
+      // apply the jth Given's rotation
+      {
+         Real tmp0 = cGivens(j) * chol(j,j) + sGivens(j) * x(j);
+         chol(j,j) = tmp0; x(j) = 0.0;
+      }
+
+   }
+
+}
+
+
+// produces the Cholesky decomposition of A - x.t() * x where A = chol.t() * chol
+void downdate_Cholesky(UpperTriangularMatrix &chol, RowVector x)
+{
+   int nRC = chol.Nrows();
+	
+   // solve R^T a = x
+   LowerTriangularMatrix L = chol.t();
+   ColumnVector a(nRC); a = 0.0;
+   int i, j;
+	
+   for (i = 1; i <= nRC; ++i)
+   {
+      // accumulate subtr sum
+      Real subtrsum = 0.0;
+      for(int k = 1; k < i; ++k) subtrsum += a(k) * L(i,k);
+
+      a(i) = (x(i) - subtrsum) / L(i,i);
+   }
+
+   // test that l2 norm of a is < 1
+   Real squareNormA = a.SumSquare();
+   if (squareNormA >= 1.0)
+      Throw(ProgramException("downdate_Cholesky() fails", chol));
+
+   Real alpha = sqrt(1.0 - squareNormA);
+
+   // compute and apply Givens rotations to the vector a
+   ColumnVector cGivens(nRC);  cGivens = 0.0;
+   ColumnVector sGivens(nRC);  sGivens = 0.0;
+   for(i = nRC; i >= 1; i--)
+      alpha = pythag(alpha, a(i), cGivens(i), sGivens(i));
+
+   // apply Givens rotations to the jth column of chol
+   ColumnVector xtilde(nRC); xtilde = 0.0;
+   for(j = nRC; j >= 1; j--)
+   {
+      // only the first j rotations have an affect on chol,0
+      for(int k = j; k >= 1; k--)
+         GivensRotation(cGivens(k), -sGivens(k), chol(k,j), xtilde(j));
+   }
+}
+
+
+
+// produces the Cholesky decomposition of EAE where A = chol.t() * chol
+// and E produces a RIGHT circular shift of the rows and columns from
+// 1,...,k-1,k,k+1,...l,l+1,...,p to
+// 1,...,k-1,l,k,k+1,...l-1,l+1,...p
+void right_circular_update_Cholesky(UpperTriangularMatrix &chol, int k, int l)
+{
+   int nRC = chol.Nrows();
+   int i, j;
+	
+   // I. compute shift of column l to the kth position
+   Matrix cholCopy = chol;
+   // a. grab column l
+   ColumnVector columnL = cholCopy.Column(l);
+   // b. shift columns k,...l-1 to the RIGHT
+   for(j = l-1; j >= k; --j)
+      cholCopy.Column(j+1) = cholCopy.Column(j);
+   // c. copy the top k-1 elements of columnL into the kth column of cholCopy
+   cholCopy.Column(k) = 0.0;
+   for(i = 1; i < k; ++i) cholCopy(i,k) = columnL(i);
+
+    // II. determine the l-k Given's rotations
+   int nGivens = l-k;
+   ColumnVector cGivens(nGivens); cGivens = 0.0;
+   ColumnVector sGivens(nGivens); sGivens = 0.0;
+   for(i = l; i > k; i--)
+   {
+      int givensIndex = l-i+1;
+      columnL(i-1) = pythag(columnL(i-1), columnL(i),
+         cGivens(givensIndex), sGivens(givensIndex));
+      columnL(i) = 0.0;
+   }
+   // the kth entry of columnL is the new diagonal element in column k of cholCopy
+   cholCopy(k,k) = columnL(k);
+	
+   // III. apply these Given's rotations to subsequent columns
+   // for columns k+1,...,l-1 we only need to apply the last nGivens-(j-k) rotations
+   for(j = k+1; j <= nRC; ++j)
+   {
+      ColumnVector columnJ = cholCopy.Column(j);
+      int imin = nGivens - (j-k) + 1; if (imin < 1) imin = 1;
+      for(int gIndex = imin; gIndex <= nGivens; ++gIndex)
+      {
+         // apply gIndex Given's rotation
+         int topRowIndex = k + nGivens - gIndex;
+         GivensRotationR(cGivens(gIndex), sGivens(gIndex),
+            columnJ(topRowIndex), columnJ(topRowIndex+1));
+      }
+      cholCopy.Column(j) = columnJ;
+   }
+
+   chol << cholCopy;
+}
+
+
+
+// produces the Cholesky decomposition of EAE where A = chol.t() * chol
+// and E produces a LEFT circular shift of the rows and columns from
+// 1,...,k-1,k,k+1,...l,l+1,...,p to
+// 1,...,k-1,k+1,...l,k,l+1,...,p to
+void left_circular_update_Cholesky(UpperTriangularMatrix &chol, int k, int l)
+{
+   int nRC = chol.Nrows();
+   int i, j;
+
+   // I. compute shift of column k to the lth position
+   Matrix cholCopy = chol;
+   // a. grab column k
+   ColumnVector columnK = cholCopy.Column(k);
+   // b. shift columns k+1,...l to the LEFT
+   for(j = k+1; j <= l; ++j)
+      cholCopy.Column(j-1) = cholCopy.Column(j);
+   // c. copy the elements of columnK into the lth column of cholCopy
+   cholCopy.Column(l) = 0.0;
+   for(i = 1; i <= k; ++i)
+      cholCopy(i,l) = columnK(i);
+
+   // II. apply and compute Given's rotations
+   int nGivens = l-k;
+   ColumnVector cGivens(nGivens); cGivens = 0.0;
+   ColumnVector sGivens(nGivens); sGivens = 0.0;
+   for(j = k; j <= nRC; ++j)
+   {
+      ColumnVector columnJ = cholCopy.Column(j);
+
+      // apply the previous Givens rotations to columnJ
+      int imax = j - k; if (imax > nGivens) imax = nGivens;
+      for(int i = 1; i <= imax; ++i)
+      {
+         int gIndex = i;
+         int topRowIndex = k + i - 1;
+         GivensRotationR(cGivens(gIndex), sGivens(gIndex),
+            columnJ(topRowIndex), columnJ(topRowIndex+1));
+      }
+
+      // compute a new Given's rotation when j < l
+      if(j < l)
+      {
+         int gIndex = j-k+1;
+         columnJ(j) = pythag(columnJ(j), columnJ(j+1), cGivens(gIndex),
+            sGivens(gIndex));
+         columnJ(j+1) = 0.0;
+      }
+
+      cholCopy.Column(j) = columnJ;
+   }
+
+   chol << cholCopy;
+	
+}
+
+
+
+
+#ifdef use_namespace
+}
+#endif
+
+///@}
Index: branches/BNC_LM/newmat/controlw.h
===================================================================
--- branches/BNC_LM/newmat/controlw.h	(revision 3570)
+++ branches/BNC_LM/newmat/controlw.h	(revision 3570)
@@ -0,0 +1,56 @@
+/// \ingroup newmat
+///@{
+
+/// \file controlw.h
+/// Control word class.
+/// Manipulate bits used for setting options.
+
+
+#ifndef CONTROL_WORD_LIB
+#define CONTROL_WORD_LIB 0
+
+/// Organise an int as a series of bits to set options.
+/// \internal
+class ControlWord
+{
+protected:
+   int cw;                                      // the control word
+public:
+   ControlWord() : cw(0) {}                     // do nothing
+   ControlWord(int i) : cw(i) {}                // load an integer
+
+      // select specific bits (for testing at least one set)
+   ControlWord operator*(ControlWord i) const
+      { return ControlWord(cw & i.cw); }
+   void operator*=(ControlWord i)  { cw &= i.cw; }
+
+      // set bits
+   ControlWord operator+(ControlWord i) const
+      { return ControlWord(cw | i.cw); }
+   void operator+=(ControlWord i)  { cw |= i.cw; }
+
+      // reset bits
+   ControlWord operator-(ControlWord i) const
+      { return ControlWord(cw - (cw & i.cw)); }
+   void operator-=(ControlWord i) { cw -= (cw & i.cw); }
+
+      // check if all of selected bits set or reset
+   bool operator>=(ControlWord i) const { return (cw & i.cw) == i.cw; }
+   bool operator<=(ControlWord i) const { return (cw & i.cw) == cw; }
+
+      // flip selected bits
+   ControlWord operator^(ControlWord i) const
+      { return ControlWord(cw ^ i.cw); }
+   ControlWord operator~() const { return ControlWord(~cw); }
+
+      // convert to integer
+   int operator+() const { return cw; }
+   int operator!() const { return cw==0; }
+   FREE_CHECK(ControlWord)
+};
+
+
+#endif
+
+///@}
+
Index: branches/BNC_LM/newmat/evalue.cpp
===================================================================
--- branches/BNC_LM/newmat/evalue.cpp	(revision 3570)
+++ branches/BNC_LM/newmat/evalue.cpp	(revision 3570)
@@ -0,0 +1,303 @@
+/// \ingroup newmat
+///@{
+
+/// \file evalue.cpp
+/// Eigen-value decomposition (Householder method).
+
+// Copyright (C) 1991,2,3,4: R B Davies
+
+#define WANT_MATH
+
+#include "include.h"
+#include "newmatap.h"
+#include "newmatrm.h"
+#include "precisio.h"
+
+#ifdef use_namespace
+namespace NEWMAT {
+#endif
+
+#ifdef DO_REPORT
+#define REPORT { static ExeCounter ExeCount(__LINE__,17); ++ExeCount; }
+#else
+#define REPORT {}
+#endif
+
+
+
+static void tred2(const SymmetricMatrix& A, DiagonalMatrix& D,
+   DiagonalMatrix& E, Matrix& Z)
+{
+   Tracer et("Evalue(tred2)");
+   REPORT
+   Real tol =
+      FloatingPointPrecision::Minimum()/FloatingPointPrecision::Epsilon();
+   int n = A.Nrows(); Z.resize(n,n); Z.Inject(A);
+   D.resize(n); E.resize(n);
+   Real* z = Z.Store(); int i;
+
+   for (i=n-1; i > 0; i--)                   // i=0 is excluded
+   {
+      Real f = Z.element(i,i-1); Real g = 0.0;
+      int k = i-1; Real* zik = z + i*n;
+      while (k--) g += square(*zik++);
+      Real h = g + square(f);
+      if (g <= tol) { REPORT E.element(i) = f; h = 0.0; }
+      else
+      {
+         REPORT
+         g = sign(-sqrt(h), f); E.element(i) = g; h -= f*g;
+         Z.element(i,i-1) = f-g; f = 0.0;
+         Real* zji = z + i; Real* zij = z + i*n; Real* ej = E.Store();
+         int j;
+         for (j=0; j<i; j++)
+         {
+            *zji = (*zij++)/h; g = 0.0;
+            Real* zjk = z + j*n; zik = z + i*n;
+            k = j; while (k--) g += *zjk++ * (*zik++);
+            k = i-j;
+            if (k) for(;;)
+               { g += *zjk * (*zik++); if (!(--k)) break; zjk += n; }
+            *ej++ = g/h; f += g * (*zji); zji += n;
+         }
+         Real hh = f / (h + h); zij = z + i*n; ej = E.Store();
+         for (j=0; j<i; j++)
+         {
+            f = *zij++; g = *ej - hh * f; *ej++ = g;
+            Real* zjk = z + j*n; Real* zik = z + i*n;
+            Real* ek = E.Store(); k = j+1;
+            while (k--)  *zjk++ -= ( f*(*ek++) + g*(*zik++) ); 
+         }
+      }
+      D.element(i) = h;
+   }
+
+   D.element(0) = 0.0; E.element(0) = 0.0;
+   for (i=0; i<n; i++)
+   {
+      if (D.element(i) != 0.0)
+      {
+         REPORT
+         for (int j=0; j<i; j++)
+         {
+            Real g = 0.0;
+            Real* zik = z + i*n; Real* zkj = z + j;
+            int k = i;
+            if (k) for (;;)
+               { g += *zik++ * (*zkj); if (!(--k)) break; zkj += n; }
+            Real* zki = z + i; zkj = z + j;
+            k = i;
+            if (k) for (;;)
+               { *zkj -= g * (*zki); if (!(--k)) break; zkj += n; zki += n; }
+         }
+      }
+      Real* zij = z + i*n; Real* zji = z + i;
+      int j = i;
+      if (j) for (;;)
+         { *zij++ = 0.0; *zji = 0.0; if (!(--j)) break; zji += n; }
+      D.element(i) = *zij; *zij = 1.0;
+   }
+}
+
+static void tql2(DiagonalMatrix& D, DiagonalMatrix& E, Matrix& Z)
+{
+   Tracer et("Evalue(tql2)");
+   REPORT
+   Real eps = FloatingPointPrecision::Epsilon();
+   int n = D.Nrows(); Real* z = Z.Store(); int l;
+   for (l=1; l<n; l++) E.element(l-1) = E.element(l);
+   Real b = 0.0; Real f = 0.0; E.element(n-1) = 0.0;
+   for (l=0; l<n; l++)
+   {
+      int i,j;
+      Real& dl = D.element(l); Real& el = E.element(l);
+      Real h = eps * ( fabs(dl) + fabs(el) );
+      if (b < h) { REPORT b = h; }
+      int m;
+      for (m=l; m<n; m++) if (fabs(E.element(m)) <= b) break;
+      bool test = false;
+      for (j=0; j<30; j++)
+      {
+         if (m==l) { REPORT test = true; break; }
+         Real& dl1 = D.element(l+1);
+         Real g = dl; Real p = (dl1-g) / (2.0*el); Real r = sqrt(p*p + 1.0);
+         dl = el / (p < 0.0 ? p-r : p+r); Real h = g - dl; f += h;
+         Real* dlx = &dl1; i = n-l-1; while (i--) *dlx++ -= h;
+
+         p = D.element(m); Real c = 1.0; Real s = 0.0;
+         for (i=m-1; i>=l; i--)
+         {
+            Real ei = E.element(i); Real di = D.element(i);
+            Real& ei1 = E.element(i+1);
+            g = c * ei; h = c * p;
+            if ( fabs(p) >= fabs(ei))
+            {
+               REPORT
+               c = ei / p; r = sqrt(c*c + 1.0);
+               ei1 = s*p*r; s = c/r; c = 1.0/r;
+            }
+            else
+            {
+               REPORT
+               c = p / ei; r = sqrt(c*c + 1.0);
+               ei1 = s * ei * r; s = 1.0/r; c /= r;
+            }
+            p = c * di - s*g; D.element(i+1) = h + s * (c*g + s*di);
+
+            Real* zki = z + i; Real* zki1 = zki + 1; int k = n;
+            if (k) for (;;)
+            {
+               REPORT
+               h = *zki1; *zki1 = s*(*zki) + c*h; *zki = c*(*zki) - s*h;
+               if (!(--k)) break;
+               zki += n; zki1 += n;
+            }
+         }
+         el = s*p; dl = c*p;
+         if (fabs(el) <= b) { REPORT; test = true; break; }
+      }
+      if (!test) Throw ( ConvergenceException(D) );
+      dl += f;
+   }
+/*
+   for (int i=0; i<n; i++)
+   {
+      int k = i; Real p = D.element(i);
+      for (int j=i+1; j<n; j++)
+         { if (D.element(j) < p) { k = j; p = D.element(j); } }
+      if (k != i)
+      {
+         D.element(k) = D.element(i); D.element(i) = p; int j = n;
+         Real* zji = z + i; Real* zjk = z + k;
+         if (j) for(;;)
+         {
+            p = *zji; *zji = *zjk; *zjk = p;
+            if (!(--j)) break;
+            zji += n; zjk += n;
+         }
+      }
+   }
+*/
+}
+
+static void tred3(const SymmetricMatrix& X, DiagonalMatrix& D,
+   DiagonalMatrix& E, SymmetricMatrix& A)
+{
+   Tracer et("Evalue(tred3)");
+   REPORT
+   Real tol =
+      FloatingPointPrecision::Minimum()/FloatingPointPrecision::Epsilon();
+   int n = X.Nrows(); A = X; D.resize(n); E.resize(n);
+   Real* ei = E.Store() + n;
+   for (int i = n-1; i >= 0; i--)
+   {
+      Real h = 0.0; Real f = - FloatingPointPrecision::Maximum();
+      Real* d = D.Store(); Real* a = A.Store() + (i*(i+1))/2; int k = i;
+      while (k--) { f = *a++; *d++ = f; h += square(f); }
+      if (h <= tol) { REPORT *(--ei) = 0.0; h = 0.0; }
+      else
+      {
+         REPORT
+         Real g = sign(-sqrt(h), f); *(--ei) = g; h -= f*g;
+         f -= g; *(d-1) = f; *(a-1) = f; f = 0.0;
+         Real* dj = D.Store(); Real* ej = E.Store(); int j;
+         for (j = 0; j < i; j++)
+         {
+            Real* dk = D.Store(); Real* ak = A.Store()+(j*(j+1))/2;
+            Real g = 0.0; k = j;
+            while (k--)  g += *ak++ * *dk++;
+            k = i-j; int l = j; 
+            if (k) for (;;) { g += *ak * *dk++; if (!(--k)) break; ak += ++l; }
+            g /= h; *ej++ = g; f += g * *dj++;
+         }  
+         Real hh = f / (2 * h); Real* ak = A.Store();
+         dj = D.Store(); ej = E.Store();
+         for (j = 0; j < i; j++)
+         {
+            f = *dj++; g = *ej - hh * f; *ej++ = g;
+            Real* dk = D.Store(); Real* ek = E.Store(); k = j+1;
+            while (k--) { *ak++ -= (f * *ek++ + g * *dk++); }
+         }
+      }
+      *d = *a; *a = h;
+   }
+}
+
+static void tql1(DiagonalMatrix& D, DiagonalMatrix& E)
+{
+   Tracer et("Evalue(tql1)");
+   REPORT
+   Real eps = FloatingPointPrecision::Epsilon();
+   int n = D.Nrows(); int l;
+   for (l=1; l<n; l++) E.element(l-1) = E.element(l);
+   Real b = 0.0; Real f = 0.0; E.element(n-1) = 0.0;
+   for (l=0; l<n; l++)
+   {
+      int i,j;
+      Real& dl = D.element(l); Real& el = E.element(l);
+      Real h = eps * ( fabs(dl) + fabs(el) );
+      if (b < h) b = h;
+      int m;
+      for (m=l; m<n; m++) if (fabs(E.element(m)) <= b) break;
+      bool test = false;
+      for (j=0; j<30; j++)
+      {
+         if (m==l) { REPORT test = true; break; }
+         Real& dl1 = D.element(l+1);
+         Real g = dl; Real p = (dl1-g) / (2.0*el); Real r = sqrt(p*p + 1.0);
+         dl = el / (p < 0.0 ? p-r : p+r); Real h = g - dl; f += h;
+         Real* dlx = &dl1; i = n-l-1; while (i--) *dlx++ -= h;
+
+         p = D.element(m); Real c = 1.0; Real s = 0.0;
+         for (i=m-1; i>=l; i--)
+         {
+            Real ei = E.element(i); Real di = D.element(i);
+            Real& ei1 = E.element(i+1);
+            g = c * ei; h = c * p;
+            if ( fabs(p) >= fabs(ei))
+            {
+               REPORT
+               c = ei / p; r = sqrt(c*c + 1.0);
+               ei1 = s*p*r; s = c/r; c = 1.0/r;
+            }
+            else
+            {
+               REPORT
+               c = p / ei; r = sqrt(c*c + 1.0);
+               ei1 = s * ei * r; s = 1.0/r; c /= r;
+            }
+            p = c * di - s*g; D.element(i+1) = h + s * (c*g + s*di);
+         }
+         el = s*p; dl = c*p;
+         if (fabs(el) <= b) { REPORT test = true; break; }
+      }
+      if (!test) Throw ( ConvergenceException(D) );
+      Real p = dl + f;
+      test = false;
+      for (i=l; i>0; i--)
+      {
+         if (p < D.element(i-1)) { REPORT D.element(i) = D.element(i-1); }
+         else { REPORT test = true; break; }
+      }
+      if (!test) i=0;
+      D.element(i) = p;
+   }
+}
+
+void eigenvalues(const SymmetricMatrix& A, DiagonalMatrix& D, Matrix& Z)
+{ REPORT DiagonalMatrix E; tred2(A, D, E, Z); tql2(D, E, Z); SortSV(D,Z,true); }
+
+void eigenvalues(const SymmetricMatrix& X, DiagonalMatrix& D)
+{ REPORT DiagonalMatrix E; SymmetricMatrix A; tred3(X,D,E,A); tql1(D,E); }
+
+void eigenvalues(const SymmetricMatrix& X, DiagonalMatrix& D,
+   SymmetricMatrix& A)
+{ REPORT DiagonalMatrix E; tred3(X,D,E,A); tql1(D,E); }
+
+
+#ifdef use_namespace
+}
+#endif
+
+///@}
+
Index: branches/BNC_LM/newmat/fft.cpp
===================================================================
--- branches/BNC_LM/newmat/fft.cpp	(revision 3570)
+++ branches/BNC_LM/newmat/fft.cpp	(revision 3570)
@@ -0,0 +1,480 @@
+/// \ingroup newmat
+///@{
+
+/// \file fft.cpp
+/// \brief Fast Fourier (Carl de Boor) and trig transforms.
+
+
+// Copyright (C) 1991,2,3,4,8: R B Davies
+
+
+#define WANT_MATH
+// #define WANT_STREAM
+
+#include "include.h"
+
+#include "newmatap.h"
+
+// #include "newmatio.h"
+
+#ifdef use_namespace
+namespace NEWMAT {
+#endif
+
+#ifdef DO_REPORT
+#define REPORT { static ExeCounter ExeCount(__LINE__,19); ++ExeCount; }
+#else
+#define REPORT {}
+#endif
+
+static void cossin(int n, int d, Real& c, Real& s)
+// calculate cos(twopi*n/d) and sin(twopi*n/d)
+// minimise roundoff error
+{
+   REPORT
+   long n4 = n * 4; int sector = (int)floor( (Real)n4 / (Real)d + 0.5 );
+   n4 -= sector * d;
+   if (sector < 0) { REPORT sector = 3 - (3 - sector) % 4; }
+   else  { REPORT sector %= 4; }
+   Real ratio = 1.5707963267948966192 * (Real)n4 / (Real)d;
+
+   switch (sector)
+   {
+   case 0: REPORT c =  cos(ratio); s =  sin(ratio); break;
+   case 1: REPORT c = -sin(ratio); s =  cos(ratio); break;
+   case 2: REPORT c = -cos(ratio); s = -sin(ratio); break;
+   case 3: REPORT c =  sin(ratio); s = -cos(ratio); break;
+   }
+}
+
+static void fftstep(ColumnVector& A, ColumnVector& B, ColumnVector& X,
+   ColumnVector& Y, int after, int now, int before)
+{
+   REPORT
+   Tracer trace("FFT(step)");
+   // const Real twopi = 6.2831853071795864769;
+   const int gamma = after * before;  const int delta = now * after;
+   // const Real angle = twopi / delta;  Real temp;
+   // Real r_omega = cos(angle);  Real i_omega = -sin(angle);
+   Real r_arg = 1.0;  Real i_arg = 0.0;
+   Real* x = X.Store();  Real* y = Y.Store();   // pointers to array storage
+   const int m = A.Nrows() - gamma;
+
+   for (int j = 0; j < now; j++)
+   {
+      Real* a = A.Store(); Real* b = B.Store(); // pointers to array storage
+      Real* x1 = x; Real* y1 = y; x += after; y += after;
+      for (int ia = 0; ia < after; ia++)
+      {
+         // generate sins & cosines explicitly rather than iteratively
+         // for more accuracy; but slower
+         cossin(-(j*after+ia), delta, r_arg, i_arg);
+
+         Real* a1 = a++; Real* b1 = b++; Real* x2 = x1++; Real* y2 = y1++;
+         if (now==2)
+         {
+            REPORT int ib = before;
+            if (ib) for (;;)
+            {
+               REPORT
+               Real* a2 = m + a1; Real* b2 = m + b1; a1 += after; b1 += after;
+               Real r_value = *a2; Real i_value = *b2;
+               *x2 = r_value * r_arg - i_value * i_arg + *(a2-gamma);
+               *y2 = r_value * i_arg + i_value * r_arg + *(b2-gamma);
+               if (!(--ib)) break;
+               x2 += delta; y2 += delta;
+            }
+         }
+         else
+         {
+            REPORT int ib = before;
+            if (ib) for (;;)
+            {
+               REPORT
+               Real* a2 = m + a1; Real* b2 = m + b1; a1 += after; b1 += after;
+               Real r_value = *a2; Real i_value = *b2;
+               int in = now-1; while (in--)
+               {
+                  // it should be possible to make this faster
+                  // hand code for now = 2,3,4,5,8
+                  // use symmetry to halve number of operations
+                  a2 -= gamma; b2 -= gamma;  Real temp = r_value;
+                  r_value = r_value * r_arg - i_value * i_arg + *a2;
+                  i_value = temp    * i_arg + i_value * r_arg + *b2;
+               }
+               *x2 = r_value; *y2 = i_value;
+               if (!(--ib)) break;
+               x2 += delta; y2 += delta;
+            }
+         }
+
+         // temp = r_arg;
+         // r_arg = r_arg * r_omega - i_arg * i_omega;
+         // i_arg = temp  * i_omega + i_arg * r_omega;
+
+      }
+   }
+}
+
+
+void FFTI(const ColumnVector& U, const ColumnVector& V,
+   ColumnVector& X, ColumnVector& Y)
+{
+   // Inverse transform
+   Tracer trace("FFTI");
+   REPORT
+   FFT(U,-V,X,Y);
+   const Real n = X.Nrows(); X /= n; Y /= (-n);
+}
+
+void RealFFT(const ColumnVector& U, ColumnVector& X, ColumnVector& Y)
+{
+   // Fourier transform of a real series
+   Tracer trace("RealFFT");
+   REPORT
+   const int n = U.Nrows();                     // length of arrays
+   const int n2 = n / 2;
+   if (n != 2 * n2)
+      Throw(ProgramException("Vector length not multiple of 2", U));
+   ColumnVector A(n2), B(n2);
+   Real* a = A.Store(); Real* b = B.Store(); Real* u = U.Store(); int i = n2;
+   while (i--) { *a++ = *u++; *b++ = *u++; }
+   FFT(A,B,A,B);
+   int n21 = n2 + 1;
+   X.resize(n21); Y.resize(n21);
+   i = n2 - 1;
+   a = A.Store(); b = B.Store();              // first els of A and B
+   Real* an = a + i; Real* bn = b + i;        // last els of A and B
+   Real* x = X.Store(); Real* y = Y.Store();  // first els of X and Y
+   Real* xn = x + n2; Real* yn = y + n2;      // last els of X and Y
+
+   *x++ = *a + *b; *y++ = 0.0;                // first complex element
+   *xn-- = *a++ - *b++; *yn-- = 0.0;          // last complex element
+
+   int j = -1; i = n2/2;
+   while (i--)
+   {
+      Real c,s; cossin(j--,n,c,s);
+      Real am = *a - *an; Real ap = *a++ + *an--;
+      Real bm = *b - *bn; Real bp = *b++ + *bn--;
+      Real samcbp = s * am + c * bp; Real sbpcam = s * bp - c * am;
+      *x++  =  0.5 * ( ap + samcbp); *y++  =  0.5 * ( bm + sbpcam);
+      *xn-- =  0.5 * ( ap - samcbp); *yn-- =  0.5 * (-bm + sbpcam);
+   }
+}
+
+void RealFFTI(const ColumnVector& A, const ColumnVector& B, ColumnVector& U)
+{
+   // inverse of a Fourier transform of a real series
+   Tracer trace("RealFFTI");
+   REPORT
+   const int n21 = A.Nrows();                     // length of arrays
+   if (n21 != B.Nrows() || n21 == 0)
+      Throw(ProgramException("Vector lengths unequal or zero", A, B));
+   const int n2 = n21 - 1;  const int n = 2 * n2;  int i = n2 - 1;
+
+   ColumnVector X(n2), Y(n2);
+   Real* a = A.Store(); Real* b = B.Store();  // first els of A and B
+   Real* an = a + n2;   Real* bn = b + n2;    // last els of A and B
+   Real* x = X.Store(); Real* y = Y.Store();  // first els of X and Y
+   Real* xn = x + i;    Real* yn = y + i;     // last els of X and Y
+
+   Real hn = 0.5 / n2;
+   *x++  = hn * (*a + *an);  *y++  = - hn * (*a - *an);
+   a++; an--; b++; bn--;
+   int j = -1;  i = n2/2;
+   while (i--)
+   {
+      Real c,s; cossin(j--,n,c,s);
+      Real am = *a - *an; Real ap = *a++ + *an--;
+      Real bm = *b - *bn; Real bp = *b++ + *bn--;
+      Real samcbp = s * am - c * bp; Real sbpcam = s * bp + c * am;
+      *x++  =  hn * ( ap + samcbp); *y++  =  - hn * ( bm + sbpcam);
+      *xn-- =  hn * ( ap - samcbp); *yn-- =  - hn * (-bm + sbpcam);
+   }
+   FFT(X,Y,X,Y);             // have done inverting elsewhere
+   U.resize(n); i = n2;
+   x = X.Store(); y = Y.Store(); Real* u = U.Store();
+   while (i--) { *u++ = *x++; *u++ = - *y++; }
+}
+
+void FFT(const ColumnVector& U, const ColumnVector& V,
+   ColumnVector& X, ColumnVector& Y)
+{
+   // from Carl de Boor (1980), Siam J Sci Stat Comput, 1 173-8
+   // but first try Sande and Gentleman
+   Tracer trace("FFT");
+   REPORT
+   const int n = U.Nrows();                     // length of arrays
+   if (n != V.Nrows() || n == 0)
+      Throw(ProgramException("Vector lengths unequal or zero", U, V));
+   if (n == 1) { REPORT X = U; Y = V; return; }
+
+   // see if we can use the newfft routine
+   if (!FFT_Controller::OnlyOldFFT && FFT_Controller::CanFactor(n))
+   {
+      REPORT
+      X = U; Y = V;
+      if ( FFT_Controller::ar_1d_ft(n,X.Store(),Y.Store()) ) return;
+   }
+
+   ColumnVector B = V;
+   ColumnVector A = U;
+   X.resize(n); Y.resize(n);
+   const int nextmx = 8;
+   int prime[8] = { 2,3,5,7,11,13,17,19 };
+   int after = 1; int before = n; int next = 0; bool inzee = true;
+   int now = 0; int b1;             // initialised to keep gnu happy
+
+   do
+   {
+      for (;;)
+      {
+	 if (next < nextmx) { REPORT now = prime[next]; }
+	 b1 = before / now;  if (b1 * now == before) { REPORT break; }
+	 next++; now += 2;
+      }
+      before = b1;
+
+      if (inzee) { REPORT fftstep(A, B, X, Y, after, now, before); }
+      else { REPORT fftstep(X, Y, A, B, after, now, before); }
+
+      inzee = !inzee; after *= now;
+   }
+   while (before != 1);
+
+   if (inzee) { REPORT A.release(); X = A; B.release(); Y = B; }
+}
+
+// Trigonometric transforms
+// see Charles Van Loan (1992) "Computational frameworks for the fast
+// Fourier transform" published by SIAM; section 4.4.
+
+void DCT_II(const ColumnVector& U, ColumnVector& V)
+{
+   // Discrete cosine transform, type II, of a real series
+   Tracer trace("DCT_II");
+   REPORT
+   const int n = U.Nrows();                     // length of arrays
+   const int n2 = n / 2; const int n4 = n * 4;
+   if (n != 2 * n2)
+      Throw(ProgramException("Vector length not multiple of 2", U));
+   ColumnVector A(n);
+   Real* a = A.Store(); Real* b = a + n; Real* u = U.Store();
+   int i = n2;
+   while (i--) { *a++ = *u++; *(--b) = *u++; }
+   ColumnVector X, Y;
+   RealFFT(A, X, Y); A.cleanup();
+   V.resize(n);
+   Real* x = X.Store(); Real* y = Y.Store();
+   Real* v = V.Store(); Real* w = v + n;
+   *v = *x;
+   int k = 0; i = n2;
+   while (i--)
+   {
+      Real c, s; cossin(++k, n4, c, s);
+      Real xi = *(++x); Real yi = *(++y);
+      *(++v) = xi * c + yi * s; *(--w) = xi * s - yi * c;
+   }
+}
+
+void DCT_II_inverse(const ColumnVector& V, ColumnVector& U)
+{
+   // Inverse of discrete cosine transform, type II
+   Tracer trace("DCT_II_inverse");
+   REPORT
+   const int n = V.Nrows();                     // length of array
+   const int n2 = n / 2; const int n4 = n * 4; const int n21 = n2 + 1;
+   if (n != 2 * n2)
+      Throw(ProgramException("Vector length not multiple of 2", V));
+   ColumnVector X(n21), Y(n21);
+   Real* x = X.Store(); Real* y = Y.Store();
+   Real* v = V.Store(); Real* w = v + n;
+   *x = *v; *y = 0.0;
+   int i = n2; int k = 0;
+   while (i--)
+   {
+      Real c, s; cossin(++k, n4, c, s);
+      Real vi = *(++v); Real wi = *(--w);
+      *(++x) = vi * c + wi * s; *(++y) = vi * s - wi * c;
+   }
+   ColumnVector A; RealFFTI(X, Y, A);
+   X.cleanup(); Y.cleanup(); U.resize(n);
+   Real* a = A.Store(); Real* b = a + n; Real* u = U.Store();
+   i = n2;
+   while (i--) { *u++ = *a++; *u++ = *(--b); }
+}
+
+void DST_II(const ColumnVector& U, ColumnVector& V)
+{
+   // Discrete sine transform, type II, of a real series
+   Tracer trace("DST_II");
+   REPORT
+   const int n = U.Nrows();                     // length of arrays
+   const int n2 = n / 2; const int n4 = n * 4;
+   if (n != 2 * n2)
+      Throw(ProgramException("Vector length not multiple of 2", U));
+   ColumnVector A(n);
+   Real* a = A.Store(); Real* b = a + n; Real* u = U.Store();
+   int i = n2;
+   while (i--) { *a++ = *u++; *(--b) = -(*u++); }
+   ColumnVector X, Y;
+   RealFFT(A, X, Y); A.cleanup();
+   V.resize(n);
+   Real* x = X.Store(); Real* y = Y.Store();
+   Real* v = V.Store(); Real* w = v + n;
+   *(--w) = *x;
+   int k = 0; i = n2;
+   while (i--)
+   {
+      Real c, s; cossin(++k, n4, c, s);
+      Real xi = *(++x); Real yi = *(++y);
+      *v++ = xi * s - yi * c; *(--w) = xi * c + yi * s;
+   }
+}
+
+void DST_II_inverse(const ColumnVector& V, ColumnVector& U)
+{
+   // Inverse of discrete sine transform, type II
+   Tracer trace("DST_II_inverse");
+   REPORT
+   const int n = V.Nrows();                     // length of array
+   const int n2 = n / 2; const int n4 = n * 4; const int n21 = n2 + 1;
+   if (n != 2 * n2)
+      Throw(ProgramException("Vector length not multiple of 2", V));
+   ColumnVector X(n21), Y(n21);
+   Real* x = X.Store(); Real* y = Y.Store();
+   Real* v = V.Store(); Real* w = v + n;
+   *x = *(--w); *y = 0.0;
+   int i = n2; int k = 0;
+   while (i--)
+   {
+      Real c, s; cossin(++k, n4, c, s);
+      Real vi = *v++; Real wi = *(--w);
+      *(++x) = vi * s + wi * c; *(++y) = - vi * c + wi * s;
+   }
+   ColumnVector A; RealFFTI(X, Y, A);
+   X.cleanup(); Y.cleanup(); U.resize(n);
+   Real* a = A.Store(); Real* b = a + n; Real* u = U.Store();
+   i = n2;
+   while (i--) { *u++ = *a++; *u++ = -(*(--b)); }
+}
+
+void DCT_inverse(const ColumnVector& V, ColumnVector& U)
+{
+   // Inverse of discrete cosine transform, type I
+   Tracer trace("DCT_inverse");
+   REPORT
+   const int n = V.Nrows()-1;                     // length of transform
+   const int n2 = n / 2; const int n21 = n2 + 1;
+   if (n != 2 * n2)
+      Throw(ProgramException("Vector length not multiple of 2", V));
+   ColumnVector X(n21), Y(n21);
+   Real* x = X.Store(); Real* y = Y.Store(); Real* v = V.Store();
+   Real vi = *v++; *x++ = vi; *y++ = 0.0;
+   Real sum1 = vi / 2.0; Real sum2 = sum1; vi = *v++;
+   int i = n2-1;
+   while (i--)
+   {
+      Real vi2 = *v++; sum1 += vi2 + vi; sum2 += vi2 - vi;
+      *x++ = vi2; vi2 = *v++; *y++ = vi - vi2; vi = vi2;
+   }
+   sum1 += vi; sum2 -= vi;
+   vi = *v; *x = vi; *y = 0.0; vi /= 2.0; sum1 += vi; sum2 += vi;
+   ColumnVector A; RealFFTI(X, Y, A);
+   X.cleanup(); Y.cleanup(); U.resize(n+1);
+   Real* a = A.Store(); Real* b = a + n; Real* u = U.Store(); v = u + n;
+   i = n2; int k = 0; *u++ = sum1 / n2; *v-- = sum2 / n2;
+   while (i--)
+   {
+      Real s = sin(1.5707963267948966192 * (++k) / n2);
+      Real ai = *(++a); Real bi = *(--b);
+      Real bz = (ai - bi) / 4 / s; Real az = (ai + bi) / 2;
+      *u++ = az - bz; *v-- = az + bz;
+   }
+}
+
+void DCT(const ColumnVector& U, ColumnVector& V)
+{
+   // Discrete cosine transform, type I
+   Tracer trace("DCT");
+   REPORT
+   DCT_inverse(U, V);
+   V *= (V.Nrows()-1)/2;
+}
+
+void DST_inverse(const ColumnVector& V, ColumnVector& U)
+{
+   // Inverse of discrete sine transform, type I
+   Tracer trace("DST_inverse");
+   REPORT
+   const int n = V.Nrows()-1;                     // length of transform
+   const int n2 = n / 2; const int n21 = n2 + 1;
+   if (n != 2 * n2)
+      Throw(ProgramException("Vector length not multiple of 2", V));
+   ColumnVector X(n21), Y(n21);
+   Real* x = X.Store(); Real* y = Y.Store(); Real* v = V.Store();
+   Real vi = *(++v); *x++ = 2 * vi; *y++ = 0.0;
+   int i = n2-1;
+   while (i--) { *y++ = *(++v); Real vi2 = *(++v); *x++ = vi2 - vi; vi = vi2; }
+   *x = -2 * vi; *y = 0.0;
+   ColumnVector A; RealFFTI(X, Y, A);
+   X.cleanup(); Y.cleanup(); U.resize(n+1);
+   Real* a = A.Store(); Real* b = a + n; Real* u = U.Store(); v = u + n;
+   i = n2; int k = 0; *u++ = 0.0; *v-- = 0.0;
+   while (i--)
+   {
+      Real s = sin(1.5707963267948966192 * (++k) / n2);
+      Real ai = *(++a); Real bi = *(--b);
+      Real az = (ai + bi) / 4 / s; Real bz = (ai - bi) / 2;
+      *u++ = az - bz; *v-- = az + bz;
+   }
+}
+
+void DST(const ColumnVector& U, ColumnVector& V)
+{
+   // Discrete sine transform, type I
+   Tracer trace("DST");
+   REPORT
+   DST_inverse(U, V);
+   V *= (V.Nrows()-1)/2;
+}
+
+// Two dimensional FFT
+void FFT2(const Matrix& U, const Matrix& V, Matrix& X, Matrix& Y)
+{
+   Tracer trace("FFT2");
+   REPORT
+   int m = U.Nrows(); int n = U.Ncols();
+   if (m != V.Nrows() || n != V.Ncols() || m == 0 || n == 0)
+      Throw(ProgramException("Matrix dimensions unequal or zero", U, V));
+   X = U; Y = V;
+   int i; ColumnVector CVR; ColumnVector CVI;
+   for (i = 1; i <= m; ++i)
+   {
+      FFT(X.Row(i).t(), Y.Row(i).t(), CVR, CVI);
+      X.Row(i) = CVR.t(); Y.Row(i) = CVI.t();
+   }
+   for (i = 1; i <= n; ++i)
+   {
+      FFT(X.Column(i), Y.Column(i), CVR, CVI);
+      X.Column(i) = CVR; Y.Column(i) = CVI;
+   }
+}
+
+void FFT2I(const Matrix& U, const Matrix& V, Matrix& X, Matrix& Y)
+{
+   // Inverse transform
+   Tracer trace("FFT2I");
+   REPORT
+   FFT2(U,-V,X,Y);
+   const Real n = X.Nrows() * X.Ncols(); X /= n; Y /= (-n);
+}
+
+
+#ifdef use_namespace
+}
+#endif
+
+
+///@}
Index: branches/BNC_LM/newmat/hholder.cpp
===================================================================
--- branches/BNC_LM/newmat/hholder.cpp	(revision 3570)
+++ branches/BNC_LM/newmat/hholder.cpp	(revision 3570)
@@ -0,0 +1,376 @@
+/// \ingroup newmat
+///@{
+
+/// \file hholder.cpp
+/// QR related decompositions
+/// QRZ, QRZT decompositions
+/// QR update and extend orthogonal functions
+
+// Copyright (C) 1991,2,3,4: R B Davies
+
+#define WANT_MATH
+//#define WANT_STREAM
+
+#include "include.h"
+
+#include "newmatap.h"
+
+#ifdef use_namespace
+namespace NEWMAT {
+#endif
+
+#ifdef DO_REPORT
+#define REPORT { static ExeCounter ExeCount(__LINE__,16); ++ExeCount; }
+#else
+#define REPORT {}
+#endif
+
+
+/*************************** QR decompositions ***************************/
+
+inline Real square(Real x) { return x*x; }
+
+void QRZT(Matrix& X, LowerTriangularMatrix& L)
+{
+   REPORT
+	 Tracer et("QRZT(1)");
+   int n = X.Ncols(); int s = X.Nrows(); L.resize(s);
+   if (n == 0 || s == 0) { L = 0.0; return; }
+   Real* xi = X.Store(); int k;
+   for (int i=0; i<s; i++)
+   {
+      Real sum = 0.0;
+      Real* xi0=xi; k=n; while(k--) { sum += square(*xi++); }
+      sum = sqrt(sum);
+      if (sum == 0.0)
+      {
+         REPORT
+         k=n; while(k--) { *xi0++ = 0.0; }
+         for (int j=i; j<s; j++) L.element(j,i) = 0.0;
+      }
+      else
+      {
+         L.element(i,i) = sum;
+         Real* xj0=xi0; k=n; while(k--) { *xj0++ /= sum; }
+         for (int j=i+1; j<s; j++)
+         {
+            sum=0.0;
+            xi=xi0; Real* xj=xj0; k=n; while(k--) { sum += *xi++ * *xj++; }
+            xi=xi0; k=n; while(k--) { *xj0++ -= sum * *xi++; }
+            L.element(j,i) = sum;
+         }
+      }
+   }
+}
+
+void QRZT(const Matrix& X, Matrix& Y, Matrix& M)
+{
+   REPORT
+   Tracer et("QRZT(2)");
+   int n = X.Ncols(); int s = X.Nrows(); int t = Y.Nrows();
+   if (Y.Ncols() != n)
+      { Throw(ProgramException("Unequal row lengths",X,Y)); }
+   M.resize(t,s);
+   Real* xi = X.Store(); int k;
+   for (int i=0; i<s; i++)
+   {
+      Real* xj0 = Y.Store(); Real* xi0 = xi;
+      for (int j=0; j<t; j++)
+      {
+         Real sum=0.0;
+         xi=xi0; Real* xj=xj0; k=n; while(k--) { sum += *xi++ * *xj++; }
+         xi=xi0; k=n; while(k--) { *xj0++ -= sum * *xi++; }
+         M.element(j,i) = sum;
+      }
+   }
+}
+
+/*
+void QRZ(Matrix& X, UpperTriangularMatrix& U)
+{
+	Tracer et("QRZ(1)");
+	int n = X.Nrows(); int s = X.Ncols(); U.resize(s);
+	Real* xi0 = X.Store(); int k;
+	for (int i=0; i<s; i++)
+	{
+		Real sum = 0.0;
+		Real* xi = xi0; k=n; while(k--) { sum += square(*xi); xi+=s; }
+		sum = sqrt(sum);
+		U.element(i,i) = sum;
+		if (sum==0.0) Throw(SingularException(U));
+		Real* xj0=xi0; k=n; while(k--) { *xj0 /= sum; xj0+=s; }
+		xj0 = xi0;
+		for (int j=i+1; j<s; j++)
+		{
+			sum=0.0;
+			xi=xi0; k=n; xj0++; Real* xj=xj0;
+			while(k--) { sum += *xi * *xj; xi+=s; xj+=s; }
+			xi=xi0; k=n; xj=xj0;
+			while(k--) { *xj -= sum * *xi; xj+=s; xi+=s; }
+			U.element(i,j) = sum;
+		}
+		xi0++;
+	}
+}
+*/
+
+void QRZ(Matrix& X, UpperTriangularMatrix& U)
+{
+   REPORT
+   Tracer et("QRZ(1)");
+   int n = X.Nrows(); int s = X.Ncols(); U.resize(s); U = 0.0;
+   if (n == 0 || s == 0) return;
+   Real* xi0 = X.Store(); Real* u0 = U.Store(); Real* u;
+   int j, k; int J = s; int i = s;
+   while (i--)
+   {
+      Real* xj0 = xi0; Real* xi = xi0; k = n;
+      if (k) for (;;)
+      {
+         u = u0; Real Xi = *xi; Real* xj = xj0;
+         j = J; while(j--) *u++ += Xi * *xj++;
+         if (!(--k)) break;
+         xi += s; xj0 += s;
+      }
+
+      Real sum = sqrt(*u0); *u0 = sum; u = u0+1;
+      if (sum == 0.0)
+      {
+         REPORT
+         j = J - 1; while(j--) *u++ = 0.0;
+
+         xj0 = xi0++; k = n;
+         if (k) for (;;)
+         {
+            *xj0 = 0.0;
+            if (!(--k)) break;
+	          xj0 += s;
+         }
+         u0 += J--;
+      }
+      else
+      {
+         int J1 = J-1; j = J1; while(j--) *u++ /= sum;
+
+         xj0 = xi0; xi = xi0++; k = n;
+         if (k) for (;;)
+         {
+            u = u0+1; Real Xi = *xi; Real* xj = xj0;
+            Xi /= sum; *xj++ = Xi;
+            j = J1; while(j--) *xj++ -= *u++ * Xi;
+            if (!(--k)) break;
+	          xi += s; xj0 += s;
+         }
+         u0 += J--;
+      }
+   }
+}
+
+void QRZ(const Matrix& X, Matrix& Y, Matrix& M)
+{
+   REPORT
+   Tracer et("QRZ(2)");
+   int n = X.Nrows(); int s = X.Ncols(); int t = Y.Ncols();
+   if (Y.Nrows() != n)
+      { Throw(ProgramException("Unequal column lengths",X,Y)); }
+   M.resize(s,t); M = 0;Real* m0 = M.Store(); Real* m;
+   Real* xi0 = X.Store();
+   int j, k; int i = s;
+   while (i--)
+   {
+      Real* xj0 = Y.Store(); Real* xi = xi0; k = n;
+      if (k) for (;;)
+      {
+         m = m0; Real Xi = *xi; Real* xj = xj0;
+         j = t; while(j--) *m++ += Xi * *xj++;
+         if (!(--k)) break;
+         xi += s; xj0 += t;
+      }
+
+      xj0 = Y.Store(); xi = xi0++; k = n;
+      if (k) for (;;)
+      {
+         m = m0; Real Xi = *xi; Real* xj = xj0;
+         j = t; while(j--) *xj++ -= *m++ * Xi;
+         if (!(--k)) break;
+         xi += s; xj0 += t;
+      }
+      m0 += t;
+   }
+}
+
+/*
+
+void QRZ(const Matrix& X, Matrix& Y, Matrix& M)
+{
+	Tracer et("QRZ(2)");
+	int n = X.Nrows(); int s = X.Ncols(); int t = Y.Ncols();
+	if (Y.Nrows() != n)
+	{ Throw(ProgramException("Unequal column lengths",X,Y)); }
+	M.resize(s,t);
+	Real* xi0 = X.Store(); int k;
+	for (int i=0; i<s; i++)
+	{
+		Real* xj0 = Y.Store();
+		for (int j=0; j<t; j++)
+		{
+			Real sum=0.0;
+			Real* xi=xi0; Real* xj=xj0; k=n;
+			while(k--) { sum += *xi * *xj; xi+=s; xj+=t; }
+			xi=xi0; k=n; xj=xj0++;
+			while(k--) { *xj -= sum * *xi; xj+=t; xi+=s; }
+			M.element(i,j) = sum;
+		}
+		xi0++;
+	}
+}
+*/
+
+void updateQRZT(Matrix& X, LowerTriangularMatrix& L)
+{
+   REPORT
+	 Tracer et("updateQRZT");
+   int n = X.Ncols(); int s = X.Nrows();
+   if (s != L.Nrows())
+      Throw(ProgramException("Incompatible dimensions",X,L)); 
+   if (n == 0 || s == 0) return;
+   Real* xi = X.Store(); int k;
+   for (int i=0; i<s; i++)
+   {
+      Real r = L.element(i,i); 
+      Real sum = 0.0;
+      Real* xi0=xi; k=n; while(k--) { sum += square(*xi++); }
+      sum = sqrt(sum + square(r));
+      if (sum == 0.0)
+      {
+         REPORT
+         k=n; while(k--) { *xi0++ = 0.0; }
+         for (int j=i; j<s; j++) L.element(j,i) = 0.0;
+      }
+      else
+      {
+         Real frs = fabs(r) + sum;
+         Real a0 = sqrt(frs / sum); Real alpha = a0 / frs;
+         if (r <= 0) { REPORT L.element(i,i) = sum; alpha = -alpha; }
+         else { REPORT L.element(i,i) = -sum; }
+         Real* xj0=xi0; k=n; while(k--) { *xj0++ *= alpha; }
+         for (int j=i+1; j<s; j++)
+         {
+            sum = 0.0;
+            xi=xi0; Real* xj=xj0; k=n; while(k--) { sum += *xi++ * *xj++; }
+            sum += a0 * L.element(j,i);
+            xi=xi0; k=n; while(k--) { *xj0++ -= sum * *xi++; }
+            L.element(j,i) -= sum * a0;
+         }
+      }
+   }
+}
+
+void updateQRZ(Matrix& X, UpperTriangularMatrix& U)
+{
+   REPORT
+   Tracer et("updateQRZ");
+   int n = X.Nrows(); int s = X.Ncols();
+   if (s != U.Ncols())
+      Throw(ProgramException("Incompatible dimensions",X,U));
+   if (n == 0 || s == 0) return; 
+   Real* xi0 = X.Store(); Real* u0 = U.Store(); Real* u;
+   RowVector V(s); Real* v0 = V.Store(); Real* v; V = 0.0;
+   int j, k; int J = s; int i = s;
+   while (i--)
+   {
+      Real* xj0 = xi0; Real* xi = xi0; k = n;
+      if (k) for (;;)
+      {
+         v = v0; Real Xi = *xi; Real* xj = xj0;
+         j = J; while(j--) *v++ += Xi * *xj++;
+         if (!(--k)) break;
+         xi += s; xj0 += s;
+      }
+
+      Real r = *u0;
+      Real sum = sqrt(*v0 + square(r));
+      
+      if (sum == 0.0)
+      {
+         REPORT
+         u = u0; v = v0;
+         j = J; while(j--) { *u++ = 0.0; *v++ = 0.0; }
+         xj0 = xi0++; k = n;
+         if (k) for (;;)
+         {
+            *xj0 = 0.0;
+            if (!(--k)) break;
+	          xj0 += s;
+         }
+         u0 += J--;
+      }
+      else
+      {
+         Real frs = fabs(r) + sum;
+         Real a0 = sqrt(frs / sum); Real alpha = a0 / frs;
+         if (r <= 0) { REPORT alpha = -alpha; *u0 = sum; }
+         else { REPORT *u0 = -sum; }
+      
+         j = J - 1; v = v0 + 1; u = u0 + 1;     
+         while (j--)
+            { *v = a0 * *u + alpha * *v; *u -= a0 * *v; ++v; ++u; }
+
+         xj0 = xi0; xi = xi0++; k = n;
+         if (k) for (;;)
+         {
+            v = v0 + 1; Real Xi = *xi; Real* xj = xj0;
+            Xi *= alpha; *xj++ = Xi;
+            j = J - 1; while(j--) *xj++ -= *v++ * Xi;
+            if (!(--k)) break;
+	          xi += s; xj0 += s;
+         }
+         
+         j = J; v = v0;
+         while (j--) *v++ = 0.0;
+         
+         u0 += J--;
+      }
+   }
+}
+
+// Matrix A's first n columns are orthonormal
+// so A.Columns(1,n).t() * A.Columns(1,n) is the identity matrix.
+// Fill out the remaining columns of A to make them orthonormal
+// so A.t() * A is the identity matrix 
+void extend_orthonormal(Matrix& A, int n)
+{
+   REPORT
+   Tracer et("extend_orthonormal");
+   int nr = A.nrows(); int nc = A.ncols();
+   if (nc > nr) Throw(IncompatibleDimensionsException(A));
+   if (n > nc) Throw(IncompatibleDimensionsException(A));
+   ColumnVector SSR;
+   { Matrix A1 = A.Columns(1,n); SSR = A1.sum_square_rows(); }
+   for (int i = n; i < nc; ++i)
+   {
+      // pick row with smallest SSQ
+      int k; SSR.minimum1(k);
+      // orthogonalise column with 1 at element k, 0 elsewhere
+      // next line is rather inefficient
+      ColumnVector X = - A.Columns(1, i) * A.SubMatrix(k, k, 1, i).t();
+      X(k) += 1.0;
+      // normalise
+      X /= sqrt(X.SumSquare());
+      // update row sums of squares
+      for (k = 1; k <= nr; ++k) SSR(k) += square(X(k));
+      // load new column into matrix
+      A.Column(i+1) = X;
+   }
+}
+   
+   
+
+
+
+#ifdef use_namespace
+}
+#endif
+
+
+///@}
Index: branches/BNC_LM/newmat/include.h
===================================================================
--- branches/BNC_LM/newmat/include.h	(revision 3570)
+++ branches/BNC_LM/newmat/include.h	(revision 3570)
@@ -0,0 +1,349 @@
+/// \defgroup rbd_common RBD common library 
+///@{
+
+/// \file include.h
+/// Set options and and details of include files.
+
+#ifndef INCLUDE_LIB
+#define INCLUDE_LIB
+
+//#define use_namespace                   // define name spaces
+
+#define SETUP_C_SUBSCRIPTS              // allow element access via A[i][j]
+
+//#define OPT_COMPATIBLE                  // for use with opt++
+
+// Activate just one of the following 3 statements
+
+//#define SimulateExceptions              // use simulated exceptions
+#define UseExceptions                   // use C++ exceptions
+//#define DisableExceptions               // do not use exceptions
+
+
+//#define TEMPS_DESTROYED_QUICKLY         // for compilers that delete
+					// temporaries too quickly
+
+//#define TEMPS_DESTROYED_QUICKLY_R       // the same thing but applied
+					// to return from functions only
+
+//#define DO_FREE_CHECK                   // check news and deletes balance
+
+#define USING_DOUBLE                    // elements of type double
+//#define USING_FLOAT                   // elements of type float
+
+#define bool_LIB 0                      // for compatibility with my older libraries
+
+//#define ios_format_flags ios::fmtflags  // for Gnu 3 and Intel for Linux
+
+
+//#define _STANDARD_                    // using standard library
+
+//#define use_float_h                   // use float.h for precision data
+
+
+//#define HAS_INT64                     // if unsigned _int64 is recognised
+                                        // used by newran03
+                                        
+// comment out next line if Exception causes a problem
+#define TypeDefException
+
+//*********************** end of options set by user ********************
+
+
+// for Gnu C++ version 3
+#if defined __GNUG__ && __GNUG__ >= 3
+   #define _STANDARD_                   // use standard library
+   #define ios_format_flags ios::fmtflags
+#endif
+
+// for Intel C++ for Linux
+#if defined __ICC
+   #define _STANDARD_                   // use standard library
+   #define ios_format_flags ios::fmtflags
+#endif
+
+// for Microsoft Visual C++ 7 and above (and Intel simulating these)
+#if defined _MSC_VER && _MSC_VER >= 1300
+   #define _STANDARD_                   // use standard library
+#endif
+
+
+#ifdef _STANDARD_                       // using standard library
+   #include <cstdlib>
+   #if defined _MSC_VER && _MSC_VER == 1200
+      #include <limits>              // for VC++6
+   #endif
+   #ifdef WANT_STREAM
+      #include <iostream>
+      #include <iomanip>
+   #endif
+   #ifdef WANT_MATH
+      #include <cmath>
+   #endif
+   #ifdef WANT_STRING
+      #include <cstring>
+   #endif
+   #ifdef WANT_TIME
+      #include <ctime>
+   #endif
+   #ifdef WANT_FSTREAM
+      #include <fstream>
+   #endif
+   ////using namespace std;
+   #define USE_STD_NAMESPACE
+#else
+
+#define DEFAULT_HEADER                  // use AT&T style header
+                                        // if no other compiler is recognised
+
+#ifdef _MSC_VER                         // Microsoft
+   #include <stdlib.h>
+
+//   reactivate these statements to run under MSC version 7.0
+//   typedef int jmp_buf[9];
+//   extern "C"
+//   {
+//      int __cdecl setjmp(jmp_buf);
+//      void __cdecl longjmp(jmp_buf, int);
+//   }
+
+   #ifdef WANT_STREAM
+      #include <iostream.h>
+      #include <iomanip.h>
+   #endif
+   #ifdef WANT_MATH
+      #include <math.h>
+      #include <float.h>
+   #endif
+   #ifdef WANT_STRING
+      #include <string.h>
+   #endif
+   #ifdef WANT_TIME
+      #include <time.h>
+   #endif
+   #ifdef WANT_FSTREAM
+      #include <fstream.h>
+   #endif
+   #undef DEFAULT_HEADER
+#endif
+
+#ifdef __ZTC__                          // Zortech
+   #include <stdlib.h>
+   #ifdef WANT_STREAM
+      #include <iostream.hpp>
+      #include <iomanip.hpp>
+      #define flush ""                  // not defined in iomanip?
+   #endif
+   #ifdef WANT_MATH
+      #include <math.h>
+      #include <float.h>
+   #endif
+   #ifdef WANT_STRING
+      #include <string.h>
+   #endif
+   #ifdef WANT_TIME
+      #include <time.h>
+   #endif
+   #ifdef WANT_FSTREAM
+      #include <fstream.h>
+   #endif
+   #undef DEFAULT_HEADER
+#endif
+
+#if defined __BCPLUSPLUS__ || defined __TURBOC__  // Borland or Turbo
+   #include <stdlib.h>
+   #ifdef WANT_STREAM
+      #include <iostream.h>
+      #include <iomanip.h>
+   #endif
+   #ifdef WANT_MATH
+      #include <math.h>
+      #include <float.h>            // Borland has both float and values
+                                    // but values.h returns +INF for
+                                    // MAXDOUBLE in BC5
+   #endif
+   #ifdef WANT_STRING
+      #include <string.h>
+   #endif
+   #ifdef WANT_TIME
+      #include <time.h>
+   #endif
+   #ifdef WANT_FSTREAM
+      #include <fstream.h>
+   #endif
+   #undef DEFAULT_HEADER
+#endif
+
+#ifdef __GNUG__                         // Gnu C++
+   #include <stdlib.h>
+   #ifdef WANT_STREAM
+      #include <iostream.h>
+      #include <iomanip.h>
+   #endif
+   #ifdef WANT_MATH
+      #include <math.h>
+      #include <float.h>
+   #endif
+   #ifdef WANT_STRING
+      #include <string.h>
+   #endif
+   #ifdef WANT_TIME
+      #include <time.h>
+   #endif
+   #ifdef WANT_FSTREAM
+      #include <fstream.h>
+   #endif
+   #undef DEFAULT_HEADER
+#endif
+
+#ifdef __WATCOMC__                      // Watcom C/C++
+   #include <stdlib.h>
+   #ifdef WANT_STREAM
+      #include <iostream.h>
+      #include <iomanip.h>
+   #endif
+   #ifdef WANT_MATH
+      #include <math.h>
+      #include <float.h>
+   #endif
+   #ifdef WANT_STRING
+      #include <string.h>
+   #endif
+   #ifdef WANT_TIME
+      #include <time.h>
+   #endif
+   #ifdef WANT_FSTREAM
+      #include <fstream.h>
+   #endif
+   #undef DEFAULT_HEADER
+#endif
+
+
+#ifdef macintosh                        // MPW C++ on the Mac
+#include <stdlib.h>
+#ifdef WANT_STREAM
+#include <iostream.h>
+#include <iomanip.h>
+#endif
+#ifdef WANT_MATH
+#include <float.h>
+#include <math.h>
+#endif
+#ifdef WANT_STRING
+#include <string.h>
+#endif
+#ifdef WANT_TIME
+#include <time.h>
+#endif
+#ifdef WANT_FSTREAM
+#include <fstream.h>
+#endif
+#undef DEFAULT_HEADER
+#endif
+
+#ifdef use_float_h                      // use float.h for precision values
+#include <stdlib.h>
+#ifdef WANT_STREAM
+#include <iostream.h>
+#include <iomanip.h>
+#endif
+#ifdef WANT_MATH
+#include <float.h>
+#include <math.h>
+#endif
+#ifdef WANT_STRING
+#include <string.h>
+#endif
+#ifdef WANT_TIME
+#include <time.h>
+#endif
+#ifdef WANT_FSTREAM
+#include <fstream.h>
+#endif
+#undef DEFAULT_HEADER
+#endif
+
+
+#ifdef DEFAULT_HEADER                   // for example AT&T
+#define ATandT
+#include <stdlib.h>
+#ifdef WANT_STREAM
+#include <iostream.h>
+#include <iomanip.h>
+#endif
+#ifdef WANT_MATH
+#include <math.h>
+#define SystemV                         // use System V
+#include <values.h>
+#endif
+#ifdef WANT_STRING
+#include <string.h>
+#endif
+#ifdef WANT_TIME
+#include <time.h>
+#endif
+#ifdef WANT_FSTREAM
+#include <fstream.h>
+#endif
+#endif                                  // DEFAULT_HEADER
+
+#endif                                  // _STANDARD_
+
+#ifdef use_namespace
+namespace RBD_COMMON {
+#endif
+
+
+#ifdef USING_FLOAT                      // set precision type to float
+typedef float Real;
+typedef double long_Real;
+#endif
+
+#ifdef USING_DOUBLE                     // set precision type to double
+typedef double Real;
+typedef long double long_Real;
+#endif
+
+
+// This is for (very old) compilers that do not have bool automatically defined
+
+#ifndef bool_LIB
+#define bool_LIB 0
+
+class bool
+{
+	int value;
+public:
+	bool(const int b) { value = b ? 1 : 0; }
+	bool(const void* b) { value = b ? 1 : 0; }
+	bool() {}
+	operator int() const { return value; }
+	int operator!() const { return !value; }
+};
+
+
+const bool true = 1;
+const bool false = 0;
+
+#endif
+
+
+#ifdef use_namespace
+}
+#endif
+
+
+#ifdef use_namespace
+namespace RBD_COMMON {}
+namespace RBD_LIBRARIES                 // access all my libraries
+{
+   using namespace RBD_COMMON;
+}
+#endif
+
+
+#endif
+
+
+///@}
+
Index: branches/BNC_LM/newmat/jacobi.cpp
===================================================================
--- branches/BNC_LM/newmat/jacobi.cpp	(revision 3570)
+++ branches/BNC_LM/newmat/jacobi.cpp	(revision 3570)
@@ -0,0 +1,130 @@
+/// \ingroup newmat
+///@{
+
+/// \file jacobi.cpp
+/// Eigen value decomposition using Jacobi method.
+
+
+// Copyright (C) 1991,2,3,4: R B Davies
+
+
+//#define WANT_STREAM
+
+
+#define WANT_MATH
+
+#include "include.h"
+#include "newmatap.h"
+#include "precisio.h"
+#include "newmatrm.h"
+
+#ifdef use_namespace
+namespace NEWMAT {
+#endif
+
+#ifdef DO_REPORT
+#define REPORT { static ExeCounter ExeCount(__LINE__,18); ++ExeCount; }
+#else
+#define REPORT {}
+#endif
+
+
+void Jacobi(const SymmetricMatrix& X, DiagonalMatrix& D, SymmetricMatrix& A,
+   Matrix& V, bool eivec)
+{
+   Real epsilon = FloatingPointPrecision::Epsilon();
+   Tracer et("Jacobi");
+   REPORT
+   int n = X.Nrows(); DiagonalMatrix B(n), Z(n); D.resize(n); A = X;
+   if (eivec) { REPORT V.resize(n,n); D = 1.0; V = D; }
+   B << A; D = B; Z = 0.0; A.Inject(Z);
+   bool converged = false;
+   for (int i=1; i<=50; i++)
+   {
+      Real sm=0.0; Real* a = A.Store(); int p = A.Storage();
+      while (p--) sm += fabs(*a++);            // have previously zeroed diags
+      if (sm==0.0) { REPORT converged = true; break; }
+      Real tresh = (i<4) ? 0.2 * sm / square(n) : 0.0; a = A.Store();
+      for (p = 0; p < n; p++)
+      {
+         Real* ap1 = a + (p*(p+1))/2;
+         Real& zp = Z.element(p); Real& dp = D.element(p);
+         for (int q = p+1; q < n; q++)
+         {
+            Real* ap = ap1; Real* aq = a + (q*(q+1))/2;
+            Real& zq = Z.element(q); Real& dq = D.element(q);
+            Real& apq = A.element(q,p);
+            Real g = 100 * fabs(apq); Real adp = fabs(dp); Real adq = fabs(dq);
+
+            if (i>4 && g < epsilon*adp && g < epsilon*adq) { REPORT apq = 0.0; }
+            else if (fabs(apq) > tresh)
+            {
+               REPORT
+               Real t; Real h = dq - dp; Real ah = fabs(h);
+               if (g < epsilon*ah) { REPORT t = apq / h; }
+               else
+               {
+                  REPORT
+                  Real theta = 0.5 * h / apq;
+                  t = 1.0 / ( fabs(theta) + sqrt(1.0 + square(theta)) );
+                  if (theta<0.0) { REPORT t = -t; }
+               }
+               Real c = 1.0 / sqrt(1.0 + square(t)); Real s = t * c;
+               Real tau = s / (1.0 + c); h = t * apq;
+               zp -= h; zq += h; dp -= h; dq += h; apq = 0.0;
+               int j = p;
+               while (j--)
+               {
+                  g = *ap; h = *aq;
+                  *ap++ = g-s*(h+g*tau); *aq++ = h+s*(g-h*tau);
+               }
+               int ip = p+1; j = q-ip; ap += ip++; aq++;
+               while (j--)
+               {
+                  g = *ap; h = *aq;
+                  *ap = g-s*(h+g*tau); *aq++ = h+s*(g-h*tau);
+                  ap += ip++;
+               }
+               if (q < n-1)             // last loop is non-empty
+               {
+                  int iq = q+1; j = n-iq; ap += ip++; aq += iq++;
+                  for (;;)
+                  {
+                     g = *ap; h = *aq;
+                     *ap = g-s*(h+g*tau); *aq = h+s*(g-h*tau);
+                     if (!(--j)) break;
+                     ap += ip++; aq += iq++;
+                  }
+               }
+               if (eivec)
+               {
+                  REPORT
+                  RectMatrixCol VP(V,p); RectMatrixCol VQ(V,q);
+                  Rotate(VP, VQ, tau, s);
+               }
+            }
+         }
+      }
+      B = B + Z; D = B; Z = 0.0;
+   }
+   if (!converged) Throw(ConvergenceException(X));
+   if (eivec) SortSV(D, V, true);
+   else SortAscending(D);
+}
+
+void Jacobi(const SymmetricMatrix& X, DiagonalMatrix& D)
+{ REPORT SymmetricMatrix A; Matrix V; Jacobi(X,D,A,V,false); }
+
+void Jacobi(const SymmetricMatrix& X, DiagonalMatrix& D, SymmetricMatrix& A)
+{ REPORT Matrix V; Jacobi(X,D,A,V,false); }
+
+void Jacobi(const SymmetricMatrix& X, DiagonalMatrix& D, Matrix& V)
+{ REPORT SymmetricMatrix A; Jacobi(X,D,A,V,true); }
+
+
+#ifdef use_namespace
+}
+#endif
+
+
+///@}
Index: branches/BNC_LM/newmat/myexcept.cpp
===================================================================
--- branches/BNC_LM/newmat/myexcept.cpp	(revision 3570)
+++ branches/BNC_LM/newmat/myexcept.cpp	(revision 3570)
@@ -0,0 +1,499 @@
+/// \ingroup rbd_common
+///@{
+
+/// \file myexcept.cpp
+/// Exception handler.
+/// The low level classes for
+/// - my exception class hierarchy
+/// - the functions needed for my simulated exceptions
+/// - the Tracer mechanism
+/// - routines for checking whether new and delete calls are balanced
+///
+
+// Copyright (C) 1993,4,6: R B Davies
+
+
+#define WANT_STREAM                    // include.h will get stream fns
+#define WANT_STRING
+
+#include "include.h"                   // include standard files
+
+
+#include "myexcept.h"                  // for exception handling
+
+#ifdef use_namespace
+namespace RBD_COMMON {
+#endif
+
+#ifdef USE_STD_NAMESPACE
+using namespace std;
+#endif
+
+//#define REG_DEREG                    // for print out uses of new/delete
+//#define CLEAN_LIST                   // to print entries being added to
+                                       // or deleted from cleanup list
+
+#ifdef SimulateExceptions
+
+void Throw()
+{
+   for (Janitor* jan = JumpBase::jl->janitor; jan; jan = jan->NextJanitor)
+      jan->CleanUp();
+   JumpItem* jx = JumpBase::jl->ji;    // previous jumpbase;
+   if ( !jx ) { Terminate(); }         // jl was initial JumpItem
+   JumpBase::jl = jx;                  // drop down a level; cannot be in front
+                                       // of previous line
+   Tracer::last = JumpBase::jl->trace;
+   longjmp(JumpBase::jl->env, 1);
+}
+
+#endif                                 // end of simulate exceptions
+
+
+unsigned long BaseException::Select;
+char* BaseException::what_error;
+int BaseException::SoFar;
+int BaseException::LastOne;
+
+BaseException::BaseException(const char* a_what)
+{
+   Select++; SoFar = 0;
+   if (!what_error)                   // make space for exception message
+   {
+      LastOne = 511;
+      what_error = new char[512];
+      if (!what_error)                // fail to make space
+      {
+         LastOne = 0;
+         what_error = (char *)"No heap space for exception message\n";
+      }
+   }
+   AddMessage("\n\nAn exception has been thrown\n");
+   AddMessage(a_what);
+   if (a_what) Tracer::AddTrace();
+}
+
+void BaseException::AddMessage(const char* a_what)
+{
+   if (a_what)
+   {
+      int l = strlen(a_what); int r = LastOne - SoFar;
+      if (l < r) { strcpy(what_error+SoFar, a_what); SoFar += l; }
+      else if (r > 0)
+      {
+         strncpy(what_error+SoFar, a_what, r);
+         what_error[LastOne] = 0;
+         SoFar = LastOne;
+      }
+   }
+}
+
+void BaseException::AddInt(int value)
+{
+   bool negative;
+   if (value == 0) { AddMessage("0"); return; }
+   else if (value < 0) { value = -value; negative = true; }
+   else negative = false;
+   int n = 0; int v = value;        // how many digits will we need?
+   while (v > 0) { v /= 10; n++; }
+   if (negative) n++;
+   if (LastOne-SoFar < n) { AddMessage("***"); return; }
+
+   SoFar += n; n = SoFar; what_error[n] = 0;
+   while (value > 0)
+   {
+      int nv = value / 10; int rm = value - nv * 10;  value = nv;
+      what_error[--n] = (char)(rm + '0');
+   }
+   if (negative) what_error[--n] = '-';
+   return;
+}
+
+void Tracer::PrintTrace()
+{
+   cout << "\n";
+   for (Tracer* et = last; et; et=et->previous)
+      cout << "  * " << et->entry << "\n";
+}
+
+void Tracer::AddTrace()
+{
+   if (last)
+   {
+      BaseException::AddMessage("Trace: ");
+      BaseException::AddMessage(last->entry);
+      for (Tracer* et = last->previous; et; et=et->previous)
+      {
+         BaseException::AddMessage("; ");
+         BaseException::AddMessage(et->entry);
+      }
+      BaseException::AddMessage(".\n");
+   }
+}
+
+#ifdef SimulateExceptions
+
+
+Janitor::Janitor()
+{
+   if (do_not_link)
+   {
+      do_not_link = false; NextJanitor = 0; OnStack = false;
+#ifdef CLEAN_LIST
+      cout << "Not added to clean-list " << (unsigned long)this << "\n";
+#endif
+   }
+   else
+   {
+      OnStack = true;
+#ifdef CLEAN_LIST
+      cout << "Add to       clean-list " << (unsigned long)this << "\n";
+#endif
+      NextJanitor = JumpBase::jl->janitor; JumpBase::jl->janitor=this;
+   }
+}
+
+Janitor::~Janitor()
+{
+   // expect the item to be deleted to be first on list
+   // but must be prepared to search list
+   if (OnStack)
+   {
+#ifdef CLEAN_LIST
+      cout << "Delete from  clean-list " << (unsigned long)this << "\n";
+#endif
+      Janitor* lastjan = JumpBase::jl->janitor;
+      if (this == lastjan) JumpBase::jl->janitor = NextJanitor;
+      else
+      {
+	 for (Janitor* jan = lastjan->NextJanitor; jan;
+	    jan = lastjan->NextJanitor)
+	 {
+	    if (jan==this)
+	       { lastjan->NextJanitor = jan->NextJanitor; return; }
+	    lastjan=jan;
+	 }
+
+	 Throw(BaseException(
+"Cannot resolve memory linked list\nSee notes in myexcept.cpp for details\n"
+         ));
+
+
+// This message occurs when a call to ~Janitor() occurs, apparently
+// without a corresponding call to Janitor(). This could happen if my
+// way of deciding whether a constructor is being called by new
+// fails.
+
+// It may happen if you are using my simulated exceptions and also have
+// your compiler s exceptions turned on.
+
+// It can also happen if you have a class derived from Janitor
+// which does not include a copy constructor [ eg X(const &X) ].
+// Possibly also if delete is applied an object on the stack (ie not
+// called by new). Otherwise, it is a bug in myexcept or your compiler.
+// If you do not #define TEMPS_DESTROYED_QUICKLY you will get this
+// error with Microsoft C 7.0. There are probably situations where
+// you will get this when you do define TEMPS_DESTROYED_QUICKLY. This
+// is a bug in MSC. Beware of "operator" statements for defining
+// conversions; particularly for converting from a Base class to a
+// Derived class.
+
+// You may get away with simply deleting this error message and Throw
+// statement if you can not find a better way of overcoming the
+// problem. In any case please tell me if you get this error message,
+// particularly for compilers apart from Microsoft C 7.0.
+
+
+      }
+   }
+}
+
+JumpItem* JumpBase::jl;              // will be set to zero
+jmp_buf JumpBase::env;
+bool Janitor::do_not_link;           // will be set to false
+
+
+int JanitorInitializer::ref_count;
+
+JanitorInitializer::JanitorInitializer()
+{
+   if (ref_count++ == 0) new JumpItem;
+                                    // need JumpItem at head of list
+}
+
+#endif                              // end of SimulateExceptions
+
+Tracer* Tracer::last;               // will be set to zero
+
+
+void Terminate()
+{
+   cout << "\n\nThere has been an exception with no handler - exiting";
+   const char* what = BaseException::what();
+   if (what) cout << what << "\n";
+   exit(1);
+}
+
+
+
+#ifdef DO_FREE_CHECK
+// Routines for tracing whether new and delete calls are balanced
+
+FreeCheckLink::FreeCheckLink() : next(FreeCheck::next)
+   { FreeCheck::next = this; }
+
+FCLClass::FCLClass(void* t, char* name) : ClassName(name) { ClassStore=t; }
+
+FCLRealArray::FCLRealArray(void* t, char* o, int s)
+  : Operation(o), size(s) { ClassStore=t; }
+
+FCLIntArray::FCLIntArray(void* t, char* o, int s)
+  : Operation(o), size(s) { ClassStore=t; }
+
+FreeCheckLink* FreeCheck::next;
+int FreeCheck::BadDelete;
+
+void FCLClass::Report()
+{ cout << "   " << ClassName << "   " << (unsigned long)ClassStore << "\n"; }
+
+void FCLRealArray::Report()
+{
+   cout << "   " << Operation << "   " << (unsigned long)ClassStore <<
+      "   " << size << "\n";
+}
+
+void FCLIntArray::Report()
+{
+   cout << "   " << Operation << "   " << (unsigned long)ClassStore <<
+      "   " << size << "\n";
+}
+
+void FreeCheck::Register(void* t, char* name)
+{
+   FCLClass* f = new FCLClass(t,name);
+   if (!f) { cout << "Out of memory in FreeCheck\n"; exit(1); }
+#ifdef REG_DEREG
+   cout << "Registering   " << name << "   " << (unsigned long)t << "\n";
+#endif
+}
+
+void FreeCheck::RegisterR(void* t, char* o, int s)
+{
+   FCLRealArray* f = new FCLRealArray(t,o,s);
+   if (!f) { cout << "Out of memory in FreeCheck\n"; exit(1); }
+#ifdef REG_DEREG
+   cout << o << "   " << s << "   " << (unsigned long)t << "\n";
+#endif
+}
+
+void FreeCheck::RegisterI(void* t, char* o, int s)
+{
+   FCLIntArray* f = new FCLIntArray(t,o,s);
+   if (!f) { cout << "Out of memory in FreeCheck\n"; exit(1); }
+#ifdef REG_DEREG
+   cout << o << "   " << s << "   " << (unsigned long)t << "\n";
+#endif
+}
+
+void FreeCheck::DeRegister(void* t, char* name)
+{
+   FreeCheckLink* last = 0;
+#ifdef REG_DEREG
+   cout << "Deregistering " << name << "   " << (unsigned long)t << "\n";
+#endif
+   for (FreeCheckLink* fcl = next; fcl; fcl = fcl->next)
+   {
+      if (fcl->ClassStore==t)
+      {
+	 if (last) last->next = fcl->next; else next = fcl->next;
+	 delete fcl; return;
+      }
+      last = fcl;
+   }
+   cout << "\nRequest to delete non-existent object of class and location:\n";
+   cout << "   " << name << "   " << (unsigned long)t << "\n";
+   BadDelete++;
+   Tracer::PrintTrace();
+   cout << "\n";
+}
+
+void FreeCheck::DeRegisterR(void* t, char* o, int s)
+{
+   FreeCheckLink* last = 0;
+#ifdef REG_DEREG
+   cout << o << "   " << s << "   " << (unsigned long)t << "\n";
+#endif
+   for (FreeCheckLink* fcl = next; fcl; fcl = fcl->next)
+   {
+      if (fcl->ClassStore==t)
+      {
+	 if (last) last->next = fcl->next; else next = fcl->next;
+	 if (s >= 0 && ((FCLRealArray*)fcl)->size != s)
+	 {
+	    cout << "\nArray sizes do not agree:\n";
+	    cout << "   " << o << "   " << (unsigned long)t
+	       << "   " << ((FCLRealArray*)fcl)->size << "   " << s << "\n";
+	    Tracer::PrintTrace();
+	    cout << "\n";
+	 }
+	 delete fcl; return;
+      }
+      last = fcl;
+   }
+   cout << "\nRequest to delete non-existent real array:\n";
+   cout << "   " << o << "   " << (unsigned long)t << "   " << s << "\n";
+   BadDelete++;
+   Tracer::PrintTrace();
+   cout << "\n";
+}
+
+void FreeCheck::DeRegisterI(void* t, char* o, int s)
+{
+   FreeCheckLink* last = 0;
+#ifdef REG_DEREG
+   cout << o << "   " << s << "   " << (unsigned long)t << "\n";
+#endif
+   for (FreeCheckLink* fcl = next; fcl; fcl = fcl->next)
+   {
+      if (fcl->ClassStore==t)
+      {
+	 if (last) last->next = fcl->next; else next = fcl->next;
+	 if (s >= 0 && ((FCLIntArray*)fcl)->size != s)
+	 {
+	    cout << "\nArray sizes do not agree:\n";
+	    cout << "   " << o << "   " << (unsigned long)t
+	       << "   " << ((FCLIntArray*)fcl)->size << "   " << s << "\n";
+	    Tracer::PrintTrace();
+	    cout << "\n";
+	 }
+	 delete fcl; return;
+      }
+      last = fcl;
+   }
+   cout << "\nRequest to delete non-existent int array:\n";
+   cout << "   " << o << "   " << (unsigned long)t << "   " << s << "\n";
+   BadDelete++;
+   Tracer::PrintTrace();
+   cout << "\n";
+}
+
+void FreeCheck::Status()
+{
+   if (next)
+   {
+      cout << "\nObjects of the following classes remain undeleted:\n";
+      for (FreeCheckLink* fcl = next; fcl; fcl = fcl->next) fcl->Report();
+      cout << "\n";
+   }
+   else cout << "\nNo objects remain undeleted\n\n";
+   if (BadDelete)
+   {
+      cout << "\nThere were " << BadDelete << 
+         " requests to delete non-existent items\n\n";
+   }
+}
+
+#endif                            // end of DO_FREE_CHECK
+
+// derived exception bodies
+
+Logic_error::Logic_error(const char* a_what) : BaseException()
+{
+   Select = BaseException::Select;
+   AddMessage("Logic error:- "); AddMessage(a_what);
+   if (a_what) Tracer::AddTrace();
+}
+
+Runtime_error::Runtime_error(const char* a_what)
+   : BaseException()
+{
+   Select = BaseException::Select;
+   AddMessage("Runtime error:- "); AddMessage(a_what);
+   if (a_what) Tracer::AddTrace();
+}
+
+Domain_error::Domain_error(const char* a_what) : Logic_error()
+{
+   Select = BaseException::Select;
+   AddMessage("domain error\n"); AddMessage(a_what);
+   if (a_what) Tracer::AddTrace();
+}
+
+Invalid_argument::Invalid_argument(const char* a_what) : Logic_error()
+{
+   Select = BaseException::Select;
+   AddMessage("invalid argument\n"); AddMessage(a_what);
+   if (a_what) Tracer::AddTrace();
+}
+
+Length_error::Length_error(const char* a_what) : Logic_error()
+{
+   Select = BaseException::Select;
+   AddMessage("length error\n"); AddMessage(a_what);
+   if (a_what) Tracer::AddTrace();
+}
+
+Out_of_range::Out_of_range(const char* a_what) : Logic_error()
+{
+   Select = BaseException::Select;
+   AddMessage("out of range\n"); AddMessage(a_what);
+   if (a_what) Tracer::AddTrace();
+}
+
+//Bad_cast::Bad_cast(const char* a_what) : Logic_error()
+//{
+//   Select = BaseException::Select;
+//   AddMessage("bad cast\n"); AddMessage(a_what);
+//   if (a_what) Tracer::AddTrace();
+//}
+
+//Bad_typeid::Bad_typeid(const char* a_what) : Logic_error()
+//{
+//   Select = BaseException::Select;
+//   AddMessage("bad type id.\n"); AddMessage(a_what);
+//   if (a_what) Tracer::AddTrace();
+//}
+
+Range_error::Range_error(const char* a_what) : Runtime_error()
+{
+   Select = BaseException::Select;
+   AddMessage("range error\n"); AddMessage(a_what);
+   if (a_what) Tracer::AddTrace();
+}
+
+Overflow_error::Overflow_error(const char* a_what) : Runtime_error()
+{
+   Select = BaseException::Select;
+   AddMessage("overflow error\n"); AddMessage(a_what);
+   if (a_what) Tracer::AddTrace();
+}
+
+Bad_alloc::Bad_alloc(const char* a_what) : BaseException()
+{
+   Select = BaseException::Select;
+   AddMessage("bad allocation\n"); AddMessage(a_what);
+   if (a_what) Tracer::AddTrace();
+}
+
+
+
+
+unsigned long Logic_error::Select;
+unsigned long Runtime_error::Select;
+unsigned long Domain_error::Select;
+unsigned long Invalid_argument::Select;
+unsigned long Length_error::Select;
+unsigned long Out_of_range::Select;
+//unsigned long Bad_cast::Select;
+//unsigned long Bad_typeid::Select;
+unsigned long Range_error::Select;
+unsigned long Overflow_error::Select;
+unsigned long Bad_alloc::Select;
+
+#ifdef use_namespace
+}
+#endif
+
+
+///@}
+
Index: branches/BNC_LM/newmat/myexcept.h
===================================================================
--- branches/BNC_LM/newmat/myexcept.h	(revision 3570)
+++ branches/BNC_LM/newmat/myexcept.h	(revision 3570)
@@ -0,0 +1,446 @@
+/// \ingroup rbd_common
+///@{
+
+/// \file myexcept.h
+/// Exception handler.
+/// The low level classes for
+/// - my exception class hierarchy
+/// - the functions needed for my simulated exceptions
+/// - the Tracer mechanism
+/// - routines for checking whether new and delete calls are balanced
+///
+
+
+// A set of classes to simulate exceptions in C++
+//
+//   Partially copied from Carlos Vidal s article in the C users  journal
+//   September 1992, pp 19-28
+//
+//   Operations defined
+//      Try {     }
+//      Throw ( exception object )
+//      ReThrow
+//      Catch ( exception class ) {      }
+//      CatchAll {      }
+//      CatchAndThrow
+//
+//   All catch lists must end with a CatchAll or CatchAndThrow statement
+//   but not both.
+//
+//   When exceptions are finally implemented replace Try, Throw(E), Rethrow,
+//   Catch, CatchAll, CatchAndThrow by try, throw E, throw, catch,
+//   catch(...), and {}.
+//
+//   All exception classes must be derived from BaseException, have no
+//   non-static variables and must include the statement
+//
+//      static unsigned long Select;
+//
+//   Any constructor in one of these exception classes must include
+//
+//      Select = BaseException::Select;
+//
+//   For each exceptions class, EX_1, some .cpp file must include
+//
+//      unsigned long EX_1::Select;
+//
+
+
+#ifndef EXCEPTION_LIB
+#define EXCEPTION_LIB
+
+#include "include.h"
+
+#ifdef use_namespace
+namespace RBD_COMMON {
+#endif
+
+
+void Terminate();
+
+
+//********** classes for setting up exceptions and reporting ************//
+
+class BaseException;
+
+class Tracer                             // linked list showing how
+{                                        // we got here
+   const char* entry;
+   Tracer* previous;
+public:
+   Tracer(const char*);
+   ~Tracer();
+   void ReName(const char*);
+   static void PrintTrace();             // for printing trace
+   static void AddTrace();               // insert trace in exception record
+   static Tracer* last;                  // points to Tracer list
+   friend class BaseException;
+};
+
+
+class BaseException                          // The base exception class
+{
+protected:
+   static char* what_error;              // error message
+   static int SoFar;                     // no. characters already entered
+   static int LastOne;                   // last location in error buffer
+public:
+   static void AddMessage(const char* a_what);
+                                         // messages about exception
+   static void AddInt(int value);        // integer to error message
+   static unsigned long Select;          // for identifying exception
+   BaseException(const char* a_what = 0);
+   static const char* what() { return what_error; }
+                                         // for getting error message
+};
+
+#ifdef TypeDefException
+typedef BaseException Exception;        // for compatibility with my older libraries
+#endif
+
+inline Tracer::Tracer(const char* e)
+   : entry(e), previous(last) { last = this; }
+
+inline Tracer::~Tracer() { last = previous; }
+
+inline void Tracer::ReName(const char* e) { entry=e; }
+
+#ifdef SimulateExceptions                // SimulateExceptions
+
+#include <setjmp.h>
+
+
+//************* the definitions of Try, Throw and Catch *****************//
+
+
+class JumpItem;
+class Janitor;
+
+class JumpBase         // pointer to a linked list of jmp_buf s
+{
+public:
+   static JumpItem *jl;
+   static jmp_buf env;
+};
+
+class JumpItem         // an item in a linked list of jmp_buf s
+{
+public:
+   JumpItem *ji;
+   jmp_buf env;
+   Tracer* trace;                     // to keep check on Tracer items
+   Janitor* janitor;                  // list of items for cleanup
+   JumpItem() : ji(JumpBase::jl), trace(0), janitor(0)
+      { JumpBase::jl = this; }
+   ~JumpItem() { JumpBase::jl = ji; }
+};
+
+void Throw();
+
+inline void Throw(const BaseException&) { Throw(); }
+
+#define Try                                             \
+   if (!setjmp( JumpBase::jl->env )) {                  \
+   JumpBase::jl->trace = Tracer::last;               \
+   JumpItem JI387256156;
+
+#define ReThrow Throw()
+
+#define Catch(EXCEPTION)                                \
+   } else if (BaseException::Select == EXCEPTION::Select) {
+
+#define CatchAll } else
+
+#define CatchAndThrow  } else Throw();
+
+
+//****************** cleanup heap following Throw ***********************//
+
+class Janitor
+{
+protected:
+   static bool do_not_link;                  // set when new is called
+   bool OnStack;                             // false if created by new
+public:
+   Janitor* NextJanitor;
+   virtual void CleanUp() {}
+   Janitor();
+   virtual ~Janitor();
+};
+
+
+// The tiresome old trick for initializing the Janitor class
+// this is needed for classes derived from Janitor which have objects
+// declared globally
+
+class JanitorInitializer
+{
+public:
+   JanitorInitializer();
+private:
+   static int ref_count;
+};
+
+static JanitorInitializer JanInit;
+
+#endif                                // end of SimulateExceptions
+
+#ifdef UseExceptions
+
+#define Try try
+#define Throw(E) throw E
+#define ReThrow throw
+#define Catch catch
+#define CatchAll catch(...)
+#define CatchAndThrow {}
+
+#endif                                // end of UseExceptions
+
+
+#ifdef DisableExceptions              // Disable exceptions
+
+#define Try {
+#define ReThrow Throw()
+#define Catch(EXCEPTION) } if (false) {
+#define CatchAll } if (false)
+#define CatchAndThrow }
+
+inline void Throw() { Terminate(); }
+inline void Throw(const BaseException&) { Terminate(); }
+
+
+#endif                                // end of DisableExceptions
+
+#ifndef SimulateExceptions            // ! SimulateExceptions
+
+class Janitor                         // a dummy version
+{
+public:
+   virtual void CleanUp() {}
+   Janitor() {}
+   virtual ~Janitor() {}
+};
+
+#endif                                // end of ! SimulateExceptions
+
+
+//******************** FREE_CHECK and NEW_DELETE ***********************//
+
+#ifdef DO_FREE_CHECK                          // DO_FREE_CHECK
+// Routines for tracing whether new and delete calls are balanced
+
+class FreeCheck;
+
+class FreeCheckLink
+{
+protected:
+   FreeCheckLink* next;
+   void* ClassStore;
+   FreeCheckLink();
+   virtual void Report()=0;                   // print details of link
+   friend class FreeCheck;
+};
+
+class FCLClass : public FreeCheckLink         // for registering objects
+{
+   char* ClassName;
+   FCLClass(void* t, char* name);
+   void Report();
+   friend class FreeCheck;
+};
+
+class FCLRealArray : public FreeCheckLink     // for registering real arrays
+{
+   char* Operation;
+   int size;
+   FCLRealArray(void* t, char* o, int s);
+   void Report();
+   friend class FreeCheck;
+};
+
+class FCLIntArray : public FreeCheckLink     // for registering int arrays
+{
+   char* Operation;
+   int size;
+   FCLIntArray(void* t, char* o, int s);
+   void Report();
+   friend class FreeCheck;
+};
+
+
+class FreeCheck
+{
+   static FreeCheckLink* next;
+   static int BadDelete;
+public:
+   static void Register(void*, char*);
+   static void DeRegister(void*, char*);
+   static void RegisterR(void*, char*, int);
+   static void DeRegisterR(void*, char*, int);
+   static void RegisterI(void*, char*, int);
+   static void DeRegisterI(void*, char*, int);
+   static void Status();
+   friend class FreeCheckLink;
+   friend class FCLClass;
+   friend class FCLRealArray;
+   friend class FCLIntArray;
+};
+
+#define FREE_CHECK(Class)                                                  \
+public:                                                                    \
+   void* operator new(size_t size)                                         \
+   {                                                                       \
+      void* t = ::operator new(size); FreeCheck::Register(t,#Class);       \
+      return t;                                                            \
+   }                                                                       \
+   void operator delete(void* t)                                           \
+   { FreeCheck::DeRegister(t,#Class); ::operator delete(t); }
+
+
+#ifdef SimulateExceptions         // SimulateExceptions
+
+#define NEW_DELETE(Class)                                                  \
+public:                                                                    \
+   void* operator new(size_t size)                                         \
+   {                                                                       \
+      do_not_link=true;                                                    \
+      void* t = ::operator new(size); FreeCheck::Register(t,#Class);       \
+      return t;                                                            \
+   }                                                                       \
+   void operator delete(void* t)                                           \
+   { FreeCheck::DeRegister(t,#Class); ::operator delete(t); }
+
+
+#endif                           // end of SimulateExceptions
+
+
+#define MONITOR_REAL_NEW(Operation, Size, Pointer)                         \
+	FreeCheck::RegisterR(Pointer, Operation, Size);
+#define MONITOR_INT_NEW(Operation, Size, Pointer)                          \
+	FreeCheck::RegisterI(Pointer, Operation, Size);
+#define MONITOR_REAL_DELETE(Operation, Size, Pointer)                      \
+	FreeCheck::DeRegisterR(Pointer, Operation, Size);
+#define MONITOR_INT_DELETE(Operation, Size, Pointer)                       \
+	FreeCheck::DeRegisterI(Pointer, Operation, Size);
+
+#else                            // DO_FREE_CHECK not defined
+
+#define FREE_CHECK(Class) public:
+#define MONITOR_REAL_NEW(Operation, Size, Pointer) {}
+#define MONITOR_INT_NEW(Operation, Size, Pointer) {}
+#define MONITOR_REAL_DELETE(Operation, Size, Pointer) {}
+#define MONITOR_INT_DELETE(Operation, Size, Pointer) {}
+
+
+#ifdef SimulateExceptions         // SimulateExceptions
+
+
+#define NEW_DELETE(Class)                                                  \
+public:                                                                    \
+	void* operator new(size_t size)                                    \
+	{ do_not_link=true; void* t = ::operator new(size); return t; }    \
+	void operator delete(void* t) { ::operator delete(t); }
+
+#endif                            // end of SimulateExceptions
+
+#endif                            // end of ! DO_FREE_CHECK
+
+#ifndef SimulateExceptions        // ! SimulateExceptions
+
+#define NEW_DELETE(Class) FREE_CHECK(Class)
+
+#endif                            // end of ! SimulateExceptions
+
+
+//********************* derived exceptions ******************************//
+
+class Logic_error : public BaseException
+{
+public:
+   static unsigned long Select;
+   Logic_error(const char* a_what = 0);
+};
+
+class Runtime_error : public BaseException
+{
+public:
+   static unsigned long Select;
+   Runtime_error(const char* a_what = 0);
+};
+
+class Domain_error : public Logic_error
+{
+public:
+   static unsigned long Select;
+   Domain_error(const char* a_what = 0);
+};
+
+class Invalid_argument : public Logic_error
+{
+public:
+   static unsigned long Select;
+   Invalid_argument(const char* a_what = 0);
+};
+
+class Length_error : public Logic_error
+{
+public:
+   static unsigned long Select;
+   Length_error(const char* a_what = 0);
+};
+
+class Out_of_range : public Logic_error
+{
+public:
+   static unsigned long Select;
+   Out_of_range(const char* a_what = 0);
+};
+
+//class Bad_cast : public Logic_error
+//{
+//public:
+//   static unsigned long Select;
+//   Bad_cast(const char* a_what = 0);
+//};
+
+//class Bad_typeid : public Logic_error
+//{
+//public:
+//   static unsigned long Select;
+//   Bad_typeid(const char* a_what = 0);
+//};
+
+class Range_error : public Runtime_error
+{
+public:
+   static unsigned long Select;
+   Range_error(const char* a_what = 0);
+};
+
+class Overflow_error : public Runtime_error
+{
+public:
+   static unsigned long Select;
+   Overflow_error(const char* a_what = 0);
+};
+
+class Bad_alloc : public BaseException
+{
+public:
+   static unsigned long Select;
+   Bad_alloc(const char* a_what = 0);
+};
+
+#ifdef use_namespace
+}
+#endif
+
+
+#endif                            // end of EXCEPTION_LIB
+
+
+// body file: myexcept.cpp
+
+
+///@}
+
Index: branches/BNC_LM/newmat/newfft.cpp
===================================================================
--- branches/BNC_LM/newmat/newfft.cpp	(revision 3570)
+++ branches/BNC_LM/newmat/newfft.cpp	(revision 3570)
@@ -0,0 +1,1065 @@
+/// \ingroup newmat
+///@{
+
+/// \file newfft.cpp
+/// Fast Fourier transform using Sande and Gentleman method.
+
+
+// This is originally by Sande and Gentleman in 1967! I have translated from
+// Fortran into C and a little bit of C++.
+
+// It takes about twice as long as fftw
+// (http://theory.lcs.mit.edu/~fftw/homepage.html)
+// but is much shorter than fftw  and so despite its age
+// might represent a reasonable
+// compromise between speed and complexity.
+// If you really need the speed get fftw.
+
+
+//    THIS SUBROUTINE WAS WRITTEN BY G.SANDE OF PRINCETON UNIVERSITY AND
+//    W.M.GENTLMAN OF THE BELL TELEPHONE LAB.  IT WAS BROUGHT TO LONDON
+//    BY DR. M.D. GODFREY AT THE IMPERIAL COLLEGE AND WAS ADAPTED FOR
+//    BURROUGHS 6700 BY D. R. BRILLINGER AND J. PEMBERTON
+//    IT REPRESENTS THE STATE OF THE ART OF COMPUTING COMPLETE FINITE
+//    DISCRETE FOURIER TRANSFORMS AS OF NOV.1967.
+//    OTHER PROGRAMS REQUIRED.
+//                                 ONLY THOSE SUBROUTINES INCLUDED HERE.
+//                      USAGE.
+//       CALL AR1DFT(N,X,Y)
+//            WHERE  N IS THE NUMBER OF POINTS IN THE SEQUENCE .
+//                   X - IS A ONE-DIMENSIONAL ARRAY CONTAINING THE REAL
+//                       PART OF THE SEQUENCE.
+//                   Y - IS A ONE-DIMENSIONAL ARRAY CONTAINING THE
+//                       IMAGINARY PART OF THE SEQUENCE.
+//    THE TRANSFORM IS RETURNED IN X AND Y.
+//            METHOD
+//               FOR A GENERAL DISCUSSION OF THESE TRANSFORMS AND OF
+//    THE FAST METHOD FOR COMPUTING THEM, SEE GENTLEMAN AND SANDE,
+//    @FAST FOURIER TRANSFORMS - FOR FUN AND PROFIT,@ 1966 FALL JOINT
+//    COMPUTER CONFERENCE.
+//    THIS PROGRAM COMPUTES THIS FOR A COMPLEX SEQUENCE Z(T) OF LENGTH
+//    N WHOSE ELEMENTS ARE STORED AT(X(I) , Y(I)) AND RETURNS THE
+//    TRANSFORM COEFFICIENTS AT (X(I), Y(I)).
+//        DESCRIPTION
+//    AR1DFT IS A HIGHLY MODULAR ROUTINE CAPABLE OF COMPUTING IN PLACE
+//    THE COMPLETE FINITE DISCRETE FOURIER TRANSFORM  OF A ONE-
+//    DIMENSIONAL SEQUENCE OF RATHER GENERAL LENGTH N.
+//       THE MAIN ROUTINE , AR1DFT ITSELF, FACTORS N. IT THEN CALLS ON
+//    ON GR 1D FT TO COMPUTE THE ACTUAL TRANSFORMS, USING THESE FACTORS.
+//    THIS GR 1D FT DOES, CALLING AT EACH STAGE ON THE APPROPRIATE KERN
+//    EL R2FTK, R4FTK, R8FTK, R16FTK, R3FTK, R5FTK, OR RPFTK TO PERFORM
+//    THE COMPUTATIONS FOR THIS PASS OVER THE SEQUENCE, DEPENDING ON
+//    WHETHER THE CORRESPONDING FACTOR IS 2, 4, 8, 16, 3, 5, OR SOME
+//    MORE GENERAL PRIME P. WHEN GR1DFT IS FINISHED THE TRANSFORM IS
+//    COMPUTED, HOWEVER, THE RESULTS ARE STORED IN "DIGITS REVERSED"
+//    ORDER. AR1DFT THEREFORE, CALLS UPON GR 1S FS TO SORT THEM OUT.
+//    TO RETURN TO THE FACTORIZATION, SINGLETON HAS POINTED OUT THAT
+//    THE TRANSFORMS ARE MORE EFFICIENT IF THE SAMPLE SIZE N, IS OF THE
+//    FORM B*A**2 AND B CONSISTS OF A SINGLE FACTOR.  IN SUCH A CASE
+//    IF WE PROCESS THE FACTORS IN THE ORDER ABA  THEN
+//    THE REORDERING CAN BE DONE AS FAST IN PLACE, AS WITH SCRATCH
+//    STORAGE.  BUT AS B BECOMES MORE COMPLICATED, THE COST OF THE DIGIT
+//    REVERSING DUE TO B PART BECOMES VERY EXPENSIVE IF WE TRY TO DO IT
+//    IN PLACE.  IN SUCH A CASE IT MIGHT BE BETTER TO USE EXTRA STORAGE
+//    A ROUTINE TO DO THIS IS, HOWEVER, NOT INCLUDED HERE.
+//    ANOTHER FEATURE INFLUENCING THE FACTORIZATION IS THAT FOR ANY FIXED
+//    FACTOR N WE CAN PREPARE A SPECIAL KERNEL WHICH WILL COMPUTE
+//    THAT STAGE OF THE TRANSFORM MORE EFFICIENTLY THAN WOULD A KERNEL
+//    FOR GENERAL FACTORS, ESPECIALLY IF THE GENERAL KERNEL HAD TO BE
+//    APPLIED SEVERAL TIMES. FOR EXAMPLE, FACTORS OF 4 ARE MORE
+//    EFFICIENT THAN FACTORS OF 2, FACTORS OF 8 MORE EFFICIENT THAN 4,ETC
+//    ON THE OTHER HAND DIMINISHING RETURNS RAPIDLY SET IN, ESPECIALLY
+//    SINCE THE LENGTH OF THE KERNEL FOR A SPECIAL CASE IS ROUGHLY
+//    PROPORTIONAL TO THE FACTOR IT DEALS WITH. HENCE THESE PROBABLY ARE
+//    ALL THE KERNELS WE WISH TO HAVE.
+//            RESTRICTIONS.
+//    AN UNFORTUNATE FEATURE OF THE SORTING PROBLEM IS THAT THE MOST
+//    EFFICIENT WAY TO DO IT IS WITH NESTED DO LOOPS, ONE FOR EACH
+//    FACTOR. THIS PUTS A RESTRICTION ON N AS TO HOW MANY FACTORS IT
+//    CAN HAVE.  CURRENTLY THE LIMIT IS 16, BUT THE LIMIT CAN BE READILY
+//    RAISED IF NECESSARY.
+//    A SECOND RESTRICTION OF THE PROGRAM IS THAT LOCAL STORAGE OF THE
+//    THE ORDER P**2 IS REQUIRED BY THE GENERAL KERNEL RPFTK, SO SOME
+//    LIMIT MUST BE SET ON P.  CURRENTLY THIS IS 19, BUT IT CAN BE INCRE
+//    INCREASED BY TRIVIAL CHANGES.
+//       OTHER COMMENTS.
+//(1) THE ROUTINE IS ADAPTED TO CHECK WHETHER A GIVEN N WILL MEET THE
+//    ABOVE FACTORING REQUIREMENTS AN, IF NOT, TO RETURN THE NEXT HIGHER
+//    NUMBER, NX, SAY, WHICH WILL MEET THESE REQUIREMENTS.
+//    THIS CAN BE ACCHIEVED BY   A STATEMENT OF THE FORM
+//            CALL FACTR(N,X,Y).
+//    IF A DIFFERENT N, SAY NX, IS RETURNED THEN THE TRANSFORMS COULD BE
+//    OBTAINED BY EXTENDING THE SIZE OF THE X-ARRAY AND Y-ARRAY TO NX,
+//    AND SETTING X(I) = Y(I) = 0., FOR I = N+1, NX.
+//(2) IF THE SEQUENCE Z IS ONLY A REAL SEQUENCE, THEN THE IMAGINARY PART
+//    Y(I)=0., THIS WILL RETURN THE COSINE TRANSFORM OF THE REAL SEQUENCE
+//    IN X, AND THE SINE TRANSFORM IN Y.
+
+
+#define WANT_STREAM
+
+#define WANT_MATH
+
+#include "newmatap.h"
+
+#ifdef use_namespace
+namespace NEWMAT {
+#endif
+
+#ifdef DO_REPORT
+#define REPORT { static ExeCounter ExeCount(__LINE__,20); ++ExeCount; }
+#else
+#define REPORT {}
+#endif
+
+inline Real square(Real x) { return x*x; }
+inline int square(int x) { return x*x; }
+
+static void GR_1D_FS (int PTS, int N_SYM, int N_UN_SYM,
+   const SimpleIntArray& SYM, int P_SYM, const SimpleIntArray& UN_SYM,
+   Real* X, Real* Y);
+static void GR_1D_FT (int N, int N_FACTOR, const SimpleIntArray& FACTOR,
+   Real* X, Real* Y);
+static void R_P_FTK (int N, int M, int P, Real* X, Real* Y);
+static void R_2_FTK (int N, int M, Real* X0, Real* Y0, Real* X1, Real* Y1);
+static void R_3_FTK (int N, int M, Real* X0, Real* Y0, Real* X1, Real* Y1,
+   Real* X2, Real* Y2);
+static void R_4_FTK (int N, int M,
+   Real* X0, Real* Y0, Real* X1, Real* Y1,
+   Real* X2, Real* Y2, Real* X3, Real* Y3);
+static void R_5_FTK (int N, int M,
+   Real* X0, Real* Y0, Real* X1, Real* Y1, Real* X2, Real* Y2,
+   Real* X3, Real* Y3, Real* X4, Real* Y4);
+static void R_8_FTK (int N, int M,
+   Real* X0, Real* Y0, Real* X1, Real* Y1,
+   Real* X2, Real* Y2, Real* X3, Real* Y3,
+   Real* X4, Real* Y4, Real* X5, Real* Y5,
+   Real* X6, Real* Y6, Real* X7, Real* Y7);
+static void R_16_FTK (int N, int M,
+   Real* X0, Real* Y0, Real* X1, Real* Y1,
+   Real* X2, Real* Y2, Real* X3, Real* Y3,
+   Real* X4, Real* Y4, Real* X5, Real* Y5,
+   Real* X6, Real* Y6, Real* X7, Real* Y7,
+   Real* X8, Real* Y8, Real* X9, Real* Y9,
+   Real* X10, Real* Y10, Real* X11, Real* Y11,
+   Real* X12, Real* Y12, Real* X13, Real* Y13,
+   Real* X14, Real* Y14, Real* X15, Real* Y15);
+static int BitReverse(int x, int prod, int n, const SimpleIntArray& f);
+
+
+bool FFT_Controller::ar_1d_ft (int PTS, Real* X, Real *Y)
+{
+//    ARBITRARY RADIX ONE DIMENSIONAL FOURIER TRANSFORM
+
+   REPORT
+
+   int  F,J,N,NF,P,PMAX,P_SYM,P_TWO,Q,R,TWO_GRP;
+
+   // NP is maximum number of squared factors allows PTS up to 2**32 at least
+   // NQ is number of not-squared factors - increase if we increase PMAX
+   const int NP = 16, NQ = 10;
+   SimpleIntArray PP(NP), QQ(NQ);
+
+   TWO_GRP=16; PMAX=19;
+
+   // PMAX is the maximum factor size
+   // TWO_GRP is the maximum power of 2 handled as a single factor
+   // Doesn't take advantage of combining powers of 2 when calculating
+   // number of factors
+
+   if (PTS<=1) return true;
+   N=PTS; P_SYM=1; F=2; P=0; Q=0;
+
+   // P counts the number of squared factors
+   // Q counts the number of the rest
+   // R = 0 for no non-squared factors; 1 otherwise
+
+   // FACTOR holds all the factors - non-squared ones in the middle
+   //   - length is 2*P+Q
+   // SYM also holds all the factors but with the non-squared ones
+   //   multiplied together - length is 2*P+R
+   // PP holds the values of the squared factors - length is P
+   // QQ holds the values of the rest - length is Q
+
+   // P_SYM holds the product of the squared factors
+
+   // find the factors - load into PP and QQ
+   while (N > 1)
+   {
+      bool fail = true;
+      for (J=F; J<=PMAX; J++)
+         if (N % J == 0) { fail = false; F=J; break; }
+      if (fail || P >= NP || Q >= NQ) return false; // can't factor
+      N /= F;
+      if (N % F != 0) QQ[Q++] = F;
+      else { N /= F; PP[P++] = F; P_SYM *= F; }
+   }
+
+   R = (Q == 0) ? 0 : 1;  // R = 0 if no not-squared factors, 1 otherwise
+
+   NF = 2*P + Q;
+   SimpleIntArray FACTOR(NF + 1), SYM(2*P + R);
+   FACTOR[NF] = 0;                // we need this in the "combine powers of 2"
+
+   // load into SYM and FACTOR
+   for (J=0; J<P; J++)
+      { SYM[J]=FACTOR[J]=PP[P-1-J]; FACTOR[P+Q+J]=SYM[P+R+J]=PP[J]; }
+
+   if (Q>0)
+   {
+      REPORT
+      for (J=0; J<Q; J++) FACTOR[P+J]=QQ[J];
+      SYM[P]=PTS/square(P_SYM);
+   }
+
+   // combine powers of 2
+   P_TWO = 1;
+   for (J=0; J < NF; J++)
+   {
+      if (FACTOR[J]!=2) continue;
+      P_TWO=P_TWO*2; FACTOR[J]=1;
+      if (P_TWO<TWO_GRP && FACTOR[J+1]==2) continue;
+      FACTOR[J]=P_TWO; P_TWO=1;
+   }
+
+   if (P==0) R=0;
+   if (Q<=1) Q=0;
+
+   // do the analysis
+   GR_1D_FT(PTS,NF,FACTOR,X,Y);                 // the transform
+   GR_1D_FS(PTS,2*P+R,Q,SYM,P_SYM,QQ,X,Y);      // the reshuffling
+
+   return true;
+
+}
+
+static void GR_1D_FS (int PTS, int N_SYM, int N_UN_SYM,
+   const SimpleIntArray& SYM, int P_SYM, const SimpleIntArray& UN_SYM,
+   Real* X, Real* Y)
+{
+//    GENERAL RADIX ONE DIMENSIONAL FOURIER SORT
+
+// PTS = number of points
+// N_SYM = length of SYM
+// N_UN_SYM = length of UN_SYM
+// SYM: squared factors + product of non-squared factors + squared factors
+// P_SYM = product of squared factors (each included only once)
+// UN_SYM: not-squared factors
+
+   REPORT
+
+   Real T;
+   int  JJ,KK,P_UN_SYM;
+
+   // I have replaced the multiple for-loop used by Sande-Gentleman code
+   // by the following code which does not limit the number of factors
+
+   if (N_SYM > 0)
+   {
+      REPORT
+      SimpleIntArray U(N_SYM);
+      for(MultiRadixCounter MRC(N_SYM, SYM, U); !MRC.Finish(); ++MRC)
+      {
+         if (MRC.Swap())
+         {
+            int P = MRC.Reverse(); int JJ = MRC.Counter(); Real T;
+            T=X[JJ]; X[JJ]=X[P]; X[P]=T; T=Y[JJ]; Y[JJ]=Y[P]; Y[P]=T;
+         }
+      }
+   }
+
+   int J,JL,K,L,M,MS;
+
+   // UN_SYM contains the non-squared factors
+   // I have replaced the Sande-Gentleman code as it runs into
+   // integer overflow problems
+   // My code (and theirs) would be improved by using a bit array
+   // as suggested by Van Loan
+
+   if (N_UN_SYM==0) { REPORT return; }
+   P_UN_SYM=PTS/square(P_SYM); JL=(P_UN_SYM-3)*P_SYM; MS=P_UN_SYM*P_SYM;
+
+   for (J = P_SYM; J<=JL; J+=P_SYM)
+   {
+      K=J;
+      do K = P_SYM * BitReverse(K / P_SYM, P_UN_SYM, N_UN_SYM, UN_SYM);
+      while (K<J);
+
+      if (K!=J)
+      {
+         REPORT
+         for (L=0; L<P_SYM; L++) for (M=L; M<PTS; M+=MS)
+         {
+            JJ=M+J; KK=M+K;
+            T=X[JJ]; X[JJ]=X[KK]; X[KK]=T; T=Y[JJ]; Y[JJ]=Y[KK]; Y[KK]=T;
+         }
+      }
+   }
+
+   return;
+}
+
+static void GR_1D_FT (int N, int N_FACTOR, const SimpleIntArray& FACTOR,
+   Real* X, Real* Y)
+{
+//    GENERAL RADIX ONE DIMENSIONAL FOURIER TRANSFORM;
+
+   REPORT
+
+   int  M = N;
+
+   for (int i = 0; i < N_FACTOR; i++)
+   {
+      int P = FACTOR[i]; M /= P;
+
+      switch(P)
+      {
+      case 1: REPORT break;
+      case 2: REPORT R_2_FTK (N,M,X,Y,X+M,Y+M); break;
+      case 3: REPORT R_3_FTK (N,M,X,Y,X+M,Y+M,X+2*M,Y+2*M); break;
+      case 4: REPORT R_4_FTK (N,M,X,Y,X+M,Y+M,X+2*M,Y+2*M,X+3*M,Y+3*M); break;
+      case 5:
+         REPORT
+         R_5_FTK (N,M,X,Y,X+M,Y+M,X+2*M,Y+2*M,X+3*M,Y+3*M,X+4*M,Y+4*M);
+         break;
+      case 8:
+         REPORT
+         R_8_FTK (N,M,X,Y,X+M,Y+M,X+2*M,Y+2*M,
+            X+3*M,Y+3*M,X+4*M,Y+4*M,X+5*M,Y+5*M,
+            X+6*M,Y+6*M,X+7*M,Y+7*M);
+         break;
+      case 16:
+         REPORT
+         R_16_FTK (N,M,X,Y,X+M,Y+M,X+2*M,Y+2*M,
+            X+3*M,Y+3*M,X+4*M,Y+4*M,X+5*M,Y+5*M,
+            X+6*M,Y+6*M,X+7*M,Y+7*M,X+8*M,Y+8*M,
+            X+9*M,Y+9*M,X+10*M,Y+10*M,X+11*M,Y+11*M,
+            X+12*M,Y+12*M,X+13*M,Y+13*M,X+14*M,Y+14*M,
+            X+15*M,Y+15*M);
+         break;
+      default: REPORT R_P_FTK (N,M,P,X,Y); break;
+      }
+   }
+
+}
+
+static void R_P_FTK (int N, int M, int P, Real* X, Real* Y)
+//    RADIX PRIME FOURIER TRANSFORM KERNEL;
+// X and Y are treated as M * P matrices with Fortran storage
+{
+   REPORT
+   bool NO_FOLD,ZERO;
+   Real ANGLE,IS,IU,RS,RU,T,TWOPI,XT,YT;
+   int  J,JJ,K0,K,M_OVER_2,MP,PM,PP,U,V;
+
+   Real AA [9][9], BB [9][9];
+   Real A [18], B [18], C [18], S [18];
+   Real IA [9], IB [9], RA [9], RB [9];
+
+   TWOPI=8.0*atan(1.0);
+   M_OVER_2=M/2+1; MP=M*P; PP=P/2; PM=P-1;
+
+   for (U=0; U<PP; U++)
+   {
+      ANGLE=TWOPI*Real(U+1)/Real(P);
+      JJ=P-U-2;
+      A[U]=cos(ANGLE); B[U]=sin(ANGLE);
+      A[JJ]=A[U]; B[JJ]= -B[U];
+   }
+
+   for (U=1; U<=PP; U++)
+   {
+      for (V=1; V<=PP; V++)
+         { JJ=U*V-U*V/P*P; AA[V-1][U-1]=A[JJ-1]; BB[V-1][U-1]=B[JJ-1]; }
+   }
+
+   for (J=0; J<M_OVER_2; J++)
+   {
+      NO_FOLD = (J==0 || 2*J==M);
+      K0=J;
+      ANGLE=TWOPI*Real(J)/Real(MP); ZERO=ANGLE==0.0;
+      C[0]=cos(ANGLE); S[0]=sin(ANGLE);
+      for (U=1; U<PM; U++)
+      {
+         C[U]=C[U-1]*C[0]-S[U-1]*S[0];
+         S[U]=S[U-1]*C[0]+C[U-1]*S[0];
+      }
+      goto L700;
+   L500:
+      REPORT
+      if (NO_FOLD) { REPORT goto L1500; }
+      REPORT
+      NO_FOLD=true; K0=M-J;
+      for (U=0; U<PM; U++)
+         { T=C[U]*A[U]+S[U]*B[U]; S[U]= -S[U]*A[U]+C[U]*B[U]; C[U]=T; }
+   L700:
+      REPORT
+      for (K=K0; K<N; K+=MP)
+      {
+         XT=X[K]; YT=Y[K];
+         for (U=1; U<=PP; U++)
+         {
+            RA[U-1]=XT; IA[U-1]=YT;
+            RB[U-1]=0.0; IB[U-1]=0.0;
+         }
+         for (U=1; U<=PP; U++)
+         {
+            JJ=P-U;
+            RS=X[K+M*U]+X[K+M*JJ]; IS=Y[K+M*U]+Y[K+M*JJ];
+            RU=X[K+M*U]-X[K+M*JJ]; IU=Y[K+M*U]-Y[K+M*JJ];
+            XT=XT+RS; YT=YT+IS;
+            for (V=0; V<PP; V++)
+            {
+               RA[V]=RA[V]+RS*AA[V][U-1]; IA[V]=IA[V]+IS*AA[V][U-1];
+               RB[V]=RB[V]+RU*BB[V][U-1]; IB[V]=IB[V]+IU*BB[V][U-1];
+            }
+         }
+         X[K]=XT; Y[K]=YT;
+         for (U=1; U<=PP; U++)
+         {
+            if (!ZERO)
+            {
+               REPORT
+               XT=RA[U-1]+IB[U-1]; YT=IA[U-1]-RB[U-1];
+               X[K+M*U]=XT*C[U-1]+YT*S[U-1]; Y[K+M*U]=YT*C[U-1]-XT*S[U-1];
+               JJ=P-U;
+               XT=RA[U-1]-IB[U-1]; YT=IA[U-1]+RB[U-1];
+               X[K+M*JJ]=XT*C[JJ-1]+YT*S[JJ-1];
+               Y[K+M*JJ]=YT*C[JJ-1]-XT*S[JJ-1];
+            }
+            else
+            {
+               REPORT
+               X[K+M*U]=RA[U-1]+IB[U-1]; Y[K+M*U]=IA[U-1]-RB[U-1];
+               JJ=P-U;
+               X[K+M*JJ]=RA[U-1]-IB[U-1]; Y[K+M*JJ]=IA[U-1]+RB[U-1];
+            }
+         }
+      }
+      goto L500;
+L1500: ;
+   }
+   return;
+}
+
+static void R_2_FTK (int N, int M, Real* X0, Real* Y0, Real* X1, Real* Y1)
+//    RADIX TWO FOURIER TRANSFORM KERNEL;
+{
+   REPORT
+   bool NO_FOLD,ZERO;
+   int  J,K,K0,M2,M_OVER_2;
+   Real ANGLE,C,IS,IU,RS,RU,S,TWOPI;
+
+   M2=M*2; M_OVER_2=M/2+1;
+   TWOPI=8.0*atan(1.0);
+
+   for (J=0; J<M_OVER_2; J++)
+   {
+      NO_FOLD = (J==0 || 2*J==M);
+      K0=J;
+      ANGLE=TWOPI*Real(J)/Real(M2); ZERO=ANGLE==0.0;
+      C=cos(ANGLE); S=sin(ANGLE);
+      goto L200;
+   L100:
+      REPORT
+      if (NO_FOLD) { REPORT goto L600; }
+      REPORT
+      NO_FOLD=true; K0=M-J; C= -C;
+   L200:
+      REPORT
+      for (K=K0; K<N; K+=M2)
+      {
+         RS=X0[K]+X1[K]; IS=Y0[K]+Y1[K];
+         RU=X0[K]-X1[K]; IU=Y0[K]-Y1[K];
+         X0[K]=RS; Y0[K]=IS;
+         if (!ZERO) { X1[K]=RU*C+IU*S; Y1[K]=IU*C-RU*S; }
+         else { X1[K]=RU; Y1[K]=IU; }
+      }
+      goto L100;
+   L600: ;
+   }
+
+   return;
+}
+
+static void R_3_FTK (int N, int M, Real* X0, Real* Y0, Real* X1, Real* Y1,
+   Real* X2, Real* Y2)
+//    RADIX THREE FOURIER TRANSFORM KERNEL
+{
+   REPORT
+   bool NO_FOLD,ZERO;
+   int  J,K,K0,M3,M_OVER_2;
+   Real ANGLE,A,B,C1,C2,S1,S2,T,TWOPI;
+   Real I0,I1,I2,IA,IB,IS,R0,R1,R2,RA,RB,RS;
+
+   M3=M*3; M_OVER_2=M/2+1; TWOPI=8.0*atan(1.0);
+   A=cos(TWOPI/3.0); B=sin(TWOPI/3.0);
+
+   for (J=0; J<M_OVER_2; J++)
+   {
+      NO_FOLD = (J==0 || 2*J==M);
+      K0=J;
+      ANGLE=TWOPI*Real(J)/Real(M3); ZERO=ANGLE==0.0;
+      C1=cos(ANGLE); S1=sin(ANGLE);
+      C2=C1*C1-S1*S1; S2=S1*C1+C1*S1;
+      goto L200;
+   L100:
+      REPORT
+      if (NO_FOLD) { REPORT goto L600; }
+      REPORT
+      NO_FOLD=true; K0=M-J;
+      T=C1*A+S1*B; S1=C1*B-S1*A; C1=T;
+      T=C2*A-S2*B; S2= -C2*B-S2*A; C2=T;
+   L200:
+      REPORT
+      for (K=K0; K<N; K+=M3)
+      {
+         R0 = X0[K]; I0 = Y0[K];
+         RS=X1[K]+X2[K]; IS=Y1[K]+Y2[K];
+         X0[K]=R0+RS; Y0[K]=I0+IS;
+         RA=R0+RS*A; IA=I0+IS*A;
+         RB=(X1[K]-X2[K])*B; IB=(Y1[K]-Y2[K])*B;
+         if (!ZERO)
+         {
+            REPORT
+            R1=RA+IB; I1=IA-RB; R2=RA-IB; I2=IA+RB;
+            X1[K]=R1*C1+I1*S1; Y1[K]=I1*C1-R1*S1;
+            X2[K]=R2*C2+I2*S2; Y2[K]=I2*C2-R2*S2;
+         }
+         else { REPORT X1[K]=RA+IB; Y1[K]=IA-RB; X2[K]=RA-IB; Y2[K]=IA+RB; }
+      }
+      goto L100;
+   L600: ;
+   }
+
+   return;
+}
+
+static void R_4_FTK (int N, int M,
+   Real* X0, Real* Y0, Real* X1, Real* Y1,
+   Real* X2, Real* Y2, Real* X3, Real* Y3)
+//    RADIX FOUR FOURIER TRANSFORM KERNEL
+{
+   REPORT
+   bool NO_FOLD,ZERO;
+   int  J,K,K0,M4,M_OVER_2;
+   Real ANGLE,C1,C2,C3,S1,S2,S3,T,TWOPI;
+   Real I1,I2,I3,IS0,IS1,IU0,IU1,R1,R2,R3,RS0,RS1,RU0,RU1;
+
+   M4=M*4; M_OVER_2=M/2+1;
+   TWOPI=8.0*atan(1.0);
+
+   for (J=0; J<M_OVER_2; J++)
+   {
+      NO_FOLD = (J==0 || 2*J==M);
+      K0=J;
+      ANGLE=TWOPI*Real(J)/Real(M4); ZERO=ANGLE==0.0;
+      C1=cos(ANGLE); S1=sin(ANGLE);
+      C2=C1*C1-S1*S1; S2=S1*C1+C1*S1;
+      C3=C2*C1-S2*S1; S3=S2*C1+C2*S1;
+      goto L200;
+   L100:
+      REPORT
+      if (NO_FOLD) { REPORT goto L600; }
+      REPORT
+      NO_FOLD=true; K0=M-J;
+      T=C1; C1=S1; S1=T;
+      C2= -C2;
+      T=C3; C3= -S3; S3= -T;
+   L200:
+      REPORT
+      for (K=K0; K<N; K+=M4)
+      {
+         RS0=X0[K]+X2[K]; IS0=Y0[K]+Y2[K];
+         RU0=X0[K]-X2[K]; IU0=Y0[K]-Y2[K];
+         RS1=X1[K]+X3[K]; IS1=Y1[K]+Y3[K];
+         RU1=X1[K]-X3[K]; IU1=Y1[K]-Y3[K];
+         X0[K]=RS0+RS1; Y0[K]=IS0+IS1;
+         if (!ZERO)
+         {
+            REPORT
+            R1=RU0+IU1; I1=IU0-RU1;
+            R2=RS0-RS1; I2=IS0-IS1;
+            R3=RU0-IU1; I3=IU0+RU1;
+            X2[K]=R1*C1+I1*S1; Y2[K]=I1*C1-R1*S1;
+            X1[K]=R2*C2+I2*S2; Y1[K]=I2*C2-R2*S2;
+            X3[K]=R3*C3+I3*S3; Y3[K]=I3*C3-R3*S3;
+         }
+         else
+         {
+            REPORT
+            X2[K]=RU0+IU1; Y2[K]=IU0-RU1;
+            X1[K]=RS0-RS1; Y1[K]=IS0-IS1;
+            X3[K]=RU0-IU1; Y3[K]=IU0+RU1;
+         }
+      }
+      goto L100;
+   L600: ;
+   }
+
+   return;
+}
+
+static void R_5_FTK (int N, int M,
+   Real* X0, Real* Y0, Real* X1, Real* Y1, Real* X2, Real* Y2,
+   Real* X3, Real* Y3, Real* X4, Real* Y4)
+//    RADIX FIVE FOURIER TRANSFORM KERNEL
+
+{
+   REPORT
+   bool NO_FOLD,ZERO;
+   int  J,K,K0,M5,M_OVER_2;
+   Real ANGLE,A1,A2,B1,B2,C1,C2,C3,C4,S1,S2,S3,S4,T,TWOPI;
+   Real R0,R1,R2,R3,R4,RA1,RA2,RB1,RB2,RS1,RS2,RU1,RU2;
+   Real I0,I1,I2,I3,I4,IA1,IA2,IB1,IB2,IS1,IS2,IU1,IU2;
+
+   M5=M*5; M_OVER_2=M/2+1;
+   TWOPI=8.0*atan(1.0);
+   A1=cos(TWOPI/5.0); B1=sin(TWOPI/5.0);
+   A2=cos(2.0*TWOPI/5.0); B2=sin(2.0*TWOPI/5.0);
+
+   for (J=0; J<M_OVER_2; J++)
+   {
+      NO_FOLD = (J==0 || 2*J==M);
+      K0=J;
+      ANGLE=TWOPI*Real(J)/Real(M5); ZERO=ANGLE==0.0;
+      C1=cos(ANGLE); S1=sin(ANGLE);
+      C2=C1*C1-S1*S1; S2=S1*C1+C1*S1;
+      C3=C2*C1-S2*S1; S3=S2*C1+C2*S1;
+      C4=C2*C2-S2*S2; S4=S2*C2+C2*S2;
+      goto L200;
+   L100:
+      REPORT
+      if (NO_FOLD) { REPORT goto L600; }
+      REPORT
+      NO_FOLD=true; K0=M-J;
+      T=C1*A1+S1*B1; S1=C1*B1-S1*A1; C1=T;
+      T=C2*A2+S2*B2; S2=C2*B2-S2*A2; C2=T;
+      T=C3*A2-S3*B2; S3= -C3*B2-S3*A2; C3=T;
+      T=C4*A1-S4*B1; S4= -C4*B1-S4*A1; C4=T;
+   L200:
+      REPORT
+      for (K=K0; K<N; K+=M5)
+      {
+         R0=X0[K]; I0=Y0[K];
+         RS1=X1[K]+X4[K]; IS1=Y1[K]+Y4[K];
+         RU1=X1[K]-X4[K]; IU1=Y1[K]-Y4[K];
+         RS2=X2[K]+X3[K]; IS2=Y2[K]+Y3[K];
+         RU2=X2[K]-X3[K]; IU2=Y2[K]-Y3[K];
+         X0[K]=R0+RS1+RS2; Y0[K]=I0+IS1+IS2;
+         RA1=R0+RS1*A1+RS2*A2; IA1=I0+IS1*A1+IS2*A2;
+         RA2=R0+RS1*A2+RS2*A1; IA2=I0+IS1*A2+IS2*A1;
+         RB1=RU1*B1+RU2*B2; IB1=IU1*B1+IU2*B2;
+         RB2=RU1*B2-RU2*B1; IB2=IU1*B2-IU2*B1;
+         if (!ZERO)
+         {
+            REPORT
+            R1=RA1+IB1; I1=IA1-RB1;
+            R2=RA2+IB2; I2=IA2-RB2;
+            R3=RA2-IB2; I3=IA2+RB2;
+            R4=RA1-IB1; I4=IA1+RB1;
+            X1[K]=R1*C1+I1*S1; Y1[K]=I1*C1-R1*S1;
+            X2[K]=R2*C2+I2*S2; Y2[K]=I2*C2-R2*S2;
+            X3[K]=R3*C3+I3*S3; Y3[K]=I3*C3-R3*S3;
+            X4[K]=R4*C4+I4*S4; Y4[K]=I4*C4-R4*S4;
+         }
+         else
+         {
+            REPORT
+            X1[K]=RA1+IB1; Y1[K]=IA1-RB1;
+            X2[K]=RA2+IB2; Y2[K]=IA2-RB2;
+            X3[K]=RA2-IB2; Y3[K]=IA2+RB2;
+            X4[K]=RA1-IB1; Y4[K]=IA1+RB1;
+         }
+      }
+      goto L100;
+   L600: ;
+   }
+
+   return;
+}
+
+static void R_8_FTK (int N, int M,
+   Real* X0, Real* Y0, Real* X1, Real* Y1,
+   Real* X2, Real* Y2, Real* X3, Real* Y3,
+   Real* X4, Real* Y4, Real* X5, Real* Y5,
+   Real* X6, Real* Y6, Real* X7, Real* Y7)
+//    RADIX EIGHT FOURIER TRANSFORM KERNEL
+{
+   REPORT
+   bool NO_FOLD,ZERO;
+   int  J,K,K0,M8,M_OVER_2;
+   Real ANGLE,C1,C2,C3,C4,C5,C6,C7,E,S1,S2,S3,S4,S5,S6,S7,T,TWOPI;
+   Real R1,R2,R3,R4,R5,R6,R7,RS0,RS1,RS2,RS3,RU0,RU1,RU2,RU3;
+   Real I1,I2,I3,I4,I5,I6,I7,IS0,IS1,IS2,IS3,IU0,IU1,IU2,IU3;
+   Real RSS0,RSS1,RSU0,RSU1,RUS0,RUS1,RUU0,RUU1;
+   Real ISS0,ISS1,ISU0,ISU1,IUS0,IUS1,IUU0,IUU1;
+
+   M8=M*8; M_OVER_2=M/2+1;
+   TWOPI=8.0*atan(1.0); E=cos(TWOPI/8.0);
+
+   for (J=0;J<M_OVER_2;J++)
+   {
+      NO_FOLD= (J==0 || 2*J==M);
+      K0=J;
+      ANGLE=TWOPI*Real(J)/Real(M8); ZERO=ANGLE==0.0;
+      C1=cos(ANGLE); S1=sin(ANGLE);
+      C2=C1*C1-S1*S1; S2=C1*S1+S1*C1;
+      C3=C2*C1-S2*S1; S3=S2*C1+C2*S1;
+      C4=C2*C2-S2*S2; S4=S2*C2+C2*S2;
+      C5=C4*C1-S4*S1; S5=S4*C1+C4*S1;
+      C6=C4*C2-S4*S2; S6=S4*C2+C4*S2;
+      C7=C4*C3-S4*S3; S7=S4*C3+C4*S3;
+      goto L200;
+   L100:
+      REPORT
+      if (NO_FOLD) { REPORT goto L600; }
+      REPORT
+      NO_FOLD=true; K0=M-J;
+      T=(C1+S1)*E; S1=(C1-S1)*E; C1=T;
+      T=S2; S2=C2; C2=T;
+      T=(-C3+S3)*E; S3=(C3+S3)*E; C3=T;
+      C4= -C4;
+      T= -(C5+S5)*E; S5=(-C5+S5)*E; C5=T;
+      T= -S6; S6= -C6; C6=T;
+      T=(C7-S7)*E; S7= -(C7+S7)*E; C7=T;
+   L200:
+      REPORT
+      for (K=K0; K<N; K+=M8)
+      {
+         RS0=X0[K]+X4[K]; IS0=Y0[K]+Y4[K];
+         RU0=X0[K]-X4[K]; IU0=Y0[K]-Y4[K];
+         RS1=X1[K]+X5[K]; IS1=Y1[K]+Y5[K];
+         RU1=X1[K]-X5[K]; IU1=Y1[K]-Y5[K];
+         RS2=X2[K]+X6[K]; IS2=Y2[K]+Y6[K];
+         RU2=X2[K]-X6[K]; IU2=Y2[K]-Y6[K];
+         RS3=X3[K]+X7[K]; IS3=Y3[K]+Y7[K];
+         RU3=X3[K]-X7[K]; IU3=Y3[K]-Y7[K];
+         RSS0=RS0+RS2; ISS0=IS0+IS2;
+         RSU0=RS0-RS2; ISU0=IS0-IS2;
+         RSS1=RS1+RS3; ISS1=IS1+IS3;
+         RSU1=RS1-RS3; ISU1=IS1-IS3;
+         RUS0=RU0-IU2; IUS0=IU0+RU2;
+         RUU0=RU0+IU2; IUU0=IU0-RU2;
+         RUS1=RU1-IU3; IUS1=IU1+RU3;
+         RUU1=RU1+IU3; IUU1=IU1-RU3;
+         T=(RUS1+IUS1)*E; IUS1=(IUS1-RUS1)*E; RUS1=T;
+         T=(RUU1+IUU1)*E; IUU1=(IUU1-RUU1)*E; RUU1=T;
+         X0[K]=RSS0+RSS1; Y0[K]=ISS0+ISS1;
+         if (!ZERO)
+         {
+            REPORT
+            R1=RUU0+RUU1; I1=IUU0+IUU1;
+            R2=RSU0+ISU1; I2=ISU0-RSU1;
+            R3=RUS0+IUS1; I3=IUS0-RUS1;
+            R4=RSS0-RSS1; I4=ISS0-ISS1;
+            R5=RUU0-RUU1; I5=IUU0-IUU1;
+            R6=RSU0-ISU1; I6=ISU0+RSU1;
+            R7=RUS0-IUS1; I7=IUS0+RUS1;
+            X4[K]=R1*C1+I1*S1; Y4[K]=I1*C1-R1*S1;
+            X2[K]=R2*C2+I2*S2; Y2[K]=I2*C2-R2*S2;
+            X6[K]=R3*C3+I3*S3; Y6[K]=I3*C3-R3*S3;
+            X1[K]=R4*C4+I4*S4; Y1[K]=I4*C4-R4*S4;
+            X5[K]=R5*C5+I5*S5; Y5[K]=I5*C5-R5*S5;
+            X3[K]=R6*C6+I6*S6; Y3[K]=I6*C6-R6*S6;
+            X7[K]=R7*C7+I7*S7; Y7[K]=I7*C7-R7*S7;
+         }
+         else
+         {
+            REPORT
+            X4[K]=RUU0+RUU1; Y4[K]=IUU0+IUU1;
+            X2[K]=RSU0+ISU1; Y2[K]=ISU0-RSU1;
+            X6[K]=RUS0+IUS1; Y6[K]=IUS0-RUS1;
+            X1[K]=RSS0-RSS1; Y1[K]=ISS0-ISS1;
+            X5[K]=RUU0-RUU1; Y5[K]=IUU0-IUU1;
+            X3[K]=RSU0-ISU1; Y3[K]=ISU0+RSU1;
+            X7[K]=RUS0-IUS1; Y7[K]=IUS0+RUS1;
+         }
+      }
+      goto L100;
+   L600: ;
+   }
+
+   return;
+}
+
+static void R_16_FTK (int N, int M,
+   Real* X0, Real* Y0, Real* X1, Real* Y1,
+   Real* X2, Real* Y2, Real* X3, Real* Y3,
+   Real* X4, Real* Y4, Real* X5, Real* Y5,
+   Real* X6, Real* Y6, Real* X7, Real* Y7,
+   Real* X8, Real* Y8, Real* X9, Real* Y9,
+   Real* X10, Real* Y10, Real* X11, Real* Y11,
+   Real* X12, Real* Y12, Real* X13, Real* Y13,
+   Real* X14, Real* Y14, Real* X15, Real* Y15)
+//    RADIX SIXTEEN FOURIER TRANSFORM KERNEL
+{
+   REPORT
+   bool NO_FOLD,ZERO;
+   int  J,K,K0,M16,M_OVER_2;
+   Real ANGLE,EI1,ER1,E2,EI3,ER3,EI5,ER5,T,TWOPI;
+   Real RS0,RS1,RS2,RS3,RS4,RS5,RS6,RS7;
+   Real IS0,IS1,IS2,IS3,IS4,IS5,IS6,IS7;
+   Real RU0,RU1,RU2,RU3,RU4,RU5,RU6,RU7;
+   Real IU0,IU1,IU2,IU3,IU4,IU5,IU6,IU7;
+   Real RUS0,RUS1,RUS2,RUS3,RUU0,RUU1,RUU2,RUU3;
+   Real ISS0,ISS1,ISS2,ISS3,ISU0,ISU1,ISU2,ISU3;
+   Real RSS0,RSS1,RSS2,RSS3,RSU0,RSU1,RSU2,RSU3;
+   Real IUS0,IUS1,IUS2,IUS3,IUU0,IUU1,IUU2,IUU3;
+   Real RSSS0,RSSS1,RSSU0,RSSU1,RSUS0,RSUS1,RSUU0,RSUU1;
+   Real ISSS0,ISSS1,ISSU0,ISSU1,ISUS0,ISUS1,ISUU0,ISUU1;
+   Real RUSS0,RUSS1,RUSU0,RUSU1,RUUS0,RUUS1,RUUU0,RUUU1;
+   Real IUSS0,IUSS1,IUSU0,IUSU1,IUUS0,IUUS1,IUUU0,IUUU1;
+   Real R1,R2,R3,R4,R5,R6,R7,R8,R9,R10,R11,R12,R13,R14,R15;
+   Real I1,I2,I3,I4,I5,I6,I7,I8,I9,I10,I11,I12,I13,I14,I15;
+   Real C1,C2,C3,C4,C5,C6,C7,C8,C9,C10,C11,C12,C13,C14,C15;
+   Real S1,S2,S3,S4,S5,S6,S7,S8,S9,S10,S11,S12,S13,S14,S15;
+
+   M16=M*16; M_OVER_2=M/2+1;
+   TWOPI=8.0*atan(1.0);
+   ER1=cos(TWOPI/16.0); EI1=sin(TWOPI/16.0);
+   E2=cos(TWOPI/8.0);
+   ER3=cos(3.0*TWOPI/16.0); EI3=sin(3.0*TWOPI/16.0);
+   ER5=cos(5.0*TWOPI/16.0); EI5=sin(5.0*TWOPI/16.0);
+
+   for (J=0; J<M_OVER_2; J++)
+   {
+      NO_FOLD = (J==0 || 2*J==M);
+      K0=J;
+      ANGLE=TWOPI*Real(J)/Real(M16);
+      ZERO=ANGLE==0.0;
+      C1=cos(ANGLE); S1=sin(ANGLE);
+      C2=C1*C1-S1*S1; S2=C1*S1+S1*C1;
+      C3=C2*C1-S2*S1; S3=S2*C1+C2*S1;
+      C4=C2*C2-S2*S2; S4=S2*C2+C2*S2;
+      C5=C4*C1-S4*S1; S5=S4*C1+C4*S1;
+      C6=C4*C2-S4*S2; S6=S4*C2+C4*S2;
+      C7=C4*C3-S4*S3; S7=S4*C3+C4*S3;
+      C8=C4*C4-S4*S4; S8=C4*S4+S4*C4;
+      C9=C8*C1-S8*S1; S9=S8*C1+C8*S1;
+      C10=C8*C2-S8*S2; S10=S8*C2+C8*S2;
+      C11=C8*C3-S8*S3; S11=S8*C3+C8*S3;
+      C12=C8*C4-S8*S4; S12=S8*C4+C8*S4;
+      C13=C8*C5-S8*S5; S13=S8*C5+C8*S5;
+      C14=C8*C6-S8*S6; S14=S8*C6+C8*S6;
+      C15=C8*C7-S8*S7; S15=S8*C7+C8*S7;
+      goto L200;
+   L100:
+      REPORT
+      if (NO_FOLD) { REPORT goto L600; }
+      REPORT
+      NO_FOLD=true; K0=M-J;
+      T=C1*ER1+S1*EI1; S1= -S1*ER1+C1*EI1; C1=T;
+      T=(C2+S2)*E2; S2=(C2-S2)*E2; C2=T;
+      T=C3*ER3+S3*EI3; S3= -S3*ER3+C3*EI3; C3=T;
+      T=S4; S4=C4; C4=T;
+      T=S5*ER1-C5*EI1; S5=C5*ER1+S5*EI1; C5=T;
+      T=(-C6+S6)*E2; S6=(C6+S6)*E2; C6=T;
+      T=S7*ER3-C7*EI3; S7=C7*ER3+S7*EI3; C7=T;
+      C8= -C8;
+      T= -(C9*ER1+S9*EI1); S9=S9*ER1-C9*EI1; C9=T;
+      T= -(C10+S10)*E2; S10=(-C10+S10)*E2; C10=T;
+      T= -(C11*ER3+S11*EI3); S11=S11*ER3-C11*EI3; C11=T;
+      T= -S12; S12= -C12; C12=T;
+      T= -S13*ER1+C13*EI1; S13= -(C13*ER1+S13*EI1); C13=T;
+      T=(C14-S14)*E2; S14= -(C14+S14)*E2; C14=T;
+      T= -S15*ER3+C15*EI3; S15= -(C15*ER3+S15*EI3); C15=T;
+   L200:
+      REPORT
+      for (K=K0; K<N; K+=M16)
+      {
+         RS0=X0[K]+X8[K]; IS0=Y0[K]+Y8[K];
+         RU0=X0[K]-X8[K]; IU0=Y0[K]-Y8[K];
+         RS1=X1[K]+X9[K]; IS1=Y1[K]+Y9[K];
+         RU1=X1[K]-X9[K]; IU1=Y1[K]-Y9[K];
+         RS2=X2[K]+X10[K]; IS2=Y2[K]+Y10[K];
+         RU2=X2[K]-X10[K]; IU2=Y2[K]-Y10[K];
+         RS3=X3[K]+X11[K]; IS3=Y3[K]+Y11[K];
+         RU3=X3[K]-X11[K]; IU3=Y3[K]-Y11[K];
+         RS4=X4[K]+X12[K]; IS4=Y4[K]+Y12[K];
+         RU4=X4[K]-X12[K]; IU4=Y4[K]-Y12[K];
+         RS5=X5[K]+X13[K]; IS5=Y5[K]+Y13[K];
+         RU5=X5[K]-X13[K]; IU5=Y5[K]-Y13[K];
+         RS6=X6[K]+X14[K]; IS6=Y6[K]+Y14[K];
+         RU6=X6[K]-X14[K]; IU6=Y6[K]-Y14[K];
+         RS7=X7[K]+X15[K]; IS7=Y7[K]+Y15[K];
+         RU7=X7[K]-X15[K]; IU7=Y7[K]-Y15[K];
+         RSS0=RS0+RS4; ISS0=IS0+IS4;
+         RSS1=RS1+RS5; ISS1=IS1+IS5;
+         RSS2=RS2+RS6; ISS2=IS2+IS6;
+         RSS3=RS3+RS7; ISS3=IS3+IS7;
+         RSU0=RS0-RS4; ISU0=IS0-IS4;
+         RSU1=RS1-RS5; ISU1=IS1-IS5;
+         RSU2=RS2-RS6; ISU2=IS2-IS6;
+         RSU3=RS3-RS7; ISU3=IS3-IS7;
+         RUS0=RU0-IU4; IUS0=IU0+RU4;
+         RUS1=RU1-IU5; IUS1=IU1+RU5;
+         RUS2=RU2-IU6; IUS2=IU2+RU6;
+         RUS3=RU3-IU7; IUS3=IU3+RU7;
+         RUU0=RU0+IU4; IUU0=IU0-RU4;
+         RUU1=RU1+IU5; IUU1=IU1-RU5;
+         RUU2=RU2+IU6; IUU2=IU2-RU6;
+         RUU3=RU3+IU7; IUU3=IU3-RU7;
+         T=(RSU1+ISU1)*E2; ISU1=(ISU1-RSU1)*E2; RSU1=T;
+         T=(RSU3+ISU3)*E2; ISU3=(ISU3-RSU3)*E2; RSU3=T;
+         T=RUS1*ER3+IUS1*EI3; IUS1=IUS1*ER3-RUS1*EI3; RUS1=T;
+         T=(RUS2+IUS2)*E2; IUS2=(IUS2-RUS2)*E2; RUS2=T;
+         T=RUS3*ER5+IUS3*EI5; IUS3=IUS3*ER5-RUS3*EI5; RUS3=T;
+         T=RUU1*ER1+IUU1*EI1; IUU1=IUU1*ER1-RUU1*EI1; RUU1=T;
+         T=(RUU2+IUU2)*E2; IUU2=(IUU2-RUU2)*E2; RUU2=T;
+         T=RUU3*ER3+IUU3*EI3; IUU3=IUU3*ER3-RUU3*EI3; RUU3=T;
+         RSSS0=RSS0+RSS2; ISSS0=ISS0+ISS2;
+         RSSS1=RSS1+RSS3; ISSS1=ISS1+ISS3;
+         RSSU0=RSS0-RSS2; ISSU0=ISS0-ISS2;
+         RSSU1=RSS1-RSS3; ISSU1=ISS1-ISS3;
+         RSUS0=RSU0-ISU2; ISUS0=ISU0+RSU2;
+         RSUS1=RSU1-ISU3; ISUS1=ISU1+RSU3;
+         RSUU0=RSU0+ISU2; ISUU0=ISU0-RSU2;
+         RSUU1=RSU1+ISU3; ISUU1=ISU1-RSU3;
+         RUSS0=RUS0-IUS2; IUSS0=IUS0+RUS2;
+         RUSS1=RUS1-IUS3; IUSS1=IUS1+RUS3;
+         RUSU0=RUS0+IUS2; IUSU0=IUS0-RUS2;
+         RUSU1=RUS1+IUS3; IUSU1=IUS1-RUS3;
+         RUUS0=RUU0+RUU2; IUUS0=IUU0+IUU2;
+         RUUS1=RUU1+RUU3; IUUS1=IUU1+IUU3;
+         RUUU0=RUU0-RUU2; IUUU0=IUU0-IUU2;
+         RUUU1=RUU1-RUU3; IUUU1=IUU1-IUU3;
+         X0[K]=RSSS0+RSSS1; Y0[K]=ISSS0+ISSS1;
+         if (!ZERO)
+         {
+            REPORT
+            R1=RUUS0+RUUS1; I1=IUUS0+IUUS1;
+            R2=RSUU0+RSUU1; I2=ISUU0+ISUU1;
+            R3=RUSU0+RUSU1; I3=IUSU0+IUSU1;
+            R4=RSSU0+ISSU1; I4=ISSU0-RSSU1;
+            R5=RUUU0+IUUU1; I5=IUUU0-RUUU1;
+            R6=RSUS0+ISUS1; I6=ISUS0-RSUS1;
+            R7=RUSS0+IUSS1; I7=IUSS0-RUSS1;
+            R8=RSSS0-RSSS1; I8=ISSS0-ISSS1;
+            R9=RUUS0-RUUS1; I9=IUUS0-IUUS1;
+            R10=RSUU0-RSUU1; I10=ISUU0-ISUU1;
+            R11=RUSU0-RUSU1; I11=IUSU0-IUSU1;
+            R12=RSSU0-ISSU1; I12=ISSU0+RSSU1;
+            R13=RUUU0-IUUU1; I13=IUUU0+RUUU1;
+            R14=RSUS0-ISUS1; I14=ISUS0+RSUS1;
+            R15=RUSS0-IUSS1; I15=IUSS0+RUSS1;
+            X8[K]=R1*C1+I1*S1; Y8[K]=I1*C1-R1*S1;
+            X4[K]=R2*C2+I2*S2; Y4[K]=I2*C2-R2*S2;
+            X12[K]=R3*C3+I3*S3; Y12[K]=I3*C3-R3*S3;
+            X2[K]=R4*C4+I4*S4; Y2[K]=I4*C4-R4*S4;
+            X10[K]=R5*C5+I5*S5; Y10[K]=I5*C5-R5*S5;
+            X6[K]=R6*C6+I6*S6; Y6[K]=I6*C6-R6*S6;
+            X14[K]=R7*C7+I7*S7; Y14[K]=I7*C7-R7*S7;
+            X1[K]=R8*C8+I8*S8; Y1[K]=I8*C8-R8*S8;
+            X9[K]=R9*C9+I9*S9; Y9[K]=I9*C9-R9*S9;
+            X5[K]=R10*C10+I10*S10; Y5[K]=I10*C10-R10*S10;
+            X13[K]=R11*C11+I11*S11; Y13[K]=I11*C11-R11*S11;
+            X3[K]=R12*C12+I12*S12; Y3[K]=I12*C12-R12*S12;
+            X11[K]=R13*C13+I13*S13; Y11[K]=I13*C13-R13*S13;
+            X7[K]=R14*C14+I14*S14; Y7[K]=I14*C14-R14*S14;
+            X15[K]=R15*C15+I15*S15; Y15[K]=I15*C15-R15*S15;
+         }
+         else
+         {
+            REPORT
+            X8[K]=RUUS0+RUUS1; Y8[K]=IUUS0+IUUS1;
+            X4[K]=RSUU0+RSUU1; Y4[K]=ISUU0+ISUU1;
+            X12[K]=RUSU0+RUSU1; Y12[K]=IUSU0+IUSU1;
+            X2[K]=RSSU0+ISSU1; Y2[K]=ISSU0-RSSU1;
+            X10[K]=RUUU0+IUUU1; Y10[K]=IUUU0-RUUU1;
+            X6[K]=RSUS0+ISUS1; Y6[K]=ISUS0-RSUS1;
+            X14[K]=RUSS0+IUSS1; Y14[K]=IUSS0-RUSS1;
+            X1[K]=RSSS0-RSSS1; Y1[K]=ISSS0-ISSS1;
+            X9[K]=RUUS0-RUUS1; Y9[K]=IUUS0-IUUS1;
+            X5[K]=RSUU0-RSUU1; Y5[K]=ISUU0-ISUU1;
+            X13[K]=RUSU0-RUSU1; Y13[K]=IUSU0-IUSU1;
+            X3[K]=RSSU0-ISSU1; Y3[K]=ISSU0+RSSU1;
+            X11[K]=RUUU0-IUUU1; Y11[K]=IUUU0+RUUU1;
+            X7[K]=RSUS0-ISUS1; Y7[K]=ISUS0+RSUS1;
+            X15[K]=RUSS0-IUSS1; Y15[K]=IUSS0+RUSS1;
+         }
+      }
+      goto L100;
+   L600: ;
+   }
+
+   return;
+}
+
+// can the number of points be factorised sufficiently
+// for the fft to run
+
+bool FFT_Controller::CanFactor(int PTS)
+{
+   REPORT
+   const int NP = 16, NQ = 10, PMAX=19;
+
+   if (PTS<=1) { REPORT return true; }
+
+   int N = PTS, F = 2, P = 0, Q = 0;
+
+   while (N > 1)
+   {
+      bool fail = true;
+      for (int J = F; J <= PMAX; J++)
+         if (N % J == 0) { fail = false; F=J; break; }
+      if (fail || P >= NP || Q >= NQ) { REPORT return false; }
+      N /= F;
+      if (N % F != 0) Q++; else { N /= F; P++; }
+   }
+
+   return true;    // can factorise
+
+}
+
+bool FFT_Controller::OnlyOldFFT;         // static variable
+
+// **************************** multi radix counter **********************
+
+MultiRadixCounter::MultiRadixCounter(int nx, const SimpleIntArray& rx,
+   SimpleIntArray& vx)
+   : Radix(rx), Value(vx), n(nx), reverse(0),
+      product(1), counter(0), finish(false)
+{
+   REPORT for (int k = 0; k < n; k++) { Value[k] = 0; product *= Radix[k]; }
+}
+
+void MultiRadixCounter::operator++()
+{
+   REPORT
+   counter++; int p = product;
+   for (int k = 0; k < n; k++)
+   {
+      Value[k]++; int p1 = p / Radix[k]; reverse += p1;
+      if (Value[k] == Radix[k]) { REPORT Value[k] = 0; reverse -= p; p = p1; }
+      else { REPORT return; }
+   }
+   finish = true;
+}
+
+
+static int BitReverse(int x, int prod, int n, const SimpleIntArray& f)
+{
+   // x = c[0]+f[0]*(c[1]+f[1]*(c[2]+...
+   // return c[n-1]+f[n-1]*(c[n-2]+f[n-2]*(c[n-3]+...
+   // prod is the product of the f[i]
+   // n is the number of f[i] (don't assume f has the correct length)
+
+   REPORT
+   const int* d = f.Data() + n; int sum = 0; int q = 1;
+   while (n--)
+   {
+      prod /= *(--d);
+      int c = x / prod; x-= c * prod;
+      sum += q * c; q *= *d;
+   }
+   return sum;
+}
+
+
+#ifdef use_namespace
+}
+#endif
+
+///@}
+
Index: branches/BNC_LM/newmat/newmat.h
===================================================================
--- branches/BNC_LM/newmat/newmat.h	(revision 3570)
+++ branches/BNC_LM/newmat/newmat.h	(revision 3570)
@@ -0,0 +1,2213 @@
+/// \defgroup newmat Newmat matrix manipulation library
+///@{
+
+/// \file newmat.h
+/// Definition file for matrix library.
+
+// Copyright (C) 2004: R B Davies
+
+#ifndef NEWMAT_LIB
+#define NEWMAT_LIB 0
+
+#include "include.h"
+
+#include "myexcept.h"
+
+
+#ifdef use_namespace
+namespace NEWMAT { using namespace RBD_COMMON; }
+namespace RBD_LIBRARIES { using namespace NEWMAT; }
+namespace NEWMAT {
+#endif
+
+//#define DO_REPORT                     // to activate REPORT
+
+#ifdef NO_LONG_NAMES
+#define UpperTriangularMatrix UTMatrix
+#define LowerTriangularMatrix LTMatrix
+#define SymmetricMatrix SMatrix
+#define DiagonalMatrix DMatrix
+#define BandMatrix BMatrix
+#define UpperBandMatrix UBMatrix
+#define LowerBandMatrix LBMatrix
+#define SymmetricBandMatrix SBMatrix
+#define BandLUMatrix BLUMatrix
+#endif
+
+// ************************** general utilities ****************************/
+
+class GeneralMatrix;                            // defined later
+class BaseMatrix;                               // defined later
+class MatrixInput;                              // defined later
+
+void MatrixErrorNoSpace(const void*);           ///< test for allocation fails
+
+/// Return from LogDeterminant function.
+/// Members are the log of the absolute value and the sign (+1, -1 or 0)
+class LogAndSign
+{
+   Real log_val;
+   int sign_val;
+public:
+   LogAndSign() { log_val=0.0; sign_val=1; }
+   LogAndSign(Real);
+   void operator*=(Real);                       ///< multiply by a real
+   void pow_eq(int k);                          ///< raise to power of k
+   void PowEq(int k) { pow_eq(k); }
+   void ChangeSign() { sign_val = -sign_val; }
+   void change_sign() { sign_val = -sign_val; } ///< change sign
+   Real LogValue() const { return log_val; }
+   Real log_value() const { return log_val; }   ///< log of the absolute value
+   int Sign() const { return sign_val; }
+   int sign() const { return sign_val; }        ///< sign of the value
+   Real value() const;                          ///< the value
+   Real Value() const { return value(); }
+   FREE_CHECK(LogAndSign)
+};
+
+// the following class is for counting the number of times a piece of code
+// is executed. It is used for locating any code not executed by test
+// routines. Use turbo GREP locate all places this code is called and
+// check which ones are not accessed.
+// Somewhat implementation dependent as it relies on "cout" still being
+// present when ExeCounter objects are destructed.
+
+#ifdef DO_REPORT
+
+class ExeCounter
+{
+   int line;                                    // code line number
+   int fileid;                                  // file identifier
+   long nexe;                                   // number of executions
+   static int nreports;                         // number of reports
+public:
+   ExeCounter(int,int);
+   void operator++() { nexe++; }
+   ~ExeCounter();                               // prints out reports
+};
+
+#endif
+
+
+// ************************** class MatrixType *****************************
+
+/// Find the type of a matrix resulting from matrix operations.
+/// Also identify what conversions are permissible.
+/// This class must be updated when new matrix types are added.
+
+class MatrixType
+{
+public:
+   enum Attribute {  Valid     = 1,
+                     Diagonal  = 2,             // order of these is important
+                     Symmetric = 4,
+                     Band      = 8,
+                     Lower     = 16,
+                     Upper     = 32,
+                     Square    = 64,
+                     Skew      = 128,
+                     LUDeco    = 256,
+                     Ones      = 512 };
+
+   enum            { US = 0,
+                     UT = Valid + Upper + Square,
+                     LT = Valid + Lower + Square,
+                     Rt = Valid,
+                     Sq = Valid + Square,
+                     Sm = Valid + Symmetric + Square,
+                     Sk = Valid + Skew + Square,
+                     Dg = Valid + Diagonal + Band + Lower + Upper + Symmetric
+                        + Square,
+                     Id = Valid + Diagonal + Band + Lower + Upper + Symmetric
+                        + Square + Ones,
+                     RV = Valid,     //   do not separate out
+                     CV = Valid,     //   vectors
+                     BM = Valid + Band + Square,
+                     UB = Valid + Band + Upper + Square,
+                     LB = Valid + Band + Lower + Square,
+                     SB = Valid + Band + Symmetric + Square,
+                     KB = Valid + Band + Skew + Square,
+                     Ct = Valid + LUDeco + Square,
+                     BC = Valid + Band + LUDeco + Square,
+                     Mask = ~Square
+                   };
+
+
+   static int nTypes() { return 13; }          // number of different types
+					       // exclude Ct, US, BC
+public:
+   int attribute;
+   bool DataLossOK;                            // true if data loss is OK when
+                                               // this represents a destination
+public:
+   MatrixType () : DataLossOK(false) {}
+   MatrixType (int i) : attribute(i), DataLossOK(false) {}
+   MatrixType (int i, bool dlok) : attribute(i), DataLossOK(dlok) {}
+   MatrixType (const MatrixType& mt)
+      : attribute(mt.attribute), DataLossOK(mt.DataLossOK) {}
+   void operator=(const MatrixType& mt)
+      { attribute = mt.attribute; DataLossOK = mt.DataLossOK; }
+   void SetDataLossOK() { DataLossOK = true; }
+   int operator+() const { return attribute; }
+   MatrixType operator+(MatrixType mt) const
+      { return MatrixType(attribute & mt.attribute); }
+   MatrixType operator*(const MatrixType&) const;
+   MatrixType SP(const MatrixType&) const;
+   MatrixType KP(const MatrixType&) const;
+   MatrixType operator|(const MatrixType& mt) const
+      { return MatrixType(attribute & mt.attribute & Valid); }
+   MatrixType operator&(const MatrixType& mt) const
+      { return MatrixType(attribute & mt.attribute & Valid); }
+   bool operator>=(MatrixType mt) const
+      { return ( attribute & ~mt.attribute & Mask ) == 0; }
+   bool operator<(MatrixType mt) const         // for MS Visual C++ 4
+      { return ( attribute & ~mt.attribute & Mask ) != 0; }
+   bool operator==(MatrixType t) const
+      { return (attribute == t.attribute); }
+   bool operator!=(MatrixType t) const
+      { return (attribute != t.attribute); }
+   bool operator!() const { return (attribute & Valid) == 0; }
+   MatrixType i() const;                       ///< type of inverse
+   MatrixType t() const;                       ///< type of transpose
+   MatrixType AddEqualEl() const               ///< add constant to matrix
+      { return MatrixType(attribute & (Valid + Symmetric + Square)); }
+   MatrixType MultRHS() const;                 ///< type for rhs of multiply
+   MatrixType sub() const                      ///< type of submatrix
+      { return MatrixType(attribute & Valid); }
+   MatrixType ssub() const                     ///< type of sym submatrix
+      { return MatrixType(attribute); }        // not for selection matrix
+   GeneralMatrix* New() const;                 ///< new matrix of given type
+   GeneralMatrix* New(int,int,BaseMatrix*) const;
+                                               ///< new matrix of given type
+   const char* value() const;                  ///< type as char string
+   const char* Value() const { return value(); }
+   friend bool Rectangular(MatrixType a, MatrixType b, MatrixType c);
+   friend bool Compare(const MatrixType&, MatrixType&);
+                                               ///< compare and check conversion
+   bool is_band() const { return (attribute & Band) != 0; }
+   bool is_diagonal() const { return (attribute & Diagonal) != 0; }
+   bool is_symmetric() const { return (attribute & Symmetric) != 0; }
+   bool CannotConvert() const { return (attribute & LUDeco) != 0; }
+                                               // used by operator== 
+   FREE_CHECK(MatrixType)
+};
+
+
+// *********************** class MatrixBandWidth ***********************/
+
+///Upper and lower bandwidths of a matrix.
+///That is number of diagonals strictly above or below main diagonal,
+///e.g. diagonal matrix has 0 upper and lower bandwiths.
+///-1 means the matrix may have the maximum bandwidth. 
+class MatrixBandWidth
+{
+public:
+   int lower_val;
+   int upper_val;
+   MatrixBandWidth(const int l, const int u) : lower_val(l), upper_val(u) {}
+   MatrixBandWidth(const int i) : lower_val(i), upper_val(i) {}
+   MatrixBandWidth operator+(const MatrixBandWidth&) const;
+   MatrixBandWidth operator*(const MatrixBandWidth&) const;
+   MatrixBandWidth minimum(const MatrixBandWidth&) const;
+   MatrixBandWidth t() const { return MatrixBandWidth(upper_val,lower_val); }
+   bool operator==(const MatrixBandWidth& bw) const
+      { return (lower_val == bw.lower_val) && (upper_val == bw.upper_val); }
+   bool operator!=(const MatrixBandWidth& bw) const { return !operator==(bw); }
+   int Upper() const { return upper_val; }
+   int upper() const { return upper_val; }
+   int Lower() const { return lower_val; }
+   int lower() const { return lower_val; }
+   FREE_CHECK(MatrixBandWidth)
+};
+
+
+// ********************* Array length specifier ************************/
+
+/// This class is used to avoid constructors such as
+/// ColumnVector(int) being used for conversions.
+/// Eventually this should be replaced by the use of the keyword "explicit".
+
+class ArrayLengthSpecifier
+{
+   int v;
+public:
+   int Value() const { return v; }
+   int value() const { return v; }
+   ArrayLengthSpecifier(int l) : v(l) {}
+};
+
+// ************************* Matrix routines ***************************/
+
+
+class MatrixRowCol;                             // defined later
+class MatrixRow;
+class MatrixCol;
+class MatrixColX;
+
+class GeneralMatrix;                            // defined later
+class AddedMatrix;
+class MultipliedMatrix;
+class SubtractedMatrix;
+class SPMatrix;
+class KPMatrix;
+class ConcatenatedMatrix;
+class StackedMatrix;
+class SolvedMatrix;
+class ShiftedMatrix;
+class NegShiftedMatrix;
+class ScaledMatrix;
+class TransposedMatrix;
+class ReversedMatrix;
+class NegatedMatrix;
+class InvertedMatrix;
+class RowedMatrix;
+class ColedMatrix;
+class DiagedMatrix;
+class MatedMatrix;
+class GetSubMatrix;
+class ReturnMatrix;
+class Matrix;
+class SquareMatrix;
+class nricMatrix;
+class RowVector;
+class ColumnVector;
+class SymmetricMatrix;
+class UpperTriangularMatrix;
+class LowerTriangularMatrix;
+class DiagonalMatrix;
+class CroutMatrix;
+class BandMatrix;
+class LowerBandMatrix;
+class UpperBandMatrix;
+class SymmetricBandMatrix;
+class LinearEquationSolver;
+class GenericMatrix;
+
+
+#define MatrixTypeUnSp 0
+//static MatrixType MatrixTypeUnSp(MatrixType::US);
+//						// AT&T needs this
+
+/// Base of the matrix classes.
+class BaseMatrix : public Janitor
+{
+protected:
+   virtual int search(const BaseMatrix*) const = 0;
+						// count number of times matrix is referred to
+public:
+   virtual GeneralMatrix* Evaluate(MatrixType mt=MatrixTypeUnSp) = 0;
+						// evaluate temporary
+   // for old version of G++
+   //   virtual GeneralMatrix* Evaluate(MatrixType mt) = 0;
+   //   GeneralMatrix* Evaluate() { return Evaluate(MatrixTypeUnSp); }
+   AddedMatrix operator+(const BaseMatrix&) const;    // results of operations
+   MultipliedMatrix operator*(const BaseMatrix&) const;
+   SubtractedMatrix operator-(const BaseMatrix&) const;
+   ConcatenatedMatrix operator|(const BaseMatrix&) const;
+   StackedMatrix operator&(const BaseMatrix&) const;
+   ShiftedMatrix operator+(Real) const;
+   ScaledMatrix operator*(Real) const;
+   ScaledMatrix operator/(Real) const;
+   ShiftedMatrix operator-(Real) const;
+   TransposedMatrix t() const;
+//   TransposedMatrix t;
+   NegatedMatrix operator-() const;                   // change sign of elements
+   ReversedMatrix reverse() const;
+   ReversedMatrix Reverse() const;
+   InvertedMatrix i() const;
+//   InvertedMatrix i;
+   RowedMatrix as_row() const;
+   RowedMatrix AsRow() const;
+   ColedMatrix as_column() const;
+   ColedMatrix AsColumn() const;
+   DiagedMatrix as_diagonal() const;
+   DiagedMatrix AsDiagonal() const;
+   MatedMatrix as_matrix(int,int) const;
+   MatedMatrix AsMatrix(int m, int n) const;
+   GetSubMatrix submatrix(int,int,int,int) const;
+   GetSubMatrix SubMatrix(int fr, int lr, int fc, int lc) const;
+   GetSubMatrix sym_submatrix(int,int) const;
+   GetSubMatrix SymSubMatrix(int f, int l) const;
+   GetSubMatrix row(int) const;
+   GetSubMatrix rows(int,int) const;
+   GetSubMatrix column(int) const;
+   GetSubMatrix columns(int,int) const;
+   GetSubMatrix Row(int f) const;
+   GetSubMatrix Rows(int f, int l) const;
+   GetSubMatrix Column(int f) const;
+   GetSubMatrix Columns(int f, int l) const;
+   Real as_scalar() const;                      // conversion of 1 x 1 matrix
+   Real AsScalar() const;
+   virtual LogAndSign log_determinant() const;
+   LogAndSign LogDeterminant() const { return log_determinant(); }
+   Real determinant() const;
+   Real Determinant() const { return determinant(); }
+   virtual Real sum_square() const;
+   Real SumSquare() const { return sum_square(); }
+   Real norm_Frobenius() const;
+   Real norm_frobenius() const { return norm_Frobenius(); }
+   Real NormFrobenius() const { return norm_Frobenius(); }
+   virtual Real sum_absolute_value() const;
+   Real SumAbsoluteValue() const { return sum_absolute_value(); }
+   virtual Real sum() const;
+   virtual Real Sum() const { return sum(); }
+   virtual Real maximum_absolute_value() const;
+   Real MaximumAbsoluteValue() const { return maximum_absolute_value(); }
+   virtual Real maximum_absolute_value1(int& i) const;
+   Real MaximumAbsoluteValue1(int& i) const
+      { return maximum_absolute_value1(i); }
+   virtual Real maximum_absolute_value2(int& i, int& j) const;
+   Real MaximumAbsoluteValue2(int& i, int& j) const
+      { return maximum_absolute_value2(i,j); }
+   virtual Real minimum_absolute_value() const;
+   Real MinimumAbsoluteValue() const { return minimum_absolute_value(); }
+   virtual Real minimum_absolute_value1(int& i) const;
+   Real MinimumAbsoluteValue1(int& i) const
+      { return minimum_absolute_value1(i); }
+   virtual Real minimum_absolute_value2(int& i, int& j) const;
+   Real MinimumAbsoluteValue2(int& i, int& j) const
+      { return minimum_absolute_value2(i,j); }
+   virtual Real maximum() const;
+   Real Maximum() const { return maximum(); }
+   virtual Real maximum1(int& i) const;
+   Real Maximum1(int& i) const { return maximum1(i); }
+   virtual Real maximum2(int& i, int& j) const;
+   Real Maximum2(int& i, int& j) const { return maximum2(i,j); }
+   virtual Real minimum() const;
+   Real Minimum() const { return minimum(); }
+   virtual Real minimum1(int& i) const;
+   Real Minimum1(int& i) const { return minimum1(i); }
+   virtual Real minimum2(int& i, int& j) const;
+   Real Minimum2(int& i, int& j) const { return minimum2(i,j); }
+   virtual Real trace() const;
+   Real Trace() const { return trace(); }
+   Real norm1() const;
+   Real Norm1() const { return norm1(); }
+   Real norm_infinity() const;
+   Real NormInfinity() const { return norm_infinity(); }
+   virtual MatrixBandWidth bandwidth() const;  // bandwidths of band matrix
+   virtual MatrixBandWidth BandWidth() const { return bandwidth(); }
+   void IEQND() const;                         // called by ineq. ops
+   ReturnMatrix sum_square_columns() const;
+   ReturnMatrix sum_square_rows() const;
+   ReturnMatrix sum_columns() const;
+   ReturnMatrix sum_rows() const;
+   virtual void cleanup() {}
+   void CleanUp() { cleanup(); }
+
+//   virtual ReturnMatrix Reverse() const;       // reverse order of elements
+//protected:
+//   BaseMatrix() : t(this), i(this) {}
+
+   friend class GeneralMatrix;
+   friend class Matrix;
+   friend class SquareMatrix;
+   friend class nricMatrix;
+   friend class RowVector;
+   friend class ColumnVector;
+   friend class SymmetricMatrix;
+   friend class UpperTriangularMatrix;
+   friend class LowerTriangularMatrix;
+   friend class DiagonalMatrix;
+   friend class CroutMatrix;
+   friend class BandMatrix;
+   friend class LowerBandMatrix;
+   friend class UpperBandMatrix;
+   friend class SymmetricBandMatrix;
+   friend class AddedMatrix;
+   friend class MultipliedMatrix;
+   friend class SubtractedMatrix;
+   friend class SPMatrix;
+   friend class KPMatrix;
+   friend class ConcatenatedMatrix;
+   friend class StackedMatrix;
+   friend class SolvedMatrix;
+   friend class ShiftedMatrix;
+   friend class NegShiftedMatrix;
+   friend class ScaledMatrix;
+   friend class TransposedMatrix;
+   friend class ReversedMatrix;
+   friend class NegatedMatrix;
+   friend class InvertedMatrix;
+   friend class RowedMatrix;
+   friend class ColedMatrix;
+   friend class DiagedMatrix;
+   friend class MatedMatrix;
+   friend class GetSubMatrix;
+   friend class ReturnMatrix;
+   friend class LinearEquationSolver;
+   friend class GenericMatrix;
+   NEW_DELETE(BaseMatrix)
+};
+
+
+// ***************************** working classes **************************/
+
+/// The classes for matrices that can contain data are derived from this.
+class GeneralMatrix : public BaseMatrix         // declarable matrix types
+{
+   virtual GeneralMatrix* Image() const;        // copy of matrix
+protected:
+   int tag_val;                                 // shows whether can reuse
+   int nrows_val, ncols_val;                    // dimensions
+   int storage;                                 // total store required
+   Real* store;                                 // point to store (0=not set)
+   GeneralMatrix();                             // initialise with no store
+   GeneralMatrix(ArrayLengthSpecifier);         // constructor getting store
+   void Add(GeneralMatrix*, Real);              // sum of GM and Real
+   void Add(Real);                              // add Real to this
+   void NegAdd(GeneralMatrix*, Real);           // Real - GM
+   void NegAdd(Real);                           // this = this - Real
+   void Multiply(GeneralMatrix*, Real);         // product of GM and Real
+   void Multiply(Real);                         // multiply this by Real
+   void Negate(GeneralMatrix*);                 // change sign
+   void Negate();                               // change sign
+   void ReverseElements();                      // internal reverse of elements
+   void ReverseElements(GeneralMatrix*);        // reverse order of elements
+   void operator=(Real);                        // set matrix to constant
+   Real* GetStore();                            // get store or copy
+   GeneralMatrix* BorrowStore(GeneralMatrix*, MatrixType);
+                                                // temporarily access store
+   void GetMatrix(const GeneralMatrix*);        // used by = and initialise
+   void Eq(const BaseMatrix&, MatrixType);      // used by =
+   void Eq(const GeneralMatrix&);               // version with no conversion
+   void Eq(const BaseMatrix&, MatrixType, bool);// used by <<
+   void Eq2(const BaseMatrix&, MatrixType);     // cut down version of Eq
+   int search(const BaseMatrix*) const;
+   virtual GeneralMatrix* Transpose(TransposedMatrix*, MatrixType);
+   void CheckConversion(const BaseMatrix&);     // check conversion OK
+   void resize(int, int, int);                  // change dimensions
+   virtual short SimpleAddOK(const GeneralMatrix*) { return 0; }
+             // see bandmat.cpp for explanation
+   virtual void MiniCleanUp()
+      { store = 0; storage = 0; nrows_val = 0; ncols_val = 0; tag_val = -1;}
+             // CleanUp when the data array has already been deleted
+   void PlusEqual(const GeneralMatrix& gm);
+   void MinusEqual(const GeneralMatrix& gm);
+   void PlusEqual(Real f);
+   void MinusEqual(Real f);
+   void swap(GeneralMatrix& gm);                // swap values
+public:
+   GeneralMatrix* Evaluate(MatrixType mt=MatrixTypeUnSp);
+   virtual MatrixType type() const = 0;         // type of a matrix
+   MatrixType Type() const { return type(); }
+   int Nrows() const { return nrows_val; }      // get dimensions
+   int Ncols() const { return ncols_val; }
+   int Storage() const { return storage; }
+   Real* Store() const { return store; }
+   // updated names
+   int nrows() const { return nrows_val; }      // get dimensions
+   int ncols() const { return ncols_val; }
+   int size() const { return storage; }
+   Real* data() { return store; }
+   const Real* data() const { return store; }
+   const Real* const_data() const { return store; }
+   virtual ~GeneralMatrix();                    // delete store if set
+   void tDelete();                              // delete if tag_val permits
+   bool reuse();                                // true if tag_val allows reuse
+   void protect() { tag_val=-1; }               // cannot delete or reuse
+   void Protect() { tag_val=-1; }               // cannot delete or reuse
+   int tag() const { return tag_val; }
+   int Tag() const { return tag_val; }
+   bool is_zero() const;                        // test matrix has all zeros
+   bool IsZero() const { return is_zero(); }    // test matrix has all zeros
+   void Release() { tag_val=1; }                // del store after next use
+   void Release(int t) { tag_val=t; }           // del store after t accesses
+   void ReleaseAndDelete() { tag_val=0; }       // delete matrix after use
+   void release() { tag_val=1; }                // del store after next use
+   void release(int t) { tag_val=t; }           // del store after t accesses
+   void release_and_delete() { tag_val=0; }     // delete matrix after use
+   void operator<<(const double*);              // assignment from an array
+   void operator<<(const float*);               // assignment from an array
+   void operator<<(const int*);                 // assignment from an array
+   void operator<<(const BaseMatrix& X)
+      { Eq(X,this->type(),true); }              // = without checking type
+   void inject(const GeneralMatrix&);           // copy stored els only
+   void Inject(const GeneralMatrix& GM) { inject(GM); }
+   void operator+=(const BaseMatrix&);
+   void operator-=(const BaseMatrix&);
+   void operator*=(const BaseMatrix&);
+   void operator|=(const BaseMatrix&);
+   void operator&=(const BaseMatrix&);
+   void operator+=(Real);
+   void operator-=(Real r) { operator+=(-r); }
+   void operator*=(Real);
+   void operator/=(Real r) { operator*=(1.0/r); }
+   virtual GeneralMatrix* MakeSolver();         // for solving
+   virtual void Solver(MatrixColX&, const MatrixColX&) {}
+   virtual void GetRow(MatrixRowCol&) = 0;      // Get matrix row
+   virtual void RestoreRow(MatrixRowCol&) {}    // Restore matrix row
+   virtual void NextRow(MatrixRowCol&);         // Go to next row
+   virtual void GetCol(MatrixRowCol&) = 0;      // Get matrix col
+   virtual void GetCol(MatrixColX&) = 0;        // Get matrix col
+   virtual void RestoreCol(MatrixRowCol&) {}    // Restore matrix col
+   virtual void RestoreCol(MatrixColX&) {}      // Restore matrix col
+   virtual void NextCol(MatrixRowCol&);         // Go to next col
+   virtual void NextCol(MatrixColX&);           // Go to next col
+   Real sum_square() const;
+   Real sum_absolute_value() const;
+   Real sum() const;
+   Real maximum_absolute_value1(int& i) const;
+   Real minimum_absolute_value1(int& i) const;
+   Real maximum1(int& i) const;
+   Real minimum1(int& i) const;
+   Real maximum_absolute_value() const;
+   Real maximum_absolute_value2(int& i, int& j) const;
+   Real minimum_absolute_value() const;
+   Real minimum_absolute_value2(int& i, int& j) const;
+   Real maximum() const;
+   Real maximum2(int& i, int& j) const;
+   Real minimum() const;
+   Real minimum2(int& i, int& j) const;
+   LogAndSign log_determinant() const;
+   virtual bool IsEqual(const GeneralMatrix&) const;
+                                                // same type, same values
+   void CheckStore() const;                     // check store is non-zero
+   virtual void SetParameters(const GeneralMatrix*) {}
+                                                // set parameters in GetMatrix
+   operator ReturnMatrix() const;               // for building a ReturnMatrix
+   ReturnMatrix for_return() const;
+   ReturnMatrix ForReturn() const;
+   //virtual bool SameStorageType(const GeneralMatrix& A) const;
+   //virtual void ReSizeForAdd(const GeneralMatrix& A, const GeneralMatrix& B);
+   //virtual void ReSizeForSP(const GeneralMatrix& A, const GeneralMatrix& B);
+   virtual void resize(const GeneralMatrix& A);
+   virtual void ReSize(const GeneralMatrix& A) { resize(A); }
+   MatrixInput operator<<(double);                // for loading a list
+   MatrixInput operator<<(float);                // for loading a list
+   MatrixInput operator<<(int f);
+//   ReturnMatrix Reverse() const;                // reverse order of elements
+   void cleanup();                              // to clear store
+
+   friend class Matrix;
+   friend class SquareMatrix;
+   friend class nricMatrix;
+   friend class SymmetricMatrix;
+   friend class UpperTriangularMatrix;
+   friend class LowerTriangularMatrix;
+   friend class DiagonalMatrix;
+   friend class CroutMatrix;
+   friend class RowVector;
+   friend class ColumnVector;
+   friend class BandMatrix;
+   friend class LowerBandMatrix;
+   friend class UpperBandMatrix;
+   friend class SymmetricBandMatrix;
+   friend class BaseMatrix;
+   friend class AddedMatrix;
+   friend class MultipliedMatrix;
+   friend class SubtractedMatrix;
+   friend class SPMatrix;
+   friend class KPMatrix;
+   friend class ConcatenatedMatrix;
+   friend class StackedMatrix;
+   friend class SolvedMatrix;
+   friend class ShiftedMatrix;
+   friend class NegShiftedMatrix;
+   friend class ScaledMatrix;
+   friend class TransposedMatrix;
+   friend class ReversedMatrix;
+   friend class NegatedMatrix;
+   friend class InvertedMatrix;
+   friend class RowedMatrix;
+   friend class ColedMatrix;
+   friend class DiagedMatrix;
+   friend class MatedMatrix;
+   friend class GetSubMatrix;
+   friend class ReturnMatrix;
+   friend class LinearEquationSolver;
+   friend class GenericMatrix;
+   NEW_DELETE(GeneralMatrix)
+};
+
+
+/// The usual rectangular matrix.
+class Matrix : public GeneralMatrix
+{
+   GeneralMatrix* Image() const;                // copy of matrix
+public:
+   Matrix() {}
+   ~Matrix() {}
+   Matrix(int, int);                            // standard declaration
+   Matrix(const BaseMatrix&);                   // evaluate BaseMatrix
+   void operator=(const BaseMatrix&);
+   void operator=(Real f) { GeneralMatrix::operator=(f); }
+   void operator=(const Matrix& m) { Eq(m); }
+   MatrixType type() const;
+   Real& operator()(int, int);                  // access element
+   Real& element(int, int);                     // access element
+   Real operator()(int, int) const;             // access element
+   Real element(int, int) const;                // access element
+#ifdef SETUP_C_SUBSCRIPTS
+   Real* operator[](int m) { return store+m*ncols_val; }
+   const Real* operator[](int m) const { return store+m*ncols_val; }
+   // following for Numerical Recipes in C++
+   Matrix(Real, int, int);
+   Matrix(const Real*, int, int);
+#endif
+   Matrix(const Matrix& gm) : GeneralMatrix() { GetMatrix(&gm); }
+   GeneralMatrix* MakeSolver();
+   Real trace() const;
+   void GetRow(MatrixRowCol&);
+   void GetCol(MatrixRowCol&);
+   void GetCol(MatrixColX&);
+   void RestoreCol(MatrixRowCol&);
+   void RestoreCol(MatrixColX&);
+   void NextRow(MatrixRowCol&);
+   void NextCol(MatrixRowCol&);
+   void NextCol(MatrixColX&);
+   virtual void resize(int,int);           // change dimensions
+      // virtual so we will catch it being used in a vector called as a matrix
+   virtual void resize_keep(int,int);
+   virtual void ReSize(int m, int n) { resize(m, n); }
+   void resize(const GeneralMatrix& A);
+   void ReSize(const GeneralMatrix& A) { resize(A); }
+   Real maximum_absolute_value2(int& i, int& j) const;
+   Real minimum_absolute_value2(int& i, int& j) const;
+   Real maximum2(int& i, int& j) const;
+   Real minimum2(int& i, int& j) const;
+   void operator+=(const Matrix& M) { PlusEqual(M); }
+   void operator-=(const Matrix& M) { MinusEqual(M); }
+   void operator+=(Real f) { GeneralMatrix::Add(f); }
+   void operator-=(Real f) { GeneralMatrix::Add(-f); }
+   void swap(Matrix& gm) { GeneralMatrix::swap((GeneralMatrix&)gm); }
+   friend Real dotproduct(const Matrix& A, const Matrix& B);
+   NEW_DELETE(Matrix)
+};
+
+/// Square matrix.
+class SquareMatrix : public Matrix
+{
+   GeneralMatrix* Image() const;                // copy of matrix
+public:
+   SquareMatrix() {}
+   ~SquareMatrix() {}
+   SquareMatrix(ArrayLengthSpecifier);          // standard declaration
+   SquareMatrix(const BaseMatrix&);             // evaluate BaseMatrix
+   void operator=(const BaseMatrix&);
+   void operator=(Real f) { GeneralMatrix::operator=(f); }
+   void operator=(const SquareMatrix& m) { Eq(m); }
+   void operator=(const Matrix& m);
+   MatrixType type() const;
+   SquareMatrix(const SquareMatrix& gm) : Matrix() { GetMatrix(&gm); }
+   SquareMatrix(const Matrix& gm);
+   void resize(int);                            // change dimensions
+   void ReSize(int m) { resize(m); }
+   void resize_keep(int);
+   void resize_keep(int,int);
+   void resize(int,int);                        // change dimensions
+   void ReSize(int m, int n) { resize(m, n); }
+   void resize(const GeneralMatrix& A);
+   void ReSize(const GeneralMatrix& A) { resize(A); }
+   void operator+=(const Matrix& M) { PlusEqual(M); }
+   void operator-=(const Matrix& M) { MinusEqual(M); }
+   void operator+=(Real f) { GeneralMatrix::Add(f); }
+   void operator-=(Real f) { GeneralMatrix::Add(-f); }
+   void swap(SquareMatrix& gm) { GeneralMatrix::swap((GeneralMatrix&)gm); }
+   NEW_DELETE(SquareMatrix)
+};
+
+/// Rectangular matrix for use with Numerical Recipes in C.
+class nricMatrix : public Matrix
+{
+   GeneralMatrix* Image() const;                // copy of matrix
+   Real** row_pointer;                          // points to rows
+   void MakeRowPointer();                       // build rowpointer
+   void DeleteRowPointer();
+public:
+   nricMatrix() {}
+   nricMatrix(int m, int n)                     // standard declaration
+      :  Matrix(m,n) { MakeRowPointer(); }
+   nricMatrix(const BaseMatrix& bm)             // evaluate BaseMatrix
+      :  Matrix(bm) { MakeRowPointer(); }
+   void operator=(const BaseMatrix& bm)
+      { DeleteRowPointer(); Matrix::operator=(bm); MakeRowPointer(); }
+   void operator=(Real f) { GeneralMatrix::operator=(f); }
+   void operator=(const nricMatrix& m)
+      { DeleteRowPointer(); Eq(m); MakeRowPointer(); }
+   void operator<<(const BaseMatrix& X)
+      { DeleteRowPointer(); Eq(X,this->type(),true); MakeRowPointer(); }
+   nricMatrix(const nricMatrix& gm) : Matrix()
+      { GetMatrix(&gm); MakeRowPointer(); }
+   void resize(int m, int n)               // change dimensions
+      { DeleteRowPointer(); Matrix::resize(m,n); MakeRowPointer(); }
+   void resize_keep(int m, int n)               // change dimensions
+      { DeleteRowPointer(); Matrix::resize_keep(m,n); MakeRowPointer(); }
+   void ReSize(int m, int n)               // change dimensions
+      { DeleteRowPointer(); Matrix::resize(m,n); MakeRowPointer(); }
+   void resize(const GeneralMatrix& A);
+   void ReSize(const GeneralMatrix& A) { resize(A); }
+   ~nricMatrix() { DeleteRowPointer(); }
+   Real** nric() const { CheckStore(); return row_pointer-1; }
+   void cleanup();                                // to clear store
+   void MiniCleanUp();
+   void operator+=(const Matrix& M) { PlusEqual(M); }
+   void operator-=(const Matrix& M) { MinusEqual(M); }
+   void operator+=(Real f) { GeneralMatrix::Add(f); }
+   void operator-=(Real f) { GeneralMatrix::Add(-f); }
+   void swap(nricMatrix& gm);
+   NEW_DELETE(nricMatrix)
+};
+
+/// Symmetric matrix.
+class SymmetricMatrix : public GeneralMatrix
+{
+   GeneralMatrix* Image() const;                // copy of matrix
+public:
+   SymmetricMatrix() {}
+   ~SymmetricMatrix() {}
+   SymmetricMatrix(ArrayLengthSpecifier);
+   SymmetricMatrix(const BaseMatrix&);
+   void operator=(const BaseMatrix&);
+   void operator=(Real f) { GeneralMatrix::operator=(f); }
+   void operator=(const SymmetricMatrix& m) { Eq(m); }
+   Real& operator()(int, int);                  // access element
+   Real& element(int, int);                     // access element
+   Real operator()(int, int) const;             // access element
+   Real element(int, int) const;                // access element
+#ifdef SETUP_C_SUBSCRIPTS
+   Real* operator[](int m) { return store+(m*(m+1))/2; }
+   const Real* operator[](int m) const { return store+(m*(m+1))/2; }
+#endif
+   MatrixType type() const;
+   SymmetricMatrix(const SymmetricMatrix& gm)
+      : GeneralMatrix() { GetMatrix(&gm); }
+   Real sum_square() const;
+   Real sum_absolute_value() const;
+   Real sum() const;
+   Real trace() const;
+   void GetRow(MatrixRowCol&);
+   void GetCol(MatrixRowCol&);
+   void GetCol(MatrixColX&);
+   void RestoreCol(MatrixRowCol&) {}
+   void RestoreCol(MatrixColX&);
+   GeneralMatrix* Transpose(TransposedMatrix*, MatrixType);
+   void resize(int);                           // change dimensions
+   void ReSize(int m) { resize(m); }
+   void resize_keep(int);
+   void resize(const GeneralMatrix& A);
+   void ReSize(const GeneralMatrix& A) { resize(A); }
+   void operator+=(const SymmetricMatrix& M) { PlusEqual(M); }
+   void operator-=(const SymmetricMatrix& M) { MinusEqual(M); }
+   void operator+=(Real f) { GeneralMatrix::Add(f); }
+   void operator-=(Real f) { GeneralMatrix::Add(-f); }
+   void swap(SymmetricMatrix& gm) { GeneralMatrix::swap((GeneralMatrix&)gm); }
+   NEW_DELETE(SymmetricMatrix)
+};
+
+/// Upper triangular matrix.
+class UpperTriangularMatrix : public GeneralMatrix
+{
+   GeneralMatrix* Image() const;                // copy of matrix
+public:
+   UpperTriangularMatrix() {}
+   ~UpperTriangularMatrix() {}
+   UpperTriangularMatrix(ArrayLengthSpecifier);
+   void operator=(const BaseMatrix&);
+   void operator=(const UpperTriangularMatrix& m) { Eq(m); }
+   UpperTriangularMatrix(const BaseMatrix&);
+   UpperTriangularMatrix(const UpperTriangularMatrix& gm)
+      : GeneralMatrix() { GetMatrix(&gm); }
+   void operator=(Real f) { GeneralMatrix::operator=(f); }
+   Real& operator()(int, int);                  // access element
+   Real& element(int, int);                     // access element
+   Real operator()(int, int) const;             // access element
+   Real element(int, int) const;                // access element
+#ifdef SETUP_C_SUBSCRIPTS
+   Real* operator[](int m) { return store+m*ncols_val-(m*(m+1))/2; }
+   const Real* operator[](int m) const
+      { return store+m*ncols_val-(m*(m+1))/2; }
+#endif
+   MatrixType type() const;
+   GeneralMatrix* MakeSolver() { return this; } // for solving
+   void Solver(MatrixColX&, const MatrixColX&);
+   LogAndSign log_determinant() const;
+   Real trace() const;
+   void GetRow(MatrixRowCol&);
+   void GetCol(MatrixRowCol&);
+   void GetCol(MatrixColX&);
+   void RestoreCol(MatrixRowCol&);
+   void RestoreCol(MatrixColX& c) { RestoreCol((MatrixRowCol&)c); }
+   void NextRow(MatrixRowCol&);
+   void resize(int);                       // change dimensions
+   void ReSize(int m) { resize(m); }
+   void resize(const GeneralMatrix& A);
+   void ReSize(const GeneralMatrix& A) { resize(A); }
+   void resize_keep(int);
+   MatrixBandWidth bandwidth() const;
+   void operator+=(const UpperTriangularMatrix& M) { PlusEqual(M); }
+   void operator-=(const UpperTriangularMatrix& M) { MinusEqual(M); }
+   void operator+=(Real f) { GeneralMatrix::operator+=(f); }
+   void operator-=(Real f) { GeneralMatrix::operator-=(f); }
+   void swap(UpperTriangularMatrix& gm)
+      { GeneralMatrix::swap((GeneralMatrix&)gm); }
+   NEW_DELETE(UpperTriangularMatrix)
+};
+
+/// Lower triangular matrix.
+class LowerTriangularMatrix : public GeneralMatrix
+{
+   GeneralMatrix* Image() const;                // copy of matrix
+public:
+   LowerTriangularMatrix() {}
+   ~LowerTriangularMatrix() {}
+   LowerTriangularMatrix(ArrayLengthSpecifier);
+   LowerTriangularMatrix(const LowerTriangularMatrix& gm)
+      : GeneralMatrix() { GetMatrix(&gm); }
+   LowerTriangularMatrix(const BaseMatrix& M);
+   void operator=(const BaseMatrix&);
+   void operator=(Real f) { GeneralMatrix::operator=(f); }
+   void operator=(const LowerTriangularMatrix& m) { Eq(m); }
+   Real& operator()(int, int);                  // access element
+   Real& element(int, int);                     // access element
+   Real operator()(int, int) const;             // access element
+   Real element(int, int) const;                // access element
+#ifdef SETUP_C_SUBSCRIPTS
+   Real* operator[](int m) { return store+(m*(m+1))/2; }
+   const Real* operator[](int m) const { return store+(m*(m+1))/2; }
+#endif
+   MatrixType type() const;
+   GeneralMatrix* MakeSolver() { return this; } // for solving
+   void Solver(MatrixColX&, const MatrixColX&);
+   LogAndSign log_determinant() const;
+   Real trace() const;
+   void GetRow(MatrixRowCol&);
+   void GetCol(MatrixRowCol&);
+   void GetCol(MatrixColX&);
+   void RestoreCol(MatrixRowCol&);
+   void RestoreCol(MatrixColX& c) { RestoreCol((MatrixRowCol&)c); }
+   void NextRow(MatrixRowCol&);
+   void resize(int);                       // change dimensions
+   void ReSize(int m) { resize(m); }
+   void resize_keep(int);
+   void resize(const GeneralMatrix& A);
+   void ReSize(const GeneralMatrix& A) { resize(A); }
+   MatrixBandWidth bandwidth() const;
+   void operator+=(const LowerTriangularMatrix& M) { PlusEqual(M); }
+   void operator-=(const LowerTriangularMatrix& M) { MinusEqual(M); }
+   void operator+=(Real f) { GeneralMatrix::operator+=(f); }
+   void operator-=(Real f) { GeneralMatrix::operator-=(f); }
+   void swap(LowerTriangularMatrix& gm)
+      { GeneralMatrix::swap((GeneralMatrix&)gm); }
+   NEW_DELETE(LowerTriangularMatrix)
+};
+
+/// Diagonal matrix.
+class DiagonalMatrix : public GeneralMatrix
+{
+   GeneralMatrix* Image() const;                // copy of matrix
+public:
+   DiagonalMatrix() {}
+   ~DiagonalMatrix() {}
+   DiagonalMatrix(ArrayLengthSpecifier);
+   DiagonalMatrix(const BaseMatrix&);
+   DiagonalMatrix(const DiagonalMatrix& gm)
+      : GeneralMatrix() { GetMatrix(&gm); }
+   void operator=(const BaseMatrix&);
+   void operator=(Real f) { GeneralMatrix::operator=(f); }
+   void operator=(const DiagonalMatrix& m) { Eq(m); }
+   Real& operator()(int, int);                  // access element
+   Real& operator()(int);                       // access element
+   Real operator()(int, int) const;             // access element
+   Real operator()(int) const;
+   Real& element(int, int);                     // access element
+   Real& element(int);                          // access element
+   Real element(int, int) const;                // access element
+   Real element(int) const;                     // access element
+#ifdef SETUP_C_SUBSCRIPTS
+   Real& operator[](int m) { return store[m]; }
+   const Real& operator[](int m) const { return store[m]; }
+#endif
+   MatrixType type() const;
+
+   LogAndSign log_determinant() const;
+   Real trace() const;
+   void GetRow(MatrixRowCol&);
+   void GetCol(MatrixRowCol&);
+   void GetCol(MatrixColX&);
+   void NextRow(MatrixRowCol&);
+   void NextCol(MatrixRowCol&);
+   void NextCol(MatrixColX&);
+   GeneralMatrix* MakeSolver() { return this; } // for solving
+   void Solver(MatrixColX&, const MatrixColX&);
+   GeneralMatrix* Transpose(TransposedMatrix*, MatrixType);
+   void resize(int);                       // change dimensions
+   void ReSize(int m) { resize(m); }
+   void resize_keep(int);
+   void resize(const GeneralMatrix& A);
+   void ReSize(const GeneralMatrix& A) { resize(A); }
+   Real* nric() const
+      { CheckStore(); return store-1; }         // for use by NRIC
+   MatrixBandWidth bandwidth() const;
+//   ReturnMatrix Reverse() const;                // reverse order of elements
+   void operator+=(const DiagonalMatrix& M) { PlusEqual(M); }
+   void operator-=(const DiagonalMatrix& M) { MinusEqual(M); }
+   void operator+=(Real f) { GeneralMatrix::operator+=(f); }
+   void operator-=(Real f) { GeneralMatrix::operator-=(f); }
+   void swap(DiagonalMatrix& gm)
+      { GeneralMatrix::swap((GeneralMatrix&)gm); }
+   NEW_DELETE(DiagonalMatrix)
+};
+
+/// Row vector.
+class RowVector : public Matrix
+{
+   GeneralMatrix* Image() const;                // copy of matrix
+public:
+   RowVector() { nrows_val = 1; }
+   ~RowVector() {}
+   RowVector(ArrayLengthSpecifier n) : Matrix(1,n.Value()) {}
+   RowVector(const BaseMatrix&);
+   RowVector(const RowVector& gm) : Matrix() { GetMatrix(&gm); }
+   void operator=(const BaseMatrix&);
+   void operator=(Real f) { GeneralMatrix::operator=(f); }
+   void operator=(const RowVector& m) { Eq(m); }
+   Real& operator()(int);                       // access element
+   Real& element(int);                          // access element
+   Real operator()(int) const;                  // access element
+   Real element(int) const;                     // access element
+#ifdef SETUP_C_SUBSCRIPTS
+   Real& operator[](int m) { return store[m]; }
+   const Real& operator[](int m) const { return store[m]; }
+   // following for Numerical Recipes in C++
+   RowVector(Real a, int n) : Matrix(a, 1, n) {}
+   RowVector(const Real* a, int n) : Matrix(a, 1, n) {}
+#endif
+   MatrixType type() const;
+   void GetCol(MatrixRowCol&);
+   void GetCol(MatrixColX&);
+   void NextCol(MatrixRowCol&);
+   void NextCol(MatrixColX&);
+   void RestoreCol(MatrixRowCol&) {}
+   void RestoreCol(MatrixColX& c);
+   GeneralMatrix* Transpose(TransposedMatrix*, MatrixType);
+   void resize(int);                       // change dimensions
+   void ReSize(int m) { resize(m); }
+   void resize_keep(int);
+   void resize_keep(int,int);
+   void resize(int,int);                   // in case access is matrix
+   void ReSize(int m,int n) { resize(m, n); }
+   void resize(const GeneralMatrix& A);
+   void ReSize(const GeneralMatrix& A) { resize(A); }
+   Real* nric() const
+      { CheckStore(); return store-1; }         // for use by NRIC
+   void cleanup();                              // to clear store
+   void MiniCleanUp()
+      { store = 0; storage = 0; nrows_val = 1; ncols_val = 0; tag_val = -1; }
+   // friend ReturnMatrix GetMatrixRow(Matrix& A, int row);
+   void operator+=(const Matrix& M) { PlusEqual(M); }
+   void operator-=(const Matrix& M) { MinusEqual(M); }
+   void operator+=(Real f) { GeneralMatrix::Add(f); }
+   void operator-=(Real f) { GeneralMatrix::Add(-f); }
+   void swap(RowVector& gm)
+      { GeneralMatrix::swap((GeneralMatrix&)gm); }
+   NEW_DELETE(RowVector)
+};
+
+/// Column vector.
+class ColumnVector : public Matrix
+{
+   GeneralMatrix* Image() const;                // copy of matrix
+public:
+   ColumnVector() { ncols_val = 1; }
+   ~ColumnVector() {}
+   ColumnVector(ArrayLengthSpecifier n) : Matrix(n.Value(),1) {}
+   ColumnVector(const BaseMatrix&);
+   ColumnVector(const ColumnVector& gm) : Matrix() { GetMatrix(&gm); }
+   void operator=(const BaseMatrix&);
+   void operator=(Real f) { GeneralMatrix::operator=(f); }
+   void operator=(const ColumnVector& m) { Eq(m); }
+   Real& operator()(int);                       // access element
+   Real& element(int);                          // access element
+   Real operator()(int) const;                  // access element
+   Real element(int) const;                     // access element
+#ifdef SETUP_C_SUBSCRIPTS
+   Real& operator[](int m) { return store[m]; }
+   const Real& operator[](int m) const { return store[m]; }
+   // following for Numerical Recipes in C++
+   ColumnVector(Real a, int m) : Matrix(a, m, 1) {}
+   ColumnVector(const Real* a, int m) : Matrix(a, m, 1) {}
+#endif
+   MatrixType type() const;
+   GeneralMatrix* Transpose(TransposedMatrix*, MatrixType);
+   void resize(int);                       // change dimensions
+   void ReSize(int m) { resize(m); }
+   void resize_keep(int);
+   void resize_keep(int,int);
+   void resize(int,int);                   // in case access is matrix
+   void ReSize(int m,int n) { resize(m, n); }
+   void resize(const GeneralMatrix& A);
+   void ReSize(const GeneralMatrix& A) { resize(A); }
+   Real* nric() const
+      { CheckStore(); return store-1; }         // for use by NRIC
+   void cleanup();                              // to clear store
+   void MiniCleanUp()
+      { store = 0; storage = 0; nrows_val = 0; ncols_val = 1; tag_val = -1; }
+//   ReturnMatrix Reverse() const;                // reverse order of elements
+   void operator+=(const Matrix& M) { PlusEqual(M); }
+   void operator-=(const Matrix& M) { MinusEqual(M); }
+   void operator+=(Real f) { GeneralMatrix::Add(f); }
+   void operator-=(Real f) { GeneralMatrix::Add(-f); }
+   void swap(ColumnVector& gm)
+      { GeneralMatrix::swap((GeneralMatrix&)gm); }
+   NEW_DELETE(ColumnVector)
+};
+
+/// LU matrix.
+/// A square matrix decomposed into upper and lower triangular
+/// in preparation for inverting or solving equations.
+class CroutMatrix : public GeneralMatrix
+{
+   int* indx;
+   bool d;                              // number of row swaps = even or odd
+   bool sing;
+   void ludcmp();
+   void get_aux(CroutMatrix&);                  // for copying indx[] etc
+   GeneralMatrix* Image() const;                // copy of matrix
+public:
+   CroutMatrix(const BaseMatrix&);
+   CroutMatrix() : indx(0), d(true), sing(true) {}
+   CroutMatrix(const CroutMatrix&);
+   void operator=(const CroutMatrix&);
+   GeneralMatrix* Evaluate(MatrixType mt=MatrixTypeUnSp);
+   MatrixType type() const;
+   void lubksb(Real*, int=0);
+   ~CroutMatrix();
+   GeneralMatrix* MakeSolver() { return this; } // for solving
+   LogAndSign log_determinant() const;
+   void Solver(MatrixColX&, const MatrixColX&);
+   void GetRow(MatrixRowCol&);
+   void GetCol(MatrixRowCol&);
+   void GetCol(MatrixColX& c) { GetCol((MatrixRowCol&)c); }
+   void cleanup();                                // to clear store
+   void MiniCleanUp();
+   bool IsEqual(const GeneralMatrix&) const;
+   bool is_singular() const { return sing; }
+   bool IsSingular() const { return sing; }
+   const int* const_data_indx() const { return indx; }
+   bool even_exchanges() const { return d; }
+   void swap(CroutMatrix& gm);
+   NEW_DELETE(CroutMatrix)
+};
+
+// ***************************** band matrices ***************************/
+
+/// Band matrix.
+class BandMatrix : public GeneralMatrix
+{
+   GeneralMatrix* Image() const;                // copy of matrix
+protected:
+   void CornerClear() const;                    // set unused elements to zero
+   short SimpleAddOK(const GeneralMatrix* gm);
+public:
+   int lower_val, upper_val;                            // band widths
+   BandMatrix() { lower_val=0; upper_val=0; CornerClear(); }
+   ~BandMatrix() {}
+   BandMatrix(int n,int lb,int ub) { resize(n,lb,ub); CornerClear(); }
+                                                // standard declaration
+   BandMatrix(const BaseMatrix&);               // evaluate BaseMatrix
+   void operator=(const BaseMatrix&);
+   void operator=(Real f) { GeneralMatrix::operator=(f); }
+   void operator=(const BandMatrix& m) { Eq(m); }
+   MatrixType type() const;
+   Real& operator()(int, int);                  // access element
+   Real& element(int, int);                     // access element
+   Real operator()(int, int) const;             // access element
+   Real element(int, int) const;                // access element
+#ifdef SETUP_C_SUBSCRIPTS
+   Real* operator[](int m) { return store+(upper_val+lower_val)*m+lower_val; }
+   const Real* operator[](int m) const
+      { return store+(upper_val+lower_val)*m+lower_val; }
+#endif
+   BandMatrix(const BandMatrix& gm) : GeneralMatrix() { GetMatrix(&gm); }
+   LogAndSign log_determinant() const;
+   GeneralMatrix* MakeSolver();
+   Real trace() const;
+   Real sum_square() const
+      { CornerClear(); return GeneralMatrix::sum_square(); }
+   Real sum_absolute_value() const
+      { CornerClear(); return GeneralMatrix::sum_absolute_value(); }
+   Real sum() const
+      { CornerClear(); return GeneralMatrix::sum(); }
+   Real maximum_absolute_value() const
+      { CornerClear(); return GeneralMatrix::maximum_absolute_value(); }
+   Real minimum_absolute_value() const
+      { int i, j; return GeneralMatrix::minimum_absolute_value2(i, j); }
+   Real maximum() const { int i, j; return GeneralMatrix::maximum2(i, j); }
+   Real minimum() const { int i, j; return GeneralMatrix::minimum2(i, j); }
+   void GetRow(MatrixRowCol&);
+   void GetCol(MatrixRowCol&);
+   void GetCol(MatrixColX&);
+   void RestoreCol(MatrixRowCol&);
+   void RestoreCol(MatrixColX& c) { RestoreCol((MatrixRowCol&)c); }
+   void NextRow(MatrixRowCol&);
+   virtual void resize(int, int, int);             // change dimensions
+   virtual void ReSize(int m, int n, int b) { resize(m, n, b); }
+   void resize(const GeneralMatrix& A);
+   void ReSize(const GeneralMatrix& A) { resize(A); }
+   //bool SameStorageType(const GeneralMatrix& A) const;
+   //void ReSizeForAdd(const GeneralMatrix& A, const GeneralMatrix& B);
+   //void ReSizeForSP(const GeneralMatrix& A, const GeneralMatrix& B);
+   MatrixBandWidth bandwidth() const;
+   void SetParameters(const GeneralMatrix*);
+   MatrixInput operator<<(double);                // will give error
+   MatrixInput operator<<(float);                // will give error
+   MatrixInput operator<<(int f);
+   void operator<<(const double* r);              // will give error
+   void operator<<(const float* r);              // will give error
+   void operator<<(const int* r);               // will give error
+      // the next is included because Zortech and Borland
+      // cannot find the copy in GeneralMatrix
+   void operator<<(const BaseMatrix& X) { GeneralMatrix::operator<<(X); }
+   void swap(BandMatrix& gm);
+   NEW_DELETE(BandMatrix)
+};
+
+/// Upper triangular band matrix.
+class UpperBandMatrix : public BandMatrix
+{
+   GeneralMatrix* Image() const;                // copy of matrix
+public:
+   UpperBandMatrix() {}
+   ~UpperBandMatrix() {}
+   UpperBandMatrix(int n, int ubw)              // standard declaration
+      : BandMatrix(n, 0, ubw) {}
+   UpperBandMatrix(const BaseMatrix&);          // evaluate BaseMatrix
+   void operator=(const BaseMatrix&);
+   void operator=(Real f) { GeneralMatrix::operator=(f); }
+   void operator=(const UpperBandMatrix& m) { Eq(m); }
+   MatrixType type() const;
+   UpperBandMatrix(const UpperBandMatrix& gm) : BandMatrix() { GetMatrix(&gm); }
+   GeneralMatrix* MakeSolver() { return this; }
+   void Solver(MatrixColX&, const MatrixColX&);
+   LogAndSign log_determinant() const;
+   void resize(int, int, int);             // change dimensions
+   void ReSize(int m, int n, int b) { resize(m, n, b); }
+   void resize(int n,int ubw)              // change dimensions
+      { BandMatrix::resize(n,0,ubw); }
+   void ReSize(int n,int ubw)              // change dimensions
+      { BandMatrix::resize(n,0,ubw); }
+   void resize(const GeneralMatrix& A) { BandMatrix::resize(A); }
+   void ReSize(const GeneralMatrix& A) { BandMatrix::resize(A); }
+   Real& operator()(int, int);
+   Real operator()(int, int) const;
+   Real& element(int, int);
+   Real element(int, int) const;
+#ifdef SETUP_C_SUBSCRIPTS
+   Real* operator[](int m) { return store+upper_val*m; }
+   const Real* operator[](int m) const { return store+upper_val*m; }
+#endif
+   void swap(UpperBandMatrix& gm)
+      { BandMatrix::swap((BandMatrix&)gm); }
+   NEW_DELETE(UpperBandMatrix)
+};
+
+/// Lower triangular band matrix.
+class LowerBandMatrix : public BandMatrix
+{
+   GeneralMatrix* Image() const;                // copy of matrix
+public:
+   LowerBandMatrix() {}
+   ~LowerBandMatrix() {}
+   LowerBandMatrix(int n, int lbw)              // standard declaration
+      : BandMatrix(n, lbw, 0) {}
+   LowerBandMatrix(const BaseMatrix&);          // evaluate BaseMatrix
+   void operator=(const BaseMatrix&);
+   void operator=(Real f) { GeneralMatrix::operator=(f); }
+   void operator=(const LowerBandMatrix& m) { Eq(m); }
+   MatrixType type() const;
+   LowerBandMatrix(const LowerBandMatrix& gm) : BandMatrix() { GetMatrix(&gm); }
+   GeneralMatrix* MakeSolver() { return this; }
+   void Solver(MatrixColX&, const MatrixColX&);
+   LogAndSign log_determinant() const;
+   void resize(int, int, int);             // change dimensions
+   void ReSize(int m, int n, int b) { resize(m, n, b); }
+   void resize(int n,int lbw)             // change dimensions
+      { BandMatrix::resize(n,lbw,0); }
+   void ReSize(int n,int lbw)             // change dimensions
+      { BandMatrix::resize(n,lbw,0); }
+   void resize(const GeneralMatrix& A) { BandMatrix::resize(A); }
+   void ReSize(const GeneralMatrix& A) { BandMatrix::resize(A); }
+   Real& operator()(int, int);
+   Real operator()(int, int) const;
+   Real& element(int, int);
+   Real element(int, int) const;
+#ifdef SETUP_C_SUBSCRIPTS
+   Real* operator[](int m) { return store+lower_val*(m+1); }
+   const Real* operator[](int m) const { return store+lower_val*(m+1); }
+#endif
+   void swap(LowerBandMatrix& gm)
+      { BandMatrix::swap((BandMatrix&)gm); }
+   NEW_DELETE(LowerBandMatrix)
+};
+
+/// Symmetric band matrix.
+class SymmetricBandMatrix : public GeneralMatrix
+{
+   GeneralMatrix* Image() const;                // copy of matrix
+   void CornerClear() const;                    // set unused elements to zero
+   short SimpleAddOK(const GeneralMatrix* gm);
+public:
+   int lower_val;                                   // lower band width
+   SymmetricBandMatrix() { lower_val=0; CornerClear(); }
+   ~SymmetricBandMatrix() {}
+   SymmetricBandMatrix(int n, int lb) { resize(n,lb); CornerClear(); }
+   SymmetricBandMatrix(const BaseMatrix&);
+   void operator=(const BaseMatrix&);
+   void operator=(Real f) { GeneralMatrix::operator=(f); }
+   void operator=(const SymmetricBandMatrix& m) { Eq(m); }
+   Real& operator()(int, int);                  // access element
+   Real& element(int, int);                     // access element
+   Real operator()(int, int) const;             // access element
+   Real element(int, int) const;                // access element
+#ifdef SETUP_C_SUBSCRIPTS
+   Real* operator[](int m) { return store+lower_val*(m+1); }
+   const Real* operator[](int m) const { return store+lower_val*(m+1); }
+#endif
+   MatrixType type() const;
+   SymmetricBandMatrix(const SymmetricBandMatrix& gm)
+      : GeneralMatrix() { GetMatrix(&gm); }
+   GeneralMatrix* MakeSolver();
+   Real sum_square() const;
+   Real sum_absolute_value() const;
+   Real sum() const;
+   Real maximum_absolute_value() const
+      { CornerClear(); return GeneralMatrix::maximum_absolute_value(); }
+   Real minimum_absolute_value() const
+      { int i, j; return GeneralMatrix::minimum_absolute_value2(i, j); }
+   Real maximum() const { int i, j; return GeneralMatrix::maximum2(i, j); }
+   Real minimum() const { int i, j; return GeneralMatrix::minimum2(i, j); }
+   Real trace() const;
+   LogAndSign log_determinant() const;
+   void GetRow(MatrixRowCol&);
+   void GetCol(MatrixRowCol&);
+   void GetCol(MatrixColX&);
+   void RestoreCol(MatrixRowCol&) {}
+   void RestoreCol(MatrixColX&);
+   GeneralMatrix* Transpose(TransposedMatrix*, MatrixType);
+   void resize(int,int);                       // change dimensions
+   void ReSize(int m,int b) { resize(m, b); }
+   void resize(const GeneralMatrix& A);
+   void ReSize(const GeneralMatrix& A) { resize(A); }
+   //bool SameStorageType(const GeneralMatrix& A) const;
+   //void ReSizeForAdd(const GeneralMatrix& A, const GeneralMatrix& B);
+   //void ReSizeForSP(const GeneralMatrix& A, const GeneralMatrix& B);
+   MatrixBandWidth bandwidth() const;
+   void SetParameters(const GeneralMatrix*);
+   void operator<<(const double* r);              // will give error
+   void operator<<(const float* r);              // will give error
+   void operator<<(const int* r);               // will give error
+   void operator<<(const BaseMatrix& X) { GeneralMatrix::operator<<(X); }
+   void swap(SymmetricBandMatrix& gm);
+   NEW_DELETE(SymmetricBandMatrix)
+};
+
+/// LU decomposition of a band matrix.
+class BandLUMatrix : public GeneralMatrix
+{
+   int* indx;
+   bool d;
+   bool sing;                                   // true if singular
+   Real* store2;
+   int storage2;
+   int m1,m2;                                   // lower and upper
+   void ludcmp();
+   void get_aux(BandLUMatrix&);                 // for copying indx[] etc
+   GeneralMatrix* Image() const;                // copy of matrix
+public:
+   BandLUMatrix(const BaseMatrix&);
+   BandLUMatrix()
+     : indx(0), d(true), sing(true), store2(0), storage2(0), m1(0), m2(0) {}
+   BandLUMatrix(const BandLUMatrix&);
+   void operator=(const BandLUMatrix&);
+   GeneralMatrix* Evaluate(MatrixType mt=MatrixTypeUnSp);
+   MatrixType type() const;
+   void lubksb(Real*, int=0);
+   ~BandLUMatrix();
+   GeneralMatrix* MakeSolver() { return this; } // for solving
+   LogAndSign log_determinant() const;
+   void Solver(MatrixColX&, const MatrixColX&);
+   void GetRow(MatrixRowCol&);
+   void GetCol(MatrixRowCol&);
+   void GetCol(MatrixColX& c) { GetCol((MatrixRowCol&)c); }
+   void cleanup();                                // to clear store
+   void MiniCleanUp();
+   bool IsEqual(const GeneralMatrix&) const;
+   bool is_singular() const { return sing; }
+   bool IsSingular() const { return sing; }
+   const Real* const_data2() const { return store2; }
+   int size2() const { return storage2; }
+   const int* const_data_indx() const { return indx; }
+   bool even_exchanges() const { return d; }
+   MatrixBandWidth bandwidth() const;
+   void swap(BandLUMatrix& gm);
+   NEW_DELETE(BandLUMatrix)
+};
+
+// ************************** special matrices ****************************
+
+/// Identity matrix.
+class IdentityMatrix : public GeneralMatrix
+{
+   GeneralMatrix* Image() const;          // copy of matrix
+public:
+   IdentityMatrix() {}
+   ~IdentityMatrix() {}
+   IdentityMatrix(ArrayLengthSpecifier n) : GeneralMatrix(1)
+      { nrows_val = ncols_val = n.Value(); *store = 1; }
+   IdentityMatrix(const IdentityMatrix& gm)
+      : GeneralMatrix() { GetMatrix(&gm); }
+   IdentityMatrix(const BaseMatrix&);
+   void operator=(const BaseMatrix&);
+   void operator=(const IdentityMatrix& m) { Eq(m); }
+   void operator=(Real f) { GeneralMatrix::operator=(f); }
+   MatrixType type() const;
+
+   LogAndSign log_determinant() const;
+   Real trace() const;
+   Real sum_square() const;
+   Real sum_absolute_value() const;
+   Real sum() const { return trace(); }
+   void GetRow(MatrixRowCol&);
+   void GetCol(MatrixRowCol&);
+   void GetCol(MatrixColX&);
+   void NextRow(MatrixRowCol&);
+   void NextCol(MatrixRowCol&);
+   void NextCol(MatrixColX&);
+   GeneralMatrix* MakeSolver() { return this; } // for solving
+   void Solver(MatrixColX&, const MatrixColX&);
+   GeneralMatrix* Transpose(TransposedMatrix*, MatrixType);
+   void resize(int n);
+   void ReSize(int n) { resize(n); }
+   void resize(const GeneralMatrix& A);
+   void ReSize(const GeneralMatrix& A) { resize(A); }
+   MatrixBandWidth bandwidth() const;
+//   ReturnMatrix Reverse() const;                // reverse order of elements
+   void swap(IdentityMatrix& gm)
+      { GeneralMatrix::swap((GeneralMatrix&)gm); }
+   NEW_DELETE(IdentityMatrix)
+};
+
+
+
+
+// ************************** GenericMatrix class ************************/
+
+/// A matrix which can be of any GeneralMatrix type.
+class GenericMatrix : public BaseMatrix
+{
+   GeneralMatrix* gm;
+   int search(const BaseMatrix* bm) const;
+   friend class BaseMatrix;
+public:
+   GenericMatrix() : gm(0) {}
+   GenericMatrix(const BaseMatrix& bm)
+      { gm = ((BaseMatrix&)bm).Evaluate(); gm = gm->Image(); }
+   GenericMatrix(const GenericMatrix& bm) : BaseMatrix()
+      { gm = bm.gm->Image(); }
+   void operator=(const GenericMatrix&);
+   void operator=(const BaseMatrix&);
+   void operator+=(const BaseMatrix&);
+   void operator-=(const BaseMatrix&);
+   void operator*=(const BaseMatrix&);
+   void operator|=(const BaseMatrix&);
+   void operator&=(const BaseMatrix&);
+   void operator+=(Real);
+   void operator-=(Real r) { operator+=(-r); }
+   void operator*=(Real);
+   void operator/=(Real r) { operator*=(1.0/r); }
+   ~GenericMatrix() { delete gm; }
+   void cleanup() { delete gm; gm = 0; }
+   void Release() { gm->Release(); }
+   void release() { gm->release(); }
+   GeneralMatrix* Evaluate(MatrixType = MatrixTypeUnSp);
+   MatrixBandWidth bandwidth() const;
+   void swap(GenericMatrix& x);
+   NEW_DELETE(GenericMatrix)
+};
+
+// *************************** temporary classes *************************/
+
+/// Product of two matrices.
+/// \internal
+class MultipliedMatrix : public BaseMatrix
+{
+protected:
+   // if these union statements cause problems, simply remove them
+   // and declare the items individually
+   union { const BaseMatrix* bm1; GeneralMatrix* gm1; };
+						  // pointers to summands
+   union { const BaseMatrix* bm2; GeneralMatrix* gm2; };
+   MultipliedMatrix(const BaseMatrix* bm1x, const BaseMatrix* bm2x)
+      : bm1(bm1x),bm2(bm2x) {}
+   int search(const BaseMatrix*) const;
+   friend class BaseMatrix;
+   friend class GeneralMatrix;
+   friend class GenericMatrix;
+public:
+   ~MultipliedMatrix() {}
+   GeneralMatrix* Evaluate(MatrixType mt=MatrixTypeUnSp);
+   MatrixBandWidth bandwidth() const;
+   NEW_DELETE(MultipliedMatrix)
+};
+
+/// Sum of two matrices.
+/// \internal
+class AddedMatrix : public MultipliedMatrix
+{
+protected:
+   AddedMatrix(const BaseMatrix* bm1x, const BaseMatrix* bm2x)
+      : MultipliedMatrix(bm1x,bm2x) {}
+
+   friend class BaseMatrix;
+   friend class GeneralMatrix;
+   friend class GenericMatrix;
+public:
+   ~AddedMatrix() {}
+   GeneralMatrix* Evaluate(MatrixType mt=MatrixTypeUnSp);
+   MatrixBandWidth bandwidth() const;
+   NEW_DELETE(AddedMatrix)
+};
+
+/// Schur (elementwise) product of two matrices.
+/// \internal
+class SPMatrix : public AddedMatrix
+{
+protected:
+   SPMatrix(const BaseMatrix* bm1x, const BaseMatrix* bm2x)
+      : AddedMatrix(bm1x,bm2x) {}
+
+   friend class BaseMatrix;
+   friend class GeneralMatrix;
+   friend class GenericMatrix;
+public:
+   ~SPMatrix() {}
+   GeneralMatrix* Evaluate(MatrixType mt=MatrixTypeUnSp);
+   MatrixBandWidth bandwidth() const;
+
+   friend SPMatrix SP(const BaseMatrix&, const BaseMatrix&);
+
+   NEW_DELETE(SPMatrix)
+};
+
+/// Kronecker product of two matrices.
+/// \internal
+class KPMatrix : public MultipliedMatrix
+{
+protected:
+   KPMatrix(const BaseMatrix* bm1x, const BaseMatrix* bm2x)
+      : MultipliedMatrix(bm1x,bm2x) {}
+
+   friend class BaseMatrix;
+   friend class GeneralMatrix;
+   friend class GenericMatrix;
+public:
+   ~KPMatrix() {}
+   MatrixBandWidth bandwidth() const;
+   GeneralMatrix* Evaluate(MatrixType mt=MatrixTypeUnSp);
+   friend KPMatrix KP(const BaseMatrix&, const BaseMatrix&);
+   NEW_DELETE(KPMatrix)
+};
+
+/// Two matrices horizontally concatenated.
+/// \internal
+class ConcatenatedMatrix : public MultipliedMatrix
+{
+protected:
+   ConcatenatedMatrix(const BaseMatrix* bm1x, const BaseMatrix* bm2x)
+      : MultipliedMatrix(bm1x,bm2x) {}
+
+   friend class BaseMatrix;
+   friend class GeneralMatrix;
+   friend class GenericMatrix;
+public:
+   ~ConcatenatedMatrix() {}
+   MatrixBandWidth bandwidth() const;
+   GeneralMatrix* Evaluate(MatrixType mt=MatrixTypeUnSp);
+   NEW_DELETE(ConcatenatedMatrix)
+};
+
+/// Two matrices vertically concatenated.
+/// \internal
+class StackedMatrix : public ConcatenatedMatrix
+{
+protected:
+   StackedMatrix(const BaseMatrix* bm1x, const BaseMatrix* bm2x)
+      : ConcatenatedMatrix(bm1x,bm2x) {}
+
+   friend class BaseMatrix;
+   friend class GeneralMatrix;
+   friend class GenericMatrix;
+public:
+   ~StackedMatrix() {}
+   GeneralMatrix* Evaluate(MatrixType mt=MatrixTypeUnSp);
+   NEW_DELETE(StackedMatrix)
+};
+
+/// Inverted matrix times matrix.
+/// \internal
+class SolvedMatrix : public MultipliedMatrix
+{
+   SolvedMatrix(const BaseMatrix* bm1x, const BaseMatrix* bm2x)
+      : MultipliedMatrix(bm1x,bm2x) {}
+   friend class BaseMatrix;
+   friend class InvertedMatrix;                        // for operator*
+public:
+   ~SolvedMatrix() {}
+   GeneralMatrix* Evaluate(MatrixType mt=MatrixTypeUnSp);
+   MatrixBandWidth bandwidth() const;
+   NEW_DELETE(SolvedMatrix)
+};
+
+/// Difference between two matrices.
+/// \internal
+class SubtractedMatrix : public AddedMatrix
+{
+   SubtractedMatrix(const BaseMatrix* bm1x, const BaseMatrix* bm2x)
+      : AddedMatrix(bm1x,bm2x) {}
+   friend class BaseMatrix;
+   friend class GeneralMatrix;
+   friend class GenericMatrix;
+public:
+   ~SubtractedMatrix() {}
+   GeneralMatrix* Evaluate(MatrixType mt=MatrixTypeUnSp);
+   NEW_DELETE(SubtractedMatrix)
+};
+
+/// Any type of matrix plus Real.
+/// \internal
+class ShiftedMatrix : public BaseMatrix
+{
+protected:
+   union { const BaseMatrix* bm; GeneralMatrix* gm; };
+   Real f;
+   ShiftedMatrix(const BaseMatrix* bmx, Real fx) : bm(bmx),f(fx) {}
+   int search(const BaseMatrix*) const;
+   friend class BaseMatrix;
+   friend class GeneralMatrix;
+   friend class GenericMatrix;
+public:
+   ~ShiftedMatrix() {}
+   GeneralMatrix* Evaluate(MatrixType mt=MatrixTypeUnSp);
+   friend ShiftedMatrix operator+(Real f, const BaseMatrix& BM);
+   NEW_DELETE(ShiftedMatrix)
+};
+
+/// Real minus matrix.
+/// \internal
+class NegShiftedMatrix : public ShiftedMatrix
+{
+protected:
+   NegShiftedMatrix(Real fx, const BaseMatrix* bmx) : ShiftedMatrix(bmx,fx) {}
+   friend class BaseMatrix;
+   friend class GeneralMatrix;
+   friend class GenericMatrix;
+public:
+   ~NegShiftedMatrix() {}
+   GeneralMatrix* Evaluate(MatrixType mt=MatrixTypeUnSp);
+   friend NegShiftedMatrix operator-(Real, const BaseMatrix&);
+   NEW_DELETE(NegShiftedMatrix)
+};
+
+/// Any type of matrix times Real.
+/// \internal
+class ScaledMatrix : public ShiftedMatrix
+{
+   ScaledMatrix(const BaseMatrix* bmx, Real fx) : ShiftedMatrix(bmx,fx) {}
+   friend class BaseMatrix;
+   friend class GeneralMatrix;
+   friend class GenericMatrix;
+public:
+   ~ScaledMatrix() {}
+   GeneralMatrix* Evaluate(MatrixType mt=MatrixTypeUnSp);
+   MatrixBandWidth bandwidth() const;
+   friend ScaledMatrix operator*(Real f, const BaseMatrix& BM);
+   NEW_DELETE(ScaledMatrix)
+};
+
+/// Any type of matrix times -1.
+/// \internal
+class NegatedMatrix : public BaseMatrix
+{
+protected:
+   union { const BaseMatrix* bm; GeneralMatrix* gm; };
+   NegatedMatrix(const BaseMatrix* bmx) : bm(bmx) {}
+   int search(const BaseMatrix*) const;
+private:
+   friend class BaseMatrix;
+public:
+   ~NegatedMatrix() {}
+   GeneralMatrix* Evaluate(MatrixType mt=MatrixTypeUnSp);
+   MatrixBandWidth bandwidth() const;
+   NEW_DELETE(NegatedMatrix)
+};
+
+/// Transposed matrix.
+/// \internal
+class TransposedMatrix : public NegatedMatrix
+{
+   TransposedMatrix(const BaseMatrix* bmx) : NegatedMatrix(bmx) {}
+   friend class BaseMatrix;
+public:
+   ~TransposedMatrix() {}
+   GeneralMatrix* Evaluate(MatrixType mt=MatrixTypeUnSp);
+   MatrixBandWidth bandwidth() const;
+   NEW_DELETE(TransposedMatrix)
+};
+
+/// Any type of matrix with order of elements reversed.
+/// \internal
+class ReversedMatrix : public NegatedMatrix
+{
+   ReversedMatrix(const BaseMatrix* bmx) : NegatedMatrix(bmx) {}
+   friend class BaseMatrix;
+public:
+   ~ReversedMatrix() {}
+   GeneralMatrix* Evaluate(MatrixType mt=MatrixTypeUnSp);
+   NEW_DELETE(ReversedMatrix)
+};
+
+/// Inverse of matrix.
+/// \internal
+class InvertedMatrix : public NegatedMatrix
+{
+   InvertedMatrix(const BaseMatrix* bmx) : NegatedMatrix(bmx) {}
+public:
+   ~InvertedMatrix() {}
+   SolvedMatrix operator*(const BaseMatrix&) const;       // inverse(A) * B
+   ScaledMatrix operator*(Real t) const { return BaseMatrix::operator*(t); }
+   friend class BaseMatrix;
+   GeneralMatrix* Evaluate(MatrixType mt=MatrixTypeUnSp);
+   MatrixBandWidth bandwidth() const;
+   NEW_DELETE(InvertedMatrix)
+};
+
+/// Any type of matrix interpreted as a RowVector.
+/// \internal
+class RowedMatrix : public NegatedMatrix
+{
+   RowedMatrix(const BaseMatrix* bmx) : NegatedMatrix(bmx) {}
+   friend class BaseMatrix;
+public:
+   ~RowedMatrix() {}
+   GeneralMatrix* Evaluate(MatrixType mt=MatrixTypeUnSp);
+   MatrixBandWidth bandwidth() const;
+   NEW_DELETE(RowedMatrix)
+};
+
+/// Any type of matrix interpreted as a ColumnVector.
+/// \internal
+class ColedMatrix : public NegatedMatrix
+{
+   ColedMatrix(const BaseMatrix* bmx) : NegatedMatrix(bmx) {}
+   friend class BaseMatrix;
+public:
+   ~ColedMatrix() {}
+   GeneralMatrix* Evaluate(MatrixType mt=MatrixTypeUnSp);
+   MatrixBandWidth bandwidth() const;
+   NEW_DELETE(ColedMatrix)
+};
+
+/// Any type of matrix interpreted as a DiagonalMatrix.
+/// \internal
+class DiagedMatrix : public NegatedMatrix
+{
+   DiagedMatrix(const BaseMatrix* bmx) : NegatedMatrix(bmx) {}
+   friend class BaseMatrix;
+public:
+   ~DiagedMatrix() {}
+   GeneralMatrix* Evaluate(MatrixType mt=MatrixTypeUnSp);
+   MatrixBandWidth bandwidth() const;
+   NEW_DELETE(DiagedMatrix)
+};
+
+/// Any type of matrix interpreted as a (rectangular) Matrix.
+/// \internal
+class MatedMatrix : public NegatedMatrix
+{
+   int nr, nc;
+   MatedMatrix(const BaseMatrix* bmx, int nrx, int ncx)
+      : NegatedMatrix(bmx), nr(nrx), nc(ncx) {}
+   friend class BaseMatrix;
+public:
+   ~MatedMatrix() {}
+   GeneralMatrix* Evaluate(MatrixType mt=MatrixTypeUnSp);
+   MatrixBandWidth bandwidth() const;
+   NEW_DELETE(MatedMatrix)
+};
+
+/// A matrix in an "envelope' for return from a function.
+/// \internal
+class ReturnMatrix : public BaseMatrix
+{
+   GeneralMatrix* gm;
+   int search(const BaseMatrix*) const;
+public:
+   ~ReturnMatrix() {}
+   GeneralMatrix* Evaluate(MatrixType mt=MatrixTypeUnSp);
+   friend class BaseMatrix;
+   ReturnMatrix(const ReturnMatrix& tm) : BaseMatrix(), gm(tm.gm) {}
+   ReturnMatrix(const GeneralMatrix* gmx) : gm((GeneralMatrix*&)gmx) {}
+//   ReturnMatrix(GeneralMatrix&);
+   MatrixBandWidth bandwidth() const;
+   NEW_DELETE(ReturnMatrix)
+};
+
+
+// ************************** submatrices ******************************/
+
+/// A submatrix of a matrix.
+/// \internal
+class GetSubMatrix : public NegatedMatrix
+{
+   int row_skip;
+   int row_number;
+   int col_skip;
+   int col_number;
+   bool IsSym;
+
+   GetSubMatrix
+      (const BaseMatrix* bmx, int rs, int rn, int cs, int cn, bool is)
+      : NegatedMatrix(bmx),
+      row_skip(rs), row_number(rn), col_skip(cs), col_number(cn), IsSym(is) {}
+   void SetUpLHS();
+   friend class BaseMatrix;
+public:
+   GetSubMatrix(const GetSubMatrix& g)
+      : NegatedMatrix(g.bm), row_skip(g.row_skip), row_number(g.row_number),
+      col_skip(g.col_skip), col_number(g.col_number), IsSym(g.IsSym) {}
+   ~GetSubMatrix() {}
+   GeneralMatrix* Evaluate(MatrixType mt=MatrixTypeUnSp);
+   void operator=(const BaseMatrix&);
+   void operator+=(const BaseMatrix&);
+   void operator-=(const BaseMatrix&);
+   void operator=(const GetSubMatrix& m) { operator=((const BaseMatrix&)m); }
+   void operator<<(const BaseMatrix&);
+   void operator<<(const double*);                // copy from array
+   void operator<<(const float*);                // copy from array
+   void operator<<(const int*);                 // copy from array
+   MatrixInput operator<<(double);                // for loading a list
+   MatrixInput operator<<(float);                // for loading a list
+   MatrixInput operator<<(int f);
+   void operator=(Real);                        // copy from constant
+   void operator+=(Real);                       // add constant
+   void operator-=(Real r) { operator+=(-r); }  // subtract constant
+   void operator*=(Real);                       // multiply by constant
+   void operator/=(Real r) { operator*=(1.0/r); } // divide by constant
+   void inject(const GeneralMatrix&);           // copy stored els only
+   void Inject(const GeneralMatrix& GM) { inject(GM); }
+   MatrixBandWidth bandwidth() const;
+   NEW_DELETE(GetSubMatrix)
+};
+
+// ******************** linear equation solving ****************************/
+
+/// A class for finding A.i() * B.
+/// This is supposed to choose the appropriate method depending on the
+/// type A. Not very satisfactory as it doesn't know about Cholesky for
+/// for positive definite matrices.
+class LinearEquationSolver : public BaseMatrix
+{
+   GeneralMatrix* gm;
+   int search(const BaseMatrix*) const { return 0; }
+   friend class BaseMatrix;
+public:
+   LinearEquationSolver(const BaseMatrix& bm);
+   ~LinearEquationSolver() { delete gm; }
+   void cleanup() { delete gm; } 
+   GeneralMatrix* Evaluate(MatrixType) { return gm; }
+   // probably should have an error message if MatrixType != UnSp
+   NEW_DELETE(LinearEquationSolver)
+};
+
+// ************************** matrix input *******************************/
+
+/// Class for reading values into a (small) matrix within a program.
+/// \internal
+/// Is able to detect a mismatch in the number of elements.
+
+class MatrixInput
+{
+   int n;                  // number values still to be read
+   Real* r;                // pointer to next location to be read to
+public:
+   MatrixInput(const MatrixInput& mi) : n(mi.n), r(mi.r) {}
+   MatrixInput(int nx, Real* rx) : n(nx), r(rx) {}
+   ~MatrixInput();
+   MatrixInput operator<<(double);
+   MatrixInput operator<<(float);
+   MatrixInput operator<<(int f);
+   friend class GeneralMatrix;
+};
+
+
+
+// **************** a very simple integer array class ********************/
+
+/// A very simple integer array class.
+/// A minimal array class to imitate a C style array but giving dynamic storage
+/// mostly intended for internal use by newmat.
+/// Probably to be replaced by a templated class when I start using templates.
+
+class SimpleIntArray : public Janitor
+{
+protected:
+   int* a;                    ///< pointer to the array
+   int n;                     ///< length of the array
+public:
+   SimpleIntArray(int xn);    ///< build an array length xn
+   SimpleIntArray() : a(0), n(0) {}  ///< build an array length 0
+   ~SimpleIntArray();         ///< return the space to memory
+   int& operator[](int i);    ///< access element of the array - start at 0
+   int operator[](int i) const;
+			      ///< access element of constant array
+   void operator=(int ai);    ///< set the array equal to a constant
+   void operator=(const SimpleIntArray& b);
+			      ///< copy the elements of an array
+   SimpleIntArray(const SimpleIntArray& b);
+			      ///< make a new array equal to an existing one
+   int Size() const { return n; }
+			      ///< return the size of the array
+   int size() const { return n; }
+			      ///< return the size of the array
+   int* Data() { return a; }  ///< pointer to the data
+   const int* Data() const { return a; }  ///< pointer to the data
+   int* data() { return a; }  ///< pointer to the data
+   const int* data() const { return a; }  ///< pointer to the data
+   const int* const_data() const { return a; }  ///< pointer to the data
+   void resize(int i, bool keep = false);
+                              ///< change length, keep data if keep = true
+   void ReSize(int i, bool keep = false) { resize(i, keep); }
+                              ///< change length, keep data if keep = true
+   void resize_keep(int i) { resize(i, true); }
+                              ///< change length, keep data
+   void cleanup() { resize(0); }   ///< set length to zero
+   void CleanUp() { resize(0); }   ///< set length to zero
+   NEW_DELETE(SimpleIntArray)
+};
+
+// ********************** C subscript classes ****************************
+
+/// Let matrix simulate a C type two dimensional array
+class RealStarStar
+{
+   Real** a;
+public:
+   RealStarStar(Matrix& A);
+   ~RealStarStar() { delete [] a; }
+   operator Real**() { return a; }
+};
+
+/// Let matrix simulate a C type const two dimensional array
+class ConstRealStarStar
+{
+   const Real** a;
+public:
+   ConstRealStarStar(const Matrix& A);
+   ~ConstRealStarStar() { delete [] a; }
+   operator const Real**() { return a; }
+};
+
+// *************************** exceptions ********************************/
+
+/// Not positive definite exception.
+class NPDException : public Runtime_error
+{
+public:
+   static unsigned long Select;
+   NPDException(const GeneralMatrix&);
+};
+
+/// Covergence failure exception.
+class ConvergenceException : public Runtime_error
+{
+public:
+   static unsigned long Select;
+   ConvergenceException(const GeneralMatrix& A);
+   ConvergenceException(const char* c);
+};
+
+/// Singular matrix exception.
+class SingularException : public Runtime_error
+{
+public:
+   static unsigned long Select;
+   SingularException(const GeneralMatrix& A);
+};
+
+/// Real overflow exception.
+class OverflowException : public Runtime_error
+{
+public:
+   static unsigned long Select;
+   OverflowException(const char* c);
+};
+
+/// Miscellaneous exception (details in character string). 
+class ProgramException : public Logic_error
+{
+protected:
+   ProgramException();
+public:
+   static unsigned long Select;
+   ProgramException(const char* c);
+   ProgramException(const char* c, const GeneralMatrix&);
+   ProgramException(const char* c, const GeneralMatrix&, const GeneralMatrix&);
+   ProgramException(const char* c, MatrixType, MatrixType);
+};
+
+/// Index exception.
+class IndexException : public Logic_error
+{
+public:
+   static unsigned long Select;
+   IndexException(int i, const GeneralMatrix& A);
+   IndexException(int i, int j, const GeneralMatrix& A);
+   // next two are for access via element function
+   IndexException(int i, const GeneralMatrix& A, bool);
+   IndexException(int i, int j, const GeneralMatrix& A, bool);
+};
+
+/// Cannot convert to vector exception.
+class VectorException : public Logic_error
+{
+public:
+   static unsigned long Select;
+   VectorException();
+   VectorException(const GeneralMatrix& A);
+};
+
+/// A matrix is not square exception.
+class NotSquareException : public Logic_error
+{
+public:
+   static unsigned long Select;
+   NotSquareException(const GeneralMatrix& A);
+   NotSquareException();
+};
+
+/// Submatrix dimension exception.
+class SubMatrixDimensionException : public Logic_error
+{
+public:
+   static unsigned long Select;
+   SubMatrixDimensionException();
+};
+
+/// Incompatible dimensions exception.
+class IncompatibleDimensionsException : public Logic_error
+{
+public:
+   static unsigned long Select;
+   IncompatibleDimensionsException();
+   IncompatibleDimensionsException(const GeneralMatrix&);
+   IncompatibleDimensionsException(const GeneralMatrix&, const GeneralMatrix&);
+};
+
+/// Not defined exception.
+class NotDefinedException : public Logic_error
+{
+public:
+   static unsigned long Select;
+   NotDefinedException(const char* op, const char* matrix);
+};
+
+/// Cannot build matrix with these properties exception.
+class CannotBuildException : public Logic_error
+{
+public:
+   static unsigned long Select;
+   CannotBuildException(const char* matrix);
+};
+
+
+/// Internal newmat exception - shouldn't happen.
+class InternalException : public Logic_error
+{
+public:
+   static unsigned long Select;          // for identifying exception
+   InternalException(const char* c);
+};
+
+// ************************ functions ************************************ //
+
+bool operator==(const GeneralMatrix& A, const GeneralMatrix& B);
+bool operator==(const BaseMatrix& A, const BaseMatrix& B);
+inline bool operator!=(const GeneralMatrix& A, const GeneralMatrix& B)
+   { return ! (A==B); }
+inline bool operator!=(const BaseMatrix& A, const BaseMatrix& B)
+   { return ! (A==B); }
+
+   // inequality operators are dummies included for compatibility
+   // with STL. They throw an exception if actually called.
+inline bool operator<=(const BaseMatrix& A, const BaseMatrix&)
+   { A.IEQND(); return true; }
+inline bool operator>=(const BaseMatrix& A, const BaseMatrix&)
+   { A.IEQND(); return true; }
+inline bool operator<(const BaseMatrix& A, const BaseMatrix&)
+   { A.IEQND(); return true; }
+inline bool operator>(const BaseMatrix& A, const BaseMatrix&)
+   { A.IEQND(); return true; }
+
+bool is_zero(const BaseMatrix& A);
+inline bool IsZero(const BaseMatrix& A) { return is_zero(A); }
+
+Real dotproduct(const Matrix& A, const Matrix& B);
+Matrix crossproduct(const Matrix& A, const Matrix& B);
+ReturnMatrix crossproduct_rows(const Matrix& A, const Matrix& B);
+ReturnMatrix crossproduct_columns(const Matrix& A, const Matrix& B);
+
+inline Real DotProduct(const Matrix& A, const Matrix& B)
+   { return dotproduct(A, B); }
+inline Matrix CrossProduct(const Matrix& A, const Matrix& B)
+   { return crossproduct(A, B); }
+inline ReturnMatrix CrossProductRows(const Matrix& A, const Matrix& B)
+   { return crossproduct_rows(A, B); }
+inline ReturnMatrix CrossProductColumns(const Matrix& A, const Matrix& B)
+   { return crossproduct_columns(A, B); }
+   
+void newmat_block_copy(int n, Real* from, Real* to);
+
+// ********************* friend functions ******************************** //
+
+// Functions declared as friends - G++ wants them declared externally as well
+
+bool Rectangular(MatrixType a, MatrixType b, MatrixType c);
+bool Compare(const MatrixType&, MatrixType&);
+Real dotproduct(const Matrix& A, const Matrix& B);
+SPMatrix SP(const BaseMatrix&, const BaseMatrix&);
+KPMatrix KP(const BaseMatrix&, const BaseMatrix&);
+ShiftedMatrix operator+(Real f, const BaseMatrix& BM);
+NegShiftedMatrix operator-(Real, const BaseMatrix&);
+ScaledMatrix operator*(Real f, const BaseMatrix& BM);
+
+// ********************* inline functions ******************************** //
+
+inline LogAndSign log_determinant(const BaseMatrix& B)
+   { return B.log_determinant(); }
+inline LogAndSign LogDeterminant(const BaseMatrix& B)
+   { return B.log_determinant(); }
+inline Real determinant(const BaseMatrix& B)
+   { return B.determinant(); }
+inline Real Determinant(const BaseMatrix& B)
+   { return B.determinant(); }
+inline Real sum_square(const BaseMatrix& B) { return B.sum_square(); }
+inline Real SumSquare(const BaseMatrix& B) { return B.sum_square(); }
+inline Real norm_Frobenius(const BaseMatrix& B) { return B.norm_Frobenius(); }
+inline Real norm_frobenius(const BaseMatrix& B) { return B.norm_Frobenius(); }
+inline Real NormFrobenius(const BaseMatrix& B) { return B.norm_Frobenius(); }
+inline Real trace(const BaseMatrix& B) { return B.trace(); }
+inline Real Trace(const BaseMatrix& B) { return B.trace(); }
+inline Real sum_absolute_value(const BaseMatrix& B)
+   { return B.sum_absolute_value(); }
+inline Real SumAbsoluteValue(const BaseMatrix& B)
+   { return B.sum_absolute_value(); }
+inline Real sum(const BaseMatrix& B)
+   { return B.sum(); }
+inline Real Sum(const BaseMatrix& B)
+   { return B.sum(); }
+inline Real maximum_absolute_value(const BaseMatrix& B)
+   { return B.maximum_absolute_value(); }
+inline Real MaximumAbsoluteValue(const BaseMatrix& B)
+   { return B.maximum_absolute_value(); }
+inline Real minimum_absolute_value(const BaseMatrix& B)
+   { return B.minimum_absolute_value(); }
+inline Real MinimumAbsoluteValue(const BaseMatrix& B)
+   { return B.minimum_absolute_value(); }
+inline Real maximum(const BaseMatrix& B) { return B.maximum(); }
+inline Real Maximum(const BaseMatrix& B) { return B.maximum(); }
+inline Real minimum(const BaseMatrix& B) { return B.minimum(); }
+inline Real Minimum(const BaseMatrix& B) { return B.minimum(); }
+inline Real norm1(const BaseMatrix& B) { return B.norm1(); }
+inline Real Norm1(const BaseMatrix& B) { return B.norm1(); }
+inline Real norm1(RowVector& RV) { return RV.maximum_absolute_value(); }
+inline Real Norm1(RowVector& RV) { return RV.maximum_absolute_value(); }
+inline Real norm_infinity(const BaseMatrix& B) { return B.norm_infinity(); }
+inline Real NormInfinity(const BaseMatrix& B) { return B.norm_infinity(); }
+inline Real norm_infinity(ColumnVector& CV)
+   { return CV.maximum_absolute_value(); }
+inline Real NormInfinity(ColumnVector& CV)
+   { return CV.maximum_absolute_value(); }
+inline bool IsZero(const GeneralMatrix& A) { return A.IsZero(); }
+inline bool is_zero(const GeneralMatrix& A) { return A.is_zero(); }
+
+
+inline MatrixInput MatrixInput::operator<<(int f) { return *this << (Real)f; }
+inline MatrixInput GeneralMatrix::operator<<(int f) { return *this << (Real)f; }
+inline MatrixInput BandMatrix::operator<<(int f) { return *this << (Real)f; }
+inline MatrixInput GetSubMatrix::operator<<(int f) { return *this << (Real)f; }
+
+inline ReversedMatrix BaseMatrix::Reverse() const { return reverse(); }
+inline RowedMatrix BaseMatrix::AsRow() const { return as_row(); }
+inline ColedMatrix BaseMatrix::AsColumn() const { return as_column(); }
+inline DiagedMatrix BaseMatrix::AsDiagonal() const { return as_diagonal(); }
+inline MatedMatrix BaseMatrix::AsMatrix(int m, int n) const
+   { return as_matrix(m, n); }
+inline GetSubMatrix BaseMatrix::SubMatrix(int fr, int lr, int fc, int lc) const
+   { return submatrix(fr, lr, fc, lc); }
+inline GetSubMatrix BaseMatrix::SymSubMatrix(int f, int l) const
+   { return sym_submatrix(f, l); }
+inline GetSubMatrix BaseMatrix::Row(int f) const { return row(f); }
+inline GetSubMatrix BaseMatrix::Rows(int f, int l) const { return rows(f, l); }
+inline GetSubMatrix BaseMatrix::Column(int f) const { return column(f); }
+inline GetSubMatrix BaseMatrix::Columns(int f, int l) const
+   { return columns(f, l); }
+inline Real BaseMatrix::AsScalar() const { return as_scalar(); }
+
+inline ReturnMatrix GeneralMatrix::ForReturn() const { return for_return(); }
+
+inline void swap(Matrix& A, Matrix& B) { A.swap(B); }
+inline void swap(SquareMatrix& A, SquareMatrix& B) { A.swap(B); }
+inline void swap(nricMatrix& A, nricMatrix& B) { A.swap(B); }
+inline void swap(UpperTriangularMatrix& A, UpperTriangularMatrix& B)
+   { A.swap(B); }
+inline void swap(LowerTriangularMatrix& A, LowerTriangularMatrix& B)
+   { A.swap(B); }
+inline void swap(SymmetricMatrix& A, SymmetricMatrix& B) { A.swap(B); }
+inline void swap(DiagonalMatrix& A, DiagonalMatrix& B) { A.swap(B); }
+inline void swap(RowVector& A, RowVector& B) { A.swap(B); }
+inline void swap(ColumnVector& A, ColumnVector& B) { A.swap(B); }
+inline void swap(CroutMatrix& A, CroutMatrix& B) { A.swap(B); }
+inline void swap(BandMatrix& A, BandMatrix& B) { A.swap(B); }
+inline void swap(UpperBandMatrix& A, UpperBandMatrix& B) { A.swap(B); }
+inline void swap(LowerBandMatrix& A, LowerBandMatrix& B) { A.swap(B); }
+inline void swap(SymmetricBandMatrix& A, SymmetricBandMatrix& B) { A.swap(B); }
+inline void swap(BandLUMatrix& A, BandLUMatrix& B) { A.swap(B); }
+inline void swap(IdentityMatrix& A, IdentityMatrix& B) { A.swap(B); }
+inline void swap(GenericMatrix& A, GenericMatrix& B) { A.swap(B); }
+
+#ifdef OPT_COMPATIBLE                    // for compatibility with opt++
+
+inline Real Norm2(const ColumnVector& CV) { return CV.norm_Frobenius(); }
+inline Real Dot(ColumnVector& CV1, ColumnVector& CV2)
+   { return dotproduct(CV1, CV2); }
+
+#endif
+
+
+#ifdef use_namespace
+}
+#endif
+
+
+#endif
+
+// body file: newmat1.cpp
+// body file: newmat2.cpp
+// body file: newmat3.cpp
+// body file: newmat4.cpp
+// body file: newmat5.cpp
+// body file: newmat6.cpp
+// body file: newmat7.cpp
+// body file: newmat8.cpp
+// body file: newmatex.cpp
+// body file: bandmat.cpp
+// body file: submat.cpp
+
+
+
+///@}
+
+
+
+
Index: branches/BNC_LM/newmat/newmat1.cpp
===================================================================
--- branches/BNC_LM/newmat/newmat1.cpp	(revision 3570)
+++ branches/BNC_LM/newmat/newmat1.cpp	(revision 3570)
@@ -0,0 +1,209 @@
+/// \ingroup newmat
+///@{
+
+/// \file newmat1.cpp
+/// MatrixType functions.
+/// Find the type of a matrix resulting from a multiply, add etc
+/// Make a new matrix corresponding to a MatrixType
+
+// Copyright (C) 1991,2,3,4: R B Davies
+
+//#define WANT_STREAM
+
+#include "newmat.h"
+
+#ifdef use_namespace
+namespace NEWMAT {
+#endif
+
+#ifdef DO_REPORT
+#define REPORT { static ExeCounter ExeCount(__LINE__,1); ++ExeCount; }
+#else
+#define REPORT {}
+#endif
+
+
+/************************* MatrixType functions *****************************/
+
+
+// Skew needs more work <<<<<<<<<
+
+// all operations to return MatrixTypes which correspond to valid types
+// of matrices.
+// Eg: if it has the Diagonal attribute, then it must also have
+// Upper, Lower, Band, Square and Symmetric.
+
+
+MatrixType MatrixType::operator*(const MatrixType& mt) const
+{
+   REPORT
+   int a = attribute & mt.attribute & ~(Symmetric | Skew);
+   a |= (a & Diagonal) * 63;                   // recognise diagonal
+   return MatrixType(a);
+}
+
+MatrixType MatrixType::SP(const MatrixType& mt) const
+// elementwise product
+// Lower, Upper, Diag, Band if only one is
+// Symmetric, Ones, Valid (and Real) if both are
+// Need to include Lower & Upper => Diagonal
+// Will need to include both Skew => Symmetric
+{
+   REPORT
+   int a = ((attribute | mt.attribute) & ~(Symmetric + Skew + Valid + Ones))
+      | (attribute & mt.attribute);
+   if ((a & Lower) != 0  &&  (a & Upper) != 0) a |= Diagonal;
+   if ((attribute & Skew) != 0)
+   {
+      if ((mt.attribute & Symmetric) != 0) a |= Skew;  
+      if ((mt.attribute & Skew) != 0) { a &= ~Skew; a |= Symmetric; }
+   }
+   else if ((mt.attribute & Skew) != 0 && (attribute & Symmetric) != 0)
+      a |= Skew;  
+   a |= (a & Diagonal) * 63;                   // recognise diagonal
+   return MatrixType(a);
+}
+
+MatrixType MatrixType::KP(const MatrixType& mt) const
+// Kronecker product
+// Lower, Upper, Diag, Symmetric, Band, Valid if both are
+// Band if LHS is band & other is square 
+// Ones is complicated so leave this out
+{
+   REPORT
+   int a = (attribute & mt.attribute)  & ~Ones;
+   if ((attribute & Band) != 0 && (mt.attribute & Square) != 0)
+      a |= Band;
+   //int a = ((attribute & mt.attribute) | (attribute & Band)) & ~Ones;
+
+   return MatrixType(a);
+}
+
+MatrixType MatrixType::i() const               // type of inverse
+{
+   REPORT
+   int a = attribute & ~(Band+LUDeco);
+   a |= (a & Diagonal) * 63;                   // recognise diagonal
+   return MatrixType(a);
+}
+
+MatrixType MatrixType::t() const
+// swap lower and upper attributes
+// assume Upper is in bit above Lower
+{
+   REPORT
+   int a = attribute;
+   a ^= (((a >> 1) ^ a) & Lower) * 3;
+   return MatrixType(a);
+}
+
+MatrixType MatrixType::MultRHS() const
+{
+   REPORT
+   // remove symmetric attribute unless diagonal
+   return (attribute >= Dg) ? attribute : (attribute & ~Symmetric);
+}
+
+// this is used for deciding type of multiplication
+bool Rectangular(MatrixType a, MatrixType b, MatrixType c)
+{
+   REPORT
+   return
+      ((a.attribute | b.attribute | c.attribute)
+      & ~(MatrixType::Valid | MatrixType::Square)) == 0;
+}
+
+const char* MatrixType::value() const
+{
+// make a string with the name of matrix with the given attributes
+   switch (attribute)
+   {
+   case Valid:                              REPORT return "Rect ";
+   case Valid+Square:                       REPORT return "Squ  ";
+   case Valid+Symmetric+Square:             REPORT return "Sym  ";
+   case Valid+Skew+Square:                  REPORT return "Skew ";
+   case Valid+Band+Square:                  REPORT return "Band ";
+   case Valid+Symmetric+Band+Square:        REPORT return "SmBnd";
+   case Valid+Skew+Band+Square:             REPORT return "SkBnd";
+   case Valid+Upper+Square:                 REPORT return "UT   ";
+   case Valid+Diagonal+Symmetric+Band+Upper+Lower+Square:
+                                            REPORT return "Diag ";
+   case Valid+Diagonal+Symmetric+Band+Upper+Lower+Ones+Square:
+                                            REPORT return "Ident";
+   case Valid+Band+Upper+Square:            REPORT return "UpBnd";
+   case Valid+Lower+Square:                 REPORT return "LT   ";
+   case Valid+Band+Lower+Square:            REPORT return "LwBnd";
+   default:
+      REPORT
+      if (!(attribute & Valid))             return "UnSp ";
+      if (attribute & LUDeco)
+         return (attribute & Band) ?     "BndLU" : "Crout";
+                                            return "?????";
+   }
+}
+
+
+GeneralMatrix* MatrixType::New(int nr, int nc, BaseMatrix* bm) const
+{
+// make a new matrix with the given attributes
+
+   Tracer tr("New"); GeneralMatrix* gm=0;   // initialised to keep gnu happy
+   switch (attribute)
+   {
+   case Valid:
+      REPORT
+      if (nc==1) { gm = new ColumnVector(nr); break; }
+      if (nr==1) { gm = new RowVector(nc); break; }
+      gm = new Matrix(nr, nc); break;
+
+   case Valid+Square:
+      REPORT
+      if (nc!=nr) { Throw(NotSquareException()); }
+      gm = new SquareMatrix(nr); break;
+
+   case Valid+Symmetric+Square:
+      REPORT gm = new SymmetricMatrix(nr); break;
+
+   case Valid+Band+Square:
+      {
+         REPORT
+         MatrixBandWidth bw = bm->bandwidth();
+         gm = new BandMatrix(nr,bw.lower_val,bw.upper_val); break;
+      }
+
+   case Valid+Symmetric+Band+Square:
+      REPORT gm = new SymmetricBandMatrix(nr,bm->bandwidth().lower_val); break;
+
+   case Valid+Upper+Square:
+      REPORT gm = new UpperTriangularMatrix(nr); break;
+
+   case Valid+Diagonal+Symmetric+Band+Upper+Lower+Square:
+      REPORT gm = new DiagonalMatrix(nr); break;
+
+   case Valid+Band+Upper+Square:
+      REPORT gm = new UpperBandMatrix(nr,bm->bandwidth().upper_val); break;
+
+   case Valid+Lower+Square:
+      REPORT gm = new LowerTriangularMatrix(nr); break;
+
+   case Valid+Band+Lower+Square:
+      REPORT gm = new LowerBandMatrix(nr,bm->bandwidth().lower_val); break;
+
+   case Valid+Diagonal+Symmetric+Band+Upper+Lower+Ones+Square:
+      REPORT gm = new IdentityMatrix(nr); break;
+
+   default:
+      Throw(ProgramException("Invalid matrix type"));
+   }
+   
+   MatrixErrorNoSpace(gm); gm->Protect(); return gm;
+}
+
+
+#ifdef use_namespace
+}
+#endif
+
+
+
+///@}
Index: branches/BNC_LM/newmat/newmat2.cpp
===================================================================
--- branches/BNC_LM/newmat/newmat2.cpp	(revision 3570)
+++ branches/BNC_LM/newmat/newmat2.cpp	(revision 3570)
@@ -0,0 +1,658 @@
+/// \ingroup newmat
+///@{
+
+/// \file newmat2.cpp
+/// Matrix row and column operations.
+/// The operations on individual rows and columns used to carry out matrix
+/// add, multiply etc.
+
+
+// Copyright (C) 1991,2,3,4: R B Davies
+
+#define WANT_MATH
+
+#include "include.h"
+
+#include "newmat.h"
+#include "newmatrc.h"
+
+#ifdef use_namespace
+namespace NEWMAT {
+#endif
+
+
+#ifdef DO_REPORT
+#define REPORT { static ExeCounter ExeCount(__LINE__,2); ++ExeCount; }
+#else
+#define REPORT {}
+#endif
+
+//#define MONITOR(what,storage,store) { cout << what << " " << storage << " at " << (long)store << "\n"; }
+
+#define MONITOR(what,store,storage) {}
+
+/************************** Matrix Row/Col functions ************************/
+
+void MatrixRowCol::Add(const MatrixRowCol& mrc)
+{
+   // THIS += mrc
+   REPORT
+   int f = mrc.skip; int l = f + mrc.storage; int lx = skip + storage;
+   if (f < skip) f = skip; if (l > lx) l = lx; l -= f;
+   if (l<=0) return;
+   Real* elx=data+(f-skip); Real* el=mrc.data+(f-mrc.skip);
+   while (l--) *elx++ += *el++;
+}
+
+void MatrixRowCol::AddScaled(const MatrixRowCol& mrc, Real x)
+{
+   REPORT
+   // THIS += (mrc * x)
+   int f = mrc.skip; int l = f + mrc.storage; int lx = skip + storage;
+   if (f < skip) f = skip; if (l > lx) l = lx; l -= f;
+   if (l<=0) return;
+   Real* elx=data+(f-skip); Real* el=mrc.data+(f-mrc.skip);
+   while (l--) *elx++ += *el++ * x;
+}
+
+void MatrixRowCol::Sub(const MatrixRowCol& mrc)
+{
+   REPORT
+   // THIS -= mrc
+   int f = mrc.skip; int l = f + mrc.storage; int lx = skip + storage;
+   if (f < skip) f = skip; if (l > lx) l = lx; l -= f;
+   if (l<=0) return;
+   Real* elx=data+(f-skip); Real* el=mrc.data+(f-mrc.skip);
+   while (l--) *elx++ -= *el++;
+}
+
+void MatrixRowCol::Inject(const MatrixRowCol& mrc)
+// copy stored elements only
+{
+   REPORT
+   int f = mrc.skip; int l = f + mrc.storage; int lx = skip + storage;
+   if (f < skip) f = skip; if (l > lx) l = lx; l -= f;
+   if (l<=0) return;
+   Real* elx=data+(f-skip); Real* ely=mrc.data+(f-mrc.skip);
+   while (l--) *elx++ = *ely++;
+}
+
+Real DotProd(const MatrixRowCol& mrc1, const MatrixRowCol& mrc2)
+{
+   REPORT                                         // not accessed
+   int f = mrc1.skip; int f2 = mrc2.skip;
+   int l = f + mrc1.storage; int l2 = f2 + mrc2.storage;
+   if (f < f2) f = f2; if (l > l2) l = l2; l -= f;
+   if (l<=0) return 0.0;
+
+   Real* el1=mrc1.data+(f-mrc1.skip); Real* el2=mrc2.data+(f-mrc2.skip);
+   Real sum = 0.0;
+   while (l--) sum += *el1++ * *el2++;
+   return sum;
+}
+
+void MatrixRowCol::Add(const MatrixRowCol& mrc1, const MatrixRowCol& mrc2)
+{
+   // THIS = mrc1 + mrc2
+   int f = skip; int l = skip + storage;
+   int f1 = mrc1.skip; int l1 = f1 + mrc1.storage;
+   if (f1<f) f1=f; if (l1>l) l1=l;
+   int f2 = mrc2.skip; int l2 = f2 + mrc2.storage;
+   if (f2<f) f2=f; if (l2>l) l2=l;
+   Real* el = data + (f-skip);
+   Real* el1 = mrc1.data+(f1-mrc1.skip); Real* el2 = mrc2.data+(f2-mrc2.skip);
+   if (f1<f2)
+   {
+      int i = f1-f; while (i--) *el++ = 0.0;
+      if (l1<=f2)                              // disjoint
+      {
+         REPORT                                // not accessed
+         i = l1-f1;     while (i--) *el++ = *el1++;
+         i = f2-l1;     while (i--) *el++ = 0.0;
+         i = l2-f2;     while (i--) *el++ = *el2++;
+         i = l-l2;      while (i--) *el++ = 0.0;
+      }
+      else
+      {
+         i = f2-f1;    while (i--) *el++ = *el1++;
+         if (l1<=l2)
+         {
+            REPORT
+            i = l1-f2; while (i--) *el++ = *el1++ + *el2++;
+            i = l2-l1; while (i--) *el++ = *el2++;
+            i = l-l2;  while (i--) *el++ = 0.0;
+         }
+         else
+         {
+            REPORT
+            i = l2-f2; while (i--) *el++ = *el1++ + *el2++;
+            i = l1-l2; while (i--) *el++ = *el1++;
+            i = l-l1;  while (i--) *el++ = 0.0;
+         }
+      }
+   }
+   else
+   {
+      int i = f2-f; while (i--) *el++ = 0.0;
+      if (l2<=f1)                              // disjoint
+      {
+         REPORT                                // not accessed
+         i = l2-f2;     while (i--) *el++ = *el2++;
+         i = f1-l2;     while (i--) *el++ = 0.0;
+         i = l1-f1;     while (i--) *el++ = *el1++;
+         i = l-l1;      while (i--) *el++ = 0.0;
+      }
+      else
+      {
+         i = f1-f2;    while (i--) *el++ = *el2++;
+         if (l2<=l1)
+         {
+            REPORT
+            i = l2-f1; while (i--) *el++ = *el1++ + *el2++;
+            i = l1-l2; while (i--) *el++ = *el1++;
+            i = l-l1;  while (i--) *el++ = 0.0;
+         }
+         else
+         {
+            REPORT
+            i = l1-f1; while (i--) *el++ = *el1++ + *el2++;
+            i = l2-l1; while (i--) *el++ = *el2++;
+            i = l-l2;  while (i--) *el++ = 0.0;
+         }
+      }
+   }
+}
+
+void MatrixRowCol::Sub(const MatrixRowCol& mrc1, const MatrixRowCol& mrc2)
+{
+   // THIS = mrc1 - mrc2
+   int f = skip; int l = skip + storage;
+   int f1 = mrc1.skip; int l1 = f1 + mrc1.storage;
+   if (f1<f) f1=f; if (l1>l) l1=l;
+   int f2 = mrc2.skip; int l2 = f2 + mrc2.storage;
+   if (f2<f) f2=f; if (l2>l) l2=l;
+   Real* el = data + (f-skip);
+   Real* el1 = mrc1.data+(f1-mrc1.skip); Real* el2 = mrc2.data+(f2-mrc2.skip);
+   if (f1<f2)
+   {
+      int i = f1-f; while (i--) *el++ = 0.0;
+      if (l1<=f2)                              // disjoint
+      {
+         REPORT                                // not accessed
+         i = l1-f1;     while (i--) *el++ = *el1++;
+         i = f2-l1;     while (i--) *el++ = 0.0;
+         i = l2-f2;     while (i--) *el++ = - *el2++;
+         i = l-l2;      while (i--) *el++ = 0.0;
+      }
+      else
+      {
+         i = f2-f1;    while (i--) *el++ = *el1++;
+         if (l1<=l2)
+         {
+            REPORT
+            i = l1-f2; while (i--) *el++ = *el1++ - *el2++;
+            i = l2-l1; while (i--) *el++ = - *el2++;
+            i = l-l2;  while (i--) *el++ = 0.0;
+         }
+         else
+         {
+            REPORT
+            i = l2-f2; while (i--) *el++ = *el1++ - *el2++;
+            i = l1-l2; while (i--) *el++ = *el1++;
+            i = l-l1;  while (i--) *el++ = 0.0;
+         }
+      }
+   }
+   else
+   {
+      int i = f2-f; while (i--) *el++ = 0.0;
+      if (l2<=f1)                              // disjoint
+      {
+         REPORT                                // not accessed
+         i = l2-f2;     while (i--) *el++ = - *el2++;
+         i = f1-l2;     while (i--) *el++ = 0.0;
+         i = l1-f1;     while (i--) *el++ = *el1++;
+         i = l-l1;      while (i--) *el++ = 0.0;
+      }
+      else
+      {
+         i = f1-f2;    while (i--) *el++ = - *el2++;
+         if (l2<=l1)
+         {
+            REPORT
+            i = l2-f1; while (i--) *el++ = *el1++ - *el2++;
+            i = l1-l2; while (i--) *el++ = *el1++;
+            i = l-l1;  while (i--) *el++ = 0.0;
+         }
+         else
+         {
+            REPORT
+            i = l1-f1; while (i--) *el++ = *el1++ - *el2++;
+            i = l2-l1; while (i--) *el++ = - *el2++;
+            i = l-l2;  while (i--) *el++ = 0.0;
+         }
+      }
+   }
+}
+
+
+void MatrixRowCol::Add(const MatrixRowCol& mrc1, Real x)
+{
+   // THIS = mrc1 + x
+   REPORT
+   if (!storage) return;
+   int f = mrc1.skip; int l = f + mrc1.storage; int lx = skip + storage;
+   if (f < skip) { f = skip; if (l < f) l = f; }
+   if (l > lx) { l = lx; if (f > lx) f = lx; }
+
+   Real* elx = data; Real* ely = mrc1.data+(f-mrc1.skip);
+
+   int l1 = f-skip;  while (l1--) *elx++ = x;
+       l1 = l-f;     while (l1--) *elx++ = *ely++ + x;
+       lx -= l;      while (lx--) *elx++ = x;
+}
+
+void MatrixRowCol::NegAdd(const MatrixRowCol& mrc1, Real x)
+{
+   // THIS = x - mrc1
+   REPORT
+   if (!storage) return;
+   int f = mrc1.skip; int l = f + mrc1.storage; int lx = skip + storage;
+   if (f < skip) { f = skip; if (l < f) l = f; }
+   if (l > lx) { l = lx; if (f > lx) f = lx; }
+
+   Real* elx = data; Real* ely = mrc1.data+(f-mrc1.skip);
+
+   int l1 = f-skip;  while (l1--) *elx++ = x;
+       l1 = l-f;     while (l1--) *elx++ = x - *ely++;
+       lx -= l;      while (lx--) *elx++ = x;
+}
+
+void MatrixRowCol::RevSub(const MatrixRowCol& mrc1)
+{
+   // THIS = mrc - THIS
+   REPORT
+   if (!storage) return;
+   int f = mrc1.skip; int l = f + mrc1.storage; int lx = skip + storage;
+   if (f < skip) { f = skip; if (l < f) l = f; }
+   if (l > lx) { l = lx; if (f > lx) f = lx; }
+
+   Real* elx = data; Real* ely = mrc1.data+(f-mrc1.skip);
+
+   int l1 = f-skip;  while (l1--) { *elx = - *elx; elx++; }
+       l1 = l-f;     while (l1--) { *elx = *ely++ - *elx; elx++; }
+       lx -= l;      while (lx--) { *elx = - *elx; elx++; }
+}
+
+void MatrixRowCol::ConCat(const MatrixRowCol& mrc1, const MatrixRowCol& mrc2)
+{
+   // THIS = mrc1 | mrc2
+   REPORT
+   int f1 = mrc1.skip; int l1 = f1 + mrc1.storage; int lx = skip + storage;
+   if (f1 < skip) { f1 = skip; if (l1 < f1) l1 = f1; }
+   if (l1 > lx) { l1 = lx; if (f1 > lx) f1 = lx; }
+
+   Real* elx = data;
+
+   int i = f1-skip;  while (i--) *elx++ =0.0;
+   i = l1-f1;
+   if (i)                       // in case f1 would take ely out of range
+      { Real* ely = mrc1.data+(f1-mrc1.skip);  while (i--) *elx++ = *ely++; }
+
+   int f2 = mrc2.skip; int l2 = f2 + mrc2.storage; i = mrc1.length;
+   int skipx = l1 - i; lx -= i; // addresses rel to second seg, maybe -ve
+   if (f2 < skipx) { f2 = skipx; if (l2 < f2) l2 = f2; }
+   if (l2 > lx) { l2 = lx; if (f2 > lx) f2 = lx; }
+
+   i = f2-skipx; while (i--) *elx++ = 0.0;
+   i = l2-f2;
+   if (i)                       // in case f2 would take ely out of range
+      { Real* ely = mrc2.data+(f2-mrc2.skip); while (i--) *elx++ = *ely++; }
+   lx -= l2;     while (lx--) *elx++ = 0.0;
+}
+
+void MatrixRowCol::Multiply(const MatrixRowCol& mrc1)
+// element by element multiply into
+{
+   REPORT
+   if (!storage) return;
+   int f = mrc1.skip; int l = f + mrc1.storage; int lx = skip + storage;
+   if (f < skip) { f = skip; if (l < f) l = f; }
+   if (l > lx) { l = lx; if (f > lx) f = lx; }
+
+   Real* elx = data; Real* ely = mrc1.data+(f-mrc1.skip);
+
+   int l1 = f-skip;  while (l1--) *elx++ = 0;
+       l1 = l-f;     while (l1--) *elx++ *= *ely++;
+       lx -= l;      while (lx--) *elx++ = 0;
+}
+
+void MatrixRowCol::Multiply(const MatrixRowCol& mrc1, const MatrixRowCol& mrc2)
+// element by element multiply
+{
+   int f = skip; int l = skip + storage;
+   int f1 = mrc1.skip; int l1 = f1 + mrc1.storage;
+   if (f1<f) f1=f; if (l1>l) l1=l;
+   int f2 = mrc2.skip; int l2 = f2 + mrc2.storage;
+   if (f2<f) f2=f; if (l2>l) l2=l;
+   Real* el = data + (f-skip); int i;
+   if (f1<f2) f1 = f2; if (l1>l2) l1 = l2;
+   if (l1<=f1) { REPORT i = l-f; while (i--) *el++ = 0.0; }  // disjoint
+   else
+   {
+      REPORT
+      Real* el1 = mrc1.data+(f1-mrc1.skip);
+      Real* el2 = mrc2.data+(f1-mrc2.skip);
+      i = f1-f ;    while (i--) *el++ = 0.0;
+      i = l1-f1;    while (i--) *el++ = *el1++ * *el2++;
+      i = l-l1;     while (i--) *el++ = 0.0;
+   }
+}
+
+void MatrixRowCol::KP(const MatrixRowCol& mrc1, const MatrixRowCol& mrc2)
+// row for Kronecker product
+{
+   int f = skip; int s = storage; Real* el = data; int i;
+
+   i = mrc1.skip * mrc2.length;
+   if (i > f)
+   {
+      i -= f; f = 0; if (i > s) { i = s; s = 0; }  else s -= i;
+      while (i--) *el++ = 0.0;
+      if (s == 0) return;
+   }
+   else f -= i;
+
+   i = mrc1.storage; Real* el1 = mrc1.data;
+   int mrc2_skip = mrc2.skip; int mrc2_storage = mrc2.storage;
+   int mrc2_length = mrc2.length;
+   int mrc2_remain = mrc2_length - mrc2_skip - mrc2_storage;
+   while (i--)
+   {
+      int j; Real* el2 = mrc2.data; Real vel1 = *el1;
+      if (f == 0 && mrc2_length <= s)
+      {
+         j = mrc2_skip; s -= j;    while (j--) *el++ = 0.0;
+         j = mrc2_storage; s -= j; while (j--) *el++ = vel1 * *el2++;
+         j = mrc2_remain; s -= j;  while (j--) *el++ = 0.0;
+      }
+      else if (f >= mrc2_length) f -= mrc2_length;
+      else
+      {
+         j = mrc2_skip;
+         if (j > f)
+         {
+            j -= f; f = 0; if (j > s) { j = s; s = 0; } else s -= j;
+            while (j--) *el++ = 0.0;
+         }
+         else f -= j;
+
+         j = mrc2_storage;
+         if (j > f)
+         {
+            j -= f; el2 += f; f = 0; if (j > s) { j = s; s = 0; } else s -= j;
+            while (j--) *el++ = vel1 * *el2++;
+         }
+         else f -= j;
+
+         j = mrc2_remain;
+         if (j > f)
+         {
+            j -= f; f = 0; if (j > s) { j = s; s = 0; } else s -= j;
+            while (j--) *el++ = 0.0;
+         }
+         else f -= j;
+      }
+      if (s == 0) return;
+      ++el1;
+   }
+
+   i = (mrc1.length - mrc1.skip - mrc1.storage) * mrc2.length;
+   if (i > f)
+   {
+      i -= f; if (i > s) i = s;
+      while (i--) *el++ = 0.0;
+   }
+}
+
+
+void MatrixRowCol::Copy(const MatrixRowCol& mrc1)
+{
+   // THIS = mrc1
+   REPORT
+   if (!storage) return;
+   int f = mrc1.skip; int l = f + mrc1.storage; int lx = skip + storage;
+   if (f < skip) { f = skip; if (l < f) l = f; }
+   if (l > lx) { l = lx; if (f > lx) f = lx; }
+
+   Real* elx = data; Real* ely = 0;
+
+   if (l-f) ely = mrc1.data+(f-mrc1.skip);
+
+   int l1 = f-skip;  while (l1--) *elx++ = 0.0;
+       l1 = l-f;     while (l1--) *elx++ = *ely++;
+       lx -= l;      while (lx--) *elx++ = 0.0;
+}
+
+void MatrixRowCol::CopyCheck(const MatrixRowCol& mrc1)
+// Throw an exception if this would lead to a loss of data
+{
+   REPORT
+   if (!storage) return;
+   int f = mrc1.skip; int l = f + mrc1.storage; int lx = skip + storage;
+   if (f < skip || l > lx) Throw(ProgramException("Illegal Conversion"));
+
+   Real* elx = data; Real* ely = mrc1.data+(f-mrc1.skip);
+
+   int l1 = f-skip;  while (l1--) *elx++ = 0.0;
+       l1 = l-f;     while (l1--) *elx++ = *ely++;
+       lx -= l;      while (lx--) *elx++ = 0.0;
+}
+
+void MatrixRowCol::Check(const MatrixRowCol& mrc1)
+// Throw an exception if +=, -=, copy etc would lead to a loss of data
+{
+   REPORT
+   int f = mrc1.skip; int l = f + mrc1.storage; int lx = skip + storage;
+   if (f < skip || l > lx) Throw(ProgramException("Illegal Conversion"));
+}
+
+void MatrixRowCol::Check()
+// Throw an exception if +=, -= of constant would lead to a loss of data
+// that is: check full row is present
+// may not be appropriate for symmetric matrices
+{
+   REPORT
+   if (skip!=0 || storage!=length)
+      Throw(ProgramException("Illegal Conversion"));
+}
+
+void MatrixRowCol::Negate(const MatrixRowCol& mrc1)
+{
+   // THIS = -mrc1
+   REPORT
+   if (!storage) return;
+   int f = mrc1.skip; int l = f + mrc1.storage; int lx = skip + storage;
+   if (f < skip) { f = skip; if (l < f) l = f; }
+   if (l > lx) { l = lx; if (f > lx) f = lx; }
+
+   Real* elx = data; Real* ely = mrc1.data+(f-mrc1.skip);
+
+   int l1 = f-skip;  while (l1--) *elx++ = 0.0;
+       l1 = l-f;     while (l1--) *elx++ = - *ely++;
+       lx -= l;      while (lx--) *elx++ = 0.0;
+}
+
+void MatrixRowCol::Multiply(const MatrixRowCol& mrc1, Real s)
+{
+   // THIS = mrc1 * s
+   REPORT
+   if (!storage) return;
+   int f = mrc1.skip; int l = f + mrc1.storage; int lx = skip + storage;
+   if (f < skip) { f = skip; if (l < f) l = f; }
+   if (l > lx) { l = lx; if (f > lx) f = lx; }
+
+   Real* elx = data; Real* ely = mrc1.data+(f-mrc1.skip);
+
+   int l1 = f-skip;  while (l1--) *elx++ = 0.0;
+       l1 = l-f;     while (l1--) *elx++ = *ely++ * s;
+       lx -= l;      while (lx--) *elx++ = 0.0;
+}
+
+void DiagonalMatrix::Solver(MatrixColX& mrc, const MatrixColX& mrc1)
+{
+   // mrc = mrc / mrc1   (elementwise)
+   REPORT
+   int f = mrc1.skip; int f0 = mrc.skip;
+   int l = f + mrc1.storage; int lx = f0 + mrc.storage;
+   if (f < f0) { f = f0; if (l < f) l = f; }
+   if (l > lx) { l = lx; if (f > lx) f = lx; }
+
+   Real* elx = mrc.data; Real* eld = store+f;
+
+   int l1 = f-f0;    while (l1--) *elx++ = 0.0;
+       l1 = l-f;     while (l1--) *elx++ /= *eld++;
+       lx -= l;      while (lx--) *elx++ = 0.0;
+   // Solver makes sure input and output point to same memory
+}
+
+void IdentityMatrix::Solver(MatrixColX& mrc, const MatrixColX& mrc1)
+{
+   // mrc = mrc / mrc1   (elementwise)
+   REPORT
+   int f = mrc1.skip; int f0 = mrc.skip;
+   int l = f + mrc1.storage; int lx = f0 + mrc.storage;
+   if (f < f0) { f = f0; if (l < f) l = f; }
+   if (l > lx) { l = lx; if (f > lx) f = lx; }
+
+   Real* elx = mrc.data; Real eldv = *store;
+
+   int l1 = f-f0;    while (l1--) *elx++ = 0.0;
+       l1 = l-f;     while (l1--) *elx++ /= eldv;
+       lx -= l;      while (lx--) *elx++ = 0.0;
+   // Solver makes sure input and output point to same memory
+}
+
+void MatrixRowCol::Copy(const double*& r)
+{
+   // THIS = *r
+   REPORT
+   Real* elx = data; const double* ely = r+skip; r += length;
+   int l = storage; while (l--) *elx++ = (Real)*ely++;
+}
+
+void MatrixRowCol::Copy(const float*& r)
+{
+   // THIS = *r
+   REPORT
+   Real* elx = data; const float* ely = r+skip; r += length;
+   int l = storage; while (l--) *elx++ = (Real)*ely++;
+}
+
+void MatrixRowCol::Copy(const int*& r)
+{
+   // THIS = *r
+   REPORT
+   Real* elx = data; const int* ely = r+skip; r += length;
+   int l = storage; while (l--) *elx++ = (Real)*ely++;
+}
+
+void MatrixRowCol::Copy(Real r)
+{
+   // THIS = r
+   REPORT  Real* elx = data; int l = storage; while (l--) *elx++ = r;
+}
+
+void MatrixRowCol::Zero()
+{
+   // THIS = 0
+   REPORT  Real* elx = data; int l = storage; while (l--) *elx++ = 0;
+}
+
+void MatrixRowCol::Multiply(Real r)
+{
+   // THIS *= r
+   REPORT  Real* elx = data; int l = storage; while (l--) *elx++ *= r;
+}
+
+void MatrixRowCol::Add(Real r)
+{
+   // THIS += r
+   REPORT
+   Real* elx = data; int l = storage; while (l--) *elx++ += r;
+}
+
+Real MatrixRowCol::SumAbsoluteValue()
+{
+   REPORT
+   Real sum = 0.0; Real* elx = data; int l = storage;
+   while (l--) sum += fabs(*elx++);
+   return sum;
+}
+
+// max absolute value of r and elements of row/col
+// we use <= or >= in all of these so we are sure of getting
+// r reset at least once.
+Real MatrixRowCol::MaximumAbsoluteValue1(Real r, int& i)
+{
+   REPORT
+   Real* elx = data; int l = storage; int li = -1;
+   while (l--) { Real f = fabs(*elx++); if (r <= f) { r = f; li = l; } }
+   i = (li >= 0) ? storage - li + skip : 0;
+   return r;
+}
+
+// min absolute value of r and elements of row/col
+Real MatrixRowCol::MinimumAbsoluteValue1(Real r, int& i)
+{
+   REPORT
+   Real* elx = data; int l = storage; int li = -1;
+   while (l--) { Real f = fabs(*elx++); if (r >= f) { r = f; li = l; } }
+   i = (li >= 0) ? storage - li + skip : 0;
+   return r;
+}
+
+// max value of r and elements of row/col
+Real MatrixRowCol::Maximum1(Real r, int& i)
+{
+   REPORT
+   Real* elx = data; int l = storage; int li = -1;
+   while (l--) { Real f = *elx++; if (r <= f) { r = f; li = l; } }
+   i = (li >= 0) ? storage - li + skip : 0;
+   return r;
+}
+
+// min value of r and elements of row/col
+Real MatrixRowCol::Minimum1(Real r, int& i)
+{
+   REPORT
+   Real* elx = data; int l = storage; int li = -1;
+   while (l--) { Real f = *elx++; if (r >= f) { r = f; li = l; } }
+   i = (li >= 0) ? storage - li + skip : 0;
+   return r;
+}
+
+Real MatrixRowCol::Sum()
+{
+   REPORT
+   Real sum = 0.0; Real* elx = data; int l = storage;
+   while (l--) sum += *elx++;
+   return sum;
+}
+
+void MatrixRowCol::SubRowCol(MatrixRowCol& mrc, int skip1, int l1) const
+{
+   mrc.length = l1;  int d = skip - skip1;
+   if (d<0) { mrc.skip = 0; mrc.data = data - d; }
+   else  { mrc.skip = d; mrc.data = data; }
+   d = skip + storage - skip1;
+   d = ((l1 < d) ? l1 : d) - mrc.skip;  mrc.storage = (d < 0) ? 0 : d;
+   mrc.cw = 0;
+}
+
+#ifdef use_namespace
+}
+#endif
+
+
+///@}
Index: branches/BNC_LM/newmat/newmat3.cpp
===================================================================
--- branches/BNC_LM/newmat/newmat3.cpp	(revision 3570)
+++ branches/BNC_LM/newmat/newmat3.cpp	(revision 3570)
@@ -0,0 +1,849 @@
+/// \ingroup newmat
+///@{
+
+/// \file newmat3.cpp
+/// Get and restore rows and columns.
+
+// Copyright (C) 1991,2,3,4: R B Davies
+
+//#define WANT_STREAM
+
+#include "include.h"
+
+#include "newmat.h"
+#include "newmatrc.h"
+
+#ifdef use_namespace
+namespace NEWMAT {
+#endif
+
+
+#ifdef DO_REPORT
+#define REPORT { static ExeCounter ExeCount(__LINE__,3); ++ExeCount; }
+#else
+#define REPORT {}
+#endif
+
+//#define MONITOR(what,storage,store)
+//   { cout << what << " " << storage << " at " << (long)store << "\n"; }
+
+#define MONITOR(what,store,storage) {}
+
+
+// Control bits codes for GetRow, GetCol, RestoreRow, RestoreCol
+//
+// LoadOnEntry:
+//    Load data into MatrixRow or Col dummy array under GetRow or GetCol
+// StoreOnExit:
+//    Restore data to original matrix under RestoreRow or RestoreCol
+// DirectPart:
+//    Load or restore only part directly stored; must be set with StoreOnExit
+//    Still have decide how to handle this with symmetric
+// StoreHere:
+//    used in columns only - store data at supplied storage address;
+//    used for GetCol, NextCol & RestoreCol. No need to fill out zeros
+// HaveStore:
+//    dummy array has been assigned (internal use only).
+
+// For symmetric matrices, treat columns as rows unless StoreHere is set;
+// then stick to columns as this will give better performance for doing
+// inverses
+
+// How components are used:
+
+// Use rows wherever possible in preference to columns
+
+// Columns without StoreHere are used in in-exact transpose, sum column,
+// multiply a column vector, and maybe in future access to column,
+// additional multiply functions, add transpose
+
+// Columns with StoreHere are used in exact transpose (not symmetric matrices
+// or vectors, load only)
+
+// Columns with MatrixColX (Store to full column) are used in inverse and solve
+
+// Functions required for each matrix class
+
+// GetRow(MatrixRowCol& mrc)
+// GetCol(MatrixRowCol& mrc)
+// GetCol(MatrixColX& mrc)
+// RestoreRow(MatrixRowCol& mrc)
+// RestoreCol(MatrixRowCol& mrc)
+// RestoreCol(MatrixColX& mrc)
+// NextRow(MatrixRowCol& mrc)
+// NextCol(MatrixRowCol& mrc)
+// NextCol(MatrixColX& mrc)
+
+// The Restore routines assume StoreOnExit has already been checked
+// Defaults for the Next routines are given below
+// Assume cannot have both !DirectPart && StoreHere for MatrixRowCol routines
+
+
+// Default NextRow and NextCol:
+// will work as a default but need to override NextRow for efficiency
+
+void GeneralMatrix::NextRow(MatrixRowCol& mrc)
+{
+   REPORT
+   if (+(mrc.cw*StoreOnExit)) { REPORT this->RestoreRow(mrc); }
+   mrc.rowcol++;
+   if (mrc.rowcol<nrows_val) { REPORT this->GetRow(mrc); }
+   else { REPORT mrc.cw -= StoreOnExit; }
+}
+
+void GeneralMatrix::NextCol(MatrixRowCol& mrc)
+{
+   REPORT                                                // 423
+   if (+(mrc.cw*StoreOnExit)) { REPORT this->RestoreCol(mrc); }
+   mrc.rowcol++;
+   if (mrc.rowcol<ncols_val) { REPORT this->GetCol(mrc); }
+   else { REPORT mrc.cw -= StoreOnExit; }
+}
+
+void GeneralMatrix::NextCol(MatrixColX& mrc)
+{
+   REPORT                                                // 423
+   if (+(mrc.cw*StoreOnExit)) { REPORT this->RestoreCol(mrc); }
+   mrc.rowcol++;
+   if (mrc.rowcol<ncols_val) { REPORT this->GetCol(mrc); }
+   else { REPORT mrc.cw -= StoreOnExit; }
+}
+
+
+// routines for matrix
+
+void Matrix::GetRow(MatrixRowCol& mrc)
+{
+   REPORT
+   mrc.skip=0; mrc.storage=mrc.length=ncols_val;
+   mrc.data=store+mrc.rowcol*ncols_val;
+}
+
+
+void Matrix::GetCol(MatrixRowCol& mrc)
+{
+   REPORT
+   mrc.skip=0; mrc.storage=mrc.length=nrows_val;
+   if ( ncols_val==1 && !(mrc.cw*StoreHere) )      // ColumnVector
+      { REPORT mrc.data=store; }
+   else
+   {
+      Real* ColCopy;
+      if ( !(mrc.cw*(HaveStore+StoreHere)) )
+      {
+         REPORT
+         ColCopy = new Real [nrows_val]; MatrixErrorNoSpace(ColCopy);
+         MONITOR_REAL_NEW("Make (MatGetCol)",nrows_val,ColCopy)
+         mrc.data = ColCopy; mrc.cw += HaveStore;
+      }
+      else { REPORT ColCopy = mrc.data; }
+      if (+(mrc.cw*LoadOnEntry))
+      {
+         REPORT
+         Real* Mstore = store+mrc.rowcol; int i=nrows_val;
+         //while (i--) { *ColCopy++ = *Mstore; Mstore+=ncols_val; }
+         if (i) for (;;)
+            { *ColCopy++ = *Mstore; if (!(--i)) break; Mstore+=ncols_val; }
+      }
+   }
+}
+
+void Matrix::GetCol(MatrixColX& mrc)
+{
+   REPORT
+   mrc.skip=0; mrc.storage=nrows_val; mrc.length=nrows_val;
+   if (+(mrc.cw*LoadOnEntry))
+   {
+      REPORT  Real* ColCopy = mrc.data;
+      Real* Mstore = store+mrc.rowcol; int i=nrows_val;
+      //while (i--) { *ColCopy++ = *Mstore; Mstore+=ncols_val; }
+      if (i) for (;;)
+          { *ColCopy++ = *Mstore; if (!(--i)) break; Mstore+=ncols_val; }
+   }
+}
+
+void Matrix::RestoreCol(MatrixRowCol& mrc)
+{
+   // always check StoreOnExit before calling RestoreCol
+   REPORT                                   // 429
+   if (+(mrc.cw*HaveStore))
+   {
+      REPORT                                // 426
+      Real* Mstore = store+mrc.rowcol; int i=nrows_val;
+      Real* Cstore = mrc.data;
+      // while (i--) { *Mstore = *Cstore++; Mstore+=ncols_val; }
+      if (i) for (;;)
+          { *Mstore = *Cstore++; if (!(--i)) break; Mstore+=ncols_val; }
+   }
+}
+
+void Matrix::RestoreCol(MatrixColX& mrc)
+{
+   REPORT
+   Real* Mstore = store+mrc.rowcol; int i=nrows_val; Real* Cstore = mrc.data;
+   // while (i--) { *Mstore = *Cstore++; Mstore+=ncols_val; }
+   if (i) for (;;)
+      { *Mstore = *Cstore++; if (!(--i)) break; Mstore+=ncols_val; }
+}
+
+void Matrix::NextRow(MatrixRowCol& mrc) { REPORT mrc.IncrMat(); }  // 1808
+
+void Matrix::NextCol(MatrixRowCol& mrc)
+{
+   REPORT                                        // 632
+   if (+(mrc.cw*StoreOnExit)) { REPORT RestoreCol(mrc); }
+   mrc.rowcol++;
+   if (mrc.rowcol<ncols_val)
+   {
+      if (+(mrc.cw*LoadOnEntry))
+      {
+         REPORT
+         Real* ColCopy = mrc.data;
+         Real* Mstore = store+mrc.rowcol; int i=nrows_val;
+         //while (i--) { *ColCopy++ = *Mstore; Mstore+=ncols_val; }
+         if (i) for (;;)
+            { *ColCopy++ = *Mstore; if (!(--i)) break; Mstore+=ncols_val; }
+      }
+   }
+   else { REPORT mrc.cw -= StoreOnExit; }
+}
+
+void Matrix::NextCol(MatrixColX& mrc)
+{
+   REPORT
+   if (+(mrc.cw*StoreOnExit)) { REPORT RestoreCol(mrc); }
+   mrc.rowcol++;
+   if (mrc.rowcol<ncols_val)
+   {
+      if (+(mrc.cw*LoadOnEntry))
+      {
+         REPORT
+         Real* ColCopy = mrc.data;
+         Real* Mstore = store+mrc.rowcol; int i=nrows_val;
+         // while (i--) { *ColCopy++ = *Mstore; Mstore+=ncols_val; }
+         if (i) for (;;)
+            { *ColCopy++ = *Mstore; if (!(--i)) break; Mstore+=ncols_val; }
+      }
+   }
+   else { REPORT mrc.cw -= StoreOnExit; }
+}
+
+// routines for diagonal matrix
+
+void DiagonalMatrix::GetRow(MatrixRowCol& mrc)
+{
+   REPORT
+   mrc.skip=mrc.rowcol; mrc.storage=1;
+   mrc.data=store+mrc.skip; mrc.length=ncols_val;
+}
+
+void DiagonalMatrix::GetCol(MatrixRowCol& mrc)
+{
+   REPORT
+   mrc.skip=mrc.rowcol; mrc.storage=1; mrc.length=nrows_val;
+   if (+(mrc.cw*StoreHere))              // should not happen
+      Throw(InternalException("DiagonalMatrix::GetCol(MatrixRowCol&)"));
+   else  { REPORT mrc.data=store+mrc.skip; }
+                                                      // not accessed
+}
+
+void DiagonalMatrix::GetCol(MatrixColX& mrc)
+{
+   REPORT
+   mrc.skip=mrc.rowcol; mrc.storage=1; mrc.length=nrows_val;
+   mrc.data = mrc.store+mrc.skip;
+   *(mrc.data)=*(store+mrc.skip);
+}
+
+void DiagonalMatrix::NextRow(MatrixRowCol& mrc) { REPORT mrc.IncrDiag(); }
+                        // 800
+
+void DiagonalMatrix::NextCol(MatrixRowCol& mrc) { REPORT mrc.IncrDiag(); }
+                        // not accessed
+
+void DiagonalMatrix::NextCol(MatrixColX& mrc)
+{
+   REPORT
+   if (+(mrc.cw*StoreOnExit))
+      { REPORT *(store+mrc.rowcol)=*(mrc.data); }
+   mrc.IncrDiag();
+   int t1 = +(mrc.cw*LoadOnEntry);
+   if (t1 && mrc.rowcol < ncols_val)
+      { REPORT *(mrc.data)=*(store+mrc.rowcol); }
+}
+
+// routines for upper triangular matrix
+
+void UpperTriangularMatrix::GetRow(MatrixRowCol& mrc)
+{
+   REPORT
+   int row = mrc.rowcol; mrc.skip=row; mrc.length=ncols_val;
+   mrc.storage=ncols_val-row; mrc.data=store+(row*(2*ncols_val-row+1))/2;
+}
+
+
+void UpperTriangularMatrix::GetCol(MatrixRowCol& mrc)
+{
+   REPORT
+   mrc.skip=0; int i=mrc.rowcol+1; mrc.storage=i;
+   mrc.length=nrows_val; Real* ColCopy;
+   if ( !(mrc.cw*(StoreHere+HaveStore)) )
+   {
+      REPORT                                              // not accessed
+      ColCopy = new Real [nrows_val]; MatrixErrorNoSpace(ColCopy);
+      MONITOR_REAL_NEW("Make (UT GetCol)",nrows_val,ColCopy)
+      mrc.data = ColCopy; mrc.cw += HaveStore;
+   }
+   else { REPORT ColCopy = mrc.data; }
+   if (+(mrc.cw*LoadOnEntry))
+   {
+      REPORT
+      Real* Mstore = store+mrc.rowcol; int j = ncols_val;
+      // while (i--) { *ColCopy++ = *Mstore; Mstore += --j; }
+      if (i) for (;;)
+         { *ColCopy++ = *Mstore; if (!(--i)) break; Mstore += --j; }
+   }
+}
+
+void UpperTriangularMatrix::GetCol(MatrixColX& mrc)
+{
+   REPORT
+   mrc.skip=0; int i=mrc.rowcol+1; mrc.storage=i;
+   mrc.length=nrows_val;
+   if (+(mrc.cw*LoadOnEntry))
+   {
+      REPORT
+      Real* ColCopy = mrc.data;
+      Real* Mstore = store+mrc.rowcol; int j = ncols_val;
+      // while (i--) { *ColCopy++ = *Mstore; Mstore += --j; }
+      if (i) for (;;)
+         { *ColCopy++ = *Mstore; if (!(--i)) break; Mstore += --j; }
+   }
+}
+
+void UpperTriangularMatrix::RestoreCol(MatrixRowCol& mrc)
+{
+  REPORT
+  Real* Mstore = store+mrc.rowcol; int i=mrc.rowcol+1; int j = ncols_val;
+  Real* Cstore = mrc.data;
+  // while (i--) { *Mstore = *Cstore++; Mstore += --j; }
+  if (i) for (;;)
+     { *Mstore = *Cstore++; if (!(--i)) break; Mstore += --j; }
+}
+
+void UpperTriangularMatrix::NextRow(MatrixRowCol& mrc) { REPORT mrc.IncrUT(); }
+						      // 722
+
+// routines for lower triangular matrix
+
+void LowerTriangularMatrix::GetRow(MatrixRowCol& mrc)
+{
+   REPORT
+   int row=mrc.rowcol; mrc.skip=0; mrc.storage=row+1; mrc.length=ncols_val;
+   mrc.data=store+(row*(row+1))/2;
+}
+
+void LowerTriangularMatrix::GetCol(MatrixRowCol& mrc)
+{
+   REPORT
+   int col=mrc.rowcol; mrc.skip=col; mrc.length=nrows_val;
+   int i=nrows_val-col; mrc.storage=i; Real* ColCopy;
+   if ( +(mrc.cw*(StoreHere+HaveStore)) )
+      { REPORT  ColCopy = mrc.data; }
+   else
+   {
+      REPORT                                            // not accessed
+      ColCopy = new Real [nrows_val]; MatrixErrorNoSpace(ColCopy);
+      MONITOR_REAL_NEW("Make (LT GetCol)",nrows_val,ColCopy)
+      mrc.cw += HaveStore; mrc.data = ColCopy;
+   }
+
+   if (+(mrc.cw*LoadOnEntry))
+   {
+      REPORT
+      Real* Mstore = store+(col*(col+3))/2;
+      // while (i--) { *ColCopy++ = *Mstore; Mstore += ++col; }
+      if (i) for (;;)
+         { *ColCopy++ = *Mstore; if (!(--i)) break; Mstore += ++col; }
+   }
+}
+
+void LowerTriangularMatrix::GetCol(MatrixColX& mrc)
+{
+   REPORT
+   int col=mrc.rowcol; mrc.skip=col; mrc.length=nrows_val;
+   int i=nrows_val-col; mrc.storage=i; mrc.data = mrc.store + col;
+
+   if (+(mrc.cw*LoadOnEntry))
+   {
+      REPORT  Real* ColCopy = mrc.data;
+      Real* Mstore = store+(col*(col+3))/2;
+      // while (i--) { *ColCopy++ = *Mstore; Mstore += ++col; }
+      if (i) for (;;)
+         { *ColCopy++ = *Mstore; if (!(--i)) break; Mstore += ++col; }
+   }
+}
+
+void LowerTriangularMatrix::RestoreCol(MatrixRowCol& mrc)
+{
+   REPORT
+   int col=mrc.rowcol; Real* Cstore = mrc.data;
+   Real* Mstore = store+(col*(col+3))/2; int i=nrows_val-col;
+   //while (i--) { *Mstore = *Cstore++; Mstore += ++col; }
+   if (i) for (;;)
+      { *Mstore = *Cstore++; if (!(--i)) break; Mstore += ++col; }
+}
+
+void LowerTriangularMatrix::NextRow(MatrixRowCol& mrc) { REPORT mrc.IncrLT(); }
+					                 //712
+
+// routines for symmetric matrix
+
+void SymmetricMatrix::GetRow(MatrixRowCol& mrc)
+{
+   REPORT                                                //571
+   mrc.skip=0; int row=mrc.rowcol; mrc.length=ncols_val;
+   if (+(mrc.cw*DirectPart))
+      { REPORT mrc.storage=row+1; mrc.data=store+(row*(row+1))/2; }
+   else
+   {
+      // do not allow StoreOnExit and !DirectPart
+      if (+(mrc.cw*StoreOnExit))
+         Throw(InternalException("SymmetricMatrix::GetRow(MatrixRowCol&)"));
+      mrc.storage=ncols_val; Real* RowCopy;
+      if (!(mrc.cw*HaveStore))
+      {
+         REPORT
+         RowCopy = new Real [ncols_val]; MatrixErrorNoSpace(RowCopy);
+         MONITOR_REAL_NEW("Make (SymGetRow)",ncols_val,RowCopy)
+         mrc.cw += HaveStore; mrc.data = RowCopy;
+      }
+      else { REPORT RowCopy = mrc.data; }
+      if (+(mrc.cw*LoadOnEntry))
+      {
+         REPORT                                         // 544
+         Real* Mstore = store+(row*(row+1))/2; int i = row;
+         while (i--) *RowCopy++ = *Mstore++;
+         i = ncols_val-row;
+         // while (i--) { *RowCopy++ = *Mstore; Mstore += ++row; }
+         if (i) for (;;)
+            { *RowCopy++ = *Mstore; if (!(--i)) break; Mstore += ++row; }
+      }
+   }
+}
+
+void SymmetricMatrix::GetCol(MatrixRowCol& mrc)
+{
+   // do not allow StoreHere
+   if (+(mrc.cw*StoreHere))
+      Throw(InternalException("SymmetricMatrix::GetCol(MatrixRowCol&)"));
+
+   int col=mrc.rowcol; mrc.length=nrows_val;
+   REPORT
+   mrc.skip=0;
+   if (+(mrc.cw*DirectPart))    // actually get row ??
+      { REPORT mrc.storage=col+1; mrc.data=store+(col*(col+1))/2; }
+   else
+   {
+      // do not allow StoreOnExit and !DirectPart
+      if (+(mrc.cw*StoreOnExit))
+         Throw(InternalException("SymmetricMatrix::GetCol(MatrixRowCol&)"));
+
+      mrc.storage=ncols_val; Real* ColCopy;
+      if ( +(mrc.cw*HaveStore)) { REPORT ColCopy = mrc.data; }
+      else
+      {
+         REPORT                                      // not accessed
+         ColCopy = new Real [ncols_val]; MatrixErrorNoSpace(ColCopy);
+         MONITOR_REAL_NEW("Make (SymGetCol)",ncols_val,ColCopy)
+         mrc.cw += HaveStore; mrc.data = ColCopy;
+      }
+      if (+(mrc.cw*LoadOnEntry))
+      {
+         REPORT
+         Real* Mstore = store+(col*(col+1))/2; int i = col;
+         while (i--) *ColCopy++ = *Mstore++;
+         i = ncols_val-col;
+         // while (i--) { *ColCopy++ = *Mstore; Mstore += ++col; }
+         if (i) for (;;)
+            { *ColCopy++ = *Mstore; if (!(--i)) break; Mstore += ++col; }
+      }
+   }
+}
+
+void SymmetricMatrix::GetCol(MatrixColX& mrc)
+{
+   int col=mrc.rowcol; mrc.length=nrows_val;
+   if (+(mrc.cw*DirectPart))
+   {
+      REPORT
+      mrc.skip=col; int i=nrows_val-col; mrc.storage=i;
+      mrc.data = mrc.store+col;
+      if (+(mrc.cw*LoadOnEntry))
+      {
+         REPORT                           // not accessed
+         Real* ColCopy = mrc.data;
+         Real* Mstore = store+(col*(col+3))/2;
+         // while (i--) { *ColCopy++ = *Mstore; Mstore += ++col; }
+         if (i) for (;;)
+            { *ColCopy++ = *Mstore; if (!(--i)) break; Mstore += ++col; }
+      }
+   }
+   else
+   {
+      REPORT
+      // do not allow StoreOnExit and !DirectPart
+      if (+(mrc.cw*StoreOnExit))
+         Throw(InternalException("SymmetricMatrix::GetCol(MatrixColX&)"));
+
+      mrc.skip=0; mrc.storage=ncols_val;
+      if (+(mrc.cw*LoadOnEntry))
+      {
+         REPORT
+         Real* ColCopy = mrc.data;
+         Real* Mstore = store+(col*(col+1))/2; int i = col;
+         while (i--) *ColCopy++ = *Mstore++;
+         i = ncols_val-col;
+         // while (i--) { *ColCopy++ = *Mstore; Mstore += ++col; }
+         if (i) for (;;)
+            { *ColCopy++ = *Mstore; if (!(--i)) break; Mstore += ++col; }
+      }
+   }
+}
+
+// Do not need RestoreRow because we do not allow !DirectPart && StoreOnExit
+
+void SymmetricMatrix::RestoreCol(MatrixColX& mrc)
+{
+   REPORT
+   // Really do restore column
+   int col=mrc.rowcol; Real* Cstore = mrc.data;
+   Real* Mstore = store+(col*(col+3))/2; int i = nrows_val-col;
+   // while (i--) { *Mstore = *Cstore++; Mstore+= ++col; }
+   if (i) for (;;)
+      { *Mstore = *Cstore++; if (!(--i)) break; Mstore+= ++col; }
+
+}
+
+// routines for row vector
+
+void RowVector::GetCol(MatrixRowCol& mrc)
+{
+   REPORT
+   // do not allow StoreHere
+   if (+(mrc.cw*StoreHere))
+      Throw(InternalException("RowVector::GetCol(MatrixRowCol&)"));
+
+   mrc.skip=0; mrc.storage=1; mrc.length=nrows_val;
+   mrc.data = store+mrc.rowcol;
+
+}
+
+void RowVector::GetCol(MatrixColX& mrc)
+{
+   REPORT
+   mrc.skip=0; mrc.storage=1; mrc.length=nrows_val;
+   if (mrc.cw >= LoadOnEntry)
+      { REPORT *(mrc.data) = *(store+mrc.rowcol); }
+
+}
+
+void RowVector::NextCol(MatrixRowCol& mrc)
+{ REPORT mrc.rowcol++; mrc.data++; }
+
+void RowVector::NextCol(MatrixColX& mrc)
+{
+   if (+(mrc.cw*StoreOnExit)) { REPORT *(store+mrc.rowcol)=*(mrc.data); }
+
+   mrc.rowcol++;
+   if (mrc.rowcol < ncols_val)
+   {
+      if (+(mrc.cw*LoadOnEntry)) { REPORT *(mrc.data)=*(store+mrc.rowcol); }
+   }
+   else { REPORT mrc.cw -= StoreOnExit; }
+}
+
+void RowVector::RestoreCol(MatrixColX& mrc)
+   { REPORT *(store+mrc.rowcol)=*(mrc.data); }           // not accessed
+
+
+// routines for band matrices
+
+void BandMatrix::GetRow(MatrixRowCol& mrc)
+{
+   REPORT
+   int r = mrc.rowcol; int w = lower_val+1+upper_val; mrc.length=ncols_val;
+   int s = r-lower_val;
+   if (s<0) { mrc.data = store+(r*w-s); w += s; s = 0; }
+   else mrc.data = store+r*w;
+   mrc.skip = s; s += w-ncols_val; if (s>0) w -= s; mrc.storage = w;
+}
+
+// should make special versions of this for upper and lower band matrices
+
+void BandMatrix::NextRow(MatrixRowCol& mrc)
+{
+   REPORT
+   int r = ++mrc.rowcol;
+   if (r<=lower_val) { mrc.storage++; mrc.data += lower_val+upper_val; }
+   else  { mrc.skip++; mrc.data += lower_val+upper_val+1; }
+   if (r>=ncols_val-upper_val) mrc.storage--;
+}
+
+void BandMatrix::GetCol(MatrixRowCol& mrc)
+{
+   REPORT
+   int c = mrc.rowcol; int n = lower_val+upper_val; int w = n+1;
+   mrc.length=nrows_val; Real* ColCopy;
+   int b; int s = c-upper_val;
+   if (s<=0) { w += s; s = 0; b = c+lower_val; } else b = s*w+n;
+   mrc.skip = s; s += w-nrows_val; if (s>0) w -= s; mrc.storage = w;
+   if ( +(mrc.cw*(StoreHere+HaveStore)) )
+      { REPORT ColCopy = mrc.data; }
+   else
+   {
+      REPORT
+      ColCopy = new Real [n+1]; MatrixErrorNoSpace(ColCopy);
+      MONITOR_REAL_NEW("Make (BMGetCol)",n+1,ColCopy)
+      mrc.cw += HaveStore; mrc.data = ColCopy;
+   }
+
+   if (+(mrc.cw*LoadOnEntry))
+   {
+      REPORT
+      Real* Mstore = store+b;
+      // while (w--) { *ColCopy++ = *Mstore; Mstore+=n; }
+      if (w) for (;;)
+         { *ColCopy++ = *Mstore; if (!(--w)) break; Mstore+=n; }
+   }
+}
+
+void BandMatrix::GetCol(MatrixColX& mrc)
+{
+   REPORT
+   int c = mrc.rowcol; int n = lower_val+upper_val; int w = n+1;
+   mrc.length=nrows_val; int b; int s = c-upper_val;
+   if (s<=0) { w += s; s = 0; b = c+lower_val; } else b = s*w+n;
+   mrc.skip = s; s += w-nrows_val; if (s>0) w -= s; mrc.storage = w;
+   mrc.data = mrc.store+mrc.skip;
+
+   if (+(mrc.cw*LoadOnEntry))
+   {
+      REPORT
+      Real* ColCopy = mrc.data; Real* Mstore = store+b;
+      // while (w--) { *ColCopy++ = *Mstore; Mstore+=n; }
+      if (w) for (;;)
+         { *ColCopy++ = *Mstore; if (!(--w)) break; Mstore+=n; }
+   }
+}
+
+void BandMatrix::RestoreCol(MatrixRowCol& mrc)
+{
+   REPORT
+   int c = mrc.rowcol; int n = lower_val+upper_val; int s = c-upper_val;
+   Real* Mstore = store + ((s<=0) ? c+lower_val : s*n+s+n);
+   Real* Cstore = mrc.data;
+   int w = mrc.storage;
+   // while (w--) { *Mstore = *Cstore++; Mstore += n; }
+   if (w) for (;;)
+      { *Mstore = *Cstore++; if (!(--w)) break; Mstore += n; }
+}
+
+// routines for symmetric band matrix
+
+void SymmetricBandMatrix::GetRow(MatrixRowCol& mrc)
+{
+   REPORT
+   int r=mrc.rowcol; int s = r-lower_val; int w1 = lower_val+1; int o = r*w1;
+   mrc.length = ncols_val;
+   if (s<0) { w1 += s; o -= s; s = 0; }
+   mrc.skip = s;
+
+   if (+(mrc.cw*DirectPart))
+      { REPORT  mrc.data = store+o; mrc.storage = w1; }
+   else
+   {
+      // do not allow StoreOnExit and !DirectPart
+      if (+(mrc.cw*StoreOnExit))
+         Throw(InternalException("SymmetricBandMatrix::GetRow(MatrixRowCol&)"));
+      int w = w1+lower_val; s += w-ncols_val; Real* RowCopy;
+      if (s>0) w -= s; mrc.storage = w; int w2 = w-w1;
+      if (!(mrc.cw*HaveStore))
+      {
+         REPORT
+         RowCopy = new Real [2*lower_val+1]; MatrixErrorNoSpace(RowCopy);
+         MONITOR_REAL_NEW("Make (SmBGetRow)",2*lower_val+1,RowCopy)
+         mrc.cw += HaveStore; mrc.data = RowCopy;
+      }
+      else { REPORT  RowCopy = mrc.data; }
+
+      if (+(mrc.cw*LoadOnEntry) && ncols_val > 0)
+      {
+         REPORT
+         Real* Mstore = store+o;
+         while (w1--) *RowCopy++ = *Mstore++;
+         Mstore--;
+         while (w2--) { Mstore += lower_val; *RowCopy++ = *Mstore; }
+      }
+   }
+}
+
+void SymmetricBandMatrix::GetCol(MatrixRowCol& mrc)
+{
+   // do not allow StoreHere
+   if (+(mrc.cw*StoreHere))
+      Throw(InternalException("SymmetricBandMatrix::GetCol(MatrixRowCol&)"));
+
+   int c=mrc.rowcol; int w1 = lower_val+1; mrc.length=nrows_val;
+   REPORT
+   int s = c-lower_val; int o = c*w1;
+   if (s<0) { w1 += s; o -= s; s = 0; }
+   mrc.skip = s;
+
+   if (+(mrc.cw*DirectPart))
+   { REPORT  mrc.data = store+o; mrc.storage = w1; }
+   else
+   {
+      // do not allow StoreOnExit and !DirectPart
+      if (+(mrc.cw*StoreOnExit))
+         Throw(InternalException("SymmetricBandMatrix::GetCol(MatrixRowCol&)"));
+      int w = w1+lower_val; s += w-ncols_val; Real* ColCopy;
+      if (s>0) w -= s; mrc.storage = w; int w2 = w-w1;
+
+      if ( +(mrc.cw*HaveStore) ) { REPORT ColCopy = mrc.data; }
+      else
+      {
+         REPORT ColCopy = new Real [2*lower_val+1]; MatrixErrorNoSpace(ColCopy);
+         MONITOR_REAL_NEW("Make (SmBGetCol)",2*lower_val+1,ColCopy)
+         mrc.cw += HaveStore; mrc.data = ColCopy;
+      }
+
+      if (+(mrc.cw*LoadOnEntry))
+      {
+         REPORT
+         Real* Mstore = store+o;
+         while (w1--) *ColCopy++ = *Mstore++;
+         Mstore--;
+         while (w2--) { Mstore += lower_val; *ColCopy++ = *Mstore; }
+      }
+   }
+}
+
+void SymmetricBandMatrix::GetCol(MatrixColX& mrc)
+{
+   int c=mrc.rowcol; int w1 = lower_val+1; mrc.length=nrows_val;
+   if (+(mrc.cw*DirectPart))
+   {
+      REPORT
+      int b = c*w1+lower_val;
+      mrc.skip = c; c += w1-nrows_val; w1 -= c; mrc.storage = w1;
+      Real* ColCopy = mrc.data = mrc.store+mrc.skip;
+      if (+(mrc.cw*LoadOnEntry))
+      {
+         REPORT
+         Real* Mstore = store+b;
+         // while (w1--) { *ColCopy++ = *Mstore; Mstore += lower; }
+         if (w1) for (;;)
+            { *ColCopy++ = *Mstore; if (!(--w1)) break; Mstore += lower_val; }
+      }
+   }
+   else
+   {
+      REPORT
+      // do not allow StoreOnExit and !DirectPart
+      if (+(mrc.cw*StoreOnExit))
+         Throw(InternalException("SymmetricBandMatrix::GetCol(MatrixColX&)"));
+      int s = c-lower_val; int o = c*w1;
+      if (s<0) { w1 += s; o -= s; s = 0; }
+      mrc.skip = s;
+
+      int w = w1+lower_val; s += w-ncols_val;
+      if (s>0) w -= s; mrc.storage = w; int w2 = w-w1;
+
+      Real* ColCopy = mrc.data = mrc.store+mrc.skip;
+
+      if (+(mrc.cw*LoadOnEntry))
+      {
+         REPORT
+         Real* Mstore = store+o;
+         while (w1--) *ColCopy++ = *Mstore++;
+         Mstore--;
+         while (w2--) { Mstore += lower_val; *ColCopy++ = *Mstore; }
+      }
+
+   }
+}
+
+void SymmetricBandMatrix::RestoreCol(MatrixColX& mrc)
+{
+   REPORT
+   int c = mrc.rowcol;
+   Real* Mstore = store + c*lower_val+c+lower_val;
+   Real* Cstore = mrc.data; int w = mrc.storage;
+   // while (w--) { *Mstore = *Cstore++; Mstore += lower_val; }
+   if (w) for (;;)
+      { *Mstore = *Cstore++; if (!(--w)) break; Mstore += lower_val; }
+}
+
+// routines for identity matrix
+
+void IdentityMatrix::GetRow(MatrixRowCol& mrc)
+{
+   REPORT
+   mrc.skip=mrc.rowcol; mrc.storage=1; mrc.data=store; mrc.length=ncols_val;
+}
+
+void IdentityMatrix::GetCol(MatrixRowCol& mrc)
+{
+   REPORT
+   mrc.skip=mrc.rowcol; mrc.storage=1; mrc.length=nrows_val;
+   if (+(mrc.cw*StoreHere))              // should not happen
+      Throw(InternalException("IdentityMatrix::GetCol(MatrixRowCol&)"));
+   else  { REPORT mrc.data=store; }
+}
+
+void IdentityMatrix::GetCol(MatrixColX& mrc)
+{
+   REPORT
+   mrc.skip=mrc.rowcol; mrc.storage=1; mrc.length=nrows_val;
+   mrc.data = mrc.store+mrc.skip; *(mrc.data)=*store;
+}
+
+void IdentityMatrix::NextRow(MatrixRowCol& mrc) { REPORT mrc.IncrId(); }
+
+void IdentityMatrix::NextCol(MatrixRowCol& mrc) { REPORT mrc.IncrId(); }
+
+void IdentityMatrix::NextCol(MatrixColX& mrc)
+{
+   REPORT
+   if (+(mrc.cw*StoreOnExit)) { REPORT *store=*(mrc.data); }
+   mrc.IncrDiag();            // must increase mrc.data so need IncrDiag
+   int t1 = +(mrc.cw*LoadOnEntry);
+   if (t1 && mrc.rowcol < ncols_val) { REPORT *(mrc.data)=*store; }
+}
+
+
+
+
+// *************************** destructors *******************************
+
+MatrixRowCol::~MatrixRowCol()
+{
+   if (+(cw*HaveStore))
+   {
+      MONITOR_REAL_DELETE("Free    (RowCol)",-1,data)  // do not know length
+      delete [] data;
+   }
+}
+
+MatrixRow::~MatrixRow() { if (+(cw*StoreOnExit)) gm->RestoreRow(*this); }
+
+MatrixCol::~MatrixCol() { if (+(cw*StoreOnExit)) gm->RestoreCol(*this); }
+
+MatrixColX::~MatrixColX() { if (+(cw*StoreOnExit)) gm->RestoreCol(*this); }
+
+#ifdef use_namespace
+}
+#endif
+
+///@}
Index: branches/BNC_LM/newmat/newmat4.cpp
===================================================================
--- branches/BNC_LM/newmat/newmat4.cpp	(revision 3570)
+++ branches/BNC_LM/newmat/newmat4.cpp	(revision 3570)
@@ -0,0 +1,1387 @@
+/// \ingroup newmat
+///@{
+
+/// \file newmat4.cpp
+/// Constructors, resize, basic utilities, SimpleIntArray.
+
+
+// Copyright (C) 1991,2,3,4,8,9: R B Davies
+
+//#define WANT_STREAM
+
+#include "include.h"
+
+#include "newmat.h"
+#include "newmatrc.h"
+
+#ifdef use_namespace
+namespace NEWMAT {
+#endif
+
+
+
+#ifdef DO_REPORT
+#define REPORT { static ExeCounter ExeCount(__LINE__,4); ++ExeCount; }
+#else
+#define REPORT {}
+#endif
+
+
+#define DO_SEARCH                   // search for LHS of = in RHS
+
+// ************************* general utilities *************************/
+
+static int tristore(int n)                    // elements in triangular matrix
+{ return (n*(n+1))/2; }
+
+
+// **************************** constructors ***************************/
+
+GeneralMatrix::GeneralMatrix()
+{ store=0; storage=0; nrows_val=0; ncols_val=0; tag_val=-1; }
+
+GeneralMatrix::GeneralMatrix(ArrayLengthSpecifier s)
+{
+   REPORT
+   storage=s.Value(); tag_val=-1;
+   if (storage)
+   {
+      store = new Real [storage]; MatrixErrorNoSpace(store);
+      MONITOR_REAL_NEW("Make (GenMatrix)",storage,store)
+   }
+   else store = 0;
+}
+
+Matrix::Matrix(int m, int n) : GeneralMatrix(m*n)
+{ REPORT nrows_val=m; ncols_val=n; }
+
+SquareMatrix::SquareMatrix(ArrayLengthSpecifier n)
+   : Matrix(n.Value(),n.Value())
+{ REPORT }
+
+SymmetricMatrix::SymmetricMatrix(ArrayLengthSpecifier n)
+   : GeneralMatrix(tristore(n.Value()))
+{ REPORT nrows_val=n.Value(); ncols_val=n.Value(); }
+
+UpperTriangularMatrix::UpperTriangularMatrix(ArrayLengthSpecifier n)
+   : GeneralMatrix(tristore(n.Value()))
+{ REPORT nrows_val=n.Value(); ncols_val=n.Value(); }
+
+LowerTriangularMatrix::LowerTriangularMatrix(ArrayLengthSpecifier n)
+   : GeneralMatrix(tristore(n.Value()))
+{ REPORT nrows_val=n.Value(); ncols_val=n.Value(); }
+
+DiagonalMatrix::DiagonalMatrix(ArrayLengthSpecifier m) : GeneralMatrix(m)
+{ REPORT nrows_val=m.Value(); ncols_val=m.Value(); }
+
+Matrix::Matrix(const BaseMatrix& M)
+{
+   REPORT // CheckConversion(M);
+   // MatrixConversionCheck mcc;
+   GeneralMatrix* gmx=((BaseMatrix&)M).Evaluate(MatrixType::Rt);
+   GetMatrix(gmx);
+}
+
+SquareMatrix::SquareMatrix(const BaseMatrix& M) : Matrix(M)
+{
+   REPORT
+   if (ncols_val != nrows_val)
+   {
+      Tracer tr("SquareMatrix");
+      Throw(NotSquareException(*this));
+   }
+}
+
+
+SquareMatrix::SquareMatrix(const Matrix& gm)
+{
+   REPORT
+   if (gm.ncols_val != gm.nrows_val)
+   {
+      Tracer tr("SquareMatrix(Matrix)");
+      Throw(NotSquareException(gm));
+   }
+   GetMatrix(&gm);
+}
+
+
+RowVector::RowVector(const BaseMatrix& M) : Matrix(M)
+{
+   REPORT
+   if (nrows_val!=1)
+   {
+      Tracer tr("RowVector");
+      Throw(VectorException(*this));
+   }
+}
+
+ColumnVector::ColumnVector(const BaseMatrix& M) : Matrix(M)
+{
+   REPORT
+   if (ncols_val!=1)
+   {
+      Tracer tr("ColumnVector");
+      Throw(VectorException(*this));
+   }
+}
+
+SymmetricMatrix::SymmetricMatrix(const BaseMatrix& M)
+{
+   REPORT  // CheckConversion(M);
+   // MatrixConversionCheck mcc;
+   GeneralMatrix* gmx=((BaseMatrix&)M).Evaluate(MatrixType::Sm);
+   GetMatrix(gmx);
+}
+
+UpperTriangularMatrix::UpperTriangularMatrix(const BaseMatrix& M)
+{
+   REPORT // CheckConversion(M);
+   // MatrixConversionCheck mcc;
+   GeneralMatrix* gmx=((BaseMatrix&)M).Evaluate(MatrixType::UT);
+   GetMatrix(gmx);
+}
+
+LowerTriangularMatrix::LowerTriangularMatrix(const BaseMatrix& M)
+{
+   REPORT // CheckConversion(M);
+   // MatrixConversionCheck mcc;
+   GeneralMatrix* gmx=((BaseMatrix&)M).Evaluate(MatrixType::LT);
+   GetMatrix(gmx);
+}
+
+DiagonalMatrix::DiagonalMatrix(const BaseMatrix& M)
+{
+   REPORT //CheckConversion(M);
+   // MatrixConversionCheck mcc;
+   GeneralMatrix* gmx=((BaseMatrix&)M).Evaluate(MatrixType::Dg);
+   GetMatrix(gmx);
+}
+
+IdentityMatrix::IdentityMatrix(const BaseMatrix& M)
+{
+   REPORT //CheckConversion(M);
+   // MatrixConversionCheck mcc;
+   GeneralMatrix* gmx=((BaseMatrix&)M).Evaluate(MatrixType::Id);
+   GetMatrix(gmx);
+}
+
+GeneralMatrix::~GeneralMatrix()
+{
+   if (store)
+   {
+      MONITOR_REAL_DELETE("Free (GenMatrix)",storage,store)
+      delete [] store;
+   }
+}
+
+CroutMatrix::CroutMatrix(const BaseMatrix& m)
+{
+   REPORT
+   Tracer tr("CroutMatrix");
+   indx = 0;                     // in case of exception at next line
+   GeneralMatrix* gm = ((BaseMatrix&)m).Evaluate();
+   if (gm->nrows_val!=gm->ncols_val)
+      { gm->tDelete(); Throw(NotSquareException(*gm)); }
+   if (gm->type() == MatrixType::Ct)
+      { REPORT  ((CroutMatrix*)gm)->get_aux(*this); GetMatrix(gm); }
+   else
+   {
+      REPORT
+      GeneralMatrix* gm1 = gm->Evaluate(MatrixType::Rt);
+      GetMatrix(gm1);
+      d=true; sing=false;
+      indx=new int [nrows_val]; MatrixErrorNoSpace(indx);
+      MONITOR_INT_NEW("Index (CroutMat)",nrows_val,indx)
+      ludcmp();
+   }
+}
+
+// could we use SetParameters instead of this
+void CroutMatrix::get_aux(CroutMatrix& X)
+{
+   X.d = d; X.sing = sing;
+   if (tag_val == 0 || tag_val == 1) // reuse the array 
+      { REPORT  X.indx = indx; indx = 0; d = true; sing = true; return; }
+   else if (nrows_val == 0)
+      { REPORT indx = 0; d = true; sing = true; return; }
+   else                              // copy the array
+   { 
+      REPORT
+      Tracer tr("CroutMatrix::get_aux");
+      int *ix = new int [nrows_val]; MatrixErrorNoSpace(ix);
+      MONITOR_INT_NEW("Index (CM::get_aux)", nrows_val, ix)
+      int n = nrows_val; int* i = ix; int* j = indx;
+      while(n--) *i++ = *j++;
+      X.indx = ix;
+   }
+}
+
+CroutMatrix::CroutMatrix(const CroutMatrix& gm) : GeneralMatrix()
+{
+   REPORT
+   Tracer tr("CroutMatrix(const CroutMatrix&)");
+   ((CroutMatrix&)gm).get_aux(*this);
+   GetMatrix(&gm);
+}
+
+CroutMatrix::~CroutMatrix()
+{
+   MONITOR_INT_DELETE("Index (CroutMat)",nrows_val,indx)
+   delete [] indx;
+}
+
+//ReturnMatrix::ReturnMatrix(GeneralMatrix& gmx)
+//{
+//   REPORT
+//   gm = gmx.Image(); gm->ReleaseAndDelete();
+//}
+
+
+GeneralMatrix::operator ReturnMatrix() const
+{
+   REPORT
+   GeneralMatrix* gm = Image(); gm->ReleaseAndDelete();
+   return ReturnMatrix(gm);
+}
+
+
+
+ReturnMatrix GeneralMatrix::for_return() const
+{
+   REPORT
+   GeneralMatrix* gm = Image(); gm->ReleaseAndDelete();
+   return ReturnMatrix(gm);
+}
+
+// ************ Constructors for use with NR in C++ interface ***********
+
+#ifdef SETUP_C_SUBSCRIPTS
+
+Matrix::Matrix(Real a, int m, int n) : GeneralMatrix(m * n)
+   { REPORT nrows_val=m; ncols_val=n; operator=(a); }
+   
+Matrix::Matrix(const Real* a, int m, int n) : GeneralMatrix(m * n)
+   { REPORT nrows_val=m; ncols_val=n; *this << a; }
+
+#endif
+
+
+
+// ************************** resize matrices ***************************/
+
+void GeneralMatrix::resize(int nr, int nc, int s)
+{
+   REPORT
+   if (store)
+   {
+      MONITOR_REAL_DELETE("Free (ReDimensi)",storage,store)
+      delete [] store;
+   }
+   storage=s; nrows_val=nr; ncols_val=nc; tag_val=-1;
+   if (s)
+   {
+      store = new Real [storage]; MatrixErrorNoSpace(store);
+      MONITOR_REAL_NEW("Make (ReDimensi)",storage,store)
+   }
+   else store = 0;
+}
+
+void Matrix::resize(int nr, int nc)
+{ REPORT GeneralMatrix::resize(nr,nc,nr*nc); }
+
+void SquareMatrix::resize(int n)
+{ REPORT GeneralMatrix::resize(n,n,n*n); }
+
+void SquareMatrix::resize(int nr, int nc)
+{
+   REPORT
+   Tracer tr("SquareMatrix::resize");
+   if (nc != nr) Throw(NotSquareException(*this));
+   GeneralMatrix::resize(nr,nc,nr*nc);
+}
+
+void SymmetricMatrix::resize(int nr)
+{ REPORT GeneralMatrix::resize(nr,nr,tristore(nr)); }
+
+void UpperTriangularMatrix::resize(int nr)
+{ REPORT GeneralMatrix::resize(nr,nr,tristore(nr)); }
+
+void LowerTriangularMatrix::resize(int nr)
+{ REPORT GeneralMatrix::resize(nr,nr,tristore(nr)); }
+
+void DiagonalMatrix::resize(int nr)
+{ REPORT GeneralMatrix::resize(nr,nr,nr); }
+
+void RowVector::resize(int nc)
+{ REPORT GeneralMatrix::resize(1,nc,nc); }
+
+void ColumnVector::resize(int nr)
+{ REPORT GeneralMatrix::resize(nr,1,nr); }
+
+void RowVector::resize(int nr, int nc)
+{
+   Tracer tr("RowVector::resize");
+   if (nr != 1) Throw(VectorException(*this));
+   REPORT GeneralMatrix::resize(1,nc,nc);
+}
+
+void ColumnVector::resize(int nr, int nc)
+{
+   Tracer tr("ColumnVector::resize");
+   if (nc != 1) Throw(VectorException(*this));
+   REPORT GeneralMatrix::resize(nr,1,nr);
+}
+
+void IdentityMatrix::resize(int nr)
+{ REPORT GeneralMatrix::resize(nr,nr,1); *store = 1; }
+
+
+void Matrix::resize(const GeneralMatrix& A)
+{ REPORT  resize(A.Nrows(), A.Ncols()); }
+
+void SquareMatrix::resize(const GeneralMatrix& A)
+{
+   REPORT
+   int n = A.Nrows();
+   if (n != A.Ncols())
+   {
+      Tracer tr("SquareMatrix::resize(GM)");
+      Throw(NotSquareException(*this));
+   }
+   resize(n);
+}
+
+void nricMatrix::resize(const GeneralMatrix& A)
+{ REPORT  resize(A.Nrows(), A.Ncols()); }
+
+void ColumnVector::resize(const GeneralMatrix& A)
+{ REPORT  resize(A.Nrows(), A.Ncols()); }
+
+void RowVector::resize(const GeneralMatrix& A)
+{ REPORT  resize(A.Nrows(), A.Ncols()); }
+
+void SymmetricMatrix::resize(const GeneralMatrix& A)
+{
+   REPORT
+   int n = A.Nrows();
+   if (n != A.Ncols())
+   {
+      Tracer tr("SymmetricMatrix::resize(GM)");
+      Throw(NotSquareException(*this));
+   }
+   resize(n);
+}
+
+void DiagonalMatrix::resize(const GeneralMatrix& A)
+{
+   REPORT
+   int n = A.Nrows();
+   if (n != A.Ncols())
+   {
+      Tracer tr("DiagonalMatrix::resize(GM)");
+      Throw(NotSquareException(*this));
+   }
+   resize(n);
+}
+
+void UpperTriangularMatrix::resize(const GeneralMatrix& A)
+{
+   REPORT
+   int n = A.Nrows();
+   if (n != A.Ncols())
+   {
+      Tracer tr("UpperTriangularMatrix::resize(GM)");
+      Throw(NotSquareException(*this));
+   }
+   resize(n);
+}
+
+void LowerTriangularMatrix::resize(const GeneralMatrix& A)
+{
+   REPORT
+   int n = A.Nrows();
+   if (n != A.Ncols())
+   {
+      Tracer tr("LowerTriangularMatrix::resize(GM)");
+      Throw(NotSquareException(*this));
+   }
+   resize(n);
+}
+
+void IdentityMatrix::resize(const GeneralMatrix& A)
+{
+   REPORT
+   int n = A.Nrows();
+   if (n != A.Ncols())
+   {
+      Tracer tr("IdentityMatrix::resize(GM)");
+      Throw(NotSquareException(*this));
+   }
+   resize(n);
+}
+
+void GeneralMatrix::resize(const GeneralMatrix&)
+{
+   REPORT
+   Tracer tr("GeneralMatrix::resize(GM)");
+   Throw(NotDefinedException("resize", "this type of matrix"));
+}
+
+//*********************** resize_keep *******************************
+
+void Matrix::resize_keep(int nr, int nc)
+{
+   Tracer tr("Matrix::resize_keep");
+   if (nr == nrows_val && nc == ncols_val) { REPORT return; }
+   
+   if (nr <= nrows_val && nc <= ncols_val)
+   {
+      REPORT
+      Matrix X = submatrix(1,nr,1,nc);
+      swap(X);
+   }
+   else if (nr >= nrows_val && nc >= ncols_val)
+   {
+      REPORT
+      Matrix X(nr, nc); X = 0;
+      X.submatrix(1,nrows_val,1,ncols_val) = *this;
+      swap(X);
+   }
+   else
+   {
+      REPORT
+      Matrix X(nr, nc); X = 0;
+      if (nr > nrows_val) nr = nrows_val;
+      if (nc > ncols_val) nc = ncols_val;
+      X.submatrix(1,nr,1,nc) = submatrix(1,nr,1,nc);
+      swap(X);
+   }
+} 
+
+void SquareMatrix::resize_keep(int nr)
+{
+   Tracer tr("SquareMatrix::resize_keep");
+   if (nr < nrows_val)
+   {
+      REPORT
+      SquareMatrix X = sym_submatrix(1,nr);
+      swap(X);
+   }
+   else if (nr > nrows_val)
+   {
+      REPORT
+      SquareMatrix X(nr); X = 0;
+      X.sym_submatrix(1,nrows_val) = *this;
+      swap(X);
+   }
+}
+
+void SquareMatrix::resize_keep(int nr, int nc)
+{
+   Tracer tr("SquareMatrix::resize_keep 2");
+   REPORT
+   if (nr != nc) Throw(NotSquareException(*this));
+   resize_keep(nr);
+}
+ 
+
+void SymmetricMatrix::resize_keep(int nr)
+{
+   Tracer tr("SymmetricMatrix::resize_keep");
+   if (nr < nrows_val)
+   {
+      REPORT
+      SymmetricMatrix X = sym_submatrix(1,nr);
+      swap(X);
+   }
+   else if (nr > nrows_val)
+   {
+      REPORT
+      SymmetricMatrix X(nr); X = 0;
+      X.sym_submatrix(1,nrows_val) = *this;
+      swap(X);
+   }
+} 
+
+void UpperTriangularMatrix::resize_keep(int nr)
+{
+   Tracer tr("UpperTriangularMatrix::resize_keep");
+   if (nr < nrows_val)
+   {
+      REPORT
+      UpperTriangularMatrix X = sym_submatrix(1,nr);
+      swap(X);
+   }
+   else if (nr > nrows_val)
+   {
+      REPORT
+      UpperTriangularMatrix X(nr); X = 0;
+      X.sym_submatrix(1,nrows_val) = *this;
+      swap(X);
+   }
+} 
+
+void LowerTriangularMatrix::resize_keep(int nr)
+{
+   Tracer tr("LowerTriangularMatrix::resize_keep");
+   if (nr < nrows_val)
+   {
+      REPORT
+      LowerTriangularMatrix X = sym_submatrix(1,nr);
+      swap(X);
+   }
+   else if (nr > nrows_val)
+   {
+      REPORT
+      LowerTriangularMatrix X(nr); X = 0;
+      X.sym_submatrix(1,nrows_val) = *this;
+      swap(X);
+   }
+} 
+
+void DiagonalMatrix::resize_keep(int nr)
+{
+   Tracer tr("DiagonalMatrix::resize_keep");
+   if (nr < nrows_val)
+   {
+      REPORT
+      DiagonalMatrix X = sym_submatrix(1,nr);
+      swap(X);
+   }
+   else if (nr > nrows_val)
+   {
+      REPORT
+      DiagonalMatrix X(nr); X = 0;
+      X.sym_submatrix(1,nrows_val) = *this;
+      swap(X);
+   }
+} 
+
+void RowVector::resize_keep(int nc)
+{
+   Tracer tr("RowVector::resize_keep");
+   if (nc < ncols_val)
+   {
+      REPORT
+      RowVector X = columns(1,nc);
+      swap(X);
+   }
+   else if (nc > ncols_val)
+   {
+      REPORT
+      RowVector X(nc); X = 0;
+      X.columns(1,ncols_val) = *this;
+      swap(X);
+   }
+}
+
+void RowVector::resize_keep(int nr, int nc)
+{
+   Tracer tr("RowVector::resize_keep 2");
+   REPORT
+   if (nr != 1) Throw(VectorException(*this));
+   resize_keep(nc);
+}
+
+void ColumnVector::resize_keep(int nr)
+{
+   Tracer tr("ColumnVector::resize_keep");
+   if (nr < nrows_val)
+   {
+      REPORT
+      ColumnVector X = rows(1,nr);
+      swap(X);
+   }
+   else if (nr > nrows_val)
+   {
+      REPORT
+      ColumnVector X(nr); X = 0;
+      X.rows(1,nrows_val) = *this;
+      swap(X);
+   }
+} 
+
+void ColumnVector::resize_keep(int nr, int nc)
+{
+   Tracer tr("ColumnVector::resize_keep 2");
+   REPORT
+   if (nc != 1) Throw(VectorException(*this));
+   resize_keep(nr);
+}
+
+
+/*
+void GeneralMatrix::resizeForAdd(const GeneralMatrix& A, const GeneralMatrix&)
+{ REPORT resize(A); }
+
+void GeneralMatrix::resizeForSP(const GeneralMatrix& A, const GeneralMatrix&)
+{ REPORT resize(A); }
+
+
+// ************************* SameStorageType ******************************
+
+// SameStorageType checks A and B have same storage type including bandwidth
+// It does not check same dimensions since we assume this is already done
+
+bool GeneralMatrix::SameStorageType(const GeneralMatrix& A) const
+{
+   REPORT
+   return type() == A.type();
+}
+*/
+
+// ******************* manipulate types, storage **************************/
+
+int GeneralMatrix::search(const BaseMatrix* s) const
+{ REPORT return (s==this) ? 1 : 0; }
+
+int GenericMatrix::search(const BaseMatrix* s) const
+{ REPORT return gm->search(s); }
+
+int MultipliedMatrix::search(const BaseMatrix* s) const
+{ REPORT return bm1->search(s) + bm2->search(s); }
+
+int ShiftedMatrix::search(const BaseMatrix* s) const
+{ REPORT return bm->search(s); }
+
+int NegatedMatrix::search(const BaseMatrix* s) const
+{ REPORT return bm->search(s); }
+
+int ReturnMatrix::search(const BaseMatrix* s) const
+{ REPORT return (s==gm) ? 1 : 0; }
+
+MatrixType Matrix::type() const { return MatrixType::Rt; }
+MatrixType SquareMatrix::type() const { return MatrixType::Sq; }
+MatrixType SymmetricMatrix::type() const { return MatrixType::Sm; }
+MatrixType UpperTriangularMatrix::type() const { return MatrixType::UT; }
+MatrixType LowerTriangularMatrix::type() const { return MatrixType::LT; }
+MatrixType DiagonalMatrix::type() const { return MatrixType::Dg; }
+MatrixType RowVector::type() const { return MatrixType::RV; }
+MatrixType ColumnVector::type() const { return MatrixType::CV; }
+MatrixType CroutMatrix::type() const { return MatrixType::Ct; }
+MatrixType BandMatrix::type() const { return MatrixType::BM; }
+MatrixType UpperBandMatrix::type() const { return MatrixType::UB; }
+MatrixType LowerBandMatrix::type() const { return MatrixType::LB; }
+MatrixType SymmetricBandMatrix::type() const { return MatrixType::SB; }
+
+MatrixType IdentityMatrix::type() const { return MatrixType::Id; }
+
+
+
+MatrixBandWidth BaseMatrix::bandwidth() const { REPORT return -1; }
+MatrixBandWidth DiagonalMatrix::bandwidth() const { REPORT return 0; }
+MatrixBandWidth IdentityMatrix::bandwidth() const { REPORT return 0; }
+
+MatrixBandWidth UpperTriangularMatrix::bandwidth() const
+   { REPORT return MatrixBandWidth(0,-1); }
+
+MatrixBandWidth LowerTriangularMatrix::bandwidth() const
+   { REPORT return MatrixBandWidth(-1,0); }
+
+MatrixBandWidth BandMatrix::bandwidth() const
+   { REPORT return MatrixBandWidth(lower_val,upper_val); }
+
+MatrixBandWidth BandLUMatrix::bandwidth() const
+   { REPORT return MatrixBandWidth(m1,m2); }
+   
+MatrixBandWidth GenericMatrix::bandwidth()const
+   { REPORT return gm->bandwidth(); }
+
+MatrixBandWidth AddedMatrix::bandwidth() const
+   { REPORT return gm1->bandwidth() + gm2->bandwidth(); }
+
+MatrixBandWidth SPMatrix::bandwidth() const
+   { REPORT return gm1->bandwidth().minimum(gm2->bandwidth()); }
+
+MatrixBandWidth KPMatrix::bandwidth() const
+{
+   int lower, upper;
+   MatrixBandWidth bw1 = gm1->bandwidth(), bw2 = gm2->bandwidth();
+   if (bw1.Lower() < 0)
+   {
+      if (bw2.Lower() < 0) { REPORT lower = -1; }
+      else { REPORT lower = bw2.Lower() + (gm1->Nrows() - 1) * gm2->Nrows(); }
+   }
+   else
+   {
+      if (bw2.Lower() < 0)
+         { REPORT lower = (1 + bw1.Lower()) * gm2->Nrows() - 1; }
+      else { REPORT lower = bw2.Lower() + bw1.Lower() * gm2->Nrows(); }
+   }
+   if (bw1.Upper() < 0)
+   {
+      if (bw2.Upper() < 0) { REPORT upper = -1; }
+      else { REPORT upper = bw2.Upper() + (gm1->Nrows() - 1) * gm2->Nrows(); }
+   }
+   else
+   {
+      if (bw2.Upper() < 0)
+         { REPORT upper = (1 + bw1.Upper()) * gm2->Nrows() - 1; }
+      else { REPORT upper = bw2.Upper() + bw1.Upper() * gm2->Nrows(); }
+   }
+   return MatrixBandWidth(lower, upper);
+}
+
+MatrixBandWidth MultipliedMatrix::bandwidth() const
+{ REPORT return gm1->bandwidth() * gm2->bandwidth(); }
+
+MatrixBandWidth ConcatenatedMatrix::bandwidth() const { REPORT return -1; }
+
+MatrixBandWidth SolvedMatrix::bandwidth() const
+{
+   if (+gm1->type() & MatrixType::Diagonal)
+      { REPORT return gm2->bandwidth(); }
+   else { REPORT return -1; }
+}
+
+MatrixBandWidth ScaledMatrix::bandwidth() const
+   { REPORT return gm->bandwidth(); }
+
+MatrixBandWidth NegatedMatrix::bandwidth() const
+   { REPORT return gm->bandwidth(); }
+
+MatrixBandWidth TransposedMatrix::bandwidth() const
+   { REPORT return gm->bandwidth().t(); }
+
+MatrixBandWidth InvertedMatrix::bandwidth() const
+{
+   if (+gm->type() & MatrixType::Diagonal)
+      { REPORT return MatrixBandWidth(0,0); }
+   else { REPORT return -1; }
+}
+
+MatrixBandWidth RowedMatrix::bandwidth() const { REPORT return -1; }
+MatrixBandWidth ColedMatrix::bandwidth() const { REPORT return -1; }
+MatrixBandWidth DiagedMatrix::bandwidth() const { REPORT return 0; }
+MatrixBandWidth MatedMatrix::bandwidth() const { REPORT return -1; }
+MatrixBandWidth ReturnMatrix::bandwidth() const
+   { REPORT return gm->bandwidth(); }
+
+MatrixBandWidth GetSubMatrix::bandwidth() const
+{
+
+   if (row_skip==col_skip && row_number==col_number)
+      { REPORT return gm->bandwidth(); }
+   else { REPORT return MatrixBandWidth(-1); }
+}
+
+// ********************** the memory managment tools **********************/
+
+//  Rules regarding tDelete, reuse, GetStore, BorrowStore
+//    All matrices processed during expression evaluation must be subject
+//    to exactly one of reuse(), tDelete(), GetStore() or BorrowStore().
+//    If reuse returns true the matrix must be reused.
+//    GetMatrix(gm) always calls gm->GetStore()
+//    gm->Evaluate obeys rules
+//    bm->Evaluate obeys rules for matrices in bm structure
+
+//  Meaning of tag_val
+//    tag_val = -1          memory cannot be reused (default situation)
+//    tag_val = -2          memory has been borrowed from another matrix
+//                               (don't change values)
+//    tag_val = i > 0       delete or reuse memory after i operations
+//    tag_val = 0           like value 1 but matrix was created by new
+//                               so delete it
+
+void GeneralMatrix::tDelete()
+{
+   if (tag_val<0)
+   {
+      if (tag_val<-1) { REPORT store = 0; delete this; return; }  // borrowed
+      else { REPORT return; }   // not a temporary matrix - leave alone
+   }
+   if (tag_val==1)
+   {
+      if (store)
+      {
+         REPORT  MONITOR_REAL_DELETE("Free   (tDelete)",storage,store)
+         delete [] store;
+      }
+      MiniCleanUp(); return;                           // CleanUp
+   }
+   if (tag_val==0) { REPORT delete this; return; }
+
+   REPORT tag_val--; return;
+}
+
+void newmat_block_copy(int n, Real* from, Real* to)
+{
+   REPORT
+   int i = (n >> 3);
+   while (i--)
+   {
+      *to++ = *from++; *to++ = *from++; *to++ = *from++; *to++ = *from++;
+      *to++ = *from++; *to++ = *from++; *to++ = *from++; *to++ = *from++;
+   }
+   i = n & 7; while (i--) *to++ = *from++;
+}
+
+bool GeneralMatrix::reuse()
+{
+   if (tag_val < -1)                 // borrowed storage
+   {
+      if (storage)
+      {
+         REPORT
+         Real* s = new Real [storage]; MatrixErrorNoSpace(s);
+         MONITOR_REAL_NEW("Make     (reuse)",storage,s)
+         newmat_block_copy(storage, store, s); store = s;
+      }
+      else { REPORT MiniCleanUp(); }                // CleanUp
+      tag_val = 0; return true;
+   }
+   if (tag_val < 0 ) { REPORT return false; }
+   if (tag_val <= 1 )  { REPORT return true; }
+   REPORT tag_val--; return false;
+}
+
+Real* GeneralMatrix::GetStore()
+{
+   if (tag_val<0 || tag_val>1)
+   {
+      Real* s;
+      if (storage)
+      {
+         s = new Real [storage]; MatrixErrorNoSpace(s);
+         MONITOR_REAL_NEW("Make  (GetStore)",storage,s)
+         newmat_block_copy(storage, store, s);
+      }
+      else s = 0;
+      if (tag_val > 1) { REPORT tag_val--; }
+      else if (tag_val < -1) { REPORT store = 0; delete this; } // borrowed store
+      else { REPORT }
+      return s;
+   }
+   Real* s = store;                             // cleanup - done later
+   if (tag_val==0) { REPORT store = 0; delete this; }
+   else { REPORT  MiniCleanUp(); }
+   return s;
+}
+
+void GeneralMatrix::GetMatrix(const GeneralMatrix* gmx)
+{
+   REPORT  tag_val=-1; nrows_val=gmx->Nrows(); ncols_val=gmx->Ncols();
+   storage=gmx->storage; SetParameters(gmx);
+   store=((GeneralMatrix*)gmx)->GetStore();
+}
+
+GeneralMatrix* GeneralMatrix::BorrowStore(GeneralMatrix* gmx, MatrixType mt)
+// Copy storage of *this to storage of *gmx. Then convert to type mt.
+// If mt == 0 just let *gmx point to storage of *this if tag_val==-1.
+{
+   if (!mt)
+   {
+      if (tag_val == -1) { REPORT gmx->tag_val = -2; gmx->store = store; }
+      else { REPORT gmx->tag_val = 0; gmx->store = GetStore(); }
+   }
+   else if (Compare(gmx->type(),mt))
+   { REPORT  gmx->tag_val = 0; gmx->store = GetStore(); }
+   else
+   {
+      REPORT gmx->tag_val = -2; gmx->store = store;
+      gmx = gmx->Evaluate(mt); gmx->tag_val = 0; tDelete();
+   }
+
+   return gmx;
+}
+
+void GeneralMatrix::Eq(const BaseMatrix& X, MatrixType mt)
+// Count number of references to this in X.
+// If zero delete storage in this;
+// otherwise tag this to show when storage can be deleted
+// evaluate X and copy to this
+{
+#ifdef DO_SEARCH
+   int counter=X.search(this);
+   if (counter==0)
+   {
+      REPORT
+      if (store)
+      {
+         MONITOR_REAL_DELETE("Free (operator=)",storage,store)
+         REPORT delete [] store; storage = 0; store = 0;
+      }
+   }
+   else { REPORT Release(counter); }
+   GeneralMatrix* gmx = ((BaseMatrix&)X).Evaluate(mt);
+   if (gmx!=this) { REPORT GetMatrix(gmx); }
+   else { REPORT }
+   Protect();
+#else
+   GeneralMatrix* gmx = ((BaseMatrix&)X).Evaluate(mt);
+   if (gmx!=this)
+   {
+      REPORT
+      if (store)
+      {
+         MONITOR_REAL_DELETE("Free (operator=)",storage,store)
+         REPORT delete [] store; storage = 0; store = 0;
+      }
+      GetMatrix(gmx);
+   }
+   else { REPORT }
+   Protect();
+#endif
+}
+
+// version with no conversion
+void GeneralMatrix::Eq(const GeneralMatrix& X)
+{
+   GeneralMatrix* gmx = (GeneralMatrix*)&X;
+   if (gmx!=this)
+   {
+      REPORT
+      if (store)
+      {
+         MONITOR_REAL_DELETE("Free (operator=)",storage,store)
+         REPORT delete [] store; storage = 0; store = 0;
+      }
+      GetMatrix(gmx);
+   }
+   else { REPORT }
+   Protect();
+}
+
+// version to work with operator<<
+void GeneralMatrix::Eq(const BaseMatrix& X, MatrixType mt, bool ldok)
+{
+   REPORT
+   if (ldok) mt.SetDataLossOK();
+   Eq(X, mt);
+}
+
+void GeneralMatrix::Eq2(const BaseMatrix& X, MatrixType mt)
+// a cut down version of Eq for use with += etc.
+// we know BaseMatrix points to two GeneralMatrix objects,
+// the first being this (may be the same).
+// we know tag_val has been set correctly in each.
+{
+   GeneralMatrix* gmx = ((BaseMatrix&)X).Evaluate(mt);
+   if (gmx!=this) { REPORT GetMatrix(gmx); }  // simplify GetMatrix ?
+   else { REPORT }
+   Protect();
+}
+
+void GeneralMatrix::inject(const GeneralMatrix& X)
+// copy stored values of X; otherwise leave els of *this unchanged
+{
+   REPORT
+   Tracer tr("inject");
+   if (nrows_val != X.nrows_val || ncols_val != X.ncols_val)
+      Throw(IncompatibleDimensionsException());
+   MatrixRow mr((GeneralMatrix*)&X, LoadOnEntry);
+   MatrixRow mrx(this, LoadOnEntry+StoreOnExit+DirectPart);
+   int i=nrows_val;
+   while (i--) { mrx.Inject(mr); mrx.Next(); mr.Next(); }
+}
+
+// ************* checking for data loss during conversion *******************/
+
+bool Compare(const MatrixType& source, MatrixType& destination)
+{
+   if (!destination) { destination=source; return true; }
+   if (destination==source) return true;
+   if (!destination.DataLossOK && !(destination>=source))
+      Throw(ProgramException("Illegal Conversion", source, destination));
+   return false;
+}
+
+// ************* Make a copy of a matrix on the heap *********************/
+
+GeneralMatrix* Matrix::Image() const
+{
+   REPORT
+   GeneralMatrix* gm = new Matrix(*this); MatrixErrorNoSpace(gm);
+   return gm;
+}
+
+GeneralMatrix* SquareMatrix::Image() const
+{
+   REPORT
+   GeneralMatrix* gm = new SquareMatrix(*this); MatrixErrorNoSpace(gm);
+   return gm;
+}
+
+GeneralMatrix* SymmetricMatrix::Image() const
+{
+   REPORT
+   GeneralMatrix* gm = new SymmetricMatrix(*this); MatrixErrorNoSpace(gm);
+   return gm;
+}
+
+GeneralMatrix* UpperTriangularMatrix::Image() const
+{
+   REPORT
+   GeneralMatrix* gm = new UpperTriangularMatrix(*this);
+   MatrixErrorNoSpace(gm); return gm;
+}
+
+GeneralMatrix* LowerTriangularMatrix::Image() const
+{
+   REPORT
+   GeneralMatrix* gm = new LowerTriangularMatrix(*this);
+   MatrixErrorNoSpace(gm); return gm;
+}
+
+GeneralMatrix* DiagonalMatrix::Image() const
+{
+   REPORT
+   GeneralMatrix* gm = new DiagonalMatrix(*this); MatrixErrorNoSpace(gm);
+   return gm;
+}
+
+GeneralMatrix* RowVector::Image() const
+{
+   REPORT
+   GeneralMatrix* gm = new RowVector(*this); MatrixErrorNoSpace(gm);
+   return gm;
+}
+
+GeneralMatrix* ColumnVector::Image() const
+{
+   REPORT
+   GeneralMatrix* gm = new ColumnVector(*this); MatrixErrorNoSpace(gm);
+   return gm;
+}
+
+GeneralMatrix* nricMatrix::Image() const
+{
+   REPORT
+   GeneralMatrix* gm = new nricMatrix(*this); MatrixErrorNoSpace(gm);
+   return gm;
+}
+
+GeneralMatrix* IdentityMatrix::Image() const
+{
+   REPORT
+   GeneralMatrix* gm = new IdentityMatrix(*this); MatrixErrorNoSpace(gm);
+   return gm;
+}
+
+GeneralMatrix* CroutMatrix::Image() const
+{
+   REPORT
+   GeneralMatrix* gm = new CroutMatrix(*this); MatrixErrorNoSpace(gm);
+   return gm;
+}
+
+GeneralMatrix* GeneralMatrix::Image() const
+{
+   bool dummy = true;
+   if (dummy)                                   // get rid of warning message
+      Throw(InternalException("Cannot apply Image to this matrix type"));
+   return 0;
+}
+
+
+// *********************** nricMatrix routines *****************************/
+
+void nricMatrix::MakeRowPointer()
+{
+   REPORT
+   if (nrows_val > 0)
+   {
+      row_pointer = new Real* [nrows_val]; MatrixErrorNoSpace(row_pointer);
+      Real* s = Store() - 1; int i = nrows_val; Real** rp = row_pointer;
+      if (i) for (;;) { *rp++ = s; if (!(--i)) break; s+=ncols_val; }
+   }
+   else row_pointer = 0;
+}
+
+void nricMatrix::DeleteRowPointer()
+   { REPORT if (nrows_val) delete [] row_pointer; }
+
+void GeneralMatrix::CheckStore() const
+{
+   REPORT
+   if (!store)
+      Throw(ProgramException("NRIC accessing matrix with unset dimensions"));
+}
+
+
+// *************************** CleanUp routines *****************************/
+
+void GeneralMatrix::cleanup()
+{
+   // set matrix dimensions to zero, delete storage
+   REPORT
+   if (store && storage)
+   {
+      MONITOR_REAL_DELETE("Free (cleanup)    ",storage,store)
+      REPORT delete [] store;
+   }
+   store=0; storage=0; nrows_val=0; ncols_val=0; tag_val = -1;
+}
+
+void nricMatrix::cleanup()
+   { REPORT DeleteRowPointer(); GeneralMatrix::cleanup(); }
+
+void nricMatrix::MiniCleanUp()
+   { REPORT DeleteRowPointer(); GeneralMatrix::MiniCleanUp(); }
+
+void RowVector::cleanup()
+   { REPORT GeneralMatrix::cleanup(); nrows_val=1; }
+
+void ColumnVector::cleanup()
+   { REPORT GeneralMatrix::cleanup(); ncols_val=1; }
+
+void CroutMatrix::cleanup()
+{
+   REPORT
+   if (nrows_val) delete [] indx;
+   GeneralMatrix::cleanup();
+}
+
+void CroutMatrix::MiniCleanUp()
+{
+   REPORT
+   if (nrows_val) delete [] indx;
+   GeneralMatrix::MiniCleanUp();
+}
+
+void BandLUMatrix::cleanup()
+{
+   REPORT
+   if (nrows_val) delete [] indx;
+   if (storage2) delete [] store2;
+   GeneralMatrix::cleanup();
+}
+
+void BandLUMatrix::MiniCleanUp()
+{
+   REPORT
+   if (nrows_val) delete [] indx;
+   if (storage2) delete [] store2;
+   GeneralMatrix::MiniCleanUp();
+}
+
+// ************************ simple integer array class ***********************
+
+// construct a new array of length xn. Check that xn is non-negative and
+// that space is available
+
+SimpleIntArray::SimpleIntArray(int xn) : n(xn)
+{
+   if (n < 0) Throw(Logic_error("invalid array length"));
+   else if (n == 0) { REPORT  a = 0; }
+   else { REPORT  a = new int [n]; if (!a) Throw(Bad_alloc()); }
+}
+
+// destroy an array - return its space to memory
+
+SimpleIntArray::~SimpleIntArray() { REPORT  if (a) delete [] a; }
+
+// access an element of an array; return a "reference" so elements
+// can be modified.
+// check index is within range
+// in this array class the index runs from 0 to n-1
+
+int& SimpleIntArray::operator[](int i)
+{
+   REPORT
+   if (i < 0 || i >= n) Throw(Logic_error("array index out of range"));
+   return a[i];
+}
+
+// same thing again but for arrays declared constant so we can't
+// modify its elements
+
+int SimpleIntArray::operator[](int i) const
+{
+   REPORT
+   if (i < 0 || i >= n) Throw(Logic_error("array index out of range"));
+   return a[i];
+}
+
+// set all the elements equal to a given value
+
+void SimpleIntArray::operator=(int ai)
+   { REPORT  for (int i = 0; i < n; i++) a[i] = ai; }
+
+// set the elements equal to those of another array.
+// now allow length to be changed
+
+void SimpleIntArray::operator=(const SimpleIntArray& b)
+{
+   REPORT
+   if (b.n != n) resize(b.n);
+   for (int i = 0; i < n; i++) a[i] = b.a[i];
+}
+
+// construct a new array equal to an existing array
+// check that space is available
+
+SimpleIntArray::SimpleIntArray(const SimpleIntArray& b) : Janitor(), n(b.n)
+{
+   if (n == 0) { REPORT  a = 0; }
+   else
+   {
+      REPORT
+      a = new int [n]; if (!a) Throw(Bad_alloc());
+      for (int i = 0; i < n; i++) a[i] = b.a[i];
+   }
+}
+
+// change the size of an array; optionally copy data from old array to
+// new array
+
+void SimpleIntArray::resize(int n1, bool keep)
+{
+   if (n1 == n) { REPORT  return; }
+   else if (n1 == 0) { REPORT  n = 0; delete [] a; a = 0; }
+   else if (n == 0)
+   {
+      REPORT
+      a = new int [n1]; if (!a) Throw(Bad_alloc());
+      n = n1;
+      if (keep) operator=(0);
+   }
+   else
+   {
+      int* a1 = a;
+      if (keep)
+      {
+         REPORT
+         int i;
+         a = new int [n1]; if (!a) Throw(Bad_alloc());
+         if (n > n1) n = n1;
+         else for (i = n; i < n1; i++) a[i] = 0;
+         for (i = 0; i < n; i++) a[i] = a1[i];
+         n = n1; delete [] a1;
+      }
+      else
+      {
+         REPORT  n = n1; delete [] a1;
+         a = new int [n]; if (!a) Throw(Bad_alloc());
+      }
+   }
+}
+
+//************************** swap values ********************************
+
+// swap values
+
+void GeneralMatrix::swap(GeneralMatrix& gm)
+{
+   REPORT
+   int t;
+   t = tag_val; tag_val = gm.tag_val; gm.tag_val = t;
+   t = nrows_val; nrows_val = gm.nrows_val; gm.nrows_val = t;
+   t = ncols_val; ncols_val = gm.ncols_val; gm.ncols_val = t;
+   t = storage; storage = gm.storage; gm.storage = t;
+   Real* s = store; store = gm.store; gm.store = s;
+}
+   
+void nricMatrix::swap(nricMatrix& gm)
+{
+   REPORT
+   GeneralMatrix::swap((GeneralMatrix&)gm);
+   Real** rp = row_pointer; row_pointer = gm.row_pointer; gm.row_pointer = rp;
+}
+
+void CroutMatrix::swap(CroutMatrix& gm)
+{
+   REPORT
+   GeneralMatrix::swap((GeneralMatrix&)gm);
+   int* i = indx; indx = gm.indx; gm.indx = i;
+   bool b;
+   b = d; d = gm.d; gm.d = b;
+   b = sing; sing = gm.sing; gm.sing = b;
+}
+
+void BandMatrix::swap(BandMatrix& gm)
+{
+   REPORT
+   GeneralMatrix::swap((GeneralMatrix&)gm);
+   int i;
+   i = lower_val; lower_val = gm.lower_val; gm.lower_val = i;
+   i = upper_val; upper_val = gm.upper_val; gm.upper_val = i;
+}
+
+void SymmetricBandMatrix::swap(SymmetricBandMatrix& gm)
+{
+   REPORT
+   GeneralMatrix::swap((GeneralMatrix&)gm);
+   int i;
+   i = lower_val; lower_val = gm.lower_val; gm.lower_val = i;
+}
+
+void BandLUMatrix::swap(BandLUMatrix& gm)
+{
+   REPORT
+   GeneralMatrix::swap((GeneralMatrix&)gm);
+   int* i = indx; indx = gm.indx; gm.indx = i;
+   bool b;
+   b = d; d = gm.d; gm.d = b;
+   b = sing; sing = gm.sing; gm.sing = b;
+   int m;
+   m = storage2; storage2 = gm.storage2; gm.storage2 = m;
+   m = m1; m1 = gm.m1; gm.m1 = m;
+   m = m2; m2 = gm.m2; gm.m2 = m;
+   Real* s = store2; store2 = gm.store2; gm.store2 = s;
+}
+
+void GenericMatrix::swap(GenericMatrix& x)
+{
+   REPORT
+   GeneralMatrix* tgm = gm; gm = x.gm; x.gm = tgm;
+}
+
+// ********************** C subscript classes ****************************
+
+RealStarStar::RealStarStar(Matrix& A)
+{
+   REPORT
+   Tracer tr("RealStarStar");
+   int n = A.ncols();
+   int m = A.nrows();
+   a = new Real*[m];
+   MatrixErrorNoSpace(a);
+   Real* d = A.data();
+   for (int i = 0; i < m; ++i) a[i] = d + i * n;
+} 
+
+ConstRealStarStar::ConstRealStarStar(const Matrix& A)
+{
+   REPORT
+   Tracer tr("ConstRealStarStar");
+   int n = A.ncols();
+   int m = A.nrows();
+   a = new const Real*[m];
+   MatrixErrorNoSpace(a);
+   const Real* d = A.data();
+   for (int i = 0; i < m; ++i) a[i] = d + i * n;
+} 
+
+
+
+#ifdef use_namespace
+}
+#endif
+
+
+/// \fn GeneralMatrix::SimpleAddOK(const GeneralMatrix* gm)
+/// Can we add two matrices with simple vector add.
+/// SimpleAddOK shows when we can add two matrices by a simple vector add
+/// and when we can add one matrix into another
+///
+/// *gm must be the same type as *this
+/// - return 0 if simple add is OK
+/// - return 1 if we can add into *gm only
+/// - return 2 if we can add into *this only
+/// - return 3 if we can't add either way
+///
+/// Also applies to subtract;
+/// for SP this will still be valid if we swap 1 and 2
+///
+/// For types Matrix, DiagonalMatrix, UpperTriangularMatrix,
+/// LowerTriangularMatrix, SymmetricMatrix etc return 0.
+/// For band matrices we will need to check bandwidths.
+
+
+
+
+
+
+
+///@}
Index: branches/BNC_LM/newmat/newmat5.cpp
===================================================================
--- branches/BNC_LM/newmat/newmat5.cpp	(revision 3570)
+++ branches/BNC_LM/newmat/newmat5.cpp	(revision 3570)
@@ -0,0 +1,557 @@
+/// \ingroup newmat
+///@{
+
+/// \file newmat5.cpp
+/// Transpose, evaluate, operations with scalar, matrix input.
+
+// Copyright (C) 1991,2,3,4: R B Davies
+
+//#define WANT_STREAM
+
+#include "include.h"
+
+#include "newmat.h"
+#include "newmatrc.h"
+
+#ifdef use_namespace
+namespace NEWMAT {
+#endif
+
+
+#ifdef DO_REPORT
+#define REPORT { static ExeCounter ExeCount(__LINE__,5); ++ExeCount; }
+#else
+#define REPORT {}
+#endif
+
+
+/************************ carry out operations ******************************/
+
+
+GeneralMatrix* GeneralMatrix::Transpose(TransposedMatrix* tm, MatrixType mt)
+{
+   GeneralMatrix* gm1;
+
+   if (Compare(Type().t(),mt))
+   {
+      REPORT
+      gm1 = mt.New(ncols_val,nrows_val,tm);
+      for (int i=0; i<ncols_val; i++)
+      {
+         MatrixRow mr(gm1, StoreOnExit+DirectPart, i);
+         MatrixCol mc(this, mr.Data(), LoadOnEntry, i);
+      }
+   }
+   else
+   {
+      REPORT
+      gm1 = mt.New(ncols_val,nrows_val,tm);
+      MatrixRow mr(this, LoadOnEntry);
+      MatrixCol mc(gm1, StoreOnExit+DirectPart);
+      int i = nrows_val;
+      while (i--) { mc.Copy(mr); mr.Next(); mc.Next(); }
+   }
+   tDelete(); gm1->ReleaseAndDelete(); return gm1;
+}
+
+GeneralMatrix* SymmetricMatrix::Transpose(TransposedMatrix*, MatrixType mt)
+{ REPORT  return Evaluate(mt); }
+
+
+GeneralMatrix* DiagonalMatrix::Transpose(TransposedMatrix*, MatrixType mt)
+{ REPORT return Evaluate(mt); }
+
+GeneralMatrix* ColumnVector::Transpose(TransposedMatrix*, MatrixType mt)
+{
+   REPORT
+   GeneralMatrix* gmx = new RowVector; MatrixErrorNoSpace(gmx);
+   gmx->nrows_val = 1; gmx->ncols_val = gmx->storage = storage;
+   return BorrowStore(gmx,mt);
+}
+
+GeneralMatrix* RowVector::Transpose(TransposedMatrix*, MatrixType mt)
+{
+   REPORT
+   GeneralMatrix* gmx = new ColumnVector; MatrixErrorNoSpace(gmx);
+   gmx->ncols_val = 1; gmx->nrows_val = gmx->storage = storage;
+   return BorrowStore(gmx,mt);
+}
+
+GeneralMatrix* IdentityMatrix::Transpose(TransposedMatrix*, MatrixType mt)
+{ REPORT return Evaluate(mt); }
+
+GeneralMatrix* GeneralMatrix::Evaluate(MatrixType mt)
+{
+   if (Compare(this->Type(),mt)) { REPORT return this; }
+   REPORT
+   GeneralMatrix* gmx = mt.New(nrows_val,ncols_val,this);
+   MatrixRow mr(this, LoadOnEntry);
+   MatrixRow mrx(gmx, StoreOnExit+DirectPart);
+   int i=nrows_val;
+   while (i--) { mrx.Copy(mr); mrx.Next(); mr.Next(); }
+   tDelete(); gmx->ReleaseAndDelete(); return gmx;
+}
+
+GeneralMatrix* CroutMatrix::Evaluate(MatrixType mt)
+{
+   if (Compare(this->Type(),mt)) { REPORT return this; }
+   REPORT
+   Tracer et("CroutMatrix::Evaluate");
+   bool dummy = true;
+   if (dummy) Throw(ProgramException("Illegal use of CroutMatrix", *this));
+   return this;
+}
+
+GeneralMatrix* GenericMatrix::Evaluate(MatrixType mt)
+   { REPORT  return gm->Evaluate(mt); }
+
+GeneralMatrix* ShiftedMatrix::Evaluate(MatrixType mt)
+{
+   gm=((BaseMatrix*&)bm)->Evaluate();
+   int nr=gm->Nrows(); int nc=gm->Ncols();
+   Compare(gm->Type().AddEqualEl(),mt);
+   if (!(mt==gm->Type()))
+   {
+      REPORT
+      GeneralMatrix* gmx = mt.New(nr,nc,this);
+      MatrixRow mr(gm, LoadOnEntry);
+      MatrixRow mrx(gmx, StoreOnExit+DirectPart);
+      while (nr--) { mrx.Add(mr,f); mrx.Next(); mr.Next(); }
+      gmx->ReleaseAndDelete(); gm->tDelete();
+      return gmx;
+   }
+   else if (gm->reuse())
+   {
+      REPORT gm->Add(f);
+      return gm;
+   }
+   else
+   {
+      REPORT GeneralMatrix* gmy = gm->Type().New(nr,nc,this);
+      gmy->ReleaseAndDelete(); gmy->Add(gm,f);
+      return gmy;
+   }
+}
+
+GeneralMatrix* NegShiftedMatrix::Evaluate(MatrixType mt)
+{
+   gm=((BaseMatrix*&)bm)->Evaluate();
+   int nr=gm->Nrows(); int nc=gm->Ncols();
+   Compare(gm->Type().AddEqualEl(),mt);
+   if (!(mt==gm->Type()))
+   {
+      REPORT
+      GeneralMatrix* gmx = mt.New(nr,nc,this);
+      MatrixRow mr(gm, LoadOnEntry);
+      MatrixRow mrx(gmx, StoreOnExit+DirectPart);
+      while (nr--) { mrx.NegAdd(mr,f); mrx.Next(); mr.Next(); }
+      gmx->ReleaseAndDelete(); gm->tDelete();
+      return gmx;
+   }
+   else if (gm->reuse())
+   {
+      REPORT gm->NegAdd(f);
+      return gm;
+   }
+   else
+   {
+      REPORT GeneralMatrix* gmy = gm->Type().New(nr,nc,this);
+      gmy->ReleaseAndDelete(); gmy->NegAdd(gm,f);
+      return gmy;
+   }
+}
+
+GeneralMatrix* ScaledMatrix::Evaluate(MatrixType mt)
+{
+   gm=((BaseMatrix*&)bm)->Evaluate();
+   int nr=gm->Nrows(); int nc=gm->Ncols();
+   if (Compare(gm->Type(),mt))
+   {
+      if (gm->reuse())
+      {
+         REPORT gm->Multiply(f);
+         return gm;
+      }
+      else
+      {
+         REPORT GeneralMatrix* gmx = gm->Type().New(nr,nc,this);
+         gmx->ReleaseAndDelete(); gmx->Multiply(gm,f);
+         return gmx;
+      }
+   }
+   else
+   {
+      REPORT
+      GeneralMatrix* gmx = mt.New(nr,nc,this);
+      MatrixRow mr(gm, LoadOnEntry);
+      MatrixRow mrx(gmx, StoreOnExit+DirectPart);
+      while (nr--) { mrx.Multiply(mr,f); mrx.Next(); mr.Next(); }
+      gmx->ReleaseAndDelete(); gm->tDelete();
+      return gmx;
+   }
+}
+
+GeneralMatrix* NegatedMatrix::Evaluate(MatrixType mt)
+{
+   gm=((BaseMatrix*&)bm)->Evaluate();
+   int nr=gm->Nrows(); int nc=gm->Ncols();
+   if (Compare(gm->Type(),mt))
+   {
+      if (gm->reuse())
+      {
+         REPORT gm->Negate();
+         return gm;
+      }
+      else
+      {
+         REPORT
+         GeneralMatrix* gmx = gm->Type().New(nr,nc,this);
+         gmx->ReleaseAndDelete(); gmx->Negate(gm);
+         return gmx;
+      }
+   }
+   else
+   {
+      REPORT
+      GeneralMatrix* gmx = mt.New(nr,nc,this);
+      MatrixRow mr(gm, LoadOnEntry);
+      MatrixRow mrx(gmx, StoreOnExit+DirectPart);
+      while (nr--) { mrx.Negate(mr); mrx.Next(); mr.Next(); }
+      gmx->ReleaseAndDelete(); gm->tDelete();
+      return gmx;
+   }
+}
+
+GeneralMatrix* ReversedMatrix::Evaluate(MatrixType mt)
+{
+   gm=((BaseMatrix*&)bm)->Evaluate(); GeneralMatrix* gmx;
+
+   if ((gm->Type()).is_band() && ! (gm->Type()).is_diagonal())
+   {
+      gm->tDelete();
+      Throw(NotDefinedException("Reverse", "band matrices"));
+   }
+
+   if (gm->reuse()) { REPORT gm->ReverseElements(); gmx = gm; }
+   else
+   {
+      REPORT
+      gmx = gm->Type().New(gm->Nrows(), gm->Ncols(), this);
+      gmx->ReverseElements(gm); gmx->ReleaseAndDelete();
+   }
+   return gmx->Evaluate(mt); // target matrix is different type?
+
+}
+
+GeneralMatrix* TransposedMatrix::Evaluate(MatrixType mt)
+{
+   REPORT
+   gm=((BaseMatrix*&)bm)->Evaluate();
+   Compare(gm->Type().t(),mt);
+   GeneralMatrix* gmx=gm->Transpose(this, mt);
+   return gmx;
+}
+
+GeneralMatrix* RowedMatrix::Evaluate(MatrixType mt)
+{
+   gm = ((BaseMatrix*&)bm)->Evaluate();
+   GeneralMatrix* gmx = new RowVector; MatrixErrorNoSpace(gmx);
+   gmx->nrows_val = 1; gmx->ncols_val = gmx->storage = gm->storage;
+   return gm->BorrowStore(gmx,mt);
+}
+
+GeneralMatrix* ColedMatrix::Evaluate(MatrixType mt)
+{
+   gm = ((BaseMatrix*&)bm)->Evaluate();
+   GeneralMatrix* gmx = new ColumnVector; MatrixErrorNoSpace(gmx);
+   gmx->ncols_val = 1; gmx->nrows_val = gmx->storage = gm->storage;
+   return gm->BorrowStore(gmx,mt);
+}
+
+GeneralMatrix* DiagedMatrix::Evaluate(MatrixType mt)
+{
+   gm = ((BaseMatrix*&)bm)->Evaluate();
+   GeneralMatrix* gmx = new DiagonalMatrix; MatrixErrorNoSpace(gmx);
+   gmx->nrows_val = gmx->ncols_val = gmx->storage = gm->storage;
+   return gm->BorrowStore(gmx,mt);
+}
+
+GeneralMatrix* MatedMatrix::Evaluate(MatrixType mt)
+{
+   Tracer tr("MatedMatrix::Evaluate");
+   gm = ((BaseMatrix*&)bm)->Evaluate();
+   GeneralMatrix* gmx = new Matrix; MatrixErrorNoSpace(gmx);
+   gmx->nrows_val = nr; gmx->ncols_val = nc; gmx->storage = gm->storage;
+   if (nr*nc != gmx->storage)
+      Throw(IncompatibleDimensionsException());
+   return gm->BorrowStore(gmx,mt);
+}
+
+GeneralMatrix* GetSubMatrix::Evaluate(MatrixType mt)
+{
+   REPORT
+   Tracer tr("SubMatrix(evaluate)");
+   gm = ((BaseMatrix*&)bm)->Evaluate();
+   if (row_number < 0) row_number = gm->Nrows();
+   if (col_number < 0) col_number = gm->Ncols();
+   if (row_skip+row_number > gm->Nrows() || col_skip+col_number > gm->Ncols())
+   {
+      gm->tDelete();
+      Throw(SubMatrixDimensionException());
+   }
+   if (IsSym) Compare(gm->Type().ssub(), mt);
+   else Compare(gm->Type().sub(), mt);
+   GeneralMatrix* gmx = mt.New(row_number, col_number, this);
+   int i = row_number;
+   MatrixRow mr(gm, LoadOnEntry, row_skip); 
+   MatrixRow mrx(gmx, StoreOnExit+DirectPart);
+   MatrixRowCol sub;
+   while (i--)
+   {
+      mr.SubRowCol(sub, col_skip, col_number);   // put values in sub
+      mrx.Copy(sub); mrx.Next(); mr.Next();
+   }
+   gmx->ReleaseAndDelete(); gm->tDelete();
+   return gmx;
+}
+
+
+GeneralMatrix* ReturnMatrix::Evaluate(MatrixType mt)
+{
+   return gm->Evaluate(mt);
+}
+
+
+void GeneralMatrix::Add(GeneralMatrix* gm1, Real f)
+{
+   REPORT
+   Real* s1=gm1->store; Real* s=store; int i=(storage >> 2);
+   while (i--)
+   { *s++ = *s1++ + f; *s++ = *s1++ + f; *s++ = *s1++ + f; *s++ = *s1++ + f; }
+   i = storage & 3; while (i--) *s++ = *s1++ + f;
+}
+   
+void GeneralMatrix::Add(Real f)
+{
+   REPORT
+   Real* s=store; int i=(storage >> 2);
+   while (i--) { *s++ += f; *s++ += f; *s++ += f; *s++ += f; }
+   i = storage & 3; while (i--) *s++ += f;
+}
+   
+void GeneralMatrix::NegAdd(GeneralMatrix* gm1, Real f)
+{
+   REPORT
+   Real* s1=gm1->store; Real* s=store; int i=(storage >> 2);
+   while (i--)
+   { *s++ = f - *s1++; *s++ = f - *s1++; *s++ = f - *s1++; *s++ = f - *s1++; }
+   i = storage & 3; while (i--) *s++ = f - *s1++;
+}
+   
+void GeneralMatrix::NegAdd(Real f)
+{
+   REPORT
+   Real* s=store; int i=(storage >> 2);
+   while (i--)
+   {
+      *s = f - *s; s++; *s = f - *s; s++;
+      *s = f - *s; s++; *s = f - *s; s++;
+   }
+   i = storage & 3; while (i--)  { *s = f - *s; s++; }
+}
+   
+void GeneralMatrix::Negate(GeneralMatrix* gm1)
+{
+   // change sign of elements
+   REPORT
+   Real* s1=gm1->store; Real* s=store; int i=(storage >> 2);
+   while (i--)
+   { *s++ = -(*s1++); *s++ = -(*s1++); *s++ = -(*s1++); *s++ = -(*s1++); }
+   i = storage & 3; while(i--) *s++ = -(*s1++);
+}
+   
+void GeneralMatrix::Negate()
+{
+   REPORT
+   Real* s=store; int i=(storage >> 2);
+   while (i--)
+   { *s = -(*s); s++; *s = -(*s); s++; *s = -(*s); s++; *s = -(*s); s++; }
+   i = storage & 3; while(i--) { *s = -(*s); s++; }
+}
+   
+void GeneralMatrix::Multiply(GeneralMatrix* gm1, Real f)
+{
+   REPORT
+   Real* s1=gm1->store; Real* s=store;  int i=(storage >> 2);
+   while (i--)
+   { *s++ = *s1++ * f; *s++ = *s1++ * f; *s++ = *s1++ * f; *s++ = *s1++ * f; }
+   i = storage & 3; while (i--) *s++ = *s1++ * f;
+}
+   
+void GeneralMatrix::Multiply(Real f)
+{
+   REPORT
+   Real* s=store; int i=(storage >> 2);
+   while (i--) { *s++ *= f; *s++ *= f; *s++ *= f; *s++ *= f; }
+   i = storage & 3; while (i--) *s++ *= f;
+}
+   
+
+/************************ MatrixInput routines ****************************/
+
+// int MatrixInput::n;          // number values still to be read
+// Real* MatrixInput::r;        // pointer to next location to be read to
+
+MatrixInput MatrixInput::operator<<(double f)
+{
+   REPORT
+   Tracer et("MatrixInput");
+   if (n<=0) Throw(ProgramException("List of values too long"));
+   *r = (Real)f; int n1 = n-1; n=0;   // n=0 so we won't trigger exception
+   return MatrixInput(n1, r+1);
+}
+
+
+MatrixInput GeneralMatrix::operator<<(double f)
+{
+   REPORT
+   Tracer et("MatrixInput");
+   int n = Storage();
+   if (n<=0) Throw(ProgramException("Loading data to zero length matrix"));
+   Real* r; r = Store(); *r = (Real)f; n--;
+   return MatrixInput(n, r+1);
+}
+
+MatrixInput GetSubMatrix::operator<<(double f)
+{
+   REPORT
+   Tracer et("MatrixInput (GetSubMatrix)");
+   SetUpLHS();
+   if (row_number != 1 || col_skip != 0 || col_number != gm->Ncols())
+   {
+      Throw(ProgramException("MatrixInput requires complete rows"));
+   }
+   MatrixRow mr(gm, DirectPart, row_skip);  // to pick up location and length
+   int n = mr.Storage();
+   if (n<=0)
+   {
+      Throw(ProgramException("Loading data to zero length row"));
+   }
+   Real* r; r = mr.Data(); *r = (Real)f; n--;
+   if (+(mr.cw*HaveStore))
+   {
+      Throw(ProgramException("Fails with this matrix type"));
+   }
+   return MatrixInput(n, r+1);
+}
+
+MatrixInput MatrixInput::operator<<(float f)
+{
+   REPORT
+   Tracer et("MatrixInput");
+   if (n<=0) Throw(ProgramException("List of values too long"));
+   *r = (Real)f; int n1 = n-1; n=0;   // n=0 so we won't trigger exception
+   return MatrixInput(n1, r+1);
+}
+
+
+MatrixInput GeneralMatrix::operator<<(float f)
+{
+   REPORT
+   Tracer et("MatrixInput");
+   int n = Storage();
+   if (n<=0) Throw(ProgramException("Loading data to zero length matrix"));
+   Real* r; r = Store(); *r = (Real)f; n--;
+   return MatrixInput(n, r+1);
+}
+
+MatrixInput GetSubMatrix::operator<<(float f)
+{
+   REPORT
+   Tracer et("MatrixInput (GetSubMatrix)");
+   SetUpLHS();
+   if (row_number != 1 || col_skip != 0 || col_number != gm->Ncols())
+   {
+      Throw(ProgramException("MatrixInput requires complete rows"));
+   }
+   MatrixRow mr(gm, DirectPart, row_skip);  // to pick up location and length
+   int n = mr.Storage();
+   if (n<=0)
+   {
+      Throw(ProgramException("Loading data to zero length row"));
+   }
+   Real* r; r = mr.Data(); *r = (Real)f; n--;
+   if (+(mr.cw*HaveStore))
+   {
+      Throw(ProgramException("Fails with this matrix type"));
+   }
+   return MatrixInput(n, r+1);
+}
+MatrixInput::~MatrixInput()
+{
+   REPORT
+   Tracer et("MatrixInput");
+   if (n!=0) Throw(ProgramException("A list of values was too short"));
+}
+
+MatrixInput BandMatrix::operator<<(double)
+{
+   Tracer et("MatrixInput");
+   bool dummy = true;
+   if (dummy)                                   // get rid of warning message
+      Throw(ProgramException("Cannot use list read with a BandMatrix"));
+   return MatrixInput(0, 0);
+}
+
+MatrixInput BandMatrix::operator<<(float)
+{
+   Tracer et("MatrixInput");
+   bool dummy = true;
+   if (dummy)                                   // get rid of warning message
+      Throw(ProgramException("Cannot use list read with a BandMatrix"));
+   return MatrixInput(0, 0);
+}
+
+void BandMatrix::operator<<(const double*)
+{ Throw(ProgramException("Cannot use array read with a BandMatrix")); }
+
+void BandMatrix::operator<<(const float*)
+{ Throw(ProgramException("Cannot use array read with a BandMatrix")); }
+
+void BandMatrix::operator<<(const int*)
+{ Throw(ProgramException("Cannot use array read with a BandMatrix")); }
+
+void SymmetricBandMatrix::operator<<(const double*)
+{ Throw(ProgramException("Cannot use array read with a BandMatrix")); }
+
+void SymmetricBandMatrix::operator<<(const float*)
+{ Throw(ProgramException("Cannot use array read with a BandMatrix")); }
+
+void SymmetricBandMatrix::operator<<(const int*)
+{ Throw(ProgramException("Cannot use array read with a BandMatrix")); }
+
+// ************************* Reverse order of elements ***********************
+
+void GeneralMatrix::ReverseElements(GeneralMatrix* gm)
+{
+   // reversing into a new matrix
+   REPORT
+   int n = Storage(); Real* rx = Store() + n; Real* x = gm->Store();
+   while (n--) *(--rx) = *(x++);
+}
+
+void GeneralMatrix::ReverseElements()
+{
+   // reversing in place
+   REPORT
+   int n = Storage(); Real* x = Store(); Real* rx = x + n;
+   n /= 2;
+   while (n--) { Real t = *(--rx); *rx = *x; *(x++) = t; }
+}
+
+
+#ifdef use_namespace
+}
+#endif
+
+///@}
Index: branches/BNC_LM/newmat/newmat6.cpp
===================================================================
--- branches/BNC_LM/newmat/newmat6.cpp	(revision 3570)
+++ branches/BNC_LM/newmat/newmat6.cpp	(revision 3570)
@@ -0,0 +1,909 @@
+/// \ingroup newmat
+///@{
+
+/// \file newmat6.cpp
+/// Operators, element access.
+
+// Copyright (C) 1991,2,3,4: R B Davies
+
+#include "include.h"
+
+#include "newmat.h"
+#include "newmatrc.h"
+
+#ifdef use_namespace
+namespace NEWMAT {
+#endif
+
+
+
+#ifdef DO_REPORT
+#define REPORT { static ExeCounter ExeCount(__LINE__,6); ++ExeCount; }
+#else
+#define REPORT {}
+#endif
+
+/*************************** general utilities *************************/
+
+static int tristore(int n)                      // els in triangular matrix
+{ return (n*(n+1))/2; }
+
+
+/****************************** operators *******************************/
+
+Real& Matrix::operator()(int m, int n)
+{
+   REPORT
+   if (m<=0 || m>nrows_val || n<=0 || n>ncols_val)
+      Throw(IndexException(m,n,*this));
+   return store[(m-1)*ncols_val+n-1];
+}
+
+Real& SymmetricMatrix::operator()(int m, int n)
+{
+   REPORT
+   if (m<=0 || n<=0 || m>nrows_val || n>ncols_val)
+      Throw(IndexException(m,n,*this));
+   if (m>=n) return store[tristore(m-1)+n-1];
+   else return store[tristore(n-1)+m-1];
+}
+
+Real& UpperTriangularMatrix::operator()(int m, int n)
+{
+   REPORT
+   if (m<=0 || n<m || n>ncols_val)
+      Throw(IndexException(m,n,*this));
+   return store[(m-1)*ncols_val+n-1-tristore(m-1)];
+}
+
+Real& LowerTriangularMatrix::operator()(int m, int n)
+{
+   REPORT
+   if (n<=0 || m<n || m>nrows_val)
+      Throw(IndexException(m,n,*this));
+   return store[tristore(m-1)+n-1];
+}
+
+Real& DiagonalMatrix::operator()(int m, int n)
+{
+   REPORT
+   if (n<=0 || m!=n || m>nrows_val || n>ncols_val)
+      Throw(IndexException(m,n,*this));
+   return store[n-1];
+}
+
+Real& DiagonalMatrix::operator()(int m)
+{
+   REPORT
+   if (m<=0 || m>nrows_val) Throw(IndexException(m,*this));
+   return store[m-1];
+}
+
+Real& ColumnVector::operator()(int m)
+{
+   REPORT
+   if (m<=0 || m> nrows_val) Throw(IndexException(m,*this));
+   return store[m-1];
+}
+
+Real& RowVector::operator()(int n)
+{
+   REPORT
+   if (n<=0 || n> ncols_val) Throw(IndexException(n,*this));
+   return store[n-1];
+}
+
+Real& BandMatrix::operator()(int m, int n)
+{
+   REPORT
+   int w = upper_val+lower_val+1; int i = lower_val+n-m;
+   if (m<=0 || m>nrows_val || n<=0 || n>ncols_val || i<0 || i>=w)
+      Throw(IndexException(m,n,*this));
+   return store[w*(m-1)+i];
+}
+
+Real& UpperBandMatrix::operator()(int m, int n)
+{
+   REPORT
+   int w = upper_val+1; int i = n-m;
+   if (m<=0 || m>nrows_val || n<=0 || n>ncols_val || i<0 || i>=w)
+      Throw(IndexException(m,n,*this));
+   return store[w*(m-1)+i];
+}
+
+Real& LowerBandMatrix::operator()(int m, int n)
+{
+   REPORT
+   int w = lower_val+1; int i = lower_val+n-m;
+   if (m<=0 || m>nrows_val || n<=0 || n>ncols_val || i<0 || i>=w)
+      Throw(IndexException(m,n,*this));
+   return store[w*(m-1)+i];
+}
+
+Real& SymmetricBandMatrix::operator()(int m, int n)
+{
+   REPORT
+   int w = lower_val+1;
+   if (m>=n)
+   {
+      REPORT
+      int i = lower_val+n-m;
+      if ( m>nrows_val || n<=0 || i<0 )
+         Throw(IndexException(m,n,*this));
+      return store[w*(m-1)+i];
+   }
+   else
+   {
+      REPORT
+      int i = lower_val+m-n;
+      if ( n>nrows_val || m<=0 || i<0 )
+         Throw(IndexException(m,n,*this));
+      return store[w*(n-1)+i];
+   }
+}
+
+
+Real Matrix::operator()(int m, int n) const
+{
+   REPORT
+   if (m<=0 || m>nrows_val || n<=0 || n>ncols_val)
+      Throw(IndexException(m,n,*this));
+   return store[(m-1)*ncols_val+n-1];
+}
+
+Real SymmetricMatrix::operator()(int m, int n) const
+{
+   REPORT
+   if (m<=0 || n<=0 || m>nrows_val || n>ncols_val)
+      Throw(IndexException(m,n,*this));
+   if (m>=n) return store[tristore(m-1)+n-1];
+   else return store[tristore(n-1)+m-1];
+}
+
+Real UpperTriangularMatrix::operator()(int m, int n) const
+{
+   REPORT
+   if (m<=0 || n<m || n>ncols_val)
+      Throw(IndexException(m,n,*this));
+   return store[(m-1)*ncols_val+n-1-tristore(m-1)];
+}
+
+Real LowerTriangularMatrix::operator()(int m, int n) const
+{
+   REPORT
+   if (n<=0 || m<n || m>nrows_val)
+      Throw(IndexException(m,n,*this));
+   return store[tristore(m-1)+n-1];
+}
+
+Real DiagonalMatrix::operator()(int m, int n) const
+{
+   REPORT
+   if (n<=0 || m!=n || m>nrows_val || n>ncols_val)
+      Throw(IndexException(m,n,*this));
+   return store[n-1];
+}
+
+Real DiagonalMatrix::operator()(int m) const
+{
+   REPORT
+   if (m<=0 || m>nrows_val) Throw(IndexException(m,*this));
+   return store[m-1];
+}
+
+Real ColumnVector::operator()(int m) const
+{
+   REPORT
+   if (m<=0 || m> nrows_val) Throw(IndexException(m,*this));
+   return store[m-1];
+}
+
+Real RowVector::operator()(int n) const
+{
+   REPORT
+   if (n<=0 || n> ncols_val) Throw(IndexException(n,*this));
+   return store[n-1];
+}
+
+Real BandMatrix::operator()(int m, int n) const
+{
+   REPORT
+   int w = upper_val+lower_val+1; int i = lower_val+n-m;
+   if (m<=0 || m>nrows_val || n<=0 || n>ncols_val || i<0 || i>=w)
+      Throw(IndexException(m,n,*this));
+   return store[w*(m-1)+i];
+}
+
+Real UpperBandMatrix::operator()(int m, int n) const
+{
+   REPORT
+   int w = upper_val+1; int i = n-m;
+   if (m<=0 || m>nrows_val || n<=0 || n>ncols_val || i<0 || i>=w)
+      Throw(IndexException(m,n,*this));
+   return store[w*(m-1)+i];
+}
+
+Real LowerBandMatrix::operator()(int m, int n) const
+{
+   REPORT
+   int w = lower_val+1; int i = lower_val+n-m;
+   if (m<=0 || m>nrows_val || n<=0 || n>ncols_val || i<0 || i>=w)
+      Throw(IndexException(m,n,*this));
+   return store[w*(m-1)+i];
+}
+
+Real SymmetricBandMatrix::operator()(int m, int n) const
+{
+   REPORT
+   int w = lower_val+1;
+   if (m>=n)
+   {
+      REPORT
+      int i = lower_val+n-m;
+      if ( m>nrows_val || n<=0 || i<0 )
+         Throw(IndexException(m,n,*this));
+      return store[w*(m-1)+i];
+   }
+   else
+   {
+      REPORT
+      int i = lower_val+m-n;
+      if ( n>nrows_val || m<=0 || i<0 )
+         Throw(IndexException(m,n,*this));
+      return store[w*(n-1)+i];
+   }
+}
+
+
+Real BaseMatrix::as_scalar() const
+{
+   REPORT
+   GeneralMatrix* gm = ((BaseMatrix&)*this).Evaluate();
+
+   if (gm->nrows_val!=1 || gm->ncols_val!=1)
+   {
+      Tracer tr("as_scalar");
+      Try
+         { Throw(ProgramException("Cannot convert to scalar", *gm)); }
+      CatchAll { gm->tDelete(); ReThrow; }
+   }
+
+   Real x = *(gm->store); gm->tDelete(); return x;
+}
+
+
+AddedMatrix BaseMatrix::operator+(const BaseMatrix& bm) const
+{ REPORT return AddedMatrix(this, &bm); }
+
+SPMatrix SP(const BaseMatrix& bm1,const BaseMatrix& bm2)
+{ REPORT return SPMatrix(&bm1, &bm2); }
+
+KPMatrix KP(const BaseMatrix& bm1,const BaseMatrix& bm2)
+{ REPORT return KPMatrix(&bm1, &bm2); }
+
+MultipliedMatrix BaseMatrix::operator*(const BaseMatrix& bm) const
+{ REPORT return MultipliedMatrix(this, &bm); }
+
+ConcatenatedMatrix BaseMatrix::operator|(const BaseMatrix& bm) const
+{ REPORT return ConcatenatedMatrix(this, &bm); }
+
+StackedMatrix BaseMatrix::operator&(const BaseMatrix& bm) const
+{ REPORT return StackedMatrix(this, &bm); }
+
+SolvedMatrix InvertedMatrix::operator*(const BaseMatrix& bmx) const
+{ REPORT return SolvedMatrix(bm, &bmx); }
+
+SubtractedMatrix BaseMatrix::operator-(const BaseMatrix& bm) const
+{ REPORT return SubtractedMatrix(this, &bm); }
+
+ShiftedMatrix BaseMatrix::operator+(Real f) const
+{ REPORT return ShiftedMatrix(this, f); }
+
+ShiftedMatrix operator+(Real f, const BaseMatrix& BM)
+{ REPORT return ShiftedMatrix(&BM, f); }
+
+NegShiftedMatrix operator-(Real f, const BaseMatrix& bm)
+{ REPORT return NegShiftedMatrix(f, &bm); }
+
+ScaledMatrix BaseMatrix::operator*(Real f) const
+{ REPORT return ScaledMatrix(this, f); }
+
+ScaledMatrix BaseMatrix::operator/(Real f) const
+{ REPORT return ScaledMatrix(this, 1.0/f); }
+
+ScaledMatrix operator*(Real f, const BaseMatrix& BM)
+{ REPORT return ScaledMatrix(&BM, f); }
+
+ShiftedMatrix BaseMatrix::operator-(Real f) const
+{ REPORT return ShiftedMatrix(this, -f); }
+
+TransposedMatrix BaseMatrix::t() const
+{ REPORT return TransposedMatrix(this); }
+
+NegatedMatrix BaseMatrix::operator-() const
+{ REPORT return NegatedMatrix(this); }
+
+ReversedMatrix BaseMatrix::reverse() const
+{ REPORT return ReversedMatrix(this); }
+
+InvertedMatrix BaseMatrix::i() const
+{ REPORT return InvertedMatrix(this); }
+
+
+RowedMatrix BaseMatrix::as_row() const
+{ REPORT return RowedMatrix(this); }
+
+ColedMatrix BaseMatrix::as_column() const
+{ REPORT return ColedMatrix(this); }
+
+DiagedMatrix BaseMatrix::as_diagonal() const
+{ REPORT return DiagedMatrix(this); }
+
+MatedMatrix BaseMatrix::as_matrix(int nrx, int ncx) const
+{ REPORT return MatedMatrix(this,nrx,ncx); }
+
+
+void GeneralMatrix::operator=(Real f)
+{ REPORT int i=storage; Real* s=store; while (i--) { *s++ = f; } }
+
+void Matrix::operator=(const BaseMatrix& X)
+{
+   REPORT //CheckConversion(X);
+   // MatrixConversionCheck mcc;
+   Eq(X,MatrixType::Rt);
+} 
+
+void SquareMatrix::operator=(const BaseMatrix& X)
+{
+   REPORT //CheckConversion(X);
+   // MatrixConversionCheck mcc;
+   Eq(X,MatrixType::Rt);
+   if (nrows_val != ncols_val)
+      { Tracer tr("SquareMatrix(=)"); Throw(NotSquareException(*this)); }
+}
+
+void SquareMatrix::operator=(const Matrix& m)
+{
+   REPORT
+   if (m.nrows_val != m.ncols_val)
+      { Tracer tr("SquareMatrix(=Matrix)"); Throw(NotSquareException(*this)); }
+   Eq(m);
+}
+
+void RowVector::operator=(const BaseMatrix& X)
+{
+   REPORT  // CheckConversion(X);
+   // MatrixConversionCheck mcc;
+   Eq(X,MatrixType::RV);
+   if (nrows_val!=1)
+      { Tracer tr("RowVector(=)"); Throw(VectorException(*this)); }
+}
+
+void ColumnVector::operator=(const BaseMatrix& X)
+{
+   REPORT //CheckConversion(X);
+   // MatrixConversionCheck mcc;
+   Eq(X,MatrixType::CV);
+   if (ncols_val!=1)
+      { Tracer tr("ColumnVector(=)"); Throw(VectorException(*this)); }
+}
+
+void SymmetricMatrix::operator=(const BaseMatrix& X)
+{
+   REPORT // CheckConversion(X);
+   // MatrixConversionCheck mcc;
+   Eq(X,MatrixType::Sm);
+}
+
+void UpperTriangularMatrix::operator=(const BaseMatrix& X)
+{
+   REPORT //CheckConversion(X);
+   // MatrixConversionCheck mcc;
+   Eq(X,MatrixType::UT);
+}
+
+void LowerTriangularMatrix::operator=(const BaseMatrix& X)
+{
+   REPORT //CheckConversion(X);
+   // MatrixConversionCheck mcc;
+   Eq(X,MatrixType::LT);
+}
+
+void DiagonalMatrix::operator=(const BaseMatrix& X)
+{
+   REPORT // CheckConversion(X);
+   // MatrixConversionCheck mcc;
+   Eq(X,MatrixType::Dg);
+}
+
+void IdentityMatrix::operator=(const BaseMatrix& X)
+{
+   REPORT // CheckConversion(X);
+   // MatrixConversionCheck mcc;
+   Eq(X,MatrixType::Id);
+}
+
+
+void CroutMatrix::operator=(const CroutMatrix& gm)
+{
+   if (&gm == this) { REPORT tag_val = -1; return; }
+   REPORT
+   if (indx > 0) { delete [] indx; indx = 0; }
+   ((CroutMatrix&)gm).get_aux(*this);
+   Eq(gm);
+}
+   
+
+
+
+
+void GeneralMatrix::operator<<(const double* r)
+{
+   REPORT
+   int i = storage; Real* s=store;
+   while(i--) *s++ = (Real)*r++;
+}
+
+
+void GeneralMatrix::operator<<(const float* r)
+{
+   REPORT
+   int i = storage; Real* s=store;
+   while(i--) *s++ = (Real)*r++;
+}
+
+
+void GeneralMatrix::operator<<(const int* r)
+{
+   REPORT
+   int i = storage; Real* s=store;
+   while(i--) *s++ = (Real)*r++;
+}
+
+
+void GenericMatrix::operator=(const GenericMatrix& bmx)
+{
+   if (&bmx != this) { REPORT if (gm) delete gm; gm = bmx.gm->Image();}
+   else { REPORT }
+   gm->Protect();
+}
+
+void GenericMatrix::operator=(const BaseMatrix& bmx)
+{
+   if (gm)
+   {
+      int counter=bmx.search(gm);
+      if (counter==0) { REPORT delete gm; gm=0; }
+      else { REPORT gm->Release(counter); }
+   }
+   else { REPORT }
+   GeneralMatrix* gmx = ((BaseMatrix&)bmx).Evaluate();
+   if (gmx != gm) { REPORT if (gm) delete gm; gm = gmx->Image(); }
+   else { REPORT }
+   gm->Protect();
+}
+
+
+/*************************** += etc ***************************************/
+
+
+// GeneralMatrix operators
+
+void GeneralMatrix::operator+=(const BaseMatrix& X)
+{
+   REPORT
+   Tracer tr("GeneralMatrix::operator+=");
+   // MatrixConversionCheck mcc;
+   Protect();                                   // so it cannot get deleted
+						// during Evaluate
+   GeneralMatrix* gm = ((BaseMatrix&)X).Evaluate();
+   AddedMatrix am(this,gm);
+   if (gm==this) Release(2); else Release();
+   Eq2(am,type());
+}
+
+void GeneralMatrix::operator-=(const BaseMatrix& X)
+{
+   REPORT
+   Tracer tr("GeneralMatrix::operator-=");
+   // MatrixConversionCheck mcc;
+   Protect();                                   // so it cannot get deleted
+						// during Evaluate
+   GeneralMatrix* gm = ((BaseMatrix&)X).Evaluate();
+   SubtractedMatrix am(this,gm);
+   if (gm==this) Release(2); else Release();
+   Eq2(am,type());
+}
+
+void GeneralMatrix::operator*=(const BaseMatrix& X)
+{
+   REPORT
+   Tracer tr("GeneralMatrix::operator*=");
+   // MatrixConversionCheck mcc;
+   Protect();                                   // so it cannot get deleted
+						// during Evaluate
+   GeneralMatrix* gm = ((BaseMatrix&)X).Evaluate();
+   MultipliedMatrix am(this,gm);
+   if (gm==this) Release(2); else Release();
+   Eq2(am,type());
+}
+
+void GeneralMatrix::operator|=(const BaseMatrix& X)
+{
+   REPORT
+   Tracer tr("GeneralMatrix::operator|=");
+   // MatrixConversionCheck mcc;
+   Protect();                                   // so it cannot get deleted
+						// during Evaluate
+   GeneralMatrix* gm = ((BaseMatrix&)X).Evaluate();
+   ConcatenatedMatrix am(this,gm);
+   if (gm==this) Release(2); else Release();
+   Eq2(am,type());
+}
+
+void GeneralMatrix::operator&=(const BaseMatrix& X)
+{
+   REPORT
+   Tracer tr("GeneralMatrix::operator&=");
+   // MatrixConversionCheck mcc;
+   Protect();                                   // so it cannot get deleted
+						// during Evaluate
+   GeneralMatrix* gm = ((BaseMatrix&)X).Evaluate();
+   StackedMatrix am(this,gm);
+   if (gm==this) Release(2); else Release();
+   Eq2(am,type());
+}
+
+void GeneralMatrix::operator+=(Real r)
+{
+   REPORT
+   Tracer tr("GeneralMatrix::operator+=(Real)");
+   // MatrixConversionCheck mcc;
+   ShiftedMatrix am(this,r);
+   Release(); Eq2(am,type());
+}
+
+void GeneralMatrix::operator*=(Real r)
+{
+   REPORT
+   Tracer tr("GeneralMatrix::operator*=(Real)");
+   // MatrixConversionCheck mcc;
+   ScaledMatrix am(this,r);
+   Release(); Eq2(am,type());
+}
+
+
+// Generic matrix operators
+
+void GenericMatrix::operator+=(const BaseMatrix& X)
+{
+   REPORT
+   Tracer tr("GenericMatrix::operator+=");
+   if (!gm) Throw(ProgramException("GenericMatrix is null"));
+   gm->Protect();            // so it cannot get deleted during Evaluate
+   GeneralMatrix* gmx = ((BaseMatrix&)X).Evaluate();
+   AddedMatrix am(gm,gmx);
+   if (gmx==gm) gm->Release(2); else gm->Release();
+   GeneralMatrix* gmy = am.Evaluate();
+   if (gmy != gm) { REPORT delete gm; gm = gmy->Image(); }
+   else { REPORT }
+   gm->Protect();
+}
+
+void GenericMatrix::operator-=(const BaseMatrix& X)
+{
+   REPORT
+   Tracer tr("GenericMatrix::operator-=");
+   if (!gm) Throw(ProgramException("GenericMatrix is null"));
+   gm->Protect();            // so it cannot get deleted during Evaluate
+   GeneralMatrix* gmx = ((BaseMatrix&)X).Evaluate();
+   SubtractedMatrix am(gm,gmx);
+   if (gmx==gm) gm->Release(2); else gm->Release();
+   GeneralMatrix* gmy = am.Evaluate();
+   if (gmy != gm) { REPORT delete gm; gm = gmy->Image(); }
+   else { REPORT }
+   gm->Protect();
+}
+
+void GenericMatrix::operator*=(const BaseMatrix& X)
+{
+   REPORT
+   Tracer tr("GenericMatrix::operator*=");
+   if (!gm) Throw(ProgramException("GenericMatrix is null"));
+   gm->Protect();            // so it cannot get deleted during Evaluate
+   GeneralMatrix* gmx = ((BaseMatrix&)X).Evaluate();
+   MultipliedMatrix am(gm,gmx);
+   if (gmx==gm) gm->Release(2); else gm->Release();
+   GeneralMatrix* gmy = am.Evaluate();
+   if (gmy != gm) { REPORT delete gm; gm = gmy->Image(); }
+   else { REPORT }
+   gm->Protect();
+}
+
+void GenericMatrix::operator|=(const BaseMatrix& X)
+{
+   REPORT
+   Tracer tr("GenericMatrix::operator|=");
+   if (!gm) Throw(ProgramException("GenericMatrix is null"));
+   gm->Protect();            // so it cannot get deleted during Evaluate
+   GeneralMatrix* gmx = ((BaseMatrix&)X).Evaluate();
+   ConcatenatedMatrix am(gm,gmx);
+   if (gmx==gm) gm->Release(2); else gm->Release();
+   GeneralMatrix* gmy = am.Evaluate();
+   if (gmy != gm) { REPORT delete gm; gm = gmy->Image(); }
+   else { REPORT }
+   gm->Protect();
+}
+
+void GenericMatrix::operator&=(const BaseMatrix& X)
+{
+   REPORT
+   Tracer tr("GenericMatrix::operator&=");
+   if (!gm) Throw(ProgramException("GenericMatrix is null"));
+   gm->Protect();            // so it cannot get deleted during Evaluate
+   GeneralMatrix* gmx = ((BaseMatrix&)X).Evaluate();
+   StackedMatrix am(gm,gmx);
+   if (gmx==gm) gm->Release(2); else gm->Release();
+   GeneralMatrix* gmy = am.Evaluate();
+   if (gmy != gm) { REPORT delete gm; gm = gmy->Image(); }
+   else { REPORT }
+   gm->Protect();
+}
+
+void GenericMatrix::operator+=(Real r)
+{
+   REPORT
+   Tracer tr("GenericMatrix::operator+= (Real)");
+   if (!gm) Throw(ProgramException("GenericMatrix is null"));
+   ShiftedMatrix am(gm,r);
+   gm->Release();
+   GeneralMatrix* gmy = am.Evaluate();
+   if (gmy != gm) { REPORT delete gm; gm = gmy->Image(); }
+   else { REPORT }
+   gm->Protect();
+}
+
+void GenericMatrix::operator*=(Real r)
+{
+   REPORT
+   Tracer tr("GenericMatrix::operator*= (Real)");
+   if (!gm) Throw(ProgramException("GenericMatrix is null"));
+   ScaledMatrix am(gm,r);
+   gm->Release();
+   GeneralMatrix* gmy = am.Evaluate();
+   if (gmy != gm) { REPORT delete gm; gm = gmy->Image(); }
+   else { REPORT }
+   gm->Protect();
+}
+
+
+/************************* element access *********************************/
+
+Real& Matrix::element(int m, int n)
+{
+   REPORT
+   if (m<0 || m>= nrows_val || n<0 || n>= ncols_val)
+      Throw(IndexException(m,n,*this,true));
+   return store[m*ncols_val+n];
+}
+
+Real Matrix::element(int m, int n) const
+{
+   REPORT
+   if (m<0 || m>= nrows_val || n<0 || n>= ncols_val)
+      Throw(IndexException(m,n,*this,true));
+   return store[m*ncols_val+n];
+}
+
+Real& SymmetricMatrix::element(int m, int n)
+{
+   REPORT
+   if (m<0 || n<0 || m >= nrows_val || n>=ncols_val)
+      Throw(IndexException(m,n,*this,true));
+   if (m>=n) return store[tristore(m)+n];
+   else return store[tristore(n)+m];
+}
+
+Real SymmetricMatrix::element(int m, int n) const
+{
+   REPORT
+   if (m<0 || n<0 || m >= nrows_val || n>=ncols_val)
+      Throw(IndexException(m,n,*this,true));
+   if (m>=n) return store[tristore(m)+n];
+   else return store[tristore(n)+m];
+}
+
+Real& UpperTriangularMatrix::element(int m, int n)
+{
+   REPORT
+   if (m<0 || n<m || n>=ncols_val)
+      Throw(IndexException(m,n,*this,true));
+   return store[m*ncols_val+n-tristore(m)];
+}
+
+Real UpperTriangularMatrix::element(int m, int n) const
+{
+   REPORT
+   if (m<0 || n<m || n>=ncols_val)
+      Throw(IndexException(m,n,*this,true));
+   return store[m*ncols_val+n-tristore(m)];
+}
+
+Real& LowerTriangularMatrix::element(int m, int n)
+{
+   REPORT
+   if (n<0 || m<n || m>=nrows_val)
+      Throw(IndexException(m,n,*this,true));
+   return store[tristore(m)+n];
+}
+
+Real LowerTriangularMatrix::element(int m, int n) const
+{
+   REPORT
+   if (n<0 || m<n || m>=nrows_val)
+      Throw(IndexException(m,n,*this,true));
+   return store[tristore(m)+n];
+}
+
+Real& DiagonalMatrix::element(int m, int n)
+{
+   REPORT
+   if (n<0 || m!=n || m>=nrows_val || n>=ncols_val)
+      Throw(IndexException(m,n,*this,true));
+   return store[n];
+}
+
+Real DiagonalMatrix::element(int m, int n) const
+{
+   REPORT
+   if (n<0 || m!=n || m>=nrows_val || n>=ncols_val)
+      Throw(IndexException(m,n,*this,true));
+   return store[n];
+}
+
+Real& DiagonalMatrix::element(int m)
+{
+   REPORT
+   if (m<0 || m>=nrows_val) Throw(IndexException(m,*this,true));
+   return store[m];
+}
+
+Real DiagonalMatrix::element(int m) const
+{
+   REPORT
+   if (m<0 || m>=nrows_val) Throw(IndexException(m,*this,true));
+   return store[m];
+}
+
+Real& ColumnVector::element(int m)
+{
+   REPORT
+   if (m<0 || m>= nrows_val) Throw(IndexException(m,*this,true));
+   return store[m];
+}
+
+Real ColumnVector::element(int m) const
+{
+   REPORT
+   if (m<0 || m>= nrows_val) Throw(IndexException(m,*this,true));
+   return store[m];
+}
+
+Real& RowVector::element(int n)
+{
+   REPORT
+   if (n<0 || n>= ncols_val)  Throw(IndexException(n,*this,true));
+   return store[n];
+}
+
+Real RowVector::element(int n) const
+{
+   REPORT
+   if (n<0 || n>= ncols_val)  Throw(IndexException(n,*this,true));
+   return store[n];
+}
+
+Real& BandMatrix::element(int m, int n)
+{
+   REPORT
+   int w = upper_val+lower_val+1; int i = lower_val+n-m;
+   if (m<0 || m>= nrows_val || n<0 || n>= ncols_val || i<0 || i>=w)
+      Throw(IndexException(m,n,*this,true));
+   return store[w*m+i];
+}
+
+Real BandMatrix::element(int m, int n) const
+{
+   REPORT
+   int w = upper_val+lower_val+1; int i = lower_val+n-m;
+   if (m<0 || m>= nrows_val || n<0 || n>= ncols_val || i<0 || i>=w)
+      Throw(IndexException(m,n,*this,true));
+   return store[w*m+i];
+}
+
+Real& UpperBandMatrix::element(int m, int n)
+{
+   REPORT
+   int w = upper_val+1; int i = n-m;
+   if (m<0 || m>= nrows_val || n<0 || n>= ncols_val || i<0 || i>=w)
+      Throw(IndexException(m,n,*this,true));
+   return store[w*m+i];
+}
+
+Real UpperBandMatrix::element(int m, int n) const
+{
+   REPORT
+   int w = upper_val+1; int i = n-m;
+   if (m<0 || m>= nrows_val || n<0 || n>= ncols_val || i<0 || i>=w)
+      Throw(IndexException(m,n,*this,true));
+   return store[w*m+i];
+}
+
+Real& LowerBandMatrix::element(int m, int n)
+{
+   REPORT
+   int w = lower_val+1; int i = lower_val+n-m;
+   if (m<0 || m>= nrows_val || n<0 || n>= ncols_val || i<0 || i>=w)
+      Throw(IndexException(m,n,*this,true));
+   return store[w*m+i];
+}
+
+Real LowerBandMatrix::element(int m, int n) const
+{
+   REPORT
+   int w = lower_val+1; int i = lower_val+n-m;
+   if (m<0 || m>= nrows_val || n<0 || n>= ncols_val || i<0 || i>=w)
+      Throw(IndexException(m,n,*this,true));
+   return store[w*m+i];
+}
+
+Real& SymmetricBandMatrix::element(int m, int n)
+{
+   REPORT
+   int w = lower_val+1;
+   if (m>=n)
+   {
+      REPORT
+      int i = lower_val+n-m;
+      if ( m>=nrows_val || n<0 || i<0 )
+         Throw(IndexException(m,n,*this,true));
+      return store[w*m+i];
+   }
+   else
+   {
+      REPORT
+      int i = lower_val+m-n;
+      if ( n>=nrows_val || m<0 || i<0 )
+         Throw(IndexException(m,n,*this,true));
+      return store[w*n+i];
+   }
+}
+
+Real SymmetricBandMatrix::element(int m, int n) const
+{
+   REPORT
+   int w = lower_val+1;
+   if (m>=n)
+   {
+      REPORT
+      int i = lower_val+n-m;
+      if ( m>=nrows_val || n<0 || i<0 )
+         Throw(IndexException(m,n,*this,true));
+      return store[w*m+i];
+   }
+   else
+   {
+      REPORT
+      int i = lower_val+m-n;
+      if ( n>=nrows_val || m<0 || i<0 )
+         Throw(IndexException(m,n,*this,true));
+      return store[w*n+i];
+   }
+}
+
+#ifdef use_namespace
+}
+#endif
+
+
+///}
Index: branches/BNC_LM/newmat/newmat7.cpp
===================================================================
--- branches/BNC_LM/newmat/newmat7.cpp	(revision 3570)
+++ branches/BNC_LM/newmat/newmat7.cpp	(revision 3570)
@@ -0,0 +1,1032 @@
+/// \ingroup newmat
+///@{
+
+/// \file newmat7.cpp
+/// Invert, solve, binary operations.
+
+// Copyright (C) 1991,2,3,4: R B Davies
+
+#include "include.h"
+
+#include "newmat.h"
+#include "newmatrc.h"
+
+#ifdef use_namespace
+namespace NEWMAT {
+#endif
+
+
+#ifdef DO_REPORT
+#define REPORT { static ExeCounter ExeCount(__LINE__,7); ++ExeCount; }
+#else
+#define REPORT {}
+#endif
+
+
+//***************************** solve routines ******************************/
+
+GeneralMatrix* GeneralMatrix::MakeSolver()
+{
+   REPORT
+   GeneralMatrix* gm = new CroutMatrix(*this);
+   MatrixErrorNoSpace(gm); gm->ReleaseAndDelete(); return gm;
+}
+
+GeneralMatrix* Matrix::MakeSolver()
+{
+   REPORT
+   GeneralMatrix* gm = new CroutMatrix(*this);
+   MatrixErrorNoSpace(gm); gm->ReleaseAndDelete(); return gm;
+}
+
+void CroutMatrix::Solver(MatrixColX& mcout, const MatrixColX& mcin)
+{
+   REPORT
+   int i = mcin.skip; Real* el = mcin.data-i; Real* el1 = el;
+   while (i--) *el++ = 0.0;
+   el += mcin.storage; i = nrows_val - mcin.skip - mcin.storage;
+   while (i--) *el++ = 0.0;
+   lubksb(el1, mcout.skip);
+}
+
+
+// Do we need check for entirely zero output?
+
+void UpperTriangularMatrix::Solver(MatrixColX& mcout,
+   const MatrixColX& mcin)
+{
+   REPORT
+   int i = mcin.skip-mcout.skip; Real* elx = mcin.data-i;
+   while (i-- > 0) *elx++ = 0.0;
+   int nr = mcin.skip+mcin.storage;
+   elx = mcin.data+mcin.storage; Real* el = elx;
+   int j = mcout.skip+mcout.storage-nr;
+   int nc = ncols_val-nr; i = nr-mcout.skip;
+   while (j-- > 0) *elx++ = 0.0;
+   Real* Ael = store + (nr*(2*ncols_val-nr+1))/2; j = 0;
+   while (i-- > 0)
+   {
+      elx = el; Real sum = 0.0; int jx = j++; Ael -= nc;
+      while (jx--) sum += *(--Ael) * *(--elx);
+      elx--; *elx = (*elx - sum) / *(--Ael);
+   }
+}
+
+void LowerTriangularMatrix::Solver(MatrixColX& mcout,
+   const MatrixColX& mcin)
+{
+   REPORT
+   int i = mcin.skip-mcout.skip; Real* elx = mcin.data-i;
+   while (i-- > 0) *elx++ = 0.0;
+   int nc = mcin.skip; i = nc+mcin.storage; elx = mcin.data+mcin.storage;
+   int nr = mcout.skip+mcout.storage; int j = nr-i; i = nr-nc;
+   while (j-- > 0) *elx++ = 0.0;
+   Real* el = mcin.data; Real* Ael = store + (nc*(nc+1))/2; j = 0;
+   while (i-- > 0)
+   {
+      elx = el; Real sum = 0.0; int jx = j++; Ael += nc;
+      while (jx--) sum += *Ael++ * *elx++;
+      *elx = (*elx - sum) / *Ael++;
+   }
+}
+
+//******************* carry out binary operations *************************/
+
+static GeneralMatrix*
+   GeneralMult(GeneralMatrix*,GeneralMatrix*,MultipliedMatrix*,MatrixType);
+static GeneralMatrix*
+   GeneralSolv(GeneralMatrix*,GeneralMatrix*,BaseMatrix*,MatrixType);
+static GeneralMatrix*
+   GeneralSolvI(GeneralMatrix*,BaseMatrix*,MatrixType);
+static GeneralMatrix*
+   GeneralKP(GeneralMatrix*,GeneralMatrix*,KPMatrix*,MatrixType);
+
+GeneralMatrix* MultipliedMatrix::Evaluate(MatrixType mt)
+{
+   REPORT
+   gm2 = ((BaseMatrix*&)bm2)->Evaluate();
+   gm2 = gm2->Evaluate(gm2->type().MultRHS());     // no symmetric on RHS
+   gm1 = ((BaseMatrix*&)bm1)->Evaluate();
+   return GeneralMult(gm1, gm2, this, mt);
+}
+
+GeneralMatrix* SolvedMatrix::Evaluate(MatrixType mt)
+{
+   REPORT
+   gm1 = ((BaseMatrix*&)bm1)->Evaluate();
+   gm2 = ((BaseMatrix*&)bm2)->Evaluate();
+   return GeneralSolv(gm1,gm2,this,mt);
+}
+
+GeneralMatrix* KPMatrix::Evaluate(MatrixType mt)
+{
+   REPORT
+   gm1 = ((BaseMatrix*&)bm1)->Evaluate();
+   gm2 = ((BaseMatrix*&)bm2)->Evaluate();
+   return GeneralKP(gm1,gm2,this,mt);
+}
+
+// routines for adding or subtracting matrices of identical storage structure
+
+static void Add(GeneralMatrix* gm, GeneralMatrix* gm1, GeneralMatrix* gm2)
+{
+   REPORT
+   Real* s1=gm1->Store(); Real* s2=gm2->Store();
+   Real* s=gm->Store(); int i=gm->Storage() >> 2;
+   while (i--)
+   {
+       *s++ = *s1++ + *s2++; *s++ = *s1++ + *s2++;
+       *s++ = *s1++ + *s2++; *s++ = *s1++ + *s2++;
+   }
+   i=gm->Storage() & 3; while (i--) *s++ = *s1++ + *s2++;
+}
+
+static void AddTo(GeneralMatrix* gm, const GeneralMatrix* gm2)
+{
+   REPORT
+   const Real* s2=gm2->Store(); Real* s=gm->Store(); int i=gm->Storage() >> 2;
+   while (i--)
+   { *s++ += *s2++; *s++ += *s2++; *s++ += *s2++; *s++ += *s2++; }
+   i=gm->Storage() & 3; while (i--) *s++ += *s2++;
+}
+
+void GeneralMatrix::PlusEqual(const GeneralMatrix& gm)
+{
+   REPORT
+   if (nrows_val != gm.nrows_val || ncols_val != gm.ncols_val)
+      Throw(IncompatibleDimensionsException(*this, gm));
+   AddTo(this, &gm);
+}
+
+static void Subtract(GeneralMatrix* gm, GeneralMatrix* gm1, GeneralMatrix* gm2)
+{
+   REPORT
+   Real* s1=gm1->Store(); Real* s2=gm2->Store();
+   Real* s=gm->Store(); int i=gm->Storage() >> 2;
+   while (i--)
+   {
+       *s++ = *s1++ - *s2++; *s++ = *s1++ - *s2++;
+       *s++ = *s1++ - *s2++; *s++ = *s1++ - *s2++;
+   }
+   i=gm->Storage() & 3; while (i--) *s++ = *s1++ - *s2++;
+}
+
+static void SubtractFrom(GeneralMatrix* gm, const GeneralMatrix* gm2)
+{
+   REPORT
+   const Real* s2=gm2->Store(); Real* s=gm->Store(); int i=gm->Storage() >> 2;
+   while (i--)
+   { *s++ -= *s2++; *s++ -= *s2++; *s++ -= *s2++; *s++ -= *s2++; }
+   i=gm->Storage() & 3; while (i--) *s++ -= *s2++;
+}
+
+void GeneralMatrix::MinusEqual(const GeneralMatrix& gm)
+{
+   REPORT
+   if (nrows_val != gm.nrows_val || ncols_val != gm.ncols_val)
+      Throw(IncompatibleDimensionsException(*this, gm));
+   SubtractFrom(this, &gm);
+}
+
+static void ReverseSubtract(GeneralMatrix* gm, const GeneralMatrix* gm2)
+{
+   REPORT
+   const Real* s2=gm2->Store(); Real* s=gm->Store(); int i=gm->Storage() >> 2;
+   while (i--)
+   {
+      *s = *s2++ - *s; s++; *s = *s2++ - *s; s++;
+      *s = *s2++ - *s; s++; *s = *s2++ - *s; s++;
+   }
+   i=gm->Storage() & 3; while (i--) { *s = *s2++ - *s; s++; }
+}
+
+static void SP(GeneralMatrix* gm, GeneralMatrix* gm1, GeneralMatrix* gm2)
+{
+   REPORT
+   Real* s1=gm1->Store(); Real* s2=gm2->Store();
+   Real* s=gm->Store(); int i=gm->Storage() >> 2;
+   while (i--)
+   {
+       *s++ = *s1++ * *s2++; *s++ = *s1++ * *s2++;
+       *s++ = *s1++ * *s2++; *s++ = *s1++ * *s2++;
+   }
+   i=gm->Storage() & 3; while (i--) *s++ = *s1++ * *s2++;
+}
+
+static void SP(GeneralMatrix* gm, GeneralMatrix* gm2)
+{
+   REPORT
+   Real* s2=gm2->Store(); Real* s=gm->Store(); int i=gm->Storage() >> 2;
+   while (i--)
+   { *s++ *= *s2++; *s++ *= *s2++; *s++ *= *s2++; *s++ *= *s2++; }
+   i=gm->Storage() & 3; while (i--) *s++ *= *s2++;
+}
+
+// routines for adding or subtracting matrices of different storage structure
+
+static void AddDS(GeneralMatrix* gm, GeneralMatrix* gm1, GeneralMatrix* gm2)
+{
+   REPORT
+   int nr = gm->Nrows();
+   MatrixRow mr1(gm1, LoadOnEntry); MatrixRow mr2(gm2, LoadOnEntry);
+   MatrixRow mr(gm, StoreOnExit+DirectPart);
+   while (nr--) { mr.Add(mr1,mr2); mr1.Next(); mr2.Next(); mr.Next(); }
+}
+
+static void AddDS(GeneralMatrix* gm, GeneralMatrix* gm2)
+// Add into first argument
+{
+   REPORT
+   int nr = gm->Nrows();
+   MatrixRow mr(gm, StoreOnExit+LoadOnEntry+DirectPart);
+   MatrixRow mr2(gm2, LoadOnEntry);
+   while (nr--) { mr.Add(mr2); mr.Next(); mr2.Next(); }
+}
+
+static void SubtractDS
+   (GeneralMatrix* gm, GeneralMatrix* gm1, GeneralMatrix* gm2)
+{
+   REPORT
+   int nr = gm->Nrows();
+   MatrixRow mr1(gm1, LoadOnEntry); MatrixRow mr2(gm2, LoadOnEntry);
+   MatrixRow mr(gm, StoreOnExit+DirectPart);
+   while (nr--) { mr.Sub(mr1,mr2); mr1.Next(); mr2.Next(); mr.Next(); }
+}
+
+static void SubtractDS(GeneralMatrix* gm, GeneralMatrix* gm2)
+{
+   REPORT
+   int nr = gm->Nrows();
+   MatrixRow mr(gm, LoadOnEntry+StoreOnExit+DirectPart);
+   MatrixRow mr2(gm2, LoadOnEntry);
+   while (nr--) { mr.Sub(mr2); mr.Next(); mr2.Next(); }
+}
+
+static void ReverseSubtractDS(GeneralMatrix* gm, GeneralMatrix* gm2)
+{
+   REPORT
+   int nr = gm->Nrows();
+   MatrixRow mr(gm, LoadOnEntry+StoreOnExit+DirectPart);
+   MatrixRow mr2(gm2, LoadOnEntry);
+   while (nr--) { mr.RevSub(mr2); mr2.Next(); mr.Next(); }
+}
+
+static void SPDS(GeneralMatrix* gm, GeneralMatrix* gm1, GeneralMatrix* gm2)
+{
+   REPORT
+   int nr = gm->Nrows();
+   MatrixRow mr1(gm1, LoadOnEntry); MatrixRow mr2(gm2, LoadOnEntry);
+   MatrixRow mr(gm, StoreOnExit+DirectPart);
+   while (nr--) { mr.Multiply(mr1,mr2); mr1.Next(); mr2.Next(); mr.Next(); }
+}
+
+static void SPDS(GeneralMatrix* gm, GeneralMatrix* gm2)
+// SP into first argument
+{
+   REPORT
+   int nr = gm->Nrows();
+   MatrixRow mr(gm, StoreOnExit+LoadOnEntry+DirectPart);
+   MatrixRow mr2(gm2, LoadOnEntry);
+   while (nr--) { mr.Multiply(mr2); mr.Next(); mr2.Next(); }
+}
+
+static GeneralMatrix* GeneralMult1(GeneralMatrix* gm1, GeneralMatrix* gm2,
+   MultipliedMatrix* mm, MatrixType mtx)
+{
+   REPORT
+   Tracer tr("GeneralMult1");
+   int nr=gm1->Nrows(); int nc=gm2->Ncols();
+   if (gm1->Ncols() !=gm2->Nrows())
+      Throw(IncompatibleDimensionsException(*gm1, *gm2));
+   GeneralMatrix* gmx = mtx.New(nr,nc,mm);
+
+   MatrixCol mcx(gmx, StoreOnExit+DirectPart);
+   MatrixCol mc2(gm2, LoadOnEntry);
+   while (nc--)
+   {
+      MatrixRow mr1(gm1, LoadOnEntry, mcx.Skip());
+      Real* el = mcx.Data();                         // pointer to an element
+      int n = mcx.Storage();
+      while (n--) { *(el++) = DotProd(mr1,mc2); mr1.Next(); }
+      mc2.Next(); mcx.Next();
+   }
+   gmx->ReleaseAndDelete(); gm1->tDelete(); gm2->tDelete(); return gmx;
+}
+
+static GeneralMatrix* GeneralMult2(GeneralMatrix* gm1, GeneralMatrix* gm2,
+   MultipliedMatrix* mm, MatrixType mtx)
+{
+   // version that accesses by row only - not good for thin matrices
+   // or column vectors in right hand term.
+   REPORT
+   Tracer tr("GeneralMult2");
+   int nr=gm1->Nrows(); int nc=gm2->Ncols();
+   if (gm1->Ncols() !=gm2->Nrows())
+      Throw(IncompatibleDimensionsException(*gm1, *gm2));
+   GeneralMatrix* gmx = mtx.New(nr,nc,mm);
+
+   MatrixRow mrx(gmx, LoadOnEntry+StoreOnExit+DirectPart);
+   MatrixRow mr1(gm1, LoadOnEntry);
+   while (nr--)
+   {
+      MatrixRow mr2(gm2, LoadOnEntry, mr1.Skip());
+      Real* el = mr1.Data();                         // pointer to an element
+      int n = mr1.Storage();
+      mrx.Zero();
+      while (n--) { mrx.AddScaled(mr2, *el++); mr2.Next(); }
+      mr1.Next(); mrx.Next();
+   }
+   gmx->ReleaseAndDelete(); gm1->tDelete(); gm2->tDelete(); return gmx;
+}
+
+static GeneralMatrix* mmMult(GeneralMatrix* gm1, GeneralMatrix* gm2)
+{
+   // matrix multiplication for type Matrix only
+   REPORT
+   Tracer tr("MatrixMult");
+
+   int nr=gm1->Nrows(); int ncr=gm1->Ncols(); int nc=gm2->Ncols();
+   if (ncr != gm2->Nrows()) Throw(IncompatibleDimensionsException(*gm1,*gm2));
+
+   Matrix* gm = new Matrix(nr,nc); MatrixErrorNoSpace(gm);
+
+   Real* s1=gm1->Store(); Real* s2=gm2->Store(); Real* s=gm->Store();
+
+   if (ncr)
+   {
+      while (nr--)
+      {
+         Real* s2x = s2; int j = ncr;
+         Real* sx = s; Real f = *s1++; int k = nc;
+         while (k--) *sx++ = f * *s2x++;
+         while (--j)
+            { sx = s; f = *s1++; k = nc; while (k--) *sx++ += f * *s2x++; }
+         s = sx;
+      }
+   }
+   else *gm = 0.0;
+
+   gm->ReleaseAndDelete(); gm1->tDelete(); gm2->tDelete(); return gm;
+}
+
+static GeneralMatrix* GeneralMult(GeneralMatrix* gm1, GeneralMatrix* gm2,
+   MultipliedMatrix* mm, MatrixType mtx)
+{
+   if ( Rectangular(gm1->type(), gm2->type(), mtx))
+      { REPORT return mmMult(gm1, gm2); }
+   Compare(gm1->type() * gm2->type(),mtx);
+   int nr = gm2->Nrows(); int nc = gm2->Ncols();
+   if (nc <= 5 && nr > nc) { REPORT return GeneralMult1(gm1, gm2, mm, mtx); }
+   REPORT return GeneralMult2(gm1, gm2, mm, mtx);
+}
+
+static GeneralMatrix* GeneralKP(GeneralMatrix* gm1, GeneralMatrix* gm2,
+   KPMatrix* kp, MatrixType mtx)
+{
+   REPORT
+   Tracer tr("GeneralKP");
+   int nr1 = gm1->Nrows(); int nc1 = gm1->Ncols();
+   int nr2 = gm2->Nrows(); int nc2 = gm2->Ncols();
+   Compare((gm1->type()).KP(gm2->type()),mtx);
+   GeneralMatrix* gmx = mtx.New(nr1*nr2, nc1*nc2, kp);
+   MatrixRow mrx(gmx, LoadOnEntry+StoreOnExit+DirectPart);
+   MatrixRow mr1(gm1, LoadOnEntry);
+   for (int i = 1; i <= nr1; ++i)
+   {
+      MatrixRow mr2(gm2, LoadOnEntry);
+      for (int j = 1; j <= nr2; ++j)
+         { mrx.KP(mr1,mr2); mr2.Next(); mrx.Next(); }
+      mr1.Next();
+   }
+   gmx->ReleaseAndDelete(); gm1->tDelete(); gm2->tDelete(); return gmx;
+}
+
+static GeneralMatrix* GeneralSolv(GeneralMatrix* gm1, GeneralMatrix* gm2,
+   BaseMatrix* sm, MatrixType mtx)
+{
+   REPORT
+   Tracer tr("GeneralSolv");
+   Compare(gm1->type().i() * gm2->type(),mtx);
+   int nr = gm1->Nrows();
+   if (nr != gm1->Ncols()) Throw(NotSquareException(*gm1));
+   int nc = gm2->Ncols();
+   if (gm1->Ncols() != gm2->Nrows())
+      Throw(IncompatibleDimensionsException(*gm1, *gm2));
+   GeneralMatrix* gmx = mtx.New(nr,nc,sm); MatrixErrorNoSpace(gmx);
+   Real* r = new Real [nr]; MatrixErrorNoSpace(r);
+   MONITOR_REAL_NEW("Make   (GenSolv)",nr,r)
+   GeneralMatrix* gms = gm1->MakeSolver();
+   Try
+   {
+
+      MatrixColX mcx(gmx, r, StoreOnExit+DirectPart);   // copy to and from r
+         // this must be inside Try so mcx is destroyed before gmx
+      MatrixColX mc2(gm2, r, LoadOnEntry);
+      while (nc--) { gms->Solver(mcx, mc2); mcx.Next(); mc2.Next(); }
+   }
+   CatchAll
+   {
+      if (gms) gms->tDelete();
+      delete gmx;                   // <--------------------
+      gm2->tDelete();
+      MONITOR_REAL_DELETE("Delete (GenSolv)",nr,r)
+                          // AT&T version 2.1 gives an internal error
+      delete [] r;
+      ReThrow;
+   }
+   gms->tDelete(); gmx->ReleaseAndDelete(); gm2->tDelete();
+   MONITOR_REAL_DELETE("Delete (GenSolv)",nr,r)
+                          // AT&T version 2.1 gives an internal error
+   delete [] r;
+   return gmx;
+}
+
+// version for inverses - gm2 is identity
+static GeneralMatrix* GeneralSolvI(GeneralMatrix* gm1, BaseMatrix* sm,
+   MatrixType mtx)
+{
+   REPORT
+   Tracer tr("GeneralSolvI");
+   Compare(gm1->type().i(),mtx);
+   int nr = gm1->Nrows();
+   if (nr != gm1->Ncols()) Throw(NotSquareException(*gm1));
+   int nc = nr;
+   // DiagonalMatrix I(nr); I = 1;
+   IdentityMatrix I(nr);
+   GeneralMatrix* gmx = mtx.New(nr,nc,sm); MatrixErrorNoSpace(gmx);
+   Real* r = new Real [nr]; MatrixErrorNoSpace(r);
+   MONITOR_REAL_NEW("Make   (GenSolvI)",nr,r)
+   GeneralMatrix* gms = gm1->MakeSolver();
+   Try
+   {
+
+      MatrixColX mcx(gmx, r, StoreOnExit+DirectPart);   // copy to and from r
+         // this must be inside Try so mcx is destroyed before gmx
+      MatrixColX mc2(&I, r, LoadOnEntry);
+      while (nc--) { gms->Solver(mcx, mc2); mcx.Next(); mc2.Next(); }
+   }
+   CatchAll
+   {
+      if (gms) gms->tDelete();
+      delete gmx;
+      MONITOR_REAL_DELETE("Delete (GenSolvI)",nr,r)
+                          // AT&T version 2.1 gives an internal error
+      delete [] r;
+      ReThrow;
+   }
+   gms->tDelete(); gmx->ReleaseAndDelete();
+   MONITOR_REAL_DELETE("Delete (GenSolvI)",nr,r)
+                          // AT&T version 2.1 gives an internal error
+   delete [] r;
+   return gmx;
+}
+
+GeneralMatrix* InvertedMatrix::Evaluate(MatrixType mtx)
+{
+   // Matrix Inversion - use solve routines
+   Tracer tr("InvertedMatrix::Evaluate");
+   REPORT
+   gm=((BaseMatrix*&)bm)->Evaluate();
+   return GeneralSolvI(gm,this,mtx);
+}
+
+//*************************** New versions ************************
+
+GeneralMatrix* AddedMatrix::Evaluate(MatrixType mtd)
+{
+   REPORT
+   Tracer tr("AddedMatrix::Evaluate");
+   gm1=((BaseMatrix*&)bm1)->Evaluate(); gm2=((BaseMatrix*&)bm2)->Evaluate();
+   int nr=gm1->Nrows(); int nc=gm1->Ncols();
+   if (nr!=gm2->Nrows() || nc!=gm2->Ncols())
+   {
+      Try { Throw(IncompatibleDimensionsException(*gm1, *gm2)); }
+      CatchAll
+      {
+         gm1->tDelete(); gm2->tDelete();
+         ReThrow;
+      }
+   }
+   MatrixType mt1 = gm1->type(), mt2 = gm2->type(); MatrixType mts = mt1 + mt2;
+   if (!mtd) { REPORT mtd = mts; }
+   else if (!(mtd.DataLossOK || mtd >= mts))
+   {
+      REPORT
+      gm1->tDelete(); gm2->tDelete();
+      Throw(ProgramException("Illegal Conversion", mts, mtd));
+   }
+   GeneralMatrix* gmx;
+   bool c1 = (mtd == mt1), c2 = (mtd == mt2);
+   if ( c1 && c2 && (gm1->SimpleAddOK(gm2) == 0) )
+   {
+      if (gm1->reuse()) { REPORT AddTo(gm1,gm2); gm2->tDelete(); gmx = gm1; }
+      else if (gm2->reuse()) { REPORT AddTo(gm2,gm1); gmx = gm2; }
+      else
+      {
+         REPORT
+         // what if new throws an exception
+         Try { gmx = mt1.New(nr,nc,this); }
+         CatchAll
+         {
+            ReThrow;
+         }
+         gmx->ReleaseAndDelete(); Add(gmx,gm1,gm2);
+      }
+   }
+   else
+   {
+      if (c1 && c2)
+      {
+         short SAO = gm1->SimpleAddOK(gm2);
+         if (SAO & 1) { REPORT c1 = false; }
+         if (SAO & 2) { REPORT c2 = false; }
+      }
+      if (c1 && gm1->reuse() )               // must have type test first
+         { REPORT AddDS(gm1,gm2); gm2->tDelete(); gmx = gm1; }
+      else if (c2 && gm2->reuse() )
+         { REPORT AddDS(gm2,gm1); if (!c1) gm1->tDelete(); gmx = gm2; }
+      else
+      {
+         REPORT
+         Try { gmx = mtd.New(nr,nc,this); }
+         CatchAll
+         {
+            if (!c1) gm1->tDelete(); if (!c2) gm2->tDelete();
+            ReThrow;
+         }
+         AddDS(gmx,gm1,gm2);
+         if (!c1) gm1->tDelete(); if (!c2) gm2->tDelete();
+         gmx->ReleaseAndDelete();
+      }
+   }
+   return gmx;
+}
+
+GeneralMatrix* SubtractedMatrix::Evaluate(MatrixType mtd)
+{
+   REPORT
+   Tracer tr("SubtractedMatrix::Evaluate");
+   gm1=((BaseMatrix*&)bm1)->Evaluate(); gm2=((BaseMatrix*&)bm2)->Evaluate();
+   int nr=gm1->Nrows(); int nc=gm1->Ncols();
+   if (nr!=gm2->Nrows() || nc!=gm2->Ncols())
+   {
+      Try { Throw(IncompatibleDimensionsException(*gm1, *gm2)); }
+      CatchAll
+      {
+         gm1->tDelete(); gm2->tDelete();
+         ReThrow;
+      }
+   }
+   MatrixType mt1 = gm1->type(), mt2 = gm2->type(); MatrixType mts = mt1 + mt2;
+   if (!mtd) { REPORT mtd = mts; }
+   else if (!(mtd.DataLossOK || mtd >= mts))
+   {
+      gm1->tDelete(); gm2->tDelete();
+      Throw(ProgramException("Illegal Conversion", mts, mtd));
+   }
+   GeneralMatrix* gmx;
+   bool c1 = (mtd == mt1), c2 = (mtd == mt2);
+   if ( c1 && c2 && (gm1->SimpleAddOK(gm2) == 0) )
+   {
+      if (gm1->reuse())
+         { REPORT SubtractFrom(gm1,gm2); gm2->tDelete(); gmx = gm1; }
+      else if (gm2->reuse()) { REPORT ReverseSubtract(gm2,gm1); gmx = gm2; }
+      else
+      {
+         REPORT
+         Try { gmx = mt1.New(nr,nc,this); }
+         CatchAll
+         {
+            ReThrow;
+         }
+         gmx->ReleaseAndDelete(); Subtract(gmx,gm1,gm2);
+      }
+   }
+   else
+   {
+      if (c1 && c2)
+      {
+         short SAO = gm1->SimpleAddOK(gm2);
+         if (SAO & 1) { REPORT c1 = false; }
+         if (SAO & 2) { REPORT c2 = false; }
+      }
+      if (c1 && gm1->reuse() )               // must have type test first
+         { REPORT SubtractDS(gm1,gm2); gm2->tDelete(); gmx = gm1; }
+      else if (c2 && gm2->reuse() )
+      {
+         REPORT ReverseSubtractDS(gm2,gm1);
+         if (!c1) gm1->tDelete(); gmx = gm2;
+      }
+      else
+      {
+         REPORT
+         // what if New throws and exception
+         Try { gmx = mtd.New(nr,nc,this); }
+         CatchAll
+         {
+            if (!c1) gm1->tDelete(); if (!c2) gm2->tDelete();
+            ReThrow;
+         }
+         SubtractDS(gmx,gm1,gm2);
+         if (!c1) gm1->tDelete(); if (!c2) gm2->tDelete();
+         gmx->ReleaseAndDelete();
+      }
+   }
+   return gmx;
+}
+
+GeneralMatrix* SPMatrix::Evaluate(MatrixType mtd)
+{
+   REPORT
+   Tracer tr("SPMatrix::Evaluate");
+   gm1=((BaseMatrix*&)bm1)->Evaluate(); gm2=((BaseMatrix*&)bm2)->Evaluate();
+   int nr=gm1->Nrows(); int nc=gm1->Ncols();
+   if (nr!=gm2->Nrows() || nc!=gm2->Ncols())
+   {
+      Try { Throw(IncompatibleDimensionsException(*gm1, *gm2)); }
+      CatchAll
+      {
+         gm1->tDelete(); gm2->tDelete();
+         ReThrow;
+      }
+   }
+   MatrixType mt1 = gm1->type(), mt2 = gm2->type();
+   MatrixType mts = mt1.SP(mt2);
+   if (!mtd) { REPORT mtd = mts; }
+   else if (!(mtd.DataLossOK || mtd >= mts))
+   {
+      gm1->tDelete(); gm2->tDelete();
+      Throw(ProgramException("Illegal Conversion", mts, mtd));
+   }
+   GeneralMatrix* gmx;
+   bool c1 = (mtd == mt1), c2 = (mtd == mt2);
+   if ( c1 && c2 && (gm1->SimpleAddOK(gm2) == 0) )
+   {
+      if (gm1->reuse()) { REPORT SP(gm1,gm2); gm2->tDelete(); gmx = gm1; }
+      else if (gm2->reuse()) { REPORT SP(gm2,gm1); gmx = gm2; }
+      else
+      {
+         REPORT
+         Try { gmx = mt1.New(nr,nc,this); }
+         CatchAll
+         {
+            ReThrow;
+         }
+         gmx->ReleaseAndDelete(); SP(gmx,gm1,gm2);
+      }
+   }
+   else
+   {
+      if (c1 && c2)
+      {
+         short SAO = gm1->SimpleAddOK(gm2);
+         if (SAO & 1) { REPORT c2 = false; }    // c1 and c2 swapped
+         if (SAO & 2) { REPORT c1 = false; }
+      }
+      if (c1 && gm1->reuse() )               // must have type test first
+         { REPORT SPDS(gm1,gm2); gm2->tDelete(); gmx = gm1; }
+      else if (c2 && gm2->reuse() )
+         { REPORT SPDS(gm2,gm1); if (!c1) gm1->tDelete(); gmx = gm2; }
+      else
+      {
+         REPORT
+         // what if New throws and exception
+         Try { gmx = mtd.New(nr,nc,this); }
+         CatchAll
+         {
+            if (!c1) gm1->tDelete(); if (!c2) gm2->tDelete();
+            ReThrow;
+         }
+         SPDS(gmx,gm1,gm2);
+         if (!c1) gm1->tDelete(); if (!c2) gm2->tDelete();
+         gmx->ReleaseAndDelete();
+      }
+   }
+   return gmx;
+}
+
+
+
+//*************************** norm functions ****************************/
+
+Real BaseMatrix::norm1() const
+{
+   // maximum of sum of absolute values of a column
+   REPORT
+   GeneralMatrix* gm = ((BaseMatrix&)*this).Evaluate();
+   int nc = gm->Ncols(); Real value = 0.0;
+   MatrixCol mc(gm, LoadOnEntry);
+   while (nc--)
+      { Real v = mc.SumAbsoluteValue(); if (value < v) value = v; mc.Next(); }
+   gm->tDelete(); return value;
+}
+
+Real BaseMatrix::norm_infinity() const
+{
+   // maximum of sum of absolute values of a row
+   REPORT
+   GeneralMatrix* gm = ((BaseMatrix&)*this).Evaluate();
+   int nr = gm->Nrows(); Real value = 0.0;
+   MatrixRow mr(gm, LoadOnEntry);
+   while (nr--)
+      { Real v = mr.SumAbsoluteValue(); if (value < v) value = v; mr.Next(); }
+   gm->tDelete(); return value;
+}
+
+//********************** Concatenation and stacking *************************/
+
+GeneralMatrix* ConcatenatedMatrix::Evaluate(MatrixType mtx)
+{
+   REPORT
+   Tracer tr("Concatenate");
+      gm2 = ((BaseMatrix*&)bm2)->Evaluate();
+      gm1 = ((BaseMatrix*&)bm1)->Evaluate();
+      Compare(gm1->type() | gm2->type(),mtx);
+      int nr=gm1->Nrows(); int nc = gm1->Ncols() + gm2->Ncols();
+      if (nr != gm2->Nrows())
+         Throw(IncompatibleDimensionsException(*gm1, *gm2));
+      GeneralMatrix* gmx = mtx.New(nr,nc,this);
+      MatrixRow mr1(gm1, LoadOnEntry); MatrixRow mr2(gm2, LoadOnEntry);
+      MatrixRow mr(gmx, StoreOnExit+DirectPart);
+      while (nr--) { mr.ConCat(mr1,mr2); mr1.Next(); mr2.Next(); mr.Next(); }
+      gmx->ReleaseAndDelete(); gm1->tDelete(); gm2->tDelete(); return gmx;
+}
+
+GeneralMatrix* StackedMatrix::Evaluate(MatrixType mtx)
+{
+   REPORT
+   Tracer tr("Stack");
+      gm2 = ((BaseMatrix*&)bm2)->Evaluate();
+      gm1 = ((BaseMatrix*&)bm1)->Evaluate();
+      Compare(gm1->type() & gm2->type(),mtx);
+      int nc=gm1->Ncols();
+      int nr1 = gm1->Nrows(); int nr2 = gm2->Nrows();
+      if (nc != gm2->Ncols())
+         Throw(IncompatibleDimensionsException(*gm1, *gm2));
+      GeneralMatrix* gmx = mtx.New(nr1+nr2,nc,this);
+      MatrixRow mr1(gm1, LoadOnEntry); MatrixRow mr2(gm2, LoadOnEntry);
+      MatrixRow mr(gmx, StoreOnExit+DirectPart);
+      while (nr1--) { mr.Copy(mr1); mr1.Next(); mr.Next(); }
+      while (nr2--) { mr.Copy(mr2); mr2.Next(); mr.Next(); }
+      gmx->ReleaseAndDelete(); gm1->tDelete(); gm2->tDelete(); return gmx;
+}
+
+// ************************* equality of matrices ******************** //
+
+static bool RealEqual(Real* s1, Real* s2, int n)
+{
+   int i = n >> 2;
+   while (i--)
+   {
+      if (*s1++ != *s2++) return false; if (*s1++ != *s2++) return false;
+      if (*s1++ != *s2++) return false; if (*s1++ != *s2++) return false;
+   }
+   i = n & 3; while (i--) if (*s1++ != *s2++) return false;
+   return true;
+}
+
+static bool intEqual(int* s1, int* s2, int n)
+{
+   int i = n >> 2;
+   while (i--)
+   {
+      if (*s1++ != *s2++) return false; if (*s1++ != *s2++) return false;
+      if (*s1++ != *s2++) return false; if (*s1++ != *s2++) return false;
+   }
+   i = n & 3; while (i--) if (*s1++ != *s2++) return false;
+   return true;
+}
+
+
+bool operator==(const BaseMatrix& A, const BaseMatrix& B)
+{
+   Tracer tr("BaseMatrix ==");
+   REPORT
+   GeneralMatrix* gmA = ((BaseMatrix&)A).Evaluate();
+   GeneralMatrix* gmB = ((BaseMatrix&)B).Evaluate();
+
+   if (gmA == gmB)                            // same matrix
+      { REPORT gmA->tDelete(); return true; }
+
+   if ( gmA->Nrows() != gmB->Nrows() || gmA->Ncols() != gmB->Ncols() )
+                                              // different dimensions
+      { REPORT gmA->tDelete(); gmB->tDelete(); return false; }
+
+   // check for CroutMatrix or BandLUMatrix
+   MatrixType AType = gmA->type(); MatrixType BType = gmB->type();
+   if (AType.CannotConvert() || BType.CannotConvert() )
+   {
+      REPORT
+      bool bx = gmA->IsEqual(*gmB);
+      gmA->tDelete(); gmB->tDelete();
+      return bx;
+   }
+
+   // is matrix storage the same
+   // will need to modify if further matrix structures are introduced
+   if (AType == BType && gmA->bandwidth() == gmB->bandwidth())
+   {                                          // compare store
+      REPORT
+      bool bx = RealEqual(gmA->Store(),gmB->Store(),gmA->Storage());
+      gmA->tDelete(); gmB->tDelete();
+      return bx;
+   }
+
+   // matrix storage different - just subtract
+   REPORT  return is_zero(*gmA-*gmB);
+}
+
+bool operator==(const GeneralMatrix& A, const GeneralMatrix& B)
+{
+   Tracer tr("GeneralMatrix ==");
+   // May or may not call tDeletes
+   REPORT
+
+   if (&A == &B)                              // same matrix
+      { REPORT return true; }
+
+   if ( A.Nrows() != B.Nrows() || A.Ncols() != B.Ncols() )
+      { REPORT return false; }                // different dimensions
+
+   // check for CroutMatrix or BandLUMatrix
+   MatrixType AType = A.Type(); MatrixType BType = B.Type();
+   if (AType.CannotConvert() || BType.CannotConvert() )
+      { REPORT  return A.IsEqual(B); }
+
+   // is matrix storage the same
+   // will need to modify if further matrix structures are introduced
+   if (AType == BType && A.bandwidth() == B.bandwidth())
+      { REPORT return RealEqual(A.Store(),B.Store(),A.Storage()); }
+
+   // matrix storage different - just subtract
+   REPORT  return is_zero(A-B);
+}
+
+bool GeneralMatrix::is_zero() const
+{
+   REPORT
+   Real* s=store; int i = storage >> 2;
+   while (i--)
+   {
+      if (*s++) return false; if (*s++) return false;
+      if (*s++) return false; if (*s++) return false;
+   }
+   i = storage & 3; while (i--) if (*s++) return false;
+   return true;
+}
+
+bool is_zero(const BaseMatrix& A)
+{
+   Tracer tr("BaseMatrix::is_zero");
+   REPORT
+   GeneralMatrix* gm1 = 0; bool bx;
+   Try { gm1=((BaseMatrix&)A).Evaluate(); bx = gm1->is_zero(); }
+   CatchAll { if (gm1) gm1->tDelete(); ReThrow; }
+   gm1->tDelete();
+   return bx;
+}
+
+// IsEqual functions - insist matrices are of same type
+// as well as equal values to be equal
+
+bool GeneralMatrix::IsEqual(const GeneralMatrix& A) const
+{
+   Tracer tr("GeneralMatrix IsEqual");
+   if (A.type() != type())                       // not same types
+      { REPORT return false; }
+   if (&A == this)                               // same matrix
+      { REPORT  return true; }
+   if (A.nrows_val != nrows_val || A.ncols_val != ncols_val)
+                                                 // different dimensions
+   { REPORT return false; }
+   // is matrix storage the same - compare store
+   REPORT
+   return RealEqual(A.store,store,storage);
+}
+
+bool CroutMatrix::IsEqual(const GeneralMatrix& A) const
+{
+   Tracer tr("CroutMatrix IsEqual");
+   if (A.type() != type())                       // not same types
+      { REPORT return false; }
+   if (&A == this)                               // same matrix
+      { REPORT  return true; }
+   if (A.nrows_val != nrows_val || A.ncols_val != ncols_val)
+                                                 // different dimensions
+   { REPORT return false; }
+   // is matrix storage the same - compare store
+   REPORT
+   return RealEqual(A.store,store,storage)
+      && intEqual(((CroutMatrix&)A).indx, indx, nrows_val);
+}
+
+
+bool BandLUMatrix::IsEqual(const GeneralMatrix& A) const
+{
+   Tracer tr("BandLUMatrix IsEqual");
+   if (A.type() != type())                       // not same types
+      { REPORT  return false; }
+   if (&A == this)                               // same matrix
+      { REPORT  return true; }
+   if ( A.Nrows() != nrows_val || A.Ncols() != ncols_val
+      || ((BandLUMatrix&)A).m1 != m1 || ((BandLUMatrix&)A).m2 != m2 )
+                                                 // different dimensions
+   { REPORT  return false; }
+
+   // matrix storage the same - compare store
+   REPORT
+   return RealEqual(A.Store(),store,storage)
+      && RealEqual(((BandLUMatrix&)A).store2,store2,storage2)
+      && intEqual(((BandLUMatrix&)A).indx, indx, nrows_val);
+}
+
+
+// ************************* cross products ******************** //
+
+inline void crossproduct_body(Real* a, Real* b, Real* c)
+{
+   c[0] = a[1] * b[2] - a[2] * b[1];
+   c[1] = a[2] * b[0] - a[0] * b[2];
+   c[2] = a[0] * b[1] - a[1] * b[0];
+}
+
+Matrix crossproduct(const Matrix& A, const Matrix& B)
+{
+   REPORT
+   int ac = A.Ncols(); int ar = A.Nrows();
+   int bc = B.Ncols(); int br = B.Nrows();
+   Real* a = A.Store(); Real* b = B.Store();
+   if (ac == 3)
+   {
+      if (bc != 3 || ar != 1 || br != 1)
+         { Tracer et("crossproduct"); IncompatibleDimensionsException(A, B); }
+      REPORT
+      RowVector C(3);  Real* c = C.Store(); crossproduct_body(a, b, c);
+      return (Matrix&)C;
+   }
+   else
+   {
+      if (ac != 1 || bc != 1 || ar != 3 || br != 3)
+         { Tracer et("crossproduct"); IncompatibleDimensionsException(A, B); }
+      REPORT
+      ColumnVector C(3);  Real* c = C.Store(); crossproduct_body(a, b, c);
+      return (Matrix&)C;
+   }
+}
+
+ReturnMatrix crossproduct_rows(const Matrix& A, const Matrix& B)
+{
+   REPORT
+   int n = A.Nrows();
+   if (A.Ncols() != 3 || B.Ncols() != 3 || n != B.Nrows())
+   {
+      Tracer et("crossproduct_rows"); IncompatibleDimensionsException(A, B);
+   }
+   Matrix C(n, 3);
+   Real* a = A.Store(); Real* b = B.Store(); Real* c = C.Store();
+   if (n--)
+   {
+      for (;;)
+      {
+         crossproduct_body(a, b, c);
+         if (!(n--)) break;
+         a += 3; b += 3; c += 3;
+      }
+   }
+
+   return C.ForReturn();
+}
+
+ReturnMatrix crossproduct_columns(const Matrix& A, const Matrix& B)
+{
+   REPORT
+   int n = A.Ncols();
+   if (A.Nrows() != 3 || B.Nrows() != 3 || n != B.Ncols())
+   {
+      Tracer et("crossproduct_columns");
+      IncompatibleDimensionsException(A, B);
+   }
+   Matrix C(3, n);
+   Real* a = A.Store(); Real* b = B.Store(); Real* c = C.Store();
+   Real* an = a+n; Real* an2 = an+n;
+   Real* bn = b+n; Real* bn2 = bn+n;
+   Real* cn = c+n; Real* cn2 = cn+n;
+
+   int i = n; 
+   while (i--)
+   {
+      *c++   = *an    * *bn2   - *an2   * *bn;
+      *cn++  = *an2++ * *b     - *a     * *bn2++;
+      *cn2++ = *a++   * *bn++  - *an++  * *b++;
+   }
+
+   return C.ForReturn();
+}
+
+
+#ifdef use_namespace
+}
+#endif
+
+///@}
+
Index: branches/BNC_LM/newmat/newmat8.cpp
===================================================================
--- branches/BNC_LM/newmat/newmat8.cpp	(revision 3570)
+++ branches/BNC_LM/newmat/newmat8.cpp	(revision 3570)
@@ -0,0 +1,832 @@
+/// \ingroup newmat
+///@{
+
+/// \file newmat8.cpp
+/// LU transform, scalar functions of matrices.
+
+// Copyright (C) 1991,2,3,4,8: R B Davies
+
+#define WANT_MATH
+
+#include "include.h"
+
+#include "newmat.h"
+#include "newmatrc.h"
+#include "precisio.h"
+
+#ifdef use_namespace
+namespace NEWMAT {
+#endif
+
+
+#ifdef DO_REPORT
+#define REPORT { static ExeCounter ExeCount(__LINE__,8); ++ExeCount; }
+#else
+#define REPORT {}
+#endif
+
+
+/************************** LU transformation ****************************/
+
+void CroutMatrix::ludcmp()
+// LU decomposition from Golub & Van Loan, algorithm 3.4.1, (the "outer
+// product" version).
+// This replaces the code derived from Numerical Recipes in C in previous
+// versions of newmat and being row oriented runs much faster with large
+// matrices.
+{
+   REPORT
+   Tracer tr( "Crout(ludcmp)" ); sing = false;
+   Real* akk = store;                    // runs down diagonal
+
+   Real big = fabs(*akk); int mu = 0; Real* ai = akk; int k;
+
+   for (k = 1; k < nrows_val; k++)
+   {
+      ai += nrows_val; const Real trybig = fabs(*ai);
+      if (big < trybig) { big = trybig; mu = k; }
+   }
+
+
+   if (nrows_val) for (k = 0;;)
+   {
+      /*
+      int mu1;
+      {
+         Real big = fabs(*akk); mu1 = k; Real* ai = akk; int i;
+
+         for (i = k+1; i < nrows_val; i++)
+         {
+            ai += nrows_val; const Real trybig = fabs(*ai);
+            if (big < trybig) { big = trybig; mu1 = i; }
+         }
+      }
+      if (mu1 != mu) cout << k << " " << mu << " " << mu1 << endl;
+      */
+
+      indx[k] = mu;
+
+      if (mu != k)                       //row swap
+      {
+         Real* a1 = store + nrows_val * k;
+         Real* a2 = store + nrows_val * mu; d = !d;
+         int j = nrows_val;
+         while (j--) { const Real temp = *a1; *a1++ = *a2; *a2++ = temp; }
+      }
+
+      Real diag = *akk; big = 0; mu = k + 1;
+      if (diag != 0)
+      {
+         ai = akk; int i = nrows_val - k - 1;
+         while (i--)
+         {
+            ai += nrows_val; Real* al = ai;
+            Real mult = *al / diag; *al = mult;
+            int l = nrows_val - k - 1; Real* aj = akk;
+            // work out the next pivot as part of this loop
+            // this saves a column operation
+            if (l-- != 0)
+            {
+               *(++al) -= (mult * *(++aj));
+               const Real trybig = fabs(*al);
+               if (big < trybig) { big = trybig; mu = nrows_val - i - 1; }
+               while (l--) *(++al) -= (mult * *(++aj));
+            }
+         }
+      }
+      else sing = true;
+      if (++k == nrows_val) break;          // so next line won't overflow
+      akk += nrows_val + 1;
+   }
+}
+
+void CroutMatrix::lubksb(Real* B, int mini)
+{
+   REPORT
+   // this has been adapted from Numerical Recipes in C. The code has been
+   // substantially streamlined, so I do not think much of the original
+   // copyright remains. However there is not much opportunity for
+   // variation in the code, so it is still similar to the NR code.
+   // I follow the NR code in skipping over initial zeros in the B vector.
+
+   Tracer tr("Crout(lubksb)");
+   if (sing) Throw(SingularException(*this));
+   int i, j, ii = nrows_val;       // ii initialised : B might be all zeros
+
+
+   // scan for first non-zero in B
+   for (i = 0; i < nrows_val; i++)
+   {
+      int ip = indx[i]; Real temp = B[ip]; B[ip] = B[i]; B[i] = temp;
+      if (temp != 0.0) { ii = i; break; }
+   }
+
+   Real* bi; Real* ai;
+   i = ii + 1;
+
+   if (i < nrows_val)
+   {
+      bi = B + ii; ai = store + ii + i * nrows_val;
+      for (;;)
+      {
+         int ip = indx[i]; Real sum = B[ip]; B[ip] = B[i];
+         Real* aij = ai; Real* bj = bi; j = i - ii;
+         while (j--) sum -= *aij++ * *bj++;
+         B[i] = sum;
+         if (++i == nrows_val) break;
+         ai += nrows_val;
+      }
+   }
+
+   ai = store + nrows_val * nrows_val;
+
+   for (i = nrows_val - 1; i >= mini; i--)
+   {
+      Real* bj = B+i; ai -= nrows_val; Real* ajx = ai+i;
+      Real sum = *bj; Real diag = *ajx;
+      j = nrows_val - i; while(--j) sum -= *(++ajx) * *(++bj);
+      B[i] = sum / diag;
+   }
+}
+
+/****************************** scalar functions ****************************/
+
+inline Real square(Real x) { return x*x; }
+
+Real GeneralMatrix::sum_square() const
+{
+   REPORT
+   Real sum = 0.0; int i = storage; Real* s = store;
+   while (i--) sum += square(*s++);
+   ((GeneralMatrix&)*this).tDelete(); return sum;
+}
+
+Real GeneralMatrix::sum_absolute_value() const
+{
+   REPORT
+   Real sum = 0.0; int i = storage; Real* s = store;
+   while (i--) sum += fabs(*s++);
+   ((GeneralMatrix&)*this).tDelete(); return sum;
+}
+
+Real GeneralMatrix::sum() const
+{
+   REPORT
+   Real sm = 0.0; int i = storage; Real* s = store;
+   while (i--) sm += *s++;
+   ((GeneralMatrix&)*this).tDelete(); return sm;
+}
+
+// maxima and minima
+
+// There are three sets of routines
+// maximum_absolute_value, minimum_absolute_value, maximum, minimum
+// ... these find just the maxima and minima
+// maximum_absolute_value1, minimum_absolute_value1, maximum1, minimum1
+// ... these find the maxima and minima and their locations in a
+//     one dimensional object
+// maximum_absolute_value2, minimum_absolute_value2, maximum2, minimum2
+// ... these find the maxima and minima and their locations in a
+//     two dimensional object
+
+// If the matrix has no values throw an exception
+
+// If we do not want the location find the maximum or minimum on the
+// array stored by GeneralMatrix
+// This won't work for BandMatrices. We call ClearCorner for
+// maximum_absolute_value but for the others use the absolute_minimum_value2
+// version and discard the location.
+
+// For one dimensional objects, when we want the location of the
+// maximum or minimum, work with the array stored by GeneralMatrix
+
+// For two dimensional objects where we want the location of the maximum or
+// minimum proceed as follows:
+
+// For rectangular matrices use the array stored by GeneralMatrix and
+// deduce the location from the location in the GeneralMatrix
+
+// For other two dimensional matrices use the Matrix Row routine to find the
+// maximum or minimum for each row.
+
+static void NullMatrixError(const GeneralMatrix* gm)
+{
+   ((GeneralMatrix&)*gm).tDelete();
+   Throw(ProgramException("Maximum or minimum of null matrix"));
+}
+
+Real GeneralMatrix::maximum_absolute_value() const
+{
+   REPORT
+   if (storage == 0) NullMatrixError(this);
+   Real maxval = 0.0; int l = storage; Real* s = store;
+   while (l--) { Real a = fabs(*s++); if (maxval < a) maxval = a; }
+   ((GeneralMatrix&)*this).tDelete(); return maxval;
+}
+
+Real GeneralMatrix::maximum_absolute_value1(int& i) const
+{
+   REPORT
+   if (storage == 0) NullMatrixError(this);
+   Real maxval = 0.0; int l = storage; Real* s = store; int li = storage;
+   while (l--)
+      { Real a = fabs(*s++); if (maxval <= a) { maxval = a; li = l; }  }
+   i = storage - li;
+   ((GeneralMatrix&)*this).tDelete(); return maxval;
+}
+
+Real GeneralMatrix::minimum_absolute_value() const
+{
+   REPORT
+   if (storage == 0) NullMatrixError(this);
+   int l = storage - 1; Real* s = store; Real minval = fabs(*s++);
+   while (l--) { Real a = fabs(*s++); if (minval > a) minval = a; }
+   ((GeneralMatrix&)*this).tDelete(); return minval;
+}
+
+Real GeneralMatrix::minimum_absolute_value1(int& i) const
+{
+   REPORT
+   if (storage == 0) NullMatrixError(this);
+   int l = storage - 1; Real* s = store; Real minval = fabs(*s++); int li = l;
+   while (l--)
+      { Real a = fabs(*s++); if (minval >= a) { minval = a; li = l; }  }
+   i = storage - li;
+   ((GeneralMatrix&)*this).tDelete(); return minval;
+}
+
+Real GeneralMatrix::maximum() const
+{
+   REPORT
+   if (storage == 0) NullMatrixError(this);
+   int l = storage - 1; Real* s = store; Real maxval = *s++;
+   while (l--) { Real a = *s++; if (maxval < a) maxval = a; }
+   ((GeneralMatrix&)*this).tDelete(); return maxval;
+}
+
+Real GeneralMatrix::maximum1(int& i) const
+{
+   REPORT
+   if (storage == 0) NullMatrixError(this);
+   int l = storage - 1; Real* s = store; Real maxval = *s++; int li = l;
+   while (l--) { Real a = *s++; if (maxval <= a) { maxval = a; li = l; } }
+   i = storage - li;
+   ((GeneralMatrix&)*this).tDelete(); return maxval;
+}
+
+Real GeneralMatrix::minimum() const
+{
+   REPORT
+   if (storage == 0) NullMatrixError(this);
+   int l = storage - 1; Real* s = store; Real minval = *s++;
+   while (l--) { Real a = *s++; if (minval > a) minval = a; }
+   ((GeneralMatrix&)*this).tDelete(); return minval;
+}
+
+Real GeneralMatrix::minimum1(int& i) const
+{
+   REPORT
+   if (storage == 0) NullMatrixError(this);
+   int l = storage - 1; Real* s = store; Real minval = *s++; int li = l;
+   while (l--) { Real a = *s++; if (minval >= a) { minval = a; li = l; } }
+   i = storage - li;
+   ((GeneralMatrix&)*this).tDelete(); return minval;
+}
+
+Real GeneralMatrix::maximum_absolute_value2(int& i, int& j) const
+{
+   REPORT
+   if (storage == 0) NullMatrixError(this);
+   Real maxval = 0.0; int nr = Nrows();
+   MatrixRow mr((GeneralMatrix*)this, LoadOnEntry+DirectPart);
+   for (int r = 1; r <= nr; r++)
+   {
+      int c; maxval = mr.MaximumAbsoluteValue1(maxval, c);
+      if (c > 0) { i = r; j = c; }
+      mr.Next();
+   }
+   ((GeneralMatrix&)*this).tDelete(); return maxval;
+}
+
+Real GeneralMatrix::minimum_absolute_value2(int& i, int& j) const
+{
+   REPORT
+   if (storage == 0)  NullMatrixError(this);
+   Real minval = FloatingPointPrecision::Maximum(); int nr = Nrows();
+   MatrixRow mr((GeneralMatrix*)this, LoadOnEntry+DirectPart);
+   for (int r = 1; r <= nr; r++)
+   {
+      int c; minval = mr.MinimumAbsoluteValue1(minval, c);
+      if (c > 0) { i = r; j = c; }
+      mr.Next();
+   }
+   ((GeneralMatrix&)*this).tDelete(); return minval;
+}
+
+Real GeneralMatrix::maximum2(int& i, int& j) const
+{
+   REPORT
+   if (storage == 0) NullMatrixError(this);
+   Real maxval = -FloatingPointPrecision::Maximum(); int nr = Nrows();
+   MatrixRow mr((GeneralMatrix*)this, LoadOnEntry+DirectPart);
+   for (int r = 1; r <= nr; r++)
+   {
+      int c; maxval = mr.Maximum1(maxval, c);
+      if (c > 0) { i = r; j = c; }
+      mr.Next();
+   }
+   ((GeneralMatrix&)*this).tDelete(); return maxval;
+}
+
+Real GeneralMatrix::minimum2(int& i, int& j) const
+{
+   REPORT
+   if (storage == 0) NullMatrixError(this);
+   Real minval = FloatingPointPrecision::Maximum(); int nr = Nrows();
+   MatrixRow mr((GeneralMatrix*)this, LoadOnEntry+DirectPart);
+   for (int r = 1; r <= nr; r++)
+   {
+      int c; minval = mr.Minimum1(minval, c);
+      if (c > 0) { i = r; j = c; }
+      mr.Next();
+   }
+   ((GeneralMatrix&)*this).tDelete(); return minval;
+}
+
+Real Matrix::maximum_absolute_value2(int& i, int& j) const
+{
+   REPORT
+   int k; Real m = GeneralMatrix::maximum_absolute_value1(k); k--;
+   i = k / Ncols(); j = k - i * Ncols(); i++; j++;
+   return m;
+}
+
+Real Matrix::minimum_absolute_value2(int& i, int& j) const
+{
+   REPORT
+   int k; Real m = GeneralMatrix::minimum_absolute_value1(k); k--;
+   i = k / Ncols(); j = k - i * Ncols(); i++; j++;
+   return m;
+}
+
+Real Matrix::maximum2(int& i, int& j) const
+{
+   REPORT
+   int k; Real m = GeneralMatrix::maximum1(k); k--;
+   i = k / Ncols(); j = k - i * Ncols(); i++; j++;
+   return m;
+}
+
+Real Matrix::minimum2(int& i, int& j) const
+{
+   REPORT
+   int k; Real m = GeneralMatrix::minimum1(k); k--;
+   i = k / Ncols(); j = k - i * Ncols(); i++; j++;
+   return m;
+}
+
+Real SymmetricMatrix::sum_square() const
+{
+   REPORT
+   Real sum1 = 0.0; Real sum2 = 0.0; Real* s = store; int nr = nrows_val;
+   for (int i = 0; i<nr; i++)
+   {
+      int j = i;
+      while (j--) sum2 += square(*s++);
+      sum1 += square(*s++);
+   }
+   ((GeneralMatrix&)*this).tDelete(); return sum1 + 2.0 * sum2;
+}
+
+Real SymmetricMatrix::sum_absolute_value() const
+{
+   REPORT
+   Real sum1 = 0.0; Real sum2 = 0.0; Real* s = store; int nr = nrows_val;
+   for (int i = 0; i<nr; i++)
+   {
+      int j = i;
+      while (j--) sum2 += fabs(*s++);
+      sum1 += fabs(*s++);
+   }
+   ((GeneralMatrix&)*this).tDelete(); return sum1 + 2.0 * sum2;
+}
+
+Real IdentityMatrix::sum_absolute_value() const
+   { REPORT  return fabs(trace()); }    // no need to do tDelete?
+
+Real SymmetricMatrix::sum() const
+{
+   REPORT
+   Real sum1 = 0.0; Real sum2 = 0.0; Real* s = store; int nr = nrows_val;
+   for (int i = 0; i<nr; i++)
+   {
+      int j = i;
+      while (j--) sum2 += *s++;
+      sum1 += *s++;
+   }
+   ((GeneralMatrix&)*this).tDelete(); return sum1 + 2.0 * sum2;
+}
+
+Real IdentityMatrix::sum_square() const
+{
+   Real sum = *store * *store * nrows_val;
+   ((GeneralMatrix&)*this).tDelete(); return sum;
+}
+
+
+Real BaseMatrix::sum_square() const
+{
+   REPORT GeneralMatrix* gm = ((BaseMatrix&)*this).Evaluate();
+   Real s = gm->sum_square(); return s;
+}
+
+Real BaseMatrix::norm_Frobenius() const
+   { REPORT  return sqrt(sum_square()); }
+
+Real BaseMatrix::sum_absolute_value() const
+{
+   REPORT GeneralMatrix* gm = ((BaseMatrix&)*this).Evaluate();
+   Real s = gm->sum_absolute_value(); return s;
+}
+
+Real BaseMatrix::sum() const
+{
+   REPORT GeneralMatrix* gm = ((BaseMatrix&)*this).Evaluate();
+   Real s = gm->sum(); return s;
+}
+
+Real BaseMatrix::maximum_absolute_value() const
+{
+   REPORT GeneralMatrix* gm = ((BaseMatrix&)*this).Evaluate();
+   Real s = gm->maximum_absolute_value(); return s;
+}
+
+Real BaseMatrix::maximum_absolute_value1(int& i) const
+{
+   REPORT GeneralMatrix* gm = ((BaseMatrix&)*this).Evaluate();
+   Real s = gm->maximum_absolute_value1(i); return s;
+}
+
+Real BaseMatrix::maximum_absolute_value2(int& i, int& j) const
+{
+   REPORT GeneralMatrix* gm = ((BaseMatrix&)*this).Evaluate();
+   Real s = gm->maximum_absolute_value2(i, j); return s;
+}
+
+Real BaseMatrix::minimum_absolute_value() const
+{
+   REPORT GeneralMatrix* gm = ((BaseMatrix&)*this).Evaluate();
+   Real s = gm->minimum_absolute_value(); return s;
+}
+
+Real BaseMatrix::minimum_absolute_value1(int& i) const
+{
+   REPORT GeneralMatrix* gm = ((BaseMatrix&)*this).Evaluate();
+   Real s = gm->minimum_absolute_value1(i); return s;
+}
+
+Real BaseMatrix::minimum_absolute_value2(int& i, int& j) const
+{
+   REPORT GeneralMatrix* gm = ((BaseMatrix&)*this).Evaluate();
+   Real s = gm->minimum_absolute_value2(i, j); return s;
+}
+
+Real BaseMatrix::maximum() const
+{
+   REPORT GeneralMatrix* gm = ((BaseMatrix&)*this).Evaluate();
+   Real s = gm->maximum(); return s;
+}
+
+Real BaseMatrix::maximum1(int& i) const
+{
+   REPORT GeneralMatrix* gm = ((BaseMatrix&)*this).Evaluate();
+   Real s = gm->maximum1(i); return s;
+}
+
+Real BaseMatrix::maximum2(int& i, int& j) const
+{
+   REPORT GeneralMatrix* gm = ((BaseMatrix&)*this).Evaluate();
+   Real s = gm->maximum2(i, j); return s;
+}
+
+Real BaseMatrix::minimum() const
+{
+   REPORT GeneralMatrix* gm = ((BaseMatrix&)*this).Evaluate();
+   Real s = gm->minimum(); return s;
+}
+
+Real BaseMatrix::minimum1(int& i) const
+{
+   REPORT GeneralMatrix* gm = ((BaseMatrix&)*this).Evaluate();
+   Real s = gm->minimum1(i); return s;
+}
+
+Real BaseMatrix::minimum2(int& i, int& j) const
+{
+   REPORT GeneralMatrix* gm = ((BaseMatrix&)*this).Evaluate();
+   Real s = gm->minimum2(i, j); return s;
+}
+
+Real dotproduct(const Matrix& A, const Matrix& B)
+{
+   REPORT
+   int n = A.storage;
+   if (n != B.storage)
+   {
+      Tracer tr("dotproduct");
+      Throw(IncompatibleDimensionsException(A,B));
+   }
+   Real sum = 0.0; Real* a = A.store; Real* b = B.store;
+   while (n--) sum += *a++ * *b++;
+   return sum;
+}
+
+Real Matrix::trace() const
+{
+   REPORT
+   Tracer tr("trace");
+   int i = nrows_val; int d = i+1;
+   if (i != ncols_val) Throw(NotSquareException(*this));
+   Real sum = 0.0; Real* s = store;
+//   while (i--) { sum += *s; s += d; }
+   if (i) for (;;) { sum += *s; if (!(--i)) break; s += d; }
+   ((GeneralMatrix&)*this).tDelete(); return sum;
+}
+
+Real DiagonalMatrix::trace() const
+{
+   REPORT
+   int i = nrows_val; Real sum = 0.0; Real* s = store;
+   while (i--) sum += *s++;
+   ((GeneralMatrix&)*this).tDelete(); return sum;
+}
+
+Real SymmetricMatrix::trace() const
+{
+   REPORT
+   int i = nrows_val; Real sum = 0.0; Real* s = store; int j = 2;
+   // while (i--) { sum += *s; s += j++; }
+   if (i) for (;;) { sum += *s; if (!(--i)) break; s += j++; }
+   ((GeneralMatrix&)*this).tDelete(); return sum;
+}
+
+Real LowerTriangularMatrix::trace() const
+{
+   REPORT
+   int i = nrows_val; Real sum = 0.0; Real* s = store; int j = 2;
+   // while (i--) { sum += *s; s += j++; }
+   if (i) for (;;) { sum += *s; if (!(--i)) break; s += j++; }
+   ((GeneralMatrix&)*this).tDelete(); return sum;
+}
+
+Real UpperTriangularMatrix::trace() const
+{
+   REPORT
+   int i = nrows_val; Real sum = 0.0; Real* s = store;
+   while (i) { sum += *s; s += i--; }             // won t cause a problem
+   ((GeneralMatrix&)*this).tDelete(); return sum;
+}
+
+Real BandMatrix::trace() const
+{
+   REPORT
+   int i = nrows_val; int w = lower_val+upper_val+1;
+   Real sum = 0.0; Real* s = store+lower_val;
+   // while (i--) { sum += *s; s += w; }
+   if (i) for (;;) { sum += *s; if (!(--i)) break; s += w; }
+   ((GeneralMatrix&)*this).tDelete(); return sum;
+}
+
+Real SymmetricBandMatrix::trace() const
+{
+   REPORT
+   int i = nrows_val; int w = lower_val+1;
+   Real sum = 0.0; Real* s = store+lower_val;
+   // while (i--) { sum += *s; s += w; }
+   if (i) for (;;) { sum += *s; if (!(--i)) break; s += w; }
+   ((GeneralMatrix&)*this).tDelete(); return sum;
+}
+
+Real IdentityMatrix::trace() const
+{
+   Real sum = *store * nrows_val;
+   ((GeneralMatrix&)*this).tDelete(); return sum;
+}
+
+
+Real BaseMatrix::trace() const
+{
+   REPORT
+   MatrixType Diag = MatrixType::Dg; Diag.SetDataLossOK();
+   GeneralMatrix* gm = ((BaseMatrix&)*this).Evaluate(Diag);
+   Real sum = gm->trace(); return sum;
+}
+
+void LogAndSign::operator*=(Real x)
+{
+   if (x > 0.0) { log_val += log(x); }
+   else if (x < 0.0) { log_val += log(-x); sign_val = -sign_val; }
+   else sign_val = 0;
+}
+
+void LogAndSign::pow_eq(int k)
+{
+   if (sign_val)
+   {
+      log_val *= k;
+      if ( (k & 1) == 0 ) sign_val = 1;
+   }
+}
+
+Real LogAndSign::value() const
+{
+   Tracer et("LogAndSign::value");
+   if (log_val >= FloatingPointPrecision::LnMaximum())
+      Throw(OverflowException("Overflow in exponential"));
+   return sign_val * exp(log_val);
+}
+
+LogAndSign::LogAndSign(Real f)
+{
+   if (f == 0.0) { log_val = 0.0; sign_val = 0; return; }
+   else if (f < 0.0) { sign_val = -1; f = -f; }
+   else sign_val = 1;
+   log_val = log(f);
+}
+
+LogAndSign DiagonalMatrix::log_determinant() const
+{
+   REPORT
+   int i = nrows_val; LogAndSign sum; Real* s = store;
+   while (i--) sum *= *s++;
+   ((GeneralMatrix&)*this).tDelete(); return sum;
+}
+
+LogAndSign LowerTriangularMatrix::log_determinant() const
+{
+   REPORT
+   int i = nrows_val; LogAndSign sum; Real* s = store; int j = 2;
+   // while (i--) { sum *= *s; s += j++; }
+   if (i) for(;;) { sum *= *s; if (!(--i)) break; s += j++; }
+   ((GeneralMatrix&)*this).tDelete(); return sum;
+}
+
+LogAndSign UpperTriangularMatrix::log_determinant() const
+{
+   REPORT
+   int i = nrows_val; LogAndSign sum; Real* s = store;
+   while (i) { sum *= *s; s += i--; }
+   ((GeneralMatrix&)*this).tDelete(); return sum;
+}
+
+LogAndSign IdentityMatrix::log_determinant() const
+{
+   REPORT
+   int i = nrows_val; LogAndSign sum;
+   if (i > 0) { sum = *store; sum.PowEq(i); }
+   ((GeneralMatrix&)*this).tDelete(); return sum;
+}
+
+LogAndSign BaseMatrix::log_determinant() const
+{
+   REPORT GeneralMatrix* gm = ((BaseMatrix&)*this).Evaluate();
+   LogAndSign sum = gm->log_determinant(); return sum;
+}
+
+LogAndSign GeneralMatrix::log_determinant() const
+{
+   REPORT
+   Tracer tr("log_determinant");
+   if (nrows_val != ncols_val) Throw(NotSquareException(*this));
+   CroutMatrix C(*this); return C.log_determinant();
+}
+
+LogAndSign CroutMatrix::log_determinant() const
+{
+   REPORT
+   if (sing) return 0.0;
+   int i = nrows_val; int dd = i+1; LogAndSign sum; Real* s = store;
+   if (i) for(;;)
+   {
+      sum *= *s;
+      if (!(--i)) break;
+      s += dd;
+   }
+   if (!d) sum.ChangeSign(); return sum;
+
+}
+
+Real BaseMatrix::determinant() const
+{
+   REPORT
+   Tracer tr("determinant");
+   REPORT GeneralMatrix* gm = ((BaseMatrix&)*this).Evaluate();
+   LogAndSign ld = gm->log_determinant();
+   return ld.Value();
+}
+
+LinearEquationSolver::LinearEquationSolver(const BaseMatrix& bm)
+{
+   gm = ( ((BaseMatrix&)bm).Evaluate() )->MakeSolver();
+   if (gm==&bm) { REPORT  gm = gm->Image(); }
+   // want a copy if  *gm is actually bm
+   else { REPORT  gm->Protect(); }
+}
+
+ReturnMatrix BaseMatrix::sum_square_rows() const
+{
+   REPORT
+   GeneralMatrix* gm = ((BaseMatrix&)*this).Evaluate();
+   int nr = gm->nrows();
+   ColumnVector ssq(nr);
+   if (gm->size() == 0) { REPORT ssq = 0.0; }
+   else
+   {
+      MatrixRow mr(gm, LoadOnEntry);
+      for (int i = 1; i <= nr; ++i)
+      {
+         Real sum = 0.0;
+         int s = mr.Storage();
+         Real* in = mr.Data();
+         while (s--) sum += square(*in++);
+         ssq(i) = sum;   
+         mr.Next();
+      }
+   }
+   gm->tDelete();
+   ssq.release(); return ssq.for_return();
+}
+
+ReturnMatrix BaseMatrix::sum_square_columns() const
+{
+   REPORT
+   GeneralMatrix* gm = ((BaseMatrix&)*this).Evaluate();
+   int nr = gm->nrows(); int nc = gm->ncols();
+   RowVector ssq(nc); ssq = 0.0;
+   if (gm->size() != 0)
+   {
+      MatrixRow mr(gm, LoadOnEntry);
+      for (int i = 1; i <= nr; ++i)
+      {
+         int s = mr.Storage();
+         Real* in = mr.Data(); Real* out = ssq.data() + mr.Skip();
+         while (s--) *out++ += square(*in++);
+         mr.Next();
+      }
+   }
+   gm->tDelete();
+   ssq.release(); return ssq.for_return();
+}
+
+ReturnMatrix BaseMatrix::sum_rows() const
+{
+   REPORT
+   GeneralMatrix* gm = ((BaseMatrix&)*this).Evaluate();
+   int nr = gm->nrows();
+   ColumnVector sum_vec(nr);
+   if (gm->size() == 0) { REPORT sum_vec = 0.0; }
+   else
+   {
+      MatrixRow mr(gm, LoadOnEntry);
+      for (int i = 1; i <= nr; ++i)
+      {
+         Real sum = 0.0;
+         int s = mr.Storage();
+         Real* in = mr.Data();
+         while (s--) sum += *in++;
+         sum_vec(i) = sum;   
+         mr.Next();
+      }
+   }
+   gm->tDelete();
+   sum_vec.release(); return sum_vec.for_return();
+}
+
+ReturnMatrix BaseMatrix::sum_columns() const
+{
+   REPORT
+   GeneralMatrix* gm = ((BaseMatrix&)*this).Evaluate();
+   int nr = gm->nrows(); int nc = gm->ncols();
+   RowVector sum_vec(nc); sum_vec = 0.0;
+   if (gm->size() != 0)
+   {
+      MatrixRow mr(gm, LoadOnEntry);
+      for (int i = 1; i <= nr; ++i)
+      {
+         int s = mr.Storage();
+         Real* in = mr.Data(); Real* out = sum_vec.data() + mr.Skip();
+         while (s--) *out++ += *in++;
+         mr.Next();
+      }
+   }
+   gm->tDelete();
+   sum_vec.release(); return sum_vec.for_return();
+}
+
+
+#ifdef use_namespace
+}
+#endif
+
+
+///}
Index: branches/BNC_LM/newmat/newmat9.cpp
===================================================================
--- branches/BNC_LM/newmat/newmat9.cpp	(revision 3570)
+++ branches/BNC_LM/newmat/newmat9.cpp	(revision 3570)
@@ -0,0 +1,81 @@
+/// \ingroup newmat
+///@{
+
+/// \file newmat9.cpp
+/// Output.
+
+// Copyright (C) 1991,2,3,4: R B Davies
+
+
+#define WANT_FSTREAM
+
+#include "include.h"
+
+#include "newmat.h"
+#include "newmatio.h"
+#include "newmatrc.h"
+
+#ifdef use_namespace
+namespace NEWMAT {
+#endif
+
+
+
+#ifdef DO_REPORT
+#define REPORT { static ExeCounter ExeCount(__LINE__,9); ++ExeCount; }
+#else
+#define REPORT {}
+#endif
+
+// for G++ 3.01
+#ifndef ios_format_flags
+#define ios_format_flags long
+#endif
+
+ostream& operator<<(ostream& s, const BaseMatrix& X)
+{
+   GeneralMatrix* gm = ((BaseMatrix&)X).Evaluate(); operator<<(s, *gm);
+   gm->tDelete(); return s;
+}
+
+
+ostream& operator<<(ostream& s, const GeneralMatrix& X)
+{
+   MatrixRow mr((GeneralMatrix*)&X, LoadOnEntry);
+   int w = s.width();  int nr = X.Nrows();  ios_format_flags f = s.flags();
+   s.setf(ios::fixed, ios::floatfield);
+   for (int i=1; i<=nr; i++)
+   {
+      int skip = mr.skip;  int storage = mr.storage;
+      Real* store = mr.data;  skip *= w+1;
+      while (skip--) s << " ";
+      while (storage--) { s.width(w); s << *store++ << " "; }
+//      while (storage--) s << setw(w) << *store++ << " ";
+      mr.Next();  s << "\n";
+   }
+   s << flush;  s.flags(f); return s;
+}
+
+// include this stuff if you are using an old version of G++
+// with an incomplete io library
+
+/*
+
+ostream& operator<<(ostream& os, Omanip_precision i)
+   { os.precision(i.x); return os; }
+
+Omanip_precision setprecision(int i) { return Omanip_precision(i); }
+
+ostream& operator<<(ostream& os, Omanip_width i)
+   { os.width(i.x); return os; }
+
+Omanip_width setw(int i) { return Omanip_width(i); }
+
+*/
+
+#ifdef use_namespace
+}
+#endif
+
+
+///@}
Index: branches/BNC_LM/newmat/newmatap.h
===================================================================
--- branches/BNC_LM/newmat/newmatap.h	(revision 3570)
+++ branches/BNC_LM/newmat/newmatap.h	(revision 3570)
@@ -0,0 +1,250 @@
+/// \ingroup newmat
+///@{
+
+/// \file newmatap.h
+/// Definition file for advanced matrix functions.
+
+// Copyright (C) 1991,2,3,4,8: R B Davies
+
+#ifndef NEWMATAP_LIB
+#define NEWMATAP_LIB 0
+
+#include "newmat.h"
+
+#ifdef use_namespace
+namespace NEWMAT {
+#endif
+
+
+// ************************** applications *****************************/
+
+
+void QRZT(Matrix&, LowerTriangularMatrix&);
+
+void QRZT(const Matrix&, Matrix&, Matrix&);
+
+void QRZ(Matrix&, UpperTriangularMatrix&);
+
+void QRZ(const Matrix&, Matrix&, Matrix&);
+
+inline void HHDecompose(Matrix& X, LowerTriangularMatrix& L)
+{ QRZT(X,L); }
+
+inline void HHDecompose(const Matrix& X, Matrix& Y, Matrix& M)
+{ QRZT(X, Y, M); }
+
+void updateQRZT(Matrix& X, LowerTriangularMatrix& L);
+
+void updateQRZ(Matrix& X, UpperTriangularMatrix& U);
+
+inline void UpdateQRZT(Matrix& X, LowerTriangularMatrix& L)
+   { updateQRZT(X, L); }
+
+inline void UpdateQRZ(Matrix& X, UpperTriangularMatrix& U)
+   { updateQRZ(X, U); }
+
+// Matrix A's first n columns are orthonormal
+// so A.Columns(1,n).t() * A.Columns(1,n) is the identity matrix.
+// Fill out the remaining columns of A to make them orthonormal
+// so A.t() * A is the identity matrix 
+void extend_orthonormal(Matrix& A, int n);
+
+
+ReturnMatrix Cholesky(const SymmetricMatrix&);
+
+ReturnMatrix Cholesky(const SymmetricBandMatrix&);
+
+
+// produces the Cholesky decomposition of A + x.t() * x where A = chol.t() * chol
+// and x is a RowVector
+void update_Cholesky(UpperTriangularMatrix& chol, RowVector x);
+inline void UpdateCholesky(UpperTriangularMatrix& chol, const RowVector& x)
+   { update_Cholesky(chol, x); }
+
+// produces the Cholesky decomposition of A - x.t() * x where A = chol.t() * chol
+// and x is a RowVector
+void downdate_Cholesky(UpperTriangularMatrix &chol, RowVector x);
+inline void DowndateCholesky(UpperTriangularMatrix &chol, const RowVector& x)
+   { downdate_Cholesky(chol, x); }
+
+// a RIGHT circular shift of the rows and columns from
+// 1,...,k-1,k,k+1,...l,l+1,...,p to
+// 1,...,k-1,l,k,k+1,...l-1,l+1,...p
+void right_circular_update_Cholesky(UpperTriangularMatrix &chol, int k, int l);
+inline void RightCircularUpdateCholesky(UpperTriangularMatrix &chol,
+  int k, int l) { right_circular_update_Cholesky(chol, k, l); }
+
+// a LEFT circular shift of the rows and columns from
+// 1,...,k-1,k,k+1,...l,l+1,...,p to
+// 1,...,k-1,k+1,...l,k,l+1,...,p to
+void left_circular_update_Cholesky(UpperTriangularMatrix &chol, int k, int l); 
+inline void LeftCircularUpdateCholesky(UpperTriangularMatrix &chol,
+   int k, int l) { left_circular_update_Cholesky(chol, k, l); } 
+
+
+void SVD(const Matrix&, DiagonalMatrix&, Matrix&, Matrix&,
+    bool=true, bool=true);
+
+void SVD(const Matrix&, DiagonalMatrix&);
+
+inline void SVD(const Matrix& A, DiagonalMatrix& D, Matrix& U,
+   bool withU = true) { SVD(A, D, U, U, withU, false); }
+
+void SortSV(DiagonalMatrix& D, Matrix& U, bool ascending = false);
+
+void SortSV(DiagonalMatrix& D, Matrix& U, Matrix& V, bool ascending = false);
+
+void Jacobi(const SymmetricMatrix&, DiagonalMatrix&);
+
+void Jacobi(const SymmetricMatrix&, DiagonalMatrix&, SymmetricMatrix&);
+
+void Jacobi(const SymmetricMatrix&, DiagonalMatrix&, Matrix&);
+
+void Jacobi(const SymmetricMatrix&, DiagonalMatrix&, SymmetricMatrix&,
+   Matrix&, bool=true);
+
+void eigenvalues(const SymmetricMatrix&, DiagonalMatrix&);
+
+void eigenvalues(const SymmetricMatrix&, DiagonalMatrix&, SymmetricMatrix&);
+
+void eigenvalues(const SymmetricMatrix&, DiagonalMatrix&, Matrix&);
+
+inline void EigenValues(const SymmetricMatrix& A, DiagonalMatrix& D)
+   { eigenvalues(A, D); }
+
+inline void EigenValues(const SymmetricMatrix& A, DiagonalMatrix& D,
+   SymmetricMatrix& S) { eigenvalues(A, D, S); }
+
+inline void EigenValues(const SymmetricMatrix& A, DiagonalMatrix& D, Matrix& V)
+   { eigenvalues(A, D, V); }
+
+class SymmetricEigenAnalysis
+// not implemented yet
+{
+public:
+   SymmetricEigenAnalysis(const SymmetricMatrix&);
+private:
+   DiagonalMatrix diag;
+   DiagonalMatrix offdiag;
+   SymmetricMatrix backtransform;
+   FREE_CHECK(SymmetricEigenAnalysis)
+};
+
+void sort_ascending(GeneralMatrix&);
+
+void sort_descending(GeneralMatrix&);
+
+inline void SortAscending(GeneralMatrix& gm) { sort_ascending(gm); }
+
+inline void SortDescending(GeneralMatrix& gm) { sort_descending(gm); }
+
+/// Decide which fft method to use and carry out new fft function
+class FFT_Controller
+{
+public:
+   static bool OnlyOldFFT;
+   static bool ar_1d_ft (int PTS, Real* X, Real *Y);
+   static bool CanFactor(int PTS);
+};
+
+void FFT(const ColumnVector&, const ColumnVector&,
+   ColumnVector&, ColumnVector&);
+
+void FFTI(const ColumnVector&, const ColumnVector&,
+   ColumnVector&, ColumnVector&);
+
+void RealFFT(const ColumnVector&, ColumnVector&, ColumnVector&);
+
+void RealFFTI(const ColumnVector&, const ColumnVector&, ColumnVector&);
+
+void DCT_II(const ColumnVector&, ColumnVector&);
+
+void DCT_II_inverse(const ColumnVector&, ColumnVector&);
+
+void DST_II(const ColumnVector&, ColumnVector&);
+
+void DST_II_inverse(const ColumnVector&, ColumnVector&);
+
+void DCT(const ColumnVector&, ColumnVector&);
+
+void DCT_inverse(const ColumnVector&, ColumnVector&);
+
+void DST(const ColumnVector&, ColumnVector&);
+
+void DST_inverse(const ColumnVector&, ColumnVector&);
+
+void FFT2(const Matrix& U, const Matrix& V, Matrix& X, Matrix& Y);
+
+void FFT2I(const Matrix& U, const Matrix& V, Matrix& X, Matrix& Y);
+
+
+// This class is used by the new FFT program
+
+// Suppose an integer is expressed as a sequence of digits with each
+// digit having a different radix.
+// This class supposes we are counting with this multi-radix number
+// but also keeps track of the number with the digits (and radices)
+// reversed.
+// The integer starts at zero
+// operator++() increases it by 1
+// Counter gives the number of increments
+// Reverse() gives the value with the digits in reverse order
+// Swap is true if reverse is less than counter
+// Finish is true when we have done a complete cycle and are back at zero
+
+class MultiRadixCounter
+{
+   const SimpleIntArray& Radix;
+                              // radix of each digit
+                              // n-1 highest order, 0 lowest order
+   SimpleIntArray& Value;     // value of each digit
+   const int n;               // number of digits
+   int reverse;               // value when order of digits is reversed
+   int product;               // product of radices
+   int counter;               // counter
+   bool finish;               // true when we have gone over whole range
+public:
+   MultiRadixCounter(int nx, const SimpleIntArray& rx,
+      SimpleIntArray& vx);
+   void operator++();         // increment the multi-radix counter
+   bool Swap() const { return reverse < counter; }
+   bool Finish() const { return finish; }
+   int Reverse() const { return reverse; }
+   int Counter() const { return counter; }
+};
+
+// multiplication by Helmert matrix
+ReturnMatrix Helmert(int n, bool full=false);
+ReturnMatrix Helmert(const ColumnVector& X, bool full=false);
+ReturnMatrix Helmert(int n, int j, bool full=false);
+ReturnMatrix Helmert_transpose(const ColumnVector& Y, bool full=false);
+Real Helmert_transpose(const ColumnVector& Y, int j, bool full=false);
+ReturnMatrix Helmert(const Matrix& X, bool full=false);
+ReturnMatrix Helmert_transpose(const Matrix& Y, bool full=false);
+
+
+
+
+#ifdef use_namespace
+}
+#endif
+
+
+
+#endif
+
+// body file: cholesky.cpp
+// body file: evalue.cpp
+// body file: fft.cpp
+// body file: hholder.cpp
+// body file: jacobi.cpp
+// body file: newfft.cpp
+// body file: sort.cpp
+// body file: svd.cpp
+// body file: nm_misc.cpp
+
+
+
+///@}
+
+
Index: branches/BNC_LM/newmat/newmatex.cpp
===================================================================
--- branches/BNC_LM/newmat/newmatex.cpp	(revision 3570)
+++ branches/BNC_LM/newmat/newmatex.cpp	(revision 3570)
@@ -0,0 +1,325 @@
+/// \file newmatex.cpp
+/// \brief Exceptions thrown by matrix library.
+
+// Copyright (C) 1992,3,4,7: R B Davies
+
+#define WANT_STREAM                  // include.h will get stream fns
+
+#include "include.h"                 // include standard files
+#include "newmat.h"
+
+#ifdef use_namespace
+namespace NEWMAT {
+#endif
+
+unsigned long OverflowException::Select;
+unsigned long SingularException::Select;
+unsigned long NPDException::Select;
+unsigned long ConvergenceException::Select;
+unsigned long ProgramException::Select;
+unsigned long IndexException::Select;
+unsigned long VectorException::Select;
+unsigned long NotSquareException::Select;
+unsigned long SubMatrixDimensionException::Select;
+unsigned long IncompatibleDimensionsException::Select;
+unsigned long NotDefinedException::Select;
+unsigned long CannotBuildException::Select;
+unsigned long InternalException::Select;
+
+
+
+static void MatrixDetails(const GeneralMatrix& A)
+// write matrix details to Exception buffer
+{
+   MatrixBandWidth bw = A.bandwidth();
+   int ubw = bw.upper_val; int lbw = bw.lower_val;
+   BaseException::AddMessage("MatrixType = ");
+   BaseException::AddMessage(A.Type().Value());
+   BaseException::AddMessage("  # Rows = "); BaseException::AddInt(A.Nrows());
+   BaseException::AddMessage("; # Cols = "); BaseException::AddInt(A.Ncols());
+   if (lbw >=0)
+   {
+      BaseException::AddMessage("; lower BW = ");
+      BaseException::AddInt(lbw);
+   }
+   if (ubw >=0)
+   {
+      BaseException::AddMessage("; upper BW = ");
+      BaseException::AddInt(ubw);
+   }
+   BaseException::AddMessage("\n");
+}
+
+NPDException::NPDException(const GeneralMatrix& A)
+   : Runtime_error()
+{
+   Select = BaseException::Select;
+   AddMessage("detected by Newmat: matrix not positive definite\n\n");
+   MatrixDetails(A);
+   Tracer::AddTrace();
+}
+
+SingularException::SingularException(const GeneralMatrix& A)
+   : Runtime_error()
+{
+   Select = BaseException::Select;
+   AddMessage("detected by Newmat: matrix is singular\n\n");
+   MatrixDetails(A);
+   Tracer::AddTrace();
+}
+
+ConvergenceException::ConvergenceException(const GeneralMatrix& A)
+   : Runtime_error()
+{
+   Select = BaseException::Select;
+   AddMessage("detected by Newmat: process fails to converge\n\n");
+   MatrixDetails(A);
+   Tracer::AddTrace();
+}
+
+ConvergenceException::ConvergenceException(const char* c) : Runtime_error()
+{
+   Select = BaseException::Select;
+   AddMessage("detected by Newmat: ");
+   AddMessage(c); AddMessage("\n\n");
+   if (c) Tracer::AddTrace();
+}
+
+OverflowException::OverflowException(const char* c) : Runtime_error()
+{
+   Select = BaseException::Select;
+   AddMessage("detected by Newmat: ");
+   AddMessage(c); AddMessage("\n\n");
+   if (c) Tracer::AddTrace();
+}
+
+ProgramException::ProgramException(const char* c) : Logic_error()
+{
+   Select = BaseException::Select;
+   AddMessage("detected by Newmat: ");
+   AddMessage(c); AddMessage("\n\n");
+   if (c) Tracer::AddTrace();
+}
+
+ProgramException::ProgramException(const char* c, const GeneralMatrix& A)
+   : Logic_error()
+{
+   Select = BaseException::Select;
+   AddMessage("detected by Newmat: ");
+   AddMessage(c); AddMessage("\n\n");
+   MatrixDetails(A);
+   if (c) Tracer::AddTrace();
+}
+
+ProgramException::ProgramException(const char* c, const GeneralMatrix& A,
+   const GeneralMatrix& B) : Logic_error()
+{
+   Select = BaseException::Select;
+   AddMessage("detected by Newmat: ");
+   AddMessage(c); AddMessage("\n\n");
+   MatrixDetails(A); MatrixDetails(B);
+   if (c) Tracer::AddTrace();
+}
+
+ProgramException::ProgramException(const char* c, MatrixType a, MatrixType b)
+   : Logic_error()
+{
+   Select = BaseException::Select;
+   AddMessage("detected by Newmat: ");
+   AddMessage(c); AddMessage("\nMatrixTypes = ");
+   AddMessage(a.Value()); AddMessage("; ");
+   AddMessage(b.Value()); AddMessage("\n\n");
+   if (c) Tracer::AddTrace();
+}
+
+VectorException::VectorException() : Logic_error()
+{
+   Select = BaseException::Select;
+   AddMessage("detected by Newmat: cannot convert matrix to vector\n\n");
+   Tracer::AddTrace();
+}
+
+VectorException::VectorException(const GeneralMatrix& A)
+   : Logic_error()
+{
+   Select = BaseException::Select;
+   AddMessage("detected by Newmat: cannot convert matrix to vector\n\n");
+   MatrixDetails(A);
+   Tracer::AddTrace();
+}
+
+NotSquareException::NotSquareException(const GeneralMatrix& A)
+   : Logic_error()
+{
+   Select = BaseException::Select;
+   AddMessage("detected by Newmat: matrix is not square\n\n");
+   MatrixDetails(A);
+   Tracer::AddTrace();
+}
+
+NotSquareException::NotSquareException()
+   : Logic_error()
+{
+   Select = BaseException::Select;
+   AddMessage("detected by Newmat: matrix is not square\n\n");
+   Tracer::AddTrace();
+}
+
+SubMatrixDimensionException::SubMatrixDimensionException()
+   : Logic_error()
+{
+   Select = BaseException::Select;
+   AddMessage("detected by Newmat: incompatible submatrix dimension\n\n");
+   Tracer::AddTrace();
+}
+
+IncompatibleDimensionsException::IncompatibleDimensionsException()
+   : Logic_error()
+{
+   Select = BaseException::Select;
+   AddMessage("detected by Newmat: incompatible dimensions\n\n");
+   Tracer::AddTrace();
+}
+
+IncompatibleDimensionsException::IncompatibleDimensionsException
+   (const GeneralMatrix& A, const GeneralMatrix& B)
+      : Logic_error()
+{
+   Select = BaseException::Select;
+   AddMessage("detected by Newmat: incompatible dimensions\n\n");
+   MatrixDetails(A); MatrixDetails(B);
+   Tracer::AddTrace();
+}
+
+IncompatibleDimensionsException::IncompatibleDimensionsException
+   (const GeneralMatrix& A)
+      : Logic_error()
+{
+   Select = BaseException::Select;
+   AddMessage("detected by Newmat: incompatible dimensions\n\n");
+   MatrixDetails(A);
+   Tracer::AddTrace();
+}
+
+NotDefinedException::NotDefinedException(const char* op, const char* matrix)
+   : Logic_error()
+{
+   Select = BaseException::Select;
+   AddMessage("detected by Newmat: ");
+   AddMessage(op);
+   AddMessage(" not defined for ");
+   AddMessage(matrix);
+   AddMessage("\n\n");
+   Tracer::AddTrace();
+}
+
+CannotBuildException::CannotBuildException(const char* matrix)
+   : Logic_error()
+{
+   Select = BaseException::Select;
+   AddMessage("detected by Newmat: cannot build matrix type ");
+   AddMessage(matrix); AddMessage("\n\n");
+   Tracer::AddTrace();
+}
+
+IndexException::IndexException(int i, const GeneralMatrix& A)
+   : Logic_error()
+{
+   Select = BaseException::Select;
+   AddMessage("detected by Newmat: index error: requested index = ");
+   AddInt(i); AddMessage("\n\n");
+   MatrixDetails(A);
+   Tracer::AddTrace();
+}
+
+IndexException::IndexException(int i, int j, const GeneralMatrix& A)
+   : Logic_error()
+{
+   Select = BaseException::Select;
+   AddMessage("detected by Newmat: index error: requested indices = ");
+   AddInt(i); AddMessage(", "); AddInt(j);
+   AddMessage("\n\n");
+   MatrixDetails(A);
+   Tracer::AddTrace();
+}
+
+
+IndexException::IndexException(int i, const GeneralMatrix& A, bool)
+   : Logic_error()
+{
+   Select = BaseException::Select;
+   AddMessage("detected by Newmat: element error: requested index (wrt 0) = ");
+   AddInt(i);
+   AddMessage("\n\n");
+   MatrixDetails(A);
+   Tracer::AddTrace();
+}
+
+IndexException::IndexException(int i, int j, const GeneralMatrix& A, bool)
+   : Logic_error()
+{
+   Select = BaseException::Select;
+   AddMessage(
+      "detected by Newmat: element error: requested indices (wrt 0) = ");
+   AddInt(i); AddMessage(", "); AddInt(j);
+   AddMessage("\n\n");
+   MatrixDetails(A);
+   Tracer::AddTrace();
+}
+
+InternalException::InternalException(const char* c) : Logic_error()
+{
+   Select = BaseException::Select;
+   AddMessage("internal error detected by Newmat: please inform author\n");
+   AddMessage(c); AddMessage("\n\n");
+   Tracer::AddTrace();
+}
+
+
+
+
+/************************* ExeCounter functions *****************************/
+
+#ifdef DO_REPORT
+
+int ExeCounter::nreports;                      // will be set to zero
+
+ExeCounter::ExeCounter(int xl, int xf) : line(xl), fileid(xf), nexe(0) {}
+
+ExeCounter::~ExeCounter()
+{
+   nreports++;
+   cout << "REPORT  " << setw(6) << nreports << "  "
+      << setw(6) << fileid << "  " << setw(6) << line
+      << "  " << setw(6) << nexe << "\n";
+}
+
+#endif
+
+/**************************** error handler *******************************/
+
+void MatrixErrorNoSpace(const void* v) { if (!v) Throw(Bad_alloc()); }
+// throw exception if v is null
+
+
+
+
+/************************* miscellanous errors ***************************/
+
+
+void CroutMatrix::GetRow(MatrixRowCol&)
+   { Throw(NotDefinedException("GetRow","Crout")); }
+void CroutMatrix::GetCol(MatrixRowCol&)
+   { Throw(NotDefinedException("GetCol","Crout")); }
+void BandLUMatrix::GetRow(MatrixRowCol&)
+   { Throw(NotDefinedException("GetRow","BandLUMatrix")); }
+void BandLUMatrix::GetCol(MatrixRowCol&)
+   { Throw(NotDefinedException("GetCol","BandLUMatrix")); }
+void BaseMatrix::IEQND() const
+   { Throw(NotDefinedException("inequalities", "matrices")); }
+
+
+#ifdef use_namespace
+}
+#endif
+
Index: branches/BNC_LM/newmat/newmatio.h
===================================================================
--- branches/BNC_LM/newmat/newmatio.h	(revision 3570)
+++ branches/BNC_LM/newmat/newmatio.h	(revision 3570)
@@ -0,0 +1,65 @@
+/// \ingroup newmat
+///@{
+
+/// \file newmatio.h
+/// Definition file for matrix package output.
+
+// Copyright (C) 1991,2,3,4: R B Davies
+
+#ifndef NEWMATIO_LIB
+#define NEWMATIO_LIB 0
+
+#ifndef WANT_STREAM
+#define WANT_STREAM
+#endif
+
+#include "newmat.h"
+
+#ifdef USE_STD_NAMESPACE
+using namespace std;
+#endif
+
+// **************************** input/output *****************************/
+
+ostream& operator<<(ostream&, const BaseMatrix&);
+
+ostream& operator<<(ostream&, const GeneralMatrix&);
+
+
+/*  Use in some old versions of G++ without complete iomanipulators
+
+class Omanip_precision
+{
+   int x;
+public:
+   Omanip_precision(int i) : x(i) {}
+   friend ostream& operator<<(ostream& os, Omanip_precision i);
+};
+
+
+Omanip_precision setprecision(int i);
+
+class Omanip_width
+{
+   int x;
+public:
+   Omanip_width(int i) : x(i) {}
+   friend ostream& operator<<(ostream& os, Omanip_width i);
+};
+
+Omanip_width setw(int i);
+
+*/
+
+#ifdef use_namespace
+}
+#endif
+
+
+
+#endif
+
+// body file: newmat9.cpp
+
+
+///@}
Index: branches/BNC_LM/newmat/newmatrc.h
===================================================================
--- branches/BNC_LM/newmat/newmatrc.h	(revision 3570)
+++ branches/BNC_LM/newmat/newmatrc.h	(revision 3570)
@@ -0,0 +1,186 @@
+/// \ingroup newmat
+///@{
+
+/// \file newmatrc.h
+/// Header file for row/column classes
+
+// Copyright (C) 1991,2,3,4,7: R B Davies
+
+#ifndef NEWMATRC_LIB
+#define NEWMATRC_LIB 0
+
+#ifdef use_namespace
+namespace NEWMAT {
+#endif
+
+#include "controlw.h"
+
+
+/************** classes MatrixRowCol, MatrixRow, MatrixCol *****************/
+
+// Used for accessing the rows and columns of matrices
+// All matrix classes must provide routines for calculating matrix rows and
+// columns. Assume rows can be found very efficiently.
+
+enum LSF { LoadOnEntry=1,StoreOnExit=2,DirectPart=4,StoreHere=8,HaveStore=16 };
+
+
+/// Option for accessing row or column.
+/// \internal
+class LoadAndStoreFlag : public ControlWord
+{
+public:
+   LoadAndStoreFlag() {}
+   LoadAndStoreFlag(int i) : ControlWord(i) {}
+   LoadAndStoreFlag(LSF lsf) : ControlWord(lsf) {}
+   LoadAndStoreFlag(const ControlWord& cwx) : ControlWord(cwx) {}
+};
+
+
+/// Access a row or column of a matrix.
+/// \internal
+class MatrixRowCol
+{
+public:                                        // these are public to avoid
+                                               // numerous friend statements
+   int length;                                 // row or column length
+   int skip;                                   // initial number of zeros
+   int storage;                                // number of stored elements
+   int rowcol;                                 // row or column number
+   GeneralMatrix* gm;                          // pointer to parent matrix
+   Real* data;                                 // pointer to local storage
+   LoadAndStoreFlag cw;                        // Load? Store? Is a Copy?
+   void IncrMat() { rowcol++; data += storage; }   // used by NextRow
+   void IncrDiag() { rowcol++; skip++; data++; }
+   void IncrId() { rowcol++; skip++; }
+   void IncrUT() { rowcol++; data += storage; storage--; skip++; }
+   void IncrLT() { rowcol++; data += storage; storage++; }
+
+public:
+   void Zero();                                // set elements to zero
+   void Add(const MatrixRowCol&);              // add a row/col
+   void AddScaled(const MatrixRowCol&, Real);  // add a multiple of a row/col
+   void Add(const MatrixRowCol&, const MatrixRowCol&);
+                                               // add two rows/cols
+   void Add(const MatrixRowCol&, Real);        // add a row/col
+   void NegAdd(const MatrixRowCol&, Real);     // Real - a row/col
+   void Sub(const MatrixRowCol&);              // subtract a row/col
+   void Sub(const MatrixRowCol&, const MatrixRowCol&);
+					       // sub a row/col from another
+   void RevSub(const MatrixRowCol&);           // subtract from a row/col
+   void ConCat(const MatrixRowCol&, const MatrixRowCol&);
+                                               // concatenate two row/cols
+   void Multiply(const MatrixRowCol&);         // multiply a row/col
+   void Multiply(const MatrixRowCol&, const MatrixRowCol&);
+                                               // multiply two row/cols
+   void KP(const MatrixRowCol&, const MatrixRowCol&);
+                                               // Kronecker Product two row/cols
+   void Copy(const MatrixRowCol&);             // copy a row/col
+   void CopyCheck(const MatrixRowCol&);        // ... check for data loss
+   void Check(const MatrixRowCol&);            // just check for data loss
+   void Check();                               // check full row/col present
+   void Copy(const double*&);                  // copy from an array
+   void Copy(const float*&);                   // copy from an array
+   void Copy(const int*&);                     // copy from an array
+   void Copy(Real);                            // copy from constant
+   void Add(Real);                             // add a constant
+   void Multiply(Real);                        // multiply by constant
+   Real SumAbsoluteValue();                    // sum of absolute values
+   Real MaximumAbsoluteValue1(Real r, int& i); // maximum of absolute values
+   Real MinimumAbsoluteValue1(Real r, int& i); // minimum of absolute values
+   Real Maximum1(Real r, int& i);              // maximum
+   Real Minimum1(Real r, int& i);              // minimum
+   Real Sum();                                 // sum of values
+   void Inject(const MatrixRowCol&);           // copy stored els of a row/col
+   void Negate(const MatrixRowCol&);           // change sign of a row/col
+   void Multiply(const MatrixRowCol&, Real);   // scale a row/col
+   friend Real DotProd(const MatrixRowCol&, const MatrixRowCol&);
+                                               // sum of pairwise product
+   Real* Data() { return data; }
+   int Skip() { return skip; }                 // number of elements skipped
+   int Storage() { return storage; }           // number of elements stored
+   int Length() { return length; }             // length of row or column
+   void Skip(int i) { skip=i; }
+   void Storage(int i) { storage=i; }
+   void Length(int i) { length=i; }
+   void SubRowCol(MatrixRowCol&, int, int) const;
+					       // get part of a row or column
+   MatrixRowCol() {}                           // to stop warning messages
+   ~MatrixRowCol();
+   FREE_CHECK(MatrixRowCol)
+};
+
+/// Access a row of a matrix.
+/// \internal
+class MatrixRow : public MatrixRowCol
+{
+public:
+   // bodies for these are inline at the end of this .h file
+   MatrixRow(GeneralMatrix*, LoadAndStoreFlag, int=0);
+                                               // extract a row
+   ~MatrixRow();
+   void Next();                                // get next row
+   FREE_CHECK(MatrixRow)
+};
+
+/// Access a column of a matrix.
+/// \internal
+class MatrixCol : public MatrixRowCol
+{
+public:
+   // bodies for these are inline at the end of this .h file
+   MatrixCol(GeneralMatrix*, LoadAndStoreFlag, int=0);
+                                               // extract a col
+   MatrixCol(GeneralMatrix*, Real*, LoadAndStoreFlag, int=0);
+                                               // store/retrieve a col
+   ~MatrixCol();
+   void Next();                                // get next column
+   FREE_CHECK(MatrixCol)
+};
+
+/// Alternative to MatrixCol where the complete column is stored externally.
+/// \internal
+class MatrixColX : public MatrixRowCol
+{
+public:
+   // bodies for these are inline at the end of this .h file
+   MatrixColX(GeneralMatrix*, Real*, LoadAndStoreFlag, int=0);
+                                               // store/retrieve a col
+   ~MatrixColX();
+   void Next();                                // get next row
+   Real* store;                                // pointer to local storage
+                                               //    less skip
+   FREE_CHECK(MatrixColX)
+};
+
+/**************************** inline bodies ****************************/
+
+inline MatrixRow::MatrixRow(GeneralMatrix* gmx, LoadAndStoreFlag cwx, int row)
+{ gm=gmx; cw=cwx; rowcol=row; gm->GetRow(*this); }
+
+inline void MatrixRow::Next() { gm->NextRow(*this); }
+
+inline MatrixCol::MatrixCol(GeneralMatrix* gmx, LoadAndStoreFlag cwx, int col)
+{ gm=gmx; cw=cwx; rowcol=col; gm->GetCol(*this); }
+
+inline MatrixCol::MatrixCol(GeneralMatrix* gmx, Real* r,
+   LoadAndStoreFlag cwx, int col)
+{ gm=gmx; data=r; cw=cwx+StoreHere; rowcol=col; gm->GetCol(*this); }
+
+inline MatrixColX::MatrixColX(GeneralMatrix* gmx, Real* r,
+   LoadAndStoreFlag cwx, int col)
+{ gm=gmx; store=data=r; cw=cwx+StoreHere; rowcol=col; gm->GetCol(*this); }
+
+
+inline void MatrixCol::Next() { gm->NextCol(*this); }
+
+inline void MatrixColX::Next() { gm->NextCol(*this); }
+
+#ifdef use_namespace
+}
+#endif
+
+#endif
+
+
+///@}
Index: branches/BNC_LM/newmat/newmatrm.cpp
===================================================================
--- branches/BNC_LM/newmat/newmatrm.cpp	(revision 3570)
+++ branches/BNC_LM/newmat/newmatrm.cpp	(revision 3570)
@@ -0,0 +1,221 @@
+/// \ingroup newmat
+///@{
+
+/// \file newmatrm.cpp
+/// Rectangular matrix operations
+
+// Copyright (C) 1991,2,3,4: R B Davies
+
+#define WANT_MATH
+
+#include "newmat.h"
+#include "newmatrm.h"
+
+#ifdef use_namespace
+namespace NEWMAT {
+#endif
+
+#ifdef DO_REPORT
+#define REPORT { static ExeCounter ExeCount(__LINE__,12); ++ExeCount; }
+#else
+#define REPORT {}
+#endif
+
+
+// operations on rectangular matrices
+
+
+void RectMatrixRow::Reset (const Matrix& M, int row, int skip, int length)
+{
+   REPORT
+   RectMatrixRowCol::Reset
+      ( M.Store()+row*M.Ncols()+skip, length, 1, M.Ncols() );
+}
+
+void RectMatrixRow::Reset (const Matrix& M, int row)
+{
+   REPORT
+   RectMatrixRowCol::Reset( M.Store()+row*M.Ncols(), M.Ncols(), 1, M.Ncols() );
+}
+
+void RectMatrixCol::Reset (const Matrix& M, int skip, int col, int length)
+{
+   REPORT
+   RectMatrixRowCol::Reset
+      ( M.Store()+col+skip*M.Ncols(), length, M.Ncols(), 1 );
+}
+
+void RectMatrixCol::Reset (const Matrix& M, int col)
+{
+   REPORT
+   RectMatrixRowCol::Reset( M.Store()+col, M.Nrows(), M.Ncols(), 1 );
+}
+
+
+Real RectMatrixRowCol::SumSquare() const
+{
+   REPORT
+   long_Real sum = 0.0; int i = n; Real* s = store; int d = spacing;
+   // while (i--) { sum += (long_Real)*s * *s; s += d; }
+   if (i) for(;;)
+      { sum += (long_Real)*s * *s; if (!(--i)) break; s += d; }
+   return (Real)sum;
+}
+
+Real RectMatrixRowCol::operator*(const RectMatrixRowCol& rmrc) const
+{
+   REPORT
+   long_Real sum = 0.0; int i = n;
+   Real* s = store; int d = spacing;
+   Real* s1 = rmrc.store; int d1 = rmrc.spacing;
+   if (i!=rmrc.n)
+   {
+      Tracer tr("newmatrm");
+      Throw(InternalException("Dimensions differ in *"));
+   }
+   // while (i--) { sum += (long_Real)*s * *s1; s += d; s1 += d1; }
+   if (i) for(;;)
+      { sum += (long_Real)*s * *s1; if (!(--i)) break; s += d; s1 += d1; }
+   return (Real)sum;
+}
+
+void RectMatrixRowCol::AddScaled(const RectMatrixRowCol& rmrc, Real r)
+{
+   REPORT
+   int i = n; Real* s = store; int d = spacing;
+   Real* s1 = rmrc.store; int d1 = rmrc.spacing;
+   if (i!=rmrc.n)
+   {
+      Tracer tr("newmatrm");
+      Throw(InternalException("Dimensions differ in AddScaled"));
+   }
+   // while (i--) { *s += *s1 * r; s += d; s1 += d1; }
+   if (i) for (;;)
+      { *s += *s1 * r; if (!(--i)) break; s += d; s1 += d1; }
+}
+
+void RectMatrixRowCol::Divide(const RectMatrixRowCol& rmrc, Real r)
+{
+   REPORT
+   int i = n; Real* s = store; int d = spacing;
+   Real* s1 = rmrc.store; int d1 = rmrc.spacing;
+   if (i!=rmrc.n)
+   {
+      Tracer tr("newmatrm");
+      Throw(InternalException("Dimensions differ in Divide"));
+   }
+   // while (i--) { *s = *s1 / r; s += d; s1 += d1; }
+   if (i) for (;;) { *s = *s1 / r; if (!(--i)) break; s += d; s1 += d1; }
+}
+
+void RectMatrixRowCol::Divide(Real r)
+{
+   REPORT
+   int i = n; Real* s = store; int d = spacing;
+   // while (i--) { *s /= r; s += d; }
+   if (i) for (;;) { *s /= r; if (!(--i)) break; s += d; }
+}
+
+void RectMatrixRowCol::Negate()
+{
+   REPORT
+   int i = n; Real* s = store; int d = spacing;
+   // while (i--) { *s = - *s; s += d; }
+   if (i) for (;;) { *s = - *s; if (!(--i)) break; s += d; }
+}
+
+void RectMatrixRowCol::Zero()
+{
+   REPORT
+   int i = n; Real* s = store; int d = spacing;
+   // while (i--) { *s = 0.0; s += d; }
+   if (i) for (;;) { *s = 0.0; if (!(--i)) break; s += d; }
+}
+
+void ComplexScale(RectMatrixCol& U, RectMatrixCol& V, Real x, Real y)
+{
+   REPORT
+   int n = U.n;
+   if (n != V.n)
+   {
+      Tracer tr("newmatrm");
+      Throw(InternalException("Dimensions differ in ComplexScale"));
+   }
+   Real* u = U.store; Real* v = V.store; 
+   int su = U.spacing; int sv = V.spacing;
+   //while (n--)
+   //{
+   //   Real z = *u * x - *v * y;  *v =  *u * y + *v * x;  *u = z;
+   //   u += su;  v += sv;
+   //}
+   if (n) for (;;)
+   {
+      Real z = *u * x - *v * y;  *v =  *u * y + *v * x;  *u = z;
+      if (!(--n)) break;
+      u += su;  v += sv;
+   }
+}
+
+void Rotate(RectMatrixCol& U, RectMatrixCol& V, Real tau, Real s)
+{
+   REPORT
+   //  (U, V) = (U, V) * (c, s)  where  tau = s/(1+c), c^2 + s^2 = 1
+   int n = U.n;
+   if (n != V.n)
+   {
+      Tracer tr("newmatrm");
+      Throw(InternalException("Dimensions differ in Rotate"));
+   }
+   Real* u = U.store; Real* v = V.store;
+   int su = U.spacing; int sv = V.spacing;
+   //while (n--)
+   //{
+   //   Real zu = *u; Real zv = *v;
+   //   *u -= s * (zv + zu * tau); *v += s * (zu - zv * tau);
+   //   u += su;  v += sv;
+   //}
+   if (n) for(;;)
+   {
+      Real zu = *u; Real zv = *v;
+      *u -= s * (zv + zu * tau); *v += s * (zu - zv * tau);
+      if (!(--n)) break;
+      u += su;  v += sv;
+   }
+}
+
+
+// misc procedures for numerical things
+
+Real pythag(Real f, Real g, Real& c, Real& s)
+// return z=sqrt(f*f+g*g), c=f/z, s=g/z
+// set c=1,s=0 if z==0
+// avoid floating point overflow or divide by zero
+{
+   if (f==0 && g==0) { c=1.0; s=0.0; return 0.0; }
+   Real af = f>=0 ? f : -f;
+   Real ag = g>=0 ? g : -g;
+   if (ag<af)
+   {
+      REPORT
+      Real h = g/f; Real sq = sqrt(1.0+h*h);
+      if (f<0) sq = -sq;           // make return value non-negative
+      c = 1.0/sq; s = h/sq; return sq*f;
+   }
+   else
+   {
+      REPORT
+      Real h = f/g; Real sq = sqrt(1.0+h*h);
+      if (g<0) sq = -sq;
+      s = 1.0/sq; c = h/sq; return sq*g;
+   }
+}
+
+
+
+
+#ifdef use_namespace
+}
+#endif
+
+
+///@}
Index: branches/BNC_LM/newmat/newmatrm.h
===================================================================
--- branches/BNC_LM/newmat/newmatrm.h	(revision 3570)
+++ branches/BNC_LM/newmat/newmatrm.h	(revision 3570)
@@ -0,0 +1,156 @@
+/// \ingroup newmat
+///@{
+
+/// \file newmatrm.h
+/// Rectangular matrix operations.
+
+// Copyright (C) 1991,2,3,4: R B Davies
+
+#ifndef NEWMATRM_LIB
+#define NEWMATRM_LIB 0
+
+#ifdef use_namespace
+namespace NEWMAT {
+#endif
+
+
+class RectMatrixCol;
+
+/// Access rows and columns of a rectangular matrix.
+/// \internal
+class RectMatrixRowCol
+{
+protected:
+#ifdef use_namespace              // to make namespace work
+public:
+#endif
+   Real* store;                   // pointer to storage
+   int n;                         // number of elements
+   int spacing;                   // space between elements
+   int shift;                     // space between cols or rows
+   RectMatrixRowCol(Real* st, int nx, int sp, int sh)
+      : store(st), n(nx), spacing(sp), shift(sh) {}
+   void Reset(Real* st, int nx, int sp, int sh)
+      { store=st; n=nx; spacing=sp; shift=sh; }
+public:
+   Real operator*(const RectMatrixRowCol&) const;         // dot product
+   void AddScaled(const RectMatrixRowCol&, Real);         // add scaled
+   void Divide(const RectMatrixRowCol&, Real);            // scaling
+   void Divide(Real);                                     // scaling
+   void Negate();                                         // change sign
+   void Zero();                                           // zero row col
+   Real& operator[](int i) { return *(store+i*spacing); } // element
+   Real SumSquare() const;                                // sum of squares
+   Real& First() { return *store; }                       // get first element
+   void DownDiag() { store += (shift+spacing); n--; }
+   void UpDiag() { store -= (shift+spacing); n++; }
+   friend void ComplexScale(RectMatrixCol&, RectMatrixCol&, Real, Real);
+   friend void Rotate(RectMatrixCol&, RectMatrixCol&, Real, Real);
+   FREE_CHECK(RectMatrixRowCol)
+};
+
+/// Access rows of a rectangular matrix.
+/// \internal
+class RectMatrixRow : public RectMatrixRowCol
+{
+public:
+   RectMatrixRow(const Matrix&, int, int, int);
+   RectMatrixRow(const Matrix&, int);
+   void Reset(const Matrix&, int, int, int);
+   void Reset(const Matrix&, int);
+   Real& operator[](int i) { return *(store+i); }
+   void Down() { store += shift; }
+   void Right() { store++; n--; }
+   void Up() { store -= shift; }
+   void Left() { store--; n++; }
+   FREE_CHECK(RectMatrixRow)
+};
+
+/// Access columns of a rectangular matrix.
+/// \internal
+class RectMatrixCol : public RectMatrixRowCol
+{
+public:
+   RectMatrixCol(const Matrix&, int, int, int);
+   RectMatrixCol(const Matrix&, int);
+   void Reset(const Matrix&, int, int, int);
+   void Reset(const Matrix&, int);
+   void Down() { store += spacing; n--; }
+   void Right() { store++; }
+   void Up() { store -= spacing; n++; }
+   void Left() { store--; }
+   friend void ComplexScale(RectMatrixCol&, RectMatrixCol&, Real, Real);
+   friend void Rotate(RectMatrixCol&, RectMatrixCol&, Real, Real);
+   FREE_CHECK(RectMatrixCol)
+};
+
+/// Access diagonal of a rectangular matrix.
+/// \internal
+class RectMatrixDiag : public RectMatrixRowCol
+{
+public:
+   RectMatrixDiag(const DiagonalMatrix& D)
+      : RectMatrixRowCol(D.Store(), D.Nrows(), 1, 1) {}
+   Real& operator[](int i) { return *(store+i); }
+   void DownDiag() { store++; n--; }
+   void UpDiag() { store--; n++; }
+   FREE_CHECK(RectMatrixDiag)
+};
+
+
+
+
+inline RectMatrixRow::RectMatrixRow
+   (const Matrix& M, int row, int skip, int length)
+   : RectMatrixRowCol( M.Store()+row*M.Ncols()+skip, length, 1, M.Ncols() ) {}
+
+inline RectMatrixRow::RectMatrixRow (const Matrix& M, int row)
+   : RectMatrixRowCol( M.Store()+row*M.Ncols(), M.Ncols(), 1, M.Ncols() ) {}
+
+inline RectMatrixCol::RectMatrixCol
+   (const Matrix& M, int skip, int col, int length)
+   : RectMatrixRowCol( M.Store()+col+skip*M.Ncols(), length, M.Ncols(), 1 ) {}
+
+inline RectMatrixCol::RectMatrixCol (const Matrix& M, int col)
+   : RectMatrixRowCol( M.Store()+col, M.Nrows(), M.Ncols(), 1 ) {}
+
+inline Real square(Real x) { return x*x; }
+inline Real sign(Real x, Real y)
+   { return (y>=0) ? x : -x; }                    // assume x >=0
+
+
+// Misc numerical things
+
+Real pythag(Real f, Real g, Real& c, Real& s);
+
+inline void GivensRotation(Real cGivens, Real sGivens, Real& x, Real& y)
+{
+   // allow for possibility &x = &y
+   Real tmp0 = cGivens * x + sGivens * y;
+   Real tmp1 = -sGivens * x + cGivens * y;
+   x = tmp0; y = tmp1;
+}
+   
+inline void GivensRotationR(Real cGivens, Real sGivens, Real& x, Real& y)
+{
+   // also change sign of y
+   // allow for possibility &x = &y
+   Real tmp0 = cGivens * x + sGivens * y;
+   Real tmp1 = sGivens * x - cGivens * y;
+   x = tmp0; y = tmp1;
+}   
+
+
+
+
+
+#ifdef use_namespace
+}
+#endif
+
+#endif
+
+// body file: newmatrm.cpp
+
+
+///@}
Index: branches/BNC_LM/newmat/nm_misc.cpp
===================================================================
--- branches/BNC_LM/newmat/nm_misc.cpp	(revision 3570)
+++ branches/BNC_LM/newmat/nm_misc.cpp	(revision 3570)
@@ -0,0 +1,147 @@
+/// \ingroup newmat
+///@{
+
+/// \file nm_misc.cpp
+/// Miscellaneous programs.
+
+#define WANT_MATH
+
+#include "include.h"
+
+#include "newmatap.h"
+
+#ifdef use_namespace
+namespace NEWMAT {
+#endif
+
+
+#ifdef DO_REPORT
+#define REPORT { static ExeCounter ExeCount(__LINE__,21); ++ExeCount; }
+#else
+#define REPORT {}
+#endif
+
+ReturnMatrix Helmert(int n, bool full)
+{
+   REPORT
+   Tracer et("Helmert ");
+   if (n <= 0) Throw(ProgramException("Dimension <= 0 "));
+   Matrix H;
+   
+   if (full) H.resize(n,n); else H.resize(n-1,n);
+   H = 0.0;
+   for (int i = 1; i < n; ++i)
+   {
+      Real f = 1.0 / sqrt((Real)i * (i+1));
+      H.submatrix(i,i,1,i) = -f; H(i,i+1) = f * i;
+   }
+   if (full) { H.row(n) = 1.0 / sqrt((Real)n); }
+   H.release(); return H.for_return();
+} 
+
+
+
+// Multiply X by n-1 x n matrix to give n-1 contrasts
+// Return a ColumnVector
+ReturnMatrix Helmert(const ColumnVector& X, bool full)
+{
+   REPORT
+   Tracer et("Helmert * CV");
+   int n = X.nrows();
+   if (n == 0) Throw(ProgramException("X Vector of length 0", X));
+   Real sum = 0.0; ColumnVector Y;
+   if (full) Y.resize(n); else Y.resize(n-1);
+   for (int i = 1; i < n; ++i)
+      { sum += X(i); Y(i) = (i * X(i+1) - sum) / sqrt((Real)i * (i+1)); }
+   if (full) { sum += X(n); Y(n) = sum / sqrt((Real)n); }
+   Y.release(); return Y.for_return();
+} 
+
+// same as above for X a ColumnVector, length n, element j = 1; otherwise 0
+ReturnMatrix Helmert(int n, int j, bool full)
+{
+   REPORT
+   Tracer et("Helmert:single element ");
+   if (n <= 0) Throw(ProgramException("X Vector of length <= 0"));
+   if (j > n || j <= 0)
+      Throw(ProgramException("Out of range element number "));
+   ColumnVector Y; if (full) Y.resize(n); else Y.resize(n-1);
+   Y = 0.0;
+   if (j > 1) Y(j-1) = sqrt((Real)(j-1) / (Real)j);
+   for (int i = j; i < n; ++i) Y(i) = - 1.0 / sqrt((Real)i * (i+1));
+   if (full) Y(n) = 1.0 / sqrt((Real)n);
+   Y.release(); return Y.for_return();
+} 
+
+ReturnMatrix Helmert_transpose(const ColumnVector& Y, bool full)
+{
+   REPORT
+   Tracer et("Helmert_transpose * CV ");
+   int n = Y.nrows(); Real sum;
+   if (full) sum = Y(n) / sqrt((Real)n); else { sum = 0.0; ++n; }
+   ColumnVector X(n);
+   for (int i = n-1; i > 0; --i)
+   {
+      Real Yi = Y(i) / sqrt((Real)i * (i+1));
+      X(i+1) = i * Yi + sum; sum -= Yi;
+   }
+   X(1) = sum;
+   X.release(); return X.for_return();
+}
+
+// same as above but want only j-th element
+Real Helmert_transpose(const ColumnVector& Y, int j, bool full)
+{
+   REPORT
+   Tracer et("Helmert_transpose:single element ");
+   int n = Y.nrows(); Real sum;
+   if (full) sum = Y(n) / sqrt((Real)n); else { sum = 0.0; ++n; }
+   if (j > n || j <= 0) Throw(IndexException(j, Y));
+   for (int i = n-1; i > 0; --i)
+   {
+      Real Yi = Y(i) / sqrt((Real)i * (i+1));
+      if (i+1 == j) return i * Yi + sum;
+      sum -= Yi;
+   }
+   return sum;
+}
+
+ReturnMatrix Helmert(const Matrix& X, bool full)
+{
+   REPORT
+   Tracer et("Helmert * Matrix");
+   int m = X.nrows(); int n = X.ncols();
+   if (m == 0) Throw(ProgramException("Matrix has 0 rows ", X));
+   Matrix Y;
+   if (full) Y.resize(m,n); else Y.resize(m-1, n);
+   for (int j = 1; j <= n; ++j)
+   {
+      ColumnVector CV = X.Column(j);
+      Y.Column(j) = Helmert(CV, full);
+   }
+   Y.release(); return Y.for_return();
+}
+
+ReturnMatrix Helmert_transpose(const Matrix& Y, bool full)
+{
+   REPORT
+   Tracer et("Helmert_transpose * Matrix ");
+   int m = Y.nrows(); int n = Y.ncols(); if (!full) ++m;
+   Matrix X(m, n);
+   for (int j = 1; j <= n; ++j)
+   {
+      ColumnVector CV = Y.Column(j);
+      X.Column(j) = Helmert_transpose(CV, full);
+   }
+   X.release(); return X.for_return();
+}
+
+
+
+
+#ifdef use_namespace
+}
+#endif
+
+
+///@}
Index: branches/BNC_LM/newmat/precisio.h
===================================================================
--- branches/BNC_LM/newmat/precisio.h	(revision 3570)
+++ branches/BNC_LM/newmat/precisio.h	(revision 3570)
@@ -0,0 +1,264 @@
+/// \ingroup newmat
+///@{
+
+/// \file precisio.h
+/// Floating point precision constants.
+
+#ifndef PRECISION_LIB
+#define PRECISION_LIB 0
+
+#define WANT_MATH
+#include "include.h"              // in case being used as stand alone
+
+#ifdef _STANDARD_                 // standard library available
+#include <limits>
+#endif
+
+#ifdef use_namespace
+namespace NEWMAT {
+#endif
+
+#ifdef _STANDARD_                 // standard library available
+
+#ifdef OPT_COMPATIBLE
+#include <cfloat>                 // for FLT_MAX
+#endif
+
+/// Floating point precision.
+class FloatingPointPrecision
+{
+public:
+   static int Dig()              // number of decimal digits or precision
+      { return std::numeric_limits<Real>::digits10 ; }
+
+   static Real Epsilon()         // smallest number such that 1+Eps!=Eps
+      { return std::numeric_limits<Real>::epsilon(); }
+
+   static int Mantissa()         // bits in mantisa
+      { return std::numeric_limits<Real>::digits; }
+
+   static Real Maximum()         // maximum value
+      { return std::numeric_limits<Real>::max(); }
+
+   static int MaximumDecimalExponent()  // maximum decimal exponent
+      { return std::numeric_limits<Real>::max_exponent10; }
+
+   static int MaximumExponent()  // maximum binary exponent
+      { return std::numeric_limits<Real>::max_exponent; }
+
+   static Real LnMaximum()       // natural log of maximum
+      { return (Real)log(Maximum()); }
+
+   static Real Minimum()         // minimum positive value
+      { return std::numeric_limits<Real>::min(); } 
+
+   static int MinimumDecimalExponent() // minimum decimal exponent
+      { return std::numeric_limits<Real>::min_exponent10; }
+
+   static int MinimumExponent()  // minimum binary exponent
+      { return std::numeric_limits<Real>::min_exponent; }
+
+   static Real LnMinimum()       // natural log of minimum
+      { return (Real)log(Minimum()); }
+
+   static int Radix()            // exponent radix
+      { return std::numeric_limits<Real>::radix; }
+
+   static int Rounds()           // addition rounding (1 = does round)
+   {
+	  return std::numeric_limits<Real>::round_style ==
+		 std::round_to_nearest ? 1 : 0;
+   }
+
+};
+
+
+#else                              // _STANDARD_ not defined
+
+#ifndef SystemV                    // if there is float.h
+
+#ifdef USING_FLOAT
+
+/// Floating point precision (type float).
+class FloatingPointPrecision
+{
+public:
+   static int Dig()
+      { return FLT_DIG; }        // number of decimal digits or precision
+
+   static Real Epsilon()
+      { return FLT_EPSILON; }    // smallest number such that 1+Eps!=Eps
+
+   static int Mantissa()
+      { return FLT_MANT_DIG; }   // bits in mantisa
+
+   static Real Maximum()
+      { return FLT_MAX; }        // maximum value
+
+   static int MaximumDecimalExponent()
+      { return FLT_MAX_10_EXP; } // maximum decimal exponent
+
+   static int MaximumExponent()
+      { return FLT_MAX_EXP; }    // maximum binary exponent
+
+   static Real LnMaximum()
+      { return (Real)log(Maximum()); } // natural log of maximum
+
+   static Real Minimum()
+      { return FLT_MIN; }        // minimum positive value
+
+   static int MinimumDecimalExponent()
+      { return FLT_MIN_10_EXP; } // minimum decimal exponent
+
+   static int MinimumExponent()
+      { return FLT_MIN_EXP; }    // minimum binary exponent
+
+   static Real LnMinimum()
+      { return (Real)log(Minimum()); } // natural log of minimum
+
+   static int Radix()
+      { return FLT_RADIX; }      // exponent radix
+
+   static int Rounds()
+      { return FLT_ROUNDS; }     // addition rounding (1 = does round)
+
+};
+
+#endif                           // USING_FLOAT
+
+
+#ifdef USING_DOUBLE
+
+/// Floating point precision (type double).
+class FloatingPointPrecision
+{
+public:
+
+   static int Dig()
+      { return DBL_DIG; }        // number of decimal digits or precision
+
+   static Real Epsilon()
+      { return DBL_EPSILON; }    // smallest number such that 1+Eps!=Eps
+
+   static int Mantissa()
+      { return DBL_MANT_DIG; }   // bits in mantisa
+
+   static Real Maximum()
+      { return DBL_MAX; }        // maximum value
+
+   static int MaximumDecimalExponent()
+      { return DBL_MAX_10_EXP; } // maximum decimal exponent
+
+   static int MaximumExponent()
+      { return DBL_MAX_EXP; }    // maximum binary exponent
+
+   static Real LnMaximum()
+      { return (Real)log(Maximum()); } // natural log of maximum
+
+   static Real Minimum()
+   {
+//#ifdef __BCPLUSPLUS__
+//       return 2.225074e-308;     // minimum positive value
+//#else
+       return DBL_MIN;
+//#endif
+   }
+
+   static int MinimumDecimalExponent()
+      { return DBL_MIN_10_EXP; } // minimum decimal exponent
+
+   static int MinimumExponent()
+      { return DBL_MIN_EXP; }    // minimum binary exponent
+
+   static Real LnMinimum()
+      { return (Real)log(Minimum()); } // natural log of minimum
+
+
+   static int Radix()
+      { return FLT_RADIX; }      // exponent radix
+
+   static int Rounds()
+      { return FLT_ROUNDS; }     // addition rounding (1 = does round)
+
+};
+
+#endif                             // USING_DOUBLE
+
+#else                              // if there is no float.h
+
+#ifdef OPT_COMPATIBLE
+#define FLT_MAX MAXFLOAT
+#endif
+
+
+#ifdef USING_FLOAT
+
+/// Floating point precision (type float).
+class FloatingPointPrecision
+{
+public:
+
+   static Real Epsilon()
+      { return pow(2.0,(int)(1-FSIGNIF)); }
+                                   // smallest number such that 1+Eps!=Eps
+
+   static Real Maximum()
+      { return MAXFLOAT; }            // maximum value
+
+   static Real LnMaximum()
+      { return (Real)log(Maximum()); }  // natural log of maximum
+
+   static Real Minimum()
+      { return MINFLOAT; }             // minimum positive value
+
+   static Real LnMinimum()
+      { return (Real)log(Minimum()); }  // natural log of minimum
+
+};
+
+#endif                                  // USING_FLOAT
+
+
+#ifdef USING_DOUBLE
+
+/// Floating point precision (type double).
+class FloatingPointPrecision
+{
+public:
+
+   static Real Epsilon()
+      { return pow(2.0,(int)(1-DSIGNIF)); }
+                                      // smallest number such that 1+Eps!=Eps
+
+   static Real Maximum()
+      { return MAXDOUBLE; }           // maximum value
+
+   static Real LnMaximum()
+      { return LN_MAXDOUBLE; }        // natural log of maximum
+
+   static Real Minimum()
+      { return MINDOUBLE; }
+
+   static Real LnMinimum()
+      { return LN_MINDOUBLE; }        // natural log of minimum
+};
+
+#endif                                // USING_DOUBLE
+
+#endif                                // SystemV
+
+#endif                                // _STANDARD_
+
+
+
+
+#ifdef use_namespace
+}
+#endif                                // use_namespace
+
+
+
+#endif                                // PRECISION_LIB
+
+
+///@}
Index: branches/BNC_LM/newmat/sort.cpp
===================================================================
--- branches/BNC_LM/newmat/sort.cpp	(revision 3570)
+++ branches/BNC_LM/newmat/sort.cpp	(revision 3570)
@@ -0,0 +1,277 @@
+/// \ingroup newmat
+///@{
+
+/// \file sort.cpp
+/// Sorting functions.
+
+// Copyright (C) 1991,2,3,4: R B Davies
+
+#define WANT_MATH
+
+#include "include.h"
+
+#include "newmatap.h"
+
+#ifdef use_namespace
+namespace NEWMAT {
+#endif
+
+#ifdef DO_REPORT
+#define REPORT { static ExeCounter ExeCount(__LINE__,13); ++ExeCount; }
+#else
+#define REPORT {}
+#endif
+
+/******************************** Quick sort ********************************/
+
+// Quicksort.
+// Essentially the method described in Sedgewick s algorithms in C++
+// My version is still partially recursive, unlike Segewick s, but the
+// smallest segment of each split is used in the recursion, so it should
+// not overlead the stack.
+
+// If the process does not seems to be converging an exception is thrown.
+
+
+#define DoSimpleSort 17            // when to switch to insert sort
+#define MaxDepth 50                // maximum recursion depth
+
+static void MyQuickSortDescending(Real* first, Real* last, int depth);
+static void InsertionSortDescending(Real* first, const int length,
+   int guard);
+static Real SortThreeDescending(Real* a, Real* b, Real* c);
+
+static void MyQuickSortAscending(Real* first, Real* last, int depth);
+static void InsertionSortAscending(Real* first, const int length,
+   int guard);
+
+
+void sort_descending(GeneralMatrix& GM)
+{
+   REPORT
+   Tracer et("sort_descending");
+
+   Real* data = GM.Store(); int max = GM.Storage();
+
+   if (max > DoSimpleSort) MyQuickSortDescending(data, data + max - 1, 0);
+   InsertionSortDescending(data, max, DoSimpleSort);
+
+}
+
+static Real SortThreeDescending(Real* a, Real* b, Real* c)
+{
+   // sort *a, *b, *c; return *b; optimise for already sorted
+   if (*a >= *b)
+   {
+      if (*b >= *c) { REPORT return *b; }
+      else if (*a >= *c) { REPORT Real x = *c; *c = *b; *b = x; return x; }
+      else { REPORT Real x = *a; *a = *c; *c = *b; *b = x; return x; }
+   }
+   else if (*c >= *b) { REPORT Real x = *c; *c = *a; *a = x; return *b; }
+   else if (*a >= *c) { REPORT Real x = *a; *a = *b; *b = x; return x; }
+   else { REPORT Real x = *c; *c = *a; *a = *b; *b = x; return x; }
+}
+
+static void InsertionSortDescending(Real* first, const int length,
+   int guard)
+// guard gives the length of the sequence to scan to find first
+// element (eg = length)
+{
+   REPORT
+   if (length <= 1) return;
+
+   // scan for first element
+   Real* f = first; Real v = *f; Real* h = f;
+   if (guard > length) { REPORT guard = length; }
+   int i = guard - 1;
+   while (i--) if (v < *(++f)) { v = *f; h = f; }
+   *h = *first; *first = v;
+
+   // do the sort
+   i = length - 1; f = first;
+   while (i--)
+   {
+      Real* g = f++; h = f; v = *h;
+      while (*g < v) *h-- = *g--;
+      *h = v;
+   }
+}
+
+static void MyQuickSortDescending(Real* first, Real* last, int depth)
+{
+   REPORT
+   for (;;)
+   {
+      const int length = last - first + 1;
+      if (length < DoSimpleSort) { REPORT return; }
+      if (depth++ > MaxDepth)
+         Throw(ConvergenceException("QuickSortDescending fails: "));
+      Real* centre = first + length/2;
+      const Real test = SortThreeDescending(first, centre, last);
+      Real* f = first; Real* l = last;
+      for (;;)
+      {
+         while (*(++f) > test) {}
+         while (*(--l) < test) {}
+         if (l <= f) break;
+         const Real temp = *f; *f = *l; *l = temp;
+      }
+      if (f > centre)
+         { REPORT MyQuickSortDescending(l+1, last, depth); last = f-1; }
+      else { REPORT MyQuickSortDescending(first, f-1, depth); first = l+1; }
+   }
+}
+
+void sort_ascending(GeneralMatrix& GM)
+{
+   REPORT
+   Tracer et("sort_ascending");
+
+   Real* data = GM.Store(); int max = GM.Storage();
+
+   if (max > DoSimpleSort) MyQuickSortAscending(data, data + max - 1, 0);
+   InsertionSortAscending(data, max, DoSimpleSort);
+
+}
+
+static void InsertionSortAscending(Real* first, const int length,
+   int guard)
+// guard gives the length of the sequence to scan to find first
+// element (eg guard = length)
+{
+   REPORT
+   if (length <= 1) return;
+
+   // scan for first element
+   Real* f = first; Real v = *f; Real* h = f;
+   if (guard > length) { REPORT guard = length; }
+   int i = guard - 1;
+   while (i--) if (v > *(++f)) { v = *f; h = f; }
+   *h = *first; *first = v;
+
+   // do the sort
+   i = length - 1; f = first;
+   while (i--)
+   {
+      Real* g = f++; h = f; v = *h;
+      while (*g > v) *h-- = *g--;
+      *h = v;
+   }
+}
+static void MyQuickSortAscending(Real* first, Real* last, int depth)
+{
+   REPORT
+   for (;;)
+   {
+      const int length = last - first + 1;
+      if (length < DoSimpleSort) { REPORT return; }
+      if (depth++ > MaxDepth)
+         Throw(ConvergenceException("QuickSortAscending fails: "));
+      Real* centre = first + length/2;
+      const Real test = SortThreeDescending(last, centre, first);
+      Real* f = first; Real* l = last;
+      for (;;)
+      {
+         while (*(++f) < test) {}
+         while (*(--l) > test) {}
+         if (l <= f) break;
+         const Real temp = *f; *f = *l; *l = temp;
+      }
+      if (f > centre)
+         { REPORT MyQuickSortAscending(l+1, last, depth); last = f-1; }
+      else { REPORT MyQuickSortAscending(first, f-1, depth); first = l+1; }
+   }
+}
+
+//********* sort diagonal matrix & rearrange matrix columns ****************
+
+// used by SVD
+
+// these are for sorting singular values - should be updated with faster
+// sorts that handle exchange of columns better
+// however time is probably not significant compared with SVD time
+
+void SortSV(DiagonalMatrix& D, Matrix& U, bool ascending)
+{
+   REPORT
+   Tracer trace("SortSV_DU");
+   int m = U.Nrows(); int n = U.Ncols();
+   if (n != D.Nrows()) Throw(IncompatibleDimensionsException(D,U));
+   Real* u = U.Store();
+   for (int i=0; i<n; i++)
+   {
+      int k = i; Real p = D.element(i);
+      if (ascending)
+      {
+         for (int j=i+1; j<n; j++)
+            { if (D.element(j) < p) { k = j; p = D.element(j); } }
+      }
+      else
+      {
+         for (int j=i+1; j<n; j++)
+         { if (D.element(j) > p) { k = j; p = D.element(j); } }
+      }
+      if (k != i)
+      {
+         D.element(k) = D.element(i); D.element(i) = p; int j = m;
+         Real* uji = u + i; Real* ujk = u + k;
+         if (j) for(;;)
+         {
+            p = *uji; *uji = *ujk; *ujk = p;
+            if (!(--j)) break;
+            uji += n; ujk += n;
+         }
+      }
+   }
+}
+
+void SortSV(DiagonalMatrix& D, Matrix& U, Matrix& V, bool ascending)
+{
+   REPORT
+   Tracer trace("SortSV_DUV");
+   int mu = U.Nrows(); int mv = V.Nrows(); int n = D.Nrows();
+   if (n != U.Ncols()) Throw(IncompatibleDimensionsException(D,U));
+   if (n != V.Ncols()) Throw(IncompatibleDimensionsException(D,V));
+   Real* u = U.Store(); Real* v = V.Store();
+   for (int i=0; i<n; i++)
+   {
+      int k = i; Real p = D.element(i);
+      if (ascending)
+      {
+         for (int j=i+1; j<n; j++)
+            { if (D.element(j) < p) { k = j; p = D.element(j); } }
+      }
+      else
+      {
+         for (int j=i+1; j<n; j++)
+         { if (D.element(j) > p) { k = j; p = D.element(j); } }
+      }
+      if (k != i)
+      {
+         D.element(k) = D.element(i); D.element(i) = p;
+         Real* uji = u + i; Real* ujk = u + k;
+         Real* vji = v + i; Real* vjk = v + k;
+         int j = mu;
+         if (j) for(;;)
+         {
+            p = *uji; *uji = *ujk; *ujk = p; if (!(--j)) break;
+            uji += n; ujk += n;
+         }
+         j = mv;
+         if (j) for(;;)
+         {
+            p = *vji; *vji = *vjk; *vjk = p; if (!(--j)) break;
+            vji += n; vjk += n;
+         }
+      }
+   }
+}
+
+
+
+
+#ifdef use_namespace
+}
+#endif
+
+///@}
Index: branches/BNC_LM/newmat/submat.cpp
===================================================================
--- branches/BNC_LM/newmat/submat.cpp	(revision 3570)
+++ branches/BNC_LM/newmat/submat.cpp	(revision 3570)
@@ -0,0 +1,363 @@
+/// \ingroup newmat
+///@{
+
+/// \file submat.cpp
+/// Submatrix manipulation.
+
+// Copyright (C) 1991,2,3,4: R B Davies
+
+#include "include.h"
+
+#include "newmat.h"
+#include "newmatrc.h"
+
+#ifdef use_namespace
+namespace NEWMAT {
+#endif
+
+#ifdef DO_REPORT
+#define REPORT { static ExeCounter ExeCount(__LINE__,11); ++ExeCount; }
+#else
+#define REPORT {}
+#endif
+
+
+/****************************** submatrices *********************************/
+
+GetSubMatrix BaseMatrix::submatrix(int first_row, int last_row, int first_col,
+   int last_col) const
+{
+   REPORT
+   Tracer tr("submatrix");
+   int a = first_row - 1; int b = last_row - first_row + 1;
+   int c = first_col - 1; int d = last_col - first_col + 1;
+   if (a<0 || b<0 || c<0 || d<0) Throw(SubMatrixDimensionException());
+                             // allow zero rows or columns
+   return GetSubMatrix(this, a, b, c, d, false);
+}
+
+GetSubMatrix BaseMatrix::sym_submatrix(int first_row, int last_row) const
+{
+   REPORT
+   Tracer tr("sym_submatrix");
+   int a = first_row - 1; int b = last_row - first_row + 1;
+   if (a<0 || b<0) Throw(SubMatrixDimensionException());
+                             // allow zero rows or columns
+   return GetSubMatrix( this, a, b, a, b, true);
+}
+
+GetSubMatrix BaseMatrix::row(int first_row) const
+{
+   REPORT
+   Tracer tr("SubMatrix(row)");
+   int a = first_row - 1;
+   if (a<0) Throw(SubMatrixDimensionException());
+   return GetSubMatrix(this, a, 1, 0, -1, false);
+}
+
+GetSubMatrix BaseMatrix::rows(int first_row, int last_row) const
+{
+   REPORT
+   Tracer tr("SubMatrix(rows)");
+   int a = first_row - 1; int b = last_row - first_row + 1;
+   if (a<0 || b<0) Throw(SubMatrixDimensionException());
+                             // allow zero rows or columns
+   return GetSubMatrix(this, a, b, 0, -1, false);
+}
+
+GetSubMatrix BaseMatrix::column(int first_col) const
+{
+   REPORT
+   Tracer tr("SubMatrix(column)");
+   int c = first_col - 1;
+   if (c<0) Throw(SubMatrixDimensionException());
+   return GetSubMatrix(this, 0, -1, c, 1, false);
+}
+
+GetSubMatrix BaseMatrix::columns(int first_col, int last_col) const
+{
+   REPORT
+   Tracer tr("SubMatrix(columns)");
+   int c = first_col - 1; int d = last_col - first_col + 1;
+   if (c<0 || d<0) Throw(SubMatrixDimensionException());
+                             // allow zero rows or columns
+   return GetSubMatrix(this, 0, -1, c, d, false);
+}
+
+void GetSubMatrix::SetUpLHS()
+{
+   REPORT
+   Tracer tr("SubMatrix(LHS)");
+   const BaseMatrix* bm1 = bm;
+   GeneralMatrix* gm1 = ((BaseMatrix*&)bm)->Evaluate();
+   if ((BaseMatrix*)gm1!=bm1)
+      Throw(ProgramException("Invalid LHS"));
+   if (row_number < 0) row_number = gm1->Nrows();
+   if (col_number < 0) col_number = gm1->Ncols();
+   if (row_skip+row_number > gm1->Nrows()
+      || col_skip+col_number > gm1->Ncols())
+         Throw(SubMatrixDimensionException());
+}
+
+void GetSubMatrix::operator<<(const BaseMatrix& bmx)
+{
+   REPORT
+   Tracer tr("SubMatrix(<<)"); GeneralMatrix* gmx = 0;
+   Try
+   {
+      SetUpLHS(); gmx = ((BaseMatrix&)bmx).Evaluate();
+      if (row_number != gmx->Nrows() || col_number != gmx->Ncols())
+         Throw(IncompatibleDimensionsException());
+      MatrixRow mrx(gmx, LoadOnEntry);
+      MatrixRow mr(gm, LoadOnEntry+StoreOnExit+DirectPart, row_skip);
+                                     // do need LoadOnEntry
+      MatrixRowCol sub; int i = row_number;
+      while (i--)
+      {
+         mr.SubRowCol(sub, col_skip, col_number);   // put values in sub
+         sub.Copy(mrx); mr.Next(); mrx.Next();
+      }
+      gmx->tDelete();
+   }
+
+   CatchAll
+   {
+      if (gmx) gmx->tDelete();
+      ReThrow;
+   }
+}
+
+void GetSubMatrix::operator=(const BaseMatrix& bmx)
+{
+   REPORT
+   Tracer tr("SubMatrix(=)"); GeneralMatrix* gmx = 0;
+   // MatrixConversionCheck mcc;         // Check for loss of info
+   Try
+   {
+      SetUpLHS(); gmx = ((BaseMatrix&)bmx).Evaluate();
+      if (row_number != gmx->Nrows() || col_number != gmx->Ncols())
+         Throw(IncompatibleDimensionsException());
+      LoadAndStoreFlag lasf =
+         (  row_skip == col_skip
+            && gm->type().is_symmetric()
+            && gmx->type().is_symmetric() )
+        ? LoadOnEntry+DirectPart
+        : LoadOnEntry;
+      MatrixRow mrx(gmx, lasf);
+      MatrixRow mr(gm, LoadOnEntry+StoreOnExit+DirectPart, row_skip);
+                                     // do need LoadOnEntry
+      MatrixRowCol sub; int i = row_number;
+      while (i--)
+      {
+         mr.SubRowCol(sub, col_skip, col_number);   // put values in sub
+         sub.CopyCheck(mrx); mr.Next(); mrx.Next();
+      }
+      gmx->tDelete();
+   }
+
+   CatchAll
+   {
+      if (gmx) gmx->tDelete();
+      ReThrow;
+   }
+}
+
+void GetSubMatrix::operator<<(const double* r)
+{
+   REPORT
+   Tracer tr("SubMatrix(<<double*)");
+   SetUpLHS();
+   if (row_skip+row_number > gm->Nrows() || col_skip+col_number > gm->Ncols())
+      Throw(SubMatrixDimensionException());
+   MatrixRow mr(gm, LoadOnEntry+StoreOnExit+DirectPart, row_skip);
+                                  // do need LoadOnEntry
+   MatrixRowCol sub; int i = row_number;
+   while (i--)
+   {
+      mr.SubRowCol(sub, col_skip, col_number);   // put values in sub
+      sub.Copy(r); mr.Next();
+   }
+}
+
+void GetSubMatrix::operator<<(const float* r)
+{
+   REPORT
+   Tracer tr("SubMatrix(<<float*)");
+   SetUpLHS();
+   if (row_skip+row_number > gm->Nrows() || col_skip+col_number > gm->Ncols())
+      Throw(SubMatrixDimensionException());
+   MatrixRow mr(gm, LoadOnEntry+StoreOnExit+DirectPart, row_skip);
+                                  // do need LoadOnEntry
+   MatrixRowCol sub; int i = row_number;
+   while (i--)
+   {
+      mr.SubRowCol(sub, col_skip, col_number);   // put values in sub
+      sub.Copy(r); mr.Next();
+   }
+}
+
+void GetSubMatrix::operator<<(const int* r)
+{
+   REPORT
+   Tracer tr("SubMatrix(<<int*)");
+   SetUpLHS();
+   if (row_skip+row_number > gm->Nrows() || col_skip+col_number > gm->Ncols())
+      Throw(SubMatrixDimensionException());
+   MatrixRow mr(gm, LoadOnEntry+StoreOnExit+DirectPart, row_skip);
+                                  // do need LoadOnEntry
+   MatrixRowCol sub; int i = row_number;
+   while (i--)
+   {
+      mr.SubRowCol(sub, col_skip, col_number);   // put values in sub
+      sub.Copy(r); mr.Next();
+   }
+}
+
+void GetSubMatrix::operator=(Real r)
+{
+   REPORT
+   Tracer tr("SubMatrix(=Real)");
+   SetUpLHS();
+   MatrixRow mr(gm, LoadOnEntry+StoreOnExit+DirectPart, row_skip);
+                                  // do need LoadOnEntry
+   MatrixRowCol sub; int i = row_number;
+   while (i--)
+   {
+      mr.SubRowCol(sub, col_skip, col_number);   // put values in sub
+      sub.Copy(r); mr.Next();
+   }
+}
+
+void GetSubMatrix::inject(const GeneralMatrix& gmx)
+{
+   REPORT
+   Tracer tr("SubMatrix(inject)");
+   SetUpLHS();
+   if (row_number != gmx.Nrows() || col_number != gmx.Ncols())
+      Throw(IncompatibleDimensionsException());
+   MatrixRow mrx((GeneralMatrix*)(&gmx), LoadOnEntry);
+   MatrixRow mr(gm, LoadOnEntry+StoreOnExit+DirectPart, row_skip);
+                                  // do need LoadOnEntry
+   MatrixRowCol sub; int i = row_number;
+   while (i--)
+   {
+      mr.SubRowCol(sub, col_skip, col_number);   // put values in sub
+      sub.Inject(mrx); mr.Next(); mrx.Next();
+   }
+}
+
+void GetSubMatrix::operator+=(const BaseMatrix& bmx)
+{
+   REPORT
+   Tracer tr("SubMatrix(+=)"); GeneralMatrix* gmx = 0;
+   // MatrixConversionCheck mcc;         // Check for loss of info
+   Try
+   {
+      SetUpLHS(); gmx = ((BaseMatrix&)bmx).Evaluate();
+      if (row_number != gmx->Nrows() || col_number != gmx->Ncols())
+         Throw(IncompatibleDimensionsException());
+      MatrixRow mrx(gmx, LoadOnEntry);
+      MatrixRow mr(gm, LoadOnEntry+StoreOnExit+DirectPart, row_skip);
+                                     // do need LoadOnEntry
+      MatrixRowCol sub; int i = row_number;
+      while (i--)
+      {
+         mr.SubRowCol(sub, col_skip, col_number);   // put values in sub
+         sub.Check(mrx);                            // check for loss of info
+         sub.Add(mrx); mr.Next(); mrx.Next();
+      }
+      gmx->tDelete();
+   }
+
+   CatchAll
+   {
+      if (gmx) gmx->tDelete();
+      ReThrow;
+   }
+}
+
+void GetSubMatrix::operator-=(const BaseMatrix& bmx)
+{
+   REPORT
+   Tracer tr("SubMatrix(-=)"); GeneralMatrix* gmx = 0;
+   // MatrixConversionCheck mcc;         // Check for loss of info
+   Try
+   {
+      SetUpLHS(); gmx = ((BaseMatrix&)bmx).Evaluate();
+      if (row_number != gmx->Nrows() || col_number != gmx->Ncols())
+         Throw(IncompatibleDimensionsException());
+      MatrixRow mrx(gmx, LoadOnEntry);
+      MatrixRow mr(gm, LoadOnEntry+StoreOnExit+DirectPart, row_skip);
+                                     // do need LoadOnEntry
+      MatrixRowCol sub; int i = row_number;
+      while (i--)
+      {
+         mr.SubRowCol(sub, col_skip, col_number);   // put values in sub
+         sub.Check(mrx);                            // check for loss of info
+         sub.Sub(mrx); mr.Next(); mrx.Next();
+      }
+      gmx->tDelete();
+   }
+
+   CatchAll
+   {
+      if (gmx) gmx->tDelete();
+      ReThrow;
+   }
+}
+
+void GetSubMatrix::operator+=(Real r)
+{
+   REPORT
+   Tracer tr("SubMatrix(+= or -= Real)");
+   // MatrixConversionCheck mcc;         // Check for loss of info
+   Try
+   {
+      SetUpLHS();
+      MatrixRow mr(gm, LoadOnEntry+StoreOnExit+DirectPart, row_skip);
+                                     // do need LoadOnEntry
+      MatrixRowCol sub; int i = row_number;
+      while (i--)
+      {
+         mr.SubRowCol(sub, col_skip, col_number);   // put values in sub
+         sub.Check();                               // check for loss of info
+         sub.Add(r); mr.Next();
+      }
+   }
+
+   CatchAll
+   {
+      ReThrow;
+   }
+}
+
+void GetSubMatrix::operator*=(Real r)
+{
+   REPORT
+   Tracer tr("SubMatrix(*= or /= Real)");
+   // MatrixConversionCheck mcc;         // Check for loss of info
+   Try
+   {
+      SetUpLHS();
+      MatrixRow mr(gm, LoadOnEntry+StoreOnExit+DirectPart, row_skip);
+                                     // do need LoadOnEntry
+      MatrixRowCol sub; int i = row_number;
+      while (i--)
+      {
+         mr.SubRowCol(sub, col_skip, col_number);   // put values in sub
+         sub.Multiply(r); mr.Next();
+      }
+   }
+
+   CatchAll
+   {
+      ReThrow;
+   }
+}
+
+#ifdef use_namespace
+}
+#endif
+
+///@}
+
Index: branches/BNC_LM/newmat/svd.cpp
===================================================================
--- branches/BNC_LM/newmat/svd.cpp	(revision 3570)
+++ branches/BNC_LM/newmat/svd.cpp	(revision 3570)
@@ -0,0 +1,209 @@
+/// \ingroup newmat
+///@{
+
+/// \file svd.cpp
+/// Singular value decomposition.
+
+// Copyright (C) 1991,2,3,4,5: R B Davies
+// Updated 17 July, 1995
+
+#define WANT_MATH
+
+#include "include.h"
+#include "newmatap.h"
+#include "newmatrm.h"
+#include "precisio.h"
+
+#ifdef use_namespace
+namespace NEWMAT {
+#endif
+
+#ifdef DO_REPORT
+#define REPORT { static ExeCounter ExeCount(__LINE__,15); ++ExeCount; }
+#else
+#define REPORT {}
+#endif
+
+
+
+
+void SVD(const Matrix& A, DiagonalMatrix& Q, Matrix& U, Matrix& V,
+   bool withU, bool withV)
+// from Wilkinson and Reinsch: "Handbook of Automatic Computation"
+{
+   REPORT
+   Tracer trace("SVD");
+   Real eps = FloatingPointPrecision::Epsilon();
+   Real tol = FloatingPointPrecision::Minimum()/eps;
+
+   int m = A.Nrows(); int n = A.Ncols();
+   if (m<n)
+      Throw(ProgramException("Want no. Rows >= no. Cols", A));
+   if (withV && &U == &V)
+      Throw(ProgramException("Need different matrices for U and V", U, V));
+   U = A; Real g = 0.0; Real f,h; Real x = 0.0; int i;
+   RowVector E(n); RectMatrixRow EI(E,0); Q.ReSize(n);
+   RectMatrixCol UCI(U,0); RectMatrixRow URI(U,0,1,n-1);
+
+   if (n) for (i=0;;)
+   {
+      EI.First() = g; Real ei = g; EI.Right(); Real s = UCI.SumSquare();
+      if (s<tol) { REPORT Q.element(i) = 0.0; }
+      else
+      {
+         REPORT
+         f = UCI.First(); g = -sign(sqrt(s), f); h = f*g-s; UCI.First() = f-g;
+         Q.element(i) = g; RectMatrixCol UCJ = UCI; int j=n-i;
+         while (--j) { UCJ.Right(); UCJ.AddScaled(UCI, (UCI*UCJ)/h); }
+      }
+
+      s = URI.SumSquare();
+      if (s<tol) { REPORT g = 0.0; }
+      else
+      {
+         REPORT
+         f = URI.First(); g = -sign(sqrt(s), f); URI.First() = f-g;
+         EI.Divide(URI,f*g-s); RectMatrixRow URJ = URI; int j=m-i;
+         while (--j) { URJ.Down(); URJ.AddScaled(EI, URI*URJ); }
+      }
+
+      Real y = fabs(Q.element(i)) + fabs(ei); if (x<y) { REPORT x = y; }
+      if (++i == n) { REPORT break; }
+      UCI.DownDiag(); URI.DownDiag();
+   }
+
+   if (withV)
+   {
+      REPORT
+      V.ReSize(n,n); V = 0.0; RectMatrixCol VCI(V,n-1,n-1,1);
+      if (n) { VCI.First() = 1.0; g=E.element(n-1); if (n!=1) URI.UpDiag(); }
+      for (i=n-2; i>=0; i--)
+      {
+         VCI.Left();
+         if (g!=0.0)
+         {
+            VCI.Divide(URI, URI.First()*g); int j = n-i;
+            RectMatrixCol VCJ = VCI;
+            while (--j) { VCJ.Right(); VCJ.AddScaled( VCI, (URI*VCJ) ); }
+         }
+         VCI.Zero(); VCI.Up(); VCI.First() = 1.0; g=E.element(i);
+         if (i==0) break;
+         URI.UpDiag();
+      }
+   }
+
+   if (withU)
+   {
+      REPORT
+      for (i=n-1; i>=0; i--)
+      {
+         g = Q.element(i); URI.Reset(U,i,i+1,n-i-1); URI.Zero();
+         if (g!=0.0)
+         {
+            h=UCI.First()*g; int j=n-i; RectMatrixCol UCJ = UCI;
+            while (--j)
+            {
+               UCJ.Right(); UCI.Down(); UCJ.Down(); Real s = UCI*UCJ;
+               UCI.Up(); UCJ.Up(); UCJ.AddScaled(UCI,s/h);
+            }
+            UCI.Divide(g);
+         }
+         else UCI.Zero();
+         UCI.First() += 1.0;
+         if (i==0) break;
+         UCI.UpDiag();
+      }
+   }
+
+   eps *= x;
+   for (int k=n-1; k>=0; k--)
+   {
+      Real z = -FloatingPointPrecision::Maximum(); // to keep Gnu happy
+      Real y; int limit = 50; int l = 0;
+      while (limit--)
+      {
+         Real c, s; int i; int l1=k; bool tfc=false;
+         for (l=k; l>=0; l--)
+         {
+//          if (fabs(E.element(l))<=eps) goto test_f_convergence;
+            if (fabs(E.element(l))<=eps) { REPORT tfc=true; break; }
+            if (fabs(Q.element(l-1))<=eps) { REPORT l1=l; break; }
+            REPORT
+         }
+         if (!tfc)
+         {
+            REPORT
+            l=l1; l1=l-1; s = -1.0; c = 0.0;
+            for (i=l; i<=k; i++)
+            {
+               f = - s * E.element(i); E.element(i) *= c;
+//             if (fabs(f)<=eps) goto test_f_convergence;
+               if (fabs(f)<=eps) { REPORT break; }
+               g = Q.element(i); h = pythag(g,f,c,s); Q.element(i) = h;
+               if (withU)
+               {
+                  REPORT
+                  RectMatrixCol UCI(U,i); RectMatrixCol UCJ(U,l1);
+                  ComplexScale(UCJ, UCI, c, s);
+               }
+            }
+         }
+//       test_f_convergence: z = Q.element(k); if (l==k) goto convergence;
+         z = Q.element(k);  if (l==k) { REPORT break; }
+
+         x = Q.element(l); y = Q.element(k-1);
+         g = E.element(k-1); h = E.element(k);
+         f = ((y-z)*(y+z) + (g-h)*(g+h)) / (2*h*y);
+         if (f>1)         { REPORT g = f * sqrt(1 + square(1/f)); }
+         else if (f<-1)   { REPORT g = -f * sqrt(1 + square(1/f)); }
+         else             { REPORT g = sqrt(f*f + 1); }
+            { REPORT f = ((x-z)*(x+z) + h*(y / ((f<0.0) ? f-g : f+g)-h)) / x; }
+
+         c = 1.0; s = 1.0;
+         for (i=l+1; i<=k; i++)
+         {
+            g = E.element(i); y = Q.element(i); h = s*g; g *= c;
+            z = pythag(f,h,c,s); E.element(i-1) = z;
+            f = x*c + g*s; g = -x*s + g*c; h = y*s; y *= c;
+            if (withV)
+            {
+               REPORT
+               RectMatrixCol VCI(V,i); RectMatrixCol VCJ(V,i-1);
+               ComplexScale(VCI, VCJ, c, s);
+            }
+            z = pythag(f,h,c,s); Q.element(i-1) = z;
+            f = c*g + s*y; x = -s*g + c*y;
+            if (withU)
+            {
+               REPORT
+               RectMatrixCol UCI(U,i); RectMatrixCol UCJ(U,i-1);
+               ComplexScale(UCI, UCJ, c, s);
+            }
+         }
+         E.element(l) = 0.0; E.element(k) = f; Q.element(k) = x;
+      }
+      if (l!=k) { Throw(ConvergenceException(A)); }
+// convergence:
+      if (z < 0.0)
+      {
+         REPORT
+         Q.element(k) = -z;
+         if (withV) { RectMatrixCol VCI(V,k); VCI.Negate(); }
+      }
+   }
+   if (withU & withV) SortSV(Q, U, V);
+   else if (withU) SortSV(Q, U);
+   else if (withV) SortSV(Q, V);
+   else sort_descending(Q);
+}
+
+void SVD(const Matrix& A, DiagonalMatrix& D)
+{ REPORT Matrix U; SVD(A, D, U, U, false, false); }
+
+
+
+#ifdef use_namespace
+}
+#endif
+
+///@}
Index: branches/BNC_LM/ppp.gpt
===================================================================
--- branches/BNC_LM/ppp.gpt	(revision 3570)
+++ branches/BNC_LM/ppp.gpt	(revision 3570)
@@ -0,0 +1,40 @@
+#!/bin/sh
+
+if [ $# -lt 2 ]
+then
+ echo "Usage: $0 <input> <output>"
+ exit 1
+fi
+
+inpFile=$1
+outFile=$2
+
+grep " NEU " ${inpFile} > neu_tmp
+
+gnuplot << EOF
+
+set term png
+set output "${outFile}"
+
+set xdata time
+set timefmt "%y-%m-%d %H:%M:%S"
+
+set format x "%H:%M"
+
+set title "FFMJ1 (${inpFile})"
+
+set ylabel "meters"
+set yrange [-0.5:0.5]
+
+set ytics nomirror
+set y2range [0:50]
+set y2tics 0,10,20
+
+plot "neu_tmp" u 1:19 t "dH" w l lt 3, \
+     ""        u 1:17 t "dN" w l lt 1, \
+     ""        u 1:18 t "dE" w l lt 2, \
+     ""        u 1:6 t "# sat" axis x1y2 w l lt 4
+
+EOF
+
+rm neu_tmp
Index: branches/BNC_LM/run_valgrind
===================================================================
--- branches/BNC_LM/run_valgrind	(revision 3570)
+++ branches/BNC_LM/run_valgrind	(revision 3570)
@@ -0,0 +1,10 @@
+#/bin/bash
+if [ "$1" == "start" ]
+then
+  valgrind --num-callers=50 --leak-check=full ./bnc --file bnc_cmb.raw_110221 --staID "FFMJ1" --conf POST.conf --format RTCM_3 2> valgrind.txt &
+elif [ "$1" == "stop" ]
+then
+  kill -SIGINT `ps | grep memcheck | cut -b 1-6`
+else
+  echo "usage: run_valgrind start|stop"
+fi
Index: branches/BNC_LM/serial/posix_qextserialport.cpp
===================================================================
--- branches/BNC_LM/serial/posix_qextserialport.cpp	(revision 3570)
+++ branches/BNC_LM/serial/posix_qextserialport.cpp	(revision 3570)
@@ -0,0 +1,1121 @@
+
+/*!
+\class Posix_QextSerialPort
+\version 1.0.0
+\author Stefan Sander
+
+A cross-platform serial port class.
+This class encapsulates the POSIX portion of QextSerialPort.  The user will be notified of errors
+and possible portability conflicts at run-time by default - this behavior can be turned off by
+defining _TTY_NOWARN_ (to turn off all warnings) or _TTY_NOWARN_PORT_ (to turn off portability
+warnings) in the project.  Note that _TTY_NOWARN_ will also turn off portability warnings.
+*/
+
+#ifdef sparc
+#include <sys/filio.h>
+#endif
+
+#include <stdio.h>
+#include "posix_qextserialport.h"
+
+/*!
+\fn Posix_QextSerialPort::Posix_QextSerialPort()
+Default constructor.  Note that the name of the device used by a QextSerialPort constructed with
+this constructor will be determined by #defined constants, or lack thereof - the default behavior
+is the same as _TTY_LINUX_.  Possible naming conventions and their associated constants are:
+
+\verbatim
+
+Constant         Used By         Naming Convention
+----------       -------------   ------------------------
+_TTY_WIN_        Windows         COM1, COM2
+_TTY_IRIX_       SGI/IRIX        /dev/ttyf1, /dev/ttyf2
+_TTY_HPUX_       HP-UX           /dev/tty1p0, /dev/tty2p0
+_TTY_SUN_        SunOS/Solaris   /dev/ttya, /dev/ttyb
+_TTY_DIGITAL_    Digital UNIX    /dev/tty01, /dev/tty02
+_TTY_FREEBSD_    FreeBSD         /dev/ttyd0, /dev/ttyd1
+_TTY_LINUX_      Linux           /dev/ttyS0, /dev/ttyS1
+<none>           Linux           /dev/ttyS0, /dev/ttyS1
+\endverbatim
+
+This constructor assigns the device name to the name of the first port on the specified system.
+See the other constructors if you need to open a different port.
+*/
+Posix_QextSerialPort::Posix_QextSerialPort()
+: QextSerialBase()
+{
+    Posix_File=new QFile();
+}
+
+/*!
+\fn Posix_QextSerialPort::Posix_QextSerialPort(const Posix_QextSerialPort&)
+Copy constructor.
+*/
+Posix_QextSerialPort::Posix_QextSerialPort(const Posix_QextSerialPort& s)
+ : QextSerialBase(s.port)
+{
+	setOpenMode(s.openMode());
+    port = s.port;
+    Settings.BaudRate=s.Settings.BaudRate;
+    Settings.DataBits=s.Settings.DataBits;
+    Settings.Parity=s.Settings.Parity;
+    Settings.StopBits=s.Settings.StopBits;
+    Settings.FlowControl=s.Settings.FlowControl;
+    lastErr=s.lastErr;
+
+    Posix_File=new QFile();
+    Posix_File=s.Posix_File;
+    memcpy(&Posix_Timeout, &s.Posix_Timeout, sizeof(struct timeval));
+    memcpy(&Posix_Copy_Timeout, &s.Posix_Copy_Timeout, sizeof(struct timeval));
+    memcpy(&Posix_CommConfig, &s.Posix_CommConfig, sizeof(struct termios));
+}
+
+/*!
+\fn Posix_QextSerialPort::Posix_QextSerialPort(const QString & name)
+Constructs a serial port attached to the port specified by name.
+name is the name of the device, which is windowsystem-specific,
+e.g."COM1" or "/dev/ttyS0".
+*/
+Posix_QextSerialPort::Posix_QextSerialPort(const QString & name)
+ : QextSerialBase(name)
+{
+    Posix_File=new QFile();
+}
+
+/*!
+\fn Posix_QextSerialPort::Posix_QextSerialPort(const PortSettings& settings)
+Constructs a port with default name and specified settings.
+*/
+Posix_QextSerialPort::Posix_QextSerialPort(const PortSettings& settings)
+ : QextSerialBase()
+{
+    setBaudRate(settings.BaudRate);
+    setDataBits(settings.DataBits);
+    setParity(settings.Parity);
+    setStopBits(settings.StopBits);
+    setFlowControl(settings.FlowControl);
+
+    Posix_File=new QFile();
+    setTimeout(settings.Timeout_Sec, settings.Timeout_Millisec);
+}
+
+/*!
+\fn Posix_QextSerialPort::Posix_QextSerialPort(const QString & name, const PortSettings& settings)
+Constructs a port with specified name and settings.
+*/
+Posix_QextSerialPort::Posix_QextSerialPort(const QString & name, const PortSettings& settings)
+ : QextSerialBase(name)
+{
+    setBaudRate(settings.BaudRate);
+    setDataBits(settings.DataBits);
+    setParity(settings.Parity);
+    setStopBits(settings.StopBits);
+    setFlowControl(settings.FlowControl);
+
+    Posix_File=new QFile();
+    setTimeout(settings.Timeout_Sec, settings.Timeout_Millisec);
+}
+
+/*!
+\fn Posix_QextSerialPort& Posix_QextSerialPort::operator=(const Posix_QextSerialPort& s)
+Override the = operator.
+*/
+Posix_QextSerialPort& Posix_QextSerialPort::operator=(const Posix_QextSerialPort& s)
+{
+   	setOpenMode(s.openMode());
+    port = s.port;
+    Settings.BaudRate=s.Settings.BaudRate;
+    Settings.DataBits=s.Settings.DataBits;
+    Settings.Parity=s.Settings.Parity;
+    Settings.StopBits=s.Settings.StopBits;
+    Settings.FlowControl=s.Settings.FlowControl;
+    lastErr=s.lastErr;
+
+    Posix_File=s.Posix_File;
+    memcpy(&Posix_Timeout, &(s.Posix_Timeout), sizeof(struct timeval));
+    memcpy(&Posix_Copy_Timeout, &(s.Posix_Copy_Timeout), sizeof(struct timeval));
+    memcpy(&Posix_CommConfig, &(s.Posix_CommConfig), sizeof(struct termios));
+    return *this;
+}
+
+/*!
+\fn Posix_QextSerialPort::~Posix_QextSerialPort()
+Standard destructor.
+*/
+Posix_QextSerialPort::~Posix_QextSerialPort()
+{
+    if (isOpen()) {
+        close();
+    }
+    Posix_File->close();
+    delete Posix_File;
+}
+
+/*!
+\fn void Posix_QextSerialPort::setBaudRate(BaudRateType baudRate)
+Sets the baud rate of the serial port.  Note that not all rates are applicable on
+all platforms.  The following table shows translations of the various baud rate
+constants on Windows(including NT/2000) and POSIX platforms.  Speeds marked with an *
+are speeds that are usable on both Windows and POSIX.
+
+\note
+BAUD76800 may not be supported on all POSIX systems.  SGI/IRIX systems do not support
+BAUD1800.
+
+\verbatim
+
+  RATE          Windows Speed   POSIX Speed
+  -----------   -------------   -----------
+   BAUD50                 110          50
+   BAUD75                 110          75
+  *BAUD110                110         110
+   BAUD134                110         134.5
+   BAUD150                110         150
+   BAUD200                110         200
+  *BAUD300                300         300
+  *BAUD600                600         600
+  *BAUD1200              1200        1200
+   BAUD1800              1200        1800
+  *BAUD2400              2400        2400
+  *BAUD4800              4800        4800
+  *BAUD9600              9600        9600
+   BAUD14400            14400        9600
+  *BAUD19200            19200       19200
+  *BAUD38400            38400       38400
+   BAUD56000            56000       38400
+  *BAUD57600            57600       57600
+   BAUD76800            57600       76800
+  *BAUD115200          115200      115200
+   BAUD128000          128000      115200
+   BAUD256000          256000      115200
+\endverbatim
+*/
+void Posix_QextSerialPort::setBaudRate(BaudRateType baudRate)
+{
+    LOCK_MUTEX();
+    if (Settings.BaudRate!=baudRate) {
+        switch (baudRate) {
+            case BAUD14400:
+                Settings.BaudRate=BAUD9600;
+                break;
+
+            case BAUD56000:
+                Settings.BaudRate=BAUD38400;
+                break;
+
+            case BAUD76800:
+
+#ifndef B76800
+                Settings.BaudRate=BAUD57600;
+#else
+                Settings.BaudRate=baudRate;
+#endif
+                break;
+
+            case BAUD128000:
+            case BAUD256000:
+                Settings.BaudRate=BAUD115200;
+                break;
+
+            default:
+                Settings.BaudRate=baudRate;
+                break;
+        }
+    }
+    if (isOpen()) {
+        switch (baudRate) {
+
+            /*50 baud*/
+            case BAUD50:
+                TTY_PORTABILITY_WARNING("Posix_QextSerialPort Portability Warning: Windows does not support 50 baud operation.");
+#ifdef CBAUD
+                Posix_CommConfig.c_cflag&=(~CBAUD);
+                Posix_CommConfig.c_cflag|=B50;
+#else
+                cfsetispeed(&Posix_CommConfig, B50);
+                cfsetospeed(&Posix_CommConfig, B50);
+#endif
+                break;
+
+            /*75 baud*/
+            case BAUD75:
+                TTY_PORTABILITY_WARNING("Posix_QextSerialPort Portability Warning: Windows does not support 75 baud operation.");
+#ifdef CBAUD
+                Posix_CommConfig.c_cflag&=(~CBAUD);
+                Posix_CommConfig.c_cflag|=B75;
+#else
+                cfsetispeed(&Posix_CommConfig, B75);
+                cfsetospeed(&Posix_CommConfig, B75);
+#endif
+                break;
+
+            /*110 baud*/
+            case BAUD110:
+#ifdef CBAUD
+                Posix_CommConfig.c_cflag&=(~CBAUD);
+                Posix_CommConfig.c_cflag|=B110;
+#else
+                cfsetispeed(&Posix_CommConfig, B110);
+                cfsetospeed(&Posix_CommConfig, B110);
+#endif
+                break;
+
+            /*134.5 baud*/
+            case BAUD134:
+                TTY_PORTABILITY_WARNING("Posix_QextSerialPort Portability Warning: Windows does not support 134.5 baud operation.");
+#ifdef CBAUD
+                Posix_CommConfig.c_cflag&=(~CBAUD);
+                Posix_CommConfig.c_cflag|=B134;
+#else
+                cfsetispeed(&Posix_CommConfig, B134);
+                cfsetospeed(&Posix_CommConfig, B134);
+#endif
+                break;
+
+            /*150 baud*/
+            case BAUD150:
+                TTY_PORTABILITY_WARNING("Posix_QextSerialPort Portability Warning: Windows does not support 150 baud operation.");
+#ifdef CBAUD
+                Posix_CommConfig.c_cflag&=(~CBAUD);
+                Posix_CommConfig.c_cflag|=B150;
+#else
+                cfsetispeed(&Posix_CommConfig, B150);
+                cfsetospeed(&Posix_CommConfig, B150);
+#endif
+                break;
+
+            /*200 baud*/
+            case BAUD200:
+                TTY_PORTABILITY_WARNING("Posix_QextSerialPort Portability Warning: Windows does not support 200 baud operation.");
+#ifdef CBAUD
+                Posix_CommConfig.c_cflag&=(~CBAUD);
+                Posix_CommConfig.c_cflag|=B200;
+#else
+                cfsetispeed(&Posix_CommConfig, B200);
+                cfsetospeed(&Posix_CommConfig, B200);
+#endif
+                break;
+
+            /*300 baud*/
+            case BAUD300:
+#ifdef CBAUD
+                Posix_CommConfig.c_cflag&=(~CBAUD);
+                Posix_CommConfig.c_cflag|=B300;
+#else
+                cfsetispeed(&Posix_CommConfig, B300);
+                cfsetospeed(&Posix_CommConfig, B300);
+#endif
+                break;
+
+            /*600 baud*/
+            case BAUD600:
+#ifdef CBAUD
+                Posix_CommConfig.c_cflag&=(~CBAUD);
+                Posix_CommConfig.c_cflag|=B600;
+#else
+                cfsetispeed(&Posix_CommConfig, B600);
+                cfsetospeed(&Posix_CommConfig, B600);
+#endif
+                break;
+
+            /*1200 baud*/
+            case BAUD1200:
+#ifdef CBAUD
+                Posix_CommConfig.c_cflag&=(~CBAUD);
+                Posix_CommConfig.c_cflag|=B1200;
+#else
+                cfsetispeed(&Posix_CommConfig, B1200);
+                cfsetospeed(&Posix_CommConfig, B1200);
+#endif
+                break;
+
+            /*1800 baud*/
+            case BAUD1800:
+                TTY_PORTABILITY_WARNING("Posix_QextSerialPort Portability Warning: Windows and IRIX do not support 1800 baud operation.");
+#ifdef CBAUD
+                Posix_CommConfig.c_cflag&=(~CBAUD);
+                Posix_CommConfig.c_cflag|=B1800;
+#else
+                cfsetispeed(&Posix_CommConfig, B1800);
+                cfsetospeed(&Posix_CommConfig, B1800);
+#endif
+                break;
+
+            /*2400 baud*/
+            case BAUD2400:
+#ifdef CBAUD
+                Posix_CommConfig.c_cflag&=(~CBAUD);
+                Posix_CommConfig.c_cflag|=B2400;
+#else
+                cfsetispeed(&Posix_CommConfig, B2400);
+                cfsetospeed(&Posix_CommConfig, B2400);
+#endif
+                break;
+
+            /*4800 baud*/
+            case BAUD4800:
+#ifdef CBAUD
+                Posix_CommConfig.c_cflag&=(~CBAUD);
+                Posix_CommConfig.c_cflag|=B4800;
+#else
+                cfsetispeed(&Posix_CommConfig, B4800);
+                cfsetospeed(&Posix_CommConfig, B4800);
+#endif
+                break;
+
+            /*9600 baud*/
+            case BAUD9600:
+#ifdef CBAUD
+                Posix_CommConfig.c_cflag&=(~CBAUD);
+                Posix_CommConfig.c_cflag|=B9600;
+#else
+                cfsetispeed(&Posix_CommConfig, B9600);
+                cfsetospeed(&Posix_CommConfig, B9600);
+#endif
+                break;
+
+            /*14400 baud*/
+            case BAUD14400:
+                TTY_WARNING("Posix_QextSerialPort: POSIX does not support 14400 baud operation.  Switching to 9600 baud.");
+#ifdef CBAUD
+                Posix_CommConfig.c_cflag&=(~CBAUD);
+                Posix_CommConfig.c_cflag|=B9600;
+#else
+                cfsetispeed(&Posix_CommConfig, B9600);
+                cfsetospeed(&Posix_CommConfig, B9600);
+#endif
+                break;
+
+            /*19200 baud*/
+            case BAUD19200:
+#ifdef CBAUD
+                Posix_CommConfig.c_cflag&=(~CBAUD);
+                Posix_CommConfig.c_cflag|=B19200;
+#else
+                cfsetispeed(&Posix_CommConfig, B19200);
+                cfsetospeed(&Posix_CommConfig, B19200);
+#endif
+                break;
+
+            /*38400 baud*/
+            case BAUD38400:
+#ifdef CBAUD
+                Posix_CommConfig.c_cflag&=(~CBAUD);
+                Posix_CommConfig.c_cflag|=B38400;
+#else
+                cfsetispeed(&Posix_CommConfig, B38400);
+                cfsetospeed(&Posix_CommConfig, B38400);
+#endif
+                break;
+
+            /*56000 baud*/
+            case BAUD56000:
+                TTY_WARNING("Posix_QextSerialPort: POSIX does not support 56000 baud operation.  Switching to 38400 baud.");
+#ifdef CBAUD
+                Posix_CommConfig.c_cflag&=(~CBAUD);
+                Posix_CommConfig.c_cflag|=B38400;
+#else
+                cfsetispeed(&Posix_CommConfig, B38400);
+                cfsetospeed(&Posix_CommConfig, B38400);
+#endif
+                break;
+
+            /*57600 baud*/
+            case BAUD57600:
+#ifdef CBAUD
+                Posix_CommConfig.c_cflag&=(~CBAUD);
+                Posix_CommConfig.c_cflag|=B57600;
+#else
+                cfsetispeed(&Posix_CommConfig, B57600);
+                cfsetospeed(&Posix_CommConfig, B57600);
+#endif
+                break;
+
+            /*76800 baud*/
+            case BAUD76800:
+                TTY_PORTABILITY_WARNING("Posix_QextSerialPort Portability Warning: Windows and some POSIX systems do not support 76800 baud operation.");
+#ifdef CBAUD
+                Posix_CommConfig.c_cflag&=(~CBAUD);
+
+#ifdef B76800
+                Posix_CommConfig.c_cflag|=B76800;
+#else
+                TTY_WARNING("Posix_QextSerialPort: Posix_QextSerialPort was compiled without 76800 baud support.  Switching to 57600 baud.");
+                Posix_CommConfig.c_cflag|=B57600;
+#endif //B76800
+#else  //CBAUD
+#ifdef B76800
+                cfsetispeed(&Posix_CommConfig, B76800);
+                cfsetospeed(&Posix_CommConfig, B76800);
+#else
+                TTY_WARNING("Posix_QextSerialPort: Posix_QextSerialPort was compiled without 76800 baud support.  Switching to 57600 baud.");
+                cfsetispeed(&Posix_CommConfig, B57600);
+                cfsetospeed(&Posix_CommConfig, B57600);
+#endif //B76800
+#endif //CBAUD
+                break;
+
+            /*115200 baud*/
+            case BAUD115200:
+#ifdef CBAUD
+                Posix_CommConfig.c_cflag&=(~CBAUD);
+                Posix_CommConfig.c_cflag|=B115200;
+#else
+                cfsetispeed(&Posix_CommConfig, B115200);
+                cfsetospeed(&Posix_CommConfig, B115200);
+#endif
+                break;
+
+            /*128000 baud*/
+            case BAUD128000:
+                TTY_WARNING("Posix_QextSerialPort: POSIX does not support 128000 baud operation.  Switching to 115200 baud.");
+#ifdef CBAUD
+                Posix_CommConfig.c_cflag&=(~CBAUD);
+                Posix_CommConfig.c_cflag|=B115200;
+#else
+                cfsetispeed(&Posix_CommConfig, B115200);
+                cfsetospeed(&Posix_CommConfig, B115200);
+#endif
+                break;
+
+            /*256000 baud*/
+            case BAUD256000:
+                TTY_WARNING("Posix_QextSerialPort: POSIX does not support 256000 baud operation.  Switching to 115200 baud.");
+#ifdef CBAUD
+                Posix_CommConfig.c_cflag&=(~CBAUD);
+                Posix_CommConfig.c_cflag|=B115200;
+#else
+                cfsetispeed(&Posix_CommConfig, B115200);
+                cfsetospeed(&Posix_CommConfig, B115200);
+#endif
+                break;
+        }
+        tcsetattr(Posix_File->handle(), TCSAFLUSH, &Posix_CommConfig);
+    }
+    UNLOCK_MUTEX();
+}
+
+/*!
+\fn void Posix_QextSerialPort::setDataBits(DataBitsType dataBits)
+Sets the number of data bits used by the serial port.  Possible values of dataBits are:
+\verbatim
+    DATA_5      5 data bits
+    DATA_6      6 data bits
+    DATA_7      7 data bits
+    DATA_8      8 data bits
+\endverbatim
+
+\note
+This function is subject to the following restrictions:
+\par
+    5 data bits cannot be used with 2 stop bits.
+\par
+    8 data bits cannot be used with space parity on POSIX systems.
+
+*/
+void Posix_QextSerialPort::setDataBits(DataBitsType dataBits)
+{
+    LOCK_MUTEX();
+    if (Settings.DataBits!=dataBits) {
+        if ((Settings.StopBits==STOP_2 && dataBits==DATA_5) ||
+            (Settings.StopBits==STOP_1_5 && dataBits!=DATA_5) ||
+            (Settings.Parity==PAR_SPACE && dataBits==DATA_8)) {
+        }
+        else {
+            Settings.DataBits=dataBits;
+        }
+    }
+    if (isOpen()) {
+        switch(dataBits) {
+
+            /*5 data bits*/
+            case DATA_5:
+                if (Settings.StopBits==STOP_2) {
+                    TTY_WARNING("Posix_QextSerialPort: 5 Data bits cannot be used with 2 stop bits.");
+                }
+                else {
+                    Settings.DataBits=dataBits;
+                    Posix_CommConfig.c_cflag&=(~CSIZE);
+                    Posix_CommConfig.c_cflag|=CS5;
+                    tcsetattr(Posix_File->handle(), TCSAFLUSH, &Posix_CommConfig);
+                }
+                break;
+
+            /*6 data bits*/
+            case DATA_6:
+                if (Settings.StopBits==STOP_1_5) {
+                    TTY_WARNING("Posix_QextSerialPort: 6 Data bits cannot be used with 1.5 stop bits.");
+                }
+                else {
+                    Settings.DataBits=dataBits;
+                    Posix_CommConfig.c_cflag&=(~CSIZE);
+                    Posix_CommConfig.c_cflag|=CS6;
+                    tcsetattr(Posix_File->handle(), TCSAFLUSH, &Posix_CommConfig);
+                }
+                break;
+
+            /*7 data bits*/
+            case DATA_7:
+                if (Settings.StopBits==STOP_1_5) {
+                    TTY_WARNING("Posix_QextSerialPort: 7 Data bits cannot be used with 1.5 stop bits.");
+                }
+                else {
+                    Settings.DataBits=dataBits;
+                    Posix_CommConfig.c_cflag&=(~CSIZE);
+                    Posix_CommConfig.c_cflag|=CS7;
+                    tcsetattr(Posix_File->handle(), TCSAFLUSH, &Posix_CommConfig);
+                }
+                break;
+
+            /*8 data bits*/
+            case DATA_8:
+                if (Settings.StopBits==STOP_1_5) {
+                    TTY_WARNING("Posix_QextSerialPort: 8 Data bits cannot be used with 1.5 stop bits.");
+                }
+                else {
+                    Settings.DataBits=dataBits;
+                    Posix_CommConfig.c_cflag&=(~CSIZE);
+                    Posix_CommConfig.c_cflag|=CS8;
+                    tcsetattr(Posix_File->handle(), TCSAFLUSH, &Posix_CommConfig);
+                }
+                break;
+        }
+    }
+    UNLOCK_MUTEX();
+}
+
+/*!
+\fn void Posix_QextSerialPort::setParity(ParityType parity)
+Sets the parity associated with the serial port.  The possible values of parity are:
+\verbatim
+    PAR_SPACE       Space Parity
+    PAR_MARK        Mark Parity
+    PAR_NONE        No Parity
+    PAR_EVEN        Even Parity
+    PAR_ODD         Odd Parity
+\endverbatim
+
+\note
+This function is subject to the following limitations:
+\par
+POSIX systems do not support mark parity.
+\par
+POSIX systems support space parity only if tricked into doing so, and only with
+   fewer than 8 data bits.  Use space parity very carefully with POSIX systems.
+
+*/
+void Posix_QextSerialPort::setParity(ParityType parity)
+{
+    LOCK_MUTEX();
+    if (Settings.Parity!=parity) {
+        if (parity==PAR_MARK || (parity==PAR_SPACE && Settings.DataBits==DATA_8)) {
+        }
+        else {
+            Settings.Parity=parity;
+        }
+    }
+    if (isOpen()) {
+        switch (parity) {
+
+            /*space parity*/
+            case PAR_SPACE:
+                if (Settings.DataBits==DATA_8) {
+                    TTY_PORTABILITY_WARNING("Posix_QextSerialPort:  Space parity is only supported in POSIX with 7 or fewer data bits");
+                }
+                else {
+
+                    /*space parity not directly supported - add an extra data bit to simulate it*/
+                    Posix_CommConfig.c_cflag&=~(PARENB|CSIZE);
+                    switch(Settings.DataBits) {
+                        case DATA_5:
+                            Settings.DataBits=DATA_6;
+                            Posix_CommConfig.c_cflag|=CS6;
+                            break;
+
+                        case DATA_6:
+                            Settings.DataBits=DATA_7;
+                            Posix_CommConfig.c_cflag|=CS7;
+                            break;
+
+                        case DATA_7:
+                            Settings.DataBits=DATA_8;
+                            Posix_CommConfig.c_cflag|=CS8;
+                            break;
+
+                        case DATA_8:
+                            break;
+                    }
+                    tcsetattr(Posix_File->handle(), TCSAFLUSH, &Posix_CommConfig);
+                }
+                break;
+
+            /*mark parity - WINDOWS ONLY*/
+            case PAR_MARK:
+                TTY_WARNING("Posix_QextSerialPort: Mark parity is not supported by POSIX.");
+                break;
+
+            /*no parity*/
+            case PAR_NONE:
+                Posix_CommConfig.c_cflag&=(~PARENB);
+                tcsetattr(Posix_File->handle(), TCSAFLUSH, &Posix_CommConfig);
+                break;
+
+            /*even parity*/
+            case PAR_EVEN:
+                Posix_CommConfig.c_cflag&=(~PARODD);
+                Posix_CommConfig.c_cflag|=PARENB;
+                tcsetattr(Posix_File->handle(), TCSAFLUSH, &Posix_CommConfig);
+                break;
+
+            /*odd parity*/
+            case PAR_ODD:
+                Posix_CommConfig.c_cflag|=(PARENB|PARODD);
+                tcsetattr(Posix_File->handle(), TCSAFLUSH, &Posix_CommConfig);
+                break;
+        }
+    }
+    UNLOCK_MUTEX();
+}
+
+/*!
+\fn void Posix_QextSerialPort::setStopBits(StopBitsType stopBits)
+Sets the number of stop bits used by the serial port.  Possible values of stopBits are:
+\verbatim
+    STOP_1      1 stop bit
+    STOP_1_5    1.5 stop bits
+    STOP_2      2 stop bits
+\endverbatim
+\note
+This function is subject to the following restrictions:
+\par
+    2 stop bits cannot be used with 5 data bits.
+\par
+    POSIX does not support 1.5 stop bits.
+
+*/
+void Posix_QextSerialPort::setStopBits(StopBitsType stopBits)
+{
+    LOCK_MUTEX();
+    if (Settings.StopBits!=stopBits) {
+        if ((Settings.DataBits==DATA_5 && stopBits==STOP_2) || stopBits==STOP_1_5) {}
+        else {
+            Settings.StopBits=stopBits;
+        }
+    }
+    if (isOpen()) {
+        switch (stopBits) {
+
+            /*one stop bit*/
+            case STOP_1:
+                Settings.StopBits=stopBits;
+                Posix_CommConfig.c_cflag&=(~CSTOPB);
+                tcsetattr(Posix_File->handle(), TCSAFLUSH, &Posix_CommConfig);
+                break;
+
+            /*1.5 stop bits*/
+            case STOP_1_5:
+                TTY_WARNING("Posix_QextSerialPort: 1.5 stop bit operation is not supported by POSIX.");
+                break;
+
+            /*two stop bits*/
+            case STOP_2:
+                if (Settings.DataBits==DATA_5) {
+                    TTY_WARNING("Posix_QextSerialPort: 2 stop bits cannot be used with 5 data bits");
+                }
+                else {
+                    Settings.StopBits=stopBits;
+                    Posix_CommConfig.c_cflag|=CSTOPB;
+                    tcsetattr(Posix_File->handle(), TCSAFLUSH, &Posix_CommConfig);
+                }
+                break;
+        }
+    }
+    UNLOCK_MUTEX();
+}
+
+/*!
+\fn void Posix_QextSerialPort::setFlowControl(FlowType flow)
+Sets the flow control used by the port.  Possible values of flow are:
+\verbatim
+    FLOW_OFF            No flow control
+    FLOW_HARDWARE       Hardware (RTS/CTS) flow control
+    FLOW_XONXOFF        Software (XON/XOFF) flow control
+\endverbatim
+\note
+FLOW_HARDWARE may not be supported on all versions of UNIX.  In cases where it is
+unsupported, FLOW_HARDWARE is the same as FLOW_OFF.
+
+*/
+void Posix_QextSerialPort::setFlowControl(FlowType flow)
+{
+    LOCK_MUTEX();
+    if (Settings.FlowControl!=flow) {
+        Settings.FlowControl=flow;
+    }
+    if (isOpen()) {
+        switch(flow) {
+
+            /*no flow control*/
+            case FLOW_OFF:
+                Posix_CommConfig.c_cflag&=(~CRTSCTS);
+                Posix_CommConfig.c_iflag&=(~(IXON|IXOFF|IXANY));
+                tcsetattr(Posix_File->handle(), TCSAFLUSH, &Posix_CommConfig);
+                break;
+
+            /*software (XON/XOFF) flow control*/
+            case FLOW_XONXOFF:
+                Posix_CommConfig.c_cflag&=(~CRTSCTS);
+                Posix_CommConfig.c_iflag|=(IXON|IXOFF|IXANY);
+                tcsetattr(Posix_File->handle(), TCSAFLUSH, &Posix_CommConfig);
+                break;
+
+            case FLOW_HARDWARE:
+                Posix_CommConfig.c_cflag|=CRTSCTS;
+                Posix_CommConfig.c_iflag&=(~(IXON|IXOFF|IXANY));
+                tcsetattr(Posix_File->handle(), TCSAFLUSH, &Posix_CommConfig);
+                break;
+        }
+    }
+    UNLOCK_MUTEX();
+}
+
+/*!
+\fn void Posix_QextSerialPort::setTimeout(ulong sec, ulong millisec);
+Sets the read and write timeouts for the port to sec seconds and millisec milliseconds.
+Note that this is a per-character timeout, i.e. the port will wait this long for each
+individual character, not for the whole read operation.  This timeout also applies to the
+bytesWaiting() function.
+
+\note
+POSIX does not support millisecond-level control for I/O timeout values.  Any
+timeout set using this function will be set to the next lowest tenth of a second for
+the purposes of detecting read or write timeouts.  For example a timeout of 550 milliseconds
+will be seen by the class as a timeout of 500 milliseconds for the purposes of reading and
+writing the port.  However millisecond-level control is allowed by the select() system call,
+so for example a 550-millisecond timeout will be seen as 550 milliseconds on POSIX systems for
+the purpose of detecting available bytes in the read buffer.
+
+*/
+void Posix_QextSerialPort::setTimeout(ulong sec, ulong millisec)
+{
+    LOCK_MUTEX();
+    Settings.Timeout_Sec=sec;
+    Settings.Timeout_Millisec=millisec;
+    Posix_Copy_Timeout.tv_sec=sec;
+    Posix_Copy_Timeout.tv_usec=millisec;
+    if (isOpen()) {
+        tcgetattr(Posix_File->handle(), &Posix_CommConfig);
+        Posix_CommConfig.c_cc[VTIME]=sec*10+millisec/100;
+        tcsetattr(Posix_File->handle(), TCSAFLUSH, &Posix_CommConfig);
+    }
+    UNLOCK_MUTEX();
+}
+
+/*!
+\fn bool Posix_QextSerialPort::open(OpenMode mode)
+Opens the serial port associated to this class.
+This function has no effect if the port associated with the class is already open.
+The port is also configured to the current settings, as stored in the Settings structure.
+*/
+bool Posix_QextSerialPort::open(OpenMode mode)
+{
+    LOCK_MUTEX();
+    if (mode == QIODevice::NotOpen)
+    	return isOpen();
+    if (!isOpen()) {
+        /*open the port*/
+        Posix_File->setFileName(port);
+        ////        qDebug("Trying to open File");
+        if (Posix_File->open(QIODevice::ReadWrite|QIODevice::Unbuffered)) {
+          ///            qDebug("Opened File succesfully");
+            /*set open mode*/
+            QIODevice::open(mode);
+
+            /*configure port settings*/
+            tcgetattr(Posix_File->handle(), &Posix_CommConfig);
+
+            /*set up other port settings*/
+            Posix_CommConfig.c_cflag|=CREAD|CLOCAL;
+            Posix_CommConfig.c_lflag&=(~(ICANON|ECHO|ECHOE|ECHOK|ECHONL|ISIG));
+            Posix_CommConfig.c_iflag&=(~(INPCK|IGNPAR|PARMRK|ISTRIP|ICRNL|IXANY));
+            Posix_CommConfig.c_oflag&=(~OPOST);
+            Posix_CommConfig.c_cc[VMIN]=0;
+            Posix_CommConfig.c_cc[VINTR] = _POSIX_VDISABLE;
+            Posix_CommConfig.c_cc[VQUIT] = _POSIX_VDISABLE;
+            Posix_CommConfig.c_cc[VSTART] = _POSIX_VDISABLE;
+            Posix_CommConfig.c_cc[VSTOP] = _POSIX_VDISABLE;
+            Posix_CommConfig.c_cc[VSUSP] = _POSIX_VDISABLE;
+            setBaudRate(Settings.BaudRate);
+            setDataBits(Settings.DataBits);
+            setParity(Settings.Parity);
+            setStopBits(Settings.StopBits);
+            setFlowControl(Settings.FlowControl);
+            setTimeout(Settings.Timeout_Sec, Settings.Timeout_Millisec);
+            tcsetattr(Posix_File->handle(), TCSAFLUSH, &Posix_CommConfig);
+        } else {
+            qDebug("Could not open File! Error code : %d", Posix_File->error());
+        }
+    }
+    UNLOCK_MUTEX();
+    return isOpen();
+}
+
+/*!
+\fn void Posix_QextSerialPort::close()
+Closes a serial port.  This function has no effect if the serial port associated with the class
+is not currently open.
+*/
+void Posix_QextSerialPort::close()
+{
+    LOCK_MUTEX();
+    Posix_File->close();
+    QIODevice::close();
+    UNLOCK_MUTEX();
+}
+
+/*!
+\fn void Posix_QextSerialPort::flush()
+Flushes all pending I/O to the serial port.  This function has no effect if the serial port
+associated with the class is not currently open.
+*/
+void Posix_QextSerialPort::flush()
+{
+    LOCK_MUTEX();
+    if (isOpen()) {
+        Posix_File->flush();
+    }
+    UNLOCK_MUTEX();
+}
+
+/*!
+\fn qint64 Posix_QextSerialPort::size() const
+This function will return the number of bytes waiting in the receive queue of the serial port.
+It is included primarily to provide a complete QIODevice interface, and will not record errors
+in the lastErr member (because it is const).  This function is also not thread-safe - in
+multithreading situations, use Posix_QextSerialPort::bytesWaiting() instead.
+*/
+qint64 Posix_QextSerialPort::size() const
+{
+    int numBytes;
+    if (ioctl(Posix_File->handle(), FIONREAD, &numBytes)<0) {
+        numBytes=0;
+    }
+    return (qint64)numBytes;
+}
+
+/*!
+\fn qint64 Posix_QextSerialPort::bytesAvailable()
+Returns the number of bytes waiting in the port's receive queue.  This function will return 0 if
+the port is not currently open, or -1 on error.  Error information can be retrieved by calling
+Posix_QextSerialPort::getLastError().
+*/
+qint64 Posix_QextSerialPort::bytesAvailable()
+{
+    LOCK_MUTEX();
+    if (isOpen()) {
+        int bytesQueued;
+        fd_set fileSet;
+        FD_ZERO(&fileSet);
+        FD_SET(Posix_File->handle(), &fileSet);
+
+        /*on Linux systems the Posix_Timeout structure will be altered by the select() call.
+          Make sure we use the right timeout values*/
+        //memcpy(&Posix_Timeout, &Posix_Copy_Timeout, sizeof(struct timeval));
+        Posix_Timeout = Posix_Copy_Timeout;
+        int n=select(Posix_File->handle()+1, &fileSet, NULL, &fileSet, &Posix_Timeout);
+        if (!n) {
+            lastErr=E_PORT_TIMEOUT;
+            UNLOCK_MUTEX();
+            return -1;
+        }
+        if (n==-1 || ioctl(Posix_File->handle(), FIONREAD, &bytesQueued)==-1) {
+            translateError(errno);
+            UNLOCK_MUTEX();
+            return -1;
+        }
+        lastErr=E_NO_ERROR;
+        UNLOCK_MUTEX();
+        return bytesQueued + QIODevice::bytesAvailable();
+    }
+    UNLOCK_MUTEX();
+    return 0;
+}
+
+/*!
+\fn void Posix_QextSerialPort::ungetChar(char)
+This function is included to implement the full QIODevice interface, and currently has no
+purpose within this class.  This function is meaningless on an unbuffered device and currently
+only prints a warning message to that effect.
+*/
+void Posix_QextSerialPort::ungetChar(char)
+{
+    /*meaningless on unbuffered sequential device - return error and print a warning*/
+    TTY_WARNING("Posix_QextSerialPort: ungetChar() called on an unbuffered sequential device - operation is meaningless");
+}
+
+/*!
+\fn void Posix_QextSerialPort::translateError(ulong error)
+Translates a system-specific error code to a QextSerialPort error code.  Used internally.
+*/
+void Posix_QextSerialPort::translateError(ulong error)
+{
+    switch (error) {
+        case EBADF:
+        case ENOTTY:
+            lastErr=E_INVALID_FD;
+            break;
+
+        case EINTR:
+            lastErr=E_CAUGHT_NON_BLOCKED_SIGNAL;
+            break;
+
+        case ENOMEM:
+            lastErr=E_NO_MEMORY;
+            break;
+    }
+}
+
+/*!
+\fn void Posix_QextSerialPort::setDtr(bool set)
+Sets DTR line to the requested state (high by default).  This function will have no effect if
+the port associated with the class is not currently open.
+*/
+void Posix_QextSerialPort::setDtr(bool set)
+{
+    LOCK_MUTEX();
+    if (isOpen()) {
+        int status;
+        ioctl(Posix_File->handle(), TIOCMGET, &status);
+        if (set) {
+            status|=TIOCM_DTR;
+        }
+        else {
+            status&=~TIOCM_DTR;
+        }
+        ioctl(Posix_File->handle(), TIOCMSET, &status);
+    }
+    UNLOCK_MUTEX();
+}
+
+/*!
+\fn void Posix_QextSerialPort::setRts(bool set)
+Sets RTS line to the requested state (high by default).  This function will have no effect if
+the port associated with the class is not currently open.
+*/
+void Posix_QextSerialPort::setRts(bool set)
+{
+    LOCK_MUTEX();
+    if (isOpen()) {
+        int status;
+        ioctl(Posix_File->handle(), TIOCMGET, &status);
+        if (set) {
+            status|=TIOCM_RTS;
+        }
+        else {
+            status&=~TIOCM_RTS;
+        }
+        ioctl(Posix_File->handle(), TIOCMSET, &status);
+    }
+    UNLOCK_MUTEX();
+}
+
+/*!
+\fn unsigned long Posix_QextSerialPort::lineStatus()
+returns the line status as stored by the port function.  This function will retrieve the states
+of the following lines: DCD, CTS, DSR, and RI.  On POSIX systems, the following additional lines
+can be monitored: DTR, RTS, Secondary TXD, and Secondary RXD.  The value returned is an unsigned
+long with specific bits indicating which lines are high.  The following constants should be used
+to examine the states of individual lines:
+
+\verbatim
+Mask        Line
+------      ----
+LS_CTS      CTS
+LS_DSR      DSR
+LS_DCD      DCD
+LS_RI       RI
+LS_RTS      RTS (POSIX only)
+LS_DTR      DTR (POSIX only)
+LS_ST       Secondary TXD (POSIX only)
+LS_SR       Secondary RXD (POSIX only)
+\endverbatim
+
+This function will return 0 if the port associated with the class is not currently open.
+*/
+unsigned long Posix_QextSerialPort::lineStatus()
+{
+    unsigned long Status=0, Temp=0;
+    LOCK_MUTEX();
+    if (isOpen()) {
+        ioctl(Posix_File->handle(), TIOCMGET, &Temp);
+        if (Temp&TIOCM_CTS) {
+            Status|=LS_CTS;
+        }
+        if (Temp&TIOCM_DSR) {
+            Status|=LS_DSR;
+        }
+        if (Temp&TIOCM_RI) {
+            Status|=LS_RI;
+        }
+        if (Temp&TIOCM_CD) {
+            Status|=LS_DCD;
+        }
+        if (Temp&TIOCM_DTR) {
+            Status|=LS_DTR;
+        }
+        if (Temp&TIOCM_RTS) {
+            Status|=LS_RTS;
+        }
+        if (Temp&TIOCM_ST) {
+            Status|=LS_ST;
+        }
+        if (Temp&TIOCM_SR) {
+            Status|=LS_SR;
+        }
+    }
+    UNLOCK_MUTEX();
+    return Status;
+}
+
+/*!
+\fn qint64 Posix_QextSerialPort::readData(char * data, qint64 maxSize)
+Reads a block of data from the serial port.  This function will read at most maxSize bytes from
+the serial port and place them in the buffer pointed to by data.  Return value is the number of
+bytes actually read, or -1 on error.
+
+\warning before calling this function ensure that serial port associated with this class
+is currently open (use isOpen() function to check if port is open).
+*/
+qint64 Posix_QextSerialPort::readData(char * data, qint64 maxSize)
+{
+    LOCK_MUTEX();
+    int retVal=0;
+    retVal=Posix_File->read(data, maxSize);
+    if (retVal==-1)
+        lastErr=E_READ_FAILED;
+    UNLOCK_MUTEX();
+
+    return retVal;
+}
+
+/*!
+\fn qint64 Posix_QextSerialPort::writeData(const char * data, qint64 maxSize)
+Writes a block of data to the serial port.  This function will write maxSize bytes
+from the buffer pointed to by data to the serial port.  Return value is the number
+of bytes actually written, or -1 on error.
+
+\warning before calling this function ensure that serial port associated with this class
+is currently open (use isOpen() function to check if port is open).
+*/
+qint64 Posix_QextSerialPort::writeData(const char * data, qint64 maxSize)
+{
+    LOCK_MUTEX();
+    int retVal=0;
+    retVal=Posix_File->write(data, maxSize);
+    if (retVal==-1)
+       lastErr=E_WRITE_FAILED;
+    UNLOCK_MUTEX();
+
+    flush();
+    return retVal;
+}
Index: branches/BNC_LM/serial/posix_qextserialport.h
===================================================================
--- branches/BNC_LM/serial/posix_qextserialport.h	(revision 3570)
+++ branches/BNC_LM/serial/posix_qextserialport.h	(revision 3570)
@@ -0,0 +1,56 @@
+
+#ifndef _POSIX_QEXTSERIALPORT_H_
+#define _POSIX_QEXTSERIALPORT_H_
+
+#include <stdio.h>
+#include <termios.h>
+#include <errno.h>
+#include <unistd.h>
+#include <sys/time.h>
+#include <sys/ioctl.h>
+#include <sys/select.h>
+#include "qextserialbase.h"
+
+class Posix_QextSerialPort:public QextSerialBase {
+public:
+    Posix_QextSerialPort();
+    Posix_QextSerialPort(const Posix_QextSerialPort& s);
+    Posix_QextSerialPort(const QString & name);
+    Posix_QextSerialPort(const PortSettings& settings);
+    Posix_QextSerialPort(const QString & name, const PortSettings& settings);
+    Posix_QextSerialPort& operator=(const Posix_QextSerialPort& s);
+    virtual ~Posix_QextSerialPort();
+
+    virtual void setBaudRate(BaudRateType);
+    virtual void setDataBits(DataBitsType);
+    virtual void setParity(ParityType);
+    virtual void setStopBits(StopBitsType);
+    virtual void setFlowControl(FlowType);
+    virtual void setTimeout(ulong, ulong);
+
+    virtual bool open(OpenMode mode=0);
+    virtual void close();
+    virtual void flush();
+
+    virtual qint64 size() const;
+    virtual qint64 bytesAvailable();
+
+    virtual void ungetChar(char c);
+
+    virtual void translateError(ulong error);
+
+    virtual void setDtr(bool set=true);
+    virtual void setRts(bool set=true);
+    virtual ulong lineStatus();
+
+protected:
+    QFile* Posix_File;
+    struct termios Posix_CommConfig;
+    struct timeval Posix_Timeout;
+    struct timeval Posix_Copy_Timeout;
+
+    virtual qint64 readData(char * data, qint64 maxSize);
+    virtual qint64 writeData(const char * data, qint64 maxSize);
+};
+
+#endif
Index: branches/BNC_LM/serial/qextserialbase.cpp
===================================================================
--- branches/BNC_LM/serial/qextserialbase.cpp	(revision 3570)
+++ branches/BNC_LM/serial/qextserialbase.cpp	(revision 3570)
@@ -0,0 +1,250 @@
+
+#include "qextserialbase.h"
+
+/*!
+\class QextSerialBase
+\version 1.0.0
+\author Stefan Sander
+
+A common base class for Win_QextSerialBase, Posix_QextSerialBase and QextSerialPort.
+*/
+#ifdef QT_THREAD_SUPPORT
+QMutex* QextSerialBase::mutex=NULL;
+unsigned long QextSerialBase::refCount=0;
+#endif
+
+/*!
+\fn QextSerialBase::QextSerialBase()
+Default constructor.
+*/
+QextSerialBase::QextSerialBase()
+ : QIODevice()
+{
+
+#ifdef _TTY_WIN_
+    setPortName("COM1");
+
+#elif defined(_TTY_IRIX_)
+    setPortName("/dev/ttyf1");
+
+#elif defined(_TTY_HPUX_)
+    setPortName("/dev/tty1p0");
+
+#elif defined(_TTY_SUN_)
+    setPortName("/dev/ttya");
+
+#elif defined(_TTY_DIGITAL_)
+    setPortName("/dev/tty01");
+
+#elif defined(_TTY_FREEBSD_)
+    setPortName("/dev/ttyd1");
+
+#else
+    setPortName("/dev/ttyS0");
+#endif
+
+    construct();
+}
+
+/*!
+\fn QextSerialBase::QextSerialBase(const QString & name)
+Construct a port and assign it to the device specified by the name parameter.
+*/
+QextSerialBase::QextSerialBase(const QString & name)
+ : QIODevice()
+{
+    setPortName(name);
+    construct();
+}
+
+/*!
+\fn QextSerialBase::~QextSerialBase()
+Standard destructor.
+*/
+QextSerialBase::~QextSerialBase()
+{
+
+#ifdef QT_THREAD_SUPPORT
+    refCount--;
+    if (mutex && refCount==0) {
+        delete mutex;
+        mutex=NULL;
+    }
+#endif
+
+}
+
+/*!
+\fn void QextSerialBase::construct()
+Common constructor function for setting up default port settings.
+(115200 Baud, 8N1, Hardware flow control where supported, otherwise no flow control, and 500 ms timeout).
+*/
+void QextSerialBase::construct()
+{
+    Settings.BaudRate=BAUD115200;
+    Settings.DataBits=DATA_8;
+    Settings.Parity=PAR_NONE;
+    Settings.StopBits=STOP_1;
+    Settings.FlowControl=FLOW_HARDWARE;
+    Settings.Timeout_Sec=0;
+    Settings.Timeout_Millisec=500;
+
+#ifdef QT_THREAD_SUPPORT
+    if (!mutex) {
+        mutex=new QMutex( QMutex::Recursive );
+    }
+    refCount++;
+#endif
+
+	setOpenMode(QIODevice::NotOpen);
+}
+
+/*!
+\fn void QextSerialBase::setPortName(const QString & name)
+Sets the name of the device associated with the object, e.g. "COM1", or "/dev/ttyS0".
+*/
+void QextSerialBase::setPortName(const QString & name)
+{
+    port = name;
+}
+
+/*!
+\fn QString QextSerialBase::portName() const
+Returns the name set by setPortName().
+*/
+QString QextSerialBase::portName() const
+{
+    return port;
+}
+
+/*!
+\fn BaudRateType QextSerialBase::baudRate(void) const
+Returns the baud rate of the serial port.  For a list of possible return values see
+the definition of the enum BaudRateType.
+*/
+BaudRateType QextSerialBase::baudRate(void) const
+{
+    return Settings.BaudRate;
+}
+
+/*!
+\fn DataBitsType QextSerialBase::dataBits() const
+Returns the number of data bits used by the port.  For a list of possible values returned by
+this function, see the definition of the enum DataBitsType.
+*/
+DataBitsType QextSerialBase::dataBits() const
+{
+    return Settings.DataBits;
+}
+
+/*!
+\fn ParityType QextSerialBase::parity() const
+Returns the type of parity used by the port.  For a list of possible values returned by
+this function, see the definition of the enum ParityType.
+*/
+ParityType QextSerialBase::parity() const
+{
+    return Settings.Parity;
+}
+
+/*!
+\fn StopBitsType QextSerialBase::stopBits() const
+Returns the number of stop bits used by the port.  For a list of possible return values, see
+the definition of the enum StopBitsType.
+*/
+StopBitsType QextSerialBase::stopBits() const
+{
+    return Settings.StopBits;
+}
+
+/*!
+\fn FlowType QextSerialBase::flowControl() const
+Returns the type of flow control used by the port.  For a list of possible values returned
+by this function, see the definition of the enum FlowType.
+*/
+FlowType QextSerialBase::flowControl() const
+{
+    return Settings.FlowControl;
+}
+
+/*!
+\fn bool QextSerialBase::isSequential() const
+Returns true if device is sequential, otherwise returns false. Serial port is sequential device
+so this function always returns true. Check QIODevice::isSequential() documentation for more 
+information.
+*/
+bool QextSerialBase::isSequential() const
+{
+	return true;
+}
+
+/*!
+\fn bool QextSerialBase::atEnd() const
+This function will return true if the input buffer is empty (or on error), and false otherwise.
+Call QextSerialBase::lastError() for error information.
+*/
+bool QextSerialBase::atEnd() const
+{
+    if (size()) {
+        return true;
+    }
+    return false;
+}
+
+/*!
+\fn qint64 QextSerialBase::readLine(char * data, qint64 maxSize)
+This function will read a line of buffered input from the port, stopping when either maxSize bytes
+have been read, the port has no more data available, or a newline is encountered.
+The value returned is the length of the string that was read.
+*/
+qint64 QextSerialBase::readLine(char * data, qint64 maxSize)
+{
+    qint64 numBytes = bytesAvailable();
+    char* pData = data;
+
+	if (maxSize < 2)	//maxSize must be larger than 1
+		return -1;
+
+    /*read a byte at a time for MIN(bytesAvail, maxSize - 1) iterations, or until a newline*/
+    while (pData<(data+numBytes) && --maxSize) {
+        readData(pData, 1);
+        if (*pData++ == '\n') {
+            break;
+        }
+    }
+    *pData='\0';
+
+    /*return size of data read*/
+    return (pData-data);
+}
+
+/*!
+\fn ulong QextSerialBase::lastError() const
+Returns the code for the last error encountered by the port, or E_NO_ERROR if the last port
+operation was successful.  Possible error codes are:
+
+\verbatim
+Error                           Explanation
+---------------------------     -------------------------------------------------------------
+E_NO_ERROR                      No Error has occured
+E_INVALID_FD                    Invalid file descriptor (port was not opened correctly)
+E_NO_MEMORY                     Unable to allocate memory tables (POSIX)
+E_CAUGHT_NON_BLOCKED_SIGNAL     Caught a non-blocked signal (POSIX)
+E_PORT_TIMEOUT                  Operation timed out (POSIX)
+E_INVALID_DEVICE                The file opened by the port is not a character device (POSIX)
+E_BREAK_CONDITION               The port detected a break condition
+E_FRAMING_ERROR                 The port detected a framing error
+                                (usually caused by incorrect baud rate settings)
+E_IO_ERROR                      There was an I/O error while communicating with the port
+E_BUFFER_OVERRUN                Character buffer overrun
+E_RECEIVE_OVERFLOW              Receive buffer overflow
+E_RECEIVE_PARITY_ERROR          The port detected a parity error in the received data
+E_TRANSMIT_OVERFLOW             Transmit buffer overflow
+E_READ_FAILED                   General read operation failure
+E_WRITE_FAILED                  General write operation failure
+\endverbatim
+*/
+ulong QextSerialBase::lastError() const
+{
+    return lastErr;
+}
Index: branches/BNC_LM/serial/qextserialbase.h
===================================================================
--- branches/BNC_LM/serial/qextserialbase.h	(revision 3570)
+++ branches/BNC_LM/serial/qextserialbase.h	(revision 3570)
@@ -0,0 +1,196 @@
+
+#ifndef _QEXTSERIALBASE_H_
+#define _QEXTSERIALBASE_H_
+
+#include <QIODevice>
+#include <QFile>
+
+#ifdef QT_THREAD_SUPPORT
+#include <QThread>
+#include <QMutex>
+#endif
+
+/*if all warning messages are turned off, flag portability warnings to be turned off as well*/
+#ifdef _TTY_NOWARN_
+#define _TTY_NOWARN_PORT_
+#endif
+
+/*macros for thread support*/
+#ifdef QT_THREAD_SUPPORT
+#define LOCK_MUTEX() mutex->lock()
+#define UNLOCK_MUTEX() mutex->unlock()
+#else
+#define LOCK_MUTEX()
+#define UNLOCK_MUTEX()
+#endif
+
+/*macros for warning messages*/
+#ifdef _TTY_NOWARN_PORT_
+#define TTY_PORTABILITY_WARNING(s)
+#else
+#define TTY_PORTABILITY_WARNING(s) qWarning(s)
+#endif
+#ifdef _TTY_NOWARN_
+#define TTY_WARNING(s)
+#else
+#define TTY_WARNING(s) qWarning(s)
+#endif
+
+
+/*line status constants*/
+#define LS_CTS  0x01
+#define LS_DSR  0x02
+#define LS_DCD  0x04
+#define LS_RI   0x08
+#define LS_RTS  0x10
+#define LS_DTR  0x20
+#define LS_ST   0x40
+#define LS_SR   0x80
+
+/*error constants*/
+#define E_NO_ERROR                   0
+#define E_INVALID_FD                 1
+#define E_NO_MEMORY                  2
+#define E_CAUGHT_NON_BLOCKED_SIGNAL  3
+#define E_PORT_TIMEOUT               4
+#define E_INVALID_DEVICE             5
+#define E_BREAK_CONDITION            6
+#define E_FRAMING_ERROR              7
+#define E_IO_ERROR                   8
+#define E_BUFFER_OVERRUN             9
+#define E_RECEIVE_OVERFLOW          10
+#define E_RECEIVE_PARITY_ERROR      11
+#define E_TRANSMIT_OVERFLOW         12
+#define E_READ_FAILED               13
+#define E_WRITE_FAILED              14
+
+/*enums for port settings*/
+enum NamingConvention {
+    WIN_NAMES,
+    IRIX_NAMES,
+    HPUX_NAMES,
+    SUN_NAMES,
+    DIGITAL_NAMES,
+    FREEBSD_NAMES,
+    LINUX_NAMES
+};
+
+enum BaudRateType {
+    BAUD50,                //POSIX ONLY
+    BAUD75,                //POSIX ONLY
+    BAUD110,
+    BAUD134,               //POSIX ONLY
+    BAUD150,               //POSIX ONLY
+    BAUD200,               //POSIX ONLY
+    BAUD300,
+    BAUD600,
+    BAUD1200,
+    BAUD1800,              //POSIX ONLY
+    BAUD2400,
+    BAUD4800,
+    BAUD9600,
+    BAUD14400,             //WINDOWS ONLY
+    BAUD19200,
+    BAUD38400,
+    BAUD56000,             //WINDOWS ONLY
+    BAUD57600,
+    BAUD76800,             //POSIX ONLY
+    BAUD115200,
+    BAUD128000,            //WINDOWS ONLY
+    BAUD256000             //WINDOWS ONLY
+};
+
+enum DataBitsType {
+    DATA_5,
+    DATA_6,
+    DATA_7,
+    DATA_8
+};
+
+enum ParityType {
+    PAR_NONE,
+    PAR_ODD,
+    PAR_EVEN,
+    PAR_MARK,               //WINDOWS ONLY
+    PAR_SPACE
+};
+
+enum StopBitsType {
+    STOP_1,
+    STOP_1_5,               //WINDOWS ONLY
+    STOP_2
+};
+
+enum FlowType {
+    FLOW_OFF,
+    FLOW_HARDWARE,
+    FLOW_XONXOFF
+};
+
+/*structure to contain port settings*/
+struct PortSettings {
+    BaudRateType BaudRate;
+    DataBitsType DataBits;
+    ParityType Parity;
+    StopBitsType StopBits;
+    FlowType FlowControl;
+    ulong Timeout_Sec;
+    ulong Timeout_Millisec;
+};
+
+class QextSerialBase : public QIODevice {
+public:
+    QextSerialBase();
+    QextSerialBase(const QString & name);
+    virtual ~QextSerialBase();
+    virtual void construct();
+    virtual void setPortName(const QString & name);
+    virtual QString portName() const;
+
+    virtual void setBaudRate(BaudRateType)=0;
+    virtual BaudRateType baudRate() const;
+    virtual void setDataBits(DataBitsType)=0;
+    virtual DataBitsType dataBits() const;
+    virtual void setParity(ParityType)=0;
+    virtual ParityType parity() const;
+    virtual void setStopBits(StopBitsType)=0;
+    virtual StopBitsType stopBits() const;
+    virtual void setFlowControl(FlowType)=0;
+    virtual FlowType flowControl() const;
+    virtual void setTimeout(ulong, ulong)=0;
+
+    virtual bool open(OpenMode mode=0)=0;
+    virtual bool isSequential() const;
+    virtual void close()=0;
+    virtual void flush()=0;
+
+    virtual qint64 size() const=0;
+    virtual qint64 bytesAvailable()=0;
+    virtual bool atEnd() const;
+
+    virtual void ungetChar(char c)=0;
+    virtual qint64 readLine(char * data, qint64 maxSize);
+
+    virtual ulong lastError() const;
+    virtual void translateError(ulong error)=0;
+
+    virtual void setDtr(bool set=true)=0;
+    virtual void setRts(bool set=true)=0;
+    virtual ulong lineStatus()=0;
+
+protected:
+    QString port;
+    PortSettings Settings;
+    ulong lastErr;
+
+#ifdef QT_THREAD_SUPPORT
+    static QMutex* mutex;
+    static ulong refCount;
+#endif
+
+    virtual qint64 readData(char * data, qint64 maxSize)=0;
+    virtual qint64 writeData(const char * data, qint64 maxSize)=0;
+
+};
+
+#endif
Index: branches/BNC_LM/serial/qextserialport.cpp
===================================================================
--- branches/BNC_LM/serial/qextserialport.cpp	(revision 3570)
+++ branches/BNC_LM/serial/qextserialport.cpp	(revision 3570)
@@ -0,0 +1,98 @@
+
+/*!
+\class QextSerialPort
+\version 1.0.0
+\author Stefan Sander
+
+A cross-platform serial port class.
+This class encapsulates a serial port on both POSIX and Windows systems.  The user will be
+notified of errors and possible portability conflicts at run-time by default - this behavior can
+be turned off by defining _TTY_NOWARN_ (to turn off all warnings) or _TTY_NOWARN_PORT_ (to turn
+off portability warnings) in the project.
+
+\note
+On Windows NT/2000/XP this class uses Win32 serial port functions by default.  The user may
+select POSIX behavior under NT, 2000, or XP ONLY by defining _TTY_POSIX_ in the project. I can
+make no guarantees as to the quality of POSIX support under NT/2000 however.
+
+*/
+
+#include <stdio.h>
+#include "qextserialport.h"
+
+/*!
+\fn QextSerialPort::QextSerialPort()
+Default constructor.  Note that the naming convention used by a QextSerialPort constructed with
+this constructor will be determined by #defined constants, or lack thereof - the default behavior
+is the same as _TTY_LINUX_.  Possible naming conventions and their associated constants are:
+
+\verbatim
+
+Constant         Used By         Naming Convention
+----------       -------------   ------------------------
+_TTY_WIN_        Windows         COM1, COM2
+_TTY_IRIX_       SGI/IRIX        /dev/ttyf1, /dev/ttyf2
+_TTY_HPUX_       HP-UX           /dev/tty1p0, /dev/tty2p0
+_TTY_SUN_        SunOS/Solaris   /dev/ttya, /dev/ttyb
+_TTY_DIGITAL_    Digital UNIX    /dev/tty01, /dev/tty02
+_TTY_FREEBSD_    FreeBSD         /dev/ttyd0, /dev/ttyd1
+_TTY_LINUX_      Linux           /dev/ttyS0, /dev/ttyS1
+<none>           Linux           /dev/ttyS0, /dev/ttyS1
+\endverbatim
+
+The object will be associated with the first port in the system, e.g. COM1 on Windows systems.
+See the other constructors if you need to use a port other than the first.
+*/
+QextSerialPort::QextSerialPort()
+ : QextBaseType()
+{}
+
+/*!
+\fn QextSerialPort::QextSerialPort(const QString & name)
+Constructs a serial port attached to the port specified by name.
+name is the name of the device, which is windowsystem-specific,
+e.g."COM1" or "/dev/ttyS0".
+*/
+QextSerialPort::QextSerialPort(const QString & name)
+ : QextBaseType(name)
+{}
+
+/*!
+\fn QextSerialPort::QextSerialPort(PortSettings const& settings)
+Constructs a port with default name and settings specified by the settings parameter.
+*/
+QextSerialPort::QextSerialPort(PortSettings const& settings)
+ : QextBaseType(settings)
+{}
+
+/*!
+\fn QextSerialPort::QextSerialPort(const QString & name, PortSettings const& settings)
+Constructs a port with the name and settings specified.
+*/
+QextSerialPort::QextSerialPort(const QString & name, PortSettings const& settings)
+ : QextBaseType(name, settings)
+{}
+
+/*!
+\fn QextSerialPort::QextSerialPort(const QextSerialPort& s)
+Copy constructor.
+*/
+QextSerialPort::QextSerialPort(const QextSerialPort& s)
+ : QextBaseType(s)
+{}
+
+/*!
+\fn QextSerialPort& QextSerialPort::operator=(const QextSerialPort& s)
+Overrides the = operator.
+*/
+QextSerialPort& QextSerialPort::operator=(const QextSerialPort& s)
+{
+    return (QextSerialPort&)QextBaseType::operator=(s);
+}
+
+/*!
+\fn QextSerialPort::~QextSerialPort()
+Standard destructor.
+*/
+QextSerialPort::~QextSerialPort()
+{}
Index: branches/BNC_LM/serial/qextserialport.h
===================================================================
--- branches/BNC_LM/serial/qextserialport.h	(revision 3570)
+++ branches/BNC_LM/serial/qextserialport.h	(revision 3570)
@@ -0,0 +1,27 @@
+
+#ifndef _QEXTSERIALPORT_H_
+#define _QEXTSERIALPORT_H_
+
+/*POSIX CODE*/
+#ifdef _TTY_POSIX_
+#include "posix_qextserialport.h"
+#define QextBaseType Posix_QextSerialPort
+
+/*MS WINDOWS CODE*/
+#else
+#include "win_qextserialport.h"
+#define QextBaseType Win_QextSerialPort
+#endif
+
+class QextSerialPort: public QextBaseType {
+public:
+    QextSerialPort();
+    QextSerialPort(const QString & name);
+    QextSerialPort(PortSettings const& s);
+    QextSerialPort(const QString & name, PortSettings const& s);
+    QextSerialPort(const QextSerialPort& s);
+    QextSerialPort& operator=(const QextSerialPort&);
+    virtual ~QextSerialPort();
+};
+
+#endif
Index: branches/BNC_LM/serial/win_qextserialport.cpp
===================================================================
--- branches/BNC_LM/serial/win_qextserialport.cpp	(revision 3570)
+++ branches/BNC_LM/serial/win_qextserialport.cpp	(revision 3570)
@@ -0,0 +1,877 @@
+/*!
+\class Win_QextSerialPort
+\version 1.0.0
+\author Stefan Sander
+
+A cross-platform serial port class.
+This class encapsulates the Windows portion of QextSerialPort.  The user will be notified of
+errors and possible portability conflicts at run-time by default - this behavior can be turned
+off by defining _TTY_NOWARN_ (to turn off all warnings) or _TTY_NOWARN_PORT_ (to turn off
+portability warnings) in the project.  Note that defining _TTY_NOWARN_ also defines
+_TTY_NOWARN_PORT_.
+
+\note
+On Windows NT/2000/XP this class uses Win32 serial port functions by default.  The user may
+select POSIX behavior under NT, 2000, or XP ONLY by defining _TTY_POSIX_ in the project. I can
+make no guarantees as to the quality of POSIX support under NT/2000 however.
+
+*/
+
+#include <stdio.h>
+#include "win_qextserialport.h"
+
+/*!
+\fn Win_QextSerialPort::Win_QextSerialPort()
+Default constructor.  Note that the name of the device used by a Win_QextSerialPort constructed
+with this constructor will be determined by #defined constants, or lack thereof - the default
+behavior is the same as _TTY_LINUX_.  Possible naming conventions and their associated constants
+are:
+
+\verbatim
+
+Constant         Used By         Naming Convention
+----------       -------------   ------------------------
+_TTY_WIN_        Windows         COM1, COM2
+_TTY_IRIX_       SGI/IRIX        /dev/ttyf1, /dev/ttyf2
+_TTY_HPUX_       HP-UX           /dev/tty1p0, /dev/tty2p0
+_TTY_SUN_        SunOS/Solaris   /dev/ttya, /dev/ttyb
+_TTY_DIGITAL_    Digital UNIX    /dev/tty01, /dev/tty02
+_TTY_FREEBSD_    FreeBSD         /dev/ttyd0, /dev/ttyd1
+_TTY_LINUX_      Linux           /dev/ttyS0, /dev/ttyS1
+<none>           Linux           /dev/ttyS0, /dev/ttyS1
+\endverbatim
+
+This constructor associates the object with the first port on the system, e.g. COM1 for Windows
+platforms.  See the other constructor if you need a port other than the first.
+*/
+Win_QextSerialPort::Win_QextSerialPort():QextSerialBase() {
+    Win_Handle=INVALID_HANDLE_VALUE;
+}
+
+/*!Win_QextSerialPort::Win_QextSerialPort(const Win_QextSerialPort&)
+Copy constructor.
+*/
+Win_QextSerialPort::Win_QextSerialPort(const Win_QextSerialPort& s):QextSerialBase(s.port) {
+    Win_Handle=INVALID_HANDLE_VALUE;
+    setOpenMode(s.openMode());
+    lastErr=s.lastErr;
+    port = s.port;
+    Settings.FlowControl=s.Settings.FlowControl;
+    Settings.Parity=s.Settings.Parity;
+    Settings.DataBits=s.Settings.DataBits;
+    Settings.StopBits=s.Settings.StopBits;
+    Settings.BaudRate=s.Settings.BaudRate;
+    Win_Handle=s.Win_Handle;
+    memcpy(&Win_CommConfig, &s.Win_CommConfig, sizeof(COMMCONFIG));
+    memcpy(&Win_CommTimeouts, &s.Win_CommTimeouts, sizeof(COMMTIMEOUTS));
+}
+
+/*!
+\fn Win_QextSerialPort::Win_QextSerialPort(const QString & name)
+Constructs a serial port attached to the port specified by devName.
+devName is the name of the device, which is windowsystem-specific,
+e.g."COM2" or "/dev/ttyS0".
+*/
+Win_QextSerialPort::Win_QextSerialPort(const QString & name):QextSerialBase(name) {
+    Win_Handle=INVALID_HANDLE_VALUE;
+}
+
+/*!
+\fn Win_QextSerialPort::Win_QextSerialPort(const PortSettings& settings)
+Constructs a port with default name and specified settings.
+*/
+Win_QextSerialPort::Win_QextSerialPort(const PortSettings& settings) {
+    Win_Handle=INVALID_HANDLE_VALUE;
+    setBaudRate(settings.BaudRate);
+    setDataBits(settings.DataBits);
+    setStopBits(settings.StopBits);
+    setParity(settings.Parity);
+    setFlowControl(settings.FlowControl);
+    setTimeout(settings.Timeout_Sec, settings.Timeout_Millisec);
+}
+
+/*!
+\fn Win_QextSerialPort::Win_QextSerialPort(const QString & name, const PortSettings& settings)
+Constructs a port with specified name and settings.
+*/
+Win_QextSerialPort::Win_QextSerialPort(const QString & name, const PortSettings& settings) {
+    Win_Handle=INVALID_HANDLE_VALUE;
+    setPortName(name);
+    setBaudRate(settings.BaudRate);
+    setDataBits(settings.DataBits);
+    setStopBits(settings.StopBits);
+    setParity(settings.Parity);
+    setFlowControl(settings.FlowControl);
+    setTimeout(settings.Timeout_Sec, settings.Timeout_Millisec);
+}
+
+/*!
+\fn Win_QextSerialPort::~Win_QextSerialPort()
+Standard destructor.
+*/
+Win_QextSerialPort::~Win_QextSerialPort() {
+    if (isOpen()) {
+        close();
+    }
+}
+
+/*!
+\fn Win_QextSerialPort& Win_QextSerialPort::operator=(const Win_QextSerialPort& s)
+overrides the = operator
+*/
+Win_QextSerialPort& Win_QextSerialPort::operator=(const Win_QextSerialPort& s) {
+    setOpenMode(s.openMode());
+    lastErr=s.lastErr;
+    port = s.port;
+    Settings.FlowControl=s.Settings.FlowControl;
+    Settings.Parity=s.Settings.Parity;
+    Settings.DataBits=s.Settings.DataBits;
+    Settings.StopBits=s.Settings.StopBits;
+    Settings.BaudRate=s.Settings.BaudRate;
+    Win_Handle=s.Win_Handle;
+    memcpy(&Win_CommConfig, &s.Win_CommConfig, sizeof(COMMCONFIG));
+    memcpy(&Win_CommTimeouts, &s.Win_CommTimeouts, sizeof(COMMTIMEOUTS));
+    return *this;
+}
+
+/*!
+\fn bool Win_QextSerialPort::open(OpenMode mode)
+Opens a serial port.  Note that this function does not specify which device to open.  If you need
+to open a device by name, see Win_QextSerialPort::open(const char*).  This function has no effect
+if the port associated with the class is already open.  The port is also configured to the current
+settings, as stored in the Settings structure.
+*/
+bool Win_QextSerialPort::open(OpenMode mode) {
+    unsigned long confSize = sizeof(COMMCONFIG);
+    Win_CommConfig.dwSize = confSize;
+
+    LOCK_MUTEX();
+    if (mode == QIODevice::NotOpen)
+        return isOpen();
+    if (!isOpen()) {
+        /*open the port*/
+        Win_Handle=CreateFileA(port.toAscii(), GENERIC_READ|GENERIC_WRITE,
+                              FILE_SHARE_READ|FILE_SHARE_WRITE, NULL, OPEN_EXISTING, 0, NULL);
+        if (Win_Handle!=INVALID_HANDLE_VALUE) {
+            /*set open mode*/
+            QIODevice::open(mode);
+
+            /*configure port settings*/
+            GetCommConfig(Win_Handle, &Win_CommConfig, &confSize);
+            GetCommState(Win_Handle, &(Win_CommConfig.dcb));
+
+            /*set up parameters*/
+            Win_CommConfig.dcb.fBinary=TRUE;
+            Win_CommConfig.dcb.fInX=FALSE;
+            Win_CommConfig.dcb.fOutX=FALSE;
+            Win_CommConfig.dcb.fAbortOnError=FALSE;
+            Win_CommConfig.dcb.fNull=FALSE;
+            setBaudRate(Settings.BaudRate);
+            setDataBits(Settings.DataBits);
+            setStopBits(Settings.StopBits);
+            setParity(Settings.Parity);
+            setFlowControl(Settings.FlowControl);
+            setTimeout(Settings.Timeout_Sec, Settings.Timeout_Millisec);
+            SetCommConfig(Win_Handle, &Win_CommConfig, sizeof(COMMCONFIG));
+        }
+    }
+    UNLOCK_MUTEX();
+    return isOpen();
+}
+
+/*!
+\fn void Win_QextSerialPort::close()
+Closes a serial port.  This function has no effect if the serial port associated with the class
+is not currently open.
+*/
+void Win_QextSerialPort::close() {
+    LOCK_MUTEX();
+    CloseHandle(Win_Handle);
+    QIODevice::close();
+    UNLOCK_MUTEX();
+}
+
+/*!
+\fn void Win_QextSerialPort::flush()
+Flushes all pending I/O to the serial port.  This function has no effect if the serial port
+associated with the class is not currently open.
+*/
+void Win_QextSerialPort::flush() {
+    LOCK_MUTEX();
+    if (isOpen()) {
+        FlushFileBuffers(Win_Handle);
+    }
+    UNLOCK_MUTEX();
+}
+
+/*!
+\fn qint64 Win_QextSerialPort::size() const
+This function will return the number of bytes waiting in the receive queue of the serial port.
+It is included primarily to provide a complete QIODevice interface, and will not record errors
+in the lastErr member (because it is const).  This function is also not thread-safe - in
+multithreading situations, use Win_QextSerialPort::bytesAvailable() instead.
+*/
+qint64 Win_QextSerialPort::size() const {
+    int availBytes;
+    COMSTAT Win_ComStat;
+    DWORD Win_ErrorMask=0;
+    ClearCommError(Win_Handle, &Win_ErrorMask, &Win_ComStat);
+    availBytes = Win_ComStat.cbInQue;
+    return (qint64)availBytes;
+}
+
+/*!
+\fn qint64 Win_QextSerialPort::bytesAvailable()
+Returns the number of bytes waiting in the port's receive queue.  This function will return 0 if
+the port is not currently open, or -1 on error.  Error information can be retrieved by calling
+Win_QextSerialPort::getLastError().
+*/
+qint64 Win_QextSerialPort::bytesAvailable() {
+    LOCK_MUTEX();
+    if (isOpen()) {
+        DWORD Errors;
+        COMSTAT Status;
+        bool success=ClearCommError(Win_Handle, &Errors, &Status);
+        translateError(Errors);
+        if (success) {
+            lastErr=E_NO_ERROR;
+            UNLOCK_MUTEX();
+            return Status.cbInQue + QIODevice::bytesAvailable();
+        }
+        UNLOCK_MUTEX();
+        return (unsigned int)-1;
+    }
+    UNLOCK_MUTEX();
+    return 0;
+}
+
+/*!
+\fn void Win_QextSerialPort::translateError(ulong error)
+Translates a system-specific error code to a QextSerialPort error code.  Used internally.
+*/
+void Win_QextSerialPort::translateError(ulong error) {
+    if (error&CE_BREAK) {
+        lastErr=E_BREAK_CONDITION;
+    }
+    else if (error&CE_FRAME) {
+        lastErr=E_FRAMING_ERROR;
+    }
+    else if (error&CE_IOE) {
+        lastErr=E_IO_ERROR;
+    }
+    else if (error&CE_MODE) {
+        lastErr=E_INVALID_FD;
+    }
+    else if (error&CE_OVERRUN) {
+        lastErr=E_BUFFER_OVERRUN;
+    }
+    else if (error&CE_RXPARITY) {
+        lastErr=E_RECEIVE_PARITY_ERROR;
+    }
+    else if (error&CE_RXOVER) {
+        lastErr=E_RECEIVE_OVERFLOW;
+    }
+    else if (error&CE_TXFULL) {
+        lastErr=E_TRANSMIT_OVERFLOW;
+    }
+}
+
+/*!
+\fn qint64 Win_QextSerialPort::readData(char *data, qint64 maxSize)
+Reads a block of data from the serial port.  This function will read at most maxlen bytes from
+the serial port and place them in the buffer pointed to by data.  Return value is the number of
+bytes actually read, or -1 on error.
+
+\warning before calling this function ensure that serial port associated with this class
+is currently open (use isOpen() function to check if port is open).
+*/
+qint64 Win_QextSerialPort::readData(char *data, qint64 maxSize)
+{
+    LOCK_MUTEX();
+    int retVal=0;
+    COMSTAT Win_ComStat;
+    DWORD Win_BytesRead=0;
+    DWORD Win_ErrorMask=0;
+    ClearCommError(Win_Handle, &Win_ErrorMask, &Win_ComStat);
+    if (Win_ComStat.cbInQue &&
+        (!ReadFile(Win_Handle, (void*)data, (DWORD)maxSize, &Win_BytesRead, NULL)
+        || Win_BytesRead==0)) {
+        lastErr=E_READ_FAILED;
+        retVal=-1;
+    }
+    else {
+        retVal=((int)Win_BytesRead);
+    }
+    UNLOCK_MUTEX();
+
+    return retVal;
+}
+
+/*!
+\fn qint64 Win_QextSerialPort::writeData(const char *data, qint64 maxSize)
+Writes a block of data to the serial port.  This function will write len bytes
+from the buffer pointed to by data to the serial port.  Return value is the number
+of bytes actually written, or -1 on error.
+
+\warning before calling this function ensure that serial port associated with this class
+is currently open (use isOpen() function to check if port is open).
+*/
+qint64 Win_QextSerialPort::writeData(const char *data, qint64 maxSize)
+{
+    LOCK_MUTEX();
+    int retVal=0;
+    DWORD Win_BytesWritten;
+    if (!WriteFile(Win_Handle, (void*)data, (DWORD)maxSize, &Win_BytesWritten, NULL)) {
+        lastErr=E_WRITE_FAILED;
+        retVal=-1;
+    }
+    else {
+        retVal=((int)Win_BytesWritten);
+    }
+    UNLOCK_MUTEX();
+
+    flush();
+    return retVal;
+}
+
+/*!
+\fn void Win_QextSerialPort::ungetChar(char c)
+This function is included to implement the full QIODevice interface, and currently has no
+purpose within this class.  This function is meaningless on an unbuffered device and currently
+only prints a warning message to that effect.
+*/
+void Win_QextSerialPort::ungetChar(char c) {
+
+    /*meaningless on unbuffered sequential device - return error and print a warning*/
+    TTY_WARNING("Win_QextSerialPort: ungetChar() called on an unbuffered sequential device - operation is meaningless");
+}
+
+/*!
+\fn void Win_QextSerialPort::setFlowControl(FlowType flow)
+Sets the flow control used by the port.  Possible values of flow are:
+\verbatim
+    FLOW_OFF            No flow control
+    FLOW_HARDWARE       Hardware (RTS/CTS) flow control
+    FLOW_XONXOFF        Software (XON/XOFF) flow control
+\endverbatim
+*/
+void Win_QextSerialPort::setFlowControl(FlowType flow) {
+    LOCK_MUTEX();
+    if (Settings.FlowControl!=flow) {
+        Settings.FlowControl=flow;
+    }
+    if (isOpen()) {
+        switch(flow) {
+
+            /*no flow control*/
+            case FLOW_OFF:
+                Win_CommConfig.dcb.fOutxCtsFlow=FALSE;
+                Win_CommConfig.dcb.fRtsControl=RTS_CONTROL_DISABLE;
+                Win_CommConfig.dcb.fInX=FALSE;
+                Win_CommConfig.dcb.fOutX=FALSE;
+                SetCommConfig(Win_Handle, &Win_CommConfig, sizeof(COMMCONFIG));
+                break;
+
+            /*software (XON/XOFF) flow control*/
+            case FLOW_XONXOFF:
+                Win_CommConfig.dcb.fOutxCtsFlow=FALSE;
+                Win_CommConfig.dcb.fRtsControl=RTS_CONTROL_DISABLE;
+                Win_CommConfig.dcb.fInX=TRUE;
+                Win_CommConfig.dcb.fOutX=TRUE;
+                SetCommConfig(Win_Handle, &Win_CommConfig, sizeof(COMMCONFIG));
+                break;
+
+            case FLOW_HARDWARE:
+                Win_CommConfig.dcb.fOutxCtsFlow=TRUE;
+                Win_CommConfig.dcb.fRtsControl=RTS_CONTROL_HANDSHAKE;
+                Win_CommConfig.dcb.fInX=FALSE;
+                Win_CommConfig.dcb.fOutX=FALSE;
+                SetCommConfig(Win_Handle, &Win_CommConfig, sizeof(COMMCONFIG));
+                break;
+        }
+    }
+    UNLOCK_MUTEX();
+}
+
+/*!
+\fn void Win_QextSerialPort::setParity(ParityType parity)
+Sets the parity associated with the serial port.  The possible values of parity are:
+\verbatim
+    PAR_SPACE       Space Parity
+    PAR_MARK        Mark Parity
+    PAR_NONE        No Parity
+    PAR_EVEN        Even Parity
+    PAR_ODD         Odd Parity
+\endverbatim
+*/
+void Win_QextSerialPort::setParity(ParityType parity) {
+    LOCK_MUTEX();
+    if (Settings.Parity!=parity) {
+        Settings.Parity=parity;
+    }
+    if (isOpen()) {
+        Win_CommConfig.dcb.Parity=(unsigned char)parity;
+        switch (parity) {
+
+            /*space parity*/
+            case PAR_SPACE:
+                if (Settings.DataBits==DATA_8) {
+                    TTY_PORTABILITY_WARNING("Win_QextSerialPort Portability Warning: Space parity with 8 data bits is not supported by POSIX systems.");
+                }
+                Win_CommConfig.dcb.fParity=TRUE;
+                break;
+
+            /*mark parity - WINDOWS ONLY*/
+            case PAR_MARK:
+                TTY_PORTABILITY_WARNING("Win_QextSerialPort Portability Warning:  Mark parity is not supported by POSIX systems");
+                Win_CommConfig.dcb.fParity=TRUE;
+                break;
+
+            /*no parity*/
+            case PAR_NONE:
+                Win_CommConfig.dcb.fParity=FALSE;
+                break;
+
+            /*even parity*/
+            case PAR_EVEN:
+                Win_CommConfig.dcb.fParity=TRUE;
+                break;
+
+            /*odd parity*/
+            case PAR_ODD:
+                Win_CommConfig.dcb.fParity=TRUE;
+                break;
+        }
+        SetCommConfig(Win_Handle, &Win_CommConfig, sizeof(COMMCONFIG));
+    }
+    UNLOCK_MUTEX();
+}
+
+/*!
+\fn void Win_QextSerialPort::setDataBits(DataBitsType dataBits)
+Sets the number of data bits used by the serial port.  Possible values of dataBits are:
+\verbatim
+    DATA_5      5 data bits
+    DATA_6      6 data bits
+    DATA_7      7 data bits
+    DATA_8      8 data bits
+\endverbatim
+
+\note
+This function is subject to the following restrictions:
+\par
+    5 data bits cannot be used with 2 stop bits.
+\par
+    1.5 stop bits can only be used with 5 data bits.
+\par
+    8 data bits cannot be used with space parity on POSIX systems.
+
+*/
+void Win_QextSerialPort::setDataBits(DataBitsType dataBits) {
+    LOCK_MUTEX();
+    if (Settings.DataBits!=dataBits) {
+        if ((Settings.StopBits==STOP_2 && dataBits==DATA_5) ||
+            (Settings.StopBits==STOP_1_5 && dataBits!=DATA_5)) {
+        }
+        else {
+            Settings.DataBits=dataBits;
+        }
+    }
+    if (isOpen()) {
+        switch(dataBits) {
+
+            /*5 data bits*/
+            case DATA_5:
+                if (Settings.StopBits==STOP_2) {
+                    TTY_WARNING("Win_QextSerialPort: 5 Data bits cannot be used with 2 stop bits.");
+                }
+                else {
+                    Win_CommConfig.dcb.ByteSize=5;
+                    SetCommConfig(Win_Handle, &Win_CommConfig, sizeof(COMMCONFIG));
+                }
+                break;
+
+            /*6 data bits*/
+            case DATA_6:
+                if (Settings.StopBits==STOP_1_5) {
+                    TTY_WARNING("Win_QextSerialPort: 6 Data bits cannot be used with 1.5 stop bits.");
+                }
+                else {
+                    Win_CommConfig.dcb.ByteSize=6;
+                    SetCommConfig(Win_Handle, &Win_CommConfig, sizeof(COMMCONFIG));
+                }
+                break;
+
+            /*7 data bits*/
+            case DATA_7:
+                if (Settings.StopBits==STOP_1_5) {
+                    TTY_WARNING("Win_QextSerialPort: 7 Data bits cannot be used with 1.5 stop bits.");
+                }
+                else {
+                    Win_CommConfig.dcb.ByteSize=7;
+                    SetCommConfig(Win_Handle, &Win_CommConfig, sizeof(COMMCONFIG));
+                }
+                break;
+
+            /*8 data bits*/
+            case DATA_8:
+                if (Settings.StopBits==STOP_1_5) {
+                    TTY_WARNING("Win_QextSerialPort: 8 Data bits cannot be used with 1.5 stop bits.");
+                }
+                else {
+                    Win_CommConfig.dcb.ByteSize=8;
+                    SetCommConfig(Win_Handle, &Win_CommConfig, sizeof(COMMCONFIG));
+                }
+                break;
+        }
+    }
+    UNLOCK_MUTEX();
+}
+
+/*!
+\fn void Win_QextSerialPort::setStopBits(StopBitsType stopBits)
+Sets the number of stop bits used by the serial port.  Possible values of stopBits are:
+\verbatim
+    STOP_1      1 stop bit
+    STOP_1_5    1.5 stop bits
+    STOP_2      2 stop bits
+\endverbatim
+
+\note
+This function is subject to the following restrictions:
+\par
+    2 stop bits cannot be used with 5 data bits.
+\par
+    1.5 stop bits cannot be used with 6 or more data bits.
+\par
+    POSIX does not support 1.5 stop bits.
+*/
+void Win_QextSerialPort::setStopBits(StopBitsType stopBits) {
+    LOCK_MUTEX();
+    if (Settings.StopBits!=stopBits) {
+        if ((Settings.DataBits==DATA_5 && stopBits==STOP_2) ||
+            (stopBits==STOP_1_5 && Settings.DataBits!=DATA_5)) {
+        }
+        else {
+            Settings.StopBits=stopBits;
+        }
+    }
+    if (isOpen()) {
+        switch (stopBits) {
+
+            /*one stop bit*/
+            case STOP_1:
+                Win_CommConfig.dcb.StopBits=ONESTOPBIT;
+                SetCommConfig(Win_Handle, &Win_CommConfig, sizeof(COMMCONFIG));
+                break;
+
+            /*1.5 stop bits*/
+            case STOP_1_5:
+                TTY_PORTABILITY_WARNING("Win_QextSerialPort Portability Warning: 1.5 stop bit operation is not supported by POSIX.");
+                if (Settings.DataBits!=DATA_5) {
+                    TTY_WARNING("Win_QextSerialPort: 1.5 stop bits can only be used with 5 data bits");
+                }
+                else {
+                    Win_CommConfig.dcb.StopBits=ONE5STOPBITS;
+                    SetCommConfig(Win_Handle, &Win_CommConfig, sizeof(COMMCONFIG));
+                }
+                break;
+
+            /*two stop bits*/
+            case STOP_2:
+                if (Settings.DataBits==DATA_5) {
+                    TTY_WARNING("Win_QextSerialPort: 2 stop bits cannot be used with 5 data bits");
+                }
+                else {
+                    Win_CommConfig.dcb.StopBits=TWOSTOPBITS;
+                    SetCommConfig(Win_Handle, &Win_CommConfig, sizeof(COMMCONFIG));
+                }
+                break;
+        }
+    }
+    UNLOCK_MUTEX();
+}
+
+/*!
+\fn void Win_QextSerialPort::setBaudRate(BaudRateType baudRate)
+Sets the baud rate of the serial port.  Note that not all rates are applicable on
+all platforms.  The following table shows translations of the various baud rate
+constants on Windows(including NT/2000) and POSIX platforms.  Speeds marked with an *
+are speeds that are usable on both Windows and POSIX.
+\verbatim
+
+  RATE          Windows Speed   POSIX Speed
+  -----------   -------------   -----------
+   BAUD50                 110          50
+   BAUD75                 110          75
+  *BAUD110                110         110
+   BAUD134                110         134.5
+   BAUD150                110         150
+   BAUD200                110         200
+  *BAUD300                300         300
+  *BAUD600                600         600
+  *BAUD1200              1200        1200
+   BAUD1800              1200        1800
+  *BAUD2400              2400        2400
+  *BAUD4800              4800        4800
+  *BAUD9600              9600        9600
+   BAUD14400            14400        9600
+  *BAUD19200            19200       19200
+  *BAUD38400            38400       38400
+   BAUD56000            56000       38400
+  *BAUD57600            57600       57600
+   BAUD76800            57600       76800
+  *BAUD115200          115200      115200
+   BAUD128000          128000      115200
+   BAUD256000          256000      115200
+\endverbatim
+*/
+void Win_QextSerialPort::setBaudRate(BaudRateType baudRate) {
+    LOCK_MUTEX();
+    if (Settings.BaudRate!=baudRate) {
+        switch (baudRate) {
+            case BAUD50:
+            case BAUD75:
+            case BAUD134:
+            case BAUD150:
+            case BAUD200:
+                Settings.BaudRate=BAUD110;
+                break;
+
+            case BAUD1800:
+                Settings.BaudRate=BAUD1200;
+                break;
+
+            case BAUD76800:
+                Settings.BaudRate=BAUD57600;
+                break;
+
+            default:
+                Settings.BaudRate=baudRate;
+                break;
+        }
+    }
+    if (isOpen()) {
+        switch (baudRate) {
+
+            /*50 baud*/
+            case BAUD50:
+                TTY_WARNING("Win_QextSerialPort: Windows does not support 50 baud operation.  Switching to 110 baud.");
+                Win_CommConfig.dcb.BaudRate=CBR_110;
+                break;
+
+            /*75 baud*/
+            case BAUD75:
+                TTY_WARNING("Win_QextSerialPort: Windows does not support 75 baud operation.  Switching to 110 baud.");
+                Win_CommConfig.dcb.BaudRate=CBR_110;
+                break;
+
+            /*110 baud*/
+            case BAUD110:
+                Win_CommConfig.dcb.BaudRate=CBR_110;
+                break;
+
+            /*134.5 baud*/
+            case BAUD134:
+                TTY_WARNING("Win_QextSerialPort: Windows does not support 134.5 baud operation.  Switching to 110 baud.");
+                Win_CommConfig.dcb.BaudRate=CBR_110;
+                break;
+
+            /*150 baud*/
+            case BAUD150:
+                TTY_WARNING("Win_QextSerialPort: Windows does not support 150 baud operation.  Switching to 110 baud.");
+                Win_CommConfig.dcb.BaudRate=CBR_110;
+                break;
+
+            /*200 baud*/
+            case BAUD200:
+                TTY_WARNING("Win_QextSerialPort: Windows does not support 200 baud operation.  Switching to 110 baud.");
+                Win_CommConfig.dcb.BaudRate=CBR_110;
+                break;
+
+            /*300 baud*/
+            case BAUD300:
+                Win_CommConfig.dcb.BaudRate=CBR_300;
+                break;
+
+            /*600 baud*/
+            case BAUD600:
+                Win_CommConfig.dcb.BaudRate=CBR_600;
+                break;
+
+            /*1200 baud*/
+            case BAUD1200:
+                Win_CommConfig.dcb.BaudRate=CBR_1200;
+                break;
+
+            /*1800 baud*/
+            case BAUD1800:
+                TTY_WARNING("Win_QextSerialPort: Windows does not support 1800 baud operation.  Switching to 1200 baud.");
+                Win_CommConfig.dcb.BaudRate=CBR_1200;
+                break;
+
+            /*2400 baud*/
+            case BAUD2400:
+                Win_CommConfig.dcb.BaudRate=CBR_2400;
+                break;
+
+            /*4800 baud*/
+            case BAUD4800:
+                Win_CommConfig.dcb.BaudRate=CBR_4800;
+                break;
+
+            /*9600 baud*/
+            case BAUD9600:
+                Win_CommConfig.dcb.BaudRate=CBR_9600;
+                break;
+
+            /*14400 baud*/
+            case BAUD14400:
+                TTY_PORTABILITY_WARNING("Win_QextSerialPort Portability Warning: POSIX does not support 14400 baud operation.");
+                Win_CommConfig.dcb.BaudRate=CBR_14400;
+                break;
+
+            /*19200 baud*/
+            case BAUD19200:
+                Win_CommConfig.dcb.BaudRate=CBR_19200;
+                break;
+
+            /*38400 baud*/
+            case BAUD38400:
+                Win_CommConfig.dcb.BaudRate=CBR_38400;
+                break;
+
+            /*56000 baud*/
+            case BAUD56000:
+                TTY_PORTABILITY_WARNING("Win_QextSerialPort Portability Warning: POSIX does not support 56000 baud operation.");
+                Win_CommConfig.dcb.BaudRate=CBR_56000;
+                break;
+
+            /*57600 baud*/
+            case BAUD57600:
+                Win_CommConfig.dcb.BaudRate=CBR_57600;
+                break;
+
+            /*76800 baud*/
+            case BAUD76800:
+                TTY_WARNING("Win_QextSerialPort: Windows does not support 76800 baud operation.  Switching to 57600 baud.");
+                Win_CommConfig.dcb.BaudRate=CBR_57600;
+                break;
+
+            /*115200 baud*/
+            case BAUD115200:
+                Win_CommConfig.dcb.BaudRate=CBR_115200;
+                break;
+
+            /*128000 baud*/
+            case BAUD128000:
+                TTY_PORTABILITY_WARNING("Win_QextSerialPort Portability Warning: POSIX does not support 128000 baud operation.");
+                Win_CommConfig.dcb.BaudRate=CBR_128000;
+                break;
+
+            /*256000 baud*/
+            case BAUD256000:
+                TTY_PORTABILITY_WARNING("Win_QextSerialPort Portability Warning: POSIX does not support 256000 baud operation.");
+                Win_CommConfig.dcb.BaudRate=CBR_256000;
+                break;
+        }
+        SetCommConfig(Win_Handle, &Win_CommConfig, sizeof(COMMCONFIG));
+    }
+    UNLOCK_MUTEX();
+}
+
+/*!
+\fn void Win_QextSerialPort::setDtr(bool set)
+Sets DTR line to the requested state (high by default).  This function will have no effect if
+the port associated with the class is not currently open.
+*/
+void Win_QextSerialPort::setDtr(bool set) {
+    LOCK_MUTEX();
+    if (isOpen()) {
+        if (set) {
+            EscapeCommFunction(Win_Handle, SETDTR);
+        }
+        else {
+            EscapeCommFunction(Win_Handle, CLRDTR);
+        }
+    }
+    UNLOCK_MUTEX();
+}
+
+/*!
+\fn void Win_QextSerialPort::setRts(bool set)
+Sets RTS line to the requested state (high by default).  This function will have no effect if
+the port associated with the class is not currently open.
+*/
+void Win_QextSerialPort::setRts(bool set) {
+    LOCK_MUTEX();
+    if (isOpen()) {
+        if (set) {
+            EscapeCommFunction(Win_Handle, SETRTS);
+        }
+        else {
+            EscapeCommFunction(Win_Handle, CLRRTS);
+        }
+    }
+    UNLOCK_MUTEX();
+}
+
+/*!
+\fn ulong Win_QextSerialPort::lineStatus(void)
+returns the line status as stored by the port function.  This function will retrieve the states
+of the following lines: DCD, CTS, DSR, and RI.  On POSIX systems, the following additional lines
+can be monitored: DTR, RTS, Secondary TXD, and Secondary RXD.  The value returned is an unsigned
+long with specific bits indicating which lines are high.  The following constants should be used
+to examine the states of individual lines:
+
+\verbatim
+Mask        Line
+------      ----
+LS_CTS      CTS
+LS_DSR      DSR
+LS_DCD      DCD
+LS_RI       RI
+\endverbatim
+
+This function will return 0 if the port associated with the class is not currently open.
+*/
+ulong Win_QextSerialPort::lineStatus(void) {
+    unsigned long Status=0, Temp=0;
+    LOCK_MUTEX();
+    if (isOpen()) {
+        GetCommModemStatus(Win_Handle, &Temp);
+        if (Temp&MS_CTS_ON) {
+            Status|=LS_CTS;
+        }
+        if (Temp&MS_DSR_ON) {
+            Status|=LS_DSR;
+        }
+        if (Temp&MS_RING_ON) {
+            Status|=LS_RI;
+        }
+        if (Temp&MS_RLSD_ON) {
+            Status|=LS_DCD;
+        }
+    }
+    UNLOCK_MUTEX();
+    return Status;
+}
+
+/*!
+\fn void Win_QextSerialPort::setTimeout(ulong sec, ulong millisec);
+Sets the read and write timeouts for the port to sec seconds and millisec milliseconds.
+*/
+void Win_QextSerialPort::setTimeout(ulong sec, ulong millisec) {
+    LOCK_MUTEX();
+    Settings.Timeout_Sec=sec;
+    Settings.Timeout_Millisec=millisec;
+    if(isOpen()) {
+        Win_CommTimeouts.ReadIntervalTimeout = sec*1000+millisec;
+        Win_CommTimeouts.ReadTotalTimeoutMultiplier = sec*1000+millisec;
+        Win_CommTimeouts.ReadTotalTimeoutConstant = 0;
+        Win_CommTimeouts.WriteTotalTimeoutMultiplier = sec*1000+millisec;
+        Win_CommTimeouts.WriteTotalTimeoutConstant = 0;
+        SetCommTimeouts(Win_Handle, &Win_CommTimeouts);
+    }
+    UNLOCK_MUTEX();
+}
Index: branches/BNC_LM/serial/win_qextserialport.h
===================================================================
--- branches/BNC_LM/serial/win_qextserialport.h	(revision 3570)
+++ branches/BNC_LM/serial/win_qextserialport.h	(revision 3570)
@@ -0,0 +1,48 @@
+#ifndef _WIN_QEXTSERIALPORT_H_
+#define _WIN_QEXTSERIALPORT_H_
+
+#include "qextserialbase.h"
+
+/*if all warning messages are turned off, flag portability warnings to be turned off as well*/
+#ifdef _TTY_NOWARN_
+#define _TTY_NOWARN_PORT_
+#endif
+
+#include <windows.h>
+
+class Win_QextSerialPort:public QextSerialBase {
+public:
+    Win_QextSerialPort();
+    Win_QextSerialPort(Win_QextSerialPort const& s);
+    Win_QextSerialPort(const QString & name);
+    Win_QextSerialPort(const PortSettings& settings);
+    Win_QextSerialPort(const QString & name, const PortSettings& settings);
+    Win_QextSerialPort& operator=(const Win_QextSerialPort& s);
+    virtual ~Win_QextSerialPort();
+    virtual bool open(OpenMode mode=0);
+    virtual void close();
+    virtual void flush();
+    virtual qint64 size() const;
+    virtual void ungetChar(char c);
+    virtual void setFlowControl(FlowType);
+    virtual void setParity(ParityType);
+    virtual void setDataBits(DataBitsType);
+    virtual void setStopBits(StopBitsType);
+    virtual void setBaudRate(BaudRateType);
+    virtual void setDtr(bool set=true);
+    virtual void setRts(bool set=true);
+    virtual ulong lineStatus(void);
+    virtual qint64 bytesAvailable();
+    virtual void translateError(ulong);
+    virtual void setTimeout(ulong, ulong);
+
+protected:
+    HANDLE Win_Handle;
+    COMMCONFIG Win_CommConfig;
+    COMMTIMEOUTS Win_CommTimeouts;
+
+    virtual qint64 readData(char *data, qint64 maxSize);
+    virtual qint64 writeData(const char *data, qint64 maxSize);
+};
+
+#endif
Index: branches/BNC_LM/test_serial.cpp
===================================================================
--- branches/BNC_LM/test_serial.cpp	(revision 3570)
+++ branches/BNC_LM/test_serial.cpp	(revision 3570)
@@ -0,0 +1,24 @@
+
+#include <unistd.h>
+#include <stdio.h>
+#include <stdlib.h>
+
+int main(int argc, char* argv[]) {
+
+  FILE* fp = fopen("/dev/ttyS0", "r");
+
+  if (!fp) {
+    printf("Cannot open file.\n");
+    exit(1);
+  }
+
+  char msg[100];
+
+  while (true) {
+    int nb = fread(msg, sizeof(msg), 1, fp);
+    printf("read %d\n", nb);
+    sleep(1);
+  }
+
+  return 0;
+}
Index: branches/BNC_LM/test_tcpip_client.pl
===================================================================
--- branches/BNC_LM/test_tcpip_client.pl	(revision 3570)
+++ branches/BNC_LM/test_tcpip_client.pl	(revision 3570)
@@ -0,0 +1,33 @@
+#!/usr/bin/perl -w
+
+use strict;
+use IO::Socket;
+
+# List of Parameters
+# ------------------
+my($port) = @ARGV;
+
+if (!defined($port)) {
+  die "Usage: test_tcpip_client.pl portNumber\n";
+}
+
+# Local Variables
+# ---------------
+my($serverHostName) = "localhost";
+my $server;
+
+my $retries = 10;
+while ($retries--) {
+  $server = IO::Socket::INET->new( Proto    => "tcp",
+                                   PeerAddr => $serverHostName,
+                                   PeerPort => $port);
+  last if ($server);
+}
+die "Cannot connect to $serverHostName on $port: $!" unless ($server);
+
+my $buffer;
+while (defined ($buffer = <$server>)) {
+  print $buffer;
+}
+
+
Index: branches/BNC_LM/todo.txt
===================================================================
--- branches/BNC_LM/todo.txt	(revision 3570)
+++ branches/BNC_LM/todo.txt	(revision 3570)
@@ -0,0 +1,83 @@
+Todo's sorted by priority:
+
+BNS
+=========================
+(1) We often have small (~20...30 sec) outages in the CLK* streams. I dont
+know where this comes from. The situation can be checked through
+http://products.igs-ip.net/admin?mode=sources (ntrip:ntrip)
+(see column 'Connected for')
+
+(2) One would expect that a new ephemeris set always comes with a later validity
+time tag than a previously distributed ephemeris set. However, this is not always true.
+Sometimes new ephemeris sets come with a validity time tag which is earlier than the
+validity time tag of a previously distributed ephemeris set. This is something
+we should consider in BNS. Gerhard observed that we dont consider this right
+now. The consequence is that a satellite gets lost for PPP clients because
+they deal with another ephemeris set than the correctors provided by
+BNS.
+
+(3)
+Shall We add the following validity check to BNS and BNS for the GLONASS broadcast
+ephemeris messages?
+(a) If the time of validity differs by more than +/- 30 min from the time
+of reception, then the 1019/1020 messages are rejected.
+(b) However, if correcting the time of validity of such rejected 1019/1020
+message by exactly 3 hours leads to a new validity time within +/- 30 min of
+the reception time, then the broadcast ephemeris are nevertheless accepted.
+(c) The following is Gerhard's opinion:
+Die 1020 Message ist sauber definiert. Es gab zwar in der Anfangsphase
+hier und da Probleme mit einigen Implementation, die sind aber meines Wissens
+gelöst.  Ich halte es für sehr kritisch, eine 3-Stunden Differenz automatisch zu
+akzeptieren und vielleicht sogar zu korrigieren. 
+
+
+BNC
+=========================
+(1) Should we spend time to improve BNC's convergence? Should we follow a
+procedure like the one Oscar implemented? If not: Can we do something which
+helps a bit and does not involve too much work? Or should we better do nothing?
+
+(a) Calculate, for each satellite, the STD of the code multipath in the 
+iono-free combination Pc, as a combination the carrier phase and the code.
+Do this continuously, using a circular register that contains the observations 
+of the previous 10 minutes.
+(b) Introduce a default STD that is used when, either at the beginning or
+after an interruption in the data, there is less than 10 minutes worth of
+data for finding the multipath STD as in (1), and the STD with insufficient
+data is less than this default.
+(c) Introduce use a "fudge factor" to multiply the data-based STD and get the
+actual value used to get the data. This is necessary, because the correct weight
+of the data depends on numerous factors, particularly the weights assigned to
+the phase and to the a priori values of the unknowns. This problem also is true
+for (b), (c), and (d). So the fudge factor really depends on the overall strategy
+and cannot be used in different software implementations. 
+Everyone has to find it the hard way, by trial and error, making lots of solutions.
+(The variance of unit weight is of very limited help for this purpose.)
+(d) Downweight the code by a large factor when a satellite is below 20 degrees 
+in elevation, or the 3-D precision of the coordinates being estimated falls
+below something like 25 cm (again, this will be a different threshold with
+different software).
+
+(2) Could we use the XYZ from 'Plot origion' to improve BNC's conversion when
+we start the program (supposed the user has good a-priori coordinates)?
+So far the introduced XYZ is only used for the plot.
+
+(3) NMEA GGA string is not fully compatible with the standard.
+The following are observations by Tamas Horvath: 
+(a) Time tag should refer to UTC time and not GPS system time.
+(b) Time tag format is hhmmss.ss and not hhmmss.
+(c) The GPS Quality indicator field is 1 (GPS SPS Mode), which is correct, as
+there is no category for PPP. In my opinion the NMEA protocol should be
+extended by a new indicator number for PPP to make a clear difference between
+autonomous GNSS and PPP.
+(d) The HDOP value is constantly 2.0, which is obviously not real. I think this
+field is filled with 2.0 as a default value in BNC.
+(e) The Age of Differential GPS data field is not populated. I believe here the
+age of RTCM SSR data should be put.
+
+(4) BNC has a problem when the observation update rate is > 1Hz. Records get
+mixed then in the RINEX files. A 10 Hz stream to test the situation is 
+available from GFZ caster 139.17.3.112:4080 through stream A17H.
+
+(5) GW: Keep an eye on www.igs-ip.net/PENC0.
+
Index: branches/BNC_LM/tstClock.pl
===================================================================
--- branches/BNC_LM/tstClock.pl	(revision 3570)
+++ branches/BNC_LM/tstClock.pl	(revision 3570)
@@ -0,0 +1,34 @@
+#!/usr/bin/perl -w
+
+use strict;
+
+# List of Parameters
+# ------------------
+my($fileName) = @ARGV;
+
+if (!defined($fileName)) {
+  die "Usage: tstClock.pl fileName\n";
+}
+
+open(inFile,  "<$fileName") || die "Cannot open file $fileName";
+
+my %firstClk;
+
+while ( defined(my $line=<inFile>) ) {
+  if ($line =~ /Full Clock/) {
+    my @p = split(/\s+/, $line);
+    my $dateStr = $p[0];
+    my $timeStr = $p[1];
+    my $prn     = $p[4];
+    my $iod     = $p[5];
+    my $clk     = $p[6];
+    if (!defined($firstClk{$prn})) {
+      $firstClk{$prn} = $clk;
+    }
+    printf("%s %s %s  %14.4f\n", 
+           $dateStr, $timeStr, $prn, $clk - $firstClk{$prn});
+  }
+}
+
+close(inFile);
+
Index: branches/BNC_LM/upload/bnccustomtrafo.cpp
===================================================================
--- branches/BNC_LM/upload/bnccustomtrafo.cpp	(revision 3570)
+++ branches/BNC_LM/upload/bnccustomtrafo.cpp	(revision 3570)
@@ -0,0 +1,199 @@
+/* -------------------------------------------------------------------------
+ * BKG NTRIP Server
+ * -------------------------------------------------------------------------
+ *
+ * Class:      bnccustomtrafo
+ *
+ * Purpose:    This class sets Helmert Transformation Parameters
+ *
+ * Author:     G. Weber
+ *
+ * Created:    22-Mar-2009
+ *
+ * Changes:
+ *
+ * -----------------------------------------------------------------------*/
+
+#include "bnccustomtrafo.h"
+#include "bncsettings.h"
+
+using namespace std;
+
+// Constructor
+////////////////////////////////////////////////////////////////////////////
+bncCustomTrafo::bncCustomTrafo(QWidget* parent) : QDialog(parent) {
+
+  setMinimumSize(400,150);
+  QVBoxLayout* mainLayout = new QVBoxLayout(this);
+  QGridLayout* editLayout = new QGridLayout;
+
+  setWindowTitle(tr("Custom Transformation Parameters"));
+
+ bncSettings settings;
+
+ _dxLineEdit = new QLineEdit(settings.value("trafo_dx").toString());
+ _dyLineEdit = new QLineEdit(settings.value("trafo_dy").toString());
+ _dzLineEdit = new QLineEdit(settings.value("trafo_dz").toString());
+ _dxrLineEdit = new QLineEdit(settings.value("trafo_dxr").toString());
+ _dyrLineEdit = new QLineEdit(settings.value("trafo_dyr").toString());
+ _dzrLineEdit = new QLineEdit(settings.value("trafo_dzr").toString());
+ _oxLineEdit = new QLineEdit(settings.value("trafo_ox").toString());
+ _oyLineEdit = new QLineEdit(settings.value("trafo_oy").toString());
+ _ozLineEdit = new QLineEdit(settings.value("trafo_oz").toString());
+ _oxrLineEdit = new QLineEdit(settings.value("trafo_oxr").toString());
+ _oyrLineEdit = new QLineEdit(settings.value("trafo_oyr").toString());
+ _ozrLineEdit = new QLineEdit(settings.value("trafo_ozr").toString());
+ _scLineEdit = new QLineEdit(settings.value("trafo_sc").toString());
+ _scrLineEdit = new QLineEdit(settings.value("trafo_scr").toString());
+ _t0LineEdit = new QLineEdit(settings.value("trafo_t0").toString());
+
+  // WhatsThis
+  // ---------
+  _dxLineEdit->setWhatsThis(tr("<p>Set translation in X at epoch t0.</p>"));
+  _dyLineEdit->setWhatsThis(tr("<p>Set translation in Y at epoch t0.</p>"));
+  _dzLineEdit->setWhatsThis(tr("<p>Set translation in Z at epoch t0.</p>"));
+  _dxrLineEdit->setWhatsThis(tr("<p>Set translation rate in X.</p>"));
+  _dyrLineEdit->setWhatsThis(tr("<p>Set translation rate in Y.</p>"));
+  _dzrLineEdit->setWhatsThis(tr("<p>Set translation rate in Z.</p>"));
+  _oxLineEdit->setWhatsThis(tr("<p>Set rotation in X at epoch t0.</p>"));
+  _oyLineEdit->setWhatsThis(tr("<p>Set rotation in Y at epoch t0.</p>"));
+  _ozLineEdit->setWhatsThis(tr("<p>Set rotation in Z at epoch t0.</p>"));
+  _oxrLineEdit->setWhatsThis(tr("<p>Set rotation rate in X.</p>"));
+  _oyrLineEdit->setWhatsThis(tr("<p>Set rotation rate in Y.</p>"));
+  _ozrLineEdit->setWhatsThis(tr("<p>Set rotation rate in Z.</p>"));
+  _scLineEdit->setWhatsThis(tr("<p>Set scale at epoch t0.</p>"));
+  _scrLineEdit->setWhatsThis(tr("<p>Set scale rate.</p>"));
+  _t0LineEdit->setWhatsThis(tr("<p>Set reference epoch e.g. 2000.0</p>"));
+
+  int ww = QFontMetrics(font()).width('w');
+  _dxLineEdit->setMaximumWidth(9*ww);
+  _dyLineEdit->setMaximumWidth(9*ww);
+  _dzLineEdit->setMaximumWidth(9*ww);
+  _dxrLineEdit->setMaximumWidth(9*ww);
+  _dyrLineEdit->setMaximumWidth(9*ww);
+  _dzrLineEdit->setMaximumWidth(9*ww);
+  _oxLineEdit->setMaximumWidth(9*ww);
+  _oyLineEdit->setMaximumWidth(9*ww);
+  _ozLineEdit->setMaximumWidth(9*ww);
+  _oxrLineEdit->setMaximumWidth(9*ww);
+  _oyrLineEdit->setMaximumWidth(9*ww);
+  _ozrLineEdit->setMaximumWidth(9*ww);
+  _scLineEdit->setMaximumWidth(9*ww);
+  _scrLineEdit->setMaximumWidth(9*ww);
+  _t0LineEdit->setMaximumWidth(9*ww);
+
+  editLayout->addWidget(new QLabel(tr("dX(t0) [m]")),     0, 0, Qt::AlignRight);
+  editLayout->addWidget(_dxLineEdit,                      0, 1);
+  editLayout->addWidget(new QLabel(tr("dY(t0) [m]")),     0, 2, Qt::AlignRight);
+  editLayout->addWidget(_dyLineEdit,                      0, 3);
+  editLayout->addWidget(new QLabel(tr("dZ(t0) [m]")),     0, 4, Qt::AlignRight);
+  editLayout->addWidget(_dzLineEdit,                      0, 5);
+  editLayout->addWidget(new QLabel(tr("dXr [m/y]")),      1, 0, Qt::AlignRight);
+  editLayout->addWidget(_dxrLineEdit,                     1, 1);
+  editLayout->addWidget(new QLabel(tr("dYr [m/y]")),      1, 2, Qt::AlignRight);
+  editLayout->addWidget(_dyrLineEdit,                     1, 3);
+  editLayout->addWidget(new QLabel(tr("dZr [m/y]")),      1, 4, Qt::AlignRight);
+  editLayout->addWidget(_dzrLineEdit,                     1, 5);
+  editLayout->addWidget(new QLabel(tr("   oX(t0) [as]")), 2, 0, Qt::AlignRight);
+  editLayout->addWidget(_oxLineEdit,                      2, 1);
+  editLayout->addWidget(new QLabel(tr("   oY(t0) [as]")), 2, 2, Qt::AlignRight);
+  editLayout->addWidget(_oyLineEdit,                      2, 3);
+  editLayout->addWidget(new QLabel(tr("   oZ(t0) [as]")), 2, 4, Qt::AlignRight);
+  editLayout->addWidget(_ozLineEdit,                      2, 5);
+  editLayout->addWidget(new QLabel(tr("oXr [as/y]")),     3, 0, Qt::AlignRight);
+  editLayout->addWidget(_oxrLineEdit,                     3, 1);
+  editLayout->addWidget(new QLabel(tr("oYr [as/y]")),     3, 2, Qt::AlignRight);
+  editLayout->addWidget(_oyrLineEdit,                     3, 3);
+  editLayout->addWidget(new QLabel(tr("oZr [as/y]")),     3, 4, Qt::AlignRight);
+  editLayout->addWidget(_ozrLineEdit,                     3, 5);
+  editLayout->addWidget(new QLabel(tr("S(t0) [10^-9]")),  4, 0, Qt::AlignRight);
+  editLayout->addWidget(_scLineEdit,                      4, 1);
+  editLayout->addWidget(new QLabel(tr("Sr [10^-9/y]")),   4, 2, Qt::AlignRight);
+  editLayout->addWidget(_scrLineEdit,                     4, 3);
+  editLayout->addWidget(new QLabel(tr("t0 [y]")),         4, 4, Qt::AlignRight);
+  editLayout->addWidget(_t0LineEdit,                      4, 5);
+  editLayout->addWidget(new QLabel("Specify up to 14 Helmert Transformation Parameters for transformation from IGS05"), 5, 0, 1, 6, Qt::AlignCenter);
+  editLayout->addWidget(new QLabel("into target reference system."), 6, 0, 1, 6, Qt::AlignCenter);
+
+  mainLayout->addLayout(editLayout);
+
+  _buttonWhatsThis = new QPushButton(tr("Help=Shift+F1"), this);
+  connect(_buttonWhatsThis, SIGNAL(clicked()), this, SLOT(slotWhatsThis()));
+ 
+  _buttonCancel = new QPushButton(tr("Cancel"), this);
+  connect(_buttonCancel, SIGNAL(clicked()), this, SLOT(reject()));
+
+  _buttonOK = new QPushButton(tr("OK"), this);
+  connect(_buttonOK, SIGNAL(clicked()), this, SLOT(accept()));
+
+  _buttonOK->setDefault(true);
+
+  QHBoxLayout* buttonLayout = new QHBoxLayout;
+
+  buttonLayout->addWidget(_buttonWhatsThis);
+  buttonLayout->addStretch(1);
+  buttonLayout->addWidget(_buttonCancel);
+  buttonLayout->addWidget(_buttonOK);
+
+  mainLayout->addLayout(buttonLayout);
+}
+
+// Destructor
+////////////////////////////////////////////////////////////////////////////
+bncCustomTrafo::~bncCustomTrafo() {
+  delete _buttonCancel;
+  delete _buttonOK;
+  delete _buttonWhatsThis;
+}
+
+// Accept slot
+////////////////////////////////////////////////////////////////////////////
+void bncCustomTrafo::accept() {
+
+  if ( !_dxLineEdit->text().isEmpty()  &&
+       !_dyLineEdit->text().isEmpty()  &&
+       !_dzLineEdit->text().isEmpty()  &&
+       !_dxrLineEdit->text().isEmpty() &&
+       !_dyrLineEdit->text().isEmpty() &&
+       !_dzrLineEdit->text().isEmpty() &&
+       !_oxLineEdit->text().isEmpty()  &&
+       !_oyLineEdit->text().isEmpty()  &&
+       !_ozLineEdit->text().isEmpty()  &&
+       !_oxrLineEdit->text().isEmpty() &&
+       !_oyrLineEdit->text().isEmpty() &&
+       !_ozrLineEdit->text().isEmpty() &&
+       !_scLineEdit->text().isEmpty()  &&
+       !_scrLineEdit->text().isEmpty() &&
+       !_t0LineEdit->text().isEmpty() ) {
+
+    bncSettings settings;
+    settings.setValue("trafo_dx",   _dxLineEdit->text());
+    settings.setValue("trafo_dy",   _dyLineEdit->text());
+    settings.setValue("trafo_dz",   _dzLineEdit->text());
+    settings.setValue("trafo_dxr",  _dxrLineEdit->text());
+    settings.setValue("trafo_dyr",  _dyrLineEdit->text());
+    settings.setValue("trafo_dzr",  _dzrLineEdit->text());
+    settings.setValue("trafo_ox",   _oxLineEdit->text());
+    settings.setValue("trafo_oy",   _oyLineEdit->text());
+    settings.setValue("trafo_oz",   _ozLineEdit->text());
+    settings.setValue("trafo_oxr",  _oxrLineEdit->text());
+    settings.setValue("trafo_oyr",  _oyrLineEdit->text());
+    settings.setValue("trafo_ozr",  _ozrLineEdit->text());
+    settings.setValue("trafo_sc",   _scLineEdit->text());
+    settings.setValue("trafo_scr",  _scrLineEdit->text());
+    settings.setValue("trafo_t0",   _t0LineEdit->text());
+
+  } else {
+   QMessageBox::warning(this, tr("Warning"),
+                               tr("Incomplete settings"),
+                               QMessageBox::Ok);
+  }
+
+  QDialog::accept();
+}
+
+// Whats This Help
+void bncCustomTrafo::slotWhatsThis() {
+QWhatsThis::enterWhatsThisMode();
+}
+
Index: branches/BNC_LM/upload/bnccustomtrafo.h
===================================================================
--- branches/BNC_LM/upload/bnccustomtrafo.h	(revision 3570)
+++ branches/BNC_LM/upload/bnccustomtrafo.h	(revision 3570)
@@ -0,0 +1,42 @@
+#ifndef BNCCUSTOMTRAFO_H
+#define BNCCUSTOMTRAFO_H
+
+#include <QtCore>
+#include <QtGui>
+#include <QWhatsThis>
+
+class bncCustomTrafo : public QDialog {
+  Q_OBJECT
+
+  public:
+    bncCustomTrafo(QWidget* parent);
+    ~bncCustomTrafo();
+
+  private slots:
+    virtual void accept();
+    void slotWhatsThis();
+
+  private:
+    QLineEdit*   _dxLineEdit;
+    QLineEdit*   _dyLineEdit;
+    QLineEdit*   _dzLineEdit;
+    QLineEdit*   _dxrLineEdit;
+    QLineEdit*   _dyrLineEdit;
+    QLineEdit*   _dzrLineEdit;
+    QLineEdit*   _oxLineEdit;
+    QLineEdit*   _oyLineEdit;
+    QLineEdit*   _ozLineEdit;
+    QLineEdit*   _oxrLineEdit;
+    QLineEdit*   _oyrLineEdit;
+    QLineEdit*   _ozrLineEdit;
+    QLineEdit*   _scLineEdit;
+    QLineEdit*   _scrLineEdit;
+    QLineEdit*   _t0LineEdit;
+
+    QPushButton* _buttonGet;
+    QPushButton* _buttonCancel;
+    QPushButton* _buttonOK;
+    QPushButton* _buttonWhatsThis;
+};
+
+#endif
Index: branches/BNC_LM/upload/bncephuploadcaster.cpp
===================================================================
--- branches/BNC_LM/upload/bncephuploadcaster.cpp	(revision 3570)
+++ branches/BNC_LM/upload/bncephuploadcaster.cpp	(revision 3570)
@@ -0,0 +1,77 @@
+/* -------------------------------------------------------------------------
+ * BKG NTRIP Server
+ * -------------------------------------------------------------------------
+ *
+ * Class:      bncEphUploadCaster
+ *
+ * Purpose:    Connection to NTRIP Caster for Ephemeris
+ *
+ * Author:     L. Mervart
+ *
+ * Created:    03-Apr-2011
+ *
+ * Changes:    
+ *
+ * -----------------------------------------------------------------------*/
+
+#include <iostream>
+#include <math.h>
+#include "bncephuploadcaster.h" 
+#include "bncsettings.h"
+
+using namespace std;
+
+// Constructor
+////////////////////////////////////////////////////////////////////////////
+bncEphUploadCaster::bncEphUploadCaster() {
+  bncSettings settings;
+
+  QString mountpoint = settings.value("uploadEphMountpoint").toString();
+  if (mountpoint.isEmpty()) {
+    _ephUploadCaster = 0;
+  }
+  else {
+    QString outHost  = settings.value("uploadEphHost").toString();
+    int     outPort  = settings.value("uploadEphPort").toInt();
+    QString password = settings.value("uploadEphPassword").toString();
+    int     sampl    = settings.value("uploadSampl").toInt();
+
+    _ephUploadCaster = new bncUploadCaster(mountpoint, outHost, outPort, 
+                                           password, -1, sampl);
+
+    connect(_ephUploadCaster, SIGNAL(newBytes(QByteArray,double)), 
+          this, SIGNAL(newBytes(QByteArray,double)));
+
+    _ephUploadCaster->start();
+  }
+}
+
+// Destructor
+////////////////////////////////////////////////////////////////////////////
+bncEphUploadCaster::~bncEphUploadCaster() {
+  if (_ephUploadCaster) {
+    _ephUploadCaster->deleteSafely();
+  }
+}
+
+// List of Stored Ephemeris changed (virtual)
+////////////////////////////////////////////////////////////////////////////
+void bncEphUploadCaster::ephBufferChanged() {
+  if (_ephUploadCaster) {
+    QByteArray outBuffer;
+    QMapIterator<QString, t_ephPair*> it(_eph);
+    while (it.hasNext()) {
+      it.next();
+
+      t_eph* eph = it.value()->last;
+      unsigned char Array[80];
+      int size = eph->RTCM3(Array);
+      if (size > 0) {
+        outBuffer += QByteArray((char*) Array, size);
+      }
+    }
+    if (outBuffer.size() > 0) {
+      _ephUploadCaster->setOutBuffer(outBuffer);
+    }
+  }
+}
Index: branches/BNC_LM/upload/bncephuploadcaster.h
===================================================================
--- branches/BNC_LM/upload/bncephuploadcaster.h	(revision 3570)
+++ branches/BNC_LM/upload/bncephuploadcaster.h	(revision 3570)
@@ -0,0 +1,21 @@
+#ifndef BNCEPHUPLOADCASTER_H
+#define BNCEPHUPLOADCASTER_H
+
+#include <newmat.h>
+#include "bncuploadcaster.h"
+#include "bncephuser.h"
+
+class bncEphUploadCaster : public bncEphUser {
+ Q_OBJECT
+ public:
+  bncEphUploadCaster();
+  virtual ~bncEphUploadCaster();
+ signals:
+  void newBytes(QByteArray staID, double nbyte);
+ protected:
+  virtual void ephBufferChanged();
+ private:
+  bncUploadCaster* _ephUploadCaster;
+};
+
+#endif
Index: branches/BNC_LM/upload/bncrtnetdecoder.cpp
===================================================================
--- branches/BNC_LM/upload/bncrtnetdecoder.cpp	(revision 3570)
+++ branches/BNC_LM/upload/bncrtnetdecoder.cpp	(revision 3570)
@@ -0,0 +1,89 @@
+// Part of BNC, a utility for retrieving decoding and
+// converting GNSS data streams from NTRIP broadcasters.
+//
+// Copyright (C) 2007
+// German Federal Agency for Cartography and Geodesy (BKG)
+// http://www.bkg.bund.de
+// Czech Technical University Prague, Department of Geodesy
+// http://www.fsv.cvut.cz
+//
+// Email: euref-ip@bkg.bund.de
+//
+// This program is free software; you can redistribute it and/or
+// modify it under the terms of the GNU General Public License
+// as published by the Free Software Foundation, version 2.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+/* -------------------------------------------------------------------------
+ * BKG NTRIP Client
+ * -------------------------------------------------------------------------
+ *
+ * Class:      bncRtnetDecoder
+ *
+ * Purpose:    Implementation of RTNet (SP3-like) output decoder
+ *
+ * Author:     L. Mervart
+ *
+ * Created:    28-Mar-2011
+ *
+ * Changes:    
+ *
+ * -----------------------------------------------------------------------*/
+
+#include <iostream>
+#include "bncrtnetdecoder.h"
+#include "bncsettings.h"
+
+using namespace std;
+
+// Constructor
+//////////////////////////////////////////////////////////////////////// 
+bncRtnetDecoder::bncRtnetDecoder() {
+  bncSettings settings;
+
+  // List of upload casters
+  // ----------------------
+  int iRow = -1;
+  QListIterator<QString> it(settings.value("uploadMountpointsOut").toStringList());
+  while (it.hasNext()) {
+    QStringList hlp = it.next().split(",");
+    if (hlp.size() > 6) {
+      ++iRow;
+      int  outPort = hlp[1].toInt();
+      bool CoM     = (hlp[5].toInt() == Qt::Checked);
+      bncRtnetUploadCaster* newCaster = new bncRtnetUploadCaster(
+                                                       hlp[2], hlp[0], outPort, 
+                                                       hlp[3], hlp[4], CoM,
+                                                       hlp[6], hlp[7], "", iRow);
+      newCaster->start();
+      _casters.push_back(newCaster);
+    }
+  }
+}
+
+// Destructor
+//////////////////////////////////////////////////////////////////////// 
+bncRtnetDecoder::~bncRtnetDecoder() {
+  for (int ic = 0; ic < _casters.size(); ic++) {
+    _casters[ic]->deleteSafely();
+  }
+}
+
+// Decode Method
+//////////////////////////////////////////////////////////////////////// 
+t_irc bncRtnetDecoder::Decode(char* buffer, int bufLen, vector<string>& errmsg) {
+  errmsg.clear();
+  for (int ic = 0; ic < _casters.size(); ic++) {
+    _casters[ic]->decodeRtnetStream(buffer, bufLen);
+  }
+  return success;
+}
+
Index: branches/BNC_LM/upload/bncrtnetdecoder.h
===================================================================
--- branches/BNC_LM/upload/bncrtnetdecoder.h	(revision 3570)
+++ branches/BNC_LM/upload/bncrtnetdecoder.h	(revision 3570)
@@ -0,0 +1,43 @@
+// Part of BNC, a utility for retrieving decoding and
+// converting GNSS data streams from NTRIP broadcasters.
+//
+// Copyright (C) 2007
+// German Federal Agency for Cartography and Geodesy (BKG)
+// http://www.bkg.bund.de
+// Czech Technical University Prague, Department of Geodesy
+// http://www.fsv.cvut.cz
+//
+// Email: euref-ip@bkg.bund.de
+//
+// This program is free software; you can redistribute it and/or
+// modify it under the terms of the GNU General Public License
+// as published by the Free Software Foundation, version 2.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+#ifndef BNCRTNETDECODER_H
+#define BNCRTNETDECODER_H
+
+#include <fstream>
+#include <QtCore>
+#include "bncrtnetuploadcaster.h"
+#include "RTCM/GPSDecoder.h"
+
+class bncRtnetDecoder: public GPSDecoder {
+ public:
+  bncRtnetDecoder();
+  ~bncRtnetDecoder();
+  virtual t_irc Decode(char* buffer, int bufLen, 
+                       std::vector<std::string>& errmsg);
+ private:
+  QVector<bncRtnetUploadCaster*> _casters;
+};
+
+#endif  // include blocker
Index: branches/BNC_LM/upload/bncrtnetuploadcaster.cpp
===================================================================
--- branches/BNC_LM/upload/bncrtnetuploadcaster.cpp	(revision 3570)
+++ branches/BNC_LM/upload/bncrtnetuploadcaster.cpp	(revision 3570)
@@ -0,0 +1,537 @@
+/* -------------------------------------------------------------------------
+ * BKG NTRIP Server
+ * -------------------------------------------------------------------------
+ *
+ * Class:      bncRtnetUploadCaster
+ *
+ * Purpose:    Connection to NTRIP Caster
+ *
+ * Author:     L. Mervart
+ *
+ * Created:    29-Mar-2011
+ *
+ * Changes:    
+ *
+ * -----------------------------------------------------------------------*/
+
+#include <math.h>
+#include "bncrtnetuploadcaster.h" 
+#include "bncsettings.h"
+#include "bncephuser.h"
+#include "bncclockrinex.h"
+#include "bncsp3.h"
+
+using namespace std;
+
+// Constructor
+////////////////////////////////////////////////////////////////////////////
+bncRtnetUploadCaster::bncRtnetUploadCaster(const QString& mountpoint,
+                                 const QString& outHost, int outPort,
+                                 const QString& password, 
+                                 const QString& crdTrafo, bool  CoM, 
+                                 const QString& sp3FileName,
+                                 const QString& rnxFileName,
+                                 const QString& outFileName, int iRow) :
+  bncUploadCaster(mountpoint, outHost, outPort, password, iRow, 0) {
+
+  _crdTrafo   = crdTrafo;
+  _CoM        = CoM;
+
+  // Member that receives the ephemeris
+  // ----------------------------------
+  _ephUser = new bncEphUser();
+
+  bncSettings settings;
+  QString     intr  = settings.value("uploadIntr").toString();
+  int         sampl = settings.value("uploadSampl").toInt();
+
+  // Raw Output
+  // ----------
+  if (!outFileName.isEmpty()) {
+    _outFile = new bncoutf(outFileName, intr, sampl);
+  }
+  else {
+    _outFile = 0;
+  }
+
+  // RINEX writer
+  // ------------
+  if (!rnxFileName.isEmpty()) {
+    _rnx = new bncClockRinex(rnxFileName, intr, sampl);
+  }
+  else {
+    _rnx = 0;
+  }
+
+  // SP3 writer
+  // ----------
+  if (!sp3FileName.isEmpty()) {
+    _sp3 = new bncSP3(sp3FileName, intr, sampl);
+  }
+  else {
+    _sp3 = 0;
+  }
+
+  // Set Transformation Parameters
+  // -----------------------------
+  if      (_crdTrafo == "ETRF2000") {
+    _dx  =    0.0541;
+    _dy  =    0.0502;
+    _dz  =   -0.0538;
+    _dxr =   -0.0002;
+    _dyr =    0.0001;
+    _dzr =   -0.0018;
+    _ox  =  0.000891;
+    _oy  =  0.005390;
+    _oz  = -0.008712;
+    _oxr =  0.000081;
+    _oyr =  0.000490;
+    _ozr = -0.000792;
+    _sc  =      0.40;
+    _scr =      0.08;
+    _t0  =    2000.0;
+  }
+  else if (_crdTrafo == "NAD83") {
+    _dx  =    0.9963;
+    _dy  =   -1.9024;
+    _dz  =   -0.5210;
+    _dxr =    0.0005;
+    _dyr =   -0.0006;
+    _dzr =   -0.0013;
+    _ox  = -0.025915;
+    _oy  = -0.009426;
+    _oz  = -0.011599;
+    _oxr = -0.000067;
+    _oyr =  0.000757;
+    _ozr =  0.000051;
+    _sc  =      0.78;
+    _scr =     -0.10;
+    _t0  =    1997.0;
+  }
+  else if (_crdTrafo == "GDA94") {
+    _dx  =   -0.07973;
+    _dy  =   -0.00686;
+    _dz  =    0.03803;
+    _dxr =    0.00225;
+    _dyr =   -0.00062;
+    _dzr =   -0.00056;
+    _ox  =  0.0000351;
+    _oy  = -0.0021211;
+    _oz  = -0.0021411;
+    _oxr = -0.0014707;
+    _oyr = -0.0011443;
+    _ozr = -0.0011701;
+    _sc  =      6.636;
+    _scr =      0.294;
+    _t0  =     1994.0;
+  }
+  else if (_crdTrafo == "SIRGAS2000") {
+    _dx  =   -0.0051;
+    _dy  =   -0.0065;
+    _dz  =   -0.0099;
+    _dxr =    0.0000;
+    _dyr =    0.0000;
+    _dzr =    0.0000;
+    _ox  =  0.000150;
+    _oy  =  0.000020;
+    _oz  =  0.000021;
+    _oxr =  0.000000;
+    _oyr =  0.000000;
+    _ozr =  0.000000;
+    _sc  =     0.000;
+    _scr =     0.000;
+    _t0  =    0000.0;
+  }
+  else if (_crdTrafo == "SIRGAS95") {
+    _dx  =    0.0077;
+    _dy  =    0.0058;
+    _dz  =   -0.0138;
+    _dxr =    0.0000;
+    _dyr =    0.0000;
+    _dzr =    0.0000;
+    _ox  =  0.000000;
+    _oy  =  0.000000;
+    _oz  = -0.000030;
+    _oxr =  0.000000;
+    _oyr =  0.000000;
+    _ozr =  0.000000;
+    _sc  =     1.570;
+    _scr =     0.000;
+    _t0  =    0000.0;
+  }
+  else if (_crdTrafo == "Custom") {
+    bncSettings settings;
+    _dx  = settings.value("trafo_dx").toDouble();
+    _dy  = settings.value("trafo_dy").toDouble();
+    _dz  = settings.value("trafo_dz").toDouble();
+    _dxr = settings.value("trafo_dxr").toDouble();
+    _dyr = settings.value("trafo_dyr").toDouble();
+    _dzr = settings.value("trafo_dzr").toDouble();
+    _ox  = settings.value("trafo_ox").toDouble();
+    _oy  = settings.value("trafo_oy").toDouble();
+    _oz  = settings.value("trafo_oz").toDouble();
+    _oxr = settings.value("trafo_oxr").toDouble();
+    _oyr = settings.value("trafo_oyr").toDouble();
+    _ozr = settings.value("trafo_ozr").toDouble();
+    _sc  = settings.value("trafo_sc").toDouble();
+    _scr = settings.value("trafo_scr").toDouble();
+    _t0  = settings.value("trafo_t0").toDouble();
+  }
+}
+
+// Destructor
+////////////////////////////////////////////////////////////////////////////
+bncRtnetUploadCaster::~bncRtnetUploadCaster() {
+  if (isRunning()) {
+    wait();
+  }
+  delete _outFile;
+  delete _rnx;
+  delete _sp3;
+  delete _ephUser;
+}
+
+// 
+////////////////////////////////////////////////////////////////////////////
+void bncRtnetUploadCaster::decodeRtnetStream(char* buffer, int bufLen) {
+                                        
+  QMutexLocker locker(&_mutex);
+
+  // Append to internal buffer
+  // -------------------------
+  _rtnetStreamBuffer.append(QByteArray(buffer, bufLen));
+
+  // Select buffer part that contains last epoch
+  // -------------------------------------------
+  QStringList lines;
+  int iEpoBeg = _rtnetStreamBuffer.lastIndexOf('*');   // begin of last epoch
+  if (iEpoBeg == -1) {
+    _rtnetStreamBuffer.clear();
+    return;
+  }
+  _rtnetStreamBuffer = _rtnetStreamBuffer.mid(iEpoBeg);
+
+  int iEpoEnd = _rtnetStreamBuffer.lastIndexOf("EOE"); // end   of last epoch
+  if (iEpoEnd == -1) {
+    return;
+  }
+  else {
+    lines = _rtnetStreamBuffer.left(iEpoEnd).split('\n', QString::SkipEmptyParts);
+    _rtnetStreamBuffer = _rtnetStreamBuffer.mid(iEpoEnd+3);
+  }
+
+  if (lines.size() < 2) {
+    return;
+  }
+
+  // Keep the last unfinished line in buffer
+  // ---------------------------------------
+  int iLastEOL = _rtnetStreamBuffer.lastIndexOf('\n');
+  if (iLastEOL != -1) {
+    _rtnetStreamBuffer = _rtnetStreamBuffer.mid(iLastEOL+1);
+  }
+
+  // Read first line (with epoch time)
+  // ---------------------------------
+  QTextStream in(lines[0].toAscii());
+  QString hlp;
+  int     year, month, day, hour, min;
+  double  sec;
+  in >> hlp >> year >> month >> day >> hour >> min >> sec;
+  bncTime epoTime; epoTime.set( year, month, day, hour, min, sec);
+
+  struct ClockOrbit co;
+  memset(&co, 0, sizeof(co));
+  co.GPSEpochTime      = static_cast<int>(epoTime.gpssec());
+  co.GLONASSEpochTime  = static_cast<int>(fmod(epoTime.gpssec(), 86400.0))
+                       + 3 * 3600 - gnumleap(year, month, day);
+  co.ClockDataSupplied = 1;
+  co.OrbitDataSupplied = 1;
+  co.SatRefDatum       = DATUM_ITRF;
+  
+  struct Bias bias;
+  memset(&bias, 0, sizeof(bias));
+  bias.GPSEpochTime     = co.GPSEpochTime;
+  bias.GLONASSEpochTime = co.GLONASSEpochTime;
+  
+  for (int ii = 1; ii < lines.size(); ii++) {
+ 
+    QString      prn;
+    ColumnVector xx(14); xx = 0.0;
+  
+    QTextStream in(lines[ii].toAscii());
+
+    in >> prn;
+    if (prn[0] == 'P') {
+      prn.remove(0,1);
+    }
+
+    const bncEphUser::t_ephPair* ephPair = _ephUser->ephPair(prn);
+    if (ephPair) {
+      t_eph* eph = ephPair->last;
+
+// receptDateTime() not (yet?) defined 
+//      if (ephPair->prev && 
+//           eph->receptDateTime().secsTo(QDateTime::currentDateTime()) < 60) {
+//        eph = ephPair->prev;
+//      }
+
+      in >> xx(1) >> xx(2) >> xx(3) >> xx(4) >> xx(5) 
+         >> xx(6) >> xx(7) >> xx(8) >> xx(9) >> xx(10)
+         >> xx(11) >> xx(12) >> xx(13) >> xx(14);
+      xx(1) *= 1e3;          // x-crd
+      xx(2) *= 1e3;          // y-crd
+      xx(3) *= 1e3;          // z-crd
+      xx(4) *= 1e-6;         // clk
+      xx(5) *= 1e-6;         // rel. corr.
+                             // xx(6), xx(7), xx(8) ... PhaseCent - CoM
+                             // xx(9)  ... P1-C1 DCB in meters
+                             // xx(10) ... P1-P2 DCB in meters
+                             // xx(11) ... dT
+      xx(12) *= 1e3;         // x-crd at time + dT
+      xx(13) *= 1e3;         // y-crd at time + dT
+      xx(14) *= 1e3;         // z-crd at time + dT
+  
+      struct ClockOrbit::SatData* sd = 0;
+      if      (prn[0] == 'G') {
+        sd = co.Sat + co.NumberOfGPSSat;
+        ++co.NumberOfGPSSat;
+      }
+      else if (prn[0] == 'R') {
+        sd = co.Sat + CLOCKORBIT_NUMGPS + co.NumberOfGLONASSSat;
+        ++co.NumberOfGLONASSSat;
+      }
+      if (sd) {
+        QString outLine;
+        processSatellite(eph, epoTime.gpsw(), epoTime.gpssec(), prn, 
+                         xx, sd, outLine);
+        if (_outFile) {
+          _outFile->write(epoTime.gpsw(), epoTime.gpssec(), outLine);
+        }
+      }
+  
+      struct Bias::BiasSat* biasSat = 0;
+      if      (prn[0] == 'G') {
+        biasSat = bias.Sat + bias.NumberOfGPSSat;
+        ++bias.NumberOfGPSSat;
+      }
+      else if (prn[0] == 'R') {
+        biasSat = bias.Sat + CLOCKORBIT_NUMGPS + bias.NumberOfGLONASSSat;
+        ++bias.NumberOfGLONASSSat;
+      }
+  
+      // Coefficient of Ionosphere-Free LC
+      // ---------------------------------
+      const static double a_L1_GPS =  2.54572778;
+      const static double a_L2_GPS = -1.54572778;
+      const static double a_L1_Glo =  2.53125000;
+      const static double a_L2_Glo = -1.53125000;
+  
+      if (biasSat) {
+        biasSat->ID = prn.mid(1).toInt();
+        biasSat->NumberOfCodeBiases = 3;
+        if      (prn[0] == 'G') {
+          biasSat->Biases[0].Type = CODETYPEGPS_L1_Z;
+          biasSat->Biases[0].Bias = - a_L2_GPS * xx(10);
+          biasSat->Biases[1].Type = CODETYPEGPS_L1_CA;
+          biasSat->Biases[1].Bias = - a_L2_GPS * xx(10) + xx(9);
+          biasSat->Biases[2].Type = CODETYPEGPS_L2_Z;
+          biasSat->Biases[2].Bias = a_L1_GPS * xx(10);
+        }
+        else if (prn[0] == 'R') {
+          biasSat->Biases[0].Type = CODETYPEGLONASS_L1_P;
+          biasSat->Biases[0].Bias = - a_L2_Glo * xx(10);
+          biasSat->Biases[1].Type = CODETYPEGLONASS_L1_CA;
+          biasSat->Biases[1].Bias = - a_L2_Glo * xx(10) + xx(9);
+          biasSat->Biases[2].Type = CODETYPEGLONASS_L2_P;
+          biasSat->Biases[2].Bias = a_L1_Glo * xx(10);
+        }
+      }
+    }
+  }
+
+  QByteArray hlpBufferCo;  
+
+  const double ORBIT_RATE = 0.0;
+
+  // Orbit and Clock Corrections together
+  // ------------------------------------
+  if (ORBIT_RATE == 0.0) {
+    if (co.NumberOfGPSSat > 0 || co.NumberOfGLONASSSat > 0) {
+      char obuffer[CLOCKORBIT_BUFFERSIZE];
+      int len = MakeClockOrbit(&co, COTYPE_AUTO, 0, obuffer, sizeof(obuffer));
+      if (len > 0) {
+        hlpBufferCo = QByteArray(obuffer, len);
+      }
+    }
+  }
+
+  // Orbit and Clock Corrections separately
+  // --------------------------------------
+  else {
+    if (co.NumberOfGPSSat > 0) {
+      char obuffer[CLOCKORBIT_BUFFERSIZE];
+      if (fmod(epoTime.gpssec(), ORBIT_RATE) == 0.0) {
+        int len1 = MakeClockOrbit(&co, COTYPE_GPSORBIT, 0, obuffer, sizeof(obuffer));
+        if (len1 > 0) {
+          hlpBufferCo += QByteArray(obuffer, len1);
+        }
+      }
+      int len2 = MakeClockOrbit(&co, COTYPE_GPSCLOCK, 0, obuffer, sizeof(obuffer));
+      if (len2 > 0) {
+        hlpBufferCo += QByteArray(obuffer, len2);
+      }
+    }
+    if (co.NumberOfGLONASSSat > 0) {
+      char obuffer[CLOCKORBIT_BUFFERSIZE];
+      if (fmod(epoTime.gpssec(), ORBIT_RATE) == 0.0) {
+        int len1 = MakeClockOrbit(&co, COTYPE_GLONASSORBIT, 0, obuffer, sizeof(obuffer));
+        if (len1 > 0) {
+          hlpBufferCo += QByteArray(obuffer, len1);
+        }
+      }
+      int len2 = MakeClockOrbit(&co, COTYPE_GLONASSCLOCK, 0, obuffer, sizeof(obuffer));
+      if (len2 > 0) {
+        hlpBufferCo += QByteArray(obuffer, len2);
+      }
+    }
+  }
+  
+  // Biases
+  // ------
+  QByteArray hlpBufferBias;  
+  if (bias.NumberOfGPSSat > 0 || bias.NumberOfGLONASSSat > 0) {
+    char obuffer[CLOCKORBIT_BUFFERSIZE];
+    int len = MakeBias(&bias, BTYPE_AUTO, 0, obuffer, sizeof(obuffer));
+    if (len > 0) {
+      hlpBufferBias = QByteArray(obuffer, len);
+    }
+  }
+
+  if (hlpBufferCo.size() > 0) {
+    _outBuffer = hlpBufferCo + hlpBufferBias;
+  }
+}
+
+// 
+////////////////////////////////////////////////////////////////////////////
+void bncRtnetUploadCaster::processSatellite(t_eph* eph, int GPSweek, 
+                                       double GPSweeks, const QString& prn, 
+                                       const ColumnVector& xx, 
+                                       struct ClockOrbit::SatData* sd,
+                                       QString& outLine) {
+
+  const double secPerWeek = 7.0 * 86400.0;
+
+  ColumnVector rsw(3);
+  ColumnVector rsw2(3);
+  double dClk;
+
+  for (int ii = 1; ii <= 2; ++ii) {
+
+    int    GPSweek12  = GPSweek;
+    double GPSweeks12 = GPSweeks;
+    if (ii == 2) {
+      GPSweeks12 += xx(11);
+      if (GPSweeks12 > secPerWeek) {
+        GPSweek12  += 1;
+        GPSweeks12 -= secPerWeek;
+      }
+    }
+
+    ColumnVector xB(4);
+    ColumnVector vv(3);
+
+    eph->position(GPSweek12, GPSweeks12, xB.data(), vv.data());
+    
+    ColumnVector xyz;
+    if (ii == 1) {
+      xyz = xx.Rows(1,3);
+    }
+    else {
+      xyz = xx.Rows(12,14);
+    }
+    
+    // Correction Center of Mass -> Antenna Phase Center
+    // -------------------------------------------------
+    if (! _CoM) {
+      xyz(1) += xx(6);
+      xyz(2) += xx(7);
+      xyz(3) += xx(8);
+    }
+    
+    if (_crdTrafo != "IGS05") {
+      crdTrafo(GPSweek12, xyz);
+    }
+    
+    ColumnVector dx = xB.Rows(1,3) - xyz ;
+    
+    if (ii == 1) {
+      XYZ_to_RSW(xB.Rows(1,3), vv, dx, rsw);
+      dClk = (xx(4) + xx(5) - xB(4)) * 299792458.0;
+    }
+    else {
+      XYZ_to_RSW(xB.Rows(1,3), vv, dx, rsw2);
+    }
+  }
+
+  if (sd) {
+    sd->ID                    = prn.mid(1).toInt();
+    sd->IOD                   = eph->IOD();
+    sd->Clock.DeltaA0         = dClk;
+    sd->Orbit.DeltaRadial     = rsw(1);
+    sd->Orbit.DeltaAlongTrack = rsw(2);
+    sd->Orbit.DeltaCrossTrack = rsw(3);
+    sd->Orbit.DotDeltaRadial     = (rsw2(1) - rsw(1)) / xx(11);
+    sd->Orbit.DotDeltaAlongTrack = (rsw2(2) - rsw(2)) / xx(11);
+    sd->Orbit.DotDeltaCrossTrack = (rsw2(3) - rsw(3)) / xx(11);
+  }
+
+  outLine.sprintf("%d %.1f %s  %3d  %10.3f  %8.3f %8.3f %8.3f\n", 
+                  GPSweek, GPSweeks, eph->prn().toAscii().data(),
+                  eph->IOD(), dClk, rsw(1), rsw(2), rsw(3));
+
+  if (_rnx) {
+    _rnx->write(GPSweek, GPSweeks, prn, xx);
+  }
+  if (_sp3) {
+    _sp3->write(GPSweek, GPSweeks, prn, xx);
+  }
+}
+
+// Transform Coordinates
+////////////////////////////////////////////////////////////////////////////
+void bncRtnetUploadCaster::crdTrafo(int GPSWeek, ColumnVector& xyz) {
+
+  // Current epoch minus 2000.0 in years
+  // ------------------------------------
+  double dt = (GPSWeek - (1042.0+6.0/7.0)) / 365.2422 * 7.0 + 2000.0 - _t0;
+
+  ColumnVector dx(3);
+
+  dx(1) = _dx + dt * _dxr;
+  dx(2) = _dy + dt * _dyr;
+  dx(3) = _dz + dt * _dzr;
+
+  static const double arcSec = 180.0 * 3600.0 / M_PI;
+
+  double ox = (_ox + dt * _oxr) / arcSec;
+  double oy = (_oy + dt * _oyr) / arcSec;
+  double oz = (_oz + dt * _ozr) / arcSec;
+
+  double sc = 1.0 + _sc * 1e-9 + dt * _scr * 1e-9;
+
+  Matrix rMat(3,3);
+  rMat(1,1) = 1.0;
+  rMat(1,2) = -oz;
+  rMat(1,3) =  oy;
+  rMat(2,1) =  oz;
+  rMat(2,2) = 1.0;
+  rMat(2,3) = -ox;
+  rMat(3,1) = -oy;
+  rMat(3,2) =  ox;
+  rMat(3,3) = 1.0;
+
+  xyz = sc * rMat * xyz + dx;
+}
+
Index: branches/BNC_LM/upload/bncrtnetuploadcaster.h
===================================================================
--- branches/BNC_LM/upload/bncrtnetuploadcaster.h	(revision 3570)
+++ branches/BNC_LM/upload/bncrtnetuploadcaster.h	(revision 3570)
@@ -0,0 +1,62 @@
+#ifndef BNCRTNETUPLOADCASTER_H
+#define BNCRTNETUPLOADCASTER_H
+
+#include <newmat.h>
+#include "bncuploadcaster.h"
+#include "bnctime.h"
+#include "ephemeris.h"
+extern "C" {
+#include "clock_orbit_rtcm.h"
+}
+
+class bncEphUser;
+class bncoutf;
+class bncClockRinex;
+class bncSP3;
+
+class bncRtnetUploadCaster : public bncUploadCaster {
+ Q_OBJECT
+ public:
+  bncRtnetUploadCaster(const QString& mountpoint,
+                  const QString& outHost, int outPort,
+                  const QString& password, 
+                  const QString& crdTrafo, bool  CoM, 
+                  const QString& sp3FileName,
+                  const QString& rnxFileName,
+                  const QString& outFileName, int iRow);
+  void decodeRtnetStream(char* buffer, int bufLen);
+ protected:
+  virtual ~bncRtnetUploadCaster();
+ private:
+  void processSatellite(t_eph* eph, int GPSweek, 
+                        double GPSweeks, const QString& prn, 
+                        const ColumnVector& xx, 
+                        struct ClockOrbit::SatData* sd,
+                        QString& outLine);
+  void crdTrafo(int GPSWeek, ColumnVector& xyz);
+
+  bncEphUser*    _ephUser;
+  QString        _rtnetStreamBuffer;
+  QString        _crdTrafo;
+  bool           _CoM;
+  double         _dx;
+  double         _dy;
+  double         _dz;
+  double         _dxr;
+  double         _dyr;
+  double         _dzr;
+  double         _ox;
+  double         _oy;
+  double         _oz;
+  double         _oxr;
+  double         _oyr;
+  double         _ozr;
+  double         _sc;
+  double         _scr;
+  double         _t0;
+  bncoutf*       _outFile;
+  bncClockRinex* _rnx;
+  bncSP3*        _sp3;
+};
+
+#endif
Index: branches/BNC_LM/upload/bncuploadcaster.cpp
===================================================================
--- branches/BNC_LM/upload/bncuploadcaster.cpp	(revision 3570)
+++ branches/BNC_LM/upload/bncuploadcaster.cpp	(revision 3570)
@@ -0,0 +1,153 @@
+/* -------------------------------------------------------------------------
+ * BKG NTRIP Server
+ * -------------------------------------------------------------------------
+ *
+ * Class:      bncUploadCaster
+ *
+ * Purpose:    Connection to NTRIP Caster
+ *
+ * Author:     L. Mervart
+ *
+ * Created:    29-Mar-2011
+ *
+ * Changes:    
+ *
+ * -----------------------------------------------------------------------*/
+
+#include <math.h>
+#include "bncuploadcaster.h" 
+#include "bncversion.h"
+#include "bncapp.h"
+#include "bnctableitem.h"
+
+using namespace std;
+
+// Constructor
+////////////////////////////////////////////////////////////////////////////
+bncUploadCaster::bncUploadCaster(const QString& mountpoint,
+                                 const QString& outHost, int outPort,
+                                 const QString& password, int iRow, 
+                                 int rate) {
+  _mountpoint    = mountpoint;
+  _outHost       = outHost;
+  _outPort       = outPort;
+  _password      = password;
+  _outSocket     = 0;
+  _sOpenTrial    = 0;
+  _iRow          = iRow;
+  _rate          = rate;
+  if      (_rate < 5) {
+    _rate = 5;
+  }
+  else if (_rate > 60) {
+    _rate = 60;
+  }
+  _isToBeDeleted = false;
+
+  bncApp* app = (bncApp*) qApp;
+  connect(this, SIGNAL(newMessage(QByteArray,bool)), 
+          app, SLOT(slotMessage(const QByteArray,bool)));
+
+  if (app->_uploadTableItems.find(_iRow) != app->_uploadTableItems.end()){
+    connect(this, SIGNAL(newBytes(QByteArray,double)), 
+            app->_uploadTableItems.value(iRow), 
+            SLOT(slotNewBytes(const QByteArray,double)));
+  }
+}
+
+// Safe Desctructor
+////////////////////////////////////////////////////////////////////////////
+void bncUploadCaster::deleteSafely() {
+  _isToBeDeleted = true;
+  if (!isRunning()) {
+    delete this;
+  }
+}
+
+// Destructor
+////////////////////////////////////////////////////////////////////////////
+bncUploadCaster::~bncUploadCaster() {
+  if (isRunning()) {
+    wait();
+  }
+}
+
+// Endless Loop
+////////////////////////////////////////////////////////////////////////////
+void bncUploadCaster::run() {
+  while (true) {
+    if (_isToBeDeleted) {
+      QThread::quit();
+      deleteLater();
+      return;
+    }
+    open();
+    if (_outSocket && _outSocket->state() == QAbstractSocket::ConnectedState) {
+      QMutexLocker locker(&_mutex);
+      _outSocket->write(_outBuffer);
+      _outSocket->flush();
+      emit newBytes(_mountpoint.toAscii(), _outBuffer.size());
+    }
+    sleep(_rate);
+  }
+}
+
+// Start the Communication with NTRIP Caster
+////////////////////////////////////////////////////////////////////////////
+void bncUploadCaster::open() {
+
+  if (_mountpoint.isEmpty()) {
+    return;
+  }
+
+  if (_outSocket != 0 && 
+      _outSocket->state() == QAbstractSocket::ConnectedState) {
+    return;
+  }
+
+  delete _outSocket; _outSocket = 0;
+
+  double minDt = pow(2.0,_sOpenTrial);
+  if (++_sOpenTrial > 4) {
+    _sOpenTrial = 4;
+  }
+  if (_outSocketOpenTime.isValid() &&
+      _outSocketOpenTime.secsTo(QDateTime::currentDateTime()) < minDt) {
+    return;
+  }
+  else {
+    _outSocketOpenTime = QDateTime::currentDateTime();
+  }
+
+  _outSocket = new QTcpSocket();
+  _outSocket->connectToHost(_outHost, _outPort);
+
+  const int timeOut = 5000;  // 5 seconds
+  if (!_outSocket->waitForConnected(timeOut)) {
+    delete _outSocket;
+    _outSocket = 0;
+    emit(newMessage("Broadcaster: Connect timeout", true));
+    return;
+  }
+
+  QByteArray msg = "SOURCE " + _password.toAscii() + " /" + 
+                   _mountpoint.toAscii() + "\r\n" +
+                   "Source-Agent: NTRIP BNC/" BNCVERSION "\r\n\r\n";
+
+  _outSocket->write(msg);
+  _outSocket->waitForBytesWritten();
+
+  _outSocket->waitForReadyRead();
+  QByteArray ans = _outSocket->readLine();
+
+  if (ans.indexOf("OK") == -1) {
+    delete _outSocket;
+    _outSocket = 0;
+    emit(newMessage("Broadcaster: Connection broken", true));
+  }
+  else {
+    emit(newMessage("Broadcaster: Connection opened", true));
+    _sOpenTrial = 0;
+  }
+}
+
Index: branches/BNC_LM/upload/bncuploadcaster.h
===================================================================
--- branches/BNC_LM/upload/bncuploadcaster.h	(revision 3570)
+++ branches/BNC_LM/upload/bncuploadcaster.h	(revision 3570)
@@ -0,0 +1,42 @@
+#ifndef BNCUPLOADCASTER_H
+#define BNCUPLOADCASTER_H
+
+#include <QtNetwork>
+
+class bncUploadCaster : public QThread {
+ Q_OBJECT
+ public:
+  bncUploadCaster(const QString& mountpoint,
+                  const QString& outHost, int outPort,
+                  const QString& password, int iRow, int rate);
+  virtual void deleteSafely();
+  void setOutBuffer(const QByteArray& outBuffer) {
+    QMutexLocker locker(&_mutex);
+    _outBuffer = outBuffer;
+  }
+
+ protected:
+  virtual    ~bncUploadCaster();
+  QMutex     _mutex;  
+  QByteArray _outBuffer;
+
+ signals:
+  void newMessage(const QByteArray msg, bool showOnScreen);
+  void newBytes(QByteArray staID, double nbyte);
+
+ private:
+  void         open();
+  virtual void run();
+  bool        _isToBeDeleted;
+  QString     _mountpoint;
+  QString     _outHost;
+  int         _outPort;
+  QString     _password;
+  QTcpSocket* _outSocket;
+  int         _sOpenTrial;
+  QDateTime   _outSocketOpenTime;
+  int         _iRow;
+  int         _rate;
+};
+
+#endif
Index: branches/BNC_LM/worldmap.dat
===================================================================
--- branches/BNC_LM/worldmap.dat	(revision 3570)
+++ branches/BNC_LM/worldmap.dat	(revision 3570)
@@ -0,0 +1,5294 @@
+        0 0 
+   48.9   68.7
+   48.6   69.1
+   49.4   69.5
+   50.3   69.2
+   50.2   68.8
+   48.9   68.7
+       0 0 
+   47.9   80.0
+   47.1   80.4
+   48.6   80.6
+   49.8   80.7
+   50.6   80.9
+   51.6   80.6
+   50.4   80.5
+   50.3   80.3
+   49.1   80.2
+   47.9   80.0
+       0 0 
+   57.1   80.6
+   55.9   80.6
+   55.0   80.7
+   54.2   80.8
+   55.4   81.1
+   56.3   81.3
+   57.3   81.5
+   58.3   81.5
+   59.5   81.3
+   58.0   81.3
+   58.6   81.1
+   58.0   80.7
+   57.1   80.6
+       0 0 
+   61.6   80.3
+   60.7   80.3
+   59.8   80.3
+   59.5   80.5
+   60.0   80.8
+   61.0   80.8
+   62.1   80.9
+   62.4   80.6
+   61.4   80.6
+   61.6   80.3
+        0 0 
+   65.5   81.0
+   64.3   81.0
+   63.6   80.7
+   62.8   80.9
+   63.0   81.2
+   64.0   81.3
+   64.6   81.4
+   65.2   81.3
+   65.5   81.0
+       0 0 
+   57.3   70.4
+   56.4   70.5
+   55.5   70.6
+   54.5   70.7
+   53.6   70.8
+   53.7   71.2
+   52.8   71.3
+   51.8   71.4
+   51.9   72.1
+   52.8   72.2
+   52.6   72.6
+   53.2   73.1
+   54.4   73.3
+   53.9   73.7
+   54.2   73.9
+   55.4   74.2
+   56.0   75.1
+   57.0   75.2
+   58.0   75.4
+   59.0   75.8
+   60.0   76.0
+   61.0   76.1
+   62.0   76.2
+   63.0   76.1
+   64.0   76.2
+   65.0   76.4
+   66.0   76.5
+   66.0   76.7
+   66.6   76.8
+   67.7   76.9
+   68.7   76.9
+   69.3   76.6
+   68.5   76.2
+   67.5   76.1
+   66.5   75.9
+   65.5   75.8
+   64.5   75.6
+   63.5   75.5
+   62.4   75.3
+   61.5   75.1
+   60.5   74.8
+   59.3   74.5
+   58.5   74.0
+   57.4   73.4
+   56.4   73.0
+   56.6   72.3
+   56.0   71.4
+   57.0   70.9
+   57.8   70.7
+   57.3   70.4
+      0 0 
+   50.0   68.0
+   51.0   68.3
+   52.0   68.4
+   53.0   68.6
+   54.0   68.9
+   54.7   68.8
+   54.0   68.3
+   53.0   68.0
+   53.0   67.5
+   54.0   67.8
+   54.7   68.2
+   55.6   68.4
+   56.6   68.5
+   57.3   68.5
+   58.2   68.7
+   59.4   68.8
+   59.2   68.3
+   59.9   68.3
+   59.8   68.6
+   61.0   68.7
+   60.4   69.3
+   59.6   69.8
+   58.4   70.1
+   59.1   70.3
+   60.0   70.1
+   60.8   69.8
+   61.7   69.7
+   62.6   69.7
+   63.5   69.6
+   64.4   69.3
+   65.6   69.0
+   66.4   68.8
+   67.4   68.6
+   68.4   68.1
+   69.2   68.7
+   68.3   69.0
+   68.0   69.3
+   67.0   69.5
+   67.0   70.0
+   67.3   70.5
+   66.9   71.0
+   67.2   71.2
+   68.0   71.3
+   69.0   72.0
+   69.6   72.9
+   70.0   73.0
+   70.0   73.4
+   71.0   73.5
+   71.6   73.2
+   70.3   73.0
+   70.2   72.9
+   71.3   72.9
+   72.2   72.8
+   73.0   72.6
+   72.3   71.7
+   72.0   71.4
+   72.8   70.9
+   72.7   69.9
+   72.6   68.9
+   73.6   68.4
+   73.0   67.6
+   72.0   67.0
+   71.0   66.7
+   70.0   66.7
+   69.0   66.7
+   70.0   66.4
+   71.0   66.4
+   72.0   66.0
+   73.0   66.7
+   74.0   67.2
+   74.9   68.0
+   74.4   68.5
+   75.4   68.8
+   76.6   68.9
+   75.7   69.1
+   74.7   69.0
+   73.9   69.0
+   73.7   70.0
+   74.2   70.6
+   73.0   71.3
+   73.5   71.9
+   74.6   72.0
+   75.1   72.5
+   74.1   73.0
+   74.5   73.1
+   75.3   72.8
+   75.7   72.3
+   75.4   71.3
+   76.5   71.2
+   77.6   71.1
+   78.4   71.0
+   78.1   71.2
+   77.1   71.3
+   76.3   71.6
+   76.1   71.9
+   76.9   72.1
+   78.0   71.9
+   77.0   72.3
+   77.8   72.6
+   78.8   72.4
+   79.7   72.3
+   80.8   72.0
+   81.4   71.7
+   83.1   71.7
+   83.2   71.8
+   82.6   71.9
+   82.0   72.3
+   80.9   72.3
+   80.8   73.0
+   80.3   73.6
+   81.4   73.6
+   82.5   73.6
+   83.4   73.6
+   84.6   73.7
+   85.6   73.8
+   86.4   73.8
+   87.0   73.9
+   86.6   74.2
+   85.9   74.3
+   86.4   74.6
+   87.1   74.9
+   88.1   75.2
+   89.1   75.5
+   90.1   75.6
+   91.2   75.6
+   92.1   75.7
+   93.0   75.8
+   93.0   76.1
+   94.1   76.1
+   95.1   76.1
+   96.1   76.1
+   97.0   76.0
+   98.0   76.1
+   98.8   76.2
+   99.0   76.4
+  100.0   76.4
+       0 0 
+   97.9   78.8
+   97.0   78.9
+   96.0   79.0
+   94.9   79.0
+   94.0   79.4
+   93.0   79.5
+   93.9   79.8
+   94.3   80.0
+   93.2   79.8
+   92.3   79.7
+   91.3   79.7
+   91.0   80.1
+   92.0   80.1
+   92.2   80.2
+   91.6   80.3
+   92.5   80.5
+   92.7   80.8
+   93.6   81.0
+   94.8   81.1
+   95.6   81.2
+   96.4   81.1
+   97.3   80.8
+   98.0   80.7
+   97.0   80.5
+   97.4   80.2
+   98.1   80.1
+   99.3   80.0
+  100.0   79.8
+   99.7   79.2
+  100.0   78.9
+   99.3   78.8
+   97.9   78.8
+       0 0 
+   99.4   77.9
+  100.0   78.4
+  100.6   78.9
+  101.6   79.3
+  102.4   79.4
+  103.4   79.2
+  104.3   79.0
+  105.1   78.8
+  105.2   78.4
+  104.6   78.3
+  103.6   78.3
+  102.6   78.2
+  101.3   78.2
+  100.5   78.1
+   99.4   77.9
+       0 0 
+  100.0   76.4
+  101.2   77.1
+  102.3   77.4
+  103.3   77.6
+  104.2   77.7
+  105.2   77.5
+  106.2   77.4
+  105.2   77.3
+  104.3   77.1
+  105.8   77.1
+  106.8   77.0
+  107.3   76.9
+  106.8   76.7
+  106.2   76.5
+  107.2   76.5
+  107.9   76.5
+  108.0   76.7
+  109.0   76.7
+  110.0   76.6
+  111.0   76.7
+  112.0   76.6
+  112.8   76.3
+  113.4   76.2
+  114.0   75.9
+  113.6   75.3
+  112.7   74.9
+  111.6   74.6
+  110.6   74.4
+  109.8   74.1
+  108.6   73.8
+  108.0   73.6
+  107.0   73.4
+  106.1   73.3
+  105.8   72.9
+  106.3   73.1
+  107.5   73.1
+  108.6   73.2
+  109.6   73.2
+  110.4   73.6
+  110.6   73.7
+  109.7   73.7
+  109.5   73.8
+  110.1   74.0
+  111.1   73.9
+  112.1   73.6
+  113.0   73.7
+  112.6   74.1
+  111.6   74.3
+  112.1   74.5
+  113.0   74.5
+  113.4   74.3
+  113.2   74.1
+  113.0   74.0
+  113.4   73.6
+  114.1   73.6
+  115.1   73.7
+  116.0   73.7
+  117.0   73.6
+  118.0   73.6
+  119.0   73.4
+  118.5   73.2
+  119.4   73.0
+  120.2   73.0
+  121.3   72.9
+  122.3   72.9
+  123.2   72.8
+  123.2   73.2
+  122.8   73.6
+  123.7   73.7
+  124.6   73.7
+  125.1   73.7
+  125.2   73.4
+  126.2   73.5
+  126.4   73.3
+  127.3   73.3
+  128.2   73.2
+  129.0   73.0
+  130.0   72.8
+  129.8   72.4
+  129.4   72.1
+  128.6   72.2
+  128.0   72.1
+  129.0   71.6
+  130.0   71.1
+  130.9   70.9
+  131.3   70.7
+  132.2   71.5
+  133.0   71.9
+  133.3   71.5
+  134.2   71.3
+  135.0   71.6
+  136.0   71.6
+  137.0   71.6
+  138.0   71.6
+  139.0   71.6
+  139.7   71.4
+  139.9   71.9
+  139.3   72.2
+  139.7   72.4
+       0 0 
+  139.2   74.6
+  138.2   74.7
+  137.4   75.1
+  137.0   75.3
+  137.3   75.7
+  137.7   76.0
+  138.6   76.2
+  139.1   76.2
+  140.0   76.0
+  141.0   75.6
+  140.6   75.3
+  140.3   75.0
+  139.6   74.9
+  139.2   74.6
+       0 0 
+  144.0   75.0
+  143.0   75.1
+  142.4   75.3
+  143.1   75.8
+  141.9   76.1
+  142.1   76.7
+  143.4   75.9
+  144.1   75.8
+  145.0   75.6
+  144.6   75.2
+  144.0   75.0
+       0 0 
+  150.0   74.7
+  148.9   74.8
+  148.3   74.8
+  147.2   75.0
+  146.9   75.4
+  146.5   75.6
+  147.2   75.4
+  148.1   75.4
+  148.9   75.3
+  149.4   75.2
+  150.2   75.2
+  151.0   75.1
+  151.0   74.9
+  150.0   74.7
+       0 0 
+  143.5   73.2
+  142.6   73.2
+  141.4   73.3
+  140.8   73.4
+  139.9   73.4
+  140.8   73.6
+  141.0   73.8
+  142.1   73.9
+  143.0   73.7
+  143.6   73.4
+  143.5   73.2
+       0 0 
+  139.7   72.4
+  140.6   72.4
+  141.2   72.6
+  140.8   72.8
+  141.6   72.8
+  142.4   72.7
+  143.3   72.7
+  144.3   72.6
+  145.3   72.5
+  146.2   72.4
+  147.1   72.3
+  148.2   72.3
+  149.2   72.2
+  150.0   72.0
+  149.7   71.6
+  150.5   71.3
+  151.6   71.3
+  152.3   71.0
+  152.5   70.8
+  153.5   70.8
+  154.6   70.9
+  155.5   71.0
+  156.6   71.0
+  157.6   71.0
+  158.6   70.9
+  159.4   70.7
+  160.0   70.3
+  159.4   69.8
+  160.4   69.6
+  161.2   69.4
+  162.2   69.6
+  163.3   69.7
+  164.4   69.6
+  165.3   69.4
+  166.4   69.4
+  167.0   69.3
+  168.0   69.9
+  168.6   70.0
+  169.4   69.8
+  169.1   69.4
+  168.1   69.6
+  168.3   69.1
+  169.3   68.9
+  170.0   68.7
+       0 0 
+  170.0   68.7
+  170.8   69.0
+  170.3   70.0
+  171.0   70.0
+  172.0   69.9
+  173.0   69.8
+  174.0   69.7
+  175.0   69.8
+  176.0   69.7
+  177.0   69.5
+  178.0   69.4
+       0 0 
+  178.6   70.8
+  178.4   71.0
+  179.3   71.3
+  180.3   71.5
+  181.3   71.5
+  182.4   71.1
+  181.6   70.9
+  180.3   70.8
+  179.8   70.9
+  178.6   70.8
+      0 0 
+  178.0   69.4
+  179.0   69.2
+  179.8   68.9
+  181.0   68.6
+  182.0   68.3
+  183.0   68.0
+  184.0   67.6
+  185.0   67.4
+  185.0   66.6
+  185.9   66.4
+  185.5   67.0
+  186.7   67.0
+  188.1   66.9
+  188.9   66.5
+  190.0   66.0
+  189.2   65.6
+  188.4   65.4
+  187.3   65.6
+  187.7   64.9
+  187.0   64.6
+  187.5   64.3
+  186.8   64.1
+  185.8   64.4
+  184.7   64.7
+  183.8   64.8
+  183.8   65.3
+  182.9   65.5
+  182.3   65.3
+  181.2   65.4
+  181.2   66.2
+  180.1   66.1
+  180.5   65.6
+  180.1   65.1
+  179.0   64.6
+  178.0   64.6
+  177.0   64.9
+  176.2   64.5
+  177.2   64.5
+  178.0   64.2
+  179.0   63.1
+  179.6   62.6
+  178.8   62.3
+  178.0   62.4
+  177.0   62.5
+  176.0   62.2
+  175.0   62.0
+  174.0   61.7
+  173.0   61.4
+  172.0   61.0
+  171.0   60.5
+  170.1   59.9
+  169.5   60.4
+  168.6   60.5
+  167.7   60.4
+  166.9   60.3
+  165.9   59.8
+  166.0   60.4
+  165.3   60.2
+  164.7   59.8
+  164.2   60.0
+  163.3   59.7
+  162.7   58.9
+  162.0   58.4
+  162.2   57.7
+  162.6   57.9
+  163.1   57.7
+  162.6   57.3
+  162.7   56.6
+  163.1   56.6
+  162.9   55.9
+  162.7   56.3
+  162.0   56.2
+  161.5   55.4
+  162.0   54.7
+  161.1   54.5
+  160.0   54.0
+  159.9   53.1
+  159.0   53.0
+  158.4   52.2
+  157.7   51.5
+  156.7   50.9
+  156.4   52.0
+  156.0   53.0
+  155.8   54.0
+  155.3   55.0
+  155.6   56.0
+  156.5   56.9
+  157.0   57.5
+  156.9   57.9
+  158.0   58.0
+  159.0   58.4
+  159.7   58.9
+  160.4   59.5
+  161.4   59.9
+  161.9   60.4
+  162.7   60.5
+  163.6   60.8
+  163.7   61.3
+  164.0   62.2
+  165.0   62.4
+  164.0   62.6
+  163.1   62.4
+  162.0   61.4
+  161.0   60.9
+  160.0   60.6
+  159.9   61.3
+  160.3   61.9
+  159.5   61.6
+  158.7   61.9
+  157.7   61.8
+  156.7   61.4
+  156.8   60.7
+  154.8   60.3
+  154.1   59.5
+  155.0   59.2
+  154.0   59.0
+  153.0   59.0
+  152.0   58.8
+  151.0   58.8
+  152.0   59.2
+  151.0   59.5
+  150.0   59.6
+  149.0   59.7
+  148.7   59.2
+  147.6   59.2
+  146.4   59.4
+  146.0   59.1
+  145.6   59.4
+  144.6   59.4
+  143.8   59.3
+  143.0   59.3
+  142.0   59.0
+  141.0   58.4
+  140.0   57.7
+  139.0   57.1
+  138.0   56.3
+  137.0   55.7
+  136.0   55.1
+  135.2   54.7
+  136.0   54.4
+  136.9   54.6
+  137.0   53.8
+  137.7   54.2
+  137.5   53.6
+  138.4   53.8
+  138.8   54.2
+  139.8   54.2
+  140.4   53.8
+  141.4   53.3
+  141.2   53.5
+  141.5   52.2
+  141.0   51.6
+  140.6   51.0
+  140.7   50.0
+  140.4   49.0
+       0 0 
+  142.0   49.0
+  142.2   50.0
+  142.2   51.1
+  141.7   52.1
+  141.8   53.3
+  142.6   53.4
+  142.3   54.1
+  142.9   54.3
+  143.1   53.4
+  143.3   52.3
+  143.5   51.2
+  144.0   50.1
+  144.6   48.8
+  144.0   49.3
+  143.3   49.4
+  142.8   48.4
+  142.6   47.6
+  143.1   47.0
+  143.6   46.3
+  142.8   46.7
+  142.1   46.0
+  142.0   46.7
+  142.0   47.5
+  142.3   48.2
+  142.0   49.0
+       0 0 
+  140.4   49.0
+  139.6   48.0
+  138.6   47.0
+  138.0   46.0
+  137.0   45.2
+  136.0   44.3
+  135.0   43.5
+  134.0   42.8
+  133.0   42.8
+  132.0   43.3
+  131.0   42.7
+  130.0   42.0
+  129.8   41.0
+  129.0   40.5
+  127.8   40.0
+       0 0 
+  141.6   45.2
+  142.1   45.5
+  142.8   44.8
+  143.4   44.3
+  144.4   44.0
+  145.4   44.2
+  145.2   43.6
+  145.9   43.4
+  144.7   42.9
+  144.0   42.9
+  143.4   42.1
+  142.5   42.3
+  141.6   42.6
+  141.0   42.4
+  140.4   42.3
+  141.2   41.8
+  140.1   41.5
+  139.9   42.2
+  140.4   42.8
+  140.4   43.3
+  141.4   43.2
+  141.4   43.7
+  141.9   44.4
+  141.6   45.2
+       0 0 
+  141.1   41.5
+  141.6   41.3
+  141.6   40.7
+  142.1   40.0
+  142.0   39.0
+  141.5   38.4
+  141.0   38.1
+  141.1   37.3
+  140.7   36.6
+  140.9   35.8
+  140.0   35.0
+  140.0   35.7
+  139.2   35.3
+  139.0   34.7
+  138.7   35.2
+  138.3   34.7
+  137.3   34.7
+  136.9   34.9
+  137.0   34.3
+  136.3   33.9
+  135.8   33.4
+  135.1   34.0
+  135.4   34.7
+  134.4   34.8
+  133.4   34.4
+  132.3   33.9
+  131.3   33.8
+  131.9   33.5
+  132.0   32.8
+  131.7   32.0
+  131.0   31.1
+  130.3   31.3
+  130.3   32.0
+  130.6   32.6
+  129.8   33.1
+  130.5   33.7
+  131.0   34.3
+  132.0   34.9
+  132.9   35.6
+  133.9   35.6
+  134.9   35.7
+  135.8   35.6
+  136.0   36.0
+  136.9   36.9
+  137.4   37.4
+  137.3   36.7
+  138.1   37.1
+  138.9   37.8
+  139.6   38.5
+  140.0   39.4
+  140.0   40.4
+  140.3   41.1
+  141.1   41.5
+       0 0 
+  133.0   34.0
+  133.2   33.9
+  133.6   34.1
+  134.1   34.4
+  134.6   34.2
+  134.7   33.8
+  134.1   33.3
+  133.3   33.3
+  133.0   32.7
+  132.5   33.4
+  133.0   34.0
+       0 0 
+  127.8   40.0
+  127.6   39.1
+  128.7   38.4
+  129.3   37.7
+  129.6   37.0
+  129.7   36.0
+  129.2   35.2
+  128.4   35.0
+  127.5   34.9
+  126.6   34.4
+  126.3   35.3
+  126.9   35.9
+  126.2   36.8
+  127.0   37.0
+  126.4   37.8
+  125.3   37.7
+  124.9   38.1
+  125.1   38.8
+  125.5   39.4
+  124.7   39.8
+  123.9   39.9
+  123.0   39.6
+  122.2   39.3
+  121.8   38.8
+  121.0   38.8
+  121.6   39.2
+  121.4   39.5
+  122.0   40.1
+  122.3   40.6
+  121.8   41.0
+  120.8   40.7
+  119.8   40.0
+  119.0   39.2
+  118.0   39.2
+  117.6   38.6
+  118.4   38.0
+  118.9   37.4
+  119.7   37.0
+  120.9   37.8
+  121.5   37.4
+  122.2   37.6
+  122.4   36.9
+  121.7   36.9
+  121.0   36.5
+  120.3   36.0
+  119.7   35.6
+  119.2   35.0
+  120.2   34.2
+  120.9   33.0
+  121.9   31.9
+  121.9   30.9
+  120.7   30.4
+  122.0   30.0
+  121.6   29.0
+  121.0   28.1
+  120.1   27.0
+  119.6   25.9
+  119.0   25.2
+  118.1   24.3
+  117.1   23.6
+  116.3   23.0
+  115.3   22.8
+  114.4   22.6
+  113.4   22.5
+  112.7   21.9
+  111.7   21.7
+  111.0   21.4
+  110.4   21.4
+  110.5   20.5
+  110.0   20.3
+  109.6   21.0
+        0 0 
+  110.0   20.0
+  110.9   20.9
+  110.6   19.3
+  110.2   18.6
+  109.7   18.3
+  108.7   18.7
+  108.8   19.4
+  109.2   20.0
+  110.0   20.0
+       0 0 
+  109.6   21.0
+  109.0   21.7
+  108.0   21.6
+  107.0   21.0
+  106.0   20.0
+  105.7   19.0
+  106.4   18.0
+  107.0   17.3
+  108.0   16.4
+  109.0   15.2
+  109.2   14.0
+  109.4   13.0
+  109.2   12.0
+  108.6   11.1
+  107.7   10.8
+  106.9   10.4
+        0 0 
+  120.8   22.0
+  120.0   22.9
+  120.0   23.7
+  120.4   24.3
+  121.0   25.1
+  121.9   25.2
+  121.6   24.1
+  121.3   23.0
+  120.8   22.0
+       0 0 
+  106.9   10.4
+  106.1    9.6
+  105.3    9.0
+  104.9    8.6
+  104.6    9.4
+  104.9   10.1
+  104.0   10.7
+  103.0   11.0
+  102.6   12.1
+  102.0   12.8
+  101.0   12.7
+  101.0   13.5
+  100.0   13.4
+  100.0   12.0
+   99.4   11.0
+   99.1   10.0
+   99.3    9.2
+   99.9    9.4
+  100.1    8.3
+  100.5    7.4
+  100.9    6.9
+  101.6    7.0
+  102.4    6.3
+  103.0    5.3
+  103.4    4.3
+  103.3    3.3
+  103.9    2.3
+  104.1    1.4
+  103.5    1.3
+  102.7    2.0
+  101.9    2.5
+  101.2    3.5
+  100.6    4.3
+  100.4    5.9
+   99.9    7.0
+   99.3    7.8
+   98.4    8.2
+   98.3    9.1
+   98.6   10.0
+   98.7   11.1
+   98.7   12.3
+   98.6   13.3
+   98.0   14.4
+   97.8   15.3
+   97.7   16.3
+   97.0   17.0
+   96.0   16.3
+        0 0 
+   92.7   13.5
+   92.8   12.5
+   92.5   11.7
+   92.4   12.6
+   92.7   13.5
+       0 0 
+   96.0   16.3
+   95.2   15.8
+   94.1   16.0
+   94.3   17.1
+   94.2   18.3
+   93.8   19.0
+   93.3   19.6
+   93.6   19.8
+   92.7   20.2
+   92.0   21.1
+   91.7   22.0
+   91.2   23.0
+   90.4   22.7
+   89.9   22.0
+   89.0   21.9
+   88.0   21.7
+   87.9   22.2
+   87.5   21.8
+   86.7   21.3
+   86.9   20.8
+   86.1   20.0
+   85.0   19.7
+   84.4   19.0
+   83.7   18.3
+   83.0   17.6
+   82.1   17.0
+   81.9   16.4
+   81.1   16.3
+   80.9   15.9
+   80.3   15.9
+   79.9   15.3
+   80.0   14.4
+   80.0   13.4
+   80.0   12.6
+   79.6   11.7
+   79.7   10.6
+   78.9    9.6
+   78.0    9.0
+   77.4    8.2
+       0 0 
+   80.0   10.0
+   80.5    9.7
+   81.0    8.9
+   81.6    7.7
+   81.7    6.9
+   81.0    6.3
+   80.0    6.1
+   79.6    7.3
+   79.7    8.7
+   80.0   10.0
+      0 0 
+   77.4    8.2
+   76.4    9.0
+   76.0   10.2
+   75.7   11.3
+   75.0   12.2
+   74.6   13.3
+   74.2   14.4
+   73.8   15.2
+   73.4   16.0
+   73.0   17.0
+   72.8   18.0
+   72.6   19.0
+   72.4   20.0
+   72.7   21.0
+   72.4   21.7
+   72.3   22.4
+   72.0   21.4
+   71.0   21.0
+   70.0   21.1
+   69.2   22.0
+   68.8   22.5
+   69.7   22.6
+   70.1   23.0
+   69.1   23.0
+   68.0   23.8
+   67.3   24.1
+   67.0   24.9
+   66.6   25.0
+   66.6   25.5
+   65.9   25.7
+   65.0   25.5
+   64.0   25.3
+   63.0   25.2
+   62.0   25.1
+   61.0   25.2
+   60.0   25.4
+   58.7   25.5
+   57.6   25.7
+   57.4   26.3
+   57.1   27.0
+   56.2   27.0
+   54.9   26.4
+   53.9   26.6
+   53.0   27.1
+   52.4   27.7
+   51.8   27.9
+   51.4   28.6
+   50.9   29.4
+   50.3   30.1
+   49.7   30.2
+   49.4   30.7
+   48.9   30.0
+   48.4   29.4
+   48.9   28.6
+   49.3   27.9
+   50.0   27.0
+   50.5   26.3
+   50.5   25.6
+   51.0   25.3
+   51.5   26.1
+   51.9   25.6
+   52.0   25.0
+   51.7   25.4
+   52.3   24.1
+   53.0   24.2
+   54.0   24.1
+   55.0   25.0
+   56.0   25.7
+   56.5   26.3
+   56.6   25.2
+   57.2   24.3
+   58.0   23.8
+   59.0   23.5
+   59.4   22.8
+   60.0   22.4
+   59.3   21.4
+   58.6   20.4
+   58.0   20.1
+   58.1   19.0
+   57.1   18.8
+   56.9   18.0
+   55.8   17.7
+   55.3   17.0
+   54.6   17.0
+   53.8   16.7
+   53.0   16.3
+   52.5   15.6
+   51.6   15.2
+   50.6   14.9
+   49.9   14.7
+   49.0   14.0
+   48.2   13.9
+   47.0   13.3
+   46.0   13.3
+   45.2   12.9
+   44.3   12.7
+   43.7   12.8
+   43.4   13.4
+   43.2   14.3
+   42.8   15.3
+   43.0   16.4
+   42.4   17.3
+   41.7   18.0
+   41.1   19.2
+   40.4   20.1
+   39.4   20.8
+   39.1   21.7
+   39.2   22.5
+   38.7   23.5
+   38.1   24.1
+   37.4   24.4
+   37.3   25.1
+   36.9   26.0
+   36.2   26.8
+   35.8   27.6
+   35.0   28.2
+   34.3   28.0
+   33.4   28.8
+   32.8   30.0
+       0 0 
+   32.8   30.0
+   32.9   29.0
+   33.7   28.0
+   34.2   27.0
+   34.6   26.0
+   35.1   25.0
+   35.8   24.0
+   36.0   22.9
+   37.0   22.2
+   37.4   21.0
+   37.4   20.0
+   37.7   18.9
+   38.5   18.3
+   39.1   17.4
+   39.4   16.3
+   39.6   15.6
+   40.6   15.0
+   41.4   14.6
+   42.0   13.9
+   43.0   13.0
+   43.7   12.1
+   42.9   11.6
+   43.6   11.6
+   44.2   10.7
+   44.9   10.4
+   46.2   10.8
+   46.9   10.6
+   47.6   11.1
+   48.4   11.1
+   49.0   11.3
+   49.4   11.2
+   50.4   11.6
+   51.0   12.0
+   51.5   11.8
+   51.4   10.9
+   51.1   10.0
+   50.9    9.0
+   50.2    8.0
+   49.7    7.0
+   49.4    6.0
+   48.6    5.0
+   47.8    4.0
+   47.0    3.1
+   46.0    2.3
+   45.0    1.7
+   44.0    1.0
+   43.2     .0
+   42.2   -1.0
+   41.3   -2.0
+   40.6   -2.6
+   40.0   -3.7
+   39.5   -4.7
+   39.2   -5.5
+   39.0   -6.2
+   39.8   -7.0
+   39.7   -8.0
+   39.8   -9.0
+   40.1  -10.0
+   40.8  -10.7
+   40.6  -11.8
+   40.6  -12.9
+   40.6  -14.0
+   40.9  -14.9
+   40.7  -15.6
+   40.0  -16.3
+       0 0 
+   49.3  -12.0
+   49.9  -12.8
+   50.1  -14.0
+   50.4  -15.0
+   50.2  -16.0
+   49.9  -15.6
+   49.8  -16.5
+   49.6  -17.3
+   49.4  -18.4
+   49.0  -19.4
+   48.7  -20.6
+   48.4  -21.5
+   48.0  -22.5
+   47.7  -23.5
+   47.3  -24.4
+   46.8  -25.2
+   46.0  -25.3
+   45.4  -25.6
+   44.7  -25.3
+   43.9  -24.8
+   43.7  -23.9
+   43.3  -22.9
+   43.3  -21.9
+   43.7  -21.2
+   44.2  -20.6
+   44.7  -19.8
+   44.3  -18.7
+   44.0  -17.4
+   44.6  -16.3
+   45.6  -16.0
+   46.6  -15.6
+   47.6  -15.0
+   48.0  -13.6
+   48.9  -13.2
+   49.3  -12.0
+      0 0 
+   40.0  -16.3
+   39.0  -17.1
+   38.0  -17.3
+   37.3  -17.9
+   36.5  -18.7
+   35.6  -19.4
+   35.1  -20.0
+   34.9  -20.6
+   35.3  -21.4
+   35.7  -22.3
+   35.7  -23.0
+   35.6  -24.0
+   35.3  -24.7
+   34.2  -25.0
+   33.3  -25.4
+   33.0  -26.0
+   33.1  -27.0
+   32.9  -28.0
+   32.0  -29.0
+   31.0  -30.0
+   30.5  -31.0
+   29.8  -31.6
+   29.0  -32.4
+   28.0  -33.2
+   27.0  -33.7
+   26.0  -33.8
+   25.0  -34.2
+   24.1  -34.0
+   23.0  -34.0
+   22.0  -34.1
+   21.0  -34.4
+   20.0  -34.9
+   19.0  -34.4
+   18.4  -33.8
+   18.0  -32.8
+   18.4  -32.4
+   18.0  -31.5
+   17.4  -30.7
+   17.0  -29.7
+   16.7  -28.8
+   16.0  -28.1
+   15.3  -27.2
+   15.0  -26.0
+   15.0  -25.0
+   14.5  -24.1
+   14.5  -23.0
+   14.6  -22.3
+   13.8  -21.5
+   13.3  -20.6
+   12.7  -19.7
+   12.2  -18.8
+   11.7  -17.8
+   11.7  -16.7
+   12.0  -15.4
+   12.2  -14.4
+   12.6  -13.5
+   13.0  -12.7
+   13.6  -12.4
+   13.8  -11.4
+   13.7  -10.4
+   13.2   -9.8
+   12.9   -9.0
+   13.3   -8.2
+   12.9   -7.0
+   12.3   -6.1
+   12.0   -5.0
+   11.2   -4.0
+   10.3   -3.0
+    9.5   -2.0
+    8.9    -.8
+    9.4    -.1
+    9.8    1.0
+   10.1    2.0
+   10.3    3.1
+    9.7    4.0
+    9.0    4.6
+    8.0    4.5
+    7.0    4.4
+    6.2    4.3
+    5.6    5.0
+    5.1    6.0
+    4.0    6.4
+    3.0    6.4
+    2.0    6.3
+    1.0    5.9
+     .0    5.6
+    0 0
+  360.0    5.6
+  359.0    5.2
+  358.0    4.8
+  357.0    5.0
+  356.0    5.2
+  355.0    5.1
+  354.0    4.9
+  352.9    4.5
+  352.4    4.3
+  351.4    4.7
+  350.7    5.1
+  350.0    5.9
+  349.0    6.6
+  348.0    7.1
+  347.2    8.0
+  346.9    9.0
+  346.1   10.0
+  345.0   11.0
+  344.7   12.0
+  343.7   12.0
+  343.3   12.4
+  343.3   13.4
+  343.2   14.4
+  342.7   15.0
+  343.5   15.7
+  343.7   16.7
+  344.0   17.6
+  344.0   18.8
+  343.5   19.6
+  343.8   20.3
+  343.0   21.1
+  343.3   22.1
+  343.9   23.0
+  344.4   24.0
+  345.1   24.9
+  345.6   26.0
+  346.2   26.6
+  346.8   27.3
+  347.4   28.0
+  348.3   28.3
+  349.0   28.8
+  349.7   29.1
+  350.1   29.6
+  350.5   30.2
+  350.1   30.8
+  350.2   31.6
+  350.7   32.1
+  351.1   32.9
+  351.5   33.3
+  352.4   33.6
+  353.1   34.1
+  353.7   35.0
+  353.9   35.5
+  354.4   35.9
+  355.0   35.5
+  355.7   35.2
+  356.8   35.4
+  357.7   35.2
+  358.7   35.5
+  359.4   36.0
+  360.0   36.1
+   0 0
+     .0   36.1
+     .2   36.2
+    1.3   36.6
+    2.2   36.8
+    3.5   36.9
+    4.5   36.9
+    5.4   36.7
+    6.3   37.0
+    7.1   36.9
+    8.0   36.9
+    9.0   37.0
+    9.9   37.3
+   10.5   37.1
+   11.2   37.1
+   11.0   36.6
+   10.7   36.2
+   11.2   35.6
+   11.1   35.0
+   10.7   34.6
+   10.2   34.2
+   10.7   33.6
+   11.4   33.2
+   12.3   33.0
+   13.3   32.9
+   14.3   32.7
+   15.3   32.3
+   15.9   31.5
+   16.9   31.2
+   17.9   31.0
+   18.7   30.6
+   19.5   30.3
+   20.3   31.0
+   20.0   32.0
+   21.0   32.7
+   22.0   33.0
+   23.3   32.7
+   23.0   32.3
+   24.1   32.1
+   25.1   32.0
+   25.4   31.6
+   26.4   31.7
+   27.2   31.4
+   28.4   31.1
+   29.3   30.9
+   30.0   31.2
+   31.0   31.4
+   32.0   31.4
+   32.7   31.0
+       0 0 
+   32.7   31.0
+   33.4   31.0
+   34.4   31.1
+   35.0   32.0
+   35.3   33.0
+   35.9   34.0
+   36.2   34.7
+   36.0   35.6
+   36.4   36.7
+   35.6   36.5
+   35.0   36.8
+   34.0   36.1
+   32.9   36.0
+        0 0 
+   32.6   35.0
+   32.8   34.5
+   33.5   34.6
+   34.2   35.0
+   34.6   35.5
+   33.6   35.3
+   32.6   35.0
+       0 0 
+   32.9   36.0
+   32.0   36.6
+   31.0   36.8
+   30.7   36.1
+   30.0   36.0
+   29.1   36.5
+   28.2   36.7
+   27.6   37.4
+   27.3   38.0
+   26.5   38.3
+   27.3   38.8
+   26.4   39.4
+   26.6   40.2
+   27.0   40.7
+   26.0   40.9
+   25.0   40.9
+   24.0   40.7
+   24.5   40.1
+   23.7   40.0
+   22.8   40.5
+   23.2   39.6
+   23.7   38.9
+   24.5   38.5
+   24.9   37.9
+   24.3   38.1
+   24.2   37.7
+   23.3   37.9
+   23.6   37.2
+   23.0   37.3
+       0 0 
+   31.0   41.0
+   34.0   41.9
+   38.0   41.0
+   40.0   41.0
+   41.8   42.0
+   37.0   45.0
+   35.0   45.0
+   34.0   44.5
+   33.0   45.5
+   34.0   46.0
+   31.0   46.5
+   28.0   42.5
+   28.3   41.5
+   31.0   41.0
+        0 0 
+   24.0   35.6
+   23.8   35.3
+   25.0   35.0
+   25.8   35.0
+   26.6   35.1
+   25.9   35.3
+   24.7   35.4
+   24.0   35.6
+       0 0 
+   23.0   37.3
+   23.4   36.4
+   23.0   36.6
+   22.6   36.2
+   22.3   36.9
+   22.1   36.6
+   21.8   37.0
+   21.4   37.9
+   22.0   38.1
+   21.3   38.3
+   21.0   39.0
+   20.2   39.9
+   19.6   40.6
+   19.9   41.7
+   19.1   42.3
+   18.0   42.9
+   17.0   43.4
+   16.0   43.8
+   15.1   44.6
+   15.1   45.0
+   14.6   45.2
+   14.1   44.8
+   13.7   45.6
+   12.5   45.4
+   12.6   45.0
+   12.5   44.3
+   13.1   43.9
+   14.0   43.5
+   14.1   42.9
+   14.7   42.3
+   15.5   41.9
+   16.4   41.9
+   16.2   41.6
+   17.0   41.2
+   18.0   40.8
+   18.9   40.2
+   18.6   39.9
+   18.2   40.3
+   17.3   40.6
+   16.9   39.9
+   17.4   39.5
+   17.4   39.0
+   16.9   38.8
+   16.9   38.3
+   16.3   37.9
+   16.0   38.0
+   16.0   38.7
+       0 0 
+   15.8   38.1
+   14.6   38.0
+   13.5   38.1
+   12.6   38.0
+   12.8   37.5
+   13.8   37.2
+   14.6   36.9
+   15.2   36.6
+   15.5   37.0
+   15.4   37.6
+   15.8   38.1
+       0 0 
+   16.0   38.7
+   16.4   38.9
+   16.1   39.7
+   15.6   40.0
+   14.9   40.5
+   14.2   41.0
+   14.0   41.3
+   13.0   41.4
+   12.2   42.0
+   11.1   42.7
+   10.6   43.0
+        0 0 
+    9.6   42.9
+    8.8   42.5
+    8.8   41.8
+    9.3   41.4
+    9.8   42.2
+    9.6   42.9
+       0 0 
+    9.3   41.2
+   10.0   40.7
+   10.0   40.0
+    9.6   39.1
+    9.0   38.9
+    8.5   39.2
+    8.6   40.0
+    8.3   40.6
+    8.4   40.9
+    9.3   41.2
+        0 0 
+    3.1   40.0
+    3.5   39.7
+    3.1   39.3
+    2.6   39.8
+    3.1   40.0
+       0 0 
+   10.6   43.0
+   10.3   44.0
+    9.5   44.2
+    8.9   44.4
+    8.2   43.8
+    7.2   43.5
+    6.6   43.1
+    5.9   43.1
+    5.0   43.4
+    4.0   43.6
+    3.1   43.0
+    3.3   42.1
+    2.8   41.7
+    2.0   41.3
+    1.0   41.0
+     .1   40.1
+     .0   40.0
+    0 0
+  360.0   40.0
+  359.7   39.6
+  360.2   38.9
+  359.7   38.3
+  359.3   37.7
+  358.4   37.4
+  358.0   36.9
+  357.0   36.8
+  356.0   36.7
+  355.0   36.4
+  354.6   36.1
+       0 0 
+  354.6   36.1
+  353.8   36.4
+  353.6   37.0
+  353.0   37.2
+  352.3   37.0
+  351.1   37.0
+  351.3   38.0
+  351.2   38.5
+  350.8   38.5
+  350.7   39.4
+  351.2   40.2
+  351.4   41.0
+  351.4   42.3
+  350.9   43.1
+  351.8   43.4
+  352.1   43.7
+  353.2   43.6
+  354.1   43.6
+  355.2   43.5
+  356.2   43.5
+  357.3   43.4
+  358.2   43.3
+  358.7   43.6
+  358.9   44.3
+  359.0   45.0
+  359.0   46.0
+  358.0   46.9
+  357.5   47.4
+  356.5   47.7
+  355.8   47.7
+  355.2   48.5
+  356.2   48.7
+  357.2   48.8
+  357.7   48.6
+  358.6   48.6
+  358.2   49.6
+  358.9   49.6
+  359.0   49.3
+  359.9   49.3
+       0 0 
+  350.4   51.3
+  349.9   52.1
+  350.4   52.4
+  350.9   53.1
+  350.0   53.4
+  350.5   53.7
+  350.0   53.9
+  350.3   54.1
+  351.4   54.1
+  352.0   54.5
+  351.3   54.6
+  352.2   55.1
+  353.1   55.1
+  354.0   55.1
+  354.5   54.6
+  354.5   54.2
+  353.9   53.9
+  354.0   53.2
+  353.9   52.6
+  353.6   52.1
+  352.7   52.0
+  352.0   51.7
+  351.1   51.4
+  350.4   51.3
+       0 0 
+  354.2   50.0
+  355.4   50.6
+  356.0   50.9
+  356.9   51.0
+  357.4   51.4
+  356.7   51.3
+  355.8   51.6
+  355.0   51.5
+  354.8   51.8
+  356.0   52.0
+  356.0   52.8
+  355.4   52.7
+  355.8   53.2
+  357.0   53.3
+  357.2   54.0
+  356.4   54.4
+  356.9   54.9
+  356.0   54.7
+  355.0   54.6
+  355.0   55.0
+  355.4   55.4
+  355.1   55.8
+  355.0   55.3
+  354.4   55.3
+  354.4   55.9
+  354.7   56.4
+  354.2   56.2
+  353.8   56.2
+  354.0   56.6
+  354.1   56.9
+  353.4   57.4
+  354.3   57.1
+  354.2   57.7
+  354.8   57.9
+  355.0   58.5
+  356.0   58.5
+  357.0   58.6
+  357.0   58.3
+  356.0   57.9
+  356.3   57.6
+  357.2   57.6
+  358.2   57.6
+  358.2   57.1
+  357.7   56.6
+  357.4   56.2
+  357.0   55.9
+  357.7   55.8
+  358.5   55.5
+  358.8   54.7
+  359.6   54.3
+  360.0   54.0
+   0 0
+    0.0   54.0
+     .2   53.6
+     .4   53.1
+     .3   52.8
+    1.3   52.9
+    1.9   52.3
+    1.7   51.9
+    1.0   51.6
+     .7   51.3
+    1.6   51.2
+    1.1   50.8
+     .1   50.6
+    0.0   50.6
+   0 0
+  360.0   50.7
+  359.3   50.7
+  358.3   50.6
+  357.8   50.4
+  356.7   50.5
+  356.4   50.2
+  355.5   50.2
+  355.0   50.0
+  354.2   50.0
+      0 0 
+   -0.1   49.3
+     .5   49.4
+     .1   49.7
+    1.0   49.9
+    1.8   50.1
+    1.8   50.7
+    2.8   51.0
+    3.6   51.3
+    4.8   51.7
+    4.1   51.9
+    4.7   52.6
+    5.4   52.7
+    5.3   52.1
+    6.1   52.6
+    5.6   52.8
+    6.0   53.3
+    7.0   53.3
+    7.5   53.6
+    8.3   53.5
+    9.1   53.8
+    8.6   54.3
+    9.0   54.5
+    8.6   54.8
+    8.6   55.4
+    8.0   55.6
+    8.1   56.6
+    8.6   57.1
+    9.4   57.2
+   10.0   57.6
+   10.3   57.6
+   10.6   57.8
+   10.5   57.6
+   10.5   57.2
+   10.3   57.0
+   10.4   56.6
+   11.0   56.5
+   10.7   56.1
+   10.3   56.2
+   10.1   55.7
+    9.8   55.7
+    9.6   55.1
+   10.0   55.0
+   10.1   54.9
+    9.6   54.9
+   10.7   54.3
+   11.3   54.4
+   11.0   54.5
+   11.0   53.9
+   11.7   53.9
+   12.5   54.2
+   13.2   54.2
+   13.9   53.9
+   14.4   53.8
+   15.5   54.0
+   16.4   54.2
+   17.4   54.6
+   18.6   54.8
+   19.0   54.2
+   20.0   54.3
+   20.2   54.9
+   21.4   54.9
+   21.6   55.3
+   21.4   56.0
+   21.3   56.7
+   21.9   57.5
+   22.7   57.6
+   23.9   56.8
+   24.6   57.2
+   24.4   58.2
+   23.6   58.4
+   22.7   58.1
+   22.2   57.9
+   22.1   58.4
+   23.1   58.6
+   23.9   58.8
+   23.8   59.1
+   24.6   59.4
+   25.9   59.5
+   26.9   59.5
+   27.9   59.4
+   28.3   59.4
+   28.7   59.7
+   29.4   59.9
+   30.4   59.9
+   30.0   60.2
+   29.2   60.1
+   28.6   60.4
+   27.6   60.4
+   26.3   60.3
+   25.3   60.2
+   24.4   60.0
+   23.6   59.9
+   22.7   60.0
+   22.7   60.3
+   21.6   60.6
+   21.9   61.7
+   21.4   62.7
+   22.6   63.3
+   23.6   63.9
+   24.6   64.5
+   25.4   65.1
+   24.7   65.6
+   23.5   65.7
+   22.4   65.7
+   21.7   65.1
+   21.3   64.6
+   21.7   64.3
+   20.8   63.7
+   19.7   63.4
+   18.6   62.9
+   17.7   62.3
+   17.6   61.7
+   17.4   61.0
+   17.6   60.5
+   18.7   60.3
+   19.1   59.9
+   18.5   59.3
+   18.0   58.8
+   17.0   58.5
+   16.9   57.5
+        0 0 
+   19.4   57.9
+   19.0   57.3
+   18.5   56.9
+   18.5   57.6
+   19.4   57.9
+       0 0 
+   11.9   55.9
+   11.9   56.0
+   12.3   56.1
+   12.6   56.0
+   12.5   55.9
+   12.7   55.6
+   12.3   55.6
+   12.2   55.5
+   12.5   55.3
+   12.1   55.2
+   12.1   55.1
+   12.2   55.1
+   12.1   55.0
+   11.9   55.0
+   11.6   55.1
+   11.9   55.0
+   11.6   55.2
+   11.2   55.2
+   11.1   55.6
+   10.9   55.7
+   11.0   55.7
+   10.9   55.8
+   11.3   55.7
+   11.5   55.9
+   11.2   56.0
+   11.8   56.0
+   11.8   55.9
+   11.9   55.9
+       0 0 
+   16.9   57.5
+   16.4   56.5
+   16.0   56.0
+   15.0   56.0
+   14.4   55.3
+   13.0   55.3
+   12.9   56.2
+   13.1   56.4
+   12.3   57.0
+   11.6   58.0
+   11.1   59.1
+   10.6   59.5
+   10.3   58.9
+    9.7   58.8
+    8.8   58.3
+    7.8   57.9
+    6.9   58.0
+    5.7   58.7
+    6.0   59.6
+    5.6   60.6
+    5.4   61.5
+    5.8   62.1
+    6.8   62.5
+    7.9   62.9
+    8.8   63.1
+   10.0   63.6
+   11.0   64.4
+   12.0   64.9
+   13.0   65.8
+   13.7   66.6
+   14.6   67.1
+   15.6   67.8
+   15.9   68.3
+   14.9   68.6
+   16.0   68.9
+   17.0   68.6
+   17.9   68.9
+   17.2   69.1
+   17.9   69.4
+   19.1   69.7
+   20.5   69.8
+   21.5   70.1
+   22.5   70.2
+   23.5   70.3
+   24.5   70.6
+   25.4   70.8
+   26.6   70.8
+   27.4   70.9
+   28.7   70.8
+   29.6   70.6
+       0 0 
+   17.0   76.5
+   15.4   77.0
+   14.1   77.4
+   13.9   78.0
+   15.0   78.1
+   16.0   78.3
+   17.0   78.3
+   15.8   78.4
+   15.0   78.6
+   15.0   78.3
+   14.0   78.2
+   13.0   78.2
+   11.8   78.7
+   11.4   79.1
+   11.0   79.6
+   12.0   79.8
+   13.0   79.8
+   14.0   79.8
+   14.0   79.7
+   13.0   79.6
+   14.0   79.4
+   14.7   79.7
+   15.8   79.2
+   16.0   79.9
+   16.8   80.0
+   18.0   79.8
+   19.0   79.4
+   19.0   79.2
+   20.0   79.0
+   21.0   78.9
+   21.7   78.8
+   21.6   78.6
+   22.1   78.6
+   22.5   78.4
+   22.2   78.2
+   23.5   78.1
+   23.5   77.9
+   24.5   77.8
+   24.9   77.7
+   24.0   77.4
+   22.7   77.2
+   22.6   77.4
+   21.0   77.3
+   21.7   77.8
+   21.0   78.1
+   20.3   78.4
+   21.2   78.6
+   19.7   78.5
+   19.0   78.0
+   18.0   77.4
+   17.0   76.5
+       0 0 
+   20.9   79.4
+   19.7   79.6
+   20.7   79.6
+   21.7   79.7
+   21.7   79.8
+   20.6   79.7
+   19.7   79.7
+   18.9   79.7
+   17.9   80.2
+   19.0   80.2
+   20.0   80.4
+   21.0   80.2
+   22.0   80.2
+   22.3   80.0
+   23.0   80.4
+   23.4   80.4
+   23.5   80.2
+   24.7   80.3
+   25.7   80.2
+   27.1   80.1
+   27.1   79.8
+   26.0   79.6
+   26.0   79.4
+   25.0   79.3
+   24.0   79.1
+   23.0   79.1
+   22.7   79.4
+   21.6   79.4
+   20.9   79.4
+       0 0 
+   29.6   70.6
+   30.5   70.5
+   31.3   70.3
+   30.2   70.0
+   30.2   69.8
+   31.2   69.7
+   32.3   69.8
+   33.2   69.6
+   33.2   69.3
+   34.3   69.2
+   35.2   69.1
+   36.2   68.9
+   37.2   69.7
+   38.2   69.4
+   39.1   69.2
+   40.0   68.0
+   41.0   67.6
+   41.4   67.0
+   40.7   66.4
+   39.8   66.1
+   38.5   66.0
+   37.5   66.2
+   36.4   66.3
+   35.4   66.4
+   34.4   66.6
+   33.7   66.7
+   33.1   66.5
+   34.2   66.2
+   35.0   65.7
+   35.0   64.8
+   35.0   64.4
+   36.0   64.4
+   36.5   63.9
+   37.7   63.8
+   38.1   64.1
+   37.3   64.4
+   36.6   64.8
+   37.1   65.1
+   38.0   64.9
+   39.0   64.7
+   40.0   64.5
+   40.7   64.5
+   39.8   65.4
+   40.6   65.8
+   41.6   66.1
+   42.4   66.5
+   43.5   66.3
+   44.1   66.1
+   44.6   66.9
+   43.9   67.1
+   44.1   68.0
+   43.4   68.6
+   44.6   68.4
+   45.7   68.4
+   46.8   67.8
+   45.7   67.7
+   45.0   67.4
+   46.0   67.0
+   46.3   66.7
+   47.2   66.7
+   48.1   66.9
+   48.1   67.6
+   49.0   67.8
+   50.0   68.0
+      0 0 
+  316.1   59.9
+  315.1   60.1
+  314.4   60.6
+  313.7   60.8
+  312.7   60.8
+  311.6   61.0
+  310.9   61.5
+  310.1   62.2
+  309.5   62.9
+  308.6   63.6
+  308.0   64.1
+  307.8   65.1
+  307.1   65.6
+  306.4   65.9
+  306.5   66.4
+  307.0   66.7
+  306.2   67.0
+  306.4   67.5
+  306.8   68.1
+  307.6   68.4
+  308.5   68.4
+  309.0   68.9
+  309.3   69.3
+  308.8   69.7
+  307.6   70.0
+  307.0   70.2
+  306.8   70.1
+  307.2   69.9
+  308.0   69.7
+  308.0   69.5
+  307.0   69.3
+  306.0   69.2
+  305.0   69.6
+  305.0   70.1
+  306.0   70.3
+  305.4   70.7
+  306.0   70.8
+  307.0   70.7
+  308.0   70.6
+  309.0   70.5
+  308.3   71.0
+  307.5   71.3
+  307.0   71.7
+  306.0   71.5
+  305.2   71.4
+  304.2   71.4
+  304.0   71.7
+  304.7   72.0
+  305.1   72.3
+  305.4   72.7
+  304.8   73.0
+  304.4   73.6
+  303.8   74.1
+  303.5   74.4
+  302.9   74.8
+  301.7   75.1
+  301.4   75.4
+  301.8   75.6
+  300.9   75.8
+  299.9   75.9
+  298.8   76.1
+  297.8   76.2
+  296.8   76.3
+  295.9   76.1
+  294.9   76.1
+  294.2   76.0
+  293.5   76.1
+  293.3   75.9
+  292.1   76.0
+  291.1   76.1
+  290.2   76.4
+  291.1   76.6
+  292.0   76.6
+  290.9   76.7
+  290.0   76.8
+  288.8   76.9
+  289.0   77.1
+  290.0   77.2
+  291.1   77.3
+  292.2   77.3
+  293.1   77.3
+  293.5   77.6
+  292.3   77.5
+  291.3   77.5
+  290.7   77.4
+  289.7   77.6
+  289.2   77.7
+  288.4   77.8
+  287.4   78.0
+  287.0   78.2
+  287.3   78.5
+  288.2   78.6
+  289.1   78.7
+  290.2   78.8
+  291.2   79.1
+  292.3   79.1
+  293.3   79.1
+  294.3   79.3
+  295.0   79.6
+  294.7   79.7
+  295.5   79.8
+  294.8   80.0
+  293.6   80.0
+  292.5   80.1
+  292.3   80.3
+  293.1   80.5
+  294.1   80.7
+  295.0   80.9
+  295.8   81.1
+  296.9   81.2
+  297.8   81.1
+  298.4   81.2
+  298.0   81.4
+  298.6   81.5
+  298.0   81.7
+  299.0   81.9
+  300.0   81.9
+  300.5   81.8
+  301.0   81.6
+  302.0   81.5
+  301.3   81.7
+  300.8   81.9
+  300.0   82.0
+  301.0   82.1
+  302.0   82.1
+  303.0   82.2
+  304.0   82.2
+  304.8   82.3
+  306.0   82.1
+  306.1   82.3
+  307.2   82.3
+  307.5   82.2
+  308.1   82.0
+  309.0   81.9
+  309.9   81.9
+  309.0   82.1
+  308.5   82.2
+  308.1   82.5
+  309.1   82.5
+  310.1   82.4
+  310.5   82.3
+  311.6   82.2
+  312.4   82.1
+  313.1   82.0
+  313.7   81.9
+  314.2   81.8
+  315.0   81.9
+  314.0   82.1
+  313.0   82.3
+  312.2   82.4
+  311.6   82.7
+  312.6   82.7
+  313.9   82.6
+  315.0   82.4
+  313.5   82.7
+  314.6   82.7
+  315.7   82.7
+  316.6   82.7
+  315.4   82.8
+  314.3   82.8
+  313.4   82.8
+  312.4   82.8
+  311.5   82.7
+  310.7   82.8
+  311.3   82.9
+  312.4   83.0
+  313.1   83.1
+  314.0   83.1
+  315.0   83.2
+  316.0   83.2
+  317.0   83.2
+  318.0   83.2
+  319.0   83.2
+  320.0   83.3
+  321.0   83.4
+  322.0   83.6
+  323.0   83.6
+  324.0   83.6
+  325.0   83.6
+  326.0   83.6
+  327.0   83.6
+  328.0   83.6
+  329.0   83.6
+  330.0   83.6
+  331.1   83.7
+  332.0   83.6
+  333.0   83.5
+  334.0   83.4
+  333.0   83.3
+  332.0   83.3
+  331.0   83.3
+  330.0   83.3
+  329.0   83.2
+  330.0   83.2
+  331.0   83.2
+  332.0   83.2
+  333.0   83.2
+  334.0   83.3
+  335.0   83.3
+  335.7   83.0
+  335.2   82.9
+  336.6   83.0
+  338.0   82.8
+  339.0   82.7
+  339.9   82.6
+  339.0   82.5
+  338.2   82.4
+  337.6   82.3
+  336.6   82.3
+  335.6   82.3
+  334.5   82.3
+  333.6   82.3
+  332.6   82.3
+  331.6   82.3
+  330.6   82.3
+  329.7   82.3
+  328.4   82.1
+  327.6   82.0
+  326.4   81.9
+  326.2   81.7
+  327.0   81.7
+  328.0   81.9
+  329.0   82.0
+  330.2   82.1
+  331.3   82.1
+  332.4   82.1
+  333.3   82.1
+  334.3   82.1
+  334.7   82.1
+  334.4   81.8
+  333.0   81.7
+  334.0   81.7
+  335.0   81.7
+  336.0   81.7
+  336.1   82.0
+  337.0   82.1
+  338.0   82.1
+  338.6   81.9
+  338.2   81.6
+  337.9   81.5
+  336.8   81.4
+  336.0   81.2
+  335.3   81.0
+  336.8   81.1
+  337.9   81.2
+  339.0   81.3
+  340.0   81.6
+  340.5   81.7
+  341.3   81.6
+  342.8   81.7
+  343.8   81.8
+  344.9   81.8
+  345.9   81.7
+  346.9   81.7
+  347.9   81.5
+  348.3   81.3
+  347.3   81.1
+  346.5   80.9
+  345.1   81.0
+  345.6   80.7
+  344.4   80.6
+  343.1   80.6
+  342.0   80.5
+  343.0   80.5
+  344.1   80.4
+  343.0   80.1
+  342.1   80.1
+  341.0   80.1
+  341.8   80.0
+  342.8   80.0
+  342.3   79.8
+  341.8   79.6
+  342.0   79.5
+  341.2   79.3
+  341.5   79.1
+  340.6   78.9
+  340.8   78.1
+  340.2   77.8
+  341.1   77.5
+  341.8   77.2
+  341.7   76.8
+  340.3   76.8
+  339.1   76.9
+  338.4   76.7
+  338.5   76.2
+  339.6   76.2
+  340.3   76.1
+  340.6   75.7
+  341.2   75.4
+  342.2   75.3
+  342.6   75.0
+  341.1   75.0
+  340.0   75.1
+  340.1   74.8
+  340.9   74.5
+  340.8   74.2
+  339.8   74.1
+  338.7   74.0
+  340.0   73.8
+  339.7   73.4
+  338.5   73.3
+  337.7   73.2
+  336.9   73.2
+  337.6   72.9
+  338.2   72.8
+  338.3   72.4
+  338.0   72.1
+  337.0   72.2
+  335.9   72.4
+  337.0   72.0
+  337.8   71.6
+  338.4   71.3
+  338.4   70.4
+  337.2   70.4
+  336.1   70.6
+  335.6   71.2
+  334.8   71.3
+  335.0   70.9
+  335.0   70.5
+  333.9   70.2
+  335.0   70.2
+  336.1   70.2
+  337.0   70.1
+  338.0   70.1
+  337.0   69.7
+  336.0   69.4
+  335.0   69.0
+  334.0   68.7
+  333.0   68.5
+  332.0   68.4
+  331.0   68.2
+  330.0   68.0
+  329.0   68.0
+  328.3   68.0
+  327.2   67.2
+  326.2   66.7
+  325.2   66.2
+  324.0   65.9
+  323.0   65.5
+  322.0   65.6
+  321.0   65.5
+  320.0   64.9
+  320.0   64.2
+  319.2   64.1
+  319.6   63.6
+  318.9   63.1
+  318.0   62.8
+  318.0   62.1
+  317.7   61.4
+  317.3   60.8
+  317.0   60.1
+  316.1   59.9
+       0 0 
+  341.4   63.3
+  340.6   63.3
+  339.8   63.4
+  339.4   63.7
+  338.4   63.8
+  337.3   63.9
+  338.1   64.0
+  337.6   64.6
+  336.5   64.6
+  336.2   64.8
+  337.0   64.8
+  338.0   65.0
+  337.5   65.0
+  338.3   65.3
+  337.5   65.4
+  336.5   65.3
+  335.7   65.4
+  336.3   65.8
+  336.8   66.1
+  337.0   66.3
+  337.7   66.3
+  338.3   66.1
+  338.8   65.8
+  338.7   65.5
+  339.0   65.2
+  339.4   65.6
+  339.8   65.6
+  339.8   66.0
+  340.6   65.7
+  340.6   66.0
+  341.4   66.0
+  342.1   66.1
+  342.6   65.9
+  343.5   66.1
+  343.6   66.5
+  344.2   66.4
+  344.5   66.2
+  345.3   66.3
+  345.1   66.0
+  345.5   65.9
+  345.5   65.7
+  346.4   65.5
+  346.5   65.1
+  346.4   64.8
+  346.0   64.6
+  345.7   64.7
+  345.7   64.3
+  345.0   64.1
+  344.8   64.2
+  344.0   63.9
+  343.4   63.7
+  342.7   63.6
+  341.9   63.4
+  341.9   63.3
+  341.4   63.3
+       0 0 
+  239.5   71.6
+  238.3   71.4
+  237.4   71.2
+  236.8   71.1
+  236.2   71.5
+  234.9   71.9
+  233.9   71.9
+  234.5   72.5
+  235.0   72.9
+  235.4   73.5
+  236.0   73.8
+  235.2   74.4
+  236.4   74.5
+  237.7   74.6
+  238.8   74.6
+  239.5   74.4
+  240.4   74.2
+  241.4   74.3
+  242.1   74.3
+  243.0   74.1
+  244.0   73.7
+  244.7   73.5
+  242.9   73.3
+  242.0   72.9
+  241.0   72.6
+  240.6   72.3
+  240.0   72.3
+  239.4   71.9
+  239.5   71.6
+       0 0 
+  244.0   69.3
+  243.0   69.6
+  242.6   70.0
+  243.0   70.1
+  244.0   70.2
+  245.0   70.3
+  246.0   70.3
+  247.0   70.2
+  247.9   70.2
+  248.0   70.4
+  247.0   70.5
+  246.0   70.6
+  244.6   70.5
+  243.5   70.6
+  242.3   70.6
+  241.5   71.0
+  242.0   71.2
+  243.0   71.3
+  244.1   71.5
+  243.0   71.4
+  241.6   71.4
+  241.0   71.6
+  241.4   72.2
+  242.0   72.2
+  241.4   72.4
+  242.3   72.8
+  243.8   73.2
+  245.3   73.4
+  245.7   73.3
+  246.0   72.9
+  245.3   72.6
+  246.5   72.7
+  246.9   73.0
+  248.0   72.9
+  248.9   72.7
+  248.4   72.3
+  249.8   72.7
+  251.3   72.5
+  252.6   72.2
+  252.6   71.7
+  251.1   71.7
+  251.7   71.3
+  250.5   70.7
+  249.5   70.8
+  248.5   70.9
+  247.6   71.1
+  246.9   71.4
+  246.1   70.9
+  244.9   70.8
+  243.9   70.6
+  243.0   70.6
+  241.9   70.5
+  241.0   70.5
+  240.3   70.5
+  239.7   71.2
+  238.5   71.4
+  237.5   71.4
+  237.1   71.6
+  238.3   71.4
+  239.0   71.2
+  239.1   70.7
+  239.7   70.3
+  240.3   70.5
+  239.8   71.1
+  239.5   71.8
+  239.7   72.0
+  240.7   72.0
+  240.9   72.3
+  242.5   72.4
+  243.2   72.2
+  243.0   71.9
+  242.3   71.5
+  242.5   71.1
+  242.7   70.6
+  243.3   70.2
+  243.1   69.7
+  244.0   69.3
+       0 0 
+  243.0   68.8
+  244.0   68.9
+  245.0   68.8
+  246.0   68.3
+  244.6   67.9
+  245.5   67.7
+  246.5   67.7
+  247.5   67.6
+  248.7   67.7
+  250.0   67.9
+  250.9   67.6
+  251.9   67.3
+  252.6   66.9
+  252.0   67.8
+  253.1   68.2
+  251.6   68.1
+  251.6   68.6
+  252.7   68.6
+  253.7   68.8
+  254.5   68.6
+  255.0   68.2
+  256.0   68.0
+  257.0   67.9
+  258.0   67.7
+  259.0   67.7
+  260.0   67.8
+  261.0   67.6
+  261.3   68.3
+  262.3   68.5
+  261.4   68.7
+  260.5   68.9
+  261.6   69.3
+  262.1   69.8
+  263.0   69.5
+  264.0   69.0
+  264.6   68.6
+  263.0   68.4
+  264.0   68.0
+  264.3   67.2
+  264.7   68.0
+  265.8   68.0
+  266.3   68.6
+  265.4   68.7
+  265.9   69.3
+  265.0   69.6
+  264.0   69.8
+  263.4   70.2
+  264.0   70.6
+  264.0   71.3
+  265.0   71.8
+  264.8   72.4
+  264.3   73.3
+  264.7   74.0
+  266.0   74.1
+  267.0   74.1
+  268.0   73.9
+  269.0   73.9
+  269.7   73.8
+  268.6   73.2
+  267.9   72.6
+  266.9   72.7
+  266.0   72.6
+  266.6   72.3
+  265.6   71.9
+  266.4   71.6
+  267.3   71.3
+  267.1   70.7
+  268.2   70.3
+  267.5   69.6
+  268.8   69.5
+  269.4   68.9
+  270.0   68.2
+       0 0 
+  263.5   71.7
+  262.3   71.5
+  261.6   71.2
+  260.8   71.3
+  259.9   71.8
+  258.5   72.2
+  257.5   72.5
+  257.9   72.9
+  259.0   72.5
+  259.9   72.7
+  259.6   73.2
+  258.6   73.3
+  258.9   73.6
+  260.0   73.8
+  261.0   73.9
+  262.0   74.0
+  262.0   73.8
+  263.0   73.6
+  262.0   73.1
+  262.6   72.9
+  263.3   72.6
+  263.6   72.3
+  263.5   71.7
+        0 0 
+  264.9   74.6
+  263.3   75.0
+  265.3   75.6
+  266.6   75.2
+  266.5   74.6
+  264.9   74.6
+       0 0 
+  262.0   75.0
+  261.0   74.9
+  260.0   74.9
+  259.2   75.0
+  260.0   75.6
+  258.9   75.6
+  258.0   75.5
+  257.2   75.4
+  256.0   76.0
+  255.3   76.6
+  256.1   76.6
+  257.2   76.3
+  258.4   75.8
+  258.0   76.4
+  258.9   76.3
+  259.6   76.6
+  260.6   76.5
+  261.4   76.6
+  262.2   76.4
+  262.3   75.7
+  262.0   75.0
+       0 0 
+  254.0   75.0
+  253.0   74.9
+  252.0   74.9
+  251.0   75.0
+  250.0   74.8
+  249.0   74.6
+  248.0   74.4
+  246.9   74.3
+  245.6   74.6
+  246.6   74.8
+  247.6   74.9
+  248.5   74.9
+  249.0   75.2
+  247.8   75.1
+  246.6   75.0
+  246.0   75.2
+  245.0   74.9
+  244.0   75.0
+  243.0   75.1
+  242.4   75.2
+  243.0   75.7
+  243.9   76.2
+  245.0   76.4
+  246.0   76.4
+  246.0   76.2
+  247.0   76.2
+  247.9   76.0
+  249.0   75.5
+  250.0   75.5
+  251.0   75.5
+  250.2   75.8
+  250.7   76.0
+  249.5   76.4
+  250.3   76.6
+  251.3   76.7
+  252.0   76.2
+  252.2   75.8
+  253.2   76.0
+  254.2   75.9
+  254.7   75.5
+  254.0   75.0
+       0 0 
+  241.0   76.0
+  240.0   75.7
+  239.0   75.9
+  238.0   75.9
+  237.0   76.1
+  238.2   76.4
+  239.6   76.7
+  240.4   77.0
+  241.0   77.3
+  242.0   77.3
+  243.0   77.3
+  243.5   77.5
+  244.6   77.3
+  243.6   77.0
+  244.3   76.8
+  243.8   76.5
+  243.0   76.5
+  242.5   76.2
+  242.1   76.7
+  241.0   76.0
+       0 0 
+  246.8   77.8
+  248.0   78.0
+  249.0   78.0
+  250.3   78.0
+  249.0   77.7
+  250.0   77.7
+  249.7   77.4
+  249.0   77.3
+  247.9   77.3
+  247.1   77.4
+  246.8   77.8
+       0 0 
+  250.4   78.2
+  249.3   78.2
+  248.4   78.2
+  247.6   78.3
+  246.7   78.2
+  247.4   78.4
+  248.5   78.5
+  249.5   78.7
+  250.6   78.4
+  250.4   78.2
+       0 0 
+  255.0   78.5
+  256.6   78.5
+  255.7   78.9
+  254.9   78.7
+  255.0   78.9
+  254.3   78.9
+  254.4   79.3
+  255.4   79.4
+  256.4   79.3
+  257.4   78.8
+  258.0   79.0
+  259.5   78.7
+  260.0   78.5
+  260.9   78.1
+  260.7   77.8
+  259.4   77.8
+  258.8   78.2
+  257.6   78.3
+  256.9   78.4
+  256.0   78.3
+  255.0   78.5
+       0 0 
+  262.1   78.0
+  263.1   78.1
+  262.0   78.2
+  261.6   78.8
+  262.6   78.8
+  263.7   78.7
+  264.6   78.5
+  265.3   78.3
+  264.6   78.2
+  265.2   78.0
+  264.5   77.8
+  263.7   77.7
+  262.9   77.7
+  262.1   78.0
+       0 0 
+  271.2   78.1
+  270.4   78.2
+  270.0   78.0
+  269.0   78.1
+  268.0   78.2
+  267.2   78.4
+  268.2   78.5
+  267.0   78.6
+  266.2   78.9
+  267.2   79.2
+  268.3   79.2
+  268.0   79.4
+  267.0   79.3
+  266.0   79.4
+  265.4   79.3
+  264.7   79.5
+  264.0   80.0
+  265.0   81.0
+  266.0   81.1
+  267.3   81.2
+  266.0   81.2
+  265.5   81.3
+  266.9   81.3
+  267.9   81.2
+  269.0   80.8
+  270.0   80.5
+  271.0   80.5
+  272.3   80.4
+  273.0   79.7
+  274.0   79.6
+  275.0   79.3
+  273.9   79.1
+  273.0   78.8
+  272.1   78.6
+  271.2   78.1
+      0 0 
+  270.2   76.5
+  271.1   76.9
+  272.3   77.0
+  272.7   77.3
+  271.6   77.6
+  272.3   77.8
+  273.4   77.8
+  274.4   77.4
+  274.6   78.1
+  273.6   78.1
+  272.5   78.1
+  273.2   78.7
+  274.4   78.7
+  275.5   78.7
+  275.3   79.4
+  273.4   79.8
+  273.6   80.3
+  275.0   80.3
+  276.0   80.3
+  277.0   80.3
+  278.0   80.3
+  279.0   80.4
+  280.0   80.6
+  281.0   80.7
+  282.0   80.8
+  281.0   80.8
+  279.9   80.7
+  279.0   80.6
+  278.0   80.5
+  277.0   80.4
+  276.0   80.4
+  275.0   80.4
+  274.0   80.5
+  273.0   80.5
+  272.0   80.6
+  271.0   80.8
+  270.0   81.4
+  270.5   81.6
+  268.9   81.5
+  268.0   81.6
+  269.0   81.8
+  270.3   81.8
+  271.4   82.1
+  272.6   82.0
+  273.9   82.0
+  272.8   82.2
+  274.1   82.2
+  273.7   82.4
+  274.9   82.4
+  276.0   82.3
+  277.0   82.3
+  277.0   82.6
+  278.0   82.7
+  279.0   82.8
+  280.0   82.9
+  281.0   82.8
+  282.0   82.8
+  283.0   83.1
+  284.0   83.1
+  285.0   83.0
+  286.0   82.8
+  286.2   83.1
+  287.5   83.1
+  288.5   83.1
+  289.5   83.1
+  290.4   83.0
+  291.6   83.0
+  292.5   83.0
+  293.3   82.9
+  292.4   82.7
+  291.0   82.6
+  292.2   82.6
+  293.0   82.7
+  294.0   82.8
+  295.0   82.9
+  296.0   82.8
+  297.0   82.5
+  298.0   82.5
+  299.0   82.3
+  298.0   82.1
+  297.0   81.8
+  296.0   81.7
+  295.0   81.7
+  294.0   81.6
+  293.0   81.6
+  293.0   81.4
+  294.0   81.4
+  295.5   81.5
+  295.0   81.3
+  294.0   81.2
+  293.0   80.9
+  292.0   80.7
+  291.0   80.5
+  290.1   80.3
+  289.2   80.0
+  288.0   79.6
+  287.0   79.6
+  286.0   79.4
+  285.0   79.4
+  284.0   79.3
+  283.0   79.3
+  284.0   79.2
+  285.5   79.2
+  284.3   78.0
+  283.0   77.8
+  281.7   77.8
+  282.2   77.4
+  281.1   77.2
+  280.0   77.2
+  281.0   77.0
+  280.9   76.8
+  282.0   76.8
+  282.1   76.5
+  281.3   76.3
+  280.3   76.2
+  278.8   76.1
+  279.3   76.4
+  278.4   76.4
+  277.5   76.3
+  276.6   76.3
+  275.4   76.3
+  275.1   76.2
+  274.0   76.3
+  273.0   76.3
+  272.0   76.3
+  271.0   76.3
+  270.2   76.5
+       0 0 
+  269.0   76.6
+  270.0   76.3
+  270.7   76.2
+  270.0   76.1
+  269.0   76.1
+  270.0   75.9
+  271.0   75.6
+  272.0   75.4
+  273.0   75.4
+  273.8   75.3
+  275.0   75.6
+  276.0   75.7
+  277.0   75.7
+  278.0   75.7
+  279.0   75.6
+  279.9   75.5
+  280.4   75.4
+  279.6   75.0
+  280.5   74.9
+  279.7   74.5
+  279.0   74.5
+  278.0   74.4
+  277.0   74.5
+  276.0   74.4
+  275.0   74.4
+  274.0   74.4
+  273.0   74.4
+  272.0   74.4
+  271.0   74.6
+  270.0   74.4
+  269.0   74.6
+  268.0   74.7
+  267.6   75.4
+  268.0   75.5
+  267.0   76.3
+  266.0   76.2
+  265.0   76.2
+  264.0   76.4
+  263.0   76.7
+  264.1   77.1
+  265.0   77.0
+  266.1   76.9
+  266.8   76.5
+  268.0   76.6
+  269.0   76.6
+       0 0 
+  270.1   72.1
+  271.3   73.3
+  272.4   73.6
+  273.6   73.7
+  275.1   73.6
+  274.7   73.2
+  276.0   73.5
+  277.2   73.7
+  278.7   73.7
+  280.0   73.6
+  281.0   73.6
+  282.0   73.6
+  283.1   73.5
+  283.8   72.8
+  282.6   72.8
+  284.0   72.5
+  285.6   72.0
+  286.4   71.6
+  287.5   71.6
+  288.6   71.4
+  289.7   70.8
+  291.0   70.6
+  292.0   70.3
+  293.0   69.7
+  291.8   69.5
+  292.4   69.2
+  292.5   69.0
+  291.7   69.0
+  292.0   68.4
+  293.1   68.0
+  294.0   67.8
+  295.0   67.9
+  296.0   67.3
+  297.0   67.0
+  298.0   66.9
+  298.8   66.5
+  298.0   66.0
+  297.0   65.4
+  296.3   64.7
+  295.0   65.3
+  294.0   65.9
+  293.0   66.4
+  292.2   65.6
+  293.1   65.0
+  294.1   64.7
+  295.0   64.0
+  295.0   62.4
+  294.0   62.9
+  293.0   63.2
+  292.0   63.4
+  291.2   63.6
+  292.0   63.0
+  293.0   62.6
+  294.0   61.8
+  293.0   61.9
+  292.0   62.0
+  291.0   62.2
+  290.0   62.7
+  289.0   62.9
+  288.0   63.6
+  287.0   64.0
+  286.0   64.5
+  285.1   64.4
+  284.1   64.4
+  283.3   64.1
+  282.0   64.3
+  282.0   64.8
+  283.0   65.3
+  284.0   65.2
+  285.0   65.2
+  286.4   65.4
+  285.6   66.1
+  286.4   66.4
+  287.7   67.1
+  287.1   68.0
+  286.0   68.4
+  285.0   68.8
+  283.5   68.6
+  284.0   69.3
+  283.0   69.6
+  282.0   70.2
+  281.1   69.8
+  280.0   69.6
+  279.1   69.6
+  277.7   69.7
+  276.6   69.8
+  275.5   69.9
+  274.1   70.0
+  272.9   70.2
+  271.6   70.3
+  270.7   70.7
+  271.7   71.0
+  270.2   71.2
+  270.1   72.1
+        0 0 
+  283.6   68.3
+  285.0   68.1
+  284.9   67.5
+  284.0   67.1
+  283.0   67.1
+  282.8   67.7
+  283.6   68.3
+       0 0 
+  274.5   65.8
+  275.5   65.4
+  276.5   65.0
+  277.4   64.7
+  278.3   64.5
+  279.0   63.9
+  279.8   63.6
+  279.0   63.4
+  278.0   63.5
+  277.0   64.0
+  276.0   63.5
+  275.2   63.1
+  274.6   63.0
+  274.4   63.6
+  273.6   63.6
+  272.9   63.7
+  273.9   64.1
+  273.6   64.5
+  274.0   65.3
+  274.5   65.8
+      0 0 
+  270.0   68.2
+  271.0   69.1
+  272.0   68.7
+  272.0   67.6
+  272.8   67.1
+  273.5   67.6
+  273.2   68.1
+  274.0   67.9
+  274.4   68.6
+  275.2   68.6
+  274.6   69.1
+  274.6   69.7
+  275.4   69.7
+  276.4   69.6
+  277.6   69.5
+  278.0   69.1
+  278.7   69.0
+  278.8   68.4
+  277.7   68.4
+  278.2   67.7
+  279.0   67.4
+  278.0   66.7
+  277.0   66.4
+  276.1   66.2
+  275.0   66.2
+  274.6   66.5
+  273.4   66.4
+  274.2   66.2
+  273.0   65.4
+  272.0   65.2
+  273.0   65.0
+  272.0   64.1
+  271.0   63.9
+  270.0   63.9
+  269.7   63.5
+  268.8   63.5
+  269.4   63.0
+  268.7   62.7
+  268.0   62.7
+  267.0   62.0
+  266.0   61.0
+  265.3   60.0
+  265.3   59.0
+  266.0   58.6
+  267.0   58.6
+  267.4   57.7
+  267.7   56.9
+  268.6   57.0
+  269.6   57.1
+  270.7   56.8
+  271.7   56.5
+  272.6   55.9
+  273.6   55.7
+  274.6   55.3
+  275.5   55.2
+  276.5   55.2
+  277.9   55.0
+  277.7   54.0
+  278.0   52.9
+  278.9   51.9
+  280.0   51.0
+  281.0   51.6
+  281.6   52.2
+  281.0   53.0
+  281.0   53.8
+  280.3   54.5
+  281.3   54.7
+  282.5   55.3
+  283.2   55.8
+  283.5   56.6
+  283.2   57.4
+  282.3   58.0
+  281.4   58.4
+  282.0   59.1
+  282.6   59.7
+  282.4   60.3
+  281.9   60.7
+  282.4   61.4
+  282.0   61.7
+  282.0   62.3
+  282.6   62.6
+  283.6   62.4
+  284.6   62.3
+  285.3   62.1
+  286.2   62.4
+  287.0   62.1
+  288.0   61.6
+  289.0   61.0
+  290.4   60.9
+  290.3   60.0
+  290.6   59.1
+  291.4   58.7
+  292.3   58.1
+  293.3   58.4
+  294.1   58.9
+  294.7   59.8
+  295.2   60.3
+  296.0   59.6
+  297.0   58.8
+  298.0   57.7
+  298.8   56.8
+  298.3   56.1
+  299.4   55.6
+  300.3   55.1
+  301.6   54.7
+  302.8   54.4
+  301.7   53.9
+  302.6   54.0
+  303.4   53.5
+  304.2   53.2
+  304.2   52.4
+  304.3   51.8
+  303.3   51.3
+  302.3   51.3
+       0 0 
+  303.1   50.9
+  304.4   51.4
+  304.0   50.5
+  303.4   49.6
+  304.0   49.9
+  304.6   49.8
+  304.2   49.5
+  305.0   49.4
+  306.0   49.3
+  306.6   49.2
+  306.4   48.4
+  307.1   48.5
+  306.4   47.6
+  307.2   48.0
+  307.4   47.2
+  307.2   46.5
+  306.0   46.7
+  306.1   47.6
+  305.0   46.8
+  304.2   46.7
+  305.0   47.4
+  303.9   47.5
+  302.9   47.4
+  302.0   47.4
+  300.9   47.5
+  300.9   47.9
+  301.6   48.3
+  301.0   48.4
+  301.9   49.0
+  302.6   50.1
+  303.1   50.9
+        0 0 
+  295.7   49.8
+  297.0   49.7
+  298.0   49.4
+  298.6   49.0
+  297.6   48.9
+  296.6   49.3
+  295.7   49.8
+      0 0 
+  302.3   51.3
+  301.3   50.7
+  300.0   50.0
+  299.0   50.0
+  298.0   50.0
+  297.0   50.0
+  297.0   50.0
+  296.0   50.1
+  295.0   50.0
+  294.0   50.0
+  293.0   49.6
+  292.6   49.3
+  292.0   49.1
+  291.0   48.5
+  290.4   48.0
+  290.0   47.4
+  291.0   48.0
+  292.0   48.5
+  293.0   48.9
+  294.0   49.1
+  295.0   49.1
+  295.9   48.7
+  295.0   47.9
+  294.0   47.9
+  295.1   47.8
+  295.0   46.9
+  296.0   46.0
+  297.0   45.6
+  298.0   45.5
+  298.7   45.5
+  298.7   46.0
+  299.9   46.9
+  299.9   46.2
+  300.3   45.8
+  299.6   45.4
+  298.9   45.2
+  298.0   44.8
+  297.0   44.5
+  296.0   44.3
+  295.0   43.6
+  294.0   43.6
+  294.0   44.3
+  295.0   44.9
+  295.6   45.6
+  294.6   45.3
+  293.7   45.0
+  293.0   44.7
+  292.3   44.4
+  291.3   44.3
+  290.7   43.7
+  289.9   43.6
+  289.3   42.8
+  289.3   42.0
+  290.0   41.6
+  288.7   41.5
+  288.0   41.3
+  287.4   40.8
+  286.1   40.6
+  286.0   39.8
+  285.4   39.0
+  284.6   39.4
+  285.0   38.4
+  284.5   37.7
+  284.2   37.0
+  284.3   37.9
+  283.7   38.3
+  283.7   37.4
+  284.2   37.0
+  284.1   36.6
+  284.3   35.8
+  283.7   35.1
+  283.0   34.6
+  282.0   33.9
+  281.0   33.4
+  280.0   32.5
+  279.3   32.0
+  278.9   31.0
+  279.0   30.0
+  279.4   29.0
+  279.7   28.4
+  280.0   27.4
+  280.1   26.6
+  280.1   25.8
+  279.7   25.0
+  279.0   25.0
+  279.0   25.5
+  278.5   25.8
+  278.0   26.6
+  277.3   27.8
+  277.6   28.5
+  277.0   29.2
+  276.4   29.9
+  275.7   29.9
+  274.9   29.5
+  274.3   30.0
+  273.6   30.3
+  272.3   30.0
+  271.4   30.2
+  270.7   30.0
+  270.3   29.7
+  271.1   29.0
+  270.9   28.9
+  270.3   29.3
+  269.9   29.0
+  269.0   29.0
+  268.3   29.7
+  268.0   29.4
+  267.0   29.6
+  266.0   29.4
+  265.0   29.0
+  264.0   28.6
+  263.0   28.2
+  262.6   27.0
+  262.8   26.0
+  262.3   25.0
+  262.2   24.0
+  262.3   23.0
+  262.3   22.0
+  262.7   21.5
+  262.6   21.0
+  263.4   20.0
+  264.1   19.0
+  265.0   18.7
+  266.0   18.2
+  267.0   18.4
+  268.0   18.7
+  269.0   18.5
+  268.9   19.0
+  269.7   19.6
+  269.9   20.9
+  270.7   21.2
+  271.8   21.5
+  272.6   21.5
+  273.4   21.4
+  273.0   20.6
+  272.6   19.7
+  272.4   18.1
+  272.0   18.6
+  272.0   17.3
+  271.7   16.5
+  271.3   15.8
+  272.2   15.7
+  273.2   15.7
+  274.2   15.7
+  275.3   15.8
+  276.3   15.4
+  277.0   15.0
+  277.0   14.0
+  276.7   13.0
+  276.6   12.0
+  276.4   11.1
+  277.0   10.0
+  278.0    9.2
+  279.0    8.8
+  280.0    9.4
+       0 0 
+  275.4   21.9
+  276.5   22.6
+  277.6   23.0
+  278.7   23.0
+  279.6   22.9
+  280.5   22.5
+  281.4   22.2
+  282.4   21.7
+  283.5   21.2
+  284.6   20.6
+  285.9   20.0
+  284.9   19.7
+  283.9   19.8
+  282.5   19.7
+  283.0   20.5
+  282.0   20.6
+  281.6   21.2
+  280.9   21.4
+  280.1   21.5
+  279.6   21.9
+  278.9   21.9
+  278.1   22.1
+  278.6   22.4
+  277.5   22.6
+  276.8   22.0
+  276.3   22.0
+  276.0   21.6
+  275.4   21.9
+       0 0 
+  286.6   19.6
+  287.3   19.7
+  288.1   19.6
+  288.6   19.8
+  289.5   19.6
+  290.0   19.4
+  291.0   19.2
+  291.7   18.3
+  291.4   18.0
+  290.4   18.2
+  288.4   18.1
+  288.4   17.4
+  288.1   18.0
+  287.3   18.0
+  286.3   18.0
+  285.6   18.4
+  286.4   18.4
+  287.0   18.4
+  287.6   18.6
+  287.3   19.2
+  286.6   19.6
+      0 0 
+  280.0    9.4
+  281.0    9.6
+  282.0    9.2
+  282.3    9.0
+  283.0    8.4
+  283.7    9.0
+  284.2    9.5
+  284.4   10.0
+  285.0   11.0
+  286.0   11.2
+  287.0   11.5
+  288.0   11.9
+  288.9   12.0
+  288.4   11.0
+  289.4   11.2
+  290.0   12.1
+  291.0   11.5
+  291.8   11.0
+  292.0   10.4
+  293.0   10.5
+  294.0   10.4
+  295.0   10.1
+  296.0   10.6
+  297.0   10.6
+  297.8   10.0
+  298.9    9.4
+  299.2    8.6
+  300.0    8.4
+  301.0    7.9
+  301.6    7.0
+  302.6    6.3
+  303.2    5.9
+  304.3    5.8
+  305.3    5.9
+  306.4    5.6
+  307.4    5.1
+  308.1    4.6
+  308.6    4.2
+  309.2    3.8
+  309.3    3.0
+  309.6    2.0
+  310.2    1.6
+  310.0     .8
+  309.3     .0
+  308.3    -.9
+  309.1     .0
+  310.0     .0
+  311.0     .0
+  311.8    -.5
+  313.0    -.7
+  314.0   -1.0
+  315.0   -1.4
+  315.6   -2.0
+  316.0   -2.7
+  317.0   -2.3
+  318.0   -2.9
+  319.0   -2.9
+  320.0   -2.8
+  320.9   -3.3
+  321.9   -4.0
+  322.7   -4.6
+  323.5   -5.1
+  324.4   -5.0
+  325.0   -5.9
+  325.2   -7.0
+  325.1   -8.0
+  324.9   -8.9
+  324.2   -9.9
+  323.5  -10.7
+  323.0  -11.0
+  323.0  -11.4
+  322.4  -12.0
+  321.9  -12.7
+  321.2  -13.2
+  321.0  -14.0
+  321.0  -15.0
+  321.1  -16.0
+  320.9  -17.0
+  320.9  -17.7
+  320.4  -18.3
+  320.5  -19.1
+  320.0  -20.0
+  319.4  -21.0
+  319.1  -22.0
+  318.2  -22.3
+  318.0  -23.0
+  317.0  -23.0
+  316.0  -23.0
+  315.0  -23.4
+  314.0  -23.7
+  313.0  -24.5
+  312.2  -25.0
+  311.6  -25.4
+  311.4  -26.3
+  311.5  -27.0
+  311.4  -28.0
+  311.2  -28.6
+  310.3  -29.2
+  310.0  -30.0
+  309.4  -30.9
+  308.7  -31.7
+  308.1  -32.1
+  307.5  -32.8
+  307.0  -33.4
+  306.6  -34.0
+  305.8  -34.7
+  305.1  -35.0
+  304.0  -34.9
+  303.1  -34.5
+  302.3  -34.4
+  301.8  -34.2
+  302.2  -34.9
+  303.0  -35.2
+  302.9  -36.0
+  303.4  -36.3
+  303.4  -37.0
+  302.9  -37.6
+  302.7  -38.0
+  302.0  -38.4
+  301.0  -38.7
+  300.0  -38.9
+  299.0  -39.0
+  298.0  -38.8
+  298.0  -39.4
+  297.9  -40.2
+  298.0  -40.6
+  297.4  -41.1
+  296.3  -41.2
+  295.3  -40.7
+  295.0  -41.2
+  295.1  -42.0
+  295.8  -42.3
+  296.3  -42.1
+  296.3  -42.7
+  295.7  -43.0
+  294.9  -43.6
+  295.0  -44.3
+  294.6  -44.9
+  293.6  -45.1
+  292.8  -45.4
+  292.4  -46.0
+  293.0  -46.6
+  293.5  -47.0
+  294.3  -47.0
+  294.3  -47.6
+  294.1  -48.1
+  293.3  -48.4
+  292.6  -49.0
+  292.3  -49.6
+  292.0  -50.1
+       0 0 
+  299.7  -52.1
+  299.1  -52.0
+  299.7  -51.8
+  299.5  -51.6
+  299.4  -51.2
+  300.2  -51.2
+  301.2  -51.2
+  302.0  -51.2
+  302.3  -51.6
+  302.0  -51.7
+  301.2  -52.0
+  300.4  -52.2
+  300.4  -51.8
+  299.7  -52.1
+      0 0 
+  292.0  -50.1
+  291.0  -50.4
+  290.9  -51.0
+  291.0  -51.6
+  291.7  -52.2
+  291.8  -53.0
+  292.0  -53.5
+  293.0  -54.0
+  294.0  -54.5
+  295.0  -54.8
+  293.7  -55.0
+  292.8  -55.2
+  291.7  -55.2
+  290.7  -55.4
+  290.0  -55.1
+  288.8  -54.4
+  287.9  -53.7
+  286.9  -53.0
+  286.5  -52.0
+  286.2  -51.2
+  285.8  -50.5
+  285.5  -49.7
+  285.6  -48.9
+  285.7  -48.0
+  285.8  -47.0
+  285.7  -46.6
+  284.5  -46.6
+  285.1  -46.8
+  286.2  -46.0
+  286.9  -45.3
+  287.1  -44.6
+  287.0  -44.0
+  287.1  -43.1
+  287.6  -42.1
+  286.6  -41.8
+  286.6  -42.5
+  286.3  -43.3
+  285.8  -43.3
+  286.0  -42.7
+  286.0  -42.0
+  286.2  -41.3
+  286.4  -40.1
+  286.8  -39.1
+  286.5  -38.2
+  286.3  -37.2
+  287.0  -37.0
+  287.3  -36.0
+  287.9  -35.0
+  288.1  -34.0
+  288.4  -33.0
+  288.5  -32.0
+  288.4  -31.0
+  288.3  -30.2
+  288.6  -29.6
+  288.4  -28.9
+  288.7  -28.3
+  289.0  -27.3
+  289.2  -26.1
+  289.4  -25.0
+  289.4  -24.0
+  289.3  -23.0
+  289.8  -22.0
+  289.8  -21.0
+  289.7  -20.0
+  289.6  -19.0
+  289.4  -18.0
+  288.6  -17.3
+  287.6  -16.5
+  286.7  -16.0
+  285.7  -15.6
+  284.9  -15.2
+  284.0  -14.3
+  283.6  -13.5
+  283.2  -12.6
+  282.6  -11.7
+  282.2  -10.9
+  281.7  -10.0
+  281.3   -9.0
+  280.9   -8.0
+  280.3   -7.0
+  279.9   -6.4
+  278.8   -5.9
+  278.8   -5.0
+  278.7   -4.1
+  279.5   -3.5
+  280.1   -2.9
+  279.1   -2.2
+  279.1   -1.0
+  279.8     .0
+  280.5    1.0
+  281.2    1.6
+  281.7    2.7
+  282.4    2.7
+  283.0    3.7
+  282.8    4.6
+  282.7    5.6
+  282.8    6.6
+  282.2    7.3
+  281.8    8.3
+  281.3    8.9
+  280.7    9.0
+  280.0    8.4
+      0 0 
+  280.0    8.4
+  280.3    7.5
+  279.4    7.3
+  279.0    7.8
+  278.6    8.2
+  277.8    8.4
+  277.2    8.3
+  276.4    8.8
+  276.6    9.2
+  276.0    9.7
+  275.0   10.0
+  274.4   10.1
+  274.4   11.0
+  273.9   11.6
+  273.3   12.2
+  272.6   12.7
+  271.9   13.2
+  271.0   13.4
+  270.0   13.9
+  269.0   14.0
+  268.0   14.6
+  267.3   15.2
+  266.6   15.7
+  265.9   16.1
+  265.0   16.2
+  263.9   15.8
+  263.1   15.9
+  262.0   16.1
+  261.1   16.7
+  260.3   16.8
+  259.4   17.3
+  258.6   17.6
+  258.1   18.1
+  257.1   18.3
+  256.4   18.7
+  255.6   19.3
+  254.8   19.7
+  254.4   20.5
+  254.6   21.4
+  254.3   22.0
+  254.1   22.8
+  253.5   23.4
+  252.9   24.0
+  252.1   24.7
+  251.8   25.4
+  250.9   25.6
+  250.6   26.1
+  250.7   26.5
+  250.1   26.9
+  249.5   27.4
+  249.0   28.1
+  248.4   28.6
+  247.9   29.3
+  247.3   30.0
+  246.9   31.0
+  246.8   31.4
+  246.0   31.7
+  245.1   32.0
+  245.2   31.4
+  245.4   30.7
+  245.6   30.0
+  246.3   29.4
+  246.9   28.9
+  247.2   28.3
+  247.6   27.7
+  248.0   27.1
+  248.5   26.6
+  248.7   26.0
+  249.3   25.0
+  249.4   24.5
+  249.8   24.4
+  250.5   23.6
+  250.0   23.1
+  249.7   23.6
+  249.0   24.2
+  248.3   24.7
+  247.7   25.0
+  247.9   25.6
+  247.9   26.1
+  247.2   26.6
+  246.8   27.0
+  246.2   27.0
+  245.7   27.3
+  245.1   28.0
+  246.0   28.3
+  246.0   28.7
+  245.4   29.3
+  244.9   29.6
+  244.3   29.9
+  244.1   30.5
+  243.6   31.3
+  243.1   32.1
+  242.7   32.8
+  242.3   33.4
+  241.6   33.7
+  240.8   34.2
+  240.0   34.5
+  239.4   34.4
+  239.2   35.2
+  238.3   36.0
+  237.7   36.9
+  237.2   38.0
+  236.7   38.5
+  236.2   39.0
+  236.1   39.8
+  235.6   40.6
+  236.0   41.4
+  235.6   42.2
+  235.4   42.8
+  235.8   43.8
+  236.0   44.8
+  236.0   45.8
+  236.0   46.7
+  235.6   47.5
+  235.3   48.3
+  234.7   49.0
+  233.9   49.4
+  233.0   49.9
+  232.0   50.1
+  231.8   50.7
+  232.3   51.3
+  232.0   51.9
+  231.0   52.7
+  230.3   53.4
+  229.8   54.2
+  229.0   54.9
+        0 0 
+  204.1   18.9
+  204.2   20.0
+  205.3   19.3
+  204.5   18.7
+  204.1   18.9
+        0 0 
+  228.3   54.0
+  226.9   54.0
+  227.5   53.1
+  228.0   52.5
+  228.8   52.0
+  228.3   52.8
+  228.0   53.5
+  228.3   54.0
+       0 0 
+  229.0   54.9
+  227.5   55.4
+  226.6   56.2
+  225.6   56.8
+  224.5   57.6
+  223.6   58.2
+  222.1   58.6
+  221.0   59.2
+  219.7   59.7
+  218.1   59.9
+  216.8   60.0
+  215.5   60.2
+  214.4   60.4
+  213.6   60.7
+  213.0   61.0
+  211.8   60.9
+  211.8   60.4
+  211.1   59.9
+  210.0   59.6
+  209.0   59.3
+  208.0   59.3
+  208.3   60.0
+  209.1   60.9
+  210.6   60.9
+  209.3   61.3
+  208.3   60.9
+  207.6   60.3
+  206.8   59.7
+  205.9   59.0
+  206.7   58.9
+       0 0 
+  207.3   58.4
+  206.7   58.0
+  206.2   57.8
+  205.3   57.5
+  205.7   56.7
+  206.4   56.8
+  207.0   57.3
+  207.7   57.5
+  207.3   57.9
+  207.8   58.3
+  207.3   58.4
+       0 0 
+  206.7   58.9
+  205.9   58.2
+  204.9   57.8
+  203.9   57.4
+  203.4   57.0
+  202.5   56.6
+  201.6   56.3
+  201.3   55.9
+  200.2   55.6
+  199.3   55.4
+  198.3   55.3
+  197.3   54.9
+  196.0   54.5
+  195.0   54.4
+  195.5   54.8
+  196.7   55.1
+  197.6   55.4
+  198.2   55.8
+  199.2   55.7
+  199.8   56.3
+  200.6   56.6
+  201.3   56.7
+  201.4   57.0
+  202.1   57.5
+  202.4   58.0
+  203.0   58.9
+  201.7   58.6
+  201.5   58.9
+  201.1   58.4
+  199.7   59.0
+  198.3   58.5
+  198.0   59.3
+  198.4   59.4
+  197.7   60.2
+  197.0   59.6
+  195.9   59.8
+        0 0 
+  194.4   60.0
+  194.1   60.3
+  193.4   60.2
+  192.6   60.2
+  192.8   60.0
+  193.8   59.7
+  194.4   60.0
+      0 0 
+  195.9   59.8
+  195.2   60.3
+  194.6   60.6
+  195.0   60.9
+  194.2   61.4
+  194.0   61.8
+  194.6   62.4
+  195.2   62.9
+  196.0   63.3
+  196.5   63.0
+  197.7   63.5
+  198.7   63.5
+  199.2   63.8
+  198.7   64.5
+  199.2   64.5
+  198.9   64.8
+  198.0   64.7
+  197.3   64.3
+  195.2   64.5
+  195.0   64.4
+  194.1   64.5
+  193.6   64.6
+  193.1   65.1
+  194.0   65.2
+  192.9   65.4
+  192.0   65.6
+  192.9   65.9
+  193.9   66.2
+  194.4   66.1
+  194.4   66.3
+  195.2   66.5
+  196.2   66.5
+  196.1   66.2
+  197.0   66.1
+  198.0   66.0
+  199.0   66.3
+  198.2   66.4
+  197.5   66.7
+  196.5   67.1
+  196.0   67.5
+  195.0   67.8
+  194.1   68.1
+  193.4   68.3
+  193.8   68.7
+  195.0   68.8
+  196.1   69.0
+  197.0   69.5
+  197.4   70.0
+  198.0   70.3
+  199.0   70.3
+  199.9   70.6
+  200.7   70.8
+  201.8   70.8
+  202.7   71.0
+  203.5   71.3
+  204.4   71.2
+  204.1   70.8
+  205.0   71.2
+  205.4   71.0
+  205.3   70.8
+  206.0   70.8
+  206.7   70.9
+  207.7   70.8
+  207.5   70.6
+  208.1   70.5
+  209.1   70.4
+  210.0   70.4
+  211.0   70.4
+  212.0   70.3
+  213.0   70.2
+  214.0   70.3
+  215.0   70.0
+  216.0   70.0
+  217.0   70.0
+  218.0   69.8
+  219.0   69.6
+  220.0   69.6
+  221.0   69.4
+  222.0   69.1
+  223.0   68.8
+  224.0   68.8
+  223.7   69.2
+  224.7   69.3
+  225.6   69.6
+  226.6   69.4
+  227.6   69.7
+  228.8   69.9
+  229.7   70.2
+  230.4   70.3
+  231.1   69.7
+  231.8   70.1
+  232.0   70.6
+  233.1   70.1
+  233.3   69.7
+  234.2   69.4
+  234.8   69.8
+  235.3   70.1
+  235.8   69.6
+  235.6   69.4
+  236.6   69.4
+  237.0   69.5
+  237.0   69.7
+  238.1   69.8
+  239.0   69.6
+  240.0   69.4
+  241.0   69.2
+  242.0   68.9
+  243.0   68.8
+    0 0 
+  183.4  -78.2
+  182.3  -78.3
+  184.5  -78.3
+  186.8  -78.3
+  189.1  -78.3
+  191.5  -78.2
+  193.5  -78.3
+  195.6  -78.2
+  197.8  -78.0
+  199.9  -77.8
+  201.0  -77.6
+  201.8  -77.2
+  203.8  -77.0
+  205.1  -76.9
+  207.0  -76.9
+  208.8  -76.8
+  210.0  -76.5
+  211.1  -76.2
+  212.9  -76.2
+  214.8  -76.1
+  214.0  -75.9
+  216.0  -75.6
+  217.2  -75.4
+  218.9  -75.4
+  220.0  -75.3
+  221.5  -75.0
+  223.0  -74.9
+  224.1  -74.5
+  225.2  -74.3
+  227.0  -74.3
+  229.0  -74.2
+  230.8  -74.1
+  232.5  -74.0
+  234.3  -74.0
+  235.5  -73.8
+  236.6  -73.6
+  236.7  -73.1
+  238.5  -73.4
+  240.0  -73.5
+  241.0  -73.6
+  242.1  -73.7
+  244.0  -73.7
+  245.6  -73.7
+  247.0  -73.8
+  248.0  -73.6
+  248.8  -73.8
+  249.9  -73.9
+  251.0  -73.9
+  252.0  -74.0
+  252.0  -74.4
+  253.2  -74.5
+  253.2  -73.8
+  254.5  -73.8
+  255.0  -74.6
+  256.6  -74.4
+  258.0  -74.4
+  258.8  -75.0
+  259.5  -75.0
+  259.0  -74.3
+  259.4  -74.0
+  258.8  -73.8
+  258.5  -73.5
+  260.0  -73.5
+  261.0  -73.4
+  259.9  -73.2
+  258.3  -73.2
+  257.9  -72.8
+  258.3  -72.4
+  257.8  -72.1
+  259.0  -72.0
+  259.2  -71.8
+  260.3  -71.7
+  261.7  -71.8
+  262.9  -71.8
+  263.9  -72.0
+  264.4  -72.1
+  264.7  -72.6
+  265.9  -72.9
+  267.0  -72.7
+  267.9  -72.6
+  269.2  -72.5
+  270.8  -72.4
+  271.7  -72.7
+  270.9  -73.1
+  272.7  -73.2
+  274.3  -73.2
+  275.7  -73.3
+  277.0  -73.3
+  278.0  -73.7
+  279.0  -73.6
+  279.6  -73.1
+  281.1  -73.3
+  282.0  -73.1
+  281.3  -72.8
+  282.3  -72.6
+  283.9  -72.8
+  285.0  -72.9
+  286.3  -73.0
+  287.5  -73.1
+  287.5  -72.6
+  286.6  -72.3
+  285.0  -72.0
+  284.1  -71.7
+  283.4  -71.1
+  285.0  -71.4
+  285.1  -71.0
+  286.5  -71.0
+  286.0  -70.6
+  284.8  -70.7
+  285.5  -70.4
+  285.4  -70.0
+  284.0  -69.8
+  284.0  -69.4
+  285.0  -69.4
+  286.0  -69.4
+  287.0  -69.4
+  286.7  -69.1
+  287.9  -68.8
+  289.0  -68.6
+  290.0  -68.9
+  290.5  -69.4
+  291.5  -69.3
+  292.2  -69.0
+  292.8  -68.3
+  292.3  -67.7
+  291.0  -67.6
+  291.0  -67.0
+  292.0  -66.7
+  292.6  -67.0
+  293.3  -66.8
+  294.2  -66.6
+  294.2  -66.2
+  294.9  -66.0
+  295.8  -65.4
+  295.8  -64.9
+  296.9  -64.9
+  297.8  -64.6
+  298.3  -64.3
+  299.0  -64.0
+  299.9  -63.7
+  300.7  -63.6
+  301.5  -63.3
+  302.4  -63.0
+  303.5  -63.0
+  303.0  -63.5
+  301.7  -63.6
+  301.0  -63.9
+  300.8  -64.4
+  301.0  -64.8
+  300.7  -65.4
+  300.3  -65.8
+  300.0  -66.3
+  299.4  -66.8
+  299.2  -67.4
+  299.3  -67.9
+  299.3  -68.4
+  299.4  -68.9
+  299.3  -69.4
+  299.2  -69.9
+  299.2  -70.3
+  299.1  -70.6
+  299.8  -71.2
+  299.8  -71.6
+  300.0  -72.1
+  300.0  -72.5
+  300.0  -73.0
+  300.2  -73.4
+  300.0  -73.7
+  299.4  -74.1
+  298.7  -74.6
+  298.1  -74.7
+  299.1  -75.1
+  300.3  -75.4
+  301.4  -75.7
+  303.0  -76.1
+  304.8  -76.4
+  306.0  -76.6
+  307.9  -76.9
+  309.2  -77.1
+  310.5  -77.3
+  312.3  -77.7
+  314.0  -77.9
+  315.0  -78.0
+  316.5  -77.9
+  317.6  -77.6
+  319.6  -77.7
+  320.1  -78.0
+  323.0  -78.0
+  324.1  -77.7
+  325.0  -77.4
+  326.4  -77.2
+  327.5  -77.1
+  328.8  -76.9
+  330.0  -76.6
+  330.7  -76.4
+  331.8  -76.2
+  333.0  -76.0
+  333.5  -75.7
+  333.7  -75.4
+  335.1  -75.1
+  336.0  -74.8
+  336.0  -74.4
+  337.0  -74.2
+  338.1  -74.0
+  339.4  -73.7
+  340.0  -73.4
+  340.3  -73.0
+  341.0  -72.7
+  342.0  -72.7
+  343.5  -72.6
+  344.3  -72.3
+  345.0  -72.0
+  346.3  -72.0
+  347.6  -71.8
+  348.0  -71.4
+  349.3  -71.0
+  350.0  -70.8
+  350.7  -70.4
+  351.9  -70.4
+  353.3  -70.4
+  354.7  -70.3
+  356.0  -70.3
+  357.2  -70.2
+  358.4  -70.0
+  359.5  -69.0
+  360.0  -69.4
+  0 0
+     .0  -69.4 
+     .2  -69.6
+    1.2  -69.9
+    3.0  -69.9
+    4.5  -70.0
+    5.5  -70.0
+    6.6  -69.8
+    8.0  -69.8
+    9.1  -69.9
+   10.2  -70.0
+   11.3  -69.8
+   12.4  -69.8
+   13.3  -69.5
+   14.1  -69.4
+   15.0  -69.1
+   16.0  -69.6
+   17.0  -69.7
+   18.3  -69.8
+   19.4  -69.8
+   20.4  -69.9
+   21.9  -70.1
+   22.9  -70.2
+   24.0  -70.2
+   25.3  -70.1
+   26.3  -70.0
+   27.7  -69.8
+   28.9  -69.6
+   30.2  -69.3
+   31.2  -69.5
+   32.5  -69.6
+   33.0  -69.1
+   34.0  -68.6
+   34.8  -68.9
+   35.9  -69.1
+   36.9  -69.5
+   37.8  -69.5
+   38.0  -69.9
+   39.0  -69.7
+   39.8  -69.5
+   39.8  -68.9
+   41.1  -68.2
+   42.0  -68.0
+   43.1  -67.9
+   44.2  -67.7
+   45.4  -67.6
+   46.3  -67.3
+   47.0  -67.6
+   48.0  -67.5
+   49.0  -67.3
+   48.0  -67.1
+   49.5  -67.0
+   50.3  -67.1
+   50.3  -66.3
+   51.2  -66.0
+   52.0  -65.8
+   53.0  -65.7
+   54.0  -65.8
+   55.0  -66.0
+   56.0  -66.2
+   56.8  -66.5
+   56.6  -67.0
+   57.9  -67.0
+   59.0  -67.3
+   59.5  -67.6
+   60.7  -67.5
+   62.0  -67.5
+   63.1  -67.6
+   64.7  -67.6
+   66.0  -67.7
+   67.2  -67.9
+   68.9  -67.9
+   69.6  -67.9
+   70.3  -68.8
+   71.8  -68.4
+   72.6  -68.2
+   73.8  -68.9
+   75.2  -69.2
+   76.5  -69.1
+   77.0  -69.3
+   77.9  -68.9
+   78.7  -68.5
+   79.4  -68.1
+   80.6  -67.9
+   81.4  -67.5
+   82.0  -67.1
+   81.4  -66.3
+   81.7  -65.9
+   82.5  -66.1
+   83.3  -66.4
+   84.2  -66.4
+   85.1  -66.6
+   85.9  -66.3
+   86.9  -66.1
+   87.7  -66.0
+   88.9  -66.5
+   89.0  -66.8
+   90.0  -66.9
+   91.1  -66.6
+   92.4  -66.5
+   93.4  -66.5
+   94.5  -66.6
+   95.0  -66.1
+   95.6  -65.3
+   96.5  -65.0
+   97.3  -65.1
+   98.0  -65.4
+   99.0  -65.8
+  100.0  -65.6
+  100.9  -65.3
+  101.8  -65.6
+  102.8  -65.4
+  103.8  -65.3
+  104.6  -65.5
+  105.0  -65.9
+  106.0  -66.1
+  107.0  -66.2
+  108.0  -66.4
+  109.0  -66.9
+  110.4  -66.4
+  111.0  -66.0
+  111.8  -65.7
+  112.5  -65.6
+  113.8  -65.8
+  114.5  -66.0
+  115.5  -66.4
+  116.7  -66.8
+  117.4  -67.0
+  118.3  -67.0
+  119.3  -67.0
+  121.0  -66.7
+  121.0  -65.9
+  122.0  -66.1
+  122.8  -66.3
+  123.3  -66.0
+  124.3  -66.0
+  125.3  -66.0
+  126.2  -66.1
+  127.0  -66.6
+  127.8  -67.0
+  129.1  -67.1
+  130.0  -66.9
+  130.6  -65.6
+  131.4  -65.9
+  132.0  -66.0
+  133.5  -66.0
+  134.4  -66.0
+  135.6  -66.0
+  136.5  -66.1
+  137.9  -66.3
+  139.0  -66.5
+  140.0  -66.7
+  141.0  -66.8
+  142.0  -66.9
+  142.9  -67.1
+  143.6  -67.0
+  144.6  -67.0
+  145.6  -67.6
+  147.2  -67.9
+  148.3  -68.0
+  148.3  -68.3
+  149.5  -68.3
+  150.3  -68.4
+  151.2  -68.3
+  152.4  -68.2
+  153.6  -68.2
+  154.8  -68.2
+  156.0  -69.0
+  157.2  -69.2
+  158.6  -69.3
+  159.8  -69.6
+  160.8  -70.0
+  161.2  -70.4
+  163.0  -70.5
+  164.0  -70.9
+  165.0  -70.7
+  166.9  -70.6
+  167.8  -71.0
+  169.0  -71.2
+  170.3  -71.7
+  170.6  -72.3
+  169.9  -72.9
+  168.8  -73.4
+  168.0  -74.0
+  167.0  -74.3
+  167.0  -74.8
+  165.6  -74.7
+  164.6  -75.0
+  163.7  -75.6
+  163.7  -76.6
+  164.0  -77.5
+  164.7  -78.3
+  167.3  -78.0
+  167.3  -77.6
+  168.2  -77.3
+  170.0  -77.4
+  172.0  -77.3
+  173.3  -77.5
+  175.5  -77.8
+  178.0  -77.9
+  178.0  -78.2
+       0 0 
+  120.7   18.6
+  121.4   18.5
+  122.2   18.5
+  122.5   17.2
+  122.1   16.2
+  121.4   15.4
+  121.8   14.1
+  122.3   14.0
+  122.8   14.3
+  124.0   13.9
+  124.0   12.9
+  123.1   13.4
+  122.6   13.9
+  122.7   13.1
+  121.7   13.9
+  121.3   13.5
+  121.6   12.6
+  121.1   12.3
+  120.4   13.5
+  121.0   13.6
+  120.4   14.6
+  119.8   15.3
+  119.8   16.2
+  120.3   16.0
+  120.4   17.0
+  120.4   18.0
+  120.7   18.6
+       0 0 
+  124.4   12.5
+  125.1   12.7
+  125.7   11.3
+  125.3   10.4
+  124.7   10.0
+  124.0    9.6
+  123.0    9.2
+  122.4    9.8
+  122.7   10.6
+  122.0   10.5
+  122.0   11.9
+  123.2   11.5
+  123.3   11.0
+  124.0   11.2
+  124.5   11.9
+  124.4   12.5
+       0 0 
+  125.5    9.8
+  126.4    8.9
+  126.7    7.9
+  126.6    7.0
+  126.3    6.4
+  126.0    7.1
+  125.4    6.8
+  126.0    6.2
+  125.5    5.6
+  124.7    6.0
+  124.1    6.4
+  124.1    7.0
+  124.4    7.3
+  123.6    7.9
+  123.5    7.5
+  123.0    7.4
+  122.7    7.8
+  122.0    6.9
+  122.1    8.0
+  123.0    8.2
+  123.0    8.6
+  123.9    8.6
+  124.2    8.2
+  124.7    8.6
+  124.9    9.0
+  125.7    9.1
+  125.5    9.8
+       0 0 
+  130.7   -1.3
+  131.0    -.8
+  132.1    -.4
+  133.0    -.4
+  134.0    -.8
+  134.0   -2.0
+  134.9   -3.0
+  135.4   -3.3
+  136.3   -2.6
+  137.1   -2.0
+  137.8   -1.4
+  138.7   -1.8
+  139.8   -2.2
+  140.6   -2.3
+  141.4   -2.6
+  142.5   -3.0
+  143.4   -3.4
+  144.5   -3.8
+  145.3   -4.3
+  146.0   -4.8
+  145.8   -5.4
+  146.6   -5.7
+  147.6   -6.0
+  148.0   -6.4
+  147.2   -6.9
+  147.7   -7.6
+  148.4   -8.5
+  149.0   -9.0
+  149.6   -9.5
+  150.1  -10.0
+  150.6  -10.2
+  150.2  -10.6
+  149.8  -10.2
+  149.0  -10.2
+  148.0  -10.0
+  147.0   -9.4
+  146.1   -8.1
+  145.1   -7.7
+  144.1   -7.6
+  143.1   -8.3
+  143.4   -9.0
+  142.6   -9.4
+  142.2   -9.1
+  141.4   -9.1
+  141.0   -9.0
+  140.0   -8.1
+  139.2   -8.0
+  138.8   -8.3
+  137.7   -8.4
+  138.3   -7.4
+  138.9   -7.2
+  138.5   -6.2
+  138.2   -5.5
+  137.3   -4.9
+  136.4   -4.7
+  135.6   -4.6
+  134.7   -4.1
+  133.6   -3.4
+  133.2   -4.0
+  132.7   -4.0
+  132.7   -3.4
+  131.8   -2.8
+  133.0   -2.4
+  133.7   -2.4
+  133.7   -2.0
+  133.0   -2.0
+  132.1   -2.1
+  131.6   -1.6
+  130.7   -1.3
+       0 0 
+  148.3   -5.5
+  149.4   -5.5
+  150.4   -5.4
+  151.1   -5.0
+  151.5   -4.1
+  152.3   -4.4
+  151.9   -5.6
+  151.0   -6.1
+  149.9   -6.3
+  149.0   -6.1
+  148.3   -5.5
+        0 0 
+  150.8   -2.8
+  152.2   -3.3
+  153.2   -4.1
+  152.9   -4.9
+  152.4   -3.9
+  152.0   -3.5
+  150.8   -2.8
+        0 0 
+  154.8   -5.5
+  155.4   -6.0
+  155.8   -6.8
+  155.0   -6.3
+  154.8   -5.5
+        0 0 
+  160.0  -10.0
+  159.6   -9.4
+  160.2   -9.4
+  160.8  -10.0
+  160.0  -10.0
+        0 0 
+  164.1  -20.3
+  165.0  -20.7
+  166.0  -21.6
+  166.9  -22.3
+  165.8  -22.0
+  165.0  -21.4
+  164.1  -20.3
+      0 0 
+  136.9  -12.3
+  136.0  -13.1
+  135.7  -14.3
+  135.5  -14.9
+  136.3  -15.4
+  137.4  -16.0
+  138.3  -16.6
+  139.1  -17.0
+  139.7  -17.4
+  140.4  -17.6
+  141.0  -17.0
+  141.4  -16.0
+  141.8  -15.0
+  141.6  -14.0
+  141.7  -13.0
+  141.9  -12.0
+  142.0  -11.0
+  142.6  -10.7
+  143.0  -11.7
+  143.3  -12.6
+  143.6  -13.3
+  143.9  -14.3
+  144.6  -14.1
+  145.2  -15.0
+  145.5  -16.0
+  146.0  -17.0
+  146.1  -18.0
+  146.4  -19.0
+  147.2  -19.4
+  148.0  -20.0
+  148.8  -20.4
+  149.2  -21.1
+  149.4  -22.0
+  149.9  -22.3
+  150.6  -22.4
+  150.9  -23.3
+  151.5  -24.0
+  152.2  -24.7
+  152.9  -25.6
+  153.1  -26.4
+  153.1  -27.1
+  153.5  -28.1
+  153.5  -29.0
+  153.2  -30.0
+  153.0  -31.0
+  152.5  -32.0
+  152.1  -32.8
+  151.4  -33.3
+  151.0  -34.1
+  150.7  -35.0
+  150.1  -36.0
+  150.0  -36.9
+  150.0  -37.6
+  149.0  -37.9
+  148.0  -37.9
+  147.0  -38.6
+  146.4  -38.9
+  145.4  -38.4
+  144.9  -38.0
+  144.1  -38.4
+  143.5  -38.8
+  142.7  -38.4
+  141.4  -38.3
+  140.5  -38.0
+  140.0  -37.5
+  139.7  -37.0
+  140.0  -36.7
+  139.6  -36.0
+  139.3  -35.4
+  138.2  -35.6
+  138.6  -34.8
+  138.0  -34.1
+  137.8  -35.1
+  136.9  -35.3
+  136.9  -34.9
+  137.4  -34.8
+  137.5  -34.0
+  138.0  -33.4
+  137.9  -32.6
+  137.2  -33.4
+  136.3  -34.0
+  136.0  -35.0
+  135.0  -34.7
+  135.0  -33.7
+  134.1  -33.0
+  133.7  -32.3
+  132.9  -32.0
+  132.0  -32.0
+  131.2  -31.5
+  130.0  -31.5
+  129.0  -31.5
+  128.0  -32.0
+  127.0  -32.2
+  126.0  -32.1
+  125.0  -32.6
+  124.0  -33.0
+  123.7  -33.7
+  123.1  -33.8
+  122.1  -33.8
+  121.0  -33.7
+  119.9  -33.9
+  119.3  -34.4
+  118.9  -34.3
+  118.0  -35.0
+  117.0  -35.0
+  116.0  -34.8
+  115.0  -34.1
+  115.0  -33.5
+  115.7  -33.1
+  115.8  -32.1
+  115.6  -31.4
+  115.0  -30.3
+  115.0  -29.1
+  114.1  -28.0
+  113.9  -27.0
+  113.1  -26.0
+  113.3  -25.5
+  114.0  -26.1
+  113.6  -25.0
+  113.3  -24.0
+  113.7  -23.4
+  113.5  -22.5
+  114.0  -21.9
+  114.0  -22.3
+  115.0  -21.6
+  115.9  -21.0
+  116.6  -20.6
+  117.4  -20.7
+  118.1  -20.2
+  119.0  -19.9
+  120.0  -19.9
+  120.8  -19.7
+  121.4  -19.0
+  122.0  -18.0
+  122.0  -17.1
+  122.6  -16.3
+  123.3  -17.1
+  123.6  -16.9
+  123.4  -16.0
+  124.1  -16.1
+  124.6  -15.3
+  125.1  -14.5
+  125.9  -14.4
+  126.0  -13.9
+  126.9  -13.8
+  127.5  -14.1
+  128.0  -14.8
+  129.0  -14.8
+  129.5  -13.8
+  130.0  -13.3
+  130.0  -12.7
+  130.6  -12.4
+  131.5  -12.2
+  132.4  -12.1
+  132.4  -11.6
+  132.0  -11.2
+  132.8  -11.4
+  133.3  -11.9
+  134.3  -12.0
+  135.0  -12.1
+  135.7  -12.0
+  136.1  -12.5
+  136.4  -12.0
+  136.9  -12.3
+       0 0 
+  144.8  -40.8
+  145.7  -41.0
+  146.5  -41.2
+  147.3  -41.0
+  148.1  -40.9
+  148.3  -41.9
+  148.0  -42.8
+  147.0  -43.6
+  146.0  -43.6
+  145.5  -42.9
+  145.1  -42.1
+  144.9  -41.5
+  144.8  -40.8
+        0 0 
+  177.0  -17.9
+  177.9  -17.2
+  178.8  -17.9
+  178.0  -18.1
+  177.0  -17.9
+       0 0 
+  172.7  -34.5
+  173.9  -35.1
+  174.5  -35.9
+  174.9  -36.9
+  175.3  -37.1
+  175.3  -36.5
+  175.7  -36.7
+  175.9  -37.6
+  176.7  -37.9
+  177.3  -38.0
+  178.0  -37.4
+  178.4  -37.5
+  178.3  -38.6
+  178.0  -39.0
+  177.0  -39.2
+  177.0  -39.7
+  176.4  -40.6
+  175.9  -41.1
+  175.2  -41.6
+  174.5  -41.3
+  175.1  -40.7
+  175.0  -40.1
+  174.3  -39.8
+  173.6  -39.3
+  174.4  -39.0
+  174.8  -38.0
+  174.8  -37.4
+  174.2  -36.7
+  173.7  -36.0
+  173.1  -35.4
+  172.7  -34.5
+       0 0 
+  172.5  -40.7
+  173.0  -41.2
+  173.9  -41.0
+  174.1  -41.8
+  173.6  -42.5
+  172.7  -43.2
+  173.0  -43.9
+  172.3  -43.8
+  171.2  -44.1
+  171.0  -45.0
+  170.6  -45.9
+  169.4  -46.5
+  168.3  -46.4
+  167.3  -46.1
+  166.4  -45.8
+  167.0  -45.0
+  168.0  -44.0
+  169.0  -43.8
+  170.0  -43.1
+  171.0  -42.6
+  171.2  -41.9
+  171.7  -41.7
+  172.0  -41.0
+  172.5  -40.7
+       0 0 
+  128.0     .0
+  127.7    1.0
+  128.2    2.0
+  128.3    1.0
+  129.0    1.3
+  128.7     .6
+  129.0     .2
+  128.3     .3
+  128.3     .0
+  128.3    -.9
+  128.0     .0
+        0 0 
+  128.0   -3.2
+  129.1   -2.9
+  130.4   -3.0
+  130.8   -3.8
+  130.0   -3.5
+  129.0   -3.5
+  128.0   -3.2
+        0 0 
+  126.6   -3.8
+  126.0   -3.1
+  127.0   -3.0
+  127.2   -3.6
+  126.6   -3.8
+        0 0 
+  134.1   -6.9
+  134.0   -6.0
+  134.5   -5.5
+  134.7   -6.2
+  134.1   -6.9
+        0 0 
+  123.7  -10.3
+  124.0   -9.3
+  125.2   -8.7
+  126.2   -8.5
+  127.1   -8.4
+  126.1   -9.0
+  125.4   -9.4
+  124.6  -10.1
+  123.7  -10.3
+        0 0 
+  119.0   -9.7
+  120.0   -9.4
+  121.0  -10.1
+  120.5  -10.3
+  120.0  -10.0
+  119.0   -9.7
+        0 0 
+  120.0   -8.7
+  120.6   -8.3
+  121.6   -8.5
+  122.4   -8.5
+  123.0   -8.0
+  122.8   -8.7
+  121.7   -9.0
+  120.9   -9.0
+  120.0   -8.7
+        0 0 
+  115.9   -9.0
+  116.1   -8.1
+  117.0   -8.4
+  117.9   -8.0
+  119.1   -8.6
+  118.0   -9.0
+  117.0   -9.0
+  115.9   -9.0
+       0 0 
+  115.6   -8.3
+  114.3   -8.6
+  113.1   -8.3
+  112.4   -8.4
+  111.5   -8.2
+  110.6   -8.0
+  109.6   -7.7
+  108.7   -7.5
+  108.1   -7.8
+  107.5   -7.5
+  106.3   -7.4
+  106.3   -7.0
+  105.4   -6.7
+  106.0   -6.0
+  107.0   -6.0
+  108.0   -6.2
+  108.5   -6.8
+  109.5   -6.9
+  110.2   -6.9
+  110.7   -6.2
+  111.7   -6.6
+  112.4   -7.0
+  113.0   -7.7
+  114.2   -7.7
+  115.6   -8.3
+       0 0 
+  120.1     .0
+  120.3    -.8
+  120.8   -1.3
+  121.2   -1.3
+  121.7    -.8
+  122.4    -.8
+  123.4    -.6
+  123.3   -1.0
+  123.0   -1.0
+  122.3   -1.5
+  121.8   -1.9
+  121.4   -1.8
+  122.0   -2.4
+  122.5   -3.1
+  122.2   -3.7
+  123.0   -4.1
+  123.3   -4.6
+  123.1   -5.3
+  122.7   -5.6
+  122.3   -5.2
+  122.3   -4.6
+  122.0   -4.9
+  121.6   -4.7
+  121.6   -4.0
+  121.0   -3.5
+  121.1   -2.6
+  120.4   -3.0
+  120.4   -4.0
+  120.5   -4.7
+  120.5   -5.5
+  119.5   -5.5
+  119.8   -4.6
+  119.6   -3.5
+  119.0   -3.6
+  118.9   -2.8
+  119.4   -2.0
+  119.5   -1.1
+  119.9    -.7
+  120.0     .0
+  120.3    1.0
+  121.0    1.3
+  122.0    1.0
+  123.0    1.0
+  124.0     .9
+  125.1    1.6
+  124.7     .5
+  123.7     .3
+  122.8     .4
+  121.7     .4
+  120.3     .3
+  120.1     .0
+        0 0 
+  117.3    8.5
+  118.1    9.4
+  119.0   10.3
+  119.6   11.2
+  119.4   10.2
+  118.5    9.2
+  117.3    8.5
+       0 0 
+  109.1     .0
+  109.0    1.0
+  109.5    2.0
+  110.5    1.8
+  111.1    1.6
+  111.3    2.3
+  111.8    3.0
+  112.9    3.1
+  113.6    4.0
+  114.0    4.6
+  115.0    5.0
+  115.4    5.0
+  116.0    6.0
+  116.9    7.0
+  117.6    6.5
+  118.2    6.0
+  119.2    5.3
+  118.3    5.0
+  118.6    4.4
+  117.8    4.2
+  117.5    3.5
+  118.0    2.3
+  117.9    2.0
+  118.4    1.4
+  119.0     .9
+  118.2     .8
+  117.8     .7
+  117.6     .0
+  117.0   -1.0
+  116.3   -1.6
+  116.7   -2.1
+  116.0   -3.1
+  115.4   -3.8
+  114.8   -4.1
+  114.5   -3.4
+  113.6   -3.3
+  113.0   -3.0
+  111.7   -3.4
+  111.6   -2.7
+  110.7   -3.0
+  110.0   -2.9
+  109.9   -1.6
+  110.0   -1.2
+  109.4    -.4
+  109.1     .0
+       0 0 
+  103.5     .0
+  103.2    -.6
+  104.2   -1.0
+  104.7   -1.9
+  105.4   -1.5
+  106.1   -1.6
+  106.5   -3.0
+  106.0   -3.1
+  105.9   -4.0
+  105.8   -5.0
+  105.7   -5.8
+  104.6   -5.8
+  103.4   -4.9
+  102.4   -4.0
+  101.5   -3.0
+  100.9   -2.0
+  100.4   -1.0
+   99.7     .0
+   99.0    1.0
+   98.9    1.8
+   97.7    2.3
+   97.4    3.1
+   96.7    3.9
+   95.8    4.4
+   95.1    5.6
+   95.8    5.6
+   96.4    5.3
+   97.1    5.4
+   98.0    5.0
+   98.8    4.0
+   99.5    3.5
+  100.2    2.9
+  100.9    2.1
+  101.9    1.6
+  102.6    1.1
+  103.1    1.0
+  103.6     .5
+  103.5     .0
